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