Merge remote-tracking branch 'upstream/master' into kvm-devel
[linux-2.6/kvm.git] / security / smack / smackfs.c
blob6aceef518a41fe7cd095bf8f860afe210abeb6ce
1 /*
2 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, version 2.
8 * Authors:
9 * Casey Schaufler <casey@schaufler-ca.com>
10 * Ahmed S. Darwish <darwish.07@gmail.com>
12 * Special thanks to the authors of selinuxfs.
14 * Karl MacMillan <kmacmillan@tresys.com>
15 * James Morris <jmorris@redhat.com>
19 #include <linux/kernel.h>
20 #include <linux/vmalloc.h>
21 #include <linux/security.h>
22 #include <linux/mutex.h>
23 #include <linux/slab.h>
24 #include <net/net_namespace.h>
25 #include <net/netlabel.h>
26 #include <net/cipso_ipv4.h>
27 #include <linux/seq_file.h>
28 #include <linux/ctype.h>
29 #include <linux/audit.h>
30 #include "smack.h"
33 * smackfs pseudo filesystem.
36 enum smk_inos {
37 SMK_ROOT_INO = 2,
38 SMK_LOAD = 3, /* load policy */
39 SMK_CIPSO = 4, /* load label -> CIPSO mapping */
40 SMK_DOI = 5, /* CIPSO DOI */
41 SMK_DIRECT = 6, /* CIPSO level indicating direct label */
42 SMK_AMBIENT = 7, /* internet ambient label */
43 SMK_NETLBLADDR = 8, /* single label hosts */
44 SMK_ONLYCAP = 9, /* the only "capable" label */
45 SMK_LOGGING = 10, /* logging */
46 SMK_LOAD_SELF = 11, /* task specific rules */
47 SMK_ACCESSES = 12, /* access policy */
51 * List locks
53 static DEFINE_MUTEX(smack_list_lock);
54 static DEFINE_MUTEX(smack_cipso_lock);
55 static DEFINE_MUTEX(smack_ambient_lock);
56 static DEFINE_MUTEX(smk_netlbladdr_lock);
59 * This is the "ambient" label for network traffic.
60 * If it isn't somehow marked, use this.
61 * It can be reset via smackfs/ambient
63 char *smack_net_ambient = smack_known_floor.smk_known;
66 * This is the level in a CIPSO header that indicates a
67 * smack label is contained directly in the category set.
68 * It can be reset via smackfs/direct
70 int smack_cipso_direct = SMACK_CIPSO_DIRECT_DEFAULT;
73 * Unless a process is running with this label even
74 * having CAP_MAC_OVERRIDE isn't enough to grant
75 * privilege to violate MAC policy. If no label is
76 * designated (the NULL case) capabilities apply to
77 * everyone. It is expected that the hat (^) label
78 * will be used if any label is used.
80 char *smack_onlycap;
83 * Certain IP addresses may be designated as single label hosts.
84 * Packets are sent there unlabeled, but only from tasks that
85 * can write to the specified label.
88 LIST_HEAD(smk_netlbladdr_list);
91 * Rule lists are maintained for each label.
92 * This master list is just for reading /smack/load.
94 struct smack_master_list {
95 struct list_head list;
96 struct smack_rule *smk_rule;
99 LIST_HEAD(smack_rule_list);
101 static int smk_cipso_doi_value = SMACK_CIPSO_DOI_DEFAULT;
103 const char *smack_cipso_option = SMACK_CIPSO_OPTION;
106 #define SEQ_READ_FINISHED ((loff_t)-1)
109 * Values for parsing cipso rules
110 * SMK_DIGITLEN: Length of a digit field in a rule.
111 * SMK_CIPSOMIN: Minimum possible cipso rule length.
112 * SMK_CIPSOMAX: Maximum possible cipso rule length.
114 #define SMK_DIGITLEN 4
115 #define SMK_CIPSOMIN (SMK_LABELLEN + 2 * SMK_DIGITLEN)
116 #define SMK_CIPSOMAX (SMK_CIPSOMIN + SMACK_CIPSO_MAXCATNUM * SMK_DIGITLEN)
119 * Values for parsing MAC rules
120 * SMK_ACCESS: Maximum possible combination of access permissions
121 * SMK_ACCESSLEN: Maximum length for a rule access field
122 * SMK_LOADLEN: Smack rule length
124 #define SMK_OACCESS "rwxa"
125 #define SMK_ACCESS "rwxat"
126 #define SMK_OACCESSLEN (sizeof(SMK_OACCESS) - 1)
127 #define SMK_ACCESSLEN (sizeof(SMK_ACCESS) - 1)
128 #define SMK_OLOADLEN (SMK_LABELLEN + SMK_LABELLEN + SMK_OACCESSLEN)
129 #define SMK_LOADLEN (SMK_LABELLEN + SMK_LABELLEN + SMK_ACCESSLEN)
132 * smk_netlabel_audit_set - fill a netlbl_audit struct
133 * @nap: structure to fill
135 static void smk_netlabel_audit_set(struct netlbl_audit *nap)
137 nap->loginuid = audit_get_loginuid(current);
138 nap->sessionid = audit_get_sessionid(current);
139 nap->secid = smack_to_secid(smk_of_current());
143 * Values for parsing single label host rules
144 * "1.2.3.4 X"
145 * "192.168.138.129/32 abcdefghijklmnopqrstuvw"
147 #define SMK_NETLBLADDRMIN 9
148 #define SMK_NETLBLADDRMAX 42
151 * smk_set_access - add a rule to the rule list
152 * @srp: the new rule to add
153 * @rule_list: the list of rules
154 * @rule_lock: the rule list lock
156 * Looks through the current subject/object/access list for
157 * the subject/object pair and replaces the access that was
158 * there. If the pair isn't found add it with the specified
159 * access.
161 * Returns 1 if a rule was found to exist already, 0 if it is new
162 * Returns 0 if nothing goes wrong or -ENOMEM if it fails
163 * during the allocation of the new pair to add.
165 static int smk_set_access(struct smack_rule *srp, struct list_head *rule_list,
166 struct mutex *rule_lock)
168 struct smack_rule *sp;
169 int found = 0;
171 mutex_lock(rule_lock);
174 * Because the object label is less likely to match
175 * than the subject label check it first
177 list_for_each_entry_rcu(sp, rule_list, list) {
178 if (sp->smk_object == srp->smk_object &&
179 sp->smk_subject == srp->smk_subject) {
180 found = 1;
181 sp->smk_access = srp->smk_access;
182 break;
185 if (found == 0)
186 list_add_rcu(&srp->list, rule_list);
188 mutex_unlock(rule_lock);
190 return found;
194 * smk_parse_rule - parse Smack rule from load string
195 * @data: string to be parsed whose size is SMK_LOADLEN
196 * @rule: Smack rule
197 * @import: if non-zero, import labels
199 static int smk_parse_rule(const char *data, struct smack_rule *rule, int import)
201 char smack[SMK_LABELLEN];
202 struct smack_known *skp;
204 if (import) {
205 rule->smk_subject = smk_import(data, 0);
206 if (rule->smk_subject == NULL)
207 return -1;
209 rule->smk_object = smk_import(data + SMK_LABELLEN, 0);
210 if (rule->smk_object == NULL)
211 return -1;
212 } else {
213 smk_parse_smack(data, 0, smack);
214 skp = smk_find_entry(smack);
215 if (skp == NULL)
216 return -1;
217 rule->smk_subject = skp->smk_known;
219 smk_parse_smack(data + SMK_LABELLEN, 0, smack);
220 skp = smk_find_entry(smack);
221 if (skp == NULL)
222 return -1;
223 rule->smk_object = skp->smk_known;
226 rule->smk_access = 0;
228 switch (data[SMK_LABELLEN + SMK_LABELLEN]) {
229 case '-':
230 break;
231 case 'r':
232 case 'R':
233 rule->smk_access |= MAY_READ;
234 break;
235 default:
236 return -1;
239 switch (data[SMK_LABELLEN + SMK_LABELLEN + 1]) {
240 case '-':
241 break;
242 case 'w':
243 case 'W':
244 rule->smk_access |= MAY_WRITE;
245 break;
246 default:
247 return -1;
250 switch (data[SMK_LABELLEN + SMK_LABELLEN + 2]) {
251 case '-':
252 break;
253 case 'x':
254 case 'X':
255 rule->smk_access |= MAY_EXEC;
256 break;
257 default:
258 return -1;
261 switch (data[SMK_LABELLEN + SMK_LABELLEN + 3]) {
262 case '-':
263 break;
264 case 'a':
265 case 'A':
266 rule->smk_access |= MAY_APPEND;
267 break;
268 default:
269 return -1;
272 switch (data[SMK_LABELLEN + SMK_LABELLEN + 4]) {
273 case '-':
274 break;
275 case 't':
276 case 'T':
277 rule->smk_access |= MAY_TRANSMUTE;
278 break;
279 default:
280 return -1;
283 return 0;
287 * smk_write_load_list - write() for any /smack/load
288 * @file: file pointer, not actually used
289 * @buf: where to get the data from
290 * @count: bytes sent
291 * @ppos: where to start - must be 0
292 * @rule_list: the list of rules to write to
293 * @rule_lock: lock for the rule list
295 * Get one smack access rule from above.
296 * The format is exactly:
297 * char subject[SMK_LABELLEN]
298 * char object[SMK_LABELLEN]
299 * char access[SMK_ACCESSLEN]
301 * writes must be SMK_LABELLEN+SMK_LABELLEN+SMK_ACCESSLEN bytes.
303 static ssize_t smk_write_load_list(struct file *file, const char __user *buf,
304 size_t count, loff_t *ppos,
305 struct list_head *rule_list,
306 struct mutex *rule_lock)
308 struct smack_master_list *smlp;
309 struct smack_known *skp;
310 struct smack_rule *rule;
311 char *data;
312 int rc = -EINVAL;
313 int load = 0;
316 * No partial writes.
317 * Enough data must be present.
319 if (*ppos != 0)
320 return -EINVAL;
322 * Minor hack for backward compatibility
324 if (count < (SMK_OLOADLEN) || count > SMK_LOADLEN)
325 return -EINVAL;
327 data = kzalloc(SMK_LOADLEN, GFP_KERNEL);
328 if (data == NULL)
329 return -ENOMEM;
331 if (copy_from_user(data, buf, count) != 0) {
332 rc = -EFAULT;
333 goto out;
337 * More on the minor hack for backward compatibility
339 if (count == (SMK_OLOADLEN))
340 data[SMK_OLOADLEN] = '-';
342 rule = kzalloc(sizeof(*rule), GFP_KERNEL);
343 if (rule == NULL) {
344 rc = -ENOMEM;
345 goto out;
348 if (smk_parse_rule(data, rule, 1))
349 goto out_free_rule;
351 if (rule_list == NULL) {
352 load = 1;
353 skp = smk_find_entry(rule->smk_subject);
354 rule_list = &skp->smk_rules;
355 rule_lock = &skp->smk_rules_lock;
358 rc = count;
360 * smk_set_access returns true if there was already a rule
361 * for the subject/object pair, and false if it was new.
363 if (!smk_set_access(rule, rule_list, rule_lock)) {
364 smlp = kzalloc(sizeof(*smlp), GFP_KERNEL);
365 if (smlp != NULL) {
366 smlp->smk_rule = rule;
367 list_add_rcu(&smlp->list, &smack_rule_list);
368 } else
369 rc = -ENOMEM;
370 goto out;
373 out_free_rule:
374 kfree(rule);
375 out:
376 kfree(data);
377 return rc;
382 * Seq_file read operations for /smack/load
385 static void *load_seq_start(struct seq_file *s, loff_t *pos)
387 struct list_head *list;
390 * This is 0 the first time through.
392 if (s->index == 0)
393 s->private = &smack_rule_list;
395 if (s->private == NULL)
396 return NULL;
398 list = s->private;
399 if (list_empty(list))
400 return NULL;
402 if (s->index == 0)
403 return list->next;
404 return list;
407 static void *load_seq_next(struct seq_file *s, void *v, loff_t *pos)
409 struct list_head *list = v;
411 if (list_is_last(list, &smack_rule_list)) {
412 s->private = NULL;
413 return NULL;
415 s->private = list->next;
416 return list->next;
419 static int load_seq_show(struct seq_file *s, void *v)
421 struct list_head *list = v;
422 struct smack_master_list *smlp =
423 list_entry(list, struct smack_master_list, list);
424 struct smack_rule *srp = smlp->smk_rule;
426 seq_printf(s, "%s %s", (char *)srp->smk_subject,
427 (char *)srp->smk_object);
429 seq_putc(s, ' ');
431 if (srp->smk_access & MAY_READ)
432 seq_putc(s, 'r');
433 if (srp->smk_access & MAY_WRITE)
434 seq_putc(s, 'w');
435 if (srp->smk_access & MAY_EXEC)
436 seq_putc(s, 'x');
437 if (srp->smk_access & MAY_APPEND)
438 seq_putc(s, 'a');
439 if (srp->smk_access & MAY_TRANSMUTE)
440 seq_putc(s, 't');
441 if (srp->smk_access == 0)
442 seq_putc(s, '-');
444 seq_putc(s, '\n');
446 return 0;
449 static void load_seq_stop(struct seq_file *s, void *v)
451 /* No-op */
454 static const struct seq_operations load_seq_ops = {
455 .start = load_seq_start,
456 .next = load_seq_next,
457 .show = load_seq_show,
458 .stop = load_seq_stop,
462 * smk_open_load - open() for /smack/load
463 * @inode: inode structure representing file
464 * @file: "load" file pointer
466 * For reading, use load_seq_* seq_file reading operations.
468 static int smk_open_load(struct inode *inode, struct file *file)
470 return seq_open(file, &load_seq_ops);
474 * smk_write_load - write() for /smack/load
475 * @file: file pointer, not actually used
476 * @buf: where to get the data from
477 * @count: bytes sent
478 * @ppos: where to start - must be 0
481 static ssize_t smk_write_load(struct file *file, const char __user *buf,
482 size_t count, loff_t *ppos)
486 * Must have privilege.
487 * No partial writes.
488 * Enough data must be present.
490 if (!capable(CAP_MAC_ADMIN))
491 return -EPERM;
493 return smk_write_load_list(file, buf, count, ppos, NULL, NULL);
496 static const struct file_operations smk_load_ops = {
497 .open = smk_open_load,
498 .read = seq_read,
499 .llseek = seq_lseek,
500 .write = smk_write_load,
501 .release = seq_release,
505 * smk_cipso_doi - initialize the CIPSO domain
507 static void smk_cipso_doi(void)
509 int rc;
510 struct cipso_v4_doi *doip;
511 struct netlbl_audit nai;
513 smk_netlabel_audit_set(&nai);
515 rc = netlbl_cfg_map_del(NULL, PF_INET, NULL, NULL, &nai);
516 if (rc != 0)
517 printk(KERN_WARNING "%s:%d remove rc = %d\n",
518 __func__, __LINE__, rc);
520 doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL);
521 if (doip == NULL)
522 panic("smack: Failed to initialize cipso DOI.\n");
523 doip->map.std = NULL;
524 doip->doi = smk_cipso_doi_value;
525 doip->type = CIPSO_V4_MAP_PASS;
526 doip->tags[0] = CIPSO_V4_TAG_RBITMAP;
527 for (rc = 1; rc < CIPSO_V4_TAG_MAXCNT; rc++)
528 doip->tags[rc] = CIPSO_V4_TAG_INVALID;
530 rc = netlbl_cfg_cipsov4_add(doip, &nai);
531 if (rc != 0) {
532 printk(KERN_WARNING "%s:%d cipso add rc = %d\n",
533 __func__, __LINE__, rc);
534 kfree(doip);
535 return;
537 rc = netlbl_cfg_cipsov4_map_add(doip->doi, NULL, NULL, NULL, &nai);
538 if (rc != 0) {
539 printk(KERN_WARNING "%s:%d map add rc = %d\n",
540 __func__, __LINE__, rc);
541 kfree(doip);
542 return;
547 * smk_unlbl_ambient - initialize the unlabeled domain
548 * @oldambient: previous domain string
550 static void smk_unlbl_ambient(char *oldambient)
552 int rc;
553 struct netlbl_audit nai;
555 smk_netlabel_audit_set(&nai);
557 if (oldambient != NULL) {
558 rc = netlbl_cfg_map_del(oldambient, PF_INET, NULL, NULL, &nai);
559 if (rc != 0)
560 printk(KERN_WARNING "%s:%d remove rc = %d\n",
561 __func__, __LINE__, rc);
564 rc = netlbl_cfg_unlbl_map_add(smack_net_ambient, PF_INET,
565 NULL, NULL, &nai);
566 if (rc != 0)
567 printk(KERN_WARNING "%s:%d add rc = %d\n",
568 __func__, __LINE__, rc);
572 * Seq_file read operations for /smack/cipso
575 static void *cipso_seq_start(struct seq_file *s, loff_t *pos)
577 if (*pos == SEQ_READ_FINISHED)
578 return NULL;
579 if (list_empty(&smack_known_list))
580 return NULL;
582 return smack_known_list.next;
585 static void *cipso_seq_next(struct seq_file *s, void *v, loff_t *pos)
587 struct list_head *list = v;
590 * labels with no associated cipso value wont be printed
591 * in cipso_seq_show
593 if (list_is_last(list, &smack_known_list)) {
594 *pos = SEQ_READ_FINISHED;
595 return NULL;
598 return list->next;
602 * Print cipso labels in format:
603 * label level[/cat[,cat]]
605 static int cipso_seq_show(struct seq_file *s, void *v)
607 struct list_head *list = v;
608 struct smack_known *skp =
609 list_entry(list, struct smack_known, list);
610 struct smack_cipso *scp = skp->smk_cipso;
611 char *cbp;
612 char sep = '/';
613 int cat = 1;
614 int i;
615 unsigned char m;
617 if (scp == NULL)
618 return 0;
620 seq_printf(s, "%s %3d", (char *)&skp->smk_known, scp->smk_level);
622 cbp = scp->smk_catset;
623 for (i = 0; i < SMK_LABELLEN; i++)
624 for (m = 0x80; m != 0; m >>= 1) {
625 if (m & cbp[i]) {
626 seq_printf(s, "%c%d", sep, cat);
627 sep = ',';
629 cat++;
632 seq_putc(s, '\n');
634 return 0;
637 static void cipso_seq_stop(struct seq_file *s, void *v)
639 /* No-op */
642 static const struct seq_operations cipso_seq_ops = {
643 .start = cipso_seq_start,
644 .stop = cipso_seq_stop,
645 .next = cipso_seq_next,
646 .show = cipso_seq_show,
650 * smk_open_cipso - open() for /smack/cipso
651 * @inode: inode structure representing file
652 * @file: "cipso" file pointer
654 * Connect our cipso_seq_* operations with /smack/cipso
655 * file_operations
657 static int smk_open_cipso(struct inode *inode, struct file *file)
659 return seq_open(file, &cipso_seq_ops);
663 * smk_write_cipso - write() for /smack/cipso
664 * @file: file pointer, not actually used
665 * @buf: where to get the data from
666 * @count: bytes sent
667 * @ppos: where to start
669 * Accepts only one cipso rule per write call.
670 * Returns number of bytes written or error code, as appropriate
672 static ssize_t smk_write_cipso(struct file *file, const char __user *buf,
673 size_t count, loff_t *ppos)
675 struct smack_known *skp;
676 struct smack_cipso *scp = NULL;
677 char mapcatset[SMK_LABELLEN];
678 int maplevel;
679 int cat;
680 int catlen;
681 ssize_t rc = -EINVAL;
682 char *data = NULL;
683 char *rule;
684 int ret;
685 int i;
688 * Must have privilege.
689 * No partial writes.
690 * Enough data must be present.
692 if (!capable(CAP_MAC_ADMIN))
693 return -EPERM;
694 if (*ppos != 0)
695 return -EINVAL;
696 if (count < SMK_CIPSOMIN || count > SMK_CIPSOMAX)
697 return -EINVAL;
699 data = kzalloc(count + 1, GFP_KERNEL);
700 if (data == NULL)
701 return -ENOMEM;
703 if (copy_from_user(data, buf, count) != 0) {
704 rc = -EFAULT;
705 goto unlockedout;
708 /* labels cannot begin with a '-' */
709 if (data[0] == '-') {
710 rc = -EINVAL;
711 goto unlockedout;
713 data[count] = '\0';
714 rule = data;
716 * Only allow one writer at a time. Writes should be
717 * quite rare and small in any case.
719 mutex_lock(&smack_cipso_lock);
721 skp = smk_import_entry(rule, 0);
722 if (skp == NULL)
723 goto out;
725 rule += SMK_LABELLEN;
726 ret = sscanf(rule, "%d", &maplevel);
727 if (ret != 1 || maplevel > SMACK_CIPSO_MAXLEVEL)
728 goto out;
730 rule += SMK_DIGITLEN;
731 ret = sscanf(rule, "%d", &catlen);
732 if (ret != 1 || catlen > SMACK_CIPSO_MAXCATNUM)
733 goto out;
735 if (count != (SMK_CIPSOMIN + catlen * SMK_DIGITLEN))
736 goto out;
738 memset(mapcatset, 0, sizeof(mapcatset));
740 for (i = 0; i < catlen; i++) {
741 rule += SMK_DIGITLEN;
742 ret = sscanf(rule, "%d", &cat);
743 if (ret != 1 || cat > SMACK_CIPSO_MAXCATVAL)
744 goto out;
746 smack_catset_bit(cat, mapcatset);
749 if (skp->smk_cipso == NULL) {
750 scp = kzalloc(sizeof(struct smack_cipso), GFP_KERNEL);
751 if (scp == NULL) {
752 rc = -ENOMEM;
753 goto out;
757 spin_lock_bh(&skp->smk_cipsolock);
759 if (scp == NULL)
760 scp = skp->smk_cipso;
761 else
762 skp->smk_cipso = scp;
764 scp->smk_level = maplevel;
765 memcpy(scp->smk_catset, mapcatset, sizeof(mapcatset));
767 spin_unlock_bh(&skp->smk_cipsolock);
769 rc = count;
770 out:
771 mutex_unlock(&smack_cipso_lock);
772 unlockedout:
773 kfree(data);
774 return rc;
777 static const struct file_operations smk_cipso_ops = {
778 .open = smk_open_cipso,
779 .read = seq_read,
780 .llseek = seq_lseek,
781 .write = smk_write_cipso,
782 .release = seq_release,
786 * Seq_file read operations for /smack/netlabel
789 static void *netlbladdr_seq_start(struct seq_file *s, loff_t *pos)
791 if (*pos == SEQ_READ_FINISHED)
792 return NULL;
793 if (list_empty(&smk_netlbladdr_list))
794 return NULL;
795 return smk_netlbladdr_list.next;
798 static void *netlbladdr_seq_next(struct seq_file *s, void *v, loff_t *pos)
800 struct list_head *list = v;
802 if (list_is_last(list, &smk_netlbladdr_list)) {
803 *pos = SEQ_READ_FINISHED;
804 return NULL;
807 return list->next;
809 #define BEBITS (sizeof(__be32) * 8)
812 * Print host/label pairs
814 static int netlbladdr_seq_show(struct seq_file *s, void *v)
816 struct list_head *list = v;
817 struct smk_netlbladdr *skp =
818 list_entry(list, struct smk_netlbladdr, list);
819 unsigned char *hp = (char *) &skp->smk_host.sin_addr.s_addr;
820 int maskn;
821 u32 temp_mask = be32_to_cpu(skp->smk_mask.s_addr);
823 for (maskn = 0; temp_mask; temp_mask <<= 1, maskn++);
825 seq_printf(s, "%u.%u.%u.%u/%d %s\n",
826 hp[0], hp[1], hp[2], hp[3], maskn, skp->smk_label);
828 return 0;
831 static void netlbladdr_seq_stop(struct seq_file *s, void *v)
833 /* No-op */
836 static const struct seq_operations netlbladdr_seq_ops = {
837 .start = netlbladdr_seq_start,
838 .stop = netlbladdr_seq_stop,
839 .next = netlbladdr_seq_next,
840 .show = netlbladdr_seq_show,
844 * smk_open_netlbladdr - open() for /smack/netlabel
845 * @inode: inode structure representing file
846 * @file: "netlabel" file pointer
848 * Connect our netlbladdr_seq_* operations with /smack/netlabel
849 * file_operations
851 static int smk_open_netlbladdr(struct inode *inode, struct file *file)
853 return seq_open(file, &netlbladdr_seq_ops);
857 * smk_netlbladdr_insert
858 * @new : netlabel to insert
860 * This helper insert netlabel in the smack_netlbladdrs list
861 * sorted by netmask length (longest to smallest)
862 * locked by &smk_netlbladdr_lock in smk_write_netlbladdr
865 static void smk_netlbladdr_insert(struct smk_netlbladdr *new)
867 struct smk_netlbladdr *m, *m_next;
869 if (list_empty(&smk_netlbladdr_list)) {
870 list_add_rcu(&new->list, &smk_netlbladdr_list);
871 return;
874 m = list_entry_rcu(smk_netlbladdr_list.next,
875 struct smk_netlbladdr, list);
877 /* the comparison '>' is a bit hacky, but works */
878 if (new->smk_mask.s_addr > m->smk_mask.s_addr) {
879 list_add_rcu(&new->list, &smk_netlbladdr_list);
880 return;
883 list_for_each_entry_rcu(m, &smk_netlbladdr_list, list) {
884 if (list_is_last(&m->list, &smk_netlbladdr_list)) {
885 list_add_rcu(&new->list, &m->list);
886 return;
888 m_next = list_entry_rcu(m->list.next,
889 struct smk_netlbladdr, list);
890 if (new->smk_mask.s_addr > m_next->smk_mask.s_addr) {
891 list_add_rcu(&new->list, &m->list);
892 return;
899 * smk_write_netlbladdr - write() for /smack/netlabel
900 * @file: file pointer, not actually used
901 * @buf: where to get the data from
902 * @count: bytes sent
903 * @ppos: where to start
905 * Accepts only one netlbladdr per write call.
906 * Returns number of bytes written or error code, as appropriate
908 static ssize_t smk_write_netlbladdr(struct file *file, const char __user *buf,
909 size_t count, loff_t *ppos)
911 struct smk_netlbladdr *skp;
912 struct sockaddr_in newname;
913 char smack[SMK_LABELLEN];
914 char *sp;
915 char data[SMK_NETLBLADDRMAX + 1];
916 char *host = (char *)&newname.sin_addr.s_addr;
917 int rc;
918 struct netlbl_audit audit_info;
919 struct in_addr mask;
920 unsigned int m;
921 int found;
922 u32 mask_bits = (1<<31);
923 __be32 nsa;
924 u32 temp_mask;
927 * Must have privilege.
928 * No partial writes.
929 * Enough data must be present.
930 * "<addr/mask, as a.b.c.d/e><space><label>"
931 * "<addr, as a.b.c.d><space><label>"
933 if (!capable(CAP_MAC_ADMIN))
934 return -EPERM;
935 if (*ppos != 0)
936 return -EINVAL;
937 if (count < SMK_NETLBLADDRMIN || count > SMK_NETLBLADDRMAX)
938 return -EINVAL;
939 if (copy_from_user(data, buf, count) != 0)
940 return -EFAULT;
942 data[count] = '\0';
944 rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%d %s",
945 &host[0], &host[1], &host[2], &host[3], &m, smack);
946 if (rc != 6) {
947 rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd %s",
948 &host[0], &host[1], &host[2], &host[3], smack);
949 if (rc != 5)
950 return -EINVAL;
951 m = BEBITS;
953 if (m > BEBITS)
954 return -EINVAL;
956 /* if smack begins with '-', its an option, don't import it */
957 if (smack[0] != '-') {
958 sp = smk_import(smack, 0);
959 if (sp == NULL)
960 return -EINVAL;
961 } else {
962 /* check known options */
963 if (strcmp(smack, smack_cipso_option) == 0)
964 sp = (char *)smack_cipso_option;
965 else
966 return -EINVAL;
969 for (temp_mask = 0; m > 0; m--) {
970 temp_mask |= mask_bits;
971 mask_bits >>= 1;
973 mask.s_addr = cpu_to_be32(temp_mask);
975 newname.sin_addr.s_addr &= mask.s_addr;
977 * Only allow one writer at a time. Writes should be
978 * quite rare and small in any case.
980 mutex_lock(&smk_netlbladdr_lock);
982 nsa = newname.sin_addr.s_addr;
983 /* try to find if the prefix is already in the list */
984 found = 0;
985 list_for_each_entry_rcu(skp, &smk_netlbladdr_list, list) {
986 if (skp->smk_host.sin_addr.s_addr == nsa &&
987 skp->smk_mask.s_addr == mask.s_addr) {
988 found = 1;
989 break;
992 smk_netlabel_audit_set(&audit_info);
994 if (found == 0) {
995 skp = kzalloc(sizeof(*skp), GFP_KERNEL);
996 if (skp == NULL)
997 rc = -ENOMEM;
998 else {
999 rc = 0;
1000 skp->smk_host.sin_addr.s_addr = newname.sin_addr.s_addr;
1001 skp->smk_mask.s_addr = mask.s_addr;
1002 skp->smk_label = sp;
1003 smk_netlbladdr_insert(skp);
1005 } else {
1006 /* we delete the unlabeled entry, only if the previous label
1007 * wasn't the special CIPSO option */
1008 if (skp->smk_label != smack_cipso_option)
1009 rc = netlbl_cfg_unlbl_static_del(&init_net, NULL,
1010 &skp->smk_host.sin_addr, &skp->smk_mask,
1011 PF_INET, &audit_info);
1012 else
1013 rc = 0;
1014 skp->smk_label = sp;
1018 * Now tell netlabel about the single label nature of
1019 * this host so that incoming packets get labeled.
1020 * but only if we didn't get the special CIPSO option
1022 if (rc == 0 && sp != smack_cipso_option)
1023 rc = netlbl_cfg_unlbl_static_add(&init_net, NULL,
1024 &skp->smk_host.sin_addr, &skp->smk_mask, PF_INET,
1025 smack_to_secid(skp->smk_label), &audit_info);
1027 if (rc == 0)
1028 rc = count;
1030 mutex_unlock(&smk_netlbladdr_lock);
1032 return rc;
1035 static const struct file_operations smk_netlbladdr_ops = {
1036 .open = smk_open_netlbladdr,
1037 .read = seq_read,
1038 .llseek = seq_lseek,
1039 .write = smk_write_netlbladdr,
1040 .release = seq_release,
1044 * smk_read_doi - read() for /smack/doi
1045 * @filp: file pointer, not actually used
1046 * @buf: where to put the result
1047 * @count: maximum to send along
1048 * @ppos: where to start
1050 * Returns number of bytes read or error code, as appropriate
1052 static ssize_t smk_read_doi(struct file *filp, char __user *buf,
1053 size_t count, loff_t *ppos)
1055 char temp[80];
1056 ssize_t rc;
1058 if (*ppos != 0)
1059 return 0;
1061 sprintf(temp, "%d", smk_cipso_doi_value);
1062 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1064 return rc;
1068 * smk_write_doi - write() for /smack/doi
1069 * @file: file pointer, not actually used
1070 * @buf: where to get the data from
1071 * @count: bytes sent
1072 * @ppos: where to start
1074 * Returns number of bytes written or error code, as appropriate
1076 static ssize_t smk_write_doi(struct file *file, const char __user *buf,
1077 size_t count, loff_t *ppos)
1079 char temp[80];
1080 int i;
1082 if (!capable(CAP_MAC_ADMIN))
1083 return -EPERM;
1085 if (count >= sizeof(temp) || count == 0)
1086 return -EINVAL;
1088 if (copy_from_user(temp, buf, count) != 0)
1089 return -EFAULT;
1091 temp[count] = '\0';
1093 if (sscanf(temp, "%d", &i) != 1)
1094 return -EINVAL;
1096 smk_cipso_doi_value = i;
1098 smk_cipso_doi();
1100 return count;
1103 static const struct file_operations smk_doi_ops = {
1104 .read = smk_read_doi,
1105 .write = smk_write_doi,
1106 .llseek = default_llseek,
1110 * smk_read_direct - read() for /smack/direct
1111 * @filp: file pointer, not actually used
1112 * @buf: where to put the result
1113 * @count: maximum to send along
1114 * @ppos: where to start
1116 * Returns number of bytes read or error code, as appropriate
1118 static ssize_t smk_read_direct(struct file *filp, char __user *buf,
1119 size_t count, loff_t *ppos)
1121 char temp[80];
1122 ssize_t rc;
1124 if (*ppos != 0)
1125 return 0;
1127 sprintf(temp, "%d", smack_cipso_direct);
1128 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1130 return rc;
1134 * smk_write_direct - write() for /smack/direct
1135 * @file: file pointer, not actually used
1136 * @buf: where to get the data from
1137 * @count: bytes sent
1138 * @ppos: where to start
1140 * Returns number of bytes written or error code, as appropriate
1142 static ssize_t smk_write_direct(struct file *file, const char __user *buf,
1143 size_t count, loff_t *ppos)
1145 char temp[80];
1146 int i;
1148 if (!capable(CAP_MAC_ADMIN))
1149 return -EPERM;
1151 if (count >= sizeof(temp) || count == 0)
1152 return -EINVAL;
1154 if (copy_from_user(temp, buf, count) != 0)
1155 return -EFAULT;
1157 temp[count] = '\0';
1159 if (sscanf(temp, "%d", &i) != 1)
1160 return -EINVAL;
1162 smack_cipso_direct = i;
1164 return count;
1167 static const struct file_operations smk_direct_ops = {
1168 .read = smk_read_direct,
1169 .write = smk_write_direct,
1170 .llseek = default_llseek,
1174 * smk_read_ambient - read() for /smack/ambient
1175 * @filp: file pointer, not actually used
1176 * @buf: where to put the result
1177 * @cn: maximum to send along
1178 * @ppos: where to start
1180 * Returns number of bytes read or error code, as appropriate
1182 static ssize_t smk_read_ambient(struct file *filp, char __user *buf,
1183 size_t cn, loff_t *ppos)
1185 ssize_t rc;
1186 int asize;
1188 if (*ppos != 0)
1189 return 0;
1191 * Being careful to avoid a problem in the case where
1192 * smack_net_ambient gets changed in midstream.
1194 mutex_lock(&smack_ambient_lock);
1196 asize = strlen(smack_net_ambient) + 1;
1198 if (cn >= asize)
1199 rc = simple_read_from_buffer(buf, cn, ppos,
1200 smack_net_ambient, asize);
1201 else
1202 rc = -EINVAL;
1204 mutex_unlock(&smack_ambient_lock);
1206 return rc;
1210 * smk_write_ambient - write() for /smack/ambient
1211 * @file: file pointer, not actually used
1212 * @buf: where to get the data from
1213 * @count: bytes sent
1214 * @ppos: where to start
1216 * Returns number of bytes written or error code, as appropriate
1218 static ssize_t smk_write_ambient(struct file *file, const char __user *buf,
1219 size_t count, loff_t *ppos)
1221 char in[SMK_LABELLEN];
1222 char *oldambient;
1223 char *smack;
1225 if (!capable(CAP_MAC_ADMIN))
1226 return -EPERM;
1228 if (count >= SMK_LABELLEN)
1229 return -EINVAL;
1231 if (copy_from_user(in, buf, count) != 0)
1232 return -EFAULT;
1234 smack = smk_import(in, count);
1235 if (smack == NULL)
1236 return -EINVAL;
1238 mutex_lock(&smack_ambient_lock);
1240 oldambient = smack_net_ambient;
1241 smack_net_ambient = smack;
1242 smk_unlbl_ambient(oldambient);
1244 mutex_unlock(&smack_ambient_lock);
1246 return count;
1249 static const struct file_operations smk_ambient_ops = {
1250 .read = smk_read_ambient,
1251 .write = smk_write_ambient,
1252 .llseek = default_llseek,
1256 * smk_read_onlycap - read() for /smack/onlycap
1257 * @filp: file pointer, not actually used
1258 * @buf: where to put the result
1259 * @cn: maximum to send along
1260 * @ppos: where to start
1262 * Returns number of bytes read or error code, as appropriate
1264 static ssize_t smk_read_onlycap(struct file *filp, char __user *buf,
1265 size_t cn, loff_t *ppos)
1267 char *smack = "";
1268 ssize_t rc = -EINVAL;
1269 int asize;
1271 if (*ppos != 0)
1272 return 0;
1274 if (smack_onlycap != NULL)
1275 smack = smack_onlycap;
1277 asize = strlen(smack) + 1;
1279 if (cn >= asize)
1280 rc = simple_read_from_buffer(buf, cn, ppos, smack, asize);
1282 return rc;
1286 * smk_write_onlycap - write() for /smack/onlycap
1287 * @file: file pointer, not actually used
1288 * @buf: where to get the data from
1289 * @count: bytes sent
1290 * @ppos: where to start
1292 * Returns number of bytes written or error code, as appropriate
1294 static ssize_t smk_write_onlycap(struct file *file, const char __user *buf,
1295 size_t count, loff_t *ppos)
1297 char in[SMK_LABELLEN];
1298 char *sp = smk_of_task(current->cred->security);
1300 if (!capable(CAP_MAC_ADMIN))
1301 return -EPERM;
1304 * This can be done using smk_access() but is done
1305 * explicitly for clarity. The smk_access() implementation
1306 * would use smk_access(smack_onlycap, MAY_WRITE)
1308 if (smack_onlycap != NULL && smack_onlycap != sp)
1309 return -EPERM;
1311 if (count >= SMK_LABELLEN)
1312 return -EINVAL;
1314 if (copy_from_user(in, buf, count) != 0)
1315 return -EFAULT;
1318 * Should the null string be passed in unset the onlycap value.
1319 * This seems like something to be careful with as usually
1320 * smk_import only expects to return NULL for errors. It
1321 * is usually the case that a nullstring or "\n" would be
1322 * bad to pass to smk_import but in fact this is useful here.
1324 smack_onlycap = smk_import(in, count);
1326 return count;
1329 static const struct file_operations smk_onlycap_ops = {
1330 .read = smk_read_onlycap,
1331 .write = smk_write_onlycap,
1332 .llseek = default_llseek,
1336 * smk_read_logging - read() for /smack/logging
1337 * @filp: file pointer, not actually used
1338 * @buf: where to put the result
1339 * @cn: maximum to send along
1340 * @ppos: where to start
1342 * Returns number of bytes read or error code, as appropriate
1344 static ssize_t smk_read_logging(struct file *filp, char __user *buf,
1345 size_t count, loff_t *ppos)
1347 char temp[32];
1348 ssize_t rc;
1350 if (*ppos != 0)
1351 return 0;
1353 sprintf(temp, "%d\n", log_policy);
1354 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1355 return rc;
1359 * smk_write_logging - write() for /smack/logging
1360 * @file: file pointer, not actually used
1361 * @buf: where to get the data from
1362 * @count: bytes sent
1363 * @ppos: where to start
1365 * Returns number of bytes written or error code, as appropriate
1367 static ssize_t smk_write_logging(struct file *file, const char __user *buf,
1368 size_t count, loff_t *ppos)
1370 char temp[32];
1371 int i;
1373 if (!capable(CAP_MAC_ADMIN))
1374 return -EPERM;
1376 if (count >= sizeof(temp) || count == 0)
1377 return -EINVAL;
1379 if (copy_from_user(temp, buf, count) != 0)
1380 return -EFAULT;
1382 temp[count] = '\0';
1384 if (sscanf(temp, "%d", &i) != 1)
1385 return -EINVAL;
1386 if (i < 0 || i > 3)
1387 return -EINVAL;
1388 log_policy = i;
1389 return count;
1394 static const struct file_operations smk_logging_ops = {
1395 .read = smk_read_logging,
1396 .write = smk_write_logging,
1397 .llseek = default_llseek,
1401 * Seq_file read operations for /smack/load-self
1404 static void *load_self_seq_start(struct seq_file *s, loff_t *pos)
1406 struct task_smack *tsp = current_security();
1408 if (*pos == SEQ_READ_FINISHED)
1409 return NULL;
1410 if (list_empty(&tsp->smk_rules))
1411 return NULL;
1412 return tsp->smk_rules.next;
1415 static void *load_self_seq_next(struct seq_file *s, void *v, loff_t *pos)
1417 struct task_smack *tsp = current_security();
1418 struct list_head *list = v;
1420 if (list_is_last(list, &tsp->smk_rules)) {
1421 *pos = SEQ_READ_FINISHED;
1422 return NULL;
1424 return list->next;
1427 static int load_self_seq_show(struct seq_file *s, void *v)
1429 struct list_head *list = v;
1430 struct smack_rule *srp =
1431 list_entry(list, struct smack_rule, list);
1433 seq_printf(s, "%s %s", (char *)srp->smk_subject,
1434 (char *)srp->smk_object);
1436 seq_putc(s, ' ');
1438 if (srp->smk_access & MAY_READ)
1439 seq_putc(s, 'r');
1440 if (srp->smk_access & MAY_WRITE)
1441 seq_putc(s, 'w');
1442 if (srp->smk_access & MAY_EXEC)
1443 seq_putc(s, 'x');
1444 if (srp->smk_access & MAY_APPEND)
1445 seq_putc(s, 'a');
1446 if (srp->smk_access & MAY_TRANSMUTE)
1447 seq_putc(s, 't');
1448 if (srp->smk_access == 0)
1449 seq_putc(s, '-');
1451 seq_putc(s, '\n');
1453 return 0;
1456 static void load_self_seq_stop(struct seq_file *s, void *v)
1458 /* No-op */
1461 static const struct seq_operations load_self_seq_ops = {
1462 .start = load_self_seq_start,
1463 .next = load_self_seq_next,
1464 .show = load_self_seq_show,
1465 .stop = load_self_seq_stop,
1470 * smk_open_load_self - open() for /smack/load-self
1471 * @inode: inode structure representing file
1472 * @file: "load" file pointer
1474 * For reading, use load_seq_* seq_file reading operations.
1476 static int smk_open_load_self(struct inode *inode, struct file *file)
1478 return seq_open(file, &load_self_seq_ops);
1482 * smk_write_load_self - write() for /smack/load-self
1483 * @file: file pointer, not actually used
1484 * @buf: where to get the data from
1485 * @count: bytes sent
1486 * @ppos: where to start - must be 0
1489 static ssize_t smk_write_load_self(struct file *file, const char __user *buf,
1490 size_t count, loff_t *ppos)
1492 struct task_smack *tsp = current_security();
1494 return smk_write_load_list(file, buf, count, ppos, &tsp->smk_rules,
1495 &tsp->smk_rules_lock);
1498 static const struct file_operations smk_load_self_ops = {
1499 .open = smk_open_load_self,
1500 .read = seq_read,
1501 .llseek = seq_lseek,
1502 .write = smk_write_load_self,
1503 .release = seq_release,
1507 * smk_write_access - handle access check transaction
1508 * @file: file pointer
1509 * @buf: data from user space
1510 * @count: bytes sent
1511 * @ppos: where to start - must be 0
1513 static ssize_t smk_write_access(struct file *file, const char __user *buf,
1514 size_t count, loff_t *ppos)
1516 struct smack_rule rule;
1517 char *data;
1518 int res;
1520 data = simple_transaction_get(file, buf, count);
1521 if (IS_ERR(data))
1522 return PTR_ERR(data);
1524 if (count < SMK_LOADLEN || smk_parse_rule(data, &rule, 0))
1525 return -EINVAL;
1527 res = smk_access(rule.smk_subject, rule.smk_object, rule.smk_access,
1528 NULL);
1529 data[0] = res == 0 ? '1' : '0';
1530 data[1] = '\0';
1532 simple_transaction_set(file, 2);
1533 return SMK_LOADLEN;
1536 static const struct file_operations smk_access_ops = {
1537 .write = smk_write_access,
1538 .read = simple_transaction_read,
1539 .release = simple_transaction_release,
1540 .llseek = generic_file_llseek,
1544 * smk_fill_super - fill the /smackfs superblock
1545 * @sb: the empty superblock
1546 * @data: unused
1547 * @silent: unused
1549 * Fill in the well known entries for /smack
1551 * Returns 0 on success, an error code on failure
1553 static int smk_fill_super(struct super_block *sb, void *data, int silent)
1555 int rc;
1556 struct inode *root_inode;
1558 static struct tree_descr smack_files[] = {
1559 [SMK_LOAD] = {
1560 "load", &smk_load_ops, S_IRUGO|S_IWUSR},
1561 [SMK_CIPSO] = {
1562 "cipso", &smk_cipso_ops, S_IRUGO|S_IWUSR},
1563 [SMK_DOI] = {
1564 "doi", &smk_doi_ops, S_IRUGO|S_IWUSR},
1565 [SMK_DIRECT] = {
1566 "direct", &smk_direct_ops, S_IRUGO|S_IWUSR},
1567 [SMK_AMBIENT] = {
1568 "ambient", &smk_ambient_ops, S_IRUGO|S_IWUSR},
1569 [SMK_NETLBLADDR] = {
1570 "netlabel", &smk_netlbladdr_ops, S_IRUGO|S_IWUSR},
1571 [SMK_ONLYCAP] = {
1572 "onlycap", &smk_onlycap_ops, S_IRUGO|S_IWUSR},
1573 [SMK_LOGGING] = {
1574 "logging", &smk_logging_ops, S_IRUGO|S_IWUSR},
1575 [SMK_LOAD_SELF] = {
1576 "load-self", &smk_load_self_ops, S_IRUGO|S_IWUGO},
1577 [SMK_ACCESSES] = {
1578 "access", &smk_access_ops, S_IRUGO|S_IWUGO},
1579 /* last one */
1580 {""}
1583 rc = simple_fill_super(sb, SMACK_MAGIC, smack_files);
1584 if (rc != 0) {
1585 printk(KERN_ERR "%s failed %d while creating inodes\n",
1586 __func__, rc);
1587 return rc;
1590 root_inode = sb->s_root->d_inode;
1591 root_inode->i_security = new_inode_smack(smack_known_floor.smk_known);
1593 return 0;
1597 * smk_mount - get the smackfs superblock
1598 * @fs_type: passed along without comment
1599 * @flags: passed along without comment
1600 * @dev_name: passed along without comment
1601 * @data: passed along without comment
1603 * Just passes everything along.
1605 * Returns what the lower level code does.
1607 static struct dentry *smk_mount(struct file_system_type *fs_type,
1608 int flags, const char *dev_name, void *data)
1610 return mount_single(fs_type, flags, data, smk_fill_super);
1613 static struct file_system_type smk_fs_type = {
1614 .name = "smackfs",
1615 .mount = smk_mount,
1616 .kill_sb = kill_litter_super,
1619 static struct vfsmount *smackfs_mount;
1622 * init_smk_fs - get the smackfs superblock
1624 * register the smackfs
1626 * Do not register smackfs if Smack wasn't enabled
1627 * on boot. We can not put this method normally under the
1628 * smack_init() code path since the security subsystem get
1629 * initialized before the vfs caches.
1631 * Returns true if we were not chosen on boot or if
1632 * we were chosen and filesystem registration succeeded.
1634 static int __init init_smk_fs(void)
1636 int err;
1638 if (!security_module_enable(&smack_ops))
1639 return 0;
1641 err = register_filesystem(&smk_fs_type);
1642 if (!err) {
1643 smackfs_mount = kern_mount(&smk_fs_type);
1644 if (IS_ERR(smackfs_mount)) {
1645 printk(KERN_ERR "smackfs: could not mount!\n");
1646 err = PTR_ERR(smackfs_mount);
1647 smackfs_mount = NULL;
1651 smk_cipso_doi();
1652 smk_unlbl_ambient(NULL);
1654 mutex_init(&smack_known_floor.smk_rules_lock);
1655 mutex_init(&smack_known_hat.smk_rules_lock);
1656 mutex_init(&smack_known_huh.smk_rules_lock);
1657 mutex_init(&smack_known_invalid.smk_rules_lock);
1658 mutex_init(&smack_known_star.smk_rules_lock);
1659 mutex_init(&smack_known_web.smk_rules_lock);
1661 INIT_LIST_HEAD(&smack_known_floor.smk_rules);
1662 INIT_LIST_HEAD(&smack_known_hat.smk_rules);
1663 INIT_LIST_HEAD(&smack_known_huh.smk_rules);
1664 INIT_LIST_HEAD(&smack_known_invalid.smk_rules);
1665 INIT_LIST_HEAD(&smack_known_star.smk_rules);
1666 INIT_LIST_HEAD(&smack_known_web.smk_rules);
1668 return err;
1671 __initcall(init_smk_fs);