TOMOYO: Add socket operation restriction support.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / security / tomoyo / util.c
bloba1c3d9ccebfa4572a05f3a1a3952f8d1a8af7113
1 /*
2 * security/tomoyo/util.c
4 * Copyright (C) 2005-2011 NTT DATA CORPORATION
5 */
7 #include <linux/slab.h>
8 #include "common.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,
80 /**
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".
86 * Returns nothing.
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 }
96 u16 y;
97 u8 m;
98 bool r;
99 stamp->sec = time % 60;
100 time /= 60;
101 stamp->min = time % 60;
102 time /= 60;
103 stamp->hour = time % 24;
104 time /= 24;
105 for (y = 1970; ; y++) {
106 const unsigned short days = (y & 3) ? 365 : 366;
107 if (time < days)
108 break;
109 time -= days;
111 r = (y & 3) == 0;
112 for (m = 0; m < 11 && time >= tomoyo_eom[r][m]; m++)
114 if (m)
115 time -= tomoyo_eom[r][m - 1];
116 stamp->year = y;
117 stamp->month = ++m;
118 stamp->day = ++time;
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);
134 if (cp)
135 return cp == string || *(cp - 1) == '/';
136 return false;
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, ' ');
153 if (del)
154 *del++ = '\0';
155 else
156 del = pos + strlen(pos);
157 param->data = del;
158 return 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
170 * on success.
172 u8 tomoyo_parse_ulong(unsigned long *result, char **str)
174 const char *cp = *str;
175 char *ep;
176 int base = 10;
177 if (*cp == '0') {
178 char c = *(cp + 1);
179 if (c == 'x' || c == 'X') {
180 base = 16;
181 cp += 2;
182 } else if (c >= '0' && c <= '7') {
183 base = 8;
184 cp++;
187 *result = simple_strtoul(cp, &ep, base);
188 if (cp == ep)
189 return TOMOYO_VALUE_TYPE_INVALID;
190 *str = ep;
191 switch (base) {
192 case 16:
193 return TOMOYO_VALUE_TYPE_HEXADECIMAL;
194 case 8:
195 return TOMOYO_VALUE_TYPE_OCTAL;
196 default:
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.
209 * Returns nothing.
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);
220 else
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)
235 char *filename;
236 if (param->data[0] == '@') {
237 param->data++;
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))
243 return false;
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)
259 char *data;
260 u8 type;
261 unsigned long v;
262 memset(ptr, 0, sizeof(*ptr));
263 if (param->data[0] == '@') {
264 param->data++;
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)
271 return false;
272 ptr->values[0] = v;
273 ptr->value_type[0] = type;
274 if (!*data) {
275 ptr->values[1] = v;
276 ptr->value_type[1] = type;
277 return true;
279 if (*data++ != '-')
280 return false;
281 type = tomoyo_parse_ulong(&v, &data);
282 if (type == TOMOYO_VALUE_TYPE_INVALID || *data || ptr->values[0] > v)
283 return false;
284 ptr->values[1] = v;
285 ptr->value_type[1] = type;
286 return true;
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);
370 char *tmp = *src;
372 if (strncmp(tmp, find, len))
373 return false;
374 tmp += len;
375 *src = tmp;
376 return true;
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.
387 * Returns nothing.
389 void tomoyo_normalize_line(unsigned char *buffer)
391 unsigned char *sp = buffer;
392 unsigned char *dp = buffer;
393 bool first = true;
395 while (tomoyo_invalid(*sp))
396 sp++;
397 while (*sp) {
398 if (!first)
399 *dp++ = ' ';
400 first = false;
401 while (tomoyo_valid(*sp))
402 *dp++ = *sp++;
403 while (tomoyo_invalid(*sp))
404 sp++;
406 *dp = '\0';
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;
422 unsigned char c;
423 unsigned char d;
424 unsigned char e;
425 if (!len)
426 goto out;
427 while (len--) {
428 c = *string++;
429 if (c == '\\') {
430 if (!len--)
431 goto out;
432 c = *string++;
433 switch (c) {
434 case '\\': /* "\\" */
435 continue;
436 case '$': /* "\$" */
437 case '+': /* "\+" */
438 case '?': /* "\?" */
439 case '*': /* "\*" */
440 case '@': /* "\@" */
441 case 'x': /* "\x" */
442 case 'X': /* "\X" */
443 case 'a': /* "\a" */
444 case 'A': /* "\A" */
445 case '-': /* "\-" */
446 continue;
447 case '{': /* "/\{" */
448 if (string - 3 < start || *(string - 3) != '/')
449 break;
450 in_repetition = true;
451 continue;
452 case '}': /* "\}/" */
453 if (*string != '/')
454 break;
455 if (!in_repetition)
456 break;
457 in_repetition = false;
458 continue;
459 case '0': /* "\ooo" */
460 case '1':
461 case '2':
462 case '3':
463 if (!len-- || !len--)
464 break;
465 d = *string++;
466 e = *string++;
467 if (d < '0' || d > '7' || e < '0' || e > '7')
468 break;
469 c = tomoyo_make_byte(c, d, e);
470 if (tomoyo_invalid(c))
471 continue; /* pattern is not \000 */
473 goto out;
474 } else if (in_repetition && c == '/') {
475 goto out;
476 } else if (tomoyo_invalid(c)) {
477 goto out;
480 if (in_repetition)
481 goto out;
482 return true;
483 out:
484 return false;
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))
523 return false;
524 domainname = strchr(domainname, ' ');
525 if (!domainname++)
526 return true;
527 while (1) {
528 const unsigned char *cp = strchr(domainname, ' ');
529 if (!cp)
530 break;
531 if (*domainname != '/' ||
532 !tomoyo_correct_word2(domainname, cp - domainname))
533 return false;
534 domainname = cp + 1;
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;
549 int len;
550 if (*buffer != '<')
551 return false;
552 cp = strchr(buffer, ' ');
553 if (!cp)
554 len = strlen(buffer);
555 else
556 len = cp - buffer;
557 if (buffer[len - 1] != '>' ||
558 !tomoyo_correct_word2(buffer + 1, len - 2))
559 return false;
560 return true;
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))
582 return domain;
584 return NULL;
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)
596 char c;
597 int len = 0;
599 if (!filename)
600 return 0;
601 while ((c = *filename++) != '\0') {
602 if (c != '\\') {
603 len++;
604 continue;
606 c = *filename++;
607 switch (c) {
608 case '\\': /* "\\" */
609 len += 2;
610 continue;
611 case '0': /* "\ooo" */
612 case '1':
613 case '2':
614 case '3':
615 c = *filename++;
616 if (c < '0' || c > '7')
617 break;
618 c = *filename++;
619 if (c < '0' || c > '7')
620 break;
621 len += 4;
622 continue;
624 break;
626 return len;
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,
659 const char *pattern,
660 const char *pattern_end)
662 while (filename < filename_end && pattern < pattern_end) {
663 char c;
664 if (*pattern != '\\') {
665 if (*filename++ != *pattern++)
666 return false;
667 continue;
669 c = *filename;
670 pattern++;
671 switch (*pattern) {
672 int i;
673 int j;
674 case '?':
675 if (c == '/') {
676 return false;
677 } else if (c == '\\') {
678 if (filename[1] == '\\')
679 filename++;
680 else if (tomoyo_byte_range(filename + 1))
681 filename += 3;
682 else
683 return false;
685 break;
686 case '\\':
687 if (c != '\\')
688 return false;
689 if (*++filename != '\\')
690 return false;
691 break;
692 case '+':
693 if (!isdigit(c))
694 return false;
695 break;
696 case 'x':
697 if (!isxdigit(c))
698 return false;
699 break;
700 case 'a':
701 if (!tomoyo_alphabet_char(c))
702 return false;
703 break;
704 case '0':
705 case '1':
706 case '2':
707 case '3':
708 if (c == '\\' && tomoyo_byte_range(filename + 1)
709 && strncmp(filename + 1, pattern, 3) == 0) {
710 filename += 3;
711 pattern += 2;
712 break;
714 return false; /* Not matched. */
715 case '*':
716 case '@':
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))
721 return true;
722 c = filename[i];
723 if (c == '.' && *pattern == '@')
724 break;
725 if (c != '\\')
726 continue;
727 if (filename[i + 1] == '\\')
728 i++;
729 else if (tomoyo_byte_range(filename + i + 1))
730 i += 3;
731 else
732 break; /* Bad pattern. */
734 return false; /* Not matched. */
735 default:
736 j = 0;
737 c = *pattern;
738 if (c == '$') {
739 while (isdigit(filename[j]))
740 j++;
741 } else if (c == 'X') {
742 while (isxdigit(filename[j]))
743 j++;
744 } else if (c == 'A') {
745 while (tomoyo_alphabet_char(filename[j]))
746 j++;
748 for (i = 1; i <= j; i++) {
749 if (tomoyo_file_matches_pattern2(
750 filename + i, filename_end,
751 pattern + 1, pattern_end))
752 return true;
754 return false; /* Not matched or bad pattern. */
756 filename++;
757 pattern++;
759 while (*pattern == '\\' &&
760 (*(pattern + 1) == '*' || *(pattern + 1) == '@'))
761 pattern += 2;
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,
777 const char *pattern,
778 const char *pattern_end)
780 const char *pattern_start = pattern;
781 bool first = true;
782 bool result;
784 while (pattern < pattern_end - 1) {
785 /* Split at "\-" pattern. */
786 if (*pattern++ != '\\' || *pattern++ != '-')
787 continue;
788 result = tomoyo_file_matches_pattern2(filename,
789 filename_end,
790 pattern_start,
791 pattern - 2);
792 if (first)
793 result = !result;
794 if (result)
795 return false;
796 first = false;
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;
817 while (*f && *p) {
818 f_delimiter = strchr(f, '/');
819 if (!f_delimiter)
820 f_delimiter = f + strlen(f);
821 p_delimiter = strchr(p, '/');
822 if (!p_delimiter)
823 p_delimiter = p + strlen(p);
824 if (*p == '\\' && *(p + 1) == '{')
825 goto recursive;
826 if (!tomoyo_file_matches_pattern(f, f_delimiter, p,
827 p_delimiter))
828 return false;
829 f = f_delimiter;
830 if (*f)
831 f++;
832 p = p_delimiter;
833 if (*p)
834 p++;
836 /* Ignore trailing "\*" and "\@" in @pattern. */
837 while (*p == '\\' &&
838 (*(p + 1) == '*' || *(p + 1) == '@'))
839 p += 2;
840 return !*f && !*p;
841 recursive:
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. */
851 do {
852 /* Compare current component with pattern. */
853 if (!tomoyo_file_matches_pattern(f, f_delimiter, p + 2,
854 p_delimiter - 2))
855 break;
856 /* Proceed to next component. */
857 f = f_delimiter;
858 if (!*f)
859 break;
860 f++;
861 /* Continue comparison. */
862 if (tomoyo_path_matches_pattern2(f, p_delimiter + 1))
863 return true;
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.
878 * \\ \ itself.
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/
893 * /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)
907 return false;
908 /* Compare the initial length without patterns. */
909 if (strncmp(f, p, len))
910 return false;
911 f += len;
912 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;
930 if (!mm)
931 return 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);
936 break;
939 up_read(&mm->mmap_sem);
940 return cp;
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.
950 * Returns mode.
952 int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
953 const u8 index)
955 u8 mode;
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;
967 return mode & 3;
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.
977 * Returns mode.
979 int tomoyo_init_request_info(struct tomoyo_request_info *r,
980 struct tomoyo_domain_info *domain, const u8 index)
982 u8 profile;
983 memset(r, 0, sizeof(*r));
984 if (!domain)
985 domain = tomoyo_domain();
986 r->domain = domain;
987 profile = domain->profile;
988 r->profile = profile;
989 r->type = index;
990 r->mode = tomoyo_get_mode(domain->ns, profile, index);
991 return r->mode;
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)
1010 return false;
1011 if (!domain)
1012 return true;
1013 list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
1014 u16 perm;
1015 u8 i;
1016 if (ptr->is_deleted)
1017 continue;
1018 switch (ptr->type) {
1019 case TOMOYO_TYPE_PATH_ACL:
1020 perm = container_of(ptr, struct tomoyo_path_acl, head)
1021 ->perm;
1022 break;
1023 case TOMOYO_TYPE_PATH2_ACL:
1024 perm = container_of(ptr, struct tomoyo_path2_acl, head)
1025 ->perm;
1026 break;
1027 case TOMOYO_TYPE_PATH_NUMBER_ACL:
1028 perm = container_of(ptr, struct tomoyo_path_number_acl,
1029 head)->perm;
1030 break;
1031 case TOMOYO_TYPE_MKDEV_ACL:
1032 perm = container_of(ptr, struct tomoyo_mkdev_acl,
1033 head)->perm;
1034 break;
1035 default:
1036 perm = 1;
1038 for (i = 0; i < 16; i++)
1039 if (perm & (1 << i))
1040 count++;
1042 if (count < tomoyo_profile(domain->ns, domain->profile)->
1043 pref[TOMOYO_PREF_MAX_LEARNING_ENTRY])
1044 return true;
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);
1053 return false;