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

bpo-31904: Add posix module support for VxWorks RTOS #12118

Merged
merged 23 commits into from
May 21, 2019

Conversation

pxinwr
Copy link
Contributor

@pxinwr pxinwr commented Mar 1, 2019

This is the successive PR after #11968. This PR enables posix module support for VxWorks RTOS. VxWorks doesn't support fork()/exec(). Instead, we use rtpSpawn() to spawn new processes.
More and full support on modules for VxWorks will continuously be added by the coming PRs.
VxWorks is a product developed and owned by Wind River. For VxWorks introduction or more details, go to https://www.windriver.com/products/vxworks/
Wind River will have a dedicated engineering team to contribute to the support as maintainers.
We already have a working buildbot worker internally, but has not bound to master. We will check the process for the buildbot, then add it.

https://bugs.python.org/issue31904

@vstinner
Copy link
Member

vstinner commented Mar 1, 2019

@pablogsal @izbyshev @nanjekyejoannah: Would you min to review this change?

Copy link
Contributor

@izbyshev izbyshev left a comment

Choose a reason for hiding this comment

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

Is there any plan to update documentation to reflect that some functions that are normally available on Unix are not actually available on VxWorks? With this patch, they are os.fork, os.exec* and os.spawn*p*.

@pablogsal pablogsal self-requested a review March 3, 2019 20:59
@pxinwr
Copy link
Contributor Author

pxinwr commented Mar 8, 2019

@izbyshev

Is there any plan to update documentation to reflect that some functions that are normally available on Unix are not actually available on VxWorks? With this patch, they are os.fork, os.exec* and os.spawn*p*.

Have updated os.rst about this.

@pxinwr
Copy link
Contributor Author

pxinwr commented Mar 11, 2019

@izbyshev @pablogsal I've fixed all the issues reviewed out. Could you help to review again when available? Thanks a lot.

@vstinner
Copy link
Member

vstinner commented Apr 16, 2019

See also #12319 " bpo-31904: Fix test_os failures for VxWorks RTOS #12319 ".

@pxinwr
Copy link
Contributor Author

pxinwr commented May 17, 2019

I've combined #12319 into this PR.

Copy link
Member

@vstinner vstinner left a comment

Choose a reason for hiding this comment

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

Your change seems reasonable, but I have a few comments.

except (ValueError,OSError):
for i in range(1, hard_limit + 1):
try:
os.open(os.devnull, os.O_RDONLY)
Copy link
Member

Choose a reason for hiding this comment

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

I dislike this code. If the limit is high (ex: larger than 1024), the test can take a lot of time.

I suggest to simply skip the test on VxWorks.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Following your comments, skip this test on VxWorks. By default the RLIMIT_NOFILE on VxWorks is 8. But on other OS, perhaps there will be the issues you concerned.

@@ -1517,7 +1528,8 @@ def mock_execve(name, *args):
os.execve = orig_execve
os.defpath = orig_defpath


@unittest.skipUnless(hasattr(os, 'execv'),
"No os.execv or os.execve function to test.")
Copy link
Member

Choose a reason for hiding this comment

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

nitpick: please align the string to the start of hasattr.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

On VxWorks, if *mode* is :const:`P_NOWAIT`, this function returns the process id
of the new process; if *mode* is :const:`P_WAIT`, only returns the new process's
exit code if it exits normally. The process id will actually be the process
handle, so can be used with the :func:`waitpid` function.
Copy link
Member

Choose a reason for hiding this comment

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

This description seems to be redundant with the previous paragraph. I don't see how it's different from the previous paragraph. And it seems obvious to that the a process is can be passed to waitpid(), I don't see the point of saying it here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Really some confusion here. The difference we want to express here is in P_WAIT mode if the process is killed by others, VxWorks doesn't return "-signal" as unix-like OS does. VxWorks just returns -1 in this case.

if ((rtpid != RTP_ID_ERROR) && (mode == _P_WAIT)) {
do {
res = waitpid((pid_t)rtpid, &status, 0);
} while (res < 0 && errno == EINTR);
Copy link
Member

Choose a reason for hiding this comment

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

You have to call PyErr_CheckSignals() on EINTR to respect the PEP 475. See how other functions implement that.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

@vstinner
Copy link
Member

I've combined #12319 into this PR.

Thanks, I like that :-)

Copy link
Member

@vstinner vstinner left a comment

Choose a reason for hiding this comment

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

Your PR mostly LGTM, but I have a few more comments before being able to approve it.

@@ -0,0 +1 @@
Skip ExecTests and URandomFDTests in test_os.py for VxWorks.
Copy link
Member

Choose a reason for hiding this comment

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

Honestly, I don't think that this NEWS entry is really helpful to users. Can you please remove it?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Removed.

@@ -3578,6 +3579,9 @@ written in Python, such as a mail server's external command delivery program.
process. On Windows, the process id will actually be the process handle, so can
be used with the :func:`waitpid` function.

Note on VxWorks, this function desn't return ``-signal`` when the new process is
Copy link
Member

Choose a reason for hiding this comment

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

typo!

Suggested change
Note on VxWorks, this function desn't return ``-signal`` when the new process is
Note on VxWorks, this function doesn't return ``-signal`` when the new process is

@@ -1517,7 +1519,8 @@ def mock_execve(name, *args):
os.execve = orig_execve
os.defpath = orig_defpath


@unittest.skipUnless(hasattr(os, 'execv'),
"No os.execv or os.execve function to test.")
Copy link
Member

Choose a reason for hiding this comment

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

nitpick: usually, we just say "need os.execv", no need to elaborate ;-)

@vstinner
Copy link
Member

LGTM except if the typo. Please fix the typo, so I can merge your PR ;-)

@vstinner vstinner merged commit f2d7ac7 into python:master May 21, 2019
@vstinner
Copy link
Member

Thanks @pxinwr! I know that this one was painful, but well, the os ("posix") module is where you can find most differences between operating systems.

@pxinwr pxinwr deleted the fix-issue-31904-os branch July 12, 2021 09:42
@kuhlenough kuhlenough mannequin mentioned this pull request Jan 12, 2024
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.

6 participants