[media] rainshadow-cec: Fix missing spin_lock_init()
[linux-2.6/btrfs-unstable.git] / security / tomoyo / domain.c
blob00d223e9fb37ca2392b98938b2734e14d9e60227
1 /*
2 * security/tomoyo/domain.c
4 * Copyright (C) 2005-2011 NTT DATA CORPORATION
5 */
7 #include "common.h"
9 #include <linux/binfmts.h>
10 #include <linux/slab.h>
11 #include <linux/rculist.h>
13 /* Variables definitions.*/
15 /* The initial domain. */
16 struct tomoyo_domain_info tomoyo_kernel_domain;
18 /**
19 * tomoyo_update_policy - Update an entry for exception policy.
21 * @new_entry: Pointer to "struct tomoyo_acl_info".
22 * @size: Size of @new_entry in bytes.
23 * @param: Pointer to "struct tomoyo_acl_param".
24 * @check_duplicate: Callback function to find duplicated entry.
26 * Returns 0 on success, negative value otherwise.
28 * Caller holds tomoyo_read_lock().
30 int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
31 struct tomoyo_acl_param *param,
32 bool (*check_duplicate) (const struct tomoyo_acl_head
34 const struct tomoyo_acl_head
35 *))
37 int error = param->is_delete ? -ENOENT : -ENOMEM;
38 struct tomoyo_acl_head *entry;
39 struct list_head *list = param->list;
41 if (mutex_lock_interruptible(&tomoyo_policy_lock))
42 return -ENOMEM;
43 list_for_each_entry_rcu(entry, list, list) {
44 if (entry->is_deleted == TOMOYO_GC_IN_PROGRESS)
45 continue;
46 if (!check_duplicate(entry, new_entry))
47 continue;
48 entry->is_deleted = param->is_delete;
49 error = 0;
50 break;
52 if (error && !param->is_delete) {
53 entry = tomoyo_commit_ok(new_entry, size);
54 if (entry) {
55 list_add_tail_rcu(&entry->list, list);
56 error = 0;
59 mutex_unlock(&tomoyo_policy_lock);
60 return error;
63 /**
64 * tomoyo_same_acl_head - Check for duplicated "struct tomoyo_acl_info" entry.
66 * @a: Pointer to "struct tomoyo_acl_info".
67 * @b: Pointer to "struct tomoyo_acl_info".
69 * Returns true if @a == @b, false otherwise.
71 static inline bool tomoyo_same_acl_head(const struct tomoyo_acl_info *a,
72 const struct tomoyo_acl_info *b)
74 return a->type == b->type && a->cond == b->cond;
77 /**
78 * tomoyo_update_domain - Update an entry for domain policy.
80 * @new_entry: Pointer to "struct tomoyo_acl_info".
81 * @size: Size of @new_entry in bytes.
82 * @param: Pointer to "struct tomoyo_acl_param".
83 * @check_duplicate: Callback function to find duplicated entry.
84 * @merge_duplicate: Callback function to merge duplicated entry.
86 * Returns 0 on success, negative value otherwise.
88 * Caller holds tomoyo_read_lock().
90 int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
91 struct tomoyo_acl_param *param,
92 bool (*check_duplicate) (const struct tomoyo_acl_info
94 const struct tomoyo_acl_info
95 *),
96 bool (*merge_duplicate) (struct tomoyo_acl_info *,
97 struct tomoyo_acl_info *,
98 const bool))
100 const bool is_delete = param->is_delete;
101 int error = is_delete ? -ENOENT : -ENOMEM;
102 struct tomoyo_acl_info *entry;
103 struct list_head * const list = param->list;
105 if (param->data[0]) {
106 new_entry->cond = tomoyo_get_condition(param);
107 if (!new_entry->cond)
108 return -EINVAL;
110 * Domain transition preference is allowed for only
111 * "file execute" entries.
113 if (new_entry->cond->transit &&
114 !(new_entry->type == TOMOYO_TYPE_PATH_ACL &&
115 container_of(new_entry, struct tomoyo_path_acl, head)
116 ->perm == 1 << TOMOYO_TYPE_EXECUTE))
117 goto out;
119 if (mutex_lock_interruptible(&tomoyo_policy_lock))
120 goto out;
121 list_for_each_entry_rcu(entry, list, list) {
122 if (entry->is_deleted == TOMOYO_GC_IN_PROGRESS)
123 continue;
124 if (!tomoyo_same_acl_head(entry, new_entry) ||
125 !check_duplicate(entry, new_entry))
126 continue;
127 if (merge_duplicate)
128 entry->is_deleted = merge_duplicate(entry, new_entry,
129 is_delete);
130 else
131 entry->is_deleted = is_delete;
132 error = 0;
133 break;
135 if (error && !is_delete) {
136 entry = tomoyo_commit_ok(new_entry, size);
137 if (entry) {
138 list_add_tail_rcu(&entry->list, list);
139 error = 0;
142 mutex_unlock(&tomoyo_policy_lock);
143 out:
144 tomoyo_put_condition(new_entry->cond);
145 return error;
149 * tomoyo_check_acl - Do permission check.
151 * @r: Pointer to "struct tomoyo_request_info".
152 * @check_entry: Callback function to check type specific parameters.
154 * Returns 0 on success, negative value otherwise.
156 * Caller holds tomoyo_read_lock().
158 void tomoyo_check_acl(struct tomoyo_request_info *r,
159 bool (*check_entry) (struct tomoyo_request_info *,
160 const struct tomoyo_acl_info *))
162 const struct tomoyo_domain_info *domain = r->domain;
163 struct tomoyo_acl_info *ptr;
164 bool retried = false;
165 const struct list_head *list = &domain->acl_info_list;
167 retry:
168 list_for_each_entry_rcu(ptr, list, list) {
169 if (ptr->is_deleted || ptr->type != r->param_type)
170 continue;
171 if (!check_entry(r, ptr))
172 continue;
173 if (!tomoyo_condition(r, ptr->cond))
174 continue;
175 r->matched_acl = ptr;
176 r->granted = true;
177 return;
179 if (!retried) {
180 retried = true;
181 list = &domain->ns->acl_group[domain->group];
182 goto retry;
184 r->granted = false;
187 /* The list for "struct tomoyo_domain_info". */
188 LIST_HEAD(tomoyo_domain_list);
191 * tomoyo_last_word - Get last component of a domainname.
193 * @name: Domainname to check.
195 * Returns the last word of @domainname.
197 static const char *tomoyo_last_word(const char *name)
199 const char *cp = strrchr(name, ' ');
200 if (cp)
201 return cp + 1;
202 return name;
206 * tomoyo_same_transition_control - Check for duplicated "struct tomoyo_transition_control" entry.
208 * @a: Pointer to "struct tomoyo_acl_head".
209 * @b: Pointer to "struct tomoyo_acl_head".
211 * Returns true if @a == @b, false otherwise.
213 static bool tomoyo_same_transition_control(const struct tomoyo_acl_head *a,
214 const struct tomoyo_acl_head *b)
216 const struct tomoyo_transition_control *p1 = container_of(a,
217 typeof(*p1),
218 head);
219 const struct tomoyo_transition_control *p2 = container_of(b,
220 typeof(*p2),
221 head);
222 return p1->type == p2->type && p1->is_last_name == p2->is_last_name
223 && p1->domainname == p2->domainname
224 && p1->program == p2->program;
228 * tomoyo_write_transition_control - Write "struct tomoyo_transition_control" list.
230 * @param: Pointer to "struct tomoyo_acl_param".
231 * @type: Type of this entry.
233 * Returns 0 on success, negative value otherwise.
235 int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
236 const u8 type)
238 struct tomoyo_transition_control e = { .type = type };
239 int error = param->is_delete ? -ENOENT : -ENOMEM;
240 char *program = param->data;
241 char *domainname = strstr(program, " from ");
242 if (domainname) {
243 *domainname = '\0';
244 domainname += 6;
245 } else if (type == TOMOYO_TRANSITION_CONTROL_NO_KEEP ||
246 type == TOMOYO_TRANSITION_CONTROL_KEEP) {
247 domainname = program;
248 program = NULL;
250 if (program && strcmp(program, "any")) {
251 if (!tomoyo_correct_path(program))
252 return -EINVAL;
253 e.program = tomoyo_get_name(program);
254 if (!e.program)
255 goto out;
257 if (domainname && strcmp(domainname, "any")) {
258 if (!tomoyo_correct_domain(domainname)) {
259 if (!tomoyo_correct_path(domainname))
260 goto out;
261 e.is_last_name = true;
263 e.domainname = tomoyo_get_name(domainname);
264 if (!e.domainname)
265 goto out;
267 param->list = &param->ns->policy_list[TOMOYO_ID_TRANSITION_CONTROL];
268 error = tomoyo_update_policy(&e.head, sizeof(e), param,
269 tomoyo_same_transition_control);
270 out:
271 tomoyo_put_name(e.domainname);
272 tomoyo_put_name(e.program);
273 return error;
277 * tomoyo_scan_transition - Try to find specific domain transition type.
279 * @list: Pointer to "struct list_head".
280 * @domainname: The name of current domain.
281 * @program: The name of requested program.
282 * @last_name: The last component of @domainname.
283 * @type: One of values in "enum tomoyo_transition_type".
285 * Returns true if found one, false otherwise.
287 * Caller holds tomoyo_read_lock().
289 static inline bool tomoyo_scan_transition
290 (const struct list_head *list, const struct tomoyo_path_info *domainname,
291 const struct tomoyo_path_info *program, const char *last_name,
292 const enum tomoyo_transition_type type)
294 const struct tomoyo_transition_control *ptr;
295 list_for_each_entry_rcu(ptr, list, head.list) {
296 if (ptr->head.is_deleted || ptr->type != type)
297 continue;
298 if (ptr->domainname) {
299 if (!ptr->is_last_name) {
300 if (ptr->domainname != domainname)
301 continue;
302 } else {
304 * Use direct strcmp() since this is
305 * unlikely used.
307 if (strcmp(ptr->domainname->name, last_name))
308 continue;
311 if (ptr->program && tomoyo_pathcmp(ptr->program, program))
312 continue;
313 return true;
315 return false;
319 * tomoyo_transition_type - Get domain transition type.
321 * @ns: Pointer to "struct tomoyo_policy_namespace".
322 * @domainname: The name of current domain.
323 * @program: The name of requested program.
325 * Returns TOMOYO_TRANSITION_CONTROL_TRANSIT if executing @program causes
326 * domain transition across namespaces, TOMOYO_TRANSITION_CONTROL_INITIALIZE if
327 * executing @program reinitializes domain transition within that namespace,
328 * TOMOYO_TRANSITION_CONTROL_KEEP if executing @program stays at @domainname ,
329 * others otherwise.
331 * Caller holds tomoyo_read_lock().
333 static enum tomoyo_transition_type tomoyo_transition_type
334 (const struct tomoyo_policy_namespace *ns,
335 const struct tomoyo_path_info *domainname,
336 const struct tomoyo_path_info *program)
338 const char *last_name = tomoyo_last_word(domainname->name);
339 enum tomoyo_transition_type type = TOMOYO_TRANSITION_CONTROL_NO_RESET;
340 while (type < TOMOYO_MAX_TRANSITION_TYPE) {
341 const struct list_head * const list =
342 &ns->policy_list[TOMOYO_ID_TRANSITION_CONTROL];
343 if (!tomoyo_scan_transition(list, domainname, program,
344 last_name, type)) {
345 type++;
346 continue;
348 if (type != TOMOYO_TRANSITION_CONTROL_NO_RESET &&
349 type != TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE)
350 break;
352 * Do not check for reset_domain if no_reset_domain matched.
353 * Do not check for initialize_domain if no_initialize_domain
354 * matched.
356 type++;
357 type++;
359 return type;
363 * tomoyo_same_aggregator - Check for duplicated "struct tomoyo_aggregator" entry.
365 * @a: Pointer to "struct tomoyo_acl_head".
366 * @b: Pointer to "struct tomoyo_acl_head".
368 * Returns true if @a == @b, false otherwise.
370 static bool tomoyo_same_aggregator(const struct tomoyo_acl_head *a,
371 const struct tomoyo_acl_head *b)
373 const struct tomoyo_aggregator *p1 = container_of(a, typeof(*p1),
374 head);
375 const struct tomoyo_aggregator *p2 = container_of(b, typeof(*p2),
376 head);
377 return p1->original_name == p2->original_name &&
378 p1->aggregated_name == p2->aggregated_name;
382 * tomoyo_write_aggregator - Write "struct tomoyo_aggregator" list.
384 * @param: Pointer to "struct tomoyo_acl_param".
386 * Returns 0 on success, negative value otherwise.
388 * Caller holds tomoyo_read_lock().
390 int tomoyo_write_aggregator(struct tomoyo_acl_param *param)
392 struct tomoyo_aggregator e = { };
393 int error = param->is_delete ? -ENOENT : -ENOMEM;
394 const char *original_name = tomoyo_read_token(param);
395 const char *aggregated_name = tomoyo_read_token(param);
396 if (!tomoyo_correct_word(original_name) ||
397 !tomoyo_correct_path(aggregated_name))
398 return -EINVAL;
399 e.original_name = tomoyo_get_name(original_name);
400 e.aggregated_name = tomoyo_get_name(aggregated_name);
401 if (!e.original_name || !e.aggregated_name ||
402 e.aggregated_name->is_patterned) /* No patterns allowed. */
403 goto out;
404 param->list = &param->ns->policy_list[TOMOYO_ID_AGGREGATOR];
405 error = tomoyo_update_policy(&e.head, sizeof(e), param,
406 tomoyo_same_aggregator);
407 out:
408 tomoyo_put_name(e.original_name);
409 tomoyo_put_name(e.aggregated_name);
410 return error;
414 * tomoyo_find_namespace - Find specified namespace.
416 * @name: Name of namespace to find.
417 * @len: Length of @name.
419 * Returns pointer to "struct tomoyo_policy_namespace" if found,
420 * NULL otherwise.
422 * Caller holds tomoyo_read_lock().
424 static struct tomoyo_policy_namespace *tomoyo_find_namespace
425 (const char *name, const unsigned int len)
427 struct tomoyo_policy_namespace *ns;
428 list_for_each_entry(ns, &tomoyo_namespace_list, namespace_list) {
429 if (strncmp(name, ns->name, len) ||
430 (name[len] && name[len] != ' '))
431 continue;
432 return ns;
434 return NULL;
438 * tomoyo_assign_namespace - Create a new namespace.
440 * @domainname: Name of namespace to create.
442 * Returns pointer to "struct tomoyo_policy_namespace" on success,
443 * NULL otherwise.
445 * Caller holds tomoyo_read_lock().
447 struct tomoyo_policy_namespace *tomoyo_assign_namespace(const char *domainname)
449 struct tomoyo_policy_namespace *ptr;
450 struct tomoyo_policy_namespace *entry;
451 const char *cp = domainname;
452 unsigned int len = 0;
453 while (*cp && *cp++ != ' ')
454 len++;
455 ptr = tomoyo_find_namespace(domainname, len);
456 if (ptr)
457 return ptr;
458 if (len >= TOMOYO_EXEC_TMPSIZE - 10 || !tomoyo_domain_def(domainname))
459 return NULL;
460 entry = kzalloc(sizeof(*entry) + len + 1, GFP_NOFS);
461 if (!entry)
462 return NULL;
463 if (mutex_lock_interruptible(&tomoyo_policy_lock))
464 goto out;
465 ptr = tomoyo_find_namespace(domainname, len);
466 if (!ptr && tomoyo_memory_ok(entry)) {
467 char *name = (char *) (entry + 1);
468 ptr = entry;
469 memmove(name, domainname, len);
470 name[len] = '\0';
471 entry->name = name;
472 tomoyo_init_policy_namespace(entry);
473 entry = NULL;
475 mutex_unlock(&tomoyo_policy_lock);
476 out:
477 kfree(entry);
478 return ptr;
482 * tomoyo_namespace_jump - Check for namespace jump.
484 * @domainname: Name of domain.
486 * Returns true if namespace differs, false otherwise.
488 static bool tomoyo_namespace_jump(const char *domainname)
490 const char *namespace = tomoyo_current_namespace()->name;
491 const int len = strlen(namespace);
492 return strncmp(domainname, namespace, len) ||
493 (domainname[len] && domainname[len] != ' ');
497 * tomoyo_assign_domain - Create a domain or a namespace.
499 * @domainname: The name of domain.
500 * @transit: True if transit to domain found or created.
502 * Returns pointer to "struct tomoyo_domain_info" on success, NULL otherwise.
504 * Caller holds tomoyo_read_lock().
506 struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
507 const bool transit)
509 struct tomoyo_domain_info e = { };
510 struct tomoyo_domain_info *entry = tomoyo_find_domain(domainname);
511 bool created = false;
512 if (entry) {
513 if (transit) {
515 * Since namespace is created at runtime, profiles may
516 * not be created by the moment the process transits to
517 * that domain. Do not perform domain transition if
518 * profile for that domain is not yet created.
520 if (tomoyo_policy_loaded &&
521 !entry->ns->profile_ptr[entry->profile])
522 return NULL;
524 return entry;
526 /* Requested domain does not exist. */
527 /* Don't create requested domain if domainname is invalid. */
528 if (strlen(domainname) >= TOMOYO_EXEC_TMPSIZE - 10 ||
529 !tomoyo_correct_domain(domainname))
530 return NULL;
532 * Since definition of profiles and acl_groups may differ across
533 * namespaces, do not inherit "use_profile" and "use_group" settings
534 * by automatically creating requested domain upon domain transition.
536 if (transit && tomoyo_namespace_jump(domainname))
537 return NULL;
538 e.ns = tomoyo_assign_namespace(domainname);
539 if (!e.ns)
540 return NULL;
542 * "use_profile" and "use_group" settings for automatically created
543 * domains are inherited from current domain. These are 0 for manually
544 * created domains.
546 if (transit) {
547 const struct tomoyo_domain_info *domain = tomoyo_domain();
548 e.profile = domain->profile;
549 e.group = domain->group;
551 e.domainname = tomoyo_get_name(domainname);
552 if (!e.domainname)
553 return NULL;
554 if (mutex_lock_interruptible(&tomoyo_policy_lock))
555 goto out;
556 entry = tomoyo_find_domain(domainname);
557 if (!entry) {
558 entry = tomoyo_commit_ok(&e, sizeof(e));
559 if (entry) {
560 INIT_LIST_HEAD(&entry->acl_info_list);
561 list_add_tail_rcu(&entry->list, &tomoyo_domain_list);
562 created = true;
565 mutex_unlock(&tomoyo_policy_lock);
566 out:
567 tomoyo_put_name(e.domainname);
568 if (entry && transit) {
569 if (created) {
570 struct tomoyo_request_info r;
571 tomoyo_init_request_info(&r, entry,
572 TOMOYO_MAC_FILE_EXECUTE);
573 r.granted = false;
574 tomoyo_write_log(&r, "use_profile %u\n",
575 entry->profile);
576 tomoyo_write_log(&r, "use_group %u\n", entry->group);
577 tomoyo_update_stat(TOMOYO_STAT_POLICY_UPDATES);
580 return entry;
584 * tomoyo_environ - Check permission for environment variable names.
586 * @ee: Pointer to "struct tomoyo_execve".
588 * Returns 0 on success, negative value otherwise.
590 static int tomoyo_environ(struct tomoyo_execve *ee)
592 struct tomoyo_request_info *r = &ee->r;
593 struct linux_binprm *bprm = ee->bprm;
594 /* env_page.data is allocated by tomoyo_dump_page(). */
595 struct tomoyo_page_dump env_page = { };
596 char *arg_ptr; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
597 int arg_len = 0;
598 unsigned long pos = bprm->p;
599 int offset = pos % PAGE_SIZE;
600 int argv_count = bprm->argc;
601 int envp_count = bprm->envc;
602 int error = -ENOMEM;
604 ee->r.type = TOMOYO_MAC_ENVIRON;
605 ee->r.profile = r->domain->profile;
606 ee->r.mode = tomoyo_get_mode(r->domain->ns, ee->r.profile,
607 TOMOYO_MAC_ENVIRON);
608 if (!r->mode || !envp_count)
609 return 0;
610 arg_ptr = kzalloc(TOMOYO_EXEC_TMPSIZE, GFP_NOFS);
611 if (!arg_ptr)
612 goto out;
613 while (error == -ENOMEM) {
614 if (!tomoyo_dump_page(bprm, pos, &env_page))
615 goto out;
616 pos += PAGE_SIZE - offset;
617 /* Read. */
618 while (argv_count && offset < PAGE_SIZE) {
619 if (!env_page.data[offset++])
620 argv_count--;
622 if (argv_count) {
623 offset = 0;
624 continue;
626 while (offset < PAGE_SIZE) {
627 const unsigned char c = env_page.data[offset++];
629 if (c && arg_len < TOMOYO_EXEC_TMPSIZE - 10) {
630 if (c == '=') {
631 arg_ptr[arg_len++] = '\0';
632 } else if (c == '\\') {
633 arg_ptr[arg_len++] = '\\';
634 arg_ptr[arg_len++] = '\\';
635 } else if (c > ' ' && c < 127) {
636 arg_ptr[arg_len++] = c;
637 } else {
638 arg_ptr[arg_len++] = '\\';
639 arg_ptr[arg_len++] = (c >> 6) + '0';
640 arg_ptr[arg_len++]
641 = ((c >> 3) & 7) + '0';
642 arg_ptr[arg_len++] = (c & 7) + '0';
644 } else {
645 arg_ptr[arg_len] = '\0';
647 if (c)
648 continue;
649 if (tomoyo_env_perm(r, arg_ptr)) {
650 error = -EPERM;
651 break;
653 if (!--envp_count) {
654 error = 0;
655 break;
657 arg_len = 0;
659 offset = 0;
661 out:
662 if (r->mode != TOMOYO_CONFIG_ENFORCING)
663 error = 0;
664 kfree(env_page.data);
665 kfree(arg_ptr);
666 return error;
670 * tomoyo_find_next_domain - Find a domain.
672 * @bprm: Pointer to "struct linux_binprm".
674 * Returns 0 on success, negative value otherwise.
676 * Caller holds tomoyo_read_lock().
678 int tomoyo_find_next_domain(struct linux_binprm *bprm)
680 struct tomoyo_domain_info *old_domain = tomoyo_domain();
681 struct tomoyo_domain_info *domain = NULL;
682 const char *original_name = bprm->filename;
683 int retval = -ENOMEM;
684 bool reject_on_transition_failure = false;
685 const struct tomoyo_path_info *candidate;
686 struct tomoyo_path_info exename;
687 struct tomoyo_execve *ee = kzalloc(sizeof(*ee), GFP_NOFS);
689 if (!ee)
690 return -ENOMEM;
691 ee->tmp = kzalloc(TOMOYO_EXEC_TMPSIZE, GFP_NOFS);
692 if (!ee->tmp) {
693 kfree(ee);
694 return -ENOMEM;
696 /* ee->dump->data is allocated by tomoyo_dump_page(). */
697 tomoyo_init_request_info(&ee->r, NULL, TOMOYO_MAC_FILE_EXECUTE);
698 ee->r.ee = ee;
699 ee->bprm = bprm;
700 ee->r.obj = &ee->obj;
701 ee->obj.path1 = bprm->file->f_path;
702 /* Get symlink's pathname of program. */
703 retval = -ENOENT;
704 exename.name = tomoyo_realpath_nofollow(original_name);
705 if (!exename.name)
706 goto out;
707 tomoyo_fill_path_info(&exename);
708 retry:
709 /* Check 'aggregator' directive. */
711 struct tomoyo_aggregator *ptr;
712 struct list_head *list =
713 &old_domain->ns->policy_list[TOMOYO_ID_AGGREGATOR];
714 /* Check 'aggregator' directive. */
715 candidate = &exename;
716 list_for_each_entry_rcu(ptr, list, head.list) {
717 if (ptr->head.is_deleted ||
718 !tomoyo_path_matches_pattern(&exename,
719 ptr->original_name))
720 continue;
721 candidate = ptr->aggregated_name;
722 break;
726 /* Check execute permission. */
727 retval = tomoyo_execute_permission(&ee->r, candidate);
728 if (retval == TOMOYO_RETRY_REQUEST)
729 goto retry;
730 if (retval < 0)
731 goto out;
733 * To be able to specify domainnames with wildcards, use the
734 * pathname specified in the policy (which may contain
735 * wildcard) rather than the pathname passed to execve()
736 * (which never contains wildcard).
738 if (ee->r.param.path.matched_path)
739 candidate = ee->r.param.path.matched_path;
742 * Check for domain transition preference if "file execute" matched.
743 * If preference is given, make do_execve() fail if domain transition
744 * has failed, for domain transition preference should be used with
745 * destination domain defined.
747 if (ee->transition) {
748 const char *domainname = ee->transition->name;
749 reject_on_transition_failure = true;
750 if (!strcmp(domainname, "keep"))
751 goto force_keep_domain;
752 if (!strcmp(domainname, "child"))
753 goto force_child_domain;
754 if (!strcmp(domainname, "reset"))
755 goto force_reset_domain;
756 if (!strcmp(domainname, "initialize"))
757 goto force_initialize_domain;
758 if (!strcmp(domainname, "parent")) {
759 char *cp;
760 strncpy(ee->tmp, old_domain->domainname->name,
761 TOMOYO_EXEC_TMPSIZE - 1);
762 cp = strrchr(ee->tmp, ' ');
763 if (cp)
764 *cp = '\0';
765 } else if (*domainname == '<')
766 strncpy(ee->tmp, domainname, TOMOYO_EXEC_TMPSIZE - 1);
767 else
768 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "%s %s",
769 old_domain->domainname->name, domainname);
770 goto force_jump_domain;
773 * No domain transition preference specified.
774 * Calculate domain to transit to.
776 switch (tomoyo_transition_type(old_domain->ns, old_domain->domainname,
777 candidate)) {
778 case TOMOYO_TRANSITION_CONTROL_RESET:
779 force_reset_domain:
780 /* Transit to the root of specified namespace. */
781 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "<%s>",
782 candidate->name);
784 * Make do_execve() fail if domain transition across namespaces
785 * has failed.
787 reject_on_transition_failure = true;
788 break;
789 case TOMOYO_TRANSITION_CONTROL_INITIALIZE:
790 force_initialize_domain:
791 /* Transit to the child of current namespace's root. */
792 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "%s %s",
793 old_domain->ns->name, candidate->name);
794 break;
795 case TOMOYO_TRANSITION_CONTROL_KEEP:
796 force_keep_domain:
797 /* Keep current domain. */
798 domain = old_domain;
799 break;
800 default:
801 if (old_domain == &tomoyo_kernel_domain &&
802 !tomoyo_policy_loaded) {
804 * Needn't to transit from kernel domain before
805 * starting /sbin/init. But transit from kernel domain
806 * if executing initializers because they might start
807 * before /sbin/init.
809 domain = old_domain;
810 break;
812 force_child_domain:
813 /* Normal domain transition. */
814 snprintf(ee->tmp, TOMOYO_EXEC_TMPSIZE - 1, "%s %s",
815 old_domain->domainname->name, candidate->name);
816 break;
818 force_jump_domain:
819 if (!domain)
820 domain = tomoyo_assign_domain(ee->tmp, true);
821 if (domain)
822 retval = 0;
823 else if (reject_on_transition_failure) {
824 printk(KERN_WARNING "ERROR: Domain '%s' not ready.\n",
825 ee->tmp);
826 retval = -ENOMEM;
827 } else if (ee->r.mode == TOMOYO_CONFIG_ENFORCING)
828 retval = -ENOMEM;
829 else {
830 retval = 0;
831 if (!old_domain->flags[TOMOYO_DIF_TRANSITION_FAILED]) {
832 old_domain->flags[TOMOYO_DIF_TRANSITION_FAILED] = true;
833 ee->r.granted = false;
834 tomoyo_write_log(&ee->r, "%s", tomoyo_dif
835 [TOMOYO_DIF_TRANSITION_FAILED]);
836 printk(KERN_WARNING
837 "ERROR: Domain '%s' not defined.\n", ee->tmp);
840 out:
841 if (!domain)
842 domain = old_domain;
843 /* Update reference count on "struct tomoyo_domain_info". */
844 atomic_inc(&domain->users);
845 bprm->cred->security = domain;
846 kfree(exename.name);
847 if (!retval) {
848 ee->r.domain = domain;
849 retval = tomoyo_environ(ee);
851 kfree(ee->tmp);
852 kfree(ee->dump.data);
853 kfree(ee);
854 return retval;
858 * tomoyo_dump_page - Dump a page to buffer.
860 * @bprm: Pointer to "struct linux_binprm".
861 * @pos: Location to dump.
862 * @dump: Poiner to "struct tomoyo_page_dump".
864 * Returns true on success, false otherwise.
866 bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
867 struct tomoyo_page_dump *dump)
869 struct page *page;
871 /* dump->data is released by tomoyo_find_next_domain(). */
872 if (!dump->data) {
873 dump->data = kzalloc(PAGE_SIZE, GFP_NOFS);
874 if (!dump->data)
875 return false;
877 /* Same with get_arg_page(bprm, pos, 0) in fs/exec.c */
878 #ifdef CONFIG_MMU
880 * This is called at execve() time in order to dig around
881 * in the argv/environment of the new proceess
882 * (represented by bprm). 'current' is the process doing
883 * the execve().
885 if (get_user_pages_remote(current, bprm->mm, pos, 1,
886 FOLL_FORCE, &page, NULL, NULL) <= 0)
887 return false;
888 #else
889 page = bprm->page[pos / PAGE_SIZE];
890 #endif
891 if (page != dump->page) {
892 const unsigned int offset = pos % PAGE_SIZE;
894 * Maybe kmap()/kunmap() should be used here.
895 * But remove_arg_zero() uses kmap_atomic()/kunmap_atomic().
896 * So do I.
898 char *kaddr = kmap_atomic(page);
900 dump->page = page;
901 memcpy(dump->data + offset, kaddr + offset,
902 PAGE_SIZE - offset);
903 kunmap_atomic(kaddr);
905 /* Same with put_arg_page(page) in fs/exec.c */
906 #ifdef CONFIG_MMU
907 put_page(page);
908 #endif
909 return true;