TOMOYO: Split file access control functions by type of parameters.
[linux-2.6.git] / security / tomoyo / common.h
blob565a1c11da53d729756cd34cb6565a7857f2cd29
1 /*
2 * security/tomoyo/common.h
4 * Header file for TOMOYO.
6 * Copyright (C) 2005-2010 NTT DATA CORPORATION
7 */
9 #ifndef _SECURITY_TOMOYO_COMMON_H
10 #define _SECURITY_TOMOYO_COMMON_H
12 #include <linux/ctype.h>
13 #include <linux/string.h>
14 #include <linux/mm.h>
15 #include <linux/file.h>
16 #include <linux/kmod.h>
17 #include <linux/fs.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 struct linux_binprm;
25 /********** Constants definitions. **********/
28 * TOMOYO uses this hash only when appending a string into the string
29 * table. Frequency of appending strings is very low. So we don't need
30 * large (e.g. 64k) hash size. 256 will be sufficient.
32 #define TOMOYO_HASH_BITS 8
33 #define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
36 * This is the max length of a token.
38 * A token consists of only ASCII printable characters.
39 * Non printable characters in a token is represented in \ooo style
40 * octal string. Thus, \ itself is represented as \\.
42 #define TOMOYO_MAX_PATHNAME_LEN 4000
44 /* Profile number is an integer between 0 and 255. */
45 #define TOMOYO_MAX_PROFILES 256
47 enum tomoyo_mode_index {
48 TOMOYO_CONFIG_DISABLED,
49 TOMOYO_CONFIG_LEARNING,
50 TOMOYO_CONFIG_PERMISSIVE,
51 TOMOYO_CONFIG_ENFORCING
54 /* Keywords for ACLs. */
55 #define TOMOYO_KEYWORD_ALIAS "alias "
56 #define TOMOYO_KEYWORD_ALLOW_READ "allow_read "
57 #define TOMOYO_KEYWORD_DELETE "delete "
58 #define TOMOYO_KEYWORD_DENY_REWRITE "deny_rewrite "
59 #define TOMOYO_KEYWORD_FILE_PATTERN "file_pattern "
60 #define TOMOYO_KEYWORD_INITIALIZE_DOMAIN "initialize_domain "
61 #define TOMOYO_KEYWORD_KEEP_DOMAIN "keep_domain "
62 #define TOMOYO_KEYWORD_NO_INITIALIZE_DOMAIN "no_initialize_domain "
63 #define TOMOYO_KEYWORD_NO_KEEP_DOMAIN "no_keep_domain "
64 #define TOMOYO_KEYWORD_PATH_GROUP "path_group "
65 #define TOMOYO_KEYWORD_NUMBER_GROUP "number_group "
66 #define TOMOYO_KEYWORD_SELECT "select "
67 #define TOMOYO_KEYWORD_USE_PROFILE "use_profile "
68 #define TOMOYO_KEYWORD_IGNORE_GLOBAL_ALLOW_READ "ignore_global_allow_read"
69 /* A domain definition starts with <kernel>. */
70 #define TOMOYO_ROOT_NAME "<kernel>"
71 #define TOMOYO_ROOT_NAME_LEN (sizeof(TOMOYO_ROOT_NAME) - 1)
73 /* Value type definition. */
74 #define TOMOYO_VALUE_TYPE_INVALID 0
75 #define TOMOYO_VALUE_TYPE_DECIMAL 1
76 #define TOMOYO_VALUE_TYPE_OCTAL 2
77 #define TOMOYO_VALUE_TYPE_HEXADECIMAL 3
79 /* Index numbers for Access Controls. */
80 enum tomoyo_mac_index {
81 TOMOYO_MAC_FOR_FILE, /* domain_policy.conf */
82 TOMOYO_MAX_ACCEPT_ENTRY,
83 TOMOYO_VERBOSE,
84 TOMOYO_MAX_CONTROL_INDEX
87 /* Index numbers for Access Controls. */
88 enum tomoyo_acl_entry_type_index {
89 TOMOYO_TYPE_PATH_ACL,
90 TOMOYO_TYPE_PATH2_ACL,
91 TOMOYO_TYPE_PATH_NUMBER_ACL,
92 TOMOYO_TYPE_PATH_NUMBER3_ACL,
95 /* Index numbers for File Controls. */
98 * TOMOYO_TYPE_READ_WRITE is special. TOMOYO_TYPE_READ_WRITE is automatically
99 * set if both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are set.
100 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically set if
101 * TOMOYO_TYPE_READ_WRITE is set.
102 * TOMOYO_TYPE_READ_WRITE is automatically cleared if either TOMOYO_TYPE_READ
103 * or TOMOYO_TYPE_WRITE is cleared.
104 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically cleared if
105 * TOMOYO_TYPE_READ_WRITE is cleared.
108 enum tomoyo_path_acl_index {
109 TOMOYO_TYPE_READ_WRITE,
110 TOMOYO_TYPE_EXECUTE,
111 TOMOYO_TYPE_READ,
112 TOMOYO_TYPE_WRITE,
113 TOMOYO_TYPE_UNLINK,
114 TOMOYO_TYPE_RMDIR,
115 TOMOYO_TYPE_TRUNCATE,
116 TOMOYO_TYPE_SYMLINK,
117 TOMOYO_TYPE_REWRITE,
118 TOMOYO_TYPE_CHROOT,
119 TOMOYO_TYPE_MOUNT,
120 TOMOYO_TYPE_UMOUNT,
121 TOMOYO_MAX_PATH_OPERATION
124 enum tomoyo_path_number3_acl_index {
125 TOMOYO_TYPE_MKBLOCK,
126 TOMOYO_TYPE_MKCHAR,
127 TOMOYO_MAX_PATH_NUMBER3_OPERATION
130 enum tomoyo_path2_acl_index {
131 TOMOYO_TYPE_LINK,
132 TOMOYO_TYPE_RENAME,
133 TOMOYO_TYPE_PIVOT_ROOT,
134 TOMOYO_MAX_PATH2_OPERATION
137 enum tomoyo_path_number_acl_index {
138 TOMOYO_TYPE_CREATE,
139 TOMOYO_TYPE_MKDIR,
140 TOMOYO_TYPE_MKFIFO,
141 TOMOYO_TYPE_MKSOCK,
142 TOMOYO_TYPE_IOCTL,
143 TOMOYO_TYPE_CHMOD,
144 TOMOYO_TYPE_CHOWN,
145 TOMOYO_TYPE_CHGRP,
146 TOMOYO_MAX_PATH_NUMBER_OPERATION
149 enum tomoyo_securityfs_interface_index {
150 TOMOYO_DOMAINPOLICY,
151 TOMOYO_EXCEPTIONPOLICY,
152 TOMOYO_DOMAIN_STATUS,
153 TOMOYO_PROCESS_STATUS,
154 TOMOYO_MEMINFO,
155 TOMOYO_SELFDOMAIN,
156 TOMOYO_VERSION,
157 TOMOYO_PROFILE,
158 TOMOYO_MANAGER
161 /********** Structure definitions. **********/
164 * tomoyo_page_buffer is a structure which is used for holding a pathname
165 * obtained from "struct dentry" and "struct vfsmount" pair.
166 * As of now, it is 4096 bytes. If users complain that 4096 bytes is too small
167 * (because TOMOYO escapes non ASCII printable characters using \ooo format),
168 * we will make the buffer larger.
170 struct tomoyo_page_buffer {
171 char buffer[4096];
175 * tomoyo_request_info is a structure which is used for holding
177 * (1) Domain information of current process.
178 * (2) Access control mode of the profile.
180 struct tomoyo_request_info {
181 struct tomoyo_domain_info *domain;
182 u8 mode; /* One of tomoyo_mode_index . */
186 * tomoyo_path_info is a structure which is used for holding a string data
187 * used by TOMOYO.
188 * This structure has several fields for supporting pattern matching.
190 * (1) "name" is the '\0' terminated string data.
191 * (2) "hash" is full_name_hash(name, strlen(name)).
192 * This allows tomoyo_pathcmp() to compare by hash before actually compare
193 * using strcmp().
194 * (3) "const_len" is the length of the initial segment of "name" which
195 * consists entirely of non wildcard characters. In other words, the length
196 * which we can compare two strings using strncmp().
197 * (4) "is_dir" is a bool which is true if "name" ends with "/",
198 * false otherwise.
199 * TOMOYO distinguishes directory and non-directory. A directory ends with
200 * "/" and non-directory does not end with "/".
201 * (5) "is_patterned" is a bool which is true if "name" contains wildcard
202 * characters, false otherwise. This allows TOMOYO to use "hash" and
203 * strcmp() for string comparison if "is_patterned" is false.
205 struct tomoyo_path_info {
206 const char *name;
207 u32 hash; /* = full_name_hash(name, strlen(name)) */
208 u16 const_len; /* = tomoyo_const_part_length(name) */
209 bool is_dir; /* = tomoyo_strendswith(name, "/") */
210 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
214 * tomoyo_name_entry is a structure which is used for linking
215 * "struct tomoyo_path_info" into tomoyo_name_list .
217 struct tomoyo_name_entry {
218 struct list_head list;
219 atomic_t users;
220 struct tomoyo_path_info entry;
224 * tomoyo_path_info_with_data is a structure which is used for holding a
225 * pathname obtained from "struct dentry" and "struct vfsmount" pair.
227 * "struct tomoyo_path_info_with_data" consists of "struct tomoyo_path_info"
228 * and buffer for the pathname, while "struct tomoyo_page_buffer" consists of
229 * buffer for the pathname only.
231 * "struct tomoyo_path_info_with_data" is intended to allow TOMOYO to release
232 * both "struct tomoyo_path_info" and buffer for the pathname by single kfree()
233 * so that we don't need to return two pointers to the caller. If the caller
234 * puts "struct tomoyo_path_info" on stack memory, we will be able to remove
235 * "struct tomoyo_path_info_with_data".
237 struct tomoyo_path_info_with_data {
238 /* Keep "head" first, for this pointer is passed to kfree(). */
239 struct tomoyo_path_info head;
240 char barrier1[16]; /* Safeguard for overrun. */
241 char body[TOMOYO_MAX_PATHNAME_LEN];
242 char barrier2[16]; /* Safeguard for overrun. */
245 struct tomoyo_name_union {
246 const struct tomoyo_path_info *filename;
247 struct tomoyo_path_group *group;
248 u8 is_group;
251 struct tomoyo_number_union {
252 unsigned long values[2];
253 struct tomoyo_number_group *group;
254 u8 min_type;
255 u8 max_type;
256 u8 is_group;
259 /* Structure for "path_group" directive. */
260 struct tomoyo_path_group {
261 struct list_head list;
262 const struct tomoyo_path_info *group_name;
263 struct list_head member_list;
264 atomic_t users;
267 /* Structure for "number_group" directive. */
268 struct tomoyo_number_group {
269 struct list_head list;
270 const struct tomoyo_path_info *group_name;
271 struct list_head member_list;
272 atomic_t users;
275 /* Structure for "path_group" directive. */
276 struct tomoyo_path_group_member {
277 struct list_head list;
278 bool is_deleted;
279 const struct tomoyo_path_info *member_name;
282 /* Structure for "number_group" directive. */
283 struct tomoyo_number_group_member {
284 struct list_head list;
285 bool is_deleted;
286 struct tomoyo_number_union number;
290 * tomoyo_acl_info is a structure which is used for holding
292 * (1) "list" which is linked to the ->acl_info_list of
293 * "struct tomoyo_domain_info"
294 * (2) "type" which tells type of the entry (either
295 * "struct tomoyo_path_acl" or "struct tomoyo_path2_acl").
297 * Packing "struct tomoyo_acl_info" allows
298 * "struct tomoyo_path_acl" to embed "u8" + "u16" and
299 * "struct tomoyo_path2_acl" to embed "u8"
300 * without enlarging their structure size.
302 struct tomoyo_acl_info {
303 struct list_head list;
304 u8 type;
305 } __packed;
308 * tomoyo_domain_info is a structure which is used for holding permissions
309 * (e.g. "allow_read /lib/libc-2.5.so") given to each domain.
310 * It has following fields.
312 * (1) "list" which is linked to tomoyo_domain_list .
313 * (2) "acl_info_list" which is linked to "struct tomoyo_acl_info".
314 * (3) "domainname" which holds the name of the domain.
315 * (4) "profile" which remembers profile number assigned to this domain.
316 * (5) "is_deleted" is a bool which is true if this domain is marked as
317 * "deleted", false otherwise.
318 * (6) "quota_warned" is a bool which is used for suppressing warning message
319 * when learning mode learned too much entries.
320 * (7) "ignore_global_allow_read" is a bool which is true if this domain
321 * should ignore "allow_read" directive in exception policy.
322 * (8) "transition_failed" is a bool which is set to true when this domain was
323 * unable to create a new domain at tomoyo_find_next_domain() because the
324 * name of the domain to be created was too long or it could not allocate
325 * memory. If set to true, more than one process continued execve()
326 * without domain transition.
327 * (9) "users" is an atomic_t that holds how many "struct cred"->security
328 * are referring this "struct tomoyo_domain_info". If is_deleted == true
329 * and users == 0, this struct will be kfree()d upon next garbage
330 * collection.
332 * A domain's lifecycle is an analogy of files on / directory.
333 * Multiple domains with the same domainname cannot be created (as with
334 * creating files with the same filename fails with -EEXIST).
335 * If a process reached a domain, that process can reside in that domain after
336 * that domain is marked as "deleted" (as with a process can access an already
337 * open()ed file after that file was unlink()ed).
339 struct tomoyo_domain_info {
340 struct list_head list;
341 struct list_head acl_info_list;
342 /* Name of this domain. Never NULL. */
343 const struct tomoyo_path_info *domainname;
344 u8 profile; /* Profile number to use. */
345 bool is_deleted; /* Delete flag. */
346 bool quota_warned; /* Quota warnning flag. */
347 bool ignore_global_allow_read; /* Ignore "allow_read" flag. */
348 bool transition_failed; /* Domain transition failed flag. */
349 atomic_t users; /* Number of referring credentials. */
353 * tomoyo_path_acl is a structure which is used for holding an
354 * entry with one pathname operation (e.g. open(), mkdir()).
355 * It has following fields.
357 * (1) "head" which is a "struct tomoyo_acl_info".
358 * (2) "perm" which is a bitmask of permitted operations.
359 * (3) "name" is the pathname.
361 * Directives held by this structure are "allow_read/write", "allow_execute",
362 * "allow_read", "allow_write", "allow_unlink", "allow_rmdir",
363 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_chroot",
364 * "allow_mount" and "allow_unmount".
366 struct tomoyo_path_acl {
367 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
368 u16 perm;
369 struct tomoyo_name_union name;
373 * tomoyo_path_number_acl is a structure which is used for holding an
374 * entry with one pathname and one number operation.
375 * It has following fields.
377 * (1) "head" which is a "struct tomoyo_acl_info".
378 * (2) "perm" which is a bitmask of permitted operations.
379 * (3) "name" is the pathname.
380 * (4) "number" is the numeric value.
382 * Directives held by this structure are "allow_create", "allow_mkdir",
383 * "allow_ioctl", "allow_mkfifo", "allow_mksock", "allow_chmod", "allow_chown"
384 * and "allow_chgrp".
387 struct tomoyo_path_number_acl {
388 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
389 u8 perm;
390 struct tomoyo_name_union name;
391 struct tomoyo_number_union number;
395 * tomoyo_path_number3_acl is a structure which is used for holding an
396 * entry with one pathname and three numbers operation.
397 * It has following fields.
399 * (1) "head" which is a "struct tomoyo_acl_info".
400 * (2) "perm" which is a bitmask of permitted operations.
401 * (3) "mode" is the create mode.
402 * (4) "major" is the major number of device node.
403 * (5) "minor" is the minor number of device node.
405 * Directives held by this structure are "allow_mkchar", "allow_mkblock".
408 struct tomoyo_path_number3_acl {
409 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER3_ACL */
410 u8 perm;
411 struct tomoyo_name_union name;
412 struct tomoyo_number_union mode;
413 struct tomoyo_number_union major;
414 struct tomoyo_number_union minor;
418 * tomoyo_path2_acl is a structure which is used for holding an
419 * entry with two pathnames operation (i.e. link(), rename() and pivot_root()).
420 * It has following fields.
422 * (1) "head" which is a "struct tomoyo_acl_info".
423 * (2) "perm" which is a bitmask of permitted operations.
424 * (3) "name1" is the source/old pathname.
425 * (4) "name2" is the destination/new pathname.
427 * Directives held by this structure are "allow_rename", "allow_link" and
428 * "allow_pivot_root".
430 struct tomoyo_path2_acl {
431 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
432 u8 perm;
433 struct tomoyo_name_union name1;
434 struct tomoyo_name_union name2;
438 * tomoyo_io_buffer is a structure which is used for reading and modifying
439 * configuration via /sys/kernel/security/tomoyo/ interface.
440 * It has many fields. ->read_var1 , ->read_var2 , ->write_var1 are used as
441 * cursors.
443 * Since the content of /sys/kernel/security/tomoyo/domain_policy is a list of
444 * "struct tomoyo_domain_info" entries and each "struct tomoyo_domain_info"
445 * entry has a list of "struct tomoyo_acl_info", we need two cursors when
446 * reading (one is for traversing tomoyo_domain_list and the other is for
447 * traversing "struct tomoyo_acl_info"->acl_info_list ).
449 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
450 * "select ", TOMOYO seeks the cursor ->read_var1 and ->write_var1 to the
451 * domain with the domainname specified by the rest of that line (NULL is set
452 * if seek failed).
453 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
454 * "delete ", TOMOYO deletes an entry or a domain specified by the rest of that
455 * line (->write_var1 is set to NULL if a domain was deleted).
456 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
457 * neither "select " nor "delete ", an entry or a domain specified by that line
458 * is appended.
460 struct tomoyo_io_buffer {
461 int (*read) (struct tomoyo_io_buffer *);
462 int (*write) (struct tomoyo_io_buffer *);
463 /* Exclusive lock for this structure. */
464 struct mutex io_sem;
465 /* Index returned by tomoyo_read_lock(). */
466 int reader_idx;
467 /* The position currently reading from. */
468 struct list_head *read_var1;
469 /* Extra variables for reading. */
470 struct list_head *read_var2;
471 /* The position currently writing to. */
472 struct tomoyo_domain_info *write_var1;
473 /* The step for reading. */
474 int read_step;
475 /* Buffer for reading. */
476 char *read_buf;
477 /* EOF flag for reading. */
478 bool read_eof;
479 /* Read domain ACL of specified PID? */
480 bool read_single_domain;
481 /* Extra variable for reading. */
482 u8 read_bit;
483 /* Bytes available for reading. */
484 int read_avail;
485 /* Size of read buffer. */
486 int readbuf_size;
487 /* Buffer for writing. */
488 char *write_buf;
489 /* Bytes available for writing. */
490 int write_avail;
491 /* Size of write buffer. */
492 int writebuf_size;
496 * tomoyo_globally_readable_file_entry is a structure which is used for holding
497 * "allow_read" entries.
498 * It has following fields.
500 * (1) "list" which is linked to tomoyo_globally_readable_list .
501 * (2) "filename" is a pathname which is allowed to open(O_RDONLY).
502 * (3) "is_deleted" is a bool which is true if marked as deleted, false
503 * otherwise.
505 struct tomoyo_globally_readable_file_entry {
506 struct list_head list;
507 const struct tomoyo_path_info *filename;
508 bool is_deleted;
512 * tomoyo_pattern_entry is a structure which is used for holding
513 * "tomoyo_pattern_list" entries.
514 * It has following fields.
516 * (1) "list" which is linked to tomoyo_pattern_list .
517 * (2) "pattern" is a pathname pattern which is used for converting pathnames
518 * to pathname patterns during learning mode.
519 * (3) "is_deleted" is a bool which is true if marked as deleted, false
520 * otherwise.
522 struct tomoyo_pattern_entry {
523 struct list_head list;
524 const struct tomoyo_path_info *pattern;
525 bool is_deleted;
529 * tomoyo_no_rewrite_entry is a structure which is used for holding
530 * "deny_rewrite" entries.
531 * It has following fields.
533 * (1) "list" which is linked to tomoyo_no_rewrite_list .
534 * (2) "pattern" is a pathname which is by default not permitted to modify
535 * already existing content.
536 * (3) "is_deleted" is a bool which is true if marked as deleted, false
537 * otherwise.
539 struct tomoyo_no_rewrite_entry {
540 struct list_head list;
541 const struct tomoyo_path_info *pattern;
542 bool is_deleted;
546 * tomoyo_domain_initializer_entry is a structure which is used for holding
547 * "initialize_domain" and "no_initialize_domain" entries.
548 * It has following fields.
550 * (1) "list" which is linked to tomoyo_domain_initializer_list .
551 * (2) "domainname" which is "a domainname" or "the last component of a
552 * domainname". This field is NULL if "from" clause is not specified.
553 * (3) "program" which is a program's pathname.
554 * (4) "is_deleted" is a bool which is true if marked as deleted, false
555 * otherwise.
556 * (5) "is_not" is a bool which is true if "no_initialize_domain", false
557 * otherwise.
558 * (6) "is_last_name" is a bool which is true if "domainname" is "the last
559 * component of a domainname", false otherwise.
561 struct tomoyo_domain_initializer_entry {
562 struct list_head list;
563 const struct tomoyo_path_info *domainname; /* This may be NULL */
564 const struct tomoyo_path_info *program;
565 bool is_deleted;
566 bool is_not; /* True if this entry is "no_initialize_domain". */
567 /* True if the domainname is tomoyo_get_last_name(). */
568 bool is_last_name;
572 * tomoyo_domain_keeper_entry is a structure which is used for holding
573 * "keep_domain" and "no_keep_domain" entries.
574 * It has following fields.
576 * (1) "list" which is linked to tomoyo_domain_keeper_list .
577 * (2) "domainname" which is "a domainname" or "the last component of a
578 * domainname".
579 * (3) "program" which is a program's pathname.
580 * This field is NULL if "from" clause is not specified.
581 * (4) "is_deleted" is a bool which is true if marked as deleted, false
582 * otherwise.
583 * (5) "is_not" is a bool which is true if "no_initialize_domain", false
584 * otherwise.
585 * (6) "is_last_name" is a bool which is true if "domainname" is "the last
586 * component of a domainname", false otherwise.
588 struct tomoyo_domain_keeper_entry {
589 struct list_head list;
590 const struct tomoyo_path_info *domainname;
591 const struct tomoyo_path_info *program; /* This may be NULL */
592 bool is_deleted;
593 bool is_not; /* True if this entry is "no_keep_domain". */
594 /* True if the domainname is tomoyo_get_last_name(). */
595 bool is_last_name;
599 * tomoyo_alias_entry is a structure which is used for holding "alias" entries.
600 * It has following fields.
602 * (1) "list" which is linked to tomoyo_alias_list .
603 * (2) "original_name" which is a dereferenced pathname.
604 * (3) "aliased_name" which is a symlink's pathname.
605 * (4) "is_deleted" is a bool which is true if marked as deleted, false
606 * otherwise.
608 struct tomoyo_alias_entry {
609 struct list_head list;
610 const struct tomoyo_path_info *original_name;
611 const struct tomoyo_path_info *aliased_name;
612 bool is_deleted;
616 * tomoyo_policy_manager_entry is a structure which is used for holding list of
617 * domainnames or programs which are permitted to modify configuration via
618 * /sys/kernel/security/tomoyo/ interface.
619 * It has following fields.
621 * (1) "list" which is linked to tomoyo_policy_manager_list .
622 * (2) "manager" is a domainname or a program's pathname.
623 * (3) "is_domain" is a bool which is true if "manager" is a domainname, false
624 * otherwise.
625 * (4) "is_deleted" is a bool which is true if marked as deleted, false
626 * otherwise.
628 struct tomoyo_policy_manager_entry {
629 struct list_head list;
630 /* A path to program or a domainname. */
631 const struct tomoyo_path_info *manager;
632 bool is_domain; /* True if manager is a domainname. */
633 bool is_deleted; /* True if this entry is deleted. */
636 /********** Function prototypes. **********/
638 /* Check whether the given name matches the given name_union. */
639 bool tomoyo_compare_name_union(const struct tomoyo_path_info *name,
640 const struct tomoyo_name_union *ptr);
641 /* Check whether the domain has too many ACL entries to hold. */
642 bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
643 /* Transactional sprintf() for policy dump. */
644 bool tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...)
645 __attribute__ ((format(printf, 2, 3)));
646 /* Check whether the domainname is correct. */
647 bool tomoyo_is_correct_domain(const unsigned char *domainname);
648 /* Check whether the token is correct. */
649 bool tomoyo_is_correct_path(const char *filename, const s8 start_type,
650 const s8 pattern_type, const s8 end_type);
651 /* Check whether the token can be a domainname. */
652 bool tomoyo_is_domain_def(const unsigned char *buffer);
653 bool tomoyo_parse_name_union(const char *filename,
654 struct tomoyo_name_union *ptr);
655 /* Check whether the given filename matches the given path_group. */
656 bool tomoyo_path_matches_group(const struct tomoyo_path_info *pathname,
657 const struct tomoyo_path_group *group,
658 const bool may_use_pattern);
659 /* Check whether the given value matches the given number_group. */
660 bool tomoyo_number_matches_group(const unsigned long min,
661 const unsigned long max,
662 const struct tomoyo_number_group *group);
663 /* Check whether the given filename matches the given pattern. */
664 bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
665 const struct tomoyo_path_info *pattern);
667 bool tomoyo_print_number_union(struct tomoyo_io_buffer *head,
668 const struct tomoyo_number_union *ptr);
669 bool tomoyo_parse_number_union(char *data, struct tomoyo_number_union *num);
671 /* Read "alias" entry in exception policy. */
672 bool tomoyo_read_alias_policy(struct tomoyo_io_buffer *head);
674 * Read "initialize_domain" and "no_initialize_domain" entry
675 * in exception policy.
677 bool tomoyo_read_domain_initializer_policy(struct tomoyo_io_buffer *head);
678 /* Read "keep_domain" and "no_keep_domain" entry in exception policy. */
679 bool tomoyo_read_domain_keeper_policy(struct tomoyo_io_buffer *head);
680 /* Read "file_pattern" entry in exception policy. */
681 bool tomoyo_read_file_pattern(struct tomoyo_io_buffer *head);
682 /* Read "path_group" entry in exception policy. */
683 bool tomoyo_read_path_group_policy(struct tomoyo_io_buffer *head);
684 /* Read "number_group" entry in exception policy. */
685 bool tomoyo_read_number_group_policy(struct tomoyo_io_buffer *head);
686 /* Read "allow_read" entry in exception policy. */
687 bool tomoyo_read_globally_readable_policy(struct tomoyo_io_buffer *head);
688 /* Read "deny_rewrite" entry in exception policy. */
689 bool tomoyo_read_no_rewrite_policy(struct tomoyo_io_buffer *head);
690 /* Tokenize a line. */
691 bool tomoyo_tokenize(char *buffer, char *w[], size_t size);
692 /* Write domain policy violation warning message to console? */
693 bool tomoyo_verbose_mode(const struct tomoyo_domain_info *domain);
694 /* Convert double path operation to operation name. */
695 const char *tomoyo_path22keyword(const u8 operation);
696 const char *tomoyo_path_number2keyword(const u8 operation);
697 const char *tomoyo_path_number32keyword(const u8 operation);
698 /* Get the last component of the given domainname. */
699 const char *tomoyo_get_last_name(const struct tomoyo_domain_info *domain);
700 /* Convert single path operation to operation name. */
701 const char *tomoyo_path2keyword(const u8 operation);
702 /* Create "alias" entry in exception policy. */
703 int tomoyo_write_alias_policy(char *data, const bool is_delete);
705 * Create "initialize_domain" and "no_initialize_domain" entry
706 * in exception policy.
708 int tomoyo_write_domain_initializer_policy(char *data, const bool is_not,
709 const bool is_delete);
710 /* Create "keep_domain" and "no_keep_domain" entry in exception policy. */
711 int tomoyo_write_domain_keeper_policy(char *data, const bool is_not,
712 const bool is_delete);
714 * Create "allow_read/write", "allow_execute", "allow_read", "allow_write",
715 * "allow_create", "allow_unlink", "allow_mkdir", "allow_rmdir",
716 * "allow_mkfifo", "allow_mksock", "allow_mkblock", "allow_mkchar",
717 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_rename" and
718 * "allow_link" entry in domain policy.
720 int tomoyo_write_file_policy(char *data, struct tomoyo_domain_info *domain,
721 const bool is_delete);
722 /* Create "allow_read" entry in exception policy. */
723 int tomoyo_write_globally_readable_policy(char *data, const bool is_delete);
724 /* Create "deny_rewrite" entry in exception policy. */
725 int tomoyo_write_no_rewrite_policy(char *data, const bool is_delete);
726 /* Create "file_pattern" entry in exception policy. */
727 int tomoyo_write_pattern_policy(char *data, const bool is_delete);
728 /* Create "path_group" entry in exception policy. */
729 int tomoyo_write_path_group_policy(char *data, const bool is_delete);
730 /* Create "number_group" entry in exception policy. */
731 int tomoyo_write_number_group_policy(char *data, const bool is_delete);
732 /* Find a domain by the given name. */
733 struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
734 /* Find or create a domain by the given name. */
735 struct tomoyo_domain_info *tomoyo_find_or_assign_new_domain(const char *
736 domainname,
737 const u8 profile);
739 /* Allocate memory for "struct tomoyo_path_group". */
740 struct tomoyo_path_group *tomoyo_get_path_group(const char *group_name);
741 struct tomoyo_number_group *tomoyo_get_number_group(const char *group_name);
743 /* Check mode for specified functionality. */
744 unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
745 const u8 index);
746 /* Fill in "struct tomoyo_path_info" members. */
747 void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
748 /* Run policy loader when /sbin/init starts. */
749 void tomoyo_load_policy(const char *filename);
751 void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
753 /* Convert binary string to ascii string. */
754 int tomoyo_encode(char *buffer, int buflen, const char *str);
756 /* Returns realpath(3) of the given pathname but ignores chroot'ed root. */
757 int tomoyo_realpath_from_path2(struct path *path, char *newname,
758 int newname_len);
761 * Returns realpath(3) of the given pathname but ignores chroot'ed root.
762 * These functions use kzalloc(), so the caller must call kfree()
763 * if these functions didn't return NULL.
765 char *tomoyo_realpath(const char *pathname);
767 * Same with tomoyo_realpath() except that it doesn't follow the final symlink.
769 char *tomoyo_realpath_nofollow(const char *pathname);
770 /* Same with tomoyo_realpath() except that the pathname is already solved. */
771 char *tomoyo_realpath_from_path(struct path *path);
773 /* Check memory quota. */
774 bool tomoyo_memory_ok(void *ptr);
775 void *tomoyo_commit_ok(void *data, const unsigned int size);
778 * Keep the given name on the RAM.
779 * The RAM is shared, so NEVER try to modify or kfree() the returned name.
781 const struct tomoyo_path_info *tomoyo_get_name(const char *name);
783 /* Check for memory usage. */
784 int tomoyo_read_memory_counter(struct tomoyo_io_buffer *head);
786 /* Set memory quota. */
787 int tomoyo_write_memory_quota(struct tomoyo_io_buffer *head);
789 /* Initialize realpath related code. */
790 void __init tomoyo_realpath_init(void);
791 int tomoyo_check_exec_perm(struct tomoyo_domain_info *domain,
792 const struct tomoyo_path_info *filename);
793 int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
794 struct path *path, const int flag);
795 int tomoyo_path_number_perm(const u8 operation, struct path *path,
796 unsigned long number);
797 int tomoyo_path_number3_perm(const u8 operation, struct path *path,
798 const unsigned int mode, unsigned int dev);
799 int tomoyo_path_perm(const u8 operation, struct path *path);
800 int tomoyo_path2_perm(const u8 operation, struct path *path1,
801 struct path *path2);
802 int tomoyo_find_next_domain(struct linux_binprm *bprm);
804 void tomoyo_print_ulong(char *buffer, const int buffer_len,
805 const unsigned long value, const u8 type);
807 /* Drop refcount on tomoyo_name_union. */
808 void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
810 /* Run garbage collector. */
811 void tomoyo_run_gc(void);
813 void tomoyo_memory_free(void *ptr);
815 /********** External variable definitions. **********/
817 /* Lock for GC. */
818 extern struct srcu_struct tomoyo_ss;
820 /* The list for "struct tomoyo_domain_info". */
821 extern struct list_head tomoyo_domain_list;
823 extern struct list_head tomoyo_path_group_list;
824 extern struct list_head tomoyo_number_group_list;
825 extern struct list_head tomoyo_domain_initializer_list;
826 extern struct list_head tomoyo_domain_keeper_list;
827 extern struct list_head tomoyo_alias_list;
828 extern struct list_head tomoyo_globally_readable_list;
829 extern struct list_head tomoyo_pattern_list;
830 extern struct list_head tomoyo_no_rewrite_list;
831 extern struct list_head tomoyo_policy_manager_list;
832 extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
834 /* Lock for protecting policy. */
835 extern struct mutex tomoyo_policy_lock;
837 /* Has /sbin/init started? */
838 extern bool tomoyo_policy_loaded;
840 /* The kernel's domain. */
841 extern struct tomoyo_domain_info tomoyo_kernel_domain;
843 /********** Inlined functions. **********/
845 static inline int tomoyo_read_lock(void)
847 return srcu_read_lock(&tomoyo_ss);
850 static inline void tomoyo_read_unlock(int idx)
852 srcu_read_unlock(&tomoyo_ss, idx);
855 /* strcmp() for "struct tomoyo_path_info" structure. */
856 static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
857 const struct tomoyo_path_info *b)
859 return a->hash != b->hash || strcmp(a->name, b->name);
863 * tomoyo_is_valid - Check whether the character is a valid char.
865 * @c: The character to check.
867 * Returns true if @c is a valid character, false otherwise.
869 static inline bool tomoyo_is_valid(const unsigned char c)
871 return c > ' ' && c < 127;
875 * tomoyo_is_invalid - Check whether the character is an invalid char.
877 * @c: The character to check.
879 * Returns true if @c is an invalid character, false otherwise.
881 static inline bool tomoyo_is_invalid(const unsigned char c)
883 return c && (c <= ' ' || c >= 127);
886 static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
888 if (name) {
889 struct tomoyo_name_entry *ptr =
890 container_of(name, struct tomoyo_name_entry, entry);
891 atomic_dec(&ptr->users);
895 static inline void tomoyo_put_path_group(struct tomoyo_path_group *group)
897 if (group)
898 atomic_dec(&group->users);
901 static inline void tomoyo_put_number_group(struct tomoyo_number_group *group)
903 if (group)
904 atomic_dec(&group->users);
907 static inline struct tomoyo_domain_info *tomoyo_domain(void)
909 return current_cred()->security;
912 static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
913 *task)
915 return task_cred_xxx(task, security);
918 static inline bool tomoyo_is_same_acl_head(const struct tomoyo_acl_info *p1,
919 const struct tomoyo_acl_info *p2)
921 return p1->type == p2->type;
924 static inline bool tomoyo_is_same_name_union
925 (const struct tomoyo_name_union *p1, const struct tomoyo_name_union *p2)
927 return p1->filename == p2->filename && p1->group == p2->group &&
928 p1->is_group == p2->is_group;
931 static inline bool tomoyo_is_same_number_union
932 (const struct tomoyo_number_union *p1, const struct tomoyo_number_union *p2)
934 return p1->values[0] == p2->values[0] && p1->values[1] == p2->values[1]
935 && p1->group == p2->group && p1->min_type == p2->min_type &&
936 p1->max_type == p2->max_type && p1->is_group == p2->is_group;
939 static inline bool tomoyo_is_same_path_acl(const struct tomoyo_path_acl *p1,
940 const struct tomoyo_path_acl *p2)
942 return tomoyo_is_same_acl_head(&p1->head, &p2->head) &&
943 tomoyo_is_same_name_union(&p1->name, &p2->name);
946 static inline bool tomoyo_is_same_path_number3_acl
947 (const struct tomoyo_path_number3_acl *p1,
948 const struct tomoyo_path_number3_acl *p2)
950 return tomoyo_is_same_acl_head(&p1->head, &p2->head)
951 && tomoyo_is_same_name_union(&p1->name, &p2->name)
952 && tomoyo_is_same_number_union(&p1->mode, &p2->mode)
953 && tomoyo_is_same_number_union(&p1->major, &p2->major)
954 && tomoyo_is_same_number_union(&p1->minor, &p2->minor);
958 static inline bool tomoyo_is_same_path2_acl(const struct tomoyo_path2_acl *p1,
959 const struct tomoyo_path2_acl *p2)
961 return tomoyo_is_same_acl_head(&p1->head, &p2->head) &&
962 tomoyo_is_same_name_union(&p1->name1, &p2->name1) &&
963 tomoyo_is_same_name_union(&p1->name2, &p2->name2);
966 static inline bool tomoyo_is_same_path_number_acl
967 (const struct tomoyo_path_number_acl *p1,
968 const struct tomoyo_path_number_acl *p2)
970 return tomoyo_is_same_acl_head(&p1->head, &p2->head)
971 && tomoyo_is_same_name_union(&p1->name, &p2->name)
972 && tomoyo_is_same_number_union(&p1->number, &p2->number);
975 static inline bool tomoyo_is_same_domain_initializer_entry
976 (const struct tomoyo_domain_initializer_entry *p1,
977 const struct tomoyo_domain_initializer_entry *p2)
979 return p1->is_not == p2->is_not && p1->is_last_name == p2->is_last_name
980 && p1->domainname == p2->domainname
981 && p1->program == p2->program;
984 static inline bool tomoyo_is_same_domain_keeper_entry
985 (const struct tomoyo_domain_keeper_entry *p1,
986 const struct tomoyo_domain_keeper_entry *p2)
988 return p1->is_not == p2->is_not && p1->is_last_name == p2->is_last_name
989 && p1->domainname == p2->domainname
990 && p1->program == p2->program;
993 static inline bool tomoyo_is_same_alias_entry
994 (const struct tomoyo_alias_entry *p1, const struct tomoyo_alias_entry *p2)
996 return p1->original_name == p2->original_name &&
997 p1->aliased_name == p2->aliased_name;
1001 * list_for_each_cookie - iterate over a list with cookie.
1002 * @pos: the &struct list_head to use as a loop cursor.
1003 * @cookie: the &struct list_head to use as a cookie.
1004 * @head: the head for your list.
1006 * Same with list_for_each_rcu() except that this primitive uses @cookie
1007 * so that we can continue iteration.
1008 * @cookie must be NULL when iteration starts, and @cookie will become
1009 * NULL when iteration finishes.
1011 #define list_for_each_cookie(pos, cookie, head) \
1012 for (({ if (!cookie) \
1013 cookie = head; }), \
1014 pos = rcu_dereference((cookie)->next); \
1015 prefetch(pos->next), pos != (head) || ((cookie) = NULL); \
1016 (cookie) = pos, pos = rcu_dereference(pos->next))
1018 #endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */