Home
last modified time | relevance | path

Searched refs:sgid (Results 1 – 25 of 35) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dsetresgid.c45 gid_t sgid = 0; in setresgid_0100() local
46 result = getresgid(&rgid, &egid, &sgid); in setresgid_0100()
51 if ((rgid != srgid) || (egid != segid) || (sgid != ssgid)) { in setresgid_0100()
54 t_error("%s failed: sgid = %d\n", __func__, sgid); in setresgid_0100()
88 gid_t sgid = 0; in setresgid_0200() local
89 result = getresgid(&rgid, &egid, &sgid); in setresgid_0200()
94 if ((rgid != srgid) || (egid != segid) || (sgid != ssgid)) { in setresgid_0200()
97 t_error("%s failed: sgid = %d\n", __func__, sgid); in setresgid_0200()
/third_party/ltp/testcases/kernel/syscalls/utils/
Dcompat_16.h37 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
38 int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid);
144 int SETRESGID(void (cleanup)(void), GID_T rgid, GID_T egid, GID_T sgid) in SETRESGID() argument
146 LTP_CREATE_SYSCALL(setresgid, cleanup, rgid, egid, sgid); in SETRESGID()
149 int GETRESGID(void (cleanup)(void), GID_T *rgid, GID_T *egid, GID_T *sgid) in GETRESGID() argument
151 LTP_CREATE_SYSCALL(getresgid, cleanup, rgid, egid, sgid); in GETRESGID()
Dcompat_tst_16.h33 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
136 int SETRESGID(GID_T rgid, GID_T egid, GID_T sgid) in SETRESGID() argument
138 TST_CREATE_SYSCALL(setresgid, rgid, egid, sgid); in SETRESGID()
/third_party/ltp/lib/
Dtst_uid.c100 gid_t rgid, egid, sgid; in tst_check_resgid_() local
102 SAFE_GETRESGID(&rgid, &egid, &sgid); in tst_check_resgid_()
104 if (rgid == exp_rgid && egid == exp_egid && sgid == exp_sgid) in tst_check_resgid_()
115 (int)rgid, (int)egid, (int)sgid); in tst_check_resgid_()
Dtst_safe_macros.c149 gid_t rgid, gid_t egid, gid_t sgid) in safe_setresgid() argument
153 ret = setresgid(rgid, egid, sgid); in safe_setresgid()
158 (long)egid, (long)sgid); in safe_setresgid()
162 (long)rgid, (long)egid, (long)sgid, ret); in safe_setresgid()
Dsafe_macros.c401 gid_t *rgid, gid_t *egid, gid_t *sgid) in safe_getresgid() argument
405 rval = getresgid(rgid, egid, sgid); in safe_getresgid()
409 "getresgid(%p, %p, %p) failed", rgid, egid, sgid); in safe_getresgid()
413 egid, sgid, rval); in safe_getresgid()
/third_party/ltp/testcases/kernel/syscalls/open/
Dopen10.c48 static void file_test(const char *name, mode_t mode, int sgid, gid_t gid) in file_test() argument
63 if (sgid < 0) { in file_test()
69 tst_res(sgid ? TPASS : TFAIL, "%s: Setgid bit is set", name); in file_test()
71 tst_res(sgid ? TFAIL : TPASS, "%s: Setgid bit not set", name); in file_test()
/third_party/ltp/testcases/kernel/syscalls/creat/
Dcreat08.c50 static void file_test(const char *name, mode_t mode, int sgid, gid_t gid) in file_test() argument
65 if (sgid < 0) { in file_test()
71 tst_res(sgid ? TPASS : TFAIL, "%s: Setgid bit is set", name); in file_test()
73 tst_res(sgid ? TFAIL : TPASS, "%s: Setgid bit not set", name); in file_test()
/third_party/musl/src/misc/
Dgetresgid.c5 int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid) in getresgid() argument
7 return syscall(SYS_getresgid, rgid, egid, sgid); in getresgid()
/third_party/musl/src/unistd/
Dsetresgid.c6 int setresgid(gid_t rgid, gid_t egid, gid_t sgid) in setresgid() argument
8 return __setxid(SYS_setresgid, rgid, egid, sgid); in setresgid()
/third_party/ltp/include/
Dtst_uid.h37 #define tst_check_resgid(cstr, rgid, egid, sgid) \ argument
38 tst_check_resgid_(__FILE__, __LINE__, (cstr), (rgid), (egid), (sgid))
Dtst_safe_macros.h124 gid_t rgid, gid_t egid, gid_t sgid);
125 #define SAFE_SETRESGID(rgid, egid, sgid) \ argument
126 safe_setresgid(__FILE__, __LINE__, (rgid), (egid), (sgid))
136 #define SAFE_GETRESGID(rgid, egid, sgid) \ argument
137 safe_getresgid(__FILE__, __LINE__, NULL, (rgid), (egid), (sgid))
Dsafe_macros_fn.h92 gid_t *rgid, gid_t *egid, gid_t *sgid);
/third_party/ltp/testcases/kernel/syscalls/setresgid/
Dsetresgid03.c25 gid_t *sgid; member
66 TST_EXP_FAIL(SETRESGID(*tc->rgid, *tc->egid, *tc->sgid), EPERM, "%s", in run()
Dsetresgid02.c29 gid_t *sgid; member
74 TST_EXP_PASS_SILENT(SETRESGID(*tc->rgid, *tc->egid, *tc->sgid), "%s", in run()
Dsetresgid01.c86 uid_t *sgid; /* saved GID */ member
133 *tdat[testno].sgid)); in main()
/third_party/ntfs-3g/libfuse-lite/
Dfusermount.c143 gid_t rgid, egid, sgid; in restore_privs() local
145 if (getresgid(&rgid, &egid, &sgid) < 0) { in restore_privs()
149 if (setresgid(-1, sgid, -1) < 0) { in restore_privs()
153 if (getegid() != sgid){ in restore_privs()
/third_party/ltp/include/old/
Dsafe_macros.h88 #define SAFE_GETRESGID(cleanup_fn, rgid, egid, sgid) \ argument
89 safe_getresgid(__FILE__, __LINE__, cleanup_fn, (rgid), (egid), (sgid))
/third_party/rust/crates/nix/src/
Dunistd.rs2806 pub fn setresgid(rgid: Gid, egid: Gid, sgid: Gid) -> Result<()> {
2807 let res = unsafe { libc::setresgid(rgid.into(), egid.into(), sgid.into()) };
2877 let mut sgid = libc::gid_t::max_value(); localVariable
2878 let res = unsafe { libc::getresgid(&mut rgid, &mut egid, &mut sgid) };
2880 … Errno::result(res).map(|_| ResGid { real: Gid(rgid), effective: Gid(egid), saved: Gid(sgid) } )
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/
Dmod.rs1777 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, sgid: *mut ::gid_t) -> ::c_int; in getresgid()
1826 pub fn setresgid(rgid: ::gid_t, egid: ::gid_t, sgid: ::gid_t) -> ::c_int; in setresgid()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs1514 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, sgid: *mut ::gid_t) -> ::c_int; in getresgid()
1659 pub fn setresgid(rgid: ::gid_t, egid: ::gid_t, sgid: ::gid_t) -> ::c_int; in setresgid()
/third_party/rust/crates/libc/src/unix/linux_like/
Dmod.rs1765 pub fn getresgid(rgid: *mut ::gid_t, egid: *mut ::gid_t, sgid: *mut ::gid_t) -> ::c_int; in getresgid()
1774 pub fn setresgid(rgid: ::gid_t, egid: ::gid_t, sgid: ::gid_t) -> ::c_int; in setresgid()
/third_party/libfuse/doc/
Dkernel.txt202 2) creating a filesystem containing a suid or sgid application,
/third_party/rust/crates/libc/src/unix/nto/
Dneutrino.rs41 pub sgid: ::gid_t,
/third_party/python/Modules/clinic/
Dposixmodule.c.h7377 os_setresgid_impl(PyObject *module, gid_t rgid, gid_t egid, gid_t sgid);
7385 gid_t sgid; in os_setresgid() local
7396 if (!_Py_Gid_Converter(args[2], &sgid)) { in os_setresgid()
7399 return_value = os_setresgid_impl(module, rgid, egid, sgid); in os_setresgid()

12