Home
last modified time | relevance | path

Searched refs:cred (Results 1 – 25 of 290) sorted by relevance

12345678910>>...12

/linux/include/linux/
A Dcred.h20 struct cred;
183 static inline struct cred *get_new_cred_many(struct cred *cred, int nr) in get_new_cred_many() argument
196 static inline struct cred *get_new_cred(struct cred *cred) in get_new_cred() argument
215 static inline const struct cred *get_cred_many(const struct cred *cred, int nr) in get_cred_many() argument
217 struct cred *nonconst_cred = (struct cred *) cred; in get_cred_many()
218 if (!cred) in get_cred_many()
233 static inline const struct cred *get_cred(const struct cred *cred) in get_cred() argument
238 static inline const struct cred *get_cred_rcu(const struct cred *cred) in get_cred_rcu() argument
240 struct cred *nonconst_cred = (struct cred *) cred; in get_cred_rcu()
241 if (!cred) in get_cred_rcu()
[all …]
A Dsecurity.h39 struct cred;
301 int security_capable(const struct cred *cred,
443 void security_cred_free(struct cred *cred);
471 int security_task_prlimit(const struct cred *cred, const struct cred *tcred,
479 int sig, const struct cred *cred);
483 int security_create_user_ns(const struct cred *cred);
1308 const struct cred *cred) in security_task_kill() argument
1534 const struct cred *cred,
1538 const struct cred *cred, in security_post_notification() argument
2059 const struct cred *cred, in security_key_alloc() argument
[all …]
A Dlsm_hook_defs.h31 const struct cred *to)
33 const struct cred *to)
41 LSM_HOOK(int, 0, capset, struct cred *new, const struct cred *old,
44 LSM_HOOK(int, 0, capable, const struct cred *cred, struct user_namespace *ns,
88 struct qstr *name, const struct cred *old, struct cred *new)
213 LSM_HOOK(int, 0, cred_alloc_blank, struct cred *cred, gfp_t gfp)
214 LSM_HOOK(void, LSM_RET_VOID, cred_free, struct cred *cred)
244 LSM_HOOK(int, 0, task_prlimit, const struct cred *cred,
252 int sig, const struct cred *cred)
257 LSM_HOOK(int, 0, userns_create, const struct cred *cred)
[all …]
/linux/net/sunrpc/
A Dauth.c316 return cred->cr_ops->crstringify_acceptor(cred); in rpcauth_stringify_acceptor()
565 int res = cred->cr_ops->cr_init(auth, cred); in rpcauth_lookup_credcache()
582 const struct cred *cred = current_cred(); in rpcauth_lookupcred() local
585 acred.cred = cred; in rpcauth_lookupcred()
602 cred->cr_cred = get_cred(acred->cred); in rpcauth_init_cred()
628 .cred = init_task.cred, in rpcauth_bind_machine_cred()
654 .cred = cred, in rpcauth_bindcred()
662 else if (cred != NULL && cred != &machine_cred) in rpcauth_bindcred()
710 cred->cr_ops->crdestroy(cred); in put_rpccred()
822 if (!cred || !cred->cr_ops->crneed_reencode) in rpcauth_xmit_need_reencode()
[all …]
A Dauth_unix.c71 unx_destroy_cred(struct rpc_cred *cred) in unx_destroy_cred() argument
73 call_rcu(&cred->cr_rcu, unx_free_cred_callback); in unx_destroy_cred()
85 if (cred->cr_cred == acred->cred) in unx_match()
88 …if (!uid_eq(cred->cr_cred->fsuid, acred->cred->fsuid) || !gid_eq(cred->cr_cred->fsgid, acred->cred in unx_match()
91 if (acred->cred->group_info != NULL) in unx_match()
92 groups = acred->cred->group_info->ngroups; in unx_match()
95 if (cred->cr_cred->group_info == NULL) in unx_match()
97 if (groups != cred->cr_cred->group_info->ngroups) in unx_match()
101 if (!gid_eq(cred->cr_cred->group_info->gid[i], acred->cred->group_info->gid[i])) in unx_match()
114 struct rpc_cred *cred = task->tk_rqstp->rq_cred; in unx_marshal() local
[all …]
/linux/kernel/
A Dcred.c70 struct cred *cred = container_of(rcu, struct cred, rcu); in put_cred_rcu() local
76 cred, atomic_long_read(&cred->usage)); in put_cred_rcu()
98 void __put_cred(struct cred *cred) in __put_cred() argument
104 BUG_ON(cred == current->cred); in __put_cred()
119 struct cred *real_cred, *cred; in exit_creds() local
127 cred = (struct cred *) tsk->cred; in exit_creds()
155 const struct cred *cred; in get_task_cred() local
165 return cred; in get_task_cred()
307 p->cred, atomic_long_read(&p->cred->usage)); in copy_creds()
488 const struct cred *old = current->cred; in override_creds()
[all …]
A Duid16.c66 const struct cred *cred = current_cred(); in SYSCALL_DEFINE3() local
70 ruid = high2lowuid(from_kuid_munged(cred->user_ns, cred->uid)); in SYSCALL_DEFINE3()
71 euid = high2lowuid(from_kuid_munged(cred->user_ns, cred->euid)); in SYSCALL_DEFINE3()
72 suid = high2lowuid(from_kuid_munged(cred->user_ns, cred->suid)); in SYSCALL_DEFINE3()
89 const struct cred *cred = current_cred(); in SYSCALL_DEFINE3() local
93 rgid = high2lowgid(from_kgid_munged(cred->user_ns, cred->gid)); in SYSCALL_DEFINE3()
94 egid = high2lowgid(from_kgid_munged(cred->user_ns, cred->egid)); in SYSCALL_DEFINE3()
95 sgid = high2lowgid(from_kgid_munged(cred->user_ns, cred->sgid)); in SYSCALL_DEFINE3()
156 const struct cred *cred = current_cred(); in SYSCALL_DEFINE2() local
162 i = cred->group_info->ngroups; in SYSCALL_DEFINE2()
[all …]
A Dgroups.c136 struct cred *new; in set_current_groups()
137 const struct cred *old; in set_current_groups()
163 const struct cred *cred = current_cred(); in SYSCALL_DEFINE2() local
170 i = cred->group_info->ngroups; in SYSCALL_DEFINE2()
176 if (groups_to_user(grouplist, cred->group_info)) { in SYSCALL_DEFINE2()
229 const struct cred *cred = current_cred(); in in_group_p() local
232 if (!gid_eq(grp, cred->fsgid)) in in_group_p()
233 retval = groups_search(cred->group_info, grp); in in_group_p()
241 const struct cred *cred = current_cred(); in in_egroup_p() local
244 if (!gid_eq(grp, cred->egid)) in in_egroup_p()
[all …]
/linux/security/keys/
A Dprocess_keys.c77 const struct cred *cred = current_cred(); in look_up_user_keyrings() local
185 struct key *get_user_session_keyring_rcu(const struct cred *cred) in get_user_session_keyring_rcu() argument
194 .cred = cred, in get_user_session_keyring_rcu()
246 struct cred *new; in install_thread_keyring()
293 struct cred *new; in install_process_keyring()
330 keyring = keyring_alloc("_ses", cred->uid, cred->gid, cred, in install_session_keyring_to_cred()
426 const struct cred *cred = ctx->cred; in search_cred_keyrings_rcu() local
557 const struct cred *cred = ctx->cred; in search_process_keyrings_rcu() local
563 ctx->cred = rka->cred; in search_process_keyrings_rcu()
565 ctx->cred = cred; in search_process_keyrings_rcu()
[all …]
A Drequest_key_auth.c112 if (rka->cred) in free_request_key_auth()
113 put_cred(rka->cred); in free_request_key_auth()
166 const struct cred *cred = current_cred(); in request_key_auth_new() local
185 if (cred->request_key_auth) { in request_key_auth_new()
187 down_read(&cred->request_key_auth->sem); in request_key_auth_new()
193 up_read(&cred->request_key_auth->sem); in request_key_auth_new()
199 rka->cred = get_cred(irka->cred); in request_key_auth_new()
202 up_read(&cred->request_key_auth->sem); in request_key_auth_new()
206 rka->cred = get_cred(cred); in request_key_auth_new()
217 cred->fsuid, cred->fsgid, cred, in request_key_auth_new()
[all …]
A Drequest_key.c80 static int umh_keys_init(struct subprocess_info *info, struct cred *cred) in umh_keys_init() argument
122 const struct cred *cred = current_cred(); in call_sbin_request_key() local
139 cred = get_current_cred(); in call_sbin_request_key()
140 keyring = keyring_alloc(desc, cred->fsuid, cred->fsgid, cred, in call_sbin_request_key()
143 put_cred(cred); in call_sbin_request_key()
163 cred->thread_keyring ? cred->thread_keyring->serial : 0); in call_sbin_request_key()
166 if (cred->process_keyring) in call_sbin_request_key()
268 const struct cred *cred = current_cred(); in construct_get_dest_keyring() local
396 ctx->cred->fsuid, ctx->cred->fsgid, ctx->cred, in construct_alloc_key()
588 .cred = current_cred(), in request_key_and_link()
[all …]
/linux/security/apparmor/include/
A Dcred.h22 static inline struct aa_label *cred_label(const struct cred *cred) in cred_label() argument
24 struct aa_label **blob = cred->security + apparmor_blob_sizes.lbs_cred; in cred_label()
30 static inline void set_cred_label(const struct cred *cred, in set_cred_label() argument
33 struct aa_label **blob = cred->security + apparmor_blob_sizes.lbs_cred; in set_cred_label()
47 static inline struct aa_label *aa_cred_raw_label(const struct cred *cred) in aa_cred_raw_label() argument
49 struct aa_label *label = cred_label(cred); in aa_cred_raw_label()
61 static inline struct aa_label *aa_get_newest_cred_label(const struct cred *cred) in aa_get_newest_cred_label() argument
63 return aa_get_newest_label(aa_cred_raw_label(cred)); in aa_get_newest_cred_label()
66 static inline struct aa_label *aa_get_newest_cred_label_condref(const struct cred *cred, in aa_get_newest_cred_label_condref() argument
69 struct aa_label *l = aa_cred_raw_label(cred); in aa_get_newest_cred_label_condref()
A Dmount.h28 int aa_remount(const struct cred *subj_cred,
32 int aa_bind_mount(const struct cred *subj_cred,
37 int aa_mount_change_type(const struct cred *subj_cred,
41 int aa_move_mount_old(const struct cred *subj_cred,
44 int aa_move_mount(const struct cred *subj_cred,
48 int aa_new_mount(const struct cred *subj_cred,
53 int aa_umount(const struct cred *subj_cred,
56 int aa_pivotroot(const struct cred *subj_cred,
/linux/include/linux/sunrpc/
A Dsvcauth.h39 cred->cr_group_info = NULL; in init_svc_cred()
40 cred->cr_raw_principal = NULL; in init_svc_cred()
41 cred->cr_principal = NULL; in init_svc_cred()
42 cred->cr_targ_princ = NULL; in init_svc_cred()
43 cred->cr_gss_mech = NULL; in init_svc_cred()
48 if (cred->cr_group_info) in free_svc_cred()
50 kfree(cred->cr_raw_principal); in free_svc_cred()
51 kfree(cred->cr_principal); in free_svc_cred()
52 kfree(cred->cr_targ_princ); in free_svc_cred()
54 init_svc_cred(cred); in free_svc_cred()
[all …]
/linux/security/
A Dcommoncap.c138 const struct cred *cred, *child_cred; in cap_ptrace_access_check() local
175 const struct cred *cred, *child_cred; in cap_ptrace_traceme() local
204 const struct cred *cred; in cap_capget() local
592 struct cred *new = bprm->cred; in bprm_caps_from_vfs_caps()
768 static inline bool __is_real(kuid_t uid, struct cred *cred) in __is_real() argument
771 static inline bool __is_eff(kuid_t uid, struct cred *cred) in __is_eff() argument
774 static inline bool __is_suid(kuid_t uid, struct cred *cred) in __is_suid() argument
775 { return !__is_real(uid, cred) && __is_eff(uid, cred); } in __is_suid()
793 struct cred *new = bprm->cred; in handle_privileged_root()
826 !cap_issubset(cred->cap_##target, cred->cap_##source)
[all …]
/linux/include/linux/pds/
A Dpds_intr.h130 u32 cred, u32 flags) in pds_core_intr_credits() argument
132 if (WARN_ON_ONCE(cred > PDS_CORE_INTR_CRED_COUNT)) { in pds_core_intr_credits()
133 cred = ioread32(&intr_ctrl->credits); in pds_core_intr_credits()
134 cred &= PDS_CORE_INTR_CRED_COUNT_SIGNED; in pds_core_intr_credits()
137 iowrite32(cred | flags, &intr_ctrl->credits); in pds_core_intr_credits()
143 u32 cred; in pds_core_intr_clean_flags() local
145 cred = ioread32(&intr_ctrl->credits); in pds_core_intr_clean_flags()
146 cred &= PDS_CORE_INTR_CRED_COUNT_SIGNED; in pds_core_intr_clean_flags()
147 cred |= flags; in pds_core_intr_clean_flags()
148 iowrite32(cred, &intr_ctrl->credits); in pds_core_intr_clean_flags()
/linux/drivers/net/ethernet/pensando/ionic/
A Dionic_regs.h66 int intr_idx, u32 cred, u32 flags) in ionic_intr_credits() argument
68 if (WARN_ON_ONCE(cred > IONIC_INTR_CRED_COUNT)) { in ionic_intr_credits()
69 cred = ioread32(&intr_ctrl[intr_idx].credits); in ionic_intr_credits()
70 cred &= IONIC_INTR_CRED_COUNT_SIGNED; in ionic_intr_credits()
73 iowrite32(cred | flags, &intr_ctrl[intr_idx].credits); in ionic_intr_credits()
79 u32 cred; in ionic_intr_clean() local
81 cred = ioread32(&intr_ctrl[intr_idx].credits); in ionic_intr_clean()
82 cred &= IONIC_INTR_CRED_COUNT_SIGNED; in ionic_intr_clean()
83 cred |= IONIC_INTR_CRED_RESET_COALESCE; in ionic_intr_clean()
84 iowrite32(cred, &intr_ctrl[intr_idx].credits); in ionic_intr_clean()
/linux/fs/nfs/
A Dnfs4_fs.h71 const struct cred *);
117 const struct cred *so_cred; /* Associated cred */
228 const struct cred *);
257 const struct cred *cred; member
269 int (*fsid_present)(struct inode *, const struct cred *);
301 extern int nfs4_proc_bind_conn_to_session(struct nfs_client *, const struct cred *cred);
302 extern int nfs4_proc_exchange_id(struct nfs_client *clp, const struct cred *cred);
312 struct page *page, const struct cred *);
479 struct nfs_client **, const struct cred *);
482 struct nfs_client **, const struct cred *);
[all …]
A Dnfs4state.c160 const struct cred *cred) in nfs40_discover_server_trunking() argument
400 const struct cred *cred; in nfs4_get_clid_cred() local
496 const struct cred *cred, in nfs4_alloc_state_owner() argument
1850 const struct cred *cred; in nfs4_state_end_reclaim_reboot() local
1968 const struct cred *cred; in nfs4_check_lease() local
2053 const struct cred *cred; in nfs4_establish_lease() local
2192 const struct cred *cred; in nfs4_handle_migration() local
2238 const struct cred *cred; in nfs4_handle_lease_moved() local
2294 const struct cred *cred; in nfs4_discover_server_trunking() local
2500 const struct cred *cred; in nfs4_reset_session() local
[all …]
A Ddelegation.h18 const struct cred *cred; member
44 int nfs_inode_set_delegation(struct inode *inode, const struct cred *cred,
47 void nfs_inode_reclaim_delegation(struct inode *inode, const struct cred *cred,
73 int nfs4_proc_delegreturn(struct inode *inode, const struct cred *cred,
78 …elegation_stateid(struct inode *inode, fmode_t flags, nfs4_stateid *dst, const struct cred **cred);
/linux/security/landlock/
A Dcred.c17 static void hook_cred_transfer(struct cred *const new, in hook_cred_transfer()
18 const struct cred *const old) in hook_cred_transfer()
28 static int hook_cred_prepare(struct cred *const new, in hook_cred_prepare()
29 const struct cred *const old, const gfp_t gfp) in hook_cred_prepare()
35 static void hook_cred_free(struct cred *const cred) in hook_cred_free() argument
37 struct landlock_ruleset *const dom = landlock_cred(cred)->domain; in hook_cred_free()
/linux/net/sunrpc/auth_gss/
A Dauth_gss.c406 const struct cred *cred) in gss_encode_v0_msg() argument
433 const struct cred *cred) in gss_encode_v1_msg() argument
567 kuid_t uid = cred->cr_cred->fsuid; in gss_setup_upcall()
1351 put_cred(cred->cr_cred); in gss_destroy_nullcred()
1362 gss_send_destroy_context(cred); in gss_destroy_cred()
1363 gss_destroy_nullcred(cred); in gss_destroy_cred()
1386 struct gss_cred *cred = NULL; in gss_create_cred() local
1389 if (!(cred = kzalloc(sizeof(*cred), gfp))) in gss_create_cred()
1401 return &cred->gc_base; in gss_create_cred()
1617 .cred = oldcred->cr_cred, in gss_renew_cred()
[all …]
/linux/security/apparmor/
A Dtask.c50 struct cred *new; in aa_replace_current_label()
120 struct cred *new; in aa_set_current_hat()
160 struct cred *new; in aa_restore_previous_label()
226 static int profile_ptrace_perm(const struct cred *cred, in profile_ptrace_perm() argument
235 ad->subj_cred = cred; in profile_ptrace_perm()
243 static int profile_tracee_perm(const struct cred *cred, in profile_tracee_perm() argument
252 return profile_ptrace_perm(cred, tracee, tracer, request, ad); in profile_tracee_perm()
255 static int profile_tracer_perm(const struct cred *cred, in profile_tracer_perm() argument
264 return profile_ptrace_perm(cred, tracer, tracee, request, ad); in profile_tracer_perm()
273 ad->error = aa_capable(cred, &tracer->label, CAP_SYS_PTRACE, in profile_tracer_perm()
[all …]
/linux/fs/fuse/
A Dpassthrough.c36 .cred = ff->cred, in fuse_passthrough_read_iter()
64 .cred = ff->cred, in fuse_passthrough_write_iter()
90 .cred = ff->cred, in fuse_passthrough_splice_read()
111 .cred = ff->cred, in fuse_passthrough_splice_write()
132 .cred = ff->cred, in fuse_passthrough_mmap()
156 put_cred(fb->cred); in fuse_backing_free()
247 fb->cred = prepare_creds(); in fuse_backing_open()
325 &fb->file->f_path, fb->cred); in fuse_passthrough_open()
334 ff->cred = get_cred(fb->cred); in fuse_passthrough_open()
349 put_cred(ff->cred); in fuse_passthrough_release()
[all …]
/linux/io_uring/
A Dfdinfo.c20 const struct cred *cred) in io_uring_show_cred() argument
29 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid)); in io_uring_show_cred()
30 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid)); in io_uring_show_cred()
31 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid)); in io_uring_show_cred()
33 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid)); in io_uring_show_cred()
34 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid)); in io_uring_show_cred()
37 gi = cred->group_info; in io_uring_show_cred()
43 cap = cred->cap_effective; in io_uring_show_cred()
185 const struct cred *cred; in io_uring_show_fdinfo() local
188 xa_for_each(&ctx->personalities, index, cred) in io_uring_show_fdinfo()
[all …]

Completed in 63 milliseconds

12345678910>>...12