Home
last modified time | relevance | path

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

12345678910>>...12

/openbmc/linux/include/linux/
H A Dcred.h19 struct cred;
110 struct cred { struct
181 static inline struct cred *get_new_cred(struct cred *cred) in get_new_cred() argument
200 static inline const struct cred *get_cred(const struct cred *cred) in get_cred() argument
202 struct cred *nonconst_cred = (struct cred *) cred; in get_cred()
203 if (!cred) in get_cred()
209 static inline const struct cred *get_cred_rcu(const struct cred *cred) in get_cred_rcu() argument
211 struct cred *nonconst_cred = (struct cred *) cred; in get_cred_rcu()
212 if (!cred) in get_cred_rcu()
233 struct cred *cred = (struct cred *) _cred; in put_cred() local
[all …]
H A Dsecurity.h37 struct cred;
283 int security_capable(const struct cred *cred,
410 void security_cred_free(struct cred *cred);
438 int security_task_prlimit(const struct cred *cred, const struct cred *tcred,
446 int sig, const struct cred *cred);
450 int security_create_user_ns(const struct cred *cred);
1222 const struct cred *cred) in security_task_kill() argument
1411 const struct cred *cred,
1415 const struct cred *cred, in security_post_notification() argument
1928 const struct cred *cred, in security_key_alloc() argument
[all …]
H 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)
193 LSM_HOOK(int, 0, cred_alloc_blank, struct cred *cred, gfp_t gfp)
194 LSM_HOOK(void, LSM_RET_VOID, cred_free, struct cred *cred)
224 LSM_HOOK(int, 0, task_prlimit, const struct cred *cred,
232 int sig, const struct cred *cred)
237 LSM_HOOK(int, 0, userns_create, const struct cred *cred)
[all …]
/openbmc/linux/net/sunrpc/
H 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 …]
H 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 …]
/openbmc/linux/kernel/
H 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 *cred; in exit_creds() local
124 cred = (struct cred *) tsk->real_cred; in exit_creds()
128 cred = (struct cred *) tsk->cred; in exit_creds()
150 const struct cred *cred; in get_task_cred() local
303 p->cred, atomic_long_read(&p->cred->usage)); in copy_creds()
485 const struct cred *old = current->cred; in override_creds()
[all …]
H 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 …]
H 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 …]
/openbmc/linux/security/keys/
H 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 …]
H 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 …]
H 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 …]
/openbmc/linux/include/linux/sunrpc/
H A Dsvcauth.h38 cred->cr_group_info = NULL; in init_svc_cred()
39 cred->cr_raw_principal = NULL; in init_svc_cred()
40 cred->cr_principal = NULL; in init_svc_cred()
41 cred->cr_targ_princ = NULL; in init_svc_cred()
42 cred->cr_gss_mech = NULL; in init_svc_cred()
47 if (cred->cr_group_info) in free_svc_cred()
49 kfree(cred->cr_raw_principal); in free_svc_cred()
50 kfree(cred->cr_principal); in free_svc_cred()
51 kfree(cred->cr_targ_princ); in free_svc_cred()
52 gss_mech_put(cred->cr_gss_mech); in free_svc_cred()
[all …]
/openbmc/linux/security/apparmor/include/
H 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()
H 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,
/openbmc/linux/security/
H A Dcommoncap.c137 const struct cred *cred, *child_cred; in cap_ptrace_access_check() local
174 const struct cred *cred, *child_cred; in cap_ptrace_traceme() local
203 const struct cred *cred; in cap_capget() local
591 struct cred *new = bprm->cred; in bprm_caps_from_vfs_caps()
767 static inline bool __is_real(kuid_t uid, struct cred *cred) in __is_real() argument
770 static inline bool __is_eff(kuid_t uid, struct cred *cred) in __is_eff() argument
773 static inline bool __is_suid(kuid_t uid, struct cred *cred) in __is_suid() argument
774 { return !__is_real(uid, cred) && __is_eff(uid, cred); } in __is_suid()
792 struct cred *new = bprm->cred; in handle_privileged_root()
825 !cap_issubset(cred->cap_##target, cred->cap_##source)
[all …]
/openbmc/linux/include/linux/pds/
H 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()
/openbmc/linux/drivers/net/ethernet/pensando/ionic/
H 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()
/openbmc/linux/security/apparmor/
H A Dtask.c50 struct cred *new; in aa_replace_current_label()
123 struct cred *new; in aa_set_current_hat()
163 struct cred *new; in aa_restore_previous_label()
229 static int profile_ptrace_perm(const struct cred *cred, in profile_ptrace_perm() argument
238 ad->subj_cred = cred; in profile_ptrace_perm()
246 static int profile_tracee_perm(const struct cred *cred, in profile_tracee_perm() argument
255 return profile_ptrace_perm(cred, tracee, tracer, request, ad); in profile_tracee_perm()
258 static int profile_tracer_perm(const struct cred *cred, in profile_tracer_perm() argument
267 return profile_ptrace_perm(cred, tracer, tracee, request, ad); in profile_tracer_perm()
276 ad->error = aa_capable(cred, &tracer->label, CAP_SYS_PTRACE, in profile_tracer_perm()
[all …]
/openbmc/qemu/hw/9pfs/
H A Dcofs.c101 FsCred cred; in v9fs_co_chmod() local
107 cred_init(&cred); in v9fs_co_chmod()
108 cred.fc_mode = mode; in v9fs_co_chmod()
146 FsCred cred; in v9fs_co_chown() local
152 cred_init(&cred); in v9fs_co_chown()
153 cred.fc_uid = uid; in v9fs_co_chown()
154 cred.fc_gid = gid; in v9fs_co_chown()
193 FsCred cred; in v9fs_co_mknod() local
199 cred_init(&cred); in v9fs_co_mknod()
314 FsCred cred; in v9fs_co_symlink() local
[all …]
/openbmc/linux/fs/nfs/
H A Ddelegation.h18 const struct cred *cred; member
42 int nfs_inode_set_delegation(struct inode *inode, const struct cred *cred,
44 void nfs_inode_reclaim_delegation(struct inode *inode, const struct cred *cred,
69 int nfs4_proc_delegreturn(struct inode *inode, const struct cred *cred, const nfs4_stateid *stateid…
72 …elegation_stateid(struct inode *inode, fmode_t flags, nfs4_stateid *dst, const struct cred **cred);
H A Dnfs4_fs.h70 nfs4_stateid *, const struct cred *);
116 const struct cred *so_cred; /* Associated cred */
227 const struct cred *);
256 const struct cred *cred; member
268 int (*fsid_present)(struct inode *, const struct cred *);
300 extern int nfs4_proc_bind_conn_to_session(struct nfs_client *, const struct cred *cred);
301 extern int nfs4_proc_exchange_id(struct nfs_client *clp, const struct cred *cred);
311 struct page *page, const struct cred *);
478 struct nfs_client **, const struct cred *);
481 struct nfs_client **, const struct cred *);
[all …]
H 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
1865 const struct cred *cred; in nfs4_state_end_reclaim_reboot() local
1978 const struct cred *cred; in nfs4_check_lease() local
2057 const struct cred *cred; in nfs4_establish_lease() local
2197 const struct cred *cred; in nfs4_handle_migration() local
2243 const struct cred *cred; in nfs4_handle_lease_moved() local
2299 const struct cred *cred; in nfs4_discover_server_trunking() local
2505 const struct cred *cred; in nfs4_reset_session() local
[all …]
/openbmc/linux/net/sunrpc/auth_gss/
H 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 …]
/openbmc/linux/io_uring/
H 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()
172 const struct cred *cred; in io_uring_show_fdinfo() local
175 xa_for_each(&ctx->personalities, index, cred) in io_uring_show_fdinfo()
[all …]
/openbmc/linux/fs/smb/client/
H A Dcifs_spnego.c21 static const struct cred *spnego_cred;
96 const struct cred *saved_cred; in cifs_get_spnego_key()
180 struct cred *cred; in init_cifs_spnego() local
192 cred = prepare_kernel_cred(&init_task); in init_cifs_spnego()
193 if (!cred) in init_cifs_spnego()
197 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred, in init_cifs_spnego()
215 cred->thread_keyring = keyring; in init_cifs_spnego()
216 cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING; in init_cifs_spnego()
217 spnego_cred = cred; in init_cifs_spnego()
225 put_cred(cred); in init_cifs_spnego()

12345678910>>...12