There are lots of corner cases in the kernel that are probably a bit off
> main(int argc, char **argv)
> {
> int fd;
> setfsuid(atoi(argv[1]));
> fd = open("/etc/passwd", O_RDONLY);
> printf("got fd %d\n", fd);
> }
>
> [root@wizball /root]# ./setfstest 0
> got fd 3
(root)
> [root@wizball /root]# ./setfstest 500
> got fd 3
(fsuid==euid)
> [root@wizball /root]# ./setfstest 501
> got fd -1
(other)
perchance. If so does being uid 501 flip the behaviour around ?
>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/