Skip to content
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

Implement dup3 syscall #104

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open

Implement dup3 syscall #104

wants to merge 8 commits into from

Conversation

robinyuan1002
Copy link
Collaborator

I have implement dup3 syscall, there are three functionality for dup3. First, dup3 have the functionality of dup2. Second, dup3 support O_CLOEXEC which is close newfd when it exec. Third, dup3 return error EINVAL if oldfd equal to newfd. Since there are issue with exec syscall right now I can only test the first and third functionality. The second functionality should work by logic but I need to wait for exec syscall.

Copy link
Member

@Yaxuan-w Yaxuan-w left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to add test case

Copy link
Member

@Yaxuan-w Yaxuan-w left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We'd better to include test files at this point even things like exec would block testing.. This could help us test when other things has been fixed

@Yaxuan-w Yaxuan-w mentioned this pull request Feb 12, 2025
@Yaxuan-w
Copy link
Member

I've fixed dup2 on #117. I think the implementation of dup3 could be something like:

check if oldfd == newfd

call dup2(oldfd, newfd)

call fdtables::set_cloexec(self.cageid, newfd, flag)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants