Home
last modified time | relevance | path

Searched refs:ee (Results 1 – 5 of 5) sorted by relevance

/security/tomoyo/
Ddomain.c588 static int tomoyo_environ(struct tomoyo_execve *ee) in tomoyo_environ() argument
590 struct tomoyo_request_info *r = &ee->r; in tomoyo_environ()
591 struct linux_binprm *bprm = ee->bprm; in tomoyo_environ()
602 ee->r.type = TOMOYO_MAC_ENVIRON; in tomoyo_environ()
603 ee->r.profile = r->domain->profile; in tomoyo_environ()
604 ee->r.mode = tomoyo_get_mode(r->domain->ns, ee->r.profile, in tomoyo_environ()
685 struct tomoyo_execve *ee = kzalloc(sizeof(*ee), GFP_NOFS); in tomoyo_find_next_domain() local
687 if (!ee) in tomoyo_find_next_domain()
689 ee->tmp = kzalloc(TOMOYO_EXEC_TMPSIZE, GFP_NOFS); in tomoyo_find_next_domain()
690 if (!ee->tmp) { in tomoyo_find_next_domain()
[all …]
Dcondition.c100 static bool tomoyo_scan_bprm(struct tomoyo_execve *ee, in tomoyo_scan_bprm() argument
104 struct linux_binprm *bprm = ee->bprm; in tomoyo_scan_bprm()
105 struct tomoyo_page_dump *dump = &ee->dump; in tomoyo_scan_bprm()
106 char *arg_ptr = ee->tmp; in tomoyo_scan_bprm()
766 if (r->ee) in tomoyo_condition()
767 bprm = r->ee->bprm; in tomoyo_condition()
791 struct tomoyo_execve *ee; in tomoyo_condition() local
801 ee = r->ee; in tomoyo_condition()
802 file = ee ? ee->bprm->file : NULL; in tomoyo_condition()
1091 if (r->ee && (argc || envc)) in tomoyo_condition()
[all …]
Daudit.c249 if (r->ee) { in tomoyo_init_log()
250 struct file *file = r->ee->bprm->file; in tomoyo_init_log()
252 bprm_info = tomoyo_print_bprm(r->ee->bprm, &r->ee->dump); in tomoyo_init_log()
269 struct linux_binprm *bprm = r->ee->bprm; in tomoyo_init_log()
Dcommon.h426 struct tomoyo_execve *ee; member
Dfile.c601 r->ee->transition = r->matched_acl && r->matched_acl->cond ? in tomoyo_execute_permission()