1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include <linux/kernel.h>
20#include <linux/vmalloc.h>
21#include <linux/security.h>
22#include <linux/mutex.h>
23#include <net/net_namespace.h>
24#include <net/netlabel.h>
25#include <net/cipso_ipv4.h>
26#include <linux/seq_file.h>
27#include <linux/ctype.h>
28#include <linux/audit.h>
29#include "smack.h"
30
31
32
33
34
35enum smk_inos {
36 SMK_ROOT_INO = 2,
37 SMK_LOAD = 3,
38 SMK_CIPSO = 4,
39 SMK_DOI = 5,
40 SMK_DIRECT = 6,
41 SMK_AMBIENT = 7,
42 SMK_NETLBLADDR = 8,
43 SMK_ONLYCAP = 9,
44};
45
46
47
48
49static DEFINE_MUTEX(smack_list_lock);
50static DEFINE_MUTEX(smack_cipso_lock);
51static DEFINE_MUTEX(smack_ambient_lock);
52static DEFINE_MUTEX(smk_netlbladdr_lock);
53
54
55
56
57
58
59char *smack_net_ambient = smack_known_floor.smk_known;
60
61
62
63
64
65
66int smack_cipso_direct = SMACK_CIPSO_DIRECT_DEFAULT;
67
68
69
70
71
72
73
74
75
76char *smack_onlycap;
77
78
79
80
81
82
83
84LIST_HEAD(smk_netlbladdr_list);
85LIST_HEAD(smack_rule_list);
86
87static int smk_cipso_doi_value = SMACK_CIPSO_DOI_DEFAULT;
88
89const char *smack_cipso_option = SMACK_CIPSO_OPTION;
90
91
92#define SEQ_READ_FINISHED 1
93
94
95
96
97
98
99
100#define SMK_DIGITLEN 4
101#define SMK_CIPSOMIN (SMK_LABELLEN + 2 * SMK_DIGITLEN)
102#define SMK_CIPSOMAX (SMK_CIPSOMIN + SMACK_CIPSO_MAXCATNUM * SMK_DIGITLEN)
103
104
105
106
107
108
109
110#define SMK_ACCESS "rwxa"
111#define SMK_ACCESSLEN (sizeof(SMK_ACCESS) - 1)
112#define SMK_LOADLEN (SMK_LABELLEN + SMK_LABELLEN + SMK_ACCESSLEN)
113
114
115
116
117
118static void smk_netlabel_audit_set(struct netlbl_audit *nap)
119{
120 nap->loginuid = audit_get_loginuid(current);
121 nap->sessionid = audit_get_sessionid(current);
122 nap->secid = smack_to_secid(current_security());
123}
124
125
126
127
128
129
130#define SMK_NETLBLADDRMIN 9
131#define SMK_NETLBLADDRMAX 42
132
133
134
135
136
137static void *load_seq_start(struct seq_file *s, loff_t *pos)
138{
139 if (*pos == SEQ_READ_FINISHED)
140 return NULL;
141 if (list_empty(&smack_rule_list))
142 return NULL;
143 return smack_rule_list.next;
144}
145
146static void *load_seq_next(struct seq_file *s, void *v, loff_t *pos)
147{
148 struct list_head *list = v;
149
150 if (list_is_last(list, &smack_rule_list)) {
151 *pos = SEQ_READ_FINISHED;
152 return NULL;
153 }
154 return list->next;
155}
156
157static int load_seq_show(struct seq_file *s, void *v)
158{
159 struct list_head *list = v;
160 struct smack_rule *srp =
161 list_entry(list, struct smack_rule, list);
162
163 seq_printf(s, "%s %s", (char *)srp->smk_subject,
164 (char *)srp->smk_object);
165
166 seq_putc(s, ' ');
167
168 if (srp->smk_access & MAY_READ)
169 seq_putc(s, 'r');
170 if (srp->smk_access & MAY_WRITE)
171 seq_putc(s, 'w');
172 if (srp->smk_access & MAY_EXEC)
173 seq_putc(s, 'x');
174 if (srp->smk_access & MAY_APPEND)
175 seq_putc(s, 'a');
176 if (srp->smk_access == 0)
177 seq_putc(s, '-');
178
179 seq_putc(s, '\n');
180
181 return 0;
182}
183
184static void load_seq_stop(struct seq_file *s, void *v)
185{
186
187}
188
189static struct seq_operations load_seq_ops = {
190 .start = load_seq_start,
191 .next = load_seq_next,
192 .show = load_seq_show,
193 .stop = load_seq_stop,
194};
195
196
197
198
199
200
201
202
203static int smk_open_load(struct inode *inode, struct file *file)
204{
205 return seq_open(file, &load_seq_ops);
206}
207
208
209
210
211
212
213
214
215
216
217
218
219
220static int smk_set_access(struct smack_rule *srp)
221{
222 struct smack_rule *sp;
223 int ret = 0;
224 int found;
225 mutex_lock(&smack_list_lock);
226
227 found = 0;
228 list_for_each_entry_rcu(sp, &smack_rule_list, list) {
229 if (sp->smk_subject == srp->smk_subject &&
230 sp->smk_object == srp->smk_object) {
231 found = 1;
232 sp->smk_access = srp->smk_access;
233 break;
234 }
235 }
236 if (found == 0)
237 list_add_rcu(&srp->list, &smack_rule_list);
238
239 mutex_unlock(&smack_list_lock);
240
241 return ret;
242}
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259static ssize_t smk_write_load(struct file *file, const char __user *buf,
260 size_t count, loff_t *ppos)
261{
262 struct smack_rule *rule;
263 char *data;
264 int rc = -EINVAL;
265
266
267
268
269
270
271 if (!capable(CAP_MAC_ADMIN))
272 return -EPERM;
273
274 if (*ppos != 0 || count != SMK_LOADLEN)
275 return -EINVAL;
276
277 data = kzalloc(count, GFP_KERNEL);
278 if (data == NULL)
279 return -ENOMEM;
280
281 if (copy_from_user(data, buf, count) != 0) {
282 rc = -EFAULT;
283 goto out;
284 }
285
286 rule = kzalloc(sizeof(*rule), GFP_KERNEL);
287 if (rule == NULL) {
288 rc = -ENOMEM;
289 goto out;
290 }
291
292 rule->smk_subject = smk_import(data, 0);
293 if (rule->smk_subject == NULL)
294 goto out_free_rule;
295
296 rule->smk_object = smk_import(data + SMK_LABELLEN, 0);
297 if (rule->smk_object == NULL)
298 goto out_free_rule;
299
300 rule->smk_access = 0;
301
302 switch (data[SMK_LABELLEN + SMK_LABELLEN]) {
303 case '-':
304 break;
305 case 'r':
306 case 'R':
307 rule->smk_access |= MAY_READ;
308 break;
309 default:
310 goto out_free_rule;
311 }
312
313 switch (data[SMK_LABELLEN + SMK_LABELLEN + 1]) {
314 case '-':
315 break;
316 case 'w':
317 case 'W':
318 rule->smk_access |= MAY_WRITE;
319 break;
320 default:
321 goto out_free_rule;
322 }
323
324 switch (data[SMK_LABELLEN + SMK_LABELLEN + 2]) {
325 case '-':
326 break;
327 case 'x':
328 case 'X':
329 rule->smk_access |= MAY_EXEC;
330 break;
331 default:
332 goto out_free_rule;
333 }
334
335 switch (data[SMK_LABELLEN + SMK_LABELLEN + 3]) {
336 case '-':
337 break;
338 case 'a':
339 case 'A':
340 rule->smk_access |= MAY_APPEND;
341 break;
342 default:
343 goto out_free_rule;
344 }
345
346 rc = smk_set_access(rule);
347
348 if (!rc)
349 rc = count;
350 goto out;
351
352out_free_rule:
353 kfree(rule);
354out:
355 kfree(data);
356 return rc;
357}
358
359static const struct file_operations smk_load_ops = {
360 .open = smk_open_load,
361 .read = seq_read,
362 .llseek = seq_lseek,
363 .write = smk_write_load,
364 .release = seq_release,
365};
366
367
368
369
370static void smk_cipso_doi(void)
371{
372 int rc;
373 struct cipso_v4_doi *doip;
374 struct netlbl_audit nai;
375
376 smk_netlabel_audit_set(&nai);
377
378 rc = netlbl_cfg_map_del(NULL, PF_INET, NULL, NULL, &nai);
379 if (rc != 0)
380 printk(KERN_WARNING "%s:%d remove rc = %d\n",
381 __func__, __LINE__, rc);
382
383 doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL);
384 if (doip == NULL)
385 panic("smack: Failed to initialize cipso DOI.\n");
386 doip->map.std = NULL;
387 doip->doi = smk_cipso_doi_value;
388 doip->type = CIPSO_V4_MAP_PASS;
389 doip->tags[0] = CIPSO_V4_TAG_RBITMAP;
390 for (rc = 1; rc < CIPSO_V4_TAG_MAXCNT; rc++)
391 doip->tags[rc] = CIPSO_V4_TAG_INVALID;
392
393 rc = netlbl_cfg_cipsov4_add(doip, &nai);
394 if (rc != 0) {
395 printk(KERN_WARNING "%s:%d cipso add rc = %d\n",
396 __func__, __LINE__, rc);
397 kfree(doip);
398 return;
399 }
400 rc = netlbl_cfg_cipsov4_map_add(doip->doi, NULL, NULL, NULL, &nai);
401 if (rc != 0) {
402 printk(KERN_WARNING "%s:%d map add rc = %d\n",
403 __func__, __LINE__, rc);
404 kfree(doip);
405 return;
406 }
407}
408
409
410
411
412
413static void smk_unlbl_ambient(char *oldambient)
414{
415 int rc;
416 struct netlbl_audit nai;
417
418 smk_netlabel_audit_set(&nai);
419
420 if (oldambient != NULL) {
421 rc = netlbl_cfg_map_del(oldambient, PF_INET, NULL, NULL, &nai);
422 if (rc != 0)
423 printk(KERN_WARNING "%s:%d remove rc = %d\n",
424 __func__, __LINE__, rc);
425 }
426
427 rc = netlbl_cfg_unlbl_map_add(smack_net_ambient, PF_INET,
428 NULL, NULL, &nai);
429 if (rc != 0)
430 printk(KERN_WARNING "%s:%d add rc = %d\n",
431 __func__, __LINE__, rc);
432}
433
434
435
436
437
438static void *cipso_seq_start(struct seq_file *s, loff_t *pos)
439{
440 if (*pos == SEQ_READ_FINISHED)
441 return NULL;
442 if (list_empty(&smack_known_list))
443 return NULL;
444
445 return smack_known_list.next;
446}
447
448static void *cipso_seq_next(struct seq_file *s, void *v, loff_t *pos)
449{
450 struct list_head *list = v;
451
452
453
454
455
456 if (list_is_last(list, &smack_known_list)) {
457 *pos = SEQ_READ_FINISHED;
458 return NULL;
459 }
460
461 return list->next;
462}
463
464
465
466
467
468static int cipso_seq_show(struct seq_file *s, void *v)
469{
470 struct list_head *list = v;
471 struct smack_known *skp =
472 list_entry(list, struct smack_known, list);
473 struct smack_cipso *scp = skp->smk_cipso;
474 char *cbp;
475 char sep = '/';
476 int cat = 1;
477 int i;
478 unsigned char m;
479
480 if (scp == NULL)
481 return 0;
482
483 seq_printf(s, "%s %3d", (char *)&skp->smk_known, scp->smk_level);
484
485 cbp = scp->smk_catset;
486 for (i = 0; i < SMK_LABELLEN; i++)
487 for (m = 0x80; m != 0; m >>= 1) {
488 if (m & cbp[i]) {
489 seq_printf(s, "%c%d", sep, cat);
490 sep = ',';
491 }
492 cat++;
493 }
494
495 seq_putc(s, '\n');
496
497 return 0;
498}
499
500static void cipso_seq_stop(struct seq_file *s, void *v)
501{
502
503}
504
505static struct seq_operations cipso_seq_ops = {
506 .start = cipso_seq_start,
507 .stop = cipso_seq_stop,
508 .next = cipso_seq_next,
509 .show = cipso_seq_show,
510};
511
512
513
514
515
516
517
518
519
520static int smk_open_cipso(struct inode *inode, struct file *file)
521{
522 return seq_open(file, &cipso_seq_ops);
523}
524
525
526
527
528
529
530
531
532
533
534
535static ssize_t smk_write_cipso(struct file *file, const char __user *buf,
536 size_t count, loff_t *ppos)
537{
538 struct smack_known *skp;
539 struct smack_cipso *scp = NULL;
540 char mapcatset[SMK_LABELLEN];
541 int maplevel;
542 int cat;
543 int catlen;
544 ssize_t rc = -EINVAL;
545 char *data = NULL;
546 char *rule;
547 int ret;
548 int i;
549
550
551
552
553
554
555 if (!capable(CAP_MAC_ADMIN))
556 return -EPERM;
557 if (*ppos != 0)
558 return -EINVAL;
559 if (count < SMK_CIPSOMIN || count > SMK_CIPSOMAX)
560 return -EINVAL;
561
562 data = kzalloc(count + 1, GFP_KERNEL);
563 if (data == NULL)
564 return -ENOMEM;
565
566 if (copy_from_user(data, buf, count) != 0) {
567 rc = -EFAULT;
568 goto unlockedout;
569 }
570
571
572 if (data[0] == '-') {
573 rc = -EINVAL;
574 goto unlockedout;
575 }
576 data[count] = '\0';
577 rule = data;
578
579
580
581
582 mutex_lock(&smack_cipso_lock);
583
584 skp = smk_import_entry(rule, 0);
585 if (skp == NULL)
586 goto out;
587
588 rule += SMK_LABELLEN;
589 ret = sscanf(rule, "%d", &maplevel);
590 if (ret != 1 || maplevel > SMACK_CIPSO_MAXLEVEL)
591 goto out;
592
593 rule += SMK_DIGITLEN;
594 ret = sscanf(rule, "%d", &catlen);
595 if (ret != 1 || catlen > SMACK_CIPSO_MAXCATNUM)
596 goto out;
597
598 if (count != (SMK_CIPSOMIN + catlen * SMK_DIGITLEN))
599 goto out;
600
601 memset(mapcatset, 0, sizeof(mapcatset));
602
603 for (i = 0; i < catlen; i++) {
604 rule += SMK_DIGITLEN;
605 ret = sscanf(rule, "%d", &cat);
606 if (ret != 1 || cat > SMACK_CIPSO_MAXCATVAL)
607 goto out;
608
609 smack_catset_bit(cat, mapcatset);
610 }
611
612 if (skp->smk_cipso == NULL) {
613 scp = kzalloc(sizeof(struct smack_cipso), GFP_KERNEL);
614 if (scp == NULL) {
615 rc = -ENOMEM;
616 goto out;
617 }
618 }
619
620 spin_lock_bh(&skp->smk_cipsolock);
621
622 if (scp == NULL)
623 scp = skp->smk_cipso;
624 else
625 skp->smk_cipso = scp;
626
627 scp->smk_level = maplevel;
628 memcpy(scp->smk_catset, mapcatset, sizeof(mapcatset));
629
630 spin_unlock_bh(&skp->smk_cipsolock);
631
632 rc = count;
633out:
634 mutex_unlock(&smack_cipso_lock);
635unlockedout:
636 kfree(data);
637 return rc;
638}
639
640static const struct file_operations smk_cipso_ops = {
641 .open = smk_open_cipso,
642 .read = seq_read,
643 .llseek = seq_lseek,
644 .write = smk_write_cipso,
645 .release = seq_release,
646};
647
648
649
650
651
652static void *netlbladdr_seq_start(struct seq_file *s, loff_t *pos)
653{
654 if (*pos == SEQ_READ_FINISHED)
655 return NULL;
656 if (list_empty(&smk_netlbladdr_list))
657 return NULL;
658 return smk_netlbladdr_list.next;
659}
660
661static void *netlbladdr_seq_next(struct seq_file *s, void *v, loff_t *pos)
662{
663 struct list_head *list = v;
664
665 if (list_is_last(list, &smk_netlbladdr_list)) {
666 *pos = SEQ_READ_FINISHED;
667 return NULL;
668 }
669
670 return list->next;
671}
672#define BEBITS (sizeof(__be32) * 8)
673
674
675
676
677static int netlbladdr_seq_show(struct seq_file *s, void *v)
678{
679 struct list_head *list = v;
680 struct smk_netlbladdr *skp =
681 list_entry(list, struct smk_netlbladdr, list);
682 unsigned char *hp = (char *) &skp->smk_host.sin_addr.s_addr;
683 int maskn;
684 u32 temp_mask = be32_to_cpu(skp->smk_mask.s_addr);
685
686 for (maskn = 0; temp_mask; temp_mask <<= 1, maskn++);
687
688 seq_printf(s, "%u.%u.%u.%u/%d %s\n",
689 hp[0], hp[1], hp[2], hp[3], maskn, skp->smk_label);
690
691 return 0;
692}
693
694static void netlbladdr_seq_stop(struct seq_file *s, void *v)
695{
696
697}
698
699static struct seq_operations netlbladdr_seq_ops = {
700 .start = netlbladdr_seq_start,
701 .stop = netlbladdr_seq_stop,
702 .next = netlbladdr_seq_next,
703 .show = netlbladdr_seq_show,
704};
705
706
707
708
709
710
711
712
713
714static int smk_open_netlbladdr(struct inode *inode, struct file *file)
715{
716 return seq_open(file, &netlbladdr_seq_ops);
717}
718
719
720
721
722
723
724
725
726
727
728static void smk_netlbladdr_insert(struct smk_netlbladdr *new)
729{
730 struct smk_netlbladdr *m, *m_next;
731
732 if (list_empty(&smk_netlbladdr_list)) {
733 list_add_rcu(&new->list, &smk_netlbladdr_list);
734 return;
735 }
736
737 m = list_entry(rcu_dereference(smk_netlbladdr_list.next),
738 struct smk_netlbladdr, list);
739
740
741 if (new->smk_mask.s_addr > m->smk_mask.s_addr) {
742 list_add_rcu(&new->list, &smk_netlbladdr_list);
743 return;
744 }
745
746 list_for_each_entry_rcu(m, &smk_netlbladdr_list, list) {
747 if (list_is_last(&m->list, &smk_netlbladdr_list)) {
748 list_add_rcu(&new->list, &m->list);
749 return;
750 }
751 m_next = list_entry(rcu_dereference(m->list.next),
752 struct smk_netlbladdr, list);
753 if (new->smk_mask.s_addr > m_next->smk_mask.s_addr) {
754 list_add_rcu(&new->list, &m->list);
755 return;
756 }
757 }
758}
759
760
761
762
763
764
765
766
767
768
769
770
771static ssize_t smk_write_netlbladdr(struct file *file, const char __user *buf,
772 size_t count, loff_t *ppos)
773{
774 struct smk_netlbladdr *skp;
775 struct sockaddr_in newname;
776 char smack[SMK_LABELLEN];
777 char *sp;
778 char data[SMK_NETLBLADDRMAX];
779 char *host = (char *)&newname.sin_addr.s_addr;
780 int rc;
781 struct netlbl_audit audit_info;
782 struct in_addr mask;
783 unsigned int m;
784 int found;
785 u32 mask_bits = (1<<31);
786 __be32 nsa;
787 u32 temp_mask;
788
789
790
791
792
793
794
795
796 if (!capable(CAP_MAC_ADMIN))
797 return -EPERM;
798 if (*ppos != 0)
799 return -EINVAL;
800 if (count < SMK_NETLBLADDRMIN || count > SMK_NETLBLADDRMAX)
801 return -EINVAL;
802 if (copy_from_user(data, buf, count) != 0)
803 return -EFAULT;
804
805 data[count] = '\0';
806
807 rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%d %s",
808 &host[0], &host[1], &host[2], &host[3], &m, smack);
809 if (rc != 6) {
810 rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd %s",
811 &host[0], &host[1], &host[2], &host[3], smack);
812 if (rc != 5)
813 return -EINVAL;
814 m = BEBITS;
815 }
816 if (m > BEBITS)
817 return -EINVAL;
818
819
820 if (smack[0] != '-') {
821 sp = smk_import(smack, 0);
822 if (sp == NULL)
823 return -EINVAL;
824 } else {
825
826 if (strcmp(smack, smack_cipso_option) == 0)
827 sp = (char *)smack_cipso_option;
828 else
829 return -EINVAL;
830 }
831
832 for (temp_mask = 0; m > 0; m--) {
833 temp_mask |= mask_bits;
834 mask_bits >>= 1;
835 }
836 mask.s_addr = cpu_to_be32(temp_mask);
837
838 newname.sin_addr.s_addr &= mask.s_addr;
839
840
841
842
843 mutex_lock(&smk_netlbladdr_lock);
844
845 nsa = newname.sin_addr.s_addr;
846
847 found = 0;
848 list_for_each_entry_rcu(skp, &smk_netlbladdr_list, list) {
849 if (skp->smk_host.sin_addr.s_addr == nsa &&
850 skp->smk_mask.s_addr == mask.s_addr) {
851 found = 1;
852 break;
853 }
854 }
855 smk_netlabel_audit_set(&audit_info);
856
857 if (found == 0) {
858 skp = kzalloc(sizeof(*skp), GFP_KERNEL);
859 if (skp == NULL)
860 rc = -ENOMEM;
861 else {
862 rc = 0;
863 skp->smk_host.sin_addr.s_addr = newname.sin_addr.s_addr;
864 skp->smk_mask.s_addr = mask.s_addr;
865 skp->smk_label = sp;
866 smk_netlbladdr_insert(skp);
867 }
868 } else {
869
870
871 if (skp->smk_label != smack_cipso_option)
872 rc = netlbl_cfg_unlbl_static_del(&init_net, NULL,
873 &skp->smk_host.sin_addr, &skp->smk_mask,
874 PF_INET, &audit_info);
875 else
876 rc = 0;
877 skp->smk_label = sp;
878 }
879
880
881
882
883
884
885 if (rc == 0 && sp != smack_cipso_option)
886 rc = netlbl_cfg_unlbl_static_add(&init_net, NULL,
887 &skp->smk_host.sin_addr, &skp->smk_mask, PF_INET,
888 smack_to_secid(skp->smk_label), &audit_info);
889
890 if (rc == 0)
891 rc = count;
892
893 mutex_unlock(&smk_netlbladdr_lock);
894
895 return rc;
896}
897
898static const struct file_operations smk_netlbladdr_ops = {
899 .open = smk_open_netlbladdr,
900 .read = seq_read,
901 .llseek = seq_lseek,
902 .write = smk_write_netlbladdr,
903 .release = seq_release,
904};
905
906
907
908
909
910
911
912
913
914
915static ssize_t smk_read_doi(struct file *filp, char __user *buf,
916 size_t count, loff_t *ppos)
917{
918 char temp[80];
919 ssize_t rc;
920
921 if (*ppos != 0)
922 return 0;
923
924 sprintf(temp, "%d", smk_cipso_doi_value);
925 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
926
927 return rc;
928}
929
930
931
932
933
934
935
936
937
938
939static ssize_t smk_write_doi(struct file *file, const char __user *buf,
940 size_t count, loff_t *ppos)
941{
942 char temp[80];
943 int i;
944
945 if (!capable(CAP_MAC_ADMIN))
946 return -EPERM;
947
948 if (count >= sizeof(temp) || count == 0)
949 return -EINVAL;
950
951 if (copy_from_user(temp, buf, count) != 0)
952 return -EFAULT;
953
954 temp[count] = '\0';
955
956 if (sscanf(temp, "%d", &i) != 1)
957 return -EINVAL;
958
959 smk_cipso_doi_value = i;
960
961 smk_cipso_doi();
962
963 return count;
964}
965
966static const struct file_operations smk_doi_ops = {
967 .read = smk_read_doi,
968 .write = smk_write_doi,
969};
970
971
972
973
974
975
976
977
978
979
980static ssize_t smk_read_direct(struct file *filp, char __user *buf,
981 size_t count, loff_t *ppos)
982{
983 char temp[80];
984 ssize_t rc;
985
986 if (*ppos != 0)
987 return 0;
988
989 sprintf(temp, "%d", smack_cipso_direct);
990 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
991
992 return rc;
993}
994
995
996
997
998
999
1000
1001
1002
1003
1004static ssize_t smk_write_direct(struct file *file, const char __user *buf,
1005 size_t count, loff_t *ppos)
1006{
1007 char temp[80];
1008 int i;
1009
1010 if (!capable(CAP_MAC_ADMIN))
1011 return -EPERM;
1012
1013 if (count >= sizeof(temp) || count == 0)
1014 return -EINVAL;
1015
1016 if (copy_from_user(temp, buf, count) != 0)
1017 return -EFAULT;
1018
1019 temp[count] = '\0';
1020
1021 if (sscanf(temp, "%d", &i) != 1)
1022 return -EINVAL;
1023
1024 smack_cipso_direct = i;
1025
1026 return count;
1027}
1028
1029static const struct file_operations smk_direct_ops = {
1030 .read = smk_read_direct,
1031 .write = smk_write_direct,
1032};
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043static ssize_t smk_read_ambient(struct file *filp, char __user *buf,
1044 size_t cn, loff_t *ppos)
1045{
1046 ssize_t rc;
1047 int asize;
1048
1049 if (*ppos != 0)
1050 return 0;
1051
1052
1053
1054
1055 mutex_lock(&smack_ambient_lock);
1056
1057 asize = strlen(smack_net_ambient) + 1;
1058
1059 if (cn >= asize)
1060 rc = simple_read_from_buffer(buf, cn, ppos,
1061 smack_net_ambient, asize);
1062 else
1063 rc = -EINVAL;
1064
1065 mutex_unlock(&smack_ambient_lock);
1066
1067 return rc;
1068}
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079static ssize_t smk_write_ambient(struct file *file, const char __user *buf,
1080 size_t count, loff_t *ppos)
1081{
1082 char in[SMK_LABELLEN];
1083 char *oldambient;
1084 char *smack;
1085
1086 if (!capable(CAP_MAC_ADMIN))
1087 return -EPERM;
1088
1089 if (count >= SMK_LABELLEN)
1090 return -EINVAL;
1091
1092 if (copy_from_user(in, buf, count) != 0)
1093 return -EFAULT;
1094
1095 smack = smk_import(in, count);
1096 if (smack == NULL)
1097 return -EINVAL;
1098
1099 mutex_lock(&smack_ambient_lock);
1100
1101 oldambient = smack_net_ambient;
1102 smack_net_ambient = smack;
1103 smk_unlbl_ambient(oldambient);
1104
1105 mutex_unlock(&smack_ambient_lock);
1106
1107 return count;
1108}
1109
1110static const struct file_operations smk_ambient_ops = {
1111 .read = smk_read_ambient,
1112 .write = smk_write_ambient,
1113};
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124static ssize_t smk_read_onlycap(struct file *filp, char __user *buf,
1125 size_t cn, loff_t *ppos)
1126{
1127 char *smack = "";
1128 ssize_t rc = -EINVAL;
1129 int asize;
1130
1131 if (*ppos != 0)
1132 return 0;
1133
1134 if (smack_onlycap != NULL)
1135 smack = smack_onlycap;
1136
1137 asize = strlen(smack) + 1;
1138
1139 if (cn >= asize)
1140 rc = simple_read_from_buffer(buf, cn, ppos, smack, asize);
1141
1142 return rc;
1143}
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154static ssize_t smk_write_onlycap(struct file *file, const char __user *buf,
1155 size_t count, loff_t *ppos)
1156{
1157 char in[SMK_LABELLEN];
1158 char *sp = current->cred->security;
1159
1160 if (!capable(CAP_MAC_ADMIN))
1161 return -EPERM;
1162
1163
1164
1165
1166
1167
1168 if (smack_onlycap != NULL && smack_onlycap != sp)
1169 return -EPERM;
1170
1171 if (count >= SMK_LABELLEN)
1172 return -EINVAL;
1173
1174 if (copy_from_user(in, buf, count) != 0)
1175 return -EFAULT;
1176
1177
1178
1179
1180
1181
1182
1183
1184 smack_onlycap = smk_import(in, count);
1185
1186 return count;
1187}
1188
1189static const struct file_operations smk_onlycap_ops = {
1190 .read = smk_read_onlycap,
1191 .write = smk_write_onlycap,
1192};
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204static int smk_fill_super(struct super_block *sb, void *data, int silent)
1205{
1206 int rc;
1207 struct inode *root_inode;
1208
1209 static struct tree_descr smack_files[] = {
1210 [SMK_LOAD] =
1211 {"load", &smk_load_ops, S_IRUGO|S_IWUSR},
1212 [SMK_CIPSO] =
1213 {"cipso", &smk_cipso_ops, S_IRUGO|S_IWUSR},
1214 [SMK_DOI] =
1215 {"doi", &smk_doi_ops, S_IRUGO|S_IWUSR},
1216 [SMK_DIRECT] =
1217 {"direct", &smk_direct_ops, S_IRUGO|S_IWUSR},
1218 [SMK_AMBIENT] =
1219 {"ambient", &smk_ambient_ops, S_IRUGO|S_IWUSR},
1220 [SMK_NETLBLADDR] =
1221 {"netlabel", &smk_netlbladdr_ops, S_IRUGO|S_IWUSR},
1222 [SMK_ONLYCAP] =
1223 {"onlycap", &smk_onlycap_ops, S_IRUGO|S_IWUSR},
1224 {""}
1225 };
1226
1227 rc = simple_fill_super(sb, SMACK_MAGIC, smack_files);
1228 if (rc != 0) {
1229 printk(KERN_ERR "%s failed %d while creating inodes\n",
1230 __func__, rc);
1231 return rc;
1232 }
1233
1234 root_inode = sb->s_root->d_inode;
1235 root_inode->i_security = new_inode_smack(smack_known_floor.smk_known);
1236
1237 return 0;
1238}
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252static int smk_get_sb(struct file_system_type *fs_type,
1253 int flags, const char *dev_name, void *data,
1254 struct vfsmount *mnt)
1255{
1256 return get_sb_single(fs_type, flags, data, smk_fill_super, mnt);
1257}
1258
1259static struct file_system_type smk_fs_type = {
1260 .name = "smackfs",
1261 .get_sb = smk_get_sb,
1262 .kill_sb = kill_litter_super,
1263};
1264
1265static struct vfsmount *smackfs_mount;
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280static int __init init_smk_fs(void)
1281{
1282 int err;
1283
1284 if (!security_module_enable(&smack_ops))
1285 return 0;
1286
1287 err = register_filesystem(&smk_fs_type);
1288 if (!err) {
1289 smackfs_mount = kern_mount(&smk_fs_type);
1290 if (IS_ERR(smackfs_mount)) {
1291 printk(KERN_ERR "smackfs: could not mount!\n");
1292 err = PTR_ERR(smackfs_mount);
1293 smackfs_mount = NULL;
1294 }
1295 }
1296
1297 smk_cipso_doi();
1298 smk_unlbl_ambient(NULL);
1299
1300 return err;
1301}
1302
1303__initcall(init_smk_fs);
1304