-
Notifications
You must be signed in to change notification settings - Fork 302
Add close_range() system call #43
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
Open
ricardobranco777
wants to merge
4
commits into
NetBSD:trunk
Choose a base branch
from
ricardobranco777:close_range
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
22da200
Add close_range system call
ricardobranco777 f1ea356
compat_linux: Make linux_sys_close_range use sys_close_range
ricardobranco777 762b450
Add test for close_range adapted from t_closefrom
ricardobranco777 4b530cb
Regen for close_range
ricardobranco777 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.Dd Feb 16, 2024 | ||
.Dt CLOSE_RANGE 2 | ||
.Os | ||
.Sh NAME | ||
.Nm close_range | ||
.Nd delete open file descriptors | ||
.Sh LIBRARY | ||
.Lb libc | ||
.Sh SYNOPSIS | ||
.In unistd.h | ||
.Ft int | ||
.Fn close_range "u_int first" "u_int last" "int flags" | ||
.Sh DESCRIPTION | ||
The | ||
.Fn close_range | ||
system call deletes all open file descriptors between | ||
.Fa first | ||
and | ||
.Fa last | ||
inclusive, clamped to the range of open file descriptors. | ||
Any errors encountered while closing file descriptors are ignored. | ||
Supported | ||
.Fa flags : | ||
.Bl -tag -width ".Dv CLOSE_RANGE_CLOEXEC" | ||
.It Dv CLOSE_RANGE_CLOEXEC | ||
Set the close-on-exec flag on descriptors in the range instead of closing them. | ||
.El | ||
.Sh RETURN VALUES | ||
Upon successful completion, | ||
.Fn close_range | ||
returns a value | ||
of 0. | ||
Otherwise, a value of -1 is returned and the global variable | ||
.Va errno | ||
is set to indicate the error. | ||
.Sh ERRORS | ||
The | ||
.Fn close_range | ||
system call | ||
will fail if: | ||
.Bl -tag -width Er | ||
.It Bq Er EINVAL | ||
The | ||
.Fa last | ||
argument is lower than the | ||
.Fa first | ||
argument. | ||
.It Bq Er EINVAL | ||
An invalid flag was set. | ||
.El | ||
.Sh SEE ALSO | ||
.Xr close 2 | ||
.Xr closefrom 3 | ||
.Sh HISTORY | ||
The | ||
.Fn close_range | ||
function first appeared in | ||
.Nx 11.0 . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2062,7 +2062,6 @@ linux_sys_memfd_create(struct lwp *l, | |
return sys_memfd_create(l, &muap, retval); | ||
} | ||
|
||
#define LINUX_CLOSE_RANGE_UNSHARE 0x02U | ||
#define LINUX_CLOSE_RANGE_CLOEXEC 0x04U | ||
|
||
/* | ||
|
@@ -2077,37 +2076,17 @@ linux_sys_close_range(struct lwp *l, | |
syscallarg(unsigned int) last; | ||
syscallarg(unsigned int) flags; | ||
} */ | ||
unsigned int fd, last; | ||
file_t *fp; | ||
filedesc_t *fdp; | ||
const unsigned int flags = SCARG(uap, flags); | ||
struct sys_close_range_args crap; | ||
const unsigned int lflags = SCARG(uap, flags); | ||
int flags = 0; | ||
|
||
if (flags & ~(LINUX_CLOSE_RANGE_CLOEXEC|LINUX_CLOSE_RANGE_UNSHARE)) | ||
return EINVAL; | ||
if (SCARG(uap, first) > SCARG(uap, last)) | ||
if (lflags & ~LINUX_CLOSE_RANGE_CLOEXEC) | ||
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 commentThe reason will be displayed to describe this comment to others. Learn more. need to set first/last here too. (I fixed it already). |
||
|
||
if (flags & LINUX_CLOSE_RANGE_UNSHARE) { | ||
fdp = fd_copy(); | ||
fd_free(); | ||
l->l_proc->p_fd = fdp; | ||
l->l_fd = fdp; | ||
} | ||
|
||
last = MIN(SCARG(uap, last), l->l_proc->p_fd->fd_lastfile); | ||
for (fd = SCARG(uap, first); fd <= last; fd++) { | ||
fp = fd_getfile(fd); | ||
if (fp == NULL) | ||
continue; | ||
|
||
if (flags & LINUX_CLOSE_RANGE_CLOEXEC) { | ||
fd_set_exclose(l, fd, true); | ||
fd_putfile(fd); | ||
} else | ||
fd_close(fd); | ||
} | ||
|
||
return 0; | ||
return sys_close_range(l, &crap, retval); | ||
} | ||
|
||
/* | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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).