blob: 63720a328eddce5bfb4889a958c2d93327597160 [file] [log] [blame]
Kentaro Takeda95908372009-02-05 17:18:13 +09001/*
2 * security/tomoyo/common.h
3 *
Tetsuo Handa76bb0892010-02-11 09:42:40 +09004 * Header file for TOMOYO.
Kentaro Takeda95908372009-02-05 17:18:13 +09005 *
Tetsuo Handa76bb0892010-02-11 09:42:40 +09006 * Copyright (C) 2005-2010 NTT DATA CORPORATION
Kentaro Takeda95908372009-02-05 17:18:13 +09007 */
8
9#ifndef _SECURITY_TOMOYO_COMMON_H
10#define _SECURITY_TOMOYO_COMMON_H
11
12#include <linux/ctype.h>
13#include <linux/string.h>
14#include <linux/mm.h>
15#include <linux/file.h>
16#include <linux/kmod.h>
17#include <linux/fs.h>
18#include <linux/sched.h>
19#include <linux/namei.h>
20#include <linux/mount.h>
21#include <linux/list.h>
Tetsuo Handa76bb0892010-02-11 09:42:40 +090022#include <linux/cred.h>
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +090023#include <linux/poll.h>
Tetsuo Handa2066a362011-07-08 13:21:37 +090024#include <linux/binfmts.h>
25#include <linux/highmem.h>
Kentaro Takeda95908372009-02-05 17:18:13 +090026
Tetsuo Handa76bb0892010-02-11 09:42:40 +090027/********** Constants definitions. **********/
28
29/*
30 * TOMOYO uses this hash only when appending a string into the string
31 * table. Frequency of appending strings is very low. So we don't need
32 * large (e.g. 64k) hash size. 256 will be sufficient.
33 */
34#define TOMOYO_HASH_BITS 8
35#define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
36
Tetsuo Handac8c57e82010-06-03 20:36:43 +090037#define TOMOYO_EXEC_TMPSIZE 4096
Tetsuo Handa76bb0892010-02-11 09:42:40 +090038
39/* Profile number is an integer between 0 and 255. */
40#define TOMOYO_MAX_PROFILES 256
41
Tetsuo Handa32997142011-06-26 23:19:28 +090042/* Group number is an integer between 0 and 255. */
43#define TOMOYO_MAX_ACL_GROUPS 256
44
Tetsuo Handa2066a362011-07-08 13:21:37 +090045/* Index numbers for "struct tomoyo_condition". */
46enum tomoyo_conditions_index {
47 TOMOYO_TASK_UID, /* current_uid() */
48 TOMOYO_TASK_EUID, /* current_euid() */
49 TOMOYO_TASK_SUID, /* current_suid() */
50 TOMOYO_TASK_FSUID, /* current_fsuid() */
51 TOMOYO_TASK_GID, /* current_gid() */
52 TOMOYO_TASK_EGID, /* current_egid() */
53 TOMOYO_TASK_SGID, /* current_sgid() */
54 TOMOYO_TASK_FSGID, /* current_fsgid() */
55 TOMOYO_TASK_PID, /* sys_getpid() */
56 TOMOYO_TASK_PPID, /* sys_getppid() */
Tetsuo Handa5b636852011-07-08 13:24:54 +090057 TOMOYO_EXEC_ARGC, /* "struct linux_binprm *"->argc */
58 TOMOYO_EXEC_ENVC, /* "struct linux_binprm *"->envc */
Tetsuo Handa8761afd2011-07-08 13:22:41 +090059 TOMOYO_TYPE_IS_SOCKET, /* S_IFSOCK */
60 TOMOYO_TYPE_IS_SYMLINK, /* S_IFLNK */
61 TOMOYO_TYPE_IS_FILE, /* S_IFREG */
62 TOMOYO_TYPE_IS_BLOCK_DEV, /* S_IFBLK */
63 TOMOYO_TYPE_IS_DIRECTORY, /* S_IFDIR */
64 TOMOYO_TYPE_IS_CHAR_DEV, /* S_IFCHR */
65 TOMOYO_TYPE_IS_FIFO, /* S_IFIFO */
66 TOMOYO_MODE_SETUID, /* S_ISUID */
67 TOMOYO_MODE_SETGID, /* S_ISGID */
68 TOMOYO_MODE_STICKY, /* S_ISVTX */
69 TOMOYO_MODE_OWNER_READ, /* S_IRUSR */
70 TOMOYO_MODE_OWNER_WRITE, /* S_IWUSR */
71 TOMOYO_MODE_OWNER_EXECUTE, /* S_IXUSR */
72 TOMOYO_MODE_GROUP_READ, /* S_IRGRP */
73 TOMOYO_MODE_GROUP_WRITE, /* S_IWGRP */
74 TOMOYO_MODE_GROUP_EXECUTE, /* S_IXGRP */
75 TOMOYO_MODE_OTHERS_READ, /* S_IROTH */
76 TOMOYO_MODE_OTHERS_WRITE, /* S_IWOTH */
77 TOMOYO_MODE_OTHERS_EXECUTE, /* S_IXOTH */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +090078 TOMOYO_EXEC_REALPATH,
79 TOMOYO_SYMLINK_TARGET,
Tetsuo Handa8761afd2011-07-08 13:22:41 +090080 TOMOYO_PATH1_UID,
81 TOMOYO_PATH1_GID,
82 TOMOYO_PATH1_INO,
83 TOMOYO_PATH1_MAJOR,
84 TOMOYO_PATH1_MINOR,
85 TOMOYO_PATH1_PERM,
86 TOMOYO_PATH1_TYPE,
87 TOMOYO_PATH1_DEV_MAJOR,
88 TOMOYO_PATH1_DEV_MINOR,
89 TOMOYO_PATH2_UID,
90 TOMOYO_PATH2_GID,
91 TOMOYO_PATH2_INO,
92 TOMOYO_PATH2_MAJOR,
93 TOMOYO_PATH2_MINOR,
94 TOMOYO_PATH2_PERM,
95 TOMOYO_PATH2_TYPE,
96 TOMOYO_PATH2_DEV_MAJOR,
97 TOMOYO_PATH2_DEV_MINOR,
98 TOMOYO_PATH1_PARENT_UID,
99 TOMOYO_PATH1_PARENT_GID,
100 TOMOYO_PATH1_PARENT_INO,
101 TOMOYO_PATH1_PARENT_PERM,
102 TOMOYO_PATH2_PARENT_UID,
103 TOMOYO_PATH2_PARENT_GID,
104 TOMOYO_PATH2_PARENT_INO,
105 TOMOYO_PATH2_PARENT_PERM,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900106 TOMOYO_MAX_CONDITION_KEYWORD,
107 TOMOYO_NUMBER_UNION,
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900108 TOMOYO_NAME_UNION,
Tetsuo Handa5b636852011-07-08 13:24:54 +0900109 TOMOYO_ARGV_ENTRY,
110 TOMOYO_ENVP_ENTRY,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900111};
112
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900113
114/* Index numbers for stat(). */
115enum tomoyo_path_stat_index {
116 /* Do not change this order. */
117 TOMOYO_PATH1,
118 TOMOYO_PATH1_PARENT,
119 TOMOYO_PATH2,
120 TOMOYO_PATH2_PARENT,
121 TOMOYO_MAX_PATH_STAT
122};
123
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900124/* Index numbers for operation mode. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900125enum tomoyo_mode_index {
126 TOMOYO_CONFIG_DISABLED,
127 TOMOYO_CONFIG_LEARNING,
128 TOMOYO_CONFIG_PERMISSIVE,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900129 TOMOYO_CONFIG_ENFORCING,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900130 TOMOYO_CONFIG_MAX_MODE,
131 TOMOYO_CONFIG_WANT_REJECT_LOG = 64,
132 TOMOYO_CONFIG_WANT_GRANT_LOG = 128,
133 TOMOYO_CONFIG_USE_DEFAULT = 255,
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900134};
135
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900136/* Index numbers for entry type. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900137enum tomoyo_policy_id {
138 TOMOYO_ID_GROUP,
139 TOMOYO_ID_PATH_GROUP,
140 TOMOYO_ID_NUMBER_GROUP,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900141 TOMOYO_ID_TRANSITION_CONTROL,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900142 TOMOYO_ID_AGGREGATOR,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900143 TOMOYO_ID_MANAGER,
Tetsuo Handa2066a362011-07-08 13:21:37 +0900144 TOMOYO_ID_CONDITION,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900145 TOMOYO_ID_NAME,
146 TOMOYO_ID_ACL,
147 TOMOYO_ID_DOMAIN,
148 TOMOYO_MAX_POLICY
149};
150
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900151/* Index numbers for domain's attributes. */
152enum tomoyo_domain_info_flags_index {
153 /* Quota warnning flag. */
154 TOMOYO_DIF_QUOTA_WARNED,
155 /*
156 * This domain was unable to create a new domain at
157 * tomoyo_find_next_domain() because the name of the domain to be
158 * created was too long or it could not allocate memory.
159 * More than one process continued execve() without domain transition.
160 */
161 TOMOYO_DIF_TRANSITION_FAILED,
162 TOMOYO_MAX_DOMAIN_INFO_FLAGS
163};
164
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900165/* Index numbers for group entries. */
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900166enum tomoyo_group_id {
167 TOMOYO_PATH_GROUP,
168 TOMOYO_NUMBER_GROUP,
169 TOMOYO_MAX_GROUP
170};
171
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900172/* Index numbers for type of numeric values. */
173enum tomoyo_value_type {
174 TOMOYO_VALUE_TYPE_INVALID,
175 TOMOYO_VALUE_TYPE_DECIMAL,
176 TOMOYO_VALUE_TYPE_OCTAL,
177 TOMOYO_VALUE_TYPE_HEXADECIMAL,
178};
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900179
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900180/* Index numbers for domain transition control keywords. */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900181enum tomoyo_transition_type {
182 /* Do not change this order, */
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900183 TOMOYO_TRANSITION_CONTROL_NO_RESET,
184 TOMOYO_TRANSITION_CONTROL_RESET,
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900185 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
186 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
187 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
188 TOMOYO_TRANSITION_CONTROL_KEEP,
189 TOMOYO_MAX_TRANSITION_TYPE
190};
191
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900192/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900193enum tomoyo_acl_entry_type_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900194 TOMOYO_TYPE_PATH_ACL,
195 TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900196 TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handa75093152010-06-16 16:23:55 +0900197 TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900198 TOMOYO_TYPE_MOUNT_ACL,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900199 TOMOYO_TYPE_ENV_ACL,
Tetsuo Handa084da352010-02-15 15:10:39 +0900200};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900201
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900202/* Index numbers for access controls with one pathname. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900203enum tomoyo_path_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900204 TOMOYO_TYPE_EXECUTE,
205 TOMOYO_TYPE_READ,
206 TOMOYO_TYPE_WRITE,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900207 TOMOYO_TYPE_APPEND,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900208 TOMOYO_TYPE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900209 TOMOYO_TYPE_GETATTR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900210 TOMOYO_TYPE_RMDIR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900211 TOMOYO_TYPE_TRUNCATE,
212 TOMOYO_TYPE_SYMLINK,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900213 TOMOYO_TYPE_CHROOT,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900214 TOMOYO_TYPE_UMOUNT,
215 TOMOYO_MAX_PATH_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900216};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900217
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900218/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900219enum tomoyo_memory_stat_type {
220 TOMOYO_MEMORY_POLICY,
221 TOMOYO_MEMORY_AUDIT,
222 TOMOYO_MEMORY_QUERY,
223 TOMOYO_MAX_MEMORY_STAT
224};
225
Tetsuo Handa75093152010-06-16 16:23:55 +0900226enum tomoyo_mkdev_acl_index {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900227 TOMOYO_TYPE_MKBLOCK,
228 TOMOYO_TYPE_MKCHAR,
Tetsuo Handa75093152010-06-16 16:23:55 +0900229 TOMOYO_MAX_MKDEV_OPERATION
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900230};
231
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900232/* Index numbers for access controls with two pathnames. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900233enum tomoyo_path2_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900234 TOMOYO_TYPE_LINK,
235 TOMOYO_TYPE_RENAME,
236 TOMOYO_TYPE_PIVOT_ROOT,
237 TOMOYO_MAX_PATH2_OPERATION
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 and one number. */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900241enum tomoyo_path_number_acl_index {
242 TOMOYO_TYPE_CREATE,
243 TOMOYO_TYPE_MKDIR,
244 TOMOYO_TYPE_MKFIFO,
245 TOMOYO_TYPE_MKSOCK,
246 TOMOYO_TYPE_IOCTL,
247 TOMOYO_TYPE_CHMOD,
248 TOMOYO_TYPE_CHOWN,
249 TOMOYO_TYPE_CHGRP,
250 TOMOYO_MAX_PATH_NUMBER_OPERATION
251};
252
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900253/* Index numbers for /sys/kernel/security/tomoyo/ interfaces. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900254enum tomoyo_securityfs_interface_index {
255 TOMOYO_DOMAINPOLICY,
256 TOMOYO_EXCEPTIONPOLICY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900257 TOMOYO_PROCESS_STATUS,
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900258 TOMOYO_STAT,
Tetsuo Handa084da352010-02-15 15:10:39 +0900259 TOMOYO_SELFDOMAIN,
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900260 TOMOYO_AUDIT,
Tetsuo Handa084da352010-02-15 15:10:39 +0900261 TOMOYO_VERSION,
262 TOMOYO_PROFILE,
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900263 TOMOYO_QUERY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900264 TOMOYO_MANAGER
265};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900266
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900267/* Index numbers for special mount operations. */
268enum tomoyo_special_mount {
269 TOMOYO_MOUNT_BIND, /* mount --bind /source /dest */
270 TOMOYO_MOUNT_MOVE, /* mount --move /old /new */
271 TOMOYO_MOUNT_REMOUNT, /* mount -o remount /dir */
272 TOMOYO_MOUNT_MAKE_UNBINDABLE, /* mount --make-unbindable /dir */
273 TOMOYO_MOUNT_MAKE_PRIVATE, /* mount --make-private /dir */
274 TOMOYO_MOUNT_MAKE_SLAVE, /* mount --make-slave /dir */
275 TOMOYO_MOUNT_MAKE_SHARED, /* mount --make-shared /dir */
276 TOMOYO_MAX_SPECIAL_MOUNT
277};
278
279/* Index numbers for functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900280enum tomoyo_mac_index {
281 TOMOYO_MAC_FILE_EXECUTE,
282 TOMOYO_MAC_FILE_OPEN,
283 TOMOYO_MAC_FILE_CREATE,
284 TOMOYO_MAC_FILE_UNLINK,
Tetsuo Handa7c759642011-06-26 23:15:31 +0900285 TOMOYO_MAC_FILE_GETATTR,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900286 TOMOYO_MAC_FILE_MKDIR,
287 TOMOYO_MAC_FILE_RMDIR,
288 TOMOYO_MAC_FILE_MKFIFO,
289 TOMOYO_MAC_FILE_MKSOCK,
290 TOMOYO_MAC_FILE_TRUNCATE,
291 TOMOYO_MAC_FILE_SYMLINK,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900292 TOMOYO_MAC_FILE_MKBLOCK,
293 TOMOYO_MAC_FILE_MKCHAR,
294 TOMOYO_MAC_FILE_LINK,
295 TOMOYO_MAC_FILE_RENAME,
296 TOMOYO_MAC_FILE_CHMOD,
297 TOMOYO_MAC_FILE_CHOWN,
298 TOMOYO_MAC_FILE_CHGRP,
299 TOMOYO_MAC_FILE_IOCTL,
300 TOMOYO_MAC_FILE_CHROOT,
301 TOMOYO_MAC_FILE_MOUNT,
302 TOMOYO_MAC_FILE_UMOUNT,
303 TOMOYO_MAC_FILE_PIVOT_ROOT,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900304 TOMOYO_MAC_ENVIRON,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900305 TOMOYO_MAX_MAC_INDEX
306};
307
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900308/* Index numbers for category of functionality. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900309enum tomoyo_mac_category_index {
310 TOMOYO_MAC_CATEGORY_FILE,
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900311 TOMOYO_MAC_CATEGORY_MISC,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900312 TOMOYO_MAX_MAC_CATEGORY_INDEX
313};
314
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900315/*
316 * Retry this request. Returned by tomoyo_supervisor() if policy violation has
317 * occurred in enforcing mode and the userspace daemon decided to retry.
318 *
319 * We must choose a positive value in order to distinguish "granted" (which is
320 * 0) and "rejected" (which is a negative value) and "retry".
321 */
322#define TOMOYO_RETRY_REQUEST 1
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900323
Tetsuo Handab22b8b92011-06-26 23:21:50 +0900324/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
325enum tomoyo_policy_stat_type {
326 /* Do not change this order. */
327 TOMOYO_STAT_POLICY_UPDATES,
328 TOMOYO_STAT_POLICY_LEARNING, /* == TOMOYO_CONFIG_LEARNING */
329 TOMOYO_STAT_POLICY_PERMISSIVE, /* == TOMOYO_CONFIG_PERMISSIVE */
330 TOMOYO_STAT_POLICY_ENFORCING, /* == TOMOYO_CONFIG_ENFORCING */
331 TOMOYO_MAX_POLICY_STAT
332};
333
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900334/* Index numbers for profile's PREFERENCE values. */
335enum tomoyo_pref_index {
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900336 TOMOYO_PREF_MAX_AUDIT_LOG,
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900337 TOMOYO_PREF_MAX_LEARNING_ENTRY,
338 TOMOYO_MAX_PREF
339};
340
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900341/********** Structure definitions. **********/
Kentaro Takeda95908372009-02-05 17:18:13 +0900342
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900343/* Common header for holding ACL entries. */
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900344struct tomoyo_acl_head {
345 struct list_head list;
346 bool is_deleted;
347} __packed;
348
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900349/* Common header for shared entries. */
350struct tomoyo_shared_acl_head {
351 struct list_head list;
352 atomic_t users;
353} __packed;
354
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900355struct tomoyo_policy_namespace;
356
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900357/* Structure for request info. */
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900358struct tomoyo_request_info {
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900359 /*
360 * For holding parameters specific to operations which deal files.
361 * NULL if not dealing files.
362 */
363 struct tomoyo_obj_info *obj;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900364 /*
365 * For holding parameters specific to execve() request.
366 * NULL if not dealing do_execve().
367 */
368 struct tomoyo_execve *ee;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900369 struct tomoyo_domain_info *domain;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900370 /* For holding parameters. */
371 union {
372 struct {
373 const struct tomoyo_path_info *filename;
Tetsuo Handa484ca792010-07-29 14:29:55 +0900374 /* For using wildcards at tomoyo_find_next_domain(). */
375 const struct tomoyo_path_info *matched_path;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900376 /* One of values in "enum tomoyo_path_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900377 u8 operation;
378 } path;
379 struct {
380 const struct tomoyo_path_info *filename1;
381 const struct tomoyo_path_info *filename2;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900382 /* One of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900383 u8 operation;
384 } path2;
385 struct {
386 const struct tomoyo_path_info *filename;
387 unsigned int mode;
388 unsigned int major;
389 unsigned int minor;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900390 /* One of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900391 u8 operation;
392 } mkdev;
393 struct {
394 const struct tomoyo_path_info *filename;
395 unsigned long number;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900396 /*
397 * One of values in
398 * "enum tomoyo_path_number_acl_index".
399 */
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900400 u8 operation;
401 } path_number;
402 struct {
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900403 const struct tomoyo_path_info *name;
404 } environ;
405 struct {
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900406 const struct tomoyo_path_info *type;
407 const struct tomoyo_path_info *dir;
408 const struct tomoyo_path_info *dev;
409 unsigned long flags;
410 int need_dev;
411 } mount;
412 } param;
413 u8 param_type;
414 bool granted;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900415 u8 retry;
416 u8 profile;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900417 u8 mode; /* One of tomoyo_mode_index . */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900418 u8 type;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900419};
420
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900421/* Structure for holding a token. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900422struct tomoyo_path_info {
423 const char *name;
424 u32 hash; /* = full_name_hash(name, strlen(name)) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900425 u16 const_len; /* = tomoyo_const_part_length(name) */
426 bool is_dir; /* = tomoyo_strendswith(name, "/") */
427 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900428};
429
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900430/* Structure for holding string data. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900431struct tomoyo_name {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900432 struct tomoyo_shared_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900433 struct tomoyo_path_info entry;
434};
Kentaro Takeda95908372009-02-05 17:18:13 +0900435
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900436/* Structure for holding a word. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900437struct tomoyo_name_union {
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900438 /* Either @filename or @group is NULL. */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900439 const struct tomoyo_path_info *filename;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900440 struct tomoyo_group *group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900441};
442
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900443/* Structure for holding a number. */
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900444struct tomoyo_number_union {
445 unsigned long values[2];
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900446 struct tomoyo_group *group; /* Maybe NULL. */
447 /* One of values in "enum tomoyo_value_type". */
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900448 u8 value_type[2];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900449};
450
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900451/* Structure for "path_group"/"number_group" directive. */
452struct tomoyo_group {
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900453 struct tomoyo_shared_acl_head head;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900454 const struct tomoyo_path_info *group_name;
455 struct list_head member_list;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900456};
457
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900458/* Structure for "path_group" directive. */
459struct tomoyo_path_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900460 struct tomoyo_acl_head head;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900461 const struct tomoyo_path_info *member_name;
462};
463
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900464/* Structure for "number_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900465struct tomoyo_number_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900466 struct tomoyo_acl_head head;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900467 struct tomoyo_number_union number;
468};
469
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900470/* Subset of "struct stat". Used by conditional ACL and audit logs. */
471struct tomoyo_mini_stat {
472 uid_t uid;
473 gid_t gid;
474 ino_t ino;
475 mode_t mode;
476 dev_t dev;
477 dev_t rdev;
478};
479
Tetsuo Handa5b636852011-07-08 13:24:54 +0900480/* Structure for dumping argv[] and envp[] of "struct linux_binprm". */
481struct tomoyo_page_dump {
482 struct page *page; /* Previously dumped page. */
483 char *data; /* Contents of "page". Size is PAGE_SIZE. */
484};
485
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900486/* Structure for attribute checks in addition to pathname checks. */
487struct tomoyo_obj_info {
488 /*
489 * True if tomoyo_get_attributes() was already called, false otherwise.
490 */
491 bool validate_done;
492 /* True if @stat[] is valid. */
493 bool stat_valid[TOMOYO_MAX_PATH_STAT];
494 /* First pathname. Initialized with { NULL, NULL } if no path. */
495 struct path path1;
496 /* Second pathname. Initialized with { NULL, NULL } if no path. */
497 struct path path2;
498 /*
499 * Information on @path1, @path1's parent directory, @path2, @path2's
500 * parent directory.
501 */
502 struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900503 /*
504 * Content of symbolic link to be created. NULL for operations other
505 * than symlink().
506 */
507 struct tomoyo_path_info *symlink_target;
508};
509
Tetsuo Handa5b636852011-07-08 13:24:54 +0900510/* Structure for argv[]. */
511struct tomoyo_argv {
512 unsigned long index;
513 const struct tomoyo_path_info *value;
514 bool is_not;
515};
516
517/* Structure for envp[]. */
518struct tomoyo_envp {
519 const struct tomoyo_path_info *name;
520 const struct tomoyo_path_info *value;
521 bool is_not;
522};
523
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900524/* Structure for execve() operation. */
525struct tomoyo_execve {
526 struct tomoyo_request_info r;
527 struct tomoyo_obj_info obj;
528 struct linux_binprm *bprm;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900529 /* For dumping argv[] and envp[]. */
530 struct tomoyo_page_dump dump;
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900531 /* For temporary use. */
532 char *tmp; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900533};
534
Tetsuo Handa2066a362011-07-08 13:21:37 +0900535/* Structure for entries which follows "struct tomoyo_condition". */
536struct tomoyo_condition_element {
Tetsuo Handa5b636852011-07-08 13:24:54 +0900537 /*
538 * Left hand operand. A "struct tomoyo_argv" for TOMOYO_ARGV_ENTRY, a
539 * "struct tomoyo_envp" for TOMOYO_ENVP_ENTRY is attached to the tail
540 * of the array of this struct.
541 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900542 u8 left;
Tetsuo Handa5b636852011-07-08 13:24:54 +0900543 /*
544 * Right hand operand. A "struct tomoyo_number_union" for
545 * TOMOYO_NUMBER_UNION, a "struct tomoyo_name_union" for
546 * TOMOYO_NAME_UNION is attached to the tail of the array of this
547 * struct.
548 */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900549 u8 right;
550 /* Equation operator. True if equals or overlaps, false otherwise. */
551 bool equals;
552};
553
554/* Structure for optional arguments. */
555struct tomoyo_condition {
556 struct tomoyo_shared_acl_head head;
557 u32 size; /* Memory size allocated for this entry. */
558 u16 condc; /* Number of conditions in this struct. */
559 u16 numbers_count; /* Number of "struct tomoyo_number_union values". */
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900560 u16 names_count; /* Number of "struct tomoyo_name_union names". */
Tetsuo Handa5b636852011-07-08 13:24:54 +0900561 u16 argc; /* Number of "struct tomoyo_argv". */
562 u16 envc; /* Number of "struct tomoyo_envp". */
Tetsuo Handa2066a362011-07-08 13:21:37 +0900563 /*
564 * struct tomoyo_condition_element condition[condc];
565 * struct tomoyo_number_union values[numbers_count];
Tetsuo Handa2ca9bf42011-07-08 13:23:44 +0900566 * struct tomoyo_name_union names[names_count];
Tetsuo Handa5b636852011-07-08 13:24:54 +0900567 * struct tomoyo_argv argv[argc];
568 * struct tomoyo_envp envp[envc];
Tetsuo Handa2066a362011-07-08 13:21:37 +0900569 */
570};
571
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900572/* Common header for individual entries. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900573struct tomoyo_acl_info {
574 struct list_head list;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900575 struct tomoyo_condition *cond; /* Maybe NULL. */
Tetsuo Handa237ab452010-06-12 20:46:22 +0900576 bool is_deleted;
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900577 u8 type; /* One of values in "enum tomoyo_acl_entry_type_index". */
Kentaro Takeda95908372009-02-05 17:18:13 +0900578} __packed;
579
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900580/* Structure for domain information. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900581struct tomoyo_domain_info {
582 struct list_head list;
583 struct list_head acl_info_list;
584 /* Name of this domain. Never NULL. */
585 const struct tomoyo_path_info *domainname;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900586 /* Namespace for this domain. Never NULL. */
587 struct tomoyo_policy_namespace *ns;
Kentaro Takeda95908372009-02-05 17:18:13 +0900588 u8 profile; /* Profile number to use. */
Tetsuo Handa32997142011-06-26 23:19:28 +0900589 u8 group; /* Group number to use. */
Tetsuo Handaa0558fc2009-04-06 20:49:14 +0900590 bool is_deleted; /* Delete flag. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900591 bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900592 atomic_t users; /* Number of referring credentials. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900593};
594
Kentaro Takeda95908372009-02-05 17:18:13 +0900595/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900596 * Structure for "file execute", "file read", "file write", "file append",
597 * "file unlink", "file getattr", "file rmdir", "file truncate",
598 * "file symlink", "file chroot" and "file unmount" directive.
Kentaro Takeda95908372009-02-05 17:18:13 +0900599 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900600struct tomoyo_path_acl {
601 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900602 u16 perm; /* Bitmask of values in "enum tomoyo_path_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900603 struct tomoyo_name_union name;
Kentaro Takeda95908372009-02-05 17:18:13 +0900604};
605
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900606/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900607 * Structure for "file create", "file mkdir", "file mkfifo", "file mksock",
608 * "file ioctl", "file chmod", "file chown" and "file chgrp" directive.
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900609 */
610struct tomoyo_path_number_acl {
611 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900612 /* Bitmask of values in "enum tomoyo_path_number_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900613 u8 perm;
614 struct tomoyo_name_union name;
615 struct tomoyo_number_union number;
616};
617
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900618/* Structure for "file mkblock" and "file mkchar" directive. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900619struct tomoyo_mkdev_acl {
620 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900621 u8 perm; /* Bitmask of values in "enum tomoyo_mkdev_acl_index". */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900622 struct tomoyo_name_union name;
623 struct tomoyo_number_union mode;
624 struct tomoyo_number_union major;
625 struct tomoyo_number_union minor;
626};
627
628/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900629 * Structure for "file rename", "file link" and "file pivot_root" directive.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900630 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900631struct tomoyo_path2_acl {
632 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900633 u8 perm; /* Bitmask of values in "enum tomoyo_path2_acl_index". */
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900634 struct tomoyo_name_union name1;
635 struct tomoyo_name_union name2;
Kentaro Takeda95908372009-02-05 17:18:13 +0900636};
637
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900638/* Structure for "file mount" directive. */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900639struct tomoyo_mount_acl {
640 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900641 struct tomoyo_name_union dev_name;
642 struct tomoyo_name_union dir_name;
643 struct tomoyo_name_union fs_type;
644 struct tomoyo_number_union flags;
645};
646
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900647/* Structure for "misc env" directive in domain policy. */
648struct tomoyo_env_acl {
649 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_ENV_ACL */
650 const struct tomoyo_path_info *env; /* environment variable */
651};
652
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900653/* Structure for holding a line from /sys/kernel/security/tomoyo/ interface. */
654struct tomoyo_acl_param {
655 char *data;
656 struct list_head *list;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900657 struct tomoyo_policy_namespace *ns;
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900658 bool is_delete;
659};
660
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900661#define TOMOYO_MAX_IO_READ_QUEUE 64
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900662
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900663/*
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900664 * Structure for reading/writing policy via /sys/kernel/security/tomoyo
665 * interfaces.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900666 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900667struct tomoyo_io_buffer {
Tetsuo Handa8fbe71f2010-06-16 16:29:59 +0900668 void (*read) (struct tomoyo_io_buffer *);
Kentaro Takeda95908372009-02-05 17:18:13 +0900669 int (*write) (struct tomoyo_io_buffer *);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900670 int (*poll) (struct file *file, poll_table *wait);
Kentaro Takeda95908372009-02-05 17:18:13 +0900671 /* Exclusive lock for this structure. */
672 struct mutex io_sem;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900673 char __user *read_user_buf;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900674 size_t read_user_buf_avail;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900675 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900676 struct list_head *ns;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900677 struct list_head *domain;
678 struct list_head *group;
679 struct list_head *acl;
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900680 size_t avail;
681 unsigned int step;
682 unsigned int query_index;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900683 u16 index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900684 u16 cond_index;
Tetsuo Handa32997142011-06-26 23:19:28 +0900685 u8 acl_group_index;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900686 u8 cond_step;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900687 u8 bit;
688 u8 w_pos;
689 bool eof;
690 bool print_this_domain_only;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900691 bool print_transition_related_only;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900692 bool print_cond_part;
Tetsuo Handaf23571e2010-06-24 14:57:16 +0900693 const char *w[TOMOYO_MAX_IO_READ_QUEUE];
694 } r;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900695 struct {
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900696 struct tomoyo_policy_namespace *ns;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900697 /* The position currently writing to. */
698 struct tomoyo_domain_info *domain;
699 /* Bytes available for writing. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900700 size_t avail;
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900701 bool is_delete;
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +0900702 } w;
Kentaro Takeda95908372009-02-05 17:18:13 +0900703 /* Buffer for reading. */
704 char *read_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900705 /* Size of read buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900706 size_t readbuf_size;
Kentaro Takeda95908372009-02-05 17:18:13 +0900707 /* Buffer for writing. */
708 char *write_buf;
Kentaro Takeda95908372009-02-05 17:18:13 +0900709 /* Size of write buffer. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900710 size_t writebuf_size;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900711 /* Type of this interface. */
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900712 enum tomoyo_securityfs_interface_index type;
Tetsuo Handa2e503bb2011-06-26 23:20:55 +0900713 /* Users counter protected by tomoyo_io_buffer_list_lock. */
714 u8 users;
715 /* List for telling GC not to kfree() elements. */
716 struct list_head list;
Kentaro Takeda95908372009-02-05 17:18:13 +0900717};
718
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900719/*
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900720 * Structure for "initialize_domain"/"no_initialize_domain"/"keep_domain"/
721 * "no_keep_domain" keyword.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900722 */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900723struct tomoyo_transition_control {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900724 struct tomoyo_acl_head head;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900725 u8 type; /* One of values in "enum tomoyo_transition_type". */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900726 /* True if the domainname is tomoyo_get_last_name(). */
727 bool is_last_name;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900728 const struct tomoyo_path_info *domainname; /* Maybe NULL */
729 const struct tomoyo_path_info *program; /* Maybe NULL */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900730};
731
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900732/* Structure for "aggregator" keyword. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900733struct tomoyo_aggregator {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900734 struct tomoyo_acl_head head;
Tetsuo Handa10843072010-06-03 20:38:03 +0900735 const struct tomoyo_path_info *original_name;
736 const struct tomoyo_path_info *aggregated_name;
Tetsuo Handa10843072010-06-03 20:38:03 +0900737};
738
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900739/* Structure for policy manager. */
Tetsuo Handae2bf6902010-06-25 11:16:00 +0900740struct tomoyo_manager {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900741 struct tomoyo_acl_head head;
742 bool is_domain; /* True if manager is a domainname. */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900743 /* A path to program or a domainname. */
744 const struct tomoyo_path_info *manager;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900745};
746
Tetsuo Handa57c25902010-06-03 20:38:44 +0900747struct tomoyo_preference {
748 unsigned int learning_max_entry;
749 bool enforcing_verbose;
750 bool learning_verbose;
751 bool permissive_verbose;
752};
753
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900754/* Structure for /sys/kernel/security/tomnoyo/profile interface. */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900755struct tomoyo_profile {
756 const struct tomoyo_path_info *comment;
757 struct tomoyo_preference *learning;
758 struct tomoyo_preference *permissive;
759 struct tomoyo_preference *enforcing;
760 struct tomoyo_preference preference;
761 u8 default_config;
762 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
Tetsuo Handad5ca1722011-06-26 23:18:21 +0900763 unsigned int pref[TOMOYO_MAX_PREF];
Tetsuo Handa57c25902010-06-03 20:38:44 +0900764};
765
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900766/* Structure for representing YYYY/MM/DD hh/mm/ss. */
767struct tomoyo_time {
768 u16 year;
769 u8 month;
770 u8 day;
771 u8 hour;
772 u8 min;
773 u8 sec;
774};
775
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900776/* Structure for policy namespace. */
777struct tomoyo_policy_namespace {
778 /* Profile table. Memory is allocated as needed. */
779 struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
780 /* List of "struct tomoyo_group". */
781 struct list_head group_list[TOMOYO_MAX_GROUP];
782 /* List of policy. */
783 struct list_head policy_list[TOMOYO_MAX_POLICY];
784 /* The global ACL referred by "use_group" keyword. */
785 struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
786 /* List for connecting to tomoyo_namespace_list list. */
787 struct list_head namespace_list;
788 /* Profile version. Currently only 20100903 is defined. */
789 unsigned int profile_version;
790 /* Name of this namespace (e.g. "<kernel>", "</usr/sbin/httpd>" ). */
791 const char *name;
792};
793
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900794/********** Function prototypes. **********/
795
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900796bool tomoyo_compare_number_union(const unsigned long value,
797 const struct tomoyo_number_union *ptr);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900798bool tomoyo_condition(struct tomoyo_request_info *r,
799 const struct tomoyo_condition *cond);
Tetsuo Handa75093152010-06-16 16:23:55 +0900800bool tomoyo_correct_domain(const unsigned char *domainname);
Tetsuo Handa75093152010-06-16 16:23:55 +0900801bool tomoyo_correct_path(const char *filename);
802bool tomoyo_correct_word(const char *string);
Tetsuo Handa75093152010-06-16 16:23:55 +0900803bool tomoyo_domain_def(const unsigned char *buffer);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900804bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
Tetsuo Handa5b636852011-07-08 13:24:54 +0900805bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
806 struct tomoyo_page_dump *dump);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900807bool tomoyo_memory_ok(void *ptr);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900808bool tomoyo_number_matches_group(const unsigned long min,
809 const unsigned long max,
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900810 const struct tomoyo_group *group);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900811bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
812 struct tomoyo_name_union *ptr);
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900813bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
814 struct tomoyo_number_union *ptr);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900815bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
816 const struct tomoyo_path_info *pattern);
817bool tomoyo_permstr(const char *string, const char *keyword);
818bool tomoyo_str_starts(char **src, const char *find);
819char *tomoyo_encode(const char *str);
820char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
821 va_list args);
822char *tomoyo_read_token(struct tomoyo_acl_param *param);
823char *tomoyo_realpath_from_path(struct path *path);
824char *tomoyo_realpath_nofollow(const char *pathname);
825const char *tomoyo_get_exe(void);
826const char *tomoyo_yesno(const unsigned int value);
827const struct tomoyo_path_info *tomoyo_compare_name_union
828(const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
829const struct tomoyo_path_info *tomoyo_get_name(const char *name);
830const struct tomoyo_path_info *tomoyo_path_matches_group
831(const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
832int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
833 struct path *path, const int flag);
834int tomoyo_close_control(struct tomoyo_io_buffer *head);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900835int tomoyo_env_perm(struct tomoyo_request_info *r, const char *env);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900836int tomoyo_find_next_domain(struct linux_binprm *bprm);
837int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
838 const u8 index);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900839int tomoyo_init_request_info(struct tomoyo_request_info *r,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900840 struct tomoyo_domain_info *domain,
841 const u8 index);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900842int tomoyo_mkdev_perm(const u8 operation, struct path *path,
843 const unsigned int mode, unsigned int dev);
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900844int tomoyo_mount_permission(char *dev_name, struct path *path,
845 const char *type, unsigned long flags,
846 void *data_page);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900847int tomoyo_open_control(const u8 type, struct file *file);
Tetsuo Handa97d69312010-02-16 09:46:15 +0900848int tomoyo_path2_perm(const u8 operation, struct path *path1,
849 struct path *path2);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900850int tomoyo_path_number_perm(const u8 operation, struct path *path,
851 unsigned long number);
Tetsuo Handa97fb35e2011-07-08 13:25:53 +0900852int tomoyo_path_perm(const u8 operation, struct path *path,
853 const char *target);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900854int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
855 const struct tomoyo_path_info *filename);
856int tomoyo_poll_control(struct file *file, poll_table *wait);
857int tomoyo_poll_log(struct file *file, poll_table *wait);
858int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
859 __printf(2, 3);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900860int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900861 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900862 bool (*check_duplicate)
863 (const struct tomoyo_acl_info *,
864 const struct tomoyo_acl_info *),
865 bool (*merge_duplicate)
866 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
867 const bool));
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900868int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
Tetsuo Handaa238cf52011-06-26 23:17:10 +0900869 struct tomoyo_acl_param *param,
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900870 bool (*check_duplicate)
871 (const struct tomoyo_acl_head *,
872 const struct tomoyo_acl_head *));
873int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
874int tomoyo_write_file(struct tomoyo_acl_param *param);
875int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
Tetsuo Handad58e0da2011-09-10 15:22:48 +0900876int tomoyo_write_misc(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900877int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
878 const u8 type);
879ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
880 const int buffer_len);
881ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
882 const char __user *buffer, const int buffer_len);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900883struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900884struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
885 const bool transit);
886struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
887struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
888 const u8 idx);
889struct tomoyo_policy_namespace *tomoyo_assign_namespace
890(const char *domainname);
891struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
892 const u8 profile);
893unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
894 const u8 index);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900895u8 tomoyo_parse_ulong(unsigned long *result, char **str);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900896void *tomoyo_commit_ok(void *data, const unsigned int size);
897void __init tomoyo_load_builtin_policy(void);
898void __init tomoyo_mm_init(void);
Tetsuo Handa99a85252010-06-16 16:22:51 +0900899void tomoyo_check_acl(struct tomoyo_request_info *r,
Tetsuo Handa484ca792010-07-29 14:29:55 +0900900 bool (*check_entry) (struct tomoyo_request_info *,
Tetsuo Handa99a85252010-06-16 16:22:51 +0900901 const struct tomoyo_acl_info *));
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900902void tomoyo_check_profile(void);
903void tomoyo_convert_time(time_t time, struct tomoyo_time *stamp);
Tetsuo Handa2066a362011-07-08 13:21:37 +0900904void tomoyo_del_condition(struct list_head *element);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900905void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
Tetsuo Handa8761afd2011-07-08 13:22:41 +0900906void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900907void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
908void tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...)
909 __printf(2, 3);
910void tomoyo_load_policy(const char *filename);
911void tomoyo_memory_free(void *ptr);
912void tomoyo_normalize_line(unsigned char *buffer);
913void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
914void tomoyo_print_ulong(char *buffer, const int buffer_len,
915 const unsigned long value, const u8 type);
916void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
917void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
918void tomoyo_read_log(struct tomoyo_io_buffer *head);
919void tomoyo_update_stat(const u8 index);
920void tomoyo_warn_oom(const char *function);
Tetsuo Handabd03a3e2011-06-26 23:19:52 +0900921void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900922 __printf(2, 3);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900923void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
924 va_list args);
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900925
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900926/********** External variable definitions. **********/
927
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900928extern bool tomoyo_policy_loaded;
Tetsuo Handa2066a362011-07-08 13:21:37 +0900929extern const char * const tomoyo_condition_keyword
930[TOMOYO_MAX_CONDITION_KEYWORD];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900931extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
932extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
933 + TOMOYO_MAX_MAC_CATEGORY_INDEX];
934extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE];
Tetsuo Handa2c47ab92011-06-26 23:21:19 +0900935extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
936extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX];
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900937extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION];
Tetsuo Handa0d2171d2011-06-26 23:17:46 +0900938extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION];
939extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION];
Tetsuo Handa2066a362011-07-08 13:21:37 +0900940extern struct list_head tomoyo_condition_list;
Tetsuo Handa3ddf17f2011-06-29 14:22:37 +0900941extern struct list_head tomoyo_domain_list;
942extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
943extern struct list_head tomoyo_namespace_list;
944extern struct mutex tomoyo_policy_lock;
945extern struct srcu_struct tomoyo_ss;
946extern struct tomoyo_domain_info tomoyo_kernel_domain;
947extern struct tomoyo_policy_namespace tomoyo_kernel_namespace;
Tetsuo Handaeadd99c2011-06-26 23:18:58 +0900948extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
949extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900950
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900951/********** Inlined functions. **********/
952
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900953/**
954 * tomoyo_read_lock - Take lock for protecting policy.
955 *
956 * Returns index number for tomoyo_read_unlock().
957 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900958static inline int tomoyo_read_lock(void)
959{
960 return srcu_read_lock(&tomoyo_ss);
961}
962
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900963/**
964 * tomoyo_read_unlock - Release lock for protecting policy.
965 *
966 * @idx: Index number returned by tomoyo_read_lock().
967 *
968 * Returns nothing.
969 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900970static inline void tomoyo_read_unlock(int idx)
971{
972 srcu_read_unlock(&tomoyo_ss, idx);
973}
974
Tetsuo Handab5bc60b2011-06-26 23:16:03 +0900975/**
Tetsuo Handa2066a362011-07-08 13:21:37 +0900976 * tomoyo_sys_getppid - Copy of getppid().
977 *
978 * Returns parent process's PID.
979 *
980 * Alpha does not have getppid() defined. To be able to build this module on
981 * Alpha, I have to copy getppid() from kernel/timer.c.
982 */
983static inline pid_t tomoyo_sys_getppid(void)
984{
985 pid_t pid;
986 rcu_read_lock();
987 pid = task_tgid_vnr(current->real_parent);
988 rcu_read_unlock();
989 return pid;
990}
991
992/**
993 * tomoyo_sys_getpid - Copy of getpid().
994 *
995 * Returns current thread's PID.
996 *
997 * Alpha does not have getpid() defined. To be able to build this module on
998 * Alpha, I have to copy getpid() from kernel/timer.c.
999 */
1000static inline pid_t tomoyo_sys_getpid(void)
1001{
1002 return task_tgid_vnr(current);
1003}
1004
1005/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001006 * tomoyo_pathcmp - strcmp() for "struct tomoyo_path_info" structure.
1007 *
1008 * @a: Pointer to "struct tomoyo_path_info".
1009 * @b: Pointer to "struct tomoyo_path_info".
1010 *
1011 * Returns true if @a == @b, false otherwise.
1012 */
Kentaro Takeda95908372009-02-05 17:18:13 +09001013static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
1014 const struct tomoyo_path_info *b)
1015{
1016 return a->hash != b->hash || strcmp(a->name, b->name);
1017}
1018
Kentaro Takeda95908372009-02-05 17:18:13 +09001019/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001020 * tomoyo_put_name - Drop reference on "struct tomoyo_name".
1021 *
1022 * @name: Pointer to "struct tomoyo_path_info". Maybe NULL.
1023 *
1024 * Returns nothing.
1025 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001026static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
1027{
1028 if (name) {
Tetsuo Handae2bf6902010-06-25 11:16:00 +09001029 struct tomoyo_name *ptr =
1030 container_of(name, typeof(*ptr), entry);
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001031 atomic_dec(&ptr->head.users);
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001032 }
1033}
Kentaro Takeda95908372009-02-05 17:18:13 +09001034
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001035/**
Tetsuo Handa2066a362011-07-08 13:21:37 +09001036 * tomoyo_put_condition - Drop reference on "struct tomoyo_condition".
1037 *
1038 * @cond: Pointer to "struct tomoyo_condition". Maybe NULL.
1039 *
1040 * Returns nothing.
1041 */
1042static inline void tomoyo_put_condition(struct tomoyo_condition *cond)
1043{
1044 if (cond)
1045 atomic_dec(&cond->head.users);
1046}
1047
1048/**
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001049 * tomoyo_put_group - Drop reference on "struct tomoyo_group".
1050 *
1051 * @group: Pointer to "struct tomoyo_group". Maybe NULL.
1052 *
1053 * Returns nothing.
1054 */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +09001055static inline void tomoyo_put_group(struct tomoyo_group *group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001056{
1057 if (group)
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001058 atomic_dec(&group->head.users);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001059}
1060
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001061/**
1062 * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread.
1063 *
1064 * Returns pointer to "struct tomoyo_domain_info" for current thread.
1065 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001066static inline struct tomoyo_domain_info *tomoyo_domain(void)
1067{
1068 return current_cred()->security;
1069}
Kentaro Takeda95908372009-02-05 17:18:13 +09001070
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001071/**
1072 * tomoyo_real_domain - Get "struct tomoyo_domain_info" for specified thread.
1073 *
1074 * @task: Pointer to "struct task_struct".
1075 *
1076 * Returns pointer to "struct tomoyo_security" for specified thread.
1077 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +09001078static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
1079 *task)
1080{
1081 return task_cred_xxx(task, security);
1082}
Kentaro Takeda95908372009-02-05 17:18:13 +09001083
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001084/**
1085 * tomoyo_same_name_union - Check for duplicated "struct tomoyo_name_union" entry.
1086 *
1087 * @a: Pointer to "struct tomoyo_name_union".
1088 * @b: Pointer to "struct tomoyo_name_union".
1089 *
1090 * Returns true if @a == @b, false otherwise.
1091 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001092static inline bool tomoyo_same_name_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001093(const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001094{
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001095 return a->filename == b->filename && a->group == b->group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001096}
1097
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001098/**
1099 * tomoyo_same_number_union - Check for duplicated "struct tomoyo_number_union" entry.
1100 *
1101 * @a: Pointer to "struct tomoyo_number_union".
1102 * @b: Pointer to "struct tomoyo_number_union".
1103 *
1104 * Returns true if @a == @b, false otherwise.
1105 */
Tetsuo Handa75093152010-06-16 16:23:55 +09001106static inline bool tomoyo_same_number_union
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001107(const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001108{
Tetsuo Handab5bc60b2011-06-26 23:16:03 +09001109 return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
Tetsuo Handa0df7e8b2011-06-26 23:16:36 +09001110 a->group == b->group && a->value_type[0] == b->value_type[0] &&
1111 a->value_type[1] == b->value_type[1];
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001112}
1113
Tetsuo Handabd03a3e2011-06-26 23:19:52 +09001114/**
1115 * tomoyo_current_namespace - Get "struct tomoyo_policy_namespace" for current thread.
1116 *
1117 * Returns pointer to "struct tomoyo_policy_namespace" for current thread.
1118 */
1119static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
1120{
1121 return tomoyo_domain()->ns;
1122}
1123
Tetsuo Handaeadd99c2011-06-26 23:18:58 +09001124#if defined(CONFIG_SLOB)
1125
1126/**
1127 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1128 *
1129 * @size: Size to be rounded up.
1130 *
1131 * Returns @size.
1132 *
1133 * Since SLOB does not round up, this function simply returns @size.
1134 */
1135static inline int tomoyo_round2(size_t size)
1136{
1137 return size;
1138}
1139
1140#else
1141
1142/**
1143 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
1144 *
1145 * @size: Size to be rounded up.
1146 *
1147 * Returns rounded size.
1148 *
1149 * Strictly speaking, SLAB may be able to allocate (e.g.) 96 bytes instead of
1150 * (e.g.) 128 bytes.
1151 */
1152static inline int tomoyo_round2(size_t size)
1153{
1154#if PAGE_SIZE == 4096
1155 size_t bsize = 32;
1156#else
1157 size_t bsize = 64;
1158#endif
1159 if (!size)
1160 return 0;
1161 while (size > bsize)
1162 bsize <<= 1;
1163 return bsize;
1164}
1165
1166#endif
1167
Kentaro Takeda95908372009-02-05 17:18:13 +09001168/**
1169 * list_for_each_cookie - iterate over a list with cookie.
1170 * @pos: the &struct list_head to use as a loop cursor.
Kentaro Takeda95908372009-02-05 17:18:13 +09001171 * @head: the head for your list.
Kentaro Takeda95908372009-02-05 17:18:13 +09001172 */
Tetsuo Handa475e6fa2010-06-24 11:28:14 +09001173#define list_for_each_cookie(pos, head) \
1174 if (!pos) \
1175 pos = srcu_dereference((head)->next, &tomoyo_ss); \
1176 for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001177
Kentaro Takeda95908372009-02-05 17:18:13 +09001178#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */