2 * security/tomoyo/domain.c
4 * Implementation of the Domain-Based Mandatory Access Control.
6 * Copyright (C) 2005-2009 NTT DATA CORPORATION
8 * Version: 2.2.0-pre 2009/02/01
15 #include <linux/binfmts.h>
17 /* Variables definitions.*/
19 /* The initial domain. */
20 struct tomoyo_domain_info tomoyo_kernel_domain
;
22 /* The list for "struct tomoyo_domain_info". */
23 LIST_HEAD(tomoyo_domain_list
);
24 DECLARE_RWSEM(tomoyo_domain_list_lock
);
26 /* Structure for "initialize_domain" and "no_initialize_domain" keyword. */
27 struct tomoyo_domain_initializer_entry
{
28 struct list_head list
;
29 const struct tomoyo_path_info
*domainname
; /* This may be NULL */
30 const struct tomoyo_path_info
*program
;
32 bool is_not
; /* True if this entry is "no_initialize_domain". */
33 /* True if the domainname is tomoyo_get_last_name(). */
37 /* Structure for "keep_domain" and "no_keep_domain" keyword. */
38 struct tomoyo_domain_keeper_entry
{
39 struct list_head list
;
40 const struct tomoyo_path_info
*domainname
;
41 const struct tomoyo_path_info
*program
; /* This may be NULL */
43 bool is_not
; /* True if this entry is "no_keep_domain". */
44 /* True if the domainname is tomoyo_get_last_name(). */
48 /* Structure for "alias" keyword. */
49 struct tomoyo_alias_entry
{
50 struct list_head list
;
51 const struct tomoyo_path_info
*original_name
;
52 const struct tomoyo_path_info
*aliased_name
;
57 * tomoyo_set_domain_flag - Set or clear domain's attribute flags.
59 * @domain: Pointer to "struct tomoyo_domain_info".
60 * @is_delete: True if it is a delete request.
61 * @flags: Flags to set or clear.
65 void tomoyo_set_domain_flag(struct tomoyo_domain_info
*domain
,
66 const bool is_delete
, const u8 flags
)
68 /* We need to serialize because this is bitfield operation. */
69 static DEFINE_SPINLOCK(lock
);
70 /***** CRITICAL SECTION START *****/
73 domain
->flags
|= flags
;
75 domain
->flags
&= ~flags
;
77 /***** CRITICAL SECTION END *****/
81 * tomoyo_get_last_name - Get last component of a domainname.
83 * @domain: Pointer to "struct tomoyo_domain_info".
85 * Returns the last component of the domainname.
87 const char *tomoyo_get_last_name(const struct tomoyo_domain_info
*domain
)
89 const char *cp0
= domain
->domainname
->name
;
90 const char *cp1
= strrchr(cp0
, ' ');
97 /* The list for "struct tomoyo_domain_initializer_entry". */
98 static LIST_HEAD(tomoyo_domain_initializer_list
);
99 static DECLARE_RWSEM(tomoyo_domain_initializer_list_lock
);
102 * tomoyo_update_domain_initializer_entry - Update "struct tomoyo_domain_initializer_entry" list.
104 * @domainname: The name of domain. May be NULL.
105 * @program: The name of program.
106 * @is_not: True if it is "no_initialize_domain" entry.
107 * @is_delete: True if it is a delete request.
109 * Returns 0 on success, negative value otherwise.
111 static int tomoyo_update_domain_initializer_entry(const char *domainname
,
114 const bool is_delete
)
116 struct tomoyo_domain_initializer_entry
*new_entry
;
117 struct tomoyo_domain_initializer_entry
*ptr
;
118 const struct tomoyo_path_info
*saved_program
;
119 const struct tomoyo_path_info
*saved_domainname
= NULL
;
121 bool is_last_name
= false;
123 if (!tomoyo_is_correct_path(program
, 1, -1, -1, __func__
))
124 return -EINVAL
; /* No patterns allowed. */
126 if (!tomoyo_is_domain_def(domainname
) &&
127 tomoyo_is_correct_path(domainname
, 1, -1, -1, __func__
))
129 else if (!tomoyo_is_correct_domain(domainname
, __func__
))
131 saved_domainname
= tomoyo_save_name(domainname
);
132 if (!saved_domainname
)
135 saved_program
= tomoyo_save_name(program
);
138 /***** EXCLUSIVE SECTION START *****/
139 down_write(&tomoyo_domain_initializer_list_lock
);
140 list_for_each_entry(ptr
, &tomoyo_domain_initializer_list
, list
) {
141 if (ptr
->is_not
!= is_not
||
142 ptr
->domainname
!= saved_domainname
||
143 ptr
->program
!= saved_program
)
145 ptr
->is_deleted
= is_delete
;
153 new_entry
= tomoyo_alloc_element(sizeof(*new_entry
));
156 new_entry
->domainname
= saved_domainname
;
157 new_entry
->program
= saved_program
;
158 new_entry
->is_not
= is_not
;
159 new_entry
->is_last_name
= is_last_name
;
160 list_add_tail(&new_entry
->list
, &tomoyo_domain_initializer_list
);
163 up_write(&tomoyo_domain_initializer_list_lock
);
164 /***** EXCLUSIVE SECTION END *****/
169 * tomoyo_read_domain_initializer_policy - Read "struct tomoyo_domain_initializer_entry" list.
171 * @head: Pointer to "struct tomoyo_io_buffer".
173 * Returns true on success, false otherwise.
175 bool tomoyo_read_domain_initializer_policy(struct tomoyo_io_buffer
*head
)
177 struct list_head
*pos
;
180 down_read(&tomoyo_domain_initializer_list_lock
);
181 list_for_each_cookie(pos
, head
->read_var2
,
182 &tomoyo_domain_initializer_list
) {
184 const char *from
= "";
185 const char *domain
= "";
186 struct tomoyo_domain_initializer_entry
*ptr
;
187 ptr
= list_entry(pos
, struct tomoyo_domain_initializer_entry
,
191 no
= ptr
->is_not
? "no_" : "";
192 if (ptr
->domainname
) {
194 domain
= ptr
->domainname
->name
;
196 if (!tomoyo_io_printf(head
,
197 "%s" TOMOYO_KEYWORD_INITIALIZE_DOMAIN
198 "%s%s%s\n", no
, ptr
->program
->name
, from
,
204 up_read(&tomoyo_domain_initializer_list_lock
);
209 * tomoyo_write_domain_initializer_policy - Write "struct tomoyo_domain_initializer_entry" list.
211 * @data: String to parse.
212 * @is_not: True if it is "no_initialize_domain" entry.
213 * @is_delete: True if it is a delete request.
215 * Returns 0 on success, negative value otherwise.
217 int tomoyo_write_domain_initializer_policy(char *data
, const bool is_not
,
218 const bool is_delete
)
220 char *cp
= strstr(data
, " from ");
224 return tomoyo_update_domain_initializer_entry(cp
+ 6, data
,
228 return tomoyo_update_domain_initializer_entry(NULL
, data
, is_not
,
233 * tomoyo_is_domain_initializer - Check whether the given program causes domainname reinitialization.
235 * @domainname: The name of domain.
236 * @program: The name of program.
237 * @last_name: The last component of @domainname.
239 * Returns true if executing @program reinitializes domain transition,
242 static bool tomoyo_is_domain_initializer(const struct tomoyo_path_info
*
244 const struct tomoyo_path_info
*program
,
245 const struct tomoyo_path_info
*
248 struct tomoyo_domain_initializer_entry
*ptr
;
251 down_read(&tomoyo_domain_initializer_list_lock
);
252 list_for_each_entry(ptr
, &tomoyo_domain_initializer_list
, list
) {
255 if (ptr
->domainname
) {
256 if (!ptr
->is_last_name
) {
257 if (ptr
->domainname
!= domainname
)
260 if (tomoyo_pathcmp(ptr
->domainname
, last_name
))
264 if (tomoyo_pathcmp(ptr
->program
, program
))
272 up_read(&tomoyo_domain_initializer_list_lock
);
276 /* The list for "struct tomoyo_domain_keeper_entry". */
277 static LIST_HEAD(tomoyo_domain_keeper_list
);
278 static DECLARE_RWSEM(tomoyo_domain_keeper_list_lock
);
281 * tomoyo_update_domain_keeper_entry - Update "struct tomoyo_domain_keeper_entry" list.
283 * @domainname: The name of domain.
284 * @program: The name of program. May be NULL.
285 * @is_not: True if it is "no_keep_domain" entry.
286 * @is_delete: True if it is a delete request.
288 * Returns 0 on success, negative value otherwise.
290 static int tomoyo_update_domain_keeper_entry(const char *domainname
,
293 const bool is_delete
)
295 struct tomoyo_domain_keeper_entry
*new_entry
;
296 struct tomoyo_domain_keeper_entry
*ptr
;
297 const struct tomoyo_path_info
*saved_domainname
;
298 const struct tomoyo_path_info
*saved_program
= NULL
;
299 static DEFINE_MUTEX(lock
);
301 bool is_last_name
= false;
303 if (!tomoyo_is_domain_def(domainname
) &&
304 tomoyo_is_correct_path(domainname
, 1, -1, -1, __func__
))
306 else if (!tomoyo_is_correct_domain(domainname
, __func__
))
309 if (!tomoyo_is_correct_path(program
, 1, -1, -1, __func__
))
311 saved_program
= tomoyo_save_name(program
);
315 saved_domainname
= tomoyo_save_name(domainname
);
316 if (!saved_domainname
)
318 /***** EXCLUSIVE SECTION START *****/
319 down_write(&tomoyo_domain_keeper_list_lock
);
320 list_for_each_entry(ptr
, &tomoyo_domain_keeper_list
, list
) {
321 if (ptr
->is_not
!= is_not
||
322 ptr
->domainname
!= saved_domainname
||
323 ptr
->program
!= saved_program
)
325 ptr
->is_deleted
= is_delete
;
333 new_entry
= tomoyo_alloc_element(sizeof(*new_entry
));
336 new_entry
->domainname
= saved_domainname
;
337 new_entry
->program
= saved_program
;
338 new_entry
->is_not
= is_not
;
339 new_entry
->is_last_name
= is_last_name
;
340 list_add_tail(&new_entry
->list
, &tomoyo_domain_keeper_list
);
343 up_write(&tomoyo_domain_keeper_list_lock
);
344 /***** EXCLUSIVE SECTION END *****/
349 * tomoyo_write_domain_keeper_policy - Write "struct tomoyo_domain_keeper_entry" list.
351 * @data: String to parse.
352 * @is_not: True if it is "no_keep_domain" entry.
353 * @is_delete: True if it is a delete request.
356 int tomoyo_write_domain_keeper_policy(char *data
, const bool is_not
,
357 const bool is_delete
)
359 char *cp
= strstr(data
, " from ");
363 return tomoyo_update_domain_keeper_entry(cp
+ 6, data
, is_not
,
366 return tomoyo_update_domain_keeper_entry(data
, NULL
, is_not
, is_delete
);
370 * tomoyo_read_domain_keeper_policy - Read "struct tomoyo_domain_keeper_entry" list.
372 * @head: Pointer to "struct tomoyo_io_buffer".
374 * Returns true on success, false otherwise.
376 bool tomoyo_read_domain_keeper_policy(struct tomoyo_io_buffer
*head
)
378 struct list_head
*pos
;
381 down_read(&tomoyo_domain_keeper_list_lock
);
382 list_for_each_cookie(pos
, head
->read_var2
,
383 &tomoyo_domain_keeper_list
) {
384 struct tomoyo_domain_keeper_entry
*ptr
;
386 const char *from
= "";
387 const char *program
= "";
389 ptr
= list_entry(pos
, struct tomoyo_domain_keeper_entry
, list
);
392 no
= ptr
->is_not
? "no_" : "";
395 program
= ptr
->program
->name
;
397 if (!tomoyo_io_printf(head
,
398 "%s" TOMOYO_KEYWORD_KEEP_DOMAIN
399 "%s%s%s\n", no
, program
, from
,
400 ptr
->domainname
->name
)) {
405 up_read(&tomoyo_domain_keeper_list_lock
);
410 * tomoyo_is_domain_keeper - Check whether the given program causes domain transition suppression.
412 * @domainname: The name of domain.
413 * @program: The name of program.
414 * @last_name: The last component of @domainname.
416 * Returns true if executing @program supresses domain transition,
419 static bool tomoyo_is_domain_keeper(const struct tomoyo_path_info
*domainname
,
420 const struct tomoyo_path_info
*program
,
421 const struct tomoyo_path_info
*last_name
)
423 struct tomoyo_domain_keeper_entry
*ptr
;
426 down_read(&tomoyo_domain_keeper_list_lock
);
427 list_for_each_entry(ptr
, &tomoyo_domain_keeper_list
, list
) {
430 if (!ptr
->is_last_name
) {
431 if (ptr
->domainname
!= domainname
)
434 if (tomoyo_pathcmp(ptr
->domainname
, last_name
))
437 if (ptr
->program
&& tomoyo_pathcmp(ptr
->program
, program
))
445 up_read(&tomoyo_domain_keeper_list_lock
);
449 /* The list for "struct tomoyo_alias_entry". */
450 static LIST_HEAD(tomoyo_alias_list
);
451 static DECLARE_RWSEM(tomoyo_alias_list_lock
);
454 * tomoyo_update_alias_entry - Update "struct tomoyo_alias_entry" list.
456 * @original_name: The original program's real name.
457 * @aliased_name: The symbolic program's symbolic link's name.
458 * @is_delete: True if it is a delete request.
460 * Returns 0 on success, negative value otherwise.
462 static int tomoyo_update_alias_entry(const char *original_name
,
463 const char *aliased_name
,
464 const bool is_delete
)
466 struct tomoyo_alias_entry
*new_entry
;
467 struct tomoyo_alias_entry
*ptr
;
468 const struct tomoyo_path_info
*saved_original_name
;
469 const struct tomoyo_path_info
*saved_aliased_name
;
472 if (!tomoyo_is_correct_path(original_name
, 1, -1, -1, __func__
) ||
473 !tomoyo_is_correct_path(aliased_name
, 1, -1, -1, __func__
))
474 return -EINVAL
; /* No patterns allowed. */
475 saved_original_name
= tomoyo_save_name(original_name
);
476 saved_aliased_name
= tomoyo_save_name(aliased_name
);
477 if (!saved_original_name
|| !saved_aliased_name
)
479 /***** EXCLUSIVE SECTION START *****/
480 down_write(&tomoyo_alias_list_lock
);
481 list_for_each_entry(ptr
, &tomoyo_alias_list
, list
) {
482 if (ptr
->original_name
!= saved_original_name
||
483 ptr
->aliased_name
!= saved_aliased_name
)
485 ptr
->is_deleted
= is_delete
;
493 new_entry
= tomoyo_alloc_element(sizeof(*new_entry
));
496 new_entry
->original_name
= saved_original_name
;
497 new_entry
->aliased_name
= saved_aliased_name
;
498 list_add_tail(&new_entry
->list
, &tomoyo_alias_list
);
501 up_write(&tomoyo_alias_list_lock
);
502 /***** EXCLUSIVE SECTION END *****/
507 * tomoyo_read_alias_policy - Read "struct tomoyo_alias_entry" list.
509 * @head: Pointer to "struct tomoyo_io_buffer".
511 * Returns true on success, false otherwise.
513 bool tomoyo_read_alias_policy(struct tomoyo_io_buffer
*head
)
515 struct list_head
*pos
;
518 down_read(&tomoyo_alias_list_lock
);
519 list_for_each_cookie(pos
, head
->read_var2
, &tomoyo_alias_list
) {
520 struct tomoyo_alias_entry
*ptr
;
522 ptr
= list_entry(pos
, struct tomoyo_alias_entry
, list
);
525 if (!tomoyo_io_printf(head
, TOMOYO_KEYWORD_ALIAS
"%s %s\n",
526 ptr
->original_name
->name
,
527 ptr
->aliased_name
->name
)) {
532 up_read(&tomoyo_alias_list_lock
);
537 * tomoyo_write_alias_policy - Write "struct tomoyo_alias_entry" list.
539 * @data: String to parse.
540 * @is_delete: True if it is a delete request.
542 * Returns 0 on success, negative value otherwise.
544 int tomoyo_write_alias_policy(char *data
, const bool is_delete
)
546 char *cp
= strchr(data
, ' ');
551 return tomoyo_update_alias_entry(data
, cp
, is_delete
);
554 /* Domain create/delete/undelete handler. */
556 /* #define TOMOYO_DEBUG_DOMAIN_UNDELETE */
559 * tomoyo_delete_domain - Delete a domain.
561 * @domainname: The name of domain.
565 int tomoyo_delete_domain(char *domainname
)
567 struct tomoyo_domain_info
*domain
;
568 struct tomoyo_path_info name
;
570 name
.name
= domainname
;
571 tomoyo_fill_path_info(&name
);
572 /***** EXCLUSIVE SECTION START *****/
573 down_write(&tomoyo_domain_list_lock
);
574 #ifdef TOMOYO_DEBUG_DOMAIN_UNDELETE
575 printk(KERN_DEBUG
"tomoyo_delete_domain %s\n", domainname
);
576 list_for_each_entry(domain
, &tomoyo_domain_list
, list
) {
577 if (tomoyo_pathcmp(domain
->domainname
, &name
))
579 printk(KERN_DEBUG
"List: %p %u\n", domain
, domain
->is_deleted
);
582 /* Is there an active domain? */
583 list_for_each_entry(domain
, &tomoyo_domain_list
, list
) {
584 struct tomoyo_domain_info
*domain2
;
585 /* Never delete tomoyo_kernel_domain */
586 if (domain
== &tomoyo_kernel_domain
)
588 if (domain
->is_deleted
||
589 tomoyo_pathcmp(domain
->domainname
, &name
))
591 /* Mark already deleted domains as non undeletable. */
592 list_for_each_entry(domain2
, &tomoyo_domain_list
, list
) {
593 if (!domain2
->is_deleted
||
594 tomoyo_pathcmp(domain2
->domainname
, &name
))
596 #ifdef TOMOYO_DEBUG_DOMAIN_UNDELETE
597 if (domain2
->is_deleted
!= 255)
599 "Marked %p as non undeletable\n",
602 domain2
->is_deleted
= 255;
604 /* Delete and mark active domain as undeletable. */
605 domain
->is_deleted
= 1;
606 #ifdef TOMOYO_DEBUG_DOMAIN_UNDELETE
607 printk(KERN_DEBUG
"Marked %p as undeletable\n", domain
);
611 up_write(&tomoyo_domain_list_lock
);
612 /***** EXCLUSIVE SECTION END *****/
617 * tomoyo_undelete_domain - Undelete a domain.
619 * @domainname: The name of domain.
621 * Returns pointer to "struct tomoyo_domain_info" on success, NULL otherwise.
623 struct tomoyo_domain_info
*tomoyo_undelete_domain(const char *domainname
)
625 struct tomoyo_domain_info
*domain
;
626 struct tomoyo_domain_info
*candidate_domain
= NULL
;
627 struct tomoyo_path_info name
;
629 name
.name
= domainname
;
630 tomoyo_fill_path_info(&name
);
631 /***** EXCLUSIVE SECTION START *****/
632 down_write(&tomoyo_domain_list_lock
);
633 #ifdef TOMOYO_DEBUG_DOMAIN_UNDELETE
634 printk(KERN_DEBUG
"tomoyo_undelete_domain %s\n", domainname
);
635 list_for_each_entry(domain
, &tomoyo_domain_list
, list
) {
636 if (tomoyo_pathcmp(domain
->domainname
, &name
))
638 printk(KERN_DEBUG
"List: %p %u\n", domain
, domain
->is_deleted
);
641 list_for_each_entry(domain
, &tomoyo_domain_list
, list
) {
642 if (tomoyo_pathcmp(&name
, domain
->domainname
))
644 if (!domain
->is_deleted
) {
645 /* This domain is active. I can't undelete. */
646 candidate_domain
= NULL
;
647 #ifdef TOMOYO_DEBUG_DOMAIN_UNDELETE
648 printk(KERN_DEBUG
"%p is active. I can't undelete.\n",
653 /* Is this domain undeletable? */
654 if (domain
->is_deleted
== 1)
655 candidate_domain
= domain
;
657 if (candidate_domain
) {
658 candidate_domain
->is_deleted
= 0;
659 #ifdef TOMOYO_DEBUG_DOMAIN_UNDELETE
660 printk(KERN_DEBUG
"%p was undeleted.\n", candidate_domain
);
663 up_write(&tomoyo_domain_list_lock
);
664 /***** EXCLUSIVE SECTION END *****/
665 return candidate_domain
;
669 * tomoyo_find_or_assign_new_domain - Create a domain.
671 * @domainname: The name of domain.
672 * @profile: Profile number to assign if the domain was newly created.
674 * Returns pointer to "struct tomoyo_domain_info" on success, NULL otherwise.
676 struct tomoyo_domain_info
*tomoyo_find_or_assign_new_domain(const char *
680 struct tomoyo_domain_info
*domain
= NULL
;
681 const struct tomoyo_path_info
*saved_domainname
;
683 /***** EXCLUSIVE SECTION START *****/
684 down_write(&tomoyo_domain_list_lock
);
685 domain
= tomoyo_find_domain(domainname
);
688 if (!tomoyo_is_correct_domain(domainname
, __func__
))
690 saved_domainname
= tomoyo_save_name(domainname
);
691 if (!saved_domainname
)
693 /* Can I reuse memory of deleted domain? */
694 list_for_each_entry(domain
, &tomoyo_domain_list
, list
) {
695 struct task_struct
*p
;
696 struct tomoyo_acl_info
*ptr
;
698 if (!domain
->is_deleted
||
699 domain
->domainname
!= saved_domainname
)
702 /***** CRITICAL SECTION START *****/
703 read_lock(&tasklist_lock
);
704 for_each_process(p
) {
705 if (tomoyo_real_domain(p
) != domain
)
710 read_unlock(&tasklist_lock
);
711 /***** CRITICAL SECTION END *****/
714 #ifdef TOMOYO_DEBUG_DOMAIN_UNDELETE
715 printk(KERN_DEBUG
"Reusing %p %s\n", domain
,
716 domain
->domainname
->name
);
718 list_for_each_entry(ptr
, &domain
->acl_info_list
, list
) {
719 ptr
->type
|= TOMOYO_ACL_DELETED
;
721 tomoyo_set_domain_flag(domain
, true, domain
->flags
);
722 domain
->profile
= profile
;
723 domain
->quota_warned
= false;
724 mb(); /* Avoid out-of-order execution. */
725 domain
->is_deleted
= 0;
728 /* No memory reusable. Create using new memory. */
729 domain
= tomoyo_alloc_element(sizeof(*domain
));
731 INIT_LIST_HEAD(&domain
->acl_info_list
);
732 domain
->domainname
= saved_domainname
;
733 domain
->profile
= profile
;
734 list_add_tail(&domain
->list
, &tomoyo_domain_list
);
737 up_write(&tomoyo_domain_list_lock
);
738 /***** EXCLUSIVE SECTION END *****/
743 * tomoyo_find_next_domain - Find a domain.
745 * @bprm: Pointer to "struct linux_binprm".
746 * @next_domain: Pointer to pointer to "struct tomoyo_domain_info".
748 * Returns 0 on success, negative value otherwise.
750 int tomoyo_find_next_domain(struct linux_binprm
*bprm
,
751 struct tomoyo_domain_info
**next_domain
)
754 * This function assumes that the size of buffer returned by
755 * tomoyo_realpath() = TOMOYO_MAX_PATHNAME_LEN.
757 struct tomoyo_page_buffer
*tmp
= tomoyo_alloc(sizeof(*tmp
));
758 struct tomoyo_domain_info
*old_domain
= tomoyo_domain();
759 struct tomoyo_domain_info
*domain
= NULL
;
760 const char *old_domain_name
= old_domain
->domainname
->name
;
761 const char *original_name
= bprm
->filename
;
762 char *new_domain_name
= NULL
;
763 char *real_program_name
= NULL
;
764 char *symlink_program_name
= NULL
;
765 const u8 mode
= tomoyo_check_flags(old_domain
, TOMOYO_MAC_FOR_FILE
);
766 const bool is_enforce
= (mode
== 3);
767 int retval
= -ENOMEM
;
768 struct tomoyo_path_info r
; /* real name */
769 struct tomoyo_path_info s
; /* symlink name */
770 struct tomoyo_path_info l
; /* last name */
771 static bool initialized
;
778 * Built-in initializers. This is needed because policies are
779 * not loaded until starting /sbin/init.
781 tomoyo_update_domain_initializer_entry(NULL
, "/sbin/hotplug",
783 tomoyo_update_domain_initializer_entry(NULL
, "/sbin/modprobe",
788 /* Get tomoyo_realpath of program. */
790 /* I hope tomoyo_realpath() won't fail with -ENOMEM. */
791 real_program_name
= tomoyo_realpath(original_name
);
792 if (!real_program_name
)
794 /* Get tomoyo_realpath of symbolic link. */
795 symlink_program_name
= tomoyo_realpath_nofollow(original_name
);
796 if (!symlink_program_name
)
799 r
.name
= real_program_name
;
800 tomoyo_fill_path_info(&r
);
801 s
.name
= symlink_program_name
;
802 tomoyo_fill_path_info(&s
);
803 l
.name
= tomoyo_get_last_name(old_domain
);
804 tomoyo_fill_path_info(&l
);
806 /* Check 'alias' directive. */
807 if (tomoyo_pathcmp(&r
, &s
)) {
808 struct tomoyo_alias_entry
*ptr
;
809 /* Is this program allowed to be called via symbolic links? */
810 down_read(&tomoyo_alias_list_lock
);
811 list_for_each_entry(ptr
, &tomoyo_alias_list
, list
) {
812 if (ptr
->is_deleted
||
813 tomoyo_pathcmp(&r
, ptr
->original_name
) ||
814 tomoyo_pathcmp(&s
, ptr
->aliased_name
))
816 memset(real_program_name
, 0, TOMOYO_MAX_PATHNAME_LEN
);
817 strncpy(real_program_name
, ptr
->aliased_name
->name
,
818 TOMOYO_MAX_PATHNAME_LEN
- 1);
819 tomoyo_fill_path_info(&r
);
822 up_read(&tomoyo_alias_list_lock
);
825 /* Check execute permission. */
826 retval
= tomoyo_check_exec_perm(old_domain
, &r
, tmp
);
830 new_domain_name
= tmp
->buffer
;
831 if (tomoyo_is_domain_initializer(old_domain
->domainname
, &r
, &l
)) {
832 /* Transit to the child of tomoyo_kernel_domain domain. */
833 snprintf(new_domain_name
, TOMOYO_MAX_PATHNAME_LEN
+ 1,
834 TOMOYO_ROOT_NAME
" " "%s", real_program_name
);
835 } else if (old_domain
== &tomoyo_kernel_domain
&&
836 !tomoyo_policy_loaded
) {
838 * Needn't to transit from kernel domain before starting
839 * /sbin/init. But transit from kernel domain if executing
840 * initializers because they might start before /sbin/init.
843 } else if (tomoyo_is_domain_keeper(old_domain
->domainname
, &r
, &l
)) {
844 /* Keep current domain. */
847 /* Normal domain transition. */
848 snprintf(new_domain_name
, TOMOYO_MAX_PATHNAME_LEN
+ 1,
849 "%s %s", old_domain_name
, real_program_name
);
851 if (domain
|| strlen(new_domain_name
) >= TOMOYO_MAX_PATHNAME_LEN
)
853 down_read(&tomoyo_domain_list_lock
);
854 domain
= tomoyo_find_domain(new_domain_name
);
855 up_read(&tomoyo_domain_list_lock
);
860 domain
= tomoyo_find_or_assign_new_domain(new_domain_name
,
861 old_domain
->profile
);
865 printk(KERN_WARNING
"TOMOYO-ERROR: Domain '%s' not defined.\n",
870 tomoyo_set_domain_flag(old_domain
, false,
871 TOMOYO_DOMAIN_FLAGS_TRANSITION_FAILED
);
873 tomoyo_free(real_program_name
);
874 tomoyo_free(symlink_program_name
);
875 *next_domain
= domain
? domain
: old_domain
;