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