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

gh-128881: Do not ignore address and flags parameters in socket.{send,recv}_fds #128882

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

Conversation

GalaxySnail
Copy link
Contributor

@GalaxySnail GalaxySnail commented Jan 15, 2025

@GalaxySnail
Copy link
Contributor Author

I have no idea what's happening on macOS. Should we just skip it on macOS?

@Zheaoli
Copy link
Contributor

Zheaoli commented Jan 16, 2025

MSG_PEEK may got different action on macOS/FreeBSD, let's figure it out.

BTW, we can skip the macOS test first

Copy link
Member

@picnixz picnixz left a comment

Choose a reason for hiding this comment

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

Can we also have a test that combine both address and flags as well for send_fds please? and see if we can have test coverage for Windows (just using a 0 flag for instance would be sufficient).

According to https://docs.python.org/3/library/socket.html#socket.send_fds, send_fds and recv_fds are is available on Windows and Unix, so we should be able to have tests for them as well.

data = os.read(rfd, 100)
self.assertEqual(data, str(index).encode())
@requireAttrs(socket, "MSG_PEEK")
@unittest.skipUnless(sys.platform in ("linux", "android"), "works on Linux")
Copy link
Member

Choose a reason for hiding this comment

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

Is there a way to have a flag test on macOS or not at all?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I thought about it, but I'm not sure how to implement it. Is it good practice to write a _test_recv_fds_peek(self, skip_fd_check=False) method and 2 wrappers with different arguments?

Copy link
Member

Choose a reason for hiding this comment

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

A good practice is to check if there's a flag that is supported both on Unix and Windows. The reason is that the availability of recv_fds is marked as Unix and Windows but not WASI. So we shouldn't have this kind of skip in the first place.

Now, if there is not a common flag that is supported on all platforms, just writing three different tests for three different flags is also fine (each of which protected by a skipUnless)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The reason is that the availability of recv_fds is marked as Unix and Windows but not WASI. So we shouldn't have this kind of skip in the first place.

recv_fds requires recvmsg, which is only available on Unix but not WASI, so I think it may be a documentation error.

Copy link
Member

Choose a reason for hiding this comment

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

Ok actually we have #122153 which wants to implement it but we never implemented it. Good to know that it's a doc issue. We can open a PR (using 122153 as the GH issue number) to amend the docs. For now, can you add some comment saying that it's not available on Windows yet but can be (and add some "see gh-122153)? thanks

Copy link
Contributor Author

Choose a reason for hiding this comment

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

For now, can you add some comment saying that it's not available on Windows yet but can be (and add some "see gh-122153)? thanks

Of course!

However sendmsg/recvmsg aren't the only requirements, CPython doesn't support AF_UNIX on Windows, and Windows doesn't support SCM_RIGHTS at all, so I think it's not possible to implement send_fds/recv_fds on Windows.

ref: #77589 (comment)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This doc issue was introduced in e3b6ff1

self._test_pipe(fds[0], wfd, MSG)

@requireAttrs(socket, "MSG_DONTWAIT")
@unittest.skipUnless(sys.platform in ("linux", "android"), "Linux specific test")
Copy link
Member

Choose a reason for hiding this comment

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

ditto

Copy link
Contributor Author

Choose a reason for hiding this comment

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

CI shows that sendmsg raises OSError: [Errno 55] No buffer space available on macOS. I'm not familiar with macOS, so I don't know if it's the expected behavior.

@picnixz picnixz changed the title gh-128881: Fix address and flags for send_fds/recv_fds gh-128881: Do not ignore address and flags parameters in socket.{send,recv}_fds Jan 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants