tizen 2.4 release
[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         if (unlikely(IS_PRIVATE(file->f_path.dentry->d_inode)))
1382                 return 0;
1383
1384         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1385         smk_ad_setfield_u_fs_path(&ad, file->f_path);
1386         /*
1387          * This code relies on bitmasks.
1388          */
1389         if (file->f_mode & FMODE_READ)
1390                 may = MAY_READ;
1391         if (file->f_mode & FMODE_WRITE)
1392                 may |= MAY_WRITE;
1393
1394         return smk_curacc(file->f_security, may, &ad);
1395 }
1396
1397 /**
1398  * smack_dentry_open - Smack dentry open processing
1399  * @file: the object
1400  * @cred: unused
1401  *
1402  * Set the security blob in the file structure.
1403  *
1404  * Returns 0
1405  */
1406 static int smack_dentry_open(struct file *file, const struct cred *cred)
1407 {
1408         struct inode_smack *isp = file->f_path.dentry->d_inode->i_security;
1409
1410         file->f_security = isp->smk_inode;
1411
1412         return 0;
1413 }
1414
1415 /*
1416  * Task hooks
1417  */
1418
1419 /**
1420  * smack_cred_alloc_blank - "allocate" blank task-level security credentials
1421  * @new: the new credentials
1422  * @gfp: the atomicity of any memory allocations
1423  *
1424  * Prepare a blank set of credentials for modification.  This must allocate all
1425  * the memory the LSM module might require such that cred_transfer() can
1426  * complete without error.
1427  */
1428 static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp)
1429 {
1430         struct task_smack *tsp;
1431
1432         tsp = new_task_smack(NULL, NULL, gfp);
1433         if (tsp == NULL)
1434                 return -ENOMEM;
1435
1436         cred->security = tsp;
1437
1438         return 0;
1439 }
1440
1441
1442 /**
1443  * smack_cred_free - "free" task-level security credentials
1444  * @cred: the credentials in question
1445  *
1446  */
1447 static void smack_cred_free(struct cred *cred)
1448 {
1449         struct task_smack *tsp = cred->security;
1450         struct smack_rule *rp;
1451         struct list_head *l;
1452         struct list_head *n;
1453
1454         if (tsp == NULL)
1455                 return;
1456         cred->security = NULL;
1457
1458         list_for_each_safe(l, n, &tsp->smk_rules) {
1459                 rp = list_entry(l, struct smack_rule, list);
1460                 list_del(&rp->list);
1461                 kfree(rp);
1462         }
1463         kfree(tsp);
1464 }
1465
1466 /**
1467  * smack_cred_prepare - prepare new set of credentials for modification
1468  * @new: the new credentials
1469  * @old: the original credentials
1470  * @gfp: the atomicity of any memory allocations
1471  *
1472  * Prepare a new set of credentials for modification.
1473  */
1474 static int smack_cred_prepare(struct cred *new, const struct cred *old,
1475                               gfp_t gfp)
1476 {
1477         struct task_smack *old_tsp = old->security;
1478         struct task_smack *new_tsp;
1479         int rc;
1480
1481         new_tsp = new_task_smack(old_tsp->smk_task, old_tsp->smk_task, gfp);
1482         if (new_tsp == NULL)
1483                 return -ENOMEM;
1484
1485         rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp);
1486         if (rc != 0)
1487                 return rc;
1488
1489         new->security = new_tsp;
1490         return 0;
1491 }
1492
1493 /**
1494  * smack_cred_transfer - Transfer the old credentials to the new credentials
1495  * @new: the new credentials
1496  * @old: the original credentials
1497  *
1498  * Fill in a set of blank credentials from another set of credentials.
1499  */
1500 static void smack_cred_transfer(struct cred *new, const struct cred *old)
1501 {
1502         struct task_smack *old_tsp = old->security;
1503         struct task_smack *new_tsp = new->security;
1504
1505         new_tsp->smk_task = old_tsp->smk_task;
1506         new_tsp->smk_forked = old_tsp->smk_task;
1507         mutex_init(&new_tsp->smk_rules_lock);
1508         INIT_LIST_HEAD(&new_tsp->smk_rules);
1509
1510
1511         /* cbs copy rule list */
1512 }
1513
1514 /**
1515  * smack_kernel_act_as - Set the subjective context in a set of credentials
1516  * @new: points to the set of credentials to be modified.
1517  * @secid: specifies the security ID to be set
1518  *
1519  * Set the security data for a kernel service.
1520  */
1521 static int smack_kernel_act_as(struct cred *new, u32 secid)
1522 {
1523         struct task_smack *new_tsp = new->security;
1524         struct smack_known *skp = smack_from_secid(secid);
1525
1526         if (skp == NULL)
1527                 return -EINVAL;
1528
1529         new_tsp->smk_task = skp;
1530         return 0;
1531 }
1532
1533 /**
1534  * smack_kernel_create_files_as - Set the file creation label in a set of creds
1535  * @new: points to the set of credentials to be modified
1536  * @inode: points to the inode to use as a reference
1537  *
1538  * Set the file creation context in a set of credentials to the same
1539  * as the objective context of the specified inode
1540  */
1541 static int smack_kernel_create_files_as(struct cred *new,
1542                                         struct inode *inode)
1543 {
1544         struct inode_smack *isp = inode->i_security;
1545         struct task_smack *tsp = new->security;
1546
1547         tsp->smk_forked = smk_find_entry(isp->smk_inode);
1548         tsp->smk_task = tsp->smk_forked;
1549         return 0;
1550 }
1551
1552 /**
1553  * smk_curacc_on_task - helper to log task related access
1554  * @p: the task object
1555  * @access: the access requested
1556  * @caller: name of the calling function for audit
1557  *
1558  * Return 0 if access is permitted
1559  */
1560 static int smk_curacc_on_task(struct task_struct *p, int access,
1561                                 const char *caller)
1562 {
1563         struct smk_audit_info ad;
1564         struct smack_known *skp = smk_of_task(task_security(p));
1565
1566         smk_ad_init(&ad, caller, LSM_AUDIT_DATA_TASK);
1567         smk_ad_setfield_u_tsk(&ad, p);
1568         return smk_curacc(skp->smk_known, access, &ad);
1569 }
1570
1571 /**
1572  * smack_task_setpgid - Smack check on setting pgid
1573  * @p: the task object
1574  * @pgid: unused
1575  *
1576  * Return 0 if write access is permitted
1577  */
1578 static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
1579 {
1580         return smk_curacc_on_task(p, MAY_WRITE, __func__);
1581 }
1582
1583 /**
1584  * smack_task_getpgid - Smack access check for getpgid
1585  * @p: the object task
1586  *
1587  * Returns 0 if current can read the object task, error code otherwise
1588  */
1589 static int smack_task_getpgid(struct task_struct *p)
1590 {
1591         return smk_curacc_on_task(p, MAY_READ, __func__);
1592 }
1593
1594 /**
1595  * smack_task_getsid - Smack access check for getsid
1596  * @p: the object task
1597  *
1598  * Returns 0 if current can read the object task, error code otherwise
1599  */
1600 static int smack_task_getsid(struct task_struct *p)
1601 {
1602         return smk_curacc_on_task(p, MAY_READ, __func__);
1603 }
1604
1605 /**
1606  * smack_task_getsecid - get the secid of the task
1607  * @p: the object task
1608  * @secid: where to put the result
1609  *
1610  * Sets the secid to contain a u32 version of the smack label.
1611  */
1612 static void smack_task_getsecid(struct task_struct *p, u32 *secid)
1613 {
1614         struct smack_known *skp = smk_of_task(task_security(p));
1615
1616         *secid = skp->smk_secid;
1617 }
1618
1619 /**
1620  * smack_task_setnice - Smack check on setting nice
1621  * @p: the task object
1622  * @nice: unused
1623  *
1624  * Return 0 if write access is permitted
1625  */
1626 static int smack_task_setnice(struct task_struct *p, int nice)
1627 {
1628         int rc;
1629
1630         rc = cap_task_setnice(p, nice);
1631         if (rc == 0)
1632                 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
1633         return rc;
1634 }
1635
1636 /**
1637  * smack_task_setioprio - Smack check on setting ioprio
1638  * @p: the task object
1639  * @ioprio: unused
1640  *
1641  * Return 0 if write access is permitted
1642  */
1643 static int smack_task_setioprio(struct task_struct *p, int ioprio)
1644 {
1645         int rc;
1646
1647         rc = cap_task_setioprio(p, ioprio);
1648         if (rc == 0)
1649                 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
1650         return rc;
1651 }
1652
1653 /**
1654  * smack_task_getioprio - Smack check on reading ioprio
1655  * @p: the task object
1656  *
1657  * Return 0 if read access is permitted
1658  */
1659 static int smack_task_getioprio(struct task_struct *p)
1660 {
1661         return smk_curacc_on_task(p, MAY_READ, __func__);
1662 }
1663
1664 /**
1665  * smack_task_setscheduler - Smack check on setting scheduler
1666  * @p: the task object
1667  * @policy: unused
1668  * @lp: unused
1669  *
1670  * Return 0 if read access is permitted
1671  */
1672 static int smack_task_setscheduler(struct task_struct *p)
1673 {
1674         int rc;
1675
1676         rc = cap_task_setscheduler(p);
1677         if (rc == 0)
1678                 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
1679         return rc;
1680 }
1681
1682 /**
1683  * smack_task_getscheduler - Smack check on reading scheduler
1684  * @p: the task object
1685  *
1686  * Return 0 if read access is permitted
1687  */
1688 static int smack_task_getscheduler(struct task_struct *p)
1689 {
1690         return smk_curacc_on_task(p, MAY_READ, __func__);
1691 }
1692
1693 /**
1694  * smack_task_movememory - Smack check on moving memory
1695  * @p: the task object
1696  *
1697  * Return 0 if write access is permitted
1698  */
1699 static int smack_task_movememory(struct task_struct *p)
1700 {
1701         return smk_curacc_on_task(p, MAY_WRITE, __func__);
1702 }
1703
1704 /**
1705  * smack_task_kill - Smack check on signal delivery
1706  * @p: the task object
1707  * @info: unused
1708  * @sig: unused
1709  * @secid: identifies the smack to use in lieu of current's
1710  *
1711  * Return 0 if write access is permitted
1712  *
1713  * The secid behavior is an artifact of an SELinux hack
1714  * in the USB code. Someday it may go away.
1715  */
1716 static int smack_task_kill(struct task_struct *p, struct siginfo *info,
1717                            int sig, u32 secid)
1718 {
1719         struct smk_audit_info ad;
1720         struct smack_known *skp;
1721         struct smack_known *tkp = smk_of_task(task_security(p));
1722
1723         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1724         smk_ad_setfield_u_tsk(&ad, p);
1725         /*
1726          * Sending a signal requires that the sender
1727          * can write the receiver.
1728          */
1729         if (secid == 0)
1730                 return smk_curacc(tkp->smk_known, MAY_WRITE, &ad);
1731         /*
1732          * If the secid isn't 0 we're dealing with some USB IO
1733          * specific behavior. This is not clean. For one thing
1734          * we can't take privilege into account.
1735          */
1736         skp = smack_from_secid(secid);
1737         return smk_access(skp, tkp->smk_known, MAY_WRITE, &ad);
1738 }
1739
1740 /**
1741  * smack_task_wait - Smack access check for waiting
1742  * @p: task to wait for
1743  *
1744  * Returns 0
1745  */
1746 static int smack_task_wait(struct task_struct *p)
1747 {
1748         /*
1749          * Allow the operation to succeed.
1750          * Zombies are bad.
1751          * In userless environments (e.g. phones) programs
1752          * get marked with SMACK64EXEC and even if the parent
1753          * and child shouldn't be talking the parent still
1754          * may expect to know when the child exits.
1755          */
1756         return 0;
1757 }
1758
1759 /**
1760  * smack_task_to_inode - copy task smack into the inode blob
1761  * @p: task to copy from
1762  * @inode: inode to copy to
1763  *
1764  * Sets the smack pointer in the inode security blob
1765  */
1766 static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
1767 {
1768         struct inode_smack *isp = inode->i_security;
1769         struct smack_known *skp = smk_of_task(task_security(p));
1770
1771         isp->smk_inode = skp->smk_known;
1772 }
1773
1774 /*
1775  * Socket hooks.
1776  */
1777
1778 /**
1779  * smack_sk_alloc_security - Allocate a socket blob
1780  * @sk: the socket
1781  * @family: unused
1782  * @gfp_flags: memory allocation flags
1783  *
1784  * Assign Smack pointers to current
1785  *
1786  * Returns 0 on success, -ENOMEM is there's no memory
1787  */
1788 static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
1789 {
1790         struct smack_known *skp = smk_of_current();
1791         struct socket_smack *ssp;
1792
1793         ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
1794         if (ssp == NULL)
1795                 return -ENOMEM;
1796
1797         ssp->smk_in = skp->smk_known;
1798         ssp->smk_out = skp;
1799         ssp->smk_packet = NULL;
1800
1801         sk->sk_security = ssp;
1802
1803         return 0;
1804 }
1805
1806 /**
1807  * smack_sk_free_security - Free a socket blob
1808  * @sk: the socket
1809  *
1810  * Clears the blob pointer
1811  */
1812 static void smack_sk_free_security(struct sock *sk)
1813 {
1814         kfree(sk->sk_security);
1815 }
1816
1817 /**
1818 * smack_host_label - check host based restrictions
1819 * @sip: the object end
1820 *
1821 * looks for host based access restrictions
1822 *
1823 * This version will only be appropriate for really small sets of single label
1824 * hosts.  The caller is responsible for ensuring that the RCU read lock is
1825 * taken before calling this function.
1826 *
1827 * Returns the label of the far end or NULL if it's not special.
1828 */
1829 static char *smack_host_label(struct sockaddr_in *sip)
1830 {
1831         struct smk_netlbladdr *snp;
1832         struct in_addr *siap = &sip->sin_addr;
1833
1834         if (siap->s_addr == 0)
1835                 return NULL;
1836
1837         list_for_each_entry_rcu(snp, &smk_netlbladdr_list, list)
1838                 /*
1839                 * we break after finding the first match because
1840                 * the list is sorted from longest to shortest mask
1841                 * so we have found the most specific match
1842                 */
1843                 if ((&snp->smk_host.sin_addr)->s_addr ==
1844                     (siap->s_addr & (&snp->smk_mask)->s_addr)) {
1845                         /* we have found the special CIPSO option */
1846                         if (snp->smk_label == smack_cipso_option)
1847                                 return NULL;
1848                         return snp->smk_label;
1849                 }
1850
1851         return NULL;
1852 }
1853
1854 /**
1855  * smack_netlabel - Set the secattr on a socket
1856  * @sk: the socket
1857  * @labeled: socket label scheme
1858  *
1859  * Convert the outbound smack value (smk_out) to a
1860  * secattr and attach it to the socket.
1861  *
1862  * Returns 0 on success or an error code
1863  */
1864 static int smack_netlabel(struct sock *sk, int labeled)
1865 {
1866         struct smack_known *skp;
1867         struct socket_smack *ssp = sk->sk_security;
1868         int rc = 0;
1869
1870         /*
1871          * Usually the netlabel code will handle changing the
1872          * packet labeling based on the label.
1873          * The case of a single label host is different, because
1874          * a single label host should never get a labeled packet
1875          * even though the label is usually associated with a packet
1876          * label.
1877          */
1878         local_bh_disable();
1879         bh_lock_sock_nested(sk);
1880
1881         if (ssp->smk_out == smack_net_ambient ||
1882             labeled == SMACK_UNLABELED_SOCKET)
1883                 netlbl_sock_delattr(sk);
1884         else {
1885                 skp = ssp->smk_out;
1886                 rc = netlbl_sock_setattr(sk, sk->sk_family, &skp->smk_netlabel);
1887         }
1888
1889         bh_unlock_sock(sk);
1890         local_bh_enable();
1891
1892         return rc;
1893 }
1894
1895 /**
1896  * smack_netlbel_send - Set the secattr on a socket and perform access checks
1897  * @sk: the socket
1898  * @sap: the destination address
1899  *
1900  * Set the correct secattr for the given socket based on the destination
1901  * address and perform any outbound access checks needed.
1902  *
1903  * Returns 0 on success or an error code.
1904  *
1905  */
1906 static int smack_netlabel_send(struct sock *sk, struct sockaddr_in *sap)
1907 {
1908         struct smack_known *skp;
1909         int rc;
1910         int sk_lbl;
1911         char *hostsp;
1912         struct socket_smack *ssp = sk->sk_security;
1913         struct smk_audit_info ad;
1914
1915         rcu_read_lock();
1916         hostsp = smack_host_label(sap);
1917         if (hostsp != NULL) {
1918                 sk_lbl = SMACK_UNLABELED_SOCKET;
1919 #ifdef CONFIG_AUDIT
1920                 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_NET);
1921                 ad.a.u.net.family = sap->sin_family;
1922                 ad.a.u.net.dport = sap->sin_port;
1923                 ad.a.u.net.v4info.daddr = sap->sin_addr.s_addr;
1924 #endif
1925                 skp = ssp->smk_out;
1926                 rc = smk_access(skp, hostsp, MAY_WRITE, &ad);
1927         } else {
1928                 sk_lbl = SMACK_CIPSO_SOCKET;
1929                 rc = 0;
1930         }
1931         rcu_read_unlock();
1932         if (rc != 0)
1933                 return rc;
1934
1935         return smack_netlabel(sk, sk_lbl);
1936 }
1937
1938 /**
1939  * smk_ipv6_port_label - Smack port access table management
1940  * @sock: socket
1941  * @address: address
1942  *
1943  * Create or update the port list entry
1944  */
1945 static void smk_ipv6_port_label(struct socket *sock, struct sockaddr *address)
1946 {
1947         struct sock *sk = sock->sk;
1948         struct sockaddr_in6 *addr6;
1949         struct socket_smack *ssp = sock->sk->sk_security;
1950         struct smk_port_label *spp;
1951         unsigned short port = 0;
1952
1953         if (address == NULL) {
1954                 /*
1955                  * This operation is changing the Smack information
1956                  * on the bound socket. Take the changes to the port
1957                  * as well.
1958                  */
1959                 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
1960                         if (sk != spp->smk_sock)
1961                                 continue;
1962                         spp->smk_in = ssp->smk_in;
1963                         spp->smk_out = ssp->smk_out;
1964                         return;
1965                 }
1966                 /*
1967                  * A NULL address is only used for updating existing
1968                  * bound entries. If there isn't one, it's OK.
1969                  */
1970                 return;
1971         }
1972
1973         addr6 = (struct sockaddr_in6 *)address;
1974         port = ntohs(addr6->sin6_port);
1975         /*
1976          * This is a special case that is safely ignored.
1977          */
1978         if (port == 0)
1979                 return;
1980
1981         /*
1982          * Look for an existing port list entry.
1983          * This is an indication that a port is getting reused.
1984          */
1985         list_for_each_entry(spp, &smk_ipv6_port_list, list) {
1986                 if (spp->smk_port != port)
1987                         continue;
1988                 spp->smk_port = port;
1989                 spp->smk_sock = sk;
1990                 spp->smk_in = ssp->smk_in;
1991                 spp->smk_out = ssp->smk_out;
1992                 return;
1993         }
1994
1995         /*
1996          * A new port entry is required.
1997          */
1998         spp = kzalloc(sizeof(*spp), GFP_KERNEL);
1999         if (spp == NULL)
2000                 return;
2001
2002         spp->smk_port = port;
2003         spp->smk_sock = sk;
2004         spp->smk_in = ssp->smk_in;
2005         spp->smk_out = ssp->smk_out;
2006
2007         list_add(&spp->list, &smk_ipv6_port_list);
2008         return;
2009 }
2010
2011 /**
2012  * smk_ipv6_port_check - check Smack port access
2013  * @sock: socket
2014  * @address: address
2015  *
2016  * Create or update the port list entry
2017  */
2018 static int smk_ipv6_port_check(struct sock *sk, struct sockaddr_in6 *address,
2019                                 int act)
2020 {
2021         __be16 *bep;
2022         __be32 *be32p;
2023         struct smk_port_label *spp;
2024         struct socket_smack *ssp = sk->sk_security;
2025         struct smack_known *skp;
2026         unsigned short port = 0;
2027         char *object;
2028         struct smk_audit_info ad;
2029
2030         if (act == SMK_RECEIVING) {
2031                 skp = smack_net_ambient;
2032                 object = ssp->smk_in;
2033         } else {
2034                 skp = ssp->smk_out;
2035                 object = smack_net_ambient->smk_known;
2036         }
2037
2038         /*
2039          * Get the IP address and port from the address.
2040          */
2041         port = ntohs(address->sin6_port);
2042         bep = (__be16 *)(&address->sin6_addr);
2043         be32p = (__be32 *)(&address->sin6_addr);
2044
2045         /*
2046          * It's remote, so port lookup does no good.
2047          */
2048         if (be32p[0] || be32p[1] || be32p[2] || bep[6] || ntohs(bep[7]) != 1)
2049                 goto auditout;
2050
2051         /*
2052          * It's local so the send check has to have passed.
2053          */
2054         if (act == SMK_RECEIVING) {
2055                 skp = &smack_known_web;
2056                 goto auditout;
2057         }
2058
2059         list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2060                 if (spp->smk_port != port)
2061                         continue;
2062                 object = spp->smk_in;
2063                 if (act == SMK_CONNECTING)
2064                         ssp->smk_packet = spp->smk_out->smk_known;
2065                 break;
2066         }
2067
2068 auditout:
2069
2070 #ifdef CONFIG_AUDIT
2071         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_NET);
2072         ad.a.u.net.family = sk->sk_family;
2073         ad.a.u.net.dport = port;
2074         if (act == SMK_RECEIVING)
2075                 ad.a.u.net.v6info.saddr = address->sin6_addr;
2076         else
2077                 ad.a.u.net.v6info.daddr = address->sin6_addr;
2078 #endif
2079         return smk_access(skp, object, MAY_WRITE, &ad);
2080 }
2081
2082 /**
2083  * smack_inode_setsecurity - set smack xattrs
2084  * @inode: the object
2085  * @name: attribute name
2086  * @value: attribute value
2087  * @size: size of the attribute
2088  * @flags: unused
2089  *
2090  * Sets the named attribute in the appropriate blob
2091  *
2092  * Returns 0 on success, or an error code
2093  */
2094 static int smack_inode_setsecurity(struct inode *inode, const char *name,
2095                                    const void *value, size_t size, int flags)
2096 {
2097         struct smack_known *skp;
2098         struct inode_smack *nsp = inode->i_security;
2099         struct socket_smack *ssp;
2100         struct socket *sock;
2101         int rc = 0;
2102
2103         if (value == NULL || size > SMK_LONGLABEL || size == 0)
2104                 return -EACCES;
2105
2106         skp = smk_import_entry(value, size);
2107         if (skp == NULL)
2108                 return -EINVAL;
2109
2110         if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
2111                 nsp->smk_inode = skp->smk_known;
2112                 nsp->smk_flags |= SMK_INODE_INSTANT;
2113                 return 0;
2114         }
2115         /*
2116          * The rest of the Smack xattrs are only on sockets.
2117          */
2118         if (inode->i_sb->s_magic != SOCKFS_MAGIC)
2119                 return -EOPNOTSUPP;
2120
2121         sock = SOCKET_I(inode);
2122         if (sock == NULL || sock->sk == NULL)
2123                 return -EOPNOTSUPP;
2124
2125         ssp = sock->sk->sk_security;
2126
2127         if (strcmp(name, XATTR_SMACK_IPIN) == 0)
2128                 ssp->smk_in = skp->smk_known;
2129         else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
2130                 ssp->smk_out = skp;
2131                 if (sock->sk->sk_family == PF_INET) {
2132                         rc = smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2133                         if (rc != 0)
2134                                 printk(KERN_WARNING
2135                                         "Smack: \"%s\" netlbl error %d.\n",
2136                                         __func__, -rc);
2137                 }
2138         } else
2139                 return -EOPNOTSUPP;
2140
2141         if (sock->sk->sk_family == PF_INET6)
2142                 smk_ipv6_port_label(sock, NULL);
2143
2144         return 0;
2145 }
2146
2147 /**
2148  * smack_socket_post_create - finish socket setup
2149  * @sock: the socket
2150  * @family: protocol family
2151  * @type: unused
2152  * @protocol: unused
2153  * @kern: unused
2154  *
2155  * Sets the netlabel information on the socket
2156  *
2157  * Returns 0 on success, and error code otherwise
2158  */
2159 static int smack_socket_post_create(struct socket *sock, int family,
2160                                     int type, int protocol, int kern)
2161 {
2162         if (family != PF_INET || sock->sk == NULL)
2163                 return 0;
2164         /*
2165          * Set the outbound netlbl.
2166          */
2167         return smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2168 }
2169
2170 /**
2171  * smack_socket_bind - record port binding information.
2172  * @sock: the socket
2173  * @address: the port address
2174  * @addrlen: size of the address
2175  *
2176  * Records the label bound to a port.
2177  *
2178  * Returns 0
2179  */
2180 static int smack_socket_bind(struct socket *sock, struct sockaddr *address,
2181                                 int addrlen)
2182 {
2183         if (sock->sk != NULL && sock->sk->sk_family == PF_INET6)
2184                 smk_ipv6_port_label(sock, address);
2185
2186         return 0;
2187 }
2188
2189 /**
2190  * smack_socket_connect - connect access check
2191  * @sock: the socket
2192  * @sap: the other end
2193  * @addrlen: size of sap
2194  *
2195  * Verifies that a connection may be possible
2196  *
2197  * Returns 0 on success, and error code otherwise
2198  */
2199 static int smack_socket_connect(struct socket *sock, struct sockaddr *sap,
2200                                 int addrlen)
2201 {
2202         int rc = 0;
2203
2204         if (sock->sk == NULL)
2205                 return 0;
2206
2207         switch (sock->sk->sk_family) {
2208         case PF_INET:
2209                 if (addrlen < sizeof(struct sockaddr_in))
2210                         return -EINVAL;
2211                 rc = smack_netlabel_send(sock->sk, (struct sockaddr_in *)sap);
2212                 break;
2213         case PF_INET6:
2214                 if (addrlen < sizeof(struct sockaddr_in6))
2215                         return -EINVAL;
2216                 rc = smk_ipv6_port_check(sock->sk, (struct sockaddr_in6 *)sap,
2217                                                 SMK_CONNECTING);
2218                 break;
2219         }
2220         return rc;
2221 }
2222
2223 /**
2224  * smack_flags_to_may - convert S_ to MAY_ values
2225  * @flags: the S_ value
2226  *
2227  * Returns the equivalent MAY_ value
2228  */
2229 static int smack_flags_to_may(int flags)
2230 {
2231         int may = 0;
2232
2233         if (flags & S_IRUGO)
2234                 may |= MAY_READ;
2235         if (flags & S_IWUGO)
2236                 may |= MAY_WRITE;
2237         if (flags & S_IXUGO)
2238                 may |= MAY_EXEC;
2239
2240         return may;
2241 }
2242
2243 /**
2244  * smack_msg_msg_alloc_security - Set the security blob for msg_msg
2245  * @msg: the object
2246  *
2247  * Returns 0
2248  */
2249 static int smack_msg_msg_alloc_security(struct msg_msg *msg)
2250 {
2251         struct smack_known *skp = smk_of_current();
2252
2253         msg->security = skp->smk_known;
2254         return 0;
2255 }
2256
2257 /**
2258  * smack_msg_msg_free_security - Clear the security blob for msg_msg
2259  * @msg: the object
2260  *
2261  * Clears the blob pointer
2262  */
2263 static void smack_msg_msg_free_security(struct msg_msg *msg)
2264 {
2265         msg->security = NULL;
2266 }
2267
2268 /**
2269  * smack_of_shm - the smack pointer for the shm
2270  * @shp: the object
2271  *
2272  * Returns a pointer to the smack value
2273  */
2274 static char *smack_of_shm(struct shmid_kernel *shp)
2275 {
2276         return (char *)shp->shm_perm.security;
2277 }
2278
2279 /**
2280  * smack_shm_alloc_security - Set the security blob for shm
2281  * @shp: the object
2282  *
2283  * Returns 0
2284  */
2285 static int smack_shm_alloc_security(struct shmid_kernel *shp)
2286 {
2287         struct kern_ipc_perm *isp = &shp->shm_perm;
2288         struct smack_known *skp = smk_of_current();
2289
2290         isp->security = skp->smk_known;
2291         return 0;
2292 }
2293
2294 /**
2295  * smack_shm_free_security - Clear the security blob for shm
2296  * @shp: the object
2297  *
2298  * Clears the blob pointer
2299  */
2300 static void smack_shm_free_security(struct shmid_kernel *shp)
2301 {
2302         struct kern_ipc_perm *isp = &shp->shm_perm;
2303
2304         isp->security = NULL;
2305 }
2306
2307 /**
2308  * smk_curacc_shm : check if current has access on shm
2309  * @shp : the object
2310  * @access : access requested
2311  *
2312  * Returns 0 if current has the requested access, error code otherwise
2313  */
2314 static int smk_curacc_shm(struct shmid_kernel *shp, int access)
2315 {
2316         char *ssp = smack_of_shm(shp);
2317         struct smk_audit_info ad;
2318
2319 #ifdef CONFIG_AUDIT
2320         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2321         ad.a.u.ipc_id = shp->shm_perm.id;
2322 #endif
2323         return smk_curacc(ssp, access, &ad);
2324 }
2325
2326 /**
2327  * smack_shm_associate - Smack access check for shm
2328  * @shp: the object
2329  * @shmflg: access requested
2330  *
2331  * Returns 0 if current has the requested access, error code otherwise
2332  */
2333 static int smack_shm_associate(struct shmid_kernel *shp, int shmflg)
2334 {
2335         int may;
2336
2337         may = smack_flags_to_may(shmflg);
2338         return smk_curacc_shm(shp, may);
2339 }
2340
2341 /**
2342  * smack_shm_shmctl - Smack access check for shm
2343  * @shp: the object
2344  * @cmd: what it wants to do
2345  *
2346  * Returns 0 if current has the requested access, error code otherwise
2347  */
2348 static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
2349 {
2350         int may;
2351
2352         switch (cmd) {
2353         case IPC_STAT:
2354         case SHM_STAT:
2355                 may = MAY_READ;
2356                 break;
2357         case IPC_SET:
2358         case SHM_LOCK:
2359         case SHM_UNLOCK:
2360         case IPC_RMID:
2361                 may = MAY_READWRITE;
2362                 break;
2363         case IPC_INFO:
2364         case SHM_INFO:
2365                 /*
2366                  * System level information.
2367                  */
2368                 return 0;
2369         default:
2370                 return -EINVAL;
2371         }
2372         return smk_curacc_shm(shp, may);
2373 }
2374
2375 /**
2376  * smack_shm_shmat - Smack access for shmat
2377  * @shp: the object
2378  * @shmaddr: unused
2379  * @shmflg: access requested
2380  *
2381  * Returns 0 if current has the requested access, error code otherwise
2382  */
2383 static int smack_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr,
2384                            int shmflg)
2385 {
2386         int may;
2387
2388         may = smack_flags_to_may(shmflg);
2389         return smk_curacc_shm(shp, may);
2390 }
2391
2392 /**
2393  * smack_of_sem - the smack pointer for the sem
2394  * @sma: the object
2395  *
2396  * Returns a pointer to the smack value
2397  */
2398 static char *smack_of_sem(struct sem_array *sma)
2399 {
2400         return (char *)sma->sem_perm.security;
2401 }
2402
2403 /**
2404  * smack_sem_alloc_security - Set the security blob for sem
2405  * @sma: the object
2406  *
2407  * Returns 0
2408  */
2409 static int smack_sem_alloc_security(struct sem_array *sma)
2410 {
2411         struct kern_ipc_perm *isp = &sma->sem_perm;
2412         struct smack_known *skp = smk_of_current();
2413
2414         isp->security = skp->smk_known;
2415         return 0;
2416 }
2417
2418 /**
2419  * smack_sem_free_security - Clear the security blob for sem
2420  * @sma: the object
2421  *
2422  * Clears the blob pointer
2423  */
2424 static void smack_sem_free_security(struct sem_array *sma)
2425 {
2426         struct kern_ipc_perm *isp = &sma->sem_perm;
2427
2428         isp->security = NULL;
2429 }
2430
2431 /**
2432  * smk_curacc_sem : check if current has access on sem
2433  * @sma : the object
2434  * @access : access requested
2435  *
2436  * Returns 0 if current has the requested access, error code otherwise
2437  */
2438 static int smk_curacc_sem(struct sem_array *sma, int access)
2439 {
2440         char *ssp = smack_of_sem(sma);
2441         struct smk_audit_info ad;
2442
2443 #ifdef CONFIG_AUDIT
2444         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2445         ad.a.u.ipc_id = sma->sem_perm.id;
2446 #endif
2447         return smk_curacc(ssp, access, &ad);
2448 }
2449
2450 /**
2451  * smack_sem_associate - Smack access check for sem
2452  * @sma: the object
2453  * @semflg: access requested
2454  *
2455  * Returns 0 if current has the requested access, error code otherwise
2456  */
2457 static int smack_sem_associate(struct sem_array *sma, int semflg)
2458 {
2459         int may;
2460
2461         may = smack_flags_to_may(semflg);
2462         return smk_curacc_sem(sma, may);
2463 }
2464
2465 /**
2466  * smack_sem_shmctl - Smack access check for sem
2467  * @sma: the object
2468  * @cmd: what it wants to do
2469  *
2470  * Returns 0 if current has the requested access, error code otherwise
2471  */
2472 static int smack_sem_semctl(struct sem_array *sma, int cmd)
2473 {
2474         int may;
2475
2476         switch (cmd) {
2477         case GETPID:
2478         case GETNCNT:
2479         case GETZCNT:
2480         case GETVAL:
2481         case GETALL:
2482         case IPC_STAT:
2483         case SEM_STAT:
2484                 may = MAY_READ;
2485                 break;
2486         case SETVAL:
2487         case SETALL:
2488         case IPC_RMID:
2489         case IPC_SET:
2490                 may = MAY_READWRITE;
2491                 break;
2492         case IPC_INFO:
2493         case SEM_INFO:
2494                 /*
2495                  * System level information
2496                  */
2497                 return 0;
2498         default:
2499                 return -EINVAL;
2500         }
2501
2502         return smk_curacc_sem(sma, may);
2503 }
2504
2505 /**
2506  * smack_sem_semop - Smack checks of semaphore operations
2507  * @sma: the object
2508  * @sops: unused
2509  * @nsops: unused
2510  * @alter: unused
2511  *
2512  * Treated as read and write in all cases.
2513  *
2514  * Returns 0 if access is allowed, error code otherwise
2515  */
2516 static int smack_sem_semop(struct sem_array *sma, struct sembuf *sops,
2517                            unsigned nsops, int alter)
2518 {
2519         return smk_curacc_sem(sma, MAY_READWRITE);
2520 }
2521
2522 /**
2523  * smack_msg_alloc_security - Set the security blob for msg
2524  * @msq: the object
2525  *
2526  * Returns 0
2527  */
2528 static int smack_msg_queue_alloc_security(struct msg_queue *msq)
2529 {
2530         struct kern_ipc_perm *kisp = &msq->q_perm;
2531         struct smack_known *skp = smk_of_current();
2532
2533         kisp->security = skp->smk_known;
2534         return 0;
2535 }
2536
2537 /**
2538  * smack_msg_free_security - Clear the security blob for msg
2539  * @msq: the object
2540  *
2541  * Clears the blob pointer
2542  */
2543 static void smack_msg_queue_free_security(struct msg_queue *msq)
2544 {
2545         struct kern_ipc_perm *kisp = &msq->q_perm;
2546
2547         kisp->security = NULL;
2548 }
2549
2550 /**
2551  * smack_of_msq - the smack pointer for the msq
2552  * @msq: the object
2553  *
2554  * Returns a pointer to the smack value
2555  */
2556 static char *smack_of_msq(struct msg_queue *msq)
2557 {
2558         return (char *)msq->q_perm.security;
2559 }
2560
2561 /**
2562  * smk_curacc_msq : helper to check if current has access on msq
2563  * @msq : the msq
2564  * @access : access requested
2565  *
2566  * return 0 if current has access, error otherwise
2567  */
2568 static int smk_curacc_msq(struct msg_queue *msq, int access)
2569 {
2570         char *msp = smack_of_msq(msq);
2571         struct smk_audit_info ad;
2572
2573 #ifdef CONFIG_AUDIT
2574         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2575         ad.a.u.ipc_id = msq->q_perm.id;
2576 #endif
2577         return smk_curacc(msp, access, &ad);
2578 }
2579
2580 /**
2581  * smack_msg_queue_associate - Smack access check for msg_queue
2582  * @msq: the object
2583  * @msqflg: access requested
2584  *
2585  * Returns 0 if current has the requested access, error code otherwise
2586  */
2587 static int smack_msg_queue_associate(struct msg_queue *msq, int msqflg)
2588 {
2589         int may;
2590
2591         may = smack_flags_to_may(msqflg);
2592         return smk_curacc_msq(msq, may);
2593 }
2594
2595 /**
2596  * smack_msg_queue_msgctl - Smack access check for msg_queue
2597  * @msq: the object
2598  * @cmd: what it wants to do
2599  *
2600  * Returns 0 if current has the requested access, error code otherwise
2601  */
2602 static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
2603 {
2604         int may;
2605
2606         switch (cmd) {
2607         case IPC_STAT:
2608         case MSG_STAT:
2609                 may = MAY_READ;
2610                 break;
2611         case IPC_SET:
2612         case IPC_RMID:
2613                 may = MAY_READWRITE;
2614                 break;
2615         case IPC_INFO:
2616         case MSG_INFO:
2617                 /*
2618                  * System level information
2619                  */
2620                 return 0;
2621         default:
2622                 return -EINVAL;
2623         }
2624
2625         return smk_curacc_msq(msq, may);
2626 }
2627
2628 /**
2629  * smack_msg_queue_msgsnd - Smack access check for msg_queue
2630  * @msq: the object
2631  * @msg: unused
2632  * @msqflg: access requested
2633  *
2634  * Returns 0 if current has the requested access, error code otherwise
2635  */
2636 static int smack_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg,
2637                                   int msqflg)
2638 {
2639         int may;
2640
2641         may = smack_flags_to_may(msqflg);
2642         return smk_curacc_msq(msq, may);
2643 }
2644
2645 /**
2646  * smack_msg_queue_msgsnd - Smack access check for msg_queue
2647  * @msq: the object
2648  * @msg: unused
2649  * @target: unused
2650  * @type: unused
2651  * @mode: unused
2652  *
2653  * Returns 0 if current has read and write access, error code otherwise
2654  */
2655 static int smack_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
2656                         struct task_struct *target, long type, int mode)
2657 {
2658         return smk_curacc_msq(msq, MAY_READWRITE);
2659 }
2660
2661 /**
2662  * smack_ipc_permission - Smack access for ipc_permission()
2663  * @ipp: the object permissions
2664  * @flag: access requested
2665  *
2666  * Returns 0 if current has read and write access, error code otherwise
2667  */
2668 static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
2669 {
2670         char *isp = ipp->security;
2671         int may = smack_flags_to_may(flag);
2672         struct smk_audit_info ad;
2673
2674 #ifdef CONFIG_AUDIT
2675         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2676         ad.a.u.ipc_id = ipp->id;
2677 #endif
2678         return smk_curacc(isp, may, &ad);
2679 }
2680
2681 /**
2682  * smack_ipc_getsecid - Extract smack security id
2683  * @ipp: the object permissions
2684  * @secid: where result will be saved
2685  */
2686 static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
2687 {
2688         char *smack = ipp->security;
2689
2690         *secid = smack_to_secid(smack);
2691 }
2692
2693 /**
2694  * smack_d_instantiate - Make sure the blob is correct on an inode
2695  * @opt_dentry: dentry where inode will be attached
2696  * @inode: the object
2697  *
2698  * Set the inode's security blob if it hasn't been done already.
2699  */
2700 static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
2701 {
2702         struct super_block *sbp;
2703         struct superblock_smack *sbsp;
2704         struct inode_smack *isp;
2705         struct smack_known *skp;
2706         struct smack_known *ckp = smk_of_current();
2707         char *final;
2708         char trattr[TRANS_TRUE_SIZE];
2709         int transflag = 0;
2710         int rc;
2711         struct dentry *dp;
2712
2713         if (inode == NULL)
2714                 return;
2715
2716         isp = inode->i_security;
2717
2718         mutex_lock(&isp->smk_lock);
2719         /*
2720          * If the inode is already instantiated
2721          * take the quick way out
2722          */
2723         if (isp->smk_flags & SMK_INODE_INSTANT)
2724                 goto unlockandout;
2725
2726         sbp = inode->i_sb;
2727         sbsp = sbp->s_security;
2728         /*
2729          * We're going to use the superblock default label
2730          * if there's no label on the file.
2731          */
2732         final = sbsp->smk_default;
2733
2734         /*
2735          * If this is the root inode the superblock
2736          * may be in the process of initialization.
2737          * If that is the case use the root value out
2738          * of the superblock.
2739          */
2740         if (opt_dentry->d_parent == opt_dentry) {
2741                 isp->smk_inode = sbsp->smk_root;
2742                 isp->smk_flags |= SMK_INODE_INSTANT;
2743                 goto unlockandout;
2744         }
2745
2746         /*
2747          * This is pretty hackish.
2748          * Casey says that we shouldn't have to do
2749          * file system specific code, but it does help
2750          * with keeping it simple.
2751          */
2752         switch (sbp->s_magic) {
2753         case SMACK_MAGIC:
2754                 /*
2755                  * Casey says that it's a little embarrassing
2756                  * that the smack file system doesn't do
2757                  * extended attributes.
2758                  */
2759                 final = smack_known_star.smk_known;
2760                 break;
2761         case PIPEFS_MAGIC:
2762                 /*
2763                  * Casey says pipes are easy (?)
2764                  */
2765                 final = smack_known_star.smk_known;
2766                 break;
2767         case DEVPTS_SUPER_MAGIC:
2768                 /*
2769                  * devpts seems content with the label of the task.
2770                  * Programs that change smack have to treat the
2771                  * pty with respect.
2772                  */
2773                 final = ckp->smk_known;
2774                 break;
2775         case SOCKFS_MAGIC:
2776                 /*
2777                  * Socket access is controlled by the socket
2778                  * structures associated with the task involved.
2779                  */
2780                 final = smack_known_star.smk_known;
2781                 break;
2782         case PROC_SUPER_MAGIC:
2783                 /*
2784                  * Casey says procfs appears not to care.
2785                  * The superblock default suffices.
2786                  */
2787                 break;
2788         case TMPFS_MAGIC:
2789                 /*
2790                  * Device labels should come from the filesystem,
2791                  * but watch out, because they're volitile,
2792                  * getting recreated on every reboot.
2793                  */
2794                 final = smack_known_star.smk_known;
2795                 /*
2796                  * No break.
2797                  *
2798                  * If a smack value has been set we want to use it,
2799                  * but since tmpfs isn't giving us the opportunity
2800                  * to set mount options simulate setting the
2801                  * superblock default.
2802                  */
2803         default:
2804                 /*
2805                  * This isn't an understood special case.
2806                  * Get the value from the xattr.
2807                  */
2808
2809                 /*
2810                  * UNIX domain sockets use lower level socket data.
2811                  */
2812                 if (S_ISSOCK(inode->i_mode)) {
2813                         final = smack_known_star.smk_known;
2814                         break;
2815                 }
2816                 /*
2817                  * No xattr support means, alas, no SMACK label.
2818                  * Use the aforeapplied default.
2819                  * It would be curious if the label of the task
2820                  * does not match that assigned.
2821                  */
2822                 if (inode->i_op->getxattr == NULL)
2823                         break;
2824                 /*
2825                  * Get the dentry for xattr.
2826                  */
2827                 dp = dget(opt_dentry);
2828                 skp = smk_fetch(XATTR_NAME_SMACK, inode, dp);
2829                 if (skp != NULL)
2830                         final = skp->smk_known;
2831
2832                 /*
2833                  * Transmuting directory
2834                  */
2835                 if (S_ISDIR(inode->i_mode)) {
2836                         /*
2837                          * If this is a new directory and the label was
2838                          * transmuted when the inode was initialized
2839                          * set the transmute attribute on the directory
2840                          * and mark the inode.
2841                          *
2842                          * If there is a transmute attribute on the
2843                          * directory mark the inode.
2844                          */
2845                         if (isp->smk_flags & SMK_INODE_CHANGED) {
2846                                 isp->smk_flags &= ~SMK_INODE_CHANGED;
2847                                 rc = inode->i_op->setxattr(dp,
2848                                         XATTR_NAME_SMACKTRANSMUTE,
2849                                         TRANS_TRUE, TRANS_TRUE_SIZE,
2850                                         0);
2851                         } else {
2852                                 rc = inode->i_op->getxattr(dp,
2853                                         XATTR_NAME_SMACKTRANSMUTE, trattr,
2854                                         TRANS_TRUE_SIZE);
2855                                 if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
2856                                                        TRANS_TRUE_SIZE) != 0)
2857                                         rc = -EINVAL;
2858                         }
2859                         if (rc >= 0)
2860                                 transflag = SMK_INODE_TRANSMUTE;
2861                 }
2862                 isp->smk_task = smk_fetch(XATTR_NAME_SMACKEXEC, inode, dp);
2863                 isp->smk_mmap = smk_fetch(XATTR_NAME_SMACKMMAP, inode, dp);
2864
2865                 dput(dp);
2866                 break;
2867         }
2868
2869         if (final == NULL)
2870                 isp->smk_inode = ckp->smk_known;
2871         else
2872                 isp->smk_inode = final;
2873
2874         isp->smk_flags |= (SMK_INODE_INSTANT | transflag);
2875
2876 unlockandout:
2877         mutex_unlock(&isp->smk_lock);
2878         return;
2879 }
2880
2881 /**
2882  * smack_getprocattr - Smack process attribute access
2883  * @p: the object task
2884  * @name: the name of the attribute in /proc/.../attr
2885  * @value: where to put the result
2886  *
2887  * Places a copy of the task Smack into value
2888  *
2889  * Returns the length of the smack label or an error code
2890  */
2891 static int smack_getprocattr(struct task_struct *p, char *name, char **value)
2892 {
2893         struct smack_known *skp = smk_of_task(task_security(p));
2894         char *cp;
2895         int slen;
2896
2897         if (strcmp(name, "current") != 0)
2898                 return -EINVAL;
2899
2900         cp = kstrdup(skp->smk_known, GFP_KERNEL);
2901         if (cp == NULL)
2902                 return -ENOMEM;
2903
2904         slen = strlen(cp);
2905         *value = cp;
2906         return slen;
2907 }
2908
2909 /**
2910  * smack_setprocattr - Smack process attribute setting
2911  * @p: the object task
2912  * @name: the name of the attribute in /proc/.../attr
2913  * @value: the value to set
2914  * @size: the size of the value
2915  *
2916  * Sets the Smack value of the task. Only setting self
2917  * is permitted and only with privilege
2918  *
2919  * Returns the length of the smack label or an error code
2920  */
2921 static int smack_setprocattr(struct task_struct *p, char *name,
2922                              void *value, size_t size)
2923 {
2924         struct task_smack *tsp;
2925         struct cred *new;
2926         struct smack_known *skp;
2927
2928         /*
2929          * Changing another process' Smack value is too dangerous
2930          * and supports no sane use case.
2931          */
2932         if (p != current)
2933                 return -EPERM;
2934
2935         if (!smack_privileged(CAP_MAC_ADMIN))
2936                 return -EPERM;
2937
2938         if (value == NULL || size == 0 || size >= SMK_LONGLABEL)
2939                 return -EINVAL;
2940
2941         if (strcmp(name, "current") != 0)
2942                 return -EINVAL;
2943
2944         skp = smk_import_entry(value, size);
2945         if (skp == NULL)
2946                 return -EINVAL;
2947
2948         /*
2949          * No process is ever allowed the web ("@") label.
2950          */
2951         if (skp == &smack_known_web)
2952                 return -EPERM;
2953
2954         new = prepare_creds();
2955         if (new == NULL)
2956                 return -ENOMEM;
2957
2958         tsp = new->security;
2959         tsp->smk_task = skp;
2960
2961         commit_creds(new);
2962         return size;
2963 }
2964
2965 /**
2966  * smack_unix_stream_connect - Smack access on UDS
2967  * @sock: one sock
2968  * @other: the other sock
2969  * @newsk: unused
2970  *
2971  * Return 0 if a subject with the smack of sock could access
2972  * an object with the smack of other, otherwise an error code
2973  */
2974 static int smack_unix_stream_connect(struct sock *sock,
2975                                      struct sock *other, struct sock *newsk)
2976 {
2977         struct smack_known *skp;
2978         struct socket_smack *ssp = sock->sk_security;
2979         struct socket_smack *osp = other->sk_security;
2980         struct socket_smack *nsp = newsk->sk_security;
2981         struct smk_audit_info ad;
2982         int rc = 0;
2983
2984         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_NET);
2985         smk_ad_setfield_u_net_sk(&ad, other);
2986
2987         if (!smack_privileged(CAP_MAC_OVERRIDE)) {
2988                 skp = ssp->smk_out;
2989                 rc = smk_access(skp, osp->smk_in, MAY_WRITE, &ad);
2990         }
2991
2992         /*
2993          * Cross reference the peer labels for SO_PEERSEC.
2994          */
2995         if (rc == 0) {
2996                 nsp->smk_packet = ssp->smk_out->smk_known;
2997                 ssp->smk_packet = osp->smk_out->smk_known;
2998         }
2999
3000         return rc;
3001 }
3002
3003 /**
3004  * smack_unix_may_send - Smack access on UDS
3005  * @sock: one socket
3006  * @other: the other socket
3007  *
3008  * Return 0 if a subject with the smack of sock could access
3009  * an object with the smack of other, otherwise an error code
3010  */
3011 static int smack_unix_may_send(struct socket *sock, struct socket *other)
3012 {
3013         struct socket_smack *ssp = sock->sk->sk_security;
3014         struct socket_smack *osp = other->sk->sk_security;
3015         struct smack_known *skp;
3016         struct smk_audit_info ad;
3017
3018         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_NET);
3019         smk_ad_setfield_u_net_sk(&ad, other->sk);
3020
3021         if (smack_privileged(CAP_MAC_OVERRIDE))
3022                 return 0;
3023
3024         skp = ssp->smk_out;
3025         return smk_access(skp, osp->smk_in, MAY_WRITE, &ad);
3026 }
3027
3028 /**
3029  * smack_socket_sendmsg - Smack check based on destination host
3030  * @sock: the socket
3031  * @msg: the message
3032  * @size: the size of the message
3033  *
3034  * Return 0 if the current subject can write to the destination host.
3035  * For IPv4 this is only a question if the destination is a single label host.
3036  * For IPv6 this is a check against the label of the port.
3037  */
3038 static int smack_socket_sendmsg(struct socket *sock, struct msghdr *msg,
3039                                 int size)
3040 {
3041         struct sockaddr_in *sip = (struct sockaddr_in *) msg->msg_name;
3042         struct sockaddr_in6 *sap = (struct sockaddr_in6 *) msg->msg_name;
3043         int rc = 0;
3044
3045         /*
3046          * Perfectly reasonable for this to be NULL
3047          */
3048         if (sip == NULL)
3049                 return 0;
3050
3051         switch (sip->sin_family) {
3052         case AF_INET:
3053                 rc = smack_netlabel_send(sock->sk, sip);
3054                 break;
3055         case AF_INET6:
3056                 rc = smk_ipv6_port_check(sock->sk, sap, SMK_SENDING);
3057                 break;
3058         }
3059         return rc;
3060 }
3061
3062 /**
3063  * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
3064  * @sap: netlabel secattr
3065  * @ssp: socket security information
3066  *
3067  * Returns a pointer to a Smack label entry found on the label list.
3068  */
3069 static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap,
3070                                                 struct socket_smack *ssp)
3071 {
3072         struct smack_known *skp;
3073         int found = 0;
3074         int acat;
3075         int kcat;
3076
3077         if ((sap->flags & NETLBL_SECATTR_MLS_LVL) != 0) {
3078                 /*
3079                  * Looks like a CIPSO packet.
3080                  * If there are flags but no level netlabel isn't
3081                  * behaving the way we expect it to.
3082                  *
3083                  * Look it up in the label table
3084                  * Without guidance regarding the smack value
3085                  * for the packet fall back on the network
3086                  * ambient value.
3087                  */
3088                 rcu_read_lock();
3089                 list_for_each_entry(skp, &smack_known_list, list) {
3090                         if (sap->attr.mls.lvl != skp->smk_netlabel.attr.mls.lvl)
3091                                 continue;
3092                         /*
3093                          * Compare the catsets. Use the netlbl APIs.
3094                          */
3095                         if ((sap->flags & NETLBL_SECATTR_MLS_CAT) == 0) {
3096                                 if ((skp->smk_netlabel.flags &
3097                                      NETLBL_SECATTR_MLS_CAT) == 0)
3098                                         found = 1;
3099                                 break;
3100                         }
3101                         for (acat = -1, kcat = -1; acat == kcat; ) {
3102                                 acat = netlbl_secattr_catmap_walk(
3103                                         sap->attr.mls.cat, acat + 1);
3104                                 kcat = netlbl_secattr_catmap_walk(
3105                                         skp->smk_netlabel.attr.mls.cat,
3106                                         kcat + 1);
3107                                 if (acat < 0 || kcat < 0)
3108                                         break;
3109                         }
3110                         if (acat == kcat) {
3111                                 found = 1;
3112                                 break;
3113                         }
3114                 }
3115                 rcu_read_unlock();
3116
3117                 if (found)
3118                         return skp;
3119
3120                 if (ssp != NULL && ssp->smk_in == smack_known_star.smk_known)
3121                         return &smack_known_web;
3122                 return &smack_known_star;
3123         }
3124         if ((sap->flags & NETLBL_SECATTR_SECID) != 0) {
3125                 /*
3126                  * Looks like a fallback, which gives us a secid.
3127                  */
3128                 skp = smack_from_secid(sap->attr.secid);
3129                 /*
3130                  * This has got to be a bug because it is
3131                  * impossible to specify a fallback without
3132                  * specifying the label, which will ensure
3133                  * it has a secid, and the only way to get a
3134                  * secid is from a fallback.
3135                  */
3136                 BUG_ON(skp == NULL);
3137                 return skp;
3138         }
3139         /*
3140          * Without guidance regarding the smack value
3141          * for the packet fall back on the network
3142          * ambient value.
3143          */
3144         return smack_net_ambient;
3145 }
3146
3147 static int smk_skb_to_addr_ipv6(struct sk_buff *skb, struct sockaddr_in6 *sip)
3148 {
3149         u8 nexthdr;
3150         int offset;
3151         int proto = -EINVAL;
3152         struct ipv6hdr _ipv6h;
3153         struct ipv6hdr *ip6;
3154         __be16 frag_off;
3155         struct tcphdr _tcph, *th;
3156         struct udphdr _udph, *uh;
3157         struct dccp_hdr _dccph, *dh;
3158
3159         sip->sin6_port = 0;
3160
3161         offset = skb_network_offset(skb);
3162         ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3163         if (ip6 == NULL)
3164                 return -EINVAL;
3165         sip->sin6_addr = ip6->saddr;
3166
3167         nexthdr = ip6->nexthdr;
3168         offset += sizeof(_ipv6h);
3169         offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
3170         if (offset < 0)
3171                 return -EINVAL;
3172
3173         proto = nexthdr;
3174         switch (proto) {
3175         case IPPROTO_TCP:
3176                 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3177                 if (th != NULL)
3178                         sip->sin6_port = th->source;
3179                 break;
3180         case IPPROTO_UDP:
3181                 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3182                 if (uh != NULL)
3183                         sip->sin6_port = uh->source;
3184                 break;
3185         case IPPROTO_DCCP:
3186                 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3187                 if (dh != NULL)
3188                         sip->sin6_port = dh->dccph_sport;
3189                 break;
3190         }
3191         return proto;
3192 }
3193
3194 /**
3195  * smack_socket_sock_rcv_skb - Smack packet delivery access check
3196  * @sk: socket
3197  * @skb: packet
3198  *
3199  * Returns 0 if the packet should be delivered, an error code otherwise
3200  */
3201 static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
3202 {
3203         struct netlbl_lsm_secattr secattr;
3204         struct socket_smack *ssp = sk->sk_security;
3205         struct smack_known *skp;
3206         struct sockaddr_in6 sadd;
3207         int rc = 0;
3208         struct smk_audit_info ad;
3209         switch (sk->sk_family) {
3210         case PF_INET:
3211                 /*
3212                  * Translate what netlabel gave us.
3213                  */
3214                 netlbl_secattr_init(&secattr);
3215
3216                 rc = netlbl_skbuff_getattr(skb, sk->sk_family, &secattr);
3217                 if (rc == 0)
3218                         skp = smack_from_secattr(&secattr, ssp);
3219                 else
3220                         skp = smack_net_ambient;
3221
3222                 netlbl_secattr_destroy(&secattr);
3223
3224 #ifdef CONFIG_AUDIT
3225                 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_NET);
3226                 ad.a.u.net.family = sk->sk_family;
3227                 ad.a.u.net.netif = skb->skb_iif;
3228                 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
3229 #endif
3230                 /*
3231                  * Receiving a packet requires that the other end
3232                  * be able to write here. Read access is not required.
3233                  * This is the simplist possible security model
3234                  * for networking.
3235                  */
3236                 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
3237                 if (rc != 0)
3238                         netlbl_skbuff_err(skb, rc, 0);
3239                 break;
3240         case PF_INET6:
3241                 rc = smk_skb_to_addr_ipv6(skb, &sadd);
3242                 if (rc == IPPROTO_UDP || rc == IPPROTO_TCP)
3243                         rc = smk_ipv6_port_check(sk, &sadd, SMK_RECEIVING);
3244                 else
3245                         rc = 0;
3246                 break;
3247         }
3248         return rc;
3249 }
3250
3251 /**
3252  * smack_socket_getpeersec_stream - pull in packet label
3253  * @sock: the socket
3254  * @optval: user's destination
3255  * @optlen: size thereof
3256  * @len: max thereof
3257  *
3258  * returns zero on success, an error code otherwise
3259  */
3260 static int smack_socket_getpeersec_stream(struct socket *sock,
3261                                           char __user *optval,
3262                                           int __user *optlen, unsigned len)
3263 {
3264         struct socket_smack *ssp;
3265         char *rcp = "";
3266         int slen = 1;
3267         int rc = 0;
3268
3269         ssp = sock->sk->sk_security;
3270         if (ssp->smk_packet != NULL) {
3271                 rcp = ssp->smk_packet;
3272                 slen = strlen(rcp) + 1;
3273         }
3274
3275         if (slen > len)
3276                 rc = -ERANGE;
3277         else if (copy_to_user(optval, rcp, slen) != 0)
3278                 rc = -EFAULT;
3279
3280         if (put_user(slen, optlen) != 0)
3281                 rc = -EFAULT;
3282
3283         return rc;
3284 }
3285
3286
3287 /**
3288  * smack_socket_getpeersec_dgram - pull in packet label
3289  * @sock: the peer socket
3290  * @skb: packet data
3291  * @secid: pointer to where to put the secid of the packet
3292  *
3293  * Sets the netlabel socket state on sk from parent
3294  */
3295 static int smack_socket_getpeersec_dgram(struct socket *sock,
3296                                          struct sk_buff *skb, u32 *secid)
3297
3298 {
3299         struct netlbl_lsm_secattr secattr;
3300         struct socket_smack *ssp = NULL;
3301         struct smack_known *skp;
3302         int family = PF_UNSPEC;
3303         u32 s = 0;      /* 0 is the invalid secid */
3304         int rc;
3305
3306         if (skb != NULL) {
3307                 if (skb->protocol == htons(ETH_P_IP))
3308                         family = PF_INET;
3309                 else if (skb->protocol == htons(ETH_P_IPV6))
3310                         family = PF_INET6;
3311         }
3312         if (family == PF_UNSPEC && sock != NULL)
3313                 family = sock->sk->sk_family;
3314
3315         if (family == PF_UNIX) {
3316                 ssp = sock->sk->sk_security;
3317                 s = ssp->smk_out->smk_secid;
3318         } else if (family == PF_INET || family == PF_INET6) {
3319                 /*
3320                  * Translate what netlabel gave us.
3321                  */
3322                 if (sock != NULL && sock->sk != NULL)
3323                         ssp = sock->sk->sk_security;
3324                 netlbl_secattr_init(&secattr);
3325                 rc = netlbl_skbuff_getattr(skb, family, &secattr);
3326                 if (rc == 0) {
3327                         skp = smack_from_secattr(&secattr, ssp);
3328                         s = skp->smk_secid;
3329                 }
3330                 netlbl_secattr_destroy(&secattr);
3331         }
3332         *secid = s;
3333         if (s == 0)
3334                 return -EINVAL;
3335         return 0;
3336 }
3337
3338 /**
3339  * smack_sock_graft - Initialize a newly created socket with an existing sock
3340  * @sk: child sock
3341  * @parent: parent socket
3342  *
3343  * Set the smk_{in,out} state of an existing sock based on the process that
3344  * is creating the new socket.
3345  */
3346 static void smack_sock_graft(struct sock *sk, struct socket *parent)
3347 {
3348         struct socket_smack *ssp;
3349         struct smack_known *skp = smk_of_current();
3350
3351         if (sk == NULL ||
3352             (sk->sk_family != PF_INET && sk->sk_family != PF_INET6))
3353                 return;
3354
3355         ssp = sk->sk_security;
3356         ssp->smk_in = skp->smk_known;
3357         ssp->smk_out = skp;
3358         /* cssp->smk_packet is already set in smack_inet_csk_clone() */
3359 }
3360
3361 /**
3362  * smack_inet_conn_request - Smack access check on connect
3363  * @sk: socket involved
3364  * @skb: packet
3365  * @req: unused
3366  *
3367  * Returns 0 if a task with the packet label could write to
3368  * the socket, otherwise an error code
3369  */
3370 static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
3371                                    struct request_sock *req)
3372 {
3373         u16 family = sk->sk_family;
3374         struct smack_known *skp;
3375         struct socket_smack *ssp = sk->sk_security;
3376         struct netlbl_lsm_secattr secattr;
3377         struct sockaddr_in addr;
3378         struct iphdr *hdr;
3379         char *hsp;
3380         int rc;
3381         struct smk_audit_info ad;
3382
3383         if (family == PF_INET6) {
3384                 /*
3385                  * Handle mapped IPv4 packets arriving
3386                  * via IPv6 sockets. Don't set up netlabel
3387                  * processing on IPv6.
3388                  */
3389                 if (skb->protocol == htons(ETH_P_IP))
3390                         family = PF_INET;
3391                 else
3392                         return 0;
3393         }
3394
3395         netlbl_secattr_init(&secattr);
3396         rc = netlbl_skbuff_getattr(skb, family, &secattr);
3397         if (rc == 0)
3398                 skp = smack_from_secattr(&secattr, ssp);
3399         else
3400                 skp = &smack_known_huh;
3401         netlbl_secattr_destroy(&secattr);
3402
3403 #ifdef CONFIG_AUDIT
3404         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_NET);
3405         ad.a.u.net.family = family;
3406         ad.a.u.net.netif = skb->skb_iif;
3407         ipv4_skb_to_auditdata(skb, &ad.a, NULL);
3408 #endif
3409         /*
3410          * Receiving a packet requires that the other end be able to write
3411          * here. Read access is not required.
3412          */
3413         rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
3414         if (rc != 0)
3415                 return rc;
3416
3417         /*
3418          * Save the peer's label in the request_sock so we can later setup
3419          * smk_packet in the child socket so that SO_PEERCRED can report it.
3420          */
3421         req->peer_secid = skp->smk_secid;
3422
3423         /*
3424          * We need to decide if we want to label the incoming connection here
3425          * if we do we only need to label the request_sock and the stack will
3426          * propagate the wire-label to the sock when it is created.
3427          */
3428         hdr = ip_hdr(skb);
3429         addr.sin_addr.s_addr = hdr->saddr;
3430         rcu_read_lock();
3431         hsp = smack_host_label(&addr);
3432         rcu_read_unlock();
3433
3434         if (hsp == NULL)
3435                 rc = netlbl_req_setattr(req, &skp->smk_netlabel);
3436         else
3437                 netlbl_req_delattr(req);
3438
3439         return rc;
3440 }
3441
3442 /**
3443  * smack_inet_csk_clone - Copy the connection information to the new socket
3444  * @sk: the new socket
3445  * @req: the connection's request_sock
3446  *
3447  * Transfer the connection's peer label to the newly created socket.
3448  */
3449 static void smack_inet_csk_clone(struct sock *sk,
3450                                  const struct request_sock *req)
3451 {
3452         struct socket_smack *ssp = sk->sk_security;
3453         struct smack_known *skp;
3454
3455         if (req->peer_secid != 0) {
3456                 skp = smack_from_secid(req->peer_secid);
3457                 ssp->smk_packet = skp->smk_known;
3458         } else
3459                 ssp->smk_packet = NULL;
3460 }
3461
3462 /*
3463  * Key management security hooks
3464  *
3465  * Casey has not tested key support very heavily.
3466  * The permission check is most likely too restrictive.
3467  * If you care about keys please have a look.
3468  */
3469 #ifdef CONFIG_KEYS
3470
3471 /**
3472  * smack_key_alloc - Set the key security blob
3473  * @key: object
3474  * @cred: the credentials to use
3475  * @flags: unused
3476  *
3477  * No allocation required
3478  *
3479  * Returns 0
3480  */
3481 static int smack_key_alloc(struct key *key, const struct cred *cred,
3482                            unsigned long flags)
3483 {
3484         struct smack_known *skp = smk_of_task(cred->security);
3485
3486         key->security = skp->smk_known;
3487         return 0;
3488 }
3489
3490 /**
3491  * smack_key_free - Clear the key security blob
3492  * @key: the object
3493  *
3494  * Clear the blob pointer
3495  */
3496 static void smack_key_free(struct key *key)
3497 {
3498         key->security = NULL;
3499 }
3500
3501 /*
3502  * smack_key_permission - Smack access on a key
3503  * @key_ref: gets to the object
3504  * @cred: the credentials to use
3505  * @perm: unused
3506  *
3507  * Return 0 if the task has read and write to the object,
3508  * an error code otherwise
3509  */
3510 static int smack_key_permission(key_ref_t key_ref,
3511                                 const struct cred *cred, key_perm_t perm)
3512 {
3513         struct key *keyp;
3514         struct smk_audit_info ad;
3515         struct smack_known *tkp = smk_of_task(cred->security);
3516
3517         keyp = key_ref_to_ptr(key_ref);
3518         if (keyp == NULL)
3519                 return -EINVAL;
3520         /*
3521          * If the key hasn't been initialized give it access so that
3522          * it may do so.
3523          */
3524         if (keyp->security == NULL)
3525                 return 0;
3526         /*
3527          * This should not occur
3528          */
3529         if (tkp == NULL)
3530                 return -EACCES;
3531 #ifdef CONFIG_AUDIT
3532         smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
3533         ad.a.u.key_struct.key = keyp->serial;
3534         ad.a.u.key_struct.key_desc = keyp->description;
3535 #endif
3536         return smk_access(tkp, keyp->security, MAY_READWRITE, &ad);
3537 }
3538 #endif /* CONFIG_KEYS */
3539
3540 /*
3541  * Smack Audit hooks
3542  *
3543  * Audit requires a unique representation of each Smack specific
3544  * rule. This unique representation is used to distinguish the
3545  * object to be audited from remaining kernel objects and also
3546  * works as a glue between the audit hooks.
3547  *
3548  * Since repository entries are added but never deleted, we'll use
3549  * the smack_known label address related to the given audit rule as
3550  * the needed unique representation. This also better fits the smack
3551  * model where nearly everything is a label.
3552  */
3553 #ifdef CONFIG_AUDIT
3554
3555 /**
3556  * smack_audit_rule_init - Initialize a smack audit rule
3557  * @field: audit rule fields given from user-space (audit.h)
3558  * @op: required testing operator (=, !=, >, <, ...)
3559  * @rulestr: smack label to be audited
3560  * @vrule: pointer to save our own audit rule representation
3561  *
3562  * Prepare to audit cases where (@field @op @rulestr) is true.
3563  * The label to be audited is created if necessay.
3564  */
3565 static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
3566 {
3567         char **rule = (char **)vrule;
3568         *rule = NULL;
3569
3570         if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3571                 return -EINVAL;
3572
3573         if (op != Audit_equal && op != Audit_not_equal)
3574                 return -EINVAL;
3575
3576         *rule = smk_import(rulestr, 0);
3577
3578         return 0;
3579 }
3580
3581 /**
3582  * smack_audit_rule_known - Distinguish Smack audit rules
3583  * @krule: rule of interest, in Audit kernel representation format
3584  *
3585  * This is used to filter Smack rules from remaining Audit ones.
3586  * If it's proved that this rule belongs to us, the
3587  * audit_rule_match hook will be called to do the final judgement.
3588  */
3589 static int smack_audit_rule_known(struct audit_krule *krule)
3590 {
3591         struct audit_field *f;
3592         int i;
3593
3594         for (i = 0; i < krule->field_count; i++) {
3595                 f = &krule->fields[i];
3596
3597                 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
3598                         return 1;
3599         }
3600
3601         return 0;
3602 }
3603
3604 /**
3605  * smack_audit_rule_match - Audit given object ?
3606  * @secid: security id for identifying the object to test
3607  * @field: audit rule flags given from user-space
3608  * @op: required testing operator
3609  * @vrule: smack internal rule presentation
3610  * @actx: audit context associated with the check
3611  *
3612  * The core Audit hook. It's used to take the decision of
3613  * whether to audit or not to audit a given object.
3614  */
3615 static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule,
3616                                   struct audit_context *actx)
3617 {
3618         struct smack_known *skp;
3619         char *rule = vrule;
3620
3621         if (!rule) {
3622                 audit_log(actx, GFP_KERNEL, AUDIT_SELINUX_ERR,
3623                           "Smack: missing rule\n");
3624                 return -ENOENT;
3625         }
3626
3627         if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3628                 return 0;
3629
3630         skp = smack_from_secid(secid);
3631
3632         /*
3633          * No need to do string comparisons. If a match occurs,
3634          * both pointers will point to the same smack_known
3635          * label.
3636          */
3637         if (op == Audit_equal)
3638                 return (rule == skp->smk_known);
3639         if (op == Audit_not_equal)
3640                 return (rule != skp->smk_known);
3641
3642         return 0;
3643 }
3644
3645 /**
3646  * smack_audit_rule_free - free smack rule representation
3647  * @vrule: rule to be freed.
3648  *
3649  * No memory was allocated.
3650  */
3651 static void smack_audit_rule_free(void *vrule)
3652 {
3653         /* No-op */
3654 }
3655
3656 #endif /* CONFIG_AUDIT */
3657
3658 /**
3659  * smack_secid_to_secctx - return the smack label for a secid
3660  * @secid: incoming integer
3661  * @secdata: destination
3662  * @seclen: how long it is
3663  *
3664  * Exists for networking code.
3665  */
3666 static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
3667 {
3668         struct smack_known *skp = smack_from_secid(secid);
3669
3670         if (secdata)
3671                 *secdata = skp->smk_known;
3672         *seclen = strlen(skp->smk_known);
3673         return 0;
3674 }
3675
3676 /**
3677  * smack_secctx_to_secid - return the secid for a smack label
3678  * @secdata: smack label
3679  * @seclen: how long result is
3680  * @secid: outgoing integer
3681  *
3682  * Exists for audit and networking code.
3683  */
3684 static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
3685 {
3686         *secid = smack_to_secid(secdata);
3687         return 0;
3688 }
3689
3690 /**
3691  * smack_release_secctx - don't do anything.
3692  * @secdata: unused
3693  * @seclen: unused
3694  *
3695  * Exists to make sure nothing gets done, and properly
3696  */
3697 static void smack_release_secctx(char *secdata, u32 seclen)
3698 {
3699 }
3700
3701 static int smack_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
3702 {
3703         return smack_inode_setsecurity(inode, XATTR_SMACK_SUFFIX, ctx, ctxlen, 0);
3704 }
3705
3706 static int smack_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
3707 {
3708         return __vfs_setxattr_noperm(dentry, XATTR_NAME_SMACK, ctx, ctxlen, 0);
3709 }
3710
3711 static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
3712 {
3713         int len = 0;
3714         len = smack_inode_getsecurity(inode, XATTR_SMACK_SUFFIX, ctx, true);
3715
3716         if (len < 0)
3717                 return len;
3718         *ctxlen = len;
3719         return 0;
3720 }
3721
3722 struct security_operations smack_ops = {
3723         .name =                         "smack",
3724
3725         .ptrace_access_check =          smack_ptrace_access_check,
3726         .ptrace_traceme =               smack_ptrace_traceme,
3727         .syslog =                       smack_syslog,
3728
3729         .sb_alloc_security =            smack_sb_alloc_security,
3730         .sb_free_security =             smack_sb_free_security,
3731         .sb_copy_data =                 smack_sb_copy_data,
3732         .sb_kern_mount =                smack_sb_kern_mount,
3733         .sb_statfs =                    smack_sb_statfs,
3734         .sb_mount =                     smack_sb_mount,
3735         .sb_umount =                    smack_sb_umount,
3736
3737         .bprm_set_creds =               smack_bprm_set_creds,
3738         .bprm_committing_creds =        smack_bprm_committing_creds,
3739         .bprm_secureexec =              smack_bprm_secureexec,
3740
3741         .inode_alloc_security =         smack_inode_alloc_security,
3742         .inode_free_security =          smack_inode_free_security,
3743         .inode_init_security =          smack_inode_init_security,
3744         .inode_link =                   smack_inode_link,
3745         .inode_unlink =                 smack_inode_unlink,
3746         .inode_rmdir =                  smack_inode_rmdir,
3747         .inode_rename =                 smack_inode_rename,
3748         .inode_permission =             smack_inode_permission,
3749         .inode_setattr =                smack_inode_setattr,
3750         .inode_getattr =                smack_inode_getattr,
3751         .inode_setxattr =               smack_inode_setxattr,
3752         .inode_post_setxattr =          smack_inode_post_setxattr,
3753         .inode_getxattr =               smack_inode_getxattr,
3754         .inode_removexattr =            smack_inode_removexattr,
3755         .inode_getsecurity =            smack_inode_getsecurity,
3756         .inode_setsecurity =            smack_inode_setsecurity,
3757         .inode_listsecurity =           smack_inode_listsecurity,
3758         .inode_getsecid =               smack_inode_getsecid,
3759
3760         .file_permission =              smack_file_permission,
3761         .file_alloc_security =          smack_file_alloc_security,
3762         .file_free_security =           smack_file_free_security,
3763         .file_ioctl =                   smack_file_ioctl,
3764         .file_lock =                    smack_file_lock,
3765         .file_fcntl =                   smack_file_fcntl,
3766         .file_mmap =                    smack_file_mmap,
3767         .file_set_fowner =              smack_file_set_fowner,
3768         .file_send_sigiotask =          smack_file_send_sigiotask,
3769         .file_receive =                 smack_file_receive,
3770
3771         .dentry_open =                  smack_dentry_open,
3772
3773         .cred_alloc_blank =             smack_cred_alloc_blank,
3774         .cred_free =                    smack_cred_free,
3775         .cred_prepare =                 smack_cred_prepare,
3776         .cred_transfer =                smack_cred_transfer,
3777         .kernel_act_as =                smack_kernel_act_as,
3778         .kernel_create_files_as =       smack_kernel_create_files_as,
3779         .task_setpgid =                 smack_task_setpgid,
3780         .task_getpgid =                 smack_task_getpgid,
3781         .task_getsid =                  smack_task_getsid,
3782         .task_getsecid =                smack_task_getsecid,
3783         .task_setnice =                 smack_task_setnice,
3784         .task_setioprio =               smack_task_setioprio,
3785         .task_getioprio =               smack_task_getioprio,
3786         .task_setscheduler =            smack_task_setscheduler,
3787         .task_getscheduler =            smack_task_getscheduler,
3788         .task_movememory =              smack_task_movememory,
3789         .task_kill =                    smack_task_kill,
3790         .task_wait =                    smack_task_wait,
3791         .task_to_inode =                smack_task_to_inode,
3792
3793         .ipc_permission =               smack_ipc_permission,
3794         .ipc_getsecid =                 smack_ipc_getsecid,
3795
3796         .msg_msg_alloc_security =       smack_msg_msg_alloc_security,
3797         .msg_msg_free_security =        smack_msg_msg_free_security,
3798
3799         .msg_queue_alloc_security =     smack_msg_queue_alloc_security,
3800         .msg_queue_free_security =      smack_msg_queue_free_security,
3801         .msg_queue_associate =          smack_msg_queue_associate,
3802         .msg_queue_msgctl =             smack_msg_queue_msgctl,
3803         .msg_queue_msgsnd =             smack_msg_queue_msgsnd,
3804         .msg_queue_msgrcv =             smack_msg_queue_msgrcv,
3805
3806         .shm_alloc_security =           smack_shm_alloc_security,
3807         .shm_free_security =            smack_shm_free_security,
3808         .shm_associate =                smack_shm_associate,
3809         .shm_shmctl =                   smack_shm_shmctl,
3810         .shm_shmat =                    smack_shm_shmat,
3811
3812         .sem_alloc_security =           smack_sem_alloc_security,
3813         .sem_free_security =            smack_sem_free_security,
3814         .sem_associate =                smack_sem_associate,
3815         .sem_semctl =                   smack_sem_semctl,
3816         .sem_semop =                    smack_sem_semop,
3817
3818         .d_instantiate =                smack_d_instantiate,
3819
3820         .getprocattr =                  smack_getprocattr,
3821         .setprocattr =                  smack_setprocattr,
3822
3823         .unix_stream_connect =          smack_unix_stream_connect,
3824         .unix_may_send =                smack_unix_may_send,
3825
3826         .socket_post_create =           smack_socket_post_create,
3827         .socket_bind =                  smack_socket_bind,
3828         .socket_connect =               smack_socket_connect,
3829         .socket_sendmsg =               smack_socket_sendmsg,
3830         .socket_sock_rcv_skb =          smack_socket_sock_rcv_skb,
3831         .socket_getpeersec_stream =     smack_socket_getpeersec_stream,
3832         .socket_getpeersec_dgram =      smack_socket_getpeersec_dgram,
3833         .sk_alloc_security =            smack_sk_alloc_security,
3834         .sk_free_security =             smack_sk_free_security,
3835         .sock_graft =                   smack_sock_graft,
3836         .inet_conn_request =            smack_inet_conn_request,
3837         .inet_csk_clone =               smack_inet_csk_clone,
3838
3839  /* key management security hooks */
3840 #ifdef CONFIG_KEYS
3841         .key_alloc =                    smack_key_alloc,
3842         .key_free =                     smack_key_free,
3843         .key_permission =               smack_key_permission,
3844 #endif /* CONFIG_KEYS */
3845
3846  /* Audit hooks */
3847 #ifdef CONFIG_AUDIT
3848         .audit_rule_init =              smack_audit_rule_init,
3849         .audit_rule_known =             smack_audit_rule_known,
3850         .audit_rule_match =             smack_audit_rule_match,
3851         .audit_rule_free =              smack_audit_rule_free,
3852 #endif /* CONFIG_AUDIT */
3853
3854         .secid_to_secctx =              smack_secid_to_secctx,
3855         .secctx_to_secid =              smack_secctx_to_secid,
3856         .release_secctx =               smack_release_secctx,
3857         .inode_notifysecctx =           smack_inode_notifysecctx,
3858         .inode_setsecctx =              smack_inode_setsecctx,
3859         .inode_getsecctx =              smack_inode_getsecctx,
3860 };
3861
3862
3863 static __init void init_smack_known_list(void)
3864 {
3865         /*
3866          * Initialize rule list locks
3867          */
3868         mutex_init(&smack_known_huh.smk_rules_lock);
3869         mutex_init(&smack_known_hat.smk_rules_lock);
3870         mutex_init(&smack_known_floor.smk_rules_lock);
3871         mutex_init(&smack_known_star.smk_rules_lock);
3872         mutex_init(&smack_known_invalid.smk_rules_lock);
3873         mutex_init(&smack_known_web.smk_rules_lock);
3874         /*
3875          * Initialize rule lists
3876          */
3877         INIT_LIST_HEAD(&smack_known_huh.smk_rules);
3878         INIT_LIST_HEAD(&smack_known_hat.smk_rules);
3879         INIT_LIST_HEAD(&smack_known_star.smk_rules);
3880         INIT_LIST_HEAD(&smack_known_floor.smk_rules);
3881         INIT_LIST_HEAD(&smack_known_invalid.smk_rules);
3882         INIT_LIST_HEAD(&smack_known_web.smk_rules);
3883         /*
3884          * Create the known labels list
3885          */
3886         smk_insert_entry(&smack_known_huh);
3887         smk_insert_entry(&smack_known_hat);
3888         smk_insert_entry(&smack_known_star);
3889         smk_insert_entry(&smack_known_floor);
3890         smk_insert_entry(&smack_known_invalid);
3891         smk_insert_entry(&smack_known_web);
3892 }
3893
3894 /* KMEM caches for fast and thrifty allocations */
3895 struct kmem_cache *smack_rule_cache;
3896 struct kmem_cache *smack_master_list_cache;
3897
3898 /**
3899  * smack_init - initialize the smack system
3900  *
3901  * Returns 0
3902  */
3903 static __init int smack_init(void)
3904 {
3905         struct cred *cred;
3906         struct task_smack *tsp;
3907
3908         if (!security_module_enable(&smack_ops))
3909                 return 0;
3910
3911         smack_rule_cache = KMEM_CACHE(smack_rule, 0);
3912         if (!smack_rule_cache)
3913                 return -ENOMEM;
3914
3915         smack_master_list_cache = KMEM_CACHE(smack_master_list, 0);
3916         if (!smack_master_list_cache) {
3917                 kmem_cache_destroy(smack_rule_cache);
3918                 return -ENOMEM;
3919         }
3920
3921         smack_inode_cache = KMEM_CACHE(inode_smack, 0);
3922         if (!smack_inode_cache) {
3923                 kmem_cache_destroy(smack_master_list_cache);
3924                 kmem_cache_destroy(smack_rule_cache);
3925                 return -ENOMEM;
3926         }
3927
3928         tsp = new_task_smack(&smack_known_floor, &smack_known_floor,
3929                                 GFP_KERNEL);
3930         if (tsp == NULL) {
3931                 kmem_cache_destroy(smack_master_list_cache);
3932                 kmem_cache_destroy(smack_rule_cache);
3933                 kmem_cache_destroy(smack_inode_cache);
3934                 return -ENOMEM;
3935         }
3936
3937         printk(KERN_INFO "Smack:  Initializing.\n");
3938
3939         /*
3940          * Set the security state for the initial task.
3941          */
3942         cred = (struct cred *) current->cred;
3943         cred->security = tsp;
3944
3945         /* initialize the smack_known_list */
3946         init_smack_known_list();
3947
3948         /*
3949          * Register with LSM
3950          */
3951         if (register_security(&smack_ops))
3952                 panic("smack: Unable to register with kernel.\n");
3953
3954         return 0;
3955 }
3956
3957 #ifdef CONFIG_SECURITY_SMACK_PERMISSIVE_MODE
3958 static int __init mode_setup(char *str)
3959 {
3960         unsigned long mode;
3961         if (!kstrtoul(str, 10, &mode))
3962                 permissive_mode = mode ? 1 : 0;
3963         return 1;
3964 }
3965 __setup("permissive=", mode_setup);
3966 #endif
3967
3968 /*
3969  * Smack requires early initialization in order to label
3970  * all processes and objects when they are created.
3971  */
3972 security_initcall(smack_init);