1
2
3
4
5
6
7
8
9#ifndef _SECURITY_TOMOYO_COMMON_H
10#define _SECURITY_TOMOYO_COMMON_H
11
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#include <linux/poll.h>
24#include <linux/binfmts.h>
25#include <linux/highmem.h>
26
27
28
29
30
31
32
33
34#define TOMOYO_HASH_BITS 8
35#define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
36
37#define TOMOYO_EXEC_TMPSIZE 4096
38
39
40#define TOMOYO_MAX_PROFILES 256
41
42
43#define TOMOYO_MAX_ACL_GROUPS 256
44
45
46enum tomoyo_conditions_index {
47 TOMOYO_TASK_UID,
48 TOMOYO_TASK_EUID,
49 TOMOYO_TASK_SUID,
50 TOMOYO_TASK_FSUID,
51 TOMOYO_TASK_GID,
52 TOMOYO_TASK_EGID,
53 TOMOYO_TASK_SGID,
54 TOMOYO_TASK_FSGID,
55 TOMOYO_TASK_PID,
56 TOMOYO_TASK_PPID,
57 TOMOYO_EXEC_ARGC,
58 TOMOYO_EXEC_ENVC,
59 TOMOYO_TYPE_IS_SOCKET,
60 TOMOYO_TYPE_IS_SYMLINK,
61 TOMOYO_TYPE_IS_FILE,
62 TOMOYO_TYPE_IS_BLOCK_DEV,
63 TOMOYO_TYPE_IS_DIRECTORY,
64 TOMOYO_TYPE_IS_CHAR_DEV,
65 TOMOYO_TYPE_IS_FIFO,
66 TOMOYO_MODE_SETUID,
67 TOMOYO_MODE_SETGID,
68 TOMOYO_MODE_STICKY,
69 TOMOYO_MODE_OWNER_READ,
70 TOMOYO_MODE_OWNER_WRITE,
71 TOMOYO_MODE_OWNER_EXECUTE,
72 TOMOYO_MODE_GROUP_READ,
73 TOMOYO_MODE_GROUP_WRITE,
74 TOMOYO_MODE_GROUP_EXECUTE,
75 TOMOYO_MODE_OTHERS_READ,
76 TOMOYO_MODE_OTHERS_WRITE,
77 TOMOYO_MODE_OTHERS_EXECUTE,
78 TOMOYO_EXEC_REALPATH,
79 TOMOYO_SYMLINK_TARGET,
80 TOMOYO_PATH1_UID,
81 TOMOYO_PATH1_GID,
82 TOMOYO_PATH1_INO,
83 TOMOYO_PATH1_MAJOR,
84 TOMOYO_PATH1_MINOR,
85 TOMOYO_PATH1_PERM,
86 TOMOYO_PATH1_TYPE,
87 TOMOYO_PATH1_DEV_MAJOR,
88 TOMOYO_PATH1_DEV_MINOR,
89 TOMOYO_PATH2_UID,
90 TOMOYO_PATH2_GID,
91 TOMOYO_PATH2_INO,
92 TOMOYO_PATH2_MAJOR,
93 TOMOYO_PATH2_MINOR,
94 TOMOYO_PATH2_PERM,
95 TOMOYO_PATH2_TYPE,
96 TOMOYO_PATH2_DEV_MAJOR,
97 TOMOYO_PATH2_DEV_MINOR,
98 TOMOYO_PATH1_PARENT_UID,
99 TOMOYO_PATH1_PARENT_GID,
100 TOMOYO_PATH1_PARENT_INO,
101 TOMOYO_PATH1_PARENT_PERM,
102 TOMOYO_PATH2_PARENT_UID,
103 TOMOYO_PATH2_PARENT_GID,
104 TOMOYO_PATH2_PARENT_INO,
105 TOMOYO_PATH2_PARENT_PERM,
106 TOMOYO_MAX_CONDITION_KEYWORD,
107 TOMOYO_NUMBER_UNION,
108 TOMOYO_NAME_UNION,
109 TOMOYO_ARGV_ENTRY,
110 TOMOYO_ENVP_ENTRY,
111};
112
113
114
115enum tomoyo_path_stat_index {
116
117 TOMOYO_PATH1,
118 TOMOYO_PATH1_PARENT,
119 TOMOYO_PATH2,
120 TOMOYO_PATH2_PARENT,
121 TOMOYO_MAX_PATH_STAT
122};
123
124
125enum tomoyo_mode_index {
126 TOMOYO_CONFIG_DISABLED,
127 TOMOYO_CONFIG_LEARNING,
128 TOMOYO_CONFIG_PERMISSIVE,
129 TOMOYO_CONFIG_ENFORCING,
130 TOMOYO_CONFIG_MAX_MODE,
131 TOMOYO_CONFIG_WANT_REJECT_LOG = 64,
132 TOMOYO_CONFIG_WANT_GRANT_LOG = 128,
133 TOMOYO_CONFIG_USE_DEFAULT = 255,
134};
135
136
137enum tomoyo_policy_id {
138 TOMOYO_ID_GROUP,
139 TOMOYO_ID_PATH_GROUP,
140 TOMOYO_ID_NUMBER_GROUP,
141 TOMOYO_ID_TRANSITION_CONTROL,
142 TOMOYO_ID_AGGREGATOR,
143 TOMOYO_ID_MANAGER,
144 TOMOYO_ID_CONDITION,
145 TOMOYO_ID_NAME,
146 TOMOYO_ID_ACL,
147 TOMOYO_ID_DOMAIN,
148 TOMOYO_MAX_POLICY
149};
150
151
152enum tomoyo_domain_info_flags_index {
153
154 TOMOYO_DIF_QUOTA_WARNED,
155
156
157
158
159
160
161 TOMOYO_DIF_TRANSITION_FAILED,
162 TOMOYO_MAX_DOMAIN_INFO_FLAGS
163};
164
165
166enum tomoyo_group_id {
167 TOMOYO_PATH_GROUP,
168 TOMOYO_NUMBER_GROUP,
169 TOMOYO_MAX_GROUP
170};
171
172
173enum tomoyo_value_type {
174 TOMOYO_VALUE_TYPE_INVALID,
175 TOMOYO_VALUE_TYPE_DECIMAL,
176 TOMOYO_VALUE_TYPE_OCTAL,
177 TOMOYO_VALUE_TYPE_HEXADECIMAL,
178};
179
180
181enum tomoyo_transition_type {
182
183 TOMOYO_TRANSITION_CONTROL_NO_RESET,
184 TOMOYO_TRANSITION_CONTROL_RESET,
185 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
186 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
187 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
188 TOMOYO_TRANSITION_CONTROL_KEEP,
189 TOMOYO_MAX_TRANSITION_TYPE
190};
191
192
193enum tomoyo_acl_entry_type_index {
194 TOMOYO_TYPE_PATH_ACL,
195 TOMOYO_TYPE_PATH2_ACL,
196 TOMOYO_TYPE_PATH_NUMBER_ACL,
197 TOMOYO_TYPE_MKDEV_ACL,
198 TOMOYO_TYPE_MOUNT_ACL,
199};
200
201
202enum tomoyo_path_acl_index {
203 TOMOYO_TYPE_EXECUTE,
204 TOMOYO_TYPE_READ,
205 TOMOYO_TYPE_WRITE,
206 TOMOYO_TYPE_APPEND,
207 TOMOYO_TYPE_UNLINK,
208 TOMOYO_TYPE_GETATTR,
209 TOMOYO_TYPE_RMDIR,
210 TOMOYO_TYPE_TRUNCATE,
211 TOMOYO_TYPE_SYMLINK,
212 TOMOYO_TYPE_CHROOT,
213 TOMOYO_TYPE_UMOUNT,
214 TOMOYO_MAX_PATH_OPERATION
215};
216
217
218enum tomoyo_memory_stat_type {
219 TOMOYO_MEMORY_POLICY,
220 TOMOYO_MEMORY_AUDIT,
221 TOMOYO_MEMORY_QUERY,
222 TOMOYO_MAX_MEMORY_STAT
223};
224
225enum tomoyo_mkdev_acl_index {
226 TOMOYO_TYPE_MKBLOCK,
227 TOMOYO_TYPE_MKCHAR,
228 TOMOYO_MAX_MKDEV_OPERATION
229};
230
231
232enum tomoyo_path2_acl_index {
233 TOMOYO_TYPE_LINK,
234 TOMOYO_TYPE_RENAME,
235 TOMOYO_TYPE_PIVOT_ROOT,
236 TOMOYO_MAX_PATH2_OPERATION
237};
238
239
240enum tomoyo_path_number_acl_index {
241 TOMOYO_TYPE_CREATE,
242 TOMOYO_TYPE_MKDIR,
243 TOMOYO_TYPE_MKFIFO,
244 TOMOYO_TYPE_MKSOCK,
245 TOMOYO_TYPE_IOCTL,
246 TOMOYO_TYPE_CHMOD,
247 TOMOYO_TYPE_CHOWN,
248 TOMOYO_TYPE_CHGRP,
249 TOMOYO_MAX_PATH_NUMBER_OPERATION
250};
251
252
253enum tomoyo_securityfs_interface_index {
254 TOMOYO_DOMAINPOLICY,
255 TOMOYO_EXCEPTIONPOLICY,
256 TOMOYO_PROCESS_STATUS,
257 TOMOYO_STAT,
258 TOMOYO_SELFDOMAIN,
259 TOMOYO_AUDIT,
260 TOMOYO_VERSION,
261 TOMOYO_PROFILE,
262 TOMOYO_QUERY,
263 TOMOYO_MANAGER
264};
265
266
267enum tomoyo_special_mount {
268 TOMOYO_MOUNT_BIND,
269 TOMOYO_MOUNT_MOVE,
270 TOMOYO_MOUNT_REMOUNT,
271 TOMOYO_MOUNT_MAKE_UNBINDABLE,
272 TOMOYO_MOUNT_MAKE_PRIVATE,
273 TOMOYO_MOUNT_MAKE_SLAVE,
274 TOMOYO_MOUNT_MAKE_SHARED,
275 TOMOYO_MAX_SPECIAL_MOUNT
276};
277
278
279enum tomoyo_mac_index {
280 TOMOYO_MAC_FILE_EXECUTE,
281 TOMOYO_MAC_FILE_OPEN,
282 TOMOYO_MAC_FILE_CREATE,
283 TOMOYO_MAC_FILE_UNLINK,
284 TOMOYO_MAC_FILE_GETATTR,
285 TOMOYO_MAC_FILE_MKDIR,
286 TOMOYO_MAC_FILE_RMDIR,
287 TOMOYO_MAC_FILE_MKFIFO,
288 TOMOYO_MAC_FILE_MKSOCK,
289 TOMOYO_MAC_FILE_TRUNCATE,
290 TOMOYO_MAC_FILE_SYMLINK,
291 TOMOYO_MAC_FILE_MKBLOCK,
292 TOMOYO_MAC_FILE_MKCHAR,
293 TOMOYO_MAC_FILE_LINK,
294 TOMOYO_MAC_FILE_RENAME,
295 TOMOYO_MAC_FILE_CHMOD,
296 TOMOYO_MAC_FILE_CHOWN,
297 TOMOYO_MAC_FILE_CHGRP,
298 TOMOYO_MAC_FILE_IOCTL,
299 TOMOYO_MAC_FILE_CHROOT,
300 TOMOYO_MAC_FILE_MOUNT,
301 TOMOYO_MAC_FILE_UMOUNT,
302 TOMOYO_MAC_FILE_PIVOT_ROOT,
303 TOMOYO_MAX_MAC_INDEX
304};
305
306
307enum tomoyo_mac_category_index {
308 TOMOYO_MAC_CATEGORY_FILE,
309 TOMOYO_MAX_MAC_CATEGORY_INDEX
310};
311
312
313
314
315
316
317
318
319#define TOMOYO_RETRY_REQUEST 1
320
321
322enum tomoyo_policy_stat_type {
323
324 TOMOYO_STAT_POLICY_UPDATES,
325 TOMOYO_STAT_POLICY_LEARNING,
326 TOMOYO_STAT_POLICY_PERMISSIVE,
327 TOMOYO_STAT_POLICY_ENFORCING,
328 TOMOYO_MAX_POLICY_STAT
329};
330
331
332enum tomoyo_pref_index {
333 TOMOYO_PREF_MAX_AUDIT_LOG,
334 TOMOYO_PREF_MAX_LEARNING_ENTRY,
335 TOMOYO_MAX_PREF
336};
337
338
339
340
341struct tomoyo_acl_head {
342 struct list_head list;
343 bool is_deleted;
344} __packed;
345
346
347struct tomoyo_shared_acl_head {
348 struct list_head list;
349 atomic_t users;
350} __packed;
351
352struct tomoyo_policy_namespace;
353
354
355struct tomoyo_request_info {
356
357
358
359
360 struct tomoyo_obj_info *obj;
361
362
363
364
365 struct tomoyo_execve *ee;
366 struct tomoyo_domain_info *domain;
367
368 union {
369 struct {
370 const struct tomoyo_path_info *filename;
371
372 const struct tomoyo_path_info *matched_path;
373
374 u8 operation;
375 } path;
376 struct {
377 const struct tomoyo_path_info *filename1;
378 const struct tomoyo_path_info *filename2;
379
380 u8 operation;
381 } path2;
382 struct {
383 const struct tomoyo_path_info *filename;
384 unsigned int mode;
385 unsigned int major;
386 unsigned int minor;
387
388 u8 operation;
389 } mkdev;
390 struct {
391 const struct tomoyo_path_info *filename;
392 unsigned long number;
393
394
395
396
397 u8 operation;
398 } path_number;
399 struct {
400 const struct tomoyo_path_info *type;
401 const struct tomoyo_path_info *dir;
402 const struct tomoyo_path_info *dev;
403 unsigned long flags;
404 int need_dev;
405 } mount;
406 } param;
407 u8 param_type;
408 bool granted;
409 u8 retry;
410 u8 profile;
411 u8 mode;
412 u8 type;
413};
414
415
416struct tomoyo_path_info {
417 const char *name;
418 u32 hash;
419 u16 const_len;
420 bool is_dir;
421 bool is_patterned;
422};
423
424
425struct tomoyo_name {
426 struct tomoyo_shared_acl_head head;
427 struct tomoyo_path_info entry;
428};
429
430
431struct tomoyo_name_union {
432
433 const struct tomoyo_path_info *filename;
434 struct tomoyo_group *group;
435};
436
437
438struct tomoyo_number_union {
439 unsigned long values[2];
440 struct tomoyo_group *group;
441
442 u8 value_type[2];
443};
444
445
446struct tomoyo_group {
447 struct tomoyo_shared_acl_head head;
448 const struct tomoyo_path_info *group_name;
449 struct list_head member_list;
450};
451
452
453struct tomoyo_path_group {
454 struct tomoyo_acl_head head;
455 const struct tomoyo_path_info *member_name;
456};
457
458
459struct tomoyo_number_group {
460 struct tomoyo_acl_head head;
461 struct tomoyo_number_union number;
462};
463
464
465struct tomoyo_mini_stat {
466 uid_t uid;
467 gid_t gid;
468 ino_t ino;
469 mode_t mode;
470 dev_t dev;
471 dev_t rdev;
472};
473
474
475struct tomoyo_page_dump {
476 struct page *page;
477 char *data;
478};
479
480
481struct tomoyo_obj_info {
482
483
484
485 bool validate_done;
486
487 bool stat_valid[TOMOYO_MAX_PATH_STAT];
488
489 struct path path1;
490
491 struct path path2;
492
493
494
495
496 struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
497
498
499
500
501 struct tomoyo_path_info *symlink_target;
502};
503
504
505struct tomoyo_argv {
506 unsigned long index;
507 const struct tomoyo_path_info *value;
508 bool is_not;
509};
510
511
512struct tomoyo_envp {
513 const struct tomoyo_path_info *name;
514 const struct tomoyo_path_info *value;
515 bool is_not;
516};
517
518
519struct tomoyo_execve {
520 struct tomoyo_request_info r;
521 struct tomoyo_obj_info obj;
522 struct linux_binprm *bprm;
523
524 struct tomoyo_page_dump dump;
525
526 char *tmp;
527};
528
529
530struct tomoyo_condition_element {
531
532
533
534
535
536 u8 left;
537
538
539
540
541
542
543 u8 right;
544
545 bool equals;
546};
547
548
549struct tomoyo_condition {
550 struct tomoyo_shared_acl_head head;
551 u32 size;
552 u16 condc;
553 u16 numbers_count;
554 u16 names_count;
555 u16 argc;
556 u16 envc;
557
558
559
560
561
562
563
564};
565
566
567struct tomoyo_acl_info {
568 struct list_head list;
569 struct tomoyo_condition *cond;
570 bool is_deleted;
571 u8 type;
572} __packed;
573
574
575struct tomoyo_domain_info {
576 struct list_head list;
577 struct list_head acl_info_list;
578
579 const struct tomoyo_path_info *domainname;
580
581 struct tomoyo_policy_namespace *ns;
582 u8 profile;
583 u8 group;
584 bool is_deleted;
585 bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
586 atomic_t users;
587};
588
589
590
591
592
593
594struct tomoyo_path_acl {
595 struct tomoyo_acl_info head;
596 u16 perm;
597 struct tomoyo_name_union name;
598};
599
600
601
602
603
604struct tomoyo_path_number_acl {
605 struct tomoyo_acl_info head;
606
607 u8 perm;
608 struct tomoyo_name_union name;
609 struct tomoyo_number_union number;
610};
611
612
613struct tomoyo_mkdev_acl {
614 struct tomoyo_acl_info head;
615 u8 perm;
616 struct tomoyo_name_union name;
617 struct tomoyo_number_union mode;
618 struct tomoyo_number_union major;
619 struct tomoyo_number_union minor;
620};
621
622
623
624
625struct tomoyo_path2_acl {
626 struct tomoyo_acl_info head;
627 u8 perm;
628 struct tomoyo_name_union name1;
629 struct tomoyo_name_union name2;
630};
631
632
633struct tomoyo_mount_acl {
634 struct tomoyo_acl_info head;
635 struct tomoyo_name_union dev_name;
636 struct tomoyo_name_union dir_name;
637 struct tomoyo_name_union fs_type;
638 struct tomoyo_number_union flags;
639};
640
641
642struct tomoyo_acl_param {
643 char *data;
644 struct list_head *list;
645 struct tomoyo_policy_namespace *ns;
646 bool is_delete;
647};
648
649#define TOMOYO_MAX_IO_READ_QUEUE 64
650
651
652
653
654
655struct tomoyo_io_buffer {
656 void (*read) (struct tomoyo_io_buffer *);
657 int (*write) (struct tomoyo_io_buffer *);
658 int (*poll) (struct file *file, poll_table *wait);
659
660 struct mutex io_sem;
661 char __user *read_user_buf;
662 size_t read_user_buf_avail;
663 struct {
664 struct list_head *ns;
665 struct list_head *domain;
666 struct list_head *group;
667 struct list_head *acl;
668 size_t avail;
669 unsigned int step;
670 unsigned int query_index;
671 u16 index;
672 u16 cond_index;
673 u8 acl_group_index;
674 u8 cond_step;
675 u8 bit;
676 u8 w_pos;
677 bool eof;
678 bool print_this_domain_only;
679 bool print_transition_related_only;
680 bool print_cond_part;
681 const char *w[TOMOYO_MAX_IO_READ_QUEUE];
682 } r;
683 struct {
684 struct tomoyo_policy_namespace *ns;
685
686 struct tomoyo_domain_info *domain;
687
688 size_t avail;
689 bool is_delete;
690 } w;
691
692 char *read_buf;
693
694 size_t readbuf_size;
695
696 char *write_buf;
697
698 size_t writebuf_size;
699
700 enum tomoyo_securityfs_interface_index type;
701
702 u8 users;
703
704 struct list_head list;
705};
706
707
708
709
710
711struct tomoyo_transition_control {
712 struct tomoyo_acl_head head;
713 u8 type;
714
715 bool is_last_name;
716 const struct tomoyo_path_info *domainname;
717 const struct tomoyo_path_info *program;
718};
719
720
721struct tomoyo_aggregator {
722 struct tomoyo_acl_head head;
723 const struct tomoyo_path_info *original_name;
724 const struct tomoyo_path_info *aggregated_name;
725};
726
727
728struct tomoyo_manager {
729 struct tomoyo_acl_head head;
730 bool is_domain;
731
732 const struct tomoyo_path_info *manager;
733};
734
735struct tomoyo_preference {
736 unsigned int learning_max_entry;
737 bool enforcing_verbose;
738 bool learning_verbose;
739 bool permissive_verbose;
740};
741
742
743struct tomoyo_profile {
744 const struct tomoyo_path_info *comment;
745 struct tomoyo_preference *learning;
746 struct tomoyo_preference *permissive;
747 struct tomoyo_preference *enforcing;
748 struct tomoyo_preference preference;
749 u8 default_config;
750 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
751 unsigned int pref[TOMOYO_MAX_PREF];
752};
753
754
755struct tomoyo_time {
756 u16 year;
757 u8 month;
758 u8 day;
759 u8 hour;
760 u8 min;
761 u8 sec;
762};
763
764
765struct tomoyo_policy_namespace {
766
767 struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
768
769 struct list_head group_list[TOMOYO_MAX_GROUP];
770
771 struct list_head policy_list[TOMOYO_MAX_POLICY];
772
773 struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
774
775 struct list_head namespace_list;
776
777 unsigned int profile_version;
778
779 const char *name;
780};
781
782
783
784bool tomoyo_compare_number_union(const unsigned long value,
785 const struct tomoyo_number_union *ptr);
786bool tomoyo_condition(struct tomoyo_request_info *r,
787 const struct tomoyo_condition *cond);
788bool tomoyo_correct_domain(const unsigned char *domainname);
789bool tomoyo_correct_path(const char *filename);
790bool tomoyo_correct_word(const char *string);
791bool tomoyo_domain_def(const unsigned char *buffer);
792bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
793bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
794 struct tomoyo_page_dump *dump);
795bool tomoyo_memory_ok(void *ptr);
796bool tomoyo_number_matches_group(const unsigned long min,
797 const unsigned long max,
798 const struct tomoyo_group *group);
799bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
800 struct tomoyo_name_union *ptr);
801bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
802 struct tomoyo_number_union *ptr);
803bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
804 const struct tomoyo_path_info *pattern);
805bool tomoyo_permstr(const char *string, const char *keyword);
806bool tomoyo_str_starts(char **src, const char *find);
807char *tomoyo_encode(const char *str);
808char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
809 va_list args);
810char *tomoyo_read_token(struct tomoyo_acl_param *param);
811char *tomoyo_realpath_from_path(struct path *path);
812char *tomoyo_realpath_nofollow(const char *pathname);
813const char *tomoyo_get_exe(void);
814const char *tomoyo_yesno(const unsigned int value);
815const struct tomoyo_path_info *tomoyo_compare_name_union
816(const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
817const struct tomoyo_path_info *tomoyo_get_name(const char *name);
818const struct tomoyo_path_info *tomoyo_path_matches_group
819(const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
820int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
821 struct path *path, const int flag);
822int tomoyo_close_control(struct tomoyo_io_buffer *head);
823int tomoyo_find_next_domain(struct linux_binprm *bprm);
824int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
825 const u8 index);
826int tomoyo_init_request_info(struct tomoyo_request_info *r,
827 struct tomoyo_domain_info *domain,
828 const u8 index);
829int tomoyo_mkdev_perm(const u8 operation, struct path *path,
830 const unsigned int mode, unsigned int dev);
831int tomoyo_mount_permission(char *dev_name, struct path *path,
832 const char *type, unsigned long flags,
833 void *data_page);
834int tomoyo_open_control(const u8 type, struct file *file);
835int tomoyo_path2_perm(const u8 operation, struct path *path1,
836 struct path *path2);
837int tomoyo_path_number_perm(const u8 operation, struct path *path,
838 unsigned long number);
839int tomoyo_path_perm(const u8 operation, struct path *path,
840 const char *target);
841int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
842 const struct tomoyo_path_info *filename);
843int tomoyo_poll_control(struct file *file, poll_table *wait);
844int tomoyo_poll_log(struct file *file, poll_table *wait);
845int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
846 __printf(2, 3);
847int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
848 struct tomoyo_acl_param *param,
849 bool (*check_duplicate)
850 (const struct tomoyo_acl_info *,
851 const struct tomoyo_acl_info *),
852 bool (*merge_duplicate)
853 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
854 const bool));
855int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
856 struct tomoyo_acl_param *param,
857 bool (*check_duplicate)
858 (const struct tomoyo_acl_head *,
859 const struct tomoyo_acl_head *));
860int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
861int tomoyo_write_file(struct tomoyo_acl_param *param);
862int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
863int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
864 const u8 type);
865ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
866 const int buffer_len);
867ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
868 const char __user *buffer, const int buffer_len);
869struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
870struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
871 const bool transit);
872struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
873struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
874 const u8 idx);
875struct tomoyo_policy_namespace *tomoyo_assign_namespace
876(const char *domainname);
877struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
878 const u8 profile);
879unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
880 const u8 index);
881u8 tomoyo_parse_ulong(unsigned long *result, char **str);
882void *tomoyo_commit_ok(void *data, const unsigned int size);
883void __init tomoyo_load_builtin_policy(void);
884void __init tomoyo_mm_init(void);
885void tomoyo_check_acl(struct tomoyo_request_info *r,
886 bool (*check_entry) (struct tomoyo_request_info *,
887 const struct tomoyo_acl_info *));
888void tomoyo_check_profile(void);
889void tomoyo_convert_time(time_t time, struct tomoyo_time *stamp);
890void tomoyo_del_condition(struct list_head *element);
891void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
892void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
893void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
894void tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...)
895 __printf(2, 3);
896void tomoyo_load_policy(const char *filename);
897void tomoyo_memory_free(void *ptr);
898void tomoyo_normalize_line(unsigned char *buffer);
899void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
900void tomoyo_print_ulong(char *buffer, const int buffer_len,
901 const unsigned long value, const u8 type);
902void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
903void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
904void tomoyo_read_log(struct tomoyo_io_buffer *head);
905void tomoyo_update_stat(const u8 index);
906void tomoyo_warn_oom(const char *function);
907void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
908 __printf(2, 3);
909void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
910 va_list args);
911
912
913
914extern bool tomoyo_policy_loaded;
915extern const char * const tomoyo_condition_keyword
916[TOMOYO_MAX_CONDITION_KEYWORD];
917extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
918extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
919 + TOMOYO_MAX_MAC_CATEGORY_INDEX];
920extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE];
921extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
922extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX];
923extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION];
924extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION];
925extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION];
926extern struct list_head tomoyo_condition_list;
927extern struct list_head tomoyo_domain_list;
928extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
929extern struct list_head tomoyo_namespace_list;
930extern struct mutex tomoyo_policy_lock;
931extern struct srcu_struct tomoyo_ss;
932extern struct tomoyo_domain_info tomoyo_kernel_domain;
933extern struct tomoyo_policy_namespace tomoyo_kernel_namespace;
934extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
935extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
936
937
938
939
940
941
942
943
944static inline int tomoyo_read_lock(void)
945{
946 return srcu_read_lock(&tomoyo_ss);
947}
948
949
950
951
952
953
954
955
956static inline void tomoyo_read_unlock(int idx)
957{
958 srcu_read_unlock(&tomoyo_ss, idx);
959}
960
961
962
963
964
965
966
967
968
969static inline pid_t tomoyo_sys_getppid(void)
970{
971 pid_t pid;
972 rcu_read_lock();
973 pid = task_tgid_vnr(current->real_parent);
974 rcu_read_unlock();
975 return pid;
976}
977
978
979
980
981
982
983
984
985
986static inline pid_t tomoyo_sys_getpid(void)
987{
988 return task_tgid_vnr(current);
989}
990
991
992
993
994
995
996
997
998
999static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
1000 const struct tomoyo_path_info *b)
1001{
1002 return a->hash != b->hash || strcmp(a->name, b->name);
1003}
1004
1005
1006
1007
1008
1009
1010
1011
1012static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
1013{
1014 if (name) {
1015 struct tomoyo_name *ptr =
1016 container_of(name, typeof(*ptr), entry);
1017 atomic_dec(&ptr->head.users);
1018 }
1019}
1020
1021
1022
1023
1024
1025
1026
1027
1028static inline void tomoyo_put_condition(struct tomoyo_condition *cond)
1029{
1030 if (cond)
1031 atomic_dec(&cond->head.users);
1032}
1033
1034
1035
1036
1037
1038
1039
1040
1041static inline void tomoyo_put_group(struct tomoyo_group *group)
1042{
1043 if (group)
1044 atomic_dec(&group->head.users);
1045}
1046
1047
1048
1049
1050
1051
1052static inline struct tomoyo_domain_info *tomoyo_domain(void)
1053{
1054 return current_cred()->security;
1055}
1056
1057
1058
1059
1060
1061
1062
1063
1064static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
1065 *task)
1066{
1067 return task_cred_xxx(task, security);
1068}
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078static inline bool tomoyo_same_name_union
1079(const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
1080{
1081 return a->filename == b->filename && a->group == b->group;
1082}
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092static inline bool tomoyo_same_number_union
1093(const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
1094{
1095 return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
1096 a->group == b->group && a->value_type[0] == b->value_type[0] &&
1097 a->value_type[1] == b->value_type[1];
1098}
1099
1100
1101
1102
1103
1104
1105static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
1106{
1107 return tomoyo_domain()->ns;
1108}
1109
1110#if defined(CONFIG_SLOB)
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121static inline int tomoyo_round2(size_t size)
1122{
1123 return size;
1124}
1125
1126#else
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138static inline int tomoyo_round2(size_t size)
1139{
1140#if PAGE_SIZE == 4096
1141 size_t bsize = 32;
1142#else
1143 size_t bsize = 64;
1144#endif
1145 if (!size)
1146 return 0;
1147 while (size > bsize)
1148 bsize <<= 1;
1149 return bsize;
1150}
1151
1152#endif
1153
1154
1155
1156
1157
1158
1159#define list_for_each_cookie(pos, head) \
1160 if (!pos) \
1161 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1162 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
1163
1164#endif
1165