]> bbs.cooldavid.org Git - net-next-2.6.git/blame - security/tomoyo/file.c
TOMOYO: Use structure for passing common arguments.
[net-next-2.6.git] / security / tomoyo / file.c
CommitLineData
b69a54ee
KT
1/*
2 * security/tomoyo/file.c
3 *
4 * Implementation of the Domain-Based Mandatory Access Control.
5 *
6 * Copyright (C) 2005-2009 NTT DATA CORPORATION
7 *
39826a1e 8 * Version: 2.2.0 2009/04/01
b69a54ee
KT
9 *
10 */
11
12#include "common.h"
5a0e3ad6 13#include <linux/slab.h>
b69a54ee
KT
14
15/* Keyword array for single path operations. */
7ef61233
TH
16static const char *tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION] = {
17 [TOMOYO_TYPE_READ_WRITE] = "read/write",
18 [TOMOYO_TYPE_EXECUTE] = "execute",
19 [TOMOYO_TYPE_READ] = "read",
20 [TOMOYO_TYPE_WRITE] = "write",
21 [TOMOYO_TYPE_CREATE] = "create",
22 [TOMOYO_TYPE_UNLINK] = "unlink",
23 [TOMOYO_TYPE_MKDIR] = "mkdir",
24 [TOMOYO_TYPE_RMDIR] = "rmdir",
25 [TOMOYO_TYPE_MKFIFO] = "mkfifo",
26 [TOMOYO_TYPE_MKSOCK] = "mksock",
27 [TOMOYO_TYPE_MKBLOCK] = "mkblock",
28 [TOMOYO_TYPE_MKCHAR] = "mkchar",
29 [TOMOYO_TYPE_TRUNCATE] = "truncate",
30 [TOMOYO_TYPE_SYMLINK] = "symlink",
31 [TOMOYO_TYPE_REWRITE] = "rewrite",
32 [TOMOYO_TYPE_IOCTL] = "ioctl",
33 [TOMOYO_TYPE_CHMOD] = "chmod",
34 [TOMOYO_TYPE_CHOWN] = "chown",
35 [TOMOYO_TYPE_CHGRP] = "chgrp",
36 [TOMOYO_TYPE_CHROOT] = "chroot",
37 [TOMOYO_TYPE_MOUNT] = "mount",
38 [TOMOYO_TYPE_UMOUNT] = "unmount",
b69a54ee
KT
39};
40
41/* Keyword array for double path operations. */
7ef61233
TH
42static const char *tomoyo_path2_keyword[TOMOYO_MAX_PATH2_OPERATION] = {
43 [TOMOYO_TYPE_LINK] = "link",
44 [TOMOYO_TYPE_RENAME] = "rename",
45 [TOMOYO_TYPE_PIVOT_ROOT] = "pivot_root",
b69a54ee
KT
46};
47
7762fbff
TH
48void tomoyo_put_name_union(struct tomoyo_name_union *ptr)
49{
50 if (!ptr)
51 return;
52 if (ptr->is_group)
53 tomoyo_put_path_group(ptr->group);
54 else
55 tomoyo_put_name(ptr->filename);
56}
57
58bool tomoyo_compare_name_union(const struct tomoyo_path_info *name,
59 const struct tomoyo_name_union *ptr)
60{
61 if (ptr->is_group)
62 return tomoyo_path_matches_group(name, ptr->group, 1);
63 return tomoyo_path_matches_pattern(name, ptr->filename);
64}
65
66static bool tomoyo_compare_name_union_pattern(const struct tomoyo_path_info
67 *name,
68 const struct tomoyo_name_union
69 *ptr, const bool may_use_pattern)
70{
71 if (ptr->is_group)
72 return tomoyo_path_matches_group(name, ptr->group,
73 may_use_pattern);
74 if (may_use_pattern || !ptr->filename->is_patterned)
75 return tomoyo_path_matches_pattern(name, ptr->filename);
76 return false;
77}
78
4c3e9e2d
TH
79void tomoyo_put_number_union(struct tomoyo_number_union *ptr)
80{
81 if (ptr && ptr->is_group)
82 tomoyo_put_number_group(ptr->group);
83}
84
85bool tomoyo_compare_number_union(const unsigned long value,
86 const struct tomoyo_number_union *ptr)
87{
88 if (ptr->is_group)
89 return tomoyo_number_matches_group(value, value, ptr->group);
90 return value >= ptr->values[0] && value <= ptr->values[1];
91}
92
cb0abe6a
TH
93/**
94 * tomoyo_init_request_info - Initialize "struct tomoyo_request_info" members.
95 *
96 * @r: Pointer to "struct tomoyo_request_info" to initialize.
97 * @domain: Pointer to "struct tomoyo_domain_info". NULL for tomoyo_domain().
98 *
99 * Returns mode.
100 */
101static int tomoyo_init_request_info(struct tomoyo_request_info *r,
102 struct tomoyo_domain_info *domain)
103{
104 memset(r, 0, sizeof(*r));
105 if (!domain)
106 domain = tomoyo_domain();
107 r->domain = domain;
108 r->mode = tomoyo_check_flags(domain, TOMOYO_MAC_FOR_FILE);
109 return r->mode;
110}
111
112static void tomoyo_warn_log(struct tomoyo_request_info *r, const char *fmt, ...)
113 __attribute__ ((format(printf, 2, 3)));
114/**
115 * tomoyo_warn_log - Print warning or error message on console.
116 *
117 * @r: Pointer to "struct tomoyo_request_info".
118 * @fmt: The printf()'s format string, followed by parameters.
119 */
120static void tomoyo_warn_log(struct tomoyo_request_info *r, const char *fmt, ...)
121{
122 int len = PAGE_SIZE;
123 va_list args;
124 char *buffer;
125 if (!tomoyo_verbose_mode(r->domain))
126 return;
127 while (1) {
128 int len2;
129 buffer = kmalloc(len, GFP_NOFS);
130 if (!buffer)
131 return;
132 va_start(args, fmt);
133 len2 = vsnprintf(buffer, len - 1, fmt, args);
134 va_end(args);
135 if (len2 <= len - 1) {
136 buffer[len2] = '\0';
137 break;
138 }
139 len = len2 + 1;
140 kfree(buffer);
141 }
142 printk(KERN_WARNING "TOMOYO-%s: Access %s denied for %s\n",
143 r->mode == TOMOYO_CONFIG_ENFORCING ? "ERROR" : "WARNING",
144 buffer, tomoyo_get_last_name(r->domain));
145 kfree(buffer);
146}
147
b69a54ee 148/**
7ef61233 149 * tomoyo_path2keyword - Get the name of single path operation.
b69a54ee
KT
150 *
151 * @operation: Type of operation.
152 *
153 * Returns the name of single path operation.
154 */
7ef61233 155const char *tomoyo_path2keyword(const u8 operation)
b69a54ee 156{
7ef61233
TH
157 return (operation < TOMOYO_MAX_PATH_OPERATION)
158 ? tomoyo_path_keyword[operation] : NULL;
b69a54ee
KT
159}
160
161/**
7ef61233 162 * tomoyo_path22keyword - Get the name of double path operation.
b69a54ee
KT
163 *
164 * @operation: Type of operation.
165 *
166 * Returns the name of double path operation.
167 */
7ef61233 168const char *tomoyo_path22keyword(const u8 operation)
b69a54ee 169{
7ef61233
TH
170 return (operation < TOMOYO_MAX_PATH2_OPERATION)
171 ? tomoyo_path2_keyword[operation] : NULL;
b69a54ee
KT
172}
173
174/**
175 * tomoyo_strendswith - Check whether the token ends with the given token.
176 *
177 * @name: The token to check.
178 * @tail: The token to find.
179 *
180 * Returns true if @name ends with @tail, false otherwise.
181 */
182static bool tomoyo_strendswith(const char *name, const char *tail)
183{
184 int len;
185
186 if (!name || !tail)
187 return false;
188 len = strlen(name) - strlen(tail);
189 return len >= 0 && !strcmp(name + len, tail);
190}
191
192/**
193 * tomoyo_get_path - Get realpath.
194 *
195 * @path: Pointer to "struct path".
196 *
197 * Returns pointer to "struct tomoyo_path_info" on success, NULL otherwise.
198 */
199static struct tomoyo_path_info *tomoyo_get_path(struct path *path)
200{
201 int error;
8e2d39a1 202 struct tomoyo_path_info_with_data *buf = kzalloc(sizeof(*buf),
4e5d6f7e 203 GFP_NOFS);
b69a54ee
KT
204
205 if (!buf)
206 return NULL;
207 /* Reserve one byte for appending "/". */
208 error = tomoyo_realpath_from_path2(path, buf->body,
209 sizeof(buf->body) - 2);
210 if (!error) {
211 buf->head.name = buf->body;
212 tomoyo_fill_path_info(&buf->head);
213 return &buf->head;
214 }
8e2d39a1 215 kfree(buf);
b69a54ee
KT
216 return NULL;
217}
218
7ef61233
TH
219static int tomoyo_update_path2_acl(const u8 type, const char *filename1,
220 const char *filename2,
221 struct tomoyo_domain_info *const domain,
222 const bool is_delete);
223static int tomoyo_update_path_acl(const u8 type, const char *filename,
224 struct tomoyo_domain_info *const domain,
225 const bool is_delete);
b69a54ee 226
c3fa109a
TH
227/*
228 * tomoyo_globally_readable_list is used for holding list of pathnames which
229 * are by default allowed to be open()ed for reading by any process.
230 *
231 * An entry is added by
232 *
233 * # echo 'allow_read /lib/libc-2.5.so' > \
234 * /sys/kernel/security/tomoyo/exception_policy
235 *
236 * and is deleted by
237 *
238 * # echo 'delete allow_read /lib/libc-2.5.so' > \
239 * /sys/kernel/security/tomoyo/exception_policy
240 *
241 * and all entries are retrieved by
242 *
243 * # grep ^allow_read /sys/kernel/security/tomoyo/exception_policy
244 *
245 * In the example above, any process is allowed to
246 * open("/lib/libc-2.5.so", O_RDONLY).
247 * One exception is, if the domain which current process belongs to is marked
248 * as "ignore_global_allow_read", current process can't do so unless explicitly
249 * given "allow_read /lib/libc-2.5.so" to the domain which current process
250 * belongs to.
251 */
847b173e 252LIST_HEAD(tomoyo_globally_readable_list);
b69a54ee
KT
253
254/**
255 * tomoyo_update_globally_readable_entry - Update "struct tomoyo_globally_readable_file_entry" list.
256 *
257 * @filename: Filename unconditionally permitted to open() for reading.
258 * @is_delete: True if it is a delete request.
259 *
260 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
261 *
262 * Caller holds tomoyo_read_lock().
b69a54ee
KT
263 */
264static int tomoyo_update_globally_readable_entry(const char *filename,
265 const bool is_delete)
266{
b69a54ee 267 struct tomoyo_globally_readable_file_entry *ptr;
9e4b50e9 268 struct tomoyo_globally_readable_file_entry e = { };
ca0b7df3 269 int error = is_delete ? -ENOENT : -ENOMEM;
b69a54ee 270
17080008 271 if (!tomoyo_is_correct_path(filename, 1, 0, -1))
b69a54ee 272 return -EINVAL;
9e4b50e9
TH
273 e.filename = tomoyo_get_name(filename);
274 if (!e.filename)
b69a54ee 275 return -ENOMEM;
29282381
TH
276 if (mutex_lock_interruptible(&tomoyo_policy_lock))
277 goto out;
fdb8ebb7 278 list_for_each_entry_rcu(ptr, &tomoyo_globally_readable_list, list) {
9e4b50e9 279 if (ptr->filename != e.filename)
b69a54ee
KT
280 continue;
281 ptr->is_deleted = is_delete;
282 error = 0;
ca0b7df3 283 break;
b69a54ee 284 }
9e4b50e9
TH
285 if (!is_delete && error) {
286 struct tomoyo_globally_readable_file_entry *entry =
287 tomoyo_commit_ok(&e, sizeof(e));
288 if (entry) {
289 list_add_tail_rcu(&entry->list,
290 &tomoyo_globally_readable_list);
291 error = 0;
292 }
b69a54ee 293 }
f737d95d 294 mutex_unlock(&tomoyo_policy_lock);
29282381 295 out:
9e4b50e9 296 tomoyo_put_name(e.filename);
b69a54ee
KT
297 return error;
298}
299
300/**
301 * tomoyo_is_globally_readable_file - Check if the file is unconditionnaly permitted to be open()ed for reading.
302 *
303 * @filename: The filename to check.
304 *
305 * Returns true if any domain can open @filename for reading, false otherwise.
fdb8ebb7
TH
306 *
307 * Caller holds tomoyo_read_lock().
b69a54ee
KT
308 */
309static bool tomoyo_is_globally_readable_file(const struct tomoyo_path_info *
310 filename)
311{
312 struct tomoyo_globally_readable_file_entry *ptr;
313 bool found = false;
fdb8ebb7
TH
314
315 list_for_each_entry_rcu(ptr, &tomoyo_globally_readable_list, list) {
b69a54ee
KT
316 if (!ptr->is_deleted &&
317 tomoyo_path_matches_pattern(filename, ptr->filename)) {
318 found = true;
319 break;
320 }
321 }
b69a54ee
KT
322 return found;
323}
324
325/**
326 * tomoyo_write_globally_readable_policy - Write "struct tomoyo_globally_readable_file_entry" list.
327 *
328 * @data: String to parse.
329 * @is_delete: True if it is a delete request.
330 *
331 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
332 *
333 * Caller holds tomoyo_read_lock().
b69a54ee
KT
334 */
335int tomoyo_write_globally_readable_policy(char *data, const bool is_delete)
336{
337 return tomoyo_update_globally_readable_entry(data, is_delete);
338}
339
340/**
341 * tomoyo_read_globally_readable_policy - Read "struct tomoyo_globally_readable_file_entry" list.
342 *
343 * @head: Pointer to "struct tomoyo_io_buffer".
344 *
345 * Returns true on success, false otherwise.
fdb8ebb7
TH
346 *
347 * Caller holds tomoyo_read_lock().
b69a54ee
KT
348 */
349bool tomoyo_read_globally_readable_policy(struct tomoyo_io_buffer *head)
350{
351 struct list_head *pos;
352 bool done = true;
353
b69a54ee
KT
354 list_for_each_cookie(pos, head->read_var2,
355 &tomoyo_globally_readable_list) {
356 struct tomoyo_globally_readable_file_entry *ptr;
357 ptr = list_entry(pos,
358 struct tomoyo_globally_readable_file_entry,
359 list);
360 if (ptr->is_deleted)
361 continue;
7d2948b1
TH
362 done = tomoyo_io_printf(head, TOMOYO_KEYWORD_ALLOW_READ "%s\n",
363 ptr->filename->name);
364 if (!done)
b69a54ee 365 break;
b69a54ee 366 }
b69a54ee
KT
367 return done;
368}
369
c3fa109a
TH
370/* tomoyo_pattern_list is used for holding list of pathnames which are used for
371 * converting pathnames to pathname patterns during learning mode.
372 *
373 * An entry is added by
374 *
375 * # echo 'file_pattern /proc/\$/mounts' > \
376 * /sys/kernel/security/tomoyo/exception_policy
377 *
378 * and is deleted by
379 *
380 * # echo 'delete file_pattern /proc/\$/mounts' > \
381 * /sys/kernel/security/tomoyo/exception_policy
382 *
383 * and all entries are retrieved by
384 *
385 * # grep ^file_pattern /sys/kernel/security/tomoyo/exception_policy
386 *
387 * In the example above, if a process which belongs to a domain which is in
388 * learning mode requested open("/proc/1/mounts", O_RDONLY),
389 * "allow_read /proc/\$/mounts" is automatically added to the domain which that
390 * process belongs to.
391 *
392 * It is not a desirable behavior that we have to use /proc/\$/ instead of
393 * /proc/self/ when current process needs to access only current process's
394 * information. As of now, LSM version of TOMOYO is using __d_path() for
395 * calculating pathname. Non LSM version of TOMOYO is using its own function
396 * which pretends as if /proc/self/ is not a symlink; so that we can forbid
397 * current process from accessing other process's information.
398 */
847b173e 399LIST_HEAD(tomoyo_pattern_list);
b69a54ee
KT
400
401/**
402 * tomoyo_update_file_pattern_entry - Update "struct tomoyo_pattern_entry" list.
403 *
404 * @pattern: Pathname pattern.
405 * @is_delete: True if it is a delete request.
406 *
407 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
408 *
409 * Caller holds tomoyo_read_lock().
b69a54ee
KT
410 */
411static int tomoyo_update_file_pattern_entry(const char *pattern,
412 const bool is_delete)
413{
b69a54ee 414 struct tomoyo_pattern_entry *ptr;
9e4b50e9 415 struct tomoyo_pattern_entry e = { .pattern = tomoyo_get_name(pattern) };
ca0b7df3 416 int error = is_delete ? -ENOENT : -ENOMEM;
b69a54ee 417
9e4b50e9 418 if (!e.pattern)
ca0b7df3 419 return error;
9e4b50e9 420 if (!e.pattern->is_patterned)
ca0b7df3 421 goto out;
29282381
TH
422 if (mutex_lock_interruptible(&tomoyo_policy_lock))
423 goto out;
fdb8ebb7 424 list_for_each_entry_rcu(ptr, &tomoyo_pattern_list, list) {
9e4b50e9 425 if (e.pattern != ptr->pattern)
b69a54ee
KT
426 continue;
427 ptr->is_deleted = is_delete;
428 error = 0;
ca0b7df3 429 break;
b69a54ee 430 }
9e4b50e9
TH
431 if (!is_delete && error) {
432 struct tomoyo_pattern_entry *entry =
433 tomoyo_commit_ok(&e, sizeof(e));
434 if (entry) {
435 list_add_tail_rcu(&entry->list, &tomoyo_pattern_list);
436 error = 0;
437 }
b69a54ee 438 }
f737d95d 439 mutex_unlock(&tomoyo_policy_lock);
ca0b7df3 440 out:
9e4b50e9 441 tomoyo_put_name(e.pattern);
b69a54ee
KT
442 return error;
443}
444
445/**
446 * tomoyo_get_file_pattern - Get patterned pathname.
447 *
448 * @filename: The filename to find patterned pathname.
449 *
450 * Returns pointer to pathname pattern if matched, @filename otherwise.
fdb8ebb7
TH
451 *
452 * Caller holds tomoyo_read_lock().
b69a54ee
KT
453 */
454static const struct tomoyo_path_info *
455tomoyo_get_file_pattern(const struct tomoyo_path_info *filename)
456{
457 struct tomoyo_pattern_entry *ptr;
458 const struct tomoyo_path_info *pattern = NULL;
459
fdb8ebb7 460 list_for_each_entry_rcu(ptr, &tomoyo_pattern_list, list) {
b69a54ee
KT
461 if (ptr->is_deleted)
462 continue;
463 if (!tomoyo_path_matches_pattern(filename, ptr->pattern))
464 continue;
465 pattern = ptr->pattern;
466 if (tomoyo_strendswith(pattern->name, "/\\*")) {
467 /* Do nothing. Try to find the better match. */
468 } else {
469 /* This would be the better match. Use this. */
470 break;
471 }
472 }
b69a54ee
KT
473 if (pattern)
474 filename = pattern;
475 return filename;
476}
477
478/**
479 * tomoyo_write_pattern_policy - Write "struct tomoyo_pattern_entry" list.
480 *
481 * @data: String to parse.
482 * @is_delete: True if it is a delete request.
483 *
484 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
485 *
486 * Caller holds tomoyo_read_lock().
b69a54ee
KT
487 */
488int tomoyo_write_pattern_policy(char *data, const bool is_delete)
489{
490 return tomoyo_update_file_pattern_entry(data, is_delete);
491}
492
493/**
494 * tomoyo_read_file_pattern - Read "struct tomoyo_pattern_entry" list.
495 *
496 * @head: Pointer to "struct tomoyo_io_buffer".
497 *
498 * Returns true on success, false otherwise.
fdb8ebb7
TH
499 *
500 * Caller holds tomoyo_read_lock().
b69a54ee
KT
501 */
502bool tomoyo_read_file_pattern(struct tomoyo_io_buffer *head)
503{
504 struct list_head *pos;
505 bool done = true;
506
b69a54ee
KT
507 list_for_each_cookie(pos, head->read_var2, &tomoyo_pattern_list) {
508 struct tomoyo_pattern_entry *ptr;
509 ptr = list_entry(pos, struct tomoyo_pattern_entry, list);
510 if (ptr->is_deleted)
511 continue;
7d2948b1
TH
512 done = tomoyo_io_printf(head, TOMOYO_KEYWORD_FILE_PATTERN
513 "%s\n", ptr->pattern->name);
514 if (!done)
b69a54ee 515 break;
b69a54ee 516 }
b69a54ee
KT
517 return done;
518}
519
c3fa109a
TH
520/*
521 * tomoyo_no_rewrite_list is used for holding list of pathnames which are by
522 * default forbidden to modify already written content of a file.
523 *
524 * An entry is added by
525 *
526 * # echo 'deny_rewrite /var/log/messages' > \
527 * /sys/kernel/security/tomoyo/exception_policy
528 *
529 * and is deleted by
530 *
531 * # echo 'delete deny_rewrite /var/log/messages' > \
532 * /sys/kernel/security/tomoyo/exception_policy
533 *
534 * and all entries are retrieved by
535 *
536 * # grep ^deny_rewrite /sys/kernel/security/tomoyo/exception_policy
537 *
538 * In the example above, if a process requested to rewrite /var/log/messages ,
539 * the process can't rewrite unless the domain which that process belongs to
540 * has "allow_rewrite /var/log/messages" entry.
541 *
542 * It is not a desirable behavior that we have to add "\040(deleted)" suffix
543 * when we want to allow rewriting already unlink()ed file. As of now,
544 * LSM version of TOMOYO is using __d_path() for calculating pathname.
545 * Non LSM version of TOMOYO is using its own function which doesn't append
546 * " (deleted)" suffix if the file is already unlink()ed; so that we don't
547 * need to worry whether the file is already unlink()ed or not.
548 */
847b173e 549LIST_HEAD(tomoyo_no_rewrite_list);
b69a54ee
KT
550
551/**
552 * tomoyo_update_no_rewrite_entry - Update "struct tomoyo_no_rewrite_entry" list.
553 *
554 * @pattern: Pathname pattern that are not rewritable by default.
555 * @is_delete: True if it is a delete request.
556 *
557 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
558 *
559 * Caller holds tomoyo_read_lock().
b69a54ee
KT
560 */
561static int tomoyo_update_no_rewrite_entry(const char *pattern,
562 const bool is_delete)
563{
ca0b7df3 564 struct tomoyo_no_rewrite_entry *ptr;
9e4b50e9 565 struct tomoyo_no_rewrite_entry e = { };
ca0b7df3 566 int error = is_delete ? -ENOENT : -ENOMEM;
b69a54ee 567
17080008 568 if (!tomoyo_is_correct_path(pattern, 0, 0, 0))
b69a54ee 569 return -EINVAL;
9e4b50e9
TH
570 e.pattern = tomoyo_get_name(pattern);
571 if (!e.pattern)
ca0b7df3 572 return error;
29282381
TH
573 if (mutex_lock_interruptible(&tomoyo_policy_lock))
574 goto out;
fdb8ebb7 575 list_for_each_entry_rcu(ptr, &tomoyo_no_rewrite_list, list) {
9e4b50e9 576 if (ptr->pattern != e.pattern)
b69a54ee
KT
577 continue;
578 ptr->is_deleted = is_delete;
579 error = 0;
ca0b7df3 580 break;
b69a54ee 581 }
9e4b50e9
TH
582 if (!is_delete && error) {
583 struct tomoyo_no_rewrite_entry *entry =
584 tomoyo_commit_ok(&e, sizeof(e));
585 if (entry) {
586 list_add_tail_rcu(&entry->list,
587 &tomoyo_no_rewrite_list);
588 error = 0;
589 }
b69a54ee 590 }
f737d95d 591 mutex_unlock(&tomoyo_policy_lock);
29282381 592 out:
9e4b50e9 593 tomoyo_put_name(e.pattern);
b69a54ee
KT
594 return error;
595}
596
597/**
598 * tomoyo_is_no_rewrite_file - Check if the given pathname is not permitted to be rewrited.
599 *
600 * @filename: Filename to check.
601 *
602 * Returns true if @filename is specified by "deny_rewrite" directive,
603 * false otherwise.
fdb8ebb7
TH
604 *
605 * Caller holds tomoyo_read_lock().
b69a54ee
KT
606 */
607static bool tomoyo_is_no_rewrite_file(const struct tomoyo_path_info *filename)
608{
609 struct tomoyo_no_rewrite_entry *ptr;
610 bool found = false;
611
fdb8ebb7 612 list_for_each_entry_rcu(ptr, &tomoyo_no_rewrite_list, list) {
b69a54ee
KT
613 if (ptr->is_deleted)
614 continue;
615 if (!tomoyo_path_matches_pattern(filename, ptr->pattern))
616 continue;
617 found = true;
618 break;
619 }
b69a54ee
KT
620 return found;
621}
622
623/**
624 * tomoyo_write_no_rewrite_policy - Write "struct tomoyo_no_rewrite_entry" list.
625 *
626 * @data: String to parse.
627 * @is_delete: True if it is a delete request.
628 *
629 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
630 *
631 * Caller holds tomoyo_read_lock().
b69a54ee
KT
632 */
633int tomoyo_write_no_rewrite_policy(char *data, const bool is_delete)
634{
635 return tomoyo_update_no_rewrite_entry(data, is_delete);
636}
637
638/**
639 * tomoyo_read_no_rewrite_policy - Read "struct tomoyo_no_rewrite_entry" list.
640 *
641 * @head: Pointer to "struct tomoyo_io_buffer".
642 *
643 * Returns true on success, false otherwise.
fdb8ebb7
TH
644 *
645 * Caller holds tomoyo_read_lock().
b69a54ee
KT
646 */
647bool tomoyo_read_no_rewrite_policy(struct tomoyo_io_buffer *head)
648{
649 struct list_head *pos;
650 bool done = true;
651
b69a54ee
KT
652 list_for_each_cookie(pos, head->read_var2, &tomoyo_no_rewrite_list) {
653 struct tomoyo_no_rewrite_entry *ptr;
654 ptr = list_entry(pos, struct tomoyo_no_rewrite_entry, list);
655 if (ptr->is_deleted)
656 continue;
7d2948b1
TH
657 done = tomoyo_io_printf(head, TOMOYO_KEYWORD_DENY_REWRITE
658 "%s\n", ptr->pattern->name);
659 if (!done)
b69a54ee 660 break;
b69a54ee 661 }
b69a54ee
KT
662 return done;
663}
664
665/**
666 * tomoyo_update_file_acl - Update file's read/write/execute ACL.
667 *
668 * @filename: Filename.
669 * @perm: Permission (between 1 to 7).
670 * @domain: Pointer to "struct tomoyo_domain_info".
671 * @is_delete: True if it is a delete request.
672 *
673 * Returns 0 on success, negative value otherwise.
674 *
675 * This is legacy support interface for older policy syntax.
676 * Current policy syntax uses "allow_read/write" instead of "6",
677 * "allow_read" instead of "4", "allow_write" instead of "2",
678 * "allow_execute" instead of "1".
fdb8ebb7
TH
679 *
680 * Caller holds tomoyo_read_lock().
b69a54ee
KT
681 */
682static int tomoyo_update_file_acl(const char *filename, u8 perm,
683 struct tomoyo_domain_info * const domain,
684 const bool is_delete)
685{
686 if (perm > 7 || !perm) {
687 printk(KERN_DEBUG "%s: Invalid permission '%d %s'\n",
688 __func__, perm, filename);
689 return -EINVAL;
690 }
691 if (filename[0] != '@' && tomoyo_strendswith(filename, "/"))
692 /*
693 * Only 'allow_mkdir' and 'allow_rmdir' are valid for
694 * directory permissions.
695 */
696 return 0;
697 if (perm & 4)
7ef61233
TH
698 tomoyo_update_path_acl(TOMOYO_TYPE_READ, filename, domain,
699 is_delete);
b69a54ee 700 if (perm & 2)
7ef61233
TH
701 tomoyo_update_path_acl(TOMOYO_TYPE_WRITE, filename, domain,
702 is_delete);
b69a54ee 703 if (perm & 1)
7ef61233
TH
704 tomoyo_update_path_acl(TOMOYO_TYPE_EXECUTE, filename, domain,
705 is_delete);
b69a54ee
KT
706 return 0;
707}
708
709/**
cb0abe6a 710 * tomoyo_path_acl - Check permission for single path operation.
b69a54ee 711 *
cb0abe6a 712 * @r: Pointer to "struct tomoyo_request_info".
b69a54ee
KT
713 * @filename: Filename to check.
714 * @perm: Permission.
715 * @may_use_pattern: True if patterned ACL is permitted.
716 *
717 * Returns 0 on success, -EPERM otherwise.
fdb8ebb7
TH
718 *
719 * Caller holds tomoyo_read_lock().
b69a54ee 720 */
cb0abe6a
TH
721static int tomoyo_path_acl(const struct tomoyo_request_info *r,
722 const struct tomoyo_path_info *filename,
723 const u32 perm, const bool may_use_pattern)
b69a54ee 724{
cb0abe6a 725 struct tomoyo_domain_info *domain = r->domain;
b69a54ee
KT
726 struct tomoyo_acl_info *ptr;
727 int error = -EPERM;
728
fdb8ebb7 729 list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
7ef61233
TH
730 struct tomoyo_path_acl *acl;
731 if (ptr->type != TOMOYO_TYPE_PATH_ACL)
b69a54ee 732 continue;
7ef61233 733 acl = container_of(ptr, struct tomoyo_path_acl, head);
937bf613
TH
734 if (perm <= 0xFFFF) {
735 if (!(acl->perm & perm))
736 continue;
737 } else {
738 if (!(acl->perm_high & (perm >> 16)))
739 continue;
740 }
7762fbff
TH
741 if (!tomoyo_compare_name_union_pattern(filename, &acl->name,
742 may_use_pattern))
b69a54ee 743 continue;
b69a54ee
KT
744 error = 0;
745 break;
746 }
b69a54ee
KT
747 return error;
748}
749
750/**
cb0abe6a 751 * tomoyo_file_perm - Check permission for opening files.
b69a54ee 752 *
cb0abe6a 753 * @r: Pointer to "struct tomoyo_request_info".
b69a54ee 754 * @filename: Filename to check.
cb0abe6a 755 * @mode: Mode ("read" or "write" or "read/write" or "execute").
b69a54ee
KT
756 *
757 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
758 *
759 * Caller holds tomoyo_read_lock().
b69a54ee 760 */
cb0abe6a
TH
761static int tomoyo_file_perm(struct tomoyo_request_info *r,
762 const struct tomoyo_path_info *filename,
763 const u8 mode)
b69a54ee 764{
b69a54ee
KT
765 const char *msg = "<unknown>";
766 int error = 0;
cb0abe6a 767 u32 perm = 0;
b69a54ee
KT
768
769 if (!filename)
770 return 0;
cb0abe6a
TH
771
772 if (mode == 6) {
7ef61233 773 msg = tomoyo_path2keyword(TOMOYO_TYPE_READ_WRITE);
cb0abe6a
TH
774 perm = 1 << TOMOYO_TYPE_READ_WRITE;
775 } else if (mode == 4) {
7ef61233 776 msg = tomoyo_path2keyword(TOMOYO_TYPE_READ);
cb0abe6a
TH
777 perm = 1 << TOMOYO_TYPE_READ;
778 } else if (mode == 2) {
7ef61233 779 msg = tomoyo_path2keyword(TOMOYO_TYPE_WRITE);
cb0abe6a
TH
780 perm = 1 << TOMOYO_TYPE_WRITE;
781 } else if (mode == 1) {
7ef61233 782 msg = tomoyo_path2keyword(TOMOYO_TYPE_EXECUTE);
cb0abe6a
TH
783 perm = 1 << TOMOYO_TYPE_EXECUTE;
784 } else
b69a54ee 785 BUG();
cb0abe6a
TH
786 error = tomoyo_path_acl(r, filename, perm, mode != 1);
787 if (error && mode == 4 && !r->domain->ignore_global_allow_read
788 && tomoyo_is_globally_readable_file(filename))
789 error = 0;
b69a54ee
KT
790 if (!error)
791 return 0;
cb0abe6a
TH
792 tomoyo_warn_log(r, "%s %s", msg, filename->name);
793 if (r->mode == TOMOYO_CONFIG_ENFORCING)
b69a54ee 794 return error;
cb0abe6a 795 if (tomoyo_domain_quota_is_ok(r)) {
b69a54ee 796 /* Don't use patterns for execute permission. */
cb0abe6a 797 const struct tomoyo_path_info *patterned_file = (mode != 1) ?
b69a54ee 798 tomoyo_get_file_pattern(filename) : filename;
cb0abe6a
TH
799 tomoyo_update_file_acl(patterned_file->name, mode,
800 r->domain, false);
b69a54ee
KT
801 }
802 return 0;
803}
804
805/**
806 * tomoyo_write_file_policy - Update file related list.
807 *
808 * @data: String to parse.
809 * @domain: Pointer to "struct tomoyo_domain_info".
810 * @is_delete: True if it is a delete request.
811 *
812 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
813 *
814 * Caller holds tomoyo_read_lock().
b69a54ee
KT
815 */
816int tomoyo_write_file_policy(char *data, struct tomoyo_domain_info *domain,
817 const bool is_delete)
818{
819 char *filename = strchr(data, ' ');
820 char *filename2;
821 unsigned int perm;
822 u8 type;
823
824 if (!filename)
825 return -EINVAL;
826 *filename++ = '\0';
827 if (sscanf(data, "%u", &perm) == 1)
828 return tomoyo_update_file_acl(filename, (u8) perm, domain,
829 is_delete);
830 if (strncmp(data, "allow_", 6))
831 goto out;
832 data += 6;
7ef61233
TH
833 for (type = 0; type < TOMOYO_MAX_PATH_OPERATION; type++) {
834 if (strcmp(data, tomoyo_path_keyword[type]))
b69a54ee 835 continue;
7ef61233
TH
836 return tomoyo_update_path_acl(type, filename, domain,
837 is_delete);
b69a54ee
KT
838 }
839 filename2 = strchr(filename, ' ');
840 if (!filename2)
841 goto out;
842 *filename2++ = '\0';
7ef61233
TH
843 for (type = 0; type < TOMOYO_MAX_PATH2_OPERATION; type++) {
844 if (strcmp(data, tomoyo_path2_keyword[type]))
b69a54ee 845 continue;
7ef61233
TH
846 return tomoyo_update_path2_acl(type, filename, filename2,
847 domain, is_delete);
b69a54ee
KT
848 }
849 out:
850 return -EINVAL;
851}
852
853/**
7ef61233 854 * tomoyo_update_path_acl - Update "struct tomoyo_path_acl" list.
b69a54ee
KT
855 *
856 * @type: Type of operation.
857 * @filename: Filename.
858 * @domain: Pointer to "struct tomoyo_domain_info".
859 * @is_delete: True if it is a delete request.
860 *
861 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
862 *
863 * Caller holds tomoyo_read_lock().
b69a54ee 864 */
7ef61233
TH
865static int tomoyo_update_path_acl(const u8 type, const char *filename,
866 struct tomoyo_domain_info *const domain,
867 const bool is_delete)
b69a54ee 868{
9e4b50e9 869 static const u32 tomoyo_rw_mask =
7ef61233 870 (1 << TOMOYO_TYPE_READ) | (1 << TOMOYO_TYPE_WRITE);
9e4b50e9 871 const u32 perm = 1 << type;
b69a54ee 872 struct tomoyo_acl_info *ptr;
9e4b50e9
TH
873 struct tomoyo_path_acl e = {
874 .head.type = TOMOYO_TYPE_PATH_ACL,
875 .perm_high = perm >> 16,
876 .perm = perm
877 };
ca0b7df3 878 int error = is_delete ? -ENOENT : -ENOMEM;
b69a54ee 879
9e4b50e9
TH
880 if (type == TOMOYO_TYPE_READ_WRITE)
881 e.perm |= tomoyo_rw_mask;
b69a54ee
KT
882 if (!domain)
883 return -EINVAL;
7762fbff 884 if (!tomoyo_parse_name_union(filename, &e.name))
b69a54ee 885 return -EINVAL;
29282381
TH
886 if (mutex_lock_interruptible(&tomoyo_policy_lock))
887 goto out;
fdb8ebb7 888 list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
7ef61233
TH
889 struct tomoyo_path_acl *acl =
890 container_of(ptr, struct tomoyo_path_acl, head);
7762fbff 891 if (!tomoyo_is_same_path_acl(acl, &e))
b69a54ee 892 continue;
ca0b7df3
TH
893 if (is_delete) {
894 if (perm <= 0xFFFF)
895 acl->perm &= ~perm;
896 else
897 acl->perm_high &= ~(perm >> 16);
9e4b50e9 898 if ((acl->perm & tomoyo_rw_mask) != tomoyo_rw_mask)
7ef61233
TH
899 acl->perm &= ~(1 << TOMOYO_TYPE_READ_WRITE);
900 else if (!(acl->perm & (1 << TOMOYO_TYPE_READ_WRITE)))
9e4b50e9 901 acl->perm &= ~tomoyo_rw_mask;
ca0b7df3
TH
902 } else {
903 if (perm <= 0xFFFF)
904 acl->perm |= perm;
905 else
906 acl->perm_high |= (perm >> 16);
9e4b50e9 907 if ((acl->perm & tomoyo_rw_mask) == tomoyo_rw_mask)
7ef61233
TH
908 acl->perm |= 1 << TOMOYO_TYPE_READ_WRITE;
909 else if (acl->perm & (1 << TOMOYO_TYPE_READ_WRITE))
9e4b50e9 910 acl->perm |= tomoyo_rw_mask;
ca0b7df3 911 }
b69a54ee 912 error = 0;
ca0b7df3 913 break;
cd7bec6a 914 }
9e4b50e9
TH
915 if (!is_delete && error) {
916 struct tomoyo_path_acl *entry =
917 tomoyo_commit_ok(&e, sizeof(e));
918 if (entry) {
919 list_add_tail_rcu(&entry->head.list,
920 &domain->acl_info_list);
921 error = 0;
922 }
b69a54ee 923 }
f737d95d 924 mutex_unlock(&tomoyo_policy_lock);
29282381 925 out:
7762fbff 926 tomoyo_put_name_union(&e.name);
b69a54ee
KT
927 return error;
928}
929
930/**
7ef61233 931 * tomoyo_update_path2_acl - Update "struct tomoyo_path2_acl" list.
b69a54ee
KT
932 *
933 * @type: Type of operation.
934 * @filename1: First filename.
935 * @filename2: Second filename.
936 * @domain: Pointer to "struct tomoyo_domain_info".
937 * @is_delete: True if it is a delete request.
938 *
939 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
940 *
941 * Caller holds tomoyo_read_lock().
b69a54ee 942 */
7ef61233
TH
943static int tomoyo_update_path2_acl(const u8 type, const char *filename1,
944 const char *filename2,
945 struct tomoyo_domain_info *const domain,
946 const bool is_delete)
b69a54ee 947{
9e4b50e9
TH
948 const u8 perm = 1 << type;
949 struct tomoyo_path2_acl e = {
950 .head.type = TOMOYO_TYPE_PATH2_ACL,
951 .perm = perm
952 };
b69a54ee 953 struct tomoyo_acl_info *ptr;
ca0b7df3 954 int error = is_delete ? -ENOENT : -ENOMEM;
b69a54ee
KT
955
956 if (!domain)
957 return -EINVAL;
7762fbff
TH
958 if (!tomoyo_parse_name_union(filename1, &e.name1) ||
959 !tomoyo_parse_name_union(filename2, &e.name2))
ca0b7df3 960 goto out;
29282381
TH
961 if (mutex_lock_interruptible(&tomoyo_policy_lock))
962 goto out;
fdb8ebb7 963 list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
7ef61233
TH
964 struct tomoyo_path2_acl *acl =
965 container_of(ptr, struct tomoyo_path2_acl, head);
7762fbff 966 if (!tomoyo_is_same_path2_acl(acl, &e))
b69a54ee 967 continue;
ca0b7df3
TH
968 if (is_delete)
969 acl->perm &= ~perm;
970 else
971 acl->perm |= perm;
b69a54ee 972 error = 0;
ca0b7df3 973 break;
cd7bec6a 974 }
9e4b50e9
TH
975 if (!is_delete && error) {
976 struct tomoyo_path2_acl *entry =
977 tomoyo_commit_ok(&e, sizeof(e));
978 if (entry) {
979 list_add_tail_rcu(&entry->head.list,
980 &domain->acl_info_list);
981 error = 0;
982 }
b69a54ee 983 }
f737d95d 984 mutex_unlock(&tomoyo_policy_lock);
ca0b7df3 985 out:
7762fbff
TH
986 tomoyo_put_name_union(&e.name1);
987 tomoyo_put_name_union(&e.name2);
b69a54ee
KT
988 return error;
989}
990
b69a54ee 991/**
7ef61233 992 * tomoyo_path2_acl - Check permission for double path operation.
b69a54ee 993 *
cb0abe6a 994 * @r: Pointer to "struct tomoyo_request_info".
b69a54ee
KT
995 * @type: Type of operation.
996 * @filename1: First filename to check.
997 * @filename2: Second filename to check.
998 *
999 * Returns 0 on success, -EPERM otherwise.
fdb8ebb7
TH
1000 *
1001 * Caller holds tomoyo_read_lock().
b69a54ee 1002 */
cb0abe6a 1003static int tomoyo_path2_acl(const struct tomoyo_request_info *r, const u8 type,
7ef61233
TH
1004 const struct tomoyo_path_info *filename1,
1005 const struct tomoyo_path_info *filename2)
b69a54ee 1006{
cb0abe6a 1007 const struct tomoyo_domain_info *domain = r->domain;
b69a54ee
KT
1008 struct tomoyo_acl_info *ptr;
1009 const u8 perm = 1 << type;
1010 int error = -EPERM;
1011
fdb8ebb7 1012 list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
7ef61233
TH
1013 struct tomoyo_path2_acl *acl;
1014 if (ptr->type != TOMOYO_TYPE_PATH2_ACL)
b69a54ee 1015 continue;
7ef61233 1016 acl = container_of(ptr, struct tomoyo_path2_acl, head);
b69a54ee
KT
1017 if (!(acl->perm & perm))
1018 continue;
7762fbff 1019 if (!tomoyo_compare_name_union(filename1, &acl->name1))
b69a54ee 1020 continue;
7762fbff 1021 if (!tomoyo_compare_name_union(filename2, &acl->name2))
b69a54ee
KT
1022 continue;
1023 error = 0;
1024 break;
1025 }
b69a54ee
KT
1026 return error;
1027}
1028
1029/**
cb0abe6a 1030 * tomoyo_path_permission - Check permission for single path operation.
b69a54ee 1031 *
cb0abe6a 1032 * @r: Pointer to "struct tomoyo_request_info".
b69a54ee
KT
1033 * @operation: Type of operation.
1034 * @filename: Filename to check.
b69a54ee
KT
1035 *
1036 * Returns 0 on success, negative value otherwise.
fdb8ebb7
TH
1037 *
1038 * Caller holds tomoyo_read_lock().
b69a54ee 1039 */
cb0abe6a
TH
1040static int tomoyo_path_permission(struct tomoyo_request_info *r, u8 operation,
1041 const struct tomoyo_path_info *filename)
b69a54ee 1042{
b69a54ee 1043 int error;
b69a54ee 1044
b69a54ee 1045 next:
cb0abe6a 1046 error = tomoyo_path_acl(r, filename, 1 << operation, 1);
b69a54ee
KT
1047 if (!error)
1048 goto ok;
cb0abe6a
TH
1049 tomoyo_warn_log(r, "%s %s", tomoyo_path2keyword(operation),
1050 filename->name);
1051 if (tomoyo_domain_quota_is_ok(r)) {
b69a54ee 1052 const char *name = tomoyo_get_file_pattern(filename)->name;
cb0abe6a 1053 tomoyo_update_path_acl(operation, name, r->domain, false);
b69a54ee 1054 }
cb0abe6a 1055 if (r->mode != TOMOYO_CONFIG_ENFORCING)
b69a54ee
KT
1056 error = 0;
1057 ok:
1058 /*
1059 * Since "allow_truncate" doesn't imply "allow_rewrite" permission,
1060 * we need to check "allow_rewrite" permission if the filename is
1061 * specified by "deny_rewrite" keyword.
1062 */
7ef61233 1063 if (!error && operation == TOMOYO_TYPE_TRUNCATE &&
b69a54ee 1064 tomoyo_is_no_rewrite_file(filename)) {
7ef61233 1065 operation = TOMOYO_TYPE_REWRITE;
b69a54ee
KT
1066 goto next;
1067 }
1068 return error;
1069}
1070
b69a54ee
KT
1071/**
1072 * tomoyo_check_exec_perm - Check permission for "execute".
1073 *
1074 * @domain: Pointer to "struct tomoyo_domain_info".
1075 * @filename: Check permission for "execute".
b69a54ee
KT
1076 *
1077 * Returns 0 on success, negativevalue otherwise.
fdb8ebb7
TH
1078 *
1079 * Caller holds tomoyo_read_lock().
b69a54ee
KT
1080 */
1081int tomoyo_check_exec_perm(struct tomoyo_domain_info *domain,
bcb86975 1082 const struct tomoyo_path_info *filename)
b69a54ee 1083{
cb0abe6a 1084 struct tomoyo_request_info r;
b69a54ee 1085
cb0abe6a 1086 if (tomoyo_init_request_info(&r, NULL) == TOMOYO_CONFIG_DISABLED)
b69a54ee 1087 return 0;
cb0abe6a 1088 return tomoyo_file_perm(&r, filename, 1);
b69a54ee
KT
1089}
1090
1091/**
1092 * tomoyo_check_open_permission - Check permission for "read" and "write".
1093 *
1094 * @domain: Pointer to "struct tomoyo_domain_info".
1095 * @path: Pointer to "struct path".
1096 * @flag: Flags for open().
1097 *
1098 * Returns 0 on success, negative value otherwise.
1099 */
1100int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
1101 struct path *path, const int flag)
1102{
1103 const u8 acc_mode = ACC_MODE(flag);
1104 int error = -ENOMEM;
1105 struct tomoyo_path_info *buf;
cb0abe6a 1106 struct tomoyo_request_info r;
fdb8ebb7 1107 int idx;
b69a54ee 1108
cb0abe6a
TH
1109 if (tomoyo_init_request_info(&r, domain) == TOMOYO_CONFIG_DISABLED ||
1110 !path->mnt)
b69a54ee
KT
1111 return 0;
1112 if (acc_mode == 0)
1113 return 0;
1114 if (path->dentry->d_inode && S_ISDIR(path->dentry->d_inode->i_mode))
1115 /*
1116 * I don't check directories here because mkdir() and rmdir()
1117 * don't call me.
1118 */
1119 return 0;
fdb8ebb7 1120 idx = tomoyo_read_lock();
b69a54ee
KT
1121 buf = tomoyo_get_path(path);
1122 if (!buf)
1123 goto out;
1124 error = 0;
1125 /*
1126 * If the filename is specified by "deny_rewrite" keyword,
1127 * we need to check "allow_rewrite" permission when the filename is not
1128 * opened for append mode or the filename is truncated at open time.
1129 */
1130 if ((acc_mode & MAY_WRITE) &&
1131 ((flag & O_TRUNC) || !(flag & O_APPEND)) &&
1132 (tomoyo_is_no_rewrite_file(buf))) {
cb0abe6a 1133 error = tomoyo_path_permission(&r, TOMOYO_TYPE_REWRITE, buf);
b69a54ee
KT
1134 }
1135 if (!error)
cb0abe6a 1136 error = tomoyo_file_perm(&r, buf, acc_mode);
b69a54ee 1137 if (!error && (flag & O_TRUNC))
cb0abe6a 1138 error = tomoyo_path_permission(&r, TOMOYO_TYPE_TRUNCATE, buf);
b69a54ee 1139 out:
8e2d39a1 1140 kfree(buf);
fdb8ebb7 1141 tomoyo_read_unlock(idx);
cb0abe6a 1142 if (r.mode != TOMOYO_CONFIG_ENFORCING)
b69a54ee
KT
1143 error = 0;
1144 return error;
1145}
1146
1147/**
cb0abe6a 1148 * tomoyo_path_perm - Check permission for "create", "unlink", "mkdir", "rmdir", "mkfifo", "mksock", "mkblock", "mkchar", "truncate", "symlink", "rewrite", "ioctl", "chmod", "chown", "chgrp", "chroot", "mount" and "unmount".
b69a54ee 1149 *
b69a54ee
KT
1150 * @operation: Type of operation.
1151 * @path: Pointer to "struct path".
1152 *
1153 * Returns 0 on success, negative value otherwise.
1154 */
97d6931e 1155int tomoyo_path_perm(const u8 operation, struct path *path)
b69a54ee
KT
1156{
1157 int error = -ENOMEM;
1158 struct tomoyo_path_info *buf;
cb0abe6a 1159 struct tomoyo_request_info r;
fdb8ebb7 1160 int idx;
b69a54ee 1161
cb0abe6a
TH
1162 if (tomoyo_init_request_info(&r, NULL) == TOMOYO_CONFIG_DISABLED ||
1163 !path->mnt)
b69a54ee 1164 return 0;
fdb8ebb7 1165 idx = tomoyo_read_lock();
b69a54ee
KT
1166 buf = tomoyo_get_path(path);
1167 if (!buf)
1168 goto out;
1169 switch (operation) {
cb0abe6a
TH
1170 case TOMOYO_TYPE_REWRITE:
1171 if (!tomoyo_is_no_rewrite_file(buf)) {
1172 error = 0;
1173 goto out;
1174 }
1175 break;
7ef61233
TH
1176 case TOMOYO_TYPE_MKDIR:
1177 case TOMOYO_TYPE_RMDIR:
1178 case TOMOYO_TYPE_CHROOT:
b69a54ee
KT
1179 if (!buf->is_dir) {
1180 /*
1181 * tomoyo_get_path() reserves space for appending "/."
1182 */
1183 strcat((char *) buf->name, "/");
1184 tomoyo_fill_path_info(buf);
1185 }
1186 }
cb0abe6a 1187 error = tomoyo_path_permission(&r, operation, buf);
b69a54ee 1188 out:
8e2d39a1 1189 kfree(buf);
fdb8ebb7 1190 tomoyo_read_unlock(idx);
cb0abe6a 1191 if (r.mode != TOMOYO_CONFIG_ENFORCING)
b69a54ee
KT
1192 error = 0;
1193 return error;
1194}
1195
1196/**
7ef61233 1197 * tomoyo_path2_perm - Check permission for "rename", "link" and "pivot_root".
b69a54ee 1198 *
b69a54ee
KT
1199 * @operation: Type of operation.
1200 * @path1: Pointer to "struct path".
1201 * @path2: Pointer to "struct path".
1202 *
1203 * Returns 0 on success, negative value otherwise.
1204 */
97d6931e 1205int tomoyo_path2_perm(const u8 operation, struct path *path1,
7ef61233 1206 struct path *path2)
b69a54ee
KT
1207{
1208 int error = -ENOMEM;
cb0abe6a
TH
1209 struct tomoyo_path_info *buf1;
1210 struct tomoyo_path_info *buf2;
1211 struct tomoyo_request_info r;
fdb8ebb7 1212 int idx;
b69a54ee 1213
cb0abe6a
TH
1214 if (tomoyo_init_request_info(&r, NULL) == TOMOYO_CONFIG_DISABLED ||
1215 !path1->mnt || !path2->mnt)
b69a54ee 1216 return 0;
fdb8ebb7 1217 idx = tomoyo_read_lock();
b69a54ee
KT
1218 buf1 = tomoyo_get_path(path1);
1219 buf2 = tomoyo_get_path(path2);
1220 if (!buf1 || !buf2)
1221 goto out;
1222 {
1223 struct dentry *dentry = path1->dentry;
1224 if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode)) {
1225 /*
1226 * tomoyo_get_path() reserves space for appending "/."
1227 */
1228 if (!buf1->is_dir) {
1229 strcat((char *) buf1->name, "/");
1230 tomoyo_fill_path_info(buf1);
1231 }
1232 if (!buf2->is_dir) {
1233 strcat((char *) buf2->name, "/");
1234 tomoyo_fill_path_info(buf2);
1235 }
1236 }
1237 }
cb0abe6a 1238 error = tomoyo_path2_acl(&r, operation, buf1, buf2);
b69a54ee
KT
1239 if (!error)
1240 goto out;
cb0abe6a
TH
1241 tomoyo_warn_log(&r, "%s %s %s", tomoyo_path22keyword(operation),
1242 buf1->name, buf2->name);
1243 if (tomoyo_domain_quota_is_ok(&r)) {
b69a54ee
KT
1244 const char *name1 = tomoyo_get_file_pattern(buf1)->name;
1245 const char *name2 = tomoyo_get_file_pattern(buf2)->name;
cb0abe6a 1246 tomoyo_update_path2_acl(operation, name1, name2, r.domain,
7ef61233 1247 false);
b69a54ee
KT
1248 }
1249 out:
8e2d39a1
TH
1250 kfree(buf1);
1251 kfree(buf2);
fdb8ebb7 1252 tomoyo_read_unlock(idx);
cb0abe6a 1253 if (r.mode != TOMOYO_CONFIG_ENFORCING)
b69a54ee
KT
1254 error = 0;
1255 return error;
1256}