blob: a2bc33fc60b64ef9b3286dd9d470f0c08d567d4a [file] [log] [blame]
Kentaro Takeda95908372009-02-05 17:18:13 +09001/*
2 * security/tomoyo/common.h
3 *
Tetsuo Handa76bb0892010-02-11 09:42:40 +09004 * Header file for TOMOYO.
Kentaro Takeda95908372009-02-05 17:18:13 +09005 *
Tetsuo Handa843d1832011-09-14 17:03:19 +09006 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Kentaro Takeda95908372009-02-05 17:18:13 +09007 */
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 Handa76bb0892010-02-11 09:42:40 +090022#include <linux/cred.h>
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +090023#include <linux/poll.h>
Tetsuo Handa2066a362011-07-08 13:21:37 +090024#include <linux/binfmts.h>
25#include <linux/highmem.h>
Tetsuo Handa059d84d2011-09-10 15:23:54 +090026#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 Takeda95908372009-02-05 17:18:13 +090036
Tetsuo Handa76bb0892010-02-11 09:42:40 +090037/********** 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 Handa059d84d2011-09-10 15:23:54 +090047/*
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 Handac8c57e82010-06-03 20:36:43 +090053#define TOMOYO_EXEC_TMPSIZE 4096
Tetsuo Handa76bb0892010-02-11 09:42:40 +090054
55/* Profile number is an integer between 0 and 255. */
56#define TOMOYO_MAX_PROFILES 256
57
Tetsuo Handa32997142011-06-26 23:19:28 +090058/* Group number is an integer between 0 and 255. */
59#define TOMOYO_MAX_ACL_GROUPS 256
60
Tetsuo Handa2066a362011-07-08 13:21:37 +090061/* Index numbers for "struct tomoyo_condition". */
62enum 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 Handa5b636852011-07-08 13:24:54 +090073 TOMOYO_EXEC_ARGC, /* "struct linux_binprm *"->argc */
74 TOMOYO_EXEC_ENVC, /* "struct linux_binprm *"->envc */
Tetsuo Handa8761afd2011-07-08 13:22:41 +090075 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 Handa2ca9bf42011-07-08 13:23:44 +090094 TOMOYO_EXEC_REALPATH,
95 TOMOYO_SYMLINK_TARGET,
Tetsuo Handa8761afd2011-07-08 13:22:41 +090096 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 Handa2066a362011-07-08 13:21:37 +0900122 TOMOYO_MAX_CONDITION_KEYWORD,
123 TOMOYO_NUMBER_UNION,
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900124 TOMOYO_NAME_UNION,
Tetsuo Handa5b636852011-07-08 13:24:54 +0900125 TOMOYO_ARGV_ENTRY,
126 TOMOYO_ENVP_ENTRY,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900127};
128
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900129
130/* Index numbers for stat(). */
131enum 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 Handab5bc60b2011-06-26 23:16:03 +0900140/* Index numbers for operation mode. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900141enum tomoyo_mode_index {
142 TOMOYO_CONFIG_DISABLED,
143 TOMOYO_CONFIG_LEARNING,
144 TOMOYO_CONFIG_PERMISSIVE,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900145 TOMOYO_CONFIG_ENFORCING,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900146 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 Handacb0abe62010-05-17 10:08:05 +0900150};
151
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900152/* Index numbers for entry type. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900153enum tomoyo_policy_id {
154 TOMOYO_ID_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900155 TOMOYO_ID_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900156 TOMOYO_ID_PATH_GROUP,
157 TOMOYO_ID_NUMBER_GROUP,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900158 TOMOYO_ID_TRANSITION_CONTROL,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900159 TOMOYO_ID_AGGREGATOR,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900160 TOMOYO_ID_MANAGER,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900161 TOMOYO_ID_CONDITION,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900162 TOMOYO_ID_NAME,
163 TOMOYO_ID_ACL,
164 TOMOYO_ID_DOMAIN,
165 TOMOYO_MAX_POLICY
166};
167
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900168/* Index numbers for domain's attributes. */
169enum 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 Handa1f067a62011-09-10 15:24:56 +0900182/* Index numbers for audit type. */
183enum tomoyo_grant_log {
184 /* Follow profile's configuration. */
185 TOMOYO_GRANTLOG_AUTO,
186 /* Do not generate grant log. */
187 TOMOYO_GRANTLOG_NO,
188 /* Generate grant_log. */
189 TOMOYO_GRANTLOG_YES,
190};
191
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900192/* Index numbers for group entries. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900193enum tomoyo_group_id {
194 TOMOYO_PATH_GROUP,
195 TOMOYO_NUMBER_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900196 TOMOYO_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900197 TOMOYO_MAX_GROUP
198};
199
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900200/* Index numbers for type of numeric values. */
201enum tomoyo_value_type {
202 TOMOYO_VALUE_TYPE_INVALID,
203 TOMOYO_VALUE_TYPE_DECIMAL,
204 TOMOYO_VALUE_TYPE_OCTAL,
205 TOMOYO_VALUE_TYPE_HEXADECIMAL,
206};
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900207
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900208/* Index numbers for domain transition control keywords. */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900209enum tomoyo_transition_type {
210 /* Do not change this order, */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900211 TOMOYO_TRANSITION_CONTROL_NO_RESET,
212 TOMOYO_TRANSITION_CONTROL_RESET,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900213 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
214 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
215 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
216 TOMOYO_TRANSITION_CONTROL_KEEP,
217 TOMOYO_MAX_TRANSITION_TYPE
218};
219
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900220/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900221enum tomoyo_acl_entry_type_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900222 TOMOYO_TYPE_PATH_ACL,
223 TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900224 TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handa75093152010-06-16 16:23:55 +0900225 TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900226 TOMOYO_TYPE_MOUNT_ACL,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900227 TOMOYO_TYPE_INET_ACL,
228 TOMOYO_TYPE_UNIX_ACL,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900229 TOMOYO_TYPE_ENV_ACL,
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900230 TOMOYO_TYPE_MANUAL_TASK_ACL,
Tetsuo Handa084da352010-02-15 15:10:39 +0900231};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900232
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900233/* Index numbers for access controls with one pathname. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900234enum tomoyo_path_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900235 TOMOYO_TYPE_EXECUTE,
236 TOMOYO_TYPE_READ,
237 TOMOYO_TYPE_WRITE,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900238 TOMOYO_TYPE_APPEND,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900239 TOMOYO_TYPE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900240 TOMOYO_TYPE_GETATTR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900241 TOMOYO_TYPE_RMDIR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900242 TOMOYO_TYPE_TRUNCATE,
243 TOMOYO_TYPE_SYMLINK,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900244 TOMOYO_TYPE_CHROOT,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900245 TOMOYO_TYPE_UMOUNT,
246 TOMOYO_MAX_PATH_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900247};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900248
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900249/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900250enum tomoyo_memory_stat_type {
251 TOMOYO_MEMORY_POLICY,
252 TOMOYO_MEMORY_AUDIT,
253 TOMOYO_MEMORY_QUERY,
254 TOMOYO_MAX_MEMORY_STAT
255};
256
Tetsuo Handa75093152010-06-16 16:23:55 +0900257enum tomoyo_mkdev_acl_index {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900258 TOMOYO_TYPE_MKBLOCK,
259 TOMOYO_TYPE_MKCHAR,
Tetsuo Handa75093152010-06-16 16:23:55 +0900260 TOMOYO_MAX_MKDEV_OPERATION
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900261};
262
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900263/* Index numbers for socket operations. */
264enum tomoyo_network_acl_index {
265 TOMOYO_NETWORK_BIND, /* bind() operation. */
266 TOMOYO_NETWORK_LISTEN, /* listen() operation. */
267 TOMOYO_NETWORK_CONNECT, /* connect() operation. */
268 TOMOYO_NETWORK_SEND, /* send() operation. */
269 TOMOYO_MAX_NETWORK_OPERATION
270};
271
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900272/* Index numbers for access controls with two pathnames. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900273enum tomoyo_path2_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900274 TOMOYO_TYPE_LINK,
275 TOMOYO_TYPE_RENAME,
276 TOMOYO_TYPE_PIVOT_ROOT,
277 TOMOYO_MAX_PATH2_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900278};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900279
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900280/* Index numbers for access controls with one pathname and one number. */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900281enum tomoyo_path_number_acl_index {
282 TOMOYO_TYPE_CREATE,
283 TOMOYO_TYPE_MKDIR,
284 TOMOYO_TYPE_MKFIFO,
285 TOMOYO_TYPE_MKSOCK,
286 TOMOYO_TYPE_IOCTL,
287 TOMOYO_TYPE_CHMOD,
288 TOMOYO_TYPE_CHOWN,
289 TOMOYO_TYPE_CHGRP,
290 TOMOYO_MAX_PATH_NUMBER_OPERATION
291};
292
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900293/* Index numbers for /sys/kernel/security/tomoyo/ interfaces. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900294enum tomoyo_securityfs_interface_index {
295 TOMOYO_DOMAINPOLICY,
296 TOMOYO_EXCEPTIONPOLICY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900297 TOMOYO_PROCESS_STATUS,
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900298 TOMOYO_STAT,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900299 TOMOYO_AUDIT,
Tetsuo Handa084da352010-02-15 15:10:39 +0900300 TOMOYO_VERSION,
301 TOMOYO_PROFILE,
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900302 TOMOYO_QUERY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900303 TOMOYO_MANAGER
304};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900305
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900306/* Index numbers for special mount operations. */
307enum tomoyo_special_mount {
308 TOMOYO_MOUNT_BIND, /* mount --bind /source /dest */
309 TOMOYO_MOUNT_MOVE, /* mount --move /old /new */
310 TOMOYO_MOUNT_REMOUNT, /* mount -o remount /dir */
311 TOMOYO_MOUNT_MAKE_UNBINDABLE, /* mount --make-unbindable /dir */
312 TOMOYO_MOUNT_MAKE_PRIVATE, /* mount --make-private /dir */
313 TOMOYO_MOUNT_MAKE_SLAVE, /* mount --make-slave /dir */
314 TOMOYO_MOUNT_MAKE_SHARED, /* mount --make-shared /dir */
315 TOMOYO_MAX_SPECIAL_MOUNT
316};
317
318/* Index numbers for functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900319enum tomoyo_mac_index {
320 TOMOYO_MAC_FILE_EXECUTE,
321 TOMOYO_MAC_FILE_OPEN,
322 TOMOYO_MAC_FILE_CREATE,
323 TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900324 TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900325 TOMOYO_MAC_FILE_MKDIR,
326 TOMOYO_MAC_FILE_RMDIR,
327 TOMOYO_MAC_FILE_MKFIFO,
328 TOMOYO_MAC_FILE_MKSOCK,
329 TOMOYO_MAC_FILE_TRUNCATE,
330 TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900331 TOMOYO_MAC_FILE_MKBLOCK,
332 TOMOYO_MAC_FILE_MKCHAR,
333 TOMOYO_MAC_FILE_LINK,
334 TOMOYO_MAC_FILE_RENAME,
335 TOMOYO_MAC_FILE_CHMOD,
336 TOMOYO_MAC_FILE_CHOWN,
337 TOMOYO_MAC_FILE_CHGRP,
338 TOMOYO_MAC_FILE_IOCTL,
339 TOMOYO_MAC_FILE_CHROOT,
340 TOMOYO_MAC_FILE_MOUNT,
341 TOMOYO_MAC_FILE_UMOUNT,
342 TOMOYO_MAC_FILE_PIVOT_ROOT,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900343 TOMOYO_MAC_NETWORK_INET_STREAM_BIND,
344 TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN,
345 TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT,
346 TOMOYO_MAC_NETWORK_INET_DGRAM_BIND,
347 TOMOYO_MAC_NETWORK_INET_DGRAM_SEND,
348 TOMOYO_MAC_NETWORK_INET_RAW_BIND,
349 TOMOYO_MAC_NETWORK_INET_RAW_SEND,
350 TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND,
351 TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN,
352 TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT,
353 TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND,
354 TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND,
355 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND,
356 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN,
357 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900358 TOMOYO_MAC_ENVIRON,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900359 TOMOYO_MAX_MAC_INDEX
360};
361
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900362/* Index numbers for category of functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900363enum tomoyo_mac_category_index {
364 TOMOYO_MAC_CATEGORY_FILE,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900365 TOMOYO_MAC_CATEGORY_NETWORK,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900366 TOMOYO_MAC_CATEGORY_MISC,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900367 TOMOYO_MAX_MAC_CATEGORY_INDEX
368};
369
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900370/*
371 * Retry this request. Returned by tomoyo_supervisor() if policy violation has
372 * occurred in enforcing mode and the userspace daemon decided to retry.
373 *
374 * We must choose a positive value in order to distinguish "granted" (which is
375 * 0) and "rejected" (which is a negative value) and "retry".
376 */
377#define TOMOYO_RETRY_REQUEST 1
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900378
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900379/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
380enum tomoyo_policy_stat_type {
381 /* Do not change this order. */
382 TOMOYO_STAT_POLICY_UPDATES,
383 TOMOYO_STAT_POLICY_LEARNING, /* == TOMOYO_CONFIG_LEARNING */
384 TOMOYO_STAT_POLICY_PERMISSIVE, /* == TOMOYO_CONFIG_PERMISSIVE */
385 TOMOYO_STAT_POLICY_ENFORCING, /* == TOMOYO_CONFIG_ENFORCING */
386 TOMOYO_MAX_POLICY_STAT
387};
388
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900389/* Index numbers for profile's PREFERENCE values. */
390enum tomoyo_pref_index {
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900391 TOMOYO_PREF_MAX_AUDIT_LOG,
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900392 TOMOYO_PREF_MAX_LEARNING_ENTRY,
393 TOMOYO_MAX_PREF
394};
395
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900396/********** Structure definitions. **********/
Kentaro Takeda95908372009-02-05 17:18:13 +0900397
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900398/* Common header for holding ACL entries. */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900399struct tomoyo_acl_head {
400 struct list_head list;
401 bool is_deleted;
402} __packed;
403
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900404/* Common header for shared entries. */
405struct tomoyo_shared_acl_head {
406 struct list_head list;
407 atomic_t users;
408} __packed;
409
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900410struct tomoyo_policy_namespace;
411
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900412/* Structure for request info. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900413struct tomoyo_request_info {
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900414 /*
415 * For holding parameters specific to operations which deal files.
416 * NULL if not dealing files.
417 */
418 struct tomoyo_obj_info *obj;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900419 /*
420 * For holding parameters specific to execve() request.
421 * NULL if not dealing do_execve().
422 */
423 struct tomoyo_execve *ee;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900424 struct tomoyo_domain_info *domain;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900425 /* For holding parameters. */
426 union {
427 struct {
428 const struct tomoyo_path_info *filename;
Tetsuo Handa484ca792010-07-29 14:29:55 +0900429 /* For using wildcards at tomoyo_find_next_domain(). */
430 const struct tomoyo_path_info *matched_path;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900431 /* One of values in "enum tomoyo_path_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900432 u8 operation;
433 } path;
434 struct {
435 const struct tomoyo_path_info *filename1;
436 const struct tomoyo_path_info *filename2;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900437 /* One of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900438 u8 operation;
439 } path2;
440 struct {
441 const struct tomoyo_path_info *filename;
442 unsigned int mode;
443 unsigned int major;
444 unsigned int minor;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900445 /* One of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900446 u8 operation;
447 } mkdev;
448 struct {
449 const struct tomoyo_path_info *filename;
450 unsigned long number;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900451 /*
452 * One of values in
453 * "enum tomoyo_path_number_acl_index".
454 */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900455 u8 operation;
456 } path_number;
457 struct {
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900458 const struct tomoyo_path_info *name;
459 } environ;
460 struct {
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900461 const __be32 *address;
462 u16 port;
463 /* One of values smaller than TOMOYO_SOCK_MAX. */
464 u8 protocol;
465 /* One of values in "enum tomoyo_network_acl_index". */
466 u8 operation;
467 bool is_ipv6;
468 } inet_network;
469 struct {
470 const struct tomoyo_path_info *address;
471 /* One of values smaller than TOMOYO_SOCK_MAX. */
472 u8 protocol;
473 /* One of values in "enum tomoyo_network_acl_index". */
474 u8 operation;
475 } unix_network;
476 struct {
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900477 const struct tomoyo_path_info *type;
478 const struct tomoyo_path_info *dir;
479 const struct tomoyo_path_info *dev;
480 unsigned long flags;
481 int need_dev;
482 } mount;
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900483 struct {
484 const struct tomoyo_path_info *domainname;
485 } task;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900486 } param;
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900487 struct tomoyo_acl_info *matched_acl;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900488 u8 param_type;
489 bool granted;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900490 u8 retry;
491 u8 profile;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900492 u8 mode; /* One of tomoyo_mode_index . */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900493 u8 type;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900494};
495
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900496/* Structure for holding a token. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900497struct tomoyo_path_info {
498 const char *name;
499 u32 hash; /* = full_name_hash(name, strlen(name)) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900500 u16 const_len; /* = tomoyo_const_part_length(name) */
501 bool is_dir; /* = tomoyo_strendswith(name, "/") */
502 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900503};
504
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900505/* Structure for holding string data. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900506struct tomoyo_name {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900507 struct tomoyo_shared_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900508 struct tomoyo_path_info entry;
509};
Kentaro Takeda95908372009-02-05 17:18:13 +0900510
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900511/* Structure for holding a word. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900512struct tomoyo_name_union {
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900513 /* Either @filename or @group is NULL. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900514 const struct tomoyo_path_info *filename;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900515 struct tomoyo_group *group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900516};
517
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900518/* Structure for holding a number. */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900519struct tomoyo_number_union {
520 unsigned long values[2];
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900521 struct tomoyo_group *group; /* Maybe NULL. */
522 /* One of values in "enum tomoyo_value_type". */
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900523 u8 value_type[2];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900524};
525
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900526/* Structure for holding an IP address. */
527struct tomoyo_ipaddr_union {
528 struct in6_addr ip[2]; /* Big endian. */
529 struct tomoyo_group *group; /* Pointer to address group. */
530 bool is_ipv6; /* Valid only if @group == NULL. */
531};
532
533/* Structure for "path_group"/"number_group"/"address_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900534struct tomoyo_group {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900535 struct tomoyo_shared_acl_head head;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900536 const struct tomoyo_path_info *group_name;
537 struct list_head member_list;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900538};
539
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900540/* Structure for "path_group" directive. */
541struct tomoyo_path_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900542 struct tomoyo_acl_head head;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900543 const struct tomoyo_path_info *member_name;
544};
545
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900546/* Structure for "number_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900547struct tomoyo_number_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900548 struct tomoyo_acl_head head;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900549 struct tomoyo_number_union number;
550};
551
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900552/* Structure for "address_group" directive. */
553struct tomoyo_address_group {
554 struct tomoyo_acl_head head;
555 /* Structure for holding an IP address. */
556 struct tomoyo_ipaddr_union address;
557};
558
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900559/* Subset of "struct stat". Used by conditional ACL and audit logs. */
560struct tomoyo_mini_stat {
561 uid_t uid;
562 gid_t gid;
563 ino_t ino;
564 mode_t mode;
565 dev_t dev;
566 dev_t rdev;
567};
568
Tetsuo Handa5b636852011-07-08 13:24:54 +0900569/* Structure for dumping argv[] and envp[] of "struct linux_binprm". */
570struct tomoyo_page_dump {
571 struct page *page; /* Previously dumped page. */
572 char *data; /* Contents of "page". Size is PAGE_SIZE. */
573};
574
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900575/* Structure for attribute checks in addition to pathname checks. */
576struct tomoyo_obj_info {
577 /*
578 * True if tomoyo_get_attributes() was already called, false otherwise.
579 */
580 bool validate_done;
581 /* True if @stat[] is valid. */
582 bool stat_valid[TOMOYO_MAX_PATH_STAT];
583 /* First pathname. Initialized with { NULL, NULL } if no path. */
584 struct path path1;
585 /* Second pathname. Initialized with { NULL, NULL } if no path. */
586 struct path path2;
587 /*
588 * Information on @path1, @path1's parent directory, @path2, @path2's
589 * parent directory.
590 */
591 struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900592 /*
593 * Content of symbolic link to be created. NULL for operations other
594 * than symlink().
595 */
596 struct tomoyo_path_info *symlink_target;
597};
598
Tetsuo Handa5b636852011-07-08 13:24:54 +0900599/* Structure for argv[]. */
600struct tomoyo_argv {
601 unsigned long index;
602 const struct tomoyo_path_info *value;
603 bool is_not;
604};
605
606/* Structure for envp[]. */
607struct tomoyo_envp {
608 const struct tomoyo_path_info *name;
609 const struct tomoyo_path_info *value;
610 bool is_not;
611};
612
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900613/* Structure for execve() operation. */
614struct tomoyo_execve {
615 struct tomoyo_request_info r;
616 struct tomoyo_obj_info obj;
617 struct linux_binprm *bprm;
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900618 const struct tomoyo_path_info *transition;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900619 /* For dumping argv[] and envp[]. */
620 struct tomoyo_page_dump dump;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900621 /* For temporary use. */
622 char *tmp; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900623};
624
Tetsuo Handa2066a362011-07-08 13:21:37 +0900625/* Structure for entries which follows "struct tomoyo_condition". */
626struct tomoyo_condition_element {
Tetsuo Handa5b636852011-07-08 13:24:54 +0900627 /*
628 * Left hand operand. A "struct tomoyo_argv" for TOMOYO_ARGV_ENTRY, a
629 * "struct tomoyo_envp" for TOMOYO_ENVP_ENTRY is attached to the tail
630 * of the array of this struct.
631 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900632 u8 left;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900633 /*
634 * Right hand operand. A "struct tomoyo_number_union" for
635 * TOMOYO_NUMBER_UNION, a "struct tomoyo_name_union" for
636 * TOMOYO_NAME_UNION is attached to the tail of the array of this
637 * struct.
638 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900639 u8 right;
640 /* Equation operator. True if equals or overlaps, false otherwise. */
641 bool equals;
642};
643
644/* Structure for optional arguments. */
645struct tomoyo_condition {
646 struct tomoyo_shared_acl_head head;
647 u32 size; /* Memory size allocated for this entry. */
648 u16 condc; /* Number of conditions in this struct. */
649 u16 numbers_count; /* Number of "struct tomoyo_number_union values". */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900650 u16 names_count; /* Number of "struct tomoyo_name_union names". */
Tetsuo Handa5b636852011-07-08 13:24:54 +0900651 u16 argc; /* Number of "struct tomoyo_argv". */
652 u16 envc; /* Number of "struct tomoyo_envp". */
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900653 u8 grant_log; /* One of values in "enum tomoyo_grant_log". */
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900654 const struct tomoyo_path_info *transit; /* Maybe NULL. */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900655 /*
656 * struct tomoyo_condition_element condition[condc];
657 * struct tomoyo_number_union values[numbers_count];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900658 * struct tomoyo_name_union names[names_count];
Tetsuo Handa5b636852011-07-08 13:24:54 +0900659 * struct tomoyo_argv argv[argc];
660 * struct tomoyo_envp envp[envc];
Tetsuo Handa2066a362011-07-08 13:21:37 +0900661 */
662};
663
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900664/* Common header for individual entries. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900665struct tomoyo_acl_info {
666 struct list_head list;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900667 struct tomoyo_condition *cond; /* Maybe NULL. */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900668 bool is_deleted;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900669 u8 type; /* One of values in "enum tomoyo_acl_entry_type_index". */
Kentaro Takeda95908372009-02-05 17:18:13 +0900670} __packed;
671
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900672/* Structure for domain information. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900673struct tomoyo_domain_info {
674 struct list_head list;
675 struct list_head acl_info_list;
676 /* Name of this domain. Never NULL. */
677 const struct tomoyo_path_info *domainname;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900678 /* Namespace for this domain. Never NULL. */
679 struct tomoyo_policy_namespace *ns;
Kentaro Takeda95908372009-02-05 17:18:13 +0900680 u8 profile; /* Profile number to use. */
Tetsuo Handa32997142011-06-26 23:19:28 +0900681 u8 group; /* Group number to use. */
Tetsuo Handaa0558fc2009-04-06 20:49:14 +0900682 bool is_deleted; /* Delete flag. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900683 bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900684 atomic_t users; /* Number of referring credentials. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900685};
686
Kentaro Takeda95908372009-02-05 17:18:13 +0900687/*
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900688 * Structure for "task manual_domain_transition" directive.
689 */
690struct tomoyo_task_acl {
691 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MANUAL_TASK_ACL */
692 /* Pointer to domainname. */
693 const struct tomoyo_path_info *domainname;
694};
695
696/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900697 * Structure for "file execute", "file read", "file write", "file append",
698 * "file unlink", "file getattr", "file rmdir", "file truncate",
699 * "file symlink", "file chroot" and "file unmount" directive.
Kentaro Takeda95908372009-02-05 17:18:13 +0900700 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900701struct tomoyo_path_acl {
702 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900703 u16 perm; /* Bitmask of values in "enum tomoyo_path_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900704 struct tomoyo_name_union name;
Kentaro Takeda95908372009-02-05 17:18:13 +0900705};
706
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900707/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900708 * Structure for "file create", "file mkdir", "file mkfifo", "file mksock",
709 * "file ioctl", "file chmod", "file chown" and "file chgrp" directive.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900710 */
711struct tomoyo_path_number_acl {
712 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900713 /* Bitmask of values in "enum tomoyo_path_number_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900714 u8 perm;
715 struct tomoyo_name_union name;
716 struct tomoyo_number_union number;
717};
718
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900719/* Structure for "file mkblock" and "file mkchar" directive. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900720struct tomoyo_mkdev_acl {
721 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900722 u8 perm; /* Bitmask of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900723 struct tomoyo_name_union name;
724 struct tomoyo_number_union mode;
725 struct tomoyo_number_union major;
726 struct tomoyo_number_union minor;
727};
728
729/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900730 * Structure for "file rename", "file link" and "file pivot_root" directive.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900731 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900732struct tomoyo_path2_acl {
733 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900734 u8 perm; /* Bitmask of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900735 struct tomoyo_name_union name1;
736 struct tomoyo_name_union name2;
Kentaro Takeda95908372009-02-05 17:18:13 +0900737};
738
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900739/* Structure for "file mount" directive. */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900740struct tomoyo_mount_acl {
741 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900742 struct tomoyo_name_union dev_name;
743 struct tomoyo_name_union dir_name;
744 struct tomoyo_name_union fs_type;
745 struct tomoyo_number_union flags;
746};
747
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900748/* Structure for "misc env" directive in domain policy. */
749struct tomoyo_env_acl {
750 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_ENV_ACL */
751 const struct tomoyo_path_info *env; /* environment variable */
752};
753
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900754/* Structure for "network inet" directive. */
755struct tomoyo_inet_acl {
756 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_INET_ACL */
757 u8 protocol;
758 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
759 struct tomoyo_ipaddr_union address;
760 struct tomoyo_number_union port;
761};
762
763/* Structure for "network unix" directive. */
764struct tomoyo_unix_acl {
765 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_UNIX_ACL */
766 u8 protocol;
767 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
768 struct tomoyo_name_union name;
769};
770
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900771/* Structure for holding a line from /sys/kernel/security/tomoyo/ interface. */
772struct tomoyo_acl_param {
773 char *data;
774 struct list_head *list;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900775 struct tomoyo_policy_namespace *ns;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900776 bool is_delete;
777};
778
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900779#define TOMOYO_MAX_IO_READ_QUEUE 64
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900780
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900781/*
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900782 * Structure for reading/writing policy via /sys/kernel/security/tomoyo
783 * interfaces.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900784 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900785struct tomoyo_io_buffer {
Tetsuo Handa8fbe71f2010-06-16 16:29:59 +0900786 void (*read) (struct tomoyo_io_buffer *);
Kentaro Takeda95908372009-02-05 17:18:13 +0900787 int (*write) (struct tomoyo_io_buffer *);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900788 int (*poll) (struct file *file, poll_table *wait);
Kentaro Takeda95908372009-02-05 17:18:13 +0900789 /* Exclusive lock for this structure. */
790 struct mutex io_sem;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900791 char __user *read_user_buf;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900792 size_t read_user_buf_avail;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900793 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900794 struct list_head *ns;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900795 struct list_head *domain;
796 struct list_head *group;
797 struct list_head *acl;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900798 size_t avail;
799 unsigned int step;
800 unsigned int query_index;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900801 u16 index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900802 u16 cond_index;
Tetsuo Handa32997142011-06-26 23:19:28 +0900803 u8 acl_group_index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900804 u8 cond_step;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900805 u8 bit;
806 u8 w_pos;
807 bool eof;
808 bool print_this_domain_only;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900809 bool print_transition_related_only;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900810 bool print_cond_part;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900811 const char *w[TOMOYO_MAX_IO_READ_QUEUE];
812 } r;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900813 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900814 struct tomoyo_policy_namespace *ns;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900815 /* The position currently writing to. */
816 struct tomoyo_domain_info *domain;
817 /* Bytes available for writing. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900818 size_t avail;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900819 bool is_delete;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900820 } w;
Kentaro Takeda95908372009-02-05 17:18:13 +0900821 /* Buffer for reading. */
822 char *read_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900823 /* Size of read buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900824 size_t readbuf_size;
Kentaro Takeda95908372009-02-05 17:18:13 +0900825 /* Buffer for writing. */
826 char *write_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900827 /* Size of write buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900828 size_t writebuf_size;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900829 /* Type of this interface. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900830 enum tomoyo_securityfs_interface_index type;
Tetsuo Handa2e503bb2011-06-26 23:20:55 +0900831 /* Users counter protected by tomoyo_io_buffer_list_lock. */
832 u8 users;
833 /* List for telling GC not to kfree() elements. */
834 struct list_head list;
Kentaro Takeda95908372009-02-05 17:18:13 +0900835};
836
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900837/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900838 * Structure for "initialize_domain"/"no_initialize_domain"/"keep_domain"/
839 * "no_keep_domain" keyword.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900840 */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900841struct tomoyo_transition_control {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900842 struct tomoyo_acl_head head;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900843 u8 type; /* One of values in "enum tomoyo_transition_type". */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900844 /* True if the domainname is tomoyo_get_last_name(). */
845 bool is_last_name;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900846 const struct tomoyo_path_info *domainname; /* Maybe NULL */
847 const struct tomoyo_path_info *program; /* Maybe NULL */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900848};
849
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900850/* Structure for "aggregator" keyword. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900851struct tomoyo_aggregator {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900852 struct tomoyo_acl_head head;
Tetsuo Handa10843072010-06-03 20:38:03 +0900853 const struct tomoyo_path_info *original_name;
854 const struct tomoyo_path_info *aggregated_name;
Tetsuo Handa10843072010-06-03 20:38:03 +0900855};
856
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900857/* Structure for policy manager. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900858struct tomoyo_manager {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900859 struct tomoyo_acl_head head;
860 bool is_domain; /* True if manager is a domainname. */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900861 /* A path to program or a domainname. */
862 const struct tomoyo_path_info *manager;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900863};
864
Tetsuo Handa57c25902010-06-03 20:38:44 +0900865struct tomoyo_preference {
866 unsigned int learning_max_entry;
867 bool enforcing_verbose;
868 bool learning_verbose;
869 bool permissive_verbose;
870};
871
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900872/* Structure for /sys/kernel/security/tomnoyo/profile interface. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900873struct tomoyo_profile {
874 const struct tomoyo_path_info *comment;
875 struct tomoyo_preference *learning;
876 struct tomoyo_preference *permissive;
877 struct tomoyo_preference *enforcing;
878 struct tomoyo_preference preference;
879 u8 default_config;
880 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900881 unsigned int pref[TOMOYO_MAX_PREF];
Tetsuo Handa57c25902010-06-03 20:38:44 +0900882};
883
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900884/* Structure for representing YYYY/MM/DD hh/mm/ss. */
885struct tomoyo_time {
886 u16 year;
887 u8 month;
888 u8 day;
889 u8 hour;
890 u8 min;
891 u8 sec;
892};
893
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900894/* Structure for policy namespace. */
895struct tomoyo_policy_namespace {
896 /* Profile table. Memory is allocated as needed. */
897 struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
898 /* List of "struct tomoyo_group". */
899 struct list_head group_list[TOMOYO_MAX_GROUP];
900 /* List of policy. */
901 struct list_head policy_list[TOMOYO_MAX_POLICY];
902 /* The global ACL referred by "use_group" keyword. */
903 struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
904 /* List for connecting to tomoyo_namespace_list list. */
905 struct list_head namespace_list;
Tetsuo Handa843d1832011-09-14 17:03:19 +0900906 /* Profile version. Currently only 20110903 is defined. */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900907 unsigned int profile_version;
908 /* Name of this namespace (e.g. "<kernel>", "</usr/sbin/httpd>" ). */
909 const char *name;
910};
911
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900912/********** Function prototypes. **********/
913
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900914bool tomoyo_address_matches_group(const bool is_ipv6, const __be32 *address,
915 const struct tomoyo_group *group);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900916bool tomoyo_compare_number_union(const unsigned long value,
917 const struct tomoyo_number_union *ptr);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900918bool tomoyo_condition(struct tomoyo_request_info *r,
919 const struct tomoyo_condition *cond);
Tetsuo Handa75093152010-06-16 16:23:55 +0900920bool tomoyo_correct_domain(const unsigned char *domainname);
Tetsuo Handa75093152010-06-16 16:23:55 +0900921bool tomoyo_correct_path(const char *filename);
922bool tomoyo_correct_word(const char *string);
Tetsuo Handa75093152010-06-16 16:23:55 +0900923bool tomoyo_domain_def(const unsigned char *buffer);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900924bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
Tetsuo Handa5b636852011-07-08 13:24:54 +0900925bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
926 struct tomoyo_page_dump *dump);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900927bool tomoyo_memory_ok(void *ptr);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900928bool tomoyo_number_matches_group(const unsigned long min,
929 const unsigned long max,
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900930 const struct tomoyo_group *group);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900931bool tomoyo_parse_ipaddr_union(struct tomoyo_acl_param *param,
932 struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900933bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
934 struct tomoyo_name_union *ptr);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900935bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
936 struct tomoyo_number_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900937bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
938 const struct tomoyo_path_info *pattern);
939bool tomoyo_permstr(const char *string, const char *keyword);
940bool tomoyo_str_starts(char **src, const char *find);
941char *tomoyo_encode(const char *str);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900942char *tomoyo_encode2(const char *str, int str_len);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900943char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
944 va_list args);
945char *tomoyo_read_token(struct tomoyo_acl_param *param);
946char *tomoyo_realpath_from_path(struct path *path);
947char *tomoyo_realpath_nofollow(const char *pathname);
948const char *tomoyo_get_exe(void);
949const char *tomoyo_yesno(const unsigned int value);
950const struct tomoyo_path_info *tomoyo_compare_name_union
951(const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900952const struct tomoyo_path_info *tomoyo_get_domainname
953(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900954const struct tomoyo_path_info *tomoyo_get_name(const char *name);
955const struct tomoyo_path_info *tomoyo_path_matches_group
956(const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
957int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
958 struct path *path, const int flag);
959int tomoyo_close_control(struct tomoyo_io_buffer *head);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900960int tomoyo_env_perm(struct tomoyo_request_info *r, const char *env);
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900961int tomoyo_execute_permission(struct tomoyo_request_info *r,
962 const struct tomoyo_path_info *filename);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900963int tomoyo_find_next_domain(struct linux_binprm *bprm);
964int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
965 const u8 index);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900966int tomoyo_init_request_info(struct tomoyo_request_info *r,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900967 struct tomoyo_domain_info *domain,
968 const u8 index);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900969int tomoyo_mkdev_perm(const u8 operation, struct path *path,
970 const unsigned int mode, unsigned int dev);
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900971int tomoyo_mount_permission(char *dev_name, struct path *path,
972 const char *type, unsigned long flags,
973 void *data_page);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900974int tomoyo_open_control(const u8 type, struct file *file);
Tetsuo Handa97d69312010-02-16 09:46:15 +0900975int tomoyo_path2_perm(const u8 operation, struct path *path1,
976 struct path *path2);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900977int tomoyo_path_number_perm(const u8 operation, struct path *path,
978 unsigned long number);
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900979int tomoyo_path_perm(const u8 operation, struct path *path,
980 const char *target);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900981int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
982 const struct tomoyo_path_info *filename);
983int tomoyo_poll_control(struct file *file, poll_table *wait);
984int tomoyo_poll_log(struct file *file, poll_table *wait);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900985int tomoyo_socket_bind_permission(struct socket *sock, struct sockaddr *addr,
986 int addr_len);
987int tomoyo_socket_connect_permission(struct socket *sock,
988 struct sockaddr *addr, int addr_len);
989int tomoyo_socket_listen_permission(struct socket *sock);
990int tomoyo_socket_sendmsg_permission(struct socket *sock, struct msghdr *msg,
991 int size);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900992int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
993 __printf(2, 3);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900994int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900995 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900996 bool (*check_duplicate)
997 (const struct tomoyo_acl_info *,
998 const struct tomoyo_acl_info *),
999 bool (*merge_duplicate)
1000 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
1001 const bool));
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +09001002int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001003 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001004 bool (*check_duplicate)
1005 (const struct tomoyo_acl_head *,
1006 const struct tomoyo_acl_head *));
1007int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
1008int tomoyo_write_file(struct tomoyo_acl_param *param);
1009int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
Tetsuo Handad58e0da2011-09-10 15:22:48 +09001010int tomoyo_write_misc(struct tomoyo_acl_param *param);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001011int tomoyo_write_inet_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001012int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
1013 const u8 type);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001014int tomoyo_write_unix_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001015ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
1016 const int buffer_len);
1017ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
1018 const char __user *buffer, const int buffer_len);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001019struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001020struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
1021 const bool transit);
1022struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
1023struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
1024 const u8 idx);
1025struct tomoyo_policy_namespace *tomoyo_assign_namespace
1026(const char *domainname);
1027struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
1028 const u8 profile);
1029unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
1030 const u8 index);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001031u8 tomoyo_parse_ulong(unsigned long *result, char **str);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001032void *tomoyo_commit_ok(void *data, const unsigned int size);
1033void __init tomoyo_load_builtin_policy(void);
1034void __init tomoyo_mm_init(void);
Tetsuo Handa99a85252010-06-16 16:22:51 +09001035void tomoyo_check_acl(struct tomoyo_request_info *r,
Tetsuo Handa484ca792010-07-29 14:29:55 +09001036 bool (*check_entry) (struct tomoyo_request_info *,
Tetsuo Handa99a85252010-06-16 16:22:51 +09001037 const struct tomoyo_acl_info *));
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001038void tomoyo_check_profile(void);
1039void tomoyo_convert_time(time_t time, struct tomoyo_time *stamp);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001040void tomoyo_del_condition(struct list_head *element);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001041void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
Tetsuo Handa8761afd2011-07-08 13:22:41 +09001042void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001043void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
1044void tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...)
1045 __printf(2, 3);
1046void tomoyo_load_policy(const char *filename);
1047void tomoyo_memory_free(void *ptr);
1048void tomoyo_normalize_line(unsigned char *buffer);
1049void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001050void tomoyo_print_ip(char *buf, const unsigned int size,
1051 const struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001052void tomoyo_print_ulong(char *buffer, const int buffer_len,
1053 const unsigned long value, const u8 type);
1054void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
1055void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
1056void tomoyo_read_log(struct tomoyo_io_buffer *head);
1057void tomoyo_update_stat(const u8 index);
1058void tomoyo_warn_oom(const char *function);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001059void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001060 __printf(2, 3);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001061void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
1062 va_list args);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001063
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001064/********** External variable definitions. **********/
1065
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001066extern bool tomoyo_policy_loaded;
Tetsuo Handa2066a362011-07-08 13:21:37 +09001067extern const char * const tomoyo_condition_keyword
1068[TOMOYO_MAX_CONDITION_KEYWORD];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001069extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
1070extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
1071 + TOMOYO_MAX_MAC_CATEGORY_INDEX];
1072extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE];
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001073extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001074extern const char * const tomoyo_proto_keyword[TOMOYO_SOCK_MAX];
1075extern const char * const tomoyo_socket_keyword[TOMOYO_MAX_NETWORK_OPERATION];
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001076extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001077extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION];
Tetsuo Handa0d2171d2011-06-26 23:17:46 +09001078extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION];
1079extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION];
Tetsuo Handa2066a362011-07-08 13:21:37 +09001080extern struct list_head tomoyo_condition_list;
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001081extern struct list_head tomoyo_domain_list;
1082extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
1083extern struct list_head tomoyo_namespace_list;
1084extern struct mutex tomoyo_policy_lock;
1085extern struct srcu_struct tomoyo_ss;
1086extern struct tomoyo_domain_info tomoyo_kernel_domain;
1087extern struct tomoyo_policy_namespace tomoyo_kernel_namespace;
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001088extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
1089extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +09001090
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001091/********** Inlined functions. **********/
1092
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001093/**
1094 * tomoyo_read_lock - Take lock for protecting policy.
1095 *
1096 * Returns index number for tomoyo_read_unlock().
1097 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001098static inline int tomoyo_read_lock(void)
1099{
1100 return srcu_read_lock(&tomoyo_ss);
1101}
1102
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001103/**
1104 * tomoyo_read_unlock - Release lock for protecting policy.
1105 *
1106 * @idx: Index number returned by tomoyo_read_lock().
1107 *
1108 * Returns nothing.
1109 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001110static inline void tomoyo_read_unlock(int idx)
1111{
1112 srcu_read_unlock(&tomoyo_ss, idx);
1113}
1114
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001115/**
Tetsuo Handa2066a362011-07-08 13:21:37 +09001116 * tomoyo_sys_getppid - Copy of getppid().
1117 *
1118 * Returns parent process's PID.
1119 *
1120 * Alpha does not have getppid() defined. To be able to build this module on
1121 * Alpha, I have to copy getppid() from kernel/timer.c.
1122 */
1123static inline pid_t tomoyo_sys_getppid(void)
1124{
1125 pid_t pid;
1126 rcu_read_lock();
1127 pid = task_tgid_vnr(current->real_parent);
1128 rcu_read_unlock();
1129 return pid;
1130}
1131
1132/**
1133 * tomoyo_sys_getpid - Copy of getpid().
1134 *
1135 * Returns current thread's PID.
1136 *
1137 * Alpha does not have getpid() defined. To be able to build this module on
1138 * Alpha, I have to copy getpid() from kernel/timer.c.
1139 */
1140static inline pid_t tomoyo_sys_getpid(void)
1141{
1142 return task_tgid_vnr(current);
1143}
1144
1145/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001146 * tomoyo_pathcmp - strcmp() for "struct tomoyo_path_info" structure.
1147 *
1148 * @a: Pointer to "struct tomoyo_path_info".
1149 * @b: Pointer to "struct tomoyo_path_info".
1150 *
1151 * Returns true if @a == @b, false otherwise.
1152 */
Kentaro Takeda95908372009-02-05 17:18:13 +09001153static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
1154 const struct tomoyo_path_info *b)
1155{
1156 return a->hash != b->hash || strcmp(a->name, b->name);
1157}
1158
Kentaro Takeda95908372009-02-05 17:18:13 +09001159/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001160 * tomoyo_put_name - Drop reference on "struct tomoyo_name".
1161 *
1162 * @name: Pointer to "struct tomoyo_path_info". Maybe NULL.
1163 *
1164 * Returns nothing.
1165 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001166static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
1167{
1168 if (name) {
Tetsuo Handae2bf6902010-06-25 11:16:00 +09001169 struct tomoyo_name *ptr =
1170 container_of(name, typeof(*ptr), entry);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001171 atomic_dec(&ptr->head.users);
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001172 }
1173}
Kentaro Takeda95908372009-02-05 17:18:13 +09001174
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001175/**
Tetsuo Handa2066a362011-07-08 13:21:37 +09001176 * tomoyo_put_condition - Drop reference on "struct tomoyo_condition".
1177 *
1178 * @cond: Pointer to "struct tomoyo_condition". Maybe NULL.
1179 *
1180 * Returns nothing.
1181 */
1182static inline void tomoyo_put_condition(struct tomoyo_condition *cond)
1183{
1184 if (cond)
1185 atomic_dec(&cond->head.users);
1186}
1187
1188/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001189 * tomoyo_put_group - Drop reference on "struct tomoyo_group".
1190 *
1191 * @group: Pointer to "struct tomoyo_group". Maybe NULL.
1192 *
1193 * Returns nothing.
1194 */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +09001195static inline void tomoyo_put_group(struct tomoyo_group *group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001196{
1197 if (group)
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001198 atomic_dec(&group->head.users);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001199}
1200
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001201/**
1202 * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread.
1203 *
1204 * Returns pointer to "struct tomoyo_domain_info" for current thread.
1205 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001206static inline struct tomoyo_domain_info *tomoyo_domain(void)
1207{
1208 return current_cred()->security;
1209}
Kentaro Takeda95908372009-02-05 17:18:13 +09001210
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001211/**
1212 * tomoyo_real_domain - Get "struct tomoyo_domain_info" for specified thread.
1213 *
1214 * @task: Pointer to "struct task_struct".
1215 *
1216 * Returns pointer to "struct tomoyo_security" for specified thread.
1217 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001218static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
1219 *task)
1220{
1221 return task_cred_xxx(task, security);
1222}
Kentaro Takeda95908372009-02-05 17:18:13 +09001223
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001224/**
1225 * tomoyo_same_name_union - Check for duplicated "struct tomoyo_name_union" entry.
1226 *
1227 * @a: Pointer to "struct tomoyo_name_union".
1228 * @b: Pointer to "struct tomoyo_name_union".
1229 *
1230 * Returns true if @a == @b, false otherwise.
1231 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001232static inline bool tomoyo_same_name_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001233(const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001234{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001235 return a->filename == b->filename && a->group == b->group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001236}
1237
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001238/**
1239 * tomoyo_same_number_union - Check for duplicated "struct tomoyo_number_union" entry.
1240 *
1241 * @a: Pointer to "struct tomoyo_number_union".
1242 * @b: Pointer to "struct tomoyo_number_union".
1243 *
1244 * Returns true if @a == @b, false otherwise.
1245 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001246static inline bool tomoyo_same_number_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001247(const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001248{
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001249 return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001250 a->group == b->group && a->value_type[0] == b->value_type[0] &&
1251 a->value_type[1] == b->value_type[1];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001252}
1253
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001254/**
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001255 * tomoyo_same_ipaddr_union - Check for duplicated "struct tomoyo_ipaddr_union" entry.
1256 *
1257 * @a: Pointer to "struct tomoyo_ipaddr_union".
1258 * @b: Pointer to "struct tomoyo_ipaddr_union".
1259 *
1260 * Returns true if @a == @b, false otherwise.
1261 */
1262static 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/**
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001270 * tomoyo_current_namespace - Get "struct tomoyo_policy_namespace" for current thread.
1271 *
1272 * Returns pointer to "struct tomoyo_policy_namespace" for current thread.
1273 */
1274static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
1275{
1276 return tomoyo_domain()->ns;
1277}
1278
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001279#if defined(CONFIG_SLOB)
1280
1281/**
1282 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1283 *
1284 * @size: Size to be rounded up.
1285 *
1286 * Returns @size.
1287 *
1288 * Since SLOB does not round up, this function simply returns @size.
1289 */
1290static inline int tomoyo_round2(size_t size)
1291{
1292 return size;
1293}
1294
1295#else
1296
1297/**
1298 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1299 *
1300 * @size: Size to be rounded up.
1301 *
1302 * Returns rounded size.
1303 *
1304 * Strictly speaking, SLAB may be able to allocate (e.g.) 96 bytes instead of
1305 * (e.g.) 128 bytes.
1306 */
1307static 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
Kentaro Takeda95908372009-02-05 17:18:13 +09001323/**
1324 * list_for_each_cookie - iterate over a list with cookie.
1325 * @pos: the &struct list_head to use as a loop cursor.
Kentaro Takeda95908372009-02-05 17:18:13 +09001326 * @head: the head for your list.
Kentaro Takeda95908372009-02-05 17:18:13 +09001327 */
Tetsuo Handa475e6fa2010-06-24 11:28:14 +09001328#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))
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001332
Kentaro Takeda95908372009-02-05 17:18:13 +09001333#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */