passthrough_ll: remove symlink fallbacks (#514)
authorMiklos Szeredi <szmi@users.noreply.github.com>
Thu, 14 May 2020 19:17:50 +0000 (21:17 +0200)
committerGitHub <noreply@github.com>
Thu, 14 May 2020 19:17:50 +0000 (20:17 +0100)
commitded868455aecc883ecc53b1fac7356dba761b240
treeb158fd248750b5778c979f2cad932500f9dbb041
parentfc25c5002cae23151309fce6059e230545fd4d82
passthrough_ll: remove symlink fallbacks (#514)

* passthrough_ll/hp: remove symlink fallbacks

Path lookup in the kernel has special rules for looking up magic symlinks
under /proc.  If a filesystem operation is instructed to follow symlinks
(e.g. via AT_SYMLINK_FOLLOW or lack of AT_SYMLINK_NOFOLLOW), and the final
component is such a proc symlink, then the target of the magic symlink is
used for the operation, even if the target itself is a symlink.  I.e. path
lookup is always terminated after following a final magic symlink.

I was erronously assuming that in the above case the target symlink would
also be followed, and so workarounds were added for a couple of operations
to handle the symlink case.  Since the symlink can be handled simply by
following the proc symlink, these workardouds are not needed.

Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Co-authored-by: Miklos Szeredi <mszeredi@redhat.com>
example/passthrough_hp.cc
example/passthrough_ll.c