GNU Linux-libre 4.9.326-gnu1
[releases.git] / security / smack / smack_lsm.c
1 /*
2  *  Simplified MAC Kernel (smack) security module
3  *
4  *  This file contains the smack hook function implementations.
5  *
6  *  Authors:
7  *      Casey Schaufler <casey@schaufler-ca.com>
8  *      Jarkko Sakkinen <jarkko.sakkinen@intel.com>
9  *
10  *  Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
11  *  Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
12  *                Paul Moore <paul@paul-moore.com>
13  *  Copyright (C) 2010 Nokia Corporation
14  *  Copyright (C) 2011 Intel Corporation.
15  *
16  *      This program is free software; you can redistribute it and/or modify
17  *      it under the terms of the GNU General Public License version 2,
18  *      as published by the Free Software Foundation.
19  */
20
21 #include <linux/xattr.h>
22 #include <linux/pagemap.h>
23 #include <linux/mount.h>
24 #include <linux/stat.h>
25 #include <linux/kd.h>
26 #include <asm/ioctls.h>
27 #include <linux/ip.h>
28 #include <linux/tcp.h>
29 #include <linux/udp.h>
30 #include <linux/dccp.h>
31 #include <linux/slab.h>
32 #include <linux/mutex.h>
33 #include <linux/pipe_fs_i.h>
34 #include <net/cipso_ipv4.h>
35 #include <net/ip.h>
36 #include <net/ipv6.h>
37 #include <linux/audit.h>
38 #include <linux/magic.h>
39 #include <linux/dcache.h>
40 #include <linux/personality.h>
41 #include <linux/msg.h>
42 #include <linux/shm.h>
43 #include <linux/binfmts.h>
44 #include <linux/parser.h>
45 #include "smack.h"
46
47 #define TRANS_TRUE      "TRUE"
48 #define TRANS_TRUE_SIZE 4
49
50 #define SMK_CONNECTING  0
51 #define SMK_RECEIVING   1
52 #define SMK_SENDING     2
53
54 #ifdef SMACK_IPV6_PORT_LABELING
55 static LIST_HEAD(smk_ipv6_port_list);
56 #endif
57 static struct kmem_cache *smack_inode_cache;
58 int smack_enabled;
59
60 static const match_table_t smk_mount_tokens = {
61         {Opt_fsdefault, SMK_FSDEFAULT "%s"},
62         {Opt_fsfloor, SMK_FSFLOOR "%s"},
63         {Opt_fshat, SMK_FSHAT "%s"},
64         {Opt_fsroot, SMK_FSROOT "%s"},
65         {Opt_fstransmute, SMK_FSTRANS "%s"},
66         {Opt_error, NULL},
67 };
68
69 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
70 static char *smk_bu_mess[] = {
71         "Bringup Error",        /* Unused */
72         "Bringup",              /* SMACK_BRINGUP_ALLOW */
73         "Unconfined Subject",   /* SMACK_UNCONFINED_SUBJECT */
74         "Unconfined Object",    /* SMACK_UNCONFINED_OBJECT */
75 };
76
77 static void smk_bu_mode(int mode, char *s)
78 {
79         int i = 0;
80
81         if (mode & MAY_READ)
82                 s[i++] = 'r';
83         if (mode & MAY_WRITE)
84                 s[i++] = 'w';
85         if (mode & MAY_EXEC)
86                 s[i++] = 'x';
87         if (mode & MAY_APPEND)
88                 s[i++] = 'a';
89         if (mode & MAY_TRANSMUTE)
90                 s[i++] = 't';
91         if (mode & MAY_LOCK)
92                 s[i++] = 'l';
93         if (i == 0)
94                 s[i++] = '-';
95         s[i] = '\0';
96 }
97 #endif
98
99 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
100 static int smk_bu_note(char *note, struct smack_known *sskp,
101                        struct smack_known *oskp, int mode, int rc)
102 {
103         char acc[SMK_NUM_ACCESS_TYPE + 1];
104
105         if (rc <= 0)
106                 return rc;
107         if (rc > SMACK_UNCONFINED_OBJECT)
108                 rc = 0;
109
110         smk_bu_mode(mode, acc);
111         pr_info("Smack %s: (%s %s %s) %s\n", smk_bu_mess[rc],
112                 sskp->smk_known, oskp->smk_known, acc, note);
113         return 0;
114 }
115 #else
116 #define smk_bu_note(note, sskp, oskp, mode, RC) (RC)
117 #endif
118
119 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
120 static int smk_bu_current(char *note, struct smack_known *oskp,
121                           int mode, int rc)
122 {
123         struct task_smack *tsp = current_security();
124         char acc[SMK_NUM_ACCESS_TYPE + 1];
125
126         if (rc <= 0)
127                 return rc;
128         if (rc > SMACK_UNCONFINED_OBJECT)
129                 rc = 0;
130
131         smk_bu_mode(mode, acc);
132         pr_info("Smack %s: (%s %s %s) %s %s\n", smk_bu_mess[rc],
133                 tsp->smk_task->smk_known, oskp->smk_known,
134                 acc, current->comm, note);
135         return 0;
136 }
137 #else
138 #define smk_bu_current(note, oskp, mode, RC) (RC)
139 #endif
140
141 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
142 static int smk_bu_task(struct task_struct *otp, int mode, int rc)
143 {
144         struct task_smack *tsp = current_security();
145         struct smack_known *smk_task = smk_of_task_struct(otp);
146         char acc[SMK_NUM_ACCESS_TYPE + 1];
147
148         if (rc <= 0)
149                 return rc;
150         if (rc > SMACK_UNCONFINED_OBJECT)
151                 rc = 0;
152
153         smk_bu_mode(mode, acc);
154         pr_info("Smack %s: (%s %s %s) %s to %s\n", smk_bu_mess[rc],
155                 tsp->smk_task->smk_known, smk_task->smk_known, acc,
156                 current->comm, otp->comm);
157         return 0;
158 }
159 #else
160 #define smk_bu_task(otp, mode, RC) (RC)
161 #endif
162
163 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
164 static int smk_bu_inode(struct inode *inode, int mode, int rc)
165 {
166         struct task_smack *tsp = current_security();
167         struct inode_smack *isp = inode->i_security;
168         char acc[SMK_NUM_ACCESS_TYPE + 1];
169
170         if (isp->smk_flags & SMK_INODE_IMPURE)
171                 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
172                         inode->i_sb->s_id, inode->i_ino, current->comm);
173
174         if (rc <= 0)
175                 return rc;
176         if (rc > SMACK_UNCONFINED_OBJECT)
177                 rc = 0;
178         if (rc == SMACK_UNCONFINED_SUBJECT &&
179             (mode & (MAY_WRITE | MAY_APPEND)))
180                 isp->smk_flags |= SMK_INODE_IMPURE;
181
182         smk_bu_mode(mode, acc);
183
184         pr_info("Smack %s: (%s %s %s) inode=(%s %ld) %s\n", smk_bu_mess[rc],
185                 tsp->smk_task->smk_known, isp->smk_inode->smk_known, acc,
186                 inode->i_sb->s_id, inode->i_ino, current->comm);
187         return 0;
188 }
189 #else
190 #define smk_bu_inode(inode, mode, RC) (RC)
191 #endif
192
193 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
194 static int smk_bu_file(struct file *file, int mode, int rc)
195 {
196         struct task_smack *tsp = current_security();
197         struct smack_known *sskp = tsp->smk_task;
198         struct inode *inode = file_inode(file);
199         struct inode_smack *isp = inode->i_security;
200         char acc[SMK_NUM_ACCESS_TYPE + 1];
201
202         if (isp->smk_flags & SMK_INODE_IMPURE)
203                 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
204                         inode->i_sb->s_id, inode->i_ino, current->comm);
205
206         if (rc <= 0)
207                 return rc;
208         if (rc > SMACK_UNCONFINED_OBJECT)
209                 rc = 0;
210
211         smk_bu_mode(mode, acc);
212         pr_info("Smack %s: (%s %s %s) file=(%s %ld %pD) %s\n", smk_bu_mess[rc],
213                 sskp->smk_known, smk_of_inode(inode)->smk_known, acc,
214                 inode->i_sb->s_id, inode->i_ino, file,
215                 current->comm);
216         return 0;
217 }
218 #else
219 #define smk_bu_file(file, mode, RC) (RC)
220 #endif
221
222 #ifdef CONFIG_SECURITY_SMACK_BRINGUP
223 static int smk_bu_credfile(const struct cred *cred, struct file *file,
224                                 int mode, int rc)
225 {
226         struct task_smack *tsp = cred->security;
227         struct smack_known *sskp = tsp->smk_task;
228         struct inode *inode = file->f_inode;
229         struct inode_smack *isp = inode->i_security;
230         char acc[SMK_NUM_ACCESS_TYPE + 1];
231
232         if (isp->smk_flags & SMK_INODE_IMPURE)
233                 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
234                         inode->i_sb->s_id, inode->i_ino, current->comm);
235
236         if (rc <= 0)
237                 return rc;
238         if (rc > SMACK_UNCONFINED_OBJECT)
239                 rc = 0;
240
241         smk_bu_mode(mode, acc);
242         pr_info("Smack %s: (%s %s %s) file=(%s %ld %pD) %s\n", smk_bu_mess[rc],
243                 sskp->smk_known, smk_of_inode(inode)->smk_known, acc,
244                 inode->i_sb->s_id, inode->i_ino, file,
245                 current->comm);
246         return 0;
247 }
248 #else
249 #define smk_bu_credfile(cred, file, mode, RC) (RC)
250 #endif
251
252 /**
253  * smk_fetch - Fetch the smack label from a file.
254  * @name: type of the label (attribute)
255  * @ip: a pointer to the inode
256  * @dp: a pointer to the dentry
257  *
258  * Returns a pointer to the master list entry for the Smack label,
259  * NULL if there was no label to fetch, or an error code.
260  */
261 static struct smack_known *smk_fetch(const char *name, struct inode *ip,
262                                         struct dentry *dp)
263 {
264         int rc;
265         char *buffer;
266         struct smack_known *skp = NULL;
267
268         if (!(ip->i_opflags & IOP_XATTR))
269                 return ERR_PTR(-EOPNOTSUPP);
270
271         buffer = kzalloc(SMK_LONGLABEL, GFP_NOFS);
272         if (buffer == NULL)
273                 return ERR_PTR(-ENOMEM);
274
275         rc = __vfs_getxattr(dp, ip, name, buffer, SMK_LONGLABEL);
276         if (rc < 0)
277                 skp = ERR_PTR(rc);
278         else if (rc == 0)
279                 skp = NULL;
280         else
281                 skp = smk_import_entry(buffer, rc);
282
283         kfree(buffer);
284
285         return skp;
286 }
287
288 /**
289  * new_inode_smack - allocate an inode security blob
290  * @skp: a pointer to the Smack label entry to use in the blob
291  *
292  * Returns the new blob or NULL if there's no memory available
293  */
294 static struct inode_smack *new_inode_smack(struct smack_known *skp)
295 {
296         struct inode_smack *isp;
297
298         isp = kmem_cache_zalloc(smack_inode_cache, GFP_NOFS);
299         if (isp == NULL)
300                 return NULL;
301
302         isp->smk_inode = skp;
303         isp->smk_flags = 0;
304         mutex_init(&isp->smk_lock);
305
306         return isp;
307 }
308
309 /**
310  * new_task_smack - allocate a task security blob
311  * @task: a pointer to the Smack label for the running task
312  * @forked: a pointer to the Smack label for the forked task
313  * @gfp: type of the memory for the allocation
314  *
315  * Returns the new blob or NULL if there's no memory available
316  */
317 static struct task_smack *new_task_smack(struct smack_known *task,
318                                         struct smack_known *forked, gfp_t gfp)
319 {
320         struct task_smack *tsp;
321
322         tsp = kzalloc(sizeof(struct task_smack), gfp);
323         if (tsp == NULL)
324                 return NULL;
325
326         tsp->smk_task = task;
327         tsp->smk_forked = forked;
328         INIT_LIST_HEAD(&tsp->smk_rules);
329         INIT_LIST_HEAD(&tsp->smk_relabel);
330         mutex_init(&tsp->smk_rules_lock);
331
332         return tsp;
333 }
334
335 /**
336  * smk_copy_rules - copy a rule set
337  * @nhead: new rules header pointer
338  * @ohead: old rules header pointer
339  * @gfp: type of the memory for the allocation
340  *
341  * Returns 0 on success, -ENOMEM on error
342  */
343 static int smk_copy_rules(struct list_head *nhead, struct list_head *ohead,
344                                 gfp_t gfp)
345 {
346         struct smack_rule *nrp;
347         struct smack_rule *orp;
348         int rc = 0;
349
350         INIT_LIST_HEAD(nhead);
351
352         list_for_each_entry_rcu(orp, ohead, list) {
353                 nrp = kzalloc(sizeof(struct smack_rule), gfp);
354                 if (nrp == NULL) {
355                         rc = -ENOMEM;
356                         break;
357                 }
358                 *nrp = *orp;
359                 list_add_rcu(&nrp->list, nhead);
360         }
361         return rc;
362 }
363
364 /**
365  * smk_copy_relabel - copy smk_relabel labels list
366  * @nhead: new rules header pointer
367  * @ohead: old rules header pointer
368  * @gfp: type of the memory for the allocation
369  *
370  * Returns 0 on success, -ENOMEM on error
371  */
372 static int smk_copy_relabel(struct list_head *nhead, struct list_head *ohead,
373                                 gfp_t gfp)
374 {
375         struct smack_known_list_elem *nklep;
376         struct smack_known_list_elem *oklep;
377
378         INIT_LIST_HEAD(nhead);
379
380         list_for_each_entry(oklep, ohead, list) {
381                 nklep = kzalloc(sizeof(struct smack_known_list_elem), gfp);
382                 if (nklep == NULL) {
383                         smk_destroy_label_list(nhead);
384                         return -ENOMEM;
385                 }
386                 nklep->smk_label = oklep->smk_label;
387                 list_add(&nklep->list, nhead);
388         }
389
390         return 0;
391 }
392
393 /**
394  * smk_ptrace_mode - helper function for converting PTRACE_MODE_* into MAY_*
395  * @mode - input mode in form of PTRACE_MODE_*
396  *
397  * Returns a converted MAY_* mode usable by smack rules
398  */
399 static inline unsigned int smk_ptrace_mode(unsigned int mode)
400 {
401         if (mode & PTRACE_MODE_ATTACH)
402                 return MAY_READWRITE;
403         if (mode & PTRACE_MODE_READ)
404                 return MAY_READ;
405
406         return 0;
407 }
408
409 /**
410  * smk_ptrace_rule_check - helper for ptrace access
411  * @tracer: tracer process
412  * @tracee_known: label entry of the process that's about to be traced
413  * @mode: ptrace attachment mode (PTRACE_MODE_*)
414  * @func: name of the function that called us, used for audit
415  *
416  * Returns 0 on access granted, -error on error
417  */
418 static int smk_ptrace_rule_check(struct task_struct *tracer,
419                                  struct smack_known *tracee_known,
420                                  unsigned int mode, const char *func)
421 {
422         int rc;
423         struct smk_audit_info ad, *saip = NULL;
424         struct task_smack *tsp;
425         struct smack_known *tracer_known;
426
427         if ((mode & PTRACE_MODE_NOAUDIT) == 0) {
428                 smk_ad_init(&ad, func, LSM_AUDIT_DATA_TASK);
429                 smk_ad_setfield_u_tsk(&ad, tracer);
430                 saip = &ad;
431         }
432
433         rcu_read_lock();
434         tsp = __task_cred(tracer)->security;
435         tracer_known = smk_of_task(tsp);
436
437         if ((mode & PTRACE_MODE_ATTACH) &&
438             (smack_ptrace_rule == SMACK_PTRACE_EXACT ||
439              smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)) {
440                 if (tracer_known->smk_known == tracee_known->smk_known)
441                         rc = 0;
442                 else if (smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)
443                         rc = -EACCES;
444                 else if (capable(CAP_SYS_PTRACE))
445                         rc = 0;
446                 else
447                         rc = -EACCES;
448
449                 if (saip)
450                         smack_log(tracer_known->smk_known,
451                                   tracee_known->smk_known,
452                                   0, rc, saip);
453
454                 rcu_read_unlock();
455                 return rc;
456         }
457
458         /* In case of rule==SMACK_PTRACE_DEFAULT or mode==PTRACE_MODE_READ */
459         rc = smk_tskacc(tsp, tracee_known, smk_ptrace_mode(mode), saip);
460
461         rcu_read_unlock();
462         return rc;
463 }
464
465 /*
466  * LSM hooks.
467  * We he, that is fun!
468  */
469
470 /**
471  * smack_ptrace_access_check - Smack approval on PTRACE_ATTACH
472  * @ctp: child task pointer
473  * @mode: ptrace attachment mode (PTRACE_MODE_*)
474  *
475  * Returns 0 if access is OK, an error code otherwise
476  *
477  * Do the capability checks.
478  */
479 static int smack_ptrace_access_check(struct task_struct *ctp, unsigned int mode)
480 {
481         struct smack_known *skp;
482
483         skp = smk_of_task_struct(ctp);
484
485         return smk_ptrace_rule_check(current, skp, mode, __func__);
486 }
487
488 /**
489  * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
490  * @ptp: parent task pointer
491  *
492  * Returns 0 if access is OK, an error code otherwise
493  *
494  * Do the capability checks, and require PTRACE_MODE_ATTACH.
495  */
496 static int smack_ptrace_traceme(struct task_struct *ptp)
497 {
498         int rc;
499         struct smack_known *skp;
500
501         skp = smk_of_task(current_security());
502
503         rc = smk_ptrace_rule_check(ptp, skp, PTRACE_MODE_ATTACH, __func__);
504         return rc;
505 }
506
507 /**
508  * smack_syslog - Smack approval on syslog
509  * @type: message type
510  *
511  * Returns 0 on success, error code otherwise.
512  */
513 static int smack_syslog(int typefrom_file)
514 {
515         int rc = 0;
516         struct smack_known *skp = smk_of_current();
517
518         if (smack_privileged(CAP_MAC_OVERRIDE))
519                 return 0;
520
521         if (smack_syslog_label != NULL && smack_syslog_label != skp)
522                 rc = -EACCES;
523
524         return rc;
525 }
526
527
528 /*
529  * Superblock Hooks.
530  */
531
532 /**
533  * smack_sb_alloc_security - allocate a superblock blob
534  * @sb: the superblock getting the blob
535  *
536  * Returns 0 on success or -ENOMEM on error.
537  */
538 static int smack_sb_alloc_security(struct super_block *sb)
539 {
540         struct superblock_smack *sbsp;
541
542         sbsp = kzalloc(sizeof(struct superblock_smack), GFP_KERNEL);
543
544         if (sbsp == NULL)
545                 return -ENOMEM;
546
547         sbsp->smk_root = &smack_known_floor;
548         sbsp->smk_default = &smack_known_floor;
549         sbsp->smk_floor = &smack_known_floor;
550         sbsp->smk_hat = &smack_known_hat;
551         /*
552          * SMK_SB_INITIALIZED will be zero from kzalloc.
553          */
554         sb->s_security = sbsp;
555
556         return 0;
557 }
558
559 /**
560  * smack_sb_free_security - free a superblock blob
561  * @sb: the superblock getting the blob
562  *
563  */
564 static void smack_sb_free_security(struct super_block *sb)
565 {
566         kfree(sb->s_security);
567         sb->s_security = NULL;
568 }
569
570 /**
571  * smack_sb_copy_data - copy mount options data for processing
572  * @orig: where to start
573  * @smackopts: mount options string
574  *
575  * Returns 0 on success or -ENOMEM on error.
576  *
577  * Copy the Smack specific mount options out of the mount
578  * options list.
579  */
580 static int smack_sb_copy_data(char *orig, char *smackopts)
581 {
582         char *cp, *commap, *otheropts, *dp;
583
584         otheropts = (char *)get_zeroed_page(GFP_KERNEL);
585         if (otheropts == NULL)
586                 return -ENOMEM;
587
588         for (cp = orig, commap = orig; commap != NULL; cp = commap + 1) {
589                 if (strstr(cp, SMK_FSDEFAULT) == cp)
590                         dp = smackopts;
591                 else if (strstr(cp, SMK_FSFLOOR) == cp)
592                         dp = smackopts;
593                 else if (strstr(cp, SMK_FSHAT) == cp)
594                         dp = smackopts;
595                 else if (strstr(cp, SMK_FSROOT) == cp)
596                         dp = smackopts;
597                 else if (strstr(cp, SMK_FSTRANS) == cp)
598                         dp = smackopts;
599                 else
600                         dp = otheropts;
601
602                 commap = strchr(cp, ',');
603                 if (commap != NULL)
604                         *commap = '\0';
605
606                 if (*dp != '\0')
607                         strcat(dp, ",");
608                 strcat(dp, cp);
609         }
610
611         strcpy(orig, otheropts);
612         free_page((unsigned long)otheropts);
613
614         return 0;
615 }
616
617 /**
618  * smack_parse_opts_str - parse Smack specific mount options
619  * @options: mount options string
620  * @opts: where to store converted mount opts
621  *
622  * Returns 0 on success or -ENOMEM on error.
623  *
624  * converts Smack specific mount options to generic security option format
625  */
626 static int smack_parse_opts_str(char *options,
627                 struct security_mnt_opts *opts)
628 {
629         char *p;
630         char *fsdefault = NULL;
631         char *fsfloor = NULL;
632         char *fshat = NULL;
633         char *fsroot = NULL;
634         char *fstransmute = NULL;
635         int rc = -ENOMEM;
636         int num_mnt_opts = 0;
637         int token;
638
639         opts->num_mnt_opts = 0;
640
641         if (!options)
642                 return 0;
643
644         while ((p = strsep(&options, ",")) != NULL) {
645                 substring_t args[MAX_OPT_ARGS];
646
647                 if (!*p)
648                         continue;
649
650                 token = match_token(p, smk_mount_tokens, args);
651
652                 switch (token) {
653                 case Opt_fsdefault:
654                         if (fsdefault)
655                                 goto out_opt_err;
656                         fsdefault = match_strdup(&args[0]);
657                         if (!fsdefault)
658                                 goto out_err;
659                         break;
660                 case Opt_fsfloor:
661                         if (fsfloor)
662                                 goto out_opt_err;
663                         fsfloor = match_strdup(&args[0]);
664                         if (!fsfloor)
665                                 goto out_err;
666                         break;
667                 case Opt_fshat:
668                         if (fshat)
669                                 goto out_opt_err;
670                         fshat = match_strdup(&args[0]);
671                         if (!fshat)
672                                 goto out_err;
673                         break;
674                 case Opt_fsroot:
675                         if (fsroot)
676                                 goto out_opt_err;
677                         fsroot = match_strdup(&args[0]);
678                         if (!fsroot)
679                                 goto out_err;
680                         break;
681                 case Opt_fstransmute:
682                         if (fstransmute)
683                                 goto out_opt_err;
684                         fstransmute = match_strdup(&args[0]);
685                         if (!fstransmute)
686                                 goto out_err;
687                         break;
688                 default:
689                         rc = -EINVAL;
690                         pr_warn("Smack:  unknown mount option\n");
691                         goto out_err;
692                 }
693         }
694
695         opts->mnt_opts = kcalloc(NUM_SMK_MNT_OPTS, sizeof(char *), GFP_ATOMIC);
696         if (!opts->mnt_opts)
697                 goto out_err;
698
699         opts->mnt_opts_flags = kcalloc(NUM_SMK_MNT_OPTS, sizeof(int),
700                         GFP_ATOMIC);
701         if (!opts->mnt_opts_flags) {
702                 kfree(opts->mnt_opts);
703                 goto out_err;
704         }
705
706         if (fsdefault) {
707                 opts->mnt_opts[num_mnt_opts] = fsdefault;
708                 opts->mnt_opts_flags[num_mnt_opts++] = FSDEFAULT_MNT;
709         }
710         if (fsfloor) {
711                 opts->mnt_opts[num_mnt_opts] = fsfloor;
712                 opts->mnt_opts_flags[num_mnt_opts++] = FSFLOOR_MNT;
713         }
714         if (fshat) {
715                 opts->mnt_opts[num_mnt_opts] = fshat;
716                 opts->mnt_opts_flags[num_mnt_opts++] = FSHAT_MNT;
717         }
718         if (fsroot) {
719                 opts->mnt_opts[num_mnt_opts] = fsroot;
720                 opts->mnt_opts_flags[num_mnt_opts++] = FSROOT_MNT;
721         }
722         if (fstransmute) {
723                 opts->mnt_opts[num_mnt_opts] = fstransmute;
724                 opts->mnt_opts_flags[num_mnt_opts++] = FSTRANS_MNT;
725         }
726
727         opts->num_mnt_opts = num_mnt_opts;
728         return 0;
729
730 out_opt_err:
731         rc = -EINVAL;
732         pr_warn("Smack: duplicate mount options\n");
733
734 out_err:
735         kfree(fsdefault);
736         kfree(fsfloor);
737         kfree(fshat);
738         kfree(fsroot);
739         kfree(fstransmute);
740         return rc;
741 }
742
743 /**
744  * smack_set_mnt_opts - set Smack specific mount options
745  * @sb: the file system superblock
746  * @opts: Smack mount options
747  * @kern_flags: mount option from kernel space or user space
748  * @set_kern_flags: where to store converted mount opts
749  *
750  * Returns 0 on success, an error code on failure
751  *
752  * Allow filesystems with binary mount data to explicitly set Smack mount
753  * labels.
754  */
755 static int smack_set_mnt_opts(struct super_block *sb,
756                 struct security_mnt_opts *opts,
757                 unsigned long kern_flags,
758                 unsigned long *set_kern_flags)
759 {
760         struct dentry *root = sb->s_root;
761         struct inode *inode = d_backing_inode(root);
762         struct superblock_smack *sp = sb->s_security;
763         struct inode_smack *isp;
764         struct smack_known *skp;
765         int i;
766         int num_opts = opts->num_mnt_opts;
767         int transmute = 0;
768
769         if (sp->smk_flags & SMK_SB_INITIALIZED)
770                 return 0;
771
772         sp->smk_flags |= SMK_SB_INITIALIZED;
773
774         for (i = 0; i < num_opts; i++) {
775                 switch (opts->mnt_opts_flags[i]) {
776                 case FSDEFAULT_MNT:
777                         skp = smk_import_entry(opts->mnt_opts[i], 0);
778                         if (IS_ERR(skp))
779                                 return PTR_ERR(skp);
780                         sp->smk_default = skp;
781                         break;
782                 case FSFLOOR_MNT:
783                         skp = smk_import_entry(opts->mnt_opts[i], 0);
784                         if (IS_ERR(skp))
785                                 return PTR_ERR(skp);
786                         sp->smk_floor = skp;
787                         break;
788                 case FSHAT_MNT:
789                         skp = smk_import_entry(opts->mnt_opts[i], 0);
790                         if (IS_ERR(skp))
791                                 return PTR_ERR(skp);
792                         sp->smk_hat = skp;
793                         break;
794                 case FSROOT_MNT:
795                         skp = smk_import_entry(opts->mnt_opts[i], 0);
796                         if (IS_ERR(skp))
797                                 return PTR_ERR(skp);
798                         sp->smk_root = skp;
799                         break;
800                 case FSTRANS_MNT:
801                         skp = smk_import_entry(opts->mnt_opts[i], 0);
802                         if (IS_ERR(skp))
803                                 return PTR_ERR(skp);
804                         sp->smk_root = skp;
805                         transmute = 1;
806                         break;
807                 default:
808                         break;
809                 }
810         }
811
812         if (!smack_privileged(CAP_MAC_ADMIN)) {
813                 /*
814                  * Unprivileged mounts don't get to specify Smack values.
815                  */
816                 if (num_opts)
817                         return -EPERM;
818                 /*
819                  * Unprivileged mounts get root and default from the caller.
820                  */
821                 skp = smk_of_current();
822                 sp->smk_root = skp;
823                 sp->smk_default = skp;
824                 /*
825                  * For a handful of fs types with no user-controlled
826                  * backing store it's okay to trust security labels
827                  * in the filesystem. The rest are untrusted.
828                  */
829                 if (sb->s_user_ns != &init_user_ns &&
830                     sb->s_magic != SYSFS_MAGIC && sb->s_magic != TMPFS_MAGIC &&
831                     sb->s_magic != RAMFS_MAGIC) {
832                         transmute = 1;
833                         sp->smk_flags |= SMK_SB_UNTRUSTED;
834                 }
835         }
836
837         /*
838          * Initialize the root inode.
839          */
840         isp = inode->i_security;
841         if (isp == NULL) {
842                 isp = new_inode_smack(sp->smk_root);
843                 if (isp == NULL)
844                         return -ENOMEM;
845                 inode->i_security = isp;
846         } else
847                 isp->smk_inode = sp->smk_root;
848
849         if (transmute)
850                 isp->smk_flags |= SMK_INODE_TRANSMUTE;
851
852         return 0;
853 }
854
855 /**
856  * smack_sb_kern_mount - Smack specific mount processing
857  * @sb: the file system superblock
858  * @flags: the mount flags
859  * @data: the smack mount options
860  *
861  * Returns 0 on success, an error code on failure
862  */
863 static int smack_sb_kern_mount(struct super_block *sb, int flags, void *data)
864 {
865         int rc = 0;
866         char *options = data;
867         struct security_mnt_opts opts;
868
869         security_init_mnt_opts(&opts);
870
871         if (!options)
872                 goto out;
873
874         rc = smack_parse_opts_str(options, &opts);
875         if (rc)
876                 goto out_err;
877
878 out:
879         rc = smack_set_mnt_opts(sb, &opts, 0, NULL);
880
881 out_err:
882         security_free_mnt_opts(&opts);
883         return rc;
884 }
885
886 /**
887  * smack_sb_statfs - Smack check on statfs
888  * @dentry: identifies the file system in question
889  *
890  * Returns 0 if current can read the floor of the filesystem,
891  * and error code otherwise
892  */
893 static int smack_sb_statfs(struct dentry *dentry)
894 {
895         struct superblock_smack *sbp = dentry->d_sb->s_security;
896         int rc;
897         struct smk_audit_info ad;
898
899         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
900         smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
901
902         rc = smk_curacc(sbp->smk_floor, MAY_READ, &ad);
903         rc = smk_bu_current("statfs", sbp->smk_floor, MAY_READ, rc);
904         return rc;
905 }
906
907 /*
908  * BPRM hooks
909  */
910
911 /**
912  * smack_bprm_set_creds - set creds for exec
913  * @bprm: the exec information
914  *
915  * Returns 0 if it gets a blob, -EPERM if exec forbidden and -ENOMEM otherwise
916  */
917 static int smack_bprm_set_creds(struct linux_binprm *bprm)
918 {
919         struct inode *inode = file_inode(bprm->file);
920         struct task_smack *bsp = bprm->cred->security;
921         struct inode_smack *isp;
922         struct superblock_smack *sbsp;
923         int rc;
924
925         if (bprm->cred_prepared)
926                 return 0;
927
928         isp = inode->i_security;
929         if (isp->smk_task == NULL || isp->smk_task == bsp->smk_task)
930                 return 0;
931
932         sbsp = inode->i_sb->s_security;
933         if ((sbsp->smk_flags & SMK_SB_UNTRUSTED) &&
934             isp->smk_task != sbsp->smk_root)
935                 return 0;
936
937         if (bprm->unsafe & (LSM_UNSAFE_PTRACE | LSM_UNSAFE_PTRACE_CAP)) {
938                 struct task_struct *tracer;
939                 rc = 0;
940
941                 rcu_read_lock();
942                 tracer = ptrace_parent(current);
943                 if (likely(tracer != NULL))
944                         rc = smk_ptrace_rule_check(tracer,
945                                                    isp->smk_task,
946                                                    PTRACE_MODE_ATTACH,
947                                                    __func__);
948                 rcu_read_unlock();
949
950                 if (rc != 0)
951                         return rc;
952         }
953         if (bprm->unsafe & ~LSM_UNSAFE_PTRACE)
954                 return -EPERM;
955
956         bsp->smk_task = isp->smk_task;
957         bprm->per_clear |= PER_CLEAR_ON_SETID;
958
959         return 0;
960 }
961
962 /**
963  * smack_bprm_committing_creds - Prepare to install the new credentials
964  * from bprm.
965  *
966  * @bprm: binprm for exec
967  */
968 static void smack_bprm_committing_creds(struct linux_binprm *bprm)
969 {
970         struct task_smack *bsp = bprm->cred->security;
971
972         if (bsp->smk_task != bsp->smk_forked)
973                 current->pdeath_signal = 0;
974 }
975
976 /**
977  * smack_bprm_secureexec - Return the decision to use secureexec.
978  * @bprm: binprm for exec
979  *
980  * Returns 0 on success.
981  */
982 static int smack_bprm_secureexec(struct linux_binprm *bprm)
983 {
984         struct task_smack *tsp = current_security();
985
986         if (tsp->smk_task != tsp->smk_forked)
987                 return 1;
988
989         return 0;
990 }
991
992 /*
993  * Inode hooks
994  */
995
996 /**
997  * smack_inode_alloc_security - allocate an inode blob
998  * @inode: the inode in need of a blob
999  *
1000  * Returns 0 if it gets a blob, -ENOMEM otherwise
1001  */
1002 static int smack_inode_alloc_security(struct inode *inode)
1003 {
1004         struct smack_known *skp = smk_of_current();
1005
1006         inode->i_security = new_inode_smack(skp);
1007         if (inode->i_security == NULL)
1008                 return -ENOMEM;
1009         return 0;
1010 }
1011
1012 /**
1013  * smack_inode_free_security - free an inode blob
1014  * @inode: the inode with a blob
1015  *
1016  * Clears the blob pointer in inode
1017  */
1018 static void smack_inode_free_security(struct inode *inode)
1019 {
1020         kmem_cache_free(smack_inode_cache, inode->i_security);
1021         inode->i_security = NULL;
1022 }
1023
1024 /**
1025  * smack_inode_init_security - copy out the smack from an inode
1026  * @inode: the newly created inode
1027  * @dir: containing directory object
1028  * @qstr: unused
1029  * @name: where to put the attribute name
1030  * @value: where to put the attribute value
1031  * @len: where to put the length of the attribute
1032  *
1033  * Returns 0 if it all works out, -ENOMEM if there's no memory
1034  */
1035 static int smack_inode_init_security(struct inode *inode, struct inode *dir,
1036                                      const struct qstr *qstr, const char **name,
1037                                      void **value, size_t *len)
1038 {
1039         struct inode_smack *issp = inode->i_security;
1040         struct smack_known *skp = smk_of_current();
1041         struct smack_known *isp = smk_of_inode(inode);
1042         struct smack_known *dsp = smk_of_inode(dir);
1043         int may;
1044
1045         if (name)
1046                 *name = XATTR_SMACK_SUFFIX;
1047
1048         if (value && len) {
1049                 rcu_read_lock();
1050                 may = smk_access_entry(skp->smk_known, dsp->smk_known,
1051                                        &skp->smk_rules);
1052                 rcu_read_unlock();
1053
1054                 /*
1055                  * If the access rule allows transmutation and
1056                  * the directory requests transmutation then
1057                  * by all means transmute.
1058                  * Mark the inode as changed.
1059                  */
1060                 if (may > 0 && ((may & MAY_TRANSMUTE) != 0) &&
1061                     smk_inode_transmutable(dir)) {
1062                         isp = dsp;
1063                         issp->smk_flags |= SMK_INODE_CHANGED;
1064                 }
1065
1066                 *value = kstrdup(isp->smk_known, GFP_NOFS);
1067                 if (*value == NULL)
1068                         return -ENOMEM;
1069
1070                 *len = strlen(isp->smk_known);
1071         }
1072
1073         return 0;
1074 }
1075
1076 /**
1077  * smack_inode_link - Smack check on link
1078  * @old_dentry: the existing object
1079  * @dir: unused
1080  * @new_dentry: the new object
1081  *
1082  * Returns 0 if access is permitted, an error code otherwise
1083  */
1084 static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
1085                             struct dentry *new_dentry)
1086 {
1087         struct smack_known *isp;
1088         struct smk_audit_info ad;
1089         int rc;
1090
1091         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1092         smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
1093
1094         isp = smk_of_inode(d_backing_inode(old_dentry));
1095         rc = smk_curacc(isp, MAY_WRITE, &ad);
1096         rc = smk_bu_inode(d_backing_inode(old_dentry), MAY_WRITE, rc);
1097
1098         if (rc == 0 && d_is_positive(new_dentry)) {
1099                 isp = smk_of_inode(d_backing_inode(new_dentry));
1100                 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
1101                 rc = smk_curacc(isp, MAY_WRITE, &ad);
1102                 rc = smk_bu_inode(d_backing_inode(new_dentry), MAY_WRITE, rc);
1103         }
1104
1105         return rc;
1106 }
1107
1108 /**
1109  * smack_inode_unlink - Smack check on inode deletion
1110  * @dir: containing directory object
1111  * @dentry: file to unlink
1112  *
1113  * Returns 0 if current can write the containing directory
1114  * and the object, error code otherwise
1115  */
1116 static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
1117 {
1118         struct inode *ip = d_backing_inode(dentry);
1119         struct smk_audit_info ad;
1120         int rc;
1121
1122         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1123         smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1124
1125         /*
1126          * You need write access to the thing you're unlinking
1127          */
1128         rc = smk_curacc(smk_of_inode(ip), MAY_WRITE, &ad);
1129         rc = smk_bu_inode(ip, MAY_WRITE, rc);
1130         if (rc == 0) {
1131                 /*
1132                  * You also need write access to the containing directory
1133                  */
1134                 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
1135                 smk_ad_setfield_u_fs_inode(&ad, dir);
1136                 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
1137                 rc = smk_bu_inode(dir, MAY_WRITE, rc);
1138         }
1139         return rc;
1140 }
1141
1142 /**
1143  * smack_inode_rmdir - Smack check on directory deletion
1144  * @dir: containing directory object
1145  * @dentry: directory to unlink
1146  *
1147  * Returns 0 if current can write the containing directory
1148  * and the directory, error code otherwise
1149  */
1150 static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
1151 {
1152         struct smk_audit_info ad;
1153         int rc;
1154
1155         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1156         smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1157
1158         /*
1159          * You need write access to the thing you're removing
1160          */
1161         rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1162         rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
1163         if (rc == 0) {
1164                 /*
1165                  * You also need write access to the containing directory
1166                  */
1167                 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
1168                 smk_ad_setfield_u_fs_inode(&ad, dir);
1169                 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
1170                 rc = smk_bu_inode(dir, MAY_WRITE, rc);
1171         }
1172
1173         return rc;
1174 }
1175
1176 /**
1177  * smack_inode_rename - Smack check on rename
1178  * @old_inode: unused
1179  * @old_dentry: the old object
1180  * @new_inode: unused
1181  * @new_dentry: the new object
1182  *
1183  * Read and write access is required on both the old and
1184  * new directories.
1185  *
1186  * Returns 0 if access is permitted, an error code otherwise
1187  */
1188 static int smack_inode_rename(struct inode *old_inode,
1189                               struct dentry *old_dentry,
1190                               struct inode *new_inode,
1191                               struct dentry *new_dentry)
1192 {
1193         int rc;
1194         struct smack_known *isp;
1195         struct smk_audit_info ad;
1196
1197         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1198         smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
1199
1200         isp = smk_of_inode(d_backing_inode(old_dentry));
1201         rc = smk_curacc(isp, MAY_READWRITE, &ad);
1202         rc = smk_bu_inode(d_backing_inode(old_dentry), MAY_READWRITE, rc);
1203
1204         if (rc == 0 && d_is_positive(new_dentry)) {
1205                 isp = smk_of_inode(d_backing_inode(new_dentry));
1206                 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
1207                 rc = smk_curacc(isp, MAY_READWRITE, &ad);
1208                 rc = smk_bu_inode(d_backing_inode(new_dentry), MAY_READWRITE, rc);
1209         }
1210         return rc;
1211 }
1212
1213 /**
1214  * smack_inode_permission - Smack version of permission()
1215  * @inode: the inode in question
1216  * @mask: the access requested
1217  *
1218  * This is the important Smack hook.
1219  *
1220  * Returns 0 if access is permitted, -EACCES otherwise
1221  */
1222 static int smack_inode_permission(struct inode *inode, int mask)
1223 {
1224         struct superblock_smack *sbsp = inode->i_sb->s_security;
1225         struct smk_audit_info ad;
1226         int no_block = mask & MAY_NOT_BLOCK;
1227         int rc;
1228
1229         mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
1230         /*
1231          * No permission to check. Existence test. Yup, it's there.
1232          */
1233         if (mask == 0)
1234                 return 0;
1235
1236         if (sbsp->smk_flags & SMK_SB_UNTRUSTED) {
1237                 if (smk_of_inode(inode) != sbsp->smk_root)
1238                         return -EACCES;
1239         }
1240
1241         /* May be droppable after audit */
1242         if (no_block)
1243                 return -ECHILD;
1244         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
1245         smk_ad_setfield_u_fs_inode(&ad, inode);
1246         rc = smk_curacc(smk_of_inode(inode), mask, &ad);
1247         rc = smk_bu_inode(inode, mask, rc);
1248         return rc;
1249 }
1250
1251 /**
1252  * smack_inode_setattr - Smack check for setting attributes
1253  * @dentry: the object
1254  * @iattr: for the force flag
1255  *
1256  * Returns 0 if access is permitted, an error code otherwise
1257  */
1258 static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
1259 {
1260         struct smk_audit_info ad;
1261         int rc;
1262
1263         /*
1264          * Need to allow for clearing the setuid bit.
1265          */
1266         if (iattr->ia_valid & ATTR_FORCE)
1267                 return 0;
1268         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1269         smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1270
1271         rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1272         rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
1273         return rc;
1274 }
1275
1276 /**
1277  * smack_inode_getattr - Smack check for getting attributes
1278  * @mnt: vfsmount of the object
1279  * @dentry: the object
1280  *
1281  * Returns 0 if access is permitted, an error code otherwise
1282  */
1283 static int smack_inode_getattr(const struct path *path)
1284 {
1285         struct smk_audit_info ad;
1286         struct inode *inode = d_backing_inode(path->dentry);
1287         int rc;
1288
1289         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1290         smk_ad_setfield_u_fs_path(&ad, *path);
1291         rc = smk_curacc(smk_of_inode(inode), MAY_READ, &ad);
1292         rc = smk_bu_inode(inode, MAY_READ, rc);
1293         return rc;
1294 }
1295
1296 /**
1297  * smack_inode_setxattr - Smack check for setting xattrs
1298  * @dentry: the object
1299  * @name: name of the attribute
1300  * @value: value of the attribute
1301  * @size: size of the value
1302  * @flags: unused
1303  *
1304  * This protects the Smack attribute explicitly.
1305  *
1306  * Returns 0 if access is permitted, an error code otherwise
1307  */
1308 static int smack_inode_setxattr(struct dentry *dentry, const char *name,
1309                                 const void *value, size_t size, int flags)
1310 {
1311         struct smk_audit_info ad;
1312         struct smack_known *skp;
1313         int check_priv = 0;
1314         int check_import = 0;
1315         int check_star = 0;
1316         int rc = 0;
1317
1318         /*
1319          * Check label validity here so import won't fail in post_setxattr
1320          */
1321         if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1322             strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
1323             strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
1324                 check_priv = 1;
1325                 check_import = 1;
1326         } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
1327                    strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
1328                 check_priv = 1;
1329                 check_import = 1;
1330                 check_star = 1;
1331         } else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
1332                 check_priv = 1;
1333                 if (size != TRANS_TRUE_SIZE ||
1334                     strncmp(value, TRANS_TRUE, TRANS_TRUE_SIZE) != 0)
1335                         rc = -EINVAL;
1336         } else
1337                 rc = cap_inode_setxattr(dentry, name, value, size, flags);
1338
1339         if (check_priv && !smack_privileged(CAP_MAC_ADMIN))
1340                 rc = -EPERM;
1341
1342         if (rc == 0 && check_import) {
1343                 skp = size ? smk_import_entry(value, size) : NULL;
1344                 if (IS_ERR(skp))
1345                         rc = PTR_ERR(skp);
1346                 else if (skp == NULL || (check_star &&
1347                     (skp == &smack_known_star || skp == &smack_known_web)))
1348                         rc = -EINVAL;
1349         }
1350
1351         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1352         smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1353
1354         if (rc == 0) {
1355                 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1356                 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
1357         }
1358
1359         return rc;
1360 }
1361
1362 /**
1363  * smack_inode_post_setxattr - Apply the Smack update approved above
1364  * @dentry: object
1365  * @name: attribute name
1366  * @value: attribute value
1367  * @size: attribute size
1368  * @flags: unused
1369  *
1370  * Set the pointer in the inode blob to the entry found
1371  * in the master label list.
1372  */
1373 static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
1374                                       const void *value, size_t size, int flags)
1375 {
1376         struct smack_known *skp;
1377         struct inode_smack *isp = d_backing_inode(dentry)->i_security;
1378
1379         if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
1380                 isp->smk_flags |= SMK_INODE_TRANSMUTE;
1381                 return;
1382         }
1383
1384         if (strcmp(name, XATTR_NAME_SMACK) == 0) {
1385                 skp = smk_import_entry(value, size);
1386                 if (!IS_ERR(skp))
1387                         isp->smk_inode = skp;
1388                 else
1389                         isp->smk_inode = &smack_known_invalid;
1390         } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0) {
1391                 skp = smk_import_entry(value, size);
1392                 if (!IS_ERR(skp))
1393                         isp->smk_task = skp;
1394                 else
1395                         isp->smk_task = &smack_known_invalid;
1396         } else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
1397                 skp = smk_import_entry(value, size);
1398                 if (!IS_ERR(skp))
1399                         isp->smk_mmap = skp;
1400                 else
1401                         isp->smk_mmap = &smack_known_invalid;
1402         }
1403
1404         return;
1405 }
1406
1407 /**
1408  * smack_inode_getxattr - Smack check on getxattr
1409  * @dentry: the object
1410  * @name: unused
1411  *
1412  * Returns 0 if access is permitted, an error code otherwise
1413  */
1414 static int smack_inode_getxattr(struct dentry *dentry, const char *name)
1415 {
1416         struct smk_audit_info ad;
1417         int rc;
1418
1419         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1420         smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1421
1422         rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_READ, &ad);
1423         rc = smk_bu_inode(d_backing_inode(dentry), MAY_READ, rc);
1424         return rc;
1425 }
1426
1427 /**
1428  * smack_inode_removexattr - Smack check on removexattr
1429  * @dentry: the object
1430  * @name: name of the attribute
1431  *
1432  * Removing the Smack attribute requires CAP_MAC_ADMIN
1433  *
1434  * Returns 0 if access is permitted, an error code otherwise
1435  */
1436 static int smack_inode_removexattr(struct dentry *dentry, const char *name)
1437 {
1438         struct inode_smack *isp;
1439         struct smk_audit_info ad;
1440         int rc = 0;
1441
1442         if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1443             strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
1444             strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 ||
1445             strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
1446             strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 ||
1447             strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
1448                 if (!smack_privileged(CAP_MAC_ADMIN))
1449                         rc = -EPERM;
1450         } else
1451                 rc = cap_inode_removexattr(dentry, name);
1452
1453         if (rc != 0)
1454                 return rc;
1455
1456         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
1457         smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1458
1459         rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1460         rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
1461         if (rc != 0)
1462                 return rc;
1463
1464         isp = d_backing_inode(dentry)->i_security;
1465         /*
1466          * Don't do anything special for these.
1467          *      XATTR_NAME_SMACKIPIN
1468          *      XATTR_NAME_SMACKIPOUT
1469          */
1470         if (strcmp(name, XATTR_NAME_SMACK) == 0) {
1471                 struct super_block *sbp = dentry->d_sb;
1472                 struct superblock_smack *sbsp = sbp->s_security;
1473
1474                 isp->smk_inode = sbsp->smk_default;
1475         } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0)
1476                 isp->smk_task = NULL;
1477         else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0)
1478                 isp->smk_mmap = NULL;
1479         else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0)
1480                 isp->smk_flags &= ~SMK_INODE_TRANSMUTE;
1481
1482         return 0;
1483 }
1484
1485 /**
1486  * smack_inode_getsecurity - get smack xattrs
1487  * @inode: the object
1488  * @name: attribute name
1489  * @buffer: where to put the result
1490  * @alloc: duplicate memory
1491  *
1492  * Returns the size of the attribute or an error code
1493  */
1494 static int smack_inode_getsecurity(struct inode *inode,
1495                                    const char *name, void **buffer,
1496                                    bool alloc)
1497 {
1498         struct socket_smack *ssp;
1499         struct socket *sock;
1500         struct super_block *sbp;
1501         struct inode *ip = (struct inode *)inode;
1502         struct smack_known *isp;
1503
1504         if (strcmp(name, XATTR_SMACK_SUFFIX) == 0)
1505                 isp = smk_of_inode(inode);
1506         else {
1507                 /*
1508                  * The rest of the Smack xattrs are only on sockets.
1509                  */
1510                 sbp = ip->i_sb;
1511                 if (sbp->s_magic != SOCKFS_MAGIC)
1512                         return -EOPNOTSUPP;
1513
1514                 sock = SOCKET_I(ip);
1515                 if (sock == NULL || sock->sk == NULL)
1516                         return -EOPNOTSUPP;
1517
1518                 ssp = sock->sk->sk_security;
1519
1520                 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
1521                         isp = ssp->smk_in;
1522                 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
1523                         isp = ssp->smk_out;
1524                 else
1525                         return -EOPNOTSUPP;
1526         }
1527
1528         if (alloc) {
1529                 *buffer = kstrdup(isp->smk_known, GFP_KERNEL);
1530                 if (*buffer == NULL)
1531                         return -ENOMEM;
1532         }
1533
1534         return strlen(isp->smk_known);
1535 }
1536
1537
1538 /**
1539  * smack_inode_listsecurity - list the Smack attributes
1540  * @inode: the object
1541  * @buffer: where they go
1542  * @buffer_size: size of buffer
1543  */
1544 static int smack_inode_listsecurity(struct inode *inode, char *buffer,
1545                                     size_t buffer_size)
1546 {
1547         int len = sizeof(XATTR_NAME_SMACK);
1548
1549         if (buffer != NULL && len <= buffer_size)
1550                 memcpy(buffer, XATTR_NAME_SMACK, len);
1551
1552         return len;
1553 }
1554
1555 /**
1556  * smack_inode_getsecid - Extract inode's security id
1557  * @inode: inode to extract the info from
1558  * @secid: where result will be saved
1559  */
1560 static void smack_inode_getsecid(struct inode *inode, u32 *secid)
1561 {
1562         struct inode_smack *isp = inode->i_security;
1563
1564         *secid = isp->smk_inode->smk_secid;
1565 }
1566
1567 /*
1568  * File Hooks
1569  */
1570
1571 /*
1572  * There is no smack_file_permission hook
1573  *
1574  * Should access checks be done on each read or write?
1575  * UNICOS and SELinux say yes.
1576  * Trusted Solaris, Trusted Irix, and just about everyone else says no.
1577  *
1578  * I'll say no for now. Smack does not do the frequent
1579  * label changing that SELinux does.
1580  */
1581
1582 /**
1583  * smack_file_alloc_security - assign a file security blob
1584  * @file: the object
1585  *
1586  * The security blob for a file is a pointer to the master
1587  * label list, so no allocation is done.
1588  *
1589  * f_security is the owner security information. It
1590  * isn't used on file access checks, it's for send_sigio.
1591  *
1592  * Returns 0
1593  */
1594 static int smack_file_alloc_security(struct file *file)
1595 {
1596         struct smack_known *skp = smk_of_current();
1597
1598         file->f_security = skp;
1599         return 0;
1600 }
1601
1602 /**
1603  * smack_file_free_security - clear a file security blob
1604  * @file: the object
1605  *
1606  * The security blob for a file is a pointer to the master
1607  * label list, so no memory is freed.
1608  */
1609 static void smack_file_free_security(struct file *file)
1610 {
1611         file->f_security = NULL;
1612 }
1613
1614 /**
1615  * smack_file_ioctl - Smack check on ioctls
1616  * @file: the object
1617  * @cmd: what to do
1618  * @arg: unused
1619  *
1620  * Relies heavily on the correct use of the ioctl command conventions.
1621  *
1622  * Returns 0 if allowed, error code otherwise
1623  */
1624 static int smack_file_ioctl(struct file *file, unsigned int cmd,
1625                             unsigned long arg)
1626 {
1627         int rc = 0;
1628         struct smk_audit_info ad;
1629         struct inode *inode = file_inode(file);
1630
1631         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1632         smk_ad_setfield_u_fs_path(&ad, file->f_path);
1633
1634         if (_IOC_DIR(cmd) & _IOC_WRITE) {
1635                 rc = smk_curacc(smk_of_inode(inode), MAY_WRITE, &ad);
1636                 rc = smk_bu_file(file, MAY_WRITE, rc);
1637         }
1638
1639         if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ)) {
1640                 rc = smk_curacc(smk_of_inode(inode), MAY_READ, &ad);
1641                 rc = smk_bu_file(file, MAY_READ, rc);
1642         }
1643
1644         return rc;
1645 }
1646
1647 /**
1648  * smack_file_lock - Smack check on file locking
1649  * @file: the object
1650  * @cmd: unused
1651  *
1652  * Returns 0 if current has lock access, error code otherwise
1653  */
1654 static int smack_file_lock(struct file *file, unsigned int cmd)
1655 {
1656         struct smk_audit_info ad;
1657         int rc;
1658         struct inode *inode = file_inode(file);
1659
1660         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1661         smk_ad_setfield_u_fs_path(&ad, file->f_path);
1662         rc = smk_curacc(smk_of_inode(inode), MAY_LOCK, &ad);
1663         rc = smk_bu_file(file, MAY_LOCK, rc);
1664         return rc;
1665 }
1666
1667 /**
1668  * smack_file_fcntl - Smack check on fcntl
1669  * @file: the object
1670  * @cmd: what action to check
1671  * @arg: unused
1672  *
1673  * Generally these operations are harmless.
1674  * File locking operations present an obvious mechanism
1675  * for passing information, so they require write access.
1676  *
1677  * Returns 0 if current has access, error code otherwise
1678  */
1679 static int smack_file_fcntl(struct file *file, unsigned int cmd,
1680                             unsigned long arg)
1681 {
1682         struct smk_audit_info ad;
1683         int rc = 0;
1684         struct inode *inode = file_inode(file);
1685
1686         switch (cmd) {
1687         case F_GETLK:
1688                 break;
1689         case F_SETLK:
1690         case F_SETLKW:
1691                 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1692                 smk_ad_setfield_u_fs_path(&ad, file->f_path);
1693                 rc = smk_curacc(smk_of_inode(inode), MAY_LOCK, &ad);
1694                 rc = smk_bu_file(file, MAY_LOCK, rc);
1695                 break;
1696         case F_SETOWN:
1697         case F_SETSIG:
1698                 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1699                 smk_ad_setfield_u_fs_path(&ad, file->f_path);
1700                 rc = smk_curacc(smk_of_inode(inode), MAY_WRITE, &ad);
1701                 rc = smk_bu_file(file, MAY_WRITE, rc);
1702                 break;
1703         default:
1704                 break;
1705         }
1706
1707         return rc;
1708 }
1709
1710 /**
1711  * smack_mmap_file :
1712  * Check permissions for a mmap operation.  The @file may be NULL, e.g.
1713  * if mapping anonymous memory.
1714  * @file contains the file structure for file to map (may be NULL).
1715  * @reqprot contains the protection requested by the application.
1716  * @prot contains the protection that will be applied by the kernel.
1717  * @flags contains the operational flags.
1718  * Return 0 if permission is granted.
1719  */
1720 static int smack_mmap_file(struct file *file,
1721                            unsigned long reqprot, unsigned long prot,
1722                            unsigned long flags)
1723 {
1724         struct smack_known *skp;
1725         struct smack_known *mkp;
1726         struct smack_rule *srp;
1727         struct task_smack *tsp;
1728         struct smack_known *okp;
1729         struct inode_smack *isp;
1730         struct superblock_smack *sbsp;
1731         int may;
1732         int mmay;
1733         int tmay;
1734         int rc;
1735
1736         if (file == NULL)
1737                 return 0;
1738
1739         isp = file_inode(file)->i_security;
1740         if (isp->smk_mmap == NULL)
1741                 return 0;
1742         sbsp = file_inode(file)->i_sb->s_security;
1743         if (sbsp->smk_flags & SMK_SB_UNTRUSTED &&
1744             isp->smk_mmap != sbsp->smk_root)
1745                 return -EACCES;
1746         mkp = isp->smk_mmap;
1747
1748         tsp = current_security();
1749         skp = smk_of_current();
1750         rc = 0;
1751
1752         rcu_read_lock();
1753         /*
1754          * For each Smack rule associated with the subject
1755          * label verify that the SMACK64MMAP also has access
1756          * to that rule's object label.
1757          */
1758         list_for_each_entry_rcu(srp, &skp->smk_rules, list) {
1759                 okp = srp->smk_object;
1760                 /*
1761                  * Matching labels always allows access.
1762                  */
1763                 if (mkp->smk_known == okp->smk_known)
1764                         continue;
1765                 /*
1766                  * If there is a matching local rule take
1767                  * that into account as well.
1768                  */
1769                 may = smk_access_entry(srp->smk_subject->smk_known,
1770                                        okp->smk_known,
1771                                        &tsp->smk_rules);
1772                 if (may == -ENOENT)
1773                         may = srp->smk_access;
1774                 else
1775                         may &= srp->smk_access;
1776                 /*
1777                  * If may is zero the SMACK64MMAP subject can't
1778                  * possibly have less access.
1779                  */
1780                 if (may == 0)
1781                         continue;
1782
1783                 /*
1784                  * Fetch the global list entry.
1785                  * If there isn't one a SMACK64MMAP subject
1786                  * can't have as much access as current.
1787                  */
1788                 mmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1789                                         &mkp->smk_rules);
1790                 if (mmay == -ENOENT) {
1791                         rc = -EACCES;
1792                         break;
1793                 }
1794                 /*
1795                  * If there is a local entry it modifies the
1796                  * potential access, too.
1797                  */
1798                 tmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1799                                         &tsp->smk_rules);
1800                 if (tmay != -ENOENT)
1801                         mmay &= tmay;
1802
1803                 /*
1804                  * If there is any access available to current that is
1805                  * not available to a SMACK64MMAP subject
1806                  * deny access.
1807                  */
1808                 if ((may | mmay) != mmay) {
1809                         rc = -EACCES;
1810                         break;
1811                 }
1812         }
1813
1814         rcu_read_unlock();
1815
1816         return rc;
1817 }
1818
1819 /**
1820  * smack_file_set_fowner - set the file security blob value
1821  * @file: object in question
1822  *
1823  */
1824 static void smack_file_set_fowner(struct file *file)
1825 {
1826         file->f_security = smk_of_current();
1827 }
1828
1829 /**
1830  * smack_file_send_sigiotask - Smack on sigio
1831  * @tsk: The target task
1832  * @fown: the object the signal come from
1833  * @signum: unused
1834  *
1835  * Allow a privileged task to get signals even if it shouldn't
1836  *
1837  * Returns 0 if a subject with the object's smack could
1838  * write to the task, an error code otherwise.
1839  */
1840 static int smack_file_send_sigiotask(struct task_struct *tsk,
1841                                      struct fown_struct *fown, int signum)
1842 {
1843         struct smack_known *skp;
1844         struct smack_known *tkp = smk_of_task(tsk->cred->security);
1845         struct file *file;
1846         int rc;
1847         struct smk_audit_info ad;
1848
1849         /*
1850          * struct fown_struct is never outside the context of a struct file
1851          */
1852         file = container_of(fown, struct file, f_owner);
1853
1854         /* we don't log here as rc can be overriden */
1855         skp = file->f_security;
1856         rc = smk_access(skp, tkp, MAY_DELIVER, NULL);
1857         rc = smk_bu_note("sigiotask", skp, tkp, MAY_DELIVER, rc);
1858         if (rc != 0 && has_capability(tsk, CAP_MAC_OVERRIDE))
1859                 rc = 0;
1860
1861         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1862         smk_ad_setfield_u_tsk(&ad, tsk);
1863         smack_log(skp->smk_known, tkp->smk_known, MAY_DELIVER, rc, &ad);
1864         return rc;
1865 }
1866
1867 /**
1868  * smack_file_receive - Smack file receive check
1869  * @file: the object
1870  *
1871  * Returns 0 if current has access, error code otherwise
1872  */
1873 static int smack_file_receive(struct file *file)
1874 {
1875         int rc;
1876         int may = 0;
1877         struct smk_audit_info ad;
1878         struct inode *inode = file_inode(file);
1879         struct socket *sock;
1880         struct task_smack *tsp;
1881         struct socket_smack *ssp;
1882
1883         if (unlikely(IS_PRIVATE(inode)))
1884                 return 0;
1885
1886         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1887         smk_ad_setfield_u_fs_path(&ad, file->f_path);
1888
1889         if (S_ISSOCK(inode->i_mode)) {
1890                 sock = SOCKET_I(inode);
1891                 ssp = sock->sk->sk_security;
1892                 tsp = current_security();
1893                 /*
1894                  * If the receiving process can't write to the
1895                  * passed socket or if the passed socket can't
1896                  * write to the receiving process don't accept
1897                  * the passed socket.
1898                  */
1899                 rc = smk_access(tsp->smk_task, ssp->smk_out, MAY_WRITE, &ad);
1900                 rc = smk_bu_file(file, may, rc);
1901                 if (rc < 0)
1902                         return rc;
1903                 rc = smk_access(ssp->smk_in, tsp->smk_task, MAY_WRITE, &ad);
1904                 rc = smk_bu_file(file, may, rc);
1905                 return rc;
1906         }
1907         /*
1908          * This code relies on bitmasks.
1909          */
1910         if (file->f_mode & FMODE_READ)
1911                 may = MAY_READ;
1912         if (file->f_mode & FMODE_WRITE)
1913                 may |= MAY_WRITE;
1914
1915         rc = smk_curacc(smk_of_inode(inode), may, &ad);
1916         rc = smk_bu_file(file, may, rc);
1917         return rc;
1918 }
1919
1920 /**
1921  * smack_file_open - Smack dentry open processing
1922  * @file: the object
1923  * @cred: task credential
1924  *
1925  * Set the security blob in the file structure.
1926  * Allow the open only if the task has read access. There are
1927  * many read operations (e.g. fstat) that you can do with an
1928  * fd even if you have the file open write-only.
1929  *
1930  * Returns 0
1931  */
1932 static int smack_file_open(struct file *file, const struct cred *cred)
1933 {
1934         struct task_smack *tsp = cred->security;
1935         struct inode *inode = file_inode(file);
1936         struct smk_audit_info ad;
1937         int rc;
1938
1939         if (smack_privileged(CAP_MAC_OVERRIDE))
1940                 return 0;
1941
1942         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1943         smk_ad_setfield_u_fs_path(&ad, file->f_path);
1944         rc = smk_access(tsp->smk_task, smk_of_inode(inode), MAY_READ, &ad);
1945         rc = smk_bu_credfile(cred, file, MAY_READ, rc);
1946
1947         return rc;
1948 }
1949
1950 /*
1951  * Task hooks
1952  */
1953
1954 /**
1955  * smack_cred_alloc_blank - "allocate" blank task-level security credentials
1956  * @new: the new credentials
1957  * @gfp: the atomicity of any memory allocations
1958  *
1959  * Prepare a blank set of credentials for modification.  This must allocate all
1960  * the memory the LSM module might require such that cred_transfer() can
1961  * complete without error.
1962  */
1963 static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp)
1964 {
1965         struct task_smack *tsp;
1966
1967         tsp = new_task_smack(NULL, NULL, gfp);
1968         if (tsp == NULL)
1969                 return -ENOMEM;
1970
1971         cred->security = tsp;
1972
1973         return 0;
1974 }
1975
1976
1977 /**
1978  * smack_cred_free - "free" task-level security credentials
1979  * @cred: the credentials in question
1980  *
1981  */
1982 static void smack_cred_free(struct cred *cred)
1983 {
1984         struct task_smack *tsp = cred->security;
1985         struct smack_rule *rp;
1986         struct list_head *l;
1987         struct list_head *n;
1988
1989         if (tsp == NULL)
1990                 return;
1991         cred->security = NULL;
1992
1993         smk_destroy_label_list(&tsp->smk_relabel);
1994
1995         list_for_each_safe(l, n, &tsp->smk_rules) {
1996                 rp = list_entry(l, struct smack_rule, list);
1997                 list_del(&rp->list);
1998                 kfree(rp);
1999         }
2000         kfree(tsp);
2001 }
2002
2003 /**
2004  * smack_cred_prepare - prepare new set of credentials for modification
2005  * @new: the new credentials
2006  * @old: the original credentials
2007  * @gfp: the atomicity of any memory allocations
2008  *
2009  * Prepare a new set of credentials for modification.
2010  */
2011 static int smack_cred_prepare(struct cred *new, const struct cred *old,
2012                               gfp_t gfp)
2013 {
2014         struct task_smack *old_tsp = old->security;
2015         struct task_smack *new_tsp;
2016         int rc;
2017
2018         new_tsp = new_task_smack(old_tsp->smk_task, old_tsp->smk_task, gfp);
2019         if (new_tsp == NULL)
2020                 return -ENOMEM;
2021
2022         rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp);
2023         if (rc != 0)
2024                 return rc;
2025
2026         rc = smk_copy_relabel(&new_tsp->smk_relabel, &old_tsp->smk_relabel,
2027                                 gfp);
2028         if (rc != 0)
2029                 return rc;
2030
2031         new->security = new_tsp;
2032         return 0;
2033 }
2034
2035 /**
2036  * smack_cred_transfer - Transfer the old credentials to the new credentials
2037  * @new: the new credentials
2038  * @old: the original credentials
2039  *
2040  * Fill in a set of blank credentials from another set of credentials.
2041  */
2042 static void smack_cred_transfer(struct cred *new, const struct cred *old)
2043 {
2044         struct task_smack *old_tsp = old->security;
2045         struct task_smack *new_tsp = new->security;
2046
2047         new_tsp->smk_task = old_tsp->smk_task;
2048         new_tsp->smk_forked = old_tsp->smk_task;
2049         mutex_init(&new_tsp->smk_rules_lock);
2050         INIT_LIST_HEAD(&new_tsp->smk_rules);
2051
2052
2053         /* cbs copy rule list */
2054 }
2055
2056 /**
2057  * smack_kernel_act_as - Set the subjective context in a set of credentials
2058  * @new: points to the set of credentials to be modified.
2059  * @secid: specifies the security ID to be set
2060  *
2061  * Set the security data for a kernel service.
2062  */
2063 static int smack_kernel_act_as(struct cred *new, u32 secid)
2064 {
2065         struct task_smack *new_tsp = new->security;
2066         struct smack_known *skp = smack_from_secid(secid);
2067
2068         if (skp == NULL)
2069                 return -EINVAL;
2070
2071         new_tsp->smk_task = skp;
2072         return 0;
2073 }
2074
2075 /**
2076  * smack_kernel_create_files_as - Set the file creation label in a set of creds
2077  * @new: points to the set of credentials to be modified
2078  * @inode: points to the inode to use as a reference
2079  *
2080  * Set the file creation context in a set of credentials to the same
2081  * as the objective context of the specified inode
2082  */
2083 static int smack_kernel_create_files_as(struct cred *new,
2084                                         struct inode *inode)
2085 {
2086         struct inode_smack *isp = inode->i_security;
2087         struct task_smack *tsp = new->security;
2088
2089         tsp->smk_forked = isp->smk_inode;
2090         tsp->smk_task = tsp->smk_forked;
2091         return 0;
2092 }
2093
2094 /**
2095  * smk_curacc_on_task - helper to log task related access
2096  * @p: the task object
2097  * @access: the access requested
2098  * @caller: name of the calling function for audit
2099  *
2100  * Return 0 if access is permitted
2101  */
2102 static int smk_curacc_on_task(struct task_struct *p, int access,
2103                                 const char *caller)
2104 {
2105         struct smk_audit_info ad;
2106         struct smack_known *skp = smk_of_task_struct(p);
2107         int rc;
2108
2109         smk_ad_init(&ad, caller, LSM_AUDIT_DATA_TASK);
2110         smk_ad_setfield_u_tsk(&ad, p);
2111         rc = smk_curacc(skp, access, &ad);
2112         rc = smk_bu_task(p, access, rc);
2113         return rc;
2114 }
2115
2116 /**
2117  * smack_task_setpgid - Smack check on setting pgid
2118  * @p: the task object
2119  * @pgid: unused
2120  *
2121  * Return 0 if write access is permitted
2122  */
2123 static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
2124 {
2125         return smk_curacc_on_task(p, MAY_WRITE, __func__);
2126 }
2127
2128 /**
2129  * smack_task_getpgid - Smack access check for getpgid
2130  * @p: the object task
2131  *
2132  * Returns 0 if current can read the object task, error code otherwise
2133  */
2134 static int smack_task_getpgid(struct task_struct *p)
2135 {
2136         return smk_curacc_on_task(p, MAY_READ, __func__);
2137 }
2138
2139 /**
2140  * smack_task_getsid - Smack access check for getsid
2141  * @p: the object task
2142  *
2143  * Returns 0 if current can read the object task, error code otherwise
2144  */
2145 static int smack_task_getsid(struct task_struct *p)
2146 {
2147         return smk_curacc_on_task(p, MAY_READ, __func__);
2148 }
2149
2150 /**
2151  * smack_task_getsecid - get the secid of the task
2152  * @p: the object task
2153  * @secid: where to put the result
2154  *
2155  * Sets the secid to contain a u32 version of the smack label.
2156  */
2157 static void smack_task_getsecid(struct task_struct *p, u32 *secid)
2158 {
2159         struct smack_known *skp = smk_of_task_struct(p);
2160
2161         *secid = skp->smk_secid;
2162 }
2163
2164 /**
2165  * smack_task_setnice - Smack check on setting nice
2166  * @p: the task object
2167  * @nice: unused
2168  *
2169  * Return 0 if write access is permitted
2170  */
2171 static int smack_task_setnice(struct task_struct *p, int nice)
2172 {
2173         return smk_curacc_on_task(p, MAY_WRITE, __func__);
2174 }
2175
2176 /**
2177  * smack_task_setioprio - Smack check on setting ioprio
2178  * @p: the task object
2179  * @ioprio: unused
2180  *
2181  * Return 0 if write access is permitted
2182  */
2183 static int smack_task_setioprio(struct task_struct *p, int ioprio)
2184 {
2185         return smk_curacc_on_task(p, MAY_WRITE, __func__);
2186 }
2187
2188 /**
2189  * smack_task_getioprio - Smack check on reading ioprio
2190  * @p: the task object
2191  *
2192  * Return 0 if read access is permitted
2193  */
2194 static int smack_task_getioprio(struct task_struct *p)
2195 {
2196         return smk_curacc_on_task(p, MAY_READ, __func__);
2197 }
2198
2199 /**
2200  * smack_task_setscheduler - Smack check on setting scheduler
2201  * @p: the task object
2202  * @policy: unused
2203  * @lp: unused
2204  *
2205  * Return 0 if read access is permitted
2206  */
2207 static int smack_task_setscheduler(struct task_struct *p)
2208 {
2209         return smk_curacc_on_task(p, MAY_WRITE, __func__);
2210 }
2211
2212 /**
2213  * smack_task_getscheduler - Smack check on reading scheduler
2214  * @p: the task object
2215  *
2216  * Return 0 if read access is permitted
2217  */
2218 static int smack_task_getscheduler(struct task_struct *p)
2219 {
2220         return smk_curacc_on_task(p, MAY_READ, __func__);
2221 }
2222
2223 /**
2224  * smack_task_movememory - Smack check on moving memory
2225  * @p: the task object
2226  *
2227  * Return 0 if write access is permitted
2228  */
2229 static int smack_task_movememory(struct task_struct *p)
2230 {
2231         return smk_curacc_on_task(p, MAY_WRITE, __func__);
2232 }
2233
2234 /**
2235  * smack_task_kill - Smack check on signal delivery
2236  * @p: the task object
2237  * @info: unused
2238  * @sig: unused
2239  * @secid: identifies the smack to use in lieu of current's
2240  *
2241  * Return 0 if write access is permitted
2242  *
2243  * The secid behavior is an artifact of an SELinux hack
2244  * in the USB code. Someday it may go away.
2245  */
2246 static int smack_task_kill(struct task_struct *p, struct siginfo *info,
2247                            int sig, u32 secid)
2248 {
2249         struct smk_audit_info ad;
2250         struct smack_known *skp;
2251         struct smack_known *tkp = smk_of_task_struct(p);
2252         int rc;
2253
2254         if (!sig)
2255                 return 0; /* null signal; existence test */
2256
2257         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
2258         smk_ad_setfield_u_tsk(&ad, p);
2259         /*
2260          * Sending a signal requires that the sender
2261          * can write the receiver.
2262          */
2263         if (secid == 0) {
2264                 rc = smk_curacc(tkp, MAY_DELIVER, &ad);
2265                 rc = smk_bu_task(p, MAY_DELIVER, rc);
2266                 return rc;
2267         }
2268         /*
2269          * If the secid isn't 0 we're dealing with some USB IO
2270          * specific behavior. This is not clean. For one thing
2271          * we can't take privilege into account.
2272          */
2273         skp = smack_from_secid(secid);
2274         rc = smk_access(skp, tkp, MAY_DELIVER, &ad);
2275         rc = smk_bu_note("USB signal", skp, tkp, MAY_DELIVER, rc);
2276         return rc;
2277 }
2278
2279 /**
2280  * smack_task_to_inode - copy task smack into the inode blob
2281  * @p: task to copy from
2282  * @inode: inode to copy to
2283  *
2284  * Sets the smack pointer in the inode security blob
2285  */
2286 static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
2287 {
2288         struct inode_smack *isp = inode->i_security;
2289         struct smack_known *skp = smk_of_task_struct(p);
2290
2291         isp->smk_inode = skp;
2292         isp->smk_flags |= SMK_INODE_INSTANT;
2293 }
2294
2295 /*
2296  * Socket hooks.
2297  */
2298
2299 /**
2300  * smack_sk_alloc_security - Allocate a socket blob
2301  * @sk: the socket
2302  * @family: unused
2303  * @gfp_flags: memory allocation flags
2304  *
2305  * Assign Smack pointers to current
2306  *
2307  * Returns 0 on success, -ENOMEM is there's no memory
2308  */
2309 static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
2310 {
2311         struct smack_known *skp = smk_of_current();
2312         struct socket_smack *ssp;
2313
2314         ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
2315         if (ssp == NULL)
2316                 return -ENOMEM;
2317
2318         ssp->smk_in = skp;
2319         ssp->smk_out = skp;
2320         ssp->smk_packet = NULL;
2321
2322         sk->sk_security = ssp;
2323
2324         return 0;
2325 }
2326
2327 /**
2328  * smack_sk_free_security - Free a socket blob
2329  * @sk: the socket
2330  *
2331  * Clears the blob pointer
2332  */
2333 static void smack_sk_free_security(struct sock *sk)
2334 {
2335         kfree(sk->sk_security);
2336 }
2337
2338 /**
2339 * smack_ipv4host_label - check host based restrictions
2340 * @sip: the object end
2341 *
2342 * looks for host based access restrictions
2343 *
2344 * This version will only be appropriate for really small sets of single label
2345 * hosts.  The caller is responsible for ensuring that the RCU read lock is
2346 * taken before calling this function.
2347 *
2348 * Returns the label of the far end or NULL if it's not special.
2349 */
2350 static struct smack_known *smack_ipv4host_label(struct sockaddr_in *sip)
2351 {
2352         struct smk_net4addr *snp;
2353         struct in_addr *siap = &sip->sin_addr;
2354
2355         if (siap->s_addr == 0)
2356                 return NULL;
2357
2358         list_for_each_entry_rcu(snp, &smk_net4addr_list, list)
2359                 /*
2360                  * we break after finding the first match because
2361                  * the list is sorted from longest to shortest mask
2362                  * so we have found the most specific match
2363                  */
2364                 if (snp->smk_host.s_addr ==
2365                     (siap->s_addr & snp->smk_mask.s_addr))
2366                         return snp->smk_label;
2367
2368         return NULL;
2369 }
2370
2371 #if IS_ENABLED(CONFIG_IPV6)
2372 /*
2373  * smk_ipv6_localhost - Check for local ipv6 host address
2374  * @sip: the address
2375  *
2376  * Returns boolean true if this is the localhost address
2377  */
2378 static bool smk_ipv6_localhost(struct sockaddr_in6 *sip)
2379 {
2380         __be16 *be16p = (__be16 *)&sip->sin6_addr;
2381         __be32 *be32p = (__be32 *)&sip->sin6_addr;
2382
2383         if (be32p[0] == 0 && be32p[1] == 0 && be32p[2] == 0 && be16p[6] == 0 &&
2384             ntohs(be16p[7]) == 1)
2385                 return true;
2386         return false;
2387 }
2388
2389 /**
2390 * smack_ipv6host_label - check host based restrictions
2391 * @sip: the object end
2392 *
2393 * looks for host based access restrictions
2394 *
2395 * This version will only be appropriate for really small sets of single label
2396 * hosts.  The caller is responsible for ensuring that the RCU read lock is
2397 * taken before calling this function.
2398 *
2399 * Returns the label of the far end or NULL if it's not special.
2400 */
2401 static struct smack_known *smack_ipv6host_label(struct sockaddr_in6 *sip)
2402 {
2403         struct smk_net6addr *snp;
2404         struct in6_addr *sap = &sip->sin6_addr;
2405         int i;
2406         int found = 0;
2407
2408         /*
2409          * It's local. Don't look for a host label.
2410          */
2411         if (smk_ipv6_localhost(sip))
2412                 return NULL;
2413
2414         list_for_each_entry_rcu(snp, &smk_net6addr_list, list) {
2415                 /*
2416                 * we break after finding the first match because
2417                 * the list is sorted from longest to shortest mask
2418                 * so we have found the most specific match
2419                 */
2420                 for (found = 1, i = 0; i < 8; i++) {
2421                         /*
2422                          * If the label is NULL the entry has
2423                          * been renounced. Ignore it.
2424                          */
2425                         if (snp->smk_label == NULL)
2426                                 continue;
2427                         if ((sap->s6_addr16[i] & snp->smk_mask.s6_addr16[i]) !=
2428                             snp->smk_host.s6_addr16[i]) {
2429                                 found = 0;
2430                                 break;
2431                         }
2432                 }
2433                 if (found)
2434                         return snp->smk_label;
2435         }
2436
2437         return NULL;
2438 }
2439 #endif /* CONFIG_IPV6 */
2440
2441 /**
2442  * smack_netlabel - Set the secattr on a socket
2443  * @sk: the socket
2444  * @labeled: socket label scheme
2445  *
2446  * Convert the outbound smack value (smk_out) to a
2447  * secattr and attach it to the socket.
2448  *
2449  * Returns 0 on success or an error code
2450  */
2451 static int smack_netlabel(struct sock *sk, int labeled)
2452 {
2453         struct smack_known *skp;
2454         struct socket_smack *ssp = sk->sk_security;
2455         int rc = 0;
2456
2457         /*
2458          * Usually the netlabel code will handle changing the
2459          * packet labeling based on the label.
2460          * The case of a single label host is different, because
2461          * a single label host should never get a labeled packet
2462          * even though the label is usually associated with a packet
2463          * label.
2464          */
2465         local_bh_disable();
2466         bh_lock_sock_nested(sk);
2467
2468         if (ssp->smk_out == smack_net_ambient ||
2469             labeled == SMACK_UNLABELED_SOCKET)
2470                 netlbl_sock_delattr(sk);
2471         else {
2472                 skp = ssp->smk_out;
2473                 rc = netlbl_sock_setattr(sk, sk->sk_family, &skp->smk_netlabel);
2474         }
2475
2476         bh_unlock_sock(sk);
2477         local_bh_enable();
2478
2479         return rc;
2480 }
2481
2482 /**
2483  * smack_netlbel_send - Set the secattr on a socket and perform access checks
2484  * @sk: the socket
2485  * @sap: the destination address
2486  *
2487  * Set the correct secattr for the given socket based on the destination
2488  * address and perform any outbound access checks needed.
2489  *
2490  * Returns 0 on success or an error code.
2491  *
2492  */
2493 static int smack_netlabel_send(struct sock *sk, struct sockaddr_in *sap)
2494 {
2495         struct smack_known *skp;
2496         int rc;
2497         int sk_lbl;
2498         struct smack_known *hkp;
2499         struct socket_smack *ssp = sk->sk_security;
2500         struct smk_audit_info ad;
2501
2502         rcu_read_lock();
2503         hkp = smack_ipv4host_label(sap);
2504         if (hkp != NULL) {
2505 #ifdef CONFIG_AUDIT
2506                 struct lsm_network_audit net;
2507
2508                 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2509                 ad.a.u.net->family = sap->sin_family;
2510                 ad.a.u.net->dport = sap->sin_port;
2511                 ad.a.u.net->v4info.daddr = sap->sin_addr.s_addr;
2512 #endif
2513                 sk_lbl = SMACK_UNLABELED_SOCKET;
2514                 skp = ssp->smk_out;
2515                 rc = smk_access(skp, hkp, MAY_WRITE, &ad);
2516                 rc = smk_bu_note("IPv4 host check", skp, hkp, MAY_WRITE, rc);
2517         } else {
2518                 sk_lbl = SMACK_CIPSO_SOCKET;
2519                 rc = 0;
2520         }
2521         rcu_read_unlock();
2522         if (rc != 0)
2523                 return rc;
2524
2525         return smack_netlabel(sk, sk_lbl);
2526 }
2527
2528 #if IS_ENABLED(CONFIG_IPV6)
2529 /**
2530  * smk_ipv6_check - check Smack access
2531  * @subject: subject Smack label
2532  * @object: object Smack label
2533  * @address: address
2534  * @act: the action being taken
2535  *
2536  * Check an IPv6 access
2537  */
2538 static int smk_ipv6_check(struct smack_known *subject,
2539                                 struct smack_known *object,
2540                                 struct sockaddr_in6 *address, int act)
2541 {
2542 #ifdef CONFIG_AUDIT
2543         struct lsm_network_audit net;
2544 #endif
2545         struct smk_audit_info ad;
2546         int rc;
2547
2548 #ifdef CONFIG_AUDIT
2549         smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2550         ad.a.u.net->family = PF_INET6;
2551         ad.a.u.net->dport = address->sin6_port;
2552         if (act == SMK_RECEIVING)
2553                 ad.a.u.net->v6info.saddr = address->sin6_addr;
2554         else
2555                 ad.a.u.net->v6info.daddr = address->sin6_addr;
2556 #endif
2557         rc = smk_access(subject, object, MAY_WRITE, &ad);
2558         rc = smk_bu_note("IPv6 check", subject, object, MAY_WRITE, rc);
2559         return rc;
2560 }
2561 #endif /* CONFIG_IPV6 */
2562
2563 #ifdef SMACK_IPV6_PORT_LABELING
2564 /**
2565  * smk_ipv6_port_label - Smack port access table management
2566  * @sock: socket
2567  * @address: address
2568  *
2569  * Create or update the port list entry
2570  */
2571 static void smk_ipv6_port_label(struct socket *sock, struct sockaddr *address)
2572 {
2573         struct sock *sk = sock->sk;
2574         struct sockaddr_in6 *addr6;
2575         struct socket_smack *ssp = sock->sk->sk_security;
2576         struct smk_port_label *spp;
2577         unsigned short port = 0;
2578
2579         if (address == NULL) {
2580                 /*
2581                  * This operation is changing the Smack information
2582                  * on the bound socket. Take the changes to the port
2583                  * as well.
2584                  */
2585                 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2586                         if (sk != spp->smk_sock)
2587                                 continue;
2588                         spp->smk_in = ssp->smk_in;
2589                         spp->smk_out = ssp->smk_out;
2590                         return;
2591                 }
2592                 /*
2593                  * A NULL address is only used for updating existing
2594                  * bound entries. If there isn't one, it's OK.
2595                  */
2596                 return;
2597         }
2598
2599         addr6 = (struct sockaddr_in6 *)address;
2600         port = ntohs(addr6->sin6_port);
2601         /*
2602          * This is a special case that is safely ignored.
2603          */
2604         if (port == 0)
2605                 return;
2606
2607         /*
2608          * Look for an existing port list entry.
2609          * This is an indication that a port is getting reused.
2610          */
2611         list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2612                 if (spp->smk_port != port)
2613                         continue;
2614                 spp->smk_port = port;
2615                 spp->smk_sock = sk;
2616                 spp->smk_in = ssp->smk_in;
2617                 spp->smk_out = ssp->smk_out;
2618                 return;
2619         }
2620
2621         /*
2622          * A new port entry is required.
2623          */
2624         spp = kzalloc(sizeof(*spp), GFP_KERNEL);
2625         if (spp == NULL)
2626                 return;
2627
2628         spp->smk_port = port;
2629         spp->smk_sock = sk;
2630         spp->smk_in = ssp->smk_in;
2631         spp->smk_out = ssp->smk_out;
2632
2633         list_add(&spp->list, &smk_ipv6_port_list);
2634         return;
2635 }
2636
2637 /**
2638  * smk_ipv6_port_check - check Smack port access
2639  * @sock: socket
2640  * @address: address
2641  *
2642  * Create or update the port list entry
2643  */
2644 static int smk_ipv6_port_check(struct sock *sk, struct sockaddr_in6 *address,
2645                                 int act)
2646 {
2647         struct smk_port_label *spp;
2648         struct socket_smack *ssp = sk->sk_security;
2649         struct smack_known *skp = NULL;
2650         unsigned short port;
2651         struct smack_known *object;
2652
2653         if (act == SMK_RECEIVING) {
2654                 skp = smack_ipv6host_label(address);
2655                 object = ssp->smk_in;
2656         } else {
2657                 skp = ssp->smk_out;
2658                 object = smack_ipv6host_label(address);
2659         }
2660
2661         /*
2662          * The other end is a single label host.
2663          */
2664         if (skp != NULL && object != NULL)
2665                 return smk_ipv6_check(skp, object, address, act);
2666         if (skp == NULL)
2667                 skp = smack_net_ambient;
2668         if (object == NULL)
2669                 object = smack_net_ambient;
2670
2671         /*
2672          * It's remote, so port lookup does no good.
2673          */
2674         if (!smk_ipv6_localhost(address))
2675                 return smk_ipv6_check(skp, object, address, act);
2676
2677         /*
2678          * It's local so the send check has to have passed.
2679          */
2680         if (act == SMK_RECEIVING)
2681                 return 0;
2682
2683         port = ntohs(address->sin6_port);
2684         list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2685                 if (spp->smk_port != port)
2686                         continue;
2687                 object = spp->smk_in;
2688                 if (act == SMK_CONNECTING)
2689                         ssp->smk_packet = spp->smk_out;
2690                 break;
2691         }
2692
2693         return smk_ipv6_check(skp, object, address, act);
2694 }
2695 #endif /* SMACK_IPV6_PORT_LABELING */
2696
2697 /**
2698  * smack_inode_setsecurity - set smack xattrs
2699  * @inode: the object
2700  * @name: attribute name
2701  * @value: attribute value
2702  * @size: size of the attribute
2703  * @flags: unused
2704  *
2705  * Sets the named attribute in the appropriate blob
2706  *
2707  * Returns 0 on success, or an error code
2708  */
2709 static int smack_inode_setsecurity(struct inode *inode, const char *name,
2710                                    const void *value, size_t size, int flags)
2711 {
2712         struct smack_known *skp;
2713         struct inode_smack *nsp = inode->i_security;
2714         struct socket_smack *ssp;
2715         struct socket *sock;
2716         int rc = 0;
2717
2718         if (value == NULL || size > SMK_LONGLABEL || size == 0)
2719                 return -EINVAL;
2720
2721         skp = smk_import_entry(value, size);
2722         if (IS_ERR(skp))
2723                 return PTR_ERR(skp);
2724
2725         if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
2726                 nsp->smk_inode = skp;
2727                 nsp->smk_flags |= SMK_INODE_INSTANT;
2728                 return 0;
2729         }
2730         /*
2731          * The rest of the Smack xattrs are only on sockets.
2732          */
2733         if (inode->i_sb->s_magic != SOCKFS_MAGIC)
2734                 return -EOPNOTSUPP;
2735
2736         sock = SOCKET_I(inode);
2737         if (sock == NULL || sock->sk == NULL)
2738                 return -EOPNOTSUPP;
2739
2740         ssp = sock->sk->sk_security;
2741
2742         if (strcmp(name, XATTR_SMACK_IPIN) == 0)
2743                 ssp->smk_in = skp;
2744         else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
2745                 ssp->smk_out = skp;
2746                 if (sock->sk->sk_family == PF_INET) {
2747                         rc = smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2748                         if (rc != 0)
2749                                 printk(KERN_WARNING
2750                                         "Smack: \"%s\" netlbl error %d.\n",
2751                                         __func__, -rc);
2752                 }
2753         } else
2754                 return -EOPNOTSUPP;
2755
2756 #ifdef SMACK_IPV6_PORT_LABELING
2757         if (sock->sk->sk_family == PF_INET6)
2758                 smk_ipv6_port_label(sock, NULL);
2759 #endif
2760
2761         return 0;
2762 }
2763
2764 /**
2765  * smack_socket_post_create - finish socket setup
2766  * @sock: the socket
2767  * @family: protocol family
2768  * @type: unused
2769  * @protocol: unused
2770  * @kern: unused
2771  *
2772  * Sets the netlabel information on the socket
2773  *
2774  * Returns 0 on success, and error code otherwise
2775  */
2776 static int smack_socket_post_create(struct socket *sock, int family,
2777                                     int type, int protocol, int kern)
2778 {
2779         struct socket_smack *ssp;
2780
2781         if (sock->sk == NULL)
2782                 return 0;
2783
2784         /*
2785          * Sockets created by kernel threads receive web label.
2786          */
2787         if (unlikely(current->flags & PF_KTHREAD)) {
2788                 ssp = sock->sk->sk_security;
2789                 ssp->smk_in = &smack_known_web;
2790                 ssp->smk_out = &smack_known_web;
2791         }
2792
2793         if (family != PF_INET)
2794                 return 0;
2795         /*
2796          * Set the outbound netlbl.
2797          */
2798         return smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2799 }
2800
2801 #ifdef SMACK_IPV6_PORT_LABELING
2802 /**
2803  * smack_socket_bind - record port binding information.
2804  * @sock: the socket
2805  * @address: the port address
2806  * @addrlen: size of the address
2807  *
2808  * Records the label bound to a port.
2809  *
2810  * Returns 0
2811  */
2812 static int smack_socket_bind(struct socket *sock, struct sockaddr *address,
2813                                 int addrlen)
2814 {
2815         if (sock->sk != NULL && sock->sk->sk_family == PF_INET6)
2816                 smk_ipv6_port_label(sock, address);
2817         return 0;
2818 }
2819 #endif /* SMACK_IPV6_PORT_LABELING */
2820
2821 /**
2822  * smack_socket_connect - connect access check
2823  * @sock: the socket
2824  * @sap: the other end
2825  * @addrlen: size of sap
2826  *
2827  * Verifies that a connection may be possible
2828  *
2829  * Returns 0 on success, and error code otherwise
2830  */
2831 static int smack_socket_connect(struct socket *sock, struct sockaddr *sap,
2832                                 int addrlen)
2833 {
2834         int rc = 0;
2835 #if IS_ENABLED(CONFIG_IPV6)
2836         struct sockaddr_in6 *sip = (struct sockaddr_in6 *)sap;
2837 #endif
2838 #ifdef SMACK_IPV6_SECMARK_LABELING
2839         struct smack_known *rsp;
2840         struct socket_smack *ssp = sock->sk->sk_security;
2841 #endif
2842
2843         if (sock->sk == NULL)
2844                 return 0;
2845
2846         switch (sock->sk->sk_family) {
2847         case PF_INET:
2848                 if (addrlen < sizeof(struct sockaddr_in))
2849                         return -EINVAL;
2850                 rc = smack_netlabel_send(sock->sk, (struct sockaddr_in *)sap);
2851                 break;
2852         case PF_INET6:
2853                 if (addrlen < sizeof(struct sockaddr_in6))
2854                         return -EINVAL;
2855 #ifdef SMACK_IPV6_SECMARK_LABELING
2856                 rsp = smack_ipv6host_label(sip);
2857                 if (rsp != NULL)
2858                         rc = smk_ipv6_check(ssp->smk_out, rsp, sip,
2859                                                 SMK_CONNECTING);
2860 #endif
2861 #ifdef SMACK_IPV6_PORT_LABELING
2862                 rc = smk_ipv6_port_check(sock->sk, sip, SMK_CONNECTING);
2863 #endif
2864                 break;
2865         }
2866         return rc;
2867 }
2868
2869 /**
2870  * smack_flags_to_may - convert S_ to MAY_ values
2871  * @flags: the S_ value
2872  *
2873  * Returns the equivalent MAY_ value
2874  */
2875 static int smack_flags_to_may(int flags)
2876 {
2877         int may = 0;
2878
2879         if (flags & S_IRUGO)
2880                 may |= MAY_READ;
2881         if (flags & S_IWUGO)
2882                 may |= MAY_WRITE;
2883         if (flags & S_IXUGO)
2884                 may |= MAY_EXEC;
2885
2886         return may;
2887 }
2888
2889 /**
2890  * smack_msg_msg_alloc_security - Set the security blob for msg_msg
2891  * @msg: the object
2892  *
2893  * Returns 0
2894  */
2895 static int smack_msg_msg_alloc_security(struct msg_msg *msg)
2896 {
2897         struct smack_known *skp = smk_of_current();
2898
2899         msg->security = skp;
2900         return 0;
2901 }
2902
2903 /**
2904  * smack_msg_msg_free_security - Clear the security blob for msg_msg
2905  * @msg: the object
2906  *
2907  * Clears the blob pointer
2908  */
2909 static void smack_msg_msg_free_security(struct msg_msg *msg)
2910 {
2911         msg->security = NULL;
2912 }
2913
2914 /**
2915  * smack_of_shm - the smack pointer for the shm
2916  * @shp: the object
2917  *
2918  * Returns a pointer to the smack value
2919  */
2920 static struct smack_known *smack_of_shm(struct shmid_kernel *shp)
2921 {
2922         return (struct smack_known *)shp->shm_perm.security;
2923 }
2924
2925 /**
2926  * smack_shm_alloc_security - Set the security blob for shm
2927  * @shp: the object
2928  *
2929  * Returns 0
2930  */
2931 static int smack_shm_alloc_security(struct shmid_kernel *shp)
2932 {
2933         struct kern_ipc_perm *isp = &shp->shm_perm;
2934         struct smack_known *skp = smk_of_current();
2935
2936         isp->security = skp;
2937         return 0;
2938 }
2939
2940 /**
2941  * smack_shm_free_security - Clear the security blob for shm
2942  * @shp: the object
2943  *
2944  * Clears the blob pointer
2945  */
2946 static void smack_shm_free_security(struct shmid_kernel *shp)
2947 {
2948         struct kern_ipc_perm *isp = &shp->shm_perm;
2949
2950         isp->security = NULL;
2951 }
2952
2953 /**
2954  * smk_curacc_shm : check if current has access on shm
2955  * @shp : the object
2956  * @access : access requested
2957  *
2958  * Returns 0 if current has the requested access, error code otherwise
2959  */
2960 static int smk_curacc_shm(struct shmid_kernel *shp, int access)
2961 {
2962         struct smack_known *ssp = smack_of_shm(shp);
2963         struct smk_audit_info ad;
2964         int rc;
2965
2966 #ifdef CONFIG_AUDIT
2967         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2968         ad.a.u.ipc_id = shp->shm_perm.id;
2969 #endif
2970         rc = smk_curacc(ssp, access, &ad);
2971         rc = smk_bu_current("shm", ssp, access, rc);
2972         return rc;
2973 }
2974
2975 /**
2976  * smack_shm_associate - Smack access check for shm
2977  * @shp: the object
2978  * @shmflg: access requested
2979  *
2980  * Returns 0 if current has the requested access, error code otherwise
2981  */
2982 static int smack_shm_associate(struct shmid_kernel *shp, int shmflg)
2983 {
2984         int may;
2985
2986         may = smack_flags_to_may(shmflg);
2987         return smk_curacc_shm(shp, may);
2988 }
2989
2990 /**
2991  * smack_shm_shmctl - Smack access check for shm
2992  * @shp: the object
2993  * @cmd: what it wants to do
2994  *
2995  * Returns 0 if current has the requested access, error code otherwise
2996  */
2997 static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
2998 {
2999         int may;
3000
3001         switch (cmd) {
3002         case IPC_STAT:
3003         case SHM_STAT:
3004                 may = MAY_READ;
3005                 break;
3006         case IPC_SET:
3007         case SHM_LOCK:
3008         case SHM_UNLOCK:
3009         case IPC_RMID:
3010                 may = MAY_READWRITE;
3011                 break;
3012         case IPC_INFO:
3013         case SHM_INFO:
3014                 /*
3015                  * System level information.
3016                  */
3017                 return 0;
3018         default:
3019                 return -EINVAL;
3020         }
3021         return smk_curacc_shm(shp, may);
3022 }
3023
3024 /**
3025  * smack_shm_shmat - Smack access for shmat
3026  * @shp: the object
3027  * @shmaddr: unused
3028  * @shmflg: access requested
3029  *
3030  * Returns 0 if current has the requested access, error code otherwise
3031  */
3032 static int smack_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr,
3033                            int shmflg)
3034 {
3035         int may;
3036
3037         may = smack_flags_to_may(shmflg);
3038         return smk_curacc_shm(shp, may);
3039 }
3040
3041 /**
3042  * smack_of_sem - the smack pointer for the sem
3043  * @sma: the object
3044  *
3045  * Returns a pointer to the smack value
3046  */
3047 static struct smack_known *smack_of_sem(struct sem_array *sma)
3048 {
3049         return (struct smack_known *)sma->sem_perm.security;
3050 }
3051
3052 /**
3053  * smack_sem_alloc_security - Set the security blob for sem
3054  * @sma: the object
3055  *
3056  * Returns 0
3057  */
3058 static int smack_sem_alloc_security(struct sem_array *sma)
3059 {
3060         struct kern_ipc_perm *isp = &sma->sem_perm;
3061         struct smack_known *skp = smk_of_current();
3062
3063         isp->security = skp;
3064         return 0;
3065 }
3066
3067 /**
3068  * smack_sem_free_security - Clear the security blob for sem
3069  * @sma: the object
3070  *
3071  * Clears the blob pointer
3072  */
3073 static void smack_sem_free_security(struct sem_array *sma)
3074 {
3075         struct kern_ipc_perm *isp = &sma->sem_perm;
3076
3077         isp->security = NULL;
3078 }
3079
3080 /**
3081  * smk_curacc_sem : check if current has access on sem
3082  * @sma : the object
3083  * @access : access requested
3084  *
3085  * Returns 0 if current has the requested access, error code otherwise
3086  */
3087 static int smk_curacc_sem(struct sem_array *sma, int access)
3088 {
3089         struct smack_known *ssp = smack_of_sem(sma);
3090         struct smk_audit_info ad;
3091         int rc;
3092
3093 #ifdef CONFIG_AUDIT
3094         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
3095         ad.a.u.ipc_id = sma->sem_perm.id;
3096 #endif
3097         rc = smk_curacc(ssp, access, &ad);
3098         rc = smk_bu_current("sem", ssp, access, rc);
3099         return rc;
3100 }
3101
3102 /**
3103  * smack_sem_associate - Smack access check for sem
3104  * @sma: the object
3105  * @semflg: access requested
3106  *
3107  * Returns 0 if current has the requested access, error code otherwise
3108  */
3109 static int smack_sem_associate(struct sem_array *sma, int semflg)
3110 {
3111         int may;
3112
3113         may = smack_flags_to_may(semflg);
3114         return smk_curacc_sem(sma, may);
3115 }
3116
3117 /**
3118  * smack_sem_shmctl - Smack access check for sem
3119  * @sma: the object
3120  * @cmd: what it wants to do
3121  *
3122  * Returns 0 if current has the requested access, error code otherwise
3123  */
3124 static int smack_sem_semctl(struct sem_array *sma, int cmd)
3125 {
3126         int may;
3127
3128         switch (cmd) {
3129         case GETPID:
3130         case GETNCNT:
3131         case GETZCNT:
3132         case GETVAL:
3133         case GETALL:
3134         case IPC_STAT:
3135         case SEM_STAT:
3136                 may = MAY_READ;
3137                 break;
3138         case SETVAL:
3139         case SETALL:
3140         case IPC_RMID:
3141         case IPC_SET:
3142                 may = MAY_READWRITE;
3143                 break;
3144         case IPC_INFO:
3145         case SEM_INFO:
3146                 /*
3147                  * System level information
3148                  */
3149                 return 0;
3150         default:
3151                 return -EINVAL;
3152         }
3153
3154         return smk_curacc_sem(sma, may);
3155 }
3156
3157 /**
3158  * smack_sem_semop - Smack checks of semaphore operations
3159  * @sma: the object
3160  * @sops: unused
3161  * @nsops: unused
3162  * @alter: unused
3163  *
3164  * Treated as read and write in all cases.
3165  *
3166  * Returns 0 if access is allowed, error code otherwise
3167  */
3168 static int smack_sem_semop(struct sem_array *sma, struct sembuf *sops,
3169                            unsigned nsops, int alter)
3170 {
3171         return smk_curacc_sem(sma, MAY_READWRITE);
3172 }
3173
3174 /**
3175  * smack_msg_alloc_security - Set the security blob for msg
3176  * @msq: the object
3177  *
3178  * Returns 0
3179  */
3180 static int smack_msg_queue_alloc_security(struct msg_queue *msq)
3181 {
3182         struct kern_ipc_perm *kisp = &msq->q_perm;
3183         struct smack_known *skp = smk_of_current();
3184
3185         kisp->security = skp;
3186         return 0;
3187 }
3188
3189 /**
3190  * smack_msg_free_security - Clear the security blob for msg
3191  * @msq: the object
3192  *
3193  * Clears the blob pointer
3194  */
3195 static void smack_msg_queue_free_security(struct msg_queue *msq)
3196 {
3197         struct kern_ipc_perm *kisp = &msq->q_perm;
3198
3199         kisp->security = NULL;
3200 }
3201
3202 /**
3203  * smack_of_msq - the smack pointer for the msq
3204  * @msq: the object
3205  *
3206  * Returns a pointer to the smack label entry
3207  */
3208 static struct smack_known *smack_of_msq(struct msg_queue *msq)
3209 {
3210         return (struct smack_known *)msq->q_perm.security;
3211 }
3212
3213 /**
3214  * smk_curacc_msq : helper to check if current has access on msq
3215  * @msq : the msq
3216  * @access : access requested
3217  *
3218  * return 0 if current has access, error otherwise
3219  */
3220 static int smk_curacc_msq(struct msg_queue *msq, int access)
3221 {
3222         struct smack_known *msp = smack_of_msq(msq);
3223         struct smk_audit_info ad;
3224         int rc;
3225
3226 #ifdef CONFIG_AUDIT
3227         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
3228         ad.a.u.ipc_id = msq->q_perm.id;
3229 #endif
3230         rc = smk_curacc(msp, access, &ad);
3231         rc = smk_bu_current("msq", msp, access, rc);
3232         return rc;
3233 }
3234
3235 /**
3236  * smack_msg_queue_associate - Smack access check for msg_queue
3237  * @msq: the object
3238  * @msqflg: access requested
3239  *
3240  * Returns 0 if current has the requested access, error code otherwise
3241  */
3242 static int smack_msg_queue_associate(struct msg_queue *msq, int msqflg)
3243 {
3244         int may;
3245
3246         may = smack_flags_to_may(msqflg);
3247         return smk_curacc_msq(msq, may);
3248 }
3249
3250 /**
3251  * smack_msg_queue_msgctl - Smack access check for msg_queue
3252  * @msq: the object
3253  * @cmd: what it wants to do
3254  *
3255  * Returns 0 if current has the requested access, error code otherwise
3256  */
3257 static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
3258 {
3259         int may;
3260
3261         switch (cmd) {
3262         case IPC_STAT:
3263         case MSG_STAT:
3264                 may = MAY_READ;
3265                 break;
3266         case IPC_SET:
3267         case IPC_RMID:
3268                 may = MAY_READWRITE;
3269                 break;
3270         case IPC_INFO:
3271         case MSG_INFO:
3272                 /*
3273                  * System level information
3274                  */
3275                 return 0;
3276         default:
3277                 return -EINVAL;
3278         }
3279
3280         return smk_curacc_msq(msq, may);
3281 }
3282
3283 /**
3284  * smack_msg_queue_msgsnd - Smack access check for msg_queue
3285  * @msq: the object
3286  * @msg: unused
3287  * @msqflg: access requested
3288  *
3289  * Returns 0 if current has the requested access, error code otherwise
3290  */
3291 static int smack_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg,
3292                                   int msqflg)
3293 {
3294         int may;
3295
3296         may = smack_flags_to_may(msqflg);
3297         return smk_curacc_msq(msq, may);
3298 }
3299
3300 /**
3301  * smack_msg_queue_msgsnd - Smack access check for msg_queue
3302  * @msq: the object
3303  * @msg: unused
3304  * @target: unused
3305  * @type: unused
3306  * @mode: unused
3307  *
3308  * Returns 0 if current has read and write access, error code otherwise
3309  */
3310 static int smack_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
3311                         struct task_struct *target, long type, int mode)
3312 {
3313         return smk_curacc_msq(msq, MAY_READWRITE);
3314 }
3315
3316 /**
3317  * smack_ipc_permission - Smack access for ipc_permission()
3318  * @ipp: the object permissions
3319  * @flag: access requested
3320  *
3321  * Returns 0 if current has read and write access, error code otherwise
3322  */
3323 static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
3324 {
3325         struct smack_known *iskp = ipp->security;
3326         int may = smack_flags_to_may(flag);
3327         struct smk_audit_info ad;
3328         int rc;
3329
3330 #ifdef CONFIG_AUDIT
3331         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
3332         ad.a.u.ipc_id = ipp->id;
3333 #endif
3334         rc = smk_curacc(iskp, may, &ad);
3335         rc = smk_bu_current("svipc", iskp, may, rc);
3336         return rc;
3337 }
3338
3339 /**
3340  * smack_ipc_getsecid - Extract smack security id
3341  * @ipp: the object permissions
3342  * @secid: where result will be saved
3343  */
3344 static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
3345 {
3346         struct smack_known *iskp = ipp->security;
3347
3348         *secid = iskp->smk_secid;
3349 }
3350
3351 /**
3352  * smack_d_instantiate - Make sure the blob is correct on an inode
3353  * @opt_dentry: dentry where inode will be attached
3354  * @inode: the object
3355  *
3356  * Set the inode's security blob if it hasn't been done already.
3357  */
3358 static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
3359 {
3360         struct super_block *sbp;
3361         struct superblock_smack *sbsp;
3362         struct inode_smack *isp;
3363         struct smack_known *skp;
3364         struct smack_known *ckp = smk_of_current();
3365         struct smack_known *final;
3366         char trattr[TRANS_TRUE_SIZE];
3367         int transflag = 0;
3368         int rc;
3369         struct dentry *dp;
3370
3371         if (inode == NULL)
3372                 return;
3373
3374         isp = inode->i_security;
3375
3376         mutex_lock(&isp->smk_lock);
3377         /*
3378          * If the inode is already instantiated
3379          * take the quick way out
3380          */
3381         if (isp->smk_flags & SMK_INODE_INSTANT)
3382                 goto unlockandout;
3383
3384         sbp = inode->i_sb;
3385         sbsp = sbp->s_security;
3386         /*
3387          * We're going to use the superblock default label
3388          * if there's no label on the file.
3389          */
3390         final = sbsp->smk_default;
3391
3392         /*
3393          * If this is the root inode the superblock
3394          * may be in the process of initialization.
3395          * If that is the case use the root value out
3396          * of the superblock.
3397          */
3398         if (opt_dentry->d_parent == opt_dentry) {
3399                 switch (sbp->s_magic) {
3400                 case CGROUP_SUPER_MAGIC:
3401                         /*
3402                          * The cgroup filesystem is never mounted,
3403                          * so there's no opportunity to set the mount
3404                          * options.
3405                          */
3406                         sbsp->smk_root = &smack_known_star;
3407                         sbsp->smk_default = &smack_known_star;
3408                         isp->smk_inode = sbsp->smk_root;
3409                         break;
3410                 case TMPFS_MAGIC:
3411                         /*
3412                          * What about shmem/tmpfs anonymous files with dentry
3413                          * obtained from d_alloc_pseudo()?
3414                          */
3415                         isp->smk_inode = smk_of_current();
3416                         break;
3417                 case PIPEFS_MAGIC:
3418                         isp->smk_inode = smk_of_current();
3419                         break;
3420                 default:
3421                         isp->smk_inode = sbsp->smk_root;
3422                         break;
3423                 }
3424                 isp->smk_flags |= SMK_INODE_INSTANT;
3425                 goto unlockandout;
3426         }
3427
3428         /*
3429          * This is pretty hackish.
3430          * Casey says that we shouldn't have to do
3431          * file system specific code, but it does help
3432          * with keeping it simple.
3433          */
3434         switch (sbp->s_magic) {
3435         case SMACK_MAGIC:
3436         case PIPEFS_MAGIC:
3437         case SOCKFS_MAGIC:
3438         case CGROUP_SUPER_MAGIC:
3439                 /*
3440                  * Casey says that it's a little embarrassing
3441                  * that the smack file system doesn't do
3442                  * extended attributes.
3443                  *
3444                  * Casey says pipes are easy (?)
3445                  *
3446                  * Socket access is controlled by the socket
3447                  * structures associated with the task involved.
3448                  *
3449                  * Cgroupfs is special
3450                  */
3451                 final = &smack_known_star;
3452                 break;
3453         case DEVPTS_SUPER_MAGIC:
3454                 /*
3455                  * devpts seems content with the label of the task.
3456                  * Programs that change smack have to treat the
3457                  * pty with respect.
3458                  */
3459                 final = ckp;
3460                 break;
3461         case PROC_SUPER_MAGIC:
3462                 /*
3463                  * Casey says procfs appears not to care.
3464                  * The superblock default suffices.
3465                  */
3466                 break;
3467         case TMPFS_MAGIC:
3468                 /*
3469                  * Device labels should come from the filesystem,
3470                  * but watch out, because they're volitile,
3471                  * getting recreated on every reboot.
3472                  */
3473                 final = &smack_known_star;
3474                 /*
3475                  * No break.
3476                  *
3477                  * If a smack value has been set we want to use it,
3478                  * but since tmpfs isn't giving us the opportunity
3479                  * to set mount options simulate setting the
3480                  * superblock default.
3481                  */
3482         default:
3483                 /*
3484                  * This isn't an understood special case.
3485                  * Get the value from the xattr.
3486                  */
3487
3488                 /*
3489                  * UNIX domain sockets use lower level socket data.
3490                  */
3491                 if (S_ISSOCK(inode->i_mode)) {
3492                         final = &smack_known_star;
3493                         break;
3494                 }
3495                 /*
3496                  * No xattr support means, alas, no SMACK label.
3497                  * Use the aforeapplied default.
3498                  * It would be curious if the label of the task
3499                  * does not match that assigned.
3500                  */
3501                 if (!(inode->i_opflags & IOP_XATTR))
3502                         break;
3503                 /*
3504                  * Get the dentry for xattr.
3505                  */
3506                 dp = dget(opt_dentry);
3507                 skp = smk_fetch(XATTR_NAME_SMACK, inode, dp);
3508                 if (!IS_ERR_OR_NULL(skp))
3509                         final = skp;
3510
3511                 /*
3512                  * Transmuting directory
3513                  */
3514                 if (S_ISDIR(inode->i_mode)) {
3515                         /*
3516                          * If this is a new directory and the label was
3517                          * transmuted when the inode was initialized
3518                          * set the transmute attribute on the directory
3519                          * and mark the inode.
3520                          *
3521                          * If there is a transmute attribute on the
3522                          * directory mark the inode.
3523                          */
3524                         if (isp->smk_flags & SMK_INODE_CHANGED) {
3525                                 isp->smk_flags &= ~SMK_INODE_CHANGED;
3526                                 rc = __vfs_setxattr(dp, inode,
3527                                         XATTR_NAME_SMACKTRANSMUTE,
3528                                         TRANS_TRUE, TRANS_TRUE_SIZE,
3529                                         0);
3530                         } else {
3531                                 rc = __vfs_getxattr(dp, inode,
3532                                         XATTR_NAME_SMACKTRANSMUTE, trattr,
3533                                         TRANS_TRUE_SIZE);
3534                                 if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
3535                                                        TRANS_TRUE_SIZE) != 0)
3536                                         rc = -EINVAL;
3537                         }
3538                         if (rc >= 0)
3539                                 transflag = SMK_INODE_TRANSMUTE;
3540                 }
3541                 /*
3542                  * Don't let the exec or mmap label be "*" or "@".
3543                  */
3544                 skp = smk_fetch(XATTR_NAME_SMACKEXEC, inode, dp);
3545                 if (IS_ERR(skp) || skp == &smack_known_star ||
3546                     skp == &smack_known_web)
3547                         skp = NULL;
3548                 isp->smk_task = skp;
3549
3550                 skp = smk_fetch(XATTR_NAME_SMACKMMAP, inode, dp);
3551                 if (IS_ERR(skp) || skp == &smack_known_star ||
3552                     skp == &smack_known_web)
3553                         skp = NULL;
3554                 isp->smk_mmap = skp;
3555
3556                 dput(dp);
3557                 break;
3558         }
3559
3560         if (final == NULL)
3561                 isp->smk_inode = ckp;
3562         else
3563                 isp->smk_inode = final;
3564
3565         isp->smk_flags |= (SMK_INODE_INSTANT | transflag);
3566
3567 unlockandout:
3568         mutex_unlock(&isp->smk_lock);
3569         return;
3570 }
3571
3572 /**
3573  * smack_getprocattr - Smack process attribute access
3574  * @p: the object task
3575  * @name: the name of the attribute in /proc/.../attr
3576  * @value: where to put the result
3577  *
3578  * Places a copy of the task Smack into value
3579  *
3580  * Returns the length of the smack label or an error code
3581  */
3582 static int smack_getprocattr(struct task_struct *p, char *name, char **value)
3583 {
3584         struct smack_known *skp = smk_of_task_struct(p);
3585         char *cp;
3586         int slen;
3587
3588         if (strcmp(name, "current") != 0)
3589                 return -EINVAL;
3590
3591         cp = kstrdup(skp->smk_known, GFP_KERNEL);
3592         if (cp == NULL)
3593                 return -ENOMEM;
3594
3595         slen = strlen(cp);
3596         *value = cp;
3597         return slen;
3598 }
3599
3600 /**
3601  * smack_setprocattr - Smack process attribute setting
3602  * @p: the object task
3603  * @name: the name of the attribute in /proc/.../attr
3604  * @value: the value to set
3605  * @size: the size of the value
3606  *
3607  * Sets the Smack value of the task. Only setting self
3608  * is permitted and only with privilege
3609  *
3610  * Returns the length of the smack label or an error code
3611  */
3612 static int smack_setprocattr(struct task_struct *p, char *name,
3613                              void *value, size_t size)
3614 {
3615         struct task_smack *tsp = current_security();
3616         struct cred *new;
3617         struct smack_known *skp;
3618         struct smack_known_list_elem *sklep;
3619         int rc;
3620
3621         /*
3622          * Changing another process' Smack value is too dangerous
3623          * and supports no sane use case.
3624          */
3625         if (p != current)
3626                 return -EPERM;
3627
3628         if (!smack_privileged(CAP_MAC_ADMIN) && list_empty(&tsp->smk_relabel))
3629                 return -EPERM;
3630
3631         if (value == NULL || size == 0 || size >= SMK_LONGLABEL)
3632                 return -EINVAL;
3633
3634         if (strcmp(name, "current") != 0)
3635                 return -EINVAL;
3636
3637         skp = smk_import_entry(value, size);
3638         if (IS_ERR(skp))
3639                 return PTR_ERR(skp);
3640
3641         /*
3642          * No process is ever allowed the web ("@") label.
3643          */
3644         if (skp == &smack_known_web)
3645                 return -EPERM;
3646
3647         if (!smack_privileged(CAP_MAC_ADMIN)) {
3648                 rc = -EPERM;
3649                 list_for_each_entry(sklep, &tsp->smk_relabel, list)
3650                         if (sklep->smk_label == skp) {
3651                                 rc = 0;
3652                                 break;
3653                         }
3654                 if (rc)
3655                         return rc;
3656         }
3657
3658         new = prepare_creds();
3659         if (new == NULL)
3660                 return -ENOMEM;
3661
3662         tsp = new->security;
3663         tsp->smk_task = skp;
3664         /*
3665          * process can change its label only once
3666          */
3667         smk_destroy_label_list(&tsp->smk_relabel);
3668
3669         commit_creds(new);
3670         return size;
3671 }
3672
3673 /**
3674  * smack_unix_stream_connect - Smack access on UDS
3675  * @sock: one sock
3676  * @other: the other sock
3677  * @newsk: unused
3678  *
3679  * Return 0 if a subject with the smack of sock could access
3680  * an object with the smack of other, otherwise an error code
3681  */
3682 static int smack_unix_stream_connect(struct sock *sock,
3683                                      struct sock *other, struct sock *newsk)
3684 {
3685         struct smack_known *skp;
3686         struct smack_known *okp;
3687         struct socket_smack *ssp = sock->sk_security;
3688         struct socket_smack *osp = other->sk_security;
3689         struct socket_smack *nsp = newsk->sk_security;
3690         struct smk_audit_info ad;
3691         int rc = 0;
3692 #ifdef CONFIG_AUDIT
3693         struct lsm_network_audit net;
3694 #endif
3695
3696         if (!smack_privileged(CAP_MAC_OVERRIDE)) {
3697                 skp = ssp->smk_out;
3698                 okp = osp->smk_in;
3699 #ifdef CONFIG_AUDIT
3700                 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3701                 smk_ad_setfield_u_net_sk(&ad, other);
3702 #endif
3703                 rc = smk_access(skp, okp, MAY_WRITE, &ad);
3704                 rc = smk_bu_note("UDS connect", skp, okp, MAY_WRITE, rc);
3705                 if (rc == 0) {
3706                         okp = osp->smk_out;
3707                         skp = ssp->smk_in;
3708                         rc = smk_access(okp, skp, MAY_WRITE, &ad);
3709                         rc = smk_bu_note("UDS connect", okp, skp,
3710                                                 MAY_WRITE, rc);
3711                 }
3712         }
3713
3714         /*
3715          * Cross reference the peer labels for SO_PEERSEC.
3716          */
3717         if (rc == 0) {
3718                 nsp->smk_packet = ssp->smk_out;
3719                 ssp->smk_packet = osp->smk_out;
3720         }
3721
3722         return rc;
3723 }
3724
3725 /**
3726  * smack_unix_may_send - Smack access on UDS
3727  * @sock: one socket
3728  * @other: the other socket
3729  *
3730  * Return 0 if a subject with the smack of sock could access
3731  * an object with the smack of other, otherwise an error code
3732  */
3733 static int smack_unix_may_send(struct socket *sock, struct socket *other)
3734 {
3735         struct socket_smack *ssp = sock->sk->sk_security;
3736         struct socket_smack *osp = other->sk->sk_security;
3737         struct smk_audit_info ad;
3738         int rc;
3739
3740 #ifdef CONFIG_AUDIT
3741         struct lsm_network_audit net;
3742
3743         smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3744         smk_ad_setfield_u_net_sk(&ad, other->sk);
3745 #endif
3746
3747         if (smack_privileged(CAP_MAC_OVERRIDE))
3748                 return 0;
3749
3750         rc = smk_access(ssp->smk_out, osp->smk_in, MAY_WRITE, &ad);
3751         rc = smk_bu_note("UDS send", ssp->smk_out, osp->smk_in, MAY_WRITE, rc);
3752         return rc;
3753 }
3754
3755 /**
3756  * smack_socket_sendmsg - Smack check based on destination host
3757  * @sock: the socket
3758  * @msg: the message
3759  * @size: the size of the message
3760  *
3761  * Return 0 if the current subject can write to the destination host.
3762  * For IPv4 this is only a question if the destination is a single label host.
3763  * For IPv6 this is a check against the label of the port.
3764  */
3765 static int smack_socket_sendmsg(struct socket *sock, struct msghdr *msg,
3766                                 int size)
3767 {
3768         struct sockaddr_in *sip = (struct sockaddr_in *) msg->msg_name;
3769 #if IS_ENABLED(CONFIG_IPV6)
3770         struct sockaddr_in6 *sap = (struct sockaddr_in6 *) msg->msg_name;
3771 #endif
3772 #ifdef SMACK_IPV6_SECMARK_LABELING
3773         struct socket_smack *ssp = sock->sk->sk_security;
3774         struct smack_known *rsp;
3775 #endif
3776         int rc = 0;
3777
3778         /*
3779          * Perfectly reasonable for this to be NULL
3780          */
3781         if (sip == NULL)
3782                 return 0;
3783
3784         switch (sock->sk->sk_family) {
3785         case AF_INET:
3786                 rc = smack_netlabel_send(sock->sk, sip);
3787                 break;
3788         case AF_INET6:
3789 #ifdef SMACK_IPV6_SECMARK_LABELING
3790                 rsp = smack_ipv6host_label(sap);
3791                 if (rsp != NULL)
3792                         rc = smk_ipv6_check(ssp->smk_out, rsp, sap,
3793                                                 SMK_CONNECTING);
3794 #endif
3795 #ifdef SMACK_IPV6_PORT_LABELING
3796                 rc = smk_ipv6_port_check(sock->sk, sap, SMK_SENDING);
3797 #endif
3798                 break;
3799         }
3800         return rc;
3801 }
3802
3803 /**
3804  * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
3805  * @sap: netlabel secattr
3806  * @ssp: socket security information
3807  *
3808  * Returns a pointer to a Smack label entry found on the label list.
3809  */
3810 static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap,
3811                                                 struct socket_smack *ssp)
3812 {
3813         struct smack_known *skp;
3814         int found = 0;
3815         int acat;
3816         int kcat;
3817
3818         if ((sap->flags & NETLBL_SECATTR_MLS_LVL) != 0) {
3819                 /*
3820                  * Looks like a CIPSO packet.
3821                  * If there are flags but no level netlabel isn't
3822                  * behaving the way we expect it to.
3823                  *
3824                  * Look it up in the label table
3825                  * Without guidance regarding the smack value
3826                  * for the packet fall back on the network
3827                  * ambient value.
3828                  */
3829                 rcu_read_lock();
3830                 list_for_each_entry(skp, &smack_known_list, list) {
3831                         if (sap->attr.mls.lvl != skp->smk_netlabel.attr.mls.lvl)
3832                                 continue;
3833                         /*
3834                          * Compare the catsets. Use the netlbl APIs.
3835                          */
3836                         if ((sap->flags & NETLBL_SECATTR_MLS_CAT) == 0) {
3837                                 if ((skp->smk_netlabel.flags &
3838                                      NETLBL_SECATTR_MLS_CAT) == 0)
3839                                         found = 1;
3840                                 break;
3841                         }
3842                         for (acat = -1, kcat = -1; acat == kcat; ) {
3843                                 acat = netlbl_catmap_walk(sap->attr.mls.cat,
3844                                                           acat + 1);
3845                                 kcat = netlbl_catmap_walk(
3846                                         skp->smk_netlabel.attr.mls.cat,
3847                                         kcat + 1);
3848                                 if (acat < 0 || kcat < 0)
3849                                         break;
3850                         }
3851                         if (acat == kcat) {
3852                                 found = 1;
3853                                 break;
3854                         }
3855                 }
3856                 rcu_read_unlock();
3857
3858                 if (found)
3859                         return skp;
3860
3861                 if (ssp != NULL && ssp->smk_in == &smack_known_star)
3862                         return &smack_known_web;
3863                 return &smack_known_star;
3864         }
3865         if ((sap->flags & NETLBL_SECATTR_SECID) != 0) {
3866                 /*
3867                  * Looks like a fallback, which gives us a secid.
3868                  */
3869                 skp = smack_from_secid(sap->attr.secid);
3870                 /*
3871                  * This has got to be a bug because it is
3872                  * impossible to specify a fallback without
3873                  * specifying the label, which will ensure
3874                  * it has a secid, and the only way to get a
3875                  * secid is from a fallback.
3876                  */
3877                 BUG_ON(skp == NULL);
3878                 return skp;
3879         }
3880         /*
3881          * Without guidance regarding the smack value
3882          * for the packet fall back on the network
3883          * ambient value.
3884          */
3885         return smack_net_ambient;
3886 }
3887
3888 #if IS_ENABLED(CONFIG_IPV6)
3889 static int smk_skb_to_addr_ipv6(struct sk_buff *skb, struct sockaddr_in6 *sip)
3890 {
3891         u8 nexthdr;
3892         int offset;
3893         int proto = -EINVAL;
3894         struct ipv6hdr _ipv6h;
3895         struct ipv6hdr *ip6;
3896         __be16 frag_off;
3897         struct tcphdr _tcph, *th;
3898         struct udphdr _udph, *uh;
3899         struct dccp_hdr _dccph, *dh;
3900
3901         sip->sin6_port = 0;
3902
3903         offset = skb_network_offset(skb);
3904         ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3905         if (ip6 == NULL)
3906                 return -EINVAL;
3907         sip->sin6_addr = ip6->saddr;
3908
3909         nexthdr = ip6->nexthdr;
3910         offset += sizeof(_ipv6h);
3911         offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
3912         if (offset < 0)
3913                 return -EINVAL;
3914
3915         proto = nexthdr;
3916         switch (proto) {
3917         case IPPROTO_TCP:
3918                 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3919                 if (th != NULL)
3920                         sip->sin6_port = th->source;
3921                 break;
3922         case IPPROTO_UDP:
3923                 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3924                 if (uh != NULL)
3925                         sip->sin6_port = uh->source;
3926                 break;
3927         case IPPROTO_DCCP:
3928                 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3929                 if (dh != NULL)
3930                         sip->sin6_port = dh->dccph_sport;
3931                 break;
3932         }
3933         return proto;
3934 }
3935 #endif /* CONFIG_IPV6 */
3936
3937 /**
3938  * smack_socket_sock_rcv_skb - Smack packet delivery access check
3939  * @sk: socket
3940  * @skb: packet
3941  *
3942  * Returns 0 if the packet should be delivered, an error code otherwise
3943  */
3944 static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
3945 {
3946         struct netlbl_lsm_secattr secattr;
3947         struct socket_smack *ssp = sk->sk_security;
3948         struct smack_known *skp = NULL;
3949         int rc = 0;
3950         struct smk_audit_info ad;
3951         u16 family = sk->sk_family;
3952 #ifdef CONFIG_AUDIT
3953         struct lsm_network_audit net;
3954 #endif
3955 #if IS_ENABLED(CONFIG_IPV6)
3956         struct sockaddr_in6 sadd;
3957         int proto;
3958
3959         if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
3960                 family = PF_INET;
3961 #endif /* CONFIG_IPV6 */
3962
3963         switch (family) {
3964         case PF_INET:
3965 #ifdef CONFIG_SECURITY_SMACK_NETFILTER
3966                 /*
3967                  * If there is a secmark use it rather than the CIPSO label.
3968                  * If there is no secmark fall back to CIPSO.
3969                  * The secmark is assumed to reflect policy better.
3970                  */
3971                 if (skb && skb->secmark != 0) {
3972                         skp = smack_from_secid(skb->secmark);
3973                         goto access_check;
3974                 }
3975 #endif /* CONFIG_SECURITY_SMACK_NETFILTER */
3976                 /*
3977                  * Translate what netlabel gave us.
3978                  */
3979                 netlbl_secattr_init(&secattr);
3980
3981                 rc = netlbl_skbuff_getattr(skb, family, &secattr);
3982                 if (rc == 0)
3983                         skp = smack_from_secattr(&secattr, ssp);
3984                 else
3985                         skp = smack_net_ambient;
3986
3987                 netlbl_secattr_destroy(&secattr);
3988
3989 #ifdef CONFIG_SECURITY_SMACK_NETFILTER
3990 access_check:
3991 #endif
3992 #ifdef CONFIG_AUDIT
3993                 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3994                 ad.a.u.net->family = family;
3995                 ad.a.u.net->netif = skb->skb_iif;
3996                 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
3997 #endif
3998                 /*
3999                  * Receiving a packet requires that the other end
4000                  * be able to write here. Read access is not required.
4001                  * This is the simplist possible security model
4002                  * for networking.
4003                  */
4004                 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
4005                 rc = smk_bu_note("IPv4 delivery", skp, ssp->smk_in,
4006                                         MAY_WRITE, rc);
4007                 if (rc != 0)
4008                         netlbl_skbuff_err(skb, family, rc, 0);
4009                 break;
4010 #if IS_ENABLED(CONFIG_IPV6)
4011         case PF_INET6:
4012                 proto = smk_skb_to_addr_ipv6(skb, &sadd);
4013                 if (proto != IPPROTO_UDP && proto != IPPROTO_TCP)
4014                         break;
4015 #ifdef SMACK_IPV6_SECMARK_LABELING
4016                 if (skb && skb->secmark != 0)
4017                         skp = smack_from_secid(skb->secmark);
4018                 else
4019                         skp = smack_ipv6host_label(&sadd);
4020                 if (skp == NULL)
4021                         skp = smack_net_ambient;
4022                 if (skb == NULL)
4023                         break;
4024 #ifdef CONFIG_AUDIT
4025                 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
4026                 ad.a.u.net->family = family;
4027                 ad.a.u.net->netif = skb->skb_iif;
4028                 ipv6_skb_to_auditdata(skb, &ad.a, NULL);
4029 #endif /* CONFIG_AUDIT */
4030                 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
4031                 rc = smk_bu_note("IPv6 delivery", skp, ssp->smk_in,
4032                                         MAY_WRITE, rc);
4033 #endif /* SMACK_IPV6_SECMARK_LABELING */
4034 #ifdef SMACK_IPV6_PORT_LABELING
4035                 rc = smk_ipv6_port_check(sk, &sadd, SMK_RECEIVING);
4036 #endif /* SMACK_IPV6_PORT_LABELING */
4037                 break;
4038 #endif /* CONFIG_IPV6 */
4039         }
4040
4041         return rc;
4042 }
4043
4044 /**
4045  * smack_socket_getpeersec_stream - pull in packet label
4046  * @sock: the socket
4047  * @optval: user's destination
4048  * @optlen: size thereof
4049  * @len: max thereof
4050  *
4051  * returns zero on success, an error code otherwise
4052  */
4053 static int smack_socket_getpeersec_stream(struct socket *sock,
4054                                           char __user *optval,
4055                                           int __user *optlen, unsigned len)
4056 {
4057         struct socket_smack *ssp;
4058         char *rcp = "";
4059         int slen = 1;
4060         int rc = 0;
4061
4062         ssp = sock->sk->sk_security;
4063         if (ssp->smk_packet != NULL) {
4064                 rcp = ssp->smk_packet->smk_known;
4065                 slen = strlen(rcp) + 1;
4066         }
4067
4068         if (slen > len)
4069                 rc = -ERANGE;
4070         else if (copy_to_user(optval, rcp, slen) != 0)
4071                 rc = -EFAULT;
4072
4073         if (put_user(slen, optlen) != 0)
4074                 rc = -EFAULT;
4075
4076         return rc;
4077 }
4078
4079
4080 /**
4081  * smack_socket_getpeersec_dgram - pull in packet label
4082  * @sock: the peer socket
4083  * @skb: packet data
4084  * @secid: pointer to where to put the secid of the packet
4085  *
4086  * Sets the netlabel socket state on sk from parent
4087  */
4088 static int smack_socket_getpeersec_dgram(struct socket *sock,
4089                                          struct sk_buff *skb, u32 *secid)
4090
4091 {
4092         struct netlbl_lsm_secattr secattr;
4093         struct socket_smack *ssp = NULL;
4094         struct smack_known *skp;
4095         int family = PF_UNSPEC;
4096         u32 s = 0;      /* 0 is the invalid secid */
4097         int rc;
4098
4099         if (skb != NULL) {
4100                 if (skb->protocol == htons(ETH_P_IP))
4101                         family = PF_INET;
4102 #if IS_ENABLED(CONFIG_IPV6)
4103                 else if (skb->protocol == htons(ETH_P_IPV6))
4104                         family = PF_INET6;
4105 #endif /* CONFIG_IPV6 */
4106         }
4107         if (family == PF_UNSPEC && sock != NULL)
4108                 family = sock->sk->sk_family;
4109
4110         switch (family) {
4111         case PF_UNIX:
4112                 ssp = sock->sk->sk_security;
4113                 s = ssp->smk_out->smk_secid;
4114                 break;
4115         case PF_INET:
4116 #ifdef CONFIG_SECURITY_SMACK_NETFILTER
4117                 s = skb->secmark;
4118                 if (s != 0)
4119                         break;
4120 #endif
4121                 /*
4122                  * Translate what netlabel gave us.
4123                  */
4124                 if (sock != NULL && sock->sk != NULL)
4125                         ssp = sock->sk->sk_security;
4126                 netlbl_secattr_init(&secattr);
4127                 rc = netlbl_skbuff_getattr(skb, family, &secattr);
4128                 if (rc == 0) {
4129                         skp = smack_from_secattr(&secattr, ssp);
4130                         s = skp->smk_secid;
4131                 }
4132                 netlbl_secattr_destroy(&secattr);
4133                 break;
4134         case PF_INET6:
4135 #ifdef SMACK_IPV6_SECMARK_LABELING
4136                 s = skb->secmark;
4137 #endif
4138                 break;
4139         }
4140         *secid = s;
4141         if (s == 0)
4142                 return -EINVAL;
4143         return 0;
4144 }
4145
4146 /**
4147  * smack_sock_graft - Initialize a newly created socket with an existing sock
4148  * @sk: child sock
4149  * @parent: parent socket
4150  *
4151  * Set the smk_{in,out} state of an existing sock based on the process that
4152  * is creating the new socket.
4153  */
4154 static void smack_sock_graft(struct sock *sk, struct socket *parent)
4155 {
4156         struct socket_smack *ssp;
4157         struct smack_known *skp = smk_of_current();
4158
4159         if (sk == NULL ||
4160             (sk->sk_family != PF_INET && sk->sk_family != PF_INET6))
4161                 return;
4162
4163         ssp = sk->sk_security;
4164         ssp->smk_in = skp;
4165         ssp->smk_out = skp;
4166         /* cssp->smk_packet is already set in smack_inet_csk_clone() */
4167 }
4168
4169 /**
4170  * smack_inet_conn_request - Smack access check on connect
4171  * @sk: socket involved
4172  * @skb: packet
4173  * @req: unused
4174  *
4175  * Returns 0 if a task with the packet label could write to
4176  * the socket, otherwise an error code
4177  */
4178 static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
4179                                    struct request_sock *req)
4180 {
4181         u16 family = sk->sk_family;
4182         struct smack_known *skp;
4183         struct socket_smack *ssp = sk->sk_security;
4184         struct netlbl_lsm_secattr secattr;
4185         struct sockaddr_in addr;
4186         struct iphdr *hdr;
4187         struct smack_known *hskp;
4188         int rc;
4189         struct smk_audit_info ad;
4190 #ifdef CONFIG_AUDIT
4191         struct lsm_network_audit net;
4192 #endif
4193
4194 #if IS_ENABLED(CONFIG_IPV6)
4195         if (family == PF_INET6) {
4196                 /*
4197                  * Handle mapped IPv4 packets arriving
4198                  * via IPv6 sockets. Don't set up netlabel
4199                  * processing on IPv6.
4200                  */
4201                 if (skb->protocol == htons(ETH_P_IP))
4202                         family = PF_INET;
4203                 else
4204                         return 0;
4205         }
4206 #endif /* CONFIG_IPV6 */
4207
4208 #ifdef CONFIG_SECURITY_SMACK_NETFILTER
4209         /*
4210          * If there is a secmark use it rather than the CIPSO label.
4211          * If there is no secmark fall back to CIPSO.
4212          * The secmark is assumed to reflect policy better.
4213          */
4214         if (skb && skb->secmark != 0) {
4215                 skp = smack_from_secid(skb->secmark);
4216                 goto access_check;
4217         }
4218 #endif /* CONFIG_SECURITY_SMACK_NETFILTER */
4219
4220         netlbl_secattr_init(&secattr);
4221         rc = netlbl_skbuff_getattr(skb, family, &secattr);
4222         if (rc == 0)
4223                 skp = smack_from_secattr(&secattr, ssp);
4224         else
4225                 skp = &smack_known_huh;
4226         netlbl_secattr_destroy(&secattr);
4227
4228 #ifdef CONFIG_SECURITY_SMACK_NETFILTER
4229 access_check:
4230 #endif
4231
4232 #ifdef CONFIG_AUDIT
4233         smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
4234         ad.a.u.net->family = family;
4235         ad.a.u.net->netif = skb->skb_iif;
4236         ipv4_skb_to_auditdata(skb, &ad.a, NULL);
4237 #endif
4238         /*
4239          * Receiving a packet requires that the other end be able to write
4240          * here. Read access is not required.
4241          */
4242         rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
4243         rc = smk_bu_note("IPv4 connect", skp, ssp->smk_in, MAY_WRITE, rc);
4244         if (rc != 0)
4245                 return rc;
4246
4247         /*
4248          * Save the peer's label in the request_sock so we can later setup
4249          * smk_packet in the child socket so that SO_PEERCRED can report it.
4250          */
4251         req->peer_secid = skp->smk_secid;
4252
4253         /*
4254          * We need to decide if we want to label the incoming connection here
4255          * if we do we only need to label the request_sock and the stack will
4256          * propagate the wire-label to the sock when it is created.
4257          */
4258         hdr = ip_hdr(skb);
4259         addr.sin_addr.s_addr = hdr->saddr;
4260         rcu_read_lock();
4261         hskp = smack_ipv4host_label(&addr);
4262         rcu_read_unlock();
4263
4264         if (hskp == NULL)
4265                 rc = netlbl_req_setattr(req, &skp->smk_netlabel);
4266         else
4267                 netlbl_req_delattr(req);
4268
4269         return rc;
4270 }
4271
4272 /**
4273  * smack_inet_csk_clone - Copy the connection information to the new socket
4274  * @sk: the new socket
4275  * @req: the connection's request_sock
4276  *
4277  * Transfer the connection's peer label to the newly created socket.
4278  */
4279 static void smack_inet_csk_clone(struct sock *sk,
4280                                  const struct request_sock *req)
4281 {
4282         struct socket_smack *ssp = sk->sk_security;
4283         struct smack_known *skp;
4284
4285         if (req->peer_secid != 0) {
4286                 skp = smack_from_secid(req->peer_secid);
4287                 ssp->smk_packet = skp;
4288         } else
4289                 ssp->smk_packet = NULL;
4290 }
4291
4292 /*
4293  * Key management security hooks
4294  *
4295  * Casey has not tested key support very heavily.
4296  * The permission check is most likely too restrictive.
4297  * If you care about keys please have a look.
4298  */
4299 #ifdef CONFIG_KEYS
4300
4301 /**
4302  * smack_key_alloc - Set the key security blob
4303  * @key: object
4304  * @cred: the credentials to use
4305  * @flags: unused
4306  *
4307  * No allocation required
4308  *
4309  * Returns 0
4310  */
4311 static int smack_key_alloc(struct key *key, const struct cred *cred,
4312                            unsigned long flags)
4313 {
4314         struct smack_known *skp = smk_of_task(cred->security);
4315
4316         key->security = skp;
4317         return 0;
4318 }
4319
4320 /**
4321  * smack_key_free - Clear the key security blob
4322  * @key: the object
4323  *
4324  * Clear the blob pointer
4325  */
4326 static void smack_key_free(struct key *key)
4327 {
4328         key->security = NULL;
4329 }
4330
4331 /**
4332  * smack_key_permission - Smack access on a key
4333  * @key_ref: gets to the object
4334  * @cred: the credentials to use
4335  * @perm: requested key permissions
4336  *
4337  * Return 0 if the task has read and write to the object,
4338  * an error code otherwise
4339  */
4340 static int smack_key_permission(key_ref_t key_ref,
4341                                 const struct cred *cred, unsigned perm)
4342 {
4343         struct key *keyp;
4344         struct smk_audit_info ad;
4345         struct smack_known *tkp = smk_of_task(cred->security);
4346         int request = 0;
4347         int rc;
4348
4349         /*
4350          * Validate requested permissions
4351          */
4352         if (perm & ~KEY_NEED_ALL)
4353                 return -EINVAL;
4354
4355         keyp = key_ref_to_ptr(key_ref);
4356         if (keyp == NULL)
4357                 return -EINVAL;
4358         /*
4359          * If the key hasn't been initialized give it access so that
4360          * it may do so.
4361          */
4362         if (keyp->security == NULL)
4363                 return 0;
4364         /*
4365          * This should not occur
4366          */
4367         if (tkp == NULL)
4368                 return -EACCES;
4369 #ifdef CONFIG_AUDIT
4370         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
4371         ad.a.u.key_struct.key = keyp->serial;
4372         ad.a.u.key_struct.key_desc = keyp->description;
4373 #endif
4374         if (perm & (KEY_NEED_READ | KEY_NEED_SEARCH | KEY_NEED_VIEW))
4375                 request |= MAY_READ;
4376         if (perm & (KEY_NEED_WRITE | KEY_NEED_LINK | KEY_NEED_SETATTR))
4377                 request |= MAY_WRITE;
4378         rc = smk_access(tkp, keyp->security, request, &ad);
4379         rc = smk_bu_note("key access", tkp, keyp->security, request, rc);
4380         return rc;
4381 }
4382
4383 /*
4384  * smack_key_getsecurity - Smack label tagging the key
4385  * @key points to the key to be queried
4386  * @_buffer points to a pointer that should be set to point to the
4387  * resulting string (if no label or an error occurs).
4388  * Return the length of the string (including terminating NUL) or -ve if
4389  * an error.
4390  * May also return 0 (and a NULL buffer pointer) if there is no label.
4391  */
4392 static int smack_key_getsecurity(struct key *key, char **_buffer)
4393 {
4394         struct smack_known *skp = key->security;
4395         size_t length;
4396         char *copy;
4397
4398         if (key->security == NULL) {
4399                 *_buffer = NULL;
4400                 return 0;
4401         }
4402
4403         copy = kstrdup(skp->smk_known, GFP_KERNEL);
4404         if (copy == NULL)
4405                 return -ENOMEM;
4406         length = strlen(copy) + 1;
4407
4408         *_buffer = copy;
4409         return length;
4410 }
4411
4412 #endif /* CONFIG_KEYS */
4413
4414 /*
4415  * Smack Audit hooks
4416  *
4417  * Audit requires a unique representation of each Smack specific
4418  * rule. This unique representation is used to distinguish the
4419  * object to be audited from remaining kernel objects and also
4420  * works as a glue between the audit hooks.
4421  *
4422  * Since repository entries are added but never deleted, we'll use
4423  * the smack_known label address related to the given audit rule as
4424  * the needed unique representation. This also better fits the smack
4425  * model where nearly everything is a label.
4426  */
4427 #ifdef CONFIG_AUDIT
4428
4429 /**
4430  * smack_audit_rule_init - Initialize a smack audit rule
4431  * @field: audit rule fields given from user-space (audit.h)
4432  * @op: required testing operator (=, !=, >, <, ...)
4433  * @rulestr: smack label to be audited
4434  * @vrule: pointer to save our own audit rule representation
4435  *
4436  * Prepare to audit cases where (@field @op @rulestr) is true.
4437  * The label to be audited is created if necessay.
4438  */
4439 static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
4440 {
4441         struct smack_known *skp;
4442         char **rule = (char **)vrule;
4443         *rule = NULL;
4444
4445         if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
4446                 return -EINVAL;
4447
4448         if (op != Audit_equal && op != Audit_not_equal)
4449                 return -EINVAL;
4450
4451         skp = smk_import_entry(rulestr, 0);
4452         if (IS_ERR(skp))
4453                 return PTR_ERR(skp);
4454
4455         *rule = skp->smk_known;
4456
4457         return 0;
4458 }
4459
4460 /**
4461  * smack_audit_rule_known - Distinguish Smack audit rules
4462  * @krule: rule of interest, in Audit kernel representation format
4463  *
4464  * This is used to filter Smack rules from remaining Audit ones.
4465  * If it's proved that this rule belongs to us, the
4466  * audit_rule_match hook will be called to do the final judgement.
4467  */
4468 static int smack_audit_rule_known(struct audit_krule *krule)
4469 {
4470         struct audit_field *f;
4471         int i;
4472
4473         for (i = 0; i < krule->field_count; i++) {
4474                 f = &krule->fields[i];
4475
4476                 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
4477                         return 1;
4478         }
4479
4480         return 0;
4481 }
4482
4483 /**
4484  * smack_audit_rule_match - Audit given object ?
4485  * @secid: security id for identifying the object to test
4486  * @field: audit rule flags given from user-space
4487  * @op: required testing operator
4488  * @vrule: smack internal rule presentation
4489  * @actx: audit context associated with the check
4490  *
4491  * The core Audit hook. It's used to take the decision of
4492  * whether to audit or not to audit a given object.
4493  */
4494 static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule,
4495                                   struct audit_context *actx)
4496 {
4497         struct smack_known *skp;
4498         char *rule = vrule;
4499
4500         if (unlikely(!rule)) {
4501                 WARN_ONCE(1, "Smack: missing rule\n");
4502                 return -ENOENT;
4503         }
4504
4505         if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
4506                 return 0;
4507
4508         skp = smack_from_secid(secid);
4509
4510         /*
4511          * No need to do string comparisons. If a match occurs,
4512          * both pointers will point to the same smack_known
4513          * label.
4514          */
4515         if (op == Audit_equal)
4516                 return (rule == skp->smk_known);
4517         if (op == Audit_not_equal)
4518                 return (rule != skp->smk_known);
4519
4520         return 0;
4521 }
4522
4523 /*
4524  * There is no need for a smack_audit_rule_free hook.
4525  * No memory was allocated.
4526  */
4527
4528 #endif /* CONFIG_AUDIT */
4529
4530 /**
4531  * smack_ismaclabel - check if xattr @name references a smack MAC label
4532  * @name: Full xattr name to check.
4533  */
4534 static int smack_ismaclabel(const char *name)
4535 {
4536         return (strcmp(name, XATTR_SMACK_SUFFIX) == 0);
4537 }
4538
4539
4540 /**
4541  * smack_secid_to_secctx - return the smack label for a secid
4542  * @secid: incoming integer
4543  * @secdata: destination
4544  * @seclen: how long it is
4545  *
4546  * Exists for networking code.
4547  */
4548 static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
4549 {
4550         struct smack_known *skp = smack_from_secid(secid);
4551
4552         if (secdata)
4553                 *secdata = skp->smk_known;
4554         *seclen = strlen(skp->smk_known);
4555         return 0;
4556 }
4557
4558 /**
4559  * smack_secctx_to_secid - return the secid for a smack label
4560  * @secdata: smack label
4561  * @seclen: how long result is
4562  * @secid: outgoing integer
4563  *
4564  * Exists for audit and networking code.
4565  */
4566 static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
4567 {
4568         struct smack_known *skp = smk_find_entry(secdata);
4569
4570         if (skp)
4571                 *secid = skp->smk_secid;
4572         else
4573                 *secid = 0;
4574         return 0;
4575 }
4576
4577 /*
4578  * There used to be a smack_release_secctx hook
4579  * that did nothing back when hooks were in a vector.
4580  * Now that there's a list such a hook adds cost.
4581  */
4582
4583 static int smack_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
4584 {
4585         return smack_inode_setsecurity(inode, XATTR_SMACK_SUFFIX, ctx, ctxlen, 0);
4586 }
4587
4588 static int smack_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
4589 {
4590         return __vfs_setxattr_noperm(dentry, XATTR_NAME_SMACK, ctx, ctxlen, 0);
4591 }
4592
4593 static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
4594 {
4595         int len = 0;
4596         len = smack_inode_getsecurity(inode, XATTR_SMACK_SUFFIX, ctx, true);
4597
4598         if (len < 0)
4599                 return len;
4600         *ctxlen = len;
4601         return 0;
4602 }
4603
4604 static struct security_hook_list smack_hooks[] = {
4605         LSM_HOOK_INIT(ptrace_access_check, smack_ptrace_access_check),
4606         LSM_HOOK_INIT(ptrace_traceme, smack_ptrace_traceme),
4607         LSM_HOOK_INIT(syslog, smack_syslog),
4608
4609         LSM_HOOK_INIT(sb_alloc_security, smack_sb_alloc_security),
4610         LSM_HOOK_INIT(sb_free_security, smack_sb_free_security),
4611         LSM_HOOK_INIT(sb_copy_data, smack_sb_copy_data),
4612         LSM_HOOK_INIT(sb_kern_mount, smack_sb_kern_mount),
4613         LSM_HOOK_INIT(sb_statfs, smack_sb_statfs),
4614         LSM_HOOK_INIT(sb_set_mnt_opts, smack_set_mnt_opts),
4615         LSM_HOOK_INIT(sb_parse_opts_str, smack_parse_opts_str),
4616
4617         LSM_HOOK_INIT(bprm_set_creds, smack_bprm_set_creds),
4618         LSM_HOOK_INIT(bprm_committing_creds, smack_bprm_committing_creds),
4619         LSM_HOOK_INIT(bprm_secureexec, smack_bprm_secureexec),
4620
4621         LSM_HOOK_INIT(inode_alloc_security, smack_inode_alloc_security),
4622         LSM_HOOK_INIT(inode_free_security, smack_inode_free_security),
4623         LSM_HOOK_INIT(inode_init_security, smack_inode_init_security),
4624         LSM_HOOK_INIT(inode_link, smack_inode_link),
4625         LSM_HOOK_INIT(inode_unlink, smack_inode_unlink),
4626         LSM_HOOK_INIT(inode_rmdir, smack_inode_rmdir),
4627         LSM_HOOK_INIT(inode_rename, smack_inode_rename),
4628         LSM_HOOK_INIT(inode_permission, smack_inode_permission),
4629         LSM_HOOK_INIT(inode_setattr, smack_inode_setattr),
4630         LSM_HOOK_INIT(inode_getattr, smack_inode_getattr),
4631         LSM_HOOK_INIT(inode_setxattr, smack_inode_setxattr),
4632         LSM_HOOK_INIT(inode_post_setxattr, smack_inode_post_setxattr),
4633         LSM_HOOK_INIT(inode_getxattr, smack_inode_getxattr),
4634         LSM_HOOK_INIT(inode_removexattr, smack_inode_removexattr),
4635         LSM_HOOK_INIT(inode_getsecurity, smack_inode_getsecurity),
4636         LSM_HOOK_INIT(inode_setsecurity, smack_inode_setsecurity),
4637         LSM_HOOK_INIT(inode_listsecurity, smack_inode_listsecurity),
4638         LSM_HOOK_INIT(inode_getsecid, smack_inode_getsecid),
4639
4640         LSM_HOOK_INIT(file_alloc_security, smack_file_alloc_security),
4641         LSM_HOOK_INIT(file_free_security, smack_file_free_security),
4642         LSM_HOOK_INIT(file_ioctl, smack_file_ioctl),
4643         LSM_HOOK_INIT(file_lock, smack_file_lock),
4644         LSM_HOOK_INIT(file_fcntl, smack_file_fcntl),
4645         LSM_HOOK_INIT(mmap_file, smack_mmap_file),
4646         LSM_HOOK_INIT(mmap_addr, cap_mmap_addr),
4647         LSM_HOOK_INIT(file_set_fowner, smack_file_set_fowner),
4648         LSM_HOOK_INIT(file_send_sigiotask, smack_file_send_sigiotask),
4649         LSM_HOOK_INIT(file_receive, smack_file_receive),
4650
4651         LSM_HOOK_INIT(file_open, smack_file_open),
4652
4653         LSM_HOOK_INIT(cred_alloc_blank, smack_cred_alloc_blank),
4654         LSM_HOOK_INIT(cred_free, smack_cred_free),
4655         LSM_HOOK_INIT(cred_prepare, smack_cred_prepare),
4656         LSM_HOOK_INIT(cred_transfer, smack_cred_transfer),
4657         LSM_HOOK_INIT(kernel_act_as, smack_kernel_act_as),
4658         LSM_HOOK_INIT(kernel_create_files_as, smack_kernel_create_files_as),
4659         LSM_HOOK_INIT(task_setpgid, smack_task_setpgid),
4660         LSM_HOOK_INIT(task_getpgid, smack_task_getpgid),
4661         LSM_HOOK_INIT(task_getsid, smack_task_getsid),
4662         LSM_HOOK_INIT(task_getsecid, smack_task_getsecid),
4663         LSM_HOOK_INIT(task_setnice, smack_task_setnice),
4664         LSM_HOOK_INIT(task_setioprio, smack_task_setioprio),
4665         LSM_HOOK_INIT(task_getioprio, smack_task_getioprio),
4666         LSM_HOOK_INIT(task_setscheduler, smack_task_setscheduler),
4667         LSM_HOOK_INIT(task_getscheduler, smack_task_getscheduler),
4668         LSM_HOOK_INIT(task_movememory, smack_task_movememory),
4669         LSM_HOOK_INIT(task_kill, smack_task_kill),
4670         LSM_HOOK_INIT(task_to_inode, smack_task_to_inode),
4671
4672         LSM_HOOK_INIT(ipc_permission, smack_ipc_permission),
4673         LSM_HOOK_INIT(ipc_getsecid, smack_ipc_getsecid),
4674
4675         LSM_HOOK_INIT(msg_msg_alloc_security, smack_msg_msg_alloc_security),
4676         LSM_HOOK_INIT(msg_msg_free_security, smack_msg_msg_free_security),
4677
4678         LSM_HOOK_INIT(msg_queue_alloc_security, smack_msg_queue_alloc_security),
4679         LSM_HOOK_INIT(msg_queue_free_security, smack_msg_queue_free_security),
4680         LSM_HOOK_INIT(msg_queue_associate, smack_msg_queue_associate),
4681         LSM_HOOK_INIT(msg_queue_msgctl, smack_msg_queue_msgctl),
4682         LSM_HOOK_INIT(msg_queue_msgsnd, smack_msg_queue_msgsnd),
4683         LSM_HOOK_INIT(msg_queue_msgrcv, smack_msg_queue_msgrcv),
4684
4685         LSM_HOOK_INIT(shm_alloc_security, smack_shm_alloc_security),
4686         LSM_HOOK_INIT(shm_free_security, smack_shm_free_security),
4687         LSM_HOOK_INIT(shm_associate, smack_shm_associate),
4688         LSM_HOOK_INIT(shm_shmctl, smack_shm_shmctl),
4689         LSM_HOOK_INIT(shm_shmat, smack_shm_shmat),
4690
4691         LSM_HOOK_INIT(sem_alloc_security, smack_sem_alloc_security),
4692         LSM_HOOK_INIT(sem_free_security, smack_sem_free_security),
4693         LSM_HOOK_INIT(sem_associate, smack_sem_associate),
4694         LSM_HOOK_INIT(sem_semctl, smack_sem_semctl),
4695         LSM_HOOK_INIT(sem_semop, smack_sem_semop),
4696
4697         LSM_HOOK_INIT(d_instantiate, smack_d_instantiate),
4698
4699         LSM_HOOK_INIT(getprocattr, smack_getprocattr),
4700         LSM_HOOK_INIT(setprocattr, smack_setprocattr),
4701
4702         LSM_HOOK_INIT(unix_stream_connect, smack_unix_stream_connect),
4703         LSM_HOOK_INIT(unix_may_send, smack_unix_may_send),
4704
4705         LSM_HOOK_INIT(socket_post_create, smack_socket_post_create),
4706 #ifdef SMACK_IPV6_PORT_LABELING
4707         LSM_HOOK_INIT(socket_bind, smack_socket_bind),
4708 #endif
4709         LSM_HOOK_INIT(socket_connect, smack_socket_connect),
4710         LSM_HOOK_INIT(socket_sendmsg, smack_socket_sendmsg),
4711         LSM_HOOK_INIT(socket_sock_rcv_skb, smack_socket_sock_rcv_skb),
4712         LSM_HOOK_INIT(socket_getpeersec_stream, smack_socket_getpeersec_stream),
4713         LSM_HOOK_INIT(socket_getpeersec_dgram, smack_socket_getpeersec_dgram),
4714         LSM_HOOK_INIT(sk_alloc_security, smack_sk_alloc_security),
4715         LSM_HOOK_INIT(sk_free_security, smack_sk_free_security),
4716         LSM_HOOK_INIT(sock_graft, smack_sock_graft),
4717         LSM_HOOK_INIT(inet_conn_request, smack_inet_conn_request),
4718         LSM_HOOK_INIT(inet_csk_clone, smack_inet_csk_clone),
4719
4720  /* key management security hooks */
4721 #ifdef CONFIG_KEYS
4722         LSM_HOOK_INIT(key_alloc, smack_key_alloc),
4723         LSM_HOOK_INIT(key_free, smack_key_free),
4724         LSM_HOOK_INIT(key_permission, smack_key_permission),
4725         LSM_HOOK_INIT(key_getsecurity, smack_key_getsecurity),
4726 #endif /* CONFIG_KEYS */
4727
4728  /* Audit hooks */
4729 #ifdef CONFIG_AUDIT
4730         LSM_HOOK_INIT(audit_rule_init, smack_audit_rule_init),
4731         LSM_HOOK_INIT(audit_rule_known, smack_audit_rule_known),
4732         LSM_HOOK_INIT(audit_rule_match, smack_audit_rule_match),
4733 #endif /* CONFIG_AUDIT */
4734
4735         LSM_HOOK_INIT(ismaclabel, smack_ismaclabel),
4736         LSM_HOOK_INIT(secid_to_secctx, smack_secid_to_secctx),
4737         LSM_HOOK_INIT(secctx_to_secid, smack_secctx_to_secid),
4738         LSM_HOOK_INIT(inode_notifysecctx, smack_inode_notifysecctx),
4739         LSM_HOOK_INIT(inode_setsecctx, smack_inode_setsecctx),
4740         LSM_HOOK_INIT(inode_getsecctx, smack_inode_getsecctx),
4741 };
4742
4743
4744 static __init void init_smack_known_list(void)
4745 {
4746         /*
4747          * Initialize rule list locks
4748          */
4749         mutex_init(&smack_known_huh.smk_rules_lock);
4750         mutex_init(&smack_known_hat.smk_rules_lock);
4751         mutex_init(&smack_known_floor.smk_rules_lock);
4752         mutex_init(&smack_known_star.smk_rules_lock);
4753         mutex_init(&smack_known_invalid.smk_rules_lock);
4754         mutex_init(&smack_known_web.smk_rules_lock);
4755         /*
4756          * Initialize rule lists
4757          */
4758         INIT_LIST_HEAD(&smack_known_huh.smk_rules);
4759         INIT_LIST_HEAD(&smack_known_hat.smk_rules);
4760         INIT_LIST_HEAD(&smack_known_star.smk_rules);
4761         INIT_LIST_HEAD(&smack_known_floor.smk_rules);
4762         INIT_LIST_HEAD(&smack_known_invalid.smk_rules);
4763         INIT_LIST_HEAD(&smack_known_web.smk_rules);
4764         /*
4765          * Create the known labels list
4766          */
4767         smk_insert_entry(&smack_known_huh);
4768         smk_insert_entry(&smack_known_hat);
4769         smk_insert_entry(&smack_known_star);
4770         smk_insert_entry(&smack_known_floor);
4771         smk_insert_entry(&smack_known_invalid);
4772         smk_insert_entry(&smack_known_web);
4773 }
4774
4775 /**
4776  * smack_init - initialize the smack system
4777  *
4778  * Returns 0
4779  */
4780 static __init int smack_init(void)
4781 {
4782         struct cred *cred;
4783         struct task_smack *tsp;
4784
4785         if (!security_module_enable("smack"))
4786                 return 0;
4787
4788         smack_inode_cache = KMEM_CACHE(inode_smack, 0);
4789         if (!smack_inode_cache)
4790                 return -ENOMEM;
4791
4792         tsp = new_task_smack(&smack_known_floor, &smack_known_floor,
4793                                 GFP_KERNEL);
4794         if (tsp == NULL) {
4795                 kmem_cache_destroy(smack_inode_cache);
4796                 return -ENOMEM;
4797         }
4798
4799         smack_enabled = 1;
4800
4801         pr_info("Smack:  Initializing.\n");
4802 #ifdef CONFIG_SECURITY_SMACK_NETFILTER
4803         pr_info("Smack:  Netfilter enabled.\n");
4804 #endif
4805 #ifdef SMACK_IPV6_PORT_LABELING
4806         pr_info("Smack:  IPv6 port labeling enabled.\n");
4807 #endif
4808 #ifdef SMACK_IPV6_SECMARK_LABELING
4809         pr_info("Smack:  IPv6 Netfilter enabled.\n");
4810 #endif
4811
4812         /*
4813          * Set the security state for the initial task.
4814          */
4815         cred = (struct cred *) current->cred;
4816         cred->security = tsp;
4817
4818         /* initialize the smack_known_list */
4819         init_smack_known_list();
4820
4821         /*
4822          * Register with LSM
4823          */
4824         security_add_hooks(smack_hooks, ARRAY_SIZE(smack_hooks));
4825
4826         return 0;
4827 }
4828
4829 /*
4830  * Smack requires early initialization in order to label
4831  * all processes and objects when they are created.
4832  */
4833 security_initcall(smack_init);