bc71528ff440e58ced9a9107b5e93e94c68a0567
[platform/adaptation/renesas_rcar/renesas_kernel.git] / security / tomoyo / util.c
1 /*
2  * security/tomoyo/util.c
3  *
4  * Utility functions for TOMOYO.
5  *
6  * Copyright (C) 2005-2010  NTT DATA CORPORATION
7  */
8
9 #include <linux/slab.h>
10 #include "common.h"
11
12 /* Lock for protecting policy. */
13 DEFINE_MUTEX(tomoyo_policy_lock);
14
15 /* Has /sbin/init started? */
16 bool tomoyo_policy_loaded;
17
18 /**
19  * tomoyo_permstr - Find permission keywords.
20  *
21  * @string: String representation for permissions in foo/bar/buz format.
22  * @keyword: Keyword to find from @string/
23  *
24  * Returns ture if @keyword was found in @string, false otherwise.
25  *
26  * This function assumes that strncmp(w1, w2, strlen(w1)) != 0 if w1 != w2.
27  */
28 bool tomoyo_permstr(const char *string, const char *keyword)
29 {
30         const char *cp = strstr(string, keyword);
31         if (cp)
32                 return cp == string || *(cp - 1) == '/';
33         return false;
34 }
35
36 /**
37  * tomoyo_read_token - Read a word from a line.
38  *
39  * @param: Pointer to "struct tomoyo_acl_param".
40  *
41  * Returns a word on success, "" otherwise.
42  *
43  * To allow the caller to skip NULL check, this function returns "" rather than
44  * NULL if there is no more words to read.
45  */
46 char *tomoyo_read_token(struct tomoyo_acl_param *param)
47 {
48         char *pos = param->data;
49         char *del = strchr(pos, ' ');
50         if (del)
51                 *del++ = '\0';
52         else
53                 del = pos + strlen(pos);
54         param->data = del;
55         return pos;
56 }
57
58 /**
59  * tomoyo_parse_ulong - Parse an "unsigned long" value.
60  *
61  * @result: Pointer to "unsigned long".
62  * @str:    Pointer to string to parse.
63  *
64  * Returns one of values in "enum tomoyo_value_type".
65  *
66  * The @src is updated to point the first character after the value
67  * on success.
68  */
69 static u8 tomoyo_parse_ulong(unsigned long *result, char **str)
70 {
71         const char *cp = *str;
72         char *ep;
73         int base = 10;
74         if (*cp == '0') {
75                 char c = *(cp + 1);
76                 if (c == 'x' || c == 'X') {
77                         base = 16;
78                         cp += 2;
79                 } else if (c >= '0' && c <= '7') {
80                         base = 8;
81                         cp++;
82                 }
83         }
84         *result = simple_strtoul(cp, &ep, base);
85         if (cp == ep)
86                 return TOMOYO_VALUE_TYPE_INVALID;
87         *str = ep;
88         switch (base) {
89         case 16:
90                 return TOMOYO_VALUE_TYPE_HEXADECIMAL;
91         case 8:
92                 return TOMOYO_VALUE_TYPE_OCTAL;
93         default:
94                 return TOMOYO_VALUE_TYPE_DECIMAL;
95         }
96 }
97
98 /**
99  * tomoyo_print_ulong - Print an "unsigned long" value.
100  *
101  * @buffer:     Pointer to buffer.
102  * @buffer_len: Size of @buffer.
103  * @value:      An "unsigned long" value.
104  * @type:       Type of @value.
105  *
106  * Returns nothing.
107  */
108 void tomoyo_print_ulong(char *buffer, const int buffer_len,
109                         const unsigned long value, const u8 type)
110 {
111         if (type == TOMOYO_VALUE_TYPE_DECIMAL)
112                 snprintf(buffer, buffer_len, "%lu", value);
113         else if (type == TOMOYO_VALUE_TYPE_OCTAL)
114                 snprintf(buffer, buffer_len, "0%lo", value);
115         else if (type == TOMOYO_VALUE_TYPE_HEXADECIMAL)
116                 snprintf(buffer, buffer_len, "0x%lX", value);
117         else
118                 snprintf(buffer, buffer_len, "type(%u)", type);
119 }
120
121 /**
122  * tomoyo_parse_name_union - Parse a tomoyo_name_union.
123  *
124  * @param: Pointer to "struct tomoyo_acl_param".
125  * @ptr:   Pointer to "struct tomoyo_name_union".
126  *
127  * Returns true on success, false otherwise.
128  */
129 bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
130                              struct tomoyo_name_union *ptr)
131 {
132         char *filename;
133         if (param->data[0] == '@') {
134                 param->data++;
135                 ptr->group = tomoyo_get_group(param, TOMOYO_PATH_GROUP);
136                 return ptr->group != NULL;
137         }
138         filename = tomoyo_read_token(param);
139         if (!tomoyo_correct_word(filename))
140                 return false;
141         ptr->filename = tomoyo_get_name(filename);
142         return ptr->filename != NULL;
143 }
144
145 /**
146  * tomoyo_parse_number_union - Parse a tomoyo_number_union.
147  *
148  * @param: Pointer to "struct tomoyo_acl_param".
149  * @ptr:   Pointer to "struct tomoyo_number_union".
150  *
151  * Returns true on success, false otherwise.
152  */
153 bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
154                                struct tomoyo_number_union *ptr)
155 {
156         char *data;
157         u8 type;
158         unsigned long v;
159         memset(ptr, 0, sizeof(*ptr));
160         if (param->data[0] == '@') {
161                 param->data++;
162                 ptr->group = tomoyo_get_group(param, TOMOYO_NUMBER_GROUP);
163                 return ptr->group != NULL;
164         }
165         data = tomoyo_read_token(param);
166         type = tomoyo_parse_ulong(&v, &data);
167         if (type == TOMOYO_VALUE_TYPE_INVALID)
168                 return false;
169         ptr->values[0] = v;
170         ptr->value_type[0] = type;
171         if (!*data) {
172                 ptr->values[1] = v;
173                 ptr->value_type[1] = type;
174                 return true;
175         }
176         if (*data++ != '-')
177                 return false;
178         type = tomoyo_parse_ulong(&v, &data);
179         if (type == TOMOYO_VALUE_TYPE_INVALID || *data || ptr->values[0] > v)
180                 return false;
181         ptr->values[1] = v;
182         ptr->value_type[1] = type;
183         return true;
184 }
185
186 /**
187  * tomoyo_byte_range - Check whether the string is a \ooo style octal value.
188  *
189  * @str: Pointer to the string.
190  *
191  * Returns true if @str is a \ooo style octal value, false otherwise.
192  *
193  * TOMOYO uses \ooo style representation for 0x01 - 0x20 and 0x7F - 0xFF.
194  * This function verifies that \ooo is in valid range.
195  */
196 static inline bool tomoyo_byte_range(const char *str)
197 {
198         return *str >= '0' && *str++ <= '3' &&
199                 *str >= '0' && *str++ <= '7' &&
200                 *str >= '0' && *str <= '7';
201 }
202
203 /**
204  * tomoyo_alphabet_char - Check whether the character is an alphabet.
205  *
206  * @c: The character to check.
207  *
208  * Returns true if @c is an alphabet character, false otherwise.
209  */
210 static inline bool tomoyo_alphabet_char(const char c)
211 {
212         return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
213 }
214
215 /**
216  * tomoyo_make_byte - Make byte value from three octal characters.
217  *
218  * @c1: The first character.
219  * @c2: The second character.
220  * @c3: The third character.
221  *
222  * Returns byte value.
223  */
224 static inline u8 tomoyo_make_byte(const u8 c1, const u8 c2, const u8 c3)
225 {
226         return ((c1 - '0') << 6) + ((c2 - '0') << 3) + (c3 - '0');
227 }
228
229 /**
230  * tomoyo_valid - Check whether the character is a valid char.
231  *
232  * @c: The character to check.
233  *
234  * Returns true if @c is a valid character, false otherwise.
235  */
236 static inline bool tomoyo_valid(const unsigned char c)
237 {
238         return c > ' ' && c < 127;
239 }
240
241 /**
242  * tomoyo_invalid - Check whether the character is an invalid char.
243  *
244  * @c: The character to check.
245  *
246  * Returns true if @c is an invalid character, false otherwise.
247  */
248 static inline bool tomoyo_invalid(const unsigned char c)
249 {
250         return c && (c <= ' ' || c >= 127);
251 }
252
253 /**
254  * tomoyo_str_starts - Check whether the given string starts with the given keyword.
255  *
256  * @src:  Pointer to pointer to the string.
257  * @find: Pointer to the keyword.
258  *
259  * Returns true if @src starts with @find, false otherwise.
260  *
261  * The @src is updated to point the first character after the @find
262  * if @src starts with @find.
263  */
264 bool tomoyo_str_starts(char **src, const char *find)
265 {
266         const int len = strlen(find);
267         char *tmp = *src;
268
269         if (strncmp(tmp, find, len))
270                 return false;
271         tmp += len;
272         *src = tmp;
273         return true;
274 }
275
276 /**
277  * tomoyo_normalize_line - Format string.
278  *
279  * @buffer: The line to normalize.
280  *
281  * Leading and trailing whitespaces are removed.
282  * Multiple whitespaces are packed into single space.
283  *
284  * Returns nothing.
285  */
286 void tomoyo_normalize_line(unsigned char *buffer)
287 {
288         unsigned char *sp = buffer;
289         unsigned char *dp = buffer;
290         bool first = true;
291
292         while (tomoyo_invalid(*sp))
293                 sp++;
294         while (*sp) {
295                 if (!first)
296                         *dp++ = ' ';
297                 first = false;
298                 while (tomoyo_valid(*sp))
299                         *dp++ = *sp++;
300                 while (tomoyo_invalid(*sp))
301                         sp++;
302         }
303         *dp = '\0';
304 }
305
306 /**
307  * tomoyo_correct_word2 - Validate a string.
308  *
309  * @string: The string to check. May be non-'\0'-terminated.
310  * @len:    Length of @string.
311  *
312  * Check whether the given string follows the naming rules.
313  * Returns true if @string follows the naming rules, false otherwise.
314  */
315 static bool tomoyo_correct_word2(const char *string, size_t len)
316 {
317         const char *const start = string;
318         bool in_repetition = false;
319         unsigned char c;
320         unsigned char d;
321         unsigned char e;
322         if (!len)
323                 goto out;
324         while (len--) {
325                 c = *string++;
326                 if (c == '\\') {
327                         if (!len--)
328                                 goto out;
329                         c = *string++;
330                         switch (c) {
331                         case '\\':  /* "\\" */
332                                 continue;
333                         case '$':   /* "\$" */
334                         case '+':   /* "\+" */
335                         case '?':   /* "\?" */
336                         case '*':   /* "\*" */
337                         case '@':   /* "\@" */
338                         case 'x':   /* "\x" */
339                         case 'X':   /* "\X" */
340                         case 'a':   /* "\a" */
341                         case 'A':   /* "\A" */
342                         case '-':   /* "\-" */
343                                 continue;
344                         case '{':   /* "/\{" */
345                                 if (string - 3 < start || *(string - 3) != '/')
346                                         break;
347                                 in_repetition = true;
348                                 continue;
349                         case '}':   /* "\}/" */
350                                 if (*string != '/')
351                                         break;
352                                 if (!in_repetition)
353                                         break;
354                                 in_repetition = false;
355                                 continue;
356                         case '0':   /* "\ooo" */
357                         case '1':
358                         case '2':
359                         case '3':
360                                 if (!len-- || !len--)
361                                         break;
362                                 d = *string++;
363                                 e = *string++;
364                                 if (d < '0' || d > '7' || e < '0' || e > '7')
365                                         break;
366                                 c = tomoyo_make_byte(c, d, e);
367                                 if (tomoyo_invalid(c))
368                                         continue; /* pattern is not \000 */
369                         }
370                         goto out;
371                 } else if (in_repetition && c == '/') {
372                         goto out;
373                 } else if (tomoyo_invalid(c)) {
374                         goto out;
375                 }
376         }
377         if (in_repetition)
378                 goto out;
379         return true;
380  out:
381         return false;
382 }
383
384 /**
385  * tomoyo_correct_word - Validate a string.
386  *
387  * @string: The string to check.
388  *
389  * Check whether the given string follows the naming rules.
390  * Returns true if @string follows the naming rules, false otherwise.
391  */
392 bool tomoyo_correct_word(const char *string)
393 {
394         return tomoyo_correct_word2(string, strlen(string));
395 }
396
397 /**
398  * tomoyo_correct_path - Validate a pathname.
399  *
400  * @filename: The pathname to check.
401  *
402  * Check whether the given pathname follows the naming rules.
403  * Returns true if @filename follows the naming rules, false otherwise.
404  */
405 bool tomoyo_correct_path(const char *filename)
406 {
407         return *filename == '/' && tomoyo_correct_word(filename);
408 }
409
410 /**
411  * tomoyo_correct_domain - Check whether the given domainname follows the naming rules.
412  *
413  * @domainname: The domainname to check.
414  *
415  * Returns true if @domainname follows the naming rules, false otherwise.
416  */
417 bool tomoyo_correct_domain(const unsigned char *domainname)
418 {
419         if (!domainname || strncmp(domainname, TOMOYO_ROOT_NAME,
420                                    TOMOYO_ROOT_NAME_LEN))
421                 goto out;
422         domainname += TOMOYO_ROOT_NAME_LEN;
423         if (!*domainname)
424                 return true;
425         if (*domainname++ != ' ')
426                 goto out;
427         while (1) {
428                 const unsigned char *cp = strchr(domainname, ' ');
429                 if (!cp)
430                         break;
431                 if (*domainname != '/' ||
432                     !tomoyo_correct_word2(domainname, cp - domainname))
433                         goto out;
434                 domainname = cp + 1;
435         }
436         return tomoyo_correct_path(domainname);
437  out:
438         return false;
439 }
440
441 /**
442  * tomoyo_domain_def - Check whether the given token can be a domainname.
443  *
444  * @buffer: The token to check.
445  *
446  * Returns true if @buffer possibly be a domainname, false otherwise.
447  */
448 bool tomoyo_domain_def(const unsigned char *buffer)
449 {
450         return !strncmp(buffer, TOMOYO_ROOT_NAME, TOMOYO_ROOT_NAME_LEN);
451 }
452
453 /**
454  * tomoyo_find_domain - Find a domain by the given name.
455  *
456  * @domainname: The domainname to find.
457  *
458  * Returns pointer to "struct tomoyo_domain_info" if found, NULL otherwise.
459  *
460  * Caller holds tomoyo_read_lock().
461  */
462 struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname)
463 {
464         struct tomoyo_domain_info *domain;
465         struct tomoyo_path_info name;
466
467         name.name = domainname;
468         tomoyo_fill_path_info(&name);
469         list_for_each_entry_rcu(domain, &tomoyo_domain_list, list) {
470                 if (!domain->is_deleted &&
471                     !tomoyo_pathcmp(&name, domain->domainname))
472                         return domain;
473         }
474         return NULL;
475 }
476
477 /**
478  * tomoyo_const_part_length - Evaluate the initial length without a pattern in a token.
479  *
480  * @filename: The string to evaluate.
481  *
482  * Returns the initial length without a pattern in @filename.
483  */
484 static int tomoyo_const_part_length(const char *filename)
485 {
486         char c;
487         int len = 0;
488
489         if (!filename)
490                 return 0;
491         while ((c = *filename++) != '\0') {
492                 if (c != '\\') {
493                         len++;
494                         continue;
495                 }
496                 c = *filename++;
497                 switch (c) {
498                 case '\\':  /* "\\" */
499                         len += 2;
500                         continue;
501                 case '0':   /* "\ooo" */
502                 case '1':
503                 case '2':
504                 case '3':
505                         c = *filename++;
506                         if (c < '0' || c > '7')
507                                 break;
508                         c = *filename++;
509                         if (c < '0' || c > '7')
510                                 break;
511                         len += 4;
512                         continue;
513                 }
514                 break;
515         }
516         return len;
517 }
518
519 /**
520  * tomoyo_fill_path_info - Fill in "struct tomoyo_path_info" members.
521  *
522  * @ptr: Pointer to "struct tomoyo_path_info" to fill in.
523  *
524  * The caller sets "struct tomoyo_path_info"->name.
525  */
526 void tomoyo_fill_path_info(struct tomoyo_path_info *ptr)
527 {
528         const char *name = ptr->name;
529         const int len = strlen(name);
530
531         ptr->const_len = tomoyo_const_part_length(name);
532         ptr->is_dir = len && (name[len - 1] == '/');
533         ptr->is_patterned = (ptr->const_len < len);
534         ptr->hash = full_name_hash(name, len);
535 }
536
537 /**
538  * tomoyo_file_matches_pattern2 - Pattern matching without '/' character and "\-" pattern.
539  *
540  * @filename:     The start of string to check.
541  * @filename_end: The end of string to check.
542  * @pattern:      The start of pattern to compare.
543  * @pattern_end:  The end of pattern to compare.
544  *
545  * Returns true if @filename matches @pattern, false otherwise.
546  */
547 static bool tomoyo_file_matches_pattern2(const char *filename,
548                                          const char *filename_end,
549                                          const char *pattern,
550                                          const char *pattern_end)
551 {
552         while (filename < filename_end && pattern < pattern_end) {
553                 char c;
554                 if (*pattern != '\\') {
555                         if (*filename++ != *pattern++)
556                                 return false;
557                         continue;
558                 }
559                 c = *filename;
560                 pattern++;
561                 switch (*pattern) {
562                         int i;
563                         int j;
564                 case '?':
565                         if (c == '/') {
566                                 return false;
567                         } else if (c == '\\') {
568                                 if (filename[1] == '\\')
569                                         filename++;
570                                 else if (tomoyo_byte_range(filename + 1))
571                                         filename += 3;
572                                 else
573                                         return false;
574                         }
575                         break;
576                 case '\\':
577                         if (c != '\\')
578                                 return false;
579                         if (*++filename != '\\')
580                                 return false;
581                         break;
582                 case '+':
583                         if (!isdigit(c))
584                                 return false;
585                         break;
586                 case 'x':
587                         if (!isxdigit(c))
588                                 return false;
589                         break;
590                 case 'a':
591                         if (!tomoyo_alphabet_char(c))
592                                 return false;
593                         break;
594                 case '0':
595                 case '1':
596                 case '2':
597                 case '3':
598                         if (c == '\\' && tomoyo_byte_range(filename + 1)
599                             && strncmp(filename + 1, pattern, 3) == 0) {
600                                 filename += 3;
601                                 pattern += 2;
602                                 break;
603                         }
604                         return false; /* Not matched. */
605                 case '*':
606                 case '@':
607                         for (i = 0; i <= filename_end - filename; i++) {
608                                 if (tomoyo_file_matches_pattern2(
609                                                     filename + i, filename_end,
610                                                     pattern + 1, pattern_end))
611                                         return true;
612                                 c = filename[i];
613                                 if (c == '.' && *pattern == '@')
614                                         break;
615                                 if (c != '\\')
616                                         continue;
617                                 if (filename[i + 1] == '\\')
618                                         i++;
619                                 else if (tomoyo_byte_range(filename + i + 1))
620                                         i += 3;
621                                 else
622                                         break; /* Bad pattern. */
623                         }
624                         return false; /* Not matched. */
625                 default:
626                         j = 0;
627                         c = *pattern;
628                         if (c == '$') {
629                                 while (isdigit(filename[j]))
630                                         j++;
631                         } else if (c == 'X') {
632                                 while (isxdigit(filename[j]))
633                                         j++;
634                         } else if (c == 'A') {
635                                 while (tomoyo_alphabet_char(filename[j]))
636                                         j++;
637                         }
638                         for (i = 1; i <= j; i++) {
639                                 if (tomoyo_file_matches_pattern2(
640                                                     filename + i, filename_end,
641                                                     pattern + 1, pattern_end))
642                                         return true;
643                         }
644                         return false; /* Not matched or bad pattern. */
645                 }
646                 filename++;
647                 pattern++;
648         }
649         while (*pattern == '\\' &&
650                (*(pattern + 1) == '*' || *(pattern + 1) == '@'))
651                 pattern += 2;
652         return filename == filename_end && pattern == pattern_end;
653 }
654
655 /**
656  * tomoyo_file_matches_pattern - Pattern matching without '/' character.
657  *
658  * @filename:     The start of string to check.
659  * @filename_end: The end of string to check.
660  * @pattern:      The start of pattern to compare.
661  * @pattern_end:  The end of pattern to compare.
662  *
663  * Returns true if @filename matches @pattern, false otherwise.
664  */
665 static bool tomoyo_file_matches_pattern(const char *filename,
666                                         const char *filename_end,
667                                         const char *pattern,
668                                         const char *pattern_end)
669 {
670         const char *pattern_start = pattern;
671         bool first = true;
672         bool result;
673
674         while (pattern < pattern_end - 1) {
675                 /* Split at "\-" pattern. */
676                 if (*pattern++ != '\\' || *pattern++ != '-')
677                         continue;
678                 result = tomoyo_file_matches_pattern2(filename,
679                                                       filename_end,
680                                                       pattern_start,
681                                                       pattern - 2);
682                 if (first)
683                         result = !result;
684                 if (result)
685                         return false;
686                 first = false;
687                 pattern_start = pattern;
688         }
689         result = tomoyo_file_matches_pattern2(filename, filename_end,
690                                               pattern_start, pattern_end);
691         return first ? result : !result;
692 }
693
694 /**
695  * tomoyo_path_matches_pattern2 - Do pathname pattern matching.
696  *
697  * @f: The start of string to check.
698  * @p: The start of pattern to compare.
699  *
700  * Returns true if @f matches @p, false otherwise.
701  */
702 static bool tomoyo_path_matches_pattern2(const char *f, const char *p)
703 {
704         const char *f_delimiter;
705         const char *p_delimiter;
706
707         while (*f && *p) {
708                 f_delimiter = strchr(f, '/');
709                 if (!f_delimiter)
710                         f_delimiter = f + strlen(f);
711                 p_delimiter = strchr(p, '/');
712                 if (!p_delimiter)
713                         p_delimiter = p + strlen(p);
714                 if (*p == '\\' && *(p + 1) == '{')
715                         goto recursive;
716                 if (!tomoyo_file_matches_pattern(f, f_delimiter, p,
717                                                  p_delimiter))
718                         return false;
719                 f = f_delimiter;
720                 if (*f)
721                         f++;
722                 p = p_delimiter;
723                 if (*p)
724                         p++;
725         }
726         /* Ignore trailing "\*" and "\@" in @pattern. */
727         while (*p == '\\' &&
728                (*(p + 1) == '*' || *(p + 1) == '@'))
729                 p += 2;
730         return !*f && !*p;
731  recursive:
732         /*
733          * The "\{" pattern is permitted only after '/' character.
734          * This guarantees that below "*(p - 1)" is safe.
735          * Also, the "\}" pattern is permitted only before '/' character
736          * so that "\{" + "\}" pair will not break the "\-" operator.
737          */
738         if (*(p - 1) != '/' || p_delimiter <= p + 3 || *p_delimiter != '/' ||
739             *(p_delimiter - 1) != '}' || *(p_delimiter - 2) != '\\')
740                 return false; /* Bad pattern. */
741         do {
742                 /* Compare current component with pattern. */
743                 if (!tomoyo_file_matches_pattern(f, f_delimiter, p + 2,
744                                                  p_delimiter - 2))
745                         break;
746                 /* Proceed to next component. */
747                 f = f_delimiter;
748                 if (!*f)
749                         break;
750                 f++;
751                 /* Continue comparison. */
752                 if (tomoyo_path_matches_pattern2(f, p_delimiter + 1))
753                         return true;
754                 f_delimiter = strchr(f, '/');
755         } while (f_delimiter);
756         return false; /* Not matched. */
757 }
758
759 /**
760  * tomoyo_path_matches_pattern - Check whether the given filename matches the given pattern.
761  *
762  * @filename: The filename to check.
763  * @pattern:  The pattern to compare.
764  *
765  * Returns true if matches, false otherwise.
766  *
767  * The following patterns are available.
768  *   \\     \ itself.
769  *   \ooo   Octal representation of a byte.
770  *   \*     Zero or more repetitions of characters other than '/'.
771  *   \@     Zero or more repetitions of characters other than '/' or '.'.
772  *   \?     1 byte character other than '/'.
773  *   \$     One or more repetitions of decimal digits.
774  *   \+     1 decimal digit.
775  *   \X     One or more repetitions of hexadecimal digits.
776  *   \x     1 hexadecimal digit.
777  *   \A     One or more repetitions of alphabet characters.
778  *   \a     1 alphabet character.
779  *
780  *   \-     Subtraction operator.
781  *
782  *   /\{dir\}/   '/' + 'One or more repetitions of dir/' (e.g. /dir/ /dir/dir/
783  *               /dir/dir/dir/ ).
784  */
785 bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
786                                  const struct tomoyo_path_info *pattern)
787 {
788         const char *f = filename->name;
789         const char *p = pattern->name;
790         const int len = pattern->const_len;
791
792         /* If @pattern doesn't contain pattern, I can use strcmp(). */
793         if (!pattern->is_patterned)
794                 return !tomoyo_pathcmp(filename, pattern);
795         /* Don't compare directory and non-directory. */
796         if (filename->is_dir != pattern->is_dir)
797                 return false;
798         /* Compare the initial length without patterns. */
799         if (strncmp(f, p, len))
800                 return false;
801         f += len;
802         p += len;
803         return tomoyo_path_matches_pattern2(f, p);
804 }
805
806 /**
807  * tomoyo_get_exe - Get tomoyo_realpath() of current process.
808  *
809  * Returns the tomoyo_realpath() of current process on success, NULL otherwise.
810  *
811  * This function uses kzalloc(), so the caller must call kfree()
812  * if this function didn't return NULL.
813  */
814 const char *tomoyo_get_exe(void)
815 {
816         struct mm_struct *mm = current->mm;
817         struct vm_area_struct *vma;
818         const char *cp = NULL;
819
820         if (!mm)
821                 return NULL;
822         down_read(&mm->mmap_sem);
823         for (vma = mm->mmap; vma; vma = vma->vm_next) {
824                 if ((vma->vm_flags & VM_EXECUTABLE) && vma->vm_file) {
825                         cp = tomoyo_realpath_from_path(&vma->vm_file->f_path);
826                         break;
827                 }
828         }
829         up_read(&mm->mmap_sem);
830         return cp;
831 }
832
833 /**
834  * tomoyo_get_mode - Get MAC mode.
835  *
836  * @profile: Profile number.
837  * @index:   Index number of functionality.
838  *
839  * Returns mode.
840  */
841 int tomoyo_get_mode(const u8 profile, const u8 index)
842 {
843         u8 mode;
844         const u8 category = TOMOYO_MAC_CATEGORY_FILE;
845         if (!tomoyo_policy_loaded)
846                 return TOMOYO_CONFIG_DISABLED;
847         mode = tomoyo_profile(profile)->config[index];
848         if (mode == TOMOYO_CONFIG_USE_DEFAULT)
849                 mode = tomoyo_profile(profile)->config[category];
850         if (mode == TOMOYO_CONFIG_USE_DEFAULT)
851                 mode = tomoyo_profile(profile)->default_config;
852         return mode & 3;
853 }
854
855 /**
856  * tomoyo_init_request_info - Initialize "struct tomoyo_request_info" members.
857  *
858  * @r:      Pointer to "struct tomoyo_request_info" to initialize.
859  * @domain: Pointer to "struct tomoyo_domain_info". NULL for tomoyo_domain().
860  * @index:  Index number of functionality.
861  *
862  * Returns mode.
863  */
864 int tomoyo_init_request_info(struct tomoyo_request_info *r,
865                              struct tomoyo_domain_info *domain, const u8 index)
866 {
867         u8 profile;
868         memset(r, 0, sizeof(*r));
869         if (!domain)
870                 domain = tomoyo_domain();
871         r->domain = domain;
872         profile = domain->profile;
873         r->profile = profile;
874         r->type = index;
875         r->mode = tomoyo_get_mode(profile, index);
876         return r->mode;
877 }
878
879 /**
880  * tomoyo_last_word - Get last component of a line.
881  *
882  * @line: A line.
883  *
884  * Returns the last word of a line.
885  */
886 const char *tomoyo_last_word(const char *name)
887 {
888         const char *cp = strrchr(name, ' ');
889         if (cp)
890                 return cp + 1;
891         return name;
892 }
893
894 /**
895  * tomoyo_domain_quota_is_ok - Check for domain's quota.
896  *
897  * @r: Pointer to "struct tomoyo_request_info".
898  *
899  * Returns true if the domain is not exceeded quota, false otherwise.
900  *
901  * Caller holds tomoyo_read_lock().
902  */
903 bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r)
904 {
905         unsigned int count = 0;
906         struct tomoyo_domain_info *domain = r->domain;
907         struct tomoyo_acl_info *ptr;
908
909         if (r->mode != TOMOYO_CONFIG_LEARNING)
910                 return false;
911         if (!domain)
912                 return true;
913         list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
914                 u16 perm;
915                 u8 i;
916                 if (ptr->is_deleted)
917                         continue;
918                 switch (ptr->type) {
919                 case TOMOYO_TYPE_PATH_ACL:
920                         perm = container_of(ptr, struct tomoyo_path_acl, head)
921                                 ->perm;
922                         break;
923                 case TOMOYO_TYPE_PATH2_ACL:
924                         perm = container_of(ptr, struct tomoyo_path2_acl, head)
925                                 ->perm;
926                         break;
927                 case TOMOYO_TYPE_PATH_NUMBER_ACL:
928                         perm = container_of(ptr, struct tomoyo_path_number_acl,
929                                             head)->perm;
930                         break;
931                 case TOMOYO_TYPE_MKDEV_ACL:
932                         perm = container_of(ptr, struct tomoyo_mkdev_acl,
933                                             head)->perm;
934                         break;
935                 default:
936                         perm = 1;
937                 }
938                 for (i = 0; i < 16; i++)
939                         if (perm & (1 << i))
940                                 count++;
941         }
942         if (count < tomoyo_profile(domain->profile)->
943             pref[TOMOYO_PREF_MAX_LEARNING_ENTRY])
944                 return true;
945         if (!domain->quota_warned) {
946                 domain->quota_warned = true;
947                 printk(KERN_WARNING "TOMOYO-WARNING: "
948                        "Domain '%s' has too many ACLs to hold. "
949                        "Stopped learning mode.\n", domain->domainname->name);
950         }
951         return false;
952 }