blob: 539bcdd30bb8deb22f9cd27e45258fe5e4a3d4a1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Kentaro Takeda95908372009-02-05 17:18:13 +09002/*
3 * security/tomoyo/common.h
4 *
Tetsuo Handa76bb0892010-02-11 09:42:40 +09005 * Header file for TOMOYO.
Kentaro Takeda95908372009-02-05 17:18:13 +09006 *
Tetsuo Handa843d1832011-09-14 17:03:19 +09007 * Copyright (C) 2005-2011 NTT DATA CORPORATION
Kentaro Takeda95908372009-02-05 17:18:13 +09008 */
9
10#ifndef _SECURITY_TOMOYO_COMMON_H
11#define _SECURITY_TOMOYO_COMMON_H
12
13#include <linux/ctype.h>
14#include <linux/string.h>
15#include <linux/mm.h>
16#include <linux/file.h>
17#include <linux/kmod.h>
18#include <linux/fs.h>
19#include <linux/sched.h>
20#include <linux/namei.h>
21#include <linux/mount.h>
22#include <linux/list.h>
Tetsuo Handa76bb0892010-02-11 09:42:40 +090023#include <linux/cred.h>
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +090024#include <linux/poll.h>
Tetsuo Handa2066a362011-07-08 13:21:37 +090025#include <linux/binfmts.h>
26#include <linux/highmem.h>
Tetsuo Handa059d84d2011-09-10 15:23:54 +090027#include <linux/net.h>
28#include <linux/inet.h>
29#include <linux/in.h>
30#include <linux/in6.h>
31#include <linux/un.h>
32#include <net/sock.h>
33#include <net/af_unix.h>
34#include <net/ip.h>
35#include <net/ipv6.h>
36#include <net/udp.h>
Kentaro Takeda95908372009-02-05 17:18:13 +090037
Tetsuo Handa76bb0892010-02-11 09:42:40 +090038/********** Constants definitions. **********/
39
40/*
41 * TOMOYO uses this hash only when appending a string into the string
42 * table. Frequency of appending strings is very low. So we don't need
43 * large (e.g. 64k) hash size. 256 will be sufficient.
44 */
45#define TOMOYO_HASH_BITS 8
46#define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
47
Tetsuo Handa059d84d2011-09-10 15:23:54 +090048/*
49 * TOMOYO checks only SOCK_STREAM, SOCK_DGRAM, SOCK_RAW, SOCK_SEQPACKET.
50 * Therefore, we don't need SOCK_MAX.
51 */
52#define TOMOYO_SOCK_MAX 6
53
Tetsuo Handac8c57e82010-06-03 20:36:43 +090054#define TOMOYO_EXEC_TMPSIZE 4096
Tetsuo Handa76bb0892010-02-11 09:42:40 +090055
Tetsuo Handaf9732ea2011-09-25 17:50:23 +090056/* Garbage collector is trying to kfree() this element. */
57#define TOMOYO_GC_IN_PROGRESS -1
58
Tetsuo Handa76bb0892010-02-11 09:42:40 +090059/* Profile number is an integer between 0 and 255. */
60#define TOMOYO_MAX_PROFILES 256
61
Tetsuo Handa32997142011-06-26 23:19:28 +090062/* Group number is an integer between 0 and 255. */
63#define TOMOYO_MAX_ACL_GROUPS 256
64
Tetsuo Handa2066a362011-07-08 13:21:37 +090065/* Index numbers for "struct tomoyo_condition". */
66enum tomoyo_conditions_index {
67 TOMOYO_TASK_UID, /* current_uid() */
68 TOMOYO_TASK_EUID, /* current_euid() */
69 TOMOYO_TASK_SUID, /* current_suid() */
70 TOMOYO_TASK_FSUID, /* current_fsuid() */
71 TOMOYO_TASK_GID, /* current_gid() */
72 TOMOYO_TASK_EGID, /* current_egid() */
73 TOMOYO_TASK_SGID, /* current_sgid() */
74 TOMOYO_TASK_FSGID, /* current_fsgid() */
75 TOMOYO_TASK_PID, /* sys_getpid() */
76 TOMOYO_TASK_PPID, /* sys_getppid() */
Tetsuo Handa5b636852011-07-08 13:24:54 +090077 TOMOYO_EXEC_ARGC, /* "struct linux_binprm *"->argc */
78 TOMOYO_EXEC_ENVC, /* "struct linux_binprm *"->envc */
Tetsuo Handa8761afd2011-07-08 13:22:41 +090079 TOMOYO_TYPE_IS_SOCKET, /* S_IFSOCK */
80 TOMOYO_TYPE_IS_SYMLINK, /* S_IFLNK */
81 TOMOYO_TYPE_IS_FILE, /* S_IFREG */
82 TOMOYO_TYPE_IS_BLOCK_DEV, /* S_IFBLK */
83 TOMOYO_TYPE_IS_DIRECTORY, /* S_IFDIR */
84 TOMOYO_TYPE_IS_CHAR_DEV, /* S_IFCHR */
85 TOMOYO_TYPE_IS_FIFO, /* S_IFIFO */
86 TOMOYO_MODE_SETUID, /* S_ISUID */
87 TOMOYO_MODE_SETGID, /* S_ISGID */
88 TOMOYO_MODE_STICKY, /* S_ISVTX */
89 TOMOYO_MODE_OWNER_READ, /* S_IRUSR */
90 TOMOYO_MODE_OWNER_WRITE, /* S_IWUSR */
91 TOMOYO_MODE_OWNER_EXECUTE, /* S_IXUSR */
92 TOMOYO_MODE_GROUP_READ, /* S_IRGRP */
93 TOMOYO_MODE_GROUP_WRITE, /* S_IWGRP */
94 TOMOYO_MODE_GROUP_EXECUTE, /* S_IXGRP */
95 TOMOYO_MODE_OTHERS_READ, /* S_IROTH */
96 TOMOYO_MODE_OTHERS_WRITE, /* S_IWOTH */
97 TOMOYO_MODE_OTHERS_EXECUTE, /* S_IXOTH */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +090098 TOMOYO_EXEC_REALPATH,
99 TOMOYO_SYMLINK_TARGET,
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900100 TOMOYO_PATH1_UID,
101 TOMOYO_PATH1_GID,
102 TOMOYO_PATH1_INO,
103 TOMOYO_PATH1_MAJOR,
104 TOMOYO_PATH1_MINOR,
105 TOMOYO_PATH1_PERM,
106 TOMOYO_PATH1_TYPE,
107 TOMOYO_PATH1_DEV_MAJOR,
108 TOMOYO_PATH1_DEV_MINOR,
109 TOMOYO_PATH2_UID,
110 TOMOYO_PATH2_GID,
111 TOMOYO_PATH2_INO,
112 TOMOYO_PATH2_MAJOR,
113 TOMOYO_PATH2_MINOR,
114 TOMOYO_PATH2_PERM,
115 TOMOYO_PATH2_TYPE,
116 TOMOYO_PATH2_DEV_MAJOR,
117 TOMOYO_PATH2_DEV_MINOR,
118 TOMOYO_PATH1_PARENT_UID,
119 TOMOYO_PATH1_PARENT_GID,
120 TOMOYO_PATH1_PARENT_INO,
121 TOMOYO_PATH1_PARENT_PERM,
122 TOMOYO_PATH2_PARENT_UID,
123 TOMOYO_PATH2_PARENT_GID,
124 TOMOYO_PATH2_PARENT_INO,
125 TOMOYO_PATH2_PARENT_PERM,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900126 TOMOYO_MAX_CONDITION_KEYWORD,
127 TOMOYO_NUMBER_UNION,
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900128 TOMOYO_NAME_UNION,
Tetsuo Handa5b636852011-07-08 13:24:54 +0900129 TOMOYO_ARGV_ENTRY,
130 TOMOYO_ENVP_ENTRY,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900131};
132
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900133
134/* Index numbers for stat(). */
135enum tomoyo_path_stat_index {
136 /* Do not change this order. */
137 TOMOYO_PATH1,
138 TOMOYO_PATH1_PARENT,
139 TOMOYO_PATH2,
140 TOMOYO_PATH2_PARENT,
141 TOMOYO_MAX_PATH_STAT
142};
143
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900144/* Index numbers for operation mode. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900145enum tomoyo_mode_index {
146 TOMOYO_CONFIG_DISABLED,
147 TOMOYO_CONFIG_LEARNING,
148 TOMOYO_CONFIG_PERMISSIVE,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900149 TOMOYO_CONFIG_ENFORCING,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900150 TOMOYO_CONFIG_MAX_MODE,
151 TOMOYO_CONFIG_WANT_REJECT_LOG = 64,
152 TOMOYO_CONFIG_WANT_GRANT_LOG = 128,
153 TOMOYO_CONFIG_USE_DEFAULT = 255,
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900154};
155
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900156/* Index numbers for entry type. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900157enum tomoyo_policy_id {
158 TOMOYO_ID_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900159 TOMOYO_ID_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900160 TOMOYO_ID_PATH_GROUP,
161 TOMOYO_ID_NUMBER_GROUP,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900162 TOMOYO_ID_TRANSITION_CONTROL,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900163 TOMOYO_ID_AGGREGATOR,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900164 TOMOYO_ID_MANAGER,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900165 TOMOYO_ID_CONDITION,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900166 TOMOYO_ID_NAME,
167 TOMOYO_ID_ACL,
168 TOMOYO_ID_DOMAIN,
169 TOMOYO_MAX_POLICY
170};
171
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900172/* Index numbers for domain's attributes. */
173enum tomoyo_domain_info_flags_index {
174 /* Quota warnning flag. */
175 TOMOYO_DIF_QUOTA_WARNED,
176 /*
177 * This domain was unable to create a new domain at
178 * tomoyo_find_next_domain() because the name of the domain to be
179 * created was too long or it could not allocate memory.
180 * More than one process continued execve() without domain transition.
181 */
182 TOMOYO_DIF_TRANSITION_FAILED,
183 TOMOYO_MAX_DOMAIN_INFO_FLAGS
184};
185
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900186/* Index numbers for audit type. */
187enum tomoyo_grant_log {
188 /* Follow profile's configuration. */
189 TOMOYO_GRANTLOG_AUTO,
190 /* Do not generate grant log. */
191 TOMOYO_GRANTLOG_NO,
192 /* Generate grant_log. */
193 TOMOYO_GRANTLOG_YES,
194};
195
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900196/* Index numbers for group entries. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900197enum tomoyo_group_id {
198 TOMOYO_PATH_GROUP,
199 TOMOYO_NUMBER_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900200 TOMOYO_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900201 TOMOYO_MAX_GROUP
202};
203
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900204/* Index numbers for type of numeric values. */
205enum tomoyo_value_type {
206 TOMOYO_VALUE_TYPE_INVALID,
207 TOMOYO_VALUE_TYPE_DECIMAL,
208 TOMOYO_VALUE_TYPE_OCTAL,
209 TOMOYO_VALUE_TYPE_HEXADECIMAL,
210};
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900211
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900212/* Index numbers for domain transition control keywords. */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900213enum tomoyo_transition_type {
214 /* Do not change this order, */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900215 TOMOYO_TRANSITION_CONTROL_NO_RESET,
216 TOMOYO_TRANSITION_CONTROL_RESET,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900217 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
218 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
219 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
220 TOMOYO_TRANSITION_CONTROL_KEEP,
221 TOMOYO_MAX_TRANSITION_TYPE
222};
223
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900224/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900225enum tomoyo_acl_entry_type_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900226 TOMOYO_TYPE_PATH_ACL,
227 TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900228 TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handa75093152010-06-16 16:23:55 +0900229 TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900230 TOMOYO_TYPE_MOUNT_ACL,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900231 TOMOYO_TYPE_INET_ACL,
232 TOMOYO_TYPE_UNIX_ACL,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900233 TOMOYO_TYPE_ENV_ACL,
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900234 TOMOYO_TYPE_MANUAL_TASK_ACL,
Tetsuo Handa084da352010-02-15 15:10:39 +0900235};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900236
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900237/* Index numbers for access controls with one pathname. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900238enum tomoyo_path_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900239 TOMOYO_TYPE_EXECUTE,
240 TOMOYO_TYPE_READ,
241 TOMOYO_TYPE_WRITE,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900242 TOMOYO_TYPE_APPEND,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900243 TOMOYO_TYPE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900244 TOMOYO_TYPE_GETATTR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900245 TOMOYO_TYPE_RMDIR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900246 TOMOYO_TYPE_TRUNCATE,
247 TOMOYO_TYPE_SYMLINK,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900248 TOMOYO_TYPE_CHROOT,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900249 TOMOYO_TYPE_UMOUNT,
250 TOMOYO_MAX_PATH_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900251};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900252
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900253/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900254enum tomoyo_memory_stat_type {
255 TOMOYO_MEMORY_POLICY,
256 TOMOYO_MEMORY_AUDIT,
257 TOMOYO_MEMORY_QUERY,
258 TOMOYO_MAX_MEMORY_STAT
259};
260
Tetsuo Handa75093152010-06-16 16:23:55 +0900261enum tomoyo_mkdev_acl_index {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900262 TOMOYO_TYPE_MKBLOCK,
263 TOMOYO_TYPE_MKCHAR,
Tetsuo Handa75093152010-06-16 16:23:55 +0900264 TOMOYO_MAX_MKDEV_OPERATION
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900265};
266
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900267/* Index numbers for socket operations. */
268enum tomoyo_network_acl_index {
269 TOMOYO_NETWORK_BIND, /* bind() operation. */
270 TOMOYO_NETWORK_LISTEN, /* listen() operation. */
271 TOMOYO_NETWORK_CONNECT, /* connect() operation. */
272 TOMOYO_NETWORK_SEND, /* send() operation. */
273 TOMOYO_MAX_NETWORK_OPERATION
274};
275
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900276/* Index numbers for access controls with two pathnames. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900277enum tomoyo_path2_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900278 TOMOYO_TYPE_LINK,
279 TOMOYO_TYPE_RENAME,
280 TOMOYO_TYPE_PIVOT_ROOT,
281 TOMOYO_MAX_PATH2_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900282};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900283
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900284/* Index numbers for access controls with one pathname and one number. */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900285enum tomoyo_path_number_acl_index {
286 TOMOYO_TYPE_CREATE,
287 TOMOYO_TYPE_MKDIR,
288 TOMOYO_TYPE_MKFIFO,
289 TOMOYO_TYPE_MKSOCK,
290 TOMOYO_TYPE_IOCTL,
291 TOMOYO_TYPE_CHMOD,
292 TOMOYO_TYPE_CHOWN,
293 TOMOYO_TYPE_CHGRP,
294 TOMOYO_MAX_PATH_NUMBER_OPERATION
295};
296
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900297/* Index numbers for /sys/kernel/security/tomoyo/ interfaces. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900298enum tomoyo_securityfs_interface_index {
299 TOMOYO_DOMAINPOLICY,
300 TOMOYO_EXCEPTIONPOLICY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900301 TOMOYO_PROCESS_STATUS,
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900302 TOMOYO_STAT,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900303 TOMOYO_AUDIT,
Tetsuo Handa084da352010-02-15 15:10:39 +0900304 TOMOYO_VERSION,
305 TOMOYO_PROFILE,
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900306 TOMOYO_QUERY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900307 TOMOYO_MANAGER
308};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900309
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900310/* Index numbers for special mount operations. */
311enum tomoyo_special_mount {
312 TOMOYO_MOUNT_BIND, /* mount --bind /source /dest */
313 TOMOYO_MOUNT_MOVE, /* mount --move /old /new */
314 TOMOYO_MOUNT_REMOUNT, /* mount -o remount /dir */
315 TOMOYO_MOUNT_MAKE_UNBINDABLE, /* mount --make-unbindable /dir */
316 TOMOYO_MOUNT_MAKE_PRIVATE, /* mount --make-private /dir */
317 TOMOYO_MOUNT_MAKE_SLAVE, /* mount --make-slave /dir */
318 TOMOYO_MOUNT_MAKE_SHARED, /* mount --make-shared /dir */
319 TOMOYO_MAX_SPECIAL_MOUNT
320};
321
322/* Index numbers for functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900323enum tomoyo_mac_index {
324 TOMOYO_MAC_FILE_EXECUTE,
325 TOMOYO_MAC_FILE_OPEN,
326 TOMOYO_MAC_FILE_CREATE,
327 TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900328 TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900329 TOMOYO_MAC_FILE_MKDIR,
330 TOMOYO_MAC_FILE_RMDIR,
331 TOMOYO_MAC_FILE_MKFIFO,
332 TOMOYO_MAC_FILE_MKSOCK,
333 TOMOYO_MAC_FILE_TRUNCATE,
334 TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900335 TOMOYO_MAC_FILE_MKBLOCK,
336 TOMOYO_MAC_FILE_MKCHAR,
337 TOMOYO_MAC_FILE_LINK,
338 TOMOYO_MAC_FILE_RENAME,
339 TOMOYO_MAC_FILE_CHMOD,
340 TOMOYO_MAC_FILE_CHOWN,
341 TOMOYO_MAC_FILE_CHGRP,
342 TOMOYO_MAC_FILE_IOCTL,
343 TOMOYO_MAC_FILE_CHROOT,
344 TOMOYO_MAC_FILE_MOUNT,
345 TOMOYO_MAC_FILE_UMOUNT,
346 TOMOYO_MAC_FILE_PIVOT_ROOT,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900347 TOMOYO_MAC_NETWORK_INET_STREAM_BIND,
348 TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN,
349 TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT,
350 TOMOYO_MAC_NETWORK_INET_DGRAM_BIND,
351 TOMOYO_MAC_NETWORK_INET_DGRAM_SEND,
352 TOMOYO_MAC_NETWORK_INET_RAW_BIND,
353 TOMOYO_MAC_NETWORK_INET_RAW_SEND,
354 TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND,
355 TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN,
356 TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT,
357 TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND,
358 TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND,
359 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND,
360 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN,
361 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900362 TOMOYO_MAC_ENVIRON,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900363 TOMOYO_MAX_MAC_INDEX
364};
365
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900366/* Index numbers for category of functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900367enum tomoyo_mac_category_index {
368 TOMOYO_MAC_CATEGORY_FILE,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900369 TOMOYO_MAC_CATEGORY_NETWORK,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900370 TOMOYO_MAC_CATEGORY_MISC,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900371 TOMOYO_MAX_MAC_CATEGORY_INDEX
372};
373
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900374/*
375 * Retry this request. Returned by tomoyo_supervisor() if policy violation has
376 * occurred in enforcing mode and the userspace daemon decided to retry.
377 *
378 * We must choose a positive value in order to distinguish "granted" (which is
379 * 0) and "rejected" (which is a negative value) and "retry".
380 */
381#define TOMOYO_RETRY_REQUEST 1
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900382
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900383/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
384enum tomoyo_policy_stat_type {
385 /* Do not change this order. */
386 TOMOYO_STAT_POLICY_UPDATES,
387 TOMOYO_STAT_POLICY_LEARNING, /* == TOMOYO_CONFIG_LEARNING */
388 TOMOYO_STAT_POLICY_PERMISSIVE, /* == TOMOYO_CONFIG_PERMISSIVE */
389 TOMOYO_STAT_POLICY_ENFORCING, /* == TOMOYO_CONFIG_ENFORCING */
390 TOMOYO_MAX_POLICY_STAT
391};
392
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900393/* Index numbers for profile's PREFERENCE values. */
394enum tomoyo_pref_index {
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900395 TOMOYO_PREF_MAX_AUDIT_LOG,
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900396 TOMOYO_PREF_MAX_LEARNING_ENTRY,
397 TOMOYO_MAX_PREF
398};
399
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900400/********** Structure definitions. **********/
Kentaro Takeda95908372009-02-05 17:18:13 +0900401
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900402/* Common header for holding ACL entries. */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900403struct tomoyo_acl_head {
404 struct list_head list;
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900405 s8 is_deleted; /* true or false or TOMOYO_GC_IN_PROGRESS */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900406} __packed;
407
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900408/* Common header for shared entries. */
409struct tomoyo_shared_acl_head {
410 struct list_head list;
411 atomic_t users;
412} __packed;
413
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900414struct tomoyo_policy_namespace;
415
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900416/* Structure for request info. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900417struct tomoyo_request_info {
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900418 /*
419 * For holding parameters specific to operations which deal files.
420 * NULL if not dealing files.
421 */
422 struct tomoyo_obj_info *obj;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900423 /*
424 * For holding parameters specific to execve() request.
425 * NULL if not dealing do_execve().
426 */
427 struct tomoyo_execve *ee;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900428 struct tomoyo_domain_info *domain;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900429 /* For holding parameters. */
430 union {
431 struct {
432 const struct tomoyo_path_info *filename;
Tetsuo Handa484ca792010-07-29 14:29:55 +0900433 /* For using wildcards at tomoyo_find_next_domain(). */
434 const struct tomoyo_path_info *matched_path;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900435 /* One of values in "enum tomoyo_path_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900436 u8 operation;
437 } path;
438 struct {
439 const struct tomoyo_path_info *filename1;
440 const struct tomoyo_path_info *filename2;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900441 /* One of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900442 u8 operation;
443 } path2;
444 struct {
445 const struct tomoyo_path_info *filename;
446 unsigned int mode;
447 unsigned int major;
448 unsigned int minor;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900449 /* One of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900450 u8 operation;
451 } mkdev;
452 struct {
453 const struct tomoyo_path_info *filename;
454 unsigned long number;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900455 /*
456 * One of values in
457 * "enum tomoyo_path_number_acl_index".
458 */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900459 u8 operation;
460 } path_number;
461 struct {
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900462 const struct tomoyo_path_info *name;
463 } environ;
464 struct {
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900465 const __be32 *address;
466 u16 port;
467 /* One of values smaller than TOMOYO_SOCK_MAX. */
468 u8 protocol;
469 /* One of values in "enum tomoyo_network_acl_index". */
470 u8 operation;
471 bool is_ipv6;
472 } inet_network;
473 struct {
474 const struct tomoyo_path_info *address;
475 /* One of values smaller than TOMOYO_SOCK_MAX. */
476 u8 protocol;
477 /* One of values in "enum tomoyo_network_acl_index". */
478 u8 operation;
479 } unix_network;
480 struct {
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900481 const struct tomoyo_path_info *type;
482 const struct tomoyo_path_info *dir;
483 const struct tomoyo_path_info *dev;
484 unsigned long flags;
485 int need_dev;
486 } mount;
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900487 struct {
488 const struct tomoyo_path_info *domainname;
489 } task;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900490 } param;
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900491 struct tomoyo_acl_info *matched_acl;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900492 u8 param_type;
493 bool granted;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900494 u8 retry;
495 u8 profile;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900496 u8 mode; /* One of tomoyo_mode_index . */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900497 u8 type;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900498};
499
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900500/* Structure for holding a token. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900501struct tomoyo_path_info {
502 const char *name;
503 u32 hash; /* = full_name_hash(name, strlen(name)) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900504 u16 const_len; /* = tomoyo_const_part_length(name) */
505 bool is_dir; /* = tomoyo_strendswith(name, "/") */
506 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900507};
508
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900509/* Structure for holding string data. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900510struct tomoyo_name {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900511 struct tomoyo_shared_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900512 struct tomoyo_path_info entry;
513};
Kentaro Takeda95908372009-02-05 17:18:13 +0900514
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900515/* Structure for holding a word. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900516struct tomoyo_name_union {
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900517 /* Either @filename or @group is NULL. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900518 const struct tomoyo_path_info *filename;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900519 struct tomoyo_group *group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900520};
521
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900522/* Structure for holding a number. */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900523struct tomoyo_number_union {
524 unsigned long values[2];
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900525 struct tomoyo_group *group; /* Maybe NULL. */
526 /* One of values in "enum tomoyo_value_type". */
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900527 u8 value_type[2];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900528};
529
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900530/* Structure for holding an IP address. */
531struct tomoyo_ipaddr_union {
532 struct in6_addr ip[2]; /* Big endian. */
533 struct tomoyo_group *group; /* Pointer to address group. */
534 bool is_ipv6; /* Valid only if @group == NULL. */
535};
536
537/* Structure for "path_group"/"number_group"/"address_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900538struct tomoyo_group {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900539 struct tomoyo_shared_acl_head head;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900540 const struct tomoyo_path_info *group_name;
541 struct list_head member_list;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900542};
543
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900544/* Structure for "path_group" directive. */
545struct tomoyo_path_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900546 struct tomoyo_acl_head head;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900547 const struct tomoyo_path_info *member_name;
548};
549
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900550/* Structure for "number_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900551struct tomoyo_number_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900552 struct tomoyo_acl_head head;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900553 struct tomoyo_number_union number;
554};
555
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900556/* Structure for "address_group" directive. */
557struct tomoyo_address_group {
558 struct tomoyo_acl_head head;
559 /* Structure for holding an IP address. */
560 struct tomoyo_ipaddr_union address;
561};
562
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900563/* Subset of "struct stat". Used by conditional ACL and audit logs. */
564struct tomoyo_mini_stat {
Eric W. Biederman609fcd12012-02-07 16:34:10 -0800565 kuid_t uid;
566 kgid_t gid;
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900567 ino_t ino;
Al Virod179333f2011-08-26 23:03:17 -0400568 umode_t mode;
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900569 dev_t dev;
570 dev_t rdev;
571};
572
Tetsuo Handa5b636852011-07-08 13:24:54 +0900573/* Structure for dumping argv[] and envp[] of "struct linux_binprm". */
574struct tomoyo_page_dump {
575 struct page *page; /* Previously dumped page. */
576 char *data; /* Contents of "page". Size is PAGE_SIZE. */
577};
578
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900579/* Structure for attribute checks in addition to pathname checks. */
580struct tomoyo_obj_info {
581 /*
582 * True if tomoyo_get_attributes() was already called, false otherwise.
583 */
584 bool validate_done;
585 /* True if @stat[] is valid. */
586 bool stat_valid[TOMOYO_MAX_PATH_STAT];
587 /* First pathname. Initialized with { NULL, NULL } if no path. */
588 struct path path1;
589 /* Second pathname. Initialized with { NULL, NULL } if no path. */
590 struct path path2;
591 /*
592 * Information on @path1, @path1's parent directory, @path2, @path2's
593 * parent directory.
594 */
595 struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900596 /*
597 * Content of symbolic link to be created. NULL for operations other
598 * than symlink().
599 */
600 struct tomoyo_path_info *symlink_target;
601};
602
Tetsuo Handa5b636852011-07-08 13:24:54 +0900603/* Structure for argv[]. */
604struct tomoyo_argv {
605 unsigned long index;
606 const struct tomoyo_path_info *value;
607 bool is_not;
608};
609
610/* Structure for envp[]. */
611struct tomoyo_envp {
612 const struct tomoyo_path_info *name;
613 const struct tomoyo_path_info *value;
614 bool is_not;
615};
616
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900617/* Structure for execve() operation. */
618struct tomoyo_execve {
619 struct tomoyo_request_info r;
620 struct tomoyo_obj_info obj;
621 struct linux_binprm *bprm;
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900622 const struct tomoyo_path_info *transition;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900623 /* For dumping argv[] and envp[]. */
624 struct tomoyo_page_dump dump;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900625 /* For temporary use. */
626 char *tmp; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900627};
628
Tetsuo Handa2066a362011-07-08 13:21:37 +0900629/* Structure for entries which follows "struct tomoyo_condition". */
630struct tomoyo_condition_element {
Tetsuo Handa5b636852011-07-08 13:24:54 +0900631 /*
632 * Left hand operand. A "struct tomoyo_argv" for TOMOYO_ARGV_ENTRY, a
633 * "struct tomoyo_envp" for TOMOYO_ENVP_ENTRY is attached to the tail
634 * of the array of this struct.
635 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900636 u8 left;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900637 /*
638 * Right hand operand. A "struct tomoyo_number_union" for
639 * TOMOYO_NUMBER_UNION, a "struct tomoyo_name_union" for
640 * TOMOYO_NAME_UNION is attached to the tail of the array of this
641 * struct.
642 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900643 u8 right;
644 /* Equation operator. True if equals or overlaps, false otherwise. */
645 bool equals;
646};
647
648/* Structure for optional arguments. */
649struct tomoyo_condition {
650 struct tomoyo_shared_acl_head head;
651 u32 size; /* Memory size allocated for this entry. */
652 u16 condc; /* Number of conditions in this struct. */
653 u16 numbers_count; /* Number of "struct tomoyo_number_union values". */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900654 u16 names_count; /* Number of "struct tomoyo_name_union names". */
Tetsuo Handa5b636852011-07-08 13:24:54 +0900655 u16 argc; /* Number of "struct tomoyo_argv". */
656 u16 envc; /* Number of "struct tomoyo_envp". */
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900657 u8 grant_log; /* One of values in "enum tomoyo_grant_log". */
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900658 const struct tomoyo_path_info *transit; /* Maybe NULL. */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900659 /*
660 * struct tomoyo_condition_element condition[condc];
661 * struct tomoyo_number_union values[numbers_count];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900662 * struct tomoyo_name_union names[names_count];
Tetsuo Handa5b636852011-07-08 13:24:54 +0900663 * struct tomoyo_argv argv[argc];
664 * struct tomoyo_envp envp[envc];
Tetsuo Handa2066a362011-07-08 13:21:37 +0900665 */
666};
667
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900668/* Common header for individual entries. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900669struct tomoyo_acl_info {
670 struct list_head list;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900671 struct tomoyo_condition *cond; /* Maybe NULL. */
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900672 s8 is_deleted; /* true or false or TOMOYO_GC_IN_PROGRESS */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900673 u8 type; /* One of values in "enum tomoyo_acl_entry_type_index". */
Kentaro Takeda95908372009-02-05 17:18:13 +0900674} __packed;
675
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900676/* Structure for domain information. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900677struct tomoyo_domain_info {
678 struct list_head list;
679 struct list_head acl_info_list;
680 /* Name of this domain. Never NULL. */
681 const struct tomoyo_path_info *domainname;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900682 /* Namespace for this domain. Never NULL. */
683 struct tomoyo_policy_namespace *ns;
Kentaro Takeda95908372009-02-05 17:18:13 +0900684 u8 profile; /* Profile number to use. */
Tetsuo Handa32997142011-06-26 23:19:28 +0900685 u8 group; /* Group number to use. */
Tetsuo Handaa0558fc2009-04-06 20:49:14 +0900686 bool is_deleted; /* Delete flag. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900687 bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900688 atomic_t users; /* Number of referring credentials. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900689};
690
Kentaro Takeda95908372009-02-05 17:18:13 +0900691/*
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900692 * Structure for "task manual_domain_transition" directive.
693 */
694struct tomoyo_task_acl {
695 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MANUAL_TASK_ACL */
696 /* Pointer to domainname. */
697 const struct tomoyo_path_info *domainname;
698};
699
700/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900701 * Structure for "file execute", "file read", "file write", "file append",
702 * "file unlink", "file getattr", "file rmdir", "file truncate",
703 * "file symlink", "file chroot" and "file unmount" directive.
Kentaro Takeda95908372009-02-05 17:18:13 +0900704 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900705struct tomoyo_path_acl {
706 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900707 u16 perm; /* Bitmask of values in "enum tomoyo_path_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900708 struct tomoyo_name_union name;
Kentaro Takeda95908372009-02-05 17:18:13 +0900709};
710
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900711/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900712 * Structure for "file create", "file mkdir", "file mkfifo", "file mksock",
713 * "file ioctl", "file chmod", "file chown" and "file chgrp" directive.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900714 */
715struct tomoyo_path_number_acl {
716 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900717 /* Bitmask of values in "enum tomoyo_path_number_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900718 u8 perm;
719 struct tomoyo_name_union name;
720 struct tomoyo_number_union number;
721};
722
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900723/* Structure for "file mkblock" and "file mkchar" directive. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900724struct tomoyo_mkdev_acl {
725 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900726 u8 perm; /* Bitmask of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900727 struct tomoyo_name_union name;
728 struct tomoyo_number_union mode;
729 struct tomoyo_number_union major;
730 struct tomoyo_number_union minor;
731};
732
733/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900734 * Structure for "file rename", "file link" and "file pivot_root" directive.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900735 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900736struct tomoyo_path2_acl {
737 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900738 u8 perm; /* Bitmask of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900739 struct tomoyo_name_union name1;
740 struct tomoyo_name_union name2;
Kentaro Takeda95908372009-02-05 17:18:13 +0900741};
742
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900743/* Structure for "file mount" directive. */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900744struct tomoyo_mount_acl {
745 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900746 struct tomoyo_name_union dev_name;
747 struct tomoyo_name_union dir_name;
748 struct tomoyo_name_union fs_type;
749 struct tomoyo_number_union flags;
750};
751
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900752/* Structure for "misc env" directive in domain policy. */
753struct tomoyo_env_acl {
754 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_ENV_ACL */
755 const struct tomoyo_path_info *env; /* environment variable */
756};
757
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900758/* Structure for "network inet" directive. */
759struct tomoyo_inet_acl {
760 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_INET_ACL */
761 u8 protocol;
762 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
763 struct tomoyo_ipaddr_union address;
764 struct tomoyo_number_union port;
765};
766
767/* Structure for "network unix" directive. */
768struct tomoyo_unix_acl {
769 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_UNIX_ACL */
770 u8 protocol;
771 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
772 struct tomoyo_name_union name;
773};
774
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900775/* Structure for holding a line from /sys/kernel/security/tomoyo/ interface. */
776struct tomoyo_acl_param {
777 char *data;
778 struct list_head *list;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900779 struct tomoyo_policy_namespace *ns;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900780 bool is_delete;
781};
782
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900783#define TOMOYO_MAX_IO_READ_QUEUE 64
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900784
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900785/*
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900786 * Structure for reading/writing policy via /sys/kernel/security/tomoyo
787 * interfaces.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900788 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900789struct tomoyo_io_buffer {
Tetsuo Handa8fbe71f2010-06-16 16:29:59 +0900790 void (*read) (struct tomoyo_io_buffer *);
Kentaro Takeda95908372009-02-05 17:18:13 +0900791 int (*write) (struct tomoyo_io_buffer *);
Al Viroc0d4be22017-07-02 23:32:02 -0400792 __poll_t (*poll) (struct file *file, poll_table *wait);
Kentaro Takeda95908372009-02-05 17:18:13 +0900793 /* Exclusive lock for this structure. */
794 struct mutex io_sem;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900795 char __user *read_user_buf;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900796 size_t read_user_buf_avail;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900797 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900798 struct list_head *ns;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900799 struct list_head *domain;
800 struct list_head *group;
801 struct list_head *acl;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900802 size_t avail;
803 unsigned int step;
804 unsigned int query_index;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900805 u16 index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900806 u16 cond_index;
Tetsuo Handa32997142011-06-26 23:19:28 +0900807 u8 acl_group_index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900808 u8 cond_step;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900809 u8 bit;
810 u8 w_pos;
811 bool eof;
812 bool print_this_domain_only;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900813 bool print_transition_related_only;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900814 bool print_cond_part;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900815 const char *w[TOMOYO_MAX_IO_READ_QUEUE];
816 } r;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900817 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900818 struct tomoyo_policy_namespace *ns;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900819 /* The position currently writing to. */
820 struct tomoyo_domain_info *domain;
821 /* Bytes available for writing. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900822 size_t avail;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900823 bool is_delete;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900824 } w;
Kentaro Takeda95908372009-02-05 17:18:13 +0900825 /* Buffer for reading. */
826 char *read_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900827 /* Size of read buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900828 size_t readbuf_size;
Kentaro Takeda95908372009-02-05 17:18:13 +0900829 /* Buffer for writing. */
830 char *write_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900831 /* Size of write buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900832 size_t writebuf_size;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900833 /* Type of this interface. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900834 enum tomoyo_securityfs_interface_index type;
Tetsuo Handa2e503bb2011-06-26 23:20:55 +0900835 /* Users counter protected by tomoyo_io_buffer_list_lock. */
836 u8 users;
837 /* List for telling GC not to kfree() elements. */
838 struct list_head list;
Kentaro Takeda95908372009-02-05 17:18:13 +0900839};
840
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900841/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900842 * Structure for "initialize_domain"/"no_initialize_domain"/"keep_domain"/
843 * "no_keep_domain" keyword.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900844 */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900845struct tomoyo_transition_control {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900846 struct tomoyo_acl_head head;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900847 u8 type; /* One of values in "enum tomoyo_transition_type". */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900848 /* True if the domainname is tomoyo_get_last_name(). */
849 bool is_last_name;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900850 const struct tomoyo_path_info *domainname; /* Maybe NULL */
851 const struct tomoyo_path_info *program; /* Maybe NULL */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900852};
853
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900854/* Structure for "aggregator" keyword. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900855struct tomoyo_aggregator {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900856 struct tomoyo_acl_head head;
Tetsuo Handa10843072010-06-03 20:38:03 +0900857 const struct tomoyo_path_info *original_name;
858 const struct tomoyo_path_info *aggregated_name;
Tetsuo Handa10843072010-06-03 20:38:03 +0900859};
860
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900861/* Structure for policy manager. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900862struct tomoyo_manager {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900863 struct tomoyo_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900864 /* A path to program or a domainname. */
865 const struct tomoyo_path_info *manager;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900866};
867
Tetsuo Handa57c25902010-06-03 20:38:44 +0900868struct tomoyo_preference {
869 unsigned int learning_max_entry;
870 bool enforcing_verbose;
871 bool learning_verbose;
872 bool permissive_verbose;
873};
874
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900875/* Structure for /sys/kernel/security/tomnoyo/profile interface. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900876struct tomoyo_profile {
877 const struct tomoyo_path_info *comment;
878 struct tomoyo_preference *learning;
879 struct tomoyo_preference *permissive;
880 struct tomoyo_preference *enforcing;
881 struct tomoyo_preference preference;
882 u8 default_config;
883 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900884 unsigned int pref[TOMOYO_MAX_PREF];
Tetsuo Handa57c25902010-06-03 20:38:44 +0900885};
886
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900887/* Structure for representing YYYY/MM/DD hh/mm/ss. */
888struct tomoyo_time {
889 u16 year;
890 u8 month;
891 u8 day;
892 u8 hour;
893 u8 min;
894 u8 sec;
895};
896
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900897/* Structure for policy namespace. */
898struct tomoyo_policy_namespace {
899 /* Profile table. Memory is allocated as needed. */
900 struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
901 /* List of "struct tomoyo_group". */
902 struct list_head group_list[TOMOYO_MAX_GROUP];
903 /* List of policy. */
904 struct list_head policy_list[TOMOYO_MAX_POLICY];
905 /* The global ACL referred by "use_group" keyword. */
906 struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
907 /* List for connecting to tomoyo_namespace_list list. */
908 struct list_head namespace_list;
Tetsuo Handa843d1832011-09-14 17:03:19 +0900909 /* Profile version. Currently only 20110903 is defined. */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900910 unsigned int profile_version;
911 /* Name of this namespace (e.g. "<kernel>", "</usr/sbin/httpd>" ). */
912 const char *name;
913};
914
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900915/********** Function prototypes. **********/
916
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900917bool tomoyo_address_matches_group(const bool is_ipv6, const __be32 *address,
918 const struct tomoyo_group *group);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900919bool tomoyo_compare_number_union(const unsigned long value,
920 const struct tomoyo_number_union *ptr);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900921bool tomoyo_condition(struct tomoyo_request_info *r,
922 const struct tomoyo_condition *cond);
Tetsuo Handa75093152010-06-16 16:23:55 +0900923bool tomoyo_correct_domain(const unsigned char *domainname);
Tetsuo Handa75093152010-06-16 16:23:55 +0900924bool tomoyo_correct_path(const char *filename);
925bool tomoyo_correct_word(const char *string);
Tetsuo Handa75093152010-06-16 16:23:55 +0900926bool tomoyo_domain_def(const unsigned char *buffer);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900927bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
Tetsuo Handa5b636852011-07-08 13:24:54 +0900928bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
929 struct tomoyo_page_dump *dump);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900930bool tomoyo_memory_ok(void *ptr);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900931bool tomoyo_number_matches_group(const unsigned long min,
932 const unsigned long max,
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900933 const struct tomoyo_group *group);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900934bool tomoyo_parse_ipaddr_union(struct tomoyo_acl_param *param,
935 struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900936bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
937 struct tomoyo_name_union *ptr);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900938bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
939 struct tomoyo_number_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900940bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
941 const struct tomoyo_path_info *pattern);
942bool tomoyo_permstr(const char *string, const char *keyword);
943bool tomoyo_str_starts(char **src, const char *find);
944char *tomoyo_encode(const char *str);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900945char *tomoyo_encode2(const char *str, int str_len);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900946char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
947 va_list args);
948char *tomoyo_read_token(struct tomoyo_acl_param *param);
Al Viro22473862015-03-08 19:24:30 -0400949char *tomoyo_realpath_from_path(const struct path *path);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900950char *tomoyo_realpath_nofollow(const char *pathname);
951const char *tomoyo_get_exe(void);
952const char *tomoyo_yesno(const unsigned int value);
953const struct tomoyo_path_info *tomoyo_compare_name_union
954(const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900955const struct tomoyo_path_info *tomoyo_get_domainname
956(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900957const struct tomoyo_path_info *tomoyo_get_name(const char *name);
958const struct tomoyo_path_info *tomoyo_path_matches_group
959(const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
960int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
Al Viroe6641ed2016-03-25 14:41:28 -0400961 const struct path *path, const int flag);
Al Viroe53cfda2013-04-14 16:59:00 -0400962void tomoyo_close_control(struct tomoyo_io_buffer *head);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900963int tomoyo_env_perm(struct tomoyo_request_info *r, const char *env);
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900964int tomoyo_execute_permission(struct tomoyo_request_info *r,
965 const struct tomoyo_path_info *filename);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900966int tomoyo_find_next_domain(struct linux_binprm *bprm);
967int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
968 const u8 index);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900969int tomoyo_init_request_info(struct tomoyo_request_info *r,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900970 struct tomoyo_domain_info *domain,
971 const u8 index);
Al Viroe6641ed2016-03-25 14:41:28 -0400972int tomoyo_mkdev_perm(const u8 operation, const struct path *path,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900973 const unsigned int mode, unsigned int dev);
Al Viroe6641ed2016-03-25 14:41:28 -0400974int tomoyo_mount_permission(const char *dev_name, const struct path *path,
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900975 const char *type, unsigned long flags,
976 void *data_page);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900977int tomoyo_open_control(const u8 type, struct file *file);
Al Viroe6641ed2016-03-25 14:41:28 -0400978int tomoyo_path2_perm(const u8 operation, const struct path *path1,
979 const struct path *path2);
980int tomoyo_path_number_perm(const u8 operation, const struct path *path,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900981 unsigned long number);
Al Viro3f7036a2015-03-08 19:28:30 -0400982int tomoyo_path_perm(const u8 operation, const struct path *path,
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900983 const char *target);
Al Viroc0d4be22017-07-02 23:32:02 -0400984__poll_t tomoyo_poll_control(struct file *file, poll_table *wait);
985__poll_t tomoyo_poll_log(struct file *file, poll_table *wait);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900986int tomoyo_socket_bind_permission(struct socket *sock, struct sockaddr *addr,
987 int addr_len);
988int tomoyo_socket_connect_permission(struct socket *sock,
989 struct sockaddr *addr, int addr_len);
990int tomoyo_socket_listen_permission(struct socket *sock);
991int tomoyo_socket_sendmsg_permission(struct socket *sock, struct msghdr *msg,
992 int size);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900993int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
994 __printf(2, 3);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900995int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900996 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900997 bool (*check_duplicate)
998 (const struct tomoyo_acl_info *,
999 const struct tomoyo_acl_info *),
1000 bool (*merge_duplicate)
1001 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
1002 const bool));
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +09001003int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001004 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001005 bool (*check_duplicate)
1006 (const struct tomoyo_acl_head *,
1007 const struct tomoyo_acl_head *));
1008int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
1009int tomoyo_write_file(struct tomoyo_acl_param *param);
1010int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
Tetsuo Handad58e0da2011-09-10 15:22:48 +09001011int tomoyo_write_misc(struct tomoyo_acl_param *param);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001012int tomoyo_write_inet_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001013int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
1014 const u8 type);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001015int tomoyo_write_unix_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001016ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
1017 const int buffer_len);
1018ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
1019 const char __user *buffer, const int buffer_len);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001020struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001021struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
1022 const bool transit);
1023struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
1024struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
1025 const u8 idx);
1026struct tomoyo_policy_namespace *tomoyo_assign_namespace
1027(const char *domainname);
1028struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
1029 const u8 profile);
1030unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
1031 const u8 index);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001032u8 tomoyo_parse_ulong(unsigned long *result, char **str);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001033void *tomoyo_commit_ok(void *data, const unsigned int size);
1034void __init tomoyo_load_builtin_policy(void);
1035void __init tomoyo_mm_init(void);
Tetsuo Handa99a85252010-06-16 16:22:51 +09001036void tomoyo_check_acl(struct tomoyo_request_info *r,
Tetsuo Handa484ca792010-07-29 14:29:55 +09001037 bool (*check_entry) (struct tomoyo_request_info *,
Tetsuo Handa99a85252010-06-16 16:22:51 +09001038 const struct tomoyo_acl_info *));
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001039void tomoyo_check_profile(void);
Arnd Bergmann92734092017-10-19 14:29:04 +02001040void tomoyo_convert_time(time64_t time, struct tomoyo_time *stamp);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001041void tomoyo_del_condition(struct list_head *element);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001042void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
Tetsuo Handa8761afd2011-07-08 13:22:41 +09001043void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001044void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001045void tomoyo_load_policy(const char *filename);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001046void tomoyo_normalize_line(unsigned char *buffer);
1047void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001048void tomoyo_print_ip(char *buf, const unsigned int size,
1049 const struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001050void tomoyo_print_ulong(char *buffer, const int buffer_len,
1051 const unsigned long value, const u8 type);
1052void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
1053void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
1054void tomoyo_read_log(struct tomoyo_io_buffer *head);
1055void tomoyo_update_stat(const u8 index);
1056void tomoyo_warn_oom(const char *function);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001057void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001058 __printf(2, 3);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001059void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
1060 va_list args);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001061
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001062/********** External variable definitions. **********/
1063
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001064extern bool tomoyo_policy_loaded;
Tetsuo Handa2066a362011-07-08 13:21:37 +09001065extern const char * const tomoyo_condition_keyword
1066[TOMOYO_MAX_CONDITION_KEYWORD];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001067extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
1068extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
1069 + TOMOYO_MAX_MAC_CATEGORY_INDEX];
1070extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE];
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001071extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001072extern const char * const tomoyo_proto_keyword[TOMOYO_SOCK_MAX];
1073extern const char * const tomoyo_socket_keyword[TOMOYO_MAX_NETWORK_OPERATION];
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001074extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001075extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION];
Tetsuo Handa0d2171d2011-06-26 23:17:46 +09001076extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION];
1077extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION];
Tetsuo Handa2066a362011-07-08 13:21:37 +09001078extern struct list_head tomoyo_condition_list;
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001079extern struct list_head tomoyo_domain_list;
1080extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
1081extern struct list_head tomoyo_namespace_list;
1082extern struct mutex tomoyo_policy_lock;
1083extern struct srcu_struct tomoyo_ss;
1084extern struct tomoyo_domain_info tomoyo_kernel_domain;
1085extern struct tomoyo_policy_namespace tomoyo_kernel_namespace;
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001086extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
1087extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +09001088
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001089/********** Inlined functions. **********/
1090
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001091/**
1092 * tomoyo_read_lock - Take lock for protecting policy.
1093 *
1094 * Returns index number for tomoyo_read_unlock().
1095 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001096static inline int tomoyo_read_lock(void)
1097{
1098 return srcu_read_lock(&tomoyo_ss);
1099}
1100
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001101/**
1102 * tomoyo_read_unlock - Release lock for protecting policy.
1103 *
1104 * @idx: Index number returned by tomoyo_read_lock().
1105 *
1106 * Returns nothing.
1107 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001108static inline void tomoyo_read_unlock(int idx)
1109{
1110 srcu_read_unlock(&tomoyo_ss, idx);
1111}
1112
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001113/**
Tetsuo Handa2066a362011-07-08 13:21:37 +09001114 * tomoyo_sys_getppid - Copy of getppid().
1115 *
1116 * Returns parent process's PID.
1117 *
1118 * Alpha does not have getppid() defined. To be able to build this module on
1119 * Alpha, I have to copy getppid() from kernel/timer.c.
1120 */
1121static inline pid_t tomoyo_sys_getppid(void)
1122{
1123 pid_t pid;
1124 rcu_read_lock();
Kees Cookbb80d882011-12-08 16:30:42 -08001125 pid = task_tgid_vnr(rcu_dereference(current->real_parent));
Tetsuo Handa2066a362011-07-08 13:21:37 +09001126 rcu_read_unlock();
1127 return pid;
1128}
1129
1130/**
1131 * tomoyo_sys_getpid - Copy of getpid().
1132 *
1133 * Returns current thread's PID.
1134 *
1135 * Alpha does not have getpid() defined. To be able to build this module on
1136 * Alpha, I have to copy getpid() from kernel/timer.c.
1137 */
1138static inline pid_t tomoyo_sys_getpid(void)
1139{
1140 return task_tgid_vnr(current);
1141}
1142
1143/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001144 * tomoyo_pathcmp - strcmp() for "struct tomoyo_path_info" structure.
1145 *
1146 * @a: Pointer to "struct tomoyo_path_info".
1147 * @b: Pointer to "struct tomoyo_path_info".
1148 *
1149 * Returns true if @a == @b, false otherwise.
1150 */
Kentaro Takeda95908372009-02-05 17:18:13 +09001151static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
1152 const struct tomoyo_path_info *b)
1153{
1154 return a->hash != b->hash || strcmp(a->name, b->name);
1155}
1156
Kentaro Takeda95908372009-02-05 17:18:13 +09001157/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001158 * tomoyo_put_name - Drop reference on "struct tomoyo_name".
1159 *
1160 * @name: Pointer to "struct tomoyo_path_info". Maybe NULL.
1161 *
1162 * Returns nothing.
1163 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001164static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
1165{
1166 if (name) {
Tetsuo Handae2bf6902010-06-25 11:16:00 +09001167 struct tomoyo_name *ptr =
1168 container_of(name, typeof(*ptr), entry);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001169 atomic_dec(&ptr->head.users);
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001170 }
1171}
Kentaro Takeda95908372009-02-05 17:18:13 +09001172
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001173/**
Tetsuo Handa2066a362011-07-08 13:21:37 +09001174 * tomoyo_put_condition - Drop reference on "struct tomoyo_condition".
1175 *
1176 * @cond: Pointer to "struct tomoyo_condition". Maybe NULL.
1177 *
1178 * Returns nothing.
1179 */
1180static inline void tomoyo_put_condition(struct tomoyo_condition *cond)
1181{
1182 if (cond)
1183 atomic_dec(&cond->head.users);
1184}
1185
1186/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001187 * tomoyo_put_group - Drop reference on "struct tomoyo_group".
1188 *
1189 * @group: Pointer to "struct tomoyo_group". Maybe NULL.
1190 *
1191 * Returns nothing.
1192 */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +09001193static inline void tomoyo_put_group(struct tomoyo_group *group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001194{
1195 if (group)
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001196 atomic_dec(&group->head.users);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001197}
1198
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001199/**
1200 * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread.
1201 *
1202 * Returns pointer to "struct tomoyo_domain_info" for current thread.
1203 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001204static inline struct tomoyo_domain_info *tomoyo_domain(void)
1205{
1206 return current_cred()->security;
1207}
Kentaro Takeda95908372009-02-05 17:18:13 +09001208
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001209/**
1210 * tomoyo_real_domain - Get "struct tomoyo_domain_info" for specified thread.
1211 *
1212 * @task: Pointer to "struct task_struct".
1213 *
1214 * Returns pointer to "struct tomoyo_security" for specified thread.
1215 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001216static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
1217 *task)
1218{
1219 return task_cred_xxx(task, security);
1220}
Kentaro Takeda95908372009-02-05 17:18:13 +09001221
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001222/**
1223 * tomoyo_same_name_union - Check for duplicated "struct tomoyo_name_union" entry.
1224 *
1225 * @a: Pointer to "struct tomoyo_name_union".
1226 * @b: Pointer to "struct tomoyo_name_union".
1227 *
1228 * Returns true if @a == @b, false otherwise.
1229 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001230static inline bool tomoyo_same_name_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001231(const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001232{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001233 return a->filename == b->filename && a->group == b->group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001234}
1235
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001236/**
1237 * tomoyo_same_number_union - Check for duplicated "struct tomoyo_number_union" entry.
1238 *
1239 * @a: Pointer to "struct tomoyo_number_union".
1240 * @b: Pointer to "struct tomoyo_number_union".
1241 *
1242 * Returns true if @a == @b, false otherwise.
1243 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001244static inline bool tomoyo_same_number_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001245(const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001246{
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001247 return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001248 a->group == b->group && a->value_type[0] == b->value_type[0] &&
1249 a->value_type[1] == b->value_type[1];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001250}
1251
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001252/**
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001253 * tomoyo_same_ipaddr_union - Check for duplicated "struct tomoyo_ipaddr_union" entry.
1254 *
1255 * @a: Pointer to "struct tomoyo_ipaddr_union".
1256 * @b: Pointer to "struct tomoyo_ipaddr_union".
1257 *
1258 * Returns true if @a == @b, false otherwise.
1259 */
1260static inline bool tomoyo_same_ipaddr_union
1261(const struct tomoyo_ipaddr_union *a, const struct tomoyo_ipaddr_union *b)
1262{
1263 return !memcmp(a->ip, b->ip, sizeof(a->ip)) && a->group == b->group &&
1264 a->is_ipv6 == b->is_ipv6;
1265}
1266
1267/**
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001268 * tomoyo_current_namespace - Get "struct tomoyo_policy_namespace" for current thread.
1269 *
1270 * Returns pointer to "struct tomoyo_policy_namespace" for current thread.
1271 */
1272static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
1273{
1274 return tomoyo_domain()->ns;
1275}
1276
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001277#if defined(CONFIG_SLOB)
1278
1279/**
1280 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1281 *
1282 * @size: Size to be rounded up.
1283 *
1284 * Returns @size.
1285 *
1286 * Since SLOB does not round up, this function simply returns @size.
1287 */
1288static inline int tomoyo_round2(size_t size)
1289{
1290 return size;
1291}
1292
1293#else
1294
1295/**
1296 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1297 *
1298 * @size: Size to be rounded up.
1299 *
1300 * Returns rounded size.
1301 *
1302 * Strictly speaking, SLAB may be able to allocate (e.g.) 96 bytes instead of
1303 * (e.g.) 128 bytes.
1304 */
1305static inline int tomoyo_round2(size_t size)
1306{
1307#if PAGE_SIZE == 4096
1308 size_t bsize = 32;
1309#else
1310 size_t bsize = 64;
1311#endif
1312 if (!size)
1313 return 0;
1314 while (size > bsize)
1315 bsize <<= 1;
1316 return bsize;
1317}
1318
1319#endif
1320
Kentaro Takeda95908372009-02-05 17:18:13 +09001321/**
1322 * list_for_each_cookie - iterate over a list with cookie.
1323 * @pos: the &struct list_head to use as a loop cursor.
Kentaro Takeda95908372009-02-05 17:18:13 +09001324 * @head: the head for your list.
Kentaro Takeda95908372009-02-05 17:18:13 +09001325 */
Tetsuo Handa475e6fa2010-06-24 11:28:14 +09001326#define list_for_each_cookie(pos, head) \
1327 if (!pos) \
1328 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1329 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001330
Kentaro Takeda95908372009-02-05 17:18:13 +09001331#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */