2 * security/tomoyo/util.c
4 * Copyright (C) 2005-2011 NTT DATA CORPORATION
7 #include <linux/slab.h>
10 /* Lock for protecting policy. */
11 DEFINE_MUTEX(tomoyo_policy_lock
);
13 /* Has /sbin/init started? */
14 bool tomoyo_policy_loaded
;
17 * Mapping table from "enum tomoyo_mac_index" to
18 * "enum tomoyo_mac_category_index".
20 const u8 tomoyo_index2category
[TOMOYO_MAX_MAC_INDEX
] = {
21 /* CONFIG::file group */
22 [TOMOYO_MAC_FILE_EXECUTE
] = TOMOYO_MAC_CATEGORY_FILE
,
23 [TOMOYO_MAC_FILE_OPEN
] = TOMOYO_MAC_CATEGORY_FILE
,
24 [TOMOYO_MAC_FILE_CREATE
] = TOMOYO_MAC_CATEGORY_FILE
,
25 [TOMOYO_MAC_FILE_UNLINK
] = TOMOYO_MAC_CATEGORY_FILE
,
26 [TOMOYO_MAC_FILE_GETATTR
] = TOMOYO_MAC_CATEGORY_FILE
,
27 [TOMOYO_MAC_FILE_MKDIR
] = TOMOYO_MAC_CATEGORY_FILE
,
28 [TOMOYO_MAC_FILE_RMDIR
] = TOMOYO_MAC_CATEGORY_FILE
,
29 [TOMOYO_MAC_FILE_MKFIFO
] = TOMOYO_MAC_CATEGORY_FILE
,
30 [TOMOYO_MAC_FILE_MKSOCK
] = TOMOYO_MAC_CATEGORY_FILE
,
31 [TOMOYO_MAC_FILE_TRUNCATE
] = TOMOYO_MAC_CATEGORY_FILE
,
32 [TOMOYO_MAC_FILE_SYMLINK
] = TOMOYO_MAC_CATEGORY_FILE
,
33 [TOMOYO_MAC_FILE_MKBLOCK
] = TOMOYO_MAC_CATEGORY_FILE
,
34 [TOMOYO_MAC_FILE_MKCHAR
] = TOMOYO_MAC_CATEGORY_FILE
,
35 [TOMOYO_MAC_FILE_LINK
] = TOMOYO_MAC_CATEGORY_FILE
,
36 [TOMOYO_MAC_FILE_RENAME
] = TOMOYO_MAC_CATEGORY_FILE
,
37 [TOMOYO_MAC_FILE_CHMOD
] = TOMOYO_MAC_CATEGORY_FILE
,
38 [TOMOYO_MAC_FILE_CHOWN
] = TOMOYO_MAC_CATEGORY_FILE
,
39 [TOMOYO_MAC_FILE_CHGRP
] = TOMOYO_MAC_CATEGORY_FILE
,
40 [TOMOYO_MAC_FILE_IOCTL
] = TOMOYO_MAC_CATEGORY_FILE
,
41 [TOMOYO_MAC_FILE_CHROOT
] = TOMOYO_MAC_CATEGORY_FILE
,
42 [TOMOYO_MAC_FILE_MOUNT
] = TOMOYO_MAC_CATEGORY_FILE
,
43 [TOMOYO_MAC_FILE_UMOUNT
] = TOMOYO_MAC_CATEGORY_FILE
,
44 [TOMOYO_MAC_FILE_PIVOT_ROOT
] = TOMOYO_MAC_CATEGORY_FILE
,
48 * tomoyo_convert_time - Convert time_t to YYYY/MM/DD hh/mm/ss.
50 * @time: Seconds since 1970/01/01 00:00:00.
51 * @stamp: Pointer to "struct tomoyo_time".
55 * This function does not handle Y2038 problem.
57 void tomoyo_convert_time(time_t time
, struct tomoyo_time
*stamp
)
59 static const u16 tomoyo_eom
[2][12] = {
60 { 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
61 { 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
66 stamp
->sec
= time
% 60;
68 stamp
->min
= time
% 60;
70 stamp
->hour
= time
% 24;
72 for (y
= 1970; ; y
++) {
73 const unsigned short days
= (y
& 3) ? 365 : 366;
79 for (m
= 0; m
< 11 && time
>= tomoyo_eom
[r
][m
]; m
++)
82 time
-= tomoyo_eom
[r
][m
- 1];
89 * tomoyo_permstr - Find permission keywords.
91 * @string: String representation for permissions in foo/bar/buz format.
92 * @keyword: Keyword to find from @string/
94 * Returns ture if @keyword was found in @string, false otherwise.
96 * This function assumes that strncmp(w1, w2, strlen(w1)) != 0 if w1 != w2.
98 bool tomoyo_permstr(const char *string
, const char *keyword
)
100 const char *cp
= strstr(string
, keyword
);
102 return cp
== string
|| *(cp
- 1) == '/';
107 * tomoyo_read_token - Read a word from a line.
109 * @param: Pointer to "struct tomoyo_acl_param".
111 * Returns a word on success, "" otherwise.
113 * To allow the caller to skip NULL check, this function returns "" rather than
114 * NULL if there is no more words to read.
116 char *tomoyo_read_token(struct tomoyo_acl_param
*param
)
118 char *pos
= param
->data
;
119 char *del
= strchr(pos
, ' ');
123 del
= pos
+ strlen(pos
);
129 * tomoyo_parse_ulong - Parse an "unsigned long" value.
131 * @result: Pointer to "unsigned long".
132 * @str: Pointer to string to parse.
134 * Returns one of values in "enum tomoyo_value_type".
136 * The @src is updated to point the first character after the value
139 u8
tomoyo_parse_ulong(unsigned long *result
, char **str
)
141 const char *cp
= *str
;
146 if (c
== 'x' || c
== 'X') {
149 } else if (c
>= '0' && c
<= '7') {
154 *result
= simple_strtoul(cp
, &ep
, base
);
156 return TOMOYO_VALUE_TYPE_INVALID
;
160 return TOMOYO_VALUE_TYPE_HEXADECIMAL
;
162 return TOMOYO_VALUE_TYPE_OCTAL
;
164 return TOMOYO_VALUE_TYPE_DECIMAL
;
169 * tomoyo_print_ulong - Print an "unsigned long" value.
171 * @buffer: Pointer to buffer.
172 * @buffer_len: Size of @buffer.
173 * @value: An "unsigned long" value.
174 * @type: Type of @value.
178 void tomoyo_print_ulong(char *buffer
, const int buffer_len
,
179 const unsigned long value
, const u8 type
)
181 if (type
== TOMOYO_VALUE_TYPE_DECIMAL
)
182 snprintf(buffer
, buffer_len
, "%lu", value
);
183 else if (type
== TOMOYO_VALUE_TYPE_OCTAL
)
184 snprintf(buffer
, buffer_len
, "0%lo", value
);
185 else if (type
== TOMOYO_VALUE_TYPE_HEXADECIMAL
)
186 snprintf(buffer
, buffer_len
, "0x%lX", value
);
188 snprintf(buffer
, buffer_len
, "type(%u)", type
);
192 * tomoyo_parse_name_union - Parse a tomoyo_name_union.
194 * @param: Pointer to "struct tomoyo_acl_param".
195 * @ptr: Pointer to "struct tomoyo_name_union".
197 * Returns true on success, false otherwise.
199 bool tomoyo_parse_name_union(struct tomoyo_acl_param
*param
,
200 struct tomoyo_name_union
*ptr
)
203 if (param
->data
[0] == '@') {
205 ptr
->group
= tomoyo_get_group(param
, TOMOYO_PATH_GROUP
);
206 return ptr
->group
!= NULL
;
208 filename
= tomoyo_read_token(param
);
209 if (!tomoyo_correct_word(filename
))
211 ptr
->filename
= tomoyo_get_name(filename
);
212 return ptr
->filename
!= NULL
;
216 * tomoyo_parse_number_union - Parse a tomoyo_number_union.
218 * @param: Pointer to "struct tomoyo_acl_param".
219 * @ptr: Pointer to "struct tomoyo_number_union".
221 * Returns true on success, false otherwise.
223 bool tomoyo_parse_number_union(struct tomoyo_acl_param
*param
,
224 struct tomoyo_number_union
*ptr
)
229 memset(ptr
, 0, sizeof(*ptr
));
230 if (param
->data
[0] == '@') {
232 ptr
->group
= tomoyo_get_group(param
, TOMOYO_NUMBER_GROUP
);
233 return ptr
->group
!= NULL
;
235 data
= tomoyo_read_token(param
);
236 type
= tomoyo_parse_ulong(&v
, &data
);
237 if (type
== TOMOYO_VALUE_TYPE_INVALID
)
240 ptr
->value_type
[0] = type
;
243 ptr
->value_type
[1] = type
;
248 type
= tomoyo_parse_ulong(&v
, &data
);
249 if (type
== TOMOYO_VALUE_TYPE_INVALID
|| *data
|| ptr
->values
[0] > v
)
252 ptr
->value_type
[1] = type
;
257 * tomoyo_byte_range - Check whether the string is a \ooo style octal value.
259 * @str: Pointer to the string.
261 * Returns true if @str is a \ooo style octal value, false otherwise.
263 * TOMOYO uses \ooo style representation for 0x01 - 0x20 and 0x7F - 0xFF.
264 * This function verifies that \ooo is in valid range.
266 static inline bool tomoyo_byte_range(const char *str
)
268 return *str
>= '0' && *str
++ <= '3' &&
269 *str
>= '0' && *str
++ <= '7' &&
270 *str
>= '0' && *str
<= '7';
274 * tomoyo_alphabet_char - Check whether the character is an alphabet.
276 * @c: The character to check.
278 * Returns true if @c is an alphabet character, false otherwise.
280 static inline bool tomoyo_alphabet_char(const char c
)
282 return (c
>= 'A' && c
<= 'Z') || (c
>= 'a' && c
<= 'z');
286 * tomoyo_make_byte - Make byte value from three octal characters.
288 * @c1: The first character.
289 * @c2: The second character.
290 * @c3: The third character.
292 * Returns byte value.
294 static inline u8
tomoyo_make_byte(const u8 c1
, const u8 c2
, const u8 c3
)
296 return ((c1
- '0') << 6) + ((c2
- '0') << 3) + (c3
- '0');
300 * tomoyo_valid - Check whether the character is a valid char.
302 * @c: The character to check.
304 * Returns true if @c is a valid character, false otherwise.
306 static inline bool tomoyo_valid(const unsigned char c
)
308 return c
> ' ' && c
< 127;
312 * tomoyo_invalid - Check whether the character is an invalid char.
314 * @c: The character to check.
316 * Returns true if @c is an invalid character, false otherwise.
318 static inline bool tomoyo_invalid(const unsigned char c
)
320 return c
&& (c
<= ' ' || c
>= 127);
324 * tomoyo_str_starts - Check whether the given string starts with the given keyword.
326 * @src: Pointer to pointer to the string.
327 * @find: Pointer to the keyword.
329 * Returns true if @src starts with @find, false otherwise.
331 * The @src is updated to point the first character after the @find
332 * if @src starts with @find.
334 bool tomoyo_str_starts(char **src
, const char *find
)
336 const int len
= strlen(find
);
339 if (strncmp(tmp
, find
, len
))
347 * tomoyo_normalize_line - Format string.
349 * @buffer: The line to normalize.
351 * Leading and trailing whitespaces are removed.
352 * Multiple whitespaces are packed into single space.
356 void tomoyo_normalize_line(unsigned char *buffer
)
358 unsigned char *sp
= buffer
;
359 unsigned char *dp
= buffer
;
362 while (tomoyo_invalid(*sp
))
368 while (tomoyo_valid(*sp
))
370 while (tomoyo_invalid(*sp
))
377 * tomoyo_correct_word2 - Validate a string.
379 * @string: The string to check. Maybe non-'\0'-terminated.
380 * @len: Length of @string.
382 * Check whether the given string follows the naming rules.
383 * Returns true if @string follows the naming rules, false otherwise.
385 static bool tomoyo_correct_word2(const char *string
, size_t len
)
387 const char *const start
= string
;
388 bool in_repetition
= false;
401 case '\\': /* "\\" */
414 case '{': /* "/\{" */
415 if (string
- 3 < start
|| *(string
- 3) != '/')
417 in_repetition
= true;
419 case '}': /* "\}/" */
424 in_repetition
= false;
426 case '0': /* "\ooo" */
430 if (!len
-- || !len
--)
434 if (d
< '0' || d
> '7' || e
< '0' || e
> '7')
436 c
= tomoyo_make_byte(c
, d
, e
);
437 if (tomoyo_invalid(c
))
438 continue; /* pattern is not \000 */
441 } else if (in_repetition
&& c
== '/') {
443 } else if (tomoyo_invalid(c
)) {
455 * tomoyo_correct_word - Validate a string.
457 * @string: The string to check.
459 * Check whether the given string follows the naming rules.
460 * Returns true if @string follows the naming rules, false otherwise.
462 bool tomoyo_correct_word(const char *string
)
464 return tomoyo_correct_word2(string
, strlen(string
));
468 * tomoyo_correct_path - Validate a pathname.
470 * @filename: The pathname to check.
472 * Check whether the given pathname follows the naming rules.
473 * Returns true if @filename follows the naming rules, false otherwise.
475 bool tomoyo_correct_path(const char *filename
)
477 return *filename
== '/' && tomoyo_correct_word(filename
);
481 * tomoyo_correct_domain - Check whether the given domainname follows the naming rules.
483 * @domainname: The domainname to check.
485 * Returns true if @domainname follows the naming rules, false otherwise.
487 bool tomoyo_correct_domain(const unsigned char *domainname
)
489 if (!domainname
|| !tomoyo_domain_def(domainname
))
491 domainname
= strchr(domainname
, ' ');
495 const unsigned char *cp
= strchr(domainname
, ' ');
498 if (*domainname
!= '/' ||
499 !tomoyo_correct_word2(domainname
, cp
- domainname
))
503 return tomoyo_correct_path(domainname
);
507 * tomoyo_domain_def - Check whether the given token can be a domainname.
509 * @buffer: The token to check.
511 * Returns true if @buffer possibly be a domainname, false otherwise.
513 bool tomoyo_domain_def(const unsigned char *buffer
)
515 const unsigned char *cp
;
519 cp
= strchr(buffer
, ' ');
521 len
= strlen(buffer
);
524 if (buffer
[len
- 1] != '>' ||
525 !tomoyo_correct_word2(buffer
+ 1, len
- 2))
531 * tomoyo_find_domain - Find a domain by the given name.
533 * @domainname: The domainname to find.
535 * Returns pointer to "struct tomoyo_domain_info" if found, NULL otherwise.
537 * Caller holds tomoyo_read_lock().
539 struct tomoyo_domain_info
*tomoyo_find_domain(const char *domainname
)
541 struct tomoyo_domain_info
*domain
;
542 struct tomoyo_path_info name
;
544 name
.name
= domainname
;
545 tomoyo_fill_path_info(&name
);
546 list_for_each_entry_rcu(domain
, &tomoyo_domain_list
, list
) {
547 if (!domain
->is_deleted
&&
548 !tomoyo_pathcmp(&name
, domain
->domainname
))
555 * tomoyo_const_part_length - Evaluate the initial length without a pattern in a token.
557 * @filename: The string to evaluate.
559 * Returns the initial length without a pattern in @filename.
561 static int tomoyo_const_part_length(const char *filename
)
568 while ((c
= *filename
++) != '\0') {
575 case '\\': /* "\\" */
578 case '0': /* "\ooo" */
583 if (c
< '0' || c
> '7')
586 if (c
< '0' || c
> '7')
597 * tomoyo_fill_path_info - Fill in "struct tomoyo_path_info" members.
599 * @ptr: Pointer to "struct tomoyo_path_info" to fill in.
601 * The caller sets "struct tomoyo_path_info"->name.
603 void tomoyo_fill_path_info(struct tomoyo_path_info
*ptr
)
605 const char *name
= ptr
->name
;
606 const int len
= strlen(name
);
608 ptr
->const_len
= tomoyo_const_part_length(name
);
609 ptr
->is_dir
= len
&& (name
[len
- 1] == '/');
610 ptr
->is_patterned
= (ptr
->const_len
< len
);
611 ptr
->hash
= full_name_hash(name
, len
);
615 * tomoyo_file_matches_pattern2 - Pattern matching without '/' character and "\-" pattern.
617 * @filename: The start of string to check.
618 * @filename_end: The end of string to check.
619 * @pattern: The start of pattern to compare.
620 * @pattern_end: The end of pattern to compare.
622 * Returns true if @filename matches @pattern, false otherwise.
624 static bool tomoyo_file_matches_pattern2(const char *filename
,
625 const char *filename_end
,
627 const char *pattern_end
)
629 while (filename
< filename_end
&& pattern
< pattern_end
) {
631 if (*pattern
!= '\\') {
632 if (*filename
++ != *pattern
++)
644 } else if (c
== '\\') {
645 if (filename
[1] == '\\')
647 else if (tomoyo_byte_range(filename
+ 1))
656 if (*++filename
!= '\\')
668 if (!tomoyo_alphabet_char(c
))
675 if (c
== '\\' && tomoyo_byte_range(filename
+ 1)
676 && strncmp(filename
+ 1, pattern
, 3) == 0) {
681 return false; /* Not matched. */
684 for (i
= 0; i
<= filename_end
- filename
; i
++) {
685 if (tomoyo_file_matches_pattern2(
686 filename
+ i
, filename_end
,
687 pattern
+ 1, pattern_end
))
690 if (c
== '.' && *pattern
== '@')
694 if (filename
[i
+ 1] == '\\')
696 else if (tomoyo_byte_range(filename
+ i
+ 1))
699 break; /* Bad pattern. */
701 return false; /* Not matched. */
706 while (isdigit(filename
[j
]))
708 } else if (c
== 'X') {
709 while (isxdigit(filename
[j
]))
711 } else if (c
== 'A') {
712 while (tomoyo_alphabet_char(filename
[j
]))
715 for (i
= 1; i
<= j
; i
++) {
716 if (tomoyo_file_matches_pattern2(
717 filename
+ i
, filename_end
,
718 pattern
+ 1, pattern_end
))
721 return false; /* Not matched or bad pattern. */
726 while (*pattern
== '\\' &&
727 (*(pattern
+ 1) == '*' || *(pattern
+ 1) == '@'))
729 return filename
== filename_end
&& pattern
== pattern_end
;
733 * tomoyo_file_matches_pattern - Pattern matching without '/' character.
735 * @filename: The start of string to check.
736 * @filename_end: The end of string to check.
737 * @pattern: The start of pattern to compare.
738 * @pattern_end: The end of pattern to compare.
740 * Returns true if @filename matches @pattern, false otherwise.
742 static bool tomoyo_file_matches_pattern(const char *filename
,
743 const char *filename_end
,
745 const char *pattern_end
)
747 const char *pattern_start
= pattern
;
751 while (pattern
< pattern_end
- 1) {
752 /* Split at "\-" pattern. */
753 if (*pattern
++ != '\\' || *pattern
++ != '-')
755 result
= tomoyo_file_matches_pattern2(filename
,
764 pattern_start
= pattern
;
766 result
= tomoyo_file_matches_pattern2(filename
, filename_end
,
767 pattern_start
, pattern_end
);
768 return first
? result
: !result
;
772 * tomoyo_path_matches_pattern2 - Do pathname pattern matching.
774 * @f: The start of string to check.
775 * @p: The start of pattern to compare.
777 * Returns true if @f matches @p, false otherwise.
779 static bool tomoyo_path_matches_pattern2(const char *f
, const char *p
)
781 const char *f_delimiter
;
782 const char *p_delimiter
;
785 f_delimiter
= strchr(f
, '/');
787 f_delimiter
= f
+ strlen(f
);
788 p_delimiter
= strchr(p
, '/');
790 p_delimiter
= p
+ strlen(p
);
791 if (*p
== '\\' && *(p
+ 1) == '{')
793 if (!tomoyo_file_matches_pattern(f
, f_delimiter
, p
,
803 /* Ignore trailing "\*" and "\@" in @pattern. */
805 (*(p
+ 1) == '*' || *(p
+ 1) == '@'))
810 * The "\{" pattern is permitted only after '/' character.
811 * This guarantees that below "*(p - 1)" is safe.
812 * Also, the "\}" pattern is permitted only before '/' character
813 * so that "\{" + "\}" pair will not break the "\-" operator.
815 if (*(p
- 1) != '/' || p_delimiter
<= p
+ 3 || *p_delimiter
!= '/' ||
816 *(p_delimiter
- 1) != '}' || *(p_delimiter
- 2) != '\\')
817 return false; /* Bad pattern. */
819 /* Compare current component with pattern. */
820 if (!tomoyo_file_matches_pattern(f
, f_delimiter
, p
+ 2,
823 /* Proceed to next component. */
828 /* Continue comparison. */
829 if (tomoyo_path_matches_pattern2(f
, p_delimiter
+ 1))
831 f_delimiter
= strchr(f
, '/');
832 } while (f_delimiter
);
833 return false; /* Not matched. */
837 * tomoyo_path_matches_pattern - Check whether the given filename matches the given pattern.
839 * @filename: The filename to check.
840 * @pattern: The pattern to compare.
842 * Returns true if matches, false otherwise.
844 * The following patterns are available.
846 * \ooo Octal representation of a byte.
847 * \* Zero or more repetitions of characters other than '/'.
848 * \@ Zero or more repetitions of characters other than '/' or '.'.
849 * \? 1 byte character other than '/'.
850 * \$ One or more repetitions of decimal digits.
851 * \+ 1 decimal digit.
852 * \X One or more repetitions of hexadecimal digits.
853 * \x 1 hexadecimal digit.
854 * \A One or more repetitions of alphabet characters.
855 * \a 1 alphabet character.
857 * \- Subtraction operator.
859 * /\{dir\}/ '/' + 'One or more repetitions of dir/' (e.g. /dir/ /dir/dir/
862 bool tomoyo_path_matches_pattern(const struct tomoyo_path_info
*filename
,
863 const struct tomoyo_path_info
*pattern
)
865 const char *f
= filename
->name
;
866 const char *p
= pattern
->name
;
867 const int len
= pattern
->const_len
;
869 /* If @pattern doesn't contain pattern, I can use strcmp(). */
870 if (!pattern
->is_patterned
)
871 return !tomoyo_pathcmp(filename
, pattern
);
872 /* Don't compare directory and non-directory. */
873 if (filename
->is_dir
!= pattern
->is_dir
)
875 /* Compare the initial length without patterns. */
876 if (strncmp(f
, p
, len
))
880 return tomoyo_path_matches_pattern2(f
, p
);
884 * tomoyo_get_exe - Get tomoyo_realpath() of current process.
886 * Returns the tomoyo_realpath() of current process on success, NULL otherwise.
888 * This function uses kzalloc(), so the caller must call kfree()
889 * if this function didn't return NULL.
891 const char *tomoyo_get_exe(void)
893 struct mm_struct
*mm
= current
->mm
;
894 struct vm_area_struct
*vma
;
895 const char *cp
= NULL
;
899 down_read(&mm
->mmap_sem
);
900 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
) {
901 if ((vma
->vm_flags
& VM_EXECUTABLE
) && vma
->vm_file
) {
902 cp
= tomoyo_realpath_from_path(&vma
->vm_file
->f_path
);
906 up_read(&mm
->mmap_sem
);
911 * tomoyo_get_mode - Get MAC mode.
913 * @ns: Pointer to "struct tomoyo_policy_namespace".
914 * @profile: Profile number.
915 * @index: Index number of functionality.
919 int tomoyo_get_mode(const struct tomoyo_policy_namespace
*ns
, const u8 profile
,
923 const u8 category
= TOMOYO_MAC_CATEGORY_FILE
;
924 if (!tomoyo_policy_loaded
)
925 return TOMOYO_CONFIG_DISABLED
;
926 mode
= tomoyo_profile(ns
, profile
)->config
[index
];
927 if (mode
== TOMOYO_CONFIG_USE_DEFAULT
)
928 mode
= tomoyo_profile(ns
, profile
)->config
[category
];
929 if (mode
== TOMOYO_CONFIG_USE_DEFAULT
)
930 mode
= tomoyo_profile(ns
, profile
)->default_config
;
935 * tomoyo_init_request_info - Initialize "struct tomoyo_request_info" members.
937 * @r: Pointer to "struct tomoyo_request_info" to initialize.
938 * @domain: Pointer to "struct tomoyo_domain_info". NULL for tomoyo_domain().
939 * @index: Index number of functionality.
943 int tomoyo_init_request_info(struct tomoyo_request_info
*r
,
944 struct tomoyo_domain_info
*domain
, const u8 index
)
947 memset(r
, 0, sizeof(*r
));
949 domain
= tomoyo_domain();
951 profile
= domain
->profile
;
952 r
->profile
= profile
;
954 r
->mode
= tomoyo_get_mode(domain
->ns
, profile
, index
);
959 * tomoyo_domain_quota_is_ok - Check for domain's quota.
961 * @r: Pointer to "struct tomoyo_request_info".
963 * Returns true if the domain is not exceeded quota, false otherwise.
965 * Caller holds tomoyo_read_lock().
967 bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info
*r
)
969 unsigned int count
= 0;
970 struct tomoyo_domain_info
*domain
= r
->domain
;
971 struct tomoyo_acl_info
*ptr
;
973 if (r
->mode
!= TOMOYO_CONFIG_LEARNING
)
977 list_for_each_entry_rcu(ptr
, &domain
->acl_info_list
, list
) {
983 case TOMOYO_TYPE_PATH_ACL
:
984 perm
= container_of(ptr
, struct tomoyo_path_acl
, head
)
987 case TOMOYO_TYPE_PATH2_ACL
:
988 perm
= container_of(ptr
, struct tomoyo_path2_acl
, head
)
991 case TOMOYO_TYPE_PATH_NUMBER_ACL
:
992 perm
= container_of(ptr
, struct tomoyo_path_number_acl
,
995 case TOMOYO_TYPE_MKDEV_ACL
:
996 perm
= container_of(ptr
, struct tomoyo_mkdev_acl
,
1002 for (i
= 0; i
< 16; i
++)
1003 if (perm
& (1 << i
))
1006 if (count
< tomoyo_profile(domain
->ns
, domain
->profile
)->
1007 pref
[TOMOYO_PREF_MAX_LEARNING_ENTRY
])
1009 if (!domain
->flags
[TOMOYO_DIF_QUOTA_WARNED
]) {
1010 domain
->flags
[TOMOYO_DIF_QUOTA_WARNED
] = true;
1011 /* r->granted = false; */
1012 tomoyo_write_log(r
, "%s", tomoyo_dif
[TOMOYO_DIF_QUOTA_WARNED
]);
1013 printk(KERN_WARNING
"WARNING: "
1014 "Domain '%s' has too many ACLs to hold. "
1015 "Stopped learning mode.\n", domain
->domainname
->name
);