2 * security/tomoyo/common.c
4 * Copyright (C) 2005-2011 NTT DATA CORPORATION
7 #include <linux/uaccess.h>
8 #include <linux/slab.h>
9 #include <linux/security.h>
12 /* String table for operation mode. */
13 const char * const tomoyo_mode
[TOMOYO_CONFIG_MAX_MODE
] = {
14 [TOMOYO_CONFIG_DISABLED
] = "disabled",
15 [TOMOYO_CONFIG_LEARNING
] = "learning",
16 [TOMOYO_CONFIG_PERMISSIVE
] = "permissive",
17 [TOMOYO_CONFIG_ENFORCING
] = "enforcing"
20 /* String table for /sys/kernel/security/tomoyo/profile */
21 const char * const tomoyo_mac_keywords
[TOMOYO_MAX_MAC_INDEX
22 + TOMOYO_MAX_MAC_CATEGORY_INDEX
] = {
23 [TOMOYO_MAC_FILE_EXECUTE
] = "execute",
24 [TOMOYO_MAC_FILE_OPEN
] = "open",
25 [TOMOYO_MAC_FILE_CREATE
] = "create",
26 [TOMOYO_MAC_FILE_UNLINK
] = "unlink",
27 [TOMOYO_MAC_FILE_GETATTR
] = "getattr",
28 [TOMOYO_MAC_FILE_MKDIR
] = "mkdir",
29 [TOMOYO_MAC_FILE_RMDIR
] = "rmdir",
30 [TOMOYO_MAC_FILE_MKFIFO
] = "mkfifo",
31 [TOMOYO_MAC_FILE_MKSOCK
] = "mksock",
32 [TOMOYO_MAC_FILE_TRUNCATE
] = "truncate",
33 [TOMOYO_MAC_FILE_SYMLINK
] = "symlink",
34 [TOMOYO_MAC_FILE_MKBLOCK
] = "mkblock",
35 [TOMOYO_MAC_FILE_MKCHAR
] = "mkchar",
36 [TOMOYO_MAC_FILE_LINK
] = "link",
37 [TOMOYO_MAC_FILE_RENAME
] = "rename",
38 [TOMOYO_MAC_FILE_CHMOD
] = "chmod",
39 [TOMOYO_MAC_FILE_CHOWN
] = "chown",
40 [TOMOYO_MAC_FILE_CHGRP
] = "chgrp",
41 [TOMOYO_MAC_FILE_IOCTL
] = "ioctl",
42 [TOMOYO_MAC_FILE_CHROOT
] = "chroot",
43 [TOMOYO_MAC_FILE_MOUNT
] = "mount",
44 [TOMOYO_MAC_FILE_UMOUNT
] = "unmount",
45 [TOMOYO_MAC_FILE_PIVOT_ROOT
] = "pivot_root",
46 [TOMOYO_MAX_MAC_INDEX
+ TOMOYO_MAC_CATEGORY_FILE
] = "file",
49 /* String table for conditions. */
50 const char * const tomoyo_condition_keyword
[TOMOYO_MAX_CONDITION_KEYWORD
] = {
51 [TOMOYO_TASK_UID
] = "task.uid",
52 [TOMOYO_TASK_EUID
] = "task.euid",
53 [TOMOYO_TASK_SUID
] = "task.suid",
54 [TOMOYO_TASK_FSUID
] = "task.fsuid",
55 [TOMOYO_TASK_GID
] = "task.gid",
56 [TOMOYO_TASK_EGID
] = "task.egid",
57 [TOMOYO_TASK_SGID
] = "task.sgid",
58 [TOMOYO_TASK_FSGID
] = "task.fsgid",
59 [TOMOYO_TASK_PID
] = "task.pid",
60 [TOMOYO_TASK_PPID
] = "task.ppid",
61 [TOMOYO_EXEC_ARGC
] = "exec.argc",
62 [TOMOYO_EXEC_ENVC
] = "exec.envc",
63 [TOMOYO_TYPE_IS_SOCKET
] = "socket",
64 [TOMOYO_TYPE_IS_SYMLINK
] = "symlink",
65 [TOMOYO_TYPE_IS_FILE
] = "file",
66 [TOMOYO_TYPE_IS_BLOCK_DEV
] = "block",
67 [TOMOYO_TYPE_IS_DIRECTORY
] = "directory",
68 [TOMOYO_TYPE_IS_CHAR_DEV
] = "char",
69 [TOMOYO_TYPE_IS_FIFO
] = "fifo",
70 [TOMOYO_MODE_SETUID
] = "setuid",
71 [TOMOYO_MODE_SETGID
] = "setgid",
72 [TOMOYO_MODE_STICKY
] = "sticky",
73 [TOMOYO_MODE_OWNER_READ
] = "owner_read",
74 [TOMOYO_MODE_OWNER_WRITE
] = "owner_write",
75 [TOMOYO_MODE_OWNER_EXECUTE
] = "owner_execute",
76 [TOMOYO_MODE_GROUP_READ
] = "group_read",
77 [TOMOYO_MODE_GROUP_WRITE
] = "group_write",
78 [TOMOYO_MODE_GROUP_EXECUTE
] = "group_execute",
79 [TOMOYO_MODE_OTHERS_READ
] = "others_read",
80 [TOMOYO_MODE_OTHERS_WRITE
] = "others_write",
81 [TOMOYO_MODE_OTHERS_EXECUTE
] = "others_execute",
82 [TOMOYO_EXEC_REALPATH
] = "exec.realpath",
83 [TOMOYO_SYMLINK_TARGET
] = "symlink.target",
84 [TOMOYO_PATH1_UID
] = "path1.uid",
85 [TOMOYO_PATH1_GID
] = "path1.gid",
86 [TOMOYO_PATH1_INO
] = "path1.ino",
87 [TOMOYO_PATH1_MAJOR
] = "path1.major",
88 [TOMOYO_PATH1_MINOR
] = "path1.minor",
89 [TOMOYO_PATH1_PERM
] = "path1.perm",
90 [TOMOYO_PATH1_TYPE
] = "path1.type",
91 [TOMOYO_PATH1_DEV_MAJOR
] = "path1.dev_major",
92 [TOMOYO_PATH1_DEV_MINOR
] = "path1.dev_minor",
93 [TOMOYO_PATH2_UID
] = "path2.uid",
94 [TOMOYO_PATH2_GID
] = "path2.gid",
95 [TOMOYO_PATH2_INO
] = "path2.ino",
96 [TOMOYO_PATH2_MAJOR
] = "path2.major",
97 [TOMOYO_PATH2_MINOR
] = "path2.minor",
98 [TOMOYO_PATH2_PERM
] = "path2.perm",
99 [TOMOYO_PATH2_TYPE
] = "path2.type",
100 [TOMOYO_PATH2_DEV_MAJOR
] = "path2.dev_major",
101 [TOMOYO_PATH2_DEV_MINOR
] = "path2.dev_minor",
102 [TOMOYO_PATH1_PARENT_UID
] = "path1.parent.uid",
103 [TOMOYO_PATH1_PARENT_GID
] = "path1.parent.gid",
104 [TOMOYO_PATH1_PARENT_INO
] = "path1.parent.ino",
105 [TOMOYO_PATH1_PARENT_PERM
] = "path1.parent.perm",
106 [TOMOYO_PATH2_PARENT_UID
] = "path2.parent.uid",
107 [TOMOYO_PATH2_PARENT_GID
] = "path2.parent.gid",
108 [TOMOYO_PATH2_PARENT_INO
] = "path2.parent.ino",
109 [TOMOYO_PATH2_PARENT_PERM
] = "path2.parent.perm",
112 /* String table for PREFERENCE keyword. */
113 static const char * const tomoyo_pref_keywords
[TOMOYO_MAX_PREF
] = {
114 [TOMOYO_PREF_MAX_AUDIT_LOG
] = "max_audit_log",
115 [TOMOYO_PREF_MAX_LEARNING_ENTRY
] = "max_learning_entry",
118 /* String table for path operation. */
119 const char * const tomoyo_path_keyword
[TOMOYO_MAX_PATH_OPERATION
] = {
120 [TOMOYO_TYPE_EXECUTE
] = "execute",
121 [TOMOYO_TYPE_READ
] = "read",
122 [TOMOYO_TYPE_WRITE
] = "write",
123 [TOMOYO_TYPE_APPEND
] = "append",
124 [TOMOYO_TYPE_UNLINK
] = "unlink",
125 [TOMOYO_TYPE_GETATTR
] = "getattr",
126 [TOMOYO_TYPE_RMDIR
] = "rmdir",
127 [TOMOYO_TYPE_TRUNCATE
] = "truncate",
128 [TOMOYO_TYPE_SYMLINK
] = "symlink",
129 [TOMOYO_TYPE_CHROOT
] = "chroot",
130 [TOMOYO_TYPE_UMOUNT
] = "unmount",
133 /* String table for categories. */
134 static const char * const tomoyo_category_keywords
135 [TOMOYO_MAX_MAC_CATEGORY_INDEX
] = {
136 [TOMOYO_MAC_CATEGORY_FILE
] = "file",
139 /* Permit policy management by non-root user? */
140 static bool tomoyo_manage_by_non_root
;
142 /* Utility functions. */
145 * tomoyo_yesno - Return "yes" or "no".
147 * @value: Bool value.
149 const char *tomoyo_yesno(const unsigned int value
)
151 return value
? "yes" : "no";
155 * tomoyo_addprintf - strncat()-like-snprintf().
157 * @buffer: Buffer to write to. Must be '\0'-terminated.
158 * @len: Size of @buffer.
159 * @fmt: The printf()'s format string, followed by parameters.
163 static void tomoyo_addprintf(char *buffer
, int len
, const char *fmt
, ...)
166 const int pos
= strlen(buffer
);
168 vsnprintf(buffer
+ pos
, len
- pos
- 1, fmt
, args
);
173 * tomoyo_flush - Flush queued string to userspace's buffer.
175 * @head: Pointer to "struct tomoyo_io_buffer".
177 * Returns true if all data was flushed, false otherwise.
179 static bool tomoyo_flush(struct tomoyo_io_buffer
*head
)
181 while (head
->r
.w_pos
) {
182 const char *w
= head
->r
.w
[0];
183 size_t len
= strlen(w
);
185 if (len
> head
->read_user_buf_avail
)
186 len
= head
->read_user_buf_avail
;
189 if (copy_to_user(head
->read_user_buf
, w
, len
))
191 head
->read_user_buf_avail
-= len
;
192 head
->read_user_buf
+= len
;
198 /* Add '\0' for audit logs and query. */
200 if (!head
->read_user_buf_avail
||
201 copy_to_user(head
->read_user_buf
, "", 1))
203 head
->read_user_buf_avail
--;
204 head
->read_user_buf
++;
207 for (len
= 0; len
< head
->r
.w_pos
; len
++)
208 head
->r
.w
[len
] = head
->r
.w
[len
+ 1];
215 * tomoyo_set_string - Queue string to "struct tomoyo_io_buffer" structure.
217 * @head: Pointer to "struct tomoyo_io_buffer".
218 * @string: String to print.
220 * Note that @string has to be kept valid until @head is kfree()d.
221 * This means that char[] allocated on stack memory cannot be passed to
222 * this function. Use tomoyo_io_printf() for char[] allocated on stack memory.
224 static void tomoyo_set_string(struct tomoyo_io_buffer
*head
, const char *string
)
226 if (head
->r
.w_pos
< TOMOYO_MAX_IO_READ_QUEUE
) {
227 head
->r
.w
[head
->r
.w_pos
++] = string
;
234 * tomoyo_io_printf - printf() to "struct tomoyo_io_buffer" structure.
236 * @head: Pointer to "struct tomoyo_io_buffer".
237 * @fmt: The printf()'s format string, followed by parameters.
239 void tomoyo_io_printf(struct tomoyo_io_buffer
*head
, const char *fmt
, ...)
243 size_t pos
= head
->r
.avail
;
244 int size
= head
->readbuf_size
- pos
;
248 len
= vsnprintf(head
->read_buf
+ pos
, size
, fmt
, args
) + 1;
250 if (pos
+ len
>= head
->readbuf_size
) {
254 head
->r
.avail
+= len
;
255 tomoyo_set_string(head
, head
->read_buf
+ pos
);
259 * tomoyo_set_space - Put a space to "struct tomoyo_io_buffer" structure.
261 * @head: Pointer to "struct tomoyo_io_buffer".
265 static void tomoyo_set_space(struct tomoyo_io_buffer
*head
)
267 tomoyo_set_string(head
, " ");
271 * tomoyo_set_lf - Put a line feed to "struct tomoyo_io_buffer" structure.
273 * @head: Pointer to "struct tomoyo_io_buffer".
277 static bool tomoyo_set_lf(struct tomoyo_io_buffer
*head
)
279 tomoyo_set_string(head
, "\n");
280 return !head
->r
.w_pos
;
284 * tomoyo_set_slash - Put a shash to "struct tomoyo_io_buffer" structure.
286 * @head: Pointer to "struct tomoyo_io_buffer".
290 static void tomoyo_set_slash(struct tomoyo_io_buffer
*head
)
292 tomoyo_set_string(head
, "/");
295 /* List of namespaces. */
296 LIST_HEAD(tomoyo_namespace_list
);
297 /* True if namespace other than tomoyo_kernel_namespace is defined. */
298 static bool tomoyo_namespace_enabled
;
301 * tomoyo_init_policy_namespace - Initialize namespace.
303 * @ns: Pointer to "struct tomoyo_policy_namespace".
307 void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace
*ns
)
310 for (idx
= 0; idx
< TOMOYO_MAX_ACL_GROUPS
; idx
++)
311 INIT_LIST_HEAD(&ns
->acl_group
[idx
]);
312 for (idx
= 0; idx
< TOMOYO_MAX_GROUP
; idx
++)
313 INIT_LIST_HEAD(&ns
->group_list
[idx
]);
314 for (idx
= 0; idx
< TOMOYO_MAX_POLICY
; idx
++)
315 INIT_LIST_HEAD(&ns
->policy_list
[idx
]);
316 ns
->profile_version
= 20100903;
317 tomoyo_namespace_enabled
= !list_empty(&tomoyo_namespace_list
);
318 list_add_tail_rcu(&ns
->namespace_list
, &tomoyo_namespace_list
);
322 * tomoyo_print_namespace - Print namespace header.
324 * @head: Pointer to "struct tomoyo_io_buffer".
328 static void tomoyo_print_namespace(struct tomoyo_io_buffer
*head
)
330 if (!tomoyo_namespace_enabled
)
332 tomoyo_set_string(head
,
333 container_of(head
->r
.ns
,
334 struct tomoyo_policy_namespace
,
335 namespace_list
)->name
);
336 tomoyo_set_space(head
);
340 * tomoyo_print_name_union - Print a tomoyo_name_union.
342 * @head: Pointer to "struct tomoyo_io_buffer".
343 * @ptr: Pointer to "struct tomoyo_name_union".
345 static void tomoyo_print_name_union(struct tomoyo_io_buffer
*head
,
346 const struct tomoyo_name_union
*ptr
)
348 tomoyo_set_space(head
);
350 tomoyo_set_string(head
, "@");
351 tomoyo_set_string(head
, ptr
->group
->group_name
->name
);
353 tomoyo_set_string(head
, ptr
->filename
->name
);
358 * tomoyo_print_name_union_quoted - Print a tomoyo_name_union with a quote.
360 * @head: Pointer to "struct tomoyo_io_buffer".
361 * @ptr: Pointer to "struct tomoyo_name_union".
365 static void tomoyo_print_name_union_quoted(struct tomoyo_io_buffer
*head
,
366 const struct tomoyo_name_union
*ptr
)
369 tomoyo_set_string(head
, "@");
370 tomoyo_set_string(head
, ptr
->group
->group_name
->name
);
372 tomoyo_set_string(head
, "\"");
373 tomoyo_set_string(head
, ptr
->filename
->name
);
374 tomoyo_set_string(head
, "\"");
379 * tomoyo_print_number_union_nospace - Print a tomoyo_number_union without a space.
381 * @head: Pointer to "struct tomoyo_io_buffer".
382 * @ptr: Pointer to "struct tomoyo_number_union".
386 static void tomoyo_print_number_union_nospace
387 (struct tomoyo_io_buffer
*head
, const struct tomoyo_number_union
*ptr
)
390 tomoyo_set_string(head
, "@");
391 tomoyo_set_string(head
, ptr
->group
->group_name
->name
);
394 unsigned long min
= ptr
->values
[0];
395 const unsigned long max
= ptr
->values
[1];
396 u8 min_type
= ptr
->value_type
[0];
397 const u8 max_type
= ptr
->value_type
[1];
400 for (i
= 0; i
< 2; i
++) {
402 case TOMOYO_VALUE_TYPE_HEXADECIMAL
:
403 tomoyo_addprintf(buffer
, sizeof(buffer
),
406 case TOMOYO_VALUE_TYPE_OCTAL
:
407 tomoyo_addprintf(buffer
, sizeof(buffer
),
411 tomoyo_addprintf(buffer
, sizeof(buffer
), "%lu",
415 if (min
== max
&& min_type
== max_type
)
417 tomoyo_addprintf(buffer
, sizeof(buffer
), "-");
421 tomoyo_io_printf(head
, "%s", buffer
);
426 * tomoyo_print_number_union - Print a tomoyo_number_union.
428 * @head: Pointer to "struct tomoyo_io_buffer".
429 * @ptr: Pointer to "struct tomoyo_number_union".
433 static void tomoyo_print_number_union(struct tomoyo_io_buffer
*head
,
434 const struct tomoyo_number_union
*ptr
)
436 tomoyo_set_space(head
);
437 tomoyo_print_number_union_nospace(head
, ptr
);
441 * tomoyo_assign_profile - Create a new profile.
443 * @ns: Pointer to "struct tomoyo_policy_namespace".
444 * @profile: Profile number to create.
446 * Returns pointer to "struct tomoyo_profile" on success, NULL otherwise.
448 static struct tomoyo_profile
*tomoyo_assign_profile
449 (struct tomoyo_policy_namespace
*ns
, const unsigned int profile
)
451 struct tomoyo_profile
*ptr
;
452 struct tomoyo_profile
*entry
;
453 if (profile
>= TOMOYO_MAX_PROFILES
)
455 ptr
= ns
->profile_ptr
[profile
];
458 entry
= kzalloc(sizeof(*entry
), GFP_NOFS
);
459 if (mutex_lock_interruptible(&tomoyo_policy_lock
))
461 ptr
= ns
->profile_ptr
[profile
];
462 if (!ptr
&& tomoyo_memory_ok(entry
)) {
464 ptr
->default_config
= TOMOYO_CONFIG_DISABLED
|
465 TOMOYO_CONFIG_WANT_GRANT_LOG
|
466 TOMOYO_CONFIG_WANT_REJECT_LOG
;
467 memset(ptr
->config
, TOMOYO_CONFIG_USE_DEFAULT
,
468 sizeof(ptr
->config
));
469 ptr
->pref
[TOMOYO_PREF_MAX_AUDIT_LOG
] = 1024;
470 ptr
->pref
[TOMOYO_PREF_MAX_LEARNING_ENTRY
] = 2048;
471 mb(); /* Avoid out-of-order execution. */
472 ns
->profile_ptr
[profile
] = ptr
;
475 mutex_unlock(&tomoyo_policy_lock
);
482 * tomoyo_profile - Find a profile.
484 * @ns: Pointer to "struct tomoyo_policy_namespace".
485 * @profile: Profile number to find.
487 * Returns pointer to "struct tomoyo_profile".
489 struct tomoyo_profile
*tomoyo_profile(const struct tomoyo_policy_namespace
*ns
,
492 static struct tomoyo_profile tomoyo_null_profile
;
493 struct tomoyo_profile
*ptr
= ns
->profile_ptr
[profile
];
495 ptr
= &tomoyo_null_profile
;
500 * tomoyo_find_yesno - Find values for specified keyword.
502 * @string: String to check.
503 * @find: Name of keyword.
505 * Returns 1 if "@find=yes" was found, 0 if "@find=no" was found, -1 otherwise.
507 static s8
tomoyo_find_yesno(const char *string
, const char *find
)
509 const char *cp
= strstr(string
, find
);
512 if (!strncmp(cp
, "=yes", 4))
514 else if (!strncmp(cp
, "=no", 3))
521 * tomoyo_set_uint - Set value for specified preference.
523 * @i: Pointer to "unsigned int".
524 * @string: String to check.
525 * @find: Name of keyword.
529 static void tomoyo_set_uint(unsigned int *i
, const char *string
,
532 const char *cp
= strstr(string
, find
);
534 sscanf(cp
+ strlen(find
), "=%u", i
);
538 * tomoyo_set_mode - Set mode for specified profile.
540 * @name: Name of functionality.
541 * @value: Mode for @name.
542 * @profile: Pointer to "struct tomoyo_profile".
544 * Returns 0 on success, negative value otherwise.
546 static int tomoyo_set_mode(char *name
, const char *value
,
547 struct tomoyo_profile
*profile
)
551 if (!strcmp(name
, "CONFIG")) {
552 i
= TOMOYO_MAX_MAC_INDEX
+ TOMOYO_MAX_MAC_CATEGORY_INDEX
;
553 config
= profile
->default_config
;
554 } else if (tomoyo_str_starts(&name
, "CONFIG::")) {
556 for (i
= 0; i
< TOMOYO_MAX_MAC_INDEX
557 + TOMOYO_MAX_MAC_CATEGORY_INDEX
; i
++) {
559 if (i
< TOMOYO_MAX_MAC_INDEX
) {
560 const u8 c
= tomoyo_index2category
[i
];
561 const char *category
=
562 tomoyo_category_keywords
[c
];
563 len
= strlen(category
);
564 if (strncmp(name
, category
, len
) ||
565 name
[len
++] != ':' || name
[len
++] != ':')
568 if (strcmp(name
+ len
, tomoyo_mac_keywords
[i
]))
570 config
= profile
->config
[i
];
573 if (i
== TOMOYO_MAX_MAC_INDEX
+ TOMOYO_MAX_MAC_CATEGORY_INDEX
)
578 if (strstr(value
, "use_default")) {
579 config
= TOMOYO_CONFIG_USE_DEFAULT
;
582 for (mode
= 0; mode
< 4; mode
++)
583 if (strstr(value
, tomoyo_mode
[mode
]))
585 * Update lower 3 bits in order to distinguish
586 * 'config' from 'TOMOYO_CONFIG_USE_DEAFULT'.
588 config
= (config
& ~7) | mode
;
589 if (config
!= TOMOYO_CONFIG_USE_DEFAULT
) {
590 switch (tomoyo_find_yesno(value
, "grant_log")) {
592 config
|= TOMOYO_CONFIG_WANT_GRANT_LOG
;
595 config
&= ~TOMOYO_CONFIG_WANT_GRANT_LOG
;
598 switch (tomoyo_find_yesno(value
, "reject_log")) {
600 config
|= TOMOYO_CONFIG_WANT_REJECT_LOG
;
603 config
&= ~TOMOYO_CONFIG_WANT_REJECT_LOG
;
608 if (i
< TOMOYO_MAX_MAC_INDEX
+ TOMOYO_MAX_MAC_CATEGORY_INDEX
)
609 profile
->config
[i
] = config
;
610 else if (config
!= TOMOYO_CONFIG_USE_DEFAULT
)
611 profile
->default_config
= config
;
616 * tomoyo_write_profile - Write profile table.
618 * @head: Pointer to "struct tomoyo_io_buffer".
620 * Returns 0 on success, negative value otherwise.
622 static int tomoyo_write_profile(struct tomoyo_io_buffer
*head
)
624 char *data
= head
->write_buf
;
627 struct tomoyo_profile
*profile
;
628 if (sscanf(data
, "PROFILE_VERSION=%u", &head
->w
.ns
->profile_version
)
631 i
= simple_strtoul(data
, &cp
, 10);
635 profile
= tomoyo_assign_profile(head
->w
.ns
, i
);
638 cp
= strchr(data
, '=');
642 if (!strcmp(data
, "COMMENT")) {
643 static DEFINE_SPINLOCK(lock
);
644 const struct tomoyo_path_info
*new_comment
645 = tomoyo_get_name(cp
);
646 const struct tomoyo_path_info
*old_comment
;
650 old_comment
= profile
->comment
;
651 profile
->comment
= new_comment
;
653 tomoyo_put_name(old_comment
);
656 if (!strcmp(data
, "PREFERENCE")) {
657 for (i
= 0; i
< TOMOYO_MAX_PREF
; i
++)
658 tomoyo_set_uint(&profile
->pref
[i
], cp
,
659 tomoyo_pref_keywords
[i
]);
662 return tomoyo_set_mode(data
, cp
, profile
);
666 * tomoyo_print_config - Print mode for specified functionality.
668 * @head: Pointer to "struct tomoyo_io_buffer".
669 * @config: Mode for that functionality.
673 * Caller prints functionality's name.
675 static void tomoyo_print_config(struct tomoyo_io_buffer
*head
, const u8 config
)
677 tomoyo_io_printf(head
, "={ mode=%s grant_log=%s reject_log=%s }\n",
678 tomoyo_mode
[config
& 3],
679 tomoyo_yesno(config
& TOMOYO_CONFIG_WANT_GRANT_LOG
),
680 tomoyo_yesno(config
& TOMOYO_CONFIG_WANT_REJECT_LOG
));
684 * tomoyo_read_profile - Read profile table.
686 * @head: Pointer to "struct tomoyo_io_buffer".
690 static void tomoyo_read_profile(struct tomoyo_io_buffer
*head
)
693 struct tomoyo_policy_namespace
*ns
=
694 container_of(head
->r
.ns
, typeof(*ns
), namespace_list
);
695 const struct tomoyo_profile
*profile
;
699 index
= head
->r
.index
;
700 profile
= ns
->profile_ptr
[index
];
701 switch (head
->r
.step
) {
703 tomoyo_print_namespace(head
);
704 tomoyo_io_printf(head
, "PROFILE_VERSION=%u\n",
705 ns
->profile_version
);
709 for ( ; head
->r
.index
< TOMOYO_MAX_PROFILES
;
711 if (ns
->profile_ptr
[head
->r
.index
])
713 if (head
->r
.index
== TOMOYO_MAX_PROFILES
)
720 const struct tomoyo_path_info
*comment
=
722 tomoyo_print_namespace(head
);
723 tomoyo_io_printf(head
, "%u-COMMENT=", index
);
724 tomoyo_set_string(head
, comment
? comment
->name
: "");
726 tomoyo_io_printf(head
, "%u-PREFERENCE={ ", index
);
727 for (i
= 0; i
< TOMOYO_MAX_PREF
; i
++)
728 tomoyo_io_printf(head
, "%s=%u ",
729 tomoyo_pref_keywords
[i
],
731 tomoyo_set_string(head
, "}\n");
737 tomoyo_print_namespace(head
);
738 tomoyo_io_printf(head
, "%u-%s", index
, "CONFIG");
739 tomoyo_print_config(head
, profile
->default_config
);
745 for ( ; head
->r
.bit
< TOMOYO_MAX_MAC_INDEX
746 + TOMOYO_MAX_MAC_CATEGORY_INDEX
; head
->r
.bit
++) {
747 const u8 i
= head
->r
.bit
;
748 const u8 config
= profile
->config
[i
];
749 if (config
== TOMOYO_CONFIG_USE_DEFAULT
)
751 tomoyo_print_namespace(head
);
752 if (i
< TOMOYO_MAX_MAC_INDEX
)
753 tomoyo_io_printf(head
, "%u-CONFIG::%s::%s",
755 tomoyo_category_keywords
756 [tomoyo_index2category
[i
]],
757 tomoyo_mac_keywords
[i
]);
759 tomoyo_io_printf(head
, "%u-CONFIG::%s", index
,
760 tomoyo_mac_keywords
[i
]);
761 tomoyo_print_config(head
, config
);
765 if (head
->r
.bit
== TOMOYO_MAX_MAC_INDEX
766 + TOMOYO_MAX_MAC_CATEGORY_INDEX
) {
772 if (tomoyo_flush(head
))
777 * tomoyo_same_manager - Check for duplicated "struct tomoyo_manager" entry.
779 * @a: Pointer to "struct tomoyo_acl_head".
780 * @b: Pointer to "struct tomoyo_acl_head".
782 * Returns true if @a == @b, false otherwise.
784 static bool tomoyo_same_manager(const struct tomoyo_acl_head
*a
,
785 const struct tomoyo_acl_head
*b
)
787 return container_of(a
, struct tomoyo_manager
, head
)->manager
==
788 container_of(b
, struct tomoyo_manager
, head
)->manager
;
792 * tomoyo_update_manager_entry - Add a manager entry.
794 * @manager: The path to manager or the domainnamme.
795 * @is_delete: True if it is a delete request.
797 * Returns 0 on success, negative value otherwise.
799 * Caller holds tomoyo_read_lock().
801 static int tomoyo_update_manager_entry(const char *manager
,
802 const bool is_delete
)
804 struct tomoyo_manager e
= { };
805 struct tomoyo_acl_param param
= {
806 /* .ns = &tomoyo_kernel_namespace, */
807 .is_delete
= is_delete
,
808 .list
= &tomoyo_kernel_namespace
.
809 policy_list
[TOMOYO_ID_MANAGER
],
811 int error
= is_delete
? -ENOENT
: -ENOMEM
;
812 if (tomoyo_domain_def(manager
)) {
813 if (!tomoyo_correct_domain(manager
))
817 if (!tomoyo_correct_path(manager
))
820 e
.manager
= tomoyo_get_name(manager
);
822 error
= tomoyo_update_policy(&e
.head
, sizeof(e
), ¶m
,
823 tomoyo_same_manager
);
824 tomoyo_put_name(e
.manager
);
830 * tomoyo_write_manager - Write manager policy.
832 * @head: Pointer to "struct tomoyo_io_buffer".
834 * Returns 0 on success, negative value otherwise.
836 * Caller holds tomoyo_read_lock().
838 static int tomoyo_write_manager(struct tomoyo_io_buffer
*head
)
840 char *data
= head
->write_buf
;
842 if (!strcmp(data
, "manage_by_non_root")) {
843 tomoyo_manage_by_non_root
= !head
->w
.is_delete
;
846 return tomoyo_update_manager_entry(data
, head
->w
.is_delete
);
850 * tomoyo_read_manager - Read manager policy.
852 * @head: Pointer to "struct tomoyo_io_buffer".
854 * Caller holds tomoyo_read_lock().
856 static void tomoyo_read_manager(struct tomoyo_io_buffer
*head
)
860 list_for_each_cookie(head
->r
.acl
, &tomoyo_kernel_namespace
.
861 policy_list
[TOMOYO_ID_MANAGER
]) {
862 struct tomoyo_manager
*ptr
=
863 list_entry(head
->r
.acl
, typeof(*ptr
), head
.list
);
864 if (ptr
->head
.is_deleted
)
866 if (!tomoyo_flush(head
))
868 tomoyo_set_string(head
, ptr
->manager
->name
);
875 * tomoyo_manager - Check whether the current process is a policy manager.
877 * Returns true if the current process is permitted to modify policy
878 * via /sys/kernel/security/tomoyo/ interface.
880 * Caller holds tomoyo_read_lock().
882 static bool tomoyo_manager(void)
884 struct tomoyo_manager
*ptr
;
886 const struct task_struct
*task
= current
;
887 const struct tomoyo_path_info
*domainname
= tomoyo_domain()->domainname
;
890 if (!tomoyo_policy_loaded
)
892 if (!tomoyo_manage_by_non_root
&& (task
->cred
->uid
|| task
->cred
->euid
))
894 list_for_each_entry_rcu(ptr
, &tomoyo_kernel_namespace
.
895 policy_list
[TOMOYO_ID_MANAGER
], head
.list
) {
896 if (!ptr
->head
.is_deleted
&& ptr
->is_domain
897 && !tomoyo_pathcmp(domainname
, ptr
->manager
)) {
904 exe
= tomoyo_get_exe();
907 list_for_each_entry_rcu(ptr
, &tomoyo_kernel_namespace
.
908 policy_list
[TOMOYO_ID_MANAGER
], head
.list
) {
909 if (!ptr
->head
.is_deleted
&& !ptr
->is_domain
910 && !strcmp(exe
, ptr
->manager
->name
)) {
915 if (!found
) { /* Reduce error messages. */
916 static pid_t last_pid
;
917 const pid_t pid
= current
->pid
;
918 if (last_pid
!= pid
) {
919 printk(KERN_WARNING
"%s ( %s ) is not permitted to "
920 "update policies.\n", domainname
->name
, exe
);
929 * tomoyo_select_domain - Parse select command.
931 * @head: Pointer to "struct tomoyo_io_buffer".
932 * @data: String to parse.
934 * Returns true on success, false otherwise.
936 * Caller holds tomoyo_read_lock().
938 static bool tomoyo_select_domain(struct tomoyo_io_buffer
*head
,
942 struct tomoyo_domain_info
*domain
= NULL
;
943 bool global_pid
= false;
944 if (strncmp(data
, "select ", 7))
947 if (sscanf(data
, "pid=%u", &pid
) == 1 ||
948 (global_pid
= true, sscanf(data
, "global-pid=%u", &pid
) == 1)) {
949 struct task_struct
*p
;
951 read_lock(&tasklist_lock
);
953 p
= find_task_by_pid_ns(pid
, &init_pid_ns
);
955 p
= find_task_by_vpid(pid
);
957 domain
= tomoyo_real_domain(p
);
958 read_unlock(&tasklist_lock
);
960 } else if (!strncmp(data
, "domain=", 7)) {
961 if (tomoyo_domain_def(data
+ 7))
962 domain
= tomoyo_find_domain(data
+ 7);
965 head
->w
.domain
= domain
;
966 /* Accessing read_buf is safe because head->io_sem is held. */
968 return true; /* Do nothing if open(O_WRONLY). */
969 memset(&head
->r
, 0, sizeof(head
->r
));
970 head
->r
.print_this_domain_only
= true;
972 head
->r
.domain
= &domain
->list
;
975 tomoyo_io_printf(head
, "# select %s\n", data
);
976 if (domain
&& domain
->is_deleted
)
977 tomoyo_io_printf(head
, "# This is a deleted domain.\n");
982 * tomoyo_delete_domain - Delete a domain.
984 * @domainname: The name of domain.
988 * Caller holds tomoyo_read_lock().
990 static int tomoyo_delete_domain(char *domainname
)
992 struct tomoyo_domain_info
*domain
;
993 struct tomoyo_path_info name
;
995 name
.name
= domainname
;
996 tomoyo_fill_path_info(&name
);
997 if (mutex_lock_interruptible(&tomoyo_policy_lock
))
999 /* Is there an active domain? */
1000 list_for_each_entry_rcu(domain
, &tomoyo_domain_list
, list
) {
1001 /* Never delete tomoyo_kernel_domain */
1002 if (domain
== &tomoyo_kernel_domain
)
1004 if (domain
->is_deleted
||
1005 tomoyo_pathcmp(domain
->domainname
, &name
))
1007 domain
->is_deleted
= true;
1010 mutex_unlock(&tomoyo_policy_lock
);
1015 * tomoyo_write_domain2 - Write domain policy.
1017 * @ns: Pointer to "struct tomoyo_policy_namespace".
1018 * @list: Pointer to "struct list_head".
1019 * @data: Policy to be interpreted.
1020 * @is_delete: True if it is a delete request.
1022 * Returns 0 on success, negative value otherwise.
1024 * Caller holds tomoyo_read_lock().
1026 static int tomoyo_write_domain2(struct tomoyo_policy_namespace
*ns
,
1027 struct list_head
*list
, char *data
,
1028 const bool is_delete
)
1030 struct tomoyo_acl_param param
= {
1034 .is_delete
= is_delete
,
1036 static const struct {
1037 const char *keyword
;
1038 int (*write
) (struct tomoyo_acl_param
*);
1039 } tomoyo_callback
[1] = {
1040 { "file ", tomoyo_write_file
},
1043 for (i
= 0; i
< 1; i
++) {
1044 if (!tomoyo_str_starts(¶m
.data
,
1045 tomoyo_callback
[i
].keyword
))
1047 return tomoyo_callback
[i
].write(¶m
);
1052 /* String table for domain flags. */
1053 const char * const tomoyo_dif
[TOMOYO_MAX_DOMAIN_INFO_FLAGS
] = {
1054 [TOMOYO_DIF_QUOTA_WARNED
] = "quota_exceeded\n",
1055 [TOMOYO_DIF_TRANSITION_FAILED
] = "transition_failed\n",
1059 * tomoyo_write_domain - Write domain policy.
1061 * @head: Pointer to "struct tomoyo_io_buffer".
1063 * Returns 0 on success, negative value otherwise.
1065 * Caller holds tomoyo_read_lock().
1067 static int tomoyo_write_domain(struct tomoyo_io_buffer
*head
)
1069 char *data
= head
->write_buf
;
1070 struct tomoyo_policy_namespace
*ns
;
1071 struct tomoyo_domain_info
*domain
= head
->w
.domain
;
1072 const bool is_delete
= head
->w
.is_delete
;
1073 bool is_select
= !is_delete
&& tomoyo_str_starts(&data
, "select ");
1074 unsigned int profile
;
1078 tomoyo_delete_domain(data
);
1080 domain
= tomoyo_find_domain(data
);
1082 domain
= tomoyo_assign_domain(data
, false);
1083 head
->w
.domain
= domain
;
1089 if (sscanf(data
, "use_profile %u", &profile
) == 1
1090 && profile
< TOMOYO_MAX_PROFILES
) {
1091 if (!tomoyo_policy_loaded
|| ns
->profile_ptr
[profile
])
1092 domain
->profile
= (u8
) profile
;
1095 if (sscanf(data
, "use_group %u\n", &profile
) == 1
1096 && profile
< TOMOYO_MAX_ACL_GROUPS
) {
1098 domain
->group
= (u8
) profile
;
1101 for (profile
= 0; profile
< TOMOYO_MAX_DOMAIN_INFO_FLAGS
; profile
++) {
1102 const char *cp
= tomoyo_dif
[profile
];
1103 if (strncmp(data
, cp
, strlen(cp
) - 1))
1105 domain
->flags
[profile
] = !is_delete
;
1108 return tomoyo_write_domain2(ns
, &domain
->acl_info_list
, data
,
1113 * tomoyo_print_condition - Print condition part.
1115 * @head: Pointer to "struct tomoyo_io_buffer".
1116 * @cond: Pointer to "struct tomoyo_condition".
1118 * Returns true on success, false otherwise.
1120 static bool tomoyo_print_condition(struct tomoyo_io_buffer
*head
,
1121 const struct tomoyo_condition
*cond
)
1123 switch (head
->r
.cond_step
) {
1125 head
->r
.cond_index
= 0;
1126 head
->r
.cond_step
++;
1130 const u16 condc
= cond
->condc
;
1131 const struct tomoyo_condition_element
*condp
=
1132 (typeof(condp
)) (cond
+ 1);
1133 const struct tomoyo_number_union
*numbers_p
=
1134 (typeof(numbers_p
)) (condp
+ condc
);
1135 const struct tomoyo_name_union
*names_p
=
1137 (numbers_p
+ cond
->numbers_count
);
1138 const struct tomoyo_argv
*argv
=
1139 (typeof(argv
)) (names_p
+ cond
->names_count
);
1140 const struct tomoyo_envp
*envp
=
1141 (typeof(envp
)) (argv
+ cond
->argc
);
1143 for (skip
= 0; skip
< head
->r
.cond_index
; skip
++) {
1144 const u8 left
= condp
->left
;
1145 const u8 right
= condp
->right
;
1148 case TOMOYO_ARGV_ENTRY
:
1151 case TOMOYO_ENVP_ENTRY
:
1154 case TOMOYO_NUMBER_UNION
:
1159 case TOMOYO_NAME_UNION
:
1162 case TOMOYO_NUMBER_UNION
:
1167 while (head
->r
.cond_index
< condc
) {
1168 const u8 match
= condp
->equals
;
1169 const u8 left
= condp
->left
;
1170 const u8 right
= condp
->right
;
1171 if (!tomoyo_flush(head
))
1174 head
->r
.cond_index
++;
1175 tomoyo_set_space(head
);
1177 case TOMOYO_ARGV_ENTRY
:
1178 tomoyo_io_printf(head
,
1179 "exec.argv[%lu]%s=\"",
1182 tomoyo_set_string(head
,
1184 tomoyo_set_string(head
, "\"");
1187 case TOMOYO_ENVP_ENTRY
:
1188 tomoyo_set_string(head
,
1190 tomoyo_set_string(head
,
1192 tomoyo_io_printf(head
, "\"]%s=", envp
->
1195 tomoyo_set_string(head
, "\"");
1196 tomoyo_set_string(head
, envp
->
1198 tomoyo_set_string(head
, "\"");
1200 tomoyo_set_string(head
,
1205 case TOMOYO_NUMBER_UNION
:
1206 tomoyo_print_number_union_nospace
1207 (head
, numbers_p
++);
1210 tomoyo_set_string(head
,
1211 tomoyo_condition_keyword
[left
]);
1214 tomoyo_set_string(head
, match
? "=" : "!=");
1216 case TOMOYO_NAME_UNION
:
1217 tomoyo_print_name_union_quoted
1220 case TOMOYO_NUMBER_UNION
:
1221 tomoyo_print_number_union_nospace
1222 (head
, numbers_p
++);
1225 tomoyo_set_string(head
,
1226 tomoyo_condition_keyword
[right
]);
1231 head
->r
.cond_step
++;
1234 if (!tomoyo_flush(head
))
1236 head
->r
.cond_step
++;
1239 tomoyo_set_lf(head
);
1246 * tomoyo_set_group - Print "acl_group " header keyword and category name.
1248 * @head: Pointer to "struct tomoyo_io_buffer".
1249 * @category: Category name.
1253 static void tomoyo_set_group(struct tomoyo_io_buffer
*head
,
1254 const char *category
)
1256 if (head
->type
== TOMOYO_EXCEPTIONPOLICY
) {
1257 tomoyo_print_namespace(head
);
1258 tomoyo_io_printf(head
, "acl_group %u ",
1259 head
->r
.acl_group_index
);
1261 tomoyo_set_string(head
, category
);
1265 * tomoyo_print_entry - Print an ACL entry.
1267 * @head: Pointer to "struct tomoyo_io_buffer".
1268 * @acl: Pointer to an ACL entry.
1270 * Returns true on success, false otherwise.
1272 static bool tomoyo_print_entry(struct tomoyo_io_buffer
*head
,
1273 struct tomoyo_acl_info
*acl
)
1275 const u8 acl_type
= acl
->type
;
1279 if (head
->r
.print_cond_part
)
1280 goto print_cond_part
;
1281 if (acl
->is_deleted
)
1283 if (!tomoyo_flush(head
))
1285 else if (acl_type
== TOMOYO_TYPE_PATH_ACL
) {
1286 struct tomoyo_path_acl
*ptr
=
1287 container_of(acl
, typeof(*ptr
), head
);
1288 const u16 perm
= ptr
->perm
;
1289 for (bit
= 0; bit
< TOMOYO_MAX_PATH_OPERATION
; bit
++) {
1290 if (!(perm
& (1 << bit
)))
1292 if (head
->r
.print_transition_related_only
&&
1293 bit
!= TOMOYO_TYPE_EXECUTE
)
1296 tomoyo_set_group(head
, "file ");
1299 tomoyo_set_slash(head
);
1301 tomoyo_set_string(head
, tomoyo_path_keyword
[bit
]);
1305 tomoyo_print_name_union(head
, &ptr
->name
);
1306 } else if (head
->r
.print_transition_related_only
) {
1308 } else if (acl_type
== TOMOYO_TYPE_PATH2_ACL
) {
1309 struct tomoyo_path2_acl
*ptr
=
1310 container_of(acl
, typeof(*ptr
), head
);
1311 const u8 perm
= ptr
->perm
;
1312 for (bit
= 0; bit
< TOMOYO_MAX_PATH2_OPERATION
; bit
++) {
1313 if (!(perm
& (1 << bit
)))
1316 tomoyo_set_group(head
, "file ");
1319 tomoyo_set_slash(head
);
1321 tomoyo_set_string(head
, tomoyo_mac_keywords
1322 [tomoyo_pp2mac
[bit
]]);
1326 tomoyo_print_name_union(head
, &ptr
->name1
);
1327 tomoyo_print_name_union(head
, &ptr
->name2
);
1328 } else if (acl_type
== TOMOYO_TYPE_PATH_NUMBER_ACL
) {
1329 struct tomoyo_path_number_acl
*ptr
=
1330 container_of(acl
, typeof(*ptr
), head
);
1331 const u8 perm
= ptr
->perm
;
1332 for (bit
= 0; bit
< TOMOYO_MAX_PATH_NUMBER_OPERATION
; bit
++) {
1333 if (!(perm
& (1 << bit
)))
1336 tomoyo_set_group(head
, "file ");
1339 tomoyo_set_slash(head
);
1341 tomoyo_set_string(head
, tomoyo_mac_keywords
1342 [tomoyo_pn2mac
[bit
]]);
1346 tomoyo_print_name_union(head
, &ptr
->name
);
1347 tomoyo_print_number_union(head
, &ptr
->number
);
1348 } else if (acl_type
== TOMOYO_TYPE_MKDEV_ACL
) {
1349 struct tomoyo_mkdev_acl
*ptr
=
1350 container_of(acl
, typeof(*ptr
), head
);
1351 const u8 perm
= ptr
->perm
;
1352 for (bit
= 0; bit
< TOMOYO_MAX_MKDEV_OPERATION
; bit
++) {
1353 if (!(perm
& (1 << bit
)))
1356 tomoyo_set_group(head
, "file ");
1359 tomoyo_set_slash(head
);
1361 tomoyo_set_string(head
, tomoyo_mac_keywords
1362 [tomoyo_pnnn2mac
[bit
]]);
1366 tomoyo_print_name_union(head
, &ptr
->name
);
1367 tomoyo_print_number_union(head
, &ptr
->mode
);
1368 tomoyo_print_number_union(head
, &ptr
->major
);
1369 tomoyo_print_number_union(head
, &ptr
->minor
);
1370 } else if (acl_type
== TOMOYO_TYPE_MOUNT_ACL
) {
1371 struct tomoyo_mount_acl
*ptr
=
1372 container_of(acl
, typeof(*ptr
), head
);
1373 tomoyo_set_group(head
, "file mount");
1374 tomoyo_print_name_union(head
, &ptr
->dev_name
);
1375 tomoyo_print_name_union(head
, &ptr
->dir_name
);
1376 tomoyo_print_name_union(head
, &ptr
->fs_type
);
1377 tomoyo_print_number_union(head
, &ptr
->flags
);
1380 head
->r
.print_cond_part
= true;
1381 head
->r
.cond_step
= 0;
1382 if (!tomoyo_flush(head
))
1385 if (!tomoyo_print_condition(head
, acl
->cond
))
1387 head
->r
.print_cond_part
= false;
1389 tomoyo_set_lf(head
);
1395 * tomoyo_read_domain2 - Read domain policy.
1397 * @head: Pointer to "struct tomoyo_io_buffer".
1398 * @list: Pointer to "struct list_head".
1400 * Caller holds tomoyo_read_lock().
1402 * Returns true on success, false otherwise.
1404 static bool tomoyo_read_domain2(struct tomoyo_io_buffer
*head
,
1405 struct list_head
*list
)
1407 list_for_each_cookie(head
->r
.acl
, list
) {
1408 struct tomoyo_acl_info
*ptr
=
1409 list_entry(head
->r
.acl
, typeof(*ptr
), list
);
1410 if (!tomoyo_print_entry(head
, ptr
))
1418 * tomoyo_read_domain - Read domain policy.
1420 * @head: Pointer to "struct tomoyo_io_buffer".
1422 * Caller holds tomoyo_read_lock().
1424 static void tomoyo_read_domain(struct tomoyo_io_buffer
*head
)
1428 list_for_each_cookie(head
->r
.domain
, &tomoyo_domain_list
) {
1429 struct tomoyo_domain_info
*domain
=
1430 list_entry(head
->r
.domain
, typeof(*domain
), list
);
1431 switch (head
->r
.step
) {
1434 if (domain
->is_deleted
&&
1435 !head
->r
.print_this_domain_only
)
1437 /* Print domainname and flags. */
1438 tomoyo_set_string(head
, domain
->domainname
->name
);
1439 tomoyo_set_lf(head
);
1440 tomoyo_io_printf(head
, "use_profile %u\n",
1442 tomoyo_io_printf(head
, "use_group %u\n",
1444 for (i
= 0; i
< TOMOYO_MAX_DOMAIN_INFO_FLAGS
; i
++)
1445 if (domain
->flags
[i
])
1446 tomoyo_set_string(head
, tomoyo_dif
[i
]);
1448 tomoyo_set_lf(head
);
1451 if (!tomoyo_read_domain2(head
, &domain
->acl_info_list
))
1454 if (!tomoyo_set_lf(head
))
1459 if (head
->r
.print_this_domain_only
)
1468 * tomoyo_write_pid: Specify PID to obtain domainname.
1470 * @head: Pointer to "struct tomoyo_io_buffer".
1474 static int tomoyo_write_pid(struct tomoyo_io_buffer
*head
)
1476 head
->r
.eof
= false;
1481 * tomoyo_read_pid - Get domainname of the specified PID.
1483 * @head: Pointer to "struct tomoyo_io_buffer".
1485 * Returns the domainname which the specified PID is in on success,
1486 * empty string otherwise.
1487 * The PID is specified by tomoyo_write_pid() so that the user can obtain
1488 * using read()/write() interface rather than sysctl() interface.
1490 static void tomoyo_read_pid(struct tomoyo_io_buffer
*head
)
1492 char *buf
= head
->write_buf
;
1493 bool global_pid
= false;
1495 struct task_struct
*p
;
1496 struct tomoyo_domain_info
*domain
= NULL
;
1498 /* Accessing write_buf is safe because head->io_sem is held. */
1501 return; /* Do nothing if open(O_RDONLY). */
1503 if (head
->r
.w_pos
|| head
->r
.eof
)
1506 if (tomoyo_str_starts(&buf
, "global-pid "))
1508 pid
= (unsigned int) simple_strtoul(buf
, NULL
, 10);
1510 read_lock(&tasklist_lock
);
1512 p
= find_task_by_pid_ns(pid
, &init_pid_ns
);
1514 p
= find_task_by_vpid(pid
);
1516 domain
= tomoyo_real_domain(p
);
1517 read_unlock(&tasklist_lock
);
1521 tomoyo_io_printf(head
, "%u %u ", pid
, domain
->profile
);
1522 tomoyo_set_string(head
, domain
->domainname
->name
);
1525 /* String table for domain transition control keywords. */
1526 static const char *tomoyo_transition_type
[TOMOYO_MAX_TRANSITION_TYPE
] = {
1527 [TOMOYO_TRANSITION_CONTROL_NO_RESET
] = "no_reset_domain ",
1528 [TOMOYO_TRANSITION_CONTROL_RESET
] = "reset_domain ",
1529 [TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE
] = "no_initialize_domain ",
1530 [TOMOYO_TRANSITION_CONTROL_INITIALIZE
] = "initialize_domain ",
1531 [TOMOYO_TRANSITION_CONTROL_NO_KEEP
] = "no_keep_domain ",
1532 [TOMOYO_TRANSITION_CONTROL_KEEP
] = "keep_domain ",
1535 /* String table for grouping keywords. */
1536 static const char *tomoyo_group_name
[TOMOYO_MAX_GROUP
] = {
1537 [TOMOYO_PATH_GROUP
] = "path_group ",
1538 [TOMOYO_NUMBER_GROUP
] = "number_group ",
1542 * tomoyo_write_exception - Write exception policy.
1544 * @head: Pointer to "struct tomoyo_io_buffer".
1546 * Returns 0 on success, negative value otherwise.
1548 * Caller holds tomoyo_read_lock().
1550 static int tomoyo_write_exception(struct tomoyo_io_buffer
*head
)
1552 const bool is_delete
= head
->w
.is_delete
;
1553 struct tomoyo_acl_param param
= {
1555 .is_delete
= is_delete
,
1556 .data
= head
->write_buf
,
1559 if (tomoyo_str_starts(¶m
.data
, "aggregator "))
1560 return tomoyo_write_aggregator(¶m
);
1561 for (i
= 0; i
< TOMOYO_MAX_TRANSITION_TYPE
; i
++)
1562 if (tomoyo_str_starts(¶m
.data
, tomoyo_transition_type
[i
]))
1563 return tomoyo_write_transition_control(¶m
, i
);
1564 for (i
= 0; i
< TOMOYO_MAX_GROUP
; i
++)
1565 if (tomoyo_str_starts(¶m
.data
, tomoyo_group_name
[i
]))
1566 return tomoyo_write_group(¶m
, i
);
1567 if (tomoyo_str_starts(¶m
.data
, "acl_group ")) {
1570 group
= simple_strtoul(param
.data
, &data
, 10);
1571 if (group
< TOMOYO_MAX_ACL_GROUPS
&& *data
++ == ' ')
1572 return tomoyo_write_domain2
1573 (head
->w
.ns
, &head
->w
.ns
->acl_group
[group
],
1580 * tomoyo_read_group - Read "struct tomoyo_path_group"/"struct tomoyo_number_group" list.
1582 * @head: Pointer to "struct tomoyo_io_buffer".
1583 * @idx: Index number.
1585 * Returns true on success, false otherwise.
1587 * Caller holds tomoyo_read_lock().
1589 static bool tomoyo_read_group(struct tomoyo_io_buffer
*head
, const int idx
)
1591 struct tomoyo_policy_namespace
*ns
=
1592 container_of(head
->r
.ns
, typeof(*ns
), namespace_list
);
1593 struct list_head
*list
= &ns
->group_list
[idx
];
1594 list_for_each_cookie(head
->r
.group
, list
) {
1595 struct tomoyo_group
*group
=
1596 list_entry(head
->r
.group
, typeof(*group
), head
.list
);
1597 list_for_each_cookie(head
->r
.acl
, &group
->member_list
) {
1598 struct tomoyo_acl_head
*ptr
=
1599 list_entry(head
->r
.acl
, typeof(*ptr
), list
);
1600 if (ptr
->is_deleted
)
1602 if (!tomoyo_flush(head
))
1604 tomoyo_print_namespace(head
);
1605 tomoyo_set_string(head
, tomoyo_group_name
[idx
]);
1606 tomoyo_set_string(head
, group
->group_name
->name
);
1607 if (idx
== TOMOYO_PATH_GROUP
) {
1608 tomoyo_set_space(head
);
1609 tomoyo_set_string(head
, container_of
1610 (ptr
, struct tomoyo_path_group
,
1611 head
)->member_name
->name
);
1612 } else if (idx
== TOMOYO_NUMBER_GROUP
) {
1613 tomoyo_print_number_union(head
, &container_of
1615 struct tomoyo_number_group
,
1618 tomoyo_set_lf(head
);
1622 head
->r
.group
= NULL
;
1627 * tomoyo_read_policy - Read "struct tomoyo_..._entry" list.
1629 * @head: Pointer to "struct tomoyo_io_buffer".
1630 * @idx: Index number.
1632 * Returns true on success, false otherwise.
1634 * Caller holds tomoyo_read_lock().
1636 static bool tomoyo_read_policy(struct tomoyo_io_buffer
*head
, const int idx
)
1638 struct tomoyo_policy_namespace
*ns
=
1639 container_of(head
->r
.ns
, typeof(*ns
), namespace_list
);
1640 struct list_head
*list
= &ns
->policy_list
[idx
];
1641 list_for_each_cookie(head
->r
.acl
, list
) {
1642 struct tomoyo_acl_head
*acl
=
1643 container_of(head
->r
.acl
, typeof(*acl
), list
);
1644 if (acl
->is_deleted
)
1646 if (!tomoyo_flush(head
))
1649 case TOMOYO_ID_TRANSITION_CONTROL
:
1651 struct tomoyo_transition_control
*ptr
=
1652 container_of(acl
, typeof(*ptr
), head
);
1653 tomoyo_print_namespace(head
);
1654 tomoyo_set_string(head
, tomoyo_transition_type
1656 tomoyo_set_string(head
, ptr
->program
?
1657 ptr
->program
->name
: "any");
1658 tomoyo_set_string(head
, " from ");
1659 tomoyo_set_string(head
, ptr
->domainname
?
1660 ptr
->domainname
->name
:
1664 case TOMOYO_ID_AGGREGATOR
:
1666 struct tomoyo_aggregator
*ptr
=
1667 container_of(acl
, typeof(*ptr
), head
);
1668 tomoyo_print_namespace(head
);
1669 tomoyo_set_string(head
, "aggregator ");
1670 tomoyo_set_string(head
,
1671 ptr
->original_name
->name
);
1672 tomoyo_set_space(head
);
1673 tomoyo_set_string(head
,
1674 ptr
->aggregated_name
->name
);
1680 tomoyo_set_lf(head
);
1687 * tomoyo_read_exception - Read exception policy.
1689 * @head: Pointer to "struct tomoyo_io_buffer".
1691 * Caller holds tomoyo_read_lock().
1693 static void tomoyo_read_exception(struct tomoyo_io_buffer
*head
)
1695 struct tomoyo_policy_namespace
*ns
=
1696 container_of(head
->r
.ns
, typeof(*ns
), namespace_list
);
1699 while (head
->r
.step
< TOMOYO_MAX_POLICY
&&
1700 tomoyo_read_policy(head
, head
->r
.step
))
1702 if (head
->r
.step
< TOMOYO_MAX_POLICY
)
1704 while (head
->r
.step
< TOMOYO_MAX_POLICY
+ TOMOYO_MAX_GROUP
&&
1705 tomoyo_read_group(head
, head
->r
.step
- TOMOYO_MAX_POLICY
))
1707 if (head
->r
.step
< TOMOYO_MAX_POLICY
+ TOMOYO_MAX_GROUP
)
1709 while (head
->r
.step
< TOMOYO_MAX_POLICY
+ TOMOYO_MAX_GROUP
1710 + TOMOYO_MAX_ACL_GROUPS
) {
1711 head
->r
.acl_group_index
= head
->r
.step
- TOMOYO_MAX_POLICY
1713 if (!tomoyo_read_domain2(head
, &ns
->acl_group
1714 [head
->r
.acl_group_index
]))
1721 /* Wait queue for kernel -> userspace notification. */
1722 static DECLARE_WAIT_QUEUE_HEAD(tomoyo_query_wait
);
1723 /* Wait queue for userspace -> kernel notification. */
1724 static DECLARE_WAIT_QUEUE_HEAD(tomoyo_answer_wait
);
1726 /* Structure for query. */
1727 struct tomoyo_query
{
1728 struct list_head list
;
1731 unsigned int serial
;
1737 /* The list for "struct tomoyo_query". */
1738 static LIST_HEAD(tomoyo_query_list
);
1740 /* Lock for manipulating tomoyo_query_list. */
1741 static DEFINE_SPINLOCK(tomoyo_query_list_lock
);
1744 * Number of "struct file" referring /sys/kernel/security/tomoyo/query
1747 static atomic_t tomoyo_query_observers
= ATOMIC_INIT(0);
1750 * tomoyo_truncate - Truncate a line.
1752 * @str: String to truncate.
1754 * Returns length of truncated @str.
1756 static int tomoyo_truncate(char *str
)
1759 while (*(unsigned char *) str
> (unsigned char) ' ')
1762 return strlen(start
) + 1;
1766 * tomoyo_add_entry - Add an ACL to current thread's domain. Used by learning mode.
1768 * @domain: Pointer to "struct tomoyo_domain_info".
1769 * @header: Lines containing ACL.
1773 static void tomoyo_add_entry(struct tomoyo_domain_info
*domain
, char *header
)
1776 char *realpath
= NULL
;
1778 char *symlink
= NULL
;
1779 char *cp
= strchr(header
, '\n');
1783 cp
= strchr(cp
+ 1, '\n');
1787 len
= strlen(cp
) + 1;
1788 /* strstr() will return NULL if ordering is wrong. */
1790 argv0
= strstr(header
, " argv[]={ \"");
1793 len
+= tomoyo_truncate(argv0
) + 14;
1795 realpath
= strstr(header
, " exec={ realpath=\"");
1798 len
+= tomoyo_truncate(realpath
) + 6;
1800 symlink
= strstr(header
, " symlink.target=\"");
1802 len
+= tomoyo_truncate(symlink
+ 1) + 1;
1804 buffer
= kmalloc(len
, GFP_NOFS
);
1807 snprintf(buffer
, len
- 1, "%s", cp
);
1809 tomoyo_addprintf(buffer
, len
, " exec.%s", realpath
);
1811 tomoyo_addprintf(buffer
, len
, " exec.argv[0]=%s", argv0
);
1813 tomoyo_addprintf(buffer
, len
, "%s", symlink
);
1814 tomoyo_normalize_line(buffer
);
1815 if (!tomoyo_write_domain2(domain
->ns
, &domain
->acl_info_list
, buffer
,
1817 tomoyo_update_stat(TOMOYO_STAT_POLICY_UPDATES
);
1822 * tomoyo_supervisor - Ask for the supervisor's decision.
1824 * @r: Pointer to "struct tomoyo_request_info".
1825 * @fmt: The printf()'s format string, followed by parameters.
1827 * Returns 0 if the supervisor decided to permit the access request which
1828 * violated the policy in enforcing mode, TOMOYO_RETRY_REQUEST if the
1829 * supervisor decided to retry the access request which violated the policy in
1830 * enforcing mode, 0 if it is not in enforcing mode, -EPERM otherwise.
1832 int tomoyo_supervisor(struct tomoyo_request_info
*r
, const char *fmt
, ...)
1837 static unsigned int tomoyo_serial
;
1838 struct tomoyo_query entry
= { };
1839 bool quota_exceeded
= false;
1840 va_start(args
, fmt
);
1841 len
= vsnprintf((char *) &len
, 1, fmt
, args
) + 1;
1843 /* Write /sys/kernel/security/tomoyo/audit. */
1844 va_start(args
, fmt
);
1845 tomoyo_write_log2(r
, len
, fmt
, args
);
1847 /* Nothing more to do if granted. */
1851 tomoyo_update_stat(r
->mode
);
1853 case TOMOYO_CONFIG_ENFORCING
:
1855 if (atomic_read(&tomoyo_query_observers
))
1858 case TOMOYO_CONFIG_LEARNING
:
1860 /* Check max_learning_entry parameter. */
1861 if (tomoyo_domain_quota_is_ok(r
))
1868 va_start(args
, fmt
);
1869 entry
.query
= tomoyo_init_log(r
, len
, fmt
, args
);
1873 entry
.query_len
= strlen(entry
.query
) + 1;
1875 tomoyo_add_entry(r
->domain
, entry
.query
);
1878 len
= tomoyo_round2(entry
.query_len
);
1879 spin_lock(&tomoyo_query_list_lock
);
1880 if (tomoyo_memory_quota
[TOMOYO_MEMORY_QUERY
] &&
1881 tomoyo_memory_used
[TOMOYO_MEMORY_QUERY
] + len
1882 >= tomoyo_memory_quota
[TOMOYO_MEMORY_QUERY
]) {
1883 quota_exceeded
= true;
1885 entry
.serial
= tomoyo_serial
++;
1886 entry
.retry
= r
->retry
;
1887 tomoyo_memory_used
[TOMOYO_MEMORY_QUERY
] += len
;
1888 list_add_tail(&entry
.list
, &tomoyo_query_list
);
1890 spin_unlock(&tomoyo_query_list_lock
);
1893 /* Give 10 seconds for supervisor's opinion. */
1894 while (entry
.timer
< 10) {
1895 wake_up_all(&tomoyo_query_wait
);
1896 if (wait_event_interruptible_timeout
1897 (tomoyo_answer_wait
, entry
.answer
||
1898 !atomic_read(&tomoyo_query_observers
), HZ
))
1903 spin_lock(&tomoyo_query_list_lock
);
1904 list_del(&entry
.list
);
1905 tomoyo_memory_used
[TOMOYO_MEMORY_QUERY
] -= len
;
1906 spin_unlock(&tomoyo_query_list_lock
);
1907 switch (entry
.answer
) {
1908 case 3: /* Asked to retry by administrator. */
1909 error
= TOMOYO_RETRY_REQUEST
;
1913 /* Granted by administrator. */
1917 /* Timed out or rejected by administrator. */
1926 * tomoyo_poll_query - poll() for /sys/kernel/security/tomoyo/query.
1928 * @file: Pointer to "struct file".
1929 * @wait: Pointer to "poll_table".
1931 * Returns POLLIN | POLLRDNORM when ready to read, 0 otherwise.
1933 * Waits for access requests which violated policy in enforcing mode.
1935 static int tomoyo_poll_query(struct file
*file
, poll_table
*wait
)
1937 struct list_head
*tmp
;
1940 for (i
= 0; i
< 2; i
++) {
1941 spin_lock(&tomoyo_query_list_lock
);
1942 list_for_each(tmp
, &tomoyo_query_list
) {
1943 struct tomoyo_query
*ptr
=
1944 list_entry(tmp
, typeof(*ptr
), list
);
1950 spin_unlock(&tomoyo_query_list_lock
);
1952 return POLLIN
| POLLRDNORM
;
1955 poll_wait(file
, &tomoyo_query_wait
, wait
);
1961 * tomoyo_read_query - Read access requests which violated policy in enforcing mode.
1963 * @head: Pointer to "struct tomoyo_io_buffer".
1965 static void tomoyo_read_query(struct tomoyo_io_buffer
*head
)
1967 struct list_head
*tmp
;
1968 unsigned int pos
= 0;
1973 if (head
->read_buf
) {
1974 kfree(head
->read_buf
);
1975 head
->read_buf
= NULL
;
1977 spin_lock(&tomoyo_query_list_lock
);
1978 list_for_each(tmp
, &tomoyo_query_list
) {
1979 struct tomoyo_query
*ptr
= list_entry(tmp
, typeof(*ptr
), list
);
1982 if (pos
++ != head
->r
.query_index
)
1984 len
= ptr
->query_len
;
1987 spin_unlock(&tomoyo_query_list_lock
);
1989 head
->r
.query_index
= 0;
1992 buf
= kzalloc(len
+ 32, GFP_NOFS
);
1996 spin_lock(&tomoyo_query_list_lock
);
1997 list_for_each(tmp
, &tomoyo_query_list
) {
1998 struct tomoyo_query
*ptr
= list_entry(tmp
, typeof(*ptr
), list
);
2001 if (pos
++ != head
->r
.query_index
)
2004 * Some query can be skipped because tomoyo_query_list
2005 * can change, but I don't care.
2007 if (len
== ptr
->query_len
)
2008 snprintf(buf
, len
+ 31, "Q%u-%hu\n%s", ptr
->serial
,
2009 ptr
->retry
, ptr
->query
);
2012 spin_unlock(&tomoyo_query_list_lock
);
2014 head
->read_buf
= buf
;
2015 head
->r
.w
[head
->r
.w_pos
++] = buf
;
2016 head
->r
.query_index
++;
2023 * tomoyo_write_answer - Write the supervisor's decision.
2025 * @head: Pointer to "struct tomoyo_io_buffer".
2027 * Returns 0 on success, -EINVAL otherwise.
2029 static int tomoyo_write_answer(struct tomoyo_io_buffer
*head
)
2031 char *data
= head
->write_buf
;
2032 struct list_head
*tmp
;
2033 unsigned int serial
;
2034 unsigned int answer
;
2035 spin_lock(&tomoyo_query_list_lock
);
2036 list_for_each(tmp
, &tomoyo_query_list
) {
2037 struct tomoyo_query
*ptr
= list_entry(tmp
, typeof(*ptr
), list
);
2040 spin_unlock(&tomoyo_query_list_lock
);
2041 if (sscanf(data
, "A%u=%u", &serial
, &answer
) != 2)
2043 spin_lock(&tomoyo_query_list_lock
);
2044 list_for_each(tmp
, &tomoyo_query_list
) {
2045 struct tomoyo_query
*ptr
= list_entry(tmp
, typeof(*ptr
), list
);
2046 if (ptr
->serial
!= serial
)
2049 ptr
->answer
= answer
;
2052 spin_unlock(&tomoyo_query_list_lock
);
2057 * tomoyo_read_version: Get version.
2059 * @head: Pointer to "struct tomoyo_io_buffer".
2061 * Returns version information.
2063 static void tomoyo_read_version(struct tomoyo_io_buffer
*head
)
2066 tomoyo_io_printf(head
, "2.4.0");
2072 * tomoyo_read_self_domain - Get the current process's domainname.
2074 * @head: Pointer to "struct tomoyo_io_buffer".
2076 * Returns the current process's domainname.
2078 static void tomoyo_read_self_domain(struct tomoyo_io_buffer
*head
)
2082 * tomoyo_domain()->domainname != NULL
2083 * because every process belongs to a domain and
2084 * the domain's name cannot be NULL.
2086 tomoyo_io_printf(head
, "%s", tomoyo_domain()->domainname
->name
);
2091 /* String table for /sys/kernel/security/tomoyo/stat interface. */
2092 static const char * const tomoyo_policy_headers
[TOMOYO_MAX_POLICY_STAT
] = {
2093 [TOMOYO_STAT_POLICY_UPDATES
] = "update:",
2094 [TOMOYO_STAT_POLICY_LEARNING
] = "violation in learning mode:",
2095 [TOMOYO_STAT_POLICY_PERMISSIVE
] = "violation in permissive mode:",
2096 [TOMOYO_STAT_POLICY_ENFORCING
] = "violation in enforcing mode:",
2099 /* String table for /sys/kernel/security/tomoyo/stat interface. */
2100 static const char * const tomoyo_memory_headers
[TOMOYO_MAX_MEMORY_STAT
] = {
2101 [TOMOYO_MEMORY_POLICY
] = "policy:",
2102 [TOMOYO_MEMORY_AUDIT
] = "audit log:",
2103 [TOMOYO_MEMORY_QUERY
] = "query message:",
2106 /* Timestamp counter for last updated. */
2107 static unsigned int tomoyo_stat_updated
[TOMOYO_MAX_POLICY_STAT
];
2108 /* Counter for number of updates. */
2109 static unsigned int tomoyo_stat_modified
[TOMOYO_MAX_POLICY_STAT
];
2112 * tomoyo_update_stat - Update statistic counters.
2114 * @index: Index for policy type.
2118 void tomoyo_update_stat(const u8 index
)
2121 do_gettimeofday(&tv
);
2123 * I don't use atomic operations because race condition is not fatal.
2125 tomoyo_stat_updated
[index
]++;
2126 tomoyo_stat_modified
[index
] = tv
.tv_sec
;
2130 * tomoyo_read_stat - Read statistic data.
2132 * @head: Pointer to "struct tomoyo_io_buffer".
2136 static void tomoyo_read_stat(struct tomoyo_io_buffer
*head
)
2139 unsigned int total
= 0;
2142 for (i
= 0; i
< TOMOYO_MAX_POLICY_STAT
; i
++) {
2143 tomoyo_io_printf(head
, "Policy %-30s %10u",
2144 tomoyo_policy_headers
[i
],
2145 tomoyo_stat_updated
[i
]);
2146 if (tomoyo_stat_modified
[i
]) {
2147 struct tomoyo_time stamp
;
2148 tomoyo_convert_time(tomoyo_stat_modified
[i
], &stamp
);
2149 tomoyo_io_printf(head
, " (Last: %04u/%02u/%02u "
2151 stamp
.year
, stamp
.month
, stamp
.day
,
2152 stamp
.hour
, stamp
.min
, stamp
.sec
);
2154 tomoyo_set_lf(head
);
2156 for (i
= 0; i
< TOMOYO_MAX_MEMORY_STAT
; i
++) {
2157 unsigned int used
= tomoyo_memory_used
[i
];
2159 tomoyo_io_printf(head
, "Memory used by %-22s %10u",
2160 tomoyo_memory_headers
[i
], used
);
2161 used
= tomoyo_memory_quota
[i
];
2163 tomoyo_io_printf(head
, " (Quota: %10u)", used
);
2164 tomoyo_set_lf(head
);
2166 tomoyo_io_printf(head
, "Total memory used: %10u\n",
2172 * tomoyo_write_stat - Set memory quota.
2174 * @head: Pointer to "struct tomoyo_io_buffer".
2178 static int tomoyo_write_stat(struct tomoyo_io_buffer
*head
)
2180 char *data
= head
->write_buf
;
2182 if (tomoyo_str_starts(&data
, "Memory used by "))
2183 for (i
= 0; i
< TOMOYO_MAX_MEMORY_STAT
; i
++)
2184 if (tomoyo_str_starts(&data
, tomoyo_memory_headers
[i
]))
2185 sscanf(data
, "%u", &tomoyo_memory_quota
[i
]);
2190 * tomoyo_open_control - open() for /sys/kernel/security/tomoyo/ interface.
2192 * @type: Type of interface.
2193 * @file: Pointer to "struct file".
2195 * Returns 0 on success, negative value otherwise.
2197 int tomoyo_open_control(const u8 type
, struct file
*file
)
2199 struct tomoyo_io_buffer
*head
= kzalloc(sizeof(*head
), GFP_NOFS
);
2203 mutex_init(&head
->io_sem
);
2206 case TOMOYO_DOMAINPOLICY
:
2207 /* /sys/kernel/security/tomoyo/domain_policy */
2208 head
->write
= tomoyo_write_domain
;
2209 head
->read
= tomoyo_read_domain
;
2211 case TOMOYO_EXCEPTIONPOLICY
:
2212 /* /sys/kernel/security/tomoyo/exception_policy */
2213 head
->write
= tomoyo_write_exception
;
2214 head
->read
= tomoyo_read_exception
;
2217 /* /sys/kernel/security/tomoyo/audit */
2218 head
->poll
= tomoyo_poll_log
;
2219 head
->read
= tomoyo_read_log
;
2221 case TOMOYO_SELFDOMAIN
:
2222 /* /sys/kernel/security/tomoyo/self_domain */
2223 head
->read
= tomoyo_read_self_domain
;
2225 case TOMOYO_PROCESS_STATUS
:
2226 /* /sys/kernel/security/tomoyo/.process_status */
2227 head
->write
= tomoyo_write_pid
;
2228 head
->read
= tomoyo_read_pid
;
2230 case TOMOYO_VERSION
:
2231 /* /sys/kernel/security/tomoyo/version */
2232 head
->read
= tomoyo_read_version
;
2233 head
->readbuf_size
= 128;
2236 /* /sys/kernel/security/tomoyo/stat */
2237 head
->write
= tomoyo_write_stat
;
2238 head
->read
= tomoyo_read_stat
;
2239 head
->readbuf_size
= 1024;
2241 case TOMOYO_PROFILE
:
2242 /* /sys/kernel/security/tomoyo/profile */
2243 head
->write
= tomoyo_write_profile
;
2244 head
->read
= tomoyo_read_profile
;
2246 case TOMOYO_QUERY
: /* /sys/kernel/security/tomoyo/query */
2247 head
->poll
= tomoyo_poll_query
;
2248 head
->write
= tomoyo_write_answer
;
2249 head
->read
= tomoyo_read_query
;
2251 case TOMOYO_MANAGER
:
2252 /* /sys/kernel/security/tomoyo/manager */
2253 head
->write
= tomoyo_write_manager
;
2254 head
->read
= tomoyo_read_manager
;
2257 if (!(file
->f_mode
& FMODE_READ
)) {
2259 * No need to allocate read_buf since it is not opened
2264 } else if (!head
->poll
) {
2265 /* Don't allocate read_buf for poll() access. */
2266 if (!head
->readbuf_size
)
2267 head
->readbuf_size
= 4096 * 2;
2268 head
->read_buf
= kzalloc(head
->readbuf_size
, GFP_NOFS
);
2269 if (!head
->read_buf
) {
2274 if (!(file
->f_mode
& FMODE_WRITE
)) {
2276 * No need to allocate write_buf since it is not opened
2280 } else if (head
->write
) {
2281 head
->writebuf_size
= 4096 * 2;
2282 head
->write_buf
= kzalloc(head
->writebuf_size
, GFP_NOFS
);
2283 if (!head
->write_buf
) {
2284 kfree(head
->read_buf
);
2290 * If the file is /sys/kernel/security/tomoyo/query , increment the
2292 * The obserber counter is used by tomoyo_supervisor() to see if
2293 * there is some process monitoring /sys/kernel/security/tomoyo/query.
2295 if (type
== TOMOYO_QUERY
)
2296 atomic_inc(&tomoyo_query_observers
);
2297 file
->private_data
= head
;
2298 tomoyo_notify_gc(head
, true);
2303 * tomoyo_poll_control - poll() for /sys/kernel/security/tomoyo/ interface.
2305 * @file: Pointer to "struct file".
2306 * @wait: Pointer to "poll_table".
2308 * Waits for read readiness.
2309 * /sys/kernel/security/tomoyo/query is handled by /usr/sbin/tomoyo-queryd and
2310 * /sys/kernel/security/tomoyo/audit is handled by /usr/sbin/tomoyo-auditd.
2312 int tomoyo_poll_control(struct file
*file
, poll_table
*wait
)
2314 struct tomoyo_io_buffer
*head
= file
->private_data
;
2317 return head
->poll(file
, wait
);
2321 * tomoyo_set_namespace_cursor - Set namespace to read.
2323 * @head: Pointer to "struct tomoyo_io_buffer".
2327 static inline void tomoyo_set_namespace_cursor(struct tomoyo_io_buffer
*head
)
2329 struct list_head
*ns
;
2330 if (head
->type
!= TOMOYO_EXCEPTIONPOLICY
&&
2331 head
->type
!= TOMOYO_PROFILE
)
2334 * If this is the first read, or reading previous namespace finished
2335 * and has more namespaces to read, update the namespace cursor.
2338 if (!ns
|| (head
->r
.eof
&& ns
->next
!= &tomoyo_namespace_list
)) {
2339 /* Clearing is OK because tomoyo_flush() returned true. */
2340 memset(&head
->r
, 0, sizeof(head
->r
));
2341 head
->r
.ns
= ns
? ns
->next
: tomoyo_namespace_list
.next
;
2346 * tomoyo_has_more_namespace - Check for unread namespaces.
2348 * @head: Pointer to "struct tomoyo_io_buffer".
2350 * Returns true if we have more entries to print, false otherwise.
2352 static inline bool tomoyo_has_more_namespace(struct tomoyo_io_buffer
*head
)
2354 return (head
->type
== TOMOYO_EXCEPTIONPOLICY
||
2355 head
->type
== TOMOYO_PROFILE
) && head
->r
.eof
&&
2356 head
->r
.ns
->next
!= &tomoyo_namespace_list
;
2360 * tomoyo_read_control - read() for /sys/kernel/security/tomoyo/ interface.
2362 * @head: Pointer to "struct tomoyo_io_buffer".
2363 * @buffer: Poiner to buffer to write to.
2364 * @buffer_len: Size of @buffer.
2366 * Returns bytes read on success, negative value otherwise.
2368 ssize_t
tomoyo_read_control(struct tomoyo_io_buffer
*head
, char __user
*buffer
,
2369 const int buffer_len
)
2376 if (mutex_lock_interruptible(&head
->io_sem
))
2378 head
->read_user_buf
= buffer
;
2379 head
->read_user_buf_avail
= buffer_len
;
2380 idx
= tomoyo_read_lock();
2381 if (tomoyo_flush(head
))
2382 /* Call the policy handler. */
2384 tomoyo_set_namespace_cursor(head
);
2386 } while (tomoyo_flush(head
) &&
2387 tomoyo_has_more_namespace(head
));
2388 tomoyo_read_unlock(idx
);
2389 len
= head
->read_user_buf
- buffer
;
2390 mutex_unlock(&head
->io_sem
);
2395 * tomoyo_parse_policy - Parse a policy line.
2397 * @head: Poiter to "struct tomoyo_io_buffer".
2398 * @line: Line to parse.
2400 * Returns 0 on success, negative value otherwise.
2402 * Caller holds tomoyo_read_lock().
2404 static int tomoyo_parse_policy(struct tomoyo_io_buffer
*head
, char *line
)
2406 /* Delete request? */
2407 head
->w
.is_delete
= !strncmp(line
, "delete ", 7);
2408 if (head
->w
.is_delete
)
2409 memmove(line
, line
+ 7, strlen(line
+ 7) + 1);
2410 /* Selecting namespace to update. */
2411 if (head
->type
== TOMOYO_EXCEPTIONPOLICY
||
2412 head
->type
== TOMOYO_PROFILE
) {
2414 char *cp
= strchr(line
, ' ');
2417 head
->w
.ns
= tomoyo_assign_namespace(line
);
2418 memmove(line
, cp
, strlen(cp
) + 1);
2422 head
->w
.ns
= &tomoyo_kernel_namespace
;
2423 /* Don't allow updating if namespace is invalid. */
2427 /* Do the update. */
2428 return head
->write(head
);
2432 * tomoyo_write_control - write() for /sys/kernel/security/tomoyo/ interface.
2434 * @head: Pointer to "struct tomoyo_io_buffer".
2435 * @buffer: Pointer to buffer to read from.
2436 * @buffer_len: Size of @buffer.
2438 * Returns @buffer_len on success, negative value otherwise.
2440 ssize_t
tomoyo_write_control(struct tomoyo_io_buffer
*head
,
2441 const char __user
*buffer
, const int buffer_len
)
2443 int error
= buffer_len
;
2444 size_t avail_len
= buffer_len
;
2445 char *cp0
= head
->write_buf
;
2449 if (!access_ok(VERIFY_READ
, buffer
, buffer_len
))
2451 if (mutex_lock_interruptible(&head
->io_sem
))
2453 idx
= tomoyo_read_lock();
2454 /* Read a line and dispatch it to the policy handler. */
2455 while (avail_len
> 0) {
2457 if (head
->w
.avail
>= head
->writebuf_size
- 1) {
2458 const int len
= head
->writebuf_size
* 2;
2459 char *cp
= kzalloc(len
, GFP_NOFS
);
2464 memmove(cp
, cp0
, head
->w
.avail
);
2466 head
->write_buf
= cp
;
2468 head
->writebuf_size
= len
;
2470 if (get_user(c
, buffer
)) {
2476 cp0
[head
->w
.avail
++] = c
;
2479 cp0
[head
->w
.avail
- 1] = '\0';
2481 tomoyo_normalize_line(cp0
);
2482 if (!strcmp(cp0
, "reset")) {
2483 head
->w
.ns
= &tomoyo_kernel_namespace
;
2484 head
->w
.domain
= NULL
;
2485 memset(&head
->r
, 0, sizeof(head
->r
));
2488 /* Don't allow updating policies by non manager programs. */
2489 switch (head
->type
) {
2490 case TOMOYO_PROCESS_STATUS
:
2491 /* This does not write anything. */
2493 case TOMOYO_DOMAINPOLICY
:
2494 if (tomoyo_select_domain(head
, cp0
))
2497 case TOMOYO_EXCEPTIONPOLICY
:
2498 if (!strcmp(cp0
, "select transition_only")) {
2499 head
->r
.print_transition_related_only
= true;
2504 if (!tomoyo_manager()) {
2509 switch (tomoyo_parse_policy(head
, cp0
)) {
2514 switch (head
->type
) {
2515 case TOMOYO_DOMAINPOLICY
:
2516 case TOMOYO_EXCEPTIONPOLICY
:
2518 case TOMOYO_PROFILE
:
2519 case TOMOYO_MANAGER
:
2520 tomoyo_update_stat(TOMOYO_STAT_POLICY_UPDATES
);
2529 tomoyo_read_unlock(idx
);
2530 mutex_unlock(&head
->io_sem
);
2535 * tomoyo_close_control - close() for /sys/kernel/security/tomoyo/ interface.
2537 * @head: Pointer to "struct tomoyo_io_buffer".
2541 int tomoyo_close_control(struct tomoyo_io_buffer
*head
)
2544 * If the file is /sys/kernel/security/tomoyo/query , decrement the
2547 if (head
->type
== TOMOYO_QUERY
&&
2548 atomic_dec_and_test(&tomoyo_query_observers
))
2549 wake_up_all(&tomoyo_answer_wait
);
2550 tomoyo_notify_gc(head
, false);
2555 * tomoyo_check_profile - Check all profiles currently assigned to domains are defined.
2557 void tomoyo_check_profile(void)
2559 struct tomoyo_domain_info
*domain
;
2560 const int idx
= tomoyo_read_lock();
2561 tomoyo_policy_loaded
= true;
2562 printk(KERN_INFO
"TOMOYO: 2.4.0\n");
2563 list_for_each_entry_rcu(domain
, &tomoyo_domain_list
, list
) {
2564 const u8 profile
= domain
->profile
;
2565 const struct tomoyo_policy_namespace
*ns
= domain
->ns
;
2566 if (ns
->profile_version
!= 20100903)
2568 "Profile version %u is not supported.\n",
2569 ns
->profile_version
);
2570 else if (!ns
->profile_ptr
[profile
])
2572 "Profile %u (used by '%s') is not defined.\n",
2573 profile
, domain
->domainname
->name
);
2577 "Userland tools for TOMOYO 2.4 must be installed and "
2578 "policy must be initialized.\n");
2579 printk(KERN_ERR
"Please see http://tomoyo.sourceforge.jp/2.4/ "
2580 "for more information.\n");
2583 tomoyo_read_unlock(idx
);
2584 printk(KERN_INFO
"Mandatory Access Control activated.\n");
2588 * tomoyo_load_builtin_policy - Load built-in policy.
2592 void __init
tomoyo_load_builtin_policy(void)
2595 * This include file is manually created and contains built-in policy
2596 * named "tomoyo_builtin_profile", "tomoyo_builtin_exception_policy",
2597 * "tomoyo_builtin_domain_policy", "tomoyo_builtin_manager",
2598 * "tomoyo_builtin_stat" in the form of "static char [] __initdata".
2600 #include "builtin-policy.h"
2602 const int idx
= tomoyo_read_lock();
2603 for (i
= 0; i
< 5; i
++) {
2604 struct tomoyo_io_buffer head
= { };
2608 start
= tomoyo_builtin_profile
;
2609 head
.type
= TOMOYO_PROFILE
;
2610 head
.write
= tomoyo_write_profile
;
2613 start
= tomoyo_builtin_exception_policy
;
2614 head
.type
= TOMOYO_EXCEPTIONPOLICY
;
2615 head
.write
= tomoyo_write_exception
;
2618 start
= tomoyo_builtin_domain_policy
;
2619 head
.type
= TOMOYO_DOMAINPOLICY
;
2620 head
.write
= tomoyo_write_domain
;
2623 start
= tomoyo_builtin_manager
;
2624 head
.type
= TOMOYO_MANAGER
;
2625 head
.write
= tomoyo_write_manager
;
2628 start
= tomoyo_builtin_stat
;
2629 head
.type
= TOMOYO_STAT
;
2630 head
.write
= tomoyo_write_stat
;
2634 char *end
= strchr(start
, '\n');
2638 tomoyo_normalize_line(start
);
2639 head
.write_buf
= start
;
2640 tomoyo_parse_policy(&head
, start
);
2644 tomoyo_read_unlock(idx
);
2645 #ifdef CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER
2646 tomoyo_check_profile();