0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef _SECURITY_TOMOYO_COMMON_H
0011 #define _SECURITY_TOMOYO_COMMON_H
0012
0013 #define pr_fmt(fmt) fmt
0014
0015 #include <linux/ctype.h>
0016 #include <linux/string.h>
0017 #include <linux/mm.h>
0018 #include <linux/file.h>
0019 #include <linux/kmod.h>
0020 #include <linux/fs.h>
0021 #include <linux/sched.h>
0022 #include <linux/namei.h>
0023 #include <linux/mount.h>
0024 #include <linux/list.h>
0025 #include <linux/cred.h>
0026 #include <linux/poll.h>
0027 #include <linux/binfmts.h>
0028 #include <linux/highmem.h>
0029 #include <linux/net.h>
0030 #include <linux/inet.h>
0031 #include <linux/in.h>
0032 #include <linux/in6.h>
0033 #include <linux/un.h>
0034 #include <linux/lsm_hooks.h>
0035 #include <net/sock.h>
0036 #include <net/af_unix.h>
0037 #include <net/ip.h>
0038 #include <net/ipv6.h>
0039 #include <net/udp.h>
0040
0041
0042
0043
0044
0045
0046
0047
0048 #define TOMOYO_HASH_BITS 8
0049 #define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
0050
0051
0052
0053
0054
0055 #define TOMOYO_SOCK_MAX 6
0056
0057 #define TOMOYO_EXEC_TMPSIZE 4096
0058
0059
0060 #define TOMOYO_GC_IN_PROGRESS -1
0061
0062
0063 #define TOMOYO_MAX_PROFILES 256
0064
0065
0066 #define TOMOYO_MAX_ACL_GROUPS 256
0067
0068
0069 enum tomoyo_conditions_index {
0070 TOMOYO_TASK_UID,
0071 TOMOYO_TASK_EUID,
0072 TOMOYO_TASK_SUID,
0073 TOMOYO_TASK_FSUID,
0074 TOMOYO_TASK_GID,
0075 TOMOYO_TASK_EGID,
0076 TOMOYO_TASK_SGID,
0077 TOMOYO_TASK_FSGID,
0078 TOMOYO_TASK_PID,
0079 TOMOYO_TASK_PPID,
0080 TOMOYO_EXEC_ARGC,
0081 TOMOYO_EXEC_ENVC,
0082 TOMOYO_TYPE_IS_SOCKET,
0083 TOMOYO_TYPE_IS_SYMLINK,
0084 TOMOYO_TYPE_IS_FILE,
0085 TOMOYO_TYPE_IS_BLOCK_DEV,
0086 TOMOYO_TYPE_IS_DIRECTORY,
0087 TOMOYO_TYPE_IS_CHAR_DEV,
0088 TOMOYO_TYPE_IS_FIFO,
0089 TOMOYO_MODE_SETUID,
0090 TOMOYO_MODE_SETGID,
0091 TOMOYO_MODE_STICKY,
0092 TOMOYO_MODE_OWNER_READ,
0093 TOMOYO_MODE_OWNER_WRITE,
0094 TOMOYO_MODE_OWNER_EXECUTE,
0095 TOMOYO_MODE_GROUP_READ,
0096 TOMOYO_MODE_GROUP_WRITE,
0097 TOMOYO_MODE_GROUP_EXECUTE,
0098 TOMOYO_MODE_OTHERS_READ,
0099 TOMOYO_MODE_OTHERS_WRITE,
0100 TOMOYO_MODE_OTHERS_EXECUTE,
0101 TOMOYO_EXEC_REALPATH,
0102 TOMOYO_SYMLINK_TARGET,
0103 TOMOYO_PATH1_UID,
0104 TOMOYO_PATH1_GID,
0105 TOMOYO_PATH1_INO,
0106 TOMOYO_PATH1_MAJOR,
0107 TOMOYO_PATH1_MINOR,
0108 TOMOYO_PATH1_PERM,
0109 TOMOYO_PATH1_TYPE,
0110 TOMOYO_PATH1_DEV_MAJOR,
0111 TOMOYO_PATH1_DEV_MINOR,
0112 TOMOYO_PATH2_UID,
0113 TOMOYO_PATH2_GID,
0114 TOMOYO_PATH2_INO,
0115 TOMOYO_PATH2_MAJOR,
0116 TOMOYO_PATH2_MINOR,
0117 TOMOYO_PATH2_PERM,
0118 TOMOYO_PATH2_TYPE,
0119 TOMOYO_PATH2_DEV_MAJOR,
0120 TOMOYO_PATH2_DEV_MINOR,
0121 TOMOYO_PATH1_PARENT_UID,
0122 TOMOYO_PATH1_PARENT_GID,
0123 TOMOYO_PATH1_PARENT_INO,
0124 TOMOYO_PATH1_PARENT_PERM,
0125 TOMOYO_PATH2_PARENT_UID,
0126 TOMOYO_PATH2_PARENT_GID,
0127 TOMOYO_PATH2_PARENT_INO,
0128 TOMOYO_PATH2_PARENT_PERM,
0129 TOMOYO_MAX_CONDITION_KEYWORD,
0130 TOMOYO_NUMBER_UNION,
0131 TOMOYO_NAME_UNION,
0132 TOMOYO_ARGV_ENTRY,
0133 TOMOYO_ENVP_ENTRY,
0134 };
0135
0136
0137
0138 enum tomoyo_path_stat_index {
0139
0140 TOMOYO_PATH1,
0141 TOMOYO_PATH1_PARENT,
0142 TOMOYO_PATH2,
0143 TOMOYO_PATH2_PARENT,
0144 TOMOYO_MAX_PATH_STAT
0145 };
0146
0147
0148 enum tomoyo_mode_index {
0149 TOMOYO_CONFIG_DISABLED,
0150 TOMOYO_CONFIG_LEARNING,
0151 TOMOYO_CONFIG_PERMISSIVE,
0152 TOMOYO_CONFIG_ENFORCING,
0153 TOMOYO_CONFIG_MAX_MODE,
0154 TOMOYO_CONFIG_WANT_REJECT_LOG = 64,
0155 TOMOYO_CONFIG_WANT_GRANT_LOG = 128,
0156 TOMOYO_CONFIG_USE_DEFAULT = 255,
0157 };
0158
0159
0160 enum tomoyo_policy_id {
0161 TOMOYO_ID_GROUP,
0162 TOMOYO_ID_ADDRESS_GROUP,
0163 TOMOYO_ID_PATH_GROUP,
0164 TOMOYO_ID_NUMBER_GROUP,
0165 TOMOYO_ID_TRANSITION_CONTROL,
0166 TOMOYO_ID_AGGREGATOR,
0167 TOMOYO_ID_MANAGER,
0168 TOMOYO_ID_CONDITION,
0169 TOMOYO_ID_NAME,
0170 TOMOYO_ID_ACL,
0171 TOMOYO_ID_DOMAIN,
0172 TOMOYO_MAX_POLICY
0173 };
0174
0175
0176 enum tomoyo_domain_info_flags_index {
0177
0178 TOMOYO_DIF_QUOTA_WARNED,
0179
0180
0181
0182
0183
0184
0185 TOMOYO_DIF_TRANSITION_FAILED,
0186 TOMOYO_MAX_DOMAIN_INFO_FLAGS
0187 };
0188
0189
0190 enum tomoyo_grant_log {
0191
0192 TOMOYO_GRANTLOG_AUTO,
0193
0194 TOMOYO_GRANTLOG_NO,
0195
0196 TOMOYO_GRANTLOG_YES,
0197 };
0198
0199
0200 enum tomoyo_group_id {
0201 TOMOYO_PATH_GROUP,
0202 TOMOYO_NUMBER_GROUP,
0203 TOMOYO_ADDRESS_GROUP,
0204 TOMOYO_MAX_GROUP
0205 };
0206
0207
0208 enum tomoyo_value_type {
0209 TOMOYO_VALUE_TYPE_INVALID,
0210 TOMOYO_VALUE_TYPE_DECIMAL,
0211 TOMOYO_VALUE_TYPE_OCTAL,
0212 TOMOYO_VALUE_TYPE_HEXADECIMAL,
0213 };
0214
0215
0216 enum tomoyo_transition_type {
0217
0218 TOMOYO_TRANSITION_CONTROL_NO_RESET,
0219 TOMOYO_TRANSITION_CONTROL_RESET,
0220 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
0221 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
0222 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
0223 TOMOYO_TRANSITION_CONTROL_KEEP,
0224 TOMOYO_MAX_TRANSITION_TYPE
0225 };
0226
0227
0228 enum tomoyo_acl_entry_type_index {
0229 TOMOYO_TYPE_PATH_ACL,
0230 TOMOYO_TYPE_PATH2_ACL,
0231 TOMOYO_TYPE_PATH_NUMBER_ACL,
0232 TOMOYO_TYPE_MKDEV_ACL,
0233 TOMOYO_TYPE_MOUNT_ACL,
0234 TOMOYO_TYPE_INET_ACL,
0235 TOMOYO_TYPE_UNIX_ACL,
0236 TOMOYO_TYPE_ENV_ACL,
0237 TOMOYO_TYPE_MANUAL_TASK_ACL,
0238 };
0239
0240
0241 enum tomoyo_path_acl_index {
0242 TOMOYO_TYPE_EXECUTE,
0243 TOMOYO_TYPE_READ,
0244 TOMOYO_TYPE_WRITE,
0245 TOMOYO_TYPE_APPEND,
0246 TOMOYO_TYPE_UNLINK,
0247 TOMOYO_TYPE_GETATTR,
0248 TOMOYO_TYPE_RMDIR,
0249 TOMOYO_TYPE_TRUNCATE,
0250 TOMOYO_TYPE_SYMLINK,
0251 TOMOYO_TYPE_CHROOT,
0252 TOMOYO_TYPE_UMOUNT,
0253 TOMOYO_MAX_PATH_OPERATION
0254 };
0255
0256
0257 enum tomoyo_memory_stat_type {
0258 TOMOYO_MEMORY_POLICY,
0259 TOMOYO_MEMORY_AUDIT,
0260 TOMOYO_MEMORY_QUERY,
0261 TOMOYO_MAX_MEMORY_STAT
0262 };
0263
0264 enum tomoyo_mkdev_acl_index {
0265 TOMOYO_TYPE_MKBLOCK,
0266 TOMOYO_TYPE_MKCHAR,
0267 TOMOYO_MAX_MKDEV_OPERATION
0268 };
0269
0270
0271 enum tomoyo_network_acl_index {
0272 TOMOYO_NETWORK_BIND,
0273 TOMOYO_NETWORK_LISTEN,
0274 TOMOYO_NETWORK_CONNECT,
0275 TOMOYO_NETWORK_SEND,
0276 TOMOYO_MAX_NETWORK_OPERATION
0277 };
0278
0279
0280 enum tomoyo_path2_acl_index {
0281 TOMOYO_TYPE_LINK,
0282 TOMOYO_TYPE_RENAME,
0283 TOMOYO_TYPE_PIVOT_ROOT,
0284 TOMOYO_MAX_PATH2_OPERATION
0285 };
0286
0287
0288 enum tomoyo_path_number_acl_index {
0289 TOMOYO_TYPE_CREATE,
0290 TOMOYO_TYPE_MKDIR,
0291 TOMOYO_TYPE_MKFIFO,
0292 TOMOYO_TYPE_MKSOCK,
0293 TOMOYO_TYPE_IOCTL,
0294 TOMOYO_TYPE_CHMOD,
0295 TOMOYO_TYPE_CHOWN,
0296 TOMOYO_TYPE_CHGRP,
0297 TOMOYO_MAX_PATH_NUMBER_OPERATION
0298 };
0299
0300
0301 enum tomoyo_securityfs_interface_index {
0302 TOMOYO_DOMAINPOLICY,
0303 TOMOYO_EXCEPTIONPOLICY,
0304 TOMOYO_PROCESS_STATUS,
0305 TOMOYO_STAT,
0306 TOMOYO_AUDIT,
0307 TOMOYO_VERSION,
0308 TOMOYO_PROFILE,
0309 TOMOYO_QUERY,
0310 TOMOYO_MANAGER
0311 };
0312
0313
0314 enum tomoyo_special_mount {
0315 TOMOYO_MOUNT_BIND,
0316 TOMOYO_MOUNT_MOVE,
0317 TOMOYO_MOUNT_REMOUNT,
0318 TOMOYO_MOUNT_MAKE_UNBINDABLE,
0319 TOMOYO_MOUNT_MAKE_PRIVATE,
0320 TOMOYO_MOUNT_MAKE_SLAVE,
0321 TOMOYO_MOUNT_MAKE_SHARED,
0322 TOMOYO_MAX_SPECIAL_MOUNT
0323 };
0324
0325
0326 enum tomoyo_mac_index {
0327 TOMOYO_MAC_FILE_EXECUTE,
0328 TOMOYO_MAC_FILE_OPEN,
0329 TOMOYO_MAC_FILE_CREATE,
0330 TOMOYO_MAC_FILE_UNLINK,
0331 TOMOYO_MAC_FILE_GETATTR,
0332 TOMOYO_MAC_FILE_MKDIR,
0333 TOMOYO_MAC_FILE_RMDIR,
0334 TOMOYO_MAC_FILE_MKFIFO,
0335 TOMOYO_MAC_FILE_MKSOCK,
0336 TOMOYO_MAC_FILE_TRUNCATE,
0337 TOMOYO_MAC_FILE_SYMLINK,
0338 TOMOYO_MAC_FILE_MKBLOCK,
0339 TOMOYO_MAC_FILE_MKCHAR,
0340 TOMOYO_MAC_FILE_LINK,
0341 TOMOYO_MAC_FILE_RENAME,
0342 TOMOYO_MAC_FILE_CHMOD,
0343 TOMOYO_MAC_FILE_CHOWN,
0344 TOMOYO_MAC_FILE_CHGRP,
0345 TOMOYO_MAC_FILE_IOCTL,
0346 TOMOYO_MAC_FILE_CHROOT,
0347 TOMOYO_MAC_FILE_MOUNT,
0348 TOMOYO_MAC_FILE_UMOUNT,
0349 TOMOYO_MAC_FILE_PIVOT_ROOT,
0350 TOMOYO_MAC_NETWORK_INET_STREAM_BIND,
0351 TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN,
0352 TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT,
0353 TOMOYO_MAC_NETWORK_INET_DGRAM_BIND,
0354 TOMOYO_MAC_NETWORK_INET_DGRAM_SEND,
0355 TOMOYO_MAC_NETWORK_INET_RAW_BIND,
0356 TOMOYO_MAC_NETWORK_INET_RAW_SEND,
0357 TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND,
0358 TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN,
0359 TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT,
0360 TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND,
0361 TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND,
0362 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND,
0363 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN,
0364 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT,
0365 TOMOYO_MAC_ENVIRON,
0366 TOMOYO_MAX_MAC_INDEX
0367 };
0368
0369
0370 enum tomoyo_mac_category_index {
0371 TOMOYO_MAC_CATEGORY_FILE,
0372 TOMOYO_MAC_CATEGORY_NETWORK,
0373 TOMOYO_MAC_CATEGORY_MISC,
0374 TOMOYO_MAX_MAC_CATEGORY_INDEX
0375 };
0376
0377
0378
0379
0380
0381
0382
0383
0384 #define TOMOYO_RETRY_REQUEST 1
0385
0386
0387 enum tomoyo_policy_stat_type {
0388
0389 TOMOYO_STAT_POLICY_UPDATES,
0390 TOMOYO_STAT_POLICY_LEARNING,
0391 TOMOYO_STAT_POLICY_PERMISSIVE,
0392 TOMOYO_STAT_POLICY_ENFORCING,
0393 TOMOYO_MAX_POLICY_STAT
0394 };
0395
0396
0397 enum tomoyo_pref_index {
0398 TOMOYO_PREF_MAX_AUDIT_LOG,
0399 TOMOYO_PREF_MAX_LEARNING_ENTRY,
0400 TOMOYO_MAX_PREF
0401 };
0402
0403
0404
0405
0406 struct tomoyo_acl_head {
0407 struct list_head list;
0408 s8 is_deleted;
0409 } __packed;
0410
0411
0412 struct tomoyo_shared_acl_head {
0413 struct list_head list;
0414 atomic_t users;
0415 } __packed;
0416
0417 struct tomoyo_policy_namespace;
0418
0419
0420 struct tomoyo_request_info {
0421
0422
0423
0424
0425 struct tomoyo_obj_info *obj;
0426
0427
0428
0429
0430 struct tomoyo_execve *ee;
0431 struct tomoyo_domain_info *domain;
0432
0433 union {
0434 struct {
0435 const struct tomoyo_path_info *filename;
0436
0437 const struct tomoyo_path_info *matched_path;
0438
0439 u8 operation;
0440 } path;
0441 struct {
0442 const struct tomoyo_path_info *filename1;
0443 const struct tomoyo_path_info *filename2;
0444
0445 u8 operation;
0446 } path2;
0447 struct {
0448 const struct tomoyo_path_info *filename;
0449 unsigned int mode;
0450 unsigned int major;
0451 unsigned int minor;
0452
0453 u8 operation;
0454 } mkdev;
0455 struct {
0456 const struct tomoyo_path_info *filename;
0457 unsigned long number;
0458
0459
0460
0461
0462 u8 operation;
0463 } path_number;
0464 struct {
0465 const struct tomoyo_path_info *name;
0466 } environ;
0467 struct {
0468 const __be32 *address;
0469 u16 port;
0470
0471 u8 protocol;
0472
0473 u8 operation;
0474 bool is_ipv6;
0475 } inet_network;
0476 struct {
0477 const struct tomoyo_path_info *address;
0478
0479 u8 protocol;
0480
0481 u8 operation;
0482 } unix_network;
0483 struct {
0484 const struct tomoyo_path_info *type;
0485 const struct tomoyo_path_info *dir;
0486 const struct tomoyo_path_info *dev;
0487 unsigned long flags;
0488 int need_dev;
0489 } mount;
0490 struct {
0491 const struct tomoyo_path_info *domainname;
0492 } task;
0493 } param;
0494 struct tomoyo_acl_info *matched_acl;
0495 u8 param_type;
0496 bool granted;
0497 u8 retry;
0498 u8 profile;
0499 u8 mode;
0500 u8 type;
0501 };
0502
0503
0504 struct tomoyo_path_info {
0505 const char *name;
0506 u32 hash;
0507 u16 const_len;
0508 bool is_dir;
0509 bool is_patterned;
0510 };
0511
0512
0513 struct tomoyo_name {
0514 struct tomoyo_shared_acl_head head;
0515 struct tomoyo_path_info entry;
0516 };
0517
0518
0519 struct tomoyo_name_union {
0520
0521 const struct tomoyo_path_info *filename;
0522 struct tomoyo_group *group;
0523 };
0524
0525
0526 struct tomoyo_number_union {
0527 unsigned long values[2];
0528 struct tomoyo_group *group;
0529
0530 u8 value_type[2];
0531 };
0532
0533
0534 struct tomoyo_ipaddr_union {
0535 struct in6_addr ip[2];
0536 struct tomoyo_group *group;
0537 bool is_ipv6;
0538 };
0539
0540
0541 struct tomoyo_group {
0542 struct tomoyo_shared_acl_head head;
0543 const struct tomoyo_path_info *group_name;
0544 struct list_head member_list;
0545 };
0546
0547
0548 struct tomoyo_path_group {
0549 struct tomoyo_acl_head head;
0550 const struct tomoyo_path_info *member_name;
0551 };
0552
0553
0554 struct tomoyo_number_group {
0555 struct tomoyo_acl_head head;
0556 struct tomoyo_number_union number;
0557 };
0558
0559
0560 struct tomoyo_address_group {
0561 struct tomoyo_acl_head head;
0562
0563 struct tomoyo_ipaddr_union address;
0564 };
0565
0566
0567 struct tomoyo_mini_stat {
0568 kuid_t uid;
0569 kgid_t gid;
0570 ino_t ino;
0571 umode_t mode;
0572 dev_t dev;
0573 dev_t rdev;
0574 };
0575
0576
0577 struct tomoyo_page_dump {
0578 struct page *page;
0579 char *data;
0580 };
0581
0582
0583 struct tomoyo_obj_info {
0584
0585
0586
0587 bool validate_done;
0588
0589 bool stat_valid[TOMOYO_MAX_PATH_STAT];
0590
0591 struct path path1;
0592
0593 struct path path2;
0594
0595
0596
0597
0598 struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
0599
0600
0601
0602
0603 struct tomoyo_path_info *symlink_target;
0604 };
0605
0606
0607 struct tomoyo_argv {
0608 unsigned long index;
0609 const struct tomoyo_path_info *value;
0610 bool is_not;
0611 };
0612
0613
0614 struct tomoyo_envp {
0615 const struct tomoyo_path_info *name;
0616 const struct tomoyo_path_info *value;
0617 bool is_not;
0618 };
0619
0620
0621 struct tomoyo_execve {
0622 struct tomoyo_request_info r;
0623 struct tomoyo_obj_info obj;
0624 struct linux_binprm *bprm;
0625 const struct tomoyo_path_info *transition;
0626
0627 struct tomoyo_page_dump dump;
0628
0629 char *tmp;
0630 };
0631
0632
0633 struct tomoyo_condition_element {
0634
0635
0636
0637
0638
0639 u8 left;
0640
0641
0642
0643
0644
0645
0646 u8 right;
0647
0648 bool equals;
0649 };
0650
0651
0652 struct tomoyo_condition {
0653 struct tomoyo_shared_acl_head head;
0654 u32 size;
0655 u16 condc;
0656 u16 numbers_count;
0657 u16 names_count;
0658 u16 argc;
0659 u16 envc;
0660 u8 grant_log;
0661 const struct tomoyo_path_info *transit;
0662
0663
0664
0665
0666
0667
0668
0669 };
0670
0671
0672 struct tomoyo_acl_info {
0673 struct list_head list;
0674 struct tomoyo_condition *cond;
0675 s8 is_deleted;
0676 u8 type;
0677 } __packed;
0678
0679
0680 struct tomoyo_domain_info {
0681 struct list_head list;
0682 struct list_head acl_info_list;
0683
0684 const struct tomoyo_path_info *domainname;
0685
0686 struct tomoyo_policy_namespace *ns;
0687
0688 unsigned long group[TOMOYO_MAX_ACL_GROUPS / BITS_PER_LONG];
0689 u8 profile;
0690 bool is_deleted;
0691 bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
0692 atomic_t users;
0693 };
0694
0695
0696
0697
0698 struct tomoyo_task_acl {
0699 struct tomoyo_acl_info head;
0700
0701 const struct tomoyo_path_info *domainname;
0702 };
0703
0704
0705
0706
0707
0708
0709 struct tomoyo_path_acl {
0710 struct tomoyo_acl_info head;
0711 u16 perm;
0712 struct tomoyo_name_union name;
0713 };
0714
0715
0716
0717
0718
0719 struct tomoyo_path_number_acl {
0720 struct tomoyo_acl_info head;
0721
0722 u8 perm;
0723 struct tomoyo_name_union name;
0724 struct tomoyo_number_union number;
0725 };
0726
0727
0728 struct tomoyo_mkdev_acl {
0729 struct tomoyo_acl_info head;
0730 u8 perm;
0731 struct tomoyo_name_union name;
0732 struct tomoyo_number_union mode;
0733 struct tomoyo_number_union major;
0734 struct tomoyo_number_union minor;
0735 };
0736
0737
0738
0739
0740 struct tomoyo_path2_acl {
0741 struct tomoyo_acl_info head;
0742 u8 perm;
0743 struct tomoyo_name_union name1;
0744 struct tomoyo_name_union name2;
0745 };
0746
0747
0748 struct tomoyo_mount_acl {
0749 struct tomoyo_acl_info head;
0750 struct tomoyo_name_union dev_name;
0751 struct tomoyo_name_union dir_name;
0752 struct tomoyo_name_union fs_type;
0753 struct tomoyo_number_union flags;
0754 };
0755
0756
0757 struct tomoyo_env_acl {
0758 struct tomoyo_acl_info head;
0759 const struct tomoyo_path_info *env;
0760 };
0761
0762
0763 struct tomoyo_inet_acl {
0764 struct tomoyo_acl_info head;
0765 u8 protocol;
0766 u8 perm;
0767 struct tomoyo_ipaddr_union address;
0768 struct tomoyo_number_union port;
0769 };
0770
0771
0772 struct tomoyo_unix_acl {
0773 struct tomoyo_acl_info head;
0774 u8 protocol;
0775 u8 perm;
0776 struct tomoyo_name_union name;
0777 };
0778
0779
0780 struct tomoyo_acl_param {
0781 char *data;
0782 struct list_head *list;
0783 struct tomoyo_policy_namespace *ns;
0784 bool is_delete;
0785 };
0786
0787 #define TOMOYO_MAX_IO_READ_QUEUE 64
0788
0789
0790
0791
0792
0793 struct tomoyo_io_buffer {
0794 void (*read)(struct tomoyo_io_buffer *head);
0795 int (*write)(struct tomoyo_io_buffer *head);
0796 __poll_t (*poll)(struct file *file, poll_table *wait);
0797
0798 struct mutex io_sem;
0799 char __user *read_user_buf;
0800 size_t read_user_buf_avail;
0801 struct {
0802 struct list_head *ns;
0803 struct list_head *domain;
0804 struct list_head *group;
0805 struct list_head *acl;
0806 size_t avail;
0807 unsigned int step;
0808 unsigned int query_index;
0809 u16 index;
0810 u16 cond_index;
0811 u8 acl_group_index;
0812 u8 cond_step;
0813 u8 bit;
0814 u8 w_pos;
0815 bool eof;
0816 bool print_this_domain_only;
0817 bool print_transition_related_only;
0818 bool print_cond_part;
0819 const char *w[TOMOYO_MAX_IO_READ_QUEUE];
0820 } r;
0821 struct {
0822 struct tomoyo_policy_namespace *ns;
0823
0824 struct tomoyo_domain_info *domain;
0825
0826 size_t avail;
0827 bool is_delete;
0828 } w;
0829
0830 char *read_buf;
0831
0832 size_t readbuf_size;
0833
0834 char *write_buf;
0835
0836 size_t writebuf_size;
0837
0838 enum tomoyo_securityfs_interface_index type;
0839
0840 u8 users;
0841
0842 struct list_head list;
0843 };
0844
0845
0846
0847
0848
0849 struct tomoyo_transition_control {
0850 struct tomoyo_acl_head head;
0851 u8 type;
0852
0853 bool is_last_name;
0854 const struct tomoyo_path_info *domainname;
0855 const struct tomoyo_path_info *program;
0856 };
0857
0858
0859 struct tomoyo_aggregator {
0860 struct tomoyo_acl_head head;
0861 const struct tomoyo_path_info *original_name;
0862 const struct tomoyo_path_info *aggregated_name;
0863 };
0864
0865
0866 struct tomoyo_manager {
0867 struct tomoyo_acl_head head;
0868
0869 const struct tomoyo_path_info *manager;
0870 };
0871
0872 struct tomoyo_preference {
0873 unsigned int learning_max_entry;
0874 bool enforcing_verbose;
0875 bool learning_verbose;
0876 bool permissive_verbose;
0877 };
0878
0879
0880 struct tomoyo_profile {
0881 const struct tomoyo_path_info *comment;
0882 struct tomoyo_preference *learning;
0883 struct tomoyo_preference *permissive;
0884 struct tomoyo_preference *enforcing;
0885 struct tomoyo_preference preference;
0886 u8 default_config;
0887 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
0888 unsigned int pref[TOMOYO_MAX_PREF];
0889 };
0890
0891
0892 struct tomoyo_time {
0893 u16 year;
0894 u8 month;
0895 u8 day;
0896 u8 hour;
0897 u8 min;
0898 u8 sec;
0899 };
0900
0901
0902 struct tomoyo_policy_namespace {
0903
0904 struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
0905
0906 struct list_head group_list[TOMOYO_MAX_GROUP];
0907
0908 struct list_head policy_list[TOMOYO_MAX_POLICY];
0909
0910 struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
0911
0912 struct list_head namespace_list;
0913
0914 unsigned int profile_version;
0915
0916 const char *name;
0917 };
0918
0919
0920 struct tomoyo_task {
0921 struct tomoyo_domain_info *domain_info;
0922 struct tomoyo_domain_info *old_domain_info;
0923 };
0924
0925
0926
0927 bool tomoyo_address_matches_group(const bool is_ipv6, const __be32 *address,
0928 const struct tomoyo_group *group);
0929 bool tomoyo_compare_number_union(const unsigned long value,
0930 const struct tomoyo_number_union *ptr);
0931 bool tomoyo_condition(struct tomoyo_request_info *r,
0932 const struct tomoyo_condition *cond);
0933 bool tomoyo_correct_domain(const unsigned char *domainname);
0934 bool tomoyo_correct_path(const char *filename);
0935 bool tomoyo_correct_word(const char *string);
0936 bool tomoyo_domain_def(const unsigned char *buffer);
0937 bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
0938 bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
0939 struct tomoyo_page_dump *dump);
0940 bool tomoyo_memory_ok(void *ptr);
0941 bool tomoyo_number_matches_group(const unsigned long min,
0942 const unsigned long max,
0943 const struct tomoyo_group *group);
0944 bool tomoyo_parse_ipaddr_union(struct tomoyo_acl_param *param,
0945 struct tomoyo_ipaddr_union *ptr);
0946 bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
0947 struct tomoyo_name_union *ptr);
0948 bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
0949 struct tomoyo_number_union *ptr);
0950 bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
0951 const struct tomoyo_path_info *pattern);
0952 bool tomoyo_permstr(const char *string, const char *keyword);
0953 bool tomoyo_str_starts(char **src, const char *find);
0954 char *tomoyo_encode(const char *str);
0955 char *tomoyo_encode2(const char *str, int str_len);
0956 char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
0957 va_list args);
0958 char *tomoyo_read_token(struct tomoyo_acl_param *param);
0959 char *tomoyo_realpath_from_path(const struct path *path);
0960 char *tomoyo_realpath_nofollow(const char *pathname);
0961 const char *tomoyo_get_exe(void);
0962 const struct tomoyo_path_info *tomoyo_compare_name_union
0963 (const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
0964 const struct tomoyo_path_info *tomoyo_get_domainname
0965 (struct tomoyo_acl_param *param);
0966 const struct tomoyo_path_info *tomoyo_get_name(const char *name);
0967 const struct tomoyo_path_info *tomoyo_path_matches_group
0968 (const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
0969 int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
0970 const struct path *path, const int flag);
0971 void tomoyo_close_control(struct tomoyo_io_buffer *head);
0972 int tomoyo_env_perm(struct tomoyo_request_info *r, const char *env);
0973 int tomoyo_execute_permission(struct tomoyo_request_info *r,
0974 const struct tomoyo_path_info *filename);
0975 int tomoyo_find_next_domain(struct linux_binprm *bprm);
0976 int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
0977 const u8 index);
0978 int tomoyo_init_request_info(struct tomoyo_request_info *r,
0979 struct tomoyo_domain_info *domain,
0980 const u8 index);
0981 int tomoyo_mkdev_perm(const u8 operation, const struct path *path,
0982 const unsigned int mode, unsigned int dev);
0983 int tomoyo_mount_permission(const char *dev_name, const struct path *path,
0984 const char *type, unsigned long flags,
0985 void *data_page);
0986 int tomoyo_open_control(const u8 type, struct file *file);
0987 int tomoyo_path2_perm(const u8 operation, const struct path *path1,
0988 const struct path *path2);
0989 int tomoyo_path_number_perm(const u8 operation, const struct path *path,
0990 unsigned long number);
0991 int tomoyo_path_perm(const u8 operation, const struct path *path,
0992 const char *target);
0993 __poll_t tomoyo_poll_control(struct file *file, poll_table *wait);
0994 __poll_t tomoyo_poll_log(struct file *file, poll_table *wait);
0995 int tomoyo_socket_bind_permission(struct socket *sock, struct sockaddr *addr,
0996 int addr_len);
0997 int tomoyo_socket_connect_permission(struct socket *sock,
0998 struct sockaddr *addr, int addr_len);
0999 int tomoyo_socket_listen_permission(struct socket *sock);
1000 int tomoyo_socket_sendmsg_permission(struct socket *sock, struct msghdr *msg,
1001 int size);
1002 int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
1003 __printf(2, 3);
1004 int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
1005 struct tomoyo_acl_param *param,
1006 bool (*check_duplicate)
1007 (const struct tomoyo_acl_info *,
1008 const struct tomoyo_acl_info *),
1009 bool (*merge_duplicate)
1010 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
1011 const bool));
1012 int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
1013 struct tomoyo_acl_param *param,
1014 bool (*check_duplicate)
1015 (const struct tomoyo_acl_head *,
1016 const struct tomoyo_acl_head *));
1017 int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
1018 int tomoyo_write_file(struct tomoyo_acl_param *param);
1019 int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
1020 int tomoyo_write_misc(struct tomoyo_acl_param *param);
1021 int tomoyo_write_inet_network(struct tomoyo_acl_param *param);
1022 int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
1023 const u8 type);
1024 int tomoyo_write_unix_network(struct tomoyo_acl_param *param);
1025 ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
1026 const int buffer_len);
1027 ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
1028 const char __user *buffer, const int buffer_len);
1029 struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
1030 struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
1031 const bool transit);
1032 struct tomoyo_domain_info *tomoyo_domain(void);
1033 struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
1034 struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
1035 const u8 idx);
1036 struct tomoyo_policy_namespace *tomoyo_assign_namespace
1037 (const char *domainname);
1038 struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
1039 const u8 profile);
1040 unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
1041 const u8 index);
1042 u8 tomoyo_parse_ulong(unsigned long *result, char **str);
1043 void *tomoyo_commit_ok(void *data, const unsigned int size);
1044 void __init tomoyo_load_builtin_policy(void);
1045 void __init tomoyo_mm_init(void);
1046 void tomoyo_check_acl(struct tomoyo_request_info *r,
1047 bool (*check_entry)(struct tomoyo_request_info *,
1048 const struct tomoyo_acl_info *));
1049 void tomoyo_check_profile(void);
1050 void tomoyo_convert_time(time64_t time, struct tomoyo_time *stamp);
1051 void tomoyo_del_condition(struct list_head *element);
1052 void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
1053 void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
1054 void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
1055 void tomoyo_load_policy(const char *filename);
1056 void tomoyo_normalize_line(unsigned char *buffer);
1057 void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
1058 void tomoyo_print_ip(char *buf, const unsigned int size,
1059 const struct tomoyo_ipaddr_union *ptr);
1060 void tomoyo_print_ulong(char *buffer, const int buffer_len,
1061 const unsigned long value, const u8 type);
1062 void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
1063 void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
1064 void tomoyo_read_log(struct tomoyo_io_buffer *head);
1065 void tomoyo_update_stat(const u8 index);
1066 void tomoyo_warn_oom(const char *function);
1067 void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
1068 __printf(2, 3);
1069 void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
1070 va_list args);
1071
1072
1073
1074 extern bool tomoyo_policy_loaded;
1075 extern int tomoyo_enabled;
1076 extern const char * const tomoyo_condition_keyword
1077 [TOMOYO_MAX_CONDITION_KEYWORD];
1078 extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
1079 extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
1080 + TOMOYO_MAX_MAC_CATEGORY_INDEX];
1081 extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE];
1082 extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
1083 extern const char * const tomoyo_proto_keyword[TOMOYO_SOCK_MAX];
1084 extern const char * const tomoyo_socket_keyword[TOMOYO_MAX_NETWORK_OPERATION];
1085 extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX];
1086 extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION];
1087 extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION];
1088 extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION];
1089 extern struct list_head tomoyo_condition_list;
1090 extern struct list_head tomoyo_domain_list;
1091 extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
1092 extern struct list_head tomoyo_namespace_list;
1093 extern struct mutex tomoyo_policy_lock;
1094 extern struct srcu_struct tomoyo_ss;
1095 extern struct tomoyo_domain_info tomoyo_kernel_domain;
1096 extern struct tomoyo_policy_namespace tomoyo_kernel_namespace;
1097 extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
1098 extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
1099 extern struct lsm_blob_sizes tomoyo_blob_sizes;
1100
1101
1102
1103
1104
1105
1106
1107
1108 static inline int tomoyo_read_lock(void)
1109 {
1110 return srcu_read_lock(&tomoyo_ss);
1111 }
1112
1113
1114
1115
1116
1117
1118
1119
1120 static inline void tomoyo_read_unlock(int idx)
1121 {
1122 srcu_read_unlock(&tomoyo_ss, idx);
1123 }
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133 static inline pid_t tomoyo_sys_getppid(void)
1134 {
1135 pid_t pid;
1136
1137 rcu_read_lock();
1138 pid = task_tgid_vnr(rcu_dereference(current->real_parent));
1139 rcu_read_unlock();
1140 return pid;
1141 }
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151 static inline pid_t tomoyo_sys_getpid(void)
1152 {
1153 return task_tgid_vnr(current);
1154 }
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164 static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
1165 const struct tomoyo_path_info *b)
1166 {
1167 return a->hash != b->hash || strcmp(a->name, b->name);
1168 }
1169
1170
1171
1172
1173
1174
1175
1176
1177 static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
1178 {
1179 if (name) {
1180 struct tomoyo_name *ptr =
1181 container_of(name, typeof(*ptr), entry);
1182 atomic_dec(&ptr->head.users);
1183 }
1184 }
1185
1186
1187
1188
1189
1190
1191
1192
1193 static inline void tomoyo_put_condition(struct tomoyo_condition *cond)
1194 {
1195 if (cond)
1196 atomic_dec(&cond->head.users);
1197 }
1198
1199
1200
1201
1202
1203
1204
1205
1206 static inline void tomoyo_put_group(struct tomoyo_group *group)
1207 {
1208 if (group)
1209 atomic_dec(&group->head.users);
1210 }
1211
1212
1213
1214
1215
1216
1217
1218
1219 static inline struct tomoyo_task *tomoyo_task(struct task_struct *task)
1220 {
1221 return task->security + tomoyo_blob_sizes.lbs_task;
1222 }
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232 static inline bool tomoyo_same_name_union
1233 (const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
1234 {
1235 return a->filename == b->filename && a->group == b->group;
1236 }
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246 static inline bool tomoyo_same_number_union
1247 (const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
1248 {
1249 return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
1250 a->group == b->group && a->value_type[0] == b->value_type[0] &&
1251 a->value_type[1] == b->value_type[1];
1252 }
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262 static inline bool tomoyo_same_ipaddr_union
1263 (const struct tomoyo_ipaddr_union *a, const struct tomoyo_ipaddr_union *b)
1264 {
1265 return !memcmp(a->ip, b->ip, sizeof(a->ip)) && a->group == b->group &&
1266 a->is_ipv6 == b->is_ipv6;
1267 }
1268
1269
1270
1271
1272
1273
1274 static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
1275 {
1276 return tomoyo_domain()->ns;
1277 }
1278
1279 #if defined(CONFIG_SLOB)
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290 static inline int tomoyo_round2(size_t size)
1291 {
1292 return size;
1293 }
1294
1295 #else
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307 static inline int tomoyo_round2(size_t size)
1308 {
1309 #if PAGE_SIZE == 4096
1310 size_t bsize = 32;
1311 #else
1312 size_t bsize = 64;
1313 #endif
1314 if (!size)
1315 return 0;
1316 while (size > bsize)
1317 bsize <<= 1;
1318 return bsize;
1319 }
1320
1321 #endif
1322
1323
1324
1325
1326
1327
1328 #define list_for_each_cookie(pos, head) \
1329 if (!pos) \
1330 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1331 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
1332
1333 #endif