1
2
3
4
5
6
7
8#include <linux/slab.h>
9#include <linux/rculist.h>
10
11#include "common.h"
12
13
14DEFINE_MUTEX(tomoyo_policy_lock);
15
16
17bool tomoyo_policy_loaded;
18
19
20
21
22
23const u8 tomoyo_index2category[TOMOYO_MAX_MAC_INDEX] = {
24
25 [TOMOYO_MAC_FILE_EXECUTE] = TOMOYO_MAC_CATEGORY_FILE,
26 [TOMOYO_MAC_FILE_OPEN] = TOMOYO_MAC_CATEGORY_FILE,
27 [TOMOYO_MAC_FILE_CREATE] = TOMOYO_MAC_CATEGORY_FILE,
28 [TOMOYO_MAC_FILE_UNLINK] = TOMOYO_MAC_CATEGORY_FILE,
29 [TOMOYO_MAC_FILE_GETATTR] = TOMOYO_MAC_CATEGORY_FILE,
30 [TOMOYO_MAC_FILE_MKDIR] = TOMOYO_MAC_CATEGORY_FILE,
31 [TOMOYO_MAC_FILE_RMDIR] = TOMOYO_MAC_CATEGORY_FILE,
32 [TOMOYO_MAC_FILE_MKFIFO] = TOMOYO_MAC_CATEGORY_FILE,
33 [TOMOYO_MAC_FILE_MKSOCK] = TOMOYO_MAC_CATEGORY_FILE,
34 [TOMOYO_MAC_FILE_TRUNCATE] = TOMOYO_MAC_CATEGORY_FILE,
35 [TOMOYO_MAC_FILE_SYMLINK] = TOMOYO_MAC_CATEGORY_FILE,
36 [TOMOYO_MAC_FILE_MKBLOCK] = TOMOYO_MAC_CATEGORY_FILE,
37 [TOMOYO_MAC_FILE_MKCHAR] = TOMOYO_MAC_CATEGORY_FILE,
38 [TOMOYO_MAC_FILE_LINK] = TOMOYO_MAC_CATEGORY_FILE,
39 [TOMOYO_MAC_FILE_RENAME] = TOMOYO_MAC_CATEGORY_FILE,
40 [TOMOYO_MAC_FILE_CHMOD] = TOMOYO_MAC_CATEGORY_FILE,
41 [TOMOYO_MAC_FILE_CHOWN] = TOMOYO_MAC_CATEGORY_FILE,
42 [TOMOYO_MAC_FILE_CHGRP] = TOMOYO_MAC_CATEGORY_FILE,
43 [TOMOYO_MAC_FILE_IOCTL] = TOMOYO_MAC_CATEGORY_FILE,
44 [TOMOYO_MAC_FILE_CHROOT] = TOMOYO_MAC_CATEGORY_FILE,
45 [TOMOYO_MAC_FILE_MOUNT] = TOMOYO_MAC_CATEGORY_FILE,
46 [TOMOYO_MAC_FILE_UMOUNT] = TOMOYO_MAC_CATEGORY_FILE,
47 [TOMOYO_MAC_FILE_PIVOT_ROOT] = TOMOYO_MAC_CATEGORY_FILE,
48
49 [TOMOYO_MAC_NETWORK_INET_STREAM_BIND] =
50 TOMOYO_MAC_CATEGORY_NETWORK,
51 [TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN] =
52 TOMOYO_MAC_CATEGORY_NETWORK,
53 [TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT] =
54 TOMOYO_MAC_CATEGORY_NETWORK,
55 [TOMOYO_MAC_NETWORK_INET_DGRAM_BIND] =
56 TOMOYO_MAC_CATEGORY_NETWORK,
57 [TOMOYO_MAC_NETWORK_INET_DGRAM_SEND] =
58 TOMOYO_MAC_CATEGORY_NETWORK,
59 [TOMOYO_MAC_NETWORK_INET_RAW_BIND] =
60 TOMOYO_MAC_CATEGORY_NETWORK,
61 [TOMOYO_MAC_NETWORK_INET_RAW_SEND] =
62 TOMOYO_MAC_CATEGORY_NETWORK,
63 [TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND] =
64 TOMOYO_MAC_CATEGORY_NETWORK,
65 [TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN] =
66 TOMOYO_MAC_CATEGORY_NETWORK,
67 [TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT] =
68 TOMOYO_MAC_CATEGORY_NETWORK,
69 [TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND] =
70 TOMOYO_MAC_CATEGORY_NETWORK,
71 [TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND] =
72 TOMOYO_MAC_CATEGORY_NETWORK,
73 [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND] =
74 TOMOYO_MAC_CATEGORY_NETWORK,
75 [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN] =
76 TOMOYO_MAC_CATEGORY_NETWORK,
77 [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT] =
78 TOMOYO_MAC_CATEGORY_NETWORK,
79
80 [TOMOYO_MAC_ENVIRON] = TOMOYO_MAC_CATEGORY_MISC,
81};
82
83
84
85
86
87
88
89
90
91
92
93void tomoyo_convert_time(time_t time, struct tomoyo_time *stamp)
94{
95 static const u16 tomoyo_eom[2][12] = {
96 { 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
97 { 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
98 };
99 u16 y;
100 u8 m;
101 bool r;
102 stamp->sec = time % 60;
103 time /= 60;
104 stamp->min = time % 60;
105 time /= 60;
106 stamp->hour = time % 24;
107 time /= 24;
108 for (y = 1970; ; y++) {
109 const unsigned short days = (y & 3) ? 365 : 366;
110 if (time < days)
111 break;
112 time -= days;
113 }
114 r = (y & 3) == 0;
115 for (m = 0; m < 11 && time >= tomoyo_eom[r][m]; m++)
116 ;
117 if (m)
118 time -= tomoyo_eom[r][m - 1];
119 stamp->year = y;
120 stamp->month = ++m;
121 stamp->day = ++time;
122}
123
124
125
126
127
128
129
130
131
132
133
134bool tomoyo_permstr(const char *string, const char *keyword)
135{
136 const char *cp = strstr(string, keyword);
137 if (cp)
138 return cp == string || *(cp - 1) == '/';
139 return false;
140}
141
142
143
144
145
146
147
148
149
150
151
152char *tomoyo_read_token(struct tomoyo_acl_param *param)
153{
154 char *pos = param->data;
155 char *del = strchr(pos, ' ');
156 if (del)
157 *del++ = '\0';
158 else
159 del = pos + strlen(pos);
160 param->data = del;
161 return pos;
162}
163
164
165
166
167
168
169
170
171const struct tomoyo_path_info *tomoyo_get_domainname
172(struct tomoyo_acl_param *param)
173{
174 char *start = param->data;
175 char *pos = start;
176 while (*pos) {
177 if (*pos++ != ' ' || *pos++ == '/')
178 continue;
179 pos -= 2;
180 *pos++ = '\0';
181 break;
182 }
183 param->data = pos;
184 if (tomoyo_correct_domain(start))
185 return tomoyo_get_name(start);
186 return NULL;
187}
188
189
190
191
192
193
194
195
196
197
198
199
200u8 tomoyo_parse_ulong(unsigned long *result, char **str)
201{
202 const char *cp = *str;
203 char *ep;
204 int base = 10;
205 if (*cp == '0') {
206 char c = *(cp + 1);
207 if (c == 'x' || c == 'X') {
208 base = 16;
209 cp += 2;
210 } else if (c >= '0' && c <= '7') {
211 base = 8;
212 cp++;
213 }
214 }
215 *result = simple_strtoul(cp, &ep, base);
216 if (cp == ep)
217 return TOMOYO_VALUE_TYPE_INVALID;
218 *str = ep;
219 switch (base) {
220 case 16:
221 return TOMOYO_VALUE_TYPE_HEXADECIMAL;
222 case 8:
223 return TOMOYO_VALUE_TYPE_OCTAL;
224 default:
225 return TOMOYO_VALUE_TYPE_DECIMAL;
226 }
227}
228
229
230
231
232
233
234
235
236
237
238
239void tomoyo_print_ulong(char *buffer, const int buffer_len,
240 const unsigned long value, const u8 type)
241{
242 if (type == TOMOYO_VALUE_TYPE_DECIMAL)
243 snprintf(buffer, buffer_len, "%lu", value);
244 else if (type == TOMOYO_VALUE_TYPE_OCTAL)
245 snprintf(buffer, buffer_len, "0%lo", value);
246 else if (type == TOMOYO_VALUE_TYPE_HEXADECIMAL)
247 snprintf(buffer, buffer_len, "0x%lX", value);
248 else
249 snprintf(buffer, buffer_len, "type(%u)", type);
250}
251
252
253
254
255
256
257
258
259
260bool tomoyo_parse_name_union(struct tomoyo_acl_param *param,
261 struct tomoyo_name_union *ptr)
262{
263 char *filename;
264 if (param->data[0] == '@') {
265 param->data++;
266 ptr->group = tomoyo_get_group(param, TOMOYO_PATH_GROUP);
267 return ptr->group != NULL;
268 }
269 filename = tomoyo_read_token(param);
270 if (!tomoyo_correct_word(filename))
271 return false;
272 ptr->filename = tomoyo_get_name(filename);
273 return ptr->filename != NULL;
274}
275
276
277
278
279
280
281
282
283
284bool tomoyo_parse_number_union(struct tomoyo_acl_param *param,
285 struct tomoyo_number_union *ptr)
286{
287 char *data;
288 u8 type;
289 unsigned long v;
290 memset(ptr, 0, sizeof(*ptr));
291 if (param->data[0] == '@') {
292 param->data++;
293 ptr->group = tomoyo_get_group(param, TOMOYO_NUMBER_GROUP);
294 return ptr->group != NULL;
295 }
296 data = tomoyo_read_token(param);
297 type = tomoyo_parse_ulong(&v, &data);
298 if (type == TOMOYO_VALUE_TYPE_INVALID)
299 return false;
300 ptr->values[0] = v;
301 ptr->value_type[0] = type;
302 if (!*data) {
303 ptr->values[1] = v;
304 ptr->value_type[1] = type;
305 return true;
306 }
307 if (*data++ != '-')
308 return false;
309 type = tomoyo_parse_ulong(&v, &data);
310 if (type == TOMOYO_VALUE_TYPE_INVALID || *data || ptr->values[0] > v)
311 return false;
312 ptr->values[1] = v;
313 ptr->value_type[1] = type;
314 return true;
315}
316
317
318
319
320
321
322
323
324
325
326
327static inline bool tomoyo_byte_range(const char *str)
328{
329 return *str >= '0' && *str++ <= '3' &&
330 *str >= '0' && *str++ <= '7' &&
331 *str >= '0' && *str <= '7';
332}
333
334
335
336
337
338
339
340
341static inline bool tomoyo_alphabet_char(const char c)
342{
343 return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
344}
345
346
347
348
349
350
351
352
353
354
355static inline u8 tomoyo_make_byte(const u8 c1, const u8 c2, const u8 c3)
356{
357 return ((c1 - '0') << 6) + ((c2 - '0') << 3) + (c3 - '0');
358}
359
360
361
362
363
364
365
366
367static inline bool tomoyo_valid(const unsigned char c)
368{
369 return c > ' ' && c < 127;
370}
371
372
373
374
375
376
377
378
379static inline bool tomoyo_invalid(const unsigned char c)
380{
381 return c && (c <= ' ' || c >= 127);
382}
383
384
385
386
387
388
389
390
391
392
393
394
395bool tomoyo_str_starts(char **src, const char *find)
396{
397 const int len = strlen(find);
398 char *tmp = *src;
399
400 if (strncmp(tmp, find, len))
401 return false;
402 tmp += len;
403 *src = tmp;
404 return true;
405}
406
407
408
409
410
411
412
413
414
415
416
417void tomoyo_normalize_line(unsigned char *buffer)
418{
419 unsigned char *sp = buffer;
420 unsigned char *dp = buffer;
421 bool first = true;
422
423 while (tomoyo_invalid(*sp))
424 sp++;
425 while (*sp) {
426 if (!first)
427 *dp++ = ' ';
428 first = false;
429 while (tomoyo_valid(*sp))
430 *dp++ = *sp++;
431 while (tomoyo_invalid(*sp))
432 sp++;
433 }
434 *dp = '\0';
435}
436
437
438
439
440
441
442
443
444
445
446static bool tomoyo_correct_word2(const char *string, size_t len)
447{
448 const char *const start = string;
449 bool in_repetition = false;
450 unsigned char c;
451 unsigned char d;
452 unsigned char e;
453 if (!len)
454 goto out;
455 while (len--) {
456 c = *string++;
457 if (c == '\\') {
458 if (!len--)
459 goto out;
460 c = *string++;
461 switch (c) {
462 case '\\':
463 continue;
464 case '$':
465 case '+':
466 case '?':
467 case '*':
468 case '@':
469 case 'x':
470 case 'X':
471 case 'a':
472 case 'A':
473 case '-':
474 continue;
475 case '{':
476 if (string - 3 < start || *(string - 3) != '/')
477 break;
478 in_repetition = true;
479 continue;
480 case '}':
481 if (*string != '/')
482 break;
483 if (!in_repetition)
484 break;
485 in_repetition = false;
486 continue;
487 case '0':
488 case '1':
489 case '2':
490 case '3':
491 if (!len-- || !len--)
492 break;
493 d = *string++;
494 e = *string++;
495 if (d < '0' || d > '7' || e < '0' || e > '7')
496 break;
497 c = tomoyo_make_byte(c, d, e);
498 if (c <= ' ' || c >= 127)
499 continue;
500 }
501 goto out;
502 } else if (in_repetition && c == '/') {
503 goto out;
504 } else if (c <= ' ' || c >= 127) {
505 goto out;
506 }
507 }
508 if (in_repetition)
509 goto out;
510 return true;
511 out:
512 return false;
513}
514
515
516
517
518
519
520
521
522
523bool tomoyo_correct_word(const char *string)
524{
525 return tomoyo_correct_word2(string, strlen(string));
526}
527
528
529
530
531
532
533
534
535
536bool tomoyo_correct_path(const char *filename)
537{
538 return *filename == '/' && tomoyo_correct_word(filename);
539}
540
541
542
543
544
545
546
547
548bool tomoyo_correct_domain(const unsigned char *domainname)
549{
550 if (!domainname || !tomoyo_domain_def(domainname))
551 return false;
552 domainname = strchr(domainname, ' ');
553 if (!domainname++)
554 return true;
555 while (1) {
556 const unsigned char *cp = strchr(domainname, ' ');
557 if (!cp)
558 break;
559 if (*domainname != '/' ||
560 !tomoyo_correct_word2(domainname, cp - domainname))
561 return false;
562 domainname = cp + 1;
563 }
564 return tomoyo_correct_path(domainname);
565}
566
567
568
569
570
571
572
573
574bool tomoyo_domain_def(const unsigned char *buffer)
575{
576 const unsigned char *cp;
577 int len;
578 if (*buffer != '<')
579 return false;
580 cp = strchr(buffer, ' ');
581 if (!cp)
582 len = strlen(buffer);
583 else
584 len = cp - buffer;
585 if (buffer[len - 1] != '>' ||
586 !tomoyo_correct_word2(buffer + 1, len - 2))
587 return false;
588 return true;
589}
590
591
592
593
594
595
596
597
598
599
600struct tomoyo_domain_info *tomoyo_find_domain(const char *domainname)
601{
602 struct tomoyo_domain_info *domain;
603 struct tomoyo_path_info name;
604
605 name.name = domainname;
606 tomoyo_fill_path_info(&name);
607 list_for_each_entry_rcu(domain, &tomoyo_domain_list, list) {
608 if (!domain->is_deleted &&
609 !tomoyo_pathcmp(&name, domain->domainname))
610 return domain;
611 }
612 return NULL;
613}
614
615
616
617
618
619
620
621
622static int tomoyo_const_part_length(const char *filename)
623{
624 char c;
625 int len = 0;
626
627 if (!filename)
628 return 0;
629 while ((c = *filename++) != '\0') {
630 if (c != '\\') {
631 len++;
632 continue;
633 }
634 c = *filename++;
635 switch (c) {
636 case '\\':
637 len += 2;
638 continue;
639 case '0':
640 case '1':
641 case '2':
642 case '3':
643 c = *filename++;
644 if (c < '0' || c > '7')
645 break;
646 c = *filename++;
647 if (c < '0' || c > '7')
648 break;
649 len += 4;
650 continue;
651 }
652 break;
653 }
654 return len;
655}
656
657
658
659
660
661
662
663
664void tomoyo_fill_path_info(struct tomoyo_path_info *ptr)
665{
666 const char *name = ptr->name;
667 const int len = strlen(name);
668
669 ptr->const_len = tomoyo_const_part_length(name);
670 ptr->is_dir = len && (name[len - 1] == '/');
671 ptr->is_patterned = (ptr->const_len < len);
672 ptr->hash = full_name_hash(NULL, name, len);
673}
674
675
676
677
678
679
680
681
682
683
684
685static bool tomoyo_file_matches_pattern2(const char *filename,
686 const char *filename_end,
687 const char *pattern,
688 const char *pattern_end)
689{
690 while (filename < filename_end && pattern < pattern_end) {
691 char c;
692 if (*pattern != '\\') {
693 if (*filename++ != *pattern++)
694 return false;
695 continue;
696 }
697 c = *filename;
698 pattern++;
699 switch (*pattern) {
700 int i;
701 int j;
702 case '?':
703 if (c == '/') {
704 return false;
705 } else if (c == '\\') {
706 if (filename[1] == '\\')
707 filename++;
708 else if (tomoyo_byte_range(filename + 1))
709 filename += 3;
710 else
711 return false;
712 }
713 break;
714 case '\\':
715 if (c != '\\')
716 return false;
717 if (*++filename != '\\')
718 return false;
719 break;
720 case '+':
721 if (!isdigit(c))
722 return false;
723 break;
724 case 'x':
725 if (!isxdigit(c))
726 return false;
727 break;
728 case 'a':
729 if (!tomoyo_alphabet_char(c))
730 return false;
731 break;
732 case '0':
733 case '1':
734 case '2':
735 case '3':
736 if (c == '\\' && tomoyo_byte_range(filename + 1)
737 && strncmp(filename + 1, pattern, 3) == 0) {
738 filename += 3;
739 pattern += 2;
740 break;
741 }
742 return false;
743 case '*':
744 case '@':
745 for (i = 0; i <= filename_end - filename; i++) {
746 if (tomoyo_file_matches_pattern2(
747 filename + i, filename_end,
748 pattern + 1, pattern_end))
749 return true;
750 c = filename[i];
751 if (c == '.' && *pattern == '@')
752 break;
753 if (c != '\\')
754 continue;
755 if (filename[i + 1] == '\\')
756 i++;
757 else if (tomoyo_byte_range(filename + i + 1))
758 i += 3;
759 else
760 break;
761 }
762 return false;
763 default:
764 j = 0;
765 c = *pattern;
766 if (c == '$') {
767 while (isdigit(filename[j]))
768 j++;
769 } else if (c == 'X') {
770 while (isxdigit(filename[j]))
771 j++;
772 } else if (c == 'A') {
773 while (tomoyo_alphabet_char(filename[j]))
774 j++;
775 }
776 for (i = 1; i <= j; i++) {
777 if (tomoyo_file_matches_pattern2(
778 filename + i, filename_end,
779 pattern + 1, pattern_end))
780 return true;
781 }
782 return false;
783 }
784 filename++;
785 pattern++;
786 }
787 while (*pattern == '\\' &&
788 (*(pattern + 1) == '*' || *(pattern + 1) == '@'))
789 pattern += 2;
790 return filename == filename_end && pattern == pattern_end;
791}
792
793
794
795
796
797
798
799
800
801
802
803static bool tomoyo_file_matches_pattern(const char *filename,
804 const char *filename_end,
805 const char *pattern,
806 const char *pattern_end)
807{
808 const char *pattern_start = pattern;
809 bool first = true;
810 bool result;
811
812 while (pattern < pattern_end - 1) {
813
814 if (*pattern++ != '\\' || *pattern++ != '-')
815 continue;
816 result = tomoyo_file_matches_pattern2(filename,
817 filename_end,
818 pattern_start,
819 pattern - 2);
820 if (first)
821 result = !result;
822 if (result)
823 return false;
824 first = false;
825 pattern_start = pattern;
826 }
827 result = tomoyo_file_matches_pattern2(filename, filename_end,
828 pattern_start, pattern_end);
829 return first ? result : !result;
830}
831
832
833
834
835
836
837
838
839
840static bool tomoyo_path_matches_pattern2(const char *f, const char *p)
841{
842 const char *f_delimiter;
843 const char *p_delimiter;
844
845 while (*f && *p) {
846 f_delimiter = strchr(f, '/');
847 if (!f_delimiter)
848 f_delimiter = f + strlen(f);
849 p_delimiter = strchr(p, '/');
850 if (!p_delimiter)
851 p_delimiter = p + strlen(p);
852 if (*p == '\\' && *(p + 1) == '{')
853 goto recursive;
854 if (!tomoyo_file_matches_pattern(f, f_delimiter, p,
855 p_delimiter))
856 return false;
857 f = f_delimiter;
858 if (*f)
859 f++;
860 p = p_delimiter;
861 if (*p)
862 p++;
863 }
864
865 while (*p == '\\' &&
866 (*(p + 1) == '*' || *(p + 1) == '@'))
867 p += 2;
868 return !*f && !*p;
869 recursive:
870
871
872
873
874
875
876 if (*(p - 1) != '/' || p_delimiter <= p + 3 || *p_delimiter != '/' ||
877 *(p_delimiter - 1) != '}' || *(p_delimiter - 2) != '\\')
878 return false;
879 do {
880
881 if (!tomoyo_file_matches_pattern(f, f_delimiter, p + 2,
882 p_delimiter - 2))
883 break;
884
885 f = f_delimiter;
886 if (!*f)
887 break;
888 f++;
889
890 if (tomoyo_path_matches_pattern2(f, p_delimiter + 1))
891 return true;
892 f_delimiter = strchr(f, '/');
893 } while (f_delimiter);
894 return false;
895}
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923bool tomoyo_path_matches_pattern(const struct tomoyo_path_info *filename,
924 const struct tomoyo_path_info *pattern)
925{
926 const char *f = filename->name;
927 const char *p = pattern->name;
928 const int len = pattern->const_len;
929
930
931 if (!pattern->is_patterned)
932 return !tomoyo_pathcmp(filename, pattern);
933
934 if (filename->is_dir != pattern->is_dir)
935 return false;
936
937 if (strncmp(f, p, len))
938 return false;
939 f += len;
940 p += len;
941 return tomoyo_path_matches_pattern2(f, p);
942}
943
944
945
946
947
948
949
950
951
952const char *tomoyo_get_exe(void)
953{
954 struct file *exe_file;
955 const char *cp;
956 struct mm_struct *mm = current->mm;
957
958 if (!mm)
959 return NULL;
960 exe_file = get_mm_exe_file(mm);
961 if (!exe_file)
962 return NULL;
963
964 cp = tomoyo_realpath_from_path(&exe_file->f_path);
965 fput(exe_file);
966 return cp;
967}
968
969
970
971
972
973
974
975
976
977
978int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile,
979 const u8 index)
980{
981 u8 mode;
982 struct tomoyo_profile *p;
983
984 if (!tomoyo_policy_loaded)
985 return TOMOYO_CONFIG_DISABLED;
986 p = tomoyo_profile(ns, profile);
987 mode = p->config[index];
988 if (mode == TOMOYO_CONFIG_USE_DEFAULT)
989 mode = p->config[tomoyo_index2category[index]
990 + TOMOYO_MAX_MAC_INDEX];
991 if (mode == TOMOYO_CONFIG_USE_DEFAULT)
992 mode = p->default_config;
993 return mode & 3;
994}
995
996
997
998
999
1000
1001
1002
1003
1004
1005int tomoyo_init_request_info(struct tomoyo_request_info *r,
1006 struct tomoyo_domain_info *domain, const u8 index)
1007{
1008 u8 profile;
1009 memset(r, 0, sizeof(*r));
1010 if (!domain)
1011 domain = tomoyo_domain();
1012 r->domain = domain;
1013 profile = domain->profile;
1014 r->profile = profile;
1015 r->type = index;
1016 r->mode = tomoyo_get_mode(domain->ns, profile, index);
1017 return r->mode;
1018}
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029bool tomoyo_domain_quota_is_ok(struct tomoyo_request_info *r)
1030{
1031 unsigned int count = 0;
1032 struct tomoyo_domain_info *domain = r->domain;
1033 struct tomoyo_acl_info *ptr;
1034
1035 if (r->mode != TOMOYO_CONFIG_LEARNING)
1036 return false;
1037 if (!domain)
1038 return true;
1039 list_for_each_entry_rcu(ptr, &domain->acl_info_list, list) {
1040 u16 perm;
1041 u8 i;
1042 if (ptr->is_deleted)
1043 continue;
1044 switch (ptr->type) {
1045 case TOMOYO_TYPE_PATH_ACL:
1046 perm = container_of(ptr, struct tomoyo_path_acl, head)
1047 ->perm;
1048 break;
1049 case TOMOYO_TYPE_PATH2_ACL:
1050 perm = container_of(ptr, struct tomoyo_path2_acl, head)
1051 ->perm;
1052 break;
1053 case TOMOYO_TYPE_PATH_NUMBER_ACL:
1054 perm = container_of(ptr, struct tomoyo_path_number_acl,
1055 head)->perm;
1056 break;
1057 case TOMOYO_TYPE_MKDEV_ACL:
1058 perm = container_of(ptr, struct tomoyo_mkdev_acl,
1059 head)->perm;
1060 break;
1061 case TOMOYO_TYPE_INET_ACL:
1062 perm = container_of(ptr, struct tomoyo_inet_acl,
1063 head)->perm;
1064 break;
1065 case TOMOYO_TYPE_UNIX_ACL:
1066 perm = container_of(ptr, struct tomoyo_unix_acl,
1067 head)->perm;
1068 break;
1069 case TOMOYO_TYPE_MANUAL_TASK_ACL:
1070 perm = 0;
1071 break;
1072 default:
1073 perm = 1;
1074 }
1075 for (i = 0; i < 16; i++)
1076 if (perm & (1 << i))
1077 count++;
1078 }
1079 if (count < tomoyo_profile(domain->ns, domain->profile)->
1080 pref[TOMOYO_PREF_MAX_LEARNING_ENTRY])
1081 return true;
1082 if (!domain->flags[TOMOYO_DIF_QUOTA_WARNED]) {
1083 domain->flags[TOMOYO_DIF_QUOTA_WARNED] = true;
1084
1085 tomoyo_write_log(r, "%s", tomoyo_dif[TOMOYO_DIF_QUOTA_WARNED]);
1086 printk(KERN_WARNING "WARNING: "
1087 "Domain '%s' has too many ACLs to hold. "
1088 "Stopped learning mode.\n", domain->domainname->name);
1089 }
1090 return false;
1091}
1092