-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Use linux/* headers for linux and android #235
Comments
Also move F_DUPFD_CLOEXEC up a level as it is available on Android. This commit leaves file sealing related fcntls and bitflag constants out, as they are defined in `linux/fcntl.h` rather than `fcntl.h`. They can be included once an approach for verification has been figured out. See rust-lang#235 for more detail.
|
You Betcha (I'm feeling very Minnesotan today). This issue will be commonplace when using these headers. My initial thought on this is to have a separate test function with its own If ctest were modified to support an inclusive approach (in addition to the exclusive model that exists currently), I think it might be sane to do the following:
Since the complement of the ignored set from the $libc tests is covered by the linux test, we can have a level of confidence that we have good coverage. |
@posborne do you know of any disagreements between the libc headers and the UAPI headers on values or signatures they both include? If not, we could just switch to using UAPI headers for verification on (non-musl) Linux, and the other headers on other platforms. I may be taking a particular reading of the comment, but on #232 @alexcrichton said
(Emphasis mine.) Providing these are part of the kernel's stable ABI, which I understand they are, we should be fine to do this. |
Also move F_DUPFD_CLOEXEC up a level as it is available on Android. This commit leaves file sealing related fcntls and bitflag constants out of "plain" Linux, as they are defined in `linux/fcntl.h` rather than `fcntl.h`. They can be included once an approach for verification has been figured out. Android and musl both include them in `fcntl.h` however. See rust-lang#235 for more detail.
Yeah if we need to have two separate test suites here for Linux that's fine by me, also feel free to change whatever needs to be changed in ctest, it was basically created for this project :) |
This came up in nix-rust/nix#354. @posborne @alexcrichton are there strong objections to just testing against UAPI headers on Linux? |
Seems fine to me if they're explicitly intended for inclusion in user-space |
No objection from me. |
@posborne so are the |
This is proving a bit more complicated than I thought. For now I'm unclear on how to use both Eg, this program does not compile.
|
@kamalmarhubi Yeah, that is the problem I have run into as well. Although the headers are suitable for use in use space in theory, many of them conflict with libc headers in practice (yuck!). That is why I expressed the thoughts about having a separate test generator in #235 (comment) The linux exported uapi headers are far from complete, so I do not see an easy way to avoid going down the path of having two separate test suites. |
I remember your comment but I guess I had to spend some time to properly understand why. I also now see why you want to extend ctest to support inclusive rather than exclusive testing! |
There is an FAQ on the musl wiki about mixing userspace and kernel headers:
|
Oh interesting! In most cases I've seen, the musl |
There are at least two possibilities to fix this issue:
|
Yeah, I think we're effectively looking at going with the separate compilation unit approach: a separate test program for testing against UAPI headers. |
Yes, I think this is a good approach! |
Please be careful here. The |
@raphaelcohn Even though |
@nathansizemore Sure - but building glibc cleanly, from checkout, reliably and consistently, is an exercise in futility. There's a load of others things it typically ends up needing - not just headers. Musl, on the over hand, does draw a very distinct dividing line. In recent versions, it uses just My point of view is very much coloured by the way I see glibc as yesterday's libc, and musl as tomorrow's, on linux. It's also hard to agree on a dividing line as libcs themselves are such a messy mix of unnamespaced POSIX APIs, C standard APIs and OS-specifics (including syscall code). I think it would be nice to have bindings or some support for Linux's UAPI - but I don't feel it belongs in the libc crate. If it's wanted, then make it a dependency. It's effectively what it is. Personally I hope in the long run Rust frees itself from the libc, primarily by replacing the functions the std libs need with syscalls and the like. It'll certainly open more opportunities for safety checks and optimisation. In that event, a binding to the UAPI would be very useful. |
waitid and flags is exposed in the general headers. The issue was brought up was in #417 acaea91 with the ptraceflags. :.:.: Adding the Linux UAPI's to libc pretty clearly won't work. While yes building an alternate test-suite is possible. Travis-CI doesn't support rolling a custom kernel version which means libc will get stuck on one or two kernel versions for potentially years. The project would need to switch to a different testing platform as travel-ci currently only supports kernel 3.2 and 4.4 (and it took them years to move from 2.6 to 3.2). I guess the project could pick up another test suite. But building a separate project that depends on libc seems like a far simpler solution. As this was already done with kernel-sys32 for Windows, and eventually will also have to be done for FreeBSD, OpenBSD, OSX, Solaris, etc. Rolling everything into libc may turn this project into libos. |
This is fixed on master. We do not provide linux kernel-space in Arguably, it would be cleaner for The same applies to android, and pretty much all other operating system's. I just sent a PR (#1364 ) deprecating all MacOSX kernel APIs to fix #981 . The situation there is different because 1) we have a fully working |
This comes out of discussion on #233. Additions to Linux system APIs are included in headers like
<linux/header.h>
rather than<header.h>
. We should use these headers for verification on Linux, in order to include constants that are not present in<header.h>
.@posborne provided some useful background:
As a specific example from #233:
The text was updated successfully, but these errors were encountered: