| /OK3568_Linux_fs/kernel/block/ |
| H A D | ioprio.c | 40 const struct cred *cred = current_cred(), *tcred; in set_task_ioprio() local 43 tcred = __task_cred(task); in set_task_ioprio() 44 if (!uid_eq(tcred->uid, cred->euid) && in set_task_ioprio() 45 !uid_eq(tcred->uid, cred->uid) && !capable(CAP_SYS_NICE)) { in set_task_ioprio()
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | tsacct.c | 24 const struct cred *tcred; in bacct_add_tsk() local 55 tcred = __task_cred(tsk); in bacct_add_tsk() 56 stats->ac_uid = from_kuid_munged(user_ns, tcred->uid); in bacct_add_tsk() 57 stats->ac_gid = from_kgid_munged(user_ns, tcred->gid); in bacct_add_tsk()
|
| H A D | ptrace.c | 293 const struct cred *cred = current_cred(), *tcred; in __ptrace_may_access() local 331 tcred = __task_cred(task); in __ptrace_may_access() 332 if (uid_eq(caller_uid, tcred->euid) && in __ptrace_may_access() 333 uid_eq(caller_uid, tcred->suid) && in __ptrace_may_access() 334 uid_eq(caller_uid, tcred->uid) && in __ptrace_may_access() 335 gid_eq(caller_gid, tcred->egid) && in __ptrace_may_access() 336 gid_eq(caller_gid, tcred->sgid) && in __ptrace_may_access() 337 gid_eq(caller_gid, tcred->gid)) in __ptrace_may_access() 339 if (ptrace_has_cap(tcred->user_ns, mode)) in __ptrace_may_access()
|
| H A D | sys.c | 1613 const struct cred *cred = current_cred(), *tcred; in check_prlimit_permission() local 1619 tcred = __task_cred(task); in check_prlimit_permission() 1620 id_match = (uid_eq(cred->uid, tcred->euid) && in check_prlimit_permission() 1621 uid_eq(cred->uid, tcred->suid) && in check_prlimit_permission() 1622 uid_eq(cred->uid, tcred->uid) && in check_prlimit_permission() 1623 gid_eq(cred->gid, tcred->egid) && in check_prlimit_permission() 1624 gid_eq(cred->gid, tcred->sgid) && in check_prlimit_permission() 1625 gid_eq(cred->gid, tcred->gid)); in check_prlimit_permission() 1626 if (!id_match && !ns_capable(tcred->user_ns, CAP_SYS_RESOURCE)) in check_prlimit_permission() 1629 return security_task_prlimit(cred, tcred, flags); in check_prlimit_permission()
|
| H A D | signal.c | 818 const struct cred *tcred = __task_cred(t); in kill_ok_by_cred() local 820 return uid_eq(cred->euid, tcred->suid) || in kill_ok_by_cred() 821 uid_eq(cred->euid, tcred->uid) || in kill_ok_by_cred() 822 uid_eq(cred->uid, tcred->suid) || in kill_ok_by_cred() 823 uid_eq(cred->uid, tcred->uid) || in kill_ok_by_cred() 824 ns_capable(tcred->user_ns, CAP_KILL); in kill_ok_by_cred()
|
| /OK3568_Linux_fs/kernel/kernel/cgroup/ |
| H A D | cgroup-v1.c | 497 const struct cred *cred, *tcred; in __cgroup1_procs_write() local 516 tcred = get_task_cred(task); in __cgroup1_procs_write() 518 !uid_eq(cred->euid, tcred->uid) && in __cgroup1_procs_write() 519 !uid_eq(cred->euid, tcred->suid) && in __cgroup1_procs_write() 520 !ns_capable(tcred->user_ns, CAP_SYS_NICE)) in __cgroup1_procs_write() 522 put_cred(tcred); in __cgroup1_procs_write()
|
| /OK3568_Linux_fs/kernel/Documentation/security/ |
| H A D | credentials.rst | 372 const struct cred *tcred; 375 tcred = __task_cred(t); 376 f->uid = tcred->uid; 377 f->gid = tcred->gid; 378 f->groups = get_group_info(tcred->groups);
|
| /OK3568_Linux_fs/kernel/arch/x86/kernel/cpu/resctrl/ |
| H A D | rdtgroup.c | 634 const struct cred *tcred = get_task_cred(task); in rdtgroup_task_write_permission() local 643 !uid_eq(cred->euid, tcred->uid) && in rdtgroup_task_write_permission() 644 !uid_eq(cred->euid, tcred->suid)) { in rdtgroup_task_write_permission() 649 put_cred(tcred); in rdtgroup_task_write_permission()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | security.h | 413 int security_task_prlimit(const struct cred *cred, const struct cred *tcred, 1113 const struct cred *tcred, in security_task_prlimit() argument
|
| H A D | lsm_hook_defs.h | 208 const struct cred *tcred, unsigned int flags)
|
| /OK3568_Linux_fs/kernel/security/ |
| H A D | security.c | 1761 int security_task_prlimit(const struct cred *cred, const struct cred *tcred, in security_task_prlimit() argument 1764 return call_int_hook(task_prlimit, 0, cred, tcred, flags); in security_task_prlimit()
|
| /OK3568_Linux_fs/kernel/security/smack/ |
| H A D | smack_lsm.c | 1778 const struct cred *tcred; in smack_file_send_sigiotask() local 1795 tcred = __task_cred(tsk); in smack_file_send_sigiotask() 1796 if (rc != 0 && smack_privileged_cred(CAP_MAC_OVERRIDE, tcred)) in smack_file_send_sigiotask()
|
| /OK3568_Linux_fs/kernel/security/selinux/ |
| H A D | hooks.c | 4164 static int selinux_task_prlimit(const struct cred *cred, const struct cred *tcred, in selinux_task_prlimit() argument 4176 cred_sid(cred), cred_sid(tcred), in selinux_task_prlimit()
|