[PATCH] cap_inode_getsecurity: use d_find_any_alias() instead of d_find_alias()
Amir Goldstein
amir73il at gmail.com
Wed Jun 27 08:18:30 UTC 2018
[adding Eric because change went through his tree and probably fix will as well]
On Wed, Jun 27, 2018 at 9:59 AM, Eddie.Horng <eddie.horng at mediatek.com> wrote:
>
> The code in cap_inode_getsecurity(), introduced by commit 8db6c34f1dbc
> ("Introduce v3 namespaced file capabilities"), should use
> d_find_any_alias()
> instead of d_find_alias() do handle unhashed dentry correctly. This is
> needed,
> for example, if execveat() is called with an open but unlinked overlayfs
> file, because overlayfs unhashes dentry on unlink.
>
commit message lines should be wrapped at 74 chars I think.
Please run ./scripts/checkpatch.pl on your patch.
> Below reproducer and setup can reproduce the case.
> const char* exec="echo";
> const char *newargv[] = { "echo", "hello", NULL};
> const char *newenviron[] = { NULL };
> int fd, err;
>
> fd = open(exec, O_PATH);
> unlink(exec);
> err = syscall(322/*SYS_execveat*/, fd, "", newargv, newenviron,
> AT_EMPTY_PATH);
> if(err<0)
> fprintf(stderr, "execveat: %s\n", strerror(errno));
>
> gcc compile into ~/test/a.out
> mount -t overlay -orw,lowerdir=/mnt/l,upperdir=/mnt/u,workdir=/mnt/w
> none /mnt/m
> cd /mnt/m
> cp /bin/echo .
> ~/test/a.out
>
Your next challenge, should you choose to accept it, is to write
an LTP test for your reproducer.
Starting points:
- use testcases/kernel/syscalls/inotify/inotify08.c as template
of test that uses new lib and sets up an overlayfs mount
(throw away all inotify stuff)
- use testcases/kernel/syscalls/execve/execve_child.c as
template to clone syscalls/execveat/execveat_child.c
- place your new test at syscalls/execveat/execveat01.c
I'll be happy to help you with up-streaming the test.
> Expected result:
> hello
> Actually result:
> execveat: Invalid argument
> dmesg:
> Invalid argument reading file caps for /dev/fd/3
>
> Suggested-by: Amir Goldstein <amir73il at gmail.com>
> Fixes: 8db6c34f1dbc ("Introduce v3 namespaced file capabilities")
> Signed-off-by: Eddie Horng <eddie.horng at mediatek.com>
> ---
> security/commoncap.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/security/commoncap.c b/security/commoncap.c
> index 1ce701fcb3f3..147f6131842a 100644
> --- a/security/commoncap.c
> +++ b/security/commoncap.c
> @@ -388,7 +388,7 @@ int cap_inode_getsecurity(struct inode *inode, const
> char *name, void **buffer,
> if (strcmp(name, "capability") != 0)
> return -EOPNOTSUPP;
>
> - dentry = d_find_alias(inode);
> + dentry = d_find_any_alias(inode);
> if (!dentry)
> return -EINVAL;
>
You may add:
Acked-by: Amir Goldstein <amir73il at gmail.com>
Thanks,
Amir.
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
More information about the Linux-security-module-archive
mailing list