| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | compat.c | 193 long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask, in compat_get_bitmap() argument 202 if (!user_read_access_begin(umask, bitmap_size / 8)) in compat_get_bitmap() 207 unsafe_get_user(l1, umask++, Efault); in compat_get_bitmap() 208 unsafe_get_user(l2, umask++, Efault); in compat_get_bitmap() 213 unsafe_get_user(*mask, umask++, Efault); in compat_get_bitmap() 222 long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask, in compat_put_bitmap() argument 231 if (!user_write_access_begin(umask, bitmap_size / 8)) in compat_put_bitmap() 236 unsafe_put_user((compat_ulong_t)m, umask++, Efault); in compat_put_bitmap() 237 unsafe_put_user(m >> BITS_PER_COMPAT_LONG, umask++, Efault); in compat_put_bitmap() 241 unsafe_put_user((compat_ulong_t)*mask, umask++, Efault); in compat_put_bitmap()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/ |
| H A D | CVE-2021-3981-grub-mkconfig-Restore-umask-for-the-grub.cfg.patch | 4 Subject: [PATCH] grub-mkconfig: Restore umask for the grub.cfg 7 configuration by grub-mkconfig) has inadvertently discarded umask for 13 This patch restores the missing umask and sets the creation file mode 40 + oldumask=$(umask) 41 + umask 077 43 + umask $oldumask
|
| /OK3568_Linux_fs/kernel/fs/notify/fanotify/ |
| H A D | fanotify_user.c | 721 __u32 umask, int *destroy) in fanotify_mark_remove_from_mask() argument 726 mask &= ~umask; in fanotify_mark_remove_from_mask() 740 *destroy = !((fsn_mark->mask | fsn_mark->ignored_mask) & ~umask); in fanotify_mark_remove_from_mask() 748 unsigned int flags, __u32 umask) in fanotify_remove_mark() argument 762 umask, &destroy_mark); in fanotify_remove_mark() 778 unsigned int flags, __u32 umask) in fanotify_remove_vfsmount_mark() argument 781 mask, flags, umask); in fanotify_remove_vfsmount_mark() 786 unsigned int flags, __u32 umask) in fanotify_remove_sb_mark() argument 789 flags, umask); in fanotify_remove_sb_mark() 794 unsigned int flags, __u32 umask) in fanotify_remove_inode_mark() argument [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/x86/ |
| H A D | tlb.rst | 68 cpu/event=0x8,umask=0x84,name=dtlb_load_misses_walk_duration/, 69 cpu/event=0x8,umask=0x82,name=dtlb_load_misses_walk_completed/, 70 cpu/event=0x49,umask=0x4,name=dtlb_store_misses_walk_duration/, 71 cpu/event=0x49,umask=0x2,name=dtlb_store_misses_walk_completed/, 72 cpu/event=0x85,umask=0x4,name=itlb_misses_walk_duration/, 73 cpu/event=0x85,umask=0x2,name=itlb_misses_walk_completed/
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | fs_struct.c | 121 fs->umask = old->umask; in copy_fs_struct() 158 return current->fs->umask; in current_umask() 167 .umask = 0022,
|
| /OK3568_Linux_fs/kernel/fs/hpfs/ |
| H A D | super.c | 313 static int parse_opts(char *opts, kuid_t *uid, kgid_t *gid, umode_t *umask, in parse_opts() argument 352 *umask = option; in parse_opts() 446 umode_t umask; in hpfs_remount_fs() local 457 umask = 0777 & ~sbi->sb_mode; in hpfs_remount_fs() 462 if (!(o = parse_opts(data, &uid, &gid, &umask, &lowercase, in hpfs_remount_fs() 479 sbi->sb_mode = 0777 & ~umask; in hpfs_remount_fs() 548 umode_t umask; in hpfs_fill_super() local 568 umask = current_umask(); in hpfs_fill_super() 576 if (!(o = parse_opts(options, &uid, &gid, &umask, &lowercase, in hpfs_fill_super() 627 sbi->sb_mode = 0777 & ~umask; in hpfs_fill_super()
|
| /OK3568_Linux_fs/buildroot/package/makedevs/ |
| H A D | makedevs.c | 128 mask = umask(0); in bb_make_directory() 130 umask(mask); in bb_make_directory() 135 umask(mask & ~0300); in bb_make_directory() 163 umask(mask); in bb_make_directory() 170 umask(mask); in bb_make_directory() 179 umask(mask); in bb_make_directory() 487 umask(0); in main()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/bin/ |
| H A D | bitbake-worker | 155 umask = None 163 umask = taskdep['umask'][taskname] 165 umask = workerdata["umask"] 166 if umask: 169 umask = int(umask, 8) 237 if umask: 238 os.umask(umask)
|
| /OK3568_Linux_fs/kernel/net/netfilter/ |
| H A D | xt_ipvs.c | 34 const union nf_inet_addr *umask, in ipvs_mt_addrcmp() argument 38 return ((kaddr->ip ^ uaddr->ip) & umask->ip) == 0; in ipvs_mt_addrcmp() 41 return ipv6_masked_addr_cmp(&kaddr->in6, &umask->in6, in ipvs_mt_addrcmp()
|
| H A D | xt_conntrack.c | 28 const union nf_inet_addr *umask, unsigned int l3proto) in conntrack_addrcmp() argument 31 return ((kaddr->ip ^ uaddr->ip) & umask->ip) == 0; in conntrack_addrcmp() 33 return ipv6_masked_addr_cmp(&kaddr->in6, &umask->in6, in conntrack_addrcmp()
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | hfsplus.rst | 26 umask=n 27 Specifies the umask (in octal) used for files and directories 29 Default: umask of the mounting process.
|
| H A D | omfs.rst | 39 umask=xxx set permission umask to xxx 40 fmask=xxx set umask to xxx for files 41 dmask=xxx set umask to xxx for directories
|
| H A D | hfs.rst | 32 dir_umask=n, file_umask=n, umask=n 33 Specifies the umask used for all files , all directories or all 34 files and directories. Defaults to the umask of the mounting process.
|
| H A D | isofs.rst | 12 umask=nnn The permission mask (see umask(1)) for the partition.
|
| /OK3568_Linux_fs/kernel/fs/hfsplus/ |
| H A D | options.c | 56 opts->umask = current_umask(); in hfsplus_fill_defaults() 132 sbi->umask = (umode_t)tmp; in hfsplus_parse_options() 225 seq_printf(seq, ",umask=%o,uid=%u,gid=%u", sbi->umask, in hfsplus_show_options()
|
| /OK3568_Linux_fs/buildroot/package/cgic/ |
| H A D | 0002-file_enhancements.patch | 40 + umode = umask(0600); 44 + umask(umode);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/unfs3/unfs3/ |
| H A D | fix_pid_race_parent_writes_child_pid.patch | 51 /* no umask to not screw up create modes */ 52 umask(0);
|
| H A D | relative_max_socket_path_len.patch | 64 umask(~mode); 68 umask(0);
|
| /OK3568_Linux_fs/kernel/fs/jfs/ |
| H A D | super.c | 364 char *umask = args[0].from; in parse_options() local 365 int rc = kstrtouint(umask, 8, &sbi->umask); in parse_options() 369 if (sbi->umask & ~0777) { in parse_options() 512 sbi->umask = -1; in jfs_fill_super() 706 if (sbi->umask != -1) in jfs_show_options() 707 seq_printf(seq, ",umask=%03o", sbi->umask); in jfs_show_options()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/resctrl/ |
| H A D | resctrl_val.c | 56 __u64 umask; member 76 imc_counters_config[i][j].umask << 8 | in membw_initialize_perf_event_attr() 124 imc_counters_config[count][READ].umask = in get_event_and_umask() 127 imc_counters_config[count][WRITE].umask = in get_event_and_umask()
|
| /OK3568_Linux_fs/kernel/fs/proc/ |
| H A D | array.c | 156 int g, umask = -1; in task_state() local 176 umask = p->fs->umask; in task_state() 182 if (umask >= 0) in task_state() 183 seq_printf(m, "Umask:\t%#04o\n", umask); in task_state()
|
| /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 | fuse.h | 458 uint32_t umask; member 464 uint32_t umask; member 508 uint32_t umask; member
|
| /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 | fuse.h | 458 uint32_t umask; member 464 uint32_t umask; member 508 uint32_t umask; member
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | jfs.rst | 47 umask=value 48 Override on-disk umask with specified octal value. For
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | fuse.h | 553 uint32_t umask; member 559 uint32_t umask; member 603 uint32_t umask; member
|