1 /* setresgid -- set real group ID, effective group ID, and saved-set group ID
2 Copyright (C) 2002-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
24 /* Set the real group ID, effective group ID, and saved-set group ID,
25 of the calling process to RGID, EGID, and SGID, respectively. */
27 __setresgid (gid_t rgid
, gid_t egid
, gid_t sgid
)
33 __mutex_lock (&_hurd_id
.lock
);
34 err
= _hurd_check_ids ();
38 /* Make a new auth handle which has EGID as the first element in the
39 list of effective gids. */
41 uid_t
*newgen
, *newaux
;
42 uid_t auxs
[2] = { rgid
, sgid
};
45 newgen
= _hurd_id
.gen
.gids
;
46 ngen
= _hurd_id
.gen
.ngids
;
49 if (_hurd_id
.gen
.ngids
== 0)
51 /* No effective gids now. The new set will be just UID. */
57 _hurd_id
.gen
.gids
[0] = egid
;
62 newaux
= _hurd_id
.aux
.gids
;
63 naux
= _hurd_id
.aux
.ngids
;
66 if (_hurd_id
.aux
.ngids
== 0)
73 _hurd_id
.aux
.gids
[0] = rgid
;
82 if (_hurd_id
.aux
.ngids
>= 1)
83 auxs
[0] = _hurd_id
.aux
.gids
[0];
84 else if (_hurd_id
.gen
.ngids
>= 1)
85 auxs
[0] = _hurd_id
.gen
.gids
[0];
87 /* Not even an effective GID.
88 Fall back to the only GID we have. */
91 if (_hurd_id
.aux
.ngids
<= 1)
93 /* No saved gids now. The new set will be just UID. */
99 _hurd_id
.aux
.gids
[1] = sgid
;
104 err
= __USEPORT (AUTH
, __auth_makeauth
105 (port
, NULL
, MACH_MSG_TYPE_COPY_SEND
, 0,
106 _hurd_id
.gen
.uids
, _hurd_id
.gen
.nuids
,
107 _hurd_id
.aux
.uids
, _hurd_id
.aux
.nuids
,
108 newgen
, ngen
, newaux
, naux
,
111 __mutex_unlock (&_hurd_id
.lock
);
115 return __hurd_fail (err
);
117 /* Install the new handle and reauthenticate everything. */
118 err
= __setauth (newauth
);
119 __mach_port_deallocate (__mach_task_self (), newauth
);
122 libc_hidden_def (__setresgid
)
123 weak_alias (__setresgid
, setresgid
)