1 // SPDX-License-Identifier: GPL-2.0
3 * security/tomoyo/file.c
5 * Copyright (C) 2005-2011 NTT DATA CORPORATION
9 #include <linux/slab.h>
12 * Mapping table from "enum tomoyo_path_acl_index" to "enum tomoyo_mac_index".
14 static const u8 tomoyo_p2mac
[TOMOYO_MAX_PATH_OPERATION
] = {
15 [TOMOYO_TYPE_EXECUTE
] = TOMOYO_MAC_FILE_EXECUTE
,
16 [TOMOYO_TYPE_READ
] = TOMOYO_MAC_FILE_OPEN
,
17 [TOMOYO_TYPE_WRITE
] = TOMOYO_MAC_FILE_OPEN
,
18 [TOMOYO_TYPE_APPEND
] = TOMOYO_MAC_FILE_OPEN
,
19 [TOMOYO_TYPE_UNLINK
] = TOMOYO_MAC_FILE_UNLINK
,
20 [TOMOYO_TYPE_GETATTR
] = TOMOYO_MAC_FILE_GETATTR
,
21 [TOMOYO_TYPE_RMDIR
] = TOMOYO_MAC_FILE_RMDIR
,
22 [TOMOYO_TYPE_TRUNCATE
] = TOMOYO_MAC_FILE_TRUNCATE
,
23 [TOMOYO_TYPE_SYMLINK
] = TOMOYO_MAC_FILE_SYMLINK
,
24 [TOMOYO_TYPE_CHROOT
] = TOMOYO_MAC_FILE_CHROOT
,
25 [TOMOYO_TYPE_UMOUNT
] = TOMOYO_MAC_FILE_UMOUNT
,
29 * Mapping table from "enum tomoyo_mkdev_acl_index" to "enum tomoyo_mac_index".
31 const u8 tomoyo_pnnn2mac
[TOMOYO_MAX_MKDEV_OPERATION
] = {
32 [TOMOYO_TYPE_MKBLOCK
] = TOMOYO_MAC_FILE_MKBLOCK
,
33 [TOMOYO_TYPE_MKCHAR
] = TOMOYO_MAC_FILE_MKCHAR
,
37 * Mapping table from "enum tomoyo_path2_acl_index" to "enum tomoyo_mac_index".
39 const u8 tomoyo_pp2mac
[TOMOYO_MAX_PATH2_OPERATION
] = {
40 [TOMOYO_TYPE_LINK
] = TOMOYO_MAC_FILE_LINK
,
41 [TOMOYO_TYPE_RENAME
] = TOMOYO_MAC_FILE_RENAME
,
42 [TOMOYO_TYPE_PIVOT_ROOT
] = TOMOYO_MAC_FILE_PIVOT_ROOT
,
46 * Mapping table from "enum tomoyo_path_number_acl_index" to
47 * "enum tomoyo_mac_index".
49 const u8 tomoyo_pn2mac
[TOMOYO_MAX_PATH_NUMBER_OPERATION
] = {
50 [TOMOYO_TYPE_CREATE
] = TOMOYO_MAC_FILE_CREATE
,
51 [TOMOYO_TYPE_MKDIR
] = TOMOYO_MAC_FILE_MKDIR
,
52 [TOMOYO_TYPE_MKFIFO
] = TOMOYO_MAC_FILE_MKFIFO
,
53 [TOMOYO_TYPE_MKSOCK
] = TOMOYO_MAC_FILE_MKSOCK
,
54 [TOMOYO_TYPE_IOCTL
] = TOMOYO_MAC_FILE_IOCTL
,
55 [TOMOYO_TYPE_CHMOD
] = TOMOYO_MAC_FILE_CHMOD
,
56 [TOMOYO_TYPE_CHOWN
] = TOMOYO_MAC_FILE_CHOWN
,
57 [TOMOYO_TYPE_CHGRP
] = TOMOYO_MAC_FILE_CHGRP
,
61 * tomoyo_put_name_union - Drop reference on "struct tomoyo_name_union".
63 * @ptr: Pointer to "struct tomoyo_name_union".
67 void tomoyo_put_name_union(struct tomoyo_name_union
*ptr
)
69 tomoyo_put_group(ptr
->group
);
70 tomoyo_put_name(ptr
->filename
);
74 * tomoyo_compare_name_union - Check whether a name matches "struct tomoyo_name_union" or not.
76 * @name: Pointer to "struct tomoyo_path_info".
77 * @ptr: Pointer to "struct tomoyo_name_union".
79 * Returns "struct tomoyo_path_info" if @name matches @ptr, NULL otherwise.
81 const struct tomoyo_path_info
*
82 tomoyo_compare_name_union(const struct tomoyo_path_info
*name
,
83 const struct tomoyo_name_union
*ptr
)
86 return tomoyo_path_matches_group(name
, ptr
->group
);
87 if (tomoyo_path_matches_pattern(name
, ptr
->filename
))
93 * tomoyo_put_number_union - Drop reference on "struct tomoyo_number_union".
95 * @ptr: Pointer to "struct tomoyo_number_union".
99 void tomoyo_put_number_union(struct tomoyo_number_union
*ptr
)
101 tomoyo_put_group(ptr
->group
);
105 * tomoyo_compare_number_union - Check whether a value matches "struct tomoyo_number_union" or not.
107 * @value: Number to check.
108 * @ptr: Pointer to "struct tomoyo_number_union".
110 * Returns true if @value matches @ptr, false otherwise.
112 bool tomoyo_compare_number_union(const unsigned long value
,
113 const struct tomoyo_number_union
*ptr
)
116 return tomoyo_number_matches_group(value
, value
, ptr
->group
);
117 return value
>= ptr
->values
[0] && value
<= ptr
->values
[1];
121 * tomoyo_add_slash - Add trailing '/' if needed.
123 * @buf: Pointer to "struct tomoyo_path_info".
127 * @buf must be generated by tomoyo_encode() because this function does not
128 * allocate memory for adding '/'.
130 static void tomoyo_add_slash(struct tomoyo_path_info
*buf
)
135 * This is OK because tomoyo_encode() reserves space for appending "/".
137 strcat((char *) buf
->name
, "/");
138 tomoyo_fill_path_info(buf
);
142 * tomoyo_get_realpath - Get realpath.
144 * @buf: Pointer to "struct tomoyo_path_info".
145 * @path: Pointer to "struct path".
147 * Returns true on success, false otherwise.
149 static bool tomoyo_get_realpath(struct tomoyo_path_info
*buf
, const struct path
*path
)
151 buf
->name
= tomoyo_realpath_from_path(path
);
153 tomoyo_fill_path_info(buf
);
160 * tomoyo_audit_path_log - Audit path request log.
162 * @r: Pointer to "struct tomoyo_request_info".
164 * Returns 0 on success, negative value otherwise.
166 static int tomoyo_audit_path_log(struct tomoyo_request_info
*r
)
168 return tomoyo_supervisor(r
, "file %s %s\n", tomoyo_path_keyword
169 [r
->param
.path
.operation
],
170 r
->param
.path
.filename
->name
);
174 * tomoyo_audit_path2_log - Audit path/path request log.
176 * @r: Pointer to "struct tomoyo_request_info".
178 * Returns 0 on success, negative value otherwise.
180 static int tomoyo_audit_path2_log(struct tomoyo_request_info
*r
)
182 return tomoyo_supervisor(r
, "file %s %s %s\n", tomoyo_mac_keywords
183 [tomoyo_pp2mac
[r
->param
.path2
.operation
]],
184 r
->param
.path2
.filename1
->name
,
185 r
->param
.path2
.filename2
->name
);
189 * tomoyo_audit_mkdev_log - Audit path/number/number/number request log.
191 * @r: Pointer to "struct tomoyo_request_info".
193 * Returns 0 on success, negative value otherwise.
195 static int tomoyo_audit_mkdev_log(struct tomoyo_request_info
*r
)
197 return tomoyo_supervisor(r
, "file %s %s 0%o %u %u\n",
199 [tomoyo_pnnn2mac
[r
->param
.mkdev
.operation
]],
200 r
->param
.mkdev
.filename
->name
,
201 r
->param
.mkdev
.mode
, r
->param
.mkdev
.major
,
202 r
->param
.mkdev
.minor
);
206 * tomoyo_audit_path_number_log - Audit path/number request log.
208 * @r: Pointer to "struct tomoyo_request_info".
210 * Returns 0 on success, negative value otherwise.
212 static int tomoyo_audit_path_number_log(struct tomoyo_request_info
*r
)
214 const u8 type
= r
->param
.path_number
.operation
;
218 case TOMOYO_TYPE_CREATE
:
219 case TOMOYO_TYPE_MKDIR
:
220 case TOMOYO_TYPE_MKFIFO
:
221 case TOMOYO_TYPE_MKSOCK
:
222 case TOMOYO_TYPE_CHMOD
:
223 radix
= TOMOYO_VALUE_TYPE_OCTAL
;
225 case TOMOYO_TYPE_IOCTL
:
226 radix
= TOMOYO_VALUE_TYPE_HEXADECIMAL
;
229 radix
= TOMOYO_VALUE_TYPE_DECIMAL
;
232 tomoyo_print_ulong(buffer
, sizeof(buffer
), r
->param
.path_number
.number
,
234 return tomoyo_supervisor(r
, "file %s %s %s\n", tomoyo_mac_keywords
235 [tomoyo_pn2mac
[type
]],
236 r
->param
.path_number
.filename
->name
, buffer
);
240 * tomoyo_check_path_acl - Check permission for path operation.
242 * @r: Pointer to "struct tomoyo_request_info".
243 * @ptr: Pointer to "struct tomoyo_acl_info".
245 * Returns true if granted, false otherwise.
247 * To be able to use wildcard for domain transition, this function sets
248 * matching entry on success. Since the caller holds tomoyo_read_lock(),
249 * it is safe to set matching entry.
251 static bool tomoyo_check_path_acl(struct tomoyo_request_info
*r
,
252 const struct tomoyo_acl_info
*ptr
)
254 const struct tomoyo_path_acl
*acl
= container_of(ptr
, typeof(*acl
),
256 if (acl
->perm
& (1 << r
->param
.path
.operation
)) {
257 r
->param
.path
.matched_path
=
258 tomoyo_compare_name_union(r
->param
.path
.filename
,
260 return r
->param
.path
.matched_path
!= NULL
;
266 * tomoyo_check_path_number_acl - Check permission for path number operation.
268 * @r: Pointer to "struct tomoyo_request_info".
269 * @ptr: Pointer to "struct tomoyo_acl_info".
271 * Returns true if granted, false otherwise.
273 static bool tomoyo_check_path_number_acl(struct tomoyo_request_info
*r
,
274 const struct tomoyo_acl_info
*ptr
)
276 const struct tomoyo_path_number_acl
*acl
=
277 container_of(ptr
, typeof(*acl
), head
);
278 return (acl
->perm
& (1 << r
->param
.path_number
.operation
)) &&
279 tomoyo_compare_number_union(r
->param
.path_number
.number
,
281 tomoyo_compare_name_union(r
->param
.path_number
.filename
,
286 * tomoyo_check_path2_acl - Check permission for path path operation.
288 * @r: Pointer to "struct tomoyo_request_info".
289 * @ptr: Pointer to "struct tomoyo_acl_info".
291 * Returns true if granted, false otherwise.
293 static bool tomoyo_check_path2_acl(struct tomoyo_request_info
*r
,
294 const struct tomoyo_acl_info
*ptr
)
296 const struct tomoyo_path2_acl
*acl
=
297 container_of(ptr
, typeof(*acl
), head
);
298 return (acl
->perm
& (1 << r
->param
.path2
.operation
)) &&
299 tomoyo_compare_name_union(r
->param
.path2
.filename1
, &acl
->name1
)
300 && tomoyo_compare_name_union(r
->param
.path2
.filename2
,
305 * tomoyo_check_mkdev_acl - Check permission for path number number number operation.
307 * @r: Pointer to "struct tomoyo_request_info".
308 * @ptr: Pointer to "struct tomoyo_acl_info".
310 * Returns true if granted, false otherwise.
312 static bool tomoyo_check_mkdev_acl(struct tomoyo_request_info
*r
,
313 const struct tomoyo_acl_info
*ptr
)
315 const struct tomoyo_mkdev_acl
*acl
=
316 container_of(ptr
, typeof(*acl
), head
);
317 return (acl
->perm
& (1 << r
->param
.mkdev
.operation
)) &&
318 tomoyo_compare_number_union(r
->param
.mkdev
.mode
,
320 tomoyo_compare_number_union(r
->param
.mkdev
.major
,
322 tomoyo_compare_number_union(r
->param
.mkdev
.minor
,
324 tomoyo_compare_name_union(r
->param
.mkdev
.filename
,
329 * tomoyo_same_path_acl - Check for duplicated "struct tomoyo_path_acl" entry.
331 * @a: Pointer to "struct tomoyo_acl_info".
332 * @b: Pointer to "struct tomoyo_acl_info".
334 * Returns true if @a == @b except permission bits, false otherwise.
336 static bool tomoyo_same_path_acl(const struct tomoyo_acl_info
*a
,
337 const struct tomoyo_acl_info
*b
)
339 const struct tomoyo_path_acl
*p1
= container_of(a
, typeof(*p1
), head
);
340 const struct tomoyo_path_acl
*p2
= container_of(b
, typeof(*p2
), head
);
341 return tomoyo_same_name_union(&p1
->name
, &p2
->name
);
345 * tomoyo_merge_path_acl - Merge duplicated "struct tomoyo_path_acl" entry.
347 * @a: Pointer to "struct tomoyo_acl_info".
348 * @b: Pointer to "struct tomoyo_acl_info".
349 * @is_delete: True for @a &= ~@b, false for @a |= @b.
351 * Returns true if @a is empty, false otherwise.
353 static bool tomoyo_merge_path_acl(struct tomoyo_acl_info
*a
,
354 struct tomoyo_acl_info
*b
,
355 const bool is_delete
)
357 u16
* const a_perm
= &container_of(a
, struct tomoyo_path_acl
, head
)
360 const u16 b_perm
= container_of(b
, struct tomoyo_path_acl
, head
)->perm
;
370 * tomoyo_update_path_acl - Update "struct tomoyo_path_acl" list.
373 * @param: Pointer to "struct tomoyo_acl_param".
375 * Returns 0 on success, negative value otherwise.
377 * Caller holds tomoyo_read_lock().
379 static int tomoyo_update_path_acl(const u16 perm
,
380 struct tomoyo_acl_param
*param
)
382 struct tomoyo_path_acl e
= {
383 .head
.type
= TOMOYO_TYPE_PATH_ACL
,
387 if (!tomoyo_parse_name_union(param
, &e
.name
))
390 error
= tomoyo_update_domain(&e
.head
, sizeof(e
), param
,
391 tomoyo_same_path_acl
,
392 tomoyo_merge_path_acl
);
393 tomoyo_put_name_union(&e
.name
);
398 * tomoyo_same_mkdev_acl - Check for duplicated "struct tomoyo_mkdev_acl" entry.
400 * @a: Pointer to "struct tomoyo_acl_info".
401 * @b: Pointer to "struct tomoyo_acl_info".
403 * Returns true if @a == @b except permission bits, false otherwise.
405 static bool tomoyo_same_mkdev_acl(const struct tomoyo_acl_info
*a
,
406 const struct tomoyo_acl_info
*b
)
408 const struct tomoyo_mkdev_acl
*p1
= container_of(a
, typeof(*p1
), head
);
409 const struct tomoyo_mkdev_acl
*p2
= container_of(b
, typeof(*p2
), head
);
410 return tomoyo_same_name_union(&p1
->name
, &p2
->name
) &&
411 tomoyo_same_number_union(&p1
->mode
, &p2
->mode
) &&
412 tomoyo_same_number_union(&p1
->major
, &p2
->major
) &&
413 tomoyo_same_number_union(&p1
->minor
, &p2
->minor
);
417 * tomoyo_merge_mkdev_acl - Merge duplicated "struct tomoyo_mkdev_acl" entry.
419 * @a: Pointer to "struct tomoyo_acl_info".
420 * @b: Pointer to "struct tomoyo_acl_info".
421 * @is_delete: True for @a &= ~@b, false for @a |= @b.
423 * Returns true if @a is empty, false otherwise.
425 static bool tomoyo_merge_mkdev_acl(struct tomoyo_acl_info
*a
,
426 struct tomoyo_acl_info
*b
,
427 const bool is_delete
)
429 u8
*const a_perm
= &container_of(a
, struct tomoyo_mkdev_acl
,
432 const u8 b_perm
= container_of(b
, struct tomoyo_mkdev_acl
, head
)
443 * tomoyo_update_mkdev_acl - Update "struct tomoyo_mkdev_acl" list.
446 * @param: Pointer to "struct tomoyo_acl_param".
448 * Returns 0 on success, negative value otherwise.
450 * Caller holds tomoyo_read_lock().
452 static int tomoyo_update_mkdev_acl(const u8 perm
,
453 struct tomoyo_acl_param
*param
)
455 struct tomoyo_mkdev_acl e
= {
456 .head
.type
= TOMOYO_TYPE_MKDEV_ACL
,
460 if (!tomoyo_parse_name_union(param
, &e
.name
) ||
461 !tomoyo_parse_number_union(param
, &e
.mode
) ||
462 !tomoyo_parse_number_union(param
, &e
.major
) ||
463 !tomoyo_parse_number_union(param
, &e
.minor
))
466 error
= tomoyo_update_domain(&e
.head
, sizeof(e
), param
,
467 tomoyo_same_mkdev_acl
,
468 tomoyo_merge_mkdev_acl
);
469 tomoyo_put_name_union(&e
.name
);
470 tomoyo_put_number_union(&e
.mode
);
471 tomoyo_put_number_union(&e
.major
);
472 tomoyo_put_number_union(&e
.minor
);
477 * tomoyo_same_path2_acl - Check for duplicated "struct tomoyo_path2_acl" entry.
479 * @a: Pointer to "struct tomoyo_acl_info".
480 * @b: Pointer to "struct tomoyo_acl_info".
482 * Returns true if @a == @b except permission bits, false otherwise.
484 static bool tomoyo_same_path2_acl(const struct tomoyo_acl_info
*a
,
485 const struct tomoyo_acl_info
*b
)
487 const struct tomoyo_path2_acl
*p1
= container_of(a
, typeof(*p1
), head
);
488 const struct tomoyo_path2_acl
*p2
= container_of(b
, typeof(*p2
), head
);
489 return tomoyo_same_name_union(&p1
->name1
, &p2
->name1
) &&
490 tomoyo_same_name_union(&p1
->name2
, &p2
->name2
);
494 * tomoyo_merge_path2_acl - Merge duplicated "struct tomoyo_path2_acl" entry.
496 * @a: Pointer to "struct tomoyo_acl_info".
497 * @b: Pointer to "struct tomoyo_acl_info".
498 * @is_delete: True for @a &= ~@b, false for @a |= @b.
500 * Returns true if @a is empty, false otherwise.
502 static bool tomoyo_merge_path2_acl(struct tomoyo_acl_info
*a
,
503 struct tomoyo_acl_info
*b
,
504 const bool is_delete
)
506 u8
* const a_perm
= &container_of(a
, struct tomoyo_path2_acl
, head
)
509 const u8 b_perm
= container_of(b
, struct tomoyo_path2_acl
, head
)->perm
;
519 * tomoyo_update_path2_acl - Update "struct tomoyo_path2_acl" list.
522 * @param: Pointer to "struct tomoyo_acl_param".
524 * Returns 0 on success, negative value otherwise.
526 * Caller holds tomoyo_read_lock().
528 static int tomoyo_update_path2_acl(const u8 perm
,
529 struct tomoyo_acl_param
*param
)
531 struct tomoyo_path2_acl e
= {
532 .head
.type
= TOMOYO_TYPE_PATH2_ACL
,
536 if (!tomoyo_parse_name_union(param
, &e
.name1
) ||
537 !tomoyo_parse_name_union(param
, &e
.name2
))
540 error
= tomoyo_update_domain(&e
.head
, sizeof(e
), param
,
541 tomoyo_same_path2_acl
,
542 tomoyo_merge_path2_acl
);
543 tomoyo_put_name_union(&e
.name1
);
544 tomoyo_put_name_union(&e
.name2
);
549 * tomoyo_path_permission - Check permission for single path operation.
551 * @r: Pointer to "struct tomoyo_request_info".
552 * @operation: Type of operation.
553 * @filename: Filename to check.
555 * Returns 0 on success, negative value otherwise.
557 * Caller holds tomoyo_read_lock().
559 static int tomoyo_path_permission(struct tomoyo_request_info
*r
, u8 operation
,
560 const struct tomoyo_path_info
*filename
)
564 r
->type
= tomoyo_p2mac
[operation
];
565 r
->mode
= tomoyo_get_mode(r
->domain
->ns
, r
->profile
, r
->type
);
566 if (r
->mode
== TOMOYO_CONFIG_DISABLED
)
568 r
->param_type
= TOMOYO_TYPE_PATH_ACL
;
569 r
->param
.path
.filename
= filename
;
570 r
->param
.path
.operation
= operation
;
572 tomoyo_check_acl(r
, tomoyo_check_path_acl
);
573 error
= tomoyo_audit_path_log(r
);
574 } while (error
== TOMOYO_RETRY_REQUEST
);
579 * tomoyo_execute_permission - Check permission for execute operation.
581 * @r: Pointer to "struct tomoyo_request_info".
582 * @filename: Filename to check.
584 * Returns 0 on success, negative value otherwise.
586 * Caller holds tomoyo_read_lock().
588 int tomoyo_execute_permission(struct tomoyo_request_info
*r
,
589 const struct tomoyo_path_info
*filename
)
592 * Unlike other permission checks, this check is done regardless of
593 * profile mode settings in order to check for domain transition
596 r
->type
= TOMOYO_MAC_FILE_EXECUTE
;
597 r
->mode
= tomoyo_get_mode(r
->domain
->ns
, r
->profile
, r
->type
);
598 r
->param_type
= TOMOYO_TYPE_PATH_ACL
;
599 r
->param
.path
.filename
= filename
;
600 r
->param
.path
.operation
= TOMOYO_TYPE_EXECUTE
;
601 tomoyo_check_acl(r
, tomoyo_check_path_acl
);
602 r
->ee
->transition
= r
->matched_acl
&& r
->matched_acl
->cond
?
603 r
->matched_acl
->cond
->transit
: NULL
;
604 if (r
->mode
!= TOMOYO_CONFIG_DISABLED
)
605 return tomoyo_audit_path_log(r
);
610 * tomoyo_same_path_number_acl - Check for duplicated "struct tomoyo_path_number_acl" entry.
612 * @a: Pointer to "struct tomoyo_acl_info".
613 * @b: Pointer to "struct tomoyo_acl_info".
615 * Returns true if @a == @b except permission bits, false otherwise.
617 static bool tomoyo_same_path_number_acl(const struct tomoyo_acl_info
*a
,
618 const struct tomoyo_acl_info
*b
)
620 const struct tomoyo_path_number_acl
*p1
= container_of(a
, typeof(*p1
),
622 const struct tomoyo_path_number_acl
*p2
= container_of(b
, typeof(*p2
),
624 return tomoyo_same_name_union(&p1
->name
, &p2
->name
) &&
625 tomoyo_same_number_union(&p1
->number
, &p2
->number
);
629 * tomoyo_merge_path_number_acl - Merge duplicated "struct tomoyo_path_number_acl" entry.
631 * @a: Pointer to "struct tomoyo_acl_info".
632 * @b: Pointer to "struct tomoyo_acl_info".
633 * @is_delete: True for @a &= ~@b, false for @a |= @b.
635 * Returns true if @a is empty, false otherwise.
637 static bool tomoyo_merge_path_number_acl(struct tomoyo_acl_info
*a
,
638 struct tomoyo_acl_info
*b
,
639 const bool is_delete
)
641 u8
* const a_perm
= &container_of(a
, struct tomoyo_path_number_acl
,
644 const u8 b_perm
= container_of(b
, struct tomoyo_path_number_acl
, head
)
655 * tomoyo_update_path_number_acl - Update ioctl/chmod/chown/chgrp ACL.
658 * @param: Pointer to "struct tomoyo_acl_param".
660 * Returns 0 on success, negative value otherwise.
662 static int tomoyo_update_path_number_acl(const u8 perm
,
663 struct tomoyo_acl_param
*param
)
665 struct tomoyo_path_number_acl e
= {
666 .head
.type
= TOMOYO_TYPE_PATH_NUMBER_ACL
,
670 if (!tomoyo_parse_name_union(param
, &e
.name
) ||
671 !tomoyo_parse_number_union(param
, &e
.number
))
674 error
= tomoyo_update_domain(&e
.head
, sizeof(e
), param
,
675 tomoyo_same_path_number_acl
,
676 tomoyo_merge_path_number_acl
);
677 tomoyo_put_name_union(&e
.name
);
678 tomoyo_put_number_union(&e
.number
);
683 * tomoyo_path_number_perm - Check permission for "create", "mkdir", "mkfifo", "mksock", "ioctl", "chmod", "chown", "chgrp".
685 * @type: Type of operation.
686 * @path: Pointer to "struct path".
689 * Returns 0 on success, negative value otherwise.
691 int tomoyo_path_number_perm(const u8 type
, const struct path
*path
,
692 unsigned long number
)
694 struct tomoyo_request_info r
;
695 struct tomoyo_obj_info obj
= {
696 .path1
= { .mnt
= path
->mnt
, .dentry
= path
->dentry
},
699 struct tomoyo_path_info buf
;
702 if (tomoyo_init_request_info(&r
, NULL
, tomoyo_pn2mac
[type
])
703 == TOMOYO_CONFIG_DISABLED
|| !path
->dentry
)
705 idx
= tomoyo_read_lock();
706 if (!tomoyo_get_realpath(&buf
, path
))
709 if (type
== TOMOYO_TYPE_MKDIR
)
710 tomoyo_add_slash(&buf
);
711 r
.param_type
= TOMOYO_TYPE_PATH_NUMBER_ACL
;
712 r
.param
.path_number
.operation
= type
;
713 r
.param
.path_number
.filename
= &buf
;
714 r
.param
.path_number
.number
= number
;
716 tomoyo_check_acl(&r
, tomoyo_check_path_number_acl
);
717 error
= tomoyo_audit_path_number_log(&r
);
718 } while (error
== TOMOYO_RETRY_REQUEST
);
721 tomoyo_read_unlock(idx
);
722 if (r
.mode
!= TOMOYO_CONFIG_ENFORCING
)
728 * tomoyo_check_open_permission - Check permission for "read" and "write".
730 * @domain: Pointer to "struct tomoyo_domain_info".
731 * @path: Pointer to "struct path".
732 * @flag: Flags for open().
734 * Returns 0 on success, negative value otherwise.
736 int tomoyo_check_open_permission(struct tomoyo_domain_info
*domain
,
737 const struct path
*path
, const int flag
)
739 const u8 acc_mode
= ACC_MODE(flag
);
741 struct tomoyo_path_info buf
;
742 struct tomoyo_request_info r
;
743 struct tomoyo_obj_info obj
= {
744 .path1
= { .mnt
= path
->mnt
, .dentry
= path
->dentry
},
749 r
.mode
= TOMOYO_CONFIG_DISABLED
;
750 idx
= tomoyo_read_lock();
752 tomoyo_init_request_info(&r
, domain
, TOMOYO_MAC_FILE_OPEN
)
753 != TOMOYO_CONFIG_DISABLED
) {
754 if (!tomoyo_get_realpath(&buf
, path
)) {
759 if (acc_mode
& MAY_READ
)
760 error
= tomoyo_path_permission(&r
, TOMOYO_TYPE_READ
,
762 if (!error
&& (acc_mode
& MAY_WRITE
))
763 error
= tomoyo_path_permission(&r
, (flag
& O_APPEND
) ?
770 tomoyo_read_unlock(idx
);
771 if (r
.mode
!= TOMOYO_CONFIG_ENFORCING
)
777 * tomoyo_path_perm - Check permission for "unlink", "rmdir", "truncate", "symlink", "append", "chroot" and "unmount".
779 * @operation: Type of operation.
780 * @path: Pointer to "struct path".
781 * @target: Symlink's target if @operation is TOMOYO_TYPE_SYMLINK,
784 * Returns 0 on success, negative value otherwise.
786 int tomoyo_path_perm(const u8 operation
, const struct path
*path
, const char *target
)
788 struct tomoyo_request_info r
;
789 struct tomoyo_obj_info obj
= {
790 .path1
= { .mnt
= path
->mnt
, .dentry
= path
->dentry
},
793 struct tomoyo_path_info buf
;
795 struct tomoyo_path_info symlink_target
;
798 if (tomoyo_init_request_info(&r
, NULL
, tomoyo_p2mac
[operation
])
799 == TOMOYO_CONFIG_DISABLED
)
801 is_enforce
= (r
.mode
== TOMOYO_CONFIG_ENFORCING
);
804 idx
= tomoyo_read_lock();
805 if (!tomoyo_get_realpath(&buf
, path
))
809 case TOMOYO_TYPE_RMDIR
:
810 case TOMOYO_TYPE_CHROOT
:
811 tomoyo_add_slash(&buf
);
813 case TOMOYO_TYPE_SYMLINK
:
814 symlink_target
.name
= tomoyo_encode(target
);
815 if (!symlink_target
.name
)
817 tomoyo_fill_path_info(&symlink_target
);
818 obj
.symlink_target
= &symlink_target
;
821 error
= tomoyo_path_permission(&r
, operation
, &buf
);
822 if (operation
== TOMOYO_TYPE_SYMLINK
)
823 kfree(symlink_target
.name
);
826 tomoyo_read_unlock(idx
);
833 * tomoyo_mkdev_perm - Check permission for "mkblock" and "mkchar".
835 * @operation: Type of operation. (TOMOYO_TYPE_MKCHAR or TOMOYO_TYPE_MKBLOCK)
836 * @path: Pointer to "struct path".
837 * @mode: Create mode.
838 * @dev: Device number.
840 * Returns 0 on success, negative value otherwise.
842 int tomoyo_mkdev_perm(const u8 operation
, const struct path
*path
,
843 const unsigned int mode
, unsigned int dev
)
845 struct tomoyo_request_info r
;
846 struct tomoyo_obj_info obj
= {
847 .path1
= { .mnt
= path
->mnt
, .dentry
= path
->dentry
},
850 struct tomoyo_path_info buf
;
853 if (tomoyo_init_request_info(&r
, NULL
, tomoyo_pnnn2mac
[operation
])
854 == TOMOYO_CONFIG_DISABLED
)
856 idx
= tomoyo_read_lock();
858 if (tomoyo_get_realpath(&buf
, path
)) {
860 dev
= new_decode_dev(dev
);
861 r
.param_type
= TOMOYO_TYPE_MKDEV_ACL
;
862 r
.param
.mkdev
.filename
= &buf
;
863 r
.param
.mkdev
.operation
= operation
;
864 r
.param
.mkdev
.mode
= mode
;
865 r
.param
.mkdev
.major
= MAJOR(dev
);
866 r
.param
.mkdev
.minor
= MINOR(dev
);
867 tomoyo_check_acl(&r
, tomoyo_check_mkdev_acl
);
868 error
= tomoyo_audit_mkdev_log(&r
);
871 tomoyo_read_unlock(idx
);
872 if (r
.mode
!= TOMOYO_CONFIG_ENFORCING
)
878 * tomoyo_path2_perm - Check permission for "rename", "link" and "pivot_root".
880 * @operation: Type of operation.
881 * @path1: Pointer to "struct path".
882 * @path2: Pointer to "struct path".
884 * Returns 0 on success, negative value otherwise.
886 int tomoyo_path2_perm(const u8 operation
, const struct path
*path1
,
887 const struct path
*path2
)
890 struct tomoyo_path_info buf1
;
891 struct tomoyo_path_info buf2
;
892 struct tomoyo_request_info r
;
893 struct tomoyo_obj_info obj
= {
894 .path1
= { .mnt
= path1
->mnt
, .dentry
= path1
->dentry
},
895 .path2
= { .mnt
= path2
->mnt
, .dentry
= path2
->dentry
}
899 if (tomoyo_init_request_info(&r
, NULL
, tomoyo_pp2mac
[operation
])
900 == TOMOYO_CONFIG_DISABLED
)
904 idx
= tomoyo_read_lock();
905 if (!tomoyo_get_realpath(&buf1
, path1
) ||
906 !tomoyo_get_realpath(&buf2
, path2
))
909 case TOMOYO_TYPE_RENAME
:
910 case TOMOYO_TYPE_LINK
:
911 if (!d_is_dir(path1
->dentry
))
914 case TOMOYO_TYPE_PIVOT_ROOT
:
915 tomoyo_add_slash(&buf1
);
916 tomoyo_add_slash(&buf2
);
920 r
.param_type
= TOMOYO_TYPE_PATH2_ACL
;
921 r
.param
.path2
.operation
= operation
;
922 r
.param
.path2
.filename1
= &buf1
;
923 r
.param
.path2
.filename2
= &buf2
;
925 tomoyo_check_acl(&r
, tomoyo_check_path2_acl
);
926 error
= tomoyo_audit_path2_log(&r
);
927 } while (error
== TOMOYO_RETRY_REQUEST
);
931 tomoyo_read_unlock(idx
);
932 if (r
.mode
!= TOMOYO_CONFIG_ENFORCING
)
938 * tomoyo_same_mount_acl - Check for duplicated "struct tomoyo_mount_acl" entry.
940 * @a: Pointer to "struct tomoyo_acl_info".
941 * @b: Pointer to "struct tomoyo_acl_info".
943 * Returns true if @a == @b, false otherwise.
945 static bool tomoyo_same_mount_acl(const struct tomoyo_acl_info
*a
,
946 const struct tomoyo_acl_info
*b
)
948 const struct tomoyo_mount_acl
*p1
= container_of(a
, typeof(*p1
), head
);
949 const struct tomoyo_mount_acl
*p2
= container_of(b
, typeof(*p2
), head
);
950 return tomoyo_same_name_union(&p1
->dev_name
, &p2
->dev_name
) &&
951 tomoyo_same_name_union(&p1
->dir_name
, &p2
->dir_name
) &&
952 tomoyo_same_name_union(&p1
->fs_type
, &p2
->fs_type
) &&
953 tomoyo_same_number_union(&p1
->flags
, &p2
->flags
);
957 * tomoyo_update_mount_acl - Write "struct tomoyo_mount_acl" list.
959 * @param: Pointer to "struct tomoyo_acl_param".
961 * Returns 0 on success, negative value otherwise.
963 * Caller holds tomoyo_read_lock().
965 static int tomoyo_update_mount_acl(struct tomoyo_acl_param
*param
)
967 struct tomoyo_mount_acl e
= { .head
.type
= TOMOYO_TYPE_MOUNT_ACL
};
969 if (!tomoyo_parse_name_union(param
, &e
.dev_name
) ||
970 !tomoyo_parse_name_union(param
, &e
.dir_name
) ||
971 !tomoyo_parse_name_union(param
, &e
.fs_type
) ||
972 !tomoyo_parse_number_union(param
, &e
.flags
))
975 error
= tomoyo_update_domain(&e
.head
, sizeof(e
), param
,
976 tomoyo_same_mount_acl
, NULL
);
977 tomoyo_put_name_union(&e
.dev_name
);
978 tomoyo_put_name_union(&e
.dir_name
);
979 tomoyo_put_name_union(&e
.fs_type
);
980 tomoyo_put_number_union(&e
.flags
);
985 * tomoyo_write_file - Update file related list.
987 * @param: Pointer to "struct tomoyo_acl_param".
989 * Returns 0 on success, negative value otherwise.
991 * Caller holds tomoyo_read_lock().
993 int tomoyo_write_file(struct tomoyo_acl_param
*param
)
997 const char *operation
= tomoyo_read_token(param
);
998 for (type
= 0; type
< TOMOYO_MAX_PATH_OPERATION
; type
++)
999 if (tomoyo_permstr(operation
, tomoyo_path_keyword
[type
]))
1002 return tomoyo_update_path_acl(perm
, param
);
1003 for (type
= 0; type
< TOMOYO_MAX_PATH2_OPERATION
; type
++)
1004 if (tomoyo_permstr(operation
,
1005 tomoyo_mac_keywords
[tomoyo_pp2mac
[type
]]))
1008 return tomoyo_update_path2_acl(perm
, param
);
1009 for (type
= 0; type
< TOMOYO_MAX_PATH_NUMBER_OPERATION
; type
++)
1010 if (tomoyo_permstr(operation
,
1011 tomoyo_mac_keywords
[tomoyo_pn2mac
[type
]]))
1014 return tomoyo_update_path_number_acl(perm
, param
);
1015 for (type
= 0; type
< TOMOYO_MAX_MKDEV_OPERATION
; type
++)
1016 if (tomoyo_permstr(operation
,
1017 tomoyo_mac_keywords
[tomoyo_pnnn2mac
[type
]]))
1020 return tomoyo_update_mkdev_acl(perm
, param
);
1021 if (tomoyo_permstr(operation
,
1022 tomoyo_mac_keywords
[TOMOYO_MAC_FILE_MOUNT
]))
1023 return tomoyo_update_mount_acl(param
);