| /OK3568_Linux_fs/kernel/fs/ |
| H A D | attr.c | 96 attr->ia_mode &= ~S_ISGID; in setattr_prepare() 199 mode &= ~S_ISGID; in setattr_copy() 300 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) { in notify_change() 305 attr->ia_mode &= ~S_ISGID; in notify_change()
|
| H A D | inode.c | 1876 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP))) in should_remove_suid() 2144 if (dir && dir->i_mode & S_ISGID) { in inode_init_owner() 2149 mode |= S_ISGID; in inode_init_owner() 2150 else if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP) && in inode_init_owner() 2153 mode &= ~S_ISGID; in inode_init_owner()
|
| /OK3568_Linux_fs/u-boot/fs/reiserfs/ |
| H A D | mode_string.c | 17 #if ( S_ISUID != 04000 ) || ( S_ISGID != 02000 ) || ( S_ISVTX != 01000 ) \ 30 #if (S_IRWXU | S_IRWXG | S_IRWXO | S_ISUID | S_ISGID | S_ISVTX) == 07777 37 S_IRGRP, S_IWGRP, S_IXGRP, S_ISGID,
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/elfutils/files/ |
| H A D | 0003-musl-utils.patch | 33 +# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO) /* 07777 */ 50 +# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO) /* 07777 */
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/ |
| H A D | stat.h | 161 #define S_ISGID __S_ISGID /* Set group ID on execution. */ macro 196 # define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/ |
| H A D | stat.h | 161 #define S_ISGID __S_ISGID /* Set group ID on execution. */ macro 196 # define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | stat.h | 10 #define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
|
| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/cell/spufs/ |
| H A D | inode.c | 238 if (dir->i_mode & S_ISGID) { in spufs_mkdir() 240 inode->i_mode &= S_ISGID; in spufs_mkdir() 472 if (dir->i_mode & S_ISGID) { in spufs_mkgang() 474 inode->i_mode &= S_ISGID; in spufs_mkgang()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/capabilities/ |
| H A D | test_execve.c | 254 if (chmod("validate_cap_sgidroot", S_ISGID | 0710) != 0) in do_tests() 261 if (chmod("validate_cap_sgidnonroot", S_ISGID | 0710) != 0) in do_tests()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | stat.h | 18 #define S_ISGID 0002000 macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | stat.h | 18 #define S_ISGID 0002000 macro
|
| /OK3568_Linux_fs/kernel/tools/perf/trace/beauty/ |
| H A D | mode_t.c | 11 #define S_IALLUGO (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | stat.h | 18 #define S_ISGID 0002000 macro
|
| /OK3568_Linux_fs/kernel/tools/include/uapi/linux/ |
| H A D | stat.h | 18 #define S_ISGID 0002000 macro
|
| /OK3568_Linux_fs/u-boot/include/linux/ |
| H A D | stat.h | 19 #define S_ISGID 0002000 /* set group id on execution */ macro
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/open-vm-tools/open-vm-tools/ |
| H A D | 0004-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch | 35 # define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | cramfs.c | 68 if(mode & S_ISGID) str[6] = (mode & S_IXGRP)?'s':'S'; in mkmodestr()
|
| /OK3568_Linux_fs/buildroot/package/openvmtools/ |
| H A D | 0006-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch | 38 # define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | fcntl.h | 98 # define S_ISGID __S_ISGID /* Set group ID on execution. */ macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/ |
| H A D | fcntl.h | 98 # define S_ISGID __S_ISGID /* Set group ID on execution. */ macro
|
| /OK3568_Linux_fs/kernel/fs/9p/ |
| H A D | vfs_inode_dotl.c | 49 if (dir_inode->i_mode & S_ISGID) { in v9fs_get_fsgid_for_create() 386 if (dir->i_mode & S_ISGID) in v9fs_vfs_mkdir_dotl() 387 omode |= S_ISGID; in v9fs_vfs_mkdir_dotl()
|
| H A D | vfs_inode.c | 69 if ((mode & S_ISGID) == S_ISGID) in unixmode2p9mode() 95 res |= S_ISGID; in p9mode2perm()
|
| /OK3568_Linux_fs/kernel/fs/orangefs/ |
| H A D | orangefs-utils.c | 128 perm_mode |= S_ISGID; in orangefs_inode_perms() 545 S_ISGID, S_ISUID in ORANGEFS_util_translate_mode()
|
| /OK3568_Linux_fs/kernel/fs/configfs/ |
| H A D | inode.c | 88 mode &= ~S_ISGID; in configfs_setattr()
|
| /OK3568_Linux_fs/kernel/fs/cifs/ |
| H A D | dir.c | 388 if (inode->i_mode & S_ISGID) in cifs_do_create() 425 if (inode->i_mode & S_ISGID) in cifs_do_create()
|