-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add close_range() system call #43
base: trunk
Are you sure you want to change the base?
Conversation
9c2c2ee
to
b118f47
Compare
b118f47
to
673e298
Compare
673e298
to
4b530cb
Compare
I think UNSHARE was implemented before and it was the same way sharing is done and undone in the clone system call. I added it back. I patched, I am doing a build now and will fix the sets. |
return EINVAL; | ||
if (lflags & LINUX_CLOSE_RANGE_CLOEXEC) | ||
flags |= CLOSE_RANGE_CLOEXEC; | ||
SCARG(&crap, flags) = flags; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to set first/last here too. (I fixed it already).
@@ -102,6 +102,7 @@ ASM=\ | |||
chdir.S chflags.S chmod.S chown.S chroot.S \ | |||
clock_getcpuclockid2.S \ | |||
__clock_getres50.S __clock_gettime50.S \ | |||
close_range.S \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to also add manpage (fixed it).
Adapt existing code in
compat_linux
forclose_range
and make it use the new native system call.The existing test code for
closefrom(3)
was adapted and extended forclose_range(2)
.The manpage was adapted from FreeBSD using the Linux names for the parameters:
https://man.freebsd.org/cgi/man.cgi?query=close_range&sektion=2&n=1
Fixes kern/59081
CLOSE_RANGE_UNSHARE
was removed as it doesn't make sense on NetBSD which lacksunshare(2)
. From the Linux documentation: