GNU Linux-libre 4.4.294-gnu1
[releases.git] / security / smack / smackfs.c
1 /*
2  * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
3  *
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.
7  *
8  * Authors:
9  *      Casey Schaufler <casey@schaufler-ca.com>
10  *      Ahmed S. Darwish <darwish.07@gmail.com>
11  *
12  * Special thanks to the authors of selinuxfs.
13  *
14  *      Karl MacMillan <kmacmillan@tresys.com>
15  *      James Morris <jmorris@redhat.com>
16  *
17  */
18
19 #include <linux/kernel.h>
20 #include <linux/vmalloc.h>
21 #include <linux/security.h>
22 #include <linux/mutex.h>
23 #include <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>
30 #include "smack.h"
31
32 #define BEBITS  (sizeof(__be32) * 8)
33 /*
34  * smackfs pseudo filesystem.
35  */
36
37 enum smk_inos {
38         SMK_ROOT_INO    = 2,
39         SMK_LOAD        = 3,    /* load policy */
40         SMK_CIPSO       = 4,    /* load label -> CIPSO mapping */
41         SMK_DOI         = 5,    /* CIPSO DOI */
42         SMK_DIRECT      = 6,    /* CIPSO level indicating direct label */
43         SMK_AMBIENT     = 7,    /* internet ambient label */
44         SMK_NET4ADDR    = 8,    /* single label hosts */
45         SMK_ONLYCAP     = 9,    /* the only "capable" label */
46         SMK_LOGGING     = 10,   /* logging */
47         SMK_LOAD_SELF   = 11,   /* task specific rules */
48         SMK_ACCESSES    = 12,   /* access policy */
49         SMK_MAPPED      = 13,   /* CIPSO level indicating mapped label */
50         SMK_LOAD2       = 14,   /* load policy with long labels */
51         SMK_LOAD_SELF2  = 15,   /* load task specific rules with long labels */
52         SMK_ACCESS2     = 16,   /* make an access check with long labels */
53         SMK_CIPSO2      = 17,   /* load long label -> CIPSO mapping */
54         SMK_REVOKE_SUBJ = 18,   /* set rules with subject label to '-' */
55         SMK_CHANGE_RULE = 19,   /* change or add rules (long labels) */
56         SMK_SYSLOG      = 20,   /* change syslog label) */
57         SMK_PTRACE      = 21,   /* set ptrace rule */
58 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
59         SMK_UNCONFINED  = 22,   /* define an unconfined label */
60 #endif
61 #if IS_ENABLED(CONFIG_IPV6)
62         SMK_NET6ADDR    = 23,   /* single label IPv6 hosts */
63 #endif /* CONFIG_IPV6 */
64         SMK_RELABEL_SELF = 24, /* relabel possible without CAP_MAC_ADMIN */
65 };
66
67 /*
68  * List locks
69  */
70 static DEFINE_MUTEX(smack_cipso_lock);
71 static DEFINE_MUTEX(smack_ambient_lock);
72 static DEFINE_MUTEX(smk_net4addr_lock);
73 #if IS_ENABLED(CONFIG_IPV6)
74 static DEFINE_MUTEX(smk_net6addr_lock);
75 #endif /* CONFIG_IPV6 */
76
77 /*
78  * This is the "ambient" label for network traffic.
79  * If it isn't somehow marked, use this.
80  * It can be reset via smackfs/ambient
81  */
82 struct smack_known *smack_net_ambient;
83
84 /*
85  * This is the level in a CIPSO header that indicates a
86  * smack label is contained directly in the category set.
87  * It can be reset via smackfs/direct
88  */
89 int smack_cipso_direct = SMACK_CIPSO_DIRECT_DEFAULT;
90
91 /*
92  * This is the level in a CIPSO header that indicates a
93  * secid is contained directly in the category set.
94  * It can be reset via smackfs/mapped
95  */
96 int smack_cipso_mapped = SMACK_CIPSO_MAPPED_DEFAULT;
97
98 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
99 /*
100  * Allow one label to be unconfined. This is for
101  * debugging and application bring-up purposes only.
102  * It is bad and wrong, but everyone seems to expect
103  * to have it.
104  */
105 struct smack_known *smack_unconfined;
106 #endif
107
108 /*
109  * If this value is set restrict syslog use to the label specified.
110  * It can be reset via smackfs/syslog
111  */
112 struct smack_known *smack_syslog_label;
113
114 /*
115  * Ptrace current rule
116  * SMACK_PTRACE_DEFAULT    regular smack ptrace rules (/proc based)
117  * SMACK_PTRACE_EXACT      labels must match, but can be overriden with
118  *                         CAP_SYS_PTRACE
119  * SMACK_PTRACE_DRACONIAN  lables must match, CAP_SYS_PTRACE has no effect
120  */
121 int smack_ptrace_rule = SMACK_PTRACE_DEFAULT;
122
123 /*
124  * Certain IP addresses may be designated as single label hosts.
125  * Packets are sent there unlabeled, but only from tasks that
126  * can write to the specified label.
127  */
128
129 LIST_HEAD(smk_net4addr_list);
130 #if IS_ENABLED(CONFIG_IPV6)
131 LIST_HEAD(smk_net6addr_list);
132 #endif /* CONFIG_IPV6 */
133
134 /*
135  * Rule lists are maintained for each label.
136  * This master list is just for reading /smack/load and /smack/load2.
137  */
138 struct smack_master_list {
139         struct list_head        list;
140         struct smack_rule       *smk_rule;
141 };
142
143 static LIST_HEAD(smack_rule_list);
144
145 struct smack_parsed_rule {
146         struct smack_known      *smk_subject;
147         struct smack_known      *smk_object;
148         int                     smk_access1;
149         int                     smk_access2;
150 };
151
152 static int smk_cipso_doi_value = SMACK_CIPSO_DOI_DEFAULT;
153
154 /*
155  * Values for parsing cipso rules
156  * SMK_DIGITLEN: Length of a digit field in a rule.
157  * SMK_CIPSOMIN: Minimum possible cipso rule length.
158  * SMK_CIPSOMAX: Maximum possible cipso rule length.
159  */
160 #define SMK_DIGITLEN 4
161 #define SMK_CIPSOMIN (SMK_LABELLEN + 2 * SMK_DIGITLEN)
162 #define SMK_CIPSOMAX (SMK_CIPSOMIN + SMACK_CIPSO_MAXCATNUM * SMK_DIGITLEN)
163
164 /*
165  * Values for parsing MAC rules
166  * SMK_ACCESS: Maximum possible combination of access permissions
167  * SMK_ACCESSLEN: Maximum length for a rule access field
168  * SMK_LOADLEN: Smack rule length
169  */
170 #define SMK_OACCESS     "rwxa"
171 #define SMK_ACCESS      "rwxatl"
172 #define SMK_OACCESSLEN  (sizeof(SMK_OACCESS) - 1)
173 #define SMK_ACCESSLEN   (sizeof(SMK_ACCESS) - 1)
174 #define SMK_OLOADLEN    (SMK_LABELLEN + SMK_LABELLEN + SMK_OACCESSLEN)
175 #define SMK_LOADLEN     (SMK_LABELLEN + SMK_LABELLEN + SMK_ACCESSLEN)
176
177 /*
178  * Stricly for CIPSO level manipulation.
179  * Set the category bit number in a smack label sized buffer.
180  */
181 static inline void smack_catset_bit(unsigned int cat, char *catsetp)
182 {
183         if (cat == 0 || cat > (SMK_CIPSOLEN * 8))
184                 return;
185
186         catsetp[(cat - 1) / 8] |= 0x80 >> ((cat - 1) % 8);
187 }
188
189 /**
190  * smk_netlabel_audit_set - fill a netlbl_audit struct
191  * @nap: structure to fill
192  */
193 static void smk_netlabel_audit_set(struct netlbl_audit *nap)
194 {
195         struct smack_known *skp = smk_of_current();
196
197         nap->loginuid = audit_get_loginuid(current);
198         nap->sessionid = audit_get_sessionid(current);
199         nap->secid = skp->smk_secid;
200 }
201
202 /*
203  * Value for parsing single label host rules
204  * "1.2.3.4 X"
205  */
206 #define SMK_NETLBLADDRMIN       9
207
208 /**
209  * smk_set_access - add a rule to the rule list or replace an old rule
210  * @srp: the rule to add or replace
211  * @rule_list: the list of rules
212  * @rule_lock: the rule list lock
213  * @global: if non-zero, indicates a global rule
214  *
215  * Looks through the current subject/object/access list for
216  * the subject/object pair and replaces the access that was
217  * there. If the pair isn't found add it with the specified
218  * access.
219  *
220  * Returns 0 if nothing goes wrong or -ENOMEM if it fails
221  * during the allocation of the new pair to add.
222  */
223 static int smk_set_access(struct smack_parsed_rule *srp,
224                                 struct list_head *rule_list,
225                                 struct mutex *rule_lock, int global)
226 {
227         struct smack_rule *sp;
228         struct smack_master_list *smlp;
229         int found = 0;
230         int rc = 0;
231
232         mutex_lock(rule_lock);
233
234         /*
235          * Because the object label is less likely to match
236          * than the subject label check it first
237          */
238         list_for_each_entry_rcu(sp, rule_list, list) {
239                 if (sp->smk_object == srp->smk_object &&
240                     sp->smk_subject == srp->smk_subject) {
241                         found = 1;
242                         sp->smk_access |= srp->smk_access1;
243                         sp->smk_access &= ~srp->smk_access2;
244                         break;
245                 }
246         }
247
248         if (found == 0) {
249                 sp = kzalloc(sizeof(*sp), GFP_KERNEL);
250                 if (sp == NULL) {
251                         rc = -ENOMEM;
252                         goto out;
253                 }
254
255                 sp->smk_subject = srp->smk_subject;
256                 sp->smk_object = srp->smk_object;
257                 sp->smk_access = srp->smk_access1 & ~srp->smk_access2;
258
259                 list_add_rcu(&sp->list, rule_list);
260                 /*
261                  * If this is a global as opposed to self and a new rule
262                  * it needs to get added for reporting.
263                  */
264                 if (global) {
265                         smlp = kzalloc(sizeof(*smlp), GFP_KERNEL);
266                         if (smlp != NULL) {
267                                 smlp->smk_rule = sp;
268                                 list_add_rcu(&smlp->list, &smack_rule_list);
269                         } else
270                                 rc = -ENOMEM;
271                 }
272         }
273
274 out:
275         mutex_unlock(rule_lock);
276         return rc;
277 }
278
279 /**
280  * smk_perm_from_str - parse smack accesses from a text string
281  * @string: a text string that contains a Smack accesses code
282  *
283  * Returns an integer with respective bits set for specified accesses.
284  */
285 static int smk_perm_from_str(const char *string)
286 {
287         int perm = 0;
288         const char *cp;
289
290         for (cp = string; ; cp++)
291                 switch (*cp) {
292                 case '-':
293                         break;
294                 case 'r':
295                 case 'R':
296                         perm |= MAY_READ;
297                         break;
298                 case 'w':
299                 case 'W':
300                         perm |= MAY_WRITE;
301                         break;
302                 case 'x':
303                 case 'X':
304                         perm |= MAY_EXEC;
305                         break;
306                 case 'a':
307                 case 'A':
308                         perm |= MAY_APPEND;
309                         break;
310                 case 't':
311                 case 'T':
312                         perm |= MAY_TRANSMUTE;
313                         break;
314                 case 'l':
315                 case 'L':
316                         perm |= MAY_LOCK;
317                         break;
318                 case 'b':
319                 case 'B':
320                         perm |= MAY_BRINGUP;
321                         break;
322                 default:
323                         return perm;
324                 }
325 }
326
327 /**
328  * smk_fill_rule - Fill Smack rule from strings
329  * @subject: subject label string
330  * @object: object label string
331  * @access1: access string
332  * @access2: string with permissions to be removed
333  * @rule: Smack rule
334  * @import: if non-zero, import labels
335  * @len: label length limit
336  *
337  * Returns 0 on success, appropriate error code on failure.
338  */
339 static int smk_fill_rule(const char *subject, const char *object,
340                                 const char *access1, const char *access2,
341                                 struct smack_parsed_rule *rule, int import,
342                                 int len)
343 {
344         const char *cp;
345         struct smack_known *skp;
346
347         if (import) {
348                 rule->smk_subject = smk_import_entry(subject, len);
349                 if (IS_ERR(rule->smk_subject))
350                         return PTR_ERR(rule->smk_subject);
351
352                 rule->smk_object = smk_import_entry(object, len);
353                 if (IS_ERR(rule->smk_object))
354                         return PTR_ERR(rule->smk_object);
355         } else {
356                 cp = smk_parse_smack(subject, len);
357                 if (IS_ERR(cp))
358                         return PTR_ERR(cp);
359                 skp = smk_find_entry(cp);
360                 kfree(cp);
361                 if (skp == NULL)
362                         return -ENOENT;
363                 rule->smk_subject = skp;
364
365                 cp = smk_parse_smack(object, len);
366                 if (IS_ERR(cp))
367                         return PTR_ERR(cp);
368                 skp = smk_find_entry(cp);
369                 kfree(cp);
370                 if (skp == NULL)
371                         return -ENOENT;
372                 rule->smk_object = skp;
373         }
374
375         rule->smk_access1 = smk_perm_from_str(access1);
376         if (access2)
377                 rule->smk_access2 = smk_perm_from_str(access2);
378         else
379                 rule->smk_access2 = ~rule->smk_access1;
380
381         return 0;
382 }
383
384 /**
385  * smk_parse_rule - parse Smack rule from load string
386  * @data: string to be parsed whose size is SMK_LOADLEN
387  * @rule: Smack rule
388  * @import: if non-zero, import labels
389  *
390  * Returns 0 on success, -1 on errors.
391  */
392 static int smk_parse_rule(const char *data, struct smack_parsed_rule *rule,
393                                 int import)
394 {
395         int rc;
396
397         rc = smk_fill_rule(data, data + SMK_LABELLEN,
398                            data + SMK_LABELLEN + SMK_LABELLEN, NULL, rule,
399                            import, SMK_LABELLEN);
400         return rc;
401 }
402
403 /**
404  * smk_parse_long_rule - parse Smack rule from rule string
405  * @data: string to be parsed, null terminated
406  * @rule: Will be filled with Smack parsed rule
407  * @import: if non-zero, import labels
408  * @tokens: numer of substrings expected in data
409  *
410  * Returns number of processed bytes on success, -ERRNO on failure.
411  */
412 static ssize_t smk_parse_long_rule(char *data, struct smack_parsed_rule *rule,
413                                 int import, int tokens)
414 {
415         ssize_t cnt = 0;
416         char *tok[4];
417         int rc;
418         int i;
419
420         /*
421          * Parsing the rule in-place, filling all white-spaces with '\0'
422          */
423         for (i = 0; i < tokens; ++i) {
424                 while (isspace(data[cnt]))
425                         data[cnt++] = '\0';
426
427                 if (data[cnt] == '\0')
428                         /* Unexpected end of data */
429                         return -EINVAL;
430
431                 tok[i] = data + cnt;
432
433                 while (data[cnt] && !isspace(data[cnt]))
434                         ++cnt;
435         }
436         while (isspace(data[cnt]))
437                 data[cnt++] = '\0';
438
439         while (i < 4)
440                 tok[i++] = NULL;
441
442         rc = smk_fill_rule(tok[0], tok[1], tok[2], tok[3], rule, import, 0);
443         return rc == 0 ? cnt : rc;
444 }
445
446 #define SMK_FIXED24_FMT 0       /* Fixed 24byte label format */
447 #define SMK_LONG_FMT    1       /* Variable long label format */
448 #define SMK_CHANGE_FMT  2       /* Rule modification format */
449 /**
450  * smk_write_rules_list - write() for any /smack rule file
451  * @file: file pointer, not actually used
452  * @buf: where to get the data from
453  * @count: bytes sent
454  * @ppos: where to start - must be 0
455  * @rule_list: the list of rules to write to
456  * @rule_lock: lock for the rule list
457  * @format: /smack/load or /smack/load2 or /smack/change-rule format.
458  *
459  * Get one smack access rule from above.
460  * The format for SMK_LONG_FMT is:
461  *      "subject<whitespace>object<whitespace>access[<whitespace>...]"
462  * The format for SMK_FIXED24_FMT is exactly:
463  *      "subject                 object                  rwxat"
464  * The format for SMK_CHANGE_FMT is:
465  *      "subject<whitespace>object<whitespace>
466  *       acc_enable<whitespace>acc_disable[<whitespace>...]"
467  */
468 static ssize_t smk_write_rules_list(struct file *file, const char __user *buf,
469                                         size_t count, loff_t *ppos,
470                                         struct list_head *rule_list,
471                                         struct mutex *rule_lock, int format)
472 {
473         struct smack_parsed_rule rule;
474         char *data;
475         int rc;
476         int trunc = 0;
477         int tokens;
478         ssize_t cnt = 0;
479
480         /*
481          * No partial writes.
482          * Enough data must be present.
483          */
484         if (*ppos != 0)
485                 return -EINVAL;
486
487         if (format == SMK_FIXED24_FMT) {
488                 /*
489                  * Minor hack for backward compatibility
490                  */
491                 if (count < SMK_OLOADLEN || count > SMK_LOADLEN)
492                         return -EINVAL;
493         } else {
494                 if (count >= PAGE_SIZE) {
495                         count = PAGE_SIZE - 1;
496                         trunc = 1;
497                 }
498         }
499
500         data = kmalloc(count + 1, GFP_KERNEL);
501         if (data == NULL)
502                 return -ENOMEM;
503
504         if (copy_from_user(data, buf, count) != 0) {
505                 rc = -EFAULT;
506                 goto out;
507         }
508
509         /*
510          * In case of parsing only part of user buf,
511          * avoid having partial rule at the data buffer
512          */
513         if (trunc) {
514                 while (count > 0 && (data[count - 1] != '\n'))
515                         --count;
516                 if (count == 0) {
517                         rc = -EINVAL;
518                         goto out;
519                 }
520         }
521
522         data[count] = '\0';
523         tokens = (format == SMK_CHANGE_FMT ? 4 : 3);
524         while (cnt < count) {
525                 if (format == SMK_FIXED24_FMT) {
526                         rc = smk_parse_rule(data, &rule, 1);
527                         if (rc < 0)
528                                 goto out;
529                         cnt = count;
530                 } else {
531                         rc = smk_parse_long_rule(data + cnt, &rule, 1, tokens);
532                         if (rc < 0)
533                                 goto out;
534                         if (rc == 0) {
535                                 rc = -EINVAL;
536                                 goto out;
537                         }
538                         cnt += rc;
539                 }
540
541                 if (rule_list == NULL)
542                         rc = smk_set_access(&rule, &rule.smk_subject->smk_rules,
543                                 &rule.smk_subject->smk_rules_lock, 1);
544                 else
545                         rc = smk_set_access(&rule, rule_list, rule_lock, 0);
546
547                 if (rc)
548                         goto out;
549         }
550
551         rc = cnt;
552 out:
553         kfree(data);
554         return rc;
555 }
556
557 /*
558  * Core logic for smackfs seq list operations.
559  */
560
561 static void *smk_seq_start(struct seq_file *s, loff_t *pos,
562                                 struct list_head *head)
563 {
564         struct list_head *list;
565         int i = *pos;
566
567         rcu_read_lock();
568         for (list = rcu_dereference(list_next_rcu(head));
569                 list != head;
570                 list = rcu_dereference(list_next_rcu(list))) {
571                 if (i-- == 0)
572                         return list;
573         }
574
575         return NULL;
576 }
577
578 static void *smk_seq_next(struct seq_file *s, void *v, loff_t *pos,
579                                 struct list_head *head)
580 {
581         struct list_head *list = v;
582
583         ++*pos;
584         list = rcu_dereference(list_next_rcu(list));
585
586         return (list == head) ? NULL : list;
587 }
588
589 static void smk_seq_stop(struct seq_file *s, void *v)
590 {
591         rcu_read_unlock();
592 }
593
594 static void smk_rule_show(struct seq_file *s, struct smack_rule *srp, int max)
595 {
596         /*
597          * Don't show any rules with label names too long for
598          * interface file (/smack/load or /smack/load2)
599          * because you should expect to be able to write
600          * anything you read back.
601          */
602         if (strlen(srp->smk_subject->smk_known) >= max ||
603             strlen(srp->smk_object->smk_known) >= max)
604                 return;
605
606         if (srp->smk_access == 0)
607                 return;
608
609         seq_printf(s, "%s %s",
610                    srp->smk_subject->smk_known,
611                    srp->smk_object->smk_known);
612
613         seq_putc(s, ' ');
614
615         if (srp->smk_access & MAY_READ)
616                 seq_putc(s, 'r');
617         if (srp->smk_access & MAY_WRITE)
618                 seq_putc(s, 'w');
619         if (srp->smk_access & MAY_EXEC)
620                 seq_putc(s, 'x');
621         if (srp->smk_access & MAY_APPEND)
622                 seq_putc(s, 'a');
623         if (srp->smk_access & MAY_TRANSMUTE)
624                 seq_putc(s, 't');
625         if (srp->smk_access & MAY_LOCK)
626                 seq_putc(s, 'l');
627         if (srp->smk_access & MAY_BRINGUP)
628                 seq_putc(s, 'b');
629
630         seq_putc(s, '\n');
631 }
632
633 /*
634  * Seq_file read operations for /smack/load
635  */
636
637 static void *load2_seq_start(struct seq_file *s, loff_t *pos)
638 {
639         return smk_seq_start(s, pos, &smack_rule_list);
640 }
641
642 static void *load2_seq_next(struct seq_file *s, void *v, loff_t *pos)
643 {
644         return smk_seq_next(s, v, pos, &smack_rule_list);
645 }
646
647 static int load_seq_show(struct seq_file *s, void *v)
648 {
649         struct list_head *list = v;
650         struct smack_master_list *smlp =
651                 list_entry_rcu(list, struct smack_master_list, list);
652
653         smk_rule_show(s, smlp->smk_rule, SMK_LABELLEN);
654
655         return 0;
656 }
657
658 static const struct seq_operations load_seq_ops = {
659         .start = load2_seq_start,
660         .next  = load2_seq_next,
661         .show  = load_seq_show,
662         .stop  = smk_seq_stop,
663 };
664
665 /**
666  * smk_open_load - open() for /smack/load
667  * @inode: inode structure representing file
668  * @file: "load" file pointer
669  *
670  * For reading, use load_seq_* seq_file reading operations.
671  */
672 static int smk_open_load(struct inode *inode, struct file *file)
673 {
674         return seq_open(file, &load_seq_ops);
675 }
676
677 /**
678  * smk_write_load - write() for /smack/load
679  * @file: file pointer, not actually used
680  * @buf: where to get the data from
681  * @count: bytes sent
682  * @ppos: where to start - must be 0
683  *
684  */
685 static ssize_t smk_write_load(struct file *file, const char __user *buf,
686                               size_t count, loff_t *ppos)
687 {
688         /*
689          * Must have privilege.
690          * No partial writes.
691          * Enough data must be present.
692          */
693         if (!smack_privileged(CAP_MAC_ADMIN))
694                 return -EPERM;
695
696         return smk_write_rules_list(file, buf, count, ppos, NULL, NULL,
697                                     SMK_FIXED24_FMT);
698 }
699
700 static const struct file_operations smk_load_ops = {
701         .open           = smk_open_load,
702         .read           = seq_read,
703         .llseek         = seq_lseek,
704         .write          = smk_write_load,
705         .release        = seq_release,
706 };
707
708 /**
709  * smk_cipso_doi - initialize the CIPSO domain
710  */
711 static void smk_cipso_doi(void)
712 {
713         int rc;
714         struct cipso_v4_doi *doip;
715         struct netlbl_audit nai;
716
717         smk_netlabel_audit_set(&nai);
718
719         rc = netlbl_cfg_map_del(NULL, PF_INET, NULL, NULL, &nai);
720         if (rc != 0)
721                 printk(KERN_WARNING "%s:%d remove rc = %d\n",
722                        __func__, __LINE__, rc);
723
724         doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL | __GFP_NOFAIL);
725         doip->map.std = NULL;
726         doip->doi = smk_cipso_doi_value;
727         doip->type = CIPSO_V4_MAP_PASS;
728         doip->tags[0] = CIPSO_V4_TAG_RBITMAP;
729         for (rc = 1; rc < CIPSO_V4_TAG_MAXCNT; rc++)
730                 doip->tags[rc] = CIPSO_V4_TAG_INVALID;
731
732         rc = netlbl_cfg_cipsov4_add(doip, &nai);
733         if (rc != 0) {
734                 printk(KERN_WARNING "%s:%d cipso add rc = %d\n",
735                        __func__, __LINE__, rc);
736                 kfree(doip);
737                 return;
738         }
739         rc = netlbl_cfg_cipsov4_map_add(doip->doi, NULL, NULL, NULL, &nai);
740         if (rc != 0) {
741                 printk(KERN_WARNING "%s:%d map add rc = %d\n",
742                        __func__, __LINE__, rc);
743                 netlbl_cfg_cipsov4_del(doip->doi, &nai);
744                 return;
745         }
746 }
747
748 /**
749  * smk_unlbl_ambient - initialize the unlabeled domain
750  * @oldambient: previous domain string
751  */
752 static void smk_unlbl_ambient(char *oldambient)
753 {
754         int rc;
755         struct netlbl_audit nai;
756
757         smk_netlabel_audit_set(&nai);
758
759         if (oldambient != NULL) {
760                 rc = netlbl_cfg_map_del(oldambient, PF_INET, NULL, NULL, &nai);
761                 if (rc != 0)
762                         printk(KERN_WARNING "%s:%d remove rc = %d\n",
763                                __func__, __LINE__, rc);
764         }
765         if (smack_net_ambient == NULL)
766                 smack_net_ambient = &smack_known_floor;
767
768         rc = netlbl_cfg_unlbl_map_add(smack_net_ambient->smk_known, PF_INET,
769                                       NULL, NULL, &nai);
770         if (rc != 0)
771                 printk(KERN_WARNING "%s:%d add rc = %d\n",
772                        __func__, __LINE__, rc);
773 }
774
775 /*
776  * Seq_file read operations for /smack/cipso
777  */
778
779 static void *cipso_seq_start(struct seq_file *s, loff_t *pos)
780 {
781         return smk_seq_start(s, pos, &smack_known_list);
782 }
783
784 static void *cipso_seq_next(struct seq_file *s, void *v, loff_t *pos)
785 {
786         return smk_seq_next(s, v, pos, &smack_known_list);
787 }
788
789 /*
790  * Print cipso labels in format:
791  * label level[/cat[,cat]]
792  */
793 static int cipso_seq_show(struct seq_file *s, void *v)
794 {
795         struct list_head  *list = v;
796         struct smack_known *skp =
797                 list_entry_rcu(list, struct smack_known, list);
798         struct netlbl_lsm_catmap *cmp = skp->smk_netlabel.attr.mls.cat;
799         char sep = '/';
800         int i;
801
802         /*
803          * Don't show a label that could not have been set using
804          * /smack/cipso. This is in support of the notion that
805          * anything read from /smack/cipso ought to be writeable
806          * to /smack/cipso.
807          *
808          * /smack/cipso2 should be used instead.
809          */
810         if (strlen(skp->smk_known) >= SMK_LABELLEN)
811                 return 0;
812
813         seq_printf(s, "%s %3d", skp->smk_known, skp->smk_netlabel.attr.mls.lvl);
814
815         for (i = netlbl_catmap_walk(cmp, 0); i >= 0;
816              i = netlbl_catmap_walk(cmp, i + 1)) {
817                 seq_printf(s, "%c%d", sep, i);
818                 sep = ',';
819         }
820
821         seq_putc(s, '\n');
822
823         return 0;
824 }
825
826 static const struct seq_operations cipso_seq_ops = {
827         .start = cipso_seq_start,
828         .next  = cipso_seq_next,
829         .show  = cipso_seq_show,
830         .stop  = smk_seq_stop,
831 };
832
833 /**
834  * smk_open_cipso - open() for /smack/cipso
835  * @inode: inode structure representing file
836  * @file: "cipso" file pointer
837  *
838  * Connect our cipso_seq_* operations with /smack/cipso
839  * file_operations
840  */
841 static int smk_open_cipso(struct inode *inode, struct file *file)
842 {
843         return seq_open(file, &cipso_seq_ops);
844 }
845
846 /**
847  * smk_set_cipso - do the work for write() for cipso and cipso2
848  * @file: file pointer, not actually used
849  * @buf: where to get the data from
850  * @count: bytes sent
851  * @ppos: where to start
852  * @format: /smack/cipso or /smack/cipso2
853  *
854  * Accepts only one cipso rule per write call.
855  * Returns number of bytes written or error code, as appropriate
856  */
857 static ssize_t smk_set_cipso(struct file *file, const char __user *buf,
858                                 size_t count, loff_t *ppos, int format)
859 {
860         struct netlbl_lsm_catmap *old_cat;
861         struct smack_known *skp;
862         struct netlbl_lsm_secattr ncats;
863         char mapcatset[SMK_CIPSOLEN];
864         int maplevel;
865         unsigned int cat;
866         int catlen;
867         ssize_t rc = -EINVAL;
868         char *data = NULL;
869         char *rule;
870         int ret;
871         int i;
872
873         /*
874          * Must have privilege.
875          * No partial writes.
876          * Enough data must be present.
877          */
878         if (!smack_privileged(CAP_MAC_ADMIN))
879                 return -EPERM;
880         if (*ppos != 0)
881                 return -EINVAL;
882         if (format == SMK_FIXED24_FMT &&
883             (count < SMK_CIPSOMIN || count > SMK_CIPSOMAX))
884                 return -EINVAL;
885
886         data = kzalloc(count + 1, GFP_KERNEL);
887         if (data == NULL)
888                 return -ENOMEM;
889
890         if (copy_from_user(data, buf, count) != 0) {
891                 rc = -EFAULT;
892                 goto unlockedout;
893         }
894
895         data[count] = '\0';
896         rule = data;
897         /*
898          * Only allow one writer at a time. Writes should be
899          * quite rare and small in any case.
900          */
901         mutex_lock(&smack_cipso_lock);
902
903         skp = smk_import_entry(rule, 0);
904         if (IS_ERR(skp)) {
905                 rc = PTR_ERR(skp);
906                 goto out;
907         }
908
909         if (format == SMK_FIXED24_FMT)
910                 rule += SMK_LABELLEN;
911         else
912                 rule += strlen(skp->smk_known) + 1;
913
914         if (rule > data + count) {
915                 rc = -EOVERFLOW;
916                 goto out;
917         }
918
919         ret = sscanf(rule, "%d", &maplevel);
920         if (ret != 1 || maplevel < 0 || maplevel > SMACK_CIPSO_MAXLEVEL)
921                 goto out;
922
923         rule += SMK_DIGITLEN;
924         if (rule > data + count) {
925                 rc = -EOVERFLOW;
926                 goto out;
927         }
928
929         ret = sscanf(rule, "%d", &catlen);
930         if (ret != 1 || catlen > SMACK_CIPSO_MAXCATNUM)
931                 goto out;
932
933         if (format == SMK_FIXED24_FMT &&
934             count != (SMK_CIPSOMIN + catlen * SMK_DIGITLEN))
935                 goto out;
936
937         memset(mapcatset, 0, sizeof(mapcatset));
938
939         for (i = 0; i < catlen; i++) {
940                 rule += SMK_DIGITLEN;
941                 if (rule > data + count) {
942                         rc = -EOVERFLOW;
943                         goto out;
944                 }
945                 ret = sscanf(rule, "%u", &cat);
946                 if (ret != 1 || cat > SMACK_CIPSO_MAXCATNUM)
947                         goto out;
948
949                 smack_catset_bit(cat, mapcatset);
950         }
951
952         rc = smk_netlbl_mls(maplevel, mapcatset, &ncats, SMK_CIPSOLEN);
953         if (rc >= 0) {
954                 old_cat = skp->smk_netlabel.attr.mls.cat;
955                 skp->smk_netlabel.attr.mls.cat = ncats.attr.mls.cat;
956                 skp->smk_netlabel.attr.mls.lvl = ncats.attr.mls.lvl;
957                 synchronize_rcu();
958                 netlbl_catmap_free(old_cat);
959                 rc = count;
960         }
961
962 out:
963         mutex_unlock(&smack_cipso_lock);
964 unlockedout:
965         kfree(data);
966         return rc;
967 }
968
969 /**
970  * smk_write_cipso - write() for /smack/cipso
971  * @file: file pointer, not actually used
972  * @buf: where to get the data from
973  * @count: bytes sent
974  * @ppos: where to start
975  *
976  * Accepts only one cipso rule per write call.
977  * Returns number of bytes written or error code, as appropriate
978  */
979 static ssize_t smk_write_cipso(struct file *file, const char __user *buf,
980                                size_t count, loff_t *ppos)
981 {
982         return smk_set_cipso(file, buf, count, ppos, SMK_FIXED24_FMT);
983 }
984
985 static const struct file_operations smk_cipso_ops = {
986         .open           = smk_open_cipso,
987         .read           = seq_read,
988         .llseek         = seq_lseek,
989         .write          = smk_write_cipso,
990         .release        = seq_release,
991 };
992
993 /*
994  * Seq_file read operations for /smack/cipso2
995  */
996
997 /*
998  * Print cipso labels in format:
999  * label level[/cat[,cat]]
1000  */
1001 static int cipso2_seq_show(struct seq_file *s, void *v)
1002 {
1003         struct list_head  *list = v;
1004         struct smack_known *skp =
1005                 list_entry_rcu(list, struct smack_known, list);
1006         struct netlbl_lsm_catmap *cmp = skp->smk_netlabel.attr.mls.cat;
1007         char sep = '/';
1008         int i;
1009
1010         seq_printf(s, "%s %3d", skp->smk_known, skp->smk_netlabel.attr.mls.lvl);
1011
1012         for (i = netlbl_catmap_walk(cmp, 0); i >= 0;
1013              i = netlbl_catmap_walk(cmp, i + 1)) {
1014                 seq_printf(s, "%c%d", sep, i);
1015                 sep = ',';
1016         }
1017
1018         seq_putc(s, '\n');
1019
1020         return 0;
1021 }
1022
1023 static const struct seq_operations cipso2_seq_ops = {
1024         .start = cipso_seq_start,
1025         .next  = cipso_seq_next,
1026         .show  = cipso2_seq_show,
1027         .stop  = smk_seq_stop,
1028 };
1029
1030 /**
1031  * smk_open_cipso2 - open() for /smack/cipso2
1032  * @inode: inode structure representing file
1033  * @file: "cipso2" file pointer
1034  *
1035  * Connect our cipso_seq_* operations with /smack/cipso2
1036  * file_operations
1037  */
1038 static int smk_open_cipso2(struct inode *inode, struct file *file)
1039 {
1040         return seq_open(file, &cipso2_seq_ops);
1041 }
1042
1043 /**
1044  * smk_write_cipso2 - write() for /smack/cipso2
1045  * @file: file pointer, not actually used
1046  * @buf: where to get the data from
1047  * @count: bytes sent
1048  * @ppos: where to start
1049  *
1050  * Accepts only one cipso rule per write call.
1051  * Returns number of bytes written or error code, as appropriate
1052  */
1053 static ssize_t smk_write_cipso2(struct file *file, const char __user *buf,
1054                               size_t count, loff_t *ppos)
1055 {
1056         return smk_set_cipso(file, buf, count, ppos, SMK_LONG_FMT);
1057 }
1058
1059 static const struct file_operations smk_cipso2_ops = {
1060         .open           = smk_open_cipso2,
1061         .read           = seq_read,
1062         .llseek         = seq_lseek,
1063         .write          = smk_write_cipso2,
1064         .release        = seq_release,
1065 };
1066
1067 /*
1068  * Seq_file read operations for /smack/netlabel
1069  */
1070
1071 static void *net4addr_seq_start(struct seq_file *s, loff_t *pos)
1072 {
1073         return smk_seq_start(s, pos, &smk_net4addr_list);
1074 }
1075
1076 static void *net4addr_seq_next(struct seq_file *s, void *v, loff_t *pos)
1077 {
1078         return smk_seq_next(s, v, pos, &smk_net4addr_list);
1079 }
1080
1081 /*
1082  * Print host/label pairs
1083  */
1084 static int net4addr_seq_show(struct seq_file *s, void *v)
1085 {
1086         struct list_head *list = v;
1087         struct smk_net4addr *skp =
1088                         list_entry_rcu(list, struct smk_net4addr, list);
1089         char *kp = SMACK_CIPSO_OPTION;
1090
1091         if (skp->smk_label != NULL)
1092                 kp = skp->smk_label->smk_known;
1093         seq_printf(s, "%pI4/%d %s\n", &skp->smk_host.s_addr,
1094                         skp->smk_masks, kp);
1095
1096         return 0;
1097 }
1098
1099 static const struct seq_operations net4addr_seq_ops = {
1100         .start = net4addr_seq_start,
1101         .next  = net4addr_seq_next,
1102         .show  = net4addr_seq_show,
1103         .stop  = smk_seq_stop,
1104 };
1105
1106 /**
1107  * smk_open_net4addr - open() for /smack/netlabel
1108  * @inode: inode structure representing file
1109  * @file: "netlabel" file pointer
1110  *
1111  * Connect our net4addr_seq_* operations with /smack/netlabel
1112  * file_operations
1113  */
1114 static int smk_open_net4addr(struct inode *inode, struct file *file)
1115 {
1116         return seq_open(file, &net4addr_seq_ops);
1117 }
1118
1119 /**
1120  * smk_net4addr_insert
1121  * @new : netlabel to insert
1122  *
1123  * This helper insert netlabel in the smack_net4addrs list
1124  * sorted by netmask length (longest to smallest)
1125  * locked by &smk_net4addr_lock in smk_write_net4addr
1126  *
1127  */
1128 static void smk_net4addr_insert(struct smk_net4addr *new)
1129 {
1130         struct smk_net4addr *m;
1131         struct smk_net4addr *m_next;
1132
1133         if (list_empty(&smk_net4addr_list)) {
1134                 list_add_rcu(&new->list, &smk_net4addr_list);
1135                 return;
1136         }
1137
1138         m = list_entry_rcu(smk_net4addr_list.next,
1139                            struct smk_net4addr, list);
1140
1141         /* the comparison '>' is a bit hacky, but works */
1142         if (new->smk_masks > m->smk_masks) {
1143                 list_add_rcu(&new->list, &smk_net4addr_list);
1144                 return;
1145         }
1146
1147         list_for_each_entry_rcu(m, &smk_net4addr_list, list) {
1148                 if (list_is_last(&m->list, &smk_net4addr_list)) {
1149                         list_add_rcu(&new->list, &m->list);
1150                         return;
1151                 }
1152                 m_next = list_entry_rcu(m->list.next,
1153                                         struct smk_net4addr, list);
1154                 if (new->smk_masks > m_next->smk_masks) {
1155                         list_add_rcu(&new->list, &m->list);
1156                         return;
1157                 }
1158         }
1159 }
1160
1161
1162 /**
1163  * smk_write_net4addr - write() for /smack/netlabel
1164  * @file: file pointer, not actually used
1165  * @buf: where to get the data from
1166  * @count: bytes sent
1167  * @ppos: where to start
1168  *
1169  * Accepts only one net4addr per write call.
1170  * Returns number of bytes written or error code, as appropriate
1171  */
1172 static ssize_t smk_write_net4addr(struct file *file, const char __user *buf,
1173                                 size_t count, loff_t *ppos)
1174 {
1175         struct smk_net4addr *snp;
1176         struct sockaddr_in newname;
1177         char *smack;
1178         struct smack_known *skp = NULL;
1179         char *data;
1180         char *host = (char *)&newname.sin_addr.s_addr;
1181         int rc;
1182         struct netlbl_audit audit_info;
1183         struct in_addr mask;
1184         unsigned int m;
1185         unsigned int masks;
1186         int found;
1187         u32 mask_bits = (1<<31);
1188         __be32 nsa;
1189         u32 temp_mask;
1190
1191         /*
1192          * Must have privilege.
1193          * No partial writes.
1194          * Enough data must be present.
1195          * "<addr/mask, as a.b.c.d/e><space><label>"
1196          * "<addr, as a.b.c.d><space><label>"
1197          */
1198         if (!smack_privileged(CAP_MAC_ADMIN))
1199                 return -EPERM;
1200         if (*ppos != 0)
1201                 return -EINVAL;
1202         if (count < SMK_NETLBLADDRMIN)
1203                 return -EINVAL;
1204
1205         data = kzalloc(count + 1, GFP_KERNEL);
1206         if (data == NULL)
1207                 return -ENOMEM;
1208
1209         if (copy_from_user(data, buf, count) != 0) {
1210                 rc = -EFAULT;
1211                 goto free_data_out;
1212         }
1213
1214         smack = kzalloc(count + 1, GFP_KERNEL);
1215         if (smack == NULL) {
1216                 rc = -ENOMEM;
1217                 goto free_data_out;
1218         }
1219
1220         data[count] = '\0';
1221
1222         rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%u %s",
1223                 &host[0], &host[1], &host[2], &host[3], &masks, smack);
1224         if (rc != 6) {
1225                 rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd %s",
1226                         &host[0], &host[1], &host[2], &host[3], smack);
1227                 if (rc != 5) {
1228                         rc = -EINVAL;
1229                         goto free_out;
1230                 }
1231                 m = BEBITS;
1232                 masks = 32;
1233         }
1234         if (masks > BEBITS) {
1235                 rc = -EINVAL;
1236                 goto free_out;
1237         }
1238
1239         /*
1240          * If smack begins with '-', it is an option, don't import it
1241          */
1242         if (smack[0] != '-') {
1243                 skp = smk_import_entry(smack, 0);
1244                 if (IS_ERR(skp)) {
1245                         rc = PTR_ERR(skp);
1246                         goto free_out;
1247                 }
1248         } else {
1249                 /*
1250                  * Only the -CIPSO option is supported for IPv4
1251                  */
1252                 if (strcmp(smack, SMACK_CIPSO_OPTION) != 0) {
1253                         rc = -EINVAL;
1254                         goto free_out;
1255                 }
1256         }
1257
1258         for (m = masks, temp_mask = 0; m > 0; m--) {
1259                 temp_mask |= mask_bits;
1260                 mask_bits >>= 1;
1261         }
1262         mask.s_addr = cpu_to_be32(temp_mask);
1263
1264         newname.sin_addr.s_addr &= mask.s_addr;
1265         /*
1266          * Only allow one writer at a time. Writes should be
1267          * quite rare and small in any case.
1268          */
1269         mutex_lock(&smk_net4addr_lock);
1270
1271         nsa = newname.sin_addr.s_addr;
1272         /* try to find if the prefix is already in the list */
1273         found = 0;
1274         list_for_each_entry_rcu(snp, &smk_net4addr_list, list) {
1275                 if (snp->smk_host.s_addr == nsa && snp->smk_masks == masks) {
1276                         found = 1;
1277                         break;
1278                 }
1279         }
1280         smk_netlabel_audit_set(&audit_info);
1281
1282         if (found == 0) {
1283                 snp = kzalloc(sizeof(*snp), GFP_KERNEL);
1284                 if (snp == NULL)
1285                         rc = -ENOMEM;
1286                 else {
1287                         rc = 0;
1288                         snp->smk_host.s_addr = newname.sin_addr.s_addr;
1289                         snp->smk_mask.s_addr = mask.s_addr;
1290                         snp->smk_label = skp;
1291                         snp->smk_masks = masks;
1292                         smk_net4addr_insert(snp);
1293                 }
1294         } else {
1295                 /*
1296                  * Delete the unlabeled entry, only if the previous label
1297                  * wasn't the special CIPSO option
1298                  */
1299                 if (snp->smk_label != NULL)
1300                         rc = netlbl_cfg_unlbl_static_del(&init_net, NULL,
1301                                         &snp->smk_host, &snp->smk_mask,
1302                                         PF_INET, &audit_info);
1303                 else
1304                         rc = 0;
1305                 snp->smk_label = skp;
1306         }
1307
1308         /*
1309          * Now tell netlabel about the single label nature of
1310          * this host so that incoming packets get labeled.
1311          * but only if we didn't get the special CIPSO option
1312          */
1313         if (rc == 0 && skp != NULL)
1314                 rc = netlbl_cfg_unlbl_static_add(&init_net, NULL,
1315                         &snp->smk_host, &snp->smk_mask, PF_INET,
1316                         snp->smk_label->smk_secid, &audit_info);
1317
1318         if (rc == 0)
1319                 rc = count;
1320
1321         mutex_unlock(&smk_net4addr_lock);
1322
1323 free_out:
1324         kfree(smack);
1325 free_data_out:
1326         kfree(data);
1327
1328         return rc;
1329 }
1330
1331 static const struct file_operations smk_net4addr_ops = {
1332         .open           = smk_open_net4addr,
1333         .read           = seq_read,
1334         .llseek         = seq_lseek,
1335         .write          = smk_write_net4addr,
1336         .release        = seq_release,
1337 };
1338
1339 #if IS_ENABLED(CONFIG_IPV6)
1340 /*
1341  * Seq_file read operations for /smack/netlabel6
1342  */
1343
1344 static void *net6addr_seq_start(struct seq_file *s, loff_t *pos)
1345 {
1346         return smk_seq_start(s, pos, &smk_net6addr_list);
1347 }
1348
1349 static void *net6addr_seq_next(struct seq_file *s, void *v, loff_t *pos)
1350 {
1351         return smk_seq_next(s, v, pos, &smk_net6addr_list);
1352 }
1353
1354 /*
1355  * Print host/label pairs
1356  */
1357 static int net6addr_seq_show(struct seq_file *s, void *v)
1358 {
1359         struct list_head *list = v;
1360         struct smk_net6addr *skp =
1361                          list_entry(list, struct smk_net6addr, list);
1362
1363         if (skp->smk_label != NULL)
1364                 seq_printf(s, "%pI6/%d %s\n", &skp->smk_host, skp->smk_masks,
1365                                 skp->smk_label->smk_known);
1366
1367         return 0;
1368 }
1369
1370 static const struct seq_operations net6addr_seq_ops = {
1371         .start = net6addr_seq_start,
1372         .next  = net6addr_seq_next,
1373         .show  = net6addr_seq_show,
1374         .stop  = smk_seq_stop,
1375 };
1376
1377 /**
1378  * smk_open_net6addr - open() for /smack/netlabel
1379  * @inode: inode structure representing file
1380  * @file: "netlabel" file pointer
1381  *
1382  * Connect our net6addr_seq_* operations with /smack/netlabel
1383  * file_operations
1384  */
1385 static int smk_open_net6addr(struct inode *inode, struct file *file)
1386 {
1387         return seq_open(file, &net6addr_seq_ops);
1388 }
1389
1390 /**
1391  * smk_net6addr_insert
1392  * @new : entry to insert
1393  *
1394  * This inserts an entry in the smack_net6addrs list
1395  * sorted by netmask length (longest to smallest)
1396  * locked by &smk_net6addr_lock in smk_write_net6addr
1397  *
1398  */
1399 static void smk_net6addr_insert(struct smk_net6addr *new)
1400 {
1401         struct smk_net6addr *m_next;
1402         struct smk_net6addr *m;
1403
1404         if (list_empty(&smk_net6addr_list)) {
1405                 list_add_rcu(&new->list, &smk_net6addr_list);
1406                 return;
1407         }
1408
1409         m = list_entry_rcu(smk_net6addr_list.next,
1410                            struct smk_net6addr, list);
1411
1412         if (new->smk_masks > m->smk_masks) {
1413                 list_add_rcu(&new->list, &smk_net6addr_list);
1414                 return;
1415         }
1416
1417         list_for_each_entry_rcu(m, &smk_net6addr_list, list) {
1418                 if (list_is_last(&m->list, &smk_net6addr_list)) {
1419                         list_add_rcu(&new->list, &m->list);
1420                         return;
1421                 }
1422                 m_next = list_entry_rcu(m->list.next,
1423                                         struct smk_net6addr, list);
1424                 if (new->smk_masks > m_next->smk_masks) {
1425                         list_add_rcu(&new->list, &m->list);
1426                         return;
1427                 }
1428         }
1429 }
1430
1431
1432 /**
1433  * smk_write_net6addr - write() for /smack/netlabel
1434  * @file: file pointer, not actually used
1435  * @buf: where to get the data from
1436  * @count: bytes sent
1437  * @ppos: where to start
1438  *
1439  * Accepts only one net6addr per write call.
1440  * Returns number of bytes written or error code, as appropriate
1441  */
1442 static ssize_t smk_write_net6addr(struct file *file, const char __user *buf,
1443                                 size_t count, loff_t *ppos)
1444 {
1445         struct smk_net6addr *snp;
1446         struct in6_addr newname;
1447         struct in6_addr fullmask;
1448         struct smack_known *skp = NULL;
1449         char *smack;
1450         char *data;
1451         int rc = 0;
1452         int found = 0;
1453         int i;
1454         unsigned int scanned[8];
1455         unsigned int m;
1456         unsigned int mask = 128;
1457
1458         /*
1459          * Must have privilege.
1460          * No partial writes.
1461          * Enough data must be present.
1462          * "<addr/mask, as a:b:c:d:e:f:g:h/e><space><label>"
1463          * "<addr, as a:b:c:d:e:f:g:h><space><label>"
1464          */
1465         if (!smack_privileged(CAP_MAC_ADMIN))
1466                 return -EPERM;
1467         if (*ppos != 0)
1468                 return -EINVAL;
1469         if (count < SMK_NETLBLADDRMIN)
1470                 return -EINVAL;
1471
1472         data = kzalloc(count + 1, GFP_KERNEL);
1473         if (data == NULL)
1474                 return -ENOMEM;
1475
1476         if (copy_from_user(data, buf, count) != 0) {
1477                 rc = -EFAULT;
1478                 goto free_data_out;
1479         }
1480
1481         smack = kzalloc(count + 1, GFP_KERNEL);
1482         if (smack == NULL) {
1483                 rc = -ENOMEM;
1484                 goto free_data_out;
1485         }
1486
1487         data[count] = '\0';
1488
1489         i = sscanf(data, "%x:%x:%x:%x:%x:%x:%x:%x/%u %s",
1490                         &scanned[0], &scanned[1], &scanned[2], &scanned[3],
1491                         &scanned[4], &scanned[5], &scanned[6], &scanned[7],
1492                         &mask, smack);
1493         if (i != 10) {
1494                 i = sscanf(data, "%x:%x:%x:%x:%x:%x:%x:%x %s",
1495                                 &scanned[0], &scanned[1], &scanned[2],
1496                                 &scanned[3], &scanned[4], &scanned[5],
1497                                 &scanned[6], &scanned[7], smack);
1498                 if (i != 9) {
1499                         rc = -EINVAL;
1500                         goto free_out;
1501                 }
1502         }
1503         if (mask > 128) {
1504                 rc = -EINVAL;
1505                 goto free_out;
1506         }
1507         for (i = 0; i < 8; i++) {
1508                 if (scanned[i] > 0xffff) {
1509                         rc = -EINVAL;
1510                         goto free_out;
1511                 }
1512                 newname.s6_addr16[i] = htons(scanned[i]);
1513         }
1514
1515         /*
1516          * If smack begins with '-', it is an option, don't import it
1517          */
1518         if (smack[0] != '-') {
1519                 skp = smk_import_entry(smack, 0);
1520                 if (IS_ERR(skp)) {
1521                         rc = PTR_ERR(skp);
1522                         goto free_out;
1523                 }
1524         } else {
1525                 /*
1526                  * Only -DELETE is supported for IPv6
1527                  */
1528                 if (strcmp(smack, SMACK_DELETE_OPTION) != 0) {
1529                         rc = -EINVAL;
1530                         goto free_out;
1531                 }
1532         }
1533
1534         for (i = 0, m = mask; i < 8; i++) {
1535                 if (m >= 16) {
1536                         fullmask.s6_addr16[i] = 0xffff;
1537                         m -= 16;
1538                 } else if (m > 0) {
1539                         fullmask.s6_addr16[i] = (1 << m) - 1;
1540                         m = 0;
1541                 } else
1542                         fullmask.s6_addr16[i] = 0;
1543                 newname.s6_addr16[i] &= fullmask.s6_addr16[i];
1544         }
1545
1546         /*
1547          * Only allow one writer at a time. Writes should be
1548          * quite rare and small in any case.
1549          */
1550         mutex_lock(&smk_net6addr_lock);
1551         /*
1552          * Try to find the prefix in the list
1553          */
1554         list_for_each_entry_rcu(snp, &smk_net6addr_list, list) {
1555                 if (mask != snp->smk_masks)
1556                         continue;
1557                 for (found = 1, i = 0; i < 8; i++) {
1558                         if (newname.s6_addr16[i] !=
1559                             snp->smk_host.s6_addr16[i]) {
1560                                 found = 0;
1561                                 break;
1562                         }
1563                 }
1564                 if (found == 1)
1565                         break;
1566         }
1567         if (found == 0) {
1568                 snp = kzalloc(sizeof(*snp), GFP_KERNEL);
1569                 if (snp == NULL)
1570                         rc = -ENOMEM;
1571                 else {
1572                         snp->smk_host = newname;
1573                         snp->smk_mask = fullmask;
1574                         snp->smk_masks = mask;
1575                         snp->smk_label = skp;
1576                         smk_net6addr_insert(snp);
1577                 }
1578         } else {
1579                 snp->smk_label = skp;
1580         }
1581
1582         if (rc == 0)
1583                 rc = count;
1584
1585         mutex_unlock(&smk_net6addr_lock);
1586
1587 free_out:
1588         kfree(smack);
1589 free_data_out:
1590         kfree(data);
1591
1592         return rc;
1593 }
1594
1595 static const struct file_operations smk_net6addr_ops = {
1596         .open           = smk_open_net6addr,
1597         .read           = seq_read,
1598         .llseek         = seq_lseek,
1599         .write          = smk_write_net6addr,
1600         .release        = seq_release,
1601 };
1602 #endif /* CONFIG_IPV6 */
1603
1604 /**
1605  * smk_read_doi - read() for /smack/doi
1606  * @filp: file pointer, not actually used
1607  * @buf: where to put the result
1608  * @count: maximum to send along
1609  * @ppos: where to start
1610  *
1611  * Returns number of bytes read or error code, as appropriate
1612  */
1613 static ssize_t smk_read_doi(struct file *filp, char __user *buf,
1614                             size_t count, loff_t *ppos)
1615 {
1616         char temp[80];
1617         ssize_t rc;
1618
1619         if (*ppos != 0)
1620                 return 0;
1621
1622         sprintf(temp, "%d", smk_cipso_doi_value);
1623         rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1624
1625         return rc;
1626 }
1627
1628 /**
1629  * smk_write_doi - write() for /smack/doi
1630  * @file: file pointer, not actually used
1631  * @buf: where to get the data from
1632  * @count: bytes sent
1633  * @ppos: where to start
1634  *
1635  * Returns number of bytes written or error code, as appropriate
1636  */
1637 static ssize_t smk_write_doi(struct file *file, const char __user *buf,
1638                              size_t count, loff_t *ppos)
1639 {
1640         char temp[80];
1641         int i;
1642
1643         if (!smack_privileged(CAP_MAC_ADMIN))
1644                 return -EPERM;
1645
1646         if (count >= sizeof(temp) || count == 0)
1647                 return -EINVAL;
1648
1649         if (copy_from_user(temp, buf, count) != 0)
1650                 return -EFAULT;
1651
1652         temp[count] = '\0';
1653
1654         if (sscanf(temp, "%d", &i) != 1)
1655                 return -EINVAL;
1656
1657         smk_cipso_doi_value = i;
1658
1659         smk_cipso_doi();
1660
1661         return count;
1662 }
1663
1664 static const struct file_operations smk_doi_ops = {
1665         .read           = smk_read_doi,
1666         .write          = smk_write_doi,
1667         .llseek         = default_llseek,
1668 };
1669
1670 /**
1671  * smk_read_direct - read() for /smack/direct
1672  * @filp: file pointer, not actually used
1673  * @buf: where to put the result
1674  * @count: maximum to send along
1675  * @ppos: where to start
1676  *
1677  * Returns number of bytes read or error code, as appropriate
1678  */
1679 static ssize_t smk_read_direct(struct file *filp, char __user *buf,
1680                                size_t count, loff_t *ppos)
1681 {
1682         char temp[80];
1683         ssize_t rc;
1684
1685         if (*ppos != 0)
1686                 return 0;
1687
1688         sprintf(temp, "%d", smack_cipso_direct);
1689         rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1690
1691         return rc;
1692 }
1693
1694 /**
1695  * smk_write_direct - write() for /smack/direct
1696  * @file: file pointer, not actually used
1697  * @buf: where to get the data from
1698  * @count: bytes sent
1699  * @ppos: where to start
1700  *
1701  * Returns number of bytes written or error code, as appropriate
1702  */
1703 static ssize_t smk_write_direct(struct file *file, const char __user *buf,
1704                                 size_t count, loff_t *ppos)
1705 {
1706         struct smack_known *skp;
1707         char temp[80];
1708         int i;
1709
1710         if (!smack_privileged(CAP_MAC_ADMIN))
1711                 return -EPERM;
1712
1713         if (count >= sizeof(temp) || count == 0)
1714                 return -EINVAL;
1715
1716         if (copy_from_user(temp, buf, count) != 0)
1717                 return -EFAULT;
1718
1719         temp[count] = '\0';
1720
1721         if (sscanf(temp, "%d", &i) != 1)
1722                 return -EINVAL;
1723
1724         /*
1725          * Don't do anything if the value hasn't actually changed.
1726          * If it is changing reset the level on entries that were
1727          * set up to be direct when they were created.
1728          */
1729         if (smack_cipso_direct != i) {
1730                 mutex_lock(&smack_known_lock);
1731                 list_for_each_entry_rcu(skp, &smack_known_list, list)
1732                         if (skp->smk_netlabel.attr.mls.lvl ==
1733                             smack_cipso_direct)
1734                                 skp->smk_netlabel.attr.mls.lvl = i;
1735                 smack_cipso_direct = i;
1736                 mutex_unlock(&smack_known_lock);
1737         }
1738
1739         return count;
1740 }
1741
1742 static const struct file_operations smk_direct_ops = {
1743         .read           = smk_read_direct,
1744         .write          = smk_write_direct,
1745         .llseek         = default_llseek,
1746 };
1747
1748 /**
1749  * smk_read_mapped - read() for /smack/mapped
1750  * @filp: file pointer, not actually used
1751  * @buf: where to put the result
1752  * @count: maximum to send along
1753  * @ppos: where to start
1754  *
1755  * Returns number of bytes read or error code, as appropriate
1756  */
1757 static ssize_t smk_read_mapped(struct file *filp, char __user *buf,
1758                                size_t count, loff_t *ppos)
1759 {
1760         char temp[80];
1761         ssize_t rc;
1762
1763         if (*ppos != 0)
1764                 return 0;
1765
1766         sprintf(temp, "%d", smack_cipso_mapped);
1767         rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1768
1769         return rc;
1770 }
1771
1772 /**
1773  * smk_write_mapped - write() for /smack/mapped
1774  * @file: file pointer, not actually used
1775  * @buf: where to get the data from
1776  * @count: bytes sent
1777  * @ppos: where to start
1778  *
1779  * Returns number of bytes written or error code, as appropriate
1780  */
1781 static ssize_t smk_write_mapped(struct file *file, const char __user *buf,
1782                                 size_t count, loff_t *ppos)
1783 {
1784         struct smack_known *skp;
1785         char temp[80];
1786         int i;
1787
1788         if (!smack_privileged(CAP_MAC_ADMIN))
1789                 return -EPERM;
1790
1791         if (count >= sizeof(temp) || count == 0)
1792                 return -EINVAL;
1793
1794         if (copy_from_user(temp, buf, count) != 0)
1795                 return -EFAULT;
1796
1797         temp[count] = '\0';
1798
1799         if (sscanf(temp, "%d", &i) != 1)
1800                 return -EINVAL;
1801
1802         /*
1803          * Don't do anything if the value hasn't actually changed.
1804          * If it is changing reset the level on entries that were
1805          * set up to be mapped when they were created.
1806          */
1807         if (smack_cipso_mapped != i) {
1808                 mutex_lock(&smack_known_lock);
1809                 list_for_each_entry_rcu(skp, &smack_known_list, list)
1810                         if (skp->smk_netlabel.attr.mls.lvl ==
1811                             smack_cipso_mapped)
1812                                 skp->smk_netlabel.attr.mls.lvl = i;
1813                 smack_cipso_mapped = i;
1814                 mutex_unlock(&smack_known_lock);
1815         }
1816
1817         return count;
1818 }
1819
1820 static const struct file_operations smk_mapped_ops = {
1821         .read           = smk_read_mapped,
1822         .write          = smk_write_mapped,
1823         .llseek         = default_llseek,
1824 };
1825
1826 /**
1827  * smk_read_ambient - read() for /smack/ambient
1828  * @filp: file pointer, not actually used
1829  * @buf: where to put the result
1830  * @cn: maximum to send along
1831  * @ppos: where to start
1832  *
1833  * Returns number of bytes read or error code, as appropriate
1834  */
1835 static ssize_t smk_read_ambient(struct file *filp, char __user *buf,
1836                                 size_t cn, loff_t *ppos)
1837 {
1838         ssize_t rc;
1839         int asize;
1840
1841         if (*ppos != 0)
1842                 return 0;
1843         /*
1844          * Being careful to avoid a problem in the case where
1845          * smack_net_ambient gets changed in midstream.
1846          */
1847         mutex_lock(&smack_ambient_lock);
1848
1849         asize = strlen(smack_net_ambient->smk_known) + 1;
1850
1851         if (cn >= asize)
1852                 rc = simple_read_from_buffer(buf, cn, ppos,
1853                                              smack_net_ambient->smk_known,
1854                                              asize);
1855         else
1856                 rc = -EINVAL;
1857
1858         mutex_unlock(&smack_ambient_lock);
1859
1860         return rc;
1861 }
1862
1863 /**
1864  * smk_write_ambient - write() for /smack/ambient
1865  * @file: file pointer, not actually used
1866  * @buf: where to get the data from
1867  * @count: bytes sent
1868  * @ppos: where to start
1869  *
1870  * Returns number of bytes written or error code, as appropriate
1871  */
1872 static ssize_t smk_write_ambient(struct file *file, const char __user *buf,
1873                                  size_t count, loff_t *ppos)
1874 {
1875         struct smack_known *skp;
1876         char *oldambient;
1877         char *data;
1878         int rc = count;
1879
1880         if (!smack_privileged(CAP_MAC_ADMIN))
1881                 return -EPERM;
1882
1883         data = kzalloc(count + 1, GFP_KERNEL);
1884         if (data == NULL)
1885                 return -ENOMEM;
1886
1887         if (copy_from_user(data, buf, count) != 0) {
1888                 rc = -EFAULT;
1889                 goto out;
1890         }
1891
1892         skp = smk_import_entry(data, count);
1893         if (IS_ERR(skp)) {
1894                 rc = PTR_ERR(skp);
1895                 goto out;
1896         }
1897
1898         mutex_lock(&smack_ambient_lock);
1899
1900         oldambient = smack_net_ambient->smk_known;
1901         smack_net_ambient = skp;
1902         smk_unlbl_ambient(oldambient);
1903
1904         mutex_unlock(&smack_ambient_lock);
1905
1906 out:
1907         kfree(data);
1908         return rc;
1909 }
1910
1911 static const struct file_operations smk_ambient_ops = {
1912         .read           = smk_read_ambient,
1913         .write          = smk_write_ambient,
1914         .llseek         = default_llseek,
1915 };
1916
1917 /*
1918  * Seq_file operations for /smack/onlycap
1919  */
1920 static void *onlycap_seq_start(struct seq_file *s, loff_t *pos)
1921 {
1922         return smk_seq_start(s, pos, &smack_onlycap_list);
1923 }
1924
1925 static void *onlycap_seq_next(struct seq_file *s, void *v, loff_t *pos)
1926 {
1927         return smk_seq_next(s, v, pos, &smack_onlycap_list);
1928 }
1929
1930 static int onlycap_seq_show(struct seq_file *s, void *v)
1931 {
1932         struct list_head *list = v;
1933         struct smack_known_list_elem *sklep =
1934                 list_entry_rcu(list, struct smack_known_list_elem, list);
1935
1936         seq_puts(s, sklep->smk_label->smk_known);
1937         seq_putc(s, ' ');
1938
1939         return 0;
1940 }
1941
1942 static const struct seq_operations onlycap_seq_ops = {
1943         .start = onlycap_seq_start,
1944         .next  = onlycap_seq_next,
1945         .show  = onlycap_seq_show,
1946         .stop  = smk_seq_stop,
1947 };
1948
1949 static int smk_open_onlycap(struct inode *inode, struct file *file)
1950 {
1951         return seq_open(file, &onlycap_seq_ops);
1952 }
1953
1954 /**
1955  * smk_list_swap_rcu - swap public list with a private one in RCU-safe way
1956  * The caller must hold appropriate mutex to prevent concurrent modifications
1957  * to the public list.
1958  * Private list is assumed to be not accessible to other threads yet.
1959  *
1960  * @public: public list
1961  * @private: private list
1962  */
1963 static void smk_list_swap_rcu(struct list_head *public,
1964                               struct list_head *private)
1965 {
1966         struct list_head *first, *last;
1967
1968         if (list_empty(public)) {
1969                 list_splice_init_rcu(private, public, synchronize_rcu);
1970         } else {
1971                 /* Remember public list before replacing it */
1972                 first = public->next;
1973                 last = public->prev;
1974
1975                 /* Publish private list in place of public in RCU-safe way */
1976                 private->prev->next = public;
1977                 private->next->prev = public;
1978                 rcu_assign_pointer(public->next, private->next);
1979                 public->prev = private->prev;
1980
1981                 synchronize_rcu();
1982
1983                 /* When all readers are done with the old public list,
1984                  * attach it in place of private */
1985                 private->next = first;
1986                 private->prev = last;
1987                 first->prev = private;
1988                 last->next = private;
1989         }
1990 }
1991
1992 /**
1993  * smk_parse_label_list - parse list of Smack labels, separated by spaces
1994  *
1995  * @data: the string to parse
1996  * @private: destination list
1997  *
1998  * Returns zero on success or error code, as appropriate
1999  */
2000 static int smk_parse_label_list(char *data, struct list_head *list)
2001 {
2002         char *tok;
2003         struct smack_known *skp;
2004         struct smack_known_list_elem *sklep;
2005
2006         while ((tok = strsep(&data, " ")) != NULL) {
2007                 if (!*tok)
2008                         continue;
2009
2010                 skp = smk_import_entry(tok, 0);
2011                 if (IS_ERR(skp))
2012                         return PTR_ERR(skp);
2013
2014                 sklep = kzalloc(sizeof(*sklep), GFP_KERNEL);
2015                 if (sklep == NULL)
2016                         return -ENOMEM;
2017
2018                 sklep->smk_label = skp;
2019                 list_add(&sklep->list, list);
2020         }
2021
2022         return 0;
2023 }
2024
2025 /**
2026  * smk_destroy_label_list - destroy a list of smack_known_list_elem
2027  * @head: header pointer of the list to destroy
2028  */
2029 void smk_destroy_label_list(struct list_head *list)
2030 {
2031         struct smack_known_list_elem *sklep;
2032         struct smack_known_list_elem *sklep2;
2033
2034         list_for_each_entry_safe(sklep, sklep2, list, list)
2035                 kfree(sklep);
2036
2037         INIT_LIST_HEAD(list);
2038 }
2039
2040 /**
2041  * smk_write_onlycap - write() for smackfs/onlycap
2042  * @file: file pointer, not actually used
2043  * @buf: where to get the data from
2044  * @count: bytes sent
2045  * @ppos: where to start
2046  *
2047  * Returns number of bytes written or error code, as appropriate
2048  */
2049 static ssize_t smk_write_onlycap(struct file *file, const char __user *buf,
2050                                  size_t count, loff_t *ppos)
2051 {
2052         char *data;
2053         LIST_HEAD(list_tmp);
2054         int rc;
2055
2056         if (!smack_privileged(CAP_MAC_ADMIN))
2057                 return -EPERM;
2058
2059         data = kzalloc(count + 1, GFP_KERNEL);
2060         if (data == NULL)
2061                 return -ENOMEM;
2062
2063         if (copy_from_user(data, buf, count) != 0) {
2064                 kfree(data);
2065                 return -EFAULT;
2066         }
2067
2068         rc = smk_parse_label_list(data, &list_tmp);
2069         kfree(data);
2070
2071         /*
2072          * Clear the smack_onlycap on invalid label errors. This means
2073          * that we can pass a null string to unset the onlycap value.
2074          *
2075          * Importing will also reject a label beginning with '-',
2076          * so "-usecapabilities" will also work.
2077          *
2078          * But do so only on invalid label, not on system errors.
2079          * The invalid label must be first to count as clearing attempt.
2080          */
2081         if (!rc || (rc == -EINVAL && list_empty(&list_tmp))) {
2082                 mutex_lock(&smack_onlycap_lock);
2083                 smk_list_swap_rcu(&smack_onlycap_list, &list_tmp);
2084                 mutex_unlock(&smack_onlycap_lock);
2085                 rc = count;
2086         }
2087
2088         smk_destroy_label_list(&list_tmp);
2089
2090         return rc;
2091 }
2092
2093 static const struct file_operations smk_onlycap_ops = {
2094         .open           = smk_open_onlycap,
2095         .read           = seq_read,
2096         .write          = smk_write_onlycap,
2097         .llseek         = seq_lseek,
2098         .release        = seq_release,
2099 };
2100
2101 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
2102 /**
2103  * smk_read_unconfined - read() for smackfs/unconfined
2104  * @filp: file pointer, not actually used
2105  * @buf: where to put the result
2106  * @cn: maximum to send along
2107  * @ppos: where to start
2108  *
2109  * Returns number of bytes read or error code, as appropriate
2110  */
2111 static ssize_t smk_read_unconfined(struct file *filp, char __user *buf,
2112                                         size_t cn, loff_t *ppos)
2113 {
2114         char *smack = "";
2115         ssize_t rc = -EINVAL;
2116         int asize;
2117
2118         if (*ppos != 0)
2119                 return 0;
2120
2121         if (smack_unconfined != NULL)
2122                 smack = smack_unconfined->smk_known;
2123
2124         asize = strlen(smack) + 1;
2125
2126         if (cn >= asize)
2127                 rc = simple_read_from_buffer(buf, cn, ppos, smack, asize);
2128
2129         return rc;
2130 }
2131
2132 /**
2133  * smk_write_unconfined - write() for smackfs/unconfined
2134  * @file: file pointer, not actually used
2135  * @buf: where to get the data from
2136  * @count: bytes sent
2137  * @ppos: where to start
2138  *
2139  * Returns number of bytes written or error code, as appropriate
2140  */
2141 static ssize_t smk_write_unconfined(struct file *file, const char __user *buf,
2142                                         size_t count, loff_t *ppos)
2143 {
2144         char *data;
2145         struct smack_known *skp;
2146         int rc = count;
2147
2148         if (!smack_privileged(CAP_MAC_ADMIN))
2149                 return -EPERM;
2150
2151         data = kzalloc(count + 1, GFP_KERNEL);
2152         if (data == NULL)
2153                 return -ENOMEM;
2154
2155         if (copy_from_user(data, buf, count) != 0) {
2156                 rc = -EFAULT;
2157                 goto freeout;
2158         }
2159
2160         /*
2161          * Clear the smack_unconfined on invalid label errors. This means
2162          * that we can pass a null string to unset the unconfined value.
2163          *
2164          * Importing will also reject a label beginning with '-',
2165          * so "-confine" will also work.
2166          *
2167          * But do so only on invalid label, not on system errors.
2168          */
2169         skp = smk_import_entry(data, count);
2170         if (PTR_ERR(skp) == -EINVAL)
2171                 skp = NULL;
2172         else if (IS_ERR(skp)) {
2173                 rc = PTR_ERR(skp);
2174                 goto freeout;
2175         }
2176
2177         smack_unconfined = skp;
2178
2179 freeout:
2180         kfree(data);
2181         return rc;
2182 }
2183
2184 static const struct file_operations smk_unconfined_ops = {
2185         .read           = smk_read_unconfined,
2186         .write          = smk_write_unconfined,
2187         .llseek         = default_llseek,
2188 };
2189 #endif /* CONFIG_SECURITY_SMACK_BRINGUP */
2190
2191 /**
2192  * smk_read_logging - read() for /smack/logging
2193  * @filp: file pointer, not actually used
2194  * @buf: where to put the result
2195  * @cn: maximum to send along
2196  * @ppos: where to start
2197  *
2198  * Returns number of bytes read or error code, as appropriate
2199  */
2200 static ssize_t smk_read_logging(struct file *filp, char __user *buf,
2201                                 size_t count, loff_t *ppos)
2202 {
2203         char temp[32];
2204         ssize_t rc;
2205
2206         if (*ppos != 0)
2207                 return 0;
2208
2209         sprintf(temp, "%d\n", log_policy);
2210         rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
2211         return rc;
2212 }
2213
2214 /**
2215  * smk_write_logging - write() for /smack/logging
2216  * @file: file pointer, not actually used
2217  * @buf: where to get the data from
2218  * @count: bytes sent
2219  * @ppos: where to start
2220  *
2221  * Returns number of bytes written or error code, as appropriate
2222  */
2223 static ssize_t smk_write_logging(struct file *file, const char __user *buf,
2224                                 size_t count, loff_t *ppos)
2225 {
2226         char temp[32];
2227         int i;
2228
2229         if (!smack_privileged(CAP_MAC_ADMIN))
2230                 return -EPERM;
2231
2232         if (count >= sizeof(temp) || count == 0)
2233                 return -EINVAL;
2234
2235         if (copy_from_user(temp, buf, count) != 0)
2236                 return -EFAULT;
2237
2238         temp[count] = '\0';
2239
2240         if (sscanf(temp, "%d", &i) != 1)
2241                 return -EINVAL;
2242         if (i < 0 || i > 3)
2243                 return -EINVAL;
2244         log_policy = i;
2245         return count;
2246 }
2247
2248
2249
2250 static const struct file_operations smk_logging_ops = {
2251         .read           = smk_read_logging,
2252         .write          = smk_write_logging,
2253         .llseek         = default_llseek,
2254 };
2255
2256 /*
2257  * Seq_file read operations for /smack/load-self
2258  */
2259
2260 static void *load_self_seq_start(struct seq_file *s, loff_t *pos)
2261 {
2262         struct task_smack *tsp = current_security();
2263
2264         return smk_seq_start(s, pos, &tsp->smk_rules);
2265 }
2266
2267 static void *load_self_seq_next(struct seq_file *s, void *v, loff_t *pos)
2268 {
2269         struct task_smack *tsp = current_security();
2270
2271         return smk_seq_next(s, v, pos, &tsp->smk_rules);
2272 }
2273
2274 static int load_self_seq_show(struct seq_file *s, void *v)
2275 {
2276         struct list_head *list = v;
2277         struct smack_rule *srp =
2278                 list_entry_rcu(list, struct smack_rule, list);
2279
2280         smk_rule_show(s, srp, SMK_LABELLEN);
2281
2282         return 0;
2283 }
2284
2285 static const struct seq_operations load_self_seq_ops = {
2286         .start = load_self_seq_start,
2287         .next  = load_self_seq_next,
2288         .show  = load_self_seq_show,
2289         .stop  = smk_seq_stop,
2290 };
2291
2292
2293 /**
2294  * smk_open_load_self - open() for /smack/load-self2
2295  * @inode: inode structure representing file
2296  * @file: "load" file pointer
2297  *
2298  * For reading, use load_seq_* seq_file reading operations.
2299  */
2300 static int smk_open_load_self(struct inode *inode, struct file *file)
2301 {
2302         return seq_open(file, &load_self_seq_ops);
2303 }
2304
2305 /**
2306  * smk_write_load_self - write() for /smack/load-self
2307  * @file: file pointer, not actually used
2308  * @buf: where to get the data from
2309  * @count: bytes sent
2310  * @ppos: where to start - must be 0
2311  *
2312  */
2313 static ssize_t smk_write_load_self(struct file *file, const char __user *buf,
2314                               size_t count, loff_t *ppos)
2315 {
2316         struct task_smack *tsp = current_security();
2317
2318         return smk_write_rules_list(file, buf, count, ppos, &tsp->smk_rules,
2319                                     &tsp->smk_rules_lock, SMK_FIXED24_FMT);
2320 }
2321
2322 static const struct file_operations smk_load_self_ops = {
2323         .open           = smk_open_load_self,
2324         .read           = seq_read,
2325         .llseek         = seq_lseek,
2326         .write          = smk_write_load_self,
2327         .release        = seq_release,
2328 };
2329
2330 /**
2331  * smk_user_access - handle access check transaction
2332  * @file: file pointer
2333  * @buf: data from user space
2334  * @count: bytes sent
2335  * @ppos: where to start - must be 0
2336  */
2337 static ssize_t smk_user_access(struct file *file, const char __user *buf,
2338                                 size_t count, loff_t *ppos, int format)
2339 {
2340         struct smack_parsed_rule rule;
2341         char *data;
2342         int res;
2343
2344         data = simple_transaction_get(file, buf, count);
2345         if (IS_ERR(data))
2346                 return PTR_ERR(data);
2347
2348         if (format == SMK_FIXED24_FMT) {
2349                 if (count < SMK_LOADLEN)
2350                         return -EINVAL;
2351                 res = smk_parse_rule(data, &rule, 0);
2352         } else {
2353                 /*
2354                  * simple_transaction_get() returns null-terminated data
2355                  */
2356                 res = smk_parse_long_rule(data, &rule, 0, 3);
2357         }
2358
2359         if (res >= 0)
2360                 res = smk_access(rule.smk_subject, rule.smk_object,
2361                                  rule.smk_access1, NULL);
2362         else if (res != -ENOENT)
2363                 return res;
2364
2365         /*
2366          * smk_access() can return a value > 0 in the "bringup" case.
2367          */
2368         data[0] = res >= 0 ? '1' : '0';
2369         data[1] = '\0';
2370
2371         simple_transaction_set(file, 2);
2372
2373         if (format == SMK_FIXED24_FMT)
2374                 return SMK_LOADLEN;
2375         return count;
2376 }
2377
2378 /**
2379  * smk_write_access - handle access check transaction
2380  * @file: file pointer
2381  * @buf: data from user space
2382  * @count: bytes sent
2383  * @ppos: where to start - must be 0
2384  */
2385 static ssize_t smk_write_access(struct file *file, const char __user *buf,
2386                                 size_t count, loff_t *ppos)
2387 {
2388         return smk_user_access(file, buf, count, ppos, SMK_FIXED24_FMT);
2389 }
2390
2391 static const struct file_operations smk_access_ops = {
2392         .write          = smk_write_access,
2393         .read           = simple_transaction_read,
2394         .release        = simple_transaction_release,
2395         .llseek         = generic_file_llseek,
2396 };
2397
2398
2399 /*
2400  * Seq_file read operations for /smack/load2
2401  */
2402
2403 static int load2_seq_show(struct seq_file *s, void *v)
2404 {
2405         struct list_head *list = v;
2406         struct smack_master_list *smlp =
2407                 list_entry_rcu(list, struct smack_master_list, list);
2408
2409         smk_rule_show(s, smlp->smk_rule, SMK_LONGLABEL);
2410
2411         return 0;
2412 }
2413
2414 static const struct seq_operations load2_seq_ops = {
2415         .start = load2_seq_start,
2416         .next  = load2_seq_next,
2417         .show  = load2_seq_show,
2418         .stop  = smk_seq_stop,
2419 };
2420
2421 /**
2422  * smk_open_load2 - open() for /smack/load2
2423  * @inode: inode structure representing file
2424  * @file: "load2" file pointer
2425  *
2426  * For reading, use load2_seq_* seq_file reading operations.
2427  */
2428 static int smk_open_load2(struct inode *inode, struct file *file)
2429 {
2430         return seq_open(file, &load2_seq_ops);
2431 }
2432
2433 /**
2434  * smk_write_load2 - write() for /smack/load2
2435  * @file: file pointer, not actually used
2436  * @buf: where to get the data from
2437  * @count: bytes sent
2438  * @ppos: where to start - must be 0
2439  *
2440  */
2441 static ssize_t smk_write_load2(struct file *file, const char __user *buf,
2442                                 size_t count, loff_t *ppos)
2443 {
2444         /*
2445          * Must have privilege.
2446          */
2447         if (!smack_privileged(CAP_MAC_ADMIN))
2448                 return -EPERM;
2449
2450         return smk_write_rules_list(file, buf, count, ppos, NULL, NULL,
2451                                     SMK_LONG_FMT);
2452 }
2453
2454 static const struct file_operations smk_load2_ops = {
2455         .open           = smk_open_load2,
2456         .read           = seq_read,
2457         .llseek         = seq_lseek,
2458         .write          = smk_write_load2,
2459         .release        = seq_release,
2460 };
2461
2462 /*
2463  * Seq_file read operations for /smack/load-self2
2464  */
2465
2466 static void *load_self2_seq_start(struct seq_file *s, loff_t *pos)
2467 {
2468         struct task_smack *tsp = current_security();
2469
2470         return smk_seq_start(s, pos, &tsp->smk_rules);
2471 }
2472
2473 static void *load_self2_seq_next(struct seq_file *s, void *v, loff_t *pos)
2474 {
2475         struct task_smack *tsp = current_security();
2476
2477         return smk_seq_next(s, v, pos, &tsp->smk_rules);
2478 }
2479
2480 static int load_self2_seq_show(struct seq_file *s, void *v)
2481 {
2482         struct list_head *list = v;
2483         struct smack_rule *srp =
2484                 list_entry_rcu(list, struct smack_rule, list);
2485
2486         smk_rule_show(s, srp, SMK_LONGLABEL);
2487
2488         return 0;
2489 }
2490
2491 static const struct seq_operations load_self2_seq_ops = {
2492         .start = load_self2_seq_start,
2493         .next  = load_self2_seq_next,
2494         .show  = load_self2_seq_show,
2495         .stop  = smk_seq_stop,
2496 };
2497
2498 /**
2499  * smk_open_load_self2 - open() for /smack/load-self2
2500  * @inode: inode structure representing file
2501  * @file: "load" file pointer
2502  *
2503  * For reading, use load_seq_* seq_file reading operations.
2504  */
2505 static int smk_open_load_self2(struct inode *inode, struct file *file)
2506 {
2507         return seq_open(file, &load_self2_seq_ops);
2508 }
2509
2510 /**
2511  * smk_write_load_self2 - write() for /smack/load-self2
2512  * @file: file pointer, not actually used
2513  * @buf: where to get the data from
2514  * @count: bytes sent
2515  * @ppos: where to start - must be 0
2516  *
2517  */
2518 static ssize_t smk_write_load_self2(struct file *file, const char __user *buf,
2519                               size_t count, loff_t *ppos)
2520 {
2521         struct task_smack *tsp = current_security();
2522
2523         return smk_write_rules_list(file, buf, count, ppos, &tsp->smk_rules,
2524                                     &tsp->smk_rules_lock, SMK_LONG_FMT);
2525 }
2526
2527 static const struct file_operations smk_load_self2_ops = {
2528         .open           = smk_open_load_self2,
2529         .read           = seq_read,
2530         .llseek         = seq_lseek,
2531         .write          = smk_write_load_self2,
2532         .release        = seq_release,
2533 };
2534
2535 /**
2536  * smk_write_access2 - handle access check transaction
2537  * @file: file pointer
2538  * @buf: data from user space
2539  * @count: bytes sent
2540  * @ppos: where to start - must be 0
2541  */
2542 static ssize_t smk_write_access2(struct file *file, const char __user *buf,
2543                                         size_t count, loff_t *ppos)
2544 {
2545         return smk_user_access(file, buf, count, ppos, SMK_LONG_FMT);
2546 }
2547
2548 static const struct file_operations smk_access2_ops = {
2549         .write          = smk_write_access2,
2550         .read           = simple_transaction_read,
2551         .release        = simple_transaction_release,
2552         .llseek         = generic_file_llseek,
2553 };
2554
2555 /**
2556  * smk_write_revoke_subj - write() for /smack/revoke-subject
2557  * @file: file pointer
2558  * @buf: data from user space
2559  * @count: bytes sent
2560  * @ppos: where to start - must be 0
2561  */
2562 static ssize_t smk_write_revoke_subj(struct file *file, const char __user *buf,
2563                                 size_t count, loff_t *ppos)
2564 {
2565         char *data;
2566         const char *cp;
2567         struct smack_known *skp;
2568         struct smack_rule *sp;
2569         struct list_head *rule_list;
2570         struct mutex *rule_lock;
2571         int rc = count;
2572
2573         if (*ppos != 0)
2574                 return -EINVAL;
2575
2576         if (!smack_privileged(CAP_MAC_ADMIN))
2577                 return -EPERM;
2578
2579         if (count == 0 || count > SMK_LONGLABEL)
2580                 return -EINVAL;
2581
2582         data = kzalloc(count, GFP_KERNEL);
2583         if (data == NULL)
2584                 return -ENOMEM;
2585
2586         if (copy_from_user(data, buf, count) != 0) {
2587                 rc = -EFAULT;
2588                 goto out_data;
2589         }
2590
2591         cp = smk_parse_smack(data, count);
2592         if (IS_ERR(cp)) {
2593                 rc = PTR_ERR(cp);
2594                 goto out_data;
2595         }
2596
2597         skp = smk_find_entry(cp);
2598         if (skp == NULL)
2599                 goto out_cp;
2600
2601         rule_list = &skp->smk_rules;
2602         rule_lock = &skp->smk_rules_lock;
2603
2604         mutex_lock(rule_lock);
2605
2606         list_for_each_entry_rcu(sp, rule_list, list)
2607                 sp->smk_access = 0;
2608
2609         mutex_unlock(rule_lock);
2610
2611 out_cp:
2612         kfree(cp);
2613 out_data:
2614         kfree(data);
2615
2616         return rc;
2617 }
2618
2619 static const struct file_operations smk_revoke_subj_ops = {
2620         .write          = smk_write_revoke_subj,
2621         .read           = simple_transaction_read,
2622         .release        = simple_transaction_release,
2623         .llseek         = generic_file_llseek,
2624 };
2625
2626 /**
2627  * smk_init_sysfs - initialize /sys/fs/smackfs
2628  *
2629  */
2630 static int smk_init_sysfs(void)
2631 {
2632         return sysfs_create_mount_point(fs_kobj, "smackfs");
2633 }
2634
2635 /**
2636  * smk_write_change_rule - write() for /smack/change-rule
2637  * @file: file pointer
2638  * @buf: data from user space
2639  * @count: bytes sent
2640  * @ppos: where to start - must be 0
2641  */
2642 static ssize_t smk_write_change_rule(struct file *file, const char __user *buf,
2643                                 size_t count, loff_t *ppos)
2644 {
2645         /*
2646          * Must have privilege.
2647          */
2648         if (!smack_privileged(CAP_MAC_ADMIN))
2649                 return -EPERM;
2650
2651         return smk_write_rules_list(file, buf, count, ppos, NULL, NULL,
2652                                     SMK_CHANGE_FMT);
2653 }
2654
2655 static const struct file_operations smk_change_rule_ops = {
2656         .write          = smk_write_change_rule,
2657         .read           = simple_transaction_read,
2658         .release        = simple_transaction_release,
2659         .llseek         = generic_file_llseek,
2660 };
2661
2662 /**
2663  * smk_read_syslog - read() for smackfs/syslog
2664  * @filp: file pointer, not actually used
2665  * @buf: where to put the result
2666  * @cn: maximum to send along
2667  * @ppos: where to start
2668  *
2669  * Returns number of bytes read or error code, as appropriate
2670  */
2671 static ssize_t smk_read_syslog(struct file *filp, char __user *buf,
2672                                 size_t cn, loff_t *ppos)
2673 {
2674         struct smack_known *skp;
2675         ssize_t rc = -EINVAL;
2676         int asize;
2677
2678         if (*ppos != 0)
2679                 return 0;
2680
2681         if (smack_syslog_label == NULL)
2682                 skp = &smack_known_star;
2683         else
2684                 skp = smack_syslog_label;
2685
2686         asize = strlen(skp->smk_known) + 1;
2687
2688         if (cn >= asize)
2689                 rc = simple_read_from_buffer(buf, cn, ppos, skp->smk_known,
2690                                                 asize);
2691
2692         return rc;
2693 }
2694
2695 /**
2696  * smk_write_syslog - write() for smackfs/syslog
2697  * @file: file pointer, not actually used
2698  * @buf: where to get the data from
2699  * @count: bytes sent
2700  * @ppos: where to start
2701  *
2702  * Returns number of bytes written or error code, as appropriate
2703  */
2704 static ssize_t smk_write_syslog(struct file *file, const char __user *buf,
2705                                 size_t count, loff_t *ppos)
2706 {
2707         char *data;
2708         struct smack_known *skp;
2709         int rc = count;
2710
2711         if (!smack_privileged(CAP_MAC_ADMIN))
2712                 return -EPERM;
2713
2714         data = kzalloc(count + 1, GFP_KERNEL);
2715         if (data == NULL)
2716                 return -ENOMEM;
2717
2718         if (copy_from_user(data, buf, count) != 0)
2719                 rc = -EFAULT;
2720         else {
2721                 skp = smk_import_entry(data, count);
2722                 if (IS_ERR(skp))
2723                         rc = PTR_ERR(skp);
2724                 else
2725                         smack_syslog_label = skp;
2726         }
2727
2728         kfree(data);
2729         return rc;
2730 }
2731
2732 static const struct file_operations smk_syslog_ops = {
2733         .read           = smk_read_syslog,
2734         .write          = smk_write_syslog,
2735         .llseek         = default_llseek,
2736 };
2737
2738 /*
2739  * Seq_file read operations for /smack/relabel-self
2740  */
2741
2742 static void *relabel_self_seq_start(struct seq_file *s, loff_t *pos)
2743 {
2744         struct task_smack *tsp = current_security();
2745
2746         return smk_seq_start(s, pos, &tsp->smk_relabel);
2747 }
2748
2749 static void *relabel_self_seq_next(struct seq_file *s, void *v, loff_t *pos)
2750 {
2751         struct task_smack *tsp = current_security();
2752
2753         return smk_seq_next(s, v, pos, &tsp->smk_relabel);
2754 }
2755
2756 static int relabel_self_seq_show(struct seq_file *s, void *v)
2757 {
2758         struct list_head *list = v;
2759         struct smack_known_list_elem *sklep =
2760                 list_entry(list, struct smack_known_list_elem, list);
2761
2762         seq_puts(s, sklep->smk_label->smk_known);
2763         seq_putc(s, ' ');
2764
2765         return 0;
2766 }
2767
2768 static const struct seq_operations relabel_self_seq_ops = {
2769         .start = relabel_self_seq_start,
2770         .next  = relabel_self_seq_next,
2771         .show  = relabel_self_seq_show,
2772         .stop  = smk_seq_stop,
2773 };
2774
2775 /**
2776  * smk_open_relabel_self - open() for /smack/relabel-self
2777  * @inode: inode structure representing file
2778  * @file: "relabel-self" file pointer
2779  *
2780  * Connect our relabel_self_seq_* operations with /smack/relabel-self
2781  * file_operations
2782  */
2783 static int smk_open_relabel_self(struct inode *inode, struct file *file)
2784 {
2785         return seq_open(file, &relabel_self_seq_ops);
2786 }
2787
2788 /**
2789  * smk_write_relabel_self - write() for /smack/relabel-self
2790  * @file: file pointer, not actually used
2791  * @buf: where to get the data from
2792  * @count: bytes sent
2793  * @ppos: where to start - must be 0
2794  *
2795  */
2796 static ssize_t smk_write_relabel_self(struct file *file, const char __user *buf,
2797                                 size_t count, loff_t *ppos)
2798 {
2799         char *data;
2800         int rc;
2801         LIST_HEAD(list_tmp);
2802
2803         /*
2804          * Must have privilege.
2805          */
2806         if (!smack_privileged(CAP_MAC_ADMIN))
2807                 return -EPERM;
2808
2809         /*
2810          * Enough data must be present.
2811          */
2812         if (*ppos != 0)
2813                 return -EINVAL;
2814
2815         data = kzalloc(count + 1, GFP_KERNEL);
2816         if (data == NULL)
2817                 return -ENOMEM;
2818
2819         if (copy_from_user(data, buf, count) != 0) {
2820                 kfree(data);
2821                 return -EFAULT;
2822         }
2823
2824         rc = smk_parse_label_list(data, &list_tmp);
2825         kfree(data);
2826
2827         if (!rc || (rc == -EINVAL && list_empty(&list_tmp))) {
2828                 struct cred *new;
2829                 struct task_smack *tsp;
2830
2831                 new = prepare_creds();
2832                 if (!new) {
2833                         rc = -ENOMEM;
2834                         goto out;
2835                 }
2836                 tsp = new->security;
2837                 smk_destroy_label_list(&tsp->smk_relabel);
2838                 list_splice(&list_tmp, &tsp->smk_relabel);
2839                 commit_creds(new);
2840                 return count;
2841         }
2842 out:
2843         smk_destroy_label_list(&list_tmp);
2844         return rc;
2845 }
2846
2847 static const struct file_operations smk_relabel_self_ops = {
2848         .open           = smk_open_relabel_self,
2849         .read           = seq_read,
2850         .llseek         = seq_lseek,
2851         .write          = smk_write_relabel_self,
2852         .release        = seq_release,
2853 };
2854
2855 /**
2856  * smk_read_ptrace - read() for /smack/ptrace
2857  * @filp: file pointer, not actually used
2858  * @buf: where to put the result
2859  * @count: maximum to send along
2860  * @ppos: where to start
2861  *
2862  * Returns number of bytes read or error code, as appropriate
2863  */
2864 static ssize_t smk_read_ptrace(struct file *filp, char __user *buf,
2865                                size_t count, loff_t *ppos)
2866 {
2867         char temp[32];
2868         ssize_t rc;
2869
2870         if (*ppos != 0)
2871                 return 0;
2872
2873         sprintf(temp, "%d\n", smack_ptrace_rule);
2874         rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
2875         return rc;
2876 }
2877
2878 /**
2879  * smk_write_ptrace - write() for /smack/ptrace
2880  * @file: file pointer
2881  * @buf: data from user space
2882  * @count: bytes sent
2883  * @ppos: where to start - must be 0
2884  */
2885 static ssize_t smk_write_ptrace(struct file *file, const char __user *buf,
2886                                 size_t count, loff_t *ppos)
2887 {
2888         char temp[32];
2889         int i;
2890
2891         if (!smack_privileged(CAP_MAC_ADMIN))
2892                 return -EPERM;
2893
2894         if (*ppos != 0 || count >= sizeof(temp) || count == 0)
2895                 return -EINVAL;
2896
2897         if (copy_from_user(temp, buf, count) != 0)
2898                 return -EFAULT;
2899
2900         temp[count] = '\0';
2901
2902         if (sscanf(temp, "%d", &i) != 1)
2903                 return -EINVAL;
2904         if (i < SMACK_PTRACE_DEFAULT || i > SMACK_PTRACE_MAX)
2905                 return -EINVAL;
2906         smack_ptrace_rule = i;
2907
2908         return count;
2909 }
2910
2911 static const struct file_operations smk_ptrace_ops = {
2912         .write          = smk_write_ptrace,
2913         .read           = smk_read_ptrace,
2914         .llseek         = default_llseek,
2915 };
2916
2917 /**
2918  * smk_fill_super - fill the smackfs superblock
2919  * @sb: the empty superblock
2920  * @data: unused
2921  * @silent: unused
2922  *
2923  * Fill in the well known entries for the smack filesystem
2924  *
2925  * Returns 0 on success, an error code on failure
2926  */
2927 static int smk_fill_super(struct super_block *sb, void *data, int silent)
2928 {
2929         int rc;
2930         struct inode *root_inode;
2931
2932         static struct tree_descr smack_files[] = {
2933                 [SMK_LOAD] = {
2934                         "load", &smk_load_ops, S_IRUGO|S_IWUSR},
2935                 [SMK_CIPSO] = {
2936                         "cipso", &smk_cipso_ops, S_IRUGO|S_IWUSR},
2937                 [SMK_DOI] = {
2938                         "doi", &smk_doi_ops, S_IRUGO|S_IWUSR},
2939                 [SMK_DIRECT] = {
2940                         "direct", &smk_direct_ops, S_IRUGO|S_IWUSR},
2941                 [SMK_AMBIENT] = {
2942                         "ambient", &smk_ambient_ops, S_IRUGO|S_IWUSR},
2943                 [SMK_NET4ADDR] = {
2944                         "netlabel", &smk_net4addr_ops, S_IRUGO|S_IWUSR},
2945                 [SMK_ONLYCAP] = {
2946                         "onlycap", &smk_onlycap_ops, S_IRUGO|S_IWUSR},
2947                 [SMK_LOGGING] = {
2948                         "logging", &smk_logging_ops, S_IRUGO|S_IWUSR},
2949                 [SMK_LOAD_SELF] = {
2950                         "load-self", &smk_load_self_ops, S_IRUGO|S_IWUGO},
2951                 [SMK_ACCESSES] = {
2952                         "access", &smk_access_ops, S_IRUGO|S_IWUGO},
2953                 [SMK_MAPPED] = {
2954                         "mapped", &smk_mapped_ops, S_IRUGO|S_IWUSR},
2955                 [SMK_LOAD2] = {
2956                         "load2", &smk_load2_ops, S_IRUGO|S_IWUSR},
2957                 [SMK_LOAD_SELF2] = {
2958                         "load-self2", &smk_load_self2_ops, S_IRUGO|S_IWUGO},
2959                 [SMK_ACCESS2] = {
2960                         "access2", &smk_access2_ops, S_IRUGO|S_IWUGO},
2961                 [SMK_CIPSO2] = {
2962                         "cipso2", &smk_cipso2_ops, S_IRUGO|S_IWUSR},
2963                 [SMK_REVOKE_SUBJ] = {
2964                         "revoke-subject", &smk_revoke_subj_ops,
2965                         S_IRUGO|S_IWUSR},
2966                 [SMK_CHANGE_RULE] = {
2967                         "change-rule", &smk_change_rule_ops, S_IRUGO|S_IWUSR},
2968                 [SMK_SYSLOG] = {
2969                         "syslog", &smk_syslog_ops, S_IRUGO|S_IWUSR},
2970                 [SMK_PTRACE] = {
2971                         "ptrace", &smk_ptrace_ops, S_IRUGO|S_IWUSR},
2972 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
2973                 [SMK_UNCONFINED] = {
2974                         "unconfined", &smk_unconfined_ops, S_IRUGO|S_IWUSR},
2975 #endif
2976 #if IS_ENABLED(CONFIG_IPV6)
2977                 [SMK_NET6ADDR] = {
2978                         "ipv6host", &smk_net6addr_ops, S_IRUGO|S_IWUSR},
2979 #endif /* CONFIG_IPV6 */
2980                 [SMK_RELABEL_SELF] = {
2981                         "relabel-self", &smk_relabel_self_ops,
2982                                 S_IRUGO|S_IWUGO},
2983                 /* last one */
2984                         {""}
2985         };
2986
2987         rc = simple_fill_super(sb, SMACK_MAGIC, smack_files);
2988         if (rc != 0) {
2989                 printk(KERN_ERR "%s failed %d while creating inodes\n",
2990                         __func__, rc);
2991                 return rc;
2992         }
2993
2994         root_inode = d_inode(sb->s_root);
2995
2996         return 0;
2997 }
2998
2999 /**
3000  * smk_mount - get the smackfs superblock
3001  * @fs_type: passed along without comment
3002  * @flags: passed along without comment
3003  * @dev_name: passed along without comment
3004  * @data: passed along without comment
3005  *
3006  * Just passes everything along.
3007  *
3008  * Returns what the lower level code does.
3009  */
3010 static struct dentry *smk_mount(struct file_system_type *fs_type,
3011                       int flags, const char *dev_name, void *data)
3012 {
3013         return mount_single(fs_type, flags, data, smk_fill_super);
3014 }
3015
3016 static struct file_system_type smk_fs_type = {
3017         .name           = "smackfs",
3018         .mount          = smk_mount,
3019         .kill_sb        = kill_litter_super,
3020 };
3021
3022 static struct vfsmount *smackfs_mount;
3023
3024 static int __init smk_preset_netlabel(struct smack_known *skp)
3025 {
3026         skp->smk_netlabel.domain = skp->smk_known;
3027         skp->smk_netlabel.flags =
3028                 NETLBL_SECATTR_DOMAIN | NETLBL_SECATTR_MLS_LVL;
3029         return smk_netlbl_mls(smack_cipso_direct, skp->smk_known,
3030                                 &skp->smk_netlabel, strlen(skp->smk_known));
3031 }
3032
3033 /**
3034  * init_smk_fs - get the smackfs superblock
3035  *
3036  * register the smackfs
3037  *
3038  * Do not register smackfs if Smack wasn't enabled
3039  * on boot. We can not put this method normally under the
3040  * smack_init() code path since the security subsystem get
3041  * initialized before the vfs caches.
3042  *
3043  * Returns true if we were not chosen on boot or if
3044  * we were chosen and filesystem registration succeeded.
3045  */
3046 static int __init init_smk_fs(void)
3047 {
3048         int err;
3049         int rc;
3050
3051         if (smack_enabled == 0)
3052                 return 0;
3053
3054         err = smk_init_sysfs();
3055         if (err)
3056                 printk(KERN_ERR "smackfs: sysfs mountpoint problem.\n");
3057
3058         err = register_filesystem(&smk_fs_type);
3059         if (!err) {
3060                 smackfs_mount = kern_mount(&smk_fs_type);
3061                 if (IS_ERR(smackfs_mount)) {
3062                         printk(KERN_ERR "smackfs:  could not mount!\n");
3063                         err = PTR_ERR(smackfs_mount);
3064                         smackfs_mount = NULL;
3065                 }
3066         }
3067
3068         smk_cipso_doi();
3069         smk_unlbl_ambient(NULL);
3070
3071         rc = smk_preset_netlabel(&smack_known_floor);
3072         if (err == 0 && rc < 0)
3073                 err = rc;
3074         rc = smk_preset_netlabel(&smack_known_hat);
3075         if (err == 0 && rc < 0)
3076                 err = rc;
3077         rc = smk_preset_netlabel(&smack_known_huh);
3078         if (err == 0 && rc < 0)
3079                 err = rc;
3080         rc = smk_preset_netlabel(&smack_known_invalid);
3081         if (err == 0 && rc < 0)
3082                 err = rc;
3083         rc = smk_preset_netlabel(&smack_known_star);
3084         if (err == 0 && rc < 0)
3085                 err = rc;
3086         rc = smk_preset_netlabel(&smack_known_web);
3087         if (err == 0 && rc < 0)
3088                 err = rc;
3089
3090         return err;
3091 }
3092
3093 __initcall(init_smk_fs);