blob: 050473df5809f13f467c4cdebffd981a773948a9 [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
Tetsuo Handacdcf6722019-01-24 18:37:35 +090013#define pr_fmt(fmt) fmt
14
Kentaro Takeda95908372009-02-05 17:18:13 +090015#include <linux/ctype.h>
16#include <linux/string.h>
17#include <linux/mm.h>
18#include <linux/file.h>
19#include <linux/kmod.h>
20#include <linux/fs.h>
21#include <linux/sched.h>
22#include <linux/namei.h>
23#include <linux/mount.h>
24#include <linux/list.h>
Tetsuo Handa76bb0892010-02-11 09:42:40 +090025#include <linux/cred.h>
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +090026#include <linux/poll.h>
Tetsuo Handa2066a362011-07-08 13:21:37 +090027#include <linux/binfmts.h>
28#include <linux/highmem.h>
Tetsuo Handa059d84d2011-09-10 15:23:54 +090029#include <linux/net.h>
30#include <linux/inet.h>
31#include <linux/in.h>
32#include <linux/in6.h>
33#include <linux/un.h>
Casey Schaufler43fc4602018-09-21 17:18:07 -070034#include <linux/lsm_hooks.h>
Tetsuo Handa059d84d2011-09-10 15:23:54 +090035#include <net/sock.h>
36#include <net/af_unix.h>
37#include <net/ip.h>
38#include <net/ipv6.h>
39#include <net/udp.h>
Kentaro Takeda95908372009-02-05 17:18:13 +090040
Tetsuo Handa76bb0892010-02-11 09:42:40 +090041/********** Constants definitions. **********/
42
43/*
44 * TOMOYO uses this hash only when appending a string into the string
45 * table. Frequency of appending strings is very low. So we don't need
46 * large (e.g. 64k) hash size. 256 will be sufficient.
47 */
48#define TOMOYO_HASH_BITS 8
49#define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
50
Tetsuo Handa059d84d2011-09-10 15:23:54 +090051/*
52 * TOMOYO checks only SOCK_STREAM, SOCK_DGRAM, SOCK_RAW, SOCK_SEQPACKET.
53 * Therefore, we don't need SOCK_MAX.
54 */
55#define TOMOYO_SOCK_MAX 6
56
Tetsuo Handac8c57e82010-06-03 20:36:43 +090057#define TOMOYO_EXEC_TMPSIZE 4096
Tetsuo Handa76bb0892010-02-11 09:42:40 +090058
Tetsuo Handaf9732ea2011-09-25 17:50:23 +090059/* Garbage collector is trying to kfree() this element. */
60#define TOMOYO_GC_IN_PROGRESS -1
61
Tetsuo Handa76bb0892010-02-11 09:42:40 +090062/* Profile number is an integer between 0 and 255. */
63#define TOMOYO_MAX_PROFILES 256
64
Tetsuo Handa32997142011-06-26 23:19:28 +090065/* Group number is an integer between 0 and 255. */
66#define TOMOYO_MAX_ACL_GROUPS 256
67
Tetsuo Handa2066a362011-07-08 13:21:37 +090068/* Index numbers for "struct tomoyo_condition". */
69enum tomoyo_conditions_index {
70 TOMOYO_TASK_UID, /* current_uid() */
71 TOMOYO_TASK_EUID, /* current_euid() */
72 TOMOYO_TASK_SUID, /* current_suid() */
73 TOMOYO_TASK_FSUID, /* current_fsuid() */
74 TOMOYO_TASK_GID, /* current_gid() */
75 TOMOYO_TASK_EGID, /* current_egid() */
76 TOMOYO_TASK_SGID, /* current_sgid() */
77 TOMOYO_TASK_FSGID, /* current_fsgid() */
78 TOMOYO_TASK_PID, /* sys_getpid() */
79 TOMOYO_TASK_PPID, /* sys_getppid() */
Tetsuo Handa5b636852011-07-08 13:24:54 +090080 TOMOYO_EXEC_ARGC, /* "struct linux_binprm *"->argc */
81 TOMOYO_EXEC_ENVC, /* "struct linux_binprm *"->envc */
Tetsuo Handa8761afd2011-07-08 13:22:41 +090082 TOMOYO_TYPE_IS_SOCKET, /* S_IFSOCK */
83 TOMOYO_TYPE_IS_SYMLINK, /* S_IFLNK */
84 TOMOYO_TYPE_IS_FILE, /* S_IFREG */
85 TOMOYO_TYPE_IS_BLOCK_DEV, /* S_IFBLK */
86 TOMOYO_TYPE_IS_DIRECTORY, /* S_IFDIR */
87 TOMOYO_TYPE_IS_CHAR_DEV, /* S_IFCHR */
88 TOMOYO_TYPE_IS_FIFO, /* S_IFIFO */
89 TOMOYO_MODE_SETUID, /* S_ISUID */
90 TOMOYO_MODE_SETGID, /* S_ISGID */
91 TOMOYO_MODE_STICKY, /* S_ISVTX */
92 TOMOYO_MODE_OWNER_READ, /* S_IRUSR */
93 TOMOYO_MODE_OWNER_WRITE, /* S_IWUSR */
94 TOMOYO_MODE_OWNER_EXECUTE, /* S_IXUSR */
95 TOMOYO_MODE_GROUP_READ, /* S_IRGRP */
96 TOMOYO_MODE_GROUP_WRITE, /* S_IWGRP */
97 TOMOYO_MODE_GROUP_EXECUTE, /* S_IXGRP */
98 TOMOYO_MODE_OTHERS_READ, /* S_IROTH */
99 TOMOYO_MODE_OTHERS_WRITE, /* S_IWOTH */
100 TOMOYO_MODE_OTHERS_EXECUTE, /* S_IXOTH */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900101 TOMOYO_EXEC_REALPATH,
102 TOMOYO_SYMLINK_TARGET,
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900103 TOMOYO_PATH1_UID,
104 TOMOYO_PATH1_GID,
105 TOMOYO_PATH1_INO,
106 TOMOYO_PATH1_MAJOR,
107 TOMOYO_PATH1_MINOR,
108 TOMOYO_PATH1_PERM,
109 TOMOYO_PATH1_TYPE,
110 TOMOYO_PATH1_DEV_MAJOR,
111 TOMOYO_PATH1_DEV_MINOR,
112 TOMOYO_PATH2_UID,
113 TOMOYO_PATH2_GID,
114 TOMOYO_PATH2_INO,
115 TOMOYO_PATH2_MAJOR,
116 TOMOYO_PATH2_MINOR,
117 TOMOYO_PATH2_PERM,
118 TOMOYO_PATH2_TYPE,
119 TOMOYO_PATH2_DEV_MAJOR,
120 TOMOYO_PATH2_DEV_MINOR,
121 TOMOYO_PATH1_PARENT_UID,
122 TOMOYO_PATH1_PARENT_GID,
123 TOMOYO_PATH1_PARENT_INO,
124 TOMOYO_PATH1_PARENT_PERM,
125 TOMOYO_PATH2_PARENT_UID,
126 TOMOYO_PATH2_PARENT_GID,
127 TOMOYO_PATH2_PARENT_INO,
128 TOMOYO_PATH2_PARENT_PERM,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900129 TOMOYO_MAX_CONDITION_KEYWORD,
130 TOMOYO_NUMBER_UNION,
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900131 TOMOYO_NAME_UNION,
Tetsuo Handa5b636852011-07-08 13:24:54 +0900132 TOMOYO_ARGV_ENTRY,
133 TOMOYO_ENVP_ENTRY,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900134};
135
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900136
137/* Index numbers for stat(). */
138enum tomoyo_path_stat_index {
139 /* Do not change this order. */
140 TOMOYO_PATH1,
141 TOMOYO_PATH1_PARENT,
142 TOMOYO_PATH2,
143 TOMOYO_PATH2_PARENT,
144 TOMOYO_MAX_PATH_STAT
145};
146
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900147/* Index numbers for operation mode. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900148enum tomoyo_mode_index {
149 TOMOYO_CONFIG_DISABLED,
150 TOMOYO_CONFIG_LEARNING,
151 TOMOYO_CONFIG_PERMISSIVE,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900152 TOMOYO_CONFIG_ENFORCING,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900153 TOMOYO_CONFIG_MAX_MODE,
154 TOMOYO_CONFIG_WANT_REJECT_LOG = 64,
155 TOMOYO_CONFIG_WANT_GRANT_LOG = 128,
156 TOMOYO_CONFIG_USE_DEFAULT = 255,
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900157};
158
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900159/* Index numbers for entry type. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900160enum tomoyo_policy_id {
161 TOMOYO_ID_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900162 TOMOYO_ID_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900163 TOMOYO_ID_PATH_GROUP,
164 TOMOYO_ID_NUMBER_GROUP,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900165 TOMOYO_ID_TRANSITION_CONTROL,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900166 TOMOYO_ID_AGGREGATOR,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900167 TOMOYO_ID_MANAGER,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900168 TOMOYO_ID_CONDITION,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900169 TOMOYO_ID_NAME,
170 TOMOYO_ID_ACL,
171 TOMOYO_ID_DOMAIN,
172 TOMOYO_MAX_POLICY
173};
174
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900175/* Index numbers for domain's attributes. */
176enum tomoyo_domain_info_flags_index {
177 /* Quota warnning flag. */
178 TOMOYO_DIF_QUOTA_WARNED,
179 /*
180 * This domain was unable to create a new domain at
181 * tomoyo_find_next_domain() because the name of the domain to be
182 * created was too long or it could not allocate memory.
183 * More than one process continued execve() without domain transition.
184 */
185 TOMOYO_DIF_TRANSITION_FAILED,
186 TOMOYO_MAX_DOMAIN_INFO_FLAGS
187};
188
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900189/* Index numbers for audit type. */
190enum tomoyo_grant_log {
191 /* Follow profile's configuration. */
192 TOMOYO_GRANTLOG_AUTO,
193 /* Do not generate grant log. */
194 TOMOYO_GRANTLOG_NO,
195 /* Generate grant_log. */
196 TOMOYO_GRANTLOG_YES,
197};
198
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900199/* Index numbers for group entries. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900200enum tomoyo_group_id {
201 TOMOYO_PATH_GROUP,
202 TOMOYO_NUMBER_GROUP,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900203 TOMOYO_ADDRESS_GROUP,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900204 TOMOYO_MAX_GROUP
205};
206
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900207/* Index numbers for type of numeric values. */
208enum tomoyo_value_type {
209 TOMOYO_VALUE_TYPE_INVALID,
210 TOMOYO_VALUE_TYPE_DECIMAL,
211 TOMOYO_VALUE_TYPE_OCTAL,
212 TOMOYO_VALUE_TYPE_HEXADECIMAL,
213};
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900214
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900215/* Index numbers for domain transition control keywords. */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900216enum tomoyo_transition_type {
217 /* Do not change this order, */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900218 TOMOYO_TRANSITION_CONTROL_NO_RESET,
219 TOMOYO_TRANSITION_CONTROL_RESET,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900220 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
221 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
222 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
223 TOMOYO_TRANSITION_CONTROL_KEEP,
224 TOMOYO_MAX_TRANSITION_TYPE
225};
226
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900227/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900228enum tomoyo_acl_entry_type_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900229 TOMOYO_TYPE_PATH_ACL,
230 TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900231 TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handa75093152010-06-16 16:23:55 +0900232 TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900233 TOMOYO_TYPE_MOUNT_ACL,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900234 TOMOYO_TYPE_INET_ACL,
235 TOMOYO_TYPE_UNIX_ACL,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900236 TOMOYO_TYPE_ENV_ACL,
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900237 TOMOYO_TYPE_MANUAL_TASK_ACL,
Tetsuo Handa084da352010-02-15 15:10:39 +0900238};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900239
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900240/* Index numbers for access controls with one pathname. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900241enum tomoyo_path_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900242 TOMOYO_TYPE_EXECUTE,
243 TOMOYO_TYPE_READ,
244 TOMOYO_TYPE_WRITE,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900245 TOMOYO_TYPE_APPEND,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900246 TOMOYO_TYPE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900247 TOMOYO_TYPE_GETATTR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900248 TOMOYO_TYPE_RMDIR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900249 TOMOYO_TYPE_TRUNCATE,
250 TOMOYO_TYPE_SYMLINK,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900251 TOMOYO_TYPE_CHROOT,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900252 TOMOYO_TYPE_UMOUNT,
253 TOMOYO_MAX_PATH_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900254};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900255
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900256/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900257enum tomoyo_memory_stat_type {
258 TOMOYO_MEMORY_POLICY,
259 TOMOYO_MEMORY_AUDIT,
260 TOMOYO_MEMORY_QUERY,
261 TOMOYO_MAX_MEMORY_STAT
262};
263
Tetsuo Handa75093152010-06-16 16:23:55 +0900264enum tomoyo_mkdev_acl_index {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900265 TOMOYO_TYPE_MKBLOCK,
266 TOMOYO_TYPE_MKCHAR,
Tetsuo Handa75093152010-06-16 16:23:55 +0900267 TOMOYO_MAX_MKDEV_OPERATION
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900268};
269
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900270/* Index numbers for socket operations. */
271enum tomoyo_network_acl_index {
272 TOMOYO_NETWORK_BIND, /* bind() operation. */
273 TOMOYO_NETWORK_LISTEN, /* listen() operation. */
274 TOMOYO_NETWORK_CONNECT, /* connect() operation. */
275 TOMOYO_NETWORK_SEND, /* send() operation. */
276 TOMOYO_MAX_NETWORK_OPERATION
277};
278
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900279/* Index numbers for access controls with two pathnames. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900280enum tomoyo_path2_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900281 TOMOYO_TYPE_LINK,
282 TOMOYO_TYPE_RENAME,
283 TOMOYO_TYPE_PIVOT_ROOT,
284 TOMOYO_MAX_PATH2_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900285};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900286
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900287/* Index numbers for access controls with one pathname and one number. */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900288enum tomoyo_path_number_acl_index {
289 TOMOYO_TYPE_CREATE,
290 TOMOYO_TYPE_MKDIR,
291 TOMOYO_TYPE_MKFIFO,
292 TOMOYO_TYPE_MKSOCK,
293 TOMOYO_TYPE_IOCTL,
294 TOMOYO_TYPE_CHMOD,
295 TOMOYO_TYPE_CHOWN,
296 TOMOYO_TYPE_CHGRP,
297 TOMOYO_MAX_PATH_NUMBER_OPERATION
298};
299
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900300/* Index numbers for /sys/kernel/security/tomoyo/ interfaces. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900301enum tomoyo_securityfs_interface_index {
302 TOMOYO_DOMAINPOLICY,
303 TOMOYO_EXCEPTIONPOLICY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900304 TOMOYO_PROCESS_STATUS,
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900305 TOMOYO_STAT,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900306 TOMOYO_AUDIT,
Tetsuo Handa084da352010-02-15 15:10:39 +0900307 TOMOYO_VERSION,
308 TOMOYO_PROFILE,
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900309 TOMOYO_QUERY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900310 TOMOYO_MANAGER
311};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900312
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900313/* Index numbers for special mount operations. */
314enum tomoyo_special_mount {
315 TOMOYO_MOUNT_BIND, /* mount --bind /source /dest */
316 TOMOYO_MOUNT_MOVE, /* mount --move /old /new */
317 TOMOYO_MOUNT_REMOUNT, /* mount -o remount /dir */
318 TOMOYO_MOUNT_MAKE_UNBINDABLE, /* mount --make-unbindable /dir */
319 TOMOYO_MOUNT_MAKE_PRIVATE, /* mount --make-private /dir */
320 TOMOYO_MOUNT_MAKE_SLAVE, /* mount --make-slave /dir */
321 TOMOYO_MOUNT_MAKE_SHARED, /* mount --make-shared /dir */
322 TOMOYO_MAX_SPECIAL_MOUNT
323};
324
325/* Index numbers for functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900326enum tomoyo_mac_index {
327 TOMOYO_MAC_FILE_EXECUTE,
328 TOMOYO_MAC_FILE_OPEN,
329 TOMOYO_MAC_FILE_CREATE,
330 TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900331 TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900332 TOMOYO_MAC_FILE_MKDIR,
333 TOMOYO_MAC_FILE_RMDIR,
334 TOMOYO_MAC_FILE_MKFIFO,
335 TOMOYO_MAC_FILE_MKSOCK,
336 TOMOYO_MAC_FILE_TRUNCATE,
337 TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900338 TOMOYO_MAC_FILE_MKBLOCK,
339 TOMOYO_MAC_FILE_MKCHAR,
340 TOMOYO_MAC_FILE_LINK,
341 TOMOYO_MAC_FILE_RENAME,
342 TOMOYO_MAC_FILE_CHMOD,
343 TOMOYO_MAC_FILE_CHOWN,
344 TOMOYO_MAC_FILE_CHGRP,
345 TOMOYO_MAC_FILE_IOCTL,
346 TOMOYO_MAC_FILE_CHROOT,
347 TOMOYO_MAC_FILE_MOUNT,
348 TOMOYO_MAC_FILE_UMOUNT,
349 TOMOYO_MAC_FILE_PIVOT_ROOT,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900350 TOMOYO_MAC_NETWORK_INET_STREAM_BIND,
351 TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN,
352 TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT,
353 TOMOYO_MAC_NETWORK_INET_DGRAM_BIND,
354 TOMOYO_MAC_NETWORK_INET_DGRAM_SEND,
355 TOMOYO_MAC_NETWORK_INET_RAW_BIND,
356 TOMOYO_MAC_NETWORK_INET_RAW_SEND,
357 TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND,
358 TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN,
359 TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT,
360 TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND,
361 TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND,
362 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND,
363 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN,
364 TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900365 TOMOYO_MAC_ENVIRON,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900366 TOMOYO_MAX_MAC_INDEX
367};
368
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900369/* Index numbers for category of functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900370enum tomoyo_mac_category_index {
371 TOMOYO_MAC_CATEGORY_FILE,
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900372 TOMOYO_MAC_CATEGORY_NETWORK,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900373 TOMOYO_MAC_CATEGORY_MISC,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900374 TOMOYO_MAX_MAC_CATEGORY_INDEX
375};
376
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900377/*
378 * Retry this request. Returned by tomoyo_supervisor() if policy violation has
379 * occurred in enforcing mode and the userspace daemon decided to retry.
380 *
381 * We must choose a positive value in order to distinguish "granted" (which is
382 * 0) and "rejected" (which is a negative value) and "retry".
383 */
384#define TOMOYO_RETRY_REQUEST 1
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900385
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900386/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
387enum tomoyo_policy_stat_type {
388 /* Do not change this order. */
389 TOMOYO_STAT_POLICY_UPDATES,
390 TOMOYO_STAT_POLICY_LEARNING, /* == TOMOYO_CONFIG_LEARNING */
391 TOMOYO_STAT_POLICY_PERMISSIVE, /* == TOMOYO_CONFIG_PERMISSIVE */
392 TOMOYO_STAT_POLICY_ENFORCING, /* == TOMOYO_CONFIG_ENFORCING */
393 TOMOYO_MAX_POLICY_STAT
394};
395
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900396/* Index numbers for profile's PREFERENCE values. */
397enum tomoyo_pref_index {
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900398 TOMOYO_PREF_MAX_AUDIT_LOG,
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900399 TOMOYO_PREF_MAX_LEARNING_ENTRY,
400 TOMOYO_MAX_PREF
401};
402
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900403/********** Structure definitions. **********/
Kentaro Takeda95908372009-02-05 17:18:13 +0900404
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900405/* Common header for holding ACL entries. */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900406struct tomoyo_acl_head {
407 struct list_head list;
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900408 s8 is_deleted; /* true or false or TOMOYO_GC_IN_PROGRESS */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900409} __packed;
410
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900411/* Common header for shared entries. */
412struct tomoyo_shared_acl_head {
413 struct list_head list;
414 atomic_t users;
415} __packed;
416
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900417struct tomoyo_policy_namespace;
418
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900419/* Structure for request info. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900420struct tomoyo_request_info {
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900421 /*
422 * For holding parameters specific to operations which deal files.
423 * NULL if not dealing files.
424 */
425 struct tomoyo_obj_info *obj;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900426 /*
427 * For holding parameters specific to execve() request.
428 * NULL if not dealing do_execve().
429 */
430 struct tomoyo_execve *ee;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900431 struct tomoyo_domain_info *domain;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900432 /* For holding parameters. */
433 union {
434 struct {
435 const struct tomoyo_path_info *filename;
Tetsuo Handa484ca792010-07-29 14:29:55 +0900436 /* For using wildcards at tomoyo_find_next_domain(). */
437 const struct tomoyo_path_info *matched_path;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900438 /* One of values in "enum tomoyo_path_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900439 u8 operation;
440 } path;
441 struct {
442 const struct tomoyo_path_info *filename1;
443 const struct tomoyo_path_info *filename2;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900444 /* One of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900445 u8 operation;
446 } path2;
447 struct {
448 const struct tomoyo_path_info *filename;
449 unsigned int mode;
450 unsigned int major;
451 unsigned int minor;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900452 /* One of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900453 u8 operation;
454 } mkdev;
455 struct {
456 const struct tomoyo_path_info *filename;
457 unsigned long number;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900458 /*
459 * One of values in
460 * "enum tomoyo_path_number_acl_index".
461 */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900462 u8 operation;
463 } path_number;
464 struct {
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900465 const struct tomoyo_path_info *name;
466 } environ;
467 struct {
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900468 const __be32 *address;
469 u16 port;
470 /* One of values smaller than TOMOYO_SOCK_MAX. */
471 u8 protocol;
472 /* One of values in "enum tomoyo_network_acl_index". */
473 u8 operation;
474 bool is_ipv6;
475 } inet_network;
476 struct {
477 const struct tomoyo_path_info *address;
478 /* One of values smaller than TOMOYO_SOCK_MAX. */
479 u8 protocol;
480 /* One of values in "enum tomoyo_network_acl_index". */
481 u8 operation;
482 } unix_network;
483 struct {
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900484 const struct tomoyo_path_info *type;
485 const struct tomoyo_path_info *dir;
486 const struct tomoyo_path_info *dev;
487 unsigned long flags;
488 int need_dev;
489 } mount;
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900490 struct {
491 const struct tomoyo_path_info *domainname;
492 } task;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900493 } param;
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900494 struct tomoyo_acl_info *matched_acl;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900495 u8 param_type;
496 bool granted;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900497 u8 retry;
498 u8 profile;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900499 u8 mode; /* One of tomoyo_mode_index . */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900500 u8 type;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900501};
502
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900503/* Structure for holding a token. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900504struct tomoyo_path_info {
505 const char *name;
506 u32 hash; /* = full_name_hash(name, strlen(name)) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900507 u16 const_len; /* = tomoyo_const_part_length(name) */
508 bool is_dir; /* = tomoyo_strendswith(name, "/") */
509 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900510};
511
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900512/* Structure for holding string data. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900513struct tomoyo_name {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900514 struct tomoyo_shared_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900515 struct tomoyo_path_info entry;
516};
Kentaro Takeda95908372009-02-05 17:18:13 +0900517
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900518/* Structure for holding a word. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900519struct tomoyo_name_union {
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900520 /* Either @filename or @group is NULL. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900521 const struct tomoyo_path_info *filename;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900522 struct tomoyo_group *group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900523};
524
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900525/* Structure for holding a number. */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900526struct tomoyo_number_union {
527 unsigned long values[2];
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900528 struct tomoyo_group *group; /* Maybe NULL. */
529 /* One of values in "enum tomoyo_value_type". */
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900530 u8 value_type[2];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900531};
532
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900533/* Structure for holding an IP address. */
534struct tomoyo_ipaddr_union {
535 struct in6_addr ip[2]; /* Big endian. */
536 struct tomoyo_group *group; /* Pointer to address group. */
537 bool is_ipv6; /* Valid only if @group == NULL. */
538};
539
540/* Structure for "path_group"/"number_group"/"address_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900541struct tomoyo_group {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900542 struct tomoyo_shared_acl_head head;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900543 const struct tomoyo_path_info *group_name;
544 struct list_head member_list;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900545};
546
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900547/* Structure for "path_group" directive. */
548struct tomoyo_path_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900549 struct tomoyo_acl_head head;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900550 const struct tomoyo_path_info *member_name;
551};
552
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900553/* Structure for "number_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900554struct tomoyo_number_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900555 struct tomoyo_acl_head head;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900556 struct tomoyo_number_union number;
557};
558
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900559/* Structure for "address_group" directive. */
560struct tomoyo_address_group {
561 struct tomoyo_acl_head head;
562 /* Structure for holding an IP address. */
563 struct tomoyo_ipaddr_union address;
564};
565
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900566/* Subset of "struct stat". Used by conditional ACL and audit logs. */
567struct tomoyo_mini_stat {
Eric W. Biederman609fcd12012-02-07 16:34:10 -0800568 kuid_t uid;
569 kgid_t gid;
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900570 ino_t ino;
Al Virod179333f2011-08-26 23:03:17 -0400571 umode_t mode;
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900572 dev_t dev;
573 dev_t rdev;
574};
575
Tetsuo Handa5b636852011-07-08 13:24:54 +0900576/* Structure for dumping argv[] and envp[] of "struct linux_binprm". */
577struct tomoyo_page_dump {
578 struct page *page; /* Previously dumped page. */
579 char *data; /* Contents of "page". Size is PAGE_SIZE. */
580};
581
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900582/* Structure for attribute checks in addition to pathname checks. */
583struct tomoyo_obj_info {
584 /*
585 * True if tomoyo_get_attributes() was already called, false otherwise.
586 */
587 bool validate_done;
588 /* True if @stat[] is valid. */
589 bool stat_valid[TOMOYO_MAX_PATH_STAT];
590 /* First pathname. Initialized with { NULL, NULL } if no path. */
591 struct path path1;
592 /* Second pathname. Initialized with { NULL, NULL } if no path. */
593 struct path path2;
594 /*
595 * Information on @path1, @path1's parent directory, @path2, @path2's
596 * parent directory.
597 */
598 struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900599 /*
600 * Content of symbolic link to be created. NULL for operations other
601 * than symlink().
602 */
603 struct tomoyo_path_info *symlink_target;
604};
605
Tetsuo Handa5b636852011-07-08 13:24:54 +0900606/* Structure for argv[]. */
607struct tomoyo_argv {
608 unsigned long index;
609 const struct tomoyo_path_info *value;
610 bool is_not;
611};
612
613/* Structure for envp[]. */
614struct tomoyo_envp {
615 const struct tomoyo_path_info *name;
616 const struct tomoyo_path_info *value;
617 bool is_not;
618};
619
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900620/* Structure for execve() operation. */
621struct tomoyo_execve {
622 struct tomoyo_request_info r;
623 struct tomoyo_obj_info obj;
624 struct linux_binprm *bprm;
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900625 const struct tomoyo_path_info *transition;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900626 /* For dumping argv[] and envp[]. */
627 struct tomoyo_page_dump dump;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900628 /* For temporary use. */
629 char *tmp; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900630};
631
Tetsuo Handa2066a362011-07-08 13:21:37 +0900632/* Structure for entries which follows "struct tomoyo_condition". */
633struct tomoyo_condition_element {
Tetsuo Handa5b636852011-07-08 13:24:54 +0900634 /*
635 * Left hand operand. A "struct tomoyo_argv" for TOMOYO_ARGV_ENTRY, a
636 * "struct tomoyo_envp" for TOMOYO_ENVP_ENTRY is attached to the tail
637 * of the array of this struct.
638 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900639 u8 left;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900640 /*
641 * Right hand operand. A "struct tomoyo_number_union" for
642 * TOMOYO_NUMBER_UNION, a "struct tomoyo_name_union" for
643 * TOMOYO_NAME_UNION is attached to the tail of the array of this
644 * struct.
645 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900646 u8 right;
647 /* Equation operator. True if equals or overlaps, false otherwise. */
648 bool equals;
649};
650
651/* Structure for optional arguments. */
652struct tomoyo_condition {
653 struct tomoyo_shared_acl_head head;
654 u32 size; /* Memory size allocated for this entry. */
655 u16 condc; /* Number of conditions in this struct. */
656 u16 numbers_count; /* Number of "struct tomoyo_number_union values". */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900657 u16 names_count; /* Number of "struct tomoyo_name_union names". */
Tetsuo Handa5b636852011-07-08 13:24:54 +0900658 u16 argc; /* Number of "struct tomoyo_argv". */
659 u16 envc; /* Number of "struct tomoyo_envp". */
Tetsuo Handa1f067a62011-09-10 15:24:56 +0900660 u8 grant_log; /* One of values in "enum tomoyo_grant_log". */
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900661 const struct tomoyo_path_info *transit; /* Maybe NULL. */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900662 /*
663 * struct tomoyo_condition_element condition[condc];
664 * struct tomoyo_number_union values[numbers_count];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900665 * struct tomoyo_name_union names[names_count];
Tetsuo Handa5b636852011-07-08 13:24:54 +0900666 * struct tomoyo_argv argv[argc];
667 * struct tomoyo_envp envp[envc];
Tetsuo Handa2066a362011-07-08 13:21:37 +0900668 */
669};
670
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900671/* Common header for individual entries. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900672struct tomoyo_acl_info {
673 struct list_head list;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900674 struct tomoyo_condition *cond; /* Maybe NULL. */
Tetsuo Handaf9732ea2011-09-25 17:50:23 +0900675 s8 is_deleted; /* true or false or TOMOYO_GC_IN_PROGRESS */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900676 u8 type; /* One of values in "enum tomoyo_acl_entry_type_index". */
Kentaro Takeda95908372009-02-05 17:18:13 +0900677} __packed;
678
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900679/* Structure for domain information. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900680struct tomoyo_domain_info {
681 struct list_head list;
682 struct list_head acl_info_list;
683 /* Name of this domain. Never NULL. */
684 const struct tomoyo_path_info *domainname;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900685 /* Namespace for this domain. Never NULL. */
686 struct tomoyo_policy_namespace *ns;
Tetsuo Handa4b425642019-01-24 18:37:36 +0900687 /* Group numbers to use. */
688 unsigned long group[TOMOYO_MAX_ACL_GROUPS / BITS_PER_LONG];
Kentaro Takeda95908372009-02-05 17:18:13 +0900689 u8 profile; /* Profile number to use. */
Tetsuo Handaa0558fc2009-04-06 20:49:14 +0900690 bool is_deleted; /* Delete flag. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900691 bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900692 atomic_t users; /* Number of referring tasks. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900693};
694
Kentaro Takeda95908372009-02-05 17:18:13 +0900695/*
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900696 * Structure for "task manual_domain_transition" directive.
697 */
698struct tomoyo_task_acl {
699 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MANUAL_TASK_ACL */
700 /* Pointer to domainname. */
701 const struct tomoyo_path_info *domainname;
702};
703
704/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900705 * Structure for "file execute", "file read", "file write", "file append",
706 * "file unlink", "file getattr", "file rmdir", "file truncate",
707 * "file symlink", "file chroot" and "file unmount" directive.
Kentaro Takeda95908372009-02-05 17:18:13 +0900708 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900709struct tomoyo_path_acl {
710 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900711 u16 perm; /* Bitmask of values in "enum tomoyo_path_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900712 struct tomoyo_name_union name;
Kentaro Takeda95908372009-02-05 17:18:13 +0900713};
714
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900715/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900716 * Structure for "file create", "file mkdir", "file mkfifo", "file mksock",
717 * "file ioctl", "file chmod", "file chown" and "file chgrp" directive.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900718 */
719struct tomoyo_path_number_acl {
720 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900721 /* Bitmask of values in "enum tomoyo_path_number_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900722 u8 perm;
723 struct tomoyo_name_union name;
724 struct tomoyo_number_union number;
725};
726
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900727/* Structure for "file mkblock" and "file mkchar" directive. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900728struct tomoyo_mkdev_acl {
729 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900730 u8 perm; /* Bitmask of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900731 struct tomoyo_name_union name;
732 struct tomoyo_number_union mode;
733 struct tomoyo_number_union major;
734 struct tomoyo_number_union minor;
735};
736
737/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900738 * Structure for "file rename", "file link" and "file pivot_root" directive.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900739 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900740struct tomoyo_path2_acl {
741 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900742 u8 perm; /* Bitmask of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900743 struct tomoyo_name_union name1;
744 struct tomoyo_name_union name2;
Kentaro Takeda95908372009-02-05 17:18:13 +0900745};
746
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900747/* Structure for "file mount" directive. */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900748struct tomoyo_mount_acl {
749 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900750 struct tomoyo_name_union dev_name;
751 struct tomoyo_name_union dir_name;
752 struct tomoyo_name_union fs_type;
753 struct tomoyo_number_union flags;
754};
755
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900756/* Structure for "misc env" directive in domain policy. */
757struct tomoyo_env_acl {
758 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_ENV_ACL */
759 const struct tomoyo_path_info *env; /* environment variable */
760};
761
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900762/* Structure for "network inet" directive. */
763struct tomoyo_inet_acl {
764 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_INET_ACL */
765 u8 protocol;
766 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
767 struct tomoyo_ipaddr_union address;
768 struct tomoyo_number_union port;
769};
770
771/* Structure for "network unix" directive. */
772struct tomoyo_unix_acl {
773 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_UNIX_ACL */
774 u8 protocol;
775 u8 perm; /* Bitmask of values in "enum tomoyo_network_acl_index" */
776 struct tomoyo_name_union name;
777};
778
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900779/* Structure for holding a line from /sys/kernel/security/tomoyo/ interface. */
780struct tomoyo_acl_param {
781 char *data;
782 struct list_head *list;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900783 struct tomoyo_policy_namespace *ns;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900784 bool is_delete;
785};
786
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900787#define TOMOYO_MAX_IO_READ_QUEUE 64
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900788
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900789/*
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900790 * Structure for reading/writing policy via /sys/kernel/security/tomoyo
791 * interfaces.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900792 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900793struct tomoyo_io_buffer {
Tetsuo Handacdcf6722019-01-24 18:37:35 +0900794 void (*read)(struct tomoyo_io_buffer *head);
795 int (*write)(struct tomoyo_io_buffer *head);
796 __poll_t (*poll)(struct file *file, poll_table *wait);
Kentaro Takeda95908372009-02-05 17:18:13 +0900797 /* Exclusive lock for this structure. */
798 struct mutex io_sem;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900799 char __user *read_user_buf;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900800 size_t read_user_buf_avail;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900801 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900802 struct list_head *ns;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900803 struct list_head *domain;
804 struct list_head *group;
805 struct list_head *acl;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900806 size_t avail;
807 unsigned int step;
808 unsigned int query_index;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900809 u16 index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900810 u16 cond_index;
Tetsuo Handa32997142011-06-26 23:19:28 +0900811 u8 acl_group_index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900812 u8 cond_step;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900813 u8 bit;
814 u8 w_pos;
815 bool eof;
816 bool print_this_domain_only;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900817 bool print_transition_related_only;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900818 bool print_cond_part;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900819 const char *w[TOMOYO_MAX_IO_READ_QUEUE];
820 } r;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900821 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900822 struct tomoyo_policy_namespace *ns;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900823 /* The position currently writing to. */
824 struct tomoyo_domain_info *domain;
825 /* Bytes available for writing. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900826 size_t avail;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900827 bool is_delete;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900828 } w;
Kentaro Takeda95908372009-02-05 17:18:13 +0900829 /* Buffer for reading. */
830 char *read_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900831 /* Size of read buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900832 size_t readbuf_size;
Kentaro Takeda95908372009-02-05 17:18:13 +0900833 /* Buffer for writing. */
834 char *write_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900835 /* Size of write buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900836 size_t writebuf_size;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900837 /* Type of this interface. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900838 enum tomoyo_securityfs_interface_index type;
Tetsuo Handa2e503bb2011-06-26 23:20:55 +0900839 /* Users counter protected by tomoyo_io_buffer_list_lock. */
840 u8 users;
841 /* List for telling GC not to kfree() elements. */
842 struct list_head list;
Kentaro Takeda95908372009-02-05 17:18:13 +0900843};
844
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900845/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900846 * Structure for "initialize_domain"/"no_initialize_domain"/"keep_domain"/
847 * "no_keep_domain" keyword.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900848 */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900849struct tomoyo_transition_control {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900850 struct tomoyo_acl_head head;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900851 u8 type; /* One of values in "enum tomoyo_transition_type". */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900852 /* True if the domainname is tomoyo_get_last_name(). */
853 bool is_last_name;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900854 const struct tomoyo_path_info *domainname; /* Maybe NULL */
855 const struct tomoyo_path_info *program; /* Maybe NULL */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900856};
857
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900858/* Structure for "aggregator" keyword. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900859struct tomoyo_aggregator {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900860 struct tomoyo_acl_head head;
Tetsuo Handa10843072010-06-03 20:38:03 +0900861 const struct tomoyo_path_info *original_name;
862 const struct tomoyo_path_info *aggregated_name;
Tetsuo Handa10843072010-06-03 20:38:03 +0900863};
864
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900865/* Structure for policy manager. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900866struct tomoyo_manager {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900867 struct tomoyo_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900868 /* A path to program or a domainname. */
869 const struct tomoyo_path_info *manager;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900870};
871
Tetsuo Handa57c25902010-06-03 20:38:44 +0900872struct tomoyo_preference {
873 unsigned int learning_max_entry;
874 bool enforcing_verbose;
875 bool learning_verbose;
876 bool permissive_verbose;
877};
878
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900879/* Structure for /sys/kernel/security/tomnoyo/profile interface. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900880struct tomoyo_profile {
881 const struct tomoyo_path_info *comment;
882 struct tomoyo_preference *learning;
883 struct tomoyo_preference *permissive;
884 struct tomoyo_preference *enforcing;
885 struct tomoyo_preference preference;
886 u8 default_config;
887 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900888 unsigned int pref[TOMOYO_MAX_PREF];
Tetsuo Handa57c25902010-06-03 20:38:44 +0900889};
890
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900891/* Structure for representing YYYY/MM/DD hh/mm/ss. */
892struct tomoyo_time {
893 u16 year;
894 u8 month;
895 u8 day;
896 u8 hour;
897 u8 min;
898 u8 sec;
899};
900
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900901/* Structure for policy namespace. */
902struct tomoyo_policy_namespace {
903 /* Profile table. Memory is allocated as needed. */
904 struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
905 /* List of "struct tomoyo_group". */
906 struct list_head group_list[TOMOYO_MAX_GROUP];
907 /* List of policy. */
908 struct list_head policy_list[TOMOYO_MAX_POLICY];
909 /* The global ACL referred by "use_group" keyword. */
910 struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
911 /* List for connecting to tomoyo_namespace_list list. */
912 struct list_head namespace_list;
Tetsuo Handa861f4bc2019-02-17 15:52:47 +0900913 /* Profile version. Currently only 20150505 is defined. */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900914 unsigned int profile_version;
915 /* Name of this namespace (e.g. "<kernel>", "</usr/sbin/httpd>" ). */
916 const char *name;
917};
918
Tetsuo Handa8c6cb982019-01-19 23:11:40 +0900919/* Structure for "struct task_struct"->security. */
920struct tomoyo_task {
921 struct tomoyo_domain_info *domain_info;
922 struct tomoyo_domain_info *old_domain_info;
923};
924
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900925/********** Function prototypes. **********/
926
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900927bool tomoyo_address_matches_group(const bool is_ipv6, const __be32 *address,
928 const struct tomoyo_group *group);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900929bool tomoyo_compare_number_union(const unsigned long value,
930 const struct tomoyo_number_union *ptr);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900931bool tomoyo_condition(struct tomoyo_request_info *r,
932 const struct tomoyo_condition *cond);
Tetsuo Handa75093152010-06-16 16:23:55 +0900933bool tomoyo_correct_domain(const unsigned char *domainname);
Tetsuo Handa75093152010-06-16 16:23:55 +0900934bool tomoyo_correct_path(const char *filename);
935bool tomoyo_correct_word(const char *string);
Tetsuo Handa75093152010-06-16 16:23:55 +0900936bool tomoyo_domain_def(const unsigned char *buffer);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900937bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
Tetsuo Handa5b636852011-07-08 13:24:54 +0900938bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
939 struct tomoyo_page_dump *dump);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900940bool tomoyo_memory_ok(void *ptr);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900941bool tomoyo_number_matches_group(const unsigned long min,
942 const unsigned long max,
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900943 const struct tomoyo_group *group);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900944bool tomoyo_parse_ipaddr_union(struct tomoyo_acl_param *param,
945 struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900946bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
947 struct tomoyo_name_union *ptr);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900948bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
949 struct tomoyo_number_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900950bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
951 const struct tomoyo_path_info *pattern);
952bool tomoyo_permstr(const char *string, const char *keyword);
953bool tomoyo_str_starts(char **src, const char *find);
954char *tomoyo_encode(const char *str);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900955char *tomoyo_encode2(const char *str, int str_len);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900956char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
957 va_list args);
958char *tomoyo_read_token(struct tomoyo_acl_param *param);
Al Viro22473862015-03-08 19:24:30 -0400959char *tomoyo_realpath_from_path(const struct path *path);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900960char *tomoyo_realpath_nofollow(const char *pathname);
961const char *tomoyo_get_exe(void);
962const char *tomoyo_yesno(const unsigned int value);
963const struct tomoyo_path_info *tomoyo_compare_name_union
964(const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
Tetsuo Handa731d37a2011-09-10 15:25:58 +0900965const struct tomoyo_path_info *tomoyo_get_domainname
966(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900967const struct tomoyo_path_info *tomoyo_get_name(const char *name);
968const struct tomoyo_path_info *tomoyo_path_matches_group
969(const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
970int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
Al Viroe6641ed2016-03-25 14:41:28 -0400971 const struct path *path, const int flag);
Al Viroe53cfda2013-04-14 16:59:00 -0400972void tomoyo_close_control(struct tomoyo_io_buffer *head);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900973int tomoyo_env_perm(struct tomoyo_request_info *r, const char *env);
Tetsuo Handa6bce98e2011-09-16 22:54:25 +0900974int tomoyo_execute_permission(struct tomoyo_request_info *r,
975 const struct tomoyo_path_info *filename);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900976int tomoyo_find_next_domain(struct linux_binprm *bprm);
977int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
978 const u8 index);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900979int tomoyo_init_request_info(struct tomoyo_request_info *r,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900980 struct tomoyo_domain_info *domain,
981 const u8 index);
Al Viroe6641ed2016-03-25 14:41:28 -0400982int tomoyo_mkdev_perm(const u8 operation, const struct path *path,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900983 const unsigned int mode, unsigned int dev);
Al Viroe6641ed2016-03-25 14:41:28 -0400984int tomoyo_mount_permission(const char *dev_name, const struct path *path,
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900985 const char *type, unsigned long flags,
986 void *data_page);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900987int tomoyo_open_control(const u8 type, struct file *file);
Al Viroe6641ed2016-03-25 14:41:28 -0400988int tomoyo_path2_perm(const u8 operation, const struct path *path1,
989 const struct path *path2);
990int tomoyo_path_number_perm(const u8 operation, const struct path *path,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900991 unsigned long number);
Al Viro3f7036a2015-03-08 19:28:30 -0400992int tomoyo_path_perm(const u8 operation, const struct path *path,
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900993 const char *target);
Al Viroc0d4be22017-07-02 23:32:02 -0400994__poll_t tomoyo_poll_control(struct file *file, poll_table *wait);
995__poll_t tomoyo_poll_log(struct file *file, poll_table *wait);
Tetsuo Handa059d84d2011-09-10 15:23:54 +0900996int tomoyo_socket_bind_permission(struct socket *sock, struct sockaddr *addr,
997 int addr_len);
998int tomoyo_socket_connect_permission(struct socket *sock,
999 struct sockaddr *addr, int addr_len);
1000int tomoyo_socket_listen_permission(struct socket *sock);
1001int tomoyo_socket_sendmsg_permission(struct socket *sock, struct msghdr *msg,
1002 int size);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001003int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
1004 __printf(2, 3);
Tetsuo Handa237ab452010-06-12 20:46:22 +09001005int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001006 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001007 bool (*check_duplicate)
1008 (const struct tomoyo_acl_info *,
1009 const struct tomoyo_acl_info *),
1010 bool (*merge_duplicate)
1011 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
1012 const bool));
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +09001013int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +09001014 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001015 bool (*check_duplicate)
1016 (const struct tomoyo_acl_head *,
1017 const struct tomoyo_acl_head *));
1018int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
1019int tomoyo_write_file(struct tomoyo_acl_param *param);
1020int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
Tetsuo Handad58e0da2011-09-10 15:22:48 +09001021int tomoyo_write_misc(struct tomoyo_acl_param *param);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001022int tomoyo_write_inet_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001023int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
1024 const u8 type);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001025int tomoyo_write_unix_network(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001026ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
1027 const int buffer_len);
1028ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
1029 const char __user *buffer, const int buffer_len);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001030struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001031struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
1032 const bool transit);
Tetsuo Handa8c6cb982019-01-19 23:11:40 +09001033struct tomoyo_domain_info *tomoyo_domain(void);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001034struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
1035struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
1036 const u8 idx);
1037struct tomoyo_policy_namespace *tomoyo_assign_namespace
1038(const char *domainname);
1039struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
1040 const u8 profile);
1041unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
1042 const u8 index);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001043u8 tomoyo_parse_ulong(unsigned long *result, char **str);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001044void *tomoyo_commit_ok(void *data, const unsigned int size);
1045void __init tomoyo_load_builtin_policy(void);
1046void __init tomoyo_mm_init(void);
Tetsuo Handa99a85252010-06-16 16:22:51 +09001047void tomoyo_check_acl(struct tomoyo_request_info *r,
Tetsuo Handacdcf6722019-01-24 18:37:35 +09001048 bool (*check_entry)(struct tomoyo_request_info *,
1049 const struct tomoyo_acl_info *));
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001050void tomoyo_check_profile(void);
Arnd Bergmann92734092017-10-19 14:29:04 +02001051void tomoyo_convert_time(time64_t time, struct tomoyo_time *stamp);
Tetsuo Handa2066a362011-07-08 13:21:37 +09001052void tomoyo_del_condition(struct list_head *element);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001053void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
Tetsuo Handa8761afd2011-07-08 13:22:41 +09001054void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001055void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001056void tomoyo_load_policy(const char *filename);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001057void tomoyo_normalize_line(unsigned char *buffer);
1058void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001059void tomoyo_print_ip(char *buf, const unsigned int size,
1060 const struct tomoyo_ipaddr_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001061void tomoyo_print_ulong(char *buffer, const int buffer_len,
1062 const unsigned long value, const u8 type);
1063void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
1064void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
1065void tomoyo_read_log(struct tomoyo_io_buffer *head);
1066void tomoyo_update_stat(const u8 index);
1067void tomoyo_warn_oom(const char *function);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001068void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001069 __printf(2, 3);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001070void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
1071 va_list args);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001072
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001073/********** External variable definitions. **********/
1074
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001075extern bool tomoyo_policy_loaded;
Casey Schaufler43fc4602018-09-21 17:18:07 -07001076extern int tomoyo_enabled;
Tetsuo Handa2066a362011-07-08 13:21:37 +09001077extern const char * const tomoyo_condition_keyword
1078[TOMOYO_MAX_CONDITION_KEYWORD];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001079extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
1080extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
1081 + TOMOYO_MAX_MAC_CATEGORY_INDEX];
1082extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE];
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001083extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001084extern const char * const tomoyo_proto_keyword[TOMOYO_SOCK_MAX];
1085extern const char * const tomoyo_socket_keyword[TOMOYO_MAX_NETWORK_OPERATION];
Tetsuo Handa2c47ab92011-06-26 23:21:19 +09001086extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001087extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION];
Tetsuo Handa0d2171d2011-06-26 23:17:46 +09001088extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION];
1089extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION];
Tetsuo Handa2066a362011-07-08 13:21:37 +09001090extern struct list_head tomoyo_condition_list;
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +09001091extern struct list_head tomoyo_domain_list;
1092extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
1093extern struct list_head tomoyo_namespace_list;
1094extern struct mutex tomoyo_policy_lock;
1095extern struct srcu_struct tomoyo_ss;
1096extern struct tomoyo_domain_info tomoyo_kernel_domain;
1097extern struct tomoyo_policy_namespace tomoyo_kernel_namespace;
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001098extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
1099extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
Casey Schauflerbbd36622018-11-12 09:30:56 -08001100extern struct lsm_blob_sizes tomoyo_blob_sizes;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +09001101
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001102/********** Inlined functions. **********/
1103
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001104/**
1105 * tomoyo_read_lock - Take lock for protecting policy.
1106 *
1107 * Returns index number for tomoyo_read_unlock().
1108 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001109static inline int tomoyo_read_lock(void)
1110{
1111 return srcu_read_lock(&tomoyo_ss);
1112}
1113
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001114/**
1115 * tomoyo_read_unlock - Release lock for protecting policy.
1116 *
1117 * @idx: Index number returned by tomoyo_read_lock().
1118 *
1119 * Returns nothing.
1120 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001121static inline void tomoyo_read_unlock(int idx)
1122{
1123 srcu_read_unlock(&tomoyo_ss, idx);
1124}
1125
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001126/**
Tetsuo Handa2066a362011-07-08 13:21:37 +09001127 * tomoyo_sys_getppid - Copy of getppid().
1128 *
1129 * Returns parent process's PID.
1130 *
1131 * Alpha does not have getppid() defined. To be able to build this module on
1132 * Alpha, I have to copy getppid() from kernel/timer.c.
1133 */
1134static inline pid_t tomoyo_sys_getppid(void)
1135{
1136 pid_t pid;
Tetsuo Handacdcf6722019-01-24 18:37:35 +09001137
Tetsuo Handa2066a362011-07-08 13:21:37 +09001138 rcu_read_lock();
Kees Cookbb80d882011-12-08 16:30:42 -08001139 pid = task_tgid_vnr(rcu_dereference(current->real_parent));
Tetsuo Handa2066a362011-07-08 13:21:37 +09001140 rcu_read_unlock();
1141 return pid;
1142}
1143
1144/**
1145 * tomoyo_sys_getpid - Copy of getpid().
1146 *
1147 * Returns current thread's PID.
1148 *
1149 * Alpha does not have getpid() defined. To be able to build this module on
1150 * Alpha, I have to copy getpid() from kernel/timer.c.
1151 */
1152static inline pid_t tomoyo_sys_getpid(void)
1153{
1154 return task_tgid_vnr(current);
1155}
1156
1157/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001158 * tomoyo_pathcmp - strcmp() for "struct tomoyo_path_info" structure.
1159 *
1160 * @a: Pointer to "struct tomoyo_path_info".
1161 * @b: Pointer to "struct tomoyo_path_info".
1162 *
1163 * Returns true if @a == @b, false otherwise.
1164 */
Kentaro Takeda95908372009-02-05 17:18:13 +09001165static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
1166 const struct tomoyo_path_info *b)
1167{
1168 return a->hash != b->hash || strcmp(a->name, b->name);
1169}
1170
Kentaro Takeda95908372009-02-05 17:18:13 +09001171/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001172 * tomoyo_put_name - Drop reference on "struct tomoyo_name".
1173 *
1174 * @name: Pointer to "struct tomoyo_path_info". Maybe NULL.
1175 *
1176 * Returns nothing.
1177 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001178static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
1179{
1180 if (name) {
Tetsuo Handae2bf6902010-06-25 11:16:00 +09001181 struct tomoyo_name *ptr =
1182 container_of(name, typeof(*ptr), entry);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001183 atomic_dec(&ptr->head.users);
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001184 }
1185}
Kentaro Takeda95908372009-02-05 17:18:13 +09001186
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001187/**
Tetsuo Handa2066a362011-07-08 13:21:37 +09001188 * tomoyo_put_condition - Drop reference on "struct tomoyo_condition".
1189 *
1190 * @cond: Pointer to "struct tomoyo_condition". Maybe NULL.
1191 *
1192 * Returns nothing.
1193 */
1194static inline void tomoyo_put_condition(struct tomoyo_condition *cond)
1195{
1196 if (cond)
1197 atomic_dec(&cond->head.users);
1198}
1199
1200/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001201 * tomoyo_put_group - Drop reference on "struct tomoyo_group".
1202 *
1203 * @group: Pointer to "struct tomoyo_group". Maybe NULL.
1204 *
1205 * Returns nothing.
1206 */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +09001207static inline void tomoyo_put_group(struct tomoyo_group *group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001208{
1209 if (group)
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001210 atomic_dec(&group->head.users);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001211}
1212
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001213/**
Tetsuo Handa8c6cb982019-01-19 23:11:40 +09001214 * tomoyo_task - Get "struct tomoyo_task" for specified thread.
Casey Schaufler43fc4602018-09-21 17:18:07 -07001215 *
Tetsuo Handa8c6cb982019-01-19 23:11:40 +09001216 * @task - Pointer to "struct task_struct".
1217 *
1218 * Returns pointer to "struct tomoyo_task" for specified thread.
Casey Schaufler43fc4602018-09-21 17:18:07 -07001219 */
Tetsuo Handa8c6cb982019-01-19 23:11:40 +09001220static inline struct tomoyo_task *tomoyo_task(struct task_struct *task)
Casey Schaufler43fc4602018-09-21 17:18:07 -07001221{
Tetsuo Handa8c6cb982019-01-19 23:11:40 +09001222 return task->security + tomoyo_blob_sizes.lbs_task;
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001223}
Kentaro Takeda95908372009-02-05 17:18:13 +09001224
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001225/**
1226 * tomoyo_same_name_union - Check for duplicated "struct tomoyo_name_union" entry.
1227 *
1228 * @a: Pointer to "struct tomoyo_name_union".
1229 * @b: Pointer to "struct tomoyo_name_union".
1230 *
1231 * Returns true if @a == @b, false otherwise.
1232 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001233static inline bool tomoyo_same_name_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001234(const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001235{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001236 return a->filename == b->filename && a->group == b->group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001237}
1238
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001239/**
1240 * tomoyo_same_number_union - Check for duplicated "struct tomoyo_number_union" entry.
1241 *
1242 * @a: Pointer to "struct tomoyo_number_union".
1243 * @b: Pointer to "struct tomoyo_number_union".
1244 *
1245 * Returns true if @a == @b, false otherwise.
1246 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001247static inline bool tomoyo_same_number_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001248(const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001249{
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001250 return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001251 a->group == b->group && a->value_type[0] == b->value_type[0] &&
1252 a->value_type[1] == b->value_type[1];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001253}
1254
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001255/**
Tetsuo Handa059d84d2011-09-10 15:23:54 +09001256 * tomoyo_same_ipaddr_union - Check for duplicated "struct tomoyo_ipaddr_union" entry.
1257 *
1258 * @a: Pointer to "struct tomoyo_ipaddr_union".
1259 * @b: Pointer to "struct tomoyo_ipaddr_union".
1260 *
1261 * Returns true if @a == @b, false otherwise.
1262 */
1263static inline bool tomoyo_same_ipaddr_union
1264(const struct tomoyo_ipaddr_union *a, const struct tomoyo_ipaddr_union *b)
1265{
1266 return !memcmp(a->ip, b->ip, sizeof(a->ip)) && a->group == b->group &&
1267 a->is_ipv6 == b->is_ipv6;
1268}
1269
1270/**
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001271 * tomoyo_current_namespace - Get "struct tomoyo_policy_namespace" for current thread.
1272 *
1273 * Returns pointer to "struct tomoyo_policy_namespace" for current thread.
1274 */
1275static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
1276{
1277 return tomoyo_domain()->ns;
1278}
1279
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001280#if defined(CONFIG_SLOB)
1281
1282/**
1283 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1284 *
1285 * @size: Size to be rounded up.
1286 *
1287 * Returns @size.
1288 *
1289 * Since SLOB does not round up, this function simply returns @size.
1290 */
1291static inline int tomoyo_round2(size_t size)
1292{
1293 return size;
1294}
1295
1296#else
1297
1298/**
1299 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1300 *
1301 * @size: Size to be rounded up.
1302 *
1303 * Returns rounded size.
1304 *
1305 * Strictly speaking, SLAB may be able to allocate (e.g.) 96 bytes instead of
1306 * (e.g.) 128 bytes.
1307 */
1308static inline int tomoyo_round2(size_t size)
1309{
1310#if PAGE_SIZE == 4096
1311 size_t bsize = 32;
1312#else
1313 size_t bsize = 64;
1314#endif
1315 if (!size)
1316 return 0;
1317 while (size > bsize)
1318 bsize <<= 1;
1319 return bsize;
1320}
1321
1322#endif
1323
Kentaro Takeda95908372009-02-05 17:18:13 +09001324/**
1325 * list_for_each_cookie - iterate over a list with cookie.
1326 * @pos: the &struct list_head to use as a loop cursor.
Kentaro Takeda95908372009-02-05 17:18:13 +09001327 * @head: the head for your list.
Kentaro Takeda95908372009-02-05 17:18:13 +09001328 */
Tetsuo Handa475e6fa2010-06-24 11:28:14 +09001329#define list_for_each_cookie(pos, head) \
1330 if (!pos) \
1331 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1332 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001333
Kentaro Takeda95908372009-02-05 17:18:13 +09001334#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */