Remove unveil() from the rsync_sender() and flist_gen(). The sender is
authorclaudio <claudio@openbsd.org>
Mon, 22 Mar 2021 11:49:15 +0000 (11:49 +0000)
committerclaudio <claudio@openbsd.org>
Mon, 22 Mar 2021 11:49:15 +0000 (11:49 +0000)
commit320af302062917f617494d13163b8ea116e21a7b
tree615738af8f6312c95a6d9f874631958496943567
parente7e8e562a46d37adfc185757261764eb7bc3e84f
Remove unveil() from the rsync_sender() and flist_gen(). The sender is
not able to properly unveil itself because you can request many files
as arguments. At the same time the sender is read-only and uses rpath
pledge() so the gain from unveil() is less of an issue.
On the receiver side all files land in one directory and this part still
uses unveil() to protect rsync to somehow walk out of the destination
directory.
From kristaps@
usr.bin/rsync/flist.c
usr.bin/rsync/sender.c