2 * security/tomoyo/common.h
4 * Header file for TOMOYO.
6 * Copyright (C) 2005-2010 NTT DATA CORPORATION
9 #ifndef _SECURITY_TOMOYO_COMMON_H
10 #define _SECURITY_TOMOYO_COMMON_H
12 #include <linux/ctype.h>
13 #include <linux/string.h>
15 #include <linux/file.h>
16 #include <linux/kmod.h>
18 #include <linux/sched.h>
19 #include <linux/namei.h>
20 #include <linux/mount.h>
21 #include <linux/list.h>
22 #include <linux/cred.h>
23 #include <linux/poll.h>
26 /********** Constants definitions. **********/
29 * TOMOYO uses this hash only when appending a string into the string
30 * table. Frequency of appending strings is very low. So we don't need
31 * large (e.g. 64k) hash size. 256 will be sufficient.
33 #define TOMOYO_HASH_BITS 8
34 #define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
36 #define TOMOYO_EXEC_TMPSIZE 4096
38 /* Profile number is an integer between 0 and 255. */
39 #define TOMOYO_MAX_PROFILES 256
41 enum tomoyo_mode_index
{
42 TOMOYO_CONFIG_DISABLED
,
43 TOMOYO_CONFIG_LEARNING
,
44 TOMOYO_CONFIG_PERMISSIVE
,
45 TOMOYO_CONFIG_ENFORCING
,
46 TOMOYO_CONFIG_USE_DEFAULT
= 255
49 enum tomoyo_policy_id
{
52 TOMOYO_ID_NUMBER_GROUP
,
53 TOMOYO_ID_TRANSITION_CONTROL
,
55 TOMOYO_ID_GLOBALLY_READABLE
,
65 enum tomoyo_group_id
{
71 /* Keywords for ACLs. */
72 #define TOMOYO_KEYWORD_AGGREGATOR "aggregator "
73 #define TOMOYO_KEYWORD_ALLOW_MOUNT "allow_mount "
74 #define TOMOYO_KEYWORD_ALLOW_READ "allow_read "
75 #define TOMOYO_KEYWORD_DELETE "delete "
76 #define TOMOYO_KEYWORD_DENY_REWRITE "deny_rewrite "
77 #define TOMOYO_KEYWORD_FILE_PATTERN "file_pattern "
78 #define TOMOYO_KEYWORD_INITIALIZE_DOMAIN "initialize_domain "
79 #define TOMOYO_KEYWORD_KEEP_DOMAIN "keep_domain "
80 #define TOMOYO_KEYWORD_NO_INITIALIZE_DOMAIN "no_initialize_domain "
81 #define TOMOYO_KEYWORD_NO_KEEP_DOMAIN "no_keep_domain "
82 #define TOMOYO_KEYWORD_PATH_GROUP "path_group "
83 #define TOMOYO_KEYWORD_NUMBER_GROUP "number_group "
84 #define TOMOYO_KEYWORD_SELECT "select "
85 #define TOMOYO_KEYWORD_USE_PROFILE "use_profile "
86 #define TOMOYO_KEYWORD_IGNORE_GLOBAL_ALLOW_READ "ignore_global_allow_read"
87 #define TOMOYO_KEYWORD_QUOTA_EXCEEDED "quota_exceeded"
88 #define TOMOYO_KEYWORD_TRANSITION_FAILED "transition_failed"
89 /* A domain definition starts with <kernel>. */
90 #define TOMOYO_ROOT_NAME "<kernel>"
91 #define TOMOYO_ROOT_NAME_LEN (sizeof(TOMOYO_ROOT_NAME) - 1)
93 /* Value type definition. */
94 #define TOMOYO_VALUE_TYPE_INVALID 0
95 #define TOMOYO_VALUE_TYPE_DECIMAL 1
96 #define TOMOYO_VALUE_TYPE_OCTAL 2
97 #define TOMOYO_VALUE_TYPE_HEXADECIMAL 3
99 enum tomoyo_transition_type
{
100 /* Do not change this order, */
101 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE
,
102 TOMOYO_TRANSITION_CONTROL_INITIALIZE
,
103 TOMOYO_TRANSITION_CONTROL_NO_KEEP
,
104 TOMOYO_TRANSITION_CONTROL_KEEP
,
105 TOMOYO_MAX_TRANSITION_TYPE
108 /* Index numbers for Access Controls. */
109 enum tomoyo_acl_entry_type_index
{
110 TOMOYO_TYPE_PATH_ACL
,
111 TOMOYO_TYPE_PATH2_ACL
,
112 TOMOYO_TYPE_PATH_NUMBER_ACL
,
113 TOMOYO_TYPE_MKDEV_ACL
,
114 TOMOYO_TYPE_MOUNT_ACL
,
117 /* Index numbers for File Controls. */
120 * TOMOYO_TYPE_READ_WRITE is special. TOMOYO_TYPE_READ_WRITE is automatically
121 * set if both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are set.
122 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically set if
123 * TOMOYO_TYPE_READ_WRITE is set.
124 * TOMOYO_TYPE_READ_WRITE is automatically cleared if either TOMOYO_TYPE_READ
125 * or TOMOYO_TYPE_WRITE is cleared.
126 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically cleared if
127 * TOMOYO_TYPE_READ_WRITE is cleared.
130 enum tomoyo_path_acl_index
{
131 TOMOYO_TYPE_READ_WRITE
,
137 TOMOYO_TYPE_TRUNCATE
,
142 TOMOYO_MAX_PATH_OPERATION
145 #define TOMOYO_RW_MASK ((1 << TOMOYO_TYPE_READ) | (1 << TOMOYO_TYPE_WRITE))
147 enum tomoyo_mkdev_acl_index
{
150 TOMOYO_MAX_MKDEV_OPERATION
153 enum tomoyo_path2_acl_index
{
156 TOMOYO_TYPE_PIVOT_ROOT
,
157 TOMOYO_MAX_PATH2_OPERATION
160 enum tomoyo_path_number_acl_index
{
169 TOMOYO_MAX_PATH_NUMBER_OPERATION
172 enum tomoyo_securityfs_interface_index
{
174 TOMOYO_EXCEPTIONPOLICY
,
175 TOMOYO_DOMAIN_STATUS
,
176 TOMOYO_PROCESS_STATUS
,
185 enum tomoyo_mac_index
{
186 TOMOYO_MAC_FILE_EXECUTE
,
187 TOMOYO_MAC_FILE_OPEN
,
188 TOMOYO_MAC_FILE_CREATE
,
189 TOMOYO_MAC_FILE_UNLINK
,
190 TOMOYO_MAC_FILE_MKDIR
,
191 TOMOYO_MAC_FILE_RMDIR
,
192 TOMOYO_MAC_FILE_MKFIFO
,
193 TOMOYO_MAC_FILE_MKSOCK
,
194 TOMOYO_MAC_FILE_TRUNCATE
,
195 TOMOYO_MAC_FILE_SYMLINK
,
196 TOMOYO_MAC_FILE_REWRITE
,
197 TOMOYO_MAC_FILE_MKBLOCK
,
198 TOMOYO_MAC_FILE_MKCHAR
,
199 TOMOYO_MAC_FILE_LINK
,
200 TOMOYO_MAC_FILE_RENAME
,
201 TOMOYO_MAC_FILE_CHMOD
,
202 TOMOYO_MAC_FILE_CHOWN
,
203 TOMOYO_MAC_FILE_CHGRP
,
204 TOMOYO_MAC_FILE_IOCTL
,
205 TOMOYO_MAC_FILE_CHROOT
,
206 TOMOYO_MAC_FILE_MOUNT
,
207 TOMOYO_MAC_FILE_UMOUNT
,
208 TOMOYO_MAC_FILE_PIVOT_ROOT
,
212 enum tomoyo_mac_category_index
{
213 TOMOYO_MAC_CATEGORY_FILE
,
214 TOMOYO_MAX_MAC_CATEGORY_INDEX
217 #define TOMOYO_RETRY_REQUEST 1 /* Retry this request. */
219 /********** Structure definitions. **********/
222 * tomoyo_acl_head is a structure which is used for holding elements not in
224 * It has following fields.
226 * (1) "list" which is linked to tomoyo_policy_list[] .
227 * (2) "is_deleted" is a bool which is true if marked as deleted, false
230 struct tomoyo_acl_head
{
231 struct list_head list
;
236 * tomoyo_request_info is a structure which is used for holding
238 * (1) Domain information of current process.
239 * (2) How many retries are made for this request.
240 * (3) Profile number used for this request.
241 * (4) Access control mode of the profile.
243 struct tomoyo_request_info
{
244 struct tomoyo_domain_info
*domain
;
245 /* For holding parameters. */
248 const struct tomoyo_path_info
*filename
;
252 const struct tomoyo_path_info
*filename1
;
253 const struct tomoyo_path_info
*filename2
;
257 const struct tomoyo_path_info
*filename
;
264 const struct tomoyo_path_info
*filename
;
265 unsigned long number
;
269 const struct tomoyo_path_info
*type
;
270 const struct tomoyo_path_info
*dir
;
271 const struct tomoyo_path_info
*dev
;
280 u8 mode
; /* One of tomoyo_mode_index . */
285 * tomoyo_path_info is a structure which is used for holding a string data
287 * This structure has several fields for supporting pattern matching.
289 * (1) "name" is the '\0' terminated string data.
290 * (2) "hash" is full_name_hash(name, strlen(name)).
291 * This allows tomoyo_pathcmp() to compare by hash before actually compare
293 * (3) "const_len" is the length of the initial segment of "name" which
294 * consists entirely of non wildcard characters. In other words, the length
295 * which we can compare two strings using strncmp().
296 * (4) "is_dir" is a bool which is true if "name" ends with "/",
298 * TOMOYO distinguishes directory and non-directory. A directory ends with
299 * "/" and non-directory does not end with "/".
300 * (5) "is_patterned" is a bool which is true if "name" contains wildcard
301 * characters, false otherwise. This allows TOMOYO to use "hash" and
302 * strcmp() for string comparison if "is_patterned" is false.
304 struct tomoyo_path_info
{
306 u32 hash
; /* = full_name_hash(name, strlen(name)) */
307 u16 const_len
; /* = tomoyo_const_part_length(name) */
308 bool is_dir
; /* = tomoyo_strendswith(name, "/") */
309 bool is_patterned
; /* = tomoyo_path_contains_pattern(name) */
313 * tomoyo_name_entry is a structure which is used for linking
314 * "struct tomoyo_path_info" into tomoyo_name_list .
316 struct tomoyo_name_entry
{
317 struct list_head list
;
319 struct tomoyo_path_info entry
;
322 struct tomoyo_name_union
{
323 const struct tomoyo_path_info
*filename
;
324 struct tomoyo_group
*group
;
328 struct tomoyo_number_union
{
329 unsigned long values
[2];
330 struct tomoyo_group
*group
;
336 /* Structure for "path_group"/"number_group" directive. */
337 struct tomoyo_group
{
338 struct list_head list
;
339 const struct tomoyo_path_info
*group_name
;
340 struct list_head member_list
;
344 /* Structure for "path_group" directive. */
345 struct tomoyo_path_group
{
346 struct tomoyo_acl_head head
;
347 const struct tomoyo_path_info
*member_name
;
350 /* Structure for "number_group" directive. */
351 struct tomoyo_number_group
{
352 struct tomoyo_acl_head head
;
353 struct tomoyo_number_union number
;
357 * tomoyo_acl_info is a structure which is used for holding
359 * (1) "list" which is linked to the ->acl_info_list of
360 * "struct tomoyo_domain_info"
361 * (2) "is_deleted" is a bool which is true if this domain is marked as
362 * "deleted", false otherwise.
363 * (3) "type" which tells type of the entry.
365 * Packing "struct tomoyo_acl_info" allows
366 * "struct tomoyo_path_acl" to embed "u16" and "struct tomoyo_path2_acl"
367 * "struct tomoyo_path_number_acl" "struct tomoyo_mkdev_acl" to embed
368 * "u8" without enlarging their structure size.
370 struct tomoyo_acl_info
{
371 struct list_head list
;
373 u8 type
; /* = one of values in "enum tomoyo_acl_entry_type_index". */
377 * tomoyo_domain_info is a structure which is used for holding permissions
378 * (e.g. "allow_read /lib/libc-2.5.so") given to each domain.
379 * It has following fields.
381 * (1) "list" which is linked to tomoyo_domain_list .
382 * (2) "acl_info_list" which is linked to "struct tomoyo_acl_info".
383 * (3) "domainname" which holds the name of the domain.
384 * (4) "profile" which remembers profile number assigned to this domain.
385 * (5) "is_deleted" is a bool which is true if this domain is marked as
386 * "deleted", false otherwise.
387 * (6) "quota_warned" is a bool which is used for suppressing warning message
388 * when learning mode learned too much entries.
389 * (7) "ignore_global_allow_read" is a bool which is true if this domain
390 * should ignore "allow_read" directive in exception policy.
391 * (8) "transition_failed" is a bool which is set to true when this domain was
392 * unable to create a new domain at tomoyo_find_next_domain() because the
393 * name of the domain to be created was too long or it could not allocate
394 * memory. If set to true, more than one process continued execve()
395 * without domain transition.
396 * (9) "users" is an atomic_t that holds how many "struct cred"->security
397 * are referring this "struct tomoyo_domain_info". If is_deleted == true
398 * and users == 0, this struct will be kfree()d upon next garbage
401 * A domain's lifecycle is an analogy of files on / directory.
402 * Multiple domains with the same domainname cannot be created (as with
403 * creating files with the same filename fails with -EEXIST).
404 * If a process reached a domain, that process can reside in that domain after
405 * that domain is marked as "deleted" (as with a process can access an already
406 * open()ed file after that file was unlink()ed).
408 struct tomoyo_domain_info
{
409 struct list_head list
;
410 struct list_head acl_info_list
;
411 /* Name of this domain. Never NULL. */
412 const struct tomoyo_path_info
*domainname
;
413 u8 profile
; /* Profile number to use. */
414 bool is_deleted
; /* Delete flag. */
415 bool quota_warned
; /* Quota warnning flag. */
416 bool ignore_global_allow_read
; /* Ignore "allow_read" flag. */
417 bool transition_failed
; /* Domain transition failed flag. */
418 atomic_t users
; /* Number of referring credentials. */
422 * tomoyo_path_acl is a structure which is used for holding an
423 * entry with one pathname operation (e.g. open(), mkdir()).
424 * It has following fields.
426 * (1) "head" which is a "struct tomoyo_acl_info".
427 * (2) "perm" which is a bitmask of permitted operations.
428 * (3) "name" is the pathname.
430 * Directives held by this structure are "allow_read/write", "allow_execute",
431 * "allow_read", "allow_write", "allow_unlink", "allow_rmdir",
432 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_chroot" and
435 struct tomoyo_path_acl
{
436 struct tomoyo_acl_info head
; /* type = TOMOYO_TYPE_PATH_ACL */
438 struct tomoyo_name_union name
;
442 * tomoyo_path_number_acl is a structure which is used for holding an
443 * entry with one pathname and one number operation.
444 * It has following fields.
446 * (1) "head" which is a "struct tomoyo_acl_info".
447 * (2) "perm" which is a bitmask of permitted operations.
448 * (3) "name" is the pathname.
449 * (4) "number" is the numeric value.
451 * Directives held by this structure are "allow_create", "allow_mkdir",
452 * "allow_ioctl", "allow_mkfifo", "allow_mksock", "allow_chmod", "allow_chown"
456 struct tomoyo_path_number_acl
{
457 struct tomoyo_acl_info head
; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
459 struct tomoyo_name_union name
;
460 struct tomoyo_number_union number
;
464 * tomoyo_mkdev_acl is a structure which is used for holding an
465 * entry with one pathname and three numbers operation.
466 * It has following fields.
468 * (1) "head" which is a "struct tomoyo_acl_info".
469 * (2) "perm" which is a bitmask of permitted operations.
470 * (3) "mode" is the create mode.
471 * (4) "major" is the major number of device node.
472 * (5) "minor" is the minor number of device node.
474 * Directives held by this structure are "allow_mkchar", "allow_mkblock".
477 struct tomoyo_mkdev_acl
{
478 struct tomoyo_acl_info head
; /* type = TOMOYO_TYPE_MKDEV_ACL */
480 struct tomoyo_name_union name
;
481 struct tomoyo_number_union mode
;
482 struct tomoyo_number_union major
;
483 struct tomoyo_number_union minor
;
487 * tomoyo_path2_acl is a structure which is used for holding an
488 * entry with two pathnames operation (i.e. link(), rename() and pivot_root()).
489 * It has following fields.
491 * (1) "head" which is a "struct tomoyo_acl_info".
492 * (2) "perm" which is a bitmask of permitted operations.
493 * (3) "name1" is the source/old pathname.
494 * (4) "name2" is the destination/new pathname.
496 * Directives held by this structure are "allow_rename", "allow_link" and
497 * "allow_pivot_root".
499 struct tomoyo_path2_acl
{
500 struct tomoyo_acl_info head
; /* type = TOMOYO_TYPE_PATH2_ACL */
502 struct tomoyo_name_union name1
;
503 struct tomoyo_name_union name2
;
507 * tomoyo_mount_acl is a structure which is used for holding an
508 * entry for mount operation.
509 * It has following fields.
511 * (1) "head" which is a "struct tomoyo_acl_info".
512 * (2) "dev_name" is the device name.
513 * (3) "dir_name" is the mount point.
514 * (4) "fs_type" is the filesystem type.
515 * (5) "flags" is the mount flags.
517 * Directive held by this structure is "allow_mount".
519 struct tomoyo_mount_acl
{
520 struct tomoyo_acl_info head
; /* type = TOMOYO_TYPE_MOUNT_ACL */
521 struct tomoyo_name_union dev_name
;
522 struct tomoyo_name_union dir_name
;
523 struct tomoyo_name_union fs_type
;
524 struct tomoyo_number_union flags
;
528 * tomoyo_io_buffer is a structure which is used for reading and modifying
529 * configuration via /sys/kernel/security/tomoyo/ interface.
530 * It has many fields. ->read_var1 , ->read_var2 , ->write_var1 are used as
533 * Since the content of /sys/kernel/security/tomoyo/domain_policy is a list of
534 * "struct tomoyo_domain_info" entries and each "struct tomoyo_domain_info"
535 * entry has a list of "struct tomoyo_acl_info", we need two cursors when
536 * reading (one is for traversing tomoyo_domain_list and the other is for
537 * traversing "struct tomoyo_acl_info"->acl_info_list ).
539 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
540 * "select ", TOMOYO seeks the cursor ->read_var1 and ->write_var1 to the
541 * domain with the domainname specified by the rest of that line (NULL is set
543 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
544 * "delete ", TOMOYO deletes an entry or a domain specified by the rest of that
545 * line (->write_var1 is set to NULL if a domain was deleted).
546 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
547 * neither "select " nor "delete ", an entry or a domain specified by that line
550 struct tomoyo_io_buffer
{
551 void (*read
) (struct tomoyo_io_buffer
*);
552 int (*write
) (struct tomoyo_io_buffer
*);
553 int (*poll
) (struct file
*file
, poll_table
*wait
);
554 /* Exclusive lock for this structure. */
556 /* Index returned by tomoyo_read_lock(). */
558 /* The position currently reading from. */
559 struct list_head
*read_var1
;
560 /* Extra variables for reading. */
561 struct list_head
*read_var2
;
562 /* The position currently writing to. */
563 struct tomoyo_domain_info
*write_var1
;
564 /* The step for reading. */
566 /* Buffer for reading. */
568 /* EOF flag for reading. */
570 /* Read domain ACL of specified PID? */
571 bool read_single_domain
;
572 /* Extra variable for reading. */
574 /* Read only TOMOYO_TYPE_EXECUTE */
575 bool print_execute_only
;
576 /* Bytes available for reading. */
578 /* Size of read buffer. */
580 /* Buffer for writing. */
582 /* Bytes available for writing. */
584 /* Size of write buffer. */
586 /* Type of this interface. */
591 * tomoyo_globally_readable_file_entry is a structure which is used for holding
592 * "allow_read" entries.
593 * It has following fields.
595 * (1) "head" is "struct tomoyo_acl_head".
596 * (2) "filename" is a pathname which is allowed to open(O_RDONLY).
598 struct tomoyo_globally_readable_file_entry
{
599 struct tomoyo_acl_head head
;
600 const struct tomoyo_path_info
*filename
;
604 * tomoyo_pattern_entry is a structure which is used for holding
605 * "file_pattern" entries.
606 * It has following fields.
608 * (1) "head" is "struct tomoyo_acl_head".
609 * (2) "pattern" is a pathname pattern which is used for converting pathnames
610 * to pathname patterns during learning mode.
612 struct tomoyo_pattern_entry
{
613 struct tomoyo_acl_head head
;
614 const struct tomoyo_path_info
*pattern
;
618 * tomoyo_no_rewrite_entry is a structure which is used for holding
619 * "deny_rewrite" entries.
620 * It has following fields.
622 * (1) "head" is "struct tomoyo_acl_head".
623 * (2) "pattern" is a pathname which is by default not permitted to modify
624 * already existing content.
626 struct tomoyo_no_rewrite_entry
{
627 struct tomoyo_acl_head head
;
628 const struct tomoyo_path_info
*pattern
;
632 * tomoyo_transition_control is a structure which is used for holding
633 * "initialize_domain"/"no_initialize_domain"/"keep_domain"/"no_keep_domain"
635 * It has following fields.
637 * (1) "head" is "struct tomoyo_acl_head".
638 * (2) "type" is type of this entry.
639 * (3) "is_last_name" is a bool which is true if "domainname" is "the last
640 * component of a domainname", false otherwise.
641 * (4) "domainname" which is "a domainname" or "the last component of a
643 * (5) "program" which is a program's pathname.
645 struct tomoyo_transition_control
{
646 struct tomoyo_acl_head head
;
647 u8 type
; /* One of values in "enum tomoyo_transition_type". */
648 /* True if the domainname is tomoyo_get_last_name(). */
650 const struct tomoyo_path_info
*domainname
; /* Maybe NULL */
651 const struct tomoyo_path_info
*program
; /* Maybe NULL */
655 * tomoyo_aggregator_entry is a structure which is used for holding
656 * "aggregator" entries.
657 * It has following fields.
659 * (1) "head" is "struct tomoyo_acl_head".
660 * (2) "original_name" which is originally requested name.
661 * (3) "aggregated_name" which is name to rewrite.
663 struct tomoyo_aggregator_entry
{
664 struct tomoyo_acl_head head
;
665 const struct tomoyo_path_info
*original_name
;
666 const struct tomoyo_path_info
*aggregated_name
;
670 * tomoyo_policy_manager_entry is a structure which is used for holding list of
671 * domainnames or programs which are permitted to modify configuration via
672 * /sys/kernel/security/tomoyo/ interface.
673 * It has following fields.
675 * (1) "head" is "struct tomoyo_acl_head".
676 * (2) "is_domain" is a bool which is true if "manager" is a domainname, false
678 * (3) "manager" is a domainname or a program's pathname.
680 struct tomoyo_policy_manager_entry
{
681 struct tomoyo_acl_head head
;
682 bool is_domain
; /* True if manager is a domainname. */
683 /* A path to program or a domainname. */
684 const struct tomoyo_path_info
*manager
;
687 struct tomoyo_preference
{
688 unsigned int learning_max_entry
;
689 bool enforcing_verbose
;
690 bool learning_verbose
;
691 bool permissive_verbose
;
694 struct tomoyo_profile
{
695 const struct tomoyo_path_info
*comment
;
696 struct tomoyo_preference
*learning
;
697 struct tomoyo_preference
*permissive
;
698 struct tomoyo_preference
*enforcing
;
699 struct tomoyo_preference preference
;
701 u8 config
[TOMOYO_MAX_MAC_INDEX
+ TOMOYO_MAX_MAC_CATEGORY_INDEX
];
704 /********** Function prototypes. **********/
706 extern asmlinkage
long sys_getpid(void);
707 extern asmlinkage
long sys_getppid(void);
709 /* Check whether the given string starts with the given keyword. */
710 bool tomoyo_str_starts(char **src
, const char *find
);
711 /* Get tomoyo_realpath() of current process. */
712 const char *tomoyo_get_exe(void);
714 void tomoyo_normalize_line(unsigned char *buffer
);
715 /* Print warning or error message on console. */
716 void tomoyo_warn_log(struct tomoyo_request_info
*r
, const char *fmt
, ...)
717 __attribute__ ((format(printf
, 2, 3)));
718 /* Check all profiles currently assigned to domains are defined. */
719 void tomoyo_check_profile(void);
720 /* Open operation for /sys/kernel/security/tomoyo/ interface. */
721 int tomoyo_open_control(const u8 type
, struct file
*file
);
722 /* Close /sys/kernel/security/tomoyo/ interface. */
723 int tomoyo_close_control(struct file
*file
);
724 /* Read operation for /sys/kernel/security/tomoyo/ interface. */
725 int tomoyo_read_control(struct file
*file
, char __user
*buffer
,
726 const int buffer_len
);
727 /* Write operation for /sys/kernel/security/tomoyo/ interface. */
728 int tomoyo_write_control(struct file
*file
, const char __user
*buffer
,
729 const int buffer_len
);
730 /* Check whether the domain has too many ACL entries to hold. */
731 bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info
*r
);
732 /* Print out of memory warning message. */
733 void tomoyo_warn_oom(const char *function
);
734 /* Check whether the given name matches the given name_union. */
735 bool tomoyo_compare_name_union(const struct tomoyo_path_info
*name
,
736 const struct tomoyo_name_union
*ptr
);
737 /* Check whether the given number matches the given number_union. */
738 bool tomoyo_compare_number_union(const unsigned long value
,
739 const struct tomoyo_number_union
*ptr
);
740 int tomoyo_get_mode(const u8 profile
, const u8 index
);
741 /* Transactional sprintf() for policy dump. */
742 bool tomoyo_io_printf(struct tomoyo_io_buffer
*head
, const char *fmt
, ...)
743 __attribute__ ((format(printf
, 2, 3)));
744 /* Check whether the domainname is correct. */
745 bool tomoyo_correct_domain(const unsigned char *domainname
);
746 /* Check whether the token is correct. */
747 bool tomoyo_correct_path(const char *filename
);
748 bool tomoyo_correct_word(const char *string
);
749 /* Check whether the token can be a domainname. */
750 bool tomoyo_domain_def(const unsigned char *buffer
);
751 bool tomoyo_parse_name_union(const char *filename
,
752 struct tomoyo_name_union
*ptr
);
753 /* Check whether the given filename matches the given path_group. */
754 bool tomoyo_path_matches_group(const struct tomoyo_path_info
*pathname
,
755 const struct tomoyo_group
*group
);
756 /* Check whether the given value matches the given number_group. */
757 bool tomoyo_number_matches_group(const unsigned long min
,
758 const unsigned long max
,
759 const struct tomoyo_group
*group
);
760 /* Check whether the given filename matches the given pattern. */
761 bool tomoyo_path_matches_pattern(const struct tomoyo_path_info
*filename
,
762 const struct tomoyo_path_info
*pattern
);
764 bool tomoyo_print_number_union(struct tomoyo_io_buffer
*head
,
765 const struct tomoyo_number_union
*ptr
);
766 bool tomoyo_parse_number_union(char *data
, struct tomoyo_number_union
*num
);
767 /* Tokenize a line. */
768 bool tomoyo_tokenize(char *buffer
, char *w
[], size_t size
);
769 /* Write domain policy violation warning message to console? */
770 bool tomoyo_verbose_mode(const struct tomoyo_domain_info
*domain
);
771 /* Get the last component of the given domainname. */
772 const char *tomoyo_get_last_name(const struct tomoyo_domain_info
*domain
);
773 /* Fill "struct tomoyo_request_info". */
774 int tomoyo_init_request_info(struct tomoyo_request_info
*r
,
775 struct tomoyo_domain_info
*domain
,
777 /* Check permission for mount operation. */
778 int tomoyo_mount_permission(char *dev_name
, struct path
*path
, char *type
,
779 unsigned long flags
, void *data_page
);
780 /* Create "aggregator" entry in exception policy. */
781 int tomoyo_write_aggregator_policy(char *data
, const bool is_delete
);
782 int tomoyo_write_transition_control(char *data
, const bool is_delete
,
785 * Create "allow_read/write", "allow_execute", "allow_read", "allow_write",
786 * "allow_create", "allow_unlink", "allow_mkdir", "allow_rmdir",
787 * "allow_mkfifo", "allow_mksock", "allow_mkblock", "allow_mkchar",
788 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_rename" and
789 * "allow_link" entry in domain policy.
791 int tomoyo_write_file_policy(char *data
, struct tomoyo_domain_info
*domain
,
792 const bool is_delete
);
793 /* Create "allow_read" entry in exception policy. */
794 int tomoyo_write_globally_readable_policy(char *data
, const bool is_delete
);
795 /* Create "allow_mount" entry in domain policy. */
796 int tomoyo_write_mount_policy(char *data
, struct tomoyo_domain_info
*domain
,
797 const bool is_delete
);
798 /* Create "deny_rewrite" entry in exception policy. */
799 int tomoyo_write_no_rewrite_policy(char *data
, const bool is_delete
);
800 /* Create "file_pattern" entry in exception policy. */
801 int tomoyo_write_pattern_policy(char *data
, const bool is_delete
);
802 /* Create "path_group"/"number_group" entry in exception policy. */
803 int tomoyo_write_group(char *data
, const bool is_delete
, const u8 type
);
804 int tomoyo_supervisor(struct tomoyo_request_info
*r
, const char *fmt
, ...)
805 __attribute__ ((format(printf
, 2, 3)));
806 /* Find a domain by the given name. */
807 struct tomoyo_domain_info
*tomoyo_find_domain(const char *domainname
);
808 /* Find or create a domain by the given name. */
809 struct tomoyo_domain_info
*tomoyo_find_or_assign_new_domain(const char *
812 struct tomoyo_profile
*tomoyo_profile(const u8 profile
);
814 * Allocate memory for "struct tomoyo_path_group"/"struct tomoyo_number_group".
816 struct tomoyo_group
*tomoyo_get_group(const char *group_name
, const u8 type
);
818 /* Check mode for specified functionality. */
819 unsigned int tomoyo_check_flags(const struct tomoyo_domain_info
*domain
,
821 /* Fill in "struct tomoyo_path_info" members. */
822 void tomoyo_fill_path_info(struct tomoyo_path_info
*ptr
);
823 /* Run policy loader when /sbin/init starts. */
824 void tomoyo_load_policy(const char *filename
);
826 void tomoyo_put_number_union(struct tomoyo_number_union
*ptr
);
828 /* Convert binary string to ascii string. */
829 char *tomoyo_encode(const char *str
);
832 * Returns realpath(3) of the given pathname except that
833 * ignores chroot'ed root and does not follow the final symlink.
835 char *tomoyo_realpath_nofollow(const char *pathname
);
837 * Returns realpath(3) of the given pathname except that
838 * ignores chroot'ed root and the pathname is already solved.
840 char *tomoyo_realpath_from_path(struct path
*path
);
841 /* Get patterned pathname. */
842 const char *tomoyo_file_pattern(const struct tomoyo_path_info
*filename
);
844 /* Check memory quota. */
845 bool tomoyo_memory_ok(void *ptr
);
846 void *tomoyo_commit_ok(void *data
, const unsigned int size
);
849 * Keep the given name on the RAM.
850 * The RAM is shared, so NEVER try to modify or kfree() the returned name.
852 const struct tomoyo_path_info
*tomoyo_get_name(const char *name
);
854 /* Check for memory usage. */
855 void tomoyo_read_memory_counter(struct tomoyo_io_buffer
*head
);
857 /* Set memory quota. */
858 int tomoyo_write_memory_quota(struct tomoyo_io_buffer
*head
);
860 /* Initialize mm related code. */
861 void __init
tomoyo_mm_init(void);
862 int tomoyo_path_permission(struct tomoyo_request_info
*r
, u8 operation
,
863 const struct tomoyo_path_info
*filename
);
864 int tomoyo_check_open_permission(struct tomoyo_domain_info
*domain
,
865 struct path
*path
, const int flag
);
866 int tomoyo_path_number_perm(const u8 operation
, struct path
*path
,
867 unsigned long number
);
868 int tomoyo_mkdev_perm(const u8 operation
, struct path
*path
,
869 const unsigned int mode
, unsigned int dev
);
870 int tomoyo_path_perm(const u8 operation
, struct path
*path
);
871 int tomoyo_path2_perm(const u8 operation
, struct path
*path1
,
873 int tomoyo_find_next_domain(struct linux_binprm
*bprm
);
875 void tomoyo_print_ulong(char *buffer
, const int buffer_len
,
876 const unsigned long value
, const u8 type
);
878 /* Drop refcount on tomoyo_name_union. */
879 void tomoyo_put_name_union(struct tomoyo_name_union
*ptr
);
881 /* Run garbage collector. */
882 void tomoyo_run_gc(void);
884 void tomoyo_memory_free(void *ptr
);
886 int tomoyo_update_domain(struct tomoyo_acl_info
*new_entry
, const int size
,
887 bool is_delete
, struct tomoyo_domain_info
*domain
,
888 bool (*check_duplicate
) (const struct tomoyo_acl_info
890 const struct tomoyo_acl_info
892 bool (*merge_duplicate
) (struct tomoyo_acl_info
*,
893 struct tomoyo_acl_info
*,
895 int tomoyo_update_policy(struct tomoyo_acl_head
*new_entry
, const int size
,
896 bool is_delete
, struct list_head
*list
,
897 bool (*check_duplicate
) (const struct tomoyo_acl_head
899 const struct tomoyo_acl_head
901 void tomoyo_check_acl(struct tomoyo_request_info
*r
,
902 bool (*check_entry
) (const struct tomoyo_request_info
*,
903 const struct tomoyo_acl_info
*));
904 const char *tomoyo_last_word(const char *name
);
906 /********** External variable definitions. **********/
909 extern struct srcu_struct tomoyo_ss
;
911 /* The list for "struct tomoyo_domain_info". */
912 extern struct list_head tomoyo_domain_list
;
914 extern struct list_head tomoyo_policy_list
[TOMOYO_MAX_POLICY
];
915 extern struct list_head tomoyo_group_list
[TOMOYO_MAX_GROUP
];
916 extern struct list_head tomoyo_name_list
[TOMOYO_MAX_HASH
];
918 /* Lock for protecting policy. */
919 extern struct mutex tomoyo_policy_lock
;
921 /* Has /sbin/init started? */
922 extern bool tomoyo_policy_loaded
;
924 /* The kernel's domain. */
925 extern struct tomoyo_domain_info tomoyo_kernel_domain
;
927 extern const char *tomoyo_path_keyword
[TOMOYO_MAX_PATH_OPERATION
];
928 extern const char *tomoyo_mkdev_keyword
[TOMOYO_MAX_MKDEV_OPERATION
];
929 extern const char *tomoyo_path2_keyword
[TOMOYO_MAX_PATH2_OPERATION
];
930 extern const char *tomoyo_path_number_keyword
[TOMOYO_MAX_PATH_NUMBER_OPERATION
];
932 extern unsigned int tomoyo_quota_for_query
;
933 extern unsigned int tomoyo_query_memory_size
;
935 /********** Inlined functions. **********/
937 static inline int tomoyo_read_lock(void)
939 return srcu_read_lock(&tomoyo_ss
);
942 static inline void tomoyo_read_unlock(int idx
)
944 srcu_read_unlock(&tomoyo_ss
, idx
);
947 /* strcmp() for "struct tomoyo_path_info" structure. */
948 static inline bool tomoyo_pathcmp(const struct tomoyo_path_info
*a
,
949 const struct tomoyo_path_info
*b
)
951 return a
->hash
!= b
->hash
|| strcmp(a
->name
, b
->name
);
955 * tomoyo_valid - Check whether the character is a valid char.
957 * @c: The character to check.
959 * Returns true if @c is a valid character, false otherwise.
961 static inline bool tomoyo_valid(const unsigned char c
)
963 return c
> ' ' && c
< 127;
967 * tomoyo_invalid - Check whether the character is an invalid char.
969 * @c: The character to check.
971 * Returns true if @c is an invalid character, false otherwise.
973 static inline bool tomoyo_invalid(const unsigned char c
)
975 return c
&& (c
<= ' ' || c
>= 127);
978 static inline void tomoyo_put_name(const struct tomoyo_path_info
*name
)
981 struct tomoyo_name_entry
*ptr
=
982 container_of(name
, struct tomoyo_name_entry
, entry
);
983 atomic_dec(&ptr
->users
);
987 static inline void tomoyo_put_group(struct tomoyo_group
*group
)
990 atomic_dec(&group
->users
);
993 static inline struct tomoyo_domain_info
*tomoyo_domain(void)
995 return current_cred()->security
;
998 static inline struct tomoyo_domain_info
*tomoyo_real_domain(struct task_struct
1001 return task_cred_xxx(task
, security
);
1004 static inline bool tomoyo_same_acl_head(const struct tomoyo_acl_info
*p1
,
1005 const struct tomoyo_acl_info
*p2
)
1007 return p1
->type
== p2
->type
;
1010 static inline bool tomoyo_same_name_union
1011 (const struct tomoyo_name_union
*p1
, const struct tomoyo_name_union
*p2
)
1013 return p1
->filename
== p2
->filename
&& p1
->group
== p2
->group
&&
1014 p1
->is_group
== p2
->is_group
;
1017 static inline bool tomoyo_same_number_union
1018 (const struct tomoyo_number_union
*p1
, const struct tomoyo_number_union
*p2
)
1020 return p1
->values
[0] == p2
->values
[0] && p1
->values
[1] == p2
->values
[1]
1021 && p1
->group
== p2
->group
&& p1
->min_type
== p2
->min_type
&&
1022 p1
->max_type
== p2
->max_type
&& p1
->is_group
== p2
->is_group
;
1026 * list_for_each_cookie - iterate over a list with cookie.
1027 * @pos: the &struct list_head to use as a loop cursor.
1028 * @head: the head for your list.
1030 #define list_for_each_cookie(pos, head) \
1032 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1033 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
1035 #endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */