Searched refs:exe_file (Results 1 – 9 of 9) sorted by relevance
/Linux-v5.15/arch/arc/kernel/ |
D | troubleshoot.c | 58 struct file *exe_file; in print_task_path_n_nm() local 65 exe_file = get_mm_exe_file(mm); in print_task_path_n_nm() 68 if (exe_file) { in print_task_path_n_nm() 69 path_nm = file_path(exe_file, buf, ARC_PATH_MAX-1); in print_task_path_n_nm() 70 fput(exe_file); in print_task_path_n_nm()
|
/Linux-v5.15/kernel/ |
D | audit_watch.c | 526 struct file *exe_file; in audit_exe_compare() local 530 exe_file = get_task_exe_file(tsk); in audit_exe_compare() 531 if (!exe_file) in audit_exe_compare() 533 ino = file_inode(exe_file)->i_ino; in audit_exe_compare() 534 dev = file_inode(exe_file)->i_sb->s_dev; in audit_exe_compare() 535 fput(exe_file); in audit_exe_compare()
|
D | fork.c | 476 struct file *exe_file; in dup_mm_exe_file() local 478 exe_file = get_mm_exe_file(oldmm); in dup_mm_exe_file() 479 RCU_INIT_POINTER(mm->exe_file, exe_file); in dup_mm_exe_file() 484 if (exe_file && deny_write_access(exe_file)) in dup_mm_exe_file() 1059 RCU_INIT_POINTER(mm->exe_file, NULL); in mm_init() 1178 old_exe_file = rcu_dereference_raw(mm->exe_file); in set_mm_exe_file() 1189 rcu_assign_pointer(mm->exe_file, new_exe_file); in set_mm_exe_file() 1235 old_exe_file = xchg(&mm->exe_file, new_exe_file); in replace_mm_exe_file() 1257 struct file *exe_file; in get_mm_exe_file() local 1260 exe_file = rcu_dereference(mm->exe_file); in get_mm_exe_file() [all …]
|
D | audit.c | 2159 struct file *exe_file; in audit_log_d_path_exe() local 2164 exe_file = get_mm_exe_file(mm); in audit_log_d_path_exe() 2165 if (!exe_file) in audit_log_d_path_exe() 2168 audit_log_d_path(ab, " exe=", &exe_file->f_path); in audit_log_d_path_exe() 2169 fput(exe_file); in audit_log_d_path_exe()
|
/Linux-v5.15/security/tomoyo/ |
D | util.c | 968 struct file *exe_file; in tomoyo_get_exe() local 974 exe_file = get_mm_exe_file(mm); in tomoyo_get_exe() 975 if (!exe_file) in tomoyo_get_exe() 978 cp = tomoyo_realpath_from_path(&exe_file->f_path); in tomoyo_get_exe() 979 fput(exe_file); in tomoyo_get_exe()
|
/Linux-v5.15/fs/ |
D | coredump.c | 158 struct file *exe_file; in cn_print_exe_file() local 162 exe_file = get_mm_exe_file(current->mm); in cn_print_exe_file() 163 if (!exe_file) in cn_print_exe_file() 172 path = file_path(exe_file, pathbuf, PATH_MAX); in cn_print_exe_file() 188 fput(exe_file); in cn_print_exe_file()
|
/Linux-v5.15/mm/ |
D | debug.c | 258 mm->exe_file, in dump_mm()
|
/Linux-v5.15/include/linux/ |
D | mm_types.h | 543 struct file __rcu *exe_file; member
|
/Linux-v5.15/fs/proc/ |
D | base.c | 1723 struct file *exe_file; in proc_exe_link() local 1728 exe_file = get_task_exe_file(task); in proc_exe_link() 1730 if (exe_file) { in proc_exe_link() 1731 *exe_path = exe_file->f_path; in proc_exe_link() 1732 path_get(&exe_file->f_path); in proc_exe_link() 1733 fput(exe_file); in proc_exe_link()
|