blob: 6270a530c4d845d0a7a9dfdffa1a28f38f0d35ef [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
36/*
37 * This is the max length of a token.
38 *
39 * A token consists of only ASCII printable characters.
40 * Non printable characters in a token is represented in \ooo style
41 * octal string. Thus, \ itself is represented as \\.
42 */
43#define TOMOYO_MAX_PATHNAME_LEN 4000
44
45/* Profile number is an integer between 0 and 255. */
46#define TOMOYO_MAX_PROFILES 256
47
Tetsuo Handacb0abe62010-05-17 10:08:05 +090048enum tomoyo_mode_index {
49 TOMOYO_CONFIG_DISABLED,
50 TOMOYO_CONFIG_LEARNING,
51 TOMOYO_CONFIG_PERMISSIVE,
52 TOMOYO_CONFIG_ENFORCING
53};
54
Tetsuo Handa76bb0892010-02-11 09:42:40 +090055/* Keywords for ACLs. */
56#define TOMOYO_KEYWORD_ALIAS "alias "
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090057#define TOMOYO_KEYWORD_ALLOW_MOUNT "allow_mount "
Tetsuo Handa76bb0892010-02-11 09:42:40 +090058#define TOMOYO_KEYWORD_ALLOW_READ "allow_read "
59#define TOMOYO_KEYWORD_DELETE "delete "
60#define TOMOYO_KEYWORD_DENY_REWRITE "deny_rewrite "
61#define TOMOYO_KEYWORD_FILE_PATTERN "file_pattern "
62#define TOMOYO_KEYWORD_INITIALIZE_DOMAIN "initialize_domain "
63#define TOMOYO_KEYWORD_KEEP_DOMAIN "keep_domain "
64#define TOMOYO_KEYWORD_NO_INITIALIZE_DOMAIN "no_initialize_domain "
65#define TOMOYO_KEYWORD_NO_KEEP_DOMAIN "no_keep_domain "
Tetsuo Handa7762fbf2010-05-10 17:30:26 +090066#define TOMOYO_KEYWORD_PATH_GROUP "path_group "
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +090067#define TOMOYO_KEYWORD_NUMBER_GROUP "number_group "
Tetsuo Handa76bb0892010-02-11 09:42:40 +090068#define TOMOYO_KEYWORD_SELECT "select "
69#define TOMOYO_KEYWORD_USE_PROFILE "use_profile "
70#define TOMOYO_KEYWORD_IGNORE_GLOBAL_ALLOW_READ "ignore_global_allow_read"
Tetsuo Handa9b244372010-06-03 20:35:53 +090071#define TOMOYO_KEYWORD_QUOTA_EXCEEDED "quota_exceeded"
72#define TOMOYO_KEYWORD_TRANSITION_FAILED "transition_failed"
Tetsuo Handa76bb0892010-02-11 09:42:40 +090073/* A domain definition starts with <kernel>. */
74#define TOMOYO_ROOT_NAME "<kernel>"
75#define TOMOYO_ROOT_NAME_LEN (sizeof(TOMOYO_ROOT_NAME) - 1)
76
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +090077/* Value type definition. */
78#define TOMOYO_VALUE_TYPE_INVALID 0
79#define TOMOYO_VALUE_TYPE_DECIMAL 1
80#define TOMOYO_VALUE_TYPE_OCTAL 2
81#define TOMOYO_VALUE_TYPE_HEXADECIMAL 3
82
Tetsuo Handa76bb0892010-02-11 09:42:40 +090083/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +090084enum tomoyo_mac_index {
85 TOMOYO_MAC_FOR_FILE, /* domain_policy.conf */
86 TOMOYO_MAX_ACCEPT_ENTRY,
87 TOMOYO_VERBOSE,
88 TOMOYO_MAX_CONTROL_INDEX
89};
Tetsuo Handa76bb0892010-02-11 09:42:40 +090090
91/* Index numbers for Access Controls. */
Tetsuo Handa084da352010-02-15 15:10:39 +090092enum tomoyo_acl_entry_type_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +090093 TOMOYO_TYPE_PATH_ACL,
94 TOMOYO_TYPE_PATH2_ACL,
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +090095 TOMOYO_TYPE_PATH_NUMBER_ACL,
96 TOMOYO_TYPE_PATH_NUMBER3_ACL,
Tetsuo Handa2106ccd2010-05-17 10:10:31 +090097 TOMOYO_TYPE_MOUNT_ACL,
Tetsuo Handa084da352010-02-15 15:10:39 +090098};
Tetsuo Handa76bb0892010-02-11 09:42:40 +090099
100/* Index numbers for File Controls. */
101
102/*
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900103 * TOMOYO_TYPE_READ_WRITE is special. TOMOYO_TYPE_READ_WRITE is automatically
104 * set if both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are set.
105 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically set if
106 * TOMOYO_TYPE_READ_WRITE is set.
107 * TOMOYO_TYPE_READ_WRITE is automatically cleared if either TOMOYO_TYPE_READ
108 * or TOMOYO_TYPE_WRITE is cleared.
109 * Both TOMOYO_TYPE_READ and TOMOYO_TYPE_WRITE are automatically cleared if
110 * TOMOYO_TYPE_READ_WRITE is cleared.
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900111 */
112
Tetsuo Handa084da352010-02-15 15:10:39 +0900113enum tomoyo_path_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900114 TOMOYO_TYPE_READ_WRITE,
115 TOMOYO_TYPE_EXECUTE,
116 TOMOYO_TYPE_READ,
117 TOMOYO_TYPE_WRITE,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900118 TOMOYO_TYPE_UNLINK,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900119 TOMOYO_TYPE_RMDIR,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900120 TOMOYO_TYPE_TRUNCATE,
121 TOMOYO_TYPE_SYMLINK,
122 TOMOYO_TYPE_REWRITE,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900123 TOMOYO_TYPE_CHROOT,
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900124 TOMOYO_TYPE_UMOUNT,
125 TOMOYO_MAX_PATH_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900126};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900127
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900128enum tomoyo_path_number3_acl_index {
129 TOMOYO_TYPE_MKBLOCK,
130 TOMOYO_TYPE_MKCHAR,
131 TOMOYO_MAX_PATH_NUMBER3_OPERATION
132};
133
Tetsuo Handa084da352010-02-15 15:10:39 +0900134enum tomoyo_path2_acl_index {
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900135 TOMOYO_TYPE_LINK,
136 TOMOYO_TYPE_RENAME,
137 TOMOYO_TYPE_PIVOT_ROOT,
138 TOMOYO_MAX_PATH2_OPERATION
Tetsuo Handa084da352010-02-15 15:10:39 +0900139};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900140
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900141enum tomoyo_path_number_acl_index {
142 TOMOYO_TYPE_CREATE,
143 TOMOYO_TYPE_MKDIR,
144 TOMOYO_TYPE_MKFIFO,
145 TOMOYO_TYPE_MKSOCK,
146 TOMOYO_TYPE_IOCTL,
147 TOMOYO_TYPE_CHMOD,
148 TOMOYO_TYPE_CHOWN,
149 TOMOYO_TYPE_CHGRP,
150 TOMOYO_MAX_PATH_NUMBER_OPERATION
151};
152
Tetsuo Handa084da352010-02-15 15:10:39 +0900153enum tomoyo_securityfs_interface_index {
154 TOMOYO_DOMAINPOLICY,
155 TOMOYO_EXCEPTIONPOLICY,
156 TOMOYO_DOMAIN_STATUS,
157 TOMOYO_PROCESS_STATUS,
158 TOMOYO_MEMINFO,
159 TOMOYO_SELFDOMAIN,
160 TOMOYO_VERSION,
161 TOMOYO_PROFILE,
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900162 TOMOYO_QUERY,
Tetsuo Handa084da352010-02-15 15:10:39 +0900163 TOMOYO_MANAGER
164};
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900165
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900166#define TOMOYO_RETRY_REQUEST 1 /* Retry this request. */
167
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900168/********** Structure definitions. **********/
Kentaro Takeda95908372009-02-05 17:18:13 +0900169
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900170/*
171 * tomoyo_page_buffer is a structure which is used for holding a pathname
172 * obtained from "struct dentry" and "struct vfsmount" pair.
173 * As of now, it is 4096 bytes. If users complain that 4096 bytes is too small
174 * (because TOMOYO escapes non ASCII printable characters using \ooo format),
175 * we will make the buffer larger.
176 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900177struct tomoyo_page_buffer {
178 char buffer[4096];
179};
180
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900181/*
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900182 * tomoyo_request_info is a structure which is used for holding
183 *
184 * (1) Domain information of current process.
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900185 * (2) How many retries are made for this request.
186 * (3) Profile number used for this request.
187 * (4) Access control mode of the profile.
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900188 */
189struct tomoyo_request_info {
190 struct tomoyo_domain_info *domain;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900191 u8 retry;
192 u8 profile;
Tetsuo Handacb0abe62010-05-17 10:08:05 +0900193 u8 mode; /* One of tomoyo_mode_index . */
194};
195
196/*
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900197 * tomoyo_path_info is a structure which is used for holding a string data
198 * used by TOMOYO.
199 * This structure has several fields for supporting pattern matching.
200 *
201 * (1) "name" is the '\0' terminated string data.
202 * (2) "hash" is full_name_hash(name, strlen(name)).
203 * This allows tomoyo_pathcmp() to compare by hash before actually compare
204 * using strcmp().
205 * (3) "const_len" is the length of the initial segment of "name" which
206 * consists entirely of non wildcard characters. In other words, the length
207 * which we can compare two strings using strncmp().
208 * (4) "is_dir" is a bool which is true if "name" ends with "/",
209 * false otherwise.
210 * TOMOYO distinguishes directory and non-directory. A directory ends with
211 * "/" and non-directory does not end with "/".
212 * (5) "is_patterned" is a bool which is true if "name" contains wildcard
213 * characters, false otherwise. This allows TOMOYO to use "hash" and
214 * strcmp() for string comparison if "is_patterned" is false.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900215 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900216struct tomoyo_path_info {
217 const char *name;
218 u32 hash; /* = full_name_hash(name, strlen(name)) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900219 u16 const_len; /* = tomoyo_const_part_length(name) */
220 bool is_dir; /* = tomoyo_strendswith(name, "/") */
221 bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
Kentaro Takeda95908372009-02-05 17:18:13 +0900222};
223
224/*
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900225 * tomoyo_name_entry is a structure which is used for linking
226 * "struct tomoyo_path_info" into tomoyo_name_list .
Kentaro Takeda95908372009-02-05 17:18:13 +0900227 */
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900228struct tomoyo_name_entry {
229 struct list_head list;
230 atomic_t users;
231 struct tomoyo_path_info entry;
232};
Kentaro Takeda95908372009-02-05 17:18:13 +0900233
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900234/*
235 * tomoyo_path_info_with_data is a structure which is used for holding a
236 * pathname obtained from "struct dentry" and "struct vfsmount" pair.
237 *
238 * "struct tomoyo_path_info_with_data" consists of "struct tomoyo_path_info"
239 * and buffer for the pathname, while "struct tomoyo_page_buffer" consists of
240 * buffer for the pathname only.
241 *
242 * "struct tomoyo_path_info_with_data" is intended to allow TOMOYO to release
243 * both "struct tomoyo_path_info" and buffer for the pathname by single kfree()
244 * so that we don't need to return two pointers to the caller. If the caller
245 * puts "struct tomoyo_path_info" on stack memory, we will be able to remove
246 * "struct tomoyo_path_info_with_data".
247 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900248struct tomoyo_path_info_with_data {
Tetsuo Handa8e2d39a2010-01-26 20:45:27 +0900249 /* Keep "head" first, for this pointer is passed to kfree(). */
Kentaro Takeda95908372009-02-05 17:18:13 +0900250 struct tomoyo_path_info head;
Tetsuo Handaa106cbf2009-03-27 13:12:16 +0900251 char barrier1[16]; /* Safeguard for overrun. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900252 char body[TOMOYO_MAX_PATHNAME_LEN];
253 char barrier2[16]; /* Safeguard for overrun. */
254};
255
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900256struct tomoyo_name_union {
257 const struct tomoyo_path_info *filename;
258 struct tomoyo_path_group *group;
259 u8 is_group;
260};
261
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900262struct tomoyo_number_union {
263 unsigned long values[2];
264 struct tomoyo_number_group *group;
265 u8 min_type;
266 u8 max_type;
267 u8 is_group;
268};
269
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900270/* Structure for "path_group" directive. */
271struct tomoyo_path_group {
272 struct list_head list;
273 const struct tomoyo_path_info *group_name;
274 struct list_head member_list;
275 atomic_t users;
276};
277
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900278/* Structure for "number_group" directive. */
279struct tomoyo_number_group {
280 struct list_head list;
281 const struct tomoyo_path_info *group_name;
282 struct list_head member_list;
283 atomic_t users;
284};
285
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900286/* Structure for "path_group" directive. */
287struct tomoyo_path_group_member {
288 struct list_head list;
289 bool is_deleted;
290 const struct tomoyo_path_info *member_name;
291};
292
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900293/* Structure for "number_group" directive. */
294struct tomoyo_number_group_member {
295 struct list_head list;
296 bool is_deleted;
297 struct tomoyo_number_union number;
298};
299
Kentaro Takeda95908372009-02-05 17:18:13 +0900300/*
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900301 * tomoyo_acl_info is a structure which is used for holding
302 *
303 * (1) "list" which is linked to the ->acl_info_list of
304 * "struct tomoyo_domain_info"
Tetsuo Handaea13ddb2010-02-03 06:43:06 +0900305 * (2) "type" which tells type of the entry (either
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900306 * "struct tomoyo_path_acl" or "struct tomoyo_path2_acl").
Kentaro Takeda95908372009-02-05 17:18:13 +0900307 *
308 * Packing "struct tomoyo_acl_info" allows
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900309 * "struct tomoyo_path_acl" to embed "u8" + "u16" and
310 * "struct tomoyo_path2_acl" to embed "u8"
Kentaro Takeda95908372009-02-05 17:18:13 +0900311 * without enlarging their structure size.
312 */
313struct tomoyo_acl_info {
314 struct list_head list;
Kentaro Takeda95908372009-02-05 17:18:13 +0900315 u8 type;
316} __packed;
317
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900318/*
319 * tomoyo_domain_info is a structure which is used for holding permissions
320 * (e.g. "allow_read /lib/libc-2.5.so") given to each domain.
321 * It has following fields.
322 *
323 * (1) "list" which is linked to tomoyo_domain_list .
324 * (2) "acl_info_list" which is linked to "struct tomoyo_acl_info".
325 * (3) "domainname" which holds the name of the domain.
326 * (4) "profile" which remembers profile number assigned to this domain.
327 * (5) "is_deleted" is a bool which is true if this domain is marked as
328 * "deleted", false otherwise.
329 * (6) "quota_warned" is a bool which is used for suppressing warning message
330 * when learning mode learned too much entries.
Tetsuo Handaea13ddb2010-02-03 06:43:06 +0900331 * (7) "ignore_global_allow_read" is a bool which is true if this domain
332 * should ignore "allow_read" directive in exception policy.
333 * (8) "transition_failed" is a bool which is set to true when this domain was
334 * unable to create a new domain at tomoyo_find_next_domain() because the
335 * name of the domain to be created was too long or it could not allocate
336 * memory. If set to true, more than one process continued execve()
337 * without domain transition.
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900338 * (9) "users" is an atomic_t that holds how many "struct cred"->security
339 * are referring this "struct tomoyo_domain_info". If is_deleted == true
340 * and users == 0, this struct will be kfree()d upon next garbage
341 * collection.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900342 *
343 * A domain's lifecycle is an analogy of files on / directory.
344 * Multiple domains with the same domainname cannot be created (as with
345 * creating files with the same filename fails with -EEXIST).
346 * If a process reached a domain, that process can reside in that domain after
347 * that domain is marked as "deleted" (as with a process can access an already
348 * open()ed file after that file was unlink()ed).
349 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900350struct tomoyo_domain_info {
351 struct list_head list;
352 struct list_head acl_info_list;
353 /* Name of this domain. Never NULL. */
354 const struct tomoyo_path_info *domainname;
355 u8 profile; /* Profile number to use. */
Tetsuo Handaa0558fc2009-04-06 20:49:14 +0900356 bool is_deleted; /* Delete flag. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900357 bool quota_warned; /* Quota warnning flag. */
Tetsuo Handaea13ddb2010-02-03 06:43:06 +0900358 bool ignore_global_allow_read; /* Ignore "allow_read" flag. */
359 bool transition_failed; /* Domain transition failed flag. */
Tetsuo Handaec8e6a42010-02-11 09:43:20 +0900360 atomic_t users; /* Number of referring credentials. */
Kentaro Takeda95908372009-02-05 17:18:13 +0900361};
362
Kentaro Takeda95908372009-02-05 17:18:13 +0900363/*
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900364 * tomoyo_path_acl is a structure which is used for holding an
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900365 * entry with one pathname operation (e.g. open(), mkdir()).
366 * It has following fields.
367 *
368 * (1) "head" which is a "struct tomoyo_acl_info".
369 * (2) "perm" which is a bitmask of permitted operations.
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900370 * (3) "name" is the pathname.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900371 *
372 * Directives held by this structure are "allow_read/write", "allow_execute",
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900373 * "allow_read", "allow_write", "allow_unlink", "allow_rmdir",
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900374 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_chroot" and
375 * "allow_unmount".
Kentaro Takeda95908372009-02-05 17:18:13 +0900376 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900377struct tomoyo_path_acl {
378 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
Kentaro Takeda95908372009-02-05 17:18:13 +0900379 u16 perm;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900380 struct tomoyo_name_union name;
Kentaro Takeda95908372009-02-05 17:18:13 +0900381};
382
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900383/*
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900384 * tomoyo_path_number_acl is a structure which is used for holding an
385 * entry with one pathname and one number operation.
386 * It has following fields.
387 *
388 * (1) "head" which is a "struct tomoyo_acl_info".
389 * (2) "perm" which is a bitmask of permitted operations.
390 * (3) "name" is the pathname.
391 * (4) "number" is the numeric value.
392 *
393 * Directives held by this structure are "allow_create", "allow_mkdir",
394 * "allow_ioctl", "allow_mkfifo", "allow_mksock", "allow_chmod", "allow_chown"
395 * and "allow_chgrp".
396 *
397 */
398struct tomoyo_path_number_acl {
399 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
400 u8 perm;
401 struct tomoyo_name_union name;
402 struct tomoyo_number_union number;
403};
404
405/*
406 * tomoyo_path_number3_acl is a structure which is used for holding an
407 * entry with one pathname and three numbers operation.
408 * It has following fields.
409 *
410 * (1) "head" which is a "struct tomoyo_acl_info".
411 * (2) "perm" which is a bitmask of permitted operations.
412 * (3) "mode" is the create mode.
413 * (4) "major" is the major number of device node.
414 * (5) "minor" is the minor number of device node.
415 *
416 * Directives held by this structure are "allow_mkchar", "allow_mkblock".
417 *
418 */
419struct tomoyo_path_number3_acl {
420 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER3_ACL */
421 u8 perm;
422 struct tomoyo_name_union name;
423 struct tomoyo_number_union mode;
424 struct tomoyo_number_union major;
425 struct tomoyo_number_union minor;
426};
427
428/*
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900429 * tomoyo_path2_acl is a structure which is used for holding an
Tetsuo Handa937bf612009-12-02 21:09:48 +0900430 * entry with two pathnames operation (i.e. link(), rename() and pivot_root()).
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900431 * It has following fields.
432 *
433 * (1) "head" which is a "struct tomoyo_acl_info".
434 * (2) "perm" which is a bitmask of permitted operations.
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900435 * (3) "name1" is the source/old pathname.
436 * (4) "name2" is the destination/new pathname.
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900437 *
Tetsuo Handa937bf612009-12-02 21:09:48 +0900438 * Directives held by this structure are "allow_rename", "allow_link" and
439 * "allow_pivot_root".
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900440 */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900441struct tomoyo_path2_acl {
442 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
Kentaro Takeda95908372009-02-05 17:18:13 +0900443 u8 perm;
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900444 struct tomoyo_name_union name1;
445 struct tomoyo_name_union name2;
Kentaro Takeda95908372009-02-05 17:18:13 +0900446};
447
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900448/*
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900449 * tomoyo_mount_acl is a structure which is used for holding an
450 * entry for mount operation.
451 * It has following fields.
452 *
453 * (1) "head" which is a "struct tomoyo_acl_info".
454 * (2) "is_deleted" is boolean.
455 * (3) "dev_name" is the device name.
456 * (4) "dir_name" is the mount point.
457 * (5) "flags" is the mount flags.
458 *
459 * Directives held by this structure are "allow_rename", "allow_link" and
460 * "allow_pivot_root".
461 */
462struct tomoyo_mount_acl {
463 struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
464 bool is_deleted;
465 struct tomoyo_name_union dev_name;
466 struct tomoyo_name_union dir_name;
467 struct tomoyo_name_union fs_type;
468 struct tomoyo_number_union flags;
469};
470
471/*
Tetsuo Handac3fa1092009-06-08 12:37:39 +0900472 * tomoyo_io_buffer is a structure which is used for reading and modifying
473 * configuration via /sys/kernel/security/tomoyo/ interface.
474 * It has many fields. ->read_var1 , ->read_var2 , ->write_var1 are used as
475 * cursors.
476 *
477 * Since the content of /sys/kernel/security/tomoyo/domain_policy is a list of
478 * "struct tomoyo_domain_info" entries and each "struct tomoyo_domain_info"
479 * entry has a list of "struct tomoyo_acl_info", we need two cursors when
480 * reading (one is for traversing tomoyo_domain_list and the other is for
481 * traversing "struct tomoyo_acl_info"->acl_info_list ).
482 *
483 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
484 * "select ", TOMOYO seeks the cursor ->read_var1 and ->write_var1 to the
485 * domain with the domainname specified by the rest of that line (NULL is set
486 * if seek failed).
487 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
488 * "delete ", TOMOYO deletes an entry or a domain specified by the rest of that
489 * line (->write_var1 is set to NULL if a domain was deleted).
490 * If a line written to /sys/kernel/security/tomoyo/domain_policy starts with
491 * neither "select " nor "delete ", an entry or a domain specified by that line
492 * is appended.
493 */
Kentaro Takeda95908372009-02-05 17:18:13 +0900494struct tomoyo_io_buffer {
495 int (*read) (struct tomoyo_io_buffer *);
496 int (*write) (struct tomoyo_io_buffer *);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900497 int (*poll) (struct file *file, poll_table *wait);
Kentaro Takeda95908372009-02-05 17:18:13 +0900498 /* Exclusive lock for this structure. */
499 struct mutex io_sem;
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +0900500 /* Index returned by tomoyo_read_lock(). */
501 int reader_idx;
Kentaro Takeda95908372009-02-05 17:18:13 +0900502 /* The position currently reading from. */
503 struct list_head *read_var1;
504 /* Extra variables for reading. */
505 struct list_head *read_var2;
506 /* The position currently writing to. */
507 struct tomoyo_domain_info *write_var1;
508 /* The step for reading. */
509 int read_step;
510 /* Buffer for reading. */
511 char *read_buf;
512 /* EOF flag for reading. */
513 bool read_eof;
514 /* Read domain ACL of specified PID? */
515 bool read_single_domain;
516 /* Extra variable for reading. */
517 u8 read_bit;
518 /* Bytes available for reading. */
519 int read_avail;
520 /* Size of read buffer. */
521 int readbuf_size;
522 /* Buffer for writing. */
523 char *write_buf;
524 /* Bytes available for writing. */
525 int write_avail;
526 /* Size of write buffer. */
527 int writebuf_size;
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900528 /* Type of this interface. */
529 u8 type;
Kentaro Takeda95908372009-02-05 17:18:13 +0900530};
531
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900532/*
533 * tomoyo_globally_readable_file_entry is a structure which is used for holding
534 * "allow_read" entries.
535 * It has following fields.
536 *
537 * (1) "list" which is linked to tomoyo_globally_readable_list .
538 * (2) "filename" is a pathname which is allowed to open(O_RDONLY).
539 * (3) "is_deleted" is a bool which is true if marked as deleted, false
540 * otherwise.
541 */
542struct tomoyo_globally_readable_file_entry {
543 struct list_head list;
544 const struct tomoyo_path_info *filename;
545 bool is_deleted;
546};
547
548/*
549 * tomoyo_pattern_entry is a structure which is used for holding
550 * "tomoyo_pattern_list" entries.
551 * It has following fields.
552 *
553 * (1) "list" which is linked to tomoyo_pattern_list .
554 * (2) "pattern" is a pathname pattern which is used for converting pathnames
555 * to pathname patterns during learning mode.
556 * (3) "is_deleted" is a bool which is true if marked as deleted, false
557 * otherwise.
558 */
559struct tomoyo_pattern_entry {
560 struct list_head list;
561 const struct tomoyo_path_info *pattern;
562 bool is_deleted;
563};
564
565/*
566 * tomoyo_no_rewrite_entry is a structure which is used for holding
567 * "deny_rewrite" entries.
568 * It has following fields.
569 *
570 * (1) "list" which is linked to tomoyo_no_rewrite_list .
571 * (2) "pattern" is a pathname which is by default not permitted to modify
572 * already existing content.
573 * (3) "is_deleted" is a bool which is true if marked as deleted, false
574 * otherwise.
575 */
576struct tomoyo_no_rewrite_entry {
577 struct list_head list;
578 const struct tomoyo_path_info *pattern;
579 bool is_deleted;
580};
581
582/*
583 * tomoyo_domain_initializer_entry is a structure which is used for holding
584 * "initialize_domain" and "no_initialize_domain" entries.
585 * It has following fields.
586 *
587 * (1) "list" which is linked to tomoyo_domain_initializer_list .
588 * (2) "domainname" which is "a domainname" or "the last component of a
589 * domainname". This field is NULL if "from" clause is not specified.
590 * (3) "program" which is a program's pathname.
591 * (4) "is_deleted" is a bool which is true if marked as deleted, false
592 * otherwise.
593 * (5) "is_not" is a bool which is true if "no_initialize_domain", false
594 * otherwise.
595 * (6) "is_last_name" is a bool which is true if "domainname" is "the last
596 * component of a domainname", false otherwise.
597 */
598struct tomoyo_domain_initializer_entry {
599 struct list_head list;
600 const struct tomoyo_path_info *domainname; /* This may be NULL */
601 const struct tomoyo_path_info *program;
602 bool is_deleted;
603 bool is_not; /* True if this entry is "no_initialize_domain". */
604 /* True if the domainname is tomoyo_get_last_name(). */
605 bool is_last_name;
606};
607
608/*
609 * tomoyo_domain_keeper_entry is a structure which is used for holding
610 * "keep_domain" and "no_keep_domain" entries.
611 * It has following fields.
612 *
613 * (1) "list" which is linked to tomoyo_domain_keeper_list .
614 * (2) "domainname" which is "a domainname" or "the last component of a
615 * domainname".
616 * (3) "program" which is a program's pathname.
617 * This field is NULL if "from" clause is not specified.
618 * (4) "is_deleted" is a bool which is true if marked as deleted, false
619 * otherwise.
620 * (5) "is_not" is a bool which is true if "no_initialize_domain", false
621 * otherwise.
622 * (6) "is_last_name" is a bool which is true if "domainname" is "the last
623 * component of a domainname", false otherwise.
624 */
625struct tomoyo_domain_keeper_entry {
626 struct list_head list;
627 const struct tomoyo_path_info *domainname;
628 const struct tomoyo_path_info *program; /* This may be NULL */
629 bool is_deleted;
630 bool is_not; /* True if this entry is "no_keep_domain". */
631 /* True if the domainname is tomoyo_get_last_name(). */
632 bool is_last_name;
633};
634
635/*
636 * tomoyo_alias_entry is a structure which is used for holding "alias" entries.
637 * It has following fields.
638 *
639 * (1) "list" which is linked to tomoyo_alias_list .
640 * (2) "original_name" which is a dereferenced pathname.
641 * (3) "aliased_name" which is a symlink's pathname.
642 * (4) "is_deleted" is a bool which is true if marked as deleted, false
643 * otherwise.
644 */
645struct tomoyo_alias_entry {
646 struct list_head list;
647 const struct tomoyo_path_info *original_name;
648 const struct tomoyo_path_info *aliased_name;
649 bool is_deleted;
650};
651
652/*
653 * tomoyo_policy_manager_entry is a structure which is used for holding list of
654 * domainnames or programs which are permitted to modify configuration via
655 * /sys/kernel/security/tomoyo/ interface.
656 * It has following fields.
657 *
658 * (1) "list" which is linked to tomoyo_policy_manager_list .
659 * (2) "manager" is a domainname or a program's pathname.
660 * (3) "is_domain" is a bool which is true if "manager" is a domainname, false
661 * otherwise.
662 * (4) "is_deleted" is a bool which is true if marked as deleted, false
663 * otherwise.
664 */
665struct tomoyo_policy_manager_entry {
666 struct list_head list;
667 /* A path to program or a domainname. */
668 const struct tomoyo_path_info *manager;
669 bool is_domain; /* True if manager is a domainname. */
670 bool is_deleted; /* True if this entry is deleted. */
671};
672
673/********** Function prototypes. **********/
674
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900675extern asmlinkage long sys_getpid(void);
676extern asmlinkage long sys_getppid(void);
677
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900678/* Check whether the given string starts with the given keyword. */
679bool tomoyo_str_starts(char **src, const char *find);
680/* Get tomoyo_realpath() of current process. */
681const char *tomoyo_get_exe(void);
682/* Format string. */
683void tomoyo_normalize_line(unsigned char *buffer);
684/* Print warning or error message on console. */
685void tomoyo_warn_log(struct tomoyo_request_info *r, const char *fmt, ...)
686 __attribute__ ((format(printf, 2, 3)));
687/* Check all profiles currently assigned to domains are defined. */
688void tomoyo_check_profile(void);
689/* Open operation for /sys/kernel/security/tomoyo/ interface. */
690int tomoyo_open_control(const u8 type, struct file *file);
691/* Close /sys/kernel/security/tomoyo/ interface. */
692int tomoyo_close_control(struct file *file);
693/* Read operation for /sys/kernel/security/tomoyo/ interface. */
694int tomoyo_read_control(struct file *file, char __user *buffer,
695 const int buffer_len);
696/* Write operation for /sys/kernel/security/tomoyo/ interface. */
697int tomoyo_write_control(struct file *file, const char __user *buffer,
698 const int buffer_len);
699/* Check whether the domain has too many ACL entries to hold. */
700bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
701/* Print out of memory warning message. */
702void tomoyo_warn_oom(const char *function);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900703/* Check whether the given name matches the given name_union. */
704bool tomoyo_compare_name_union(const struct tomoyo_path_info *name,
705 const struct tomoyo_name_union *ptr);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900706/* Check whether the given number matches the given number_union. */
707bool tomoyo_compare_number_union(const unsigned long value,
708 const struct tomoyo_number_union *ptr);
Kentaro Takeda95908372009-02-05 17:18:13 +0900709/* Transactional sprintf() for policy dump. */
710bool tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...)
711 __attribute__ ((format(printf, 2, 3)));
712/* Check whether the domainname is correct. */
Tetsuo Handa17080002010-02-16 21:14:48 +0900713bool tomoyo_is_correct_domain(const unsigned char *domainname);
Kentaro Takeda95908372009-02-05 17:18:13 +0900714/* Check whether the token is correct. */
715bool tomoyo_is_correct_path(const char *filename, const s8 start_type,
Tetsuo Handa17080002010-02-16 21:14:48 +0900716 const s8 pattern_type, const s8 end_type);
Kentaro Takeda95908372009-02-05 17:18:13 +0900717/* Check whether the token can be a domainname. */
718bool tomoyo_is_domain_def(const unsigned char *buffer);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900719bool tomoyo_parse_name_union(const char *filename,
720 struct tomoyo_name_union *ptr);
721/* Check whether the given filename matches the given path_group. */
722bool tomoyo_path_matches_group(const struct tomoyo_path_info *pathname,
723 const struct tomoyo_path_group *group,
724 const bool may_use_pattern);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900725/* Check whether the given value matches the given number_group. */
726bool tomoyo_number_matches_group(const unsigned long min,
727 const unsigned long max,
728 const struct tomoyo_number_group *group);
Kentaro Takeda95908372009-02-05 17:18:13 +0900729/* Check whether the given filename matches the given pattern. */
730bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
731 const struct tomoyo_path_info *pattern);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900732
733bool tomoyo_print_number_union(struct tomoyo_io_buffer *head,
734 const struct tomoyo_number_union *ptr);
735bool tomoyo_parse_number_union(char *data, struct tomoyo_number_union *num);
736
Kentaro Takeda95908372009-02-05 17:18:13 +0900737/* Read "alias" entry in exception policy. */
738bool tomoyo_read_alias_policy(struct tomoyo_io_buffer *head);
739/*
740 * Read "initialize_domain" and "no_initialize_domain" entry
741 * in exception policy.
742 */
743bool tomoyo_read_domain_initializer_policy(struct tomoyo_io_buffer *head);
744/* Read "keep_domain" and "no_keep_domain" entry in exception policy. */
745bool tomoyo_read_domain_keeper_policy(struct tomoyo_io_buffer *head);
746/* Read "file_pattern" entry in exception policy. */
747bool tomoyo_read_file_pattern(struct tomoyo_io_buffer *head);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900748/* Read "path_group" entry in exception policy. */
749bool tomoyo_read_path_group_policy(struct tomoyo_io_buffer *head);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900750/* Read "number_group" entry in exception policy. */
751bool tomoyo_read_number_group_policy(struct tomoyo_io_buffer *head);
Kentaro Takeda95908372009-02-05 17:18:13 +0900752/* Read "allow_read" entry in exception policy. */
753bool tomoyo_read_globally_readable_policy(struct tomoyo_io_buffer *head);
754/* Read "deny_rewrite" entry in exception policy. */
755bool tomoyo_read_no_rewrite_policy(struct tomoyo_io_buffer *head);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900756/* Tokenize a line. */
757bool tomoyo_tokenize(char *buffer, char *w[], size_t size);
Kentaro Takeda95908372009-02-05 17:18:13 +0900758/* Write domain policy violation warning message to console? */
759bool tomoyo_verbose_mode(const struct tomoyo_domain_info *domain);
760/* Convert double path operation to operation name. */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900761const char *tomoyo_path22keyword(const u8 operation);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900762const char *tomoyo_path_number2keyword(const u8 operation);
763const char *tomoyo_path_number32keyword(const u8 operation);
Kentaro Takeda95908372009-02-05 17:18:13 +0900764/* Get the last component of the given domainname. */
765const char *tomoyo_get_last_name(const struct tomoyo_domain_info *domain);
Kentaro Takeda95908372009-02-05 17:18:13 +0900766/* Convert single path operation to operation name. */
Tetsuo Handa7ef61232010-02-16 08:03:30 +0900767const char *tomoyo_path2keyword(const u8 operation);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900768/* Fill "struct tomoyo_request_info". */
769int tomoyo_init_request_info(struct tomoyo_request_info *r,
770 struct tomoyo_domain_info *domain);
771/* Check permission for mount operation. */
772int tomoyo_mount_permission(char *dev_name, struct path *path, char *type,
773 unsigned long flags, void *data_page);
Kentaro Takeda95908372009-02-05 17:18:13 +0900774/* Create "alias" entry in exception policy. */
775int tomoyo_write_alias_policy(char *data, const bool is_delete);
776/*
777 * Create "initialize_domain" and "no_initialize_domain" entry
778 * in exception policy.
779 */
780int tomoyo_write_domain_initializer_policy(char *data, const bool is_not,
781 const bool is_delete);
782/* Create "keep_domain" and "no_keep_domain" entry in exception policy. */
783int tomoyo_write_domain_keeper_policy(char *data, const bool is_not,
784 const bool is_delete);
785/*
786 * Create "allow_read/write", "allow_execute", "allow_read", "allow_write",
787 * "allow_create", "allow_unlink", "allow_mkdir", "allow_rmdir",
788 * "allow_mkfifo", "allow_mksock", "allow_mkblock", "allow_mkchar",
789 * "allow_truncate", "allow_symlink", "allow_rewrite", "allow_rename" and
790 * "allow_link" entry in domain policy.
791 */
792int tomoyo_write_file_policy(char *data, struct tomoyo_domain_info *domain,
793 const bool is_delete);
794/* Create "allow_read" entry in exception policy. */
795int tomoyo_write_globally_readable_policy(char *data, const bool is_delete);
Tetsuo Handa2106ccd2010-05-17 10:10:31 +0900796/* Create "allow_mount" entry in domain policy. */
797int tomoyo_write_mount_policy(char *data, struct tomoyo_domain_info *domain,
798 const bool is_delete);
Kentaro Takeda95908372009-02-05 17:18:13 +0900799/* Create "deny_rewrite" entry in exception policy. */
800int tomoyo_write_no_rewrite_policy(char *data, const bool is_delete);
801/* Create "file_pattern" entry in exception policy. */
802int tomoyo_write_pattern_policy(char *data, const bool is_delete);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900803/* Create "path_group" entry in exception policy. */
804int tomoyo_write_path_group_policy(char *data, const bool is_delete);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900805int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
806 __attribute__ ((format(printf, 2, 3)));
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900807/* Create "number_group" entry in exception policy. */
808int tomoyo_write_number_group_policy(char *data, const bool is_delete);
Kentaro Takeda95908372009-02-05 17:18:13 +0900809/* Find a domain by the given name. */
810struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
811/* Find or create a domain by the given name. */
812struct tomoyo_domain_info *tomoyo_find_or_assign_new_domain(const char *
813 domainname,
814 const u8 profile);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900815/* Allocate memory for "struct tomoyo_path_group". */
816struct tomoyo_path_group *tomoyo_get_path_group(const char *group_name);
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900817struct tomoyo_number_group *tomoyo_get_number_group(const char *group_name);
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900818
Kentaro Takeda95908372009-02-05 17:18:13 +0900819/* Check mode for specified functionality. */
820unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
821 const u8 index);
Kentaro Takeda95908372009-02-05 17:18:13 +0900822/* Fill in "struct tomoyo_path_info" members. */
823void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
824/* Run policy loader when /sbin/init starts. */
825void tomoyo_load_policy(const char *filename);
Kentaro Takeda95908372009-02-05 17:18:13 +0900826
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900827void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
828
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900829/* Convert binary string to ascii string. */
830int tomoyo_encode(char *buffer, int buflen, const char *str);
831
832/* Returns realpath(3) of the given pathname but ignores chroot'ed root. */
833int tomoyo_realpath_from_path2(struct path *path, char *newname,
834 int newname_len);
835
836/*
837 * Returns realpath(3) of the given pathname but ignores chroot'ed root.
838 * These functions use kzalloc(), so the caller must call kfree()
839 * if these functions didn't return NULL.
840 */
841char *tomoyo_realpath(const char *pathname);
842/*
843 * Same with tomoyo_realpath() except that it doesn't follow the final symlink.
844 */
845char *tomoyo_realpath_nofollow(const char *pathname);
846/* Same with tomoyo_realpath() except that the pathname is already solved. */
847char *tomoyo_realpath_from_path(struct path *path);
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900848/* Get patterned pathname. */
849const char *tomoyo_file_pattern(const struct tomoyo_path_info *filename);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900850
851/* Check memory quota. */
852bool tomoyo_memory_ok(void *ptr);
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +0900853void *tomoyo_commit_ok(void *data, const unsigned int size);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900854
855/*
856 * Keep the given name on the RAM.
857 * The RAM is shared, so NEVER try to modify or kfree() the returned name.
858 */
859const struct tomoyo_path_info *tomoyo_get_name(const char *name);
860
861/* Check for memory usage. */
862int tomoyo_read_memory_counter(struct tomoyo_io_buffer *head);
863
864/* Set memory quota. */
865int tomoyo_write_memory_quota(struct tomoyo_io_buffer *head);
866
Tetsuo Handac3ef1502010-05-17 10:12:46 +0900867/* Initialize mm related code. */
868void __init tomoyo_mm_init(void);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900869int tomoyo_check_exec_perm(struct tomoyo_domain_info *domain,
870 const struct tomoyo_path_info *filename);
871int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
872 struct path *path, const int flag);
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900873int tomoyo_path_number_perm(const u8 operation, struct path *path,
874 unsigned long number);
875int tomoyo_path_number3_perm(const u8 operation, struct path *path,
876 const unsigned int mode, unsigned int dev);
Tetsuo Handa97d69312010-02-16 09:46:15 +0900877int tomoyo_path_perm(const u8 operation, struct path *path);
878int tomoyo_path2_perm(const u8 operation, struct path *path1,
879 struct path *path2);
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900880int tomoyo_find_next_domain(struct linux_binprm *bprm);
881
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +0900882void tomoyo_print_ulong(char *buffer, const int buffer_len,
883 const unsigned long value, const u8 type);
884
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900885/* Drop refcount on tomoyo_name_union. */
886void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
887
Tetsuo Handa847b1732010-02-11 09:43:54 +0900888/* Run garbage collector. */
889void tomoyo_run_gc(void);
890
891void tomoyo_memory_free(void *ptr);
892
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900893/********** External variable definitions. **********/
894
895/* Lock for GC. */
896extern struct srcu_struct tomoyo_ss;
897
898/* The list for "struct tomoyo_domain_info". */
899extern struct list_head tomoyo_domain_list;
900
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900901extern struct list_head tomoyo_path_group_list;
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900902extern struct list_head tomoyo_number_group_list;
Tetsuo Handa847b1732010-02-11 09:43:54 +0900903extern struct list_head tomoyo_domain_initializer_list;
904extern struct list_head tomoyo_domain_keeper_list;
905extern struct list_head tomoyo_alias_list;
906extern struct list_head tomoyo_globally_readable_list;
907extern struct list_head tomoyo_pattern_list;
908extern struct list_head tomoyo_no_rewrite_list;
909extern struct list_head tomoyo_policy_manager_list;
910extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
Tetsuo Handa847b1732010-02-11 09:43:54 +0900911
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900912/* Lock for protecting policy. */
913extern struct mutex tomoyo_policy_lock;
914
915/* Has /sbin/init started? */
916extern bool tomoyo_policy_loaded;
917
918/* The kernel's domain. */
919extern struct tomoyo_domain_info tomoyo_kernel_domain;
920
Tetsuo Handa17fcfbd2010-05-17 10:11:36 +0900921extern unsigned int tomoyo_quota_for_query;
922extern unsigned int tomoyo_query_memory_size;
923
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900924/********** Inlined functions. **********/
925
926static inline int tomoyo_read_lock(void)
927{
928 return srcu_read_lock(&tomoyo_ss);
929}
930
931static inline void tomoyo_read_unlock(int idx)
932{
933 srcu_read_unlock(&tomoyo_ss, idx);
934}
935
Kentaro Takeda95908372009-02-05 17:18:13 +0900936/* strcmp() for "struct tomoyo_path_info" structure. */
937static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
938 const struct tomoyo_path_info *b)
939{
940 return a->hash != b->hash || strcmp(a->name, b->name);
941}
942
Kentaro Takeda95908372009-02-05 17:18:13 +0900943/**
944 * tomoyo_is_valid - Check whether the character is a valid char.
945 *
946 * @c: The character to check.
947 *
948 * Returns true if @c is a valid character, false otherwise.
949 */
950static inline bool tomoyo_is_valid(const unsigned char c)
951{
952 return c > ' ' && c < 127;
953}
954
955/**
956 * tomoyo_is_invalid - Check whether the character is an invalid char.
957 *
958 * @c: The character to check.
959 *
960 * Returns true if @c is an invalid character, false otherwise.
961 */
962static inline bool tomoyo_is_invalid(const unsigned char c)
963{
964 return c && (c <= ' ' || c >= 127);
965}
966
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900967static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
968{
969 if (name) {
970 struct tomoyo_name_entry *ptr =
971 container_of(name, struct tomoyo_name_entry, entry);
972 atomic_dec(&ptr->users);
973 }
974}
Kentaro Takeda95908372009-02-05 17:18:13 +0900975
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900976static inline void tomoyo_put_path_group(struct tomoyo_path_group *group)
977{
978 if (group)
979 atomic_dec(&group->users);
980}
981
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +0900982static inline void tomoyo_put_number_group(struct tomoyo_number_group *group)
983{
984 if (group)
985 atomic_dec(&group->users);
986}
987
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900988static inline struct tomoyo_domain_info *tomoyo_domain(void)
989{
990 return current_cred()->security;
991}
Kentaro Takeda95908372009-02-05 17:18:13 +0900992
Tetsuo Handa76bb0892010-02-11 09:42:40 +0900993static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
994 *task)
995{
996 return task_cred_xxx(task, security);
997}
Kentaro Takeda95908372009-02-05 17:18:13 +0900998
Tetsuo Handa7762fbf2010-05-10 17:30:26 +0900999static inline bool tomoyo_is_same_acl_head(const struct tomoyo_acl_info *p1,
1000 const struct tomoyo_acl_info *p2)
1001{
1002 return p1->type == p2->type;
1003}
1004
1005static inline bool tomoyo_is_same_name_union
1006(const struct tomoyo_name_union *p1, const struct tomoyo_name_union *p2)
1007{
1008 return p1->filename == p2->filename && p1->group == p2->group &&
1009 p1->is_group == p2->is_group;
1010}
1011
Tetsuo Handa4c3e9e22010-05-17 10:06:58 +09001012static inline bool tomoyo_is_same_number_union
1013(const struct tomoyo_number_union *p1, const struct tomoyo_number_union *p2)
1014{
1015 return p1->values[0] == p2->values[0] && p1->values[1] == p2->values[1]
1016 && p1->group == p2->group && p1->min_type == p2->min_type &&
1017 p1->max_type == p2->max_type && p1->is_group == p2->is_group;
1018}
1019
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001020static inline bool tomoyo_is_same_path_acl(const struct tomoyo_path_acl *p1,
1021 const struct tomoyo_path_acl *p2)
1022{
1023 return tomoyo_is_same_acl_head(&p1->head, &p2->head) &&
1024 tomoyo_is_same_name_union(&p1->name, &p2->name);
1025}
1026
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001027static inline bool tomoyo_is_same_path_number3_acl
1028(const struct tomoyo_path_number3_acl *p1,
1029 const struct tomoyo_path_number3_acl *p2)
1030{
1031 return tomoyo_is_same_acl_head(&p1->head, &p2->head)
1032 && tomoyo_is_same_name_union(&p1->name, &p2->name)
1033 && tomoyo_is_same_number_union(&p1->mode, &p2->mode)
1034 && tomoyo_is_same_number_union(&p1->major, &p2->major)
1035 && tomoyo_is_same_number_union(&p1->minor, &p2->minor);
1036}
1037
1038
Tetsuo Handa7762fbf2010-05-10 17:30:26 +09001039static inline bool tomoyo_is_same_path2_acl(const struct tomoyo_path2_acl *p1,
1040 const struct tomoyo_path2_acl *p2)
1041{
1042 return tomoyo_is_same_acl_head(&p1->head, &p2->head) &&
1043 tomoyo_is_same_name_union(&p1->name1, &p2->name1) &&
1044 tomoyo_is_same_name_union(&p1->name2, &p2->name2);
1045}
1046
Tetsuo Handaa1f9bb62010-05-17 10:09:15 +09001047static inline bool tomoyo_is_same_path_number_acl
1048(const struct tomoyo_path_number_acl *p1,
1049 const struct tomoyo_path_number_acl *p2)
1050{
1051 return tomoyo_is_same_acl_head(&p1->head, &p2->head)
1052 && tomoyo_is_same_name_union(&p1->name, &p2->name)
1053 && tomoyo_is_same_number_union(&p1->number, &p2->number);
1054}
1055
Tetsuo Handa2106ccd2010-05-17 10:10:31 +09001056static inline bool tomoyo_is_same_mount_acl(const struct tomoyo_mount_acl *p1,
1057 const struct tomoyo_mount_acl *p2)
1058{
1059 return tomoyo_is_same_acl_head(&p1->head, &p2->head) &&
1060 tomoyo_is_same_name_union(&p1->dev_name, &p2->dev_name) &&
1061 tomoyo_is_same_name_union(&p1->dir_name, &p2->dir_name) &&
1062 tomoyo_is_same_name_union(&p1->fs_type, &p2->fs_type) &&
1063 tomoyo_is_same_number_union(&p1->flags, &p2->flags);
1064}
1065
Tetsuo Handa9e4b50e2010-05-06 12:40:02 +09001066static inline bool tomoyo_is_same_domain_initializer_entry
1067(const struct tomoyo_domain_initializer_entry *p1,
1068 const struct tomoyo_domain_initializer_entry *p2)
1069{
1070 return p1->is_not == p2->is_not && p1->is_last_name == p2->is_last_name
1071 && p1->domainname == p2->domainname
1072 && p1->program == p2->program;
1073}
1074
1075static inline bool tomoyo_is_same_domain_keeper_entry
1076(const struct tomoyo_domain_keeper_entry *p1,
1077 const struct tomoyo_domain_keeper_entry *p2)
1078{
1079 return p1->is_not == p2->is_not && p1->is_last_name == p2->is_last_name
1080 && p1->domainname == p2->domainname
1081 && p1->program == p2->program;
1082}
1083
1084static inline bool tomoyo_is_same_alias_entry
1085(const struct tomoyo_alias_entry *p1, const struct tomoyo_alias_entry *p2)
1086{
1087 return p1->original_name == p2->original_name &&
1088 p1->aliased_name == p2->aliased_name;
1089}
1090
Kentaro Takeda95908372009-02-05 17:18:13 +09001091/**
1092 * list_for_each_cookie - iterate over a list with cookie.
1093 * @pos: the &struct list_head to use as a loop cursor.
1094 * @cookie: the &struct list_head to use as a cookie.
1095 * @head: the head for your list.
1096 *
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001097 * Same with list_for_each_rcu() except that this primitive uses @cookie
Kentaro Takeda95908372009-02-05 17:18:13 +09001098 * so that we can continue iteration.
1099 * @cookie must be NULL when iteration starts, and @cookie will become
1100 * NULL when iteration finishes.
1101 */
Tetsuo Handafdb8ebb2009-12-08 09:34:43 +09001102#define list_for_each_cookie(pos, cookie, head) \
1103 for (({ if (!cookie) \
1104 cookie = head; }), \
1105 pos = rcu_dereference((cookie)->next); \
1106 prefetch(pos->next), pos != (head) || ((cookie) = NULL); \
1107 (cookie) = pos, pos = rcu_dereference(pos->next))
1108
Kentaro Takeda95908372009-02-05 17:18:13 +09001109#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */