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