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
,
45 /* CONFIG::network group */
46 [TOMOYO_MAC_NETWORK_INET_STREAM_BIND
] =
47 TOMOYO_MAC_CATEGORY_NETWORK
,
48 [TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN
] =
49 TOMOYO_MAC_CATEGORY_NETWORK
,
50 [TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT
] =
51 TOMOYO_MAC_CATEGORY_NETWORK
,
52 [TOMOYO_MAC_NETWORK_INET_DGRAM_BIND
] =
53 TOMOYO_MAC_CATEGORY_NETWORK
,
54 [TOMOYO_MAC_NETWORK_INET_DGRAM_SEND
] =
55 TOMOYO_MAC_CATEGORY_NETWORK
,
56 [TOMOYO_MAC_NETWORK_INET_RAW_BIND
] =
57 TOMOYO_MAC_CATEGORY_NETWORK
,
58 [TOMOYO_MAC_NETWORK_INET_RAW_SEND
] =
59 TOMOYO_MAC_CATEGORY_NETWORK
,
60 [TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND
] =
61 TOMOYO_MAC_CATEGORY_NETWORK
,
62 [TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN
] =
63 TOMOYO_MAC_CATEGORY_NETWORK
,
64 [TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT
] =
65 TOMOYO_MAC_CATEGORY_NETWORK
,
66 [TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND
] =
67 TOMOYO_MAC_CATEGORY_NETWORK
,
68 [TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND
] =
69 TOMOYO_MAC_CATEGORY_NETWORK
,
70 [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND
] =
71 TOMOYO_MAC_CATEGORY_NETWORK
,
72 [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN
] =
73 TOMOYO_MAC_CATEGORY_NETWORK
,
74 [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT
] =
75 TOMOYO_MAC_CATEGORY_NETWORK
,
76 /* CONFIG::misc group */
77 [TOMOYO_MAC_ENVIRON
] = TOMOYO_MAC_CATEGORY_MISC
,
81 * tomoyo_convert_time - Convert time_t to YYYY/MM/DD hh/mm/ss.
83 * @time: Seconds since 1970/01/01 00:00:00.
84 * @stamp: Pointer to "struct tomoyo_time".
88 * This function does not handle Y2038 problem.
90 void tomoyo_convert_time(time_t time
, struct tomoyo_time
*stamp
)
92 static const u16 tomoyo_eom
[2][12] = {
93 { 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
94 { 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
99 stamp
->sec
= time
% 60;
101 stamp
->min
= time
% 60;
103 stamp
->hour
= time
% 24;
105 for (y
= 1970; ; y
++) {
106 const unsigned short days
= (y
& 3) ? 365 : 366;
112 for (m
= 0; m
< 11 && time
>= tomoyo_eom
[r
][m
]; m
++)
115 time
-= tomoyo_eom
[r
][m
- 1];
122 * tomoyo_permstr - Find permission keywords.
124 * @string: String representation for permissions in foo/bar/buz format.
125 * @keyword: Keyword to find from @string/
127 * Returns ture if @keyword was found in @string, false otherwise.
129 * This function assumes that strncmp(w1, w2, strlen(w1)) != 0 if w1 != w2.
131 bool tomoyo_permstr(const char *string
, const char *keyword
)
133 const char *cp
= strstr(string
, keyword
);
135 return cp
== string
|| *(cp
- 1) == '/';
140 * tomoyo_read_token - Read a word from a line.
142 * @param: Pointer to "struct tomoyo_acl_param".
144 * Returns a word on success, "" otherwise.
146 * To allow the caller to skip NULL check, this function returns "" rather than
147 * NULL if there is no more words to read.
149 char *tomoyo_read_token(struct tomoyo_acl_param
*param
)
151 char *pos
= param
->data
;
152 char *del
= strchr(pos
, ' ');
156 del
= pos
+ strlen(pos
);
162 * tomoyo_parse_ulong - Parse an "unsigned long" value.
164 * @result: Pointer to "unsigned long".
165 * @str: Pointer to string to parse.
167 * Returns one of values in "enum tomoyo_value_type".
169 * The @src is updated to point the first character after the value
172 u8
tomoyo_parse_ulong(unsigned long *result
, char **str
)
174 const char *cp
= *str
;
179 if (c
== 'x' || c
== 'X') {
182 } else if (c
>= '0' && c
<= '7') {
187 *result
= simple_strtoul(cp
, &ep
, base
);
189 return TOMOYO_VALUE_TYPE_INVALID
;
193 return TOMOYO_VALUE_TYPE_HEXADECIMAL
;
195 return TOMOYO_VALUE_TYPE_OCTAL
;
197 return TOMOYO_VALUE_TYPE_DECIMAL
;
202 * tomoyo_print_ulong - Print an "unsigned long" value.
204 * @buffer: Pointer to buffer.
205 * @buffer_len: Size of @buffer.
206 * @value: An "unsigned long" value.
207 * @type: Type of @value.
211 void tomoyo_print_ulong(char *buffer
, const int buffer_len
,
212 const unsigned long value
, const u8 type
)
214 if (type
== TOMOYO_VALUE_TYPE_DECIMAL
)
215 snprintf(buffer
, buffer_len
, "%lu", value
);
216 else if (type
== TOMOYO_VALUE_TYPE_OCTAL
)
217 snprintf(buffer
, buffer_len
, "0%lo", value
);
218 else if (type
== TOMOYO_VALUE_TYPE_HEXADECIMAL
)
219 snprintf(buffer
, buffer_len
, "0x%lX", value
);
221 snprintf(buffer
, buffer_len
, "type(%u)", type
);
225 * tomoyo_parse_name_union - Parse a tomoyo_name_union.
227 * @param: Pointer to "struct tomoyo_acl_param".
228 * @ptr: Pointer to "struct tomoyo_name_union".
230 * Returns true on success, false otherwise.
232 bool tomoyo_parse_name_union(struct tomoyo_acl_param
*param
,
233 struct tomoyo_name_union
*ptr
)
236 if (param
->data
[0] == '@') {
238 ptr
->group
= tomoyo_get_group(param
, TOMOYO_PATH_GROUP
);
239 return ptr
->group
!= NULL
;
241 filename
= tomoyo_read_token(param
);
242 if (!tomoyo_correct_word(filename
))
244 ptr
->filename
= tomoyo_get_name(filename
);
245 return ptr
->filename
!= NULL
;
249 * tomoyo_parse_number_union - Parse a tomoyo_number_union.
251 * @param: Pointer to "struct tomoyo_acl_param".
252 * @ptr: Pointer to "struct tomoyo_number_union".
254 * Returns true on success, false otherwise.
256 bool tomoyo_parse_number_union(struct tomoyo_acl_param
*param
,
257 struct tomoyo_number_union
*ptr
)
262 memset(ptr
, 0, sizeof(*ptr
));
263 if (param
->data
[0] == '@') {
265 ptr
->group
= tomoyo_get_group(param
, TOMOYO_NUMBER_GROUP
);
266 return ptr
->group
!= NULL
;
268 data
= tomoyo_read_token(param
);
269 type
= tomoyo_parse_ulong(&v
, &data
);
270 if (type
== TOMOYO_VALUE_TYPE_INVALID
)
273 ptr
->value_type
[0] = type
;
276 ptr
->value_type
[1] = type
;
281 type
= tomoyo_parse_ulong(&v
, &data
);
282 if (type
== TOMOYO_VALUE_TYPE_INVALID
|| *data
|| ptr
->values
[0] > v
)
285 ptr
->value_type
[1] = type
;
290 * tomoyo_byte_range - Check whether the string is a \ooo style octal value.
292 * @str: Pointer to the string.
294 * Returns true if @str is a \ooo style octal value, false otherwise.
296 * TOMOYO uses \ooo style representation for 0x01 - 0x20 and 0x7F - 0xFF.
297 * This function verifies that \ooo is in valid range.
299 static inline bool tomoyo_byte_range(const char *str
)
301 return *str
>= '0' && *str
++ <= '3' &&
302 *str
>= '0' && *str
++ <= '7' &&
303 *str
>= '0' && *str
<= '7';
307 * tomoyo_alphabet_char - Check whether the character is an alphabet.
309 * @c: The character to check.
311 * Returns true if @c is an alphabet character, false otherwise.
313 static inline bool tomoyo_alphabet_char(const char c
)
315 return (c
>= 'A' && c
<= 'Z') || (c
>= 'a' && c
<= 'z');
319 * tomoyo_make_byte - Make byte value from three octal characters.
321 * @c1: The first character.
322 * @c2: The second character.
323 * @c3: The third character.
325 * Returns byte value.
327 static inline u8
tomoyo_make_byte(const u8 c1
, const u8 c2
, const u8 c3
)
329 return ((c1
- '0') << 6) + ((c2
- '0') << 3) + (c3
- '0');
333 * tomoyo_valid - Check whether the character is a valid char.
335 * @c: The character to check.
337 * Returns true if @c is a valid character, false otherwise.
339 static inline bool tomoyo_valid(const unsigned char c
)
341 return c
> ' ' && c
< 127;
345 * tomoyo_invalid - Check whether the character is an invalid char.
347 * @c: The character to check.
349 * Returns true if @c is an invalid character, false otherwise.
351 static inline bool tomoyo_invalid(const unsigned char c
)
353 return c
&& (c
<= ' ' || c
>= 127);
357 * tomoyo_str_starts - Check whether the given string starts with the given keyword.
359 * @src: Pointer to pointer to the string.
360 * @find: Pointer to the keyword.
362 * Returns true if @src starts with @find, false otherwise.
364 * The @src is updated to point the first character after the @find
365 * if @src starts with @find.
367 bool tomoyo_str_starts(char **src
, const char *find
)
369 const int len
= strlen(find
);
372 if (strncmp(tmp
, find
, len
))
380 * tomoyo_normalize_line - Format string.
382 * @buffer: The line to normalize.
384 * Leading and trailing whitespaces are removed.
385 * Multiple whitespaces are packed into single space.
389 void tomoyo_normalize_line(unsigned char *buffer
)
391 unsigned char *sp
= buffer
;
392 unsigned char *dp
= buffer
;
395 while (tomoyo_invalid(*sp
))
401 while (tomoyo_valid(*sp
))
403 while (tomoyo_invalid(*sp
))
410 * tomoyo_correct_word2 - Validate a string.
412 * @string: The string to check. Maybe non-'\0'-terminated.
413 * @len: Length of @string.
415 * Check whether the given string follows the naming rules.
416 * Returns true if @string follows the naming rules, false otherwise.
418 static bool tomoyo_correct_word2(const char *string
, size_t len
)
420 const char *const start
= string
;
421 bool in_repetition
= false;
434 case '\\': /* "\\" */
447 case '{': /* "/\{" */
448 if (string
- 3 < start
|| *(string
- 3) != '/')
450 in_repetition
= true;
452 case '}': /* "\}/" */
457 in_repetition
= false;
459 case '0': /* "\ooo" */
463 if (!len
-- || !len
--)
467 if (d
< '0' || d
> '7' || e
< '0' || e
> '7')
469 c
= tomoyo_make_byte(c
, d
, e
);
470 if (tomoyo_invalid(c
))
471 continue; /* pattern is not \000 */
474 } else if (in_repetition
&& c
== '/') {
476 } else if (tomoyo_invalid(c
)) {
488 * tomoyo_correct_word - Validate a string.
490 * @string: The string to check.
492 * Check whether the given string follows the naming rules.
493 * Returns true if @string follows the naming rules, false otherwise.
495 bool tomoyo_correct_word(const char *string
)
497 return tomoyo_correct_word2(string
, strlen(string
));
501 * tomoyo_correct_path - Validate a pathname.
503 * @filename: The pathname to check.
505 * Check whether the given pathname follows the naming rules.
506 * Returns true if @filename follows the naming rules, false otherwise.
508 bool tomoyo_correct_path(const char *filename
)
510 return *filename
== '/' && tomoyo_correct_word(filename
);
514 * tomoyo_correct_domain - Check whether the given domainname follows the naming rules.
516 * @domainname: The domainname to check.
518 * Returns true if @domainname follows the naming rules, false otherwise.
520 bool tomoyo_correct_domain(const unsigned char *domainname
)
522 if (!domainname
|| !tomoyo_domain_def(domainname
))
524 domainname
= strchr(domainname
, ' ');
528 const unsigned char *cp
= strchr(domainname
, ' ');
531 if (*domainname
!= '/' ||
532 !tomoyo_correct_word2(domainname
, cp
- domainname
))
536 return tomoyo_correct_path(domainname
);
540 * tomoyo_domain_def - Check whether the given token can be a domainname.
542 * @buffer: The token to check.
544 * Returns true if @buffer possibly be a domainname, false otherwise.
546 bool tomoyo_domain_def(const unsigned char *buffer
)
548 const unsigned char *cp
;
552 cp
= strchr(buffer
, ' ');
554 len
= strlen(buffer
);
557 if (buffer
[len
- 1] != '>' ||
558 !tomoyo_correct_word2(buffer
+ 1, len
- 2))
564 * tomoyo_find_domain - Find a domain by the given name.
566 * @domainname: The domainname to find.
568 * Returns pointer to "struct tomoyo_domain_info" if found, NULL otherwise.
570 * Caller holds tomoyo_read_lock().
572 struct tomoyo_domain_info
*tomoyo_find_domain(const char *domainname
)
574 struct tomoyo_domain_info
*domain
;
575 struct tomoyo_path_info name
;
577 name
.name
= domainname
;
578 tomoyo_fill_path_info(&name
);
579 list_for_each_entry_rcu(domain
, &tomoyo_domain_list
, list
) {
580 if (!domain
->is_deleted
&&
581 !tomoyo_pathcmp(&name
, domain
->domainname
))
588 * tomoyo_const_part_length - Evaluate the initial length without a pattern in a token.
590 * @filename: The string to evaluate.
592 * Returns the initial length without a pattern in @filename.
594 static int tomoyo_const_part_length(const char *filename
)
601 while ((c
= *filename
++) != '\0') {
608 case '\\': /* "\\" */
611 case '0': /* "\ooo" */
616 if (c
< '0' || c
> '7')
619 if (c
< '0' || c
> '7')
630 * tomoyo_fill_path_info - Fill in "struct tomoyo_path_info" members.
632 * @ptr: Pointer to "struct tomoyo_path_info" to fill in.
634 * The caller sets "struct tomoyo_path_info"->name.
636 void tomoyo_fill_path_info(struct tomoyo_path_info
*ptr
)
638 const char *name
= ptr
->name
;
639 const int len
= strlen(name
);
641 ptr
->const_len
= tomoyo_const_part_length(name
);
642 ptr
->is_dir
= len
&& (name
[len
- 1] == '/');
643 ptr
->is_patterned
= (ptr
->const_len
< len
);
644 ptr
->hash
= full_name_hash(name
, len
);
648 * tomoyo_file_matches_pattern2 - Pattern matching without '/' character and "\-" pattern.
650 * @filename: The start of string to check.
651 * @filename_end: The end of string to check.
652 * @pattern: The start of pattern to compare.
653 * @pattern_end: The end of pattern to compare.
655 * Returns true if @filename matches @pattern, false otherwise.
657 static bool tomoyo_file_matches_pattern2(const char *filename
,
658 const char *filename_end
,
660 const char *pattern_end
)
662 while (filename
< filename_end
&& pattern
< pattern_end
) {
664 if (*pattern
!= '\\') {
665 if (*filename
++ != *pattern
++)
677 } else if (c
== '\\') {
678 if (filename
[1] == '\\')
680 else if (tomoyo_byte_range(filename
+ 1))
689 if (*++filename
!= '\\')
701 if (!tomoyo_alphabet_char(c
))
708 if (c
== '\\' && tomoyo_byte_range(filename
+ 1)
709 && strncmp(filename
+ 1, pattern
, 3) == 0) {
714 return false; /* Not matched. */
717 for (i
= 0; i
<= filename_end
- filename
; i
++) {
718 if (tomoyo_file_matches_pattern2(
719 filename
+ i
, filename_end
,
720 pattern
+ 1, pattern_end
))
723 if (c
== '.' && *pattern
== '@')
727 if (filename
[i
+ 1] == '\\')
729 else if (tomoyo_byte_range(filename
+ i
+ 1))
732 break; /* Bad pattern. */
734 return false; /* Not matched. */
739 while (isdigit(filename
[j
]))
741 } else if (c
== 'X') {
742 while (isxdigit(filename
[j
]))
744 } else if (c
== 'A') {
745 while (tomoyo_alphabet_char(filename
[j
]))
748 for (i
= 1; i
<= j
; i
++) {
749 if (tomoyo_file_matches_pattern2(
750 filename
+ i
, filename_end
,
751 pattern
+ 1, pattern_end
))
754 return false; /* Not matched or bad pattern. */
759 while (*pattern
== '\\' &&
760 (*(pattern
+ 1) == '*' || *(pattern
+ 1) == '@'))
762 return filename
== filename_end
&& pattern
== pattern_end
;
766 * tomoyo_file_matches_pattern - Pattern matching without '/' character.
768 * @filename: The start of string to check.
769 * @filename_end: The end of string to check.
770 * @pattern: The start of pattern to compare.
771 * @pattern_end: The end of pattern to compare.
773 * Returns true if @filename matches @pattern, false otherwise.
775 static bool tomoyo_file_matches_pattern(const char *filename
,
776 const char *filename_end
,
778 const char *pattern_end
)
780 const char *pattern_start
= pattern
;
784 while (pattern
< pattern_end
- 1) {
785 /* Split at "\-" pattern. */
786 if (*pattern
++ != '\\' || *pattern
++ != '-')
788 result
= tomoyo_file_matches_pattern2(filename
,
797 pattern_start
= pattern
;
799 result
= tomoyo_file_matches_pattern2(filename
, filename_end
,
800 pattern_start
, pattern_end
);
801 return first
? result
: !result
;
805 * tomoyo_path_matches_pattern2 - Do pathname pattern matching.
807 * @f: The start of string to check.
808 * @p: The start of pattern to compare.
810 * Returns true if @f matches @p, false otherwise.
812 static bool tomoyo_path_matches_pattern2(const char *f
, const char *p
)
814 const char *f_delimiter
;
815 const char *p_delimiter
;
818 f_delimiter
= strchr(f
, '/');
820 f_delimiter
= f
+ strlen(f
);
821 p_delimiter
= strchr(p
, '/');
823 p_delimiter
= p
+ strlen(p
);
824 if (*p
== '\\' && *(p
+ 1) == '{')
826 if (!tomoyo_file_matches_pattern(f
, f_delimiter
, p
,
836 /* Ignore trailing "\*" and "\@" in @pattern. */
838 (*(p
+ 1) == '*' || *(p
+ 1) == '@'))
843 * The "\{" pattern is permitted only after '/' character.
844 * This guarantees that below "*(p - 1)" is safe.
845 * Also, the "\}" pattern is permitted only before '/' character
846 * so that "\{" + "\}" pair will not break the "\-" operator.
848 if (*(p
- 1) != '/' || p_delimiter
<= p
+ 3 || *p_delimiter
!= '/' ||
849 *(p_delimiter
- 1) != '}' || *(p_delimiter
- 2) != '\\')
850 return false; /* Bad pattern. */
852 /* Compare current component with pattern. */
853 if (!tomoyo_file_matches_pattern(f
, f_delimiter
, p
+ 2,
856 /* Proceed to next component. */
861 /* Continue comparison. */
862 if (tomoyo_path_matches_pattern2(f
, p_delimiter
+ 1))
864 f_delimiter
= strchr(f
, '/');
865 } while (f_delimiter
);
866 return false; /* Not matched. */
870 * tomoyo_path_matches_pattern - Check whether the given filename matches the given pattern.
872 * @filename: The filename to check.
873 * @pattern: The pattern to compare.
875 * Returns true if matches, false otherwise.
877 * The following patterns are available.
879 * \ooo Octal representation of a byte.
880 * \* Zero or more repetitions of characters other than '/'.
881 * \@ Zero or more repetitions of characters other than '/' or '.'.
882 * \? 1 byte character other than '/'.
883 * \$ One or more repetitions of decimal digits.
884 * \+ 1 decimal digit.
885 * \X One or more repetitions of hexadecimal digits.
886 * \x 1 hexadecimal digit.
887 * \A One or more repetitions of alphabet characters.
888 * \a 1 alphabet character.
890 * \- Subtraction operator.
892 * /\{dir\}/ '/' + 'One or more repetitions of dir/' (e.g. /dir/ /dir/dir/
895 bool tomoyo_path_matches_pattern(const struct tomoyo_path_info
*filename
,
896 const struct tomoyo_path_info
*pattern
)
898 const char *f
= filename
->name
;
899 const char *p
= pattern
->name
;
900 const int len
= pattern
->const_len
;
902 /* If @pattern doesn't contain pattern, I can use strcmp(). */
903 if (!pattern
->is_patterned
)
904 return !tomoyo_pathcmp(filename
, pattern
);
905 /* Don't compare directory and non-directory. */
906 if (filename
->is_dir
!= pattern
->is_dir
)
908 /* Compare the initial length without patterns. */
909 if (strncmp(f
, p
, len
))
913 return tomoyo_path_matches_pattern2(f
, p
);
917 * tomoyo_get_exe - Get tomoyo_realpath() of current process.
919 * Returns the tomoyo_realpath() of current process on success, NULL otherwise.
921 * This function uses kzalloc(), so the caller must call kfree()
922 * if this function didn't return NULL.
924 const char *tomoyo_get_exe(void)
926 struct mm_struct
*mm
= current
->mm
;
927 struct vm_area_struct
*vma
;
928 const char *cp
= NULL
;
932 down_read(&mm
->mmap_sem
);
933 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
) {
934 if ((vma
->vm_flags
& VM_EXECUTABLE
) && vma
->vm_file
) {
935 cp
= tomoyo_realpath_from_path(&vma
->vm_file
->f_path
);
939 up_read(&mm
->mmap_sem
);
944 * tomoyo_get_mode - Get MAC mode.
946 * @ns: Pointer to "struct tomoyo_policy_namespace".
947 * @profile: Profile number.
948 * @index: Index number of functionality.
952 int tomoyo_get_mode(const struct tomoyo_policy_namespace
*ns
, const u8 profile
,
956 struct tomoyo_profile
*p
;
958 if (!tomoyo_policy_loaded
)
959 return TOMOYO_CONFIG_DISABLED
;
960 p
= tomoyo_profile(ns
, profile
);
961 mode
= p
->config
[index
];
962 if (mode
== TOMOYO_CONFIG_USE_DEFAULT
)
963 mode
= p
->config
[tomoyo_index2category
[index
]
964 + TOMOYO_MAX_MAC_INDEX
];
965 if (mode
== TOMOYO_CONFIG_USE_DEFAULT
)
966 mode
= p
->default_config
;
971 * tomoyo_init_request_info - Initialize "struct tomoyo_request_info" members.
973 * @r: Pointer to "struct tomoyo_request_info" to initialize.
974 * @domain: Pointer to "struct tomoyo_domain_info". NULL for tomoyo_domain().
975 * @index: Index number of functionality.
979 int tomoyo_init_request_info(struct tomoyo_request_info
*r
,
980 struct tomoyo_domain_info
*domain
, const u8 index
)
983 memset(r
, 0, sizeof(*r
));
985 domain
= tomoyo_domain();
987 profile
= domain
->profile
;
988 r
->profile
= profile
;
990 r
->mode
= tomoyo_get_mode(domain
->ns
, profile
, index
);
995 * tomoyo_domain_quota_is_ok - Check for domain's quota.
997 * @r: Pointer to "struct tomoyo_request_info".
999 * Returns true if the domain is not exceeded quota, false otherwise.
1001 * Caller holds tomoyo_read_lock().
1003 bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info
*r
)
1005 unsigned int count
= 0;
1006 struct tomoyo_domain_info
*domain
= r
->domain
;
1007 struct tomoyo_acl_info
*ptr
;
1009 if (r
->mode
!= TOMOYO_CONFIG_LEARNING
)
1013 list_for_each_entry_rcu(ptr
, &domain
->acl_info_list
, list
) {
1016 if (ptr
->is_deleted
)
1018 switch (ptr
->type
) {
1019 case TOMOYO_TYPE_PATH_ACL
:
1020 perm
= container_of(ptr
, struct tomoyo_path_acl
, head
)
1023 case TOMOYO_TYPE_PATH2_ACL
:
1024 perm
= container_of(ptr
, struct tomoyo_path2_acl
, head
)
1027 case TOMOYO_TYPE_PATH_NUMBER_ACL
:
1028 perm
= container_of(ptr
, struct tomoyo_path_number_acl
,
1031 case TOMOYO_TYPE_MKDEV_ACL
:
1032 perm
= container_of(ptr
, struct tomoyo_mkdev_acl
,
1038 for (i
= 0; i
< 16; i
++)
1039 if (perm
& (1 << i
))
1042 if (count
< tomoyo_profile(domain
->ns
, domain
->profile
)->
1043 pref
[TOMOYO_PREF_MAX_LEARNING_ENTRY
])
1045 if (!domain
->flags
[TOMOYO_DIF_QUOTA_WARNED
]) {
1046 domain
->flags
[TOMOYO_DIF_QUOTA_WARNED
] = true;
1047 /* r->granted = false; */
1048 tomoyo_write_log(r
, "%s", tomoyo_dif
[TOMOYO_DIF_QUOTA_WARNED
]);
1049 printk(KERN_WARNING
"WARNING: "
1050 "Domain '%s' has too many ACLs to hold. "
1051 "Stopped learning mode.\n", domain
->domainname
->name
);