* [PATCH] rpc.gssd: truncates 32-bit UIDs/GIDs to 16 bits architectures.
@ 2018-07-18 12:11 Steve Dickson
2018-07-18 12:33 ` Christoph Hellwig
2018-07-18 15:27 ` Steve Dickson
0 siblings, 2 replies; 4+ messages in thread
From: Steve Dickson @ 2018-07-18 12:11 UTC (permalink / raw)
To: Linux NFS Mailing list
utils/gssd_proc.c uses SYS_setresuid and SYS_setresgid in
change_identity when it should use SYS_setresuid32 and
SYS_setresgid32 instead. This causes it to truncate
UIDs/GIDs > 65536.
Fixes: https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1779962
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1595927
Tested-by: James Ettle <theholyettlz@googlemail.com>
Tested-by: Sree <Sree@gmail.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
---
utils/gssd/gssd_proc.c | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/utils/gssd/gssd_proc.c b/utils/gssd/gssd_proc.c
index 8767e26..7a57c4e 100644
--- a/utils/gssd/gssd_proc.c
+++ b/utils/gssd/gssd_proc.c
@@ -434,6 +434,7 @@ static int
change_identity(uid_t uid)
{
struct passwd *pw;
+ int res;
/* drop list of supplimentary groups first */
if (syscall(SYS_setgroups, 0, 0) != 0) {
@@ -459,14 +460,23 @@ change_identity(uid_t uid)
* send a signal to all other threads to synchronize the uid in all
* other threads. To bypass this, we have to call syscall() directly.
*/
- if (syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
+#ifdef __NR_setresuid32
+ res = syscall(SYS_setresgid32, pw->pw_gid, pw->pw_gid, pw->pw_gid);
+#else
+ res = syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid);
+#endif
+ if (res != 0) {
printerr(0, "WARNING: failed to set gid to %u!\n", pw->pw_gid);
return errno;
}
- if (syscall(SYS_setresuid, uid, uid, uid) != 0) {
- printerr(0, "WARNING: Failed to setuid for user with uid %u\n",
- uid);
+#ifdef __NR_setresuid32
+ res = syscall(SYS_setresuid32, uid, uid, uid);
+#else
+ res = syscall(SYS_setresuid, uid, uid, uid);
+#endif
+ if (res != 0) {
+ printerr(0, "WARNING: Failed to setuid for user with uid %u\n", uid);
return errno;
}
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] rpc.gssd: truncates 32-bit UIDs/GIDs to 16 bits architectures.
2018-07-18 12:11 [PATCH] rpc.gssd: truncates 32-bit UIDs/GIDs to 16 bits architectures Steve Dickson
@ 2018-07-18 12:33 ` Christoph Hellwig
2018-07-18 14:26 ` Steve Dickson
2018-07-18 15:27 ` Steve Dickson
1 sibling, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2018-07-18 12:33 UTC (permalink / raw)
To: Steve Dickson; +Cc: Linux NFS Mailing list
> - if (syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
> +#ifdef __NR_setresuid32
> + res = syscall(SYS_setresgid32, pw->pw_gid, pw->pw_gid, pw->pw_gid);
> +#else
> + res = syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid);
> +#endif
I think you want to simply call setresuid/setresgid from glibcs, which
will do the right thing instead of doing hand crafted syscalls.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] rpc.gssd: truncates 32-bit UIDs/GIDs to 16 bits architectures.
2018-07-18 12:33 ` Christoph Hellwig
@ 2018-07-18 14:26 ` Steve Dickson
0 siblings, 0 replies; 4+ messages in thread
From: Steve Dickson @ 2018-07-18 14:26 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: Linux NFS Mailing list
On 07/18/2018 08:33 AM, Christoph Hellwig wrote:
>> - if (syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
>> +#ifdef __NR_setresuid32
>> + res = syscall(SYS_setresgid32, pw->pw_gid, pw->pw_gid, pw->pw_gid);
>> +#else
>> + res = syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid);
>> +#endif
>
> I think you want to simply call setresuid/setresgid from glibcs, which
> will do the right thing instead of doing hand crafted syscalls.
Here is the comment above these calls
/* Switch the UIDs and GIDs. */
/* For the threaded version we have to set uid,gid per thread instead
* of per process. glibc setresuid() when called from a thread, it'll
* send a signal to all other threads to synchronize the uid in all
* other threads. To bypass this, we have to call syscall() directly.
*/
steved.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] rpc.gssd: truncates 32-bit UIDs/GIDs to 16 bits architectures.
2018-07-18 12:11 [PATCH] rpc.gssd: truncates 32-bit UIDs/GIDs to 16 bits architectures Steve Dickson
2018-07-18 12:33 ` Christoph Hellwig
@ 2018-07-18 15:27 ` Steve Dickson
1 sibling, 0 replies; 4+ messages in thread
From: Steve Dickson @ 2018-07-18 15:27 UTC (permalink / raw)
To: Linux NFS Mailing list
On 07/18/2018 08:11 AM, Steve Dickson wrote:
> utils/gssd_proc.c uses SYS_setresuid and SYS_setresgid in
> change_identity when it should use SYS_setresuid32 and
> SYS_setresgid32 instead. This causes it to truncate
> UIDs/GIDs > 65536.
>
> Fixes: https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1779962
> Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1595927
>
> Tested-by: James Ettle <theholyettlz@googlemail.com>
> Tested-by: Sree <Sree@gmail.com>
> Signed-off-by: Steve Dickson <steved@redhat.com>
Committed...
steved.
> ---
> utils/gssd/gssd_proc.c | 18 ++++++++++++++----
> 1 file changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/utils/gssd/gssd_proc.c b/utils/gssd/gssd_proc.c
> index 8767e26..7a57c4e 100644
> --- a/utils/gssd/gssd_proc.c
> +++ b/utils/gssd/gssd_proc.c
> @@ -434,6 +434,7 @@ static int
> change_identity(uid_t uid)
> {
> struct passwd *pw;
> + int res;
>
> /* drop list of supplimentary groups first */
> if (syscall(SYS_setgroups, 0, 0) != 0) {
> @@ -459,14 +460,23 @@ change_identity(uid_t uid)
> * send a signal to all other threads to synchronize the uid in all
> * other threads. To bypass this, we have to call syscall() directly.
> */
> - if (syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
> +#ifdef __NR_setresuid32
> + res = syscall(SYS_setresgid32, pw->pw_gid, pw->pw_gid, pw->pw_gid);
> +#else
> + res = syscall(SYS_setresgid, pw->pw_gid, pw->pw_gid, pw->pw_gid);
> +#endif
> + if (res != 0) {
> printerr(0, "WARNING: failed to set gid to %u!\n", pw->pw_gid);
> return errno;
> }
>
> - if (syscall(SYS_setresuid, uid, uid, uid) != 0) {
> - printerr(0, "WARNING: Failed to setuid for user with uid %u\n",
> - uid);
> +#ifdef __NR_setresuid32
> + res = syscall(SYS_setresuid32, uid, uid, uid);
> +#else
> + res = syscall(SYS_setresuid, uid, uid, uid);
> +#endif
> + if (res != 0) {
> + printerr(0, "WARNING: Failed to setuid for user with uid %u\n", uid);
> return errno;
> }
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-07-18 16:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-18 12:11 [PATCH] rpc.gssd: truncates 32-bit UIDs/GIDs to 16 bits architectures Steve Dickson
2018-07-18 12:33 ` Christoph Hellwig
2018-07-18 14:26 ` Steve Dickson
2018-07-18 15:27 ` Steve Dickson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox