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