Lines Matching full:details
86 struct landlock_details *details; in get_current_details() local
93 * Create the new details according to the path's length. Do not in get_current_details()
97 details = in get_current_details()
98 kzalloc(struct_size(details, exe_path, path_size), GFP_KERNEL); in get_current_details()
99 if (!details) in get_current_details()
102 memcpy(details->exe_path, path_str, path_size); in get_current_details()
103 details->pid = get_pid(task_tgid(current)); in get_current_details()
104 details->uid = from_kuid(&init_user_ns, current_uid()); in get_current_details()
105 get_task_comm(details->comm, current); in get_current_details()
106 return details; in get_current_details()
121 struct landlock_details *details; in landlock_init_hierarchy_log() local
123 details = get_current_details(); in landlock_init_hierarchy_log()
124 if (IS_ERR(details)) in landlock_init_hierarchy_log()
125 return PTR_ERR(details); in landlock_init_hierarchy_log()
127 hierarchy->details = details; in landlock_init_hierarchy_log()