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.
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>
33 * smackfs pseudo filesystem.
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 */
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.
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
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
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
;
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
) {
181 sp
->smk_access
= srp
->smk_access
;
186 list_add_rcu(&srp
->list
, rule_list
);
188 mutex_unlock(rule_lock
);
194 * smk_parse_rule - parse Smack rule from load string
195 * @data: string to be parsed whose size is SMK_LOADLEN
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
;
205 rule
->smk_subject
= smk_import(data
, 0);
206 if (rule
->smk_subject
== NULL
)
209 rule
->smk_object
= smk_import(data
+ SMK_LABELLEN
, 0);
210 if (rule
->smk_object
== NULL
)
213 smk_parse_smack(data
, 0, smack
);
214 skp
= smk_find_entry(smack
);
217 rule
->smk_subject
= skp
->smk_known
;
219 smk_parse_smack(data
+ SMK_LABELLEN
, 0, smack
);
220 skp
= smk_find_entry(smack
);
223 rule
->smk_object
= skp
->smk_known
;
226 rule
->smk_access
= 0;
228 switch (data
[SMK_LABELLEN
+ SMK_LABELLEN
]) {
233 rule
->smk_access
|= MAY_READ
;
239 switch (data
[SMK_LABELLEN
+ SMK_LABELLEN
+ 1]) {
244 rule
->smk_access
|= MAY_WRITE
;
250 switch (data
[SMK_LABELLEN
+ SMK_LABELLEN
+ 2]) {
255 rule
->smk_access
|= MAY_EXEC
;
261 switch (data
[SMK_LABELLEN
+ SMK_LABELLEN
+ 3]) {
266 rule
->smk_access
|= MAY_APPEND
;
272 switch (data
[SMK_LABELLEN
+ SMK_LABELLEN
+ 4]) {
277 rule
->smk_access
|= MAY_TRANSMUTE
;
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
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
;
317 * Enough data must be present.
322 * Minor hack for backward compatibility
324 if (count
< (SMK_OLOADLEN
) || count
> SMK_LOADLEN
)
327 data
= kzalloc(SMK_LOADLEN
, GFP_KERNEL
);
331 if (copy_from_user(data
, buf
, count
) != 0) {
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
);
348 if (smk_parse_rule(data
, rule
, 1))
351 if (rule_list
== NULL
) {
353 skp
= smk_find_entry(rule
->smk_subject
);
354 rule_list
= &skp
->smk_rules
;
355 rule_lock
= &skp
->smk_rules_lock
;
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
);
366 smlp
->smk_rule
= rule
;
367 list_add_rcu(&smlp
->list
, &smack_rule_list
);
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.
393 s
->private = &smack_rule_list
;
395 if (s
->private == NULL
)
399 if (list_empty(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
)) {
415 s
->private = 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
);
431 if (srp
->smk_access
& MAY_READ
)
433 if (srp
->smk_access
& MAY_WRITE
)
435 if (srp
->smk_access
& MAY_EXEC
)
437 if (srp
->smk_access
& MAY_APPEND
)
439 if (srp
->smk_access
& MAY_TRANSMUTE
)
441 if (srp
->smk_access
== 0)
449 static void load_seq_stop(struct seq_file
*s
, void *v
)
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
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.
488 * Enough data must be present.
490 if (!capable(CAP_MAC_ADMIN
))
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
,
500 .write
= smk_write_load
,
501 .release
= seq_release
,
505 * smk_cipso_doi - initialize the CIPSO domain
507 static void smk_cipso_doi(void)
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
);
517 printk(KERN_WARNING
"%s:%d remove rc = %d\n",
518 __func__
, __LINE__
, rc
);
520 doip
= kmalloc(sizeof(struct cipso_v4_doi
), GFP_KERNEL
);
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
);
532 printk(KERN_WARNING
"%s:%d cipso add rc = %d\n",
533 __func__
, __LINE__
, rc
);
537 rc
= netlbl_cfg_cipsov4_map_add(doip
->doi
, NULL
, NULL
, NULL
, &nai
);
539 printk(KERN_WARNING
"%s:%d map add rc = %d\n",
540 __func__
, __LINE__
, rc
);
547 * smk_unlbl_ambient - initialize the unlabeled domain
548 * @oldambient: previous domain string
550 static void smk_unlbl_ambient(char *oldambient
)
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
);
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
,
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
)
579 if (list_empty(&smack_known_list
))
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
593 if (list_is_last(list
, &smack_known_list
)) {
594 *pos
= SEQ_READ_FINISHED
;
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
;
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) {
626 seq_printf(s
, "%c%d", sep
, cat
);
637 static void cipso_seq_stop(struct seq_file
*s
, void *v
)
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
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
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
];
681 ssize_t rc
= -EINVAL
;
688 * Must have privilege.
690 * Enough data must be present.
692 if (!capable(CAP_MAC_ADMIN
))
696 if (count
< SMK_CIPSOMIN
|| count
> SMK_CIPSOMAX
)
699 data
= kzalloc(count
+ 1, GFP_KERNEL
);
703 if (copy_from_user(data
, buf
, count
) != 0) {
708 /* labels cannot begin with a '-' */
709 if (data
[0] == '-') {
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);
725 rule
+= SMK_LABELLEN
;
726 ret
= sscanf(rule
, "%d", &maplevel
);
727 if (ret
!= 1 || maplevel
> SMACK_CIPSO_MAXLEVEL
)
730 rule
+= SMK_DIGITLEN
;
731 ret
= sscanf(rule
, "%d", &catlen
);
732 if (ret
!= 1 || catlen
> SMACK_CIPSO_MAXCATNUM
)
735 if (count
!= (SMK_CIPSOMIN
+ catlen
* SMK_DIGITLEN
))
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
)
746 smack_catset_bit(cat
, mapcatset
);
749 if (skp
->smk_cipso
== NULL
) {
750 scp
= kzalloc(sizeof(struct smack_cipso
), GFP_KERNEL
);
757 spin_lock_bh(&skp
->smk_cipsolock
);
760 scp
= skp
->smk_cipso
;
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
);
771 mutex_unlock(&smack_cipso_lock
);
777 static const struct file_operations smk_cipso_ops
= {
778 .open
= smk_open_cipso
,
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
)
793 if (list_empty(&smk_netlbladdr_list
))
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
;
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
;
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
);
831 static void netlbladdr_seq_stop(struct seq_file
*s
, void *v
)
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
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
);
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
);
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
);
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
);
899 * smk_write_netlbladdr - write() for /smack/netlabel
900 * @file: file pointer, not actually used
901 * @buf: where to get the data from
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
];
915 char data
[SMK_NETLBLADDRMAX
+ 1];
916 char *host
= (char *)&newname
.sin_addr
.s_addr
;
918 struct netlbl_audit audit_info
;
922 u32 mask_bits
= (1<<31);
927 * Must have privilege.
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
))
937 if (count
< SMK_NETLBLADDRMIN
|| count
> SMK_NETLBLADDRMAX
)
939 if (copy_from_user(data
, buf
, count
) != 0)
944 rc
= sscanf(data
, "%hhd.%hhd.%hhd.%hhd/%d %s",
945 &host
[0], &host
[1], &host
[2], &host
[3], &m
, smack
);
947 rc
= sscanf(data
, "%hhd.%hhd.%hhd.%hhd %s",
948 &host
[0], &host
[1], &host
[2], &host
[3], smack
);
956 /* if smack begins with '-', its an option, don't import it */
957 if (smack
[0] != '-') {
958 sp
= smk_import(smack
, 0);
962 /* check known options */
963 if (strcmp(smack
, smack_cipso_option
) == 0)
964 sp
= (char *)smack_cipso_option
;
969 for (temp_mask
= 0; m
> 0; m
--) {
970 temp_mask
|= mask_bits
;
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 */
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
) {
992 smk_netlabel_audit_set(&audit_info
);
995 skp
= kzalloc(sizeof(*skp
), GFP_KERNEL
);
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
);
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
);
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
);
1030 mutex_unlock(&smk_netlbladdr_lock
);
1035 static const struct file_operations smk_netlbladdr_ops
= {
1036 .open
= smk_open_netlbladdr
,
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
)
1061 sprintf(temp
, "%d", smk_cipso_doi_value
);
1062 rc
= simple_read_from_buffer(buf
, count
, ppos
, temp
, strlen(temp
));
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
)
1082 if (!capable(CAP_MAC_ADMIN
))
1085 if (count
>= sizeof(temp
) || count
== 0)
1088 if (copy_from_user(temp
, buf
, count
) != 0)
1093 if (sscanf(temp
, "%d", &i
) != 1)
1096 smk_cipso_doi_value
= i
;
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
)
1127 sprintf(temp
, "%d", smack_cipso_direct
);
1128 rc
= simple_read_from_buffer(buf
, count
, ppos
, temp
, strlen(temp
));
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
)
1148 if (!capable(CAP_MAC_ADMIN
))
1151 if (count
>= sizeof(temp
) || count
== 0)
1154 if (copy_from_user(temp
, buf
, count
) != 0)
1159 if (sscanf(temp
, "%d", &i
) != 1)
1162 smack_cipso_direct
= i
;
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
)
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;
1199 rc
= simple_read_from_buffer(buf
, cn
, ppos
,
1200 smack_net_ambient
, asize
);
1204 mutex_unlock(&smack_ambient_lock
);
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
];
1225 if (!capable(CAP_MAC_ADMIN
))
1228 if (count
>= SMK_LABELLEN
)
1231 if (copy_from_user(in
, buf
, count
) != 0)
1234 smack
= smk_import(in
, count
);
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
);
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
)
1268 ssize_t rc
= -EINVAL
;
1274 if (smack_onlycap
!= NULL
)
1275 smack
= smack_onlycap
;
1277 asize
= strlen(smack
) + 1;
1280 rc
= simple_read_from_buffer(buf
, cn
, ppos
, smack
, asize
);
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
))
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
)
1311 if (count
>= SMK_LABELLEN
)
1314 if (copy_from_user(in
, buf
, count
) != 0)
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
);
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
)
1353 sprintf(temp
, "%d\n", log_policy
);
1354 rc
= simple_read_from_buffer(buf
, count
, ppos
, temp
, strlen(temp
));
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
)
1373 if (!capable(CAP_MAC_ADMIN
))
1376 if (count
>= sizeof(temp
) || count
== 0)
1379 if (copy_from_user(temp
, buf
, count
) != 0)
1384 if (sscanf(temp
, "%d", &i
) != 1)
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
)
1410 if (list_empty(&tsp
->smk_rules
))
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
;
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
);
1438 if (srp
->smk_access
& MAY_READ
)
1440 if (srp
->smk_access
& MAY_WRITE
)
1442 if (srp
->smk_access
& MAY_EXEC
)
1444 if (srp
->smk_access
& MAY_APPEND
)
1446 if (srp
->smk_access
& MAY_TRANSMUTE
)
1448 if (srp
->smk_access
== 0)
1456 static void load_self_seq_stop(struct seq_file
*s
, void *v
)
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
,
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
;
1520 data
= simple_transaction_get(file
, buf
, count
);
1522 return PTR_ERR(data
);
1524 if (count
< SMK_LOADLEN
|| smk_parse_rule(data
, &rule
, 0))
1527 res
= smk_access(rule
.smk_subject
, rule
.smk_object
, rule
.smk_access
,
1529 data
[0] = res
== 0 ? '1' : '0';
1532 simple_transaction_set(file
, 2);
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
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
)
1556 struct inode
*root_inode
;
1558 static struct tree_descr smack_files
[] = {
1560 "load", &smk_load_ops
, S_IRUGO
|S_IWUSR
},
1562 "cipso", &smk_cipso_ops
, S_IRUGO
|S_IWUSR
},
1564 "doi", &smk_doi_ops
, S_IRUGO
|S_IWUSR
},
1566 "direct", &smk_direct_ops
, S_IRUGO
|S_IWUSR
},
1568 "ambient", &smk_ambient_ops
, S_IRUGO
|S_IWUSR
},
1569 [SMK_NETLBLADDR
] = {
1570 "netlabel", &smk_netlbladdr_ops
, S_IRUGO
|S_IWUSR
},
1572 "onlycap", &smk_onlycap_ops
, S_IRUGO
|S_IWUSR
},
1574 "logging", &smk_logging_ops
, S_IRUGO
|S_IWUSR
},
1576 "load-self", &smk_load_self_ops
, S_IRUGO
|S_IWUGO
},
1578 "access", &smk_access_ops
, S_IRUGO
|S_IWUGO
},
1583 rc
= simple_fill_super(sb
, SMACK_MAGIC
, smack_files
);
1585 printk(KERN_ERR
"%s failed %d while creating inodes\n",
1590 root_inode
= sb
->s_root
->d_inode
;
1591 root_inode
->i_security
= new_inode_smack(smack_known_floor
.smk_known
);
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
= {
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)
1638 if (!security_module_enable(&smack_ops
))
1641 err
= register_filesystem(&smk_fs_type
);
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
;
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
);
1671 __initcall(init_smk_fs
);