blob: 1277724edae4a1a967805e367784071660b33639 [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 Handa76bb0892010-02-11 09:42:40 +090024struct linux_binprm;
Kentaro Takeda95908372009-02-05 17:18:13 +090025
Tetsuo Handa76bb0892010-02-11 09:42:40 +090026/********** Constants definitions. **********/
27
28/*
29 * TOMOYO uses this hash only when appending a string into the string
30 * table. Frequency of appending strings is very low. So we don't need
31 * large (e.g. 64k) hash size. 256 will be sufficient.
32 */
33#define TOMOYO_HASH_BITS 8
34#define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)
35
Tetsuo Handac8c57e82010-06-03 20:36:43 +090036#define TOMOYO_EXEC_TMPSIZE 4096
Tetsuo Handa76bb0892010-02-11 09:42:40 +090037
38/* Profile number is an integer between 0 and 255. */
39#define TOMOYO_MAX_PROFILES 256
40
Tetsuo Handacb0abe62010-05-17 10:08:05 +090041enum tomoyo_mode_index {
42 TOMOYO_CONFIG_DISABLED,
43 TOMOYO_CONFIG_LEARNING,
44 TOMOYO_CONFIG_PERMISSIVE,
Tetsuo Handa57c25902010-06-03 20:38:44 +090045 TOMOYO_CONFIG_ENFORCING,
46 TOMOYO_CONFIG_USE_DEFAULT = 255
Tetsuo Handacb0abe62010-05-17 10:08:05 +090047};
48
Tetsuo Handaa230f9e2010-06-17 16:53:24 +090049enum tomoyo_policy_id {
50 TOMOYO_ID_GROUP,
51 TOMOYO_ID_PATH_GROUP,
52 TOMOYO_ID_NUMBER_GROUP,
Tetsuo Handa5448ec42010-06-21 11:14:39 +090053 TOMOYO_ID_TRANSITION_CONTROL,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +090054 TOMOYO_ID_AGGREGATOR,
Tetsuo Handaa230f9e2010-06-17 16:53:24 +090055 TOMOYO_ID_GLOBALLY_READABLE,
56 TOMOYO_ID_PATTERN,
57 TOMOYO_ID_NO_REWRITE,
58 TOMOYO_ID_MANAGER,
59 TOMOYO_ID_NAME,
60 TOMOYO_ID_ACL,
61 TOMOYO_ID_DOMAIN,
62 TOMOYO_MAX_POLICY
63};
64
65enum tomoyo_group_id {
66 TOMOYO_PATH_GROUP,
67 TOMOYO_NUMBER_GROUP,
68 TOMOYO_MAX_GROUP
69};
70
Tetsuo Handa76bb0892010-02-11 09:42:40 +090071/* Keywords for ACLs. */
Tetsuo Handa10843072010-06-03 20:38:03 +090072#define TOMOYO_KEYWORD_AGGREGATOR "aggregator "
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090073#define TOMOYO_KEYWORD_ALLOW_MOUNT "allow_mount "
Tetsuo Handa76bb0892010-02-11 09:42:40 +090074#define TOMOYO_KEYWORD_ALLOW_READ "allow_read "
75#define TOMOYO_KEYWORD_DELETE "delete "
76#define TOMOYO_KEYWORD_DENY_REWRITE "deny_rewrite "
77#define TOMOYO_KEYWORD_FILE_PATTERN "file_pattern "
78#define TOMOYO_KEYWORD_INITIALIZE_DOMAIN "initialize_domain "
79#define TOMOYO_KEYWORD_KEEP_DOMAIN "keep_domain "
80#define TOMOYO_KEYWORD_NO_INITIALIZE_DOMAIN "no_initialize_domain "
81#define TOMOYO_KEYWORD_NO_KEEP_DOMAIN "no_keep_domain "
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090082#define TOMOYO_KEYWORD_PATH_GROUP "path_group "
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +090083#define TOMOYO_KEYWORD_NUMBER_GROUP "number_group "
Tetsuo Handa76bb0892010-02-11 09:42:40 +090084#define TOMOYO_KEYWORD_SELECT "select "
85#define TOMOYO_KEYWORD_USE_PROFILE "use_profile "
86#define TOMOYO_KEYWORD_IGNORE_GLOBAL_ALLOW_READ "ignore_global_allow_read"
Tetsuo Handa9b244372010-06-03 20:35:53 +090087#define TOMOYO_KEYWORD_QUOTA_EXCEEDED "quota_exceeded"
88#define TOMOYO_KEYWORD_TRANSITION_FAILED "transition_failed"
Tetsuo Handa76bb0892010-02-11 09:42:40 +090089/* A domain definition starts with <kernel>. */
90#define TOMOYO_ROOT_NAME "<kernel>"
91#define TOMOYO_ROOT_NAME_LEN (sizeof(TOMOYO_ROOT_NAME) - 1)
92
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +090093/* Value type definition. */
94#define TOMOYO_VALUE_TYPE_INVALID 0
95#define TOMOYO_VALUE_TYPE_DECIMAL 1
96#define TOMOYO_VALUE_TYPE_OCTAL 2
97#define TOMOYO_VALUE_TYPE_HEXADECIMAL 3
98
Tetsuo Handa5448ec42010-06-21 11:14:39 +090099enum tomoyo_transition_type {
100 /* Do not change this order, */
101 TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
102 TOMOYO_TRANSITION_CONTROL_INITIALIZE,
103 TOMOYO_TRANSITION_CONTROL_NO_KEEP,
104 TOMOYO_TRANSITION_CONTROL_KEEP,
105 TOMOYO_MAX_TRANSITION_TYPE
106};
107
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900108/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +0900109enum tomoyo_acl_entry_type_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900110 TOMOYO_TYPE_PATH_ACL,
111 TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900112 TOMOYO_TYPE_PATH_NUMBER_ACL,
Tetsuo Handa75093152010-06-16 16:23:55 +0900113 TOMOYO_TYPE_MKDEV_ACL,
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900114 TOMOYO_TYPE_MOUNT_ACL,
Tetsuo Handa084da352010-02-15 15:10:39 +0900115};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900116
117/* Index numbers for File Controls. */
118
119/*
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900120 * TOMOYO_TYPE_READ_WRITE is special. TOMOYO_TYPE_READ_WRITE is automatically
121 * set if both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are set.
122 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically set if
123 * TOMOYO_TYPE_READ_WRITE is set.
124 * TOMOYO_TYPE_READ_WRITE is automatically cleared if either TOMOYO_TYPE_READ
125 * or TOMOYO_TYPE_WRITE is cleared.
126 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically cleared if
127 * TOMOYO_TYPE_READ_WRITE is cleared.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900128 */
129
Tetsuo Handa084da352010-02-15 15:10:39 +0900130enum tomoyo_path_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900131 TOMOYO_TYPE_READ_WRITE,
132 TOMOYO_TYPE_EXECUTE,
133 TOMOYO_TYPE_READ,
134 TOMOYO_TYPE_WRITE,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900135 TOMOYO_TYPE_UNLINK,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900136 TOMOYO_TYPE_RMDIR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900137 TOMOYO_TYPE_TRUNCATE,
138 TOMOYO_TYPE_SYMLINK,
139 TOMOYO_TYPE_REWRITE,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900140 TOMOYO_TYPE_CHROOT,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900141 TOMOYO_TYPE_UMOUNT,
142 TOMOYO_MAX_PATH_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900143};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900144
Tetsuo Handa237ab452010-06-12 20:46:22 +0900145#define TOMOYO_RW_MASK ((1 << TOMOYO_TYPE_READ) | (1 << TOMOYO_TYPE_WRITE))
146
Tetsuo Handa75093152010-06-16 16:23:55 +0900147enum tomoyo_mkdev_acl_index {
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900148 TOMOYO_TYPE_MKBLOCK,
149 TOMOYO_TYPE_MKCHAR,
Tetsuo Handa75093152010-06-16 16:23:55 +0900150 TOMOYO_MAX_MKDEV_OPERATION
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900151};
152
Tetsuo Handa084da352010-02-15 15:10:39 +0900153enum tomoyo_path2_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900154 TOMOYO_TYPE_LINK,
155 TOMOYO_TYPE_RENAME,
156 TOMOYO_TYPE_PIVOT_ROOT,
157 TOMOYO_MAX_PATH2_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900158};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900159
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900160enum tomoyo_path_number_acl_index {
161 TOMOYO_TYPE_CREATE,
162 TOMOYO_TYPE_MKDIR,
163 TOMOYO_TYPE_MKFIFO,
164 TOMOYO_TYPE_MKSOCK,
165 TOMOYO_TYPE_IOCTL,
166 TOMOYO_TYPE_CHMOD,
167 TOMOYO_TYPE_CHOWN,
168 TOMOYO_TYPE_CHGRP,
169 TOMOYO_MAX_PATH_NUMBER_OPERATION
170};
171
Tetsuo Handa084da352010-02-15 15:10:39 +0900172enum tomoyo_securityfs_interface_index {
173 TOMOYO_DOMAINPOLICY,
174 TOMOYO_EXCEPTIONPOLICY,
175 TOMOYO_DOMAIN_STATUS,
176 TOMOYO_PROCESS_STATUS,
177 TOMOYO_MEMINFO,
178 TOMOYO_SELFDOMAIN,
179 TOMOYO_VERSION,
180 TOMOYO_PROFILE,
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900181 TOMOYO_QUERY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900182 TOMOYO_MANAGER
183};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900184
Tetsuo Handa57c25902010-06-03 20:38:44 +0900185enum tomoyo_mac_index {
186 TOMOYO_MAC_FILE_EXECUTE,
187 TOMOYO_MAC_FILE_OPEN,
188 TOMOYO_MAC_FILE_CREATE,
189 TOMOYO_MAC_FILE_UNLINK,
190 TOMOYO_MAC_FILE_MKDIR,
191 TOMOYO_MAC_FILE_RMDIR,
192 TOMOYO_MAC_FILE_MKFIFO,
193 TOMOYO_MAC_FILE_MKSOCK,
194 TOMOYO_MAC_FILE_TRUNCATE,
195 TOMOYO_MAC_FILE_SYMLINK,
196 TOMOYO_MAC_FILE_REWRITE,
197 TOMOYO_MAC_FILE_MKBLOCK,
198 TOMOYO_MAC_FILE_MKCHAR,
199 TOMOYO_MAC_FILE_LINK,
200 TOMOYO_MAC_FILE_RENAME,
201 TOMOYO_MAC_FILE_CHMOD,
202 TOMOYO_MAC_FILE_CHOWN,
203 TOMOYO_MAC_FILE_CHGRP,
204 TOMOYO_MAC_FILE_IOCTL,
205 TOMOYO_MAC_FILE_CHROOT,
206 TOMOYO_MAC_FILE_MOUNT,
207 TOMOYO_MAC_FILE_UMOUNT,
208 TOMOYO_MAC_FILE_PIVOT_ROOT,
209 TOMOYO_MAX_MAC_INDEX
210};
211
212enum tomoyo_mac_category_index {
213 TOMOYO_MAC_CATEGORY_FILE,
214 TOMOYO_MAX_MAC_CATEGORY_INDEX
215};
216
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900217#define TOMOYO_RETRY_REQUEST 1 /* Retry this request. */
218
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900219/********** Structure definitions. **********/
Kentaro Takeda95908372009-02-05 17:18:13 +0900220
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900221/*
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900222 * tomoyo_acl_head is a structure which is used for holding elements not in
223 * domain policy.
224 * It has following fields.
225 *
226 * (1) "list" which is linked to tomoyo_policy_list[] .
227 * (2) "is_deleted" is a bool which is true if marked as deleted, false
228 * otherwise.
229 */
230struct tomoyo_acl_head {
231 struct list_head list;
232 bool is_deleted;
233} __packed;
234
235/*
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900236 * tomoyo_request_info is a structure which is used for holding
237 *
238 * (1) Domain information of current process.
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900239 * (2) How many retries are made for this request.
240 * (3) Profile number used for this request.
241 * (4) Access control mode of the profile.
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900242 */
243struct tomoyo_request_info {
244 struct tomoyo_domain_info *domain;
Tetsuo Handacf6e9a62010-06-16 16:21:36 +0900245 /* For holding parameters. */
246 union {
247 struct {
248 const struct tomoyo_path_info *filename;
249 u8 operation;
250 } path;
251 struct {
252 const struct tomoyo_path_info *filename1;
253 const struct tomoyo_path_info *filename2;
254 u8 operation;
255 } path2;
256 struct {
257 const struct tomoyo_path_info *filename;
258 unsigned int mode;
259 unsigned int major;
260 unsigned int minor;
261 u8 operation;
262 } mkdev;
263 struct {
264 const struct tomoyo_path_info *filename;
265 unsigned long number;
266 u8 operation;
267 } path_number;
268 struct {
269 const struct tomoyo_path_info *type;
270 const struct tomoyo_path_info *dir;
271 const struct tomoyo_path_info *dev;
272 unsigned long flags;
273 int need_dev;
274 } mount;
275 } param;
276 u8 param_type;
277 bool granted;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900278 u8 retry;
279 u8 profile;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900280 u8 mode; /* One of tomoyo_mode_index . */
Tetsuo Handa57c25902010-06-03 20:38:44 +0900281 u8 type;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900282};
283
284/*
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900285 * tomoyo_path_info is a structure which is used for holding a string data
286 * used by TOMOYO.
287 * This structure has several fields for supporting pattern matching.
288 *
289 * (1) "name" is the '\0' terminated string data.
290 * (2) "hash" is full_name_hash(name, strlen(name)).
291 * This allows tomoyo_pathcmp() to compare by hash before actually compare
292 * using strcmp().
293 * (3) "const_len" is the length of the initial segment of "name" which
294 * consists entirely of non wildcard characters. In other words, the length
295 * which we can compare two strings using strncmp().
296 * (4) "is_dir" is a bool which is true if "name" ends with "/",
297 * false otherwise.
298 * TOMOYO distinguishes directory and non-directory. A directory ends with
299 * "/" and non-directory does not end with "/".
300 * (5) "is_patterned" is a bool which is true if "name" contains wildcard
301 * characters, false otherwise. This allows TOMOYO to use "hash" and
302 * strcmp() for string comparison if "is_patterned" is false.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900303 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900304struct tomoyo_path_info {
305 const char *name;
306 u32 hash; /* = full_name_hash(name, strlen(name)) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900307 u16 const_len; /* = tomoyo_const_part_length(name) */
308 bool is_dir; /* = tomoyo_strendswith(name, "/") */
309 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900310};
311
312/*
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900313 * tomoyo_name_entry is a structure which is used for linking
314 * "struct tomoyo_path_info" into tomoyo_name_list .
Kentaro Takeda95908372009-02-05 17:18:13 +0900315 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900316struct tomoyo_name_entry {
317 struct list_head list;
318 atomic_t users;
319 struct tomoyo_path_info entry;
320};
Kentaro Takeda95908372009-02-05 17:18:13 +0900321
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900322struct tomoyo_name_union {
323 const struct tomoyo_path_info *filename;
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900324 struct tomoyo_group *group;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900325 u8 is_group;
326};
327
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900328struct tomoyo_number_union {
329 unsigned long values[2];
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900330 struct tomoyo_group *group;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900331 u8 min_type;
332 u8 max_type;
333 u8 is_group;
334};
335
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900336/* Structure for "path_group"/"number_group" directive. */
337struct tomoyo_group {
338 struct list_head list;
339 const struct tomoyo_path_info *group_name;
340 struct list_head member_list;
341 atomic_t users;
342};
343
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900344/* Structure for "path_group" directive. */
345struct tomoyo_path_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900346 struct tomoyo_acl_head head;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900347 const struct tomoyo_path_info *member_name;
348};
349
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900350/* Structure for "number_group" directive. */
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900351struct tomoyo_number_group {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900352 struct tomoyo_acl_head head;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900353 struct tomoyo_number_union number;
354};
355
Kentaro Takeda95908372009-02-05 17:18:13 +0900356/*
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900357 * tomoyo_acl_info is a structure which is used for holding
358 *
359 * (1) "list" which is linked to the ->acl_info_list of
360 * "struct tomoyo_domain_info"
Tetsuo Handa237ab452010-06-12 20:46:22 +0900361 * (2) "is_deleted" is a bool which is true if this domain is marked as
362 * "deleted", false otherwise.
363 * (3) "type" which tells type of the entry.
Kentaro Takeda95908372009-02-05 17:18:13 +0900364 *
365 * Packing "struct tomoyo_acl_info" allows
Tetsuo Handa237ab452010-06-12 20:46:22 +0900366 * "struct tomoyo_path_acl" to embed "u16" and "struct tomoyo_path2_acl"
Tetsuo Handa75093152010-06-16 16:23:55 +0900367 * "struct tomoyo_path_number_acl" "struct tomoyo_mkdev_acl" to embed
Tetsuo Handa237ab452010-06-12 20:46:22 +0900368 * "u8" without enlarging their structure size.
Kentaro Takeda95908372009-02-05 17:18:13 +0900369 */
370struct tomoyo_acl_info {
371 struct list_head list;
Tetsuo Handa237ab452010-06-12 20:46:22 +0900372 bool is_deleted;
373 u8 type; /* = one of values in "enum tomoyo_acl_entry_type_index". */
Kentaro Takeda95908372009-02-05 17:18:13 +0900374} __packed;
375
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900376/*
377 * tomoyo_domain_info is a structure which is used for holding permissions
378 * (e.g. "allow_read /lib/libc-2.5.so") given to each domain.
379 * It has following fields.
380 *
381 * (1) "list" which is linked to tomoyo_domain_list .
382 * (2) "acl_info_list" which is linked to "struct tomoyo_acl_info".
383 * (3) "domainname" which holds the name of the domain.
384 * (4) "profile" which remembers profile number assigned to this domain.
385 * (5) "is_deleted" is a bool which is true if this domain is marked as
386 * "deleted", false otherwise.
387 * (6) "quota_warned" is a bool which is used for suppressing warning message
388 * when learning mode learned too much entries.
Tetsuo Handaea13ddb2010-02-03 06:43:06 +0900389 * (7) "ignore_global_allow_read" is a bool which is true if this domain
390 * should ignore "allow_read" directive in exception policy.
391 * (8) "transition_failed" is a bool which is set to true when this domain was
392 * unable to create a new domain at tomoyo_find_next_domain() because the
393 * name of the domain to be created was too long or it could not allocate
394 * memory. If set to true, more than one process continued execve()
395 * without domain transition.
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900396 * (9) "users" is an atomic_t that holds how many "struct cred"->security
397 * are referring this "struct tomoyo_domain_info". If is_deleted == true
398 * and users == 0, this struct will be kfree()d upon next garbage
399 * collection.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900400 *
401 * A domain's lifecycle is an analogy of files on / directory.
402 * Multiple domains with the same domainname cannot be created (as with
403 * creating files with the same filename fails with -EEXIST).
404 * If a process reached a domain, that process can reside in that domain after
405 * that domain is marked as "deleted" (as with a process can access an already
406 * open()ed file after that file was unlink()ed).
407 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900408struct tomoyo_domain_info {
409 struct list_head list;
410 struct list_head acl_info_list;
411 /* Name of this domain. Never NULL. */
412 const struct tomoyo_path_info *domainname;
413 u8 profile; /* Profile number to use. */
Tetsuo Handaa0558fc2009-04-06 20:49:14 +0900414 bool is_deleted; /* Delete flag. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900415 bool quota_warned; /* Quota warnning flag. */
Tetsuo Handaea13ddb2010-02-03 06:43:06 +0900416 bool ignore_global_allow_read; /* Ignore "allow_read" flag. */
417 bool transition_failed; /* Domain transition failed flag. */
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900418 atomic_t users; /* Number of referring credentials. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900419};
420
Kentaro Takeda95908372009-02-05 17:18:13 +0900421/*
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900422 * tomoyo_path_acl is a structure which is used for holding an
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900423 * entry with one pathname operation (e.g. open(), mkdir()).
424 * It has following fields.
425 *
426 * (1) "head" which is a "struct tomoyo_acl_info".
427 * (2) "perm" which is a bitmask of permitted operations.
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900428 * (3) "name" is the pathname.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900429 *
430 * Directives held by this structure are "allow_read/write", "allow_execute",
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900431 * "allow_read", "allow_write", "allow_unlink", "allow_rmdir",
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900432 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_chroot" and
433 * "allow_unmount".
Kentaro Takeda95908372009-02-05 17:18:13 +0900434 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900435struct tomoyo_path_acl {
436 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
Kentaro Takeda95908372009-02-05 17:18:13 +0900437 u16 perm;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900438 struct tomoyo_name_union name;
Kentaro Takeda95908372009-02-05 17:18:13 +0900439};
440
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900441/*
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900442 * tomoyo_path_number_acl is a structure which is used for holding an
443 * entry with one pathname and one number operation.
444 * It has following fields.
445 *
446 * (1) "head" which is a "struct tomoyo_acl_info".
447 * (2) "perm" which is a bitmask of permitted operations.
448 * (3) "name" is the pathname.
449 * (4) "number" is the numeric value.
450 *
451 * Directives held by this structure are "allow_create", "allow_mkdir",
452 * "allow_ioctl", "allow_mkfifo", "allow_mksock", "allow_chmod", "allow_chown"
453 * and "allow_chgrp".
454 *
455 */
456struct tomoyo_path_number_acl {
457 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
458 u8 perm;
459 struct tomoyo_name_union name;
460 struct tomoyo_number_union number;
461};
462
463/*
Tetsuo Handa75093152010-06-16 16:23:55 +0900464 * tomoyo_mkdev_acl is a structure which is used for holding an
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900465 * entry with one pathname and three numbers operation.
466 * It has following fields.
467 *
468 * (1) "head" which is a "struct tomoyo_acl_info".
469 * (2) "perm" which is a bitmask of permitted operations.
470 * (3) "mode" is the create mode.
471 * (4) "major" is the major number of device node.
472 * (5) "minor" is the minor number of device node.
473 *
474 * Directives held by this structure are "allow_mkchar", "allow_mkblock".
475 *
476 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900477struct tomoyo_mkdev_acl {
478 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900479 u8 perm;
480 struct tomoyo_name_union name;
481 struct tomoyo_number_union mode;
482 struct tomoyo_number_union major;
483 struct tomoyo_number_union minor;
484};
485
486/*
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900487 * tomoyo_path2_acl is a structure which is used for holding an
Tetsuo Handa937bf612009-12-02 21:09:48 +0900488 * entry with two pathnames operation (i.e. link(), rename() and pivot_root()).
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900489 * It has following fields.
490 *
491 * (1) "head" which is a "struct tomoyo_acl_info".
492 * (2) "perm" which is a bitmask of permitted operations.
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900493 * (3) "name1" is the source/old pathname.
494 * (4) "name2" is the destination/new pathname.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900495 *
Tetsuo Handa937bf612009-12-02 21:09:48 +0900496 * Directives held by this structure are "allow_rename", "allow_link" and
497 * "allow_pivot_root".
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900498 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900499struct tomoyo_path2_acl {
500 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
Kentaro Takeda95908372009-02-05 17:18:13 +0900501 u8 perm;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900502 struct tomoyo_name_union name1;
503 struct tomoyo_name_union name2;
Kentaro Takeda95908372009-02-05 17:18:13 +0900504};
505
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900506/*
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900507 * tomoyo_mount_acl is a structure which is used for holding an
508 * entry for mount operation.
509 * It has following fields.
510 *
511 * (1) "head" which is a "struct tomoyo_acl_info".
Tetsuo Handa237ab452010-06-12 20:46:22 +0900512 * (2) "dev_name" is the device name.
513 * (3) "dir_name" is the mount point.
514 * (4) "fs_type" is the filesystem type.
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900515 * (5) "flags" is the mount flags.
516 *
Tetsuo Handa237ab452010-06-12 20:46:22 +0900517 * Directive held by this structure is "allow_mount".
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900518 */
519struct tomoyo_mount_acl {
520 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900521 struct tomoyo_name_union dev_name;
522 struct tomoyo_name_union dir_name;
523 struct tomoyo_name_union fs_type;
524 struct tomoyo_number_union flags;
525};
526
527/*
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900528 * tomoyo_io_buffer is a structure which is used for reading and modifying
529 * configuration via /sys/kernel/security/tomoyo/ interface.
530 * It has many fields. ->read_var1 , ->read_var2 , ->write_var1 are used as
531 * cursors.
532 *
533 * Since the content of /sys/kernel/security/tomoyo/domain_policy is a list of
534 * "struct tomoyo_domain_info" entries and each "struct tomoyo_domain_info"
535 * entry has a list of "struct tomoyo_acl_info", we need two cursors when
536 * reading (one is for traversing tomoyo_domain_list and the other is for
537 * traversing "struct tomoyo_acl_info"->acl_info_list ).
538 *
539 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
540 * "select ", TOMOYO seeks the cursor ->read_var1 and ->write_var1 to the
541 * domain with the domainname specified by the rest of that line (NULL is set
542 * if seek failed).
543 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
544 * "delete ", TOMOYO deletes an entry or a domain specified by the rest of that
545 * line (->write_var1 is set to NULL if a domain was deleted).
546 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
547 * neither "select " nor "delete ", an entry or a domain specified by that line
548 * is appended.
549 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900550struct tomoyo_io_buffer {
Tetsuo Handa8fbe71f2010-06-16 16:29:59 +0900551 void (*read) (struct tomoyo_io_buffer *);
Kentaro Takeda95908372009-02-05 17:18:13 +0900552 int (*write) (struct tomoyo_io_buffer *);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900553 int (*poll) (struct file *file, poll_table *wait);
Kentaro Takeda95908372009-02-05 17:18:13 +0900554 /* Exclusive lock for this structure. */
555 struct mutex io_sem;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900556 /* Index returned by tomoyo_read_lock(). */
557 int reader_idx;
Kentaro Takeda95908372009-02-05 17:18:13 +0900558 /* The position currently reading from. */
559 struct list_head *read_var1;
560 /* Extra variables for reading. */
561 struct list_head *read_var2;
562 /* The position currently writing to. */
563 struct tomoyo_domain_info *write_var1;
564 /* The step for reading. */
565 int read_step;
566 /* Buffer for reading. */
567 char *read_buf;
568 /* EOF flag for reading. */
569 bool read_eof;
570 /* Read domain ACL of specified PID? */
571 bool read_single_domain;
572 /* Extra variable for reading. */
573 u8 read_bit;
574 /* Bytes available for reading. */
575 int read_avail;
576 /* Size of read buffer. */
577 int readbuf_size;
578 /* Buffer for writing. */
579 char *write_buf;
580 /* Bytes available for writing. */
581 int write_avail;
582 /* Size of write buffer. */
583 int writebuf_size;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900584 /* Type of this interface. */
585 u8 type;
Kentaro Takeda95908372009-02-05 17:18:13 +0900586};
587
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900588/*
589 * tomoyo_globally_readable_file_entry is a structure which is used for holding
590 * "allow_read" entries.
591 * It has following fields.
592 *
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900593 * (1) "head" is "struct tomoyo_acl_head".
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900594 * (2) "filename" is a pathname which is allowed to open(O_RDONLY).
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900595 */
596struct tomoyo_globally_readable_file_entry {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900597 struct tomoyo_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900598 const struct tomoyo_path_info *filename;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900599};
600
601/*
602 * tomoyo_pattern_entry is a structure which is used for holding
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900603 * "file_pattern" entries.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900604 * It has following fields.
605 *
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900606 * (1) "head" is "struct tomoyo_acl_head".
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900607 * (2) "pattern" is a pathname pattern which is used for converting pathnames
608 * to pathname patterns during learning mode.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900609 */
610struct tomoyo_pattern_entry {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900611 struct tomoyo_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900612 const struct tomoyo_path_info *pattern;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900613};
614
615/*
616 * tomoyo_no_rewrite_entry is a structure which is used for holding
617 * "deny_rewrite" entries.
618 * It has following fields.
619 *
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900620 * (1) "head" is "struct tomoyo_acl_head".
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900621 * (2) "pattern" is a pathname which is by default not permitted to modify
622 * already existing content.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900623 */
624struct tomoyo_no_rewrite_entry {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900625 struct tomoyo_acl_head head;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900626 const struct tomoyo_path_info *pattern;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900627};
628
629/*
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900630 * tomoyo_transition_control is a structure which is used for holding
631 * "initialize_domain"/"no_initialize_domain"/"keep_domain"/"no_keep_domain"
632 * entries.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900633 * It has following fields.
634 *
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900635 * (1) "head" is "struct tomoyo_acl_head".
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900636 * (2) "type" is type of this entry.
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900637 * (3) "is_last_name" is a bool which is true if "domainname" is "the last
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900638 * component of a domainname", false otherwise.
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900639 * (4) "domainname" which is "a domainname" or "the last component of a
640 * domainname".
641 * (5) "program" which is a program's pathname.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900642 */
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900643struct tomoyo_transition_control {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900644 struct tomoyo_acl_head head;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900645 u8 type; /* One of values in "enum tomoyo_transition_type". */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900646 /* True if the domainname is tomoyo_get_last_name(). */
647 bool is_last_name;
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900648 const struct tomoyo_path_info *domainname; /* Maybe NULL */
649 const struct tomoyo_path_info *program; /* Maybe NULL */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900650};
651
652/*
Tetsuo Handa10843072010-06-03 20:38:03 +0900653 * tomoyo_aggregator_entry is a structure which is used for holding
654 * "aggregator" entries.
655 * It has following fields.
656 *
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900657 * (1) "head" is "struct tomoyo_acl_head".
Tetsuo Handa10843072010-06-03 20:38:03 +0900658 * (2) "original_name" which is originally requested name.
659 * (3) "aggregated_name" which is name to rewrite.
Tetsuo Handa10843072010-06-03 20:38:03 +0900660 */
661struct tomoyo_aggregator_entry {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900662 struct tomoyo_acl_head head;
Tetsuo Handa10843072010-06-03 20:38:03 +0900663 const struct tomoyo_path_info *original_name;
664 const struct tomoyo_path_info *aggregated_name;
Tetsuo Handa10843072010-06-03 20:38:03 +0900665};
666
667/*
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900668 * tomoyo_policy_manager_entry is a structure which is used for holding list of
669 * domainnames or programs which are permitted to modify configuration via
670 * /sys/kernel/security/tomoyo/ interface.
671 * It has following fields.
672 *
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900673 * (1) "head" is "struct tomoyo_acl_head".
674 * (2) "is_domain" is a bool which is true if "manager" is a domainname, false
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900675 * otherwise.
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900676 * (3) "manager" is a domainname or a program's pathname.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900677 */
678struct tomoyo_policy_manager_entry {
Tetsuo Handa82e0f002010-06-15 09:22:42 +0900679 struct tomoyo_acl_head head;
680 bool is_domain; /* True if manager is a domainname. */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900681 /* A path to program or a domainname. */
682 const struct tomoyo_path_info *manager;
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900683};
684
Tetsuo Handa57c25902010-06-03 20:38:44 +0900685struct tomoyo_preference {
686 unsigned int learning_max_entry;
687 bool enforcing_verbose;
688 bool learning_verbose;
689 bool permissive_verbose;
690};
691
692struct tomoyo_profile {
693 const struct tomoyo_path_info *comment;
694 struct tomoyo_preference *learning;
695 struct tomoyo_preference *permissive;
696 struct tomoyo_preference *enforcing;
697 struct tomoyo_preference preference;
698 u8 default_config;
699 u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
700};
701
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900702/********** Function prototypes. **********/
703
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900704extern asmlinkage long sys_getpid(void);
705extern asmlinkage long sys_getppid(void);
706
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900707/* Check whether the given string starts with the given keyword. */
708bool tomoyo_str_starts(char **src, const char *find);
709/* Get tomoyo_realpath() of current process. */
710const char *tomoyo_get_exe(void);
711/* Format string. */
712void tomoyo_normalize_line(unsigned char *buffer);
713/* Print warning or error message on console. */
714void tomoyo_warn_log(struct tomoyo_request_info *r, const char *fmt, ...)
715 __attribute__ ((format(printf, 2, 3)));
716/* Check all profiles currently assigned to domains are defined. */
717void tomoyo_check_profile(void);
718/* Open operation for /sys/kernel/security/tomoyo/ interface. */
719int tomoyo_open_control(const u8 type, struct file *file);
720/* Close /sys/kernel/security/tomoyo/ interface. */
721int tomoyo_close_control(struct file *file);
722/* Read operation for /sys/kernel/security/tomoyo/ interface. */
723int tomoyo_read_control(struct file *file, char __user *buffer,
724 const int buffer_len);
725/* Write operation for /sys/kernel/security/tomoyo/ interface. */
726int tomoyo_write_control(struct file *file, const char __user *buffer,
727 const int buffer_len);
728/* Check whether the domain has too many ACL entries to hold. */
729bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
730/* Print out of memory warning message. */
731void tomoyo_warn_oom(const char *function);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900732/* Check whether the given name matches the given name_union. */
733bool tomoyo_compare_name_union(const struct tomoyo_path_info *name,
734 const struct tomoyo_name_union *ptr);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900735/* Check whether the given number matches the given number_union. */
736bool tomoyo_compare_number_union(const unsigned long value,
737 const struct tomoyo_number_union *ptr);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900738int tomoyo_get_mode(const u8 profile, const u8 index);
Kentaro Takeda95908372009-02-05 17:18:13 +0900739/* Transactional sprintf() for policy dump. */
740bool tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...)
741 __attribute__ ((format(printf, 2, 3)));
742/* Check whether the domainname is correct. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900743bool tomoyo_correct_domain(const unsigned char *domainname);
Kentaro Takeda95908372009-02-05 17:18:13 +0900744/* Check whether the token is correct. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900745bool tomoyo_correct_path(const char *filename);
746bool tomoyo_correct_word(const char *string);
Kentaro Takeda95908372009-02-05 17:18:13 +0900747/* Check whether the token can be a domainname. */
Tetsuo Handa75093152010-06-16 16:23:55 +0900748bool tomoyo_domain_def(const unsigned char *buffer);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900749bool tomoyo_parse_name_union(const char *filename,
750 struct tomoyo_name_union *ptr);
751/* Check whether the given filename matches the given path_group. */
752bool tomoyo_path_matches_group(const struct tomoyo_path_info *pathname,
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900753 const struct tomoyo_group *group);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900754/* Check whether the given value matches the given number_group. */
755bool tomoyo_number_matches_group(const unsigned long min,
756 const unsigned long max,
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900757 const struct tomoyo_group *group);
Kentaro Takeda95908372009-02-05 17:18:13 +0900758/* Check whether the given filename matches the given pattern. */
759bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
760 const struct tomoyo_path_info *pattern);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900761
762bool tomoyo_print_number_union(struct tomoyo_io_buffer *head,
763 const struct tomoyo_number_union *ptr);
764bool tomoyo_parse_number_union(char *data, struct tomoyo_number_union *num);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900765/* Tokenize a line. */
766bool tomoyo_tokenize(char *buffer, char *w[], size_t size);
Kentaro Takeda95908372009-02-05 17:18:13 +0900767/* Write domain policy violation warning message to console? */
768bool tomoyo_verbose_mode(const struct tomoyo_domain_info *domain);
Kentaro Takeda95908372009-02-05 17:18:13 +0900769/* Get the last component of the given domainname. */
770const char *tomoyo_get_last_name(const struct tomoyo_domain_info *domain);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900771/* Fill "struct tomoyo_request_info". */
772int tomoyo_init_request_info(struct tomoyo_request_info *r,
Tetsuo Handa57c25902010-06-03 20:38:44 +0900773 struct tomoyo_domain_info *domain,
774 const u8 index);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900775/* Check permission for mount operation. */
776int tomoyo_mount_permission(char *dev_name, struct path *path, char *type,
777 unsigned long flags, void *data_page);
Tetsuo Handa10843072010-06-03 20:38:03 +0900778/* Create "aggregator" entry in exception policy. */
779int tomoyo_write_aggregator_policy(char *data, const bool is_delete);
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900780int tomoyo_write_transition_control(char *data, const bool is_delete,
781 const u8 type);
Kentaro Takeda95908372009-02-05 17:18:13 +0900782/*
783 * Create "allow_read/write", "allow_execute", "allow_read", "allow_write",
784 * "allow_create", "allow_unlink", "allow_mkdir", "allow_rmdir",
785 * "allow_mkfifo", "allow_mksock", "allow_mkblock", "allow_mkchar",
786 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_rename" and
787 * "allow_link" entry in domain policy.
788 */
789int tomoyo_write_file_policy(char *data, struct tomoyo_domain_info *domain,
790 const bool is_delete);
791/* Create "allow_read" entry in exception policy. */
792int tomoyo_write_globally_readable_policy(char *data, const bool is_delete);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900793/* Create "allow_mount" entry in domain policy. */
794int tomoyo_write_mount_policy(char *data, struct tomoyo_domain_info *domain,
795 const bool is_delete);
Kentaro Takeda95908372009-02-05 17:18:13 +0900796/* Create "deny_rewrite" entry in exception policy. */
797int tomoyo_write_no_rewrite_policy(char *data, const bool is_delete);
798/* Create "file_pattern" entry in exception policy. */
799int tomoyo_write_pattern_policy(char *data, const bool is_delete);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900800/* Create "path_group"/"number_group" entry in exception policy. */
801int tomoyo_write_group(char *data, const bool is_delete, const u8 type);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900802int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
803 __attribute__ ((format(printf, 2, 3)));
Kentaro Takeda95908372009-02-05 17:18:13 +0900804/* Find a domain by the given name. */
805struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
806/* Find or create a domain by the given name. */
807struct tomoyo_domain_info *tomoyo_find_or_assign_new_domain(const char *
808 domainname,
809 const u8 profile);
Tetsuo Handa57c25902010-06-03 20:38:44 +0900810struct tomoyo_profile *tomoyo_profile(const u8 profile);
Tetsuo Handa7c2ea222010-06-17 16:55:58 +0900811/*
812 * Allocate memory for "struct tomoyo_path_group"/"struct tomoyo_number_group".
813 */
814struct tomoyo_group *tomoyo_get_group(const char *group_name, const u8 type);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900815
Kentaro Takeda95908372009-02-05 17:18:13 +0900816/* Check mode for specified functionality. */
817unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
818 const u8 index);
Kentaro Takeda95908372009-02-05 17:18:13 +0900819/* Fill in "struct tomoyo_path_info" members. */
820void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
821/* Run policy loader when /sbin/init starts. */
822void tomoyo_load_policy(const char *filename);
Kentaro Takeda95908372009-02-05 17:18:13 +0900823
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900824void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
825
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900826/* Convert binary string to ascii string. */
Tetsuo Handac8c57e82010-06-03 20:36:43 +0900827char *tomoyo_encode(const char *str);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900828
829/*
Tetsuo Handa0617c7f2010-06-21 09:58:53 +0900830 * Returns realpath(3) of the given pathname except that
831 * ignores chroot'ed root and does not follow the final symlink.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900832 */
833char *tomoyo_realpath_nofollow(const char *pathname);
Tetsuo Handa0617c7f2010-06-21 09:58:53 +0900834/*
835 * Returns realpath(3) of the given pathname except that
836 * ignores chroot'ed root and the pathname is already solved.
837 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900838char *tomoyo_realpath_from_path(struct path *path);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900839/* Get patterned pathname. */
840const char *tomoyo_file_pattern(const struct tomoyo_path_info *filename);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900841
842/* Check memory quota. */
843bool tomoyo_memory_ok(void *ptr);
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900844void *tomoyo_commit_ok(void *data, const unsigned int size);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900845
846/*
847 * Keep the given name on the RAM.
848 * The RAM is shared, so NEVER try to modify or kfree() the returned name.
849 */
850const struct tomoyo_path_info *tomoyo_get_name(const char *name);
851
852/* Check for memory usage. */
Tetsuo Handa8fbe71f2010-06-16 16:29:59 +0900853void tomoyo_read_memory_counter(struct tomoyo_io_buffer *head);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900854
855/* Set memory quota. */
856int tomoyo_write_memory_quota(struct tomoyo_io_buffer *head);
857
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900858/* Initialize mm related code. */
859void __init tomoyo_mm_init(void);
Tetsuo Handa05336de2010-06-16 16:20:24 +0900860int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900861 const struct tomoyo_path_info *filename);
862int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
863 struct path *path, const int flag);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900864int tomoyo_path_number_perm(const u8 operation, struct path *path,
865 unsigned long number);
Tetsuo Handa75093152010-06-16 16:23:55 +0900866int tomoyo_mkdev_perm(const u8 operation, struct path *path,
867 const unsigned int mode, unsigned int dev);
Tetsuo Handa97d69312010-02-16 09:46:15 +0900868int tomoyo_path_perm(const u8 operation, struct path *path);
869int tomoyo_path2_perm(const u8 operation, struct path *path1,
870 struct path *path2);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900871int tomoyo_find_next_domain(struct linux_binprm *bprm);
872
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900873void tomoyo_print_ulong(char *buffer, const int buffer_len,
874 const unsigned long value, const u8 type);
875
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900876/* Drop refcount on tomoyo_name_union. */
877void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
878
Tetsuo Handa847b1732010-02-11 09:43:54 +0900879/* Run garbage collector. */
880void tomoyo_run_gc(void);
881
882void tomoyo_memory_free(void *ptr);
883
Tetsuo Handa237ab452010-06-12 20:46:22 +0900884int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
885 bool is_delete, struct tomoyo_domain_info *domain,
886 bool (*check_duplicate) (const struct tomoyo_acl_info
887 *,
888 const struct tomoyo_acl_info
889 *),
890 bool (*merge_duplicate) (struct tomoyo_acl_info *,
891 struct tomoyo_acl_info *,
892 const bool));
Tetsuo Handa36f5e1f2010-06-15 09:23:26 +0900893int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
894 bool is_delete, struct list_head *list,
895 bool (*check_duplicate) (const struct tomoyo_acl_head
896 *,
897 const struct tomoyo_acl_head
898 *));
Tetsuo Handa99a85252010-06-16 16:22:51 +0900899void tomoyo_check_acl(struct tomoyo_request_info *r,
900 bool (*check_entry) (const struct tomoyo_request_info *,
901 const struct tomoyo_acl_info *));
Tetsuo Handa5448ec42010-06-21 11:14:39 +0900902const char *tomoyo_last_word(const char *name);
Tetsuo Handa237ab452010-06-12 20:46:22 +0900903
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900904/********** External variable definitions. **********/
905
906/* Lock for GC. */
907extern struct srcu_struct tomoyo_ss;
908
909/* The list for "struct tomoyo_domain_info". */
910extern struct list_head tomoyo_domain_list;
911
Tetsuo Handaa230f9e2010-06-17 16:53:24 +0900912extern struct list_head tomoyo_policy_list[TOMOYO_MAX_POLICY];
913extern struct list_head tomoyo_group_list[TOMOYO_MAX_GROUP];
Tetsuo Handa847b1732010-02-11 09:43:54 +0900914extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
Tetsuo Handa847b1732010-02-11 09:43:54 +0900915
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900916/* Lock for protecting policy. */
917extern struct mutex tomoyo_policy_lock;
918
919/* Has /sbin/init started? */
920extern bool tomoyo_policy_loaded;
921
922/* The kernel's domain. */
923extern struct tomoyo_domain_info tomoyo_kernel_domain;
924
Tetsuo Handa71c28232010-06-16 16:26:38 +0900925extern const char *tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
926extern const char *tomoyo_mkdev_keyword[TOMOYO_MAX_MKDEV_OPERATION];
927extern const char *tomoyo_path2_keyword[TOMOYO_MAX_PATH2_OPERATION];
928extern const char *tomoyo_path_number_keyword[TOMOYO_MAX_PATH_NUMBER_OPERATION];
929
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900930extern unsigned int tomoyo_quota_for_query;
931extern unsigned int tomoyo_query_memory_size;
932
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900933/********** Inlined functions. **********/
934
935static inline int tomoyo_read_lock(void)
936{
937 return srcu_read_lock(&tomoyo_ss);
938}
939
940static inline void tomoyo_read_unlock(int idx)
941{
942 srcu_read_unlock(&tomoyo_ss, idx);
943}
944
Kentaro Takeda95908372009-02-05 17:18:13 +0900945/* strcmp() for "struct tomoyo_path_info" structure. */
946static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
947 const struct tomoyo_path_info *b)
948{
949 return a->hash != b->hash || strcmp(a->name, b->name);
950}
951
Kentaro Takeda95908372009-02-05 17:18:13 +0900952/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900953 * tomoyo_valid - Check whether the character is a valid char.
Kentaro Takeda95908372009-02-05 17:18:13 +0900954 *
955 * @c: The character to check.
956 *
957 * Returns true if @c is a valid character, false otherwise.
958 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900959static inline bool tomoyo_valid(const unsigned char c)
Kentaro Takeda95908372009-02-05 17:18:13 +0900960{
961 return c > ' ' && c < 127;
962}
963
964/**
Tetsuo Handa75093152010-06-16 16:23:55 +0900965 * tomoyo_invalid - Check whether the character is an invalid char.
Kentaro Takeda95908372009-02-05 17:18:13 +0900966 *
967 * @c: The character to check.
968 *
969 * Returns true if @c is an invalid character, false otherwise.
970 */
Tetsuo Handa75093152010-06-16 16:23:55 +0900971static inline bool tomoyo_invalid(const unsigned char c)
Kentaro Takeda95908372009-02-05 17:18:13 +0900972{
973 return c && (c <= ' ' || c >= 127);
974}
975
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900976static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
977{
978 if (name) {
979 struct tomoyo_name_entry *ptr =
980 container_of(name, struct tomoyo_name_entry, entry);
981 atomic_dec(&ptr->users);
982 }
983}
Kentaro Takeda95908372009-02-05 17:18:13 +0900984
Tetsuo Handaa98aa4d2010-06-17 16:52:29 +0900985static inline void tomoyo_put_group(struct tomoyo_group *group)
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900986{
987 if (group)
988 atomic_dec(&group->users);
989}
990
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900991static inline struct tomoyo_domain_info *tomoyo_domain(void)
992{
993 return current_cred()->security;
994}
Kentaro Takeda95908372009-02-05 17:18:13 +0900995
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900996static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
997 *task)
998{
999 return task_cred_xxx(task, security);
1000}
Kentaro Takeda95908372009-02-05 17:18:13 +09001001
Tetsuo Handa75093152010-06-16 16:23:55 +09001002static inline bool tomoyo_same_acl_head(const struct tomoyo_acl_info *p1,
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001003 const struct tomoyo_acl_info *p2)
1004{
1005 return p1->type == p2->type;
1006}
1007
Tetsuo Handa75093152010-06-16 16:23:55 +09001008static inline bool tomoyo_same_name_union
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001009(const struct tomoyo_name_union *p1, const struct tomoyo_name_union *p2)
1010{
1011 return p1->filename == p2->filename && p1->group == p2->group &&
1012 p1->is_group == p2->is_group;
1013}
1014
Tetsuo Handa75093152010-06-16 16:23:55 +09001015static inline bool tomoyo_same_number_union
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001016(const struct tomoyo_number_union *p1, const struct tomoyo_number_union *p2)
1017{
1018 return p1->values[0] == p2->values[0] && p1->values[1] == p2->values[1]
1019 && p1->group == p2->group && p1->min_type == p2->min_type &&
1020 p1->max_type == p2->max_type && p1->is_group == p2->is_group;
1021}
1022
Kentaro Takeda95908372009-02-05 17:18:13 +09001023/**
1024 * list_for_each_cookie - iterate over a list with cookie.
1025 * @pos: the &struct list_head to use as a loop cursor.
1026 * @cookie: the &struct list_head to use as a cookie.
1027 * @head: the head for your list.
1028 *
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001029 * Same with list_for_each_rcu() except that this primitive uses @cookie
Kentaro Takeda95908372009-02-05 17:18:13 +09001030 * so that we can continue iteration.
1031 * @cookie must be NULL when iteration starts, and @cookie will become
1032 * NULL when iteration finishes.
1033 */
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001034#define list_for_each_cookie(pos, cookie, head) \
1035 for (({ if (!cookie) \
1036 cookie = head; }), \
1037 pos = rcu_dereference((cookie)->next); \
1038 prefetch(pos->next), pos != (head) || ((cookie) = NULL); \
1039 (cookie) = pos, pos = rcu_dereference(pos->next))
1040
Kentaro Takeda95908372009-02-05 17:18:13 +09001041#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */