blob: 41898613d93b5fda8b30b1da722acba64c6f6d6d [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>
Casey Schaufler43fc4602018-09-21 17:18:07 -070032#include <linux/lsm_hooks.h>
Tetsuo Handa059d84d2011-09-10 15:23:54 +090033#include <net/sock.h>
34#include <net/af_unix.h>
35#include <net/ip.h>
36#include <net/ipv6.h>
37#include <net/udp.h>
Kentaro Takeda95908372009-02-05 17:18:13 +090038
Tetsuo Handa76bb0892010-02-11 09:42:40 +090039/********** Constants definitions. **********/
40
41/*
42 * TOMOYO uses this hash only when appending a string into the string
43 * table. Frequency of appending strings is very low. So we don't need
44 * large (e.g. 64k) hash size. 256 will be sufficient.
45 */
46#define TOMOYO_HASH_BITS 8
47#define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
48
Tetsuo Handa059d84d2011-09-10 15:23:54 +090049/*
50 * TOMOYO checks only SOCK_STREAM, SOCK_DGRAM, SOCK_RAW, SOCK_SEQPACKET.
51 * Therefore, we don't need SOCK_MAX.
52 */
53#define TOMOYO_SOCK_MAX 6
54
Tetsuo Handac8c57e82010-06-03 20:36:43 +090055#define TOMOYO_EXEC_TMPSIZE 4096
Tetsuo Handa76bb0892010-02-11 09:42:40 +090056
Tetsuo Handaf9732ea2011-09-25 17:50:23 +090057/* Garbage collector is trying to kfree() this element. */
58#define TOMOYO_GC_IN_PROGRESS -1
59
Tetsuo Handa76bb0892010-02-11 09:42:40 +090060/* Profile number is an integer between 0 and 255. */
61#define TOMOYO_MAX_PROFILES 256
62
Tetsuo Handa32997142011-06-26 23:19:28 +090063/* Group number is an integer between 0 and 255. */
64#define TOMOYO_MAX_ACL_GROUPS 256
65
Tetsuo Handa2066a362011-07-08 13:21:37 +090066/* Index numbers for "struct tomoyo_condition". */
67enum tomoyo_conditions_index {
68 TOMOYO_TASK_UID, /* current_uid() */
69 TOMOYO_TASK_EUID, /* current_euid() */
70 TOMOYO_TASK_SUID, /* current_suid() */
71 TOMOYO_TASK_FSUID, /* current_fsuid() */
72 TOMOYO_TASK_GID, /* current_gid() */
73 TOMOYO_TASK_EGID, /* current_egid() */
74 TOMOYO_TASK_SGID, /* current_sgid() */
75 TOMOYO_TASK_FSGID, /* current_fsgid() */
76 TOMOYO_TASK_PID, /* sys_getpid() */
77 TOMOYO_TASK_PPID, /* sys_getppid() */
Tetsuo Handa5b636852011-07-08 13:24:54 +090078 TOMOYO_EXEC_ARGC, /* "struct linux_binprm *"->argc */
79 TOMOYO_EXEC_ENVC, /* "struct linux_binprm *"->envc */
Tetsuo Handa8761afd2011-07-08 13:22:41 +090080 TOMOYO_TYPE_IS_SOCKET, /* S_IFSOCK */
81 TOMOYO_TYPE_IS_SYMLINK, /* S_IFLNK */
82 TOMOYO_TYPE_IS_FILE, /* S_IFREG */
83 TOMOYO_TYPE_IS_BLOCK_DEV, /* S_IFBLK */
84 TOMOYO_TYPE_IS_DIRECTORY, /* S_IFDIR */
85 TOMOYO_TYPE_IS_CHAR_DEV, /* S_IFCHR */
86 TOMOYO_TYPE_IS_FIFO, /* S_IFIFO */
87 TOMOYO_MODE_SETUID, /* S_ISUID */
88 TOMOYO_MODE_SETGID, /* S_ISGID */
89 TOMOYO_MODE_STICKY, /* S_ISVTX */
90 TOMOYO_MODE_OWNER_READ, /* S_IRUSR */
91 TOMOYO_MODE_OWNER_WRITE, /* S_IWUSR */
92 TOMOYO_MODE_OWNER_EXECUTE, /* S_IXUSR */
93 TOMOYO_MODE_GROUP_READ, /* S_IRGRP */
94 TOMOYO_MODE_GROUP_WRITE, /* S_IWGRP */
95 TOMOYO_MODE_GROUP_EXECUTE, /* S_IXGRP */
96 TOMOYO_MODE_OTHERS_READ, /* S_IROTH */
97 TOMOYO_MODE_OTHERS_WRITE, /* S_IWOTH */
98 TOMOYO_MODE_OTHERS_EXECUTE, /* S_IXOTH */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +090099 TOMOYO_EXEC_REALPATH,
100 TOMOYO_SYMLINK_TARGET,
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900101 TOMOYO_PATH1_UID,
102 TOMOYO_PATH1_GID,
103 TOMOYO_PATH1_INO,
104 TOMOYO_PATH1_MAJOR,
105 TOMOYO_PATH1_MINOR,
106 TOMOYO_PATH1_PERM,
107 TOMOYO_PATH1_TYPE,
108 TOMOYO_PATH1_DEV_MAJOR,
109 TOMOYO_PATH1_DEV_MINOR,
110 TOMOYO_PATH2_UID,
111 TOMOYO_PATH2_GID,
112 TOMOYO_PATH2_INO,
113 TOMOYO_PATH2_MAJOR,
114 TOMOYO_PATH2_MINOR,
115 TOMOYO_PATH2_PERM,
116 TOMOYO_PATH2_TYPE,
117 TOMOYO_PATH2_DEV_MAJOR,
118 TOMOYO_PATH2_DEV_MINOR,
119 TOMOYO_PATH1_PARENT_UID,
120 TOMOYO_PATH1_PARENT_GID,
121 TOMOYO_PATH1_PARENT_INO,
122 TOMOYO_PATH1_PARENT_PERM,
123 TOMOYO_PATH2_PARENT_UID,
124 TOMOYO_PATH2_PARENT_GID,
125 TOMOYO_PATH2_PARENT_INO,
126 TOMOYO_PATH2_PARENT_PERM,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900127 TOMOYO_MAX_CONDITION_KEYWORD,
128 TOMOYO_NUMBER_UNION,
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900129 TOMOYO_NAME_UNION,
Tetsuo Handa5b636852011-07-08 13:24:54 +0900130 TOMOYO_ARGV_ENTRY,
131 TOMOYO_ENVP_ENTRY,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900132};
133
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900134
135/* Index numbers for stat(). */
136enum tomoyo_path_stat_index {
137 /* Do not change this order. */
138 TOMOYO_PATH1,
139 TOMOYO_PATH1_PARENT,
140 TOMOYO_PATH2,
141 TOMOYO_PATH2_PARENT,
142 TOMOYO_MAX_PATH_STAT
143};
144
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900145/* Index numbers for operation mode. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900146enum tomoyo_mode_index {
147 TOMOYO_CONFIG_DISABLED,
148 TOMOYO_CONFIG_LEARNING,
149 TOMOYO_CONFIG_PERMISSIVE,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900150 TOMOYO_CONFIG_ENFORCING,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900151 TOMOYO_CONFIG_MAX_MODE,
152 TOMOYO_CONFIG_WANT_REJECT_LOG = 64,
153 TOMOYO_CONFIG_WANT_GRANT_LOG = 128,
154 TOMOYO_CONFIG_USE_DEFAULT = 255,
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900155};
156
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900157/* Index numbers for entry type. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900158enum tomoyo_policy_id {
159 TOMOYO_ID_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900160 TOMOYO_ID_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900161 TOMOYO_ID_PATH_GROUP,
162 TOMOYO_ID_NUMBER_GROUP,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900163 TOMOYO_ID_TRANSITION_CONTROL,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900164 TOMOYO_ID_AGGREGATOR,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900165 TOMOYO_ID_MANAGER,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900166 TOMOYO_ID_CONDITION,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900167 TOMOYO_ID_NAME,
168 TOMOYO_ID_ACL,
169 TOMOYO_ID_DOMAIN,
170 TOMOYO_MAX_POLICY
171};
172
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900173/* Index numbers for domain's attributes. */
174enum tomoyo_domain_info_flags_index {
175 /* Quota warnning flag. */
176 TOMOYO_DIF_QUOTA_WARNED,
177 /*
178 * This domain was unable to create a new domain at
179 * tomoyo_find_next_domain() because the name of the domain to be
180 * created was too long or it could not allocate memory.
181 * More than one process continued execve() without domain transition.
182 */
183 TOMOYO_DIF_TRANSITION_FAILED,
184 TOMOYO_MAX_DOMAIN_INFO_FLAGS
185};
186
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900187/* Index numbers for audit type. */
188enum tomoyo_grant_log {
189 /* Follow profile's configuration. */
190 TOMOYO_GRANTLOG_AUTO,
191 /* Do not generate grant log. */
192 TOMOYO_GRANTLOG_NO,
193 /* Generate grant_log. */
194 TOMOYO_GRANTLOG_YES,
195};
196
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900197/* Index numbers for group entries. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900198enum tomoyo_group_id {
199 TOMOYO_PATH_GROUP,
200 TOMOYO_NUMBER_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900201 TOMOYO_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900202 TOMOYO_MAX_GROUP
203};
204
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900205/* Index numbers for type of numeric values. */
206enum tomoyo_value_type {
207 TOMOYO_VALUE_TYPE_INVALID,
208 TOMOYO_VALUE_TYPE_DECIMAL,
209 TOMOYO_VALUE_TYPE_OCTAL,
210 TOMOYO_VALUE_TYPE_HEXADECIMAL,
211};
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900212
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900213/* Index numbers for domain transition control keywords. */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900214enum tomoyo_transition_type {
215 /* Do not change this order, */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900216 TOMOYO_TRANSITION_CONTROL_NO_RESET,
217 TOMOYO_TRANSITION_CONTROL_RESET,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900218 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
219 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
220 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
221 TOMOYO_TRANSITION_CONTROL_KEEP,
222 TOMOYO_MAX_TRANSITION_TYPE
223};
224
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900225/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900226enum tomoyo_acl_entry_type_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900227 TOMOYO_TYPE_PATH_ACL,
228 TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900229 TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handa75093152010-06-16 16:23:55 +0900230 TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900231 TOMOYO_TYPE_MOUNT_ACL,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900232 TOMOYO_TYPE_INET_ACL,
233 TOMOYO_TYPE_UNIX_ACL,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900234 TOMOYO_TYPE_ENV_ACL,
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900235 TOMOYO_TYPE_MANUAL_TASK_ACL,
Tetsuo Handa084da352010-02-15 15:10:39 +0900236};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900237
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900238/* Index numbers for access controls with one pathname. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900239enum tomoyo_path_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900240 TOMOYO_TYPE_EXECUTE,
241 TOMOYO_TYPE_READ,
242 TOMOYO_TYPE_WRITE,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900243 TOMOYO_TYPE_APPEND,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900244 TOMOYO_TYPE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900245 TOMOYO_TYPE_GETATTR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900246 TOMOYO_TYPE_RMDIR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900247 TOMOYO_TYPE_TRUNCATE,
248 TOMOYO_TYPE_SYMLINK,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900249 TOMOYO_TYPE_CHROOT,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900250 TOMOYO_TYPE_UMOUNT,
251 TOMOYO_MAX_PATH_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900252};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900253
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900254/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900255enum tomoyo_memory_stat_type {
256 TOMOYO_MEMORY_POLICY,
257 TOMOYO_MEMORY_AUDIT,
258 TOMOYO_MEMORY_QUERY,
259 TOMOYO_MAX_MEMORY_STAT
260};
261
Tetsuo Handa75093152010-06-16 16:23:55 +0900262enum tomoyo_mkdev_acl_index {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900263 TOMOYO_TYPE_MKBLOCK,
264 TOMOYO_TYPE_MKCHAR,
Tetsuo Handa75093152010-06-16 16:23:55 +0900265 TOMOYO_MAX_MKDEV_OPERATION
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900266};
267
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900268/* Index numbers for socket operations. */
269enum tomoyo_network_acl_index {
270 TOMOYO_NETWORK_BIND, /* bind() operation. */
271 TOMOYO_NETWORK_LISTEN, /* listen() operation. */
272 TOMOYO_NETWORK_CONNECT, /* connect() operation. */
273 TOMOYO_NETWORK_SEND, /* send() operation. */
274 TOMOYO_MAX_NETWORK_OPERATION
275};
276
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900277/* Index numbers for access controls with two pathnames. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900278enum tomoyo_path2_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900279 TOMOYO_TYPE_LINK,
280 TOMOYO_TYPE_RENAME,
281 TOMOYO_TYPE_PIVOT_ROOT,
282 TOMOYO_MAX_PATH2_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900283};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900284
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900285/* Index numbers for access controls with one pathname and one number. */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900286enum tomoyo_path_number_acl_index {
287 TOMOYO_TYPE_CREATE,
288 TOMOYO_TYPE_MKDIR,
289 TOMOYO_TYPE_MKFIFO,
290 TOMOYO_TYPE_MKSOCK,
291 TOMOYO_TYPE_IOCTL,
292 TOMOYO_TYPE_CHMOD,
293 TOMOYO_TYPE_CHOWN,
294 TOMOYO_TYPE_CHGRP,
295 TOMOYO_MAX_PATH_NUMBER_OPERATION
296};
297
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900298/* Index numbers for /sys/kernel/security/tomoyo/ interfaces. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900299enum tomoyo_securityfs_interface_index {
300 TOMOYO_DOMAINPOLICY,
301 TOMOYO_EXCEPTIONPOLICY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900302 TOMOYO_PROCESS_STATUS,
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900303 TOMOYO_STAT,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900304 TOMOYO_AUDIT,
Tetsuo Handa084da352010-02-15 15:10:39 +0900305 TOMOYO_VERSION,
306 TOMOYO_PROFILE,
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900307 TOMOYO_QUERY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900308 TOMOYO_MANAGER
309};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900310
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900311/* Index numbers for special mount operations. */
312enum tomoyo_special_mount {
313 TOMOYO_MOUNT_BIND, /* mount --bind /source /dest */
314 TOMOYO_MOUNT_MOVE, /* mount --move /old /new */
315 TOMOYO_MOUNT_REMOUNT, /* mount -o remount /dir */
316 TOMOYO_MOUNT_MAKE_UNBINDABLE, /* mount --make-unbindable /dir */
317 TOMOYO_MOUNT_MAKE_PRIVATE, /* mount --make-private /dir */
318 TOMOYO_MOUNT_MAKE_SLAVE, /* mount --make-slave /dir */
319 TOMOYO_MOUNT_MAKE_SHARED, /* mount --make-shared /dir */
320 TOMOYO_MAX_SPECIAL_MOUNT
321};
322
323/* Index numbers for functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900324enum tomoyo_mac_index {
325 TOMOYO_MAC_FILE_EXECUTE,
326 TOMOYO_MAC_FILE_OPEN,
327 TOMOYO_MAC_FILE_CREATE,
328 TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900329 TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900330 TOMOYO_MAC_FILE_MKDIR,
331 TOMOYO_MAC_FILE_RMDIR,
332 TOMOYO_MAC_FILE_MKFIFO,
333 TOMOYO_MAC_FILE_MKSOCK,
334 TOMOYO_MAC_FILE_TRUNCATE,
335 TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900336 TOMOYO_MAC_FILE_MKBLOCK,
337 TOMOYO_MAC_FILE_MKCHAR,
338 TOMOYO_MAC_FILE_LINK,
339 TOMOYO_MAC_FILE_RENAME,
340 TOMOYO_MAC_FILE_CHMOD,
341 TOMOYO_MAC_FILE_CHOWN,
342 TOMOYO_MAC_FILE_CHGRP,
343 TOMOYO_MAC_FILE_IOCTL,
344 TOMOYO_MAC_FILE_CHROOT,
345 TOMOYO_MAC_FILE_MOUNT,
346 TOMOYO_MAC_FILE_UMOUNT,
347 TOMOYO_MAC_FILE_PIVOT_ROOT,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900348 TOMOYO_MAC_NETWORK_INET_STREAM_BIND,
349 TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN,
350 TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT,
351 TOMOYO_MAC_NETWORK_INET_DGRAM_BIND,
352 TOMOYO_MAC_NETWORK_INET_DGRAM_SEND,
353 TOMOYO_MAC_NETWORK_INET_RAW_BIND,
354 TOMOYO_MAC_NETWORK_INET_RAW_SEND,
355 TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND,
356 TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN,
357 TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT,
358 TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND,
359 TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND,
360 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND,
361 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN,
362 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900363 TOMOYO_MAC_ENVIRON,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900364 TOMOYO_MAX_MAC_INDEX
365};
366
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900367/* Index numbers for category of functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900368enum tomoyo_mac_category_index {
369 TOMOYO_MAC_CATEGORY_FILE,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900370 TOMOYO_MAC_CATEGORY_NETWORK,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900371 TOMOYO_MAC_CATEGORY_MISC,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900372 TOMOYO_MAX_MAC_CATEGORY_INDEX
373};
374
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900375/*
376 * Retry this request. Returned by tomoyo_supervisor() if policy violation has
377 * occurred in enforcing mode and the userspace daemon decided to retry.
378 *
379 * We must choose a positive value in order to distinguish "granted" (which is
380 * 0) and "rejected" (which is a negative value) and "retry".
381 */
382#define TOMOYO_RETRY_REQUEST 1
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900383
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900384/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
385enum tomoyo_policy_stat_type {
386 /* Do not change this order. */
387 TOMOYO_STAT_POLICY_UPDATES,
388 TOMOYO_STAT_POLICY_LEARNING, /* == TOMOYO_CONFIG_LEARNING */
389 TOMOYO_STAT_POLICY_PERMISSIVE, /* == TOMOYO_CONFIG_PERMISSIVE */
390 TOMOYO_STAT_POLICY_ENFORCING, /* == TOMOYO_CONFIG_ENFORCING */
391 TOMOYO_MAX_POLICY_STAT
392};
393
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900394/* Index numbers for profile's PREFERENCE values. */
395enum tomoyo_pref_index {
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900396 TOMOYO_PREF_MAX_AUDIT_LOG,
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900397 TOMOYO_PREF_MAX_LEARNING_ENTRY,
398 TOMOYO_MAX_PREF
399};
400
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900401/********** Structure definitions. **********/
Kentaro Takeda95908372009-02-05 17:18:13 +0900402
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900403/* Common header for holding ACL entries. */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900404struct tomoyo_acl_head {
405 struct list_head list;
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900406 s8 is_deleted; /* true or false or TOMOYO_GC_IN_PROGRESS */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900407} __packed;
408
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900409/* Common header for shared entries. */
410struct tomoyo_shared_acl_head {
411 struct list_head list;
412 atomic_t users;
413} __packed;
414
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900415struct tomoyo_policy_namespace;
416
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900417/* Structure for request info. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900418struct tomoyo_request_info {
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900419 /*
420 * For holding parameters specific to operations which deal files.
421 * NULL if not dealing files.
422 */
423 struct tomoyo_obj_info *obj;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900424 /*
425 * For holding parameters specific to execve() request.
426 * NULL if not dealing do_execve().
427 */
428 struct tomoyo_execve *ee;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900429 struct tomoyo_domain_info *domain;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900430 /* For holding parameters. */
431 union {
432 struct {
433 const struct tomoyo_path_info *filename;
Tetsuo Handa484ca792010-07-29 14:29:55 +0900434 /* For using wildcards at tomoyo_find_next_domain(). */
435 const struct tomoyo_path_info *matched_path;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900436 /* One of values in "enum tomoyo_path_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900437 u8 operation;
438 } path;
439 struct {
440 const struct tomoyo_path_info *filename1;
441 const struct tomoyo_path_info *filename2;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900442 /* One of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900443 u8 operation;
444 } path2;
445 struct {
446 const struct tomoyo_path_info *filename;
447 unsigned int mode;
448 unsigned int major;
449 unsigned int minor;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900450 /* One of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900451 u8 operation;
452 } mkdev;
453 struct {
454 const struct tomoyo_path_info *filename;
455 unsigned long number;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900456 /*
457 * One of values in
458 * "enum tomoyo_path_number_acl_index".
459 */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900460 u8 operation;
461 } path_number;
462 struct {
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900463 const struct tomoyo_path_info *name;
464 } environ;
465 struct {
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900466 const __be32 *address;
467 u16 port;
468 /* One of values smaller than TOMOYO_SOCK_MAX. */
469 u8 protocol;
470 /* One of values in "enum tomoyo_network_acl_index". */
471 u8 operation;
472 bool is_ipv6;
473 } inet_network;
474 struct {
475 const struct tomoyo_path_info *address;
476 /* One of values smaller than TOMOYO_SOCK_MAX. */
477 u8 protocol;
478 /* One of values in "enum tomoyo_network_acl_index". */
479 u8 operation;
480 } unix_network;
481 struct {
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900482 const struct tomoyo_path_info *type;
483 const struct tomoyo_path_info *dir;
484 const struct tomoyo_path_info *dev;
485 unsigned long flags;
486 int need_dev;
487 } mount;
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900488 struct {
489 const struct tomoyo_path_info *domainname;
490 } task;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900491 } param;
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900492 struct tomoyo_acl_info *matched_acl;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900493 u8 param_type;
494 bool granted;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900495 u8 retry;
496 u8 profile;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900497 u8 mode; /* One of tomoyo_mode_index . */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900498 u8 type;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900499};
500
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900501/* Structure for holding a token. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900502struct tomoyo_path_info {
503 const char *name;
504 u32 hash; /* = full_name_hash(name, strlen(name)) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900505 u16 const_len; /* = tomoyo_const_part_length(name) */
506 bool is_dir; /* = tomoyo_strendswith(name, "/") */
507 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900508};
509
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900510/* Structure for holding string data. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900511struct tomoyo_name {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900512 struct tomoyo_shared_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900513 struct tomoyo_path_info entry;
514};
Kentaro Takeda95908372009-02-05 17:18:13 +0900515
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900516/* Structure for holding a word. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900517struct tomoyo_name_union {
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900518 /* Either @filename or @group is NULL. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900519 const struct tomoyo_path_info *filename;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900520 struct tomoyo_group *group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900521};
522
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900523/* Structure for holding a number. */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900524struct tomoyo_number_union {
525 unsigned long values[2];
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900526 struct tomoyo_group *group; /* Maybe NULL. */
527 /* One of values in "enum tomoyo_value_type". */
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900528 u8 value_type[2];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900529};
530
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900531/* Structure for holding an IP address. */
532struct tomoyo_ipaddr_union {
533 struct in6_addr ip[2]; /* Big endian. */
534 struct tomoyo_group *group; /* Pointer to address group. */
535 bool is_ipv6; /* Valid only if @group == NULL. */
536};
537
538/* Structure for "path_group"/"number_group"/"address_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900539struct tomoyo_group {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900540 struct tomoyo_shared_acl_head head;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900541 const struct tomoyo_path_info *group_name;
542 struct list_head member_list;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900543};
544
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900545/* Structure for "path_group" directive. */
546struct tomoyo_path_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900547 struct tomoyo_acl_head head;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900548 const struct tomoyo_path_info *member_name;
549};
550
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900551/* Structure for "number_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900552struct tomoyo_number_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900553 struct tomoyo_acl_head head;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900554 struct tomoyo_number_union number;
555};
556
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900557/* Structure for "address_group" directive. */
558struct tomoyo_address_group {
559 struct tomoyo_acl_head head;
560 /* Structure for holding an IP address. */
561 struct tomoyo_ipaddr_union address;
562};
563
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900564/* Subset of "struct stat". Used by conditional ACL and audit logs. */
565struct tomoyo_mini_stat {
Eric W. Biederman609fcd12012-02-07 16:34:10 -0800566 kuid_t uid;
567 kgid_t gid;
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900568 ino_t ino;
Al Virod179333f2011-08-26 23:03:17 -0400569 umode_t mode;
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900570 dev_t dev;
571 dev_t rdev;
572};
573
Tetsuo Handa5b636852011-07-08 13:24:54 +0900574/* Structure for dumping argv[] and envp[] of "struct linux_binprm". */
575struct tomoyo_page_dump {
576 struct page *page; /* Previously dumped page. */
577 char *data; /* Contents of "page". Size is PAGE_SIZE. */
578};
579
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900580/* Structure for attribute checks in addition to pathname checks. */
581struct tomoyo_obj_info {
582 /*
583 * True if tomoyo_get_attributes() was already called, false otherwise.
584 */
585 bool validate_done;
586 /* True if @stat[] is valid. */
587 bool stat_valid[TOMOYO_MAX_PATH_STAT];
588 /* First pathname. Initialized with { NULL, NULL } if no path. */
589 struct path path1;
590 /* Second pathname. Initialized with { NULL, NULL } if no path. */
591 struct path path2;
592 /*
593 * Information on @path1, @path1's parent directory, @path2, @path2's
594 * parent directory.
595 */
596 struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900597 /*
598 * Content of symbolic link to be created. NULL for operations other
599 * than symlink().
600 */
601 struct tomoyo_path_info *symlink_target;
602};
603
Tetsuo Handa5b636852011-07-08 13:24:54 +0900604/* Structure for argv[]. */
605struct tomoyo_argv {
606 unsigned long index;
607 const struct tomoyo_path_info *value;
608 bool is_not;
609};
610
611/* Structure for envp[]. */
612struct tomoyo_envp {
613 const struct tomoyo_path_info *name;
614 const struct tomoyo_path_info *value;
615 bool is_not;
616};
617
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900618/* Structure for execve() operation. */
619struct tomoyo_execve {
620 struct tomoyo_request_info r;
621 struct tomoyo_obj_info obj;
622 struct linux_binprm *bprm;
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900623 const struct tomoyo_path_info *transition;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900624 /* For dumping argv[] and envp[]. */
625 struct tomoyo_page_dump dump;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900626 /* For temporary use. */
627 char *tmp; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900628};
629
Tetsuo Handa2066a362011-07-08 13:21:37 +0900630/* Structure for entries which follows "struct tomoyo_condition". */
631struct tomoyo_condition_element {
Tetsuo Handa5b636852011-07-08 13:24:54 +0900632 /*
633 * Left hand operand. A "struct tomoyo_argv" for TOMOYO_ARGV_ENTRY, a
634 * "struct tomoyo_envp" for TOMOYO_ENVP_ENTRY is attached to the tail
635 * of the array of this struct.
636 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900637 u8 left;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900638 /*
639 * Right hand operand. A "struct tomoyo_number_union" for
640 * TOMOYO_NUMBER_UNION, a "struct tomoyo_name_union" for
641 * TOMOYO_NAME_UNION is attached to the tail of the array of this
642 * struct.
643 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900644 u8 right;
645 /* Equation operator. True if equals or overlaps, false otherwise. */
646 bool equals;
647};
648
649/* Structure for optional arguments. */
650struct tomoyo_condition {
651 struct tomoyo_shared_acl_head head;
652 u32 size; /* Memory size allocated for this entry. */
653 u16 condc; /* Number of conditions in this struct. */
654 u16 numbers_count; /* Number of "struct tomoyo_number_union values". */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900655 u16 names_count; /* Number of "struct tomoyo_name_union names". */
Tetsuo Handa5b636852011-07-08 13:24:54 +0900656 u16 argc; /* Number of "struct tomoyo_argv". */
657 u16 envc; /* Number of "struct tomoyo_envp". */
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900658 u8 grant_log; /* One of values in "enum tomoyo_grant_log". */
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900659 const struct tomoyo_path_info *transit; /* Maybe NULL. */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900660 /*
661 * struct tomoyo_condition_element condition[condc];
662 * struct tomoyo_number_union values[numbers_count];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900663 * struct tomoyo_name_union names[names_count];
Tetsuo Handa5b636852011-07-08 13:24:54 +0900664 * struct tomoyo_argv argv[argc];
665 * struct tomoyo_envp envp[envc];
Tetsuo Handa2066a362011-07-08 13:21:37 +0900666 */
667};
668
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900669/* Common header for individual entries. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900670struct tomoyo_acl_info {
671 struct list_head list;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900672 struct tomoyo_condition *cond; /* Maybe NULL. */
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900673 s8 is_deleted; /* true or false or TOMOYO_GC_IN_PROGRESS */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900674 u8 type; /* One of values in "enum tomoyo_acl_entry_type_index". */
Kentaro Takeda95908372009-02-05 17:18:13 +0900675} __packed;
676
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900677/* Structure for domain information. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900678struct tomoyo_domain_info {
679 struct list_head list;
680 struct list_head acl_info_list;
681 /* Name of this domain. Never NULL. */
682 const struct tomoyo_path_info *domainname;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900683 /* Namespace for this domain. Never NULL. */
684 struct tomoyo_policy_namespace *ns;
Kentaro Takeda95908372009-02-05 17:18:13 +0900685 u8 profile; /* Profile number to use. */
Tetsuo Handa32997142011-06-26 23:19:28 +0900686 u8 group; /* Group number to use. */
Tetsuo Handaa0558fc2009-04-06 20:49:14 +0900687 bool is_deleted; /* Delete flag. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900688 bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900689 atomic_t users; /* Number of referring credentials. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900690};
691
Kentaro Takeda95908372009-02-05 17:18:13 +0900692/*
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900693 * Structure for "task manual_domain_transition" directive.
694 */
695struct tomoyo_task_acl {
696 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MANUAL_TASK_ACL */
697 /* Pointer to domainname. */
698 const struct tomoyo_path_info *domainname;
699};
700
701/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900702 * Structure for "file execute", "file read", "file write", "file append",
703 * "file unlink", "file getattr", "file rmdir", "file truncate",
704 * "file symlink", "file chroot" and "file unmount" directive.
Kentaro Takeda95908372009-02-05 17:18:13 +0900705 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900706struct tomoyo_path_acl {
707 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900708 u16 perm; /* Bitmask of values in "enum tomoyo_path_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900709 struct tomoyo_name_union name;
Kentaro Takeda95908372009-02-05 17:18:13 +0900710};
711
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900712/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900713 * Structure for "file create", "file mkdir", "file mkfifo", "file mksock",
714 * "file ioctl", "file chmod", "file chown" and "file chgrp" directive.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900715 */
716struct tomoyo_path_number_acl {
717 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900718 /* Bitmask of values in "enum tomoyo_path_number_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900719 u8 perm;
720 struct tomoyo_name_union name;
721 struct tomoyo_number_union number;
722};
723
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900724/* Structure for "file mkblock" and "file mkchar" directive. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900725struct tomoyo_mkdev_acl {
726 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900727 u8 perm; /* Bitmask of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900728 struct tomoyo_name_union name;
729 struct tomoyo_number_union mode;
730 struct tomoyo_number_union major;
731 struct tomoyo_number_union minor;
732};
733
734/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900735 * Structure for "file rename", "file link" and "file pivot_root" directive.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900736 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900737struct tomoyo_path2_acl {
738 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900739 u8 perm; /* Bitmask of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900740 struct tomoyo_name_union name1;
741 struct tomoyo_name_union name2;
Kentaro Takeda95908372009-02-05 17:18:13 +0900742};
743
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900744/* Structure for "file mount" directive. */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900745struct tomoyo_mount_acl {
746 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900747 struct tomoyo_name_union dev_name;
748 struct tomoyo_name_union dir_name;
749 struct tomoyo_name_union fs_type;
750 struct tomoyo_number_union flags;
751};
752
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900753/* Structure for "misc env" directive in domain policy. */
754struct tomoyo_env_acl {
755 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_ENV_ACL */
756 const struct tomoyo_path_info *env; /* environment variable */
757};
758
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900759/* Structure for "network inet" directive. */
760struct tomoyo_inet_acl {
761 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_INET_ACL */
762 u8 protocol;
763 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
764 struct tomoyo_ipaddr_union address;
765 struct tomoyo_number_union port;
766};
767
768/* Structure for "network unix" directive. */
769struct tomoyo_unix_acl {
770 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_UNIX_ACL */
771 u8 protocol;
772 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
773 struct tomoyo_name_union name;
774};
775
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900776/* Structure for holding a line from /sys/kernel/security/tomoyo/ interface. */
777struct tomoyo_acl_param {
778 char *data;
779 struct list_head *list;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900780 struct tomoyo_policy_namespace *ns;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900781 bool is_delete;
782};
783
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900784#define TOMOYO_MAX_IO_READ_QUEUE 64
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900785
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900786/*
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900787 * Structure for reading/writing policy via /sys/kernel/security/tomoyo
788 * interfaces.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900789 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900790struct tomoyo_io_buffer {
Tetsuo Handa8fbe71f2010-06-16 16:29:59 +0900791 void (*read) (struct tomoyo_io_buffer *);
Kentaro Takeda95908372009-02-05 17:18:13 +0900792 int (*write) (struct tomoyo_io_buffer *);
Al Viroc0d4be22017-07-02 23:32:02 -0400793 __poll_t (*poll) (struct file *file, poll_table *wait);
Kentaro Takeda95908372009-02-05 17:18:13 +0900794 /* Exclusive lock for this structure. */
795 struct mutex io_sem;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900796 char __user *read_user_buf;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900797 size_t read_user_buf_avail;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900798 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900799 struct list_head *ns;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900800 struct list_head *domain;
801 struct list_head *group;
802 struct list_head *acl;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900803 size_t avail;
804 unsigned int step;
805 unsigned int query_index;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900806 u16 index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900807 u16 cond_index;
Tetsuo Handa32997142011-06-26 23:19:28 +0900808 u8 acl_group_index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900809 u8 cond_step;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900810 u8 bit;
811 u8 w_pos;
812 bool eof;
813 bool print_this_domain_only;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900814 bool print_transition_related_only;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900815 bool print_cond_part;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900816 const char *w[TOMOYO_MAX_IO_READ_QUEUE];
817 } r;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900818 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900819 struct tomoyo_policy_namespace *ns;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900820 /* The position currently writing to. */
821 struct tomoyo_domain_info *domain;
822 /* Bytes available for writing. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900823 size_t avail;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900824 bool is_delete;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900825 } w;
Kentaro Takeda95908372009-02-05 17:18:13 +0900826 /* Buffer for reading. */
827 char *read_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900828 /* Size of read buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900829 size_t readbuf_size;
Kentaro Takeda95908372009-02-05 17:18:13 +0900830 /* Buffer for writing. */
831 char *write_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900832 /* Size of write buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900833 size_t writebuf_size;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900834 /* Type of this interface. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900835 enum tomoyo_securityfs_interface_index type;
Tetsuo Handa2e503bb2011-06-26 23:20:55 +0900836 /* Users counter protected by tomoyo_io_buffer_list_lock. */
837 u8 users;
838 /* List for telling GC not to kfree() elements. */
839 struct list_head list;
Kentaro Takeda95908372009-02-05 17:18:13 +0900840};
841
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900842/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900843 * Structure for "initialize_domain"/"no_initialize_domain"/"keep_domain"/
844 * "no_keep_domain" keyword.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900845 */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900846struct tomoyo_transition_control {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900847 struct tomoyo_acl_head head;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900848 u8 type; /* One of values in "enum tomoyo_transition_type". */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900849 /* True if the domainname is tomoyo_get_last_name(). */
850 bool is_last_name;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900851 const struct tomoyo_path_info *domainname; /* Maybe NULL */
852 const struct tomoyo_path_info *program; /* Maybe NULL */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900853};
854
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900855/* Structure for "aggregator" keyword. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900856struct tomoyo_aggregator {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900857 struct tomoyo_acl_head head;
Tetsuo Handa10843072010-06-03 20:38:03 +0900858 const struct tomoyo_path_info *original_name;
859 const struct tomoyo_path_info *aggregated_name;
Tetsuo Handa10843072010-06-03 20:38:03 +0900860};
861
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900862/* Structure for policy manager. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900863struct tomoyo_manager {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900864 struct tomoyo_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900865 /* A path to program or a domainname. */
866 const struct tomoyo_path_info *manager;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900867};
868
Tetsuo Handa57c25902010-06-03 20:38:44 +0900869struct tomoyo_preference {
870 unsigned int learning_max_entry;
871 bool enforcing_verbose;
872 bool learning_verbose;
873 bool permissive_verbose;
874};
875
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900876/* Structure for /sys/kernel/security/tomnoyo/profile interface. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900877struct tomoyo_profile {
878 const struct tomoyo_path_info *comment;
879 struct tomoyo_preference *learning;
880 struct tomoyo_preference *permissive;
881 struct tomoyo_preference *enforcing;
882 struct tomoyo_preference preference;
883 u8 default_config;
884 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900885 unsigned int pref[TOMOYO_MAX_PREF];
Tetsuo Handa57c25902010-06-03 20:38:44 +0900886};
887
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900888/* Structure for representing YYYY/MM/DD hh/mm/ss. */
889struct tomoyo_time {
890 u16 year;
891 u8 month;
892 u8 day;
893 u8 hour;
894 u8 min;
895 u8 sec;
896};
897
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900898/* Structure for policy namespace. */
899struct tomoyo_policy_namespace {
900 /* Profile table. Memory is allocated as needed. */
901 struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
902 /* List of "struct tomoyo_group". */
903 struct list_head group_list[TOMOYO_MAX_GROUP];
904 /* List of policy. */
905 struct list_head policy_list[TOMOYO_MAX_POLICY];
906 /* The global ACL referred by "use_group" keyword. */
907 struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
908 /* List for connecting to tomoyo_namespace_list list. */
909 struct list_head namespace_list;
Tetsuo Handa843d1832011-09-14 17:03:19 +0900910 /* Profile version. Currently only 20110903 is defined. */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900911 unsigned int profile_version;
912 /* Name of this namespace (e.g. "<kernel>", "</usr/sbin/httpd>" ). */
913 const char *name;
914};
915
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900916/********** Function prototypes. **********/
917
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900918bool tomoyo_address_matches_group(const bool is_ipv6, const __be32 *address,
919 const struct tomoyo_group *group);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900920bool tomoyo_compare_number_union(const unsigned long value,
921 const struct tomoyo_number_union *ptr);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900922bool tomoyo_condition(struct tomoyo_request_info *r,
923 const struct tomoyo_condition *cond);
Tetsuo Handa75093152010-06-16 16:23:55 +0900924bool tomoyo_correct_domain(const unsigned char *domainname);
Tetsuo Handa75093152010-06-16 16:23:55 +0900925bool tomoyo_correct_path(const char *filename);
926bool tomoyo_correct_word(const char *string);
Tetsuo Handa75093152010-06-16 16:23:55 +0900927bool tomoyo_domain_def(const unsigned char *buffer);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900928bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
Tetsuo Handa5b636852011-07-08 13:24:54 +0900929bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
930 struct tomoyo_page_dump *dump);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900931bool tomoyo_memory_ok(void *ptr);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900932bool tomoyo_number_matches_group(const unsigned long min,
933 const unsigned long max,
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900934 const struct tomoyo_group *group);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900935bool tomoyo_parse_ipaddr_union(struct tomoyo_acl_param *param,
936 struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900937bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
938 struct tomoyo_name_union *ptr);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900939bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
940 struct tomoyo_number_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900941bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
942 const struct tomoyo_path_info *pattern);
943bool tomoyo_permstr(const char *string, const char *keyword);
944bool tomoyo_str_starts(char **src, const char *find);
945char *tomoyo_encode(const char *str);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900946char *tomoyo_encode2(const char *str, int str_len);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900947char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
948 va_list args);
949char *tomoyo_read_token(struct tomoyo_acl_param *param);
Al Viro22473862015-03-08 19:24:30 -0400950char *tomoyo_realpath_from_path(const struct path *path);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900951char *tomoyo_realpath_nofollow(const char *pathname);
952const char *tomoyo_get_exe(void);
953const char *tomoyo_yesno(const unsigned int value);
954const struct tomoyo_path_info *tomoyo_compare_name_union
955(const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900956const struct tomoyo_path_info *tomoyo_get_domainname
957(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900958const struct tomoyo_path_info *tomoyo_get_name(const char *name);
959const struct tomoyo_path_info *tomoyo_path_matches_group
960(const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
961int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
Al Viroe6641ed2016-03-25 14:41:28 -0400962 const struct path *path, const int flag);
Al Viroe53cfda2013-04-14 16:59:00 -0400963void tomoyo_close_control(struct tomoyo_io_buffer *head);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900964int tomoyo_env_perm(struct tomoyo_request_info *r, const char *env);
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900965int tomoyo_execute_permission(struct tomoyo_request_info *r,
966 const struct tomoyo_path_info *filename);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900967int tomoyo_find_next_domain(struct linux_binprm *bprm);
968int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
969 const u8 index);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900970int tomoyo_init_request_info(struct tomoyo_request_info *r,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900971 struct tomoyo_domain_info *domain,
972 const u8 index);
Al Viroe6641ed2016-03-25 14:41:28 -0400973int tomoyo_mkdev_perm(const u8 operation, const struct path *path,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900974 const unsigned int mode, unsigned int dev);
Al Viroe6641ed2016-03-25 14:41:28 -0400975int tomoyo_mount_permission(const char *dev_name, const struct path *path,
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900976 const char *type, unsigned long flags,
977 void *data_page);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900978int tomoyo_open_control(const u8 type, struct file *file);
Al Viroe6641ed2016-03-25 14:41:28 -0400979int tomoyo_path2_perm(const u8 operation, const struct path *path1,
980 const struct path *path2);
981int tomoyo_path_number_perm(const u8 operation, const struct path *path,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900982 unsigned long number);
Al Viro3f7036a2015-03-08 19:28:30 -0400983int tomoyo_path_perm(const u8 operation, const struct path *path,
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900984 const char *target);
Al Viroc0d4be22017-07-02 23:32:02 -0400985__poll_t tomoyo_poll_control(struct file *file, poll_table *wait);
986__poll_t tomoyo_poll_log(struct file *file, poll_table *wait);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900987int tomoyo_socket_bind_permission(struct socket *sock, struct sockaddr *addr,
988 int addr_len);
989int tomoyo_socket_connect_permission(struct socket *sock,
990 struct sockaddr *addr, int addr_len);
991int tomoyo_socket_listen_permission(struct socket *sock);
992int tomoyo_socket_sendmsg_permission(struct socket *sock, struct msghdr *msg,
993 int size);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900994int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
995 __printf(2, 3);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900996int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900997 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900998 bool (*check_duplicate)
999 (const struct tomoyo_acl_info *,
1000 const struct tomoyo_acl_info *),
1001 bool (*merge_duplicate)
1002 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
1003 const bool));
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +09001004int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001005 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001006 bool (*check_duplicate)
1007 (const struct tomoyo_acl_head *,
1008 const struct tomoyo_acl_head *));
1009int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
1010int tomoyo_write_file(struct tomoyo_acl_param *param);
1011int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
Tetsuo Handad58e0da2011-09-10 15:22:48 +09001012int tomoyo_write_misc(struct tomoyo_acl_param *param);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001013int tomoyo_write_inet_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001014int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
1015 const u8 type);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001016int tomoyo_write_unix_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001017ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
1018 const int buffer_len);
1019ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
1020 const char __user *buffer, const int buffer_len);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001021struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001022struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
1023 const bool transit);
1024struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
1025struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
1026 const u8 idx);
1027struct tomoyo_policy_namespace *tomoyo_assign_namespace
1028(const char *domainname);
1029struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
1030 const u8 profile);
1031unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
1032 const u8 index);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001033u8 tomoyo_parse_ulong(unsigned long *result, char **str);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001034void *tomoyo_commit_ok(void *data, const unsigned int size);
1035void __init tomoyo_load_builtin_policy(void);
1036void __init tomoyo_mm_init(void);
Tetsuo Handa99a85252010-06-16 16:22:51 +09001037void tomoyo_check_acl(struct tomoyo_request_info *r,
Tetsuo Handa484ca792010-07-29 14:29:55 +09001038 bool (*check_entry) (struct tomoyo_request_info *,
Tetsuo Handa99a85252010-06-16 16:22:51 +09001039 const struct tomoyo_acl_info *));
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001040void tomoyo_check_profile(void);
Arnd Bergmann92734092017-10-19 14:29:04 +02001041void tomoyo_convert_time(time64_t time, struct tomoyo_time *stamp);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001042void tomoyo_del_condition(struct list_head *element);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001043void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
Tetsuo Handa8761afd2011-07-08 13:22:41 +09001044void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001045void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001046void tomoyo_load_policy(const char *filename);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001047void tomoyo_normalize_line(unsigned char *buffer);
1048void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001049void tomoyo_print_ip(char *buf, const unsigned int size,
1050 const struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001051void tomoyo_print_ulong(char *buffer, const int buffer_len,
1052 const unsigned long value, const u8 type);
1053void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
1054void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
1055void tomoyo_read_log(struct tomoyo_io_buffer *head);
1056void tomoyo_update_stat(const u8 index);
1057void tomoyo_warn_oom(const char *function);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001058void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001059 __printf(2, 3);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001060void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
1061 va_list args);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001062
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001063/********** External variable definitions. **********/
1064
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001065extern bool tomoyo_policy_loaded;
Casey Schaufler43fc4602018-09-21 17:18:07 -07001066extern int tomoyo_enabled;
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();
Kees Cookbb80d882011-12-08 16:30:42 -08001127 pid = task_tgid_vnr(rcu_dereference(current->real_parent));
Tetsuo Handa2066a362011-07-08 13:21:37 +09001128 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/**
Casey Schaufler43fc4602018-09-21 17:18:07 -07001202 * tomoyo_cred - Get a pointer to the tomoyo cred security blob
1203 * @cred - the relevant cred
1204 *
1205 * Returns pointer to the tomoyo cred blob.
1206 */
1207static inline struct tomoyo_domain_info **tomoyo_cred(const struct cred *cred)
1208{
1209 return (struct tomoyo_domain_info **)&cred->security;
1210}
1211
1212/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001213 * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread.
1214 *
1215 * Returns pointer to "struct tomoyo_domain_info" for current thread.
1216 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001217static inline struct tomoyo_domain_info *tomoyo_domain(void)
1218{
Casey Schaufler43fc4602018-09-21 17:18:07 -07001219 struct tomoyo_domain_info **blob = tomoyo_cred(current_cred());
1220
1221 return *blob;
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001222}
Kentaro Takeda95908372009-02-05 17:18:13 +09001223
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001224/**
1225 * tomoyo_real_domain - Get "struct tomoyo_domain_info" for specified thread.
1226 *
1227 * @task: Pointer to "struct task_struct".
1228 *
1229 * Returns pointer to "struct tomoyo_security" for specified thread.
1230 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001231static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
1232 *task)
1233{
Casey Schaufler43fc4602018-09-21 17:18:07 -07001234 struct tomoyo_domain_info **blob = tomoyo_cred(get_task_cred(task));
1235
1236 return *blob;
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001237}
Kentaro Takeda95908372009-02-05 17:18:13 +09001238
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001239/**
1240 * tomoyo_same_name_union - Check for duplicated "struct tomoyo_name_union" entry.
1241 *
1242 * @a: Pointer to "struct tomoyo_name_union".
1243 * @b: Pointer to "struct tomoyo_name_union".
1244 *
1245 * Returns true if @a == @b, false otherwise.
1246 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001247static inline bool tomoyo_same_name_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001248(const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001249{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001250 return a->filename == b->filename && a->group == b->group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001251}
1252
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001253/**
1254 * tomoyo_same_number_union - Check for duplicated "struct tomoyo_number_union" entry.
1255 *
1256 * @a: Pointer to "struct tomoyo_number_union".
1257 * @b: Pointer to "struct tomoyo_number_union".
1258 *
1259 * Returns true if @a == @b, false otherwise.
1260 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001261static inline bool tomoyo_same_number_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001262(const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001263{
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001264 return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001265 a->group == b->group && a->value_type[0] == b->value_type[0] &&
1266 a->value_type[1] == b->value_type[1];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001267}
1268
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001269/**
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001270 * tomoyo_same_ipaddr_union - Check for duplicated "struct tomoyo_ipaddr_union" entry.
1271 *
1272 * @a: Pointer to "struct tomoyo_ipaddr_union".
1273 * @b: Pointer to "struct tomoyo_ipaddr_union".
1274 *
1275 * Returns true if @a == @b, false otherwise.
1276 */
1277static inline bool tomoyo_same_ipaddr_union
1278(const struct tomoyo_ipaddr_union *a, const struct tomoyo_ipaddr_union *b)
1279{
1280 return !memcmp(a->ip, b->ip, sizeof(a->ip)) && a->group == b->group &&
1281 a->is_ipv6 == b->is_ipv6;
1282}
1283
1284/**
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001285 * tomoyo_current_namespace - Get "struct tomoyo_policy_namespace" for current thread.
1286 *
1287 * Returns pointer to "struct tomoyo_policy_namespace" for current thread.
1288 */
1289static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
1290{
1291 return tomoyo_domain()->ns;
1292}
1293
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001294#if defined(CONFIG_SLOB)
1295
1296/**
1297 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1298 *
1299 * @size: Size to be rounded up.
1300 *
1301 * Returns @size.
1302 *
1303 * Since SLOB does not round up, this function simply returns @size.
1304 */
1305static inline int tomoyo_round2(size_t size)
1306{
1307 return size;
1308}
1309
1310#else
1311
1312/**
1313 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1314 *
1315 * @size: Size to be rounded up.
1316 *
1317 * Returns rounded size.
1318 *
1319 * Strictly speaking, SLAB may be able to allocate (e.g.) 96 bytes instead of
1320 * (e.g.) 128 bytes.
1321 */
1322static inline int tomoyo_round2(size_t size)
1323{
1324#if PAGE_SIZE == 4096
1325 size_t bsize = 32;
1326#else
1327 size_t bsize = 64;
1328#endif
1329 if (!size)
1330 return 0;
1331 while (size > bsize)
1332 bsize <<= 1;
1333 return bsize;
1334}
1335
1336#endif
1337
Kentaro Takeda95908372009-02-05 17:18:13 +09001338/**
1339 * list_for_each_cookie - iterate over a list with cookie.
1340 * @pos: the &struct list_head to use as a loop cursor.
Kentaro Takeda95908372009-02-05 17:18:13 +09001341 * @head: the head for your list.
Kentaro Takeda95908372009-02-05 17:18:13 +09001342 */
Tetsuo Handa475e6fa2010-06-24 11:28:14 +09001343#define list_for_each_cookie(pos, head) \
1344 if (!pos) \
1345 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1346 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001347
Kentaro Takeda95908372009-02-05 17:18:13 +09001348#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */