-
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
fix wrong definitions of getpwent_r and getgrent_r on solarish os #2914
fix wrong definitions of getpwent_r and getgrent_r on solarish os #2914
Conversation
r? @Amanieu (rust-highfive has picked a reviewer for you, use r? to override) |
41a4306
to
85451c6
Compare
This is a breaking change, did you make sure that the change doesn't break any code? cc @ctrlcctrlv who originally added this |
I mean, I have not tested personally on Solaris, but it looks right to me. |
Not sure about this. So what are we going to do about this PR? |
I think @pfmooney and I will take a look at the specifics and make a recommendation, at least wrt. illumos. |
We focus on back-compat and changing declarations will break existing code (unless it's totally wrong and doesn't work at all), we have to confirm that the change here doesn't confuse anyone. |
I'm to blame for this via #934. I have two questions.
|
Well, failing an answer to №2, I've gotten OmniOS (an Illumos distribution) working on my own. I suggest I just author a patch to Illumos to add the missing functions, making this issue moot. Does anyone have an opinion on that course of action? |
Sounds good to me:) |
I've had a look at this, and I suspect that the right call is probably to implement, in Rust, the behaviour you're expecting based on the other platforms as a wrapper around the native function. I don't believe there's any substantial difference otherwise, so you could presumably do something a bit like this: extern "C" {
#[cfg_attr(link_name = "getpwent_r")]
pub fn native_getpwent_r(pwd: *mut passwd, buf: *mut ::c_char, buflen: ::c_int) -> *mut passwd;
}
pub unsafe fn getpwent_r(
pwd: *mut passwd,
buf: *mut ::c_char,
buflen: ::size_t,
result: *mut *mut passwd,
) -> ::c_int {
let res = native_getpwent_r(passwd, buf, buflen.try_into().unwrap());
if res.is_null() {
-1
} else {
*result = res;
0
}
} This would go in the We can and likely eventually will figure out a path for reworking these routines in illumos, but it will take time and coordination. Even when that lands it will be months or years before users have updated all their machines past LTS releases of various distributions to get the new symbol available. |
@jclulow's walkaround looks good and I just added it. Any opinion on this? (friendly ping @JohnTitor) |
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.
Thanks for taking a swing at this! I have put a few thoughts in comments.
src/unix/solarish/mod.rs
Outdated
buflen: ::size_t, | ||
result: *mut *mut passwd, | ||
) -> ::c_int; | ||
pub fn native_getpwent_r(pwd: *mut passwd, buf: *mut ::c_char, buflen: ::c_int) -> *mut passwd; |
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.
It's not clear to me if native_getpwent_r()
and native_getgrent_r()
should be pub
or perhaps rather pub(crate)
-- or maybe no access qualifier is necessary because they're only used from a child module? If they're pub
it would seem that we'd have to keep exposing them forever, because removing them would then break libc crate backwards compatibility.
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.
I removed the pub
qualifier since these two functions are only used inside this child module
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.
If this doesn't introduce any breaking change (i.e. ABI change, MSRV breaking, liking change), I'm fine to accept, has anyone confirmed that?
3df8435
to
265b2dd
Compare
I just squashed and rebased, could I trouble you guys for another review:) |
API:Current APIs are the same as the original ones, so no API break here: MSRV:IMHO, no MSRV break occurs. Associated constants like About that
|
a73b12c
to
2238af3
Compare
2238af3
to
8a914ca
Compare
Thanks a lot @jclulow for helping out. As I said in IRC, I think your solution offers the best of my proposed solution and the solution @SteveLauC originally proposed. |
…sh-os, r=<try> fix wrong definitions of getpwent_r and getgrent_r on solarish os Closes #2908 * [man page for `getpwent_r`](https://illumos.org/man/3C/getpwnam) * [man page for `getgrent_r`](https://illumos.org/man/3C/getgrnam) You may find the definitions for `getpwnam_r/getpwuid_r/getgrnam_r/getgruid_r` exposed by `libc` are also wrong: ```c struct passwd *getpwnam_r(const char *name, struct passwd *pwd, char *buffer, int buflen); ``` ```rust pub fn getpwnam_r( name: *const ::c_char, pwd: *mut passwd, buf: *mut ::c_cha buflen: ::size_t, result: *mut *mut passwd, ) -> ::c_int; ``` But actually they are **correct** as there are the POSIX-conforming definitions (see `Standard conforming` section of above man pages): ``` Standard conforming cc [ flag...] file... -D_POSIX_PTHREAD_SEMANTICS [ library... ] int getpwnam_r(const char *name, struct passwd *pwd, char *buffer, size_t bufsize, struct passwd **result); int getpwuid_r(uid_t uid, struct passwd *pwd, char *buffer, size_t bufsize, struct passwd **result); ``` `getpwent_r/getgrent_r` don't get lucky, they do not have the POSIX-conforming alternatives. To double check this, I searched its [source code](https://github.com/illumos/illumos-gate/blob/master/usr/src/lib/libc/port/gen/getpwnam_r.c): ```shell $ rg "__posix_getpwnam_r" port/mapfile-vers 1582: __posix_getpwnam_r; port/gen/getpwnam_r.c 152:__posix_getpwnam_r(const char *name, struct passwd *pwd, char *buffer, $ rg "__posix_getpwent_r" $ ```
💔 Test failed - checks-actions |
CI |
CI issue has been fixed, @bors try |
…sh-os, r=<try> fix wrong definitions of getpwent_r and getgrent_r on solarish os Closes #2908 * [man page for `getpwent_r`](https://illumos.org/man/3C/getpwnam) * [man page for `getgrent_r`](https://illumos.org/man/3C/getgrnam) You may find the definitions for `getpwnam_r/getpwuid_r/getgrnam_r/getgruid_r` exposed by `libc` are also wrong: ```c struct passwd *getpwnam_r(const char *name, struct passwd *pwd, char *buffer, int buflen); ``` ```rust pub fn getpwnam_r( name: *const ::c_char, pwd: *mut passwd, buf: *mut ::c_cha buflen: ::size_t, result: *mut *mut passwd, ) -> ::c_int; ``` But actually they are **correct** as there are the POSIX-conforming definitions (see `Standard conforming` section of above man pages): ``` Standard conforming cc [ flag...] file... -D_POSIX_PTHREAD_SEMANTICS [ library... ] int getpwnam_r(const char *name, struct passwd *pwd, char *buffer, size_t bufsize, struct passwd **result); int getpwuid_r(uid_t uid, struct passwd *pwd, char *buffer, size_t bufsize, struct passwd **result); ``` `getpwent_r/getgrent_r` don't get lucky, they do not have the POSIX-conforming alternatives. To double check this, I searched its [source code](https://github.com/illumos/illumos-gate/blob/master/usr/src/lib/libc/port/gen/getpwnam_r.c): ```shell $ rg "__posix_getpwnam_r" port/mapfile-vers 1582: __posix_getpwnam_r; port/gen/getpwnam_r.c 152:__posix_getpwnam_r(const char *name, struct passwd *pwd, char *buffer, $ rg "__posix_getpwent_r" $ ```
☀️ Try build successful - checks-actions, checks-cirrus-freebsd-12, checks-cirrus-freebsd-13, checks-cirrus-freebsd-14 |
☀️ Test successful - checks-actions, checks-cirrus-freebsd-12, checks-cirrus-freebsd-13, checks-cirrus-freebsd-14 |
Closes #2908
getpwent_r
getgrent_r
You may find the definitions for
getpwnam_r/getpwuid_r/getgrnam_r/getgruid_r
exposed bylibc
are also wrong:But actually they are correct as there are the POSIX-conforming definitions (see
Standard conforming
section of above man pages):getpwent_r/getgrent_r
don't get lucky, they do not have the POSIX-conforming alternatives.To double check this, I searched its source code: