Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1 | /* |
| 2 | * security/tomoyo/common.h |
| 3 | * |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 4 | * Header file for TOMOYO. |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 5 | * |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 6 | * Copyright (C) 2005-2010 NTT DATA CORPORATION |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 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> |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 22 | #include <linux/cred.h> |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 23 | #include <linux/poll.h> |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 24 | #include <linux/binfmts.h> |
| 25 | #include <linux/highmem.h> |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 26 | #include <linux/net.h> |
| 27 | #include <linux/inet.h> |
| 28 | #include <linux/in.h> |
| 29 | #include <linux/in6.h> |
| 30 | #include <linux/un.h> |
| 31 | #include <net/sock.h> |
| 32 | #include <net/af_unix.h> |
| 33 | #include <net/ip.h> |
| 34 | #include <net/ipv6.h> |
| 35 | #include <net/udp.h> |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 36 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 37 | /********** Constants definitions. **********/ |
| 38 | |
| 39 | /* |
| 40 | * TOMOYO uses this hash only when appending a string into the string |
| 41 | * table. Frequency of appending strings is very low. So we don't need |
| 42 | * large (e.g. 64k) hash size. 256 will be sufficient. |
| 43 | */ |
| 44 | #define TOMOYO_HASH_BITS 8 |
| 45 | #define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS) |
| 46 | |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 47 | /* |
| 48 | * TOMOYO checks only SOCK_STREAM, SOCK_DGRAM, SOCK_RAW, SOCK_SEQPACKET. |
| 49 | * Therefore, we don't need SOCK_MAX. |
| 50 | */ |
| 51 | #define TOMOYO_SOCK_MAX 6 |
| 52 | |
Tetsuo Handa | c8c57e8 | 2010-06-03 20:36:43 +0900 | [diff] [blame] | 53 | #define TOMOYO_EXEC_TMPSIZE 4096 |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 54 | |
| 55 | /* Profile number is an integer between 0 and 255. */ |
| 56 | #define TOMOYO_MAX_PROFILES 256 |
| 57 | |
Tetsuo Handa | 3299714 | 2011-06-26 23:19:28 +0900 | [diff] [blame] | 58 | /* Group number is an integer between 0 and 255. */ |
| 59 | #define TOMOYO_MAX_ACL_GROUPS 256 |
| 60 | |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 61 | /* Index numbers for "struct tomoyo_condition". */ |
| 62 | enum tomoyo_conditions_index { |
| 63 | TOMOYO_TASK_UID, /* current_uid() */ |
| 64 | TOMOYO_TASK_EUID, /* current_euid() */ |
| 65 | TOMOYO_TASK_SUID, /* current_suid() */ |
| 66 | TOMOYO_TASK_FSUID, /* current_fsuid() */ |
| 67 | TOMOYO_TASK_GID, /* current_gid() */ |
| 68 | TOMOYO_TASK_EGID, /* current_egid() */ |
| 69 | TOMOYO_TASK_SGID, /* current_sgid() */ |
| 70 | TOMOYO_TASK_FSGID, /* current_fsgid() */ |
| 71 | TOMOYO_TASK_PID, /* sys_getpid() */ |
| 72 | TOMOYO_TASK_PPID, /* sys_getppid() */ |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 73 | TOMOYO_EXEC_ARGC, /* "struct linux_binprm *"->argc */ |
| 74 | TOMOYO_EXEC_ENVC, /* "struct linux_binprm *"->envc */ |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 75 | TOMOYO_TYPE_IS_SOCKET, /* S_IFSOCK */ |
| 76 | TOMOYO_TYPE_IS_SYMLINK, /* S_IFLNK */ |
| 77 | TOMOYO_TYPE_IS_FILE, /* S_IFREG */ |
| 78 | TOMOYO_TYPE_IS_BLOCK_DEV, /* S_IFBLK */ |
| 79 | TOMOYO_TYPE_IS_DIRECTORY, /* S_IFDIR */ |
| 80 | TOMOYO_TYPE_IS_CHAR_DEV, /* S_IFCHR */ |
| 81 | TOMOYO_TYPE_IS_FIFO, /* S_IFIFO */ |
| 82 | TOMOYO_MODE_SETUID, /* S_ISUID */ |
| 83 | TOMOYO_MODE_SETGID, /* S_ISGID */ |
| 84 | TOMOYO_MODE_STICKY, /* S_ISVTX */ |
| 85 | TOMOYO_MODE_OWNER_READ, /* S_IRUSR */ |
| 86 | TOMOYO_MODE_OWNER_WRITE, /* S_IWUSR */ |
| 87 | TOMOYO_MODE_OWNER_EXECUTE, /* S_IXUSR */ |
| 88 | TOMOYO_MODE_GROUP_READ, /* S_IRGRP */ |
| 89 | TOMOYO_MODE_GROUP_WRITE, /* S_IWGRP */ |
| 90 | TOMOYO_MODE_GROUP_EXECUTE, /* S_IXGRP */ |
| 91 | TOMOYO_MODE_OTHERS_READ, /* S_IROTH */ |
| 92 | TOMOYO_MODE_OTHERS_WRITE, /* S_IWOTH */ |
| 93 | TOMOYO_MODE_OTHERS_EXECUTE, /* S_IXOTH */ |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 94 | TOMOYO_EXEC_REALPATH, |
| 95 | TOMOYO_SYMLINK_TARGET, |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 96 | TOMOYO_PATH1_UID, |
| 97 | TOMOYO_PATH1_GID, |
| 98 | TOMOYO_PATH1_INO, |
| 99 | TOMOYO_PATH1_MAJOR, |
| 100 | TOMOYO_PATH1_MINOR, |
| 101 | TOMOYO_PATH1_PERM, |
| 102 | TOMOYO_PATH1_TYPE, |
| 103 | TOMOYO_PATH1_DEV_MAJOR, |
| 104 | TOMOYO_PATH1_DEV_MINOR, |
| 105 | TOMOYO_PATH2_UID, |
| 106 | TOMOYO_PATH2_GID, |
| 107 | TOMOYO_PATH2_INO, |
| 108 | TOMOYO_PATH2_MAJOR, |
| 109 | TOMOYO_PATH2_MINOR, |
| 110 | TOMOYO_PATH2_PERM, |
| 111 | TOMOYO_PATH2_TYPE, |
| 112 | TOMOYO_PATH2_DEV_MAJOR, |
| 113 | TOMOYO_PATH2_DEV_MINOR, |
| 114 | TOMOYO_PATH1_PARENT_UID, |
| 115 | TOMOYO_PATH1_PARENT_GID, |
| 116 | TOMOYO_PATH1_PARENT_INO, |
| 117 | TOMOYO_PATH1_PARENT_PERM, |
| 118 | TOMOYO_PATH2_PARENT_UID, |
| 119 | TOMOYO_PATH2_PARENT_GID, |
| 120 | TOMOYO_PATH2_PARENT_INO, |
| 121 | TOMOYO_PATH2_PARENT_PERM, |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 122 | TOMOYO_MAX_CONDITION_KEYWORD, |
| 123 | TOMOYO_NUMBER_UNION, |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 124 | TOMOYO_NAME_UNION, |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 125 | TOMOYO_ARGV_ENTRY, |
| 126 | TOMOYO_ENVP_ENTRY, |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 127 | }; |
| 128 | |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 129 | |
| 130 | /* Index numbers for stat(). */ |
| 131 | enum tomoyo_path_stat_index { |
| 132 | /* Do not change this order. */ |
| 133 | TOMOYO_PATH1, |
| 134 | TOMOYO_PATH1_PARENT, |
| 135 | TOMOYO_PATH2, |
| 136 | TOMOYO_PATH2_PARENT, |
| 137 | TOMOYO_MAX_PATH_STAT |
| 138 | }; |
| 139 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 140 | /* Index numbers for operation mode. */ |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 141 | enum tomoyo_mode_index { |
| 142 | TOMOYO_CONFIG_DISABLED, |
| 143 | TOMOYO_CONFIG_LEARNING, |
| 144 | TOMOYO_CONFIG_PERMISSIVE, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 145 | TOMOYO_CONFIG_ENFORCING, |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 146 | TOMOYO_CONFIG_MAX_MODE, |
| 147 | TOMOYO_CONFIG_WANT_REJECT_LOG = 64, |
| 148 | TOMOYO_CONFIG_WANT_GRANT_LOG = 128, |
| 149 | TOMOYO_CONFIG_USE_DEFAULT = 255, |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 150 | }; |
| 151 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 152 | /* Index numbers for entry type. */ |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 153 | enum tomoyo_policy_id { |
| 154 | TOMOYO_ID_GROUP, |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 155 | TOMOYO_ID_ADDRESS_GROUP, |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 156 | TOMOYO_ID_PATH_GROUP, |
| 157 | TOMOYO_ID_NUMBER_GROUP, |
Tetsuo Handa | 5448ec4 | 2010-06-21 11:14:39 +0900 | [diff] [blame] | 158 | TOMOYO_ID_TRANSITION_CONTROL, |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 159 | TOMOYO_ID_AGGREGATOR, |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 160 | TOMOYO_ID_MANAGER, |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 161 | TOMOYO_ID_CONDITION, |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 162 | TOMOYO_ID_NAME, |
| 163 | TOMOYO_ID_ACL, |
| 164 | TOMOYO_ID_DOMAIN, |
| 165 | TOMOYO_MAX_POLICY |
| 166 | }; |
| 167 | |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 168 | /* Index numbers for domain's attributes. */ |
| 169 | enum tomoyo_domain_info_flags_index { |
| 170 | /* Quota warnning flag. */ |
| 171 | TOMOYO_DIF_QUOTA_WARNED, |
| 172 | /* |
| 173 | * This domain was unable to create a new domain at |
| 174 | * tomoyo_find_next_domain() because the name of the domain to be |
| 175 | * created was too long or it could not allocate memory. |
| 176 | * More than one process continued execve() without domain transition. |
| 177 | */ |
| 178 | TOMOYO_DIF_TRANSITION_FAILED, |
| 179 | TOMOYO_MAX_DOMAIN_INFO_FLAGS |
| 180 | }; |
| 181 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 182 | /* Index numbers for group entries. */ |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 183 | enum tomoyo_group_id { |
| 184 | TOMOYO_PATH_GROUP, |
| 185 | TOMOYO_NUMBER_GROUP, |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 186 | TOMOYO_ADDRESS_GROUP, |
Tetsuo Handa | a230f9e | 2010-06-17 16:53:24 +0900 | [diff] [blame] | 187 | TOMOYO_MAX_GROUP |
| 188 | }; |
| 189 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 190 | /* Index numbers for type of numeric values. */ |
| 191 | enum tomoyo_value_type { |
| 192 | TOMOYO_VALUE_TYPE_INVALID, |
| 193 | TOMOYO_VALUE_TYPE_DECIMAL, |
| 194 | TOMOYO_VALUE_TYPE_OCTAL, |
| 195 | TOMOYO_VALUE_TYPE_HEXADECIMAL, |
| 196 | }; |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 197 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 198 | /* Index numbers for domain transition control keywords. */ |
Tetsuo Handa | 5448ec4 | 2010-06-21 11:14:39 +0900 | [diff] [blame] | 199 | enum tomoyo_transition_type { |
| 200 | /* Do not change this order, */ |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 201 | TOMOYO_TRANSITION_CONTROL_NO_RESET, |
| 202 | TOMOYO_TRANSITION_CONTROL_RESET, |
Tetsuo Handa | 5448ec4 | 2010-06-21 11:14:39 +0900 | [diff] [blame] | 203 | TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE, |
| 204 | TOMOYO_TRANSITION_CONTROL_INITIALIZE, |
| 205 | TOMOYO_TRANSITION_CONTROL_NO_KEEP, |
| 206 | TOMOYO_TRANSITION_CONTROL_KEEP, |
| 207 | TOMOYO_MAX_TRANSITION_TYPE |
| 208 | }; |
| 209 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 210 | /* Index numbers for Access Controls. */ |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 211 | enum tomoyo_acl_entry_type_index { |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 212 | TOMOYO_TYPE_PATH_ACL, |
| 213 | TOMOYO_TYPE_PATH2_ACL, |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 214 | TOMOYO_TYPE_PATH_NUMBER_ACL, |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 215 | TOMOYO_TYPE_MKDEV_ACL, |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 216 | TOMOYO_TYPE_MOUNT_ACL, |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 217 | TOMOYO_TYPE_INET_ACL, |
| 218 | TOMOYO_TYPE_UNIX_ACL, |
Tetsuo Handa | d58e0da | 2011-09-10 15:22:48 +0900 | [diff] [blame] | 219 | TOMOYO_TYPE_ENV_ACL, |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 220 | }; |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 221 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 222 | /* Index numbers for access controls with one pathname. */ |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 223 | enum tomoyo_path_acl_index { |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 224 | TOMOYO_TYPE_EXECUTE, |
| 225 | TOMOYO_TYPE_READ, |
| 226 | TOMOYO_TYPE_WRITE, |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 227 | TOMOYO_TYPE_APPEND, |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 228 | TOMOYO_TYPE_UNLINK, |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 229 | TOMOYO_TYPE_GETATTR, |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 230 | TOMOYO_TYPE_RMDIR, |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 231 | TOMOYO_TYPE_TRUNCATE, |
| 232 | TOMOYO_TYPE_SYMLINK, |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 233 | TOMOYO_TYPE_CHROOT, |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 234 | TOMOYO_TYPE_UMOUNT, |
| 235 | TOMOYO_MAX_PATH_OPERATION |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 236 | }; |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 237 | |
Tetsuo Handa | b22b8b9 | 2011-06-26 23:21:50 +0900 | [diff] [blame] | 238 | /* Index numbers for /sys/kernel/security/tomoyo/stat interface. */ |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 239 | enum tomoyo_memory_stat_type { |
| 240 | TOMOYO_MEMORY_POLICY, |
| 241 | TOMOYO_MEMORY_AUDIT, |
| 242 | TOMOYO_MEMORY_QUERY, |
| 243 | TOMOYO_MAX_MEMORY_STAT |
| 244 | }; |
| 245 | |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 246 | enum tomoyo_mkdev_acl_index { |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 247 | TOMOYO_TYPE_MKBLOCK, |
| 248 | TOMOYO_TYPE_MKCHAR, |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 249 | TOMOYO_MAX_MKDEV_OPERATION |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 250 | }; |
| 251 | |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 252 | /* Index numbers for socket operations. */ |
| 253 | enum tomoyo_network_acl_index { |
| 254 | TOMOYO_NETWORK_BIND, /* bind() operation. */ |
| 255 | TOMOYO_NETWORK_LISTEN, /* listen() operation. */ |
| 256 | TOMOYO_NETWORK_CONNECT, /* connect() operation. */ |
| 257 | TOMOYO_NETWORK_SEND, /* send() operation. */ |
| 258 | TOMOYO_MAX_NETWORK_OPERATION |
| 259 | }; |
| 260 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 261 | /* Index numbers for access controls with two pathnames. */ |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 262 | enum tomoyo_path2_acl_index { |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 263 | TOMOYO_TYPE_LINK, |
| 264 | TOMOYO_TYPE_RENAME, |
| 265 | TOMOYO_TYPE_PIVOT_ROOT, |
| 266 | TOMOYO_MAX_PATH2_OPERATION |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 267 | }; |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 268 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 269 | /* Index numbers for access controls with one pathname and one number. */ |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 270 | enum tomoyo_path_number_acl_index { |
| 271 | TOMOYO_TYPE_CREATE, |
| 272 | TOMOYO_TYPE_MKDIR, |
| 273 | TOMOYO_TYPE_MKFIFO, |
| 274 | TOMOYO_TYPE_MKSOCK, |
| 275 | TOMOYO_TYPE_IOCTL, |
| 276 | TOMOYO_TYPE_CHMOD, |
| 277 | TOMOYO_TYPE_CHOWN, |
| 278 | TOMOYO_TYPE_CHGRP, |
| 279 | TOMOYO_MAX_PATH_NUMBER_OPERATION |
| 280 | }; |
| 281 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 282 | /* Index numbers for /sys/kernel/security/tomoyo/ interfaces. */ |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 283 | enum tomoyo_securityfs_interface_index { |
| 284 | TOMOYO_DOMAINPOLICY, |
| 285 | TOMOYO_EXCEPTIONPOLICY, |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 286 | TOMOYO_PROCESS_STATUS, |
Tetsuo Handa | b22b8b9 | 2011-06-26 23:21:50 +0900 | [diff] [blame] | 287 | TOMOYO_STAT, |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 288 | TOMOYO_SELFDOMAIN, |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 289 | TOMOYO_AUDIT, |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 290 | TOMOYO_VERSION, |
| 291 | TOMOYO_PROFILE, |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 292 | TOMOYO_QUERY, |
Tetsuo Handa | 084da35 | 2010-02-15 15:10:39 +0900 | [diff] [blame] | 293 | TOMOYO_MANAGER |
| 294 | }; |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 295 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 296 | /* Index numbers for special mount operations. */ |
| 297 | enum tomoyo_special_mount { |
| 298 | TOMOYO_MOUNT_BIND, /* mount --bind /source /dest */ |
| 299 | TOMOYO_MOUNT_MOVE, /* mount --move /old /new */ |
| 300 | TOMOYO_MOUNT_REMOUNT, /* mount -o remount /dir */ |
| 301 | TOMOYO_MOUNT_MAKE_UNBINDABLE, /* mount --make-unbindable /dir */ |
| 302 | TOMOYO_MOUNT_MAKE_PRIVATE, /* mount --make-private /dir */ |
| 303 | TOMOYO_MOUNT_MAKE_SLAVE, /* mount --make-slave /dir */ |
| 304 | TOMOYO_MOUNT_MAKE_SHARED, /* mount --make-shared /dir */ |
| 305 | TOMOYO_MAX_SPECIAL_MOUNT |
| 306 | }; |
| 307 | |
| 308 | /* Index numbers for functionality. */ |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 309 | enum tomoyo_mac_index { |
| 310 | TOMOYO_MAC_FILE_EXECUTE, |
| 311 | TOMOYO_MAC_FILE_OPEN, |
| 312 | TOMOYO_MAC_FILE_CREATE, |
| 313 | TOMOYO_MAC_FILE_UNLINK, |
Tetsuo Handa | 7c75964 | 2011-06-26 23:15:31 +0900 | [diff] [blame] | 314 | TOMOYO_MAC_FILE_GETATTR, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 315 | TOMOYO_MAC_FILE_MKDIR, |
| 316 | TOMOYO_MAC_FILE_RMDIR, |
| 317 | TOMOYO_MAC_FILE_MKFIFO, |
| 318 | TOMOYO_MAC_FILE_MKSOCK, |
| 319 | TOMOYO_MAC_FILE_TRUNCATE, |
| 320 | TOMOYO_MAC_FILE_SYMLINK, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 321 | TOMOYO_MAC_FILE_MKBLOCK, |
| 322 | TOMOYO_MAC_FILE_MKCHAR, |
| 323 | TOMOYO_MAC_FILE_LINK, |
| 324 | TOMOYO_MAC_FILE_RENAME, |
| 325 | TOMOYO_MAC_FILE_CHMOD, |
| 326 | TOMOYO_MAC_FILE_CHOWN, |
| 327 | TOMOYO_MAC_FILE_CHGRP, |
| 328 | TOMOYO_MAC_FILE_IOCTL, |
| 329 | TOMOYO_MAC_FILE_CHROOT, |
| 330 | TOMOYO_MAC_FILE_MOUNT, |
| 331 | TOMOYO_MAC_FILE_UMOUNT, |
| 332 | TOMOYO_MAC_FILE_PIVOT_ROOT, |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 333 | TOMOYO_MAC_NETWORK_INET_STREAM_BIND, |
| 334 | TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN, |
| 335 | TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT, |
| 336 | TOMOYO_MAC_NETWORK_INET_DGRAM_BIND, |
| 337 | TOMOYO_MAC_NETWORK_INET_DGRAM_SEND, |
| 338 | TOMOYO_MAC_NETWORK_INET_RAW_BIND, |
| 339 | TOMOYO_MAC_NETWORK_INET_RAW_SEND, |
| 340 | TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND, |
| 341 | TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN, |
| 342 | TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT, |
| 343 | TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND, |
| 344 | TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND, |
| 345 | TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND, |
| 346 | TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN, |
| 347 | TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT, |
Tetsuo Handa | d58e0da | 2011-09-10 15:22:48 +0900 | [diff] [blame] | 348 | TOMOYO_MAC_ENVIRON, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 349 | TOMOYO_MAX_MAC_INDEX |
| 350 | }; |
| 351 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 352 | /* Index numbers for category of functionality. */ |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 353 | enum tomoyo_mac_category_index { |
| 354 | TOMOYO_MAC_CATEGORY_FILE, |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 355 | TOMOYO_MAC_CATEGORY_NETWORK, |
Tetsuo Handa | d58e0da | 2011-09-10 15:22:48 +0900 | [diff] [blame] | 356 | TOMOYO_MAC_CATEGORY_MISC, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 357 | TOMOYO_MAX_MAC_CATEGORY_INDEX |
| 358 | }; |
| 359 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 360 | /* |
| 361 | * Retry this request. Returned by tomoyo_supervisor() if policy violation has |
| 362 | * occurred in enforcing mode and the userspace daemon decided to retry. |
| 363 | * |
| 364 | * We must choose a positive value in order to distinguish "granted" (which is |
| 365 | * 0) and "rejected" (which is a negative value) and "retry". |
| 366 | */ |
| 367 | #define TOMOYO_RETRY_REQUEST 1 |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 368 | |
Tetsuo Handa | b22b8b9 | 2011-06-26 23:21:50 +0900 | [diff] [blame] | 369 | /* Index numbers for /sys/kernel/security/tomoyo/stat interface. */ |
| 370 | enum tomoyo_policy_stat_type { |
| 371 | /* Do not change this order. */ |
| 372 | TOMOYO_STAT_POLICY_UPDATES, |
| 373 | TOMOYO_STAT_POLICY_LEARNING, /* == TOMOYO_CONFIG_LEARNING */ |
| 374 | TOMOYO_STAT_POLICY_PERMISSIVE, /* == TOMOYO_CONFIG_PERMISSIVE */ |
| 375 | TOMOYO_STAT_POLICY_ENFORCING, /* == TOMOYO_CONFIG_ENFORCING */ |
| 376 | TOMOYO_MAX_POLICY_STAT |
| 377 | }; |
| 378 | |
Tetsuo Handa | d5ca172 | 2011-06-26 23:18:21 +0900 | [diff] [blame] | 379 | /* Index numbers for profile's PREFERENCE values. */ |
| 380 | enum tomoyo_pref_index { |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 381 | TOMOYO_PREF_MAX_AUDIT_LOG, |
Tetsuo Handa | d5ca172 | 2011-06-26 23:18:21 +0900 | [diff] [blame] | 382 | TOMOYO_PREF_MAX_LEARNING_ENTRY, |
| 383 | TOMOYO_MAX_PREF |
| 384 | }; |
| 385 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 386 | /********** Structure definitions. **********/ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 387 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 388 | /* Common header for holding ACL entries. */ |
Tetsuo Handa | 82e0f00 | 2010-06-15 09:22:42 +0900 | [diff] [blame] | 389 | struct tomoyo_acl_head { |
| 390 | struct list_head list; |
| 391 | bool is_deleted; |
| 392 | } __packed; |
| 393 | |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 394 | /* Common header for shared entries. */ |
| 395 | struct tomoyo_shared_acl_head { |
| 396 | struct list_head list; |
| 397 | atomic_t users; |
| 398 | } __packed; |
| 399 | |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 400 | struct tomoyo_policy_namespace; |
| 401 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 402 | /* Structure for request info. */ |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 403 | struct tomoyo_request_info { |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 404 | /* |
| 405 | * For holding parameters specific to operations which deal files. |
| 406 | * NULL if not dealing files. |
| 407 | */ |
| 408 | struct tomoyo_obj_info *obj; |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 409 | /* |
| 410 | * For holding parameters specific to execve() request. |
| 411 | * NULL if not dealing do_execve(). |
| 412 | */ |
| 413 | struct tomoyo_execve *ee; |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 414 | struct tomoyo_domain_info *domain; |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 415 | /* For holding parameters. */ |
| 416 | union { |
| 417 | struct { |
| 418 | const struct tomoyo_path_info *filename; |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 419 | /* For using wildcards at tomoyo_find_next_domain(). */ |
| 420 | const struct tomoyo_path_info *matched_path; |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 421 | /* One of values in "enum tomoyo_path_acl_index". */ |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 422 | u8 operation; |
| 423 | } path; |
| 424 | struct { |
| 425 | const struct tomoyo_path_info *filename1; |
| 426 | const struct tomoyo_path_info *filename2; |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 427 | /* One of values in "enum tomoyo_path2_acl_index". */ |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 428 | u8 operation; |
| 429 | } path2; |
| 430 | struct { |
| 431 | const struct tomoyo_path_info *filename; |
| 432 | unsigned int mode; |
| 433 | unsigned int major; |
| 434 | unsigned int minor; |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 435 | /* One of values in "enum tomoyo_mkdev_acl_index". */ |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 436 | u8 operation; |
| 437 | } mkdev; |
| 438 | struct { |
| 439 | const struct tomoyo_path_info *filename; |
| 440 | unsigned long number; |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 441 | /* |
| 442 | * One of values in |
| 443 | * "enum tomoyo_path_number_acl_index". |
| 444 | */ |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 445 | u8 operation; |
| 446 | } path_number; |
| 447 | struct { |
Tetsuo Handa | d58e0da | 2011-09-10 15:22:48 +0900 | [diff] [blame] | 448 | const struct tomoyo_path_info *name; |
| 449 | } environ; |
| 450 | struct { |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 451 | const __be32 *address; |
| 452 | u16 port; |
| 453 | /* One of values smaller than TOMOYO_SOCK_MAX. */ |
| 454 | u8 protocol; |
| 455 | /* One of values in "enum tomoyo_network_acl_index". */ |
| 456 | u8 operation; |
| 457 | bool is_ipv6; |
| 458 | } inet_network; |
| 459 | struct { |
| 460 | const struct tomoyo_path_info *address; |
| 461 | /* One of values smaller than TOMOYO_SOCK_MAX. */ |
| 462 | u8 protocol; |
| 463 | /* One of values in "enum tomoyo_network_acl_index". */ |
| 464 | u8 operation; |
| 465 | } unix_network; |
| 466 | struct { |
Tetsuo Handa | cf6e9a6 | 2010-06-16 16:21:36 +0900 | [diff] [blame] | 467 | const struct tomoyo_path_info *type; |
| 468 | const struct tomoyo_path_info *dir; |
| 469 | const struct tomoyo_path_info *dev; |
| 470 | unsigned long flags; |
| 471 | int need_dev; |
| 472 | } mount; |
| 473 | } param; |
| 474 | u8 param_type; |
| 475 | bool granted; |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 476 | u8 retry; |
| 477 | u8 profile; |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 478 | u8 mode; /* One of tomoyo_mode_index . */ |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 479 | u8 type; |
Tetsuo Handa | cb0abe6 | 2010-05-17 10:08:05 +0900 | [diff] [blame] | 480 | }; |
| 481 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 482 | /* Structure for holding a token. */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 483 | struct tomoyo_path_info { |
| 484 | const char *name; |
| 485 | u32 hash; /* = full_name_hash(name, strlen(name)) */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 486 | u16 const_len; /* = tomoyo_const_part_length(name) */ |
| 487 | bool is_dir; /* = tomoyo_strendswith(name, "/") */ |
| 488 | bool is_patterned; /* = tomoyo_path_contains_pattern(name) */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 489 | }; |
| 490 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 491 | /* Structure for holding string data. */ |
Tetsuo Handa | e2bf690 | 2010-06-25 11:16:00 +0900 | [diff] [blame] | 492 | struct tomoyo_name { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 493 | struct tomoyo_shared_acl_head head; |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 494 | struct tomoyo_path_info entry; |
| 495 | }; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 496 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 497 | /* Structure for holding a word. */ |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 498 | struct tomoyo_name_union { |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 499 | /* Either @filename or @group is NULL. */ |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 500 | const struct tomoyo_path_info *filename; |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 501 | struct tomoyo_group *group; |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 502 | }; |
| 503 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 504 | /* Structure for holding a number. */ |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 505 | struct tomoyo_number_union { |
| 506 | unsigned long values[2]; |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 507 | struct tomoyo_group *group; /* Maybe NULL. */ |
| 508 | /* One of values in "enum tomoyo_value_type". */ |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 509 | u8 value_type[2]; |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 510 | }; |
| 511 | |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 512 | /* Structure for holding an IP address. */ |
| 513 | struct tomoyo_ipaddr_union { |
| 514 | struct in6_addr ip[2]; /* Big endian. */ |
| 515 | struct tomoyo_group *group; /* Pointer to address group. */ |
| 516 | bool is_ipv6; /* Valid only if @group == NULL. */ |
| 517 | }; |
| 518 | |
| 519 | /* Structure for "path_group"/"number_group"/"address_group" directive. */ |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 520 | struct tomoyo_group { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 521 | struct tomoyo_shared_acl_head head; |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 522 | const struct tomoyo_path_info *group_name; |
| 523 | struct list_head member_list; |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 524 | }; |
| 525 | |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 526 | /* Structure for "path_group" directive. */ |
| 527 | struct tomoyo_path_group { |
Tetsuo Handa | 82e0f00 | 2010-06-15 09:22:42 +0900 | [diff] [blame] | 528 | struct tomoyo_acl_head head; |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 529 | const struct tomoyo_path_info *member_name; |
| 530 | }; |
| 531 | |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 532 | /* Structure for "number_group" directive. */ |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 533 | struct tomoyo_number_group { |
Tetsuo Handa | 82e0f00 | 2010-06-15 09:22:42 +0900 | [diff] [blame] | 534 | struct tomoyo_acl_head head; |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 535 | struct tomoyo_number_union number; |
| 536 | }; |
| 537 | |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 538 | /* Structure for "address_group" directive. */ |
| 539 | struct tomoyo_address_group { |
| 540 | struct tomoyo_acl_head head; |
| 541 | /* Structure for holding an IP address. */ |
| 542 | struct tomoyo_ipaddr_union address; |
| 543 | }; |
| 544 | |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 545 | /* Subset of "struct stat". Used by conditional ACL and audit logs. */ |
| 546 | struct tomoyo_mini_stat { |
| 547 | uid_t uid; |
| 548 | gid_t gid; |
| 549 | ino_t ino; |
| 550 | mode_t mode; |
| 551 | dev_t dev; |
| 552 | dev_t rdev; |
| 553 | }; |
| 554 | |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 555 | /* Structure for dumping argv[] and envp[] of "struct linux_binprm". */ |
| 556 | struct tomoyo_page_dump { |
| 557 | struct page *page; /* Previously dumped page. */ |
| 558 | char *data; /* Contents of "page". Size is PAGE_SIZE. */ |
| 559 | }; |
| 560 | |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 561 | /* Structure for attribute checks in addition to pathname checks. */ |
| 562 | struct tomoyo_obj_info { |
| 563 | /* |
| 564 | * True if tomoyo_get_attributes() was already called, false otherwise. |
| 565 | */ |
| 566 | bool validate_done; |
| 567 | /* True if @stat[] is valid. */ |
| 568 | bool stat_valid[TOMOYO_MAX_PATH_STAT]; |
| 569 | /* First pathname. Initialized with { NULL, NULL } if no path. */ |
| 570 | struct path path1; |
| 571 | /* Second pathname. Initialized with { NULL, NULL } if no path. */ |
| 572 | struct path path2; |
| 573 | /* |
| 574 | * Information on @path1, @path1's parent directory, @path2, @path2's |
| 575 | * parent directory. |
| 576 | */ |
| 577 | struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT]; |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 578 | /* |
| 579 | * Content of symbolic link to be created. NULL for operations other |
| 580 | * than symlink(). |
| 581 | */ |
| 582 | struct tomoyo_path_info *symlink_target; |
| 583 | }; |
| 584 | |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 585 | /* Structure for argv[]. */ |
| 586 | struct tomoyo_argv { |
| 587 | unsigned long index; |
| 588 | const struct tomoyo_path_info *value; |
| 589 | bool is_not; |
| 590 | }; |
| 591 | |
| 592 | /* Structure for envp[]. */ |
| 593 | struct tomoyo_envp { |
| 594 | const struct tomoyo_path_info *name; |
| 595 | const struct tomoyo_path_info *value; |
| 596 | bool is_not; |
| 597 | }; |
| 598 | |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 599 | /* Structure for execve() operation. */ |
| 600 | struct tomoyo_execve { |
| 601 | struct tomoyo_request_info r; |
| 602 | struct tomoyo_obj_info obj; |
| 603 | struct linux_binprm *bprm; |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 604 | /* For dumping argv[] and envp[]. */ |
| 605 | struct tomoyo_page_dump dump; |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 606 | /* For temporary use. */ |
| 607 | char *tmp; /* Size is TOMOYO_EXEC_TMPSIZE bytes */ |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 608 | }; |
| 609 | |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 610 | /* Structure for entries which follows "struct tomoyo_condition". */ |
| 611 | struct tomoyo_condition_element { |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 612 | /* |
| 613 | * Left hand operand. A "struct tomoyo_argv" for TOMOYO_ARGV_ENTRY, a |
| 614 | * "struct tomoyo_envp" for TOMOYO_ENVP_ENTRY is attached to the tail |
| 615 | * of the array of this struct. |
| 616 | */ |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 617 | u8 left; |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 618 | /* |
| 619 | * Right hand operand. A "struct tomoyo_number_union" for |
| 620 | * TOMOYO_NUMBER_UNION, a "struct tomoyo_name_union" for |
| 621 | * TOMOYO_NAME_UNION is attached to the tail of the array of this |
| 622 | * struct. |
| 623 | */ |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 624 | u8 right; |
| 625 | /* Equation operator. True if equals or overlaps, false otherwise. */ |
| 626 | bool equals; |
| 627 | }; |
| 628 | |
| 629 | /* Structure for optional arguments. */ |
| 630 | struct tomoyo_condition { |
| 631 | struct tomoyo_shared_acl_head head; |
| 632 | u32 size; /* Memory size allocated for this entry. */ |
| 633 | u16 condc; /* Number of conditions in this struct. */ |
| 634 | u16 numbers_count; /* Number of "struct tomoyo_number_union values". */ |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 635 | u16 names_count; /* Number of "struct tomoyo_name_union names". */ |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 636 | u16 argc; /* Number of "struct tomoyo_argv". */ |
| 637 | u16 envc; /* Number of "struct tomoyo_envp". */ |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 638 | /* |
| 639 | * struct tomoyo_condition_element condition[condc]; |
| 640 | * struct tomoyo_number_union values[numbers_count]; |
Tetsuo Handa | 2ca9bf4 | 2011-07-08 13:23:44 +0900 | [diff] [blame] | 641 | * struct tomoyo_name_union names[names_count]; |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 642 | * struct tomoyo_argv argv[argc]; |
| 643 | * struct tomoyo_envp envp[envc]; |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 644 | */ |
| 645 | }; |
| 646 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 647 | /* Common header for individual entries. */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 648 | struct tomoyo_acl_info { |
| 649 | struct list_head list; |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 650 | struct tomoyo_condition *cond; /* Maybe NULL. */ |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 651 | bool is_deleted; |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 652 | u8 type; /* One of values in "enum tomoyo_acl_entry_type_index". */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 653 | } __packed; |
| 654 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 655 | /* Structure for domain information. */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 656 | struct tomoyo_domain_info { |
| 657 | struct list_head list; |
| 658 | struct list_head acl_info_list; |
| 659 | /* Name of this domain. Never NULL. */ |
| 660 | const struct tomoyo_path_info *domainname; |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 661 | /* Namespace for this domain. Never NULL. */ |
| 662 | struct tomoyo_policy_namespace *ns; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 663 | u8 profile; /* Profile number to use. */ |
Tetsuo Handa | 3299714 | 2011-06-26 23:19:28 +0900 | [diff] [blame] | 664 | u8 group; /* Group number to use. */ |
Tetsuo Handa | a0558fc | 2009-04-06 20:49:14 +0900 | [diff] [blame] | 665 | bool is_deleted; /* Delete flag. */ |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 666 | bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS]; |
Tetsuo Handa | ec8e6a4 | 2010-02-11 09:43:20 +0900 | [diff] [blame] | 667 | atomic_t users; /* Number of referring credentials. */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 668 | }; |
| 669 | |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 670 | /* |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 671 | * Structure for "file execute", "file read", "file write", "file append", |
| 672 | * "file unlink", "file getattr", "file rmdir", "file truncate", |
| 673 | * "file symlink", "file chroot" and "file unmount" directive. |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 674 | */ |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 675 | struct tomoyo_path_acl { |
| 676 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */ |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 677 | u16 perm; /* Bitmask of values in "enum tomoyo_path_acl_index". */ |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 678 | struct tomoyo_name_union name; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 679 | }; |
| 680 | |
Tetsuo Handa | c3fa109 | 2009-06-08 12:37:39 +0900 | [diff] [blame] | 681 | /* |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 682 | * Structure for "file create", "file mkdir", "file mkfifo", "file mksock", |
| 683 | * "file ioctl", "file chmod", "file chown" and "file chgrp" directive. |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 684 | */ |
| 685 | struct tomoyo_path_number_acl { |
| 686 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */ |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 687 | /* Bitmask of values in "enum tomoyo_path_number_acl_index". */ |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 688 | u8 perm; |
| 689 | struct tomoyo_name_union name; |
| 690 | struct tomoyo_number_union number; |
| 691 | }; |
| 692 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 693 | /* Structure for "file mkblock" and "file mkchar" directive. */ |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 694 | struct tomoyo_mkdev_acl { |
| 695 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */ |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 696 | u8 perm; /* Bitmask of values in "enum tomoyo_mkdev_acl_index". */ |
Tetsuo Handa | a1f9bb6 | 2010-05-17 10:09:15 +0900 | [diff] [blame] | 697 | struct tomoyo_name_union name; |
| 698 | struct tomoyo_number_union mode; |
| 699 | struct tomoyo_number_union major; |
| 700 | struct tomoyo_number_union minor; |
| 701 | }; |
| 702 | |
| 703 | /* |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 704 | * Structure for "file rename", "file link" and "file pivot_root" directive. |
Tetsuo Handa | c3fa109 | 2009-06-08 12:37:39 +0900 | [diff] [blame] | 705 | */ |
Tetsuo Handa | 7ef6123 | 2010-02-16 08:03:30 +0900 | [diff] [blame] | 706 | struct tomoyo_path2_acl { |
| 707 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */ |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 708 | u8 perm; /* Bitmask of values in "enum tomoyo_path2_acl_index". */ |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 709 | struct tomoyo_name_union name1; |
| 710 | struct tomoyo_name_union name2; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 711 | }; |
| 712 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 713 | /* Structure for "file mount" directive. */ |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 714 | struct tomoyo_mount_acl { |
| 715 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */ |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 716 | struct tomoyo_name_union dev_name; |
| 717 | struct tomoyo_name_union dir_name; |
| 718 | struct tomoyo_name_union fs_type; |
| 719 | struct tomoyo_number_union flags; |
| 720 | }; |
| 721 | |
Tetsuo Handa | d58e0da | 2011-09-10 15:22:48 +0900 | [diff] [blame] | 722 | /* Structure for "misc env" directive in domain policy. */ |
| 723 | struct tomoyo_env_acl { |
| 724 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_ENV_ACL */ |
| 725 | const struct tomoyo_path_info *env; /* environment variable */ |
| 726 | }; |
| 727 | |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 728 | /* Structure for "network inet" directive. */ |
| 729 | struct tomoyo_inet_acl { |
| 730 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_INET_ACL */ |
| 731 | u8 protocol; |
| 732 | u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */ |
| 733 | struct tomoyo_ipaddr_union address; |
| 734 | struct tomoyo_number_union port; |
| 735 | }; |
| 736 | |
| 737 | /* Structure for "network unix" directive. */ |
| 738 | struct tomoyo_unix_acl { |
| 739 | struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_UNIX_ACL */ |
| 740 | u8 protocol; |
| 741 | u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */ |
| 742 | struct tomoyo_name_union name; |
| 743 | }; |
| 744 | |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 745 | /* Structure for holding a line from /sys/kernel/security/tomoyo/ interface. */ |
| 746 | struct tomoyo_acl_param { |
| 747 | char *data; |
| 748 | struct list_head *list; |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 749 | struct tomoyo_policy_namespace *ns; |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 750 | bool is_delete; |
| 751 | }; |
| 752 | |
Tetsuo Handa | 0d2171d | 2011-06-26 23:17:46 +0900 | [diff] [blame] | 753 | #define TOMOYO_MAX_IO_READ_QUEUE 64 |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 754 | |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 755 | /* |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 756 | * Structure for reading/writing policy via /sys/kernel/security/tomoyo |
| 757 | * interfaces. |
Tetsuo Handa | c3fa109 | 2009-06-08 12:37:39 +0900 | [diff] [blame] | 758 | */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 759 | struct tomoyo_io_buffer { |
Tetsuo Handa | 8fbe71f | 2010-06-16 16:29:59 +0900 | [diff] [blame] | 760 | void (*read) (struct tomoyo_io_buffer *); |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 761 | int (*write) (struct tomoyo_io_buffer *); |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 762 | int (*poll) (struct file *file, poll_table *wait); |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 763 | /* Exclusive lock for this structure. */ |
| 764 | struct mutex io_sem; |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 765 | char __user *read_user_buf; |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 766 | size_t read_user_buf_avail; |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 767 | struct { |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 768 | struct list_head *ns; |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 769 | struct list_head *domain; |
| 770 | struct list_head *group; |
| 771 | struct list_head *acl; |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 772 | size_t avail; |
| 773 | unsigned int step; |
| 774 | unsigned int query_index; |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 775 | u16 index; |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 776 | u16 cond_index; |
Tetsuo Handa | 3299714 | 2011-06-26 23:19:28 +0900 | [diff] [blame] | 777 | u8 acl_group_index; |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 778 | u8 cond_step; |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 779 | u8 bit; |
| 780 | u8 w_pos; |
| 781 | bool eof; |
| 782 | bool print_this_domain_only; |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 783 | bool print_transition_related_only; |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 784 | bool print_cond_part; |
Tetsuo Handa | f23571e | 2010-06-24 14:57:16 +0900 | [diff] [blame] | 785 | const char *w[TOMOYO_MAX_IO_READ_QUEUE]; |
| 786 | } r; |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 787 | struct { |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 788 | struct tomoyo_policy_namespace *ns; |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 789 | /* The position currently writing to. */ |
| 790 | struct tomoyo_domain_info *domain; |
| 791 | /* Bytes available for writing. */ |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 792 | size_t avail; |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 793 | bool is_delete; |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 794 | } w; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 795 | /* Buffer for reading. */ |
| 796 | char *read_buf; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 797 | /* Size of read buffer. */ |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 798 | size_t readbuf_size; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 799 | /* Buffer for writing. */ |
| 800 | char *write_buf; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 801 | /* Size of write buffer. */ |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 802 | size_t writebuf_size; |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 803 | /* Type of this interface. */ |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 804 | enum tomoyo_securityfs_interface_index type; |
Tetsuo Handa | 2e503bb | 2011-06-26 23:20:55 +0900 | [diff] [blame] | 805 | /* Users counter protected by tomoyo_io_buffer_list_lock. */ |
| 806 | u8 users; |
| 807 | /* List for telling GC not to kfree() elements. */ |
| 808 | struct list_head list; |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 809 | }; |
| 810 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 811 | /* |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 812 | * Structure for "initialize_domain"/"no_initialize_domain"/"keep_domain"/ |
| 813 | * "no_keep_domain" keyword. |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 814 | */ |
Tetsuo Handa | 5448ec4 | 2010-06-21 11:14:39 +0900 | [diff] [blame] | 815 | struct tomoyo_transition_control { |
Tetsuo Handa | 82e0f00 | 2010-06-15 09:22:42 +0900 | [diff] [blame] | 816 | struct tomoyo_acl_head head; |
Tetsuo Handa | 5448ec4 | 2010-06-21 11:14:39 +0900 | [diff] [blame] | 817 | u8 type; /* One of values in "enum tomoyo_transition_type". */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 818 | /* True if the domainname is tomoyo_get_last_name(). */ |
| 819 | bool is_last_name; |
Tetsuo Handa | 5448ec4 | 2010-06-21 11:14:39 +0900 | [diff] [blame] | 820 | const struct tomoyo_path_info *domainname; /* Maybe NULL */ |
| 821 | const struct tomoyo_path_info *program; /* Maybe NULL */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 822 | }; |
| 823 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 824 | /* Structure for "aggregator" keyword. */ |
Tetsuo Handa | e2bf690 | 2010-06-25 11:16:00 +0900 | [diff] [blame] | 825 | struct tomoyo_aggregator { |
Tetsuo Handa | 82e0f00 | 2010-06-15 09:22:42 +0900 | [diff] [blame] | 826 | struct tomoyo_acl_head head; |
Tetsuo Handa | 1084307 | 2010-06-03 20:38:03 +0900 | [diff] [blame] | 827 | const struct tomoyo_path_info *original_name; |
| 828 | const struct tomoyo_path_info *aggregated_name; |
Tetsuo Handa | 1084307 | 2010-06-03 20:38:03 +0900 | [diff] [blame] | 829 | }; |
| 830 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 831 | /* Structure for policy manager. */ |
Tetsuo Handa | e2bf690 | 2010-06-25 11:16:00 +0900 | [diff] [blame] | 832 | struct tomoyo_manager { |
Tetsuo Handa | 82e0f00 | 2010-06-15 09:22:42 +0900 | [diff] [blame] | 833 | struct tomoyo_acl_head head; |
| 834 | bool is_domain; /* True if manager is a domainname. */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 835 | /* A path to program or a domainname. */ |
| 836 | const struct tomoyo_path_info *manager; |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 837 | }; |
| 838 | |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 839 | struct tomoyo_preference { |
| 840 | unsigned int learning_max_entry; |
| 841 | bool enforcing_verbose; |
| 842 | bool learning_verbose; |
| 843 | bool permissive_verbose; |
| 844 | }; |
| 845 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 846 | /* Structure for /sys/kernel/security/tomnoyo/profile interface. */ |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 847 | struct tomoyo_profile { |
| 848 | const struct tomoyo_path_info *comment; |
| 849 | struct tomoyo_preference *learning; |
| 850 | struct tomoyo_preference *permissive; |
| 851 | struct tomoyo_preference *enforcing; |
| 852 | struct tomoyo_preference preference; |
| 853 | u8 default_config; |
| 854 | u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX]; |
Tetsuo Handa | d5ca172 | 2011-06-26 23:18:21 +0900 | [diff] [blame] | 855 | unsigned int pref[TOMOYO_MAX_PREF]; |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 856 | }; |
| 857 | |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 858 | /* Structure for representing YYYY/MM/DD hh/mm/ss. */ |
| 859 | struct tomoyo_time { |
| 860 | u16 year; |
| 861 | u8 month; |
| 862 | u8 day; |
| 863 | u8 hour; |
| 864 | u8 min; |
| 865 | u8 sec; |
| 866 | }; |
| 867 | |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 868 | /* Structure for policy namespace. */ |
| 869 | struct tomoyo_policy_namespace { |
| 870 | /* Profile table. Memory is allocated as needed. */ |
| 871 | struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES]; |
| 872 | /* List of "struct tomoyo_group". */ |
| 873 | struct list_head group_list[TOMOYO_MAX_GROUP]; |
| 874 | /* List of policy. */ |
| 875 | struct list_head policy_list[TOMOYO_MAX_POLICY]; |
| 876 | /* The global ACL referred by "use_group" keyword. */ |
| 877 | struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS]; |
| 878 | /* List for connecting to tomoyo_namespace_list list. */ |
| 879 | struct list_head namespace_list; |
| 880 | /* Profile version. Currently only 20100903 is defined. */ |
| 881 | unsigned int profile_version; |
| 882 | /* Name of this namespace (e.g. "<kernel>", "</usr/sbin/httpd>" ). */ |
| 883 | const char *name; |
| 884 | }; |
| 885 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 886 | /********** Function prototypes. **********/ |
| 887 | |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 888 | bool tomoyo_address_matches_group(const bool is_ipv6, const __be32 *address, |
| 889 | const struct tomoyo_group *group); |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 890 | bool tomoyo_compare_number_union(const unsigned long value, |
| 891 | const struct tomoyo_number_union *ptr); |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 892 | bool tomoyo_condition(struct tomoyo_request_info *r, |
| 893 | const struct tomoyo_condition *cond); |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 894 | bool tomoyo_correct_domain(const unsigned char *domainname); |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 895 | bool tomoyo_correct_path(const char *filename); |
| 896 | bool tomoyo_correct_word(const char *string); |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 897 | bool tomoyo_domain_def(const unsigned char *buffer); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 898 | bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r); |
Tetsuo Handa | 5b63685 | 2011-07-08 13:24:54 +0900 | [diff] [blame] | 899 | bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos, |
| 900 | struct tomoyo_page_dump *dump); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 901 | bool tomoyo_memory_ok(void *ptr); |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 902 | bool tomoyo_number_matches_group(const unsigned long min, |
| 903 | const unsigned long max, |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 904 | const struct tomoyo_group *group); |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 905 | bool tomoyo_parse_ipaddr_union(struct tomoyo_acl_param *param, |
| 906 | struct tomoyo_ipaddr_union *ptr); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 907 | bool tomoyo_parse_name_union(struct tomoyo_acl_param *param, |
| 908 | struct tomoyo_name_union *ptr); |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 909 | bool tomoyo_parse_number_union(struct tomoyo_acl_param *param, |
| 910 | struct tomoyo_number_union *ptr); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 911 | bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename, |
| 912 | const struct tomoyo_path_info *pattern); |
| 913 | bool tomoyo_permstr(const char *string, const char *keyword); |
| 914 | bool tomoyo_str_starts(char **src, const char *find); |
| 915 | char *tomoyo_encode(const char *str); |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 916 | char *tomoyo_encode2(const char *str, int str_len); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 917 | char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt, |
| 918 | va_list args); |
| 919 | char *tomoyo_read_token(struct tomoyo_acl_param *param); |
| 920 | char *tomoyo_realpath_from_path(struct path *path); |
| 921 | char *tomoyo_realpath_nofollow(const char *pathname); |
| 922 | const char *tomoyo_get_exe(void); |
| 923 | const char *tomoyo_yesno(const unsigned int value); |
| 924 | const struct tomoyo_path_info *tomoyo_compare_name_union |
| 925 | (const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr); |
| 926 | const struct tomoyo_path_info *tomoyo_get_name(const char *name); |
| 927 | const struct tomoyo_path_info *tomoyo_path_matches_group |
| 928 | (const struct tomoyo_path_info *pathname, const struct tomoyo_group *group); |
| 929 | int tomoyo_check_open_permission(struct tomoyo_domain_info *domain, |
| 930 | struct path *path, const int flag); |
| 931 | int tomoyo_close_control(struct tomoyo_io_buffer *head); |
Tetsuo Handa | d58e0da | 2011-09-10 15:22:48 +0900 | [diff] [blame] | 932 | int tomoyo_env_perm(struct tomoyo_request_info *r, const char *env); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 933 | int tomoyo_find_next_domain(struct linux_binprm *bprm); |
| 934 | int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile, |
| 935 | const u8 index); |
Tetsuo Handa | 2106ccd | 2010-05-17 10:10:31 +0900 | [diff] [blame] | 936 | int tomoyo_init_request_info(struct tomoyo_request_info *r, |
Tetsuo Handa | 57c2590 | 2010-06-03 20:38:44 +0900 | [diff] [blame] | 937 | struct tomoyo_domain_info *domain, |
| 938 | const u8 index); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 939 | int tomoyo_mkdev_perm(const u8 operation, struct path *path, |
| 940 | const unsigned int mode, unsigned int dev); |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 941 | int tomoyo_mount_permission(char *dev_name, struct path *path, |
| 942 | const char *type, unsigned long flags, |
| 943 | void *data_page); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 944 | int tomoyo_open_control(const u8 type, struct file *file); |
Tetsuo Handa | 97d6931 | 2010-02-16 09:46:15 +0900 | [diff] [blame] | 945 | int tomoyo_path2_perm(const u8 operation, struct path *path1, |
| 946 | struct path *path2); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 947 | int tomoyo_path_number_perm(const u8 operation, struct path *path, |
| 948 | unsigned long number); |
Tetsuo Handa | 97fb35e | 2011-07-08 13:25:53 +0900 | [diff] [blame] | 949 | int tomoyo_path_perm(const u8 operation, struct path *path, |
| 950 | const char *target); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 951 | int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation, |
| 952 | const struct tomoyo_path_info *filename); |
| 953 | int tomoyo_poll_control(struct file *file, poll_table *wait); |
| 954 | int tomoyo_poll_log(struct file *file, poll_table *wait); |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 955 | int tomoyo_socket_bind_permission(struct socket *sock, struct sockaddr *addr, |
| 956 | int addr_len); |
| 957 | int tomoyo_socket_connect_permission(struct socket *sock, |
| 958 | struct sockaddr *addr, int addr_len); |
| 959 | int tomoyo_socket_listen_permission(struct socket *sock); |
| 960 | int tomoyo_socket_sendmsg_permission(struct socket *sock, struct msghdr *msg, |
| 961 | int size); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 962 | int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...) |
| 963 | __printf(2, 3); |
Tetsuo Handa | 237ab45 | 2010-06-12 20:46:22 +0900 | [diff] [blame] | 964 | int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size, |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 965 | struct tomoyo_acl_param *param, |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 966 | bool (*check_duplicate) |
| 967 | (const struct tomoyo_acl_info *, |
| 968 | const struct tomoyo_acl_info *), |
| 969 | bool (*merge_duplicate) |
| 970 | (struct tomoyo_acl_info *, struct tomoyo_acl_info *, |
| 971 | const bool)); |
Tetsuo Handa | 36f5e1f | 2010-06-15 09:23:26 +0900 | [diff] [blame] | 972 | int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size, |
Tetsuo Handa | a238cf5 | 2011-06-26 23:17:10 +0900 | [diff] [blame] | 973 | struct tomoyo_acl_param *param, |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 974 | bool (*check_duplicate) |
| 975 | (const struct tomoyo_acl_head *, |
| 976 | const struct tomoyo_acl_head *)); |
| 977 | int tomoyo_write_aggregator(struct tomoyo_acl_param *param); |
| 978 | int tomoyo_write_file(struct tomoyo_acl_param *param); |
| 979 | int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type); |
Tetsuo Handa | d58e0da | 2011-09-10 15:22:48 +0900 | [diff] [blame] | 980 | int tomoyo_write_misc(struct tomoyo_acl_param *param); |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 981 | int tomoyo_write_inet_network(struct tomoyo_acl_param *param); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 982 | int tomoyo_write_transition_control(struct tomoyo_acl_param *param, |
| 983 | const u8 type); |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 984 | int tomoyo_write_unix_network(struct tomoyo_acl_param *param); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 985 | ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer, |
| 986 | const int buffer_len); |
| 987 | ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head, |
| 988 | const char __user *buffer, const int buffer_len); |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 989 | struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 990 | struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname, |
| 991 | const bool transit); |
| 992 | struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname); |
| 993 | struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param, |
| 994 | const u8 idx); |
| 995 | struct tomoyo_policy_namespace *tomoyo_assign_namespace |
| 996 | (const char *domainname); |
| 997 | struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns, |
| 998 | const u8 profile); |
| 999 | unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain, |
| 1000 | const u8 index); |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 1001 | u8 tomoyo_parse_ulong(unsigned long *result, char **str); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1002 | void *tomoyo_commit_ok(void *data, const unsigned int size); |
| 1003 | void __init tomoyo_load_builtin_policy(void); |
| 1004 | void __init tomoyo_mm_init(void); |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 1005 | void tomoyo_check_acl(struct tomoyo_request_info *r, |
Tetsuo Handa | 484ca79 | 2010-07-29 14:29:55 +0900 | [diff] [blame] | 1006 | bool (*check_entry) (struct tomoyo_request_info *, |
Tetsuo Handa | 99a8525 | 2010-06-16 16:22:51 +0900 | [diff] [blame] | 1007 | const struct tomoyo_acl_info *)); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1008 | void tomoyo_check_profile(void); |
| 1009 | void tomoyo_convert_time(time_t time, struct tomoyo_time *stamp); |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 1010 | void tomoyo_del_condition(struct list_head *element); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1011 | void tomoyo_fill_path_info(struct tomoyo_path_info *ptr); |
Tetsuo Handa | 8761afd | 2011-07-08 13:22:41 +0900 | [diff] [blame] | 1012 | void tomoyo_get_attributes(struct tomoyo_obj_info *obj); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1013 | void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns); |
| 1014 | void tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...) |
| 1015 | __printf(2, 3); |
| 1016 | void tomoyo_load_policy(const char *filename); |
| 1017 | void tomoyo_memory_free(void *ptr); |
| 1018 | void tomoyo_normalize_line(unsigned char *buffer); |
| 1019 | void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register); |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 1020 | void tomoyo_print_ip(char *buf, const unsigned int size, |
| 1021 | const struct tomoyo_ipaddr_union *ptr); |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1022 | void tomoyo_print_ulong(char *buffer, const int buffer_len, |
| 1023 | const unsigned long value, const u8 type); |
| 1024 | void tomoyo_put_name_union(struct tomoyo_name_union *ptr); |
| 1025 | void tomoyo_put_number_union(struct tomoyo_number_union *ptr); |
| 1026 | void tomoyo_read_log(struct tomoyo_io_buffer *head); |
| 1027 | void tomoyo_update_stat(const u8 index); |
| 1028 | void tomoyo_warn_oom(const char *function); |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 1029 | void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...) |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1030 | __printf(2, 3); |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 1031 | void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt, |
| 1032 | va_list args); |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 1033 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1034 | /********** External variable definitions. **********/ |
| 1035 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1036 | extern bool tomoyo_policy_loaded; |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 1037 | extern const char * const tomoyo_condition_keyword |
| 1038 | [TOMOYO_MAX_CONDITION_KEYWORD]; |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1039 | extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS]; |
| 1040 | extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX |
| 1041 | + TOMOYO_MAX_MAC_CATEGORY_INDEX]; |
| 1042 | extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE]; |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 1043 | extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION]; |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 1044 | extern const char * const tomoyo_proto_keyword[TOMOYO_SOCK_MAX]; |
| 1045 | extern const char * const tomoyo_socket_keyword[TOMOYO_MAX_NETWORK_OPERATION]; |
Tetsuo Handa | 2c47ab9 | 2011-06-26 23:21:19 +0900 | [diff] [blame] | 1046 | extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX]; |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1047 | extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION]; |
Tetsuo Handa | 0d2171d | 2011-06-26 23:17:46 +0900 | [diff] [blame] | 1048 | extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION]; |
| 1049 | extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION]; |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 1050 | extern struct list_head tomoyo_condition_list; |
Tetsuo Handa | 3ddf17f | 2011-06-29 14:22:37 +0900 | [diff] [blame] | 1051 | extern struct list_head tomoyo_domain_list; |
| 1052 | extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH]; |
| 1053 | extern struct list_head tomoyo_namespace_list; |
| 1054 | extern struct mutex tomoyo_policy_lock; |
| 1055 | extern struct srcu_struct tomoyo_ss; |
| 1056 | extern struct tomoyo_domain_info tomoyo_kernel_domain; |
| 1057 | extern struct tomoyo_policy_namespace tomoyo_kernel_namespace; |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 1058 | extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT]; |
| 1059 | extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT]; |
Tetsuo Handa | 17fcfbd | 2010-05-17 10:11:36 +0900 | [diff] [blame] | 1060 | |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1061 | /********** Inlined functions. **********/ |
| 1062 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1063 | /** |
| 1064 | * tomoyo_read_lock - Take lock for protecting policy. |
| 1065 | * |
| 1066 | * Returns index number for tomoyo_read_unlock(). |
| 1067 | */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1068 | static inline int tomoyo_read_lock(void) |
| 1069 | { |
| 1070 | return srcu_read_lock(&tomoyo_ss); |
| 1071 | } |
| 1072 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1073 | /** |
| 1074 | * tomoyo_read_unlock - Release lock for protecting policy. |
| 1075 | * |
| 1076 | * @idx: Index number returned by tomoyo_read_lock(). |
| 1077 | * |
| 1078 | * Returns nothing. |
| 1079 | */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1080 | static inline void tomoyo_read_unlock(int idx) |
| 1081 | { |
| 1082 | srcu_read_unlock(&tomoyo_ss, idx); |
| 1083 | } |
| 1084 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1085 | /** |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 1086 | * tomoyo_sys_getppid - Copy of getppid(). |
| 1087 | * |
| 1088 | * Returns parent process's PID. |
| 1089 | * |
| 1090 | * Alpha does not have getppid() defined. To be able to build this module on |
| 1091 | * Alpha, I have to copy getppid() from kernel/timer.c. |
| 1092 | */ |
| 1093 | static inline pid_t tomoyo_sys_getppid(void) |
| 1094 | { |
| 1095 | pid_t pid; |
| 1096 | rcu_read_lock(); |
| 1097 | pid = task_tgid_vnr(current->real_parent); |
| 1098 | rcu_read_unlock(); |
| 1099 | return pid; |
| 1100 | } |
| 1101 | |
| 1102 | /** |
| 1103 | * tomoyo_sys_getpid - Copy of getpid(). |
| 1104 | * |
| 1105 | * Returns current thread's PID. |
| 1106 | * |
| 1107 | * Alpha does not have getpid() defined. To be able to build this module on |
| 1108 | * Alpha, I have to copy getpid() from kernel/timer.c. |
| 1109 | */ |
| 1110 | static inline pid_t tomoyo_sys_getpid(void) |
| 1111 | { |
| 1112 | return task_tgid_vnr(current); |
| 1113 | } |
| 1114 | |
| 1115 | /** |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1116 | * tomoyo_pathcmp - strcmp() for "struct tomoyo_path_info" structure. |
| 1117 | * |
| 1118 | * @a: Pointer to "struct tomoyo_path_info". |
| 1119 | * @b: Pointer to "struct tomoyo_path_info". |
| 1120 | * |
| 1121 | * Returns true if @a == @b, false otherwise. |
| 1122 | */ |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1123 | static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a, |
| 1124 | const struct tomoyo_path_info *b) |
| 1125 | { |
| 1126 | return a->hash != b->hash || strcmp(a->name, b->name); |
| 1127 | } |
| 1128 | |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1129 | /** |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1130 | * tomoyo_put_name - Drop reference on "struct tomoyo_name". |
| 1131 | * |
| 1132 | * @name: Pointer to "struct tomoyo_path_info". Maybe NULL. |
| 1133 | * |
| 1134 | * Returns nothing. |
| 1135 | */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1136 | static inline void tomoyo_put_name(const struct tomoyo_path_info *name) |
| 1137 | { |
| 1138 | if (name) { |
Tetsuo Handa | e2bf690 | 2010-06-25 11:16:00 +0900 | [diff] [blame] | 1139 | struct tomoyo_name *ptr = |
| 1140 | container_of(name, typeof(*ptr), entry); |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 1141 | atomic_dec(&ptr->head.users); |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1142 | } |
| 1143 | } |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1144 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1145 | /** |
Tetsuo Handa | 2066a36 | 2011-07-08 13:21:37 +0900 | [diff] [blame] | 1146 | * tomoyo_put_condition - Drop reference on "struct tomoyo_condition". |
| 1147 | * |
| 1148 | * @cond: Pointer to "struct tomoyo_condition". Maybe NULL. |
| 1149 | * |
| 1150 | * Returns nothing. |
| 1151 | */ |
| 1152 | static inline void tomoyo_put_condition(struct tomoyo_condition *cond) |
| 1153 | { |
| 1154 | if (cond) |
| 1155 | atomic_dec(&cond->head.users); |
| 1156 | } |
| 1157 | |
| 1158 | /** |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1159 | * tomoyo_put_group - Drop reference on "struct tomoyo_group". |
| 1160 | * |
| 1161 | * @group: Pointer to "struct tomoyo_group". Maybe NULL. |
| 1162 | * |
| 1163 | * Returns nothing. |
| 1164 | */ |
Tetsuo Handa | a98aa4d | 2010-06-17 16:52:29 +0900 | [diff] [blame] | 1165 | static inline void tomoyo_put_group(struct tomoyo_group *group) |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 1166 | { |
| 1167 | if (group) |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 1168 | atomic_dec(&group->head.users); |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 1169 | } |
| 1170 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1171 | /** |
| 1172 | * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread. |
| 1173 | * |
| 1174 | * Returns pointer to "struct tomoyo_domain_info" for current thread. |
| 1175 | */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1176 | static inline struct tomoyo_domain_info *tomoyo_domain(void) |
| 1177 | { |
| 1178 | return current_cred()->security; |
| 1179 | } |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1180 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1181 | /** |
| 1182 | * tomoyo_real_domain - Get "struct tomoyo_domain_info" for specified thread. |
| 1183 | * |
| 1184 | * @task: Pointer to "struct task_struct". |
| 1185 | * |
| 1186 | * Returns pointer to "struct tomoyo_security" for specified thread. |
| 1187 | */ |
Tetsuo Handa | 76bb089 | 2010-02-11 09:42:40 +0900 | [diff] [blame] | 1188 | static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct |
| 1189 | *task) |
| 1190 | { |
| 1191 | return task_cred_xxx(task, security); |
| 1192 | } |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1193 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1194 | /** |
| 1195 | * tomoyo_same_name_union - Check for duplicated "struct tomoyo_name_union" entry. |
| 1196 | * |
| 1197 | * @a: Pointer to "struct tomoyo_name_union". |
| 1198 | * @b: Pointer to "struct tomoyo_name_union". |
| 1199 | * |
| 1200 | * Returns true if @a == @b, false otherwise. |
| 1201 | */ |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 1202 | static inline bool tomoyo_same_name_union |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1203 | (const struct tomoyo_name_union *a, const struct tomoyo_name_union *b) |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 1204 | { |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 1205 | return a->filename == b->filename && a->group == b->group; |
Tetsuo Handa | 7762fbf | 2010-05-10 17:30:26 +0900 | [diff] [blame] | 1206 | } |
| 1207 | |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1208 | /** |
| 1209 | * tomoyo_same_number_union - Check for duplicated "struct tomoyo_number_union" entry. |
| 1210 | * |
| 1211 | * @a: Pointer to "struct tomoyo_number_union". |
| 1212 | * @b: Pointer to "struct tomoyo_number_union". |
| 1213 | * |
| 1214 | * Returns true if @a == @b, false otherwise. |
| 1215 | */ |
Tetsuo Handa | 7509315 | 2010-06-16 16:23:55 +0900 | [diff] [blame] | 1216 | static inline bool tomoyo_same_number_union |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1217 | (const struct tomoyo_number_union *a, const struct tomoyo_number_union *b) |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 1218 | { |
Tetsuo Handa | b5bc60b | 2011-06-26 23:16:03 +0900 | [diff] [blame] | 1219 | return a->values[0] == b->values[0] && a->values[1] == b->values[1] && |
Tetsuo Handa | 0df7e8b | 2011-06-26 23:16:36 +0900 | [diff] [blame] | 1220 | a->group == b->group && a->value_type[0] == b->value_type[0] && |
| 1221 | a->value_type[1] == b->value_type[1]; |
Tetsuo Handa | 4c3e9e2 | 2010-05-17 10:06:58 +0900 | [diff] [blame] | 1222 | } |
| 1223 | |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 1224 | /** |
Tetsuo Handa | 059d84d | 2011-09-10 15:23:54 +0900 | [diff] [blame^] | 1225 | * tomoyo_same_ipaddr_union - Check for duplicated "struct tomoyo_ipaddr_union" entry. |
| 1226 | * |
| 1227 | * @a: Pointer to "struct tomoyo_ipaddr_union". |
| 1228 | * @b: Pointer to "struct tomoyo_ipaddr_union". |
| 1229 | * |
| 1230 | * Returns true if @a == @b, false otherwise. |
| 1231 | */ |
| 1232 | static inline bool tomoyo_same_ipaddr_union |
| 1233 | (const struct tomoyo_ipaddr_union *a, const struct tomoyo_ipaddr_union *b) |
| 1234 | { |
| 1235 | return !memcmp(a->ip, b->ip, sizeof(a->ip)) && a->group == b->group && |
| 1236 | a->is_ipv6 == b->is_ipv6; |
| 1237 | } |
| 1238 | |
| 1239 | /** |
Tetsuo Handa | bd03a3e | 2011-06-26 23:19:52 +0900 | [diff] [blame] | 1240 | * tomoyo_current_namespace - Get "struct tomoyo_policy_namespace" for current thread. |
| 1241 | * |
| 1242 | * Returns pointer to "struct tomoyo_policy_namespace" for current thread. |
| 1243 | */ |
| 1244 | static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void) |
| 1245 | { |
| 1246 | return tomoyo_domain()->ns; |
| 1247 | } |
| 1248 | |
Tetsuo Handa | eadd99c | 2011-06-26 23:18:58 +0900 | [diff] [blame] | 1249 | #if defined(CONFIG_SLOB) |
| 1250 | |
| 1251 | /** |
| 1252 | * tomoyo_round2 - Round up to power of 2 for calculating memory usage. |
| 1253 | * |
| 1254 | * @size: Size to be rounded up. |
| 1255 | * |
| 1256 | * Returns @size. |
| 1257 | * |
| 1258 | * Since SLOB does not round up, this function simply returns @size. |
| 1259 | */ |
| 1260 | static inline int tomoyo_round2(size_t size) |
| 1261 | { |
| 1262 | return size; |
| 1263 | } |
| 1264 | |
| 1265 | #else |
| 1266 | |
| 1267 | /** |
| 1268 | * tomoyo_round2 - Round up to power of 2 for calculating memory usage. |
| 1269 | * |
| 1270 | * @size: Size to be rounded up. |
| 1271 | * |
| 1272 | * Returns rounded size. |
| 1273 | * |
| 1274 | * Strictly speaking, SLAB may be able to allocate (e.g.) 96 bytes instead of |
| 1275 | * (e.g.) 128 bytes. |
| 1276 | */ |
| 1277 | static inline int tomoyo_round2(size_t size) |
| 1278 | { |
| 1279 | #if PAGE_SIZE == 4096 |
| 1280 | size_t bsize = 32; |
| 1281 | #else |
| 1282 | size_t bsize = 64; |
| 1283 | #endif |
| 1284 | if (!size) |
| 1285 | return 0; |
| 1286 | while (size > bsize) |
| 1287 | bsize <<= 1; |
| 1288 | return bsize; |
| 1289 | } |
| 1290 | |
| 1291 | #endif |
| 1292 | |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1293 | /** |
| 1294 | * list_for_each_cookie - iterate over a list with cookie. |
| 1295 | * @pos: the &struct list_head to use as a loop cursor. |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1296 | * @head: the head for your list. |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1297 | */ |
Tetsuo Handa | 475e6fa | 2010-06-24 11:28:14 +0900 | [diff] [blame] | 1298 | #define list_for_each_cookie(pos, head) \ |
| 1299 | if (!pos) \ |
| 1300 | pos = srcu_dereference((head)->next, &tomoyo_ss); \ |
| 1301 | for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss)) |
Tetsuo Handa | fdb8ebb | 2009-12-08 09:34:43 +0900 | [diff] [blame] | 1302 | |
Kentaro Takeda | 9590837 | 2009-02-05 17:18:13 +0900 | [diff] [blame] | 1303 | #endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */ |