common.h 33.2 KB
Newer Older
1 2 3
/*
 * security/tomoyo/common.h
 *
T
Tetsuo Handa 已提交
4
 * Header file for TOMOYO.
5
 *
T
Tetsuo Handa 已提交
6
 * Copyright (C) 2005-2010  NTT DATA CORPORATION
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 */

#ifndef _SECURITY_TOMOYO_COMMON_H
#define _SECURITY_TOMOYO_COMMON_H

#include <linux/ctype.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/file.h>
#include <linux/kmod.h>
#include <linux/fs.h>
#include <linux/sched.h>
#include <linux/namei.h>
#include <linux/mount.h>
#include <linux/list.h>
T
Tetsuo Handa 已提交
22
#include <linux/cred.h>
23
#include <linux/poll.h>
24 25
#include <linux/binfmts.h>
#include <linux/highmem.h>
T
Tetsuo Handa 已提交
26 27 28 29 30 31 32 33 34 35 36

/********** Constants definitions. **********/

/*
 * TOMOYO uses this hash only when appending a string into the string
 * table. Frequency of appending strings is very low. So we don't need
 * large (e.g. 64k) hash size. 256 will be sufficient.
 */
#define TOMOYO_HASH_BITS  8
#define TOMOYO_MAX_HASH (1u<<TOMOYO_HASH_BITS)

T
Tetsuo Handa 已提交
37
#define TOMOYO_EXEC_TMPSIZE     4096
T
Tetsuo Handa 已提交
38 39 40 41

/* Profile number is an integer between 0 and 255. */
#define TOMOYO_MAX_PROFILES 256

T
Tetsuo Handa 已提交
42 43 44
/* Group number is an integer between 0 and 255. */
#define TOMOYO_MAX_ACL_GROUPS 256

45 46 47 48 49 50 51 52 53 54 55 56
/* Index numbers for "struct tomoyo_condition". */
enum tomoyo_conditions_index {
	TOMOYO_TASK_UID,             /* current_uid()   */
	TOMOYO_TASK_EUID,            /* current_euid()  */
	TOMOYO_TASK_SUID,            /* current_suid()  */
	TOMOYO_TASK_FSUID,           /* current_fsuid() */
	TOMOYO_TASK_GID,             /* current_gid()   */
	TOMOYO_TASK_EGID,            /* current_egid()  */
	TOMOYO_TASK_SGID,            /* current_sgid()  */
	TOMOYO_TASK_FSGID,           /* current_fsgid() */
	TOMOYO_TASK_PID,             /* sys_getpid()   */
	TOMOYO_TASK_PPID,            /* sys_getppid()  */
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
	TOMOYO_TYPE_IS_SOCKET,       /* S_IFSOCK */
	TOMOYO_TYPE_IS_SYMLINK,      /* S_IFLNK */
	TOMOYO_TYPE_IS_FILE,         /* S_IFREG */
	TOMOYO_TYPE_IS_BLOCK_DEV,    /* S_IFBLK */
	TOMOYO_TYPE_IS_DIRECTORY,    /* S_IFDIR */
	TOMOYO_TYPE_IS_CHAR_DEV,     /* S_IFCHR */
	TOMOYO_TYPE_IS_FIFO,         /* S_IFIFO */
	TOMOYO_MODE_SETUID,          /* S_ISUID */
	TOMOYO_MODE_SETGID,          /* S_ISGID */
	TOMOYO_MODE_STICKY,          /* S_ISVTX */
	TOMOYO_MODE_OWNER_READ,      /* S_IRUSR */
	TOMOYO_MODE_OWNER_WRITE,     /* S_IWUSR */
	TOMOYO_MODE_OWNER_EXECUTE,   /* S_IXUSR */
	TOMOYO_MODE_GROUP_READ,      /* S_IRGRP */
	TOMOYO_MODE_GROUP_WRITE,     /* S_IWGRP */
	TOMOYO_MODE_GROUP_EXECUTE,   /* S_IXGRP */
	TOMOYO_MODE_OTHERS_READ,     /* S_IROTH */
	TOMOYO_MODE_OTHERS_WRITE,    /* S_IWOTH */
	TOMOYO_MODE_OTHERS_EXECUTE,  /* S_IXOTH */
76 77
	TOMOYO_EXEC_REALPATH,
	TOMOYO_SYMLINK_TARGET,
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	TOMOYO_PATH1_UID,
	TOMOYO_PATH1_GID,
	TOMOYO_PATH1_INO,
	TOMOYO_PATH1_MAJOR,
	TOMOYO_PATH1_MINOR,
	TOMOYO_PATH1_PERM,
	TOMOYO_PATH1_TYPE,
	TOMOYO_PATH1_DEV_MAJOR,
	TOMOYO_PATH1_DEV_MINOR,
	TOMOYO_PATH2_UID,
	TOMOYO_PATH2_GID,
	TOMOYO_PATH2_INO,
	TOMOYO_PATH2_MAJOR,
	TOMOYO_PATH2_MINOR,
	TOMOYO_PATH2_PERM,
	TOMOYO_PATH2_TYPE,
	TOMOYO_PATH2_DEV_MAJOR,
	TOMOYO_PATH2_DEV_MINOR,
	TOMOYO_PATH1_PARENT_UID,
	TOMOYO_PATH1_PARENT_GID,
	TOMOYO_PATH1_PARENT_INO,
	TOMOYO_PATH1_PARENT_PERM,
	TOMOYO_PATH2_PARENT_UID,
	TOMOYO_PATH2_PARENT_GID,
	TOMOYO_PATH2_PARENT_INO,
	TOMOYO_PATH2_PARENT_PERM,
104 105
	TOMOYO_MAX_CONDITION_KEYWORD,
	TOMOYO_NUMBER_UNION,
106
	TOMOYO_NAME_UNION,
107 108
};

109 110 111 112 113 114 115 116 117 118 119

/* Index numbers for stat(). */
enum tomoyo_path_stat_index {
	/* Do not change this order. */
	TOMOYO_PATH1,
	TOMOYO_PATH1_PARENT,
	TOMOYO_PATH2,
	TOMOYO_PATH2_PARENT,
	TOMOYO_MAX_PATH_STAT
};

T
Tetsuo Handa 已提交
120
/* Index numbers for operation mode. */
121 122 123 124
enum tomoyo_mode_index {
	TOMOYO_CONFIG_DISABLED,
	TOMOYO_CONFIG_LEARNING,
	TOMOYO_CONFIG_PERMISSIVE,
T
Tetsuo Handa 已提交
125
	TOMOYO_CONFIG_ENFORCING,
T
Tetsuo Handa 已提交
126 127 128 129
	TOMOYO_CONFIG_MAX_MODE,
	TOMOYO_CONFIG_WANT_REJECT_LOG =  64,
	TOMOYO_CONFIG_WANT_GRANT_LOG  = 128,
	TOMOYO_CONFIG_USE_DEFAULT     = 255,
130 131
};

T
Tetsuo Handa 已提交
132
/* Index numbers for entry type. */
133 134 135 136
enum tomoyo_policy_id {
	TOMOYO_ID_GROUP,
	TOMOYO_ID_PATH_GROUP,
	TOMOYO_ID_NUMBER_GROUP,
137
	TOMOYO_ID_TRANSITION_CONTROL,
138 139
	TOMOYO_ID_AGGREGATOR,
	TOMOYO_ID_MANAGER,
140
	TOMOYO_ID_CONDITION,
141 142 143 144 145 146
	TOMOYO_ID_NAME,
	TOMOYO_ID_ACL,
	TOMOYO_ID_DOMAIN,
	TOMOYO_MAX_POLICY
};

T
Tetsuo Handa 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160
/* Index numbers for domain's attributes. */
enum tomoyo_domain_info_flags_index {
	/* Quota warnning flag.   */
	TOMOYO_DIF_QUOTA_WARNED,
	/*
	 * This domain was unable to create a new domain at
	 * tomoyo_find_next_domain() because the name of the domain to be
	 * created was too long or it could not allocate memory.
	 * More than one process continued execve() without domain transition.
	 */
	TOMOYO_DIF_TRANSITION_FAILED,
	TOMOYO_MAX_DOMAIN_INFO_FLAGS
};

T
Tetsuo Handa 已提交
161
/* Index numbers for group entries. */
162 163 164 165 166 167
enum tomoyo_group_id {
	TOMOYO_PATH_GROUP,
	TOMOYO_NUMBER_GROUP,
	TOMOYO_MAX_GROUP
};

T
Tetsuo Handa 已提交
168 169 170 171 172 173 174
/* Index numbers for type of numeric values. */
enum tomoyo_value_type {
	TOMOYO_VALUE_TYPE_INVALID,
	TOMOYO_VALUE_TYPE_DECIMAL,
	TOMOYO_VALUE_TYPE_OCTAL,
	TOMOYO_VALUE_TYPE_HEXADECIMAL,
};
175

T
Tetsuo Handa 已提交
176
/* Index numbers for domain transition control keywords. */
177 178
enum tomoyo_transition_type {
	/* Do not change this order, */
179 180
	TOMOYO_TRANSITION_CONTROL_NO_RESET,
	TOMOYO_TRANSITION_CONTROL_RESET,
181 182 183 184 185 186 187
	TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE,
	TOMOYO_TRANSITION_CONTROL_INITIALIZE,
	TOMOYO_TRANSITION_CONTROL_NO_KEEP,
	TOMOYO_TRANSITION_CONTROL_KEEP,
	TOMOYO_MAX_TRANSITION_TYPE
};

T
Tetsuo Handa 已提交
188
/* Index numbers for Access Controls. */
189
enum tomoyo_acl_entry_type_index {
T
Tetsuo Handa 已提交
190 191
	TOMOYO_TYPE_PATH_ACL,
	TOMOYO_TYPE_PATH2_ACL,
192
	TOMOYO_TYPE_PATH_NUMBER_ACL,
T
Tetsuo Handa 已提交
193
	TOMOYO_TYPE_MKDEV_ACL,
T
Tetsuo Handa 已提交
194
	TOMOYO_TYPE_MOUNT_ACL,
195
};
T
Tetsuo Handa 已提交
196

T
Tetsuo Handa 已提交
197
/* Index numbers for access controls with one pathname. */
198
enum tomoyo_path_acl_index {
T
Tetsuo Handa 已提交
199 200 201
	TOMOYO_TYPE_EXECUTE,
	TOMOYO_TYPE_READ,
	TOMOYO_TYPE_WRITE,
T
Tetsuo Handa 已提交
202
	TOMOYO_TYPE_APPEND,
T
Tetsuo Handa 已提交
203
	TOMOYO_TYPE_UNLINK,
T
Tetsuo Handa 已提交
204
	TOMOYO_TYPE_GETATTR,
T
Tetsuo Handa 已提交
205 206 207 208 209 210
	TOMOYO_TYPE_RMDIR,
	TOMOYO_TYPE_TRUNCATE,
	TOMOYO_TYPE_SYMLINK,
	TOMOYO_TYPE_CHROOT,
	TOMOYO_TYPE_UMOUNT,
	TOMOYO_MAX_PATH_OPERATION
211 212
};

213
/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
T
Tetsuo Handa 已提交
214 215 216 217 218 219 220
enum tomoyo_memory_stat_type {
	TOMOYO_MEMORY_POLICY,
	TOMOYO_MEMORY_AUDIT,
	TOMOYO_MEMORY_QUERY,
	TOMOYO_MAX_MEMORY_STAT
};

T
Tetsuo Handa 已提交
221
enum tomoyo_mkdev_acl_index {
222 223
	TOMOYO_TYPE_MKBLOCK,
	TOMOYO_TYPE_MKCHAR,
T
Tetsuo Handa 已提交
224
	TOMOYO_MAX_MKDEV_OPERATION
225 226
};

T
Tetsuo Handa 已提交
227
/* Index numbers for access controls with two pathnames. */
228
enum tomoyo_path2_acl_index {
T
Tetsuo Handa 已提交
229 230 231 232
	TOMOYO_TYPE_LINK,
	TOMOYO_TYPE_RENAME,
	TOMOYO_TYPE_PIVOT_ROOT,
	TOMOYO_MAX_PATH2_OPERATION
233 234
};

T
Tetsuo Handa 已提交
235
/* Index numbers for access controls with one pathname and one number. */
236 237 238 239 240 241 242 243 244 245 246 247
enum tomoyo_path_number_acl_index {
	TOMOYO_TYPE_CREATE,
	TOMOYO_TYPE_MKDIR,
	TOMOYO_TYPE_MKFIFO,
	TOMOYO_TYPE_MKSOCK,
	TOMOYO_TYPE_IOCTL,
	TOMOYO_TYPE_CHMOD,
	TOMOYO_TYPE_CHOWN,
	TOMOYO_TYPE_CHGRP,
	TOMOYO_MAX_PATH_NUMBER_OPERATION
};

T
Tetsuo Handa 已提交
248
/* Index numbers for /sys/kernel/security/tomoyo/ interfaces. */
249 250 251 252
enum tomoyo_securityfs_interface_index {
	TOMOYO_DOMAINPOLICY,
	TOMOYO_EXCEPTIONPOLICY,
	TOMOYO_PROCESS_STATUS,
253
	TOMOYO_STAT,
254
	TOMOYO_SELFDOMAIN,
T
Tetsuo Handa 已提交
255
	TOMOYO_AUDIT,
256 257
	TOMOYO_VERSION,
	TOMOYO_PROFILE,
258
	TOMOYO_QUERY,
259 260
	TOMOYO_MANAGER
};
261

T
Tetsuo Handa 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274
/* Index numbers for special mount operations. */
enum tomoyo_special_mount {
	TOMOYO_MOUNT_BIND,            /* mount --bind /source /dest   */
	TOMOYO_MOUNT_MOVE,            /* mount --move /old /new       */
	TOMOYO_MOUNT_REMOUNT,         /* mount -o remount /dir        */
	TOMOYO_MOUNT_MAKE_UNBINDABLE, /* mount --make-unbindable /dir */
	TOMOYO_MOUNT_MAKE_PRIVATE,    /* mount --make-private /dir    */
	TOMOYO_MOUNT_MAKE_SLAVE,      /* mount --make-slave /dir      */
	TOMOYO_MOUNT_MAKE_SHARED,     /* mount --make-shared /dir     */
	TOMOYO_MAX_SPECIAL_MOUNT
};

/* Index numbers for functionality. */
T
Tetsuo Handa 已提交
275 276 277 278 279
enum tomoyo_mac_index {
	TOMOYO_MAC_FILE_EXECUTE,
	TOMOYO_MAC_FILE_OPEN,
	TOMOYO_MAC_FILE_CREATE,
	TOMOYO_MAC_FILE_UNLINK,
T
Tetsuo Handa 已提交
280
	TOMOYO_MAC_FILE_GETATTR,
T
Tetsuo Handa 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
	TOMOYO_MAC_FILE_MKDIR,
	TOMOYO_MAC_FILE_RMDIR,
	TOMOYO_MAC_FILE_MKFIFO,
	TOMOYO_MAC_FILE_MKSOCK,
	TOMOYO_MAC_FILE_TRUNCATE,
	TOMOYO_MAC_FILE_SYMLINK,
	TOMOYO_MAC_FILE_MKBLOCK,
	TOMOYO_MAC_FILE_MKCHAR,
	TOMOYO_MAC_FILE_LINK,
	TOMOYO_MAC_FILE_RENAME,
	TOMOYO_MAC_FILE_CHMOD,
	TOMOYO_MAC_FILE_CHOWN,
	TOMOYO_MAC_FILE_CHGRP,
	TOMOYO_MAC_FILE_IOCTL,
	TOMOYO_MAC_FILE_CHROOT,
	TOMOYO_MAC_FILE_MOUNT,
	TOMOYO_MAC_FILE_UMOUNT,
	TOMOYO_MAC_FILE_PIVOT_ROOT,
	TOMOYO_MAX_MAC_INDEX
};

T
Tetsuo Handa 已提交
302
/* Index numbers for category of functionality. */
T
Tetsuo Handa 已提交
303 304 305 306 307
enum tomoyo_mac_category_index {
	TOMOYO_MAC_CATEGORY_FILE,
	TOMOYO_MAX_MAC_CATEGORY_INDEX
};

308
/*
T
Tetsuo Handa 已提交
309 310
 * Retry this request. Returned by tomoyo_supervisor() if policy violation has
 * occurred in enforcing mode and the userspace daemon decided to retry.
311
 *
T
Tetsuo Handa 已提交
312 313
 * We must choose a positive value in order to distinguish "granted" (which is
 * 0) and "rejected" (which is a negative value) and "retry".
314
 */
T
Tetsuo Handa 已提交
315 316
#define TOMOYO_RETRY_REQUEST 1

317 318 319 320 321 322 323 324 325 326
/* Index numbers for /sys/kernel/security/tomoyo/stat interface. */
enum tomoyo_policy_stat_type {
	/* Do not change this order. */
	TOMOYO_STAT_POLICY_UPDATES,
	TOMOYO_STAT_POLICY_LEARNING,   /* == TOMOYO_CONFIG_LEARNING */
	TOMOYO_STAT_POLICY_PERMISSIVE, /* == TOMOYO_CONFIG_PERMISSIVE */
	TOMOYO_STAT_POLICY_ENFORCING,  /* == TOMOYO_CONFIG_ENFORCING */
	TOMOYO_MAX_POLICY_STAT
};

327 328
/* Index numbers for profile's PREFERENCE values. */
enum tomoyo_pref_index {
T
Tetsuo Handa 已提交
329
	TOMOYO_PREF_MAX_AUDIT_LOG,
330 331 332 333
	TOMOYO_PREF_MAX_LEARNING_ENTRY,
	TOMOYO_MAX_PREF
};

T
Tetsuo Handa 已提交
334 335 336
/********** Structure definitions. **********/

/* Common header for holding ACL entries. */
337 338 339 340 341
struct tomoyo_acl_head {
	struct list_head list;
	bool is_deleted;
} __packed;

T
Tetsuo Handa 已提交
342 343 344 345 346 347
/* Common header for shared entries. */
struct tomoyo_shared_acl_head {
	struct list_head list;
	atomic_t users;
} __packed;

348 349
struct tomoyo_policy_namespace;

T
Tetsuo Handa 已提交
350
/* Structure for request info. */
351
struct tomoyo_request_info {
352 353 354 355 356
	/*
	 * For holding parameters specific to operations which deal files.
	 * NULL if not dealing files.
	 */
	struct tomoyo_obj_info *obj;
357 358 359 360 361
	/*
	 * For holding parameters specific to execve() request.
	 * NULL if not dealing do_execve().
	 */
	struct tomoyo_execve *ee;
362
	struct tomoyo_domain_info *domain;
363 364 365 366
	/* For holding parameters. */
	union {
		struct {
			const struct tomoyo_path_info *filename;
367 368
			/* For using wildcards at tomoyo_find_next_domain(). */
			const struct tomoyo_path_info *matched_path;
T
Tetsuo Handa 已提交
369
			/* One of values in "enum tomoyo_path_acl_index". */
370 371 372 373 374
			u8 operation;
		} path;
		struct {
			const struct tomoyo_path_info *filename1;
			const struct tomoyo_path_info *filename2;
T
Tetsuo Handa 已提交
375
			/* One of values in "enum tomoyo_path2_acl_index". */
376 377 378 379 380 381 382
			u8 operation;
		} path2;
		struct {
			const struct tomoyo_path_info *filename;
			unsigned int mode;
			unsigned int major;
			unsigned int minor;
T
Tetsuo Handa 已提交
383
			/* One of values in "enum tomoyo_mkdev_acl_index". */
384 385 386 387 388
			u8 operation;
		} mkdev;
		struct {
			const struct tomoyo_path_info *filename;
			unsigned long number;
T
Tetsuo Handa 已提交
389 390 391 392
			/*
			 * One of values in
			 * "enum tomoyo_path_number_acl_index".
			 */
393 394 395 396 397 398 399 400 401 402 403 404
			u8 operation;
		} path_number;
		struct {
			const struct tomoyo_path_info *type;
			const struct tomoyo_path_info *dir;
			const struct tomoyo_path_info *dev;
			unsigned long flags;
			int need_dev;
		} mount;
	} param;
	u8 param_type;
	bool granted;
405 406
	u8 retry;
	u8 profile;
407
	u8 mode; /* One of tomoyo_mode_index . */
T
Tetsuo Handa 已提交
408
	u8 type;
409 410
};

T
Tetsuo Handa 已提交
411
/* Structure for holding a token. */
412 413 414 415 416 417 418 419
struct tomoyo_path_info {
	const char *name;
	u32 hash;          /* = full_name_hash(name, strlen(name)) */
	u16 const_len;     /* = tomoyo_const_part_length(name)     */
	bool is_dir;       /* = tomoyo_strendswith(name, "/")      */
	bool is_patterned; /* = tomoyo_path_contains_pattern(name) */
};

T
Tetsuo Handa 已提交
420
/* Structure for holding string data. */
T
Tetsuo Handa 已提交
421
struct tomoyo_name {
T
Tetsuo Handa 已提交
422
	struct tomoyo_shared_acl_head head;
T
Tetsuo Handa 已提交
423 424
	struct tomoyo_path_info entry;
};
425

T
Tetsuo Handa 已提交
426
/* Structure for holding a word. */
427
struct tomoyo_name_union {
T
Tetsuo Handa 已提交
428
	/* Either @filename or @group is NULL. */
429
	const struct tomoyo_path_info *filename;
430
	struct tomoyo_group *group;
431 432
};

T
Tetsuo Handa 已提交
433
/* Structure for holding a number. */
434 435
struct tomoyo_number_union {
	unsigned long values[2];
T
Tetsuo Handa 已提交
436 437
	struct tomoyo_group *group; /* Maybe NULL. */
	/* One of values in "enum tomoyo_value_type". */
T
Tetsuo Handa 已提交
438
	u8 value_type[2];
439 440
};

441 442
/* Structure for "path_group"/"number_group" directive. */
struct tomoyo_group {
T
Tetsuo Handa 已提交
443
	struct tomoyo_shared_acl_head head;
444 445 446 447
	const struct tomoyo_path_info *group_name;
	struct list_head member_list;
};

448
/* Structure for "path_group" directive. */
449
struct tomoyo_path_group {
450
	struct tomoyo_acl_head head;
451 452 453
	const struct tomoyo_path_info *member_name;
};

454
/* Structure for "number_group" directive. */
455
struct tomoyo_number_group {
456
	struct tomoyo_acl_head head;
457 458 459
	struct tomoyo_number_union number;
};

460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
/* Subset of "struct stat". Used by conditional ACL and audit logs. */
struct tomoyo_mini_stat {
	uid_t uid;
	gid_t gid;
	ino_t ino;
	mode_t mode;
	dev_t dev;
	dev_t rdev;
};

/* Structure for attribute checks in addition to pathname checks. */
struct tomoyo_obj_info {
	/*
	 * True if tomoyo_get_attributes() was already called, false otherwise.
	 */
	bool validate_done;
	/* True if @stat[] is valid. */
	bool stat_valid[TOMOYO_MAX_PATH_STAT];
	/* First pathname. Initialized with { NULL, NULL } if no path. */
	struct path path1;
	/* Second pathname. Initialized with { NULL, NULL } if no path. */
	struct path path2;
	/*
	 * Information on @path1, @path1's parent directory, @path2, @path2's
	 * parent directory.
	 */
	struct tomoyo_mini_stat stat[TOMOYO_MAX_PATH_STAT];
487 488 489 490 491 492 493 494 495 496 497 498 499 500
	/*
	 * Content of symbolic link to be created. NULL for operations other
	 * than symlink().
	 */
	struct tomoyo_path_info *symlink_target;
};

/* Structure for execve() operation. */
struct tomoyo_execve {
	struct tomoyo_request_info r;
	struct tomoyo_obj_info obj;
	struct linux_binprm *bprm;
	/* For temporary use. */
	char *tmp; /* Size is TOMOYO_EXEC_TMPSIZE bytes */
501 502
};

503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
/* Structure for entries which follows "struct tomoyo_condition". */
struct tomoyo_condition_element {
	/* Left hand operand. */
	u8 left;
	/* Right hand operand. */
	u8 right;
	/* Equation operator. True if equals or overlaps, false otherwise. */
	bool equals;
};

/* Structure for optional arguments. */
struct tomoyo_condition {
	struct tomoyo_shared_acl_head head;
	u32 size; /* Memory size allocated for this entry. */
	u16 condc; /* Number of conditions in this struct. */
	u16 numbers_count; /* Number of "struct tomoyo_number_union values". */
519
	u16 names_count; /* Number of "struct tomoyo_name_union names". */
520 521 522
	/*
	 * struct tomoyo_condition_element condition[condc];
	 * struct tomoyo_number_union values[numbers_count];
523
	 * struct tomoyo_name_union names[names_count];
524 525 526
	 */
};

T
Tetsuo Handa 已提交
527
/* Common header for individual entries. */
528 529
struct tomoyo_acl_info {
	struct list_head list;
530
	struct tomoyo_condition *cond; /* Maybe NULL. */
531
	bool is_deleted;
T
Tetsuo Handa 已提交
532
	u8 type; /* One of values in "enum tomoyo_acl_entry_type_index". */
533 534
} __packed;

T
Tetsuo Handa 已提交
535
/* Structure for domain information. */
536 537 538 539 540
struct tomoyo_domain_info {
	struct list_head list;
	struct list_head acl_info_list;
	/* Name of this domain. Never NULL.          */
	const struct tomoyo_path_info *domainname;
541 542
	/* Namespace for this domain. Never NULL. */
	struct tomoyo_policy_namespace *ns;
543
	u8 profile;        /* Profile number to use. */
T
Tetsuo Handa 已提交
544
	u8 group;          /* Group number to use.   */
545
	bool is_deleted;   /* Delete flag.           */
T
Tetsuo Handa 已提交
546
	bool flags[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
547
	atomic_t users; /* Number of referring credentials. */
548 549 550
};

/*
T
Tetsuo Handa 已提交
551 552 553
 * Structure for "file execute", "file read", "file write", "file append",
 * "file unlink", "file getattr", "file rmdir", "file truncate",
 * "file symlink", "file chroot" and "file unmount" directive.
554
 */
T
Tetsuo Handa 已提交
555 556
struct tomoyo_path_acl {
	struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_ACL */
T
Tetsuo Handa 已提交
557
	u16 perm; /* Bitmask of values in "enum tomoyo_path_acl_index". */
558
	struct tomoyo_name_union name;
559 560
};

561
/*
T
Tetsuo Handa 已提交
562 563
 * Structure for "file create", "file mkdir", "file mkfifo", "file mksock",
 * "file ioctl", "file chmod", "file chown" and "file chgrp" directive.
564 565 566
 */
struct tomoyo_path_number_acl {
	struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH_NUMBER_ACL */
T
Tetsuo Handa 已提交
567
	/* Bitmask of values in "enum tomoyo_path_number_acl_index". */
568 569 570 571 572
	u8 perm;
	struct tomoyo_name_union name;
	struct tomoyo_number_union number;
};

T
Tetsuo Handa 已提交
573
/* Structure for "file mkblock" and "file mkchar" directive. */
T
Tetsuo Handa 已提交
574 575
struct tomoyo_mkdev_acl {
	struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MKDEV_ACL */
T
Tetsuo Handa 已提交
576
	u8 perm; /* Bitmask of values in "enum tomoyo_mkdev_acl_index". */
577 578 579 580 581 582
	struct tomoyo_name_union name;
	struct tomoyo_number_union mode;
	struct tomoyo_number_union major;
	struct tomoyo_number_union minor;
};

583
/*
T
Tetsuo Handa 已提交
584
 * Structure for "file rename", "file link" and "file pivot_root" directive.
585
 */
T
Tetsuo Handa 已提交
586 587
struct tomoyo_path2_acl {
	struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_PATH2_ACL */
T
Tetsuo Handa 已提交
588
	u8 perm; /* Bitmask of values in "enum tomoyo_path2_acl_index". */
589 590
	struct tomoyo_name_union name1;
	struct tomoyo_name_union name2;
591 592
};

T
Tetsuo Handa 已提交
593
/* Structure for "file mount" directive. */
T
Tetsuo Handa 已提交
594 595 596 597 598 599 600 601
struct tomoyo_mount_acl {
	struct tomoyo_acl_info head; /* type = TOMOYO_TYPE_MOUNT_ACL */
	struct tomoyo_name_union dev_name;
	struct tomoyo_name_union dir_name;
	struct tomoyo_name_union fs_type;
	struct tomoyo_number_union flags;
};

602 603 604 605
/* Structure for holding a line from /sys/kernel/security/tomoyo/ interface. */
struct tomoyo_acl_param {
	char *data;
	struct list_head *list;
606
	struct tomoyo_policy_namespace *ns;
607 608 609
	bool is_delete;
};

T
Tetsuo Handa 已提交
610
#define TOMOYO_MAX_IO_READ_QUEUE 64
611

612
/*
613 614
 * Structure for reading/writing policy via /sys/kernel/security/tomoyo
 * interfaces.
615
 */
616
struct tomoyo_io_buffer {
617
	void (*read) (struct tomoyo_io_buffer *);
618
	int (*write) (struct tomoyo_io_buffer *);
619
	int (*poll) (struct file *file, poll_table *wait);
620 621
	/* Exclusive lock for this structure.   */
	struct mutex io_sem;
622
	char __user *read_user_buf;
T
Tetsuo Handa 已提交
623
	size_t read_user_buf_avail;
624
	struct {
625
		struct list_head *ns;
626 627 628
		struct list_head *domain;
		struct list_head *group;
		struct list_head *acl;
T
Tetsuo Handa 已提交
629 630 631
		size_t avail;
		unsigned int step;
		unsigned int query_index;
632
		u16 index;
633
		u16 cond_index;
T
Tetsuo Handa 已提交
634
		u8 acl_group_index;
635
		u8 cond_step;
636 637 638 639
		u8 bit;
		u8 w_pos;
		bool eof;
		bool print_this_domain_only;
640
		bool print_transition_related_only;
641
		bool print_cond_part;
642 643
		const char *w[TOMOYO_MAX_IO_READ_QUEUE];
	} r;
T
Tetsuo Handa 已提交
644
	struct {
645
		struct tomoyo_policy_namespace *ns;
T
Tetsuo Handa 已提交
646 647 648
		/* The position currently writing to.   */
		struct tomoyo_domain_info *domain;
		/* Bytes available for writing.         */
T
Tetsuo Handa 已提交
649
		size_t avail;
650
		bool is_delete;
T
Tetsuo Handa 已提交
651
	} w;
652 653 654
	/* Buffer for reading.                  */
	char *read_buf;
	/* Size of read buffer.                 */
T
Tetsuo Handa 已提交
655
	size_t readbuf_size;
656 657 658
	/* Buffer for writing.                  */
	char *write_buf;
	/* Size of write buffer.                */
T
Tetsuo Handa 已提交
659
	size_t writebuf_size;
660
	/* Type of this interface.              */
T
Tetsuo Handa 已提交
661
	enum tomoyo_securityfs_interface_index type;
T
Tetsuo Handa 已提交
662 663 664 665
	/* Users counter protected by tomoyo_io_buffer_list_lock. */
	u8 users;
	/* List for telling GC not to kfree() elements. */
	struct list_head list;
666 667
};

T
Tetsuo Handa 已提交
668
/*
T
Tetsuo Handa 已提交
669 670
 * Structure for "initialize_domain"/"no_initialize_domain"/"keep_domain"/
 * "no_keep_domain" keyword.
T
Tetsuo Handa 已提交
671
 */
672
struct tomoyo_transition_control {
673
	struct tomoyo_acl_head head;
674
	u8 type; /* One of values in "enum tomoyo_transition_type".  */
T
Tetsuo Handa 已提交
675 676
	/* True if the domainname is tomoyo_get_last_name(). */
	bool is_last_name;
677 678
	const struct tomoyo_path_info *domainname; /* Maybe NULL */
	const struct tomoyo_path_info *program;    /* Maybe NULL */
T
Tetsuo Handa 已提交
679 680
};

T
Tetsuo Handa 已提交
681
/* Structure for "aggregator" keyword. */
T
Tetsuo Handa 已提交
682
struct tomoyo_aggregator {
683
	struct tomoyo_acl_head head;
684 685 686 687
	const struct tomoyo_path_info *original_name;
	const struct tomoyo_path_info *aggregated_name;
};

T
Tetsuo Handa 已提交
688
/* Structure for policy manager. */
T
Tetsuo Handa 已提交
689
struct tomoyo_manager {
690 691
	struct tomoyo_acl_head head;
	bool is_domain;  /* True if manager is a domainname. */
T
Tetsuo Handa 已提交
692 693 694 695
	/* A path to program or a domainname. */
	const struct tomoyo_path_info *manager;
};

T
Tetsuo Handa 已提交
696 697 698 699 700 701 702
struct tomoyo_preference {
	unsigned int learning_max_entry;
	bool enforcing_verbose;
	bool learning_verbose;
	bool permissive_verbose;
};

T
Tetsuo Handa 已提交
703
/* Structure for /sys/kernel/security/tomnoyo/profile interface. */
T
Tetsuo Handa 已提交
704 705 706 707 708 709 710 711
struct tomoyo_profile {
	const struct tomoyo_path_info *comment;
	struct tomoyo_preference *learning;
	struct tomoyo_preference *permissive;
	struct tomoyo_preference *enforcing;
	struct tomoyo_preference preference;
	u8 default_config;
	u8 config[TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX];
712
	unsigned int pref[TOMOYO_MAX_PREF];
T
Tetsuo Handa 已提交
713 714
};

T
Tetsuo Handa 已提交
715 716 717 718 719 720 721 722 723 724
/* Structure for representing YYYY/MM/DD hh/mm/ss. */
struct tomoyo_time {
	u16 year;
	u8 month;
	u8 day;
	u8 hour;
	u8 min;
	u8 sec;
};

725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
/* Structure for policy namespace. */
struct tomoyo_policy_namespace {
	/* Profile table. Memory is allocated as needed. */
	struct tomoyo_profile *profile_ptr[TOMOYO_MAX_PROFILES];
	/* List of "struct tomoyo_group". */
	struct list_head group_list[TOMOYO_MAX_GROUP];
	/* List of policy. */
	struct list_head policy_list[TOMOYO_MAX_POLICY];
	/* The global ACL referred by "use_group" keyword. */
	struct list_head acl_group[TOMOYO_MAX_ACL_GROUPS];
	/* List for connecting to tomoyo_namespace_list list. */
	struct list_head namespace_list;
	/* Profile version. Currently only 20100903 is defined. */
	unsigned int profile_version;
	/* Name of this namespace (e.g. "<kernel>", "</usr/sbin/httpd>" ). */
	const char *name;
};

T
Tetsuo Handa 已提交
743 744
/********** Function prototypes. **********/

T
Tetsuo Handa 已提交
745 746
bool tomoyo_compare_number_union(const unsigned long value,
				 const struct tomoyo_number_union *ptr);
747 748
bool tomoyo_condition(struct tomoyo_request_info *r,
		      const struct tomoyo_condition *cond);
T
Tetsuo Handa 已提交
749 750 751 752
bool tomoyo_correct_domain(const unsigned char *domainname);
bool tomoyo_correct_path(const char *filename);
bool tomoyo_correct_word(const char *string);
bool tomoyo_domain_def(const unsigned char *buffer);
T
Tetsuo Handa 已提交
753 754
bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r);
bool tomoyo_memory_ok(void *ptr);
755 756
bool tomoyo_number_matches_group(const unsigned long min,
				 const unsigned long max,
757
				 const struct tomoyo_group *group);
T
Tetsuo Handa 已提交
758 759
bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
			     struct tomoyo_name_union *ptr);
760 761
bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
			       struct tomoyo_number_union *ptr);
T
Tetsuo Handa 已提交
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
				 const struct tomoyo_path_info *pattern);
bool tomoyo_permstr(const char *string, const char *keyword);
bool tomoyo_str_starts(char **src, const char *find);
char *tomoyo_encode(const char *str);
char *tomoyo_init_log(struct tomoyo_request_info *r, int len, const char *fmt,
		      va_list args);
char *tomoyo_read_token(struct tomoyo_acl_param *param);
char *tomoyo_realpath_from_path(struct path *path);
char *tomoyo_realpath_nofollow(const char *pathname);
const char *tomoyo_get_exe(void);
const char *tomoyo_yesno(const unsigned int value);
const struct tomoyo_path_info *tomoyo_compare_name_union
(const struct tomoyo_path_info *name, const struct tomoyo_name_union *ptr);
const struct tomoyo_path_info *tomoyo_get_name(const char *name);
const struct tomoyo_path_info *tomoyo_path_matches_group
(const struct tomoyo_path_info *pathname, const struct tomoyo_group *group);
int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
				 struct path *path, const int flag);
int tomoyo_close_control(struct tomoyo_io_buffer *head);
int tomoyo_find_next_domain(struct linux_binprm *bprm);
int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
		    const u8 index);
T
Tetsuo Handa 已提交
785
int tomoyo_init_request_info(struct tomoyo_request_info *r,
T
Tetsuo Handa 已提交
786 787
			     struct tomoyo_domain_info *domain,
			     const u8 index);
T
Tetsuo Handa 已提交
788 789
int tomoyo_mkdev_perm(const u8 operation, struct path *path,
		      const unsigned int mode, unsigned int dev);
T
Tetsuo Handa 已提交
790 791 792
int tomoyo_mount_permission(char *dev_name, struct path *path,
			    const char *type, unsigned long flags,
			    void *data_page);
T
Tetsuo Handa 已提交
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
int tomoyo_open_control(const u8 type, struct file *file);
int tomoyo_path2_perm(const u8 operation, struct path *path1,
		      struct path *path2);
int tomoyo_path_number_perm(const u8 operation, struct path *path,
			    unsigned long number);
int tomoyo_path_perm(const u8 operation, struct path *path);
int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
			   const struct tomoyo_path_info *filename);
int tomoyo_poll_control(struct file *file, poll_table *wait);
int tomoyo_poll_log(struct file *file, poll_table *wait);
int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
	__printf(2, 3);
int tomoyo_update_domain(struct tomoyo_acl_info *new_entry, const int size,
			 struct tomoyo_acl_param *param,
			 bool (*check_duplicate)
			 (const struct tomoyo_acl_info *,
			  const struct tomoyo_acl_info *),
			 bool (*merge_duplicate)
			 (struct tomoyo_acl_info *, struct tomoyo_acl_info *,
			  const bool));
int tomoyo_update_policy(struct tomoyo_acl_head *new_entry, const int size,
			 struct tomoyo_acl_param *param,
			 bool (*check_duplicate)
			 (const struct tomoyo_acl_head *,
			  const struct tomoyo_acl_head *));
818 819 820
int tomoyo_write_aggregator(struct tomoyo_acl_param *param);
int tomoyo_write_file(struct tomoyo_acl_param *param);
int tomoyo_write_group(struct tomoyo_acl_param *param, const u8 type);
T
Tetsuo Handa 已提交
821 822 823 824 825 826
int tomoyo_write_transition_control(struct tomoyo_acl_param *param,
				    const u8 type);
ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
			    const int buffer_len);
ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
			     const char __user *buffer, const int buffer_len);
827
struct tomoyo_condition *tomoyo_get_condition(struct tomoyo_acl_param *param);
T
Tetsuo Handa 已提交
828
struct tomoyo_domain_info *tomoyo_assign_domain(const char *domainname,
829
						const bool transit);
T
Tetsuo Handa 已提交
830
struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname);
831 832
struct tomoyo_group *tomoyo_get_group(struct tomoyo_acl_param *param,
				      const u8 idx);
T
Tetsuo Handa 已提交
833 834 835 836
struct tomoyo_policy_namespace *tomoyo_assign_namespace
(const char *domainname);
struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
				      const u8 profile);
837 838
unsigned int tomoyo_check_flags(const struct tomoyo_domain_info *domain,
				const u8 index);
839
u8 tomoyo_parse_ulong(unsigned long *result, char **str);
840
void *tomoyo_commit_ok(void *data, const unsigned int size);
841
void __init tomoyo_load_builtin_policy(void);
T
Tetsuo Handa 已提交
842
void __init tomoyo_mm_init(void);
843
void tomoyo_check_acl(struct tomoyo_request_info *r,
844
		      bool (*check_entry) (struct tomoyo_request_info *,
845
					   const struct tomoyo_acl_info *));
T
Tetsuo Handa 已提交
846 847
void tomoyo_check_profile(void);
void tomoyo_convert_time(time_t time, struct tomoyo_time *stamp);
848
void tomoyo_del_condition(struct list_head *element);
T
Tetsuo Handa 已提交
849
void tomoyo_fill_path_info(struct tomoyo_path_info *ptr);
850
void tomoyo_get_attributes(struct tomoyo_obj_info *obj);
T
Tetsuo Handa 已提交
851 852 853 854 855 856 857 858 859 860 861 862 863 864
void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns);
void tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt, ...)
	 __printf(2, 3);
void tomoyo_load_policy(const char *filename);
void tomoyo_memory_free(void *ptr);
void tomoyo_normalize_line(unsigned char *buffer);
void tomoyo_notify_gc(struct tomoyo_io_buffer *head, const bool is_register);
void tomoyo_print_ulong(char *buffer, const int buffer_len,
			const unsigned long value, const u8 type);
void tomoyo_put_name_union(struct tomoyo_name_union *ptr);
void tomoyo_put_number_union(struct tomoyo_number_union *ptr);
void tomoyo_read_log(struct tomoyo_io_buffer *head);
void tomoyo_update_stat(const u8 index);
void tomoyo_warn_oom(const char *function);
865
void tomoyo_write_log(struct tomoyo_request_info *r, const char *fmt, ...)
T
Tetsuo Handa 已提交
866
	__printf(2, 3);
T
Tetsuo Handa 已提交
867 868 869
void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt,
		       va_list args);

T
Tetsuo Handa 已提交
870 871 872
/********** External variable definitions. **********/

extern bool tomoyo_policy_loaded;
873 874
extern const char * const tomoyo_condition_keyword
[TOMOYO_MAX_CONDITION_KEYWORD];
T
Tetsuo Handa 已提交
875 876 877 878
extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS];
extern const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
					      + TOMOYO_MAX_MAC_CATEGORY_INDEX];
extern const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE];
T
Tetsuo Handa 已提交
879 880
extern const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION];
extern const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX];
T
Tetsuo Handa 已提交
881
extern const u8 tomoyo_pn2mac[TOMOYO_MAX_PATH_NUMBER_OPERATION];
T
Tetsuo Handa 已提交
882 883
extern const u8 tomoyo_pnnn2mac[TOMOYO_MAX_MKDEV_OPERATION];
extern const u8 tomoyo_pp2mac[TOMOYO_MAX_PATH2_OPERATION];
884
extern struct list_head tomoyo_condition_list;
T
Tetsuo Handa 已提交
885 886 887 888 889 890 891
extern struct list_head tomoyo_domain_list;
extern struct list_head tomoyo_name_list[TOMOYO_MAX_HASH];
extern struct list_head tomoyo_namespace_list;
extern struct mutex tomoyo_policy_lock;
extern struct srcu_struct tomoyo_ss;
extern struct tomoyo_domain_info tomoyo_kernel_domain;
extern struct tomoyo_policy_namespace tomoyo_kernel_namespace;
T
Tetsuo Handa 已提交
892 893
extern unsigned int tomoyo_memory_quota[TOMOYO_MAX_MEMORY_STAT];
extern unsigned int tomoyo_memory_used[TOMOYO_MAX_MEMORY_STAT];
894

T
Tetsuo Handa 已提交
895 896
/********** Inlined functions. **********/

T
Tetsuo Handa 已提交
897 898 899 900 901
/**
 * tomoyo_read_lock - Take lock for protecting policy.
 *
 * Returns index number for tomoyo_read_unlock().
 */
T
Tetsuo Handa 已提交
902 903 904 905 906
static inline int tomoyo_read_lock(void)
{
	return srcu_read_lock(&tomoyo_ss);
}

T
Tetsuo Handa 已提交
907 908 909 910 911 912 913
/**
 * tomoyo_read_unlock - Release lock for protecting policy.
 *
 * @idx: Index number returned by tomoyo_read_lock().
 *
 * Returns nothing.
 */
T
Tetsuo Handa 已提交
914 915 916 917 918
static inline void tomoyo_read_unlock(int idx)
{
	srcu_read_unlock(&tomoyo_ss, idx);
}

919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
/**
 * tomoyo_sys_getppid - Copy of getppid().
 *
 * Returns parent process's PID.
 *
 * Alpha does not have getppid() defined. To be able to build this module on
 * Alpha, I have to copy getppid() from kernel/timer.c.
 */
static inline pid_t tomoyo_sys_getppid(void)
{
	pid_t pid;
	rcu_read_lock();
	pid = task_tgid_vnr(current->real_parent);
	rcu_read_unlock();
	return pid;
}

/**
 * tomoyo_sys_getpid - Copy of getpid().
 *
 * Returns current thread's PID.
 *
 * Alpha does not have getpid() defined. To be able to build this module on
 * Alpha, I have to copy getpid() from kernel/timer.c.
 */
static inline pid_t tomoyo_sys_getpid(void)
{
	return task_tgid_vnr(current);
}

T
Tetsuo Handa 已提交
949 950 951 952 953 954 955 956
/**
 * tomoyo_pathcmp - strcmp() for "struct tomoyo_path_info" structure.
 *
 * @a: Pointer to "struct tomoyo_path_info".
 * @b: Pointer to "struct tomoyo_path_info".
 *
 * Returns true if @a == @b, false otherwise.
 */
957 958 959 960 961 962
static inline bool tomoyo_pathcmp(const struct tomoyo_path_info *a,
				  const struct tomoyo_path_info *b)
{
	return a->hash != b->hash || strcmp(a->name, b->name);
}

T
Tetsuo Handa 已提交
963 964 965 966 967 968 969
/**
 * tomoyo_put_name - Drop reference on "struct tomoyo_name".
 *
 * @name: Pointer to "struct tomoyo_path_info". Maybe NULL.
 *
 * Returns nothing.
 */
T
Tetsuo Handa 已提交
970 971 972
static inline void tomoyo_put_name(const struct tomoyo_path_info *name)
{
	if (name) {
T
Tetsuo Handa 已提交
973 974
		struct tomoyo_name *ptr =
			container_of(name, typeof(*ptr), entry);
T
Tetsuo Handa 已提交
975
		atomic_dec(&ptr->head.users);
T
Tetsuo Handa 已提交
976 977
	}
}
978

979 980 981 982 983 984 985 986 987 988 989 990 991
/**
 * tomoyo_put_condition - Drop reference on "struct tomoyo_condition".
 *
 * @cond: Pointer to "struct tomoyo_condition". Maybe NULL.
 *
 * Returns nothing.
 */
static inline void tomoyo_put_condition(struct tomoyo_condition *cond)
{
	if (cond)
		atomic_dec(&cond->head.users);
}

T
Tetsuo Handa 已提交
992 993 994 995 996 997 998
/**
 * tomoyo_put_group - Drop reference on "struct tomoyo_group".
 *
 * @group: Pointer to "struct tomoyo_group". Maybe NULL.
 *
 * Returns nothing.
 */
999
static inline void tomoyo_put_group(struct tomoyo_group *group)
1000 1001
{
	if (group)
T
Tetsuo Handa 已提交
1002
		atomic_dec(&group->head.users);
1003 1004
}

T
Tetsuo Handa 已提交
1005 1006 1007 1008 1009
/**
 * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread.
 *
 * Returns pointer to "struct tomoyo_domain_info" for current thread.
 */
T
Tetsuo Handa 已提交
1010 1011 1012 1013
static inline struct tomoyo_domain_info *tomoyo_domain(void)
{
	return current_cred()->security;
}
1014

T
Tetsuo Handa 已提交
1015 1016 1017 1018 1019 1020 1021
/**
 * tomoyo_real_domain - Get "struct tomoyo_domain_info" for specified thread.
 *
 * @task: Pointer to "struct task_struct".
 *
 * Returns pointer to "struct tomoyo_security" for specified thread.
 */
T
Tetsuo Handa 已提交
1022 1023 1024 1025 1026
static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct
							    *task)
{
	return task_cred_xxx(task, security);
}
1027

T
Tetsuo Handa 已提交
1028 1029 1030 1031 1032 1033 1034 1035
/**
 * tomoyo_same_name_union - Check for duplicated "struct tomoyo_name_union" entry.
 *
 * @a: Pointer to "struct tomoyo_name_union".
 * @b: Pointer to "struct tomoyo_name_union".
 *
 * Returns true if @a == @b, false otherwise.
 */
T
Tetsuo Handa 已提交
1036
static inline bool tomoyo_same_name_union
T
Tetsuo Handa 已提交
1037
(const struct tomoyo_name_union *a, const struct tomoyo_name_union *b)
1038
{
T
Tetsuo Handa 已提交
1039
	return a->filename == b->filename && a->group == b->group;
1040 1041
}

T
Tetsuo Handa 已提交
1042 1043 1044 1045 1046 1047 1048 1049
/**
 * tomoyo_same_number_union - Check for duplicated "struct tomoyo_number_union" entry.
 *
 * @a: Pointer to "struct tomoyo_number_union".
 * @b: Pointer to "struct tomoyo_number_union".
 *
 * Returns true if @a == @b, false otherwise.
 */
T
Tetsuo Handa 已提交
1050
static inline bool tomoyo_same_number_union
T
Tetsuo Handa 已提交
1051
(const struct tomoyo_number_union *a, const struct tomoyo_number_union *b)
1052
{
T
Tetsuo Handa 已提交
1053
	return a->values[0] == b->values[0] && a->values[1] == b->values[1] &&
T
Tetsuo Handa 已提交
1054 1055
		a->group == b->group && a->value_type[0] == b->value_type[0] &&
		a->value_type[1] == b->value_type[1];
1056 1057
}

1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
/**
 * tomoyo_current_namespace - Get "struct tomoyo_policy_namespace" for current thread.
 *
 * Returns pointer to "struct tomoyo_policy_namespace" for current thread.
 */
static inline struct tomoyo_policy_namespace *tomoyo_current_namespace(void)
{
	return tomoyo_domain()->ns;
}

T
Tetsuo Handa 已提交
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
#if defined(CONFIG_SLOB)

/**
 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
 *
 * @size: Size to be rounded up.
 *
 * Returns @size.
 *
 * Since SLOB does not round up, this function simply returns @size.
 */
static inline int tomoyo_round2(size_t size)
{
	return size;
}

#else

/**
 * tomoyo_round2 - Round up to power of 2 for calculating memory usage.
 *
 * @size: Size to be rounded up.
 *
 * Returns rounded size.
 *
 * Strictly speaking, SLAB may be able to allocate (e.g.) 96 bytes instead of
 * (e.g.) 128 bytes.
 */
static inline int tomoyo_round2(size_t size)
{
#if PAGE_SIZE == 4096
	size_t bsize = 32;
#else
	size_t bsize = 64;
#endif
	if (!size)
		return 0;
	while (size > bsize)
		bsize <<= 1;
	return bsize;
}

#endif

1112 1113 1114 1115 1116
/**
 * list_for_each_cookie - iterate over a list with cookie.
 * @pos:        the &struct list_head to use as a loop cursor.
 * @head:       the head for your list.
 */
T
Tetsuo Handa 已提交
1117 1118 1119 1120
#define list_for_each_cookie(pos, head)					\
	if (!pos)							\
		pos =  srcu_dereference((head)->next, &tomoyo_ss);	\
	for ( ; pos != (head); pos = srcu_dereference(pos->next, &tomoyo_ss))
1121

1122
#endif /* !defined(_SECURITY_TOMOYO_COMMON_H) */