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/cipso_ipv4.h>
26 #include <linux/seq_file.h>
27 #include <linux/ctype.h>
28 #include <linux/audit.h>
29 #include <linux/magic.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 */
48 SMK_MAPPED
= 13, /* CIPSO level indicating mapped label */
49 SMK_LOAD2
= 14, /* load policy with long labels */
50 SMK_LOAD_SELF2
= 15, /* load task specific rules with long labels */
51 SMK_ACCESS2
= 16, /* make an access check with long labels */
52 SMK_CIPSO2
= 17, /* load long label -> CIPSO mapping */
53 SMK_REVOKE_SUBJ
= 18, /* set rules with subject label to '-' */
54 SMK_CHANGE_RULE
= 19, /* change or add rules (long labels) */
60 static DEFINE_MUTEX(smack_cipso_lock
);
61 static DEFINE_MUTEX(smack_ambient_lock
);
62 static DEFINE_MUTEX(smk_netlbladdr_lock
);
65 * This is the "ambient" label for network traffic.
66 * If it isn't somehow marked, use this.
67 * It can be reset via smackfs/ambient
69 struct smack_known
*smack_net_ambient
;
72 * This is the level in a CIPSO header that indicates a
73 * smack label is contained directly in the category set.
74 * It can be reset via smackfs/direct
76 int smack_cipso_direct
= SMACK_CIPSO_DIRECT_DEFAULT
;
79 * This is the level in a CIPSO header that indicates a
80 * secid is contained directly in the category set.
81 * It can be reset via smackfs/mapped
83 int smack_cipso_mapped
= SMACK_CIPSO_MAPPED_DEFAULT
;
86 * Unless a process is running with this label even
87 * having CAP_MAC_OVERRIDE isn't enough to grant
88 * privilege to violate MAC policy. If no label is
89 * designated (the NULL case) capabilities apply to
90 * everyone. It is expected that the hat (^) label
91 * will be used if any label is used.
96 * Certain IP addresses may be designated as single label hosts.
97 * Packets are sent there unlabeled, but only from tasks that
98 * can write to the specified label.
101 LIST_HEAD(smk_netlbladdr_list
);
104 * Rule lists are maintained for each label.
105 * This master list is just for reading /smack/load and /smack/load2.
107 struct smack_master_list
{
108 struct list_head list
;
109 struct smack_rule
*smk_rule
;
112 LIST_HEAD(smack_rule_list
);
114 struct smack_parsed_rule
{
115 struct smack_known
*smk_subject
;
121 static int smk_cipso_doi_value
= SMACK_CIPSO_DOI_DEFAULT
;
123 const char *smack_cipso_option
= SMACK_CIPSO_OPTION
;
126 * Values for parsing cipso rules
127 * SMK_DIGITLEN: Length of a digit field in a rule.
128 * SMK_CIPSOMIN: Minimum possible cipso rule length.
129 * SMK_CIPSOMAX: Maximum possible cipso rule length.
131 #define SMK_DIGITLEN 4
132 #define SMK_CIPSOMIN (SMK_LABELLEN + 2 * SMK_DIGITLEN)
133 #define SMK_CIPSOMAX (SMK_CIPSOMIN + SMACK_CIPSO_MAXCATNUM * SMK_DIGITLEN)
136 * Values for parsing MAC rules
137 * SMK_ACCESS: Maximum possible combination of access permissions
138 * SMK_ACCESSLEN: Maximum length for a rule access field
139 * SMK_LOADLEN: Smack rule length
141 #define SMK_OACCESS "rwxa"
142 #define SMK_ACCESS "rwxat"
143 #define SMK_OACCESSLEN (sizeof(SMK_OACCESS) - 1)
144 #define SMK_ACCESSLEN (sizeof(SMK_ACCESS) - 1)
145 #define SMK_OLOADLEN (SMK_LABELLEN + SMK_LABELLEN + SMK_OACCESSLEN)
146 #define SMK_LOADLEN (SMK_LABELLEN + SMK_LABELLEN + SMK_ACCESSLEN)
149 * Stricly for CIPSO level manipulation.
150 * Set the category bit number in a smack label sized buffer.
152 static inline void smack_catset_bit(unsigned int cat
, char *catsetp
)
154 if (cat
== 0 || cat
> (SMK_CIPSOLEN
* 8))
157 catsetp
[(cat
- 1) / 8] |= 0x80 >> ((cat
- 1) % 8);
161 * smk_netlabel_audit_set - fill a netlbl_audit struct
162 * @nap: structure to fill
164 static void smk_netlabel_audit_set(struct netlbl_audit
*nap
)
166 struct smack_known
*skp
= smk_of_current();
168 nap
->loginuid
= audit_get_loginuid(current
);
169 nap
->sessionid
= audit_get_sessionid(current
);
170 nap
->secid
= skp
->smk_secid
;
174 * Value for parsing single label host rules
177 #define SMK_NETLBLADDRMIN 9
180 * smk_set_access - add a rule to the rule list or replace an old rule
181 * @srp: the rule to add or replace
182 * @rule_list: the list of rules
183 * @rule_lock: the rule list lock
184 * @global: if non-zero, indicates a global rule
186 * Looks through the current subject/object/access list for
187 * the subject/object pair and replaces the access that was
188 * there. If the pair isn't found add it with the specified
191 * Returns 0 if nothing goes wrong or -ENOMEM if it fails
192 * during the allocation of the new pair to add.
194 static int smk_set_access(struct smack_parsed_rule
*srp
,
195 struct list_head
*rule_list
,
196 struct mutex
*rule_lock
, int global
)
198 struct smack_rule
*sp
;
199 struct smack_master_list
*smlp
;
203 mutex_lock(rule_lock
);
206 * Because the object label is less likely to match
207 * than the subject label check it first
209 list_for_each_entry_rcu(sp
, rule_list
, list
) {
210 if (sp
->smk_object
== srp
->smk_object
&&
211 sp
->smk_subject
== srp
->smk_subject
) {
213 sp
->smk_access
|= srp
->smk_access1
;
214 sp
->smk_access
&= ~srp
->smk_access2
;
220 sp
= kzalloc(sizeof(*sp
), GFP_KERNEL
);
226 sp
->smk_subject
= srp
->smk_subject
;
227 sp
->smk_object
= srp
->smk_object
;
228 sp
->smk_access
= srp
->smk_access1
& ~srp
->smk_access2
;
230 list_add_rcu(&sp
->list
, rule_list
);
232 * If this is a global as opposed to self and a new rule
233 * it needs to get added for reporting.
236 smlp
= kzalloc(sizeof(*smlp
), GFP_KERNEL
);
239 list_add_rcu(&smlp
->list
, &smack_rule_list
);
246 mutex_unlock(rule_lock
);
251 * smk_perm_from_str - parse smack accesses from a text string
252 * @string: a text string that contains a Smack accesses code
254 * Returns an integer with respective bits set for specified accesses.
256 static int smk_perm_from_str(const char *string
)
261 for (cp
= string
; ; cp
++)
283 perm
|= MAY_TRANSMUTE
;
291 * smk_fill_rule - Fill Smack rule from strings
292 * @subject: subject label string
293 * @object: object label string
294 * @access1: access string
295 * @access2: string with permissions to be removed
297 * @import: if non-zero, import labels
298 * @len: label length limit
300 * Returns 0 on success, -1 on failure
302 static int smk_fill_rule(const char *subject
, const char *object
,
303 const char *access1
, const char *access2
,
304 struct smack_parsed_rule
*rule
, int import
,
308 struct smack_known
*skp
;
311 rule
->smk_subject
= smk_import_entry(subject
, len
);
312 if (rule
->smk_subject
== NULL
)
315 rule
->smk_object
= smk_import(object
, len
);
316 if (rule
->smk_object
== NULL
)
319 cp
= smk_parse_smack(subject
, len
);
322 skp
= smk_find_entry(cp
);
326 rule
->smk_subject
= skp
;
328 cp
= smk_parse_smack(object
, len
);
331 skp
= smk_find_entry(cp
);
335 rule
->smk_object
= skp
->smk_known
;
338 rule
->smk_access1
= smk_perm_from_str(access1
);
340 rule
->smk_access2
= smk_perm_from_str(access2
);
342 rule
->smk_access2
= ~rule
->smk_access1
;
348 * smk_parse_rule - parse Smack rule from load string
349 * @data: string to be parsed whose size is SMK_LOADLEN
351 * @import: if non-zero, import labels
353 * Returns 0 on success, -1 on errors.
355 static int smk_parse_rule(const char *data
, struct smack_parsed_rule
*rule
,
360 rc
= smk_fill_rule(data
, data
+ SMK_LABELLEN
,
361 data
+ SMK_LABELLEN
+ SMK_LABELLEN
, NULL
, rule
,
362 import
, SMK_LABELLEN
);
367 * smk_parse_long_rule - parse Smack rule from rule string
368 * @data: string to be parsed, null terminated
369 * @rule: Will be filled with Smack parsed rule
370 * @import: if non-zero, import labels
371 * @tokens: numer of substrings expected in data
373 * Returns number of processed bytes on success, -1 on failure.
375 static ssize_t
smk_parse_long_rule(char *data
, struct smack_parsed_rule
*rule
,
376 int import
, int tokens
)
383 * Parsing the rule in-place, filling all white-spaces with '\0'
385 for (i
= 0; i
< tokens
; ++i
) {
386 while (isspace(data
[cnt
]))
389 if (data
[cnt
] == '\0')
390 /* Unexpected end of data */
395 while (data
[cnt
] && !isspace(data
[cnt
]))
398 while (isspace(data
[cnt
]))
404 if (smk_fill_rule(tok
[0], tok
[1], tok
[2], tok
[3], rule
, import
, 0))
410 #define SMK_FIXED24_FMT 0 /* Fixed 24byte label format */
411 #define SMK_LONG_FMT 1 /* Variable long label format */
412 #define SMK_CHANGE_FMT 2 /* Rule modification format */
414 * smk_write_rules_list - write() for any /smack rule file
415 * @file: file pointer, not actually used
416 * @buf: where to get the data from
418 * @ppos: where to start - must be 0
419 * @rule_list: the list of rules to write to
420 * @rule_lock: lock for the rule list
421 * @format: /smack/load or /smack/load2 or /smack/change-rule format.
423 * Get one smack access rule from above.
424 * The format for SMK_LONG_FMT is:
425 * "subject<whitespace>object<whitespace>access[<whitespace>...]"
426 * The format for SMK_FIXED24_FMT is exactly:
427 * "subject object rwxat"
428 * The format for SMK_CHANGE_FMT is:
429 * "subject<whitespace>object<whitespace>
430 * acc_enable<whitespace>acc_disable[<whitespace>...]"
432 static ssize_t
smk_write_rules_list(struct file
*file
, const char __user
*buf
,
433 size_t count
, loff_t
*ppos
,
434 struct list_head
*rule_list
,
435 struct mutex
*rule_lock
, int format
)
437 struct smack_parsed_rule rule
;
446 * Enough data must be present.
451 if (format
== SMK_FIXED24_FMT
) {
453 * Minor hack for backward compatibility
455 if (count
!= SMK_OLOADLEN
&& count
!= SMK_LOADLEN
)
458 if (count
>= PAGE_SIZE
) {
459 count
= PAGE_SIZE
- 1;
464 data
= kmalloc(count
+ 1, GFP_KERNEL
);
468 if (copy_from_user(data
, buf
, count
) != 0) {
474 * In case of parsing only part of user buf,
475 * avoid having partial rule at the data buffer
478 while (count
> 0 && (data
[count
- 1] != '\n'))
487 tokens
= (format
== SMK_CHANGE_FMT
? 4 : 3);
488 while (cnt
< count
) {
489 if (format
== SMK_FIXED24_FMT
) {
490 rc
= smk_parse_rule(data
, &rule
, 1);
497 rc
= smk_parse_long_rule(data
+ cnt
, &rule
, 1, tokens
);
505 if (rule_list
== NULL
)
506 rc
= smk_set_access(&rule
, &rule
.smk_subject
->smk_rules
,
507 &rule
.smk_subject
->smk_rules_lock
, 1);
509 rc
= smk_set_access(&rule
, rule_list
, rule_lock
, 0);
522 * Core logic for smackfs seq list operations.
525 static void *smk_seq_start(struct seq_file
*s
, loff_t
*pos
,
526 struct list_head
*head
)
528 struct list_head
*list
;
531 * This is 0 the first time through.
536 if (s
->private == NULL
)
540 if (list_empty(list
))
548 static void *smk_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
,
549 struct list_head
*head
)
551 struct list_head
*list
= v
;
553 if (list_is_last(list
, head
)) {
557 s
->private = list
->next
;
561 static void smk_seq_stop(struct seq_file
*s
, void *v
)
566 static void smk_rule_show(struct seq_file
*s
, struct smack_rule
*srp
, int max
)
569 * Don't show any rules with label names too long for
570 * interface file (/smack/load or /smack/load2)
571 * because you should expect to be able to write
572 * anything you read back.
574 if (strlen(srp
->smk_subject
->smk_known
) >= max
||
575 strlen(srp
->smk_object
) >= max
)
578 if (srp
->smk_access
== 0)
581 seq_printf(s
, "%s %s", srp
->smk_subject
->smk_known
, srp
->smk_object
);
585 if (srp
->smk_access
& MAY_READ
)
587 if (srp
->smk_access
& MAY_WRITE
)
589 if (srp
->smk_access
& MAY_EXEC
)
591 if (srp
->smk_access
& MAY_APPEND
)
593 if (srp
->smk_access
& MAY_TRANSMUTE
)
600 * Seq_file read operations for /smack/load
603 static void *load2_seq_start(struct seq_file
*s
, loff_t
*pos
)
605 return smk_seq_start(s
, pos
, &smack_rule_list
);
608 static void *load2_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
610 return smk_seq_next(s
, v
, pos
, &smack_rule_list
);
613 static int load_seq_show(struct seq_file
*s
, void *v
)
615 struct list_head
*list
= v
;
616 struct smack_master_list
*smlp
=
617 list_entry(list
, struct smack_master_list
, list
);
619 smk_rule_show(s
, smlp
->smk_rule
, SMK_LABELLEN
);
624 static const struct seq_operations load_seq_ops
= {
625 .start
= load2_seq_start
,
626 .next
= load2_seq_next
,
627 .show
= load_seq_show
,
628 .stop
= smk_seq_stop
,
632 * smk_open_load - open() for /smack/load
633 * @inode: inode structure representing file
634 * @file: "load" file pointer
636 * For reading, use load_seq_* seq_file reading operations.
638 static int smk_open_load(struct inode
*inode
, struct file
*file
)
640 return seq_open(file
, &load_seq_ops
);
644 * smk_write_load - write() for /smack/load
645 * @file: file pointer, not actually used
646 * @buf: where to get the data from
648 * @ppos: where to start - must be 0
651 static ssize_t
smk_write_load(struct file
*file
, const char __user
*buf
,
652 size_t count
, loff_t
*ppos
)
655 * Must have privilege.
657 * Enough data must be present.
659 if (!smack_privileged(CAP_MAC_ADMIN
))
662 return smk_write_rules_list(file
, buf
, count
, ppos
, NULL
, NULL
,
666 static const struct file_operations smk_load_ops
= {
667 .open
= smk_open_load
,
670 .write
= smk_write_load
,
671 .release
= seq_release
,
675 * smk_cipso_doi - initialize the CIPSO domain
677 static void smk_cipso_doi(void)
680 struct cipso_v4_doi
*doip
;
681 struct netlbl_audit nai
;
683 smk_netlabel_audit_set(&nai
);
685 rc
= netlbl_cfg_map_del(NULL
, PF_INET
, NULL
, NULL
, &nai
);
687 printk(KERN_WARNING
"%s:%d remove rc = %d\n",
688 __func__
, __LINE__
, rc
);
690 doip
= kmalloc(sizeof(struct cipso_v4_doi
), GFP_KERNEL
);
692 panic("smack: Failed to initialize cipso DOI.\n");
693 doip
->map
.std
= NULL
;
694 doip
->doi
= smk_cipso_doi_value
;
695 doip
->type
= CIPSO_V4_MAP_PASS
;
696 doip
->tags
[0] = CIPSO_V4_TAG_RBITMAP
;
697 for (rc
= 1; rc
< CIPSO_V4_TAG_MAXCNT
; rc
++)
698 doip
->tags
[rc
] = CIPSO_V4_TAG_INVALID
;
700 rc
= netlbl_cfg_cipsov4_add(doip
, &nai
);
702 printk(KERN_WARNING
"%s:%d cipso add rc = %d\n",
703 __func__
, __LINE__
, rc
);
707 rc
= netlbl_cfg_cipsov4_map_add(doip
->doi
, NULL
, NULL
, NULL
, &nai
);
709 printk(KERN_WARNING
"%s:%d map add rc = %d\n",
710 __func__
, __LINE__
, rc
);
717 * smk_unlbl_ambient - initialize the unlabeled domain
718 * @oldambient: previous domain string
720 static void smk_unlbl_ambient(char *oldambient
)
723 struct netlbl_audit nai
;
725 smk_netlabel_audit_set(&nai
);
727 if (oldambient
!= NULL
) {
728 rc
= netlbl_cfg_map_del(oldambient
, PF_INET
, NULL
, NULL
, &nai
);
730 printk(KERN_WARNING
"%s:%d remove rc = %d\n",
731 __func__
, __LINE__
, rc
);
733 if (smack_net_ambient
== NULL
)
734 smack_net_ambient
= &smack_known_floor
;
736 rc
= netlbl_cfg_unlbl_map_add(smack_net_ambient
->smk_known
, PF_INET
,
739 printk(KERN_WARNING
"%s:%d add rc = %d\n",
740 __func__
, __LINE__
, rc
);
744 * Seq_file read operations for /smack/cipso
747 static void *cipso_seq_start(struct seq_file
*s
, loff_t
*pos
)
749 return smk_seq_start(s
, pos
, &smack_known_list
);
752 static void *cipso_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
754 return smk_seq_next(s
, v
, pos
, &smack_known_list
);
758 * Print cipso labels in format:
759 * label level[/cat[,cat]]
761 static int cipso_seq_show(struct seq_file
*s
, void *v
)
763 struct list_head
*list
= v
;
764 struct smack_known
*skp
=
765 list_entry(list
, struct smack_known
, list
);
766 struct netlbl_lsm_secattr_catmap
*cmp
= skp
->smk_netlabel
.attr
.mls
.cat
;
771 * Don't show a label that could not have been set using
772 * /smack/cipso. This is in support of the notion that
773 * anything read from /smack/cipso ought to be writeable
776 * /smack/cipso2 should be used instead.
778 if (strlen(skp
->smk_known
) >= SMK_LABELLEN
)
781 seq_printf(s
, "%s %3d", skp
->smk_known
, skp
->smk_netlabel
.attr
.mls
.lvl
);
783 for (i
= netlbl_secattr_catmap_walk(cmp
, 0); i
>= 0;
784 i
= netlbl_secattr_catmap_walk(cmp
, i
+ 1)) {
785 seq_printf(s
, "%c%d", sep
, i
);
794 static const struct seq_operations cipso_seq_ops
= {
795 .start
= cipso_seq_start
,
796 .next
= cipso_seq_next
,
797 .show
= cipso_seq_show
,
798 .stop
= smk_seq_stop
,
802 * smk_open_cipso - open() for /smack/cipso
803 * @inode: inode structure representing file
804 * @file: "cipso" file pointer
806 * Connect our cipso_seq_* operations with /smack/cipso
809 static int smk_open_cipso(struct inode
*inode
, struct file
*file
)
811 return seq_open(file
, &cipso_seq_ops
);
815 * smk_set_cipso - do the work for write() for cipso and cipso2
816 * @file: file pointer, not actually used
817 * @buf: where to get the data from
819 * @ppos: where to start
820 * @format: /smack/cipso or /smack/cipso2
822 * Accepts only one cipso rule per write call.
823 * Returns number of bytes written or error code, as appropriate
825 static ssize_t
smk_set_cipso(struct file
*file
, const char __user
*buf
,
826 size_t count
, loff_t
*ppos
, int format
)
828 struct smack_known
*skp
;
829 struct netlbl_lsm_secattr ncats
;
830 char mapcatset
[SMK_CIPSOLEN
];
834 ssize_t rc
= -EINVAL
;
841 * Must have privilege.
843 * Enough data must be present.
845 if (!smack_privileged(CAP_MAC_ADMIN
))
849 if (format
== SMK_FIXED24_FMT
&&
850 (count
< SMK_CIPSOMIN
|| count
> SMK_CIPSOMAX
))
853 data
= kzalloc(count
+ 1, GFP_KERNEL
);
857 if (copy_from_user(data
, buf
, count
) != 0) {
865 * Only allow one writer at a time. Writes should be
866 * quite rare and small in any case.
868 mutex_lock(&smack_cipso_lock
);
870 skp
= smk_import_entry(rule
, 0);
874 if (format
== SMK_FIXED24_FMT
)
875 rule
+= SMK_LABELLEN
;
877 rule
+= strlen(skp
->smk_known
) + 1;
879 ret
= sscanf(rule
, "%d", &maplevel
);
880 if (ret
!= 1 || maplevel
> SMACK_CIPSO_MAXLEVEL
)
883 rule
+= SMK_DIGITLEN
;
884 ret
= sscanf(rule
, "%d", &catlen
);
885 if (ret
!= 1 || catlen
> SMACK_CIPSO_MAXCATNUM
)
888 if (format
== SMK_FIXED24_FMT
&&
889 count
!= (SMK_CIPSOMIN
+ catlen
* SMK_DIGITLEN
))
892 memset(mapcatset
, 0, sizeof(mapcatset
));
894 for (i
= 0; i
< catlen
; i
++) {
895 rule
+= SMK_DIGITLEN
;
896 ret
= sscanf(rule
, "%u", &cat
);
897 if (ret
!= 1 || cat
> SMACK_CIPSO_MAXCATNUM
)
900 smack_catset_bit(cat
, mapcatset
);
903 rc
= smk_netlbl_mls(maplevel
, mapcatset
, &ncats
, SMK_CIPSOLEN
);
905 netlbl_secattr_catmap_free(skp
->smk_netlabel
.attr
.mls
.cat
);
906 skp
->smk_netlabel
.attr
.mls
.cat
= ncats
.attr
.mls
.cat
;
907 skp
->smk_netlabel
.attr
.mls
.lvl
= ncats
.attr
.mls
.lvl
;
912 mutex_unlock(&smack_cipso_lock
);
919 * smk_write_cipso - write() for /smack/cipso
920 * @file: file pointer, not actually used
921 * @buf: where to get the data from
923 * @ppos: where to start
925 * Accepts only one cipso rule per write call.
926 * Returns number of bytes written or error code, as appropriate
928 static ssize_t
smk_write_cipso(struct file
*file
, const char __user
*buf
,
929 size_t count
, loff_t
*ppos
)
931 return smk_set_cipso(file
, buf
, count
, ppos
, SMK_FIXED24_FMT
);
934 static const struct file_operations smk_cipso_ops
= {
935 .open
= smk_open_cipso
,
938 .write
= smk_write_cipso
,
939 .release
= seq_release
,
943 * Seq_file read operations for /smack/cipso2
947 * Print cipso labels in format:
948 * label level[/cat[,cat]]
950 static int cipso2_seq_show(struct seq_file
*s
, void *v
)
952 struct list_head
*list
= v
;
953 struct smack_known
*skp
=
954 list_entry(list
, struct smack_known
, list
);
955 struct netlbl_lsm_secattr_catmap
*cmp
= skp
->smk_netlabel
.attr
.mls
.cat
;
959 seq_printf(s
, "%s %3d", skp
->smk_known
, skp
->smk_netlabel
.attr
.mls
.lvl
);
961 for (i
= netlbl_secattr_catmap_walk(cmp
, 0); i
>= 0;
962 i
= netlbl_secattr_catmap_walk(cmp
, i
+ 1)) {
963 seq_printf(s
, "%c%d", sep
, i
);
972 static const struct seq_operations cipso2_seq_ops
= {
973 .start
= cipso_seq_start
,
974 .next
= cipso_seq_next
,
975 .show
= cipso2_seq_show
,
976 .stop
= smk_seq_stop
,
980 * smk_open_cipso2 - open() for /smack/cipso2
981 * @inode: inode structure representing file
982 * @file: "cipso2" file pointer
984 * Connect our cipso_seq_* operations with /smack/cipso2
987 static int smk_open_cipso2(struct inode
*inode
, struct file
*file
)
989 return seq_open(file
, &cipso2_seq_ops
);
993 * smk_write_cipso2 - write() for /smack/cipso2
994 * @file: file pointer, not actually used
995 * @buf: where to get the data from
997 * @ppos: where to start
999 * Accepts only one cipso rule per write call.
1000 * Returns number of bytes written or error code, as appropriate
1002 static ssize_t
smk_write_cipso2(struct file
*file
, const char __user
*buf
,
1003 size_t count
, loff_t
*ppos
)
1005 return smk_set_cipso(file
, buf
, count
, ppos
, SMK_LONG_FMT
);
1008 static const struct file_operations smk_cipso2_ops
= {
1009 .open
= smk_open_cipso2
,
1011 .llseek
= seq_lseek
,
1012 .write
= smk_write_cipso2
,
1013 .release
= seq_release
,
1017 * Seq_file read operations for /smack/netlabel
1020 static void *netlbladdr_seq_start(struct seq_file
*s
, loff_t
*pos
)
1022 return smk_seq_start(s
, pos
, &smk_netlbladdr_list
);
1025 static void *netlbladdr_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
1027 return smk_seq_next(s
, v
, pos
, &smk_netlbladdr_list
);
1029 #define BEBITS (sizeof(__be32) * 8)
1032 * Print host/label pairs
1034 static int netlbladdr_seq_show(struct seq_file
*s
, void *v
)
1036 struct list_head
*list
= v
;
1037 struct smk_netlbladdr
*skp
=
1038 list_entry(list
, struct smk_netlbladdr
, list
);
1039 unsigned char *hp
= (char *) &skp
->smk_host
.sin_addr
.s_addr
;
1041 u32 temp_mask
= be32_to_cpu(skp
->smk_mask
.s_addr
);
1043 for (maskn
= 0; temp_mask
; temp_mask
<<= 1, maskn
++);
1045 seq_printf(s
, "%u.%u.%u.%u/%d %s\n",
1046 hp
[0], hp
[1], hp
[2], hp
[3], maskn
, skp
->smk_label
);
1051 static const struct seq_operations netlbladdr_seq_ops
= {
1052 .start
= netlbladdr_seq_start
,
1053 .next
= netlbladdr_seq_next
,
1054 .show
= netlbladdr_seq_show
,
1055 .stop
= smk_seq_stop
,
1059 * smk_open_netlbladdr - open() for /smack/netlabel
1060 * @inode: inode structure representing file
1061 * @file: "netlabel" file pointer
1063 * Connect our netlbladdr_seq_* operations with /smack/netlabel
1066 static int smk_open_netlbladdr(struct inode
*inode
, struct file
*file
)
1068 return seq_open(file
, &netlbladdr_seq_ops
);
1072 * smk_netlbladdr_insert
1073 * @new : netlabel to insert
1075 * This helper insert netlabel in the smack_netlbladdrs list
1076 * sorted by netmask length (longest to smallest)
1077 * locked by &smk_netlbladdr_lock in smk_write_netlbladdr
1080 static void smk_netlbladdr_insert(struct smk_netlbladdr
*new)
1082 struct smk_netlbladdr
*m
, *m_next
;
1084 if (list_empty(&smk_netlbladdr_list
)) {
1085 list_add_rcu(&new->list
, &smk_netlbladdr_list
);
1089 m
= list_entry_rcu(smk_netlbladdr_list
.next
,
1090 struct smk_netlbladdr
, list
);
1092 /* the comparison '>' is a bit hacky, but works */
1093 if (new->smk_mask
.s_addr
> m
->smk_mask
.s_addr
) {
1094 list_add_rcu(&new->list
, &smk_netlbladdr_list
);
1098 list_for_each_entry_rcu(m
, &smk_netlbladdr_list
, list
) {
1099 if (list_is_last(&m
->list
, &smk_netlbladdr_list
)) {
1100 list_add_rcu(&new->list
, &m
->list
);
1103 m_next
= list_entry_rcu(m
->list
.next
,
1104 struct smk_netlbladdr
, list
);
1105 if (new->smk_mask
.s_addr
> m_next
->smk_mask
.s_addr
) {
1106 list_add_rcu(&new->list
, &m
->list
);
1114 * smk_write_netlbladdr - write() for /smack/netlabel
1115 * @file: file pointer, not actually used
1116 * @buf: where to get the data from
1117 * @count: bytes sent
1118 * @ppos: where to start
1120 * Accepts only one netlbladdr per write call.
1121 * Returns number of bytes written or error code, as appropriate
1123 static ssize_t
smk_write_netlbladdr(struct file
*file
, const char __user
*buf
,
1124 size_t count
, loff_t
*ppos
)
1126 struct smk_netlbladdr
*skp
;
1127 struct sockaddr_in newname
;
1131 char *host
= (char *)&newname
.sin_addr
.s_addr
;
1133 struct netlbl_audit audit_info
;
1134 struct in_addr mask
;
1137 u32 mask_bits
= (1<<31);
1142 * Must have privilege.
1143 * No partial writes.
1144 * Enough data must be present.
1145 * "<addr/mask, as a.b.c.d/e><space><label>"
1146 * "<addr, as a.b.c.d><space><label>"
1148 if (!smack_privileged(CAP_MAC_ADMIN
))
1152 if (count
< SMK_NETLBLADDRMIN
)
1155 data
= kzalloc(count
+ 1, GFP_KERNEL
);
1159 if (copy_from_user(data
, buf
, count
) != 0) {
1164 smack
= kzalloc(count
+ 1, GFP_KERNEL
);
1165 if (smack
== NULL
) {
1172 rc
= sscanf(data
, "%hhd.%hhd.%hhd.%hhd/%d %s",
1173 &host
[0], &host
[1], &host
[2], &host
[3], &m
, smack
);
1175 rc
= sscanf(data
, "%hhd.%hhd.%hhd.%hhd %s",
1176 &host
[0], &host
[1], &host
[2], &host
[3], smack
);
1189 * If smack begins with '-', it is an option, don't import it
1191 if (smack
[0] != '-') {
1192 sp
= smk_import(smack
, 0);
1198 /* check known options */
1199 if (strcmp(smack
, smack_cipso_option
) == 0)
1200 sp
= (char *)smack_cipso_option
;
1207 for (temp_mask
= 0; m
> 0; m
--) {
1208 temp_mask
|= mask_bits
;
1211 mask
.s_addr
= cpu_to_be32(temp_mask
);
1213 newname
.sin_addr
.s_addr
&= mask
.s_addr
;
1215 * Only allow one writer at a time. Writes should be
1216 * quite rare and small in any case.
1218 mutex_lock(&smk_netlbladdr_lock
);
1220 nsa
= newname
.sin_addr
.s_addr
;
1221 /* try to find if the prefix is already in the list */
1223 list_for_each_entry_rcu(skp
, &smk_netlbladdr_list
, list
) {
1224 if (skp
->smk_host
.sin_addr
.s_addr
== nsa
&&
1225 skp
->smk_mask
.s_addr
== mask
.s_addr
) {
1230 smk_netlabel_audit_set(&audit_info
);
1233 skp
= kzalloc(sizeof(*skp
), GFP_KERNEL
);
1238 skp
->smk_host
.sin_addr
.s_addr
= newname
.sin_addr
.s_addr
;
1239 skp
->smk_mask
.s_addr
= mask
.s_addr
;
1240 skp
->smk_label
= sp
;
1241 smk_netlbladdr_insert(skp
);
1244 /* we delete the unlabeled entry, only if the previous label
1245 * wasn't the special CIPSO option */
1246 if (skp
->smk_label
!= smack_cipso_option
)
1247 rc
= netlbl_cfg_unlbl_static_del(&init_net
, NULL
,
1248 &skp
->smk_host
.sin_addr
, &skp
->smk_mask
,
1249 PF_INET
, &audit_info
);
1252 skp
->smk_label
= sp
;
1256 * Now tell netlabel about the single label nature of
1257 * this host so that incoming packets get labeled.
1258 * but only if we didn't get the special CIPSO option
1260 if (rc
== 0 && sp
!= smack_cipso_option
)
1261 rc
= netlbl_cfg_unlbl_static_add(&init_net
, NULL
,
1262 &skp
->smk_host
.sin_addr
, &skp
->smk_mask
, PF_INET
,
1263 smack_to_secid(skp
->smk_label
), &audit_info
);
1268 mutex_unlock(&smk_netlbladdr_lock
);
1278 static const struct file_operations smk_netlbladdr_ops
= {
1279 .open
= smk_open_netlbladdr
,
1281 .llseek
= seq_lseek
,
1282 .write
= smk_write_netlbladdr
,
1283 .release
= seq_release
,
1287 * smk_read_doi - read() for /smack/doi
1288 * @filp: file pointer, not actually used
1289 * @buf: where to put the result
1290 * @count: maximum to send along
1291 * @ppos: where to start
1293 * Returns number of bytes read or error code, as appropriate
1295 static ssize_t
smk_read_doi(struct file
*filp
, char __user
*buf
,
1296 size_t count
, loff_t
*ppos
)
1304 sprintf(temp
, "%d", smk_cipso_doi_value
);
1305 rc
= simple_read_from_buffer(buf
, count
, ppos
, temp
, strlen(temp
));
1311 * smk_write_doi - write() for /smack/doi
1312 * @file: file pointer, not actually used
1313 * @buf: where to get the data from
1314 * @count: bytes sent
1315 * @ppos: where to start
1317 * Returns number of bytes written or error code, as appropriate
1319 static ssize_t
smk_write_doi(struct file
*file
, const char __user
*buf
,
1320 size_t count
, loff_t
*ppos
)
1325 if (!smack_privileged(CAP_MAC_ADMIN
))
1328 if (count
>= sizeof(temp
) || count
== 0)
1331 if (copy_from_user(temp
, buf
, count
) != 0)
1336 if (sscanf(temp
, "%d", &i
) != 1)
1339 smk_cipso_doi_value
= i
;
1346 static const struct file_operations smk_doi_ops
= {
1347 .read
= smk_read_doi
,
1348 .write
= smk_write_doi
,
1349 .llseek
= default_llseek
,
1353 * smk_read_direct - read() for /smack/direct
1354 * @filp: file pointer, not actually used
1355 * @buf: where to put the result
1356 * @count: maximum to send along
1357 * @ppos: where to start
1359 * Returns number of bytes read or error code, as appropriate
1361 static ssize_t
smk_read_direct(struct file
*filp
, char __user
*buf
,
1362 size_t count
, loff_t
*ppos
)
1370 sprintf(temp
, "%d", smack_cipso_direct
);
1371 rc
= simple_read_from_buffer(buf
, count
, ppos
, temp
, strlen(temp
));
1377 * smk_write_direct - write() for /smack/direct
1378 * @file: file pointer, not actually used
1379 * @buf: where to get the data from
1380 * @count: bytes sent
1381 * @ppos: where to start
1383 * Returns number of bytes written or error code, as appropriate
1385 static ssize_t
smk_write_direct(struct file
*file
, const char __user
*buf
,
1386 size_t count
, loff_t
*ppos
)
1388 struct smack_known
*skp
;
1392 if (!smack_privileged(CAP_MAC_ADMIN
))
1395 if (count
>= sizeof(temp
) || count
== 0)
1398 if (copy_from_user(temp
, buf
, count
) != 0)
1403 if (sscanf(temp
, "%d", &i
) != 1)
1407 * Don't do anything if the value hasn't actually changed.
1408 * If it is changing reset the level on entries that were
1409 * set up to be direct when they were created.
1411 if (smack_cipso_direct
!= i
) {
1412 mutex_lock(&smack_known_lock
);
1413 list_for_each_entry_rcu(skp
, &smack_known_list
, list
)
1414 if (skp
->smk_netlabel
.attr
.mls
.lvl
==
1416 skp
->smk_netlabel
.attr
.mls
.lvl
= i
;
1417 smack_cipso_direct
= i
;
1418 mutex_unlock(&smack_known_lock
);
1424 static const struct file_operations smk_direct_ops
= {
1425 .read
= smk_read_direct
,
1426 .write
= smk_write_direct
,
1427 .llseek
= default_llseek
,
1431 * smk_read_mapped - read() for /smack/mapped
1432 * @filp: file pointer, not actually used
1433 * @buf: where to put the result
1434 * @count: maximum to send along
1435 * @ppos: where to start
1437 * Returns number of bytes read or error code, as appropriate
1439 static ssize_t
smk_read_mapped(struct file
*filp
, char __user
*buf
,
1440 size_t count
, loff_t
*ppos
)
1448 sprintf(temp
, "%d", smack_cipso_mapped
);
1449 rc
= simple_read_from_buffer(buf
, count
, ppos
, temp
, strlen(temp
));
1455 * smk_write_mapped - write() for /smack/mapped
1456 * @file: file pointer, not actually used
1457 * @buf: where to get the data from
1458 * @count: bytes sent
1459 * @ppos: where to start
1461 * Returns number of bytes written or error code, as appropriate
1463 static ssize_t
smk_write_mapped(struct file
*file
, const char __user
*buf
,
1464 size_t count
, loff_t
*ppos
)
1466 struct smack_known
*skp
;
1470 if (!smack_privileged(CAP_MAC_ADMIN
))
1473 if (count
>= sizeof(temp
) || count
== 0)
1476 if (copy_from_user(temp
, buf
, count
) != 0)
1481 if (sscanf(temp
, "%d", &i
) != 1)
1485 * Don't do anything if the value hasn't actually changed.
1486 * If it is changing reset the level on entries that were
1487 * set up to be mapped when they were created.
1489 if (smack_cipso_mapped
!= i
) {
1490 mutex_lock(&smack_known_lock
);
1491 list_for_each_entry_rcu(skp
, &smack_known_list
, list
)
1492 if (skp
->smk_netlabel
.attr
.mls
.lvl
==
1494 skp
->smk_netlabel
.attr
.mls
.lvl
= i
;
1495 smack_cipso_mapped
= i
;
1496 mutex_unlock(&smack_known_lock
);
1502 static const struct file_operations smk_mapped_ops
= {
1503 .read
= smk_read_mapped
,
1504 .write
= smk_write_mapped
,
1505 .llseek
= default_llseek
,
1509 * smk_read_ambient - read() for /smack/ambient
1510 * @filp: file pointer, not actually used
1511 * @buf: where to put the result
1512 * @cn: maximum to send along
1513 * @ppos: where to start
1515 * Returns number of bytes read or error code, as appropriate
1517 static ssize_t
smk_read_ambient(struct file
*filp
, char __user
*buf
,
1518 size_t cn
, loff_t
*ppos
)
1526 * Being careful to avoid a problem in the case where
1527 * smack_net_ambient gets changed in midstream.
1529 mutex_lock(&smack_ambient_lock
);
1531 asize
= strlen(smack_net_ambient
->smk_known
) + 1;
1534 rc
= simple_read_from_buffer(buf
, cn
, ppos
,
1535 smack_net_ambient
->smk_known
,
1540 mutex_unlock(&smack_ambient_lock
);
1546 * smk_write_ambient - write() for /smack/ambient
1547 * @file: file pointer, not actually used
1548 * @buf: where to get the data from
1549 * @count: bytes sent
1550 * @ppos: where to start
1552 * Returns number of bytes written or error code, as appropriate
1554 static ssize_t
smk_write_ambient(struct file
*file
, const char __user
*buf
,
1555 size_t count
, loff_t
*ppos
)
1557 struct smack_known
*skp
;
1562 if (!smack_privileged(CAP_MAC_ADMIN
))
1565 data
= kzalloc(count
+ 1, GFP_KERNEL
);
1569 if (copy_from_user(data
, buf
, count
) != 0) {
1574 skp
= smk_import_entry(data
, count
);
1580 mutex_lock(&smack_ambient_lock
);
1582 oldambient
= smack_net_ambient
->smk_known
;
1583 smack_net_ambient
= skp
;
1584 smk_unlbl_ambient(oldambient
);
1586 mutex_unlock(&smack_ambient_lock
);
1593 static const struct file_operations smk_ambient_ops
= {
1594 .read
= smk_read_ambient
,
1595 .write
= smk_write_ambient
,
1596 .llseek
= default_llseek
,
1600 * smk_read_onlycap - read() for /smack/onlycap
1601 * @filp: file pointer, not actually used
1602 * @buf: where to put the result
1603 * @cn: maximum to send along
1604 * @ppos: where to start
1606 * Returns number of bytes read or error code, as appropriate
1608 static ssize_t
smk_read_onlycap(struct file
*filp
, char __user
*buf
,
1609 size_t cn
, loff_t
*ppos
)
1612 ssize_t rc
= -EINVAL
;
1618 if (smack_onlycap
!= NULL
)
1619 smack
= smack_onlycap
;
1621 asize
= strlen(smack
) + 1;
1624 rc
= simple_read_from_buffer(buf
, cn
, ppos
, smack
, asize
);
1630 * smk_write_onlycap - write() for /smack/onlycap
1631 * @file: file pointer, not actually used
1632 * @buf: where to get the data from
1633 * @count: bytes sent
1634 * @ppos: where to start
1636 * Returns number of bytes written or error code, as appropriate
1638 static ssize_t
smk_write_onlycap(struct file
*file
, const char __user
*buf
,
1639 size_t count
, loff_t
*ppos
)
1642 struct smack_known
*skp
= smk_of_task(current
->cred
->security
);
1645 if (!smack_privileged(CAP_MAC_ADMIN
))
1649 * This can be done using smk_access() but is done
1650 * explicitly for clarity. The smk_access() implementation
1651 * would use smk_access(smack_onlycap, MAY_WRITE)
1653 if (smack_onlycap
!= NULL
&& smack_onlycap
!= skp
->smk_known
)
1656 data
= kzalloc(count
, GFP_KERNEL
);
1661 * Should the null string be passed in unset the onlycap value.
1662 * This seems like something to be careful with as usually
1663 * smk_import only expects to return NULL for errors. It
1664 * is usually the case that a nullstring or "\n" would be
1665 * bad to pass to smk_import but in fact this is useful here.
1667 * smk_import will also reject a label beginning with '-',
1668 * so "-usecapabilities" will also work.
1670 if (copy_from_user(data
, buf
, count
) != 0)
1673 smack_onlycap
= smk_import(data
, count
);
1679 static const struct file_operations smk_onlycap_ops
= {
1680 .read
= smk_read_onlycap
,
1681 .write
= smk_write_onlycap
,
1682 .llseek
= default_llseek
,
1686 * smk_read_logging - read() for /smack/logging
1687 * @filp: file pointer, not actually used
1688 * @buf: where to put the result
1689 * @cn: maximum to send along
1690 * @ppos: where to start
1692 * Returns number of bytes read or error code, as appropriate
1694 static ssize_t
smk_read_logging(struct file
*filp
, char __user
*buf
,
1695 size_t count
, loff_t
*ppos
)
1703 sprintf(temp
, "%d\n", log_policy
);
1704 rc
= simple_read_from_buffer(buf
, count
, ppos
, temp
, strlen(temp
));
1709 * smk_write_logging - write() for /smack/logging
1710 * @file: file pointer, not actually used
1711 * @buf: where to get the data from
1712 * @count: bytes sent
1713 * @ppos: where to start
1715 * Returns number of bytes written or error code, as appropriate
1717 static ssize_t
smk_write_logging(struct file
*file
, const char __user
*buf
,
1718 size_t count
, loff_t
*ppos
)
1723 if (!smack_privileged(CAP_MAC_ADMIN
))
1726 if (count
>= sizeof(temp
) || count
== 0)
1729 if (copy_from_user(temp
, buf
, count
) != 0)
1734 if (sscanf(temp
, "%d", &i
) != 1)
1744 static const struct file_operations smk_logging_ops
= {
1745 .read
= smk_read_logging
,
1746 .write
= smk_write_logging
,
1747 .llseek
= default_llseek
,
1751 * Seq_file read operations for /smack/load-self
1754 static void *load_self_seq_start(struct seq_file
*s
, loff_t
*pos
)
1756 struct task_smack
*tsp
= current_security();
1758 return smk_seq_start(s
, pos
, &tsp
->smk_rules
);
1761 static void *load_self_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
1763 struct task_smack
*tsp
= current_security();
1765 return smk_seq_next(s
, v
, pos
, &tsp
->smk_rules
);
1768 static int load_self_seq_show(struct seq_file
*s
, void *v
)
1770 struct list_head
*list
= v
;
1771 struct smack_rule
*srp
=
1772 list_entry(list
, struct smack_rule
, list
);
1774 smk_rule_show(s
, srp
, SMK_LABELLEN
);
1779 static const struct seq_operations load_self_seq_ops
= {
1780 .start
= load_self_seq_start
,
1781 .next
= load_self_seq_next
,
1782 .show
= load_self_seq_show
,
1783 .stop
= smk_seq_stop
,
1788 * smk_open_load_self - open() for /smack/load-self2
1789 * @inode: inode structure representing file
1790 * @file: "load" file pointer
1792 * For reading, use load_seq_* seq_file reading operations.
1794 static int smk_open_load_self(struct inode
*inode
, struct file
*file
)
1796 return seq_open(file
, &load_self_seq_ops
);
1800 * smk_write_load_self - write() for /smack/load-self
1801 * @file: file pointer, not actually used
1802 * @buf: where to get the data from
1803 * @count: bytes sent
1804 * @ppos: where to start - must be 0
1807 static ssize_t
smk_write_load_self(struct file
*file
, const char __user
*buf
,
1808 size_t count
, loff_t
*ppos
)
1810 struct task_smack
*tsp
= current_security();
1812 return smk_write_rules_list(file
, buf
, count
, ppos
, &tsp
->smk_rules
,
1813 &tsp
->smk_rules_lock
, SMK_FIXED24_FMT
);
1816 static const struct file_operations smk_load_self_ops
= {
1817 .open
= smk_open_load_self
,
1819 .llseek
= seq_lseek
,
1820 .write
= smk_write_load_self
,
1821 .release
= seq_release
,
1825 * smk_user_access - handle access check transaction
1826 * @file: file pointer
1827 * @buf: data from user space
1828 * @count: bytes sent
1829 * @ppos: where to start - must be 0
1831 static ssize_t
smk_user_access(struct file
*file
, const char __user
*buf
,
1832 size_t count
, loff_t
*ppos
, int format
)
1834 struct smack_parsed_rule rule
;
1838 data
= simple_transaction_get(file
, buf
, count
);
1840 return PTR_ERR(data
);
1842 if (format
== SMK_FIXED24_FMT
) {
1843 if (count
< SMK_LOADLEN
)
1845 res
= smk_parse_rule(data
, &rule
, 0);
1848 * simple_transaction_get() returns null-terminated data
1850 res
= smk_parse_long_rule(data
, &rule
, 0, 3);
1856 res
= smk_access(rule
.smk_subject
, rule
.smk_object
,
1857 rule
.smk_access1
, NULL
);
1858 data
[0] = res
== 0 ? '1' : '0';
1861 simple_transaction_set(file
, 2);
1863 if (format
== SMK_FIXED24_FMT
)
1869 * smk_write_access - handle access check transaction
1870 * @file: file pointer
1871 * @buf: data from user space
1872 * @count: bytes sent
1873 * @ppos: where to start - must be 0
1875 static ssize_t
smk_write_access(struct file
*file
, const char __user
*buf
,
1876 size_t count
, loff_t
*ppos
)
1878 return smk_user_access(file
, buf
, count
, ppos
, SMK_FIXED24_FMT
);
1881 static const struct file_operations smk_access_ops
= {
1882 .write
= smk_write_access
,
1883 .read
= simple_transaction_read
,
1884 .release
= simple_transaction_release
,
1885 .llseek
= generic_file_llseek
,
1890 * Seq_file read operations for /smack/load2
1893 static int load2_seq_show(struct seq_file
*s
, void *v
)
1895 struct list_head
*list
= v
;
1896 struct smack_master_list
*smlp
=
1897 list_entry(list
, struct smack_master_list
, list
);
1899 smk_rule_show(s
, smlp
->smk_rule
, SMK_LONGLABEL
);
1904 static const struct seq_operations load2_seq_ops
= {
1905 .start
= load2_seq_start
,
1906 .next
= load2_seq_next
,
1907 .show
= load2_seq_show
,
1908 .stop
= smk_seq_stop
,
1912 * smk_open_load2 - open() for /smack/load2
1913 * @inode: inode structure representing file
1914 * @file: "load2" file pointer
1916 * For reading, use load2_seq_* seq_file reading operations.
1918 static int smk_open_load2(struct inode
*inode
, struct file
*file
)
1920 return seq_open(file
, &load2_seq_ops
);
1924 * smk_write_load2 - write() for /smack/load2
1925 * @file: file pointer, not actually used
1926 * @buf: where to get the data from
1927 * @count: bytes sent
1928 * @ppos: where to start - must be 0
1931 static ssize_t
smk_write_load2(struct file
*file
, const char __user
*buf
,
1932 size_t count
, loff_t
*ppos
)
1935 * Must have privilege.
1937 if (!smack_privileged(CAP_MAC_ADMIN
))
1940 return smk_write_rules_list(file
, buf
, count
, ppos
, NULL
, NULL
,
1944 static const struct file_operations smk_load2_ops
= {
1945 .open
= smk_open_load2
,
1947 .llseek
= seq_lseek
,
1948 .write
= smk_write_load2
,
1949 .release
= seq_release
,
1953 * Seq_file read operations for /smack/load-self2
1956 static void *load_self2_seq_start(struct seq_file
*s
, loff_t
*pos
)
1958 struct task_smack
*tsp
= current_security();
1960 return smk_seq_start(s
, pos
, &tsp
->smk_rules
);
1963 static void *load_self2_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
1965 struct task_smack
*tsp
= current_security();
1967 return smk_seq_next(s
, v
, pos
, &tsp
->smk_rules
);
1970 static int load_self2_seq_show(struct seq_file
*s
, void *v
)
1972 struct list_head
*list
= v
;
1973 struct smack_rule
*srp
=
1974 list_entry(list
, struct smack_rule
, list
);
1976 smk_rule_show(s
, srp
, SMK_LONGLABEL
);
1981 static const struct seq_operations load_self2_seq_ops
= {
1982 .start
= load_self2_seq_start
,
1983 .next
= load_self2_seq_next
,
1984 .show
= load_self2_seq_show
,
1985 .stop
= smk_seq_stop
,
1989 * smk_open_load_self2 - open() for /smack/load-self2
1990 * @inode: inode structure representing file
1991 * @file: "load" file pointer
1993 * For reading, use load_seq_* seq_file reading operations.
1995 static int smk_open_load_self2(struct inode
*inode
, struct file
*file
)
1997 return seq_open(file
, &load_self2_seq_ops
);
2001 * smk_write_load_self2 - write() for /smack/load-self2
2002 * @file: file pointer, not actually used
2003 * @buf: where to get the data from
2004 * @count: bytes sent
2005 * @ppos: where to start - must be 0
2008 static ssize_t
smk_write_load_self2(struct file
*file
, const char __user
*buf
,
2009 size_t count
, loff_t
*ppos
)
2011 struct task_smack
*tsp
= current_security();
2013 return smk_write_rules_list(file
, buf
, count
, ppos
, &tsp
->smk_rules
,
2014 &tsp
->smk_rules_lock
, SMK_LONG_FMT
);
2017 static const struct file_operations smk_load_self2_ops
= {
2018 .open
= smk_open_load_self2
,
2020 .llseek
= seq_lseek
,
2021 .write
= smk_write_load_self2
,
2022 .release
= seq_release
,
2026 * smk_write_access2 - handle access check transaction
2027 * @file: file pointer
2028 * @buf: data from user space
2029 * @count: bytes sent
2030 * @ppos: where to start - must be 0
2032 static ssize_t
smk_write_access2(struct file
*file
, const char __user
*buf
,
2033 size_t count
, loff_t
*ppos
)
2035 return smk_user_access(file
, buf
, count
, ppos
, SMK_LONG_FMT
);
2038 static const struct file_operations smk_access2_ops
= {
2039 .write
= smk_write_access2
,
2040 .read
= simple_transaction_read
,
2041 .release
= simple_transaction_release
,
2042 .llseek
= generic_file_llseek
,
2046 * smk_write_revoke_subj - write() for /smack/revoke-subject
2047 * @file: file pointer
2048 * @buf: data from user space
2049 * @count: bytes sent
2050 * @ppos: where to start - must be 0
2052 static ssize_t
smk_write_revoke_subj(struct file
*file
, const char __user
*buf
,
2053 size_t count
, loff_t
*ppos
)
2056 const char *cp
= NULL
;
2057 struct smack_known
*skp
;
2058 struct smack_rule
*sp
;
2059 struct list_head
*rule_list
;
2060 struct mutex
*rule_lock
;
2066 if (!smack_privileged(CAP_MAC_ADMIN
))
2069 if (count
== 0 || count
> SMK_LONGLABEL
)
2072 data
= kzalloc(count
, GFP_KERNEL
);
2076 if (copy_from_user(data
, buf
, count
) != 0) {
2081 cp
= smk_parse_smack(data
, count
);
2087 skp
= smk_find_entry(cp
);
2091 rule_list
= &skp
->smk_rules
;
2092 rule_lock
= &skp
->smk_rules_lock
;
2094 mutex_lock(rule_lock
);
2096 list_for_each_entry_rcu(sp
, rule_list
, list
)
2099 mutex_unlock(rule_lock
);
2107 static const struct file_operations smk_revoke_subj_ops
= {
2108 .write
= smk_write_revoke_subj
,
2109 .read
= simple_transaction_read
,
2110 .release
= simple_transaction_release
,
2111 .llseek
= generic_file_llseek
,
2114 static struct kset
*smackfs_kset
;
2116 * smk_init_sysfs - initialize /sys/fs/smackfs
2119 static int smk_init_sysfs(void)
2121 smackfs_kset
= kset_create_and_add("smackfs", NULL
, fs_kobj
);
2128 * smk_write_change_rule - write() for /smack/change-rule
2129 * @file: file pointer
2130 * @buf: data from user space
2131 * @count: bytes sent
2132 * @ppos: where to start - must be 0
2134 static ssize_t
smk_write_change_rule(struct file
*file
, const char __user
*buf
,
2135 size_t count
, loff_t
*ppos
)
2138 * Must have privilege.
2140 if (!capable(CAP_MAC_ADMIN
))
2143 return smk_write_rules_list(file
, buf
, count
, ppos
, NULL
, NULL
,
2147 static const struct file_operations smk_change_rule_ops
= {
2148 .write
= smk_write_change_rule
,
2149 .read
= simple_transaction_read
,
2150 .release
= simple_transaction_release
,
2151 .llseek
= generic_file_llseek
,
2155 * smk_fill_super - fill the /smackfs superblock
2156 * @sb: the empty superblock
2160 * Fill in the well known entries for /smack
2162 * Returns 0 on success, an error code on failure
2164 static int smk_fill_super(struct super_block
*sb
, void *data
, int silent
)
2167 struct inode
*root_inode
;
2169 static struct tree_descr smack_files
[] = {
2171 "load", &smk_load_ops
, S_IRUGO
|S_IWUSR
},
2173 "cipso", &smk_cipso_ops
, S_IRUGO
|S_IWUSR
},
2175 "doi", &smk_doi_ops
, S_IRUGO
|S_IWUSR
},
2177 "direct", &smk_direct_ops
, S_IRUGO
|S_IWUSR
},
2179 "ambient", &smk_ambient_ops
, S_IRUGO
|S_IWUSR
},
2180 [SMK_NETLBLADDR
] = {
2181 "netlabel", &smk_netlbladdr_ops
, S_IRUGO
|S_IWUSR
},
2183 "onlycap", &smk_onlycap_ops
, S_IRUGO
|S_IWUSR
},
2185 "logging", &smk_logging_ops
, S_IRUGO
|S_IWUSR
},
2187 "load-self", &smk_load_self_ops
, S_IRUGO
|S_IWUGO
},
2189 "access", &smk_access_ops
, S_IRUGO
|S_IWUGO
},
2191 "mapped", &smk_mapped_ops
, S_IRUGO
|S_IWUSR
},
2193 "load2", &smk_load2_ops
, S_IRUGO
|S_IWUSR
},
2194 [SMK_LOAD_SELF2
] = {
2195 "load-self2", &smk_load_self2_ops
, S_IRUGO
|S_IWUGO
},
2197 "access2", &smk_access2_ops
, S_IRUGO
|S_IWUGO
},
2199 "cipso2", &smk_cipso2_ops
, S_IRUGO
|S_IWUSR
},
2200 [SMK_REVOKE_SUBJ
] = {
2201 "revoke-subject", &smk_revoke_subj_ops
,
2203 [SMK_CHANGE_RULE
] = {
2204 "change-rule", &smk_change_rule_ops
, S_IRUGO
|S_IWUSR
},
2209 rc
= simple_fill_super(sb
, SMACK_MAGIC
, smack_files
);
2211 printk(KERN_ERR
"%s failed %d while creating inodes\n",
2216 root_inode
= sb
->s_root
->d_inode
;
2222 * smk_mount - get the smackfs superblock
2223 * @fs_type: passed along without comment
2224 * @flags: passed along without comment
2225 * @dev_name: passed along without comment
2226 * @data: passed along without comment
2228 * Just passes everything along.
2230 * Returns what the lower level code does.
2232 static struct dentry
*smk_mount(struct file_system_type
*fs_type
,
2233 int flags
, const char *dev_name
, void *data
)
2235 return mount_single(fs_type
, flags
, data
, smk_fill_super
);
2238 static struct file_system_type smk_fs_type
= {
2241 .kill_sb
= kill_litter_super
,
2244 static struct vfsmount
*smackfs_mount
;
2246 static int __init
smk_preset_netlabel(struct smack_known
*skp
)
2248 skp
->smk_netlabel
.domain
= skp
->smk_known
;
2249 skp
->smk_netlabel
.flags
=
2250 NETLBL_SECATTR_DOMAIN
| NETLBL_SECATTR_MLS_LVL
;
2251 return smk_netlbl_mls(smack_cipso_direct
, skp
->smk_known
,
2252 &skp
->smk_netlabel
, strlen(skp
->smk_known
));
2256 * init_smk_fs - get the smackfs superblock
2258 * register the smackfs
2260 * Do not register smackfs if Smack wasn't enabled
2261 * on boot. We can not put this method normally under the
2262 * smack_init() code path since the security subsystem get
2263 * initialized before the vfs caches.
2265 * Returns true if we were not chosen on boot or if
2266 * we were chosen and filesystem registration succeeded.
2268 static int __init
init_smk_fs(void)
2273 if (!security_module_enable(&smack_ops
))
2276 err
= smk_init_sysfs();
2278 printk(KERN_ERR
"smackfs: sysfs mountpoint problem.\n");
2280 err
= register_filesystem(&smk_fs_type
);
2282 smackfs_mount
= kern_mount(&smk_fs_type
);
2283 if (IS_ERR(smackfs_mount
)) {
2284 printk(KERN_ERR
"smackfs: could not mount!\n");
2285 err
= PTR_ERR(smackfs_mount
);
2286 smackfs_mount
= NULL
;
2291 smk_unlbl_ambient(NULL
);
2293 rc
= smk_preset_netlabel(&smack_known_floor
);
2294 if (err
== 0 && rc
< 0)
2296 rc
= smk_preset_netlabel(&smack_known_hat
);
2297 if (err
== 0 && rc
< 0)
2299 rc
= smk_preset_netlabel(&smack_known_huh
);
2300 if (err
== 0 && rc
< 0)
2302 rc
= smk_preset_netlabel(&smack_known_invalid
);
2303 if (err
== 0 && rc
< 0)
2305 rc
= smk_preset_netlabel(&smack_known_star
);
2306 if (err
== 0 && rc
< 0)
2308 rc
= smk_preset_netlabel(&smack_known_web
);
2309 if (err
== 0 && rc
< 0)
2315 __initcall(init_smk_fs
);