| /linux/rust/helpers/ |
| H A D | task.c | 26 __rust_helper kuid_t rust_helper_task_uid(struct task_struct *task) in rust_helper_task_uid() 31 __rust_helper kuid_t rust_helper_task_euid(struct task_struct *task) in rust_helper_task_euid() 37 __rust_helper uid_t rust_helper_from_kuid(struct user_namespace *to, kuid_t uid) in rust_helper_from_kuid() 43 __rust_helper bool rust_helper_uid_eq(kuid_t left, kuid_t right) in rust_helper_uid_eq() 48 __rust_helper kuid_t rust_helper_current_euid(void) in rust_helper_current_euid()
|
| /linux/fs/gfs2/ |
| H A D | quota.h | 20 int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid); 23 int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid); 26 int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid, 29 kuid_t uid, kgid_t gid);
|
| /linux/include/linux/sched/ |
| H A D | user.h | 24 kuid_t uid; 41 extern struct user_struct *find_user(kuid_t); 48 extern struct user_struct * alloc_uid(kuid_t);
|
| /linux/include/linux/ |
| H A D | ipc.h | 17 kuid_t uid; 19 kuid_t cuid;
|
| H A D | user_namespace.h | 82 kuid_t owner; 122 kuid_t uid; 134 struct ucounts *inc_ucount(struct user_namespace *ns, kuid_t uid, enum ucount_type type); 136 struct ucounts *alloc_ucounts(struct user_namespace *ns, kuid_t uid);
|
| H A D | sysfs.h | 483 int sysfs_file_change_owner(struct kobject *kobj, const char *name, kuid_t kuid, 485 int sysfs_change_owner(struct kobject *kobj, kuid_t kuid, kgid_t kgid); 487 const char *name, kuid_t kuid, kgid_t kgid); 490 kuid_t kuid, kgid_t kgid); 492 const struct attribute_group *groups, kuid_t kuid, 716 const char *name, kuid_t kuid, in sysfs_file_change_owner() 724 const char *name, kuid_t kuid, in sysfs_link_change_owner() 730 static inline int sysfs_change_owner(struct kobject *kobj, kuid_t kuid, kgid_t kgid) in sysfs_change_owner() 737 kuid_t kuid, kgid_t kgid) in sysfs_groups_change_owner() 744 kuid_t kuid, kgid_t kgid) in sysfs_group_change_owner()
|
| H A D | uidgid_types.h | 9 } kuid_t; typedef
|
| H A D | key.h | 213 kuid_t uid; 286 kuid_t uid, kgid_t gid, 421 extern struct key *keyring_alloc(const char *description, kuid_t uid, kgid_t gid,
|
| /linux/fs/nfsd/ |
| H A D | idmap.h | 55 __be32 nfsd_map_name_to_uid(struct svc_rqst *, const char *, size_t, kuid_t *); 57 __be32 nfsd4_encode_user(struct xdr_stream *, struct svc_rqst *, kuid_t);
|
| /linux/fs/sysfs/ |
| H A D | sysfs.h | 31 const struct attribute *attr, umode_t amode, kuid_t uid, 35 kuid_t uid, kgid_t gid, const struct ns_common *ns);
|
| H A D | group.c | 49 kuid_t uid, kgid_t gid, in create_files() 133 kuid_t uid; in internal_create_group() 369 kuid_t uid; in sysfs_merge_group() 576 const struct attribute_group *grp, kuid_t kuid, in sysfs_group_change_owner() 620 kuid_t kuid, kgid_t kgid) in sysfs_groups_change_owner()
|
| /linux/fs/nfs/ |
| H A D | nfs4idmap.h | 60 int nfs_map_name_to_uid(const struct nfs_server *, const char *, size_t, kuid_t *); 62 int nfs_map_uid_to_name(const struct nfs_server *, kuid_t, char *, size_t);
|
| /linux/security/apparmor/include/ |
| H A D | file.h | 68 kuid_t uid; 77 const char *target, struct aa_label *tlabel, kuid_t ouid, 80 struct aa_perms *aa_lookup_condperms(kuid_t subj_uid,
|
| /linux/include/net/9p/ |
| H A D | 9p.h | 437 kuid_t n_uid; /* 9p2000.u extensions */ 439 kuid_t n_muid; /* 9p2000.u extensions */ 446 kuid_t st_uid; 501 kuid_t uid;
|
| /linux/security/keys/ |
| H A D | persistent.c | 40 static key_ref_t key_create_persistent(struct user_namespace *ns, kuid_t uid, in key_create_persistent() 73 static long key_get_persistent(struct user_namespace *ns, kuid_t uid, in key_get_persistent() 133 kuid_t uid; in keyctl_get_persistent()
|
| /linux/security/ |
| H A D | commoncap.c | 368 static bool kuid_root_in_ns(kuid_t kuid, struct user_namespace *ns) in kuid_root_in_ns() 382 kuid_t kuid; in vfsuid_root_in_currentns() 425 kuid_t kroot; in cap_inode_getsecurity() 579 kuid_t rootid; in cap_convert_nscap() 684 kuid_t rootkuid; in get_vfs_caps_from_disk() 807 static inline bool __is_real(kuid_t uid, struct cred *cred) in __is_real() 810 static inline bool __is_eff(kuid_t uid, struct cred *cred) in __is_eff() 813 static inline bool __is_suid(kuid_t uid, struct cred *cred) in __is_suid() 829 bool *effective, kuid_t root_uid) in handle_privileged_root() 887 kuid_t roo in nonroot_raised_pE() [all...] |
| /linux/kernel/ |
| H A D | user.c | 127 static struct user_struct *uid_hash_find(kuid_t uid, struct hlist_head *hashent) in uid_hash_find() 176 struct user_struct *find_user(kuid_t uid) in find_user() 199 struct user_struct *alloc_uid(kuid_t uid) in alloc_uid()
|
| /linux/rust/kernel/ |
| H A D | task.rs | 153 kuid: bindings::kuid_t, 383 pub fn from_raw(kuid: bindings::kuid_t) -> Self { in from_raw() 389 pub fn into_raw(self) -> bindings::kuid_t { in into_raw() argument
|
| /linux/include/net/ |
| H A D | scm.h | 22 kuid_t uid; 70 struct pid *pid, kuid_t uid, kgid_t gid) in scm_set_cred()
|
| /linux/fs/smb/server/ |
| H A D | smbacl.h | 43 kuid_t cf_uid; 58 kuid_t uid;
|
| /linux/net/ |
| H A D | sysctl_net.c | 57 kuid_t *uid, kgid_t *gid) in net_ctl_set_ownership() 60 kuid_t ns_root_uid; in net_ctl_set_ownership()
|
| /linux/fs/zonefs/ |
| H A D | zonefs.h | 70 kuid_t z_uid; 224 kuid_t s_uid;
|
| /linux/block/ |
| H A D | ioprio.c | 70 kuid_t uid; in SYSCALL_DEFINE3() 185 kuid_t uid; in SYSCALL_DEFINE2()
|
| /linux/fs/jfs/ |
| H A D | jfs_incore.h | 30 kuid_t saved_uid; /* saved for uid mount option */ 196 kuid_t uid; /* uid to override on-disk uid */
|
| /linux/fs/smb/client/ |
| H A D | fs_context.h | 236 kuid_t cred_uid; 237 kuid_t linux_uid; 239 kuid_t backupuid;
|