source: vendor/current/lib/util/setid.h

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 1.5 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3 setXXid() functions for Samba.
4 Copyright (C) Jeremy Allison 2012
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
18*/
19
20#ifndef _SETID_H
21#define _SETID_H
22
23/*
24 * NB. We don't wrap initgroups although on some systems
25 * this can call setgroups. On systems with thread-specific
26 * credentials (Linux so far) we know they have getgrouplist()
27 * which doesn't make a system call.
28 */
29
30/* All the setXX[ug]id functions and setgroups Samba uses. */
31int samba_setresuid(uid_t ruid, uid_t euid, uid_t suid);
32int samba_setresgid(gid_t rgid, gid_t egid, gid_t sgid);
33int samba_setreuid(uid_t ruid, uid_t euid);
34int samba_setregid(gid_t rgid, gid_t egid);
35int samba_seteuid(uid_t euid);
36int samba_setegid(gid_t egid);
37int samba_setuid(uid_t uid);
38int samba_setgid(gid_t gid);
39int samba_setuidx(int flags, uid_t uid);
40int samba_setgidx(int flags, gid_t gid);
41int samba_setgroups(size_t setlen, const gid_t *gidset);
42
43#endif
Note: See TracBrowser for help on using the repository browser.