Security: split proc ptrace checking into read vs. attach
[safe/jmp/linux-2.6] / 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  *  Author:
7  *      Casey Schaufler <casey@schaufler-ca.com>
8  *
9  *  Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
10  *
11  *      This program is free software; you can redistribute it and/or modify
12  *      it under the terms of the GNU General Public License version 2,
13  *      as published by the Free Software Foundation.
14  */
15
16 #include <linux/xattr.h>
17 #include <linux/pagemap.h>
18 #include <linux/mount.h>
19 #include <linux/stat.h>
20 #include <linux/ext2_fs.h>
21 #include <linux/kd.h>
22 #include <asm/ioctls.h>
23 #include <linux/tcp.h>
24 #include <linux/udp.h>
25 #include <linux/mutex.h>
26 #include <linux/pipe_fs_i.h>
27 #include <net/netlabel.h>
28 #include <net/cipso_ipv4.h>
29 #include <linux/audit.h>
30
31 #include "smack.h"
32
33 /*
34  * I hope these are the hokeyist lines of code in the module. Casey.
35  */
36 #define DEVPTS_SUPER_MAGIC      0x1cd1
37 #define SOCKFS_MAGIC            0x534F434B
38 #define TMPFS_MAGIC             0x01021994
39
40 /**
41  * smk_fetch - Fetch the smack label from a file.
42  * @ip: a pointer to the inode
43  * @dp: a pointer to the dentry
44  *
45  * Returns a pointer to the master list entry for the Smack label
46  * or NULL if there was no label to fetch.
47  */
48 static char *smk_fetch(struct inode *ip, struct dentry *dp)
49 {
50         int rc;
51         char in[SMK_LABELLEN];
52
53         if (ip->i_op->getxattr == NULL)
54                 return NULL;
55
56         rc = ip->i_op->getxattr(dp, XATTR_NAME_SMACK, in, SMK_LABELLEN);
57         if (rc < 0)
58                 return NULL;
59
60         return smk_import(in, rc);
61 }
62
63 /**
64  * new_inode_smack - allocate an inode security blob
65  * @smack: a pointer to the Smack label to use in the blob
66  *
67  * Returns the new blob or NULL if there's no memory available
68  */
69 struct inode_smack *new_inode_smack(char *smack)
70 {
71         struct inode_smack *isp;
72
73         isp = kzalloc(sizeof(struct inode_smack), GFP_KERNEL);
74         if (isp == NULL)
75                 return NULL;
76
77         isp->smk_inode = smack;
78         isp->smk_flags = 0;
79         mutex_init(&isp->smk_lock);
80
81         return isp;
82 }
83
84 /*
85  * LSM hooks.
86  * We he, that is fun!
87  */
88
89 /**
90  * smack_ptrace - Smack approval on ptrace
91  * @ptp: parent task pointer
92  * @ctp: child task pointer
93  *
94  * Returns 0 if access is OK, an error code otherwise
95  *
96  * Do the capability checks, and require read and write.
97  */
98 static int smack_ptrace(struct task_struct *ptp, struct task_struct *ctp,
99                         unsigned int mode)
100 {
101         int rc;
102
103         rc = cap_ptrace(ptp, ctp, mode);
104         if (rc != 0)
105                 return rc;
106
107         rc = smk_access(ptp->security, ctp->security, MAY_READWRITE);
108         if (rc != 0 && __capable(ptp, CAP_MAC_OVERRIDE))
109                 return 0;
110
111         return rc;
112 }
113
114 /**
115  * smack_syslog - Smack approval on syslog
116  * @type: message type
117  *
118  * Require that the task has the floor label
119  *
120  * Returns 0 on success, error code otherwise.
121  */
122 static int smack_syslog(int type)
123 {
124         int rc;
125         char *sp = current->security;
126
127         rc = cap_syslog(type);
128         if (rc != 0)
129                 return rc;
130
131         if (capable(CAP_MAC_OVERRIDE))
132                 return 0;
133
134          if (sp != smack_known_floor.smk_known)
135                 rc = -EACCES;
136
137         return rc;
138 }
139
140
141 /*
142  * Superblock Hooks.
143  */
144
145 /**
146  * smack_sb_alloc_security - allocate a superblock blob
147  * @sb: the superblock getting the blob
148  *
149  * Returns 0 on success or -ENOMEM on error.
150  */
151 static int smack_sb_alloc_security(struct super_block *sb)
152 {
153         struct superblock_smack *sbsp;
154
155         sbsp = kzalloc(sizeof(struct superblock_smack), GFP_KERNEL);
156
157         if (sbsp == NULL)
158                 return -ENOMEM;
159
160         sbsp->smk_root = smack_known_floor.smk_known;
161         sbsp->smk_default = smack_known_floor.smk_known;
162         sbsp->smk_floor = smack_known_floor.smk_known;
163         sbsp->smk_hat = smack_known_hat.smk_known;
164         sbsp->smk_initialized = 0;
165         spin_lock_init(&sbsp->smk_sblock);
166
167         sb->s_security = sbsp;
168
169         return 0;
170 }
171
172 /**
173  * smack_sb_free_security - free a superblock blob
174  * @sb: the superblock getting the blob
175  *
176  */
177 static void smack_sb_free_security(struct super_block *sb)
178 {
179         kfree(sb->s_security);
180         sb->s_security = NULL;
181 }
182
183 /**
184  * smack_sb_copy_data - copy mount options data for processing
185  * @type: file system type
186  * @orig: where to start
187  * @smackopts
188  *
189  * Returns 0 on success or -ENOMEM on error.
190  *
191  * Copy the Smack specific mount options out of the mount
192  * options list.
193  */
194 static int smack_sb_copy_data(char *orig, char *smackopts)
195 {
196         char *cp, *commap, *otheropts, *dp;
197
198         otheropts = (char *)get_zeroed_page(GFP_KERNEL);
199         if (otheropts == NULL)
200                 return -ENOMEM;
201
202         for (cp = orig, commap = orig; commap != NULL; cp = commap + 1) {
203                 if (strstr(cp, SMK_FSDEFAULT) == cp)
204                         dp = smackopts;
205                 else if (strstr(cp, SMK_FSFLOOR) == cp)
206                         dp = smackopts;
207                 else if (strstr(cp, SMK_FSHAT) == cp)
208                         dp = smackopts;
209                 else if (strstr(cp, SMK_FSROOT) == cp)
210                         dp = smackopts;
211                 else
212                         dp = otheropts;
213
214                 commap = strchr(cp, ',');
215                 if (commap != NULL)
216                         *commap = '\0';
217
218                 if (*dp != '\0')
219                         strcat(dp, ",");
220                 strcat(dp, cp);
221         }
222
223         strcpy(orig, otheropts);
224         free_page((unsigned long)otheropts);
225
226         return 0;
227 }
228
229 /**
230  * smack_sb_kern_mount - Smack specific mount processing
231  * @sb: the file system superblock
232  * @data: the smack mount options
233  *
234  * Returns 0 on success, an error code on failure
235  */
236 static int smack_sb_kern_mount(struct super_block *sb, void *data)
237 {
238         struct dentry *root = sb->s_root;
239         struct inode *inode = root->d_inode;
240         struct superblock_smack *sp = sb->s_security;
241         struct inode_smack *isp;
242         char *op;
243         char *commap;
244         char *nsp;
245
246         spin_lock(&sp->smk_sblock);
247         if (sp->smk_initialized != 0) {
248                 spin_unlock(&sp->smk_sblock);
249                 return 0;
250         }
251         sp->smk_initialized = 1;
252         spin_unlock(&sp->smk_sblock);
253
254         for (op = data; op != NULL; op = commap) {
255                 commap = strchr(op, ',');
256                 if (commap != NULL)
257                         *commap++ = '\0';
258
259                 if (strncmp(op, SMK_FSHAT, strlen(SMK_FSHAT)) == 0) {
260                         op += strlen(SMK_FSHAT);
261                         nsp = smk_import(op, 0);
262                         if (nsp != NULL)
263                                 sp->smk_hat = nsp;
264                 } else if (strncmp(op, SMK_FSFLOOR, strlen(SMK_FSFLOOR)) == 0) {
265                         op += strlen(SMK_FSFLOOR);
266                         nsp = smk_import(op, 0);
267                         if (nsp != NULL)
268                                 sp->smk_floor = nsp;
269                 } else if (strncmp(op, SMK_FSDEFAULT,
270                                    strlen(SMK_FSDEFAULT)) == 0) {
271                         op += strlen(SMK_FSDEFAULT);
272                         nsp = smk_import(op, 0);
273                         if (nsp != NULL)
274                                 sp->smk_default = nsp;
275                 } else if (strncmp(op, SMK_FSROOT, strlen(SMK_FSROOT)) == 0) {
276                         op += strlen(SMK_FSROOT);
277                         nsp = smk_import(op, 0);
278                         if (nsp != NULL)
279                                 sp->smk_root = nsp;
280                 }
281         }
282
283         /*
284          * Initialize the root inode.
285          */
286         isp = inode->i_security;
287         if (isp == NULL)
288                 inode->i_security = new_inode_smack(sp->smk_root);
289         else
290                 isp->smk_inode = sp->smk_root;
291
292         return 0;
293 }
294
295 /**
296  * smack_sb_statfs - Smack check on statfs
297  * @dentry: identifies the file system in question
298  *
299  * Returns 0 if current can read the floor of the filesystem,
300  * and error code otherwise
301  */
302 static int smack_sb_statfs(struct dentry *dentry)
303 {
304         struct superblock_smack *sbp = dentry->d_sb->s_security;
305
306         return smk_curacc(sbp->smk_floor, MAY_READ);
307 }
308
309 /**
310  * smack_sb_mount - Smack check for mounting
311  * @dev_name: unused
312  * @nd: mount point
313  * @type: unused
314  * @flags: unused
315  * @data: unused
316  *
317  * Returns 0 if current can write the floor of the filesystem
318  * being mounted on, an error code otherwise.
319  */
320 static int smack_sb_mount(char *dev_name, struct path *path,
321                           char *type, unsigned long flags, void *data)
322 {
323         struct superblock_smack *sbp = path->mnt->mnt_sb->s_security;
324
325         return smk_curacc(sbp->smk_floor, MAY_WRITE);
326 }
327
328 /**
329  * smack_sb_umount - Smack check for unmounting
330  * @mnt: file system to unmount
331  * @flags: unused
332  *
333  * Returns 0 if current can write the floor of the filesystem
334  * being unmounted, an error code otherwise.
335  */
336 static int smack_sb_umount(struct vfsmount *mnt, int flags)
337 {
338         struct superblock_smack *sbp;
339
340         sbp = mnt->mnt_sb->s_security;
341
342         return smk_curacc(sbp->smk_floor, MAY_WRITE);
343 }
344
345 /*
346  * Inode hooks
347  */
348
349 /**
350  * smack_inode_alloc_security - allocate an inode blob
351  * @inode - the inode in need of a blob
352  *
353  * Returns 0 if it gets a blob, -ENOMEM otherwise
354  */
355 static int smack_inode_alloc_security(struct inode *inode)
356 {
357         inode->i_security = new_inode_smack(current->security);
358         if (inode->i_security == NULL)
359                 return -ENOMEM;
360         return 0;
361 }
362
363 /**
364  * smack_inode_free_security - free an inode blob
365  * @inode - the inode with a blob
366  *
367  * Clears the blob pointer in inode
368  */
369 static void smack_inode_free_security(struct inode *inode)
370 {
371         kfree(inode->i_security);
372         inode->i_security = NULL;
373 }
374
375 /**
376  * smack_inode_init_security - copy out the smack from an inode
377  * @inode: the inode
378  * @dir: unused
379  * @name: where to put the attribute name
380  * @value: where to put the attribute value
381  * @len: where to put the length of the attribute
382  *
383  * Returns 0 if it all works out, -ENOMEM if there's no memory
384  */
385 static int smack_inode_init_security(struct inode *inode, struct inode *dir,
386                                      char **name, void **value, size_t *len)
387 {
388         char *isp = smk_of_inode(inode);
389
390         if (name) {
391                 *name = kstrdup(XATTR_SMACK_SUFFIX, GFP_KERNEL);
392                 if (*name == NULL)
393                         return -ENOMEM;
394         }
395
396         if (value) {
397                 *value = kstrdup(isp, GFP_KERNEL);
398                 if (*value == NULL)
399                         return -ENOMEM;
400         }
401
402         if (len)
403                 *len = strlen(isp) + 1;
404
405         return 0;
406 }
407
408 /**
409  * smack_inode_link - Smack check on link
410  * @old_dentry: the existing object
411  * @dir: unused
412  * @new_dentry: the new object
413  *
414  * Returns 0 if access is permitted, an error code otherwise
415  */
416 static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
417                             struct dentry *new_dentry)
418 {
419         int rc;
420         char *isp;
421
422         isp = smk_of_inode(old_dentry->d_inode);
423         rc = smk_curacc(isp, MAY_WRITE);
424
425         if (rc == 0 && new_dentry->d_inode != NULL) {
426                 isp = smk_of_inode(new_dentry->d_inode);
427                 rc = smk_curacc(isp, MAY_WRITE);
428         }
429
430         return rc;
431 }
432
433 /**
434  * smack_inode_unlink - Smack check on inode deletion
435  * @dir: containing directory object
436  * @dentry: file to unlink
437  *
438  * Returns 0 if current can write the containing directory
439  * and the object, error code otherwise
440  */
441 static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
442 {
443         struct inode *ip = dentry->d_inode;
444         int rc;
445
446         /*
447          * You need write access to the thing you're unlinking
448          */
449         rc = smk_curacc(smk_of_inode(ip), MAY_WRITE);
450         if (rc == 0)
451                 /*
452                  * You also need write access to the containing directory
453                  */
454                 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE);
455
456         return rc;
457 }
458
459 /**
460  * smack_inode_rmdir - Smack check on directory deletion
461  * @dir: containing directory object
462  * @dentry: directory to unlink
463  *
464  * Returns 0 if current can write the containing directory
465  * and the directory, error code otherwise
466  */
467 static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
468 {
469         int rc;
470
471         /*
472          * You need write access to the thing you're removing
473          */
474         rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
475         if (rc == 0)
476                 /*
477                  * You also need write access to the containing directory
478                  */
479                 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE);
480
481         return rc;
482 }
483
484 /**
485  * smack_inode_rename - Smack check on rename
486  * @old_inode: the old directory
487  * @old_dentry: unused
488  * @new_inode: the new directory
489  * @new_dentry: unused
490  *
491  * Read and write access is required on both the old and
492  * new directories.
493  *
494  * Returns 0 if access is permitted, an error code otherwise
495  */
496 static int smack_inode_rename(struct inode *old_inode,
497                               struct dentry *old_dentry,
498                               struct inode *new_inode,
499                               struct dentry *new_dentry)
500 {
501         int rc;
502         char *isp;
503
504         isp = smk_of_inode(old_dentry->d_inode);
505         rc = smk_curacc(isp, MAY_READWRITE);
506
507         if (rc == 0 && new_dentry->d_inode != NULL) {
508                 isp = smk_of_inode(new_dentry->d_inode);
509                 rc = smk_curacc(isp, MAY_READWRITE);
510         }
511
512         return rc;
513 }
514
515 /**
516  * smack_inode_permission - Smack version of permission()
517  * @inode: the inode in question
518  * @mask: the access requested
519  * @nd: unused
520  *
521  * This is the important Smack hook.
522  *
523  * Returns 0 if access is permitted, -EACCES otherwise
524  */
525 static int smack_inode_permission(struct inode *inode, int mask,
526                                   struct nameidata *nd)
527 {
528         /*
529          * No permission to check. Existence test. Yup, it's there.
530          */
531         if (mask == 0)
532                 return 0;
533
534         return smk_curacc(smk_of_inode(inode), mask);
535 }
536
537 /**
538  * smack_inode_setattr - Smack check for setting attributes
539  * @dentry: the object
540  * @iattr: for the force flag
541  *
542  * Returns 0 if access is permitted, an error code otherwise
543  */
544 static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
545 {
546         /*
547          * Need to allow for clearing the setuid bit.
548          */
549         if (iattr->ia_valid & ATTR_FORCE)
550                 return 0;
551
552         return smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
553 }
554
555 /**
556  * smack_inode_getattr - Smack check for getting attributes
557  * @mnt: unused
558  * @dentry: the object
559  *
560  * Returns 0 if access is permitted, an error code otherwise
561  */
562 static int smack_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
563 {
564         return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ);
565 }
566
567 /**
568  * smack_inode_setxattr - Smack check for setting xattrs
569  * @dentry: the object
570  * @name: name of the attribute
571  * @value: unused
572  * @size: unused
573  * @flags: unused
574  *
575  * This protects the Smack attribute explicitly.
576  *
577  * Returns 0 if access is permitted, an error code otherwise
578  */
579 static int smack_inode_setxattr(struct dentry *dentry, const char *name,
580                                 const void *value, size_t size, int flags)
581 {
582         int rc = 0;
583
584         if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
585             strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
586             strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
587                 if (!capable(CAP_MAC_ADMIN))
588                         rc = -EPERM;
589         } else
590                 rc = cap_inode_setxattr(dentry, name, value, size, flags);
591
592         if (rc == 0)
593                 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
594
595         return rc;
596 }
597
598 /**
599  * smack_inode_post_setxattr - Apply the Smack update approved above
600  * @dentry: object
601  * @name: attribute name
602  * @value: attribute value
603  * @size: attribute size
604  * @flags: unused
605  *
606  * Set the pointer in the inode blob to the entry found
607  * in the master label list.
608  */
609 static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
610                                       const void *value, size_t size, int flags)
611 {
612         struct inode_smack *isp;
613         char *nsp;
614
615         /*
616          * Not SMACK
617          */
618         if (strcmp(name, XATTR_NAME_SMACK))
619                 return;
620
621         if (size >= SMK_LABELLEN)
622                 return;
623
624         isp = dentry->d_inode->i_security;
625
626         /*
627          * No locking is done here. This is a pointer
628          * assignment.
629          */
630         nsp = smk_import(value, size);
631         if (nsp != NULL)
632                 isp->smk_inode = nsp;
633         else
634                 isp->smk_inode = smack_known_invalid.smk_known;
635
636         return;
637 }
638
639 /*
640  * smack_inode_getxattr - Smack check on getxattr
641  * @dentry: the object
642  * @name: unused
643  *
644  * Returns 0 if access is permitted, an error code otherwise
645  */
646 static int smack_inode_getxattr(struct dentry *dentry, const char *name)
647 {
648         return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ);
649 }
650
651 /*
652  * smack_inode_removexattr - Smack check on removexattr
653  * @dentry: the object
654  * @name: name of the attribute
655  *
656  * Removing the Smack attribute requires CAP_MAC_ADMIN
657  *
658  * Returns 0 if access is permitted, an error code otherwise
659  */
660 static int smack_inode_removexattr(struct dentry *dentry, const char *name)
661 {
662         int rc = 0;
663
664         if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
665             strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
666             strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
667                 if (!capable(CAP_MAC_ADMIN))
668                         rc = -EPERM;
669         } else
670                 rc = cap_inode_removexattr(dentry, name);
671
672         if (rc == 0)
673                 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
674
675         return rc;
676 }
677
678 /**
679  * smack_inode_getsecurity - get smack xattrs
680  * @inode: the object
681  * @name: attribute name
682  * @buffer: where to put the result
683  * @size: size of the buffer
684  * @err: unused
685  *
686  * Returns the size of the attribute or an error code
687  */
688 static int smack_inode_getsecurity(const struct inode *inode,
689                                    const char *name, void **buffer,
690                                    bool alloc)
691 {
692         struct socket_smack *ssp;
693         struct socket *sock;
694         struct super_block *sbp;
695         struct inode *ip = (struct inode *)inode;
696         char *isp;
697         int ilen;
698         int rc = 0;
699
700         if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
701                 isp = smk_of_inode(inode);
702                 ilen = strlen(isp) + 1;
703                 *buffer = isp;
704                 return ilen;
705         }
706
707         /*
708          * The rest of the Smack xattrs are only on sockets.
709          */
710         sbp = ip->i_sb;
711         if (sbp->s_magic != SOCKFS_MAGIC)
712                 return -EOPNOTSUPP;
713
714         sock = SOCKET_I(ip);
715         if (sock == NULL || sock->sk == NULL)
716                 return -EOPNOTSUPP;
717
718         ssp = sock->sk->sk_security;
719
720         if (strcmp(name, XATTR_SMACK_IPIN) == 0)
721                 isp = ssp->smk_in;
722         else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
723                 isp = ssp->smk_out;
724         else
725                 return -EOPNOTSUPP;
726
727         ilen = strlen(isp) + 1;
728         if (rc == 0) {
729                 *buffer = isp;
730                 rc = ilen;
731         }
732
733         return rc;
734 }
735
736
737 /**
738  * smack_inode_listsecurity - list the Smack attributes
739  * @inode: the object
740  * @buffer: where they go
741  * @buffer_size: size of buffer
742  *
743  * Returns 0 on success, -EINVAL otherwise
744  */
745 static int smack_inode_listsecurity(struct inode *inode, char *buffer,
746                                     size_t buffer_size)
747 {
748         int len = strlen(XATTR_NAME_SMACK);
749
750         if (buffer != NULL && len <= buffer_size) {
751                 memcpy(buffer, XATTR_NAME_SMACK, len);
752                 return len;
753         }
754         return -EINVAL;
755 }
756
757 /**
758  * smack_inode_getsecid - Extract inode's security id
759  * @inode: inode to extract the info from
760  * @secid: where result will be saved
761  */
762 static void smack_inode_getsecid(const struct inode *inode, u32 *secid)
763 {
764         struct inode_smack *isp = inode->i_security;
765
766         *secid = smack_to_secid(isp->smk_inode);
767 }
768
769 /*
770  * File Hooks
771  */
772
773 /**
774  * smack_file_permission - Smack check on file operations
775  * @file: unused
776  * @mask: unused
777  *
778  * Returns 0
779  *
780  * Should access checks be done on each read or write?
781  * UNICOS and SELinux say yes.
782  * Trusted Solaris, Trusted Irix, and just about everyone else says no.
783  *
784  * I'll say no for now. Smack does not do the frequent
785  * label changing that SELinux does.
786  */
787 static int smack_file_permission(struct file *file, int mask)
788 {
789         return 0;
790 }
791
792 /**
793  * smack_file_alloc_security - assign a file security blob
794  * @file: the object
795  *
796  * The security blob for a file is a pointer to the master
797  * label list, so no allocation is done.
798  *
799  * Returns 0
800  */
801 static int smack_file_alloc_security(struct file *file)
802 {
803         file->f_security = current->security;
804         return 0;
805 }
806
807 /**
808  * smack_file_free_security - clear a file security blob
809  * @file: the object
810  *
811  * The security blob for a file is a pointer to the master
812  * label list, so no memory is freed.
813  */
814 static void smack_file_free_security(struct file *file)
815 {
816         file->f_security = NULL;
817 }
818
819 /**
820  * smack_file_ioctl - Smack check on ioctls
821  * @file: the object
822  * @cmd: what to do
823  * @arg: unused
824  *
825  * Relies heavily on the correct use of the ioctl command conventions.
826  *
827  * Returns 0 if allowed, error code otherwise
828  */
829 static int smack_file_ioctl(struct file *file, unsigned int cmd,
830                             unsigned long arg)
831 {
832         int rc = 0;
833
834         if (_IOC_DIR(cmd) & _IOC_WRITE)
835                 rc = smk_curacc(file->f_security, MAY_WRITE);
836
837         if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ))
838                 rc = smk_curacc(file->f_security, MAY_READ);
839
840         return rc;
841 }
842
843 /**
844  * smack_file_lock - Smack check on file locking
845  * @file: the object
846  * @cmd unused
847  *
848  * Returns 0 if current has write access, error code otherwise
849  */
850 static int smack_file_lock(struct file *file, unsigned int cmd)
851 {
852         return smk_curacc(file->f_security, MAY_WRITE);
853 }
854
855 /**
856  * smack_file_fcntl - Smack check on fcntl
857  * @file: the object
858  * @cmd: what action to check
859  * @arg: unused
860  *
861  * Returns 0 if current has access, error code otherwise
862  */
863 static int smack_file_fcntl(struct file *file, unsigned int cmd,
864                             unsigned long arg)
865 {
866         int rc;
867
868         switch (cmd) {
869         case F_DUPFD:
870         case F_GETFD:
871         case F_GETFL:
872         case F_GETLK:
873         case F_GETOWN:
874         case F_GETSIG:
875                 rc = smk_curacc(file->f_security, MAY_READ);
876                 break;
877         case F_SETFD:
878         case F_SETFL:
879         case F_SETLK:
880         case F_SETLKW:
881         case F_SETOWN:
882         case F_SETSIG:
883                 rc = smk_curacc(file->f_security, MAY_WRITE);
884                 break;
885         default:
886                 rc = smk_curacc(file->f_security, MAY_READWRITE);
887         }
888
889         return rc;
890 }
891
892 /**
893  * smack_file_set_fowner - set the file security blob value
894  * @file: object in question
895  *
896  * Returns 0
897  * Further research may be required on this one.
898  */
899 static int smack_file_set_fowner(struct file *file)
900 {
901         file->f_security = current->security;
902         return 0;
903 }
904
905 /**
906  * smack_file_send_sigiotask - Smack on sigio
907  * @tsk: The target task
908  * @fown: the object the signal come from
909  * @signum: unused
910  *
911  * Allow a privileged task to get signals even if it shouldn't
912  *
913  * Returns 0 if a subject with the object's smack could
914  * write to the task, an error code otherwise.
915  */
916 static int smack_file_send_sigiotask(struct task_struct *tsk,
917                                      struct fown_struct *fown, int signum)
918 {
919         struct file *file;
920         int rc;
921
922         /*
923          * struct fown_struct is never outside the context of a struct file
924          */
925         file = container_of(fown, struct file, f_owner);
926         rc = smk_access(file->f_security, tsk->security, MAY_WRITE);
927         if (rc != 0 && __capable(tsk, CAP_MAC_OVERRIDE))
928                 return 0;
929         return rc;
930 }
931
932 /**
933  * smack_file_receive - Smack file receive check
934  * @file: the object
935  *
936  * Returns 0 if current has access, error code otherwise
937  */
938 static int smack_file_receive(struct file *file)
939 {
940         int may = 0;
941
942         /*
943          * This code relies on bitmasks.
944          */
945         if (file->f_mode & FMODE_READ)
946                 may = MAY_READ;
947         if (file->f_mode & FMODE_WRITE)
948                 may |= MAY_WRITE;
949
950         return smk_curacc(file->f_security, may);
951 }
952
953 /*
954  * Task hooks
955  */
956
957 /**
958  * smack_task_alloc_security - "allocate" a task blob
959  * @tsk: the task in need of a blob
960  *
961  * Smack isn't using copies of blobs. Everyone
962  * points to an immutable list. No alloc required.
963  * No data copy required.
964  *
965  * Always returns 0
966  */
967 static int smack_task_alloc_security(struct task_struct *tsk)
968 {
969         tsk->security = current->security;
970
971         return 0;
972 }
973
974 /**
975  * smack_task_free_security - "free" a task blob
976  * @task: the task with the blob
977  *
978  * Smack isn't using copies of blobs. Everyone
979  * points to an immutable list. The blobs never go away.
980  * There is no leak here.
981  */
982 static void smack_task_free_security(struct task_struct *task)
983 {
984         task->security = NULL;
985 }
986
987 /**
988  * smack_task_setpgid - Smack check on setting pgid
989  * @p: the task object
990  * @pgid: unused
991  *
992  * Return 0 if write access is permitted
993  */
994 static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
995 {
996         return smk_curacc(p->security, MAY_WRITE);
997 }
998
999 /**
1000  * smack_task_getpgid - Smack access check for getpgid
1001  * @p: the object task
1002  *
1003  * Returns 0 if current can read the object task, error code otherwise
1004  */
1005 static int smack_task_getpgid(struct task_struct *p)
1006 {
1007         return smk_curacc(p->security, MAY_READ);
1008 }
1009
1010 /**
1011  * smack_task_getsid - Smack access check for getsid
1012  * @p: the object task
1013  *
1014  * Returns 0 if current can read the object task, error code otherwise
1015  */
1016 static int smack_task_getsid(struct task_struct *p)
1017 {
1018         return smk_curacc(p->security, MAY_READ);
1019 }
1020
1021 /**
1022  * smack_task_getsecid - get the secid of the task
1023  * @p: the object task
1024  * @secid: where to put the result
1025  *
1026  * Sets the secid to contain a u32 version of the smack label.
1027  */
1028 static void smack_task_getsecid(struct task_struct *p, u32 *secid)
1029 {
1030         *secid = smack_to_secid(p->security);
1031 }
1032
1033 /**
1034  * smack_task_setnice - Smack check on setting nice
1035  * @p: the task object
1036  * @nice: unused
1037  *
1038  * Return 0 if write access is permitted
1039  */
1040 static int smack_task_setnice(struct task_struct *p, int nice)
1041 {
1042         int rc;
1043
1044         rc = cap_task_setnice(p, nice);
1045         if (rc == 0)
1046                 rc = smk_curacc(p->security, MAY_WRITE);
1047         return rc;
1048 }
1049
1050 /**
1051  * smack_task_setioprio - Smack check on setting ioprio
1052  * @p: the task object
1053  * @ioprio: unused
1054  *
1055  * Return 0 if write access is permitted
1056  */
1057 static int smack_task_setioprio(struct task_struct *p, int ioprio)
1058 {
1059         int rc;
1060
1061         rc = cap_task_setioprio(p, ioprio);
1062         if (rc == 0)
1063                 rc = smk_curacc(p->security, MAY_WRITE);
1064         return rc;
1065 }
1066
1067 /**
1068  * smack_task_getioprio - Smack check on reading ioprio
1069  * @p: the task object
1070  *
1071  * Return 0 if read access is permitted
1072  */
1073 static int smack_task_getioprio(struct task_struct *p)
1074 {
1075         return smk_curacc(p->security, MAY_READ);
1076 }
1077
1078 /**
1079  * smack_task_setscheduler - Smack check on setting scheduler
1080  * @p: the task object
1081  * @policy: unused
1082  * @lp: unused
1083  *
1084  * Return 0 if read access is permitted
1085  */
1086 static int smack_task_setscheduler(struct task_struct *p, int policy,
1087                                    struct sched_param *lp)
1088 {
1089         int rc;
1090
1091         rc = cap_task_setscheduler(p, policy, lp);
1092         if (rc == 0)
1093                 rc = smk_curacc(p->security, MAY_WRITE);
1094         return rc;
1095 }
1096
1097 /**
1098  * smack_task_getscheduler - Smack check on reading scheduler
1099  * @p: the task object
1100  *
1101  * Return 0 if read access is permitted
1102  */
1103 static int smack_task_getscheduler(struct task_struct *p)
1104 {
1105         return smk_curacc(p->security, MAY_READ);
1106 }
1107
1108 /**
1109  * smack_task_movememory - Smack check on moving memory
1110  * @p: the task object
1111  *
1112  * Return 0 if write access is permitted
1113  */
1114 static int smack_task_movememory(struct task_struct *p)
1115 {
1116         return smk_curacc(p->security, MAY_WRITE);
1117 }
1118
1119 /**
1120  * smack_task_kill - Smack check on signal delivery
1121  * @p: the task object
1122  * @info: unused
1123  * @sig: unused
1124  * @secid: identifies the smack to use in lieu of current's
1125  *
1126  * Return 0 if write access is permitted
1127  *
1128  * The secid behavior is an artifact of an SELinux hack
1129  * in the USB code. Someday it may go away.
1130  */
1131 static int smack_task_kill(struct task_struct *p, struct siginfo *info,
1132                            int sig, u32 secid)
1133 {
1134         /*
1135          * Sending a signal requires that the sender
1136          * can write the receiver.
1137          */
1138         if (secid == 0)
1139                 return smk_curacc(p->security, MAY_WRITE);
1140         /*
1141          * If the secid isn't 0 we're dealing with some USB IO
1142          * specific behavior. This is not clean. For one thing
1143          * we can't take privilege into account.
1144          */
1145         return smk_access(smack_from_secid(secid), p->security, MAY_WRITE);
1146 }
1147
1148 /**
1149  * smack_task_wait - Smack access check for waiting
1150  * @p: task to wait for
1151  *
1152  * Returns 0 if current can wait for p, error code otherwise
1153  */
1154 static int smack_task_wait(struct task_struct *p)
1155 {
1156         int rc;
1157
1158         rc = smk_access(current->security, p->security, MAY_WRITE);
1159         if (rc == 0)
1160                 return 0;
1161
1162         /*
1163          * Allow the operation to succeed if either task
1164          * has privilege to perform operations that might
1165          * account for the smack labels having gotten to
1166          * be different in the first place.
1167          *
1168          * This breaks the strict subjet/object access
1169          * control ideal, taking the object's privilege
1170          * state into account in the decision as well as
1171          * the smack value.
1172          */
1173         if (capable(CAP_MAC_OVERRIDE) || __capable(p, CAP_MAC_OVERRIDE))
1174                 return 0;
1175
1176         return rc;
1177 }
1178
1179 /**
1180  * smack_task_to_inode - copy task smack into the inode blob
1181  * @p: task to copy from
1182  * inode: inode to copy to
1183  *
1184  * Sets the smack pointer in the inode security blob
1185  */
1186 static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
1187 {
1188         struct inode_smack *isp = inode->i_security;
1189         isp->smk_inode = p->security;
1190 }
1191
1192 /*
1193  * Socket hooks.
1194  */
1195
1196 /**
1197  * smack_sk_alloc_security - Allocate a socket blob
1198  * @sk: the socket
1199  * @family: unused
1200  * @priority: memory allocation priority
1201  *
1202  * Assign Smack pointers to current
1203  *
1204  * Returns 0 on success, -ENOMEM is there's no memory
1205  */
1206 static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
1207 {
1208         char *csp = current->security;
1209         struct socket_smack *ssp;
1210
1211         ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
1212         if (ssp == NULL)
1213                 return -ENOMEM;
1214
1215         ssp->smk_in = csp;
1216         ssp->smk_out = csp;
1217         ssp->smk_packet[0] = '\0';
1218
1219         sk->sk_security = ssp;
1220
1221         return 0;
1222 }
1223
1224 /**
1225  * smack_sk_free_security - Free a socket blob
1226  * @sk: the socket
1227  *
1228  * Clears the blob pointer
1229  */
1230 static void smack_sk_free_security(struct sock *sk)
1231 {
1232         kfree(sk->sk_security);
1233 }
1234
1235 /**
1236  * smack_set_catset - convert a capset to netlabel mls categories
1237  * @catset: the Smack categories
1238  * @sap: where to put the netlabel categories
1239  *
1240  * Allocates and fills attr.mls.cat
1241  */
1242 static void smack_set_catset(char *catset, struct netlbl_lsm_secattr *sap)
1243 {
1244         unsigned char *cp;
1245         unsigned char m;
1246         int cat;
1247         int rc;
1248         int byte;
1249
1250         if (!catset)
1251                 return;
1252
1253         sap->flags |= NETLBL_SECATTR_MLS_CAT;
1254         sap->attr.mls.cat = netlbl_secattr_catmap_alloc(GFP_ATOMIC);
1255         sap->attr.mls.cat->startbit = 0;
1256
1257         for (cat = 1, cp = catset, byte = 0; byte < SMK_LABELLEN; cp++, byte++)
1258                 for (m = 0x80; m != 0; m >>= 1, cat++) {
1259                         if ((m & *cp) == 0)
1260                                 continue;
1261                         rc = netlbl_secattr_catmap_setbit(sap->attr.mls.cat,
1262                                                           cat, GFP_ATOMIC);
1263                 }
1264 }
1265
1266 /**
1267  * smack_to_secattr - fill a secattr from a smack value
1268  * @smack: the smack value
1269  * @nlsp: where the result goes
1270  *
1271  * Casey says that CIPSO is good enough for now.
1272  * It can be used to effect.
1273  * It can also be abused to effect when necessary.
1274  * Appologies to the TSIG group in general and GW in particular.
1275  */
1276 static void smack_to_secattr(char *smack, struct netlbl_lsm_secattr *nlsp)
1277 {
1278         struct smack_cipso cipso;
1279         int rc;
1280
1281         switch (smack_net_nltype) {
1282         case NETLBL_NLTYPE_CIPSOV4:
1283                 nlsp->domain = smack;
1284                 nlsp->flags = NETLBL_SECATTR_DOMAIN | NETLBL_SECATTR_MLS_LVL;
1285
1286                 rc = smack_to_cipso(smack, &cipso);
1287                 if (rc == 0) {
1288                         nlsp->attr.mls.lvl = cipso.smk_level;
1289                         smack_set_catset(cipso.smk_catset, nlsp);
1290                 } else {
1291                         nlsp->attr.mls.lvl = smack_cipso_direct;
1292                         smack_set_catset(smack, nlsp);
1293                 }
1294                 break;
1295         default:
1296                 break;
1297         }
1298 }
1299
1300 /**
1301  * smack_netlabel - Set the secattr on a socket
1302  * @sk: the socket
1303  *
1304  * Convert the outbound smack value (smk_out) to a
1305  * secattr and attach it to the socket.
1306  *
1307  * Returns 0 on success or an error code
1308  */
1309 static int smack_netlabel(struct sock *sk)
1310 {
1311         struct socket_smack *ssp;
1312         struct netlbl_lsm_secattr secattr;
1313         int rc;
1314
1315         ssp = sk->sk_security;
1316         netlbl_secattr_init(&secattr);
1317         smack_to_secattr(ssp->smk_out, &secattr);
1318         rc = netlbl_sock_setattr(sk, &secattr);
1319         netlbl_secattr_destroy(&secattr);
1320
1321         return rc;
1322 }
1323
1324 /**
1325  * smack_inode_setsecurity - set smack xattrs
1326  * @inode: the object
1327  * @name: attribute name
1328  * @value: attribute value
1329  * @size: size of the attribute
1330  * @flags: unused
1331  *
1332  * Sets the named attribute in the appropriate blob
1333  *
1334  * Returns 0 on success, or an error code
1335  */
1336 static int smack_inode_setsecurity(struct inode *inode, const char *name,
1337                                    const void *value, size_t size, int flags)
1338 {
1339         char *sp;
1340         struct inode_smack *nsp = inode->i_security;
1341         struct socket_smack *ssp;
1342         struct socket *sock;
1343         int rc = 0;
1344
1345         if (value == NULL || size > SMK_LABELLEN)
1346                 return -EACCES;
1347
1348         sp = smk_import(value, size);
1349         if (sp == NULL)
1350                 return -EINVAL;
1351
1352         if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
1353                 nsp->smk_inode = sp;
1354                 return 0;
1355         }
1356         /*
1357          * The rest of the Smack xattrs are only on sockets.
1358          */
1359         if (inode->i_sb->s_magic != SOCKFS_MAGIC)
1360                 return -EOPNOTSUPP;
1361
1362         sock = SOCKET_I(inode);
1363         if (sock == NULL || sock->sk == NULL)
1364                 return -EOPNOTSUPP;
1365
1366         ssp = sock->sk->sk_security;
1367
1368         if (strcmp(name, XATTR_SMACK_IPIN) == 0)
1369                 ssp->smk_in = sp;
1370         else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
1371                 ssp->smk_out = sp;
1372                 rc = smack_netlabel(sock->sk);
1373                 if (rc != 0)
1374                         printk(KERN_WARNING "Smack: \"%s\" netlbl error %d.\n",
1375                                __func__, -rc);
1376         } else
1377                 return -EOPNOTSUPP;
1378
1379         return 0;
1380 }
1381
1382 /**
1383  * smack_socket_post_create - finish socket setup
1384  * @sock: the socket
1385  * @family: protocol family
1386  * @type: unused
1387  * @protocol: unused
1388  * @kern: unused
1389  *
1390  * Sets the netlabel information on the socket
1391  *
1392  * Returns 0 on success, and error code otherwise
1393  */
1394 static int smack_socket_post_create(struct socket *sock, int family,
1395                                     int type, int protocol, int kern)
1396 {
1397         if (family != PF_INET || sock->sk == NULL)
1398                 return 0;
1399         /*
1400          * Set the outbound netlbl.
1401          */
1402         return smack_netlabel(sock->sk);
1403 }
1404
1405 /**
1406  * smack_flags_to_may - convert S_ to MAY_ values
1407  * @flags: the S_ value
1408  *
1409  * Returns the equivalent MAY_ value
1410  */
1411 static int smack_flags_to_may(int flags)
1412 {
1413         int may = 0;
1414
1415         if (flags & S_IRUGO)
1416                 may |= MAY_READ;
1417         if (flags & S_IWUGO)
1418                 may |= MAY_WRITE;
1419         if (flags & S_IXUGO)
1420                 may |= MAY_EXEC;
1421
1422         return may;
1423 }
1424
1425 /**
1426  * smack_msg_msg_alloc_security - Set the security blob for msg_msg
1427  * @msg: the object
1428  *
1429  * Returns 0
1430  */
1431 static int smack_msg_msg_alloc_security(struct msg_msg *msg)
1432 {
1433         msg->security = current->security;
1434         return 0;
1435 }
1436
1437 /**
1438  * smack_msg_msg_free_security - Clear the security blob for msg_msg
1439  * @msg: the object
1440  *
1441  * Clears the blob pointer
1442  */
1443 static void smack_msg_msg_free_security(struct msg_msg *msg)
1444 {
1445         msg->security = NULL;
1446 }
1447
1448 /**
1449  * smack_of_shm - the smack pointer for the shm
1450  * @shp: the object
1451  *
1452  * Returns a pointer to the smack value
1453  */
1454 static char *smack_of_shm(struct shmid_kernel *shp)
1455 {
1456         return (char *)shp->shm_perm.security;
1457 }
1458
1459 /**
1460  * smack_shm_alloc_security - Set the security blob for shm
1461  * @shp: the object
1462  *
1463  * Returns 0
1464  */
1465 static int smack_shm_alloc_security(struct shmid_kernel *shp)
1466 {
1467         struct kern_ipc_perm *isp = &shp->shm_perm;
1468
1469         isp->security = current->security;
1470         return 0;
1471 }
1472
1473 /**
1474  * smack_shm_free_security - Clear the security blob for shm
1475  * @shp: the object
1476  *
1477  * Clears the blob pointer
1478  */
1479 static void smack_shm_free_security(struct shmid_kernel *shp)
1480 {
1481         struct kern_ipc_perm *isp = &shp->shm_perm;
1482
1483         isp->security = NULL;
1484 }
1485
1486 /**
1487  * smack_shm_associate - Smack access check for shm
1488  * @shp: the object
1489  * @shmflg: access requested
1490  *
1491  * Returns 0 if current has the requested access, error code otherwise
1492  */
1493 static int smack_shm_associate(struct shmid_kernel *shp, int shmflg)
1494 {
1495         char *ssp = smack_of_shm(shp);
1496         int may;
1497
1498         may = smack_flags_to_may(shmflg);
1499         return smk_curacc(ssp, may);
1500 }
1501
1502 /**
1503  * smack_shm_shmctl - Smack access check for shm
1504  * @shp: the object
1505  * @cmd: what it wants to do
1506  *
1507  * Returns 0 if current has the requested access, error code otherwise
1508  */
1509 static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
1510 {
1511         char *ssp;
1512         int may;
1513
1514         switch (cmd) {
1515         case IPC_STAT:
1516         case SHM_STAT:
1517                 may = MAY_READ;
1518                 break;
1519         case IPC_SET:
1520         case SHM_LOCK:
1521         case SHM_UNLOCK:
1522         case IPC_RMID:
1523                 may = MAY_READWRITE;
1524                 break;
1525         case IPC_INFO:
1526         case SHM_INFO:
1527                 /*
1528                  * System level information.
1529                  */
1530                 return 0;
1531         default:
1532                 return -EINVAL;
1533         }
1534
1535         ssp = smack_of_shm(shp);
1536         return smk_curacc(ssp, may);
1537 }
1538
1539 /**
1540  * smack_shm_shmat - Smack access for shmat
1541  * @shp: the object
1542  * @shmaddr: unused
1543  * @shmflg: access requested
1544  *
1545  * Returns 0 if current has the requested access, error code otherwise
1546  */
1547 static int smack_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr,
1548                            int shmflg)
1549 {
1550         char *ssp = smack_of_shm(shp);
1551         int may;
1552
1553         may = smack_flags_to_may(shmflg);
1554         return smk_curacc(ssp, may);
1555 }
1556
1557 /**
1558  * smack_of_sem - the smack pointer for the sem
1559  * @sma: the object
1560  *
1561  * Returns a pointer to the smack value
1562  */
1563 static char *smack_of_sem(struct sem_array *sma)
1564 {
1565         return (char *)sma->sem_perm.security;
1566 }
1567
1568 /**
1569  * smack_sem_alloc_security - Set the security blob for sem
1570  * @sma: the object
1571  *
1572  * Returns 0
1573  */
1574 static int smack_sem_alloc_security(struct sem_array *sma)
1575 {
1576         struct kern_ipc_perm *isp = &sma->sem_perm;
1577
1578         isp->security = current->security;
1579         return 0;
1580 }
1581
1582 /**
1583  * smack_sem_free_security - Clear the security blob for sem
1584  * @sma: the object
1585  *
1586  * Clears the blob pointer
1587  */
1588 static void smack_sem_free_security(struct sem_array *sma)
1589 {
1590         struct kern_ipc_perm *isp = &sma->sem_perm;
1591
1592         isp->security = NULL;
1593 }
1594
1595 /**
1596  * smack_sem_associate - Smack access check for sem
1597  * @sma: the object
1598  * @semflg: access requested
1599  *
1600  * Returns 0 if current has the requested access, error code otherwise
1601  */
1602 static int smack_sem_associate(struct sem_array *sma, int semflg)
1603 {
1604         char *ssp = smack_of_sem(sma);
1605         int may;
1606
1607         may = smack_flags_to_may(semflg);
1608         return smk_curacc(ssp, may);
1609 }
1610
1611 /**
1612  * smack_sem_shmctl - Smack access check for sem
1613  * @sma: the object
1614  * @cmd: what it wants to do
1615  *
1616  * Returns 0 if current has the requested access, error code otherwise
1617  */
1618 static int smack_sem_semctl(struct sem_array *sma, int cmd)
1619 {
1620         char *ssp;
1621         int may;
1622
1623         switch (cmd) {
1624         case GETPID:
1625         case GETNCNT:
1626         case GETZCNT:
1627         case GETVAL:
1628         case GETALL:
1629         case IPC_STAT:
1630         case SEM_STAT:
1631                 may = MAY_READ;
1632                 break;
1633         case SETVAL:
1634         case SETALL:
1635         case IPC_RMID:
1636         case IPC_SET:
1637                 may = MAY_READWRITE;
1638                 break;
1639         case IPC_INFO:
1640         case SEM_INFO:
1641                 /*
1642                  * System level information
1643                  */
1644                 return 0;
1645         default:
1646                 return -EINVAL;
1647         }
1648
1649         ssp = smack_of_sem(sma);
1650         return smk_curacc(ssp, may);
1651 }
1652
1653 /**
1654  * smack_sem_semop - Smack checks of semaphore operations
1655  * @sma: the object
1656  * @sops: unused
1657  * @nsops: unused
1658  * @alter: unused
1659  *
1660  * Treated as read and write in all cases.
1661  *
1662  * Returns 0 if access is allowed, error code otherwise
1663  */
1664 static int smack_sem_semop(struct sem_array *sma, struct sembuf *sops,
1665                            unsigned nsops, int alter)
1666 {
1667         char *ssp = smack_of_sem(sma);
1668
1669         return smk_curacc(ssp, MAY_READWRITE);
1670 }
1671
1672 /**
1673  * smack_msg_alloc_security - Set the security blob for msg
1674  * @msq: the object
1675  *
1676  * Returns 0
1677  */
1678 static int smack_msg_queue_alloc_security(struct msg_queue *msq)
1679 {
1680         struct kern_ipc_perm *kisp = &msq->q_perm;
1681
1682         kisp->security = current->security;
1683         return 0;
1684 }
1685
1686 /**
1687  * smack_msg_free_security - Clear the security blob for msg
1688  * @msq: the object
1689  *
1690  * Clears the blob pointer
1691  */
1692 static void smack_msg_queue_free_security(struct msg_queue *msq)
1693 {
1694         struct kern_ipc_perm *kisp = &msq->q_perm;
1695
1696         kisp->security = NULL;
1697 }
1698
1699 /**
1700  * smack_of_msq - the smack pointer for the msq
1701  * @msq: the object
1702  *
1703  * Returns a pointer to the smack value
1704  */
1705 static char *smack_of_msq(struct msg_queue *msq)
1706 {
1707         return (char *)msq->q_perm.security;
1708 }
1709
1710 /**
1711  * smack_msg_queue_associate - Smack access check for msg_queue
1712  * @msq: the object
1713  * @msqflg: access requested
1714  *
1715  * Returns 0 if current has the requested access, error code otherwise
1716  */
1717 static int smack_msg_queue_associate(struct msg_queue *msq, int msqflg)
1718 {
1719         char *msp = smack_of_msq(msq);
1720         int may;
1721
1722         may = smack_flags_to_may(msqflg);
1723         return smk_curacc(msp, may);
1724 }
1725
1726 /**
1727  * smack_msg_queue_msgctl - Smack access check for msg_queue
1728  * @msq: the object
1729  * @cmd: what it wants to do
1730  *
1731  * Returns 0 if current has the requested access, error code otherwise
1732  */
1733 static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
1734 {
1735         char *msp;
1736         int may;
1737
1738         switch (cmd) {
1739         case IPC_STAT:
1740         case MSG_STAT:
1741                 may = MAY_READ;
1742                 break;
1743         case IPC_SET:
1744         case IPC_RMID:
1745                 may = MAY_READWRITE;
1746                 break;
1747         case IPC_INFO:
1748         case MSG_INFO:
1749                 /*
1750                  * System level information
1751                  */
1752                 return 0;
1753         default:
1754                 return -EINVAL;
1755         }
1756
1757         msp = smack_of_msq(msq);
1758         return smk_curacc(msp, may);
1759 }
1760
1761 /**
1762  * smack_msg_queue_msgsnd - Smack access check for msg_queue
1763  * @msq: the object
1764  * @msg: unused
1765  * @msqflg: access requested
1766  *
1767  * Returns 0 if current has the requested access, error code otherwise
1768  */
1769 static int smack_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg,
1770                                   int msqflg)
1771 {
1772         char *msp = smack_of_msq(msq);
1773         int rc;
1774
1775         rc = smack_flags_to_may(msqflg);
1776         return smk_curacc(msp, rc);
1777 }
1778
1779 /**
1780  * smack_msg_queue_msgsnd - Smack access check for msg_queue
1781  * @msq: the object
1782  * @msg: unused
1783  * @target: unused
1784  * @type: unused
1785  * @mode: unused
1786  *
1787  * Returns 0 if current has read and write access, error code otherwise
1788  */
1789 static int smack_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
1790                         struct task_struct *target, long type, int mode)
1791 {
1792         char *msp = smack_of_msq(msq);
1793
1794         return smk_curacc(msp, MAY_READWRITE);
1795 }
1796
1797 /**
1798  * smack_ipc_permission - Smack access for ipc_permission()
1799  * @ipp: the object permissions
1800  * @flag: access requested
1801  *
1802  * Returns 0 if current has read and write access, error code otherwise
1803  */
1804 static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
1805 {
1806         char *isp = ipp->security;
1807         int may;
1808
1809         may = smack_flags_to_may(flag);
1810         return smk_curacc(isp, may);
1811 }
1812
1813 /**
1814  * smack_ipc_getsecid - Extract smack security id
1815  * @ipcp: the object permissions
1816  * @secid: where result will be saved
1817  */
1818 static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
1819 {
1820         char *smack = ipp->security;
1821
1822         *secid = smack_to_secid(smack);
1823 }
1824
1825 /* module stacking operations */
1826
1827 /**
1828  * smack_register_security - stack capability module
1829  * @name: module name
1830  * @ops: module operations - ignored
1831  *
1832  * Allow the capability module to register.
1833  */
1834 static int smack_register_security(const char *name,
1835                                    struct security_operations *ops)
1836 {
1837         if (strcmp(name, "capability") != 0)
1838                 return -EINVAL;
1839
1840         printk(KERN_INFO "%s:  Registering secondary module %s\n",
1841                __func__, name);
1842
1843         return 0;
1844 }
1845
1846 /**
1847  * smack_d_instantiate - Make sure the blob is correct on an inode
1848  * @opt_dentry: unused
1849  * @inode: the object
1850  *
1851  * Set the inode's security blob if it hasn't been done already.
1852  */
1853 static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
1854 {
1855         struct super_block *sbp;
1856         struct superblock_smack *sbsp;
1857         struct inode_smack *isp;
1858         char *csp = current->security;
1859         char *fetched;
1860         char *final;
1861         struct dentry *dp;
1862
1863         if (inode == NULL)
1864                 return;
1865
1866         isp = inode->i_security;
1867
1868         mutex_lock(&isp->smk_lock);
1869         /*
1870          * If the inode is already instantiated
1871          * take the quick way out
1872          */
1873         if (isp->smk_flags & SMK_INODE_INSTANT)
1874                 goto unlockandout;
1875
1876         sbp = inode->i_sb;
1877         sbsp = sbp->s_security;
1878         /*
1879          * We're going to use the superblock default label
1880          * if there's no label on the file.
1881          */
1882         final = sbsp->smk_default;
1883
1884         /*
1885          * If this is the root inode the superblock
1886          * may be in the process of initialization.
1887          * If that is the case use the root value out
1888          * of the superblock.
1889          */
1890         if (opt_dentry->d_parent == opt_dentry) {
1891                 isp->smk_inode = sbsp->smk_root;
1892                 isp->smk_flags |= SMK_INODE_INSTANT;
1893                 goto unlockandout;
1894         }
1895
1896         /*
1897          * This is pretty hackish.
1898          * Casey says that we shouldn't have to do
1899          * file system specific code, but it does help
1900          * with keeping it simple.
1901          */
1902         switch (sbp->s_magic) {
1903         case SMACK_MAGIC:
1904                 /*
1905                  * Casey says that it's a little embarassing
1906                  * that the smack file system doesn't do
1907                  * extended attributes.
1908                  */
1909                 final = smack_known_star.smk_known;
1910                 break;
1911         case PIPEFS_MAGIC:
1912                 /*
1913                  * Casey says pipes are easy (?)
1914                  */
1915                 final = smack_known_star.smk_known;
1916                 break;
1917         case DEVPTS_SUPER_MAGIC:
1918                 /*
1919                  * devpts seems content with the label of the task.
1920                  * Programs that change smack have to treat the
1921                  * pty with respect.
1922                  */
1923                 final = csp;
1924                 break;
1925         case SOCKFS_MAGIC:
1926                 /*
1927                  * Casey says sockets get the smack of the task.
1928                  */
1929                 final = csp;
1930                 break;
1931         case PROC_SUPER_MAGIC:
1932                 /*
1933                  * Casey says procfs appears not to care.
1934                  * The superblock default suffices.
1935                  */
1936                 break;
1937         case TMPFS_MAGIC:
1938                 /*
1939                  * Device labels should come from the filesystem,
1940                  * but watch out, because they're volitile,
1941                  * getting recreated on every reboot.
1942                  */
1943                 final = smack_known_star.smk_known;
1944                 /*
1945                  * No break.
1946                  *
1947                  * If a smack value has been set we want to use it,
1948                  * but since tmpfs isn't giving us the opportunity
1949                  * to set mount options simulate setting the
1950                  * superblock default.
1951                  */
1952         default:
1953                 /*
1954                  * This isn't an understood special case.
1955                  * Get the value from the xattr.
1956                  *
1957                  * No xattr support means, alas, no SMACK label.
1958                  * Use the aforeapplied default.
1959                  * It would be curious if the label of the task
1960                  * does not match that assigned.
1961                  */
1962                 if (inode->i_op->getxattr == NULL)
1963                         break;
1964                 /*
1965                  * Get the dentry for xattr.
1966                  */
1967                 if (opt_dentry == NULL) {
1968                         dp = d_find_alias(inode);
1969                         if (dp == NULL)
1970                                 break;
1971                 } else {
1972                         dp = dget(opt_dentry);
1973                         if (dp == NULL)
1974                                 break;
1975                 }
1976
1977                 fetched = smk_fetch(inode, dp);
1978                 if (fetched != NULL)
1979                         final = fetched;
1980
1981                 dput(dp);
1982                 break;
1983         }
1984
1985         if (final == NULL)
1986                 isp->smk_inode = csp;
1987         else
1988                 isp->smk_inode = final;
1989
1990         isp->smk_flags |= SMK_INODE_INSTANT;
1991
1992 unlockandout:
1993         mutex_unlock(&isp->smk_lock);
1994         return;
1995 }
1996
1997 /**
1998  * smack_getprocattr - Smack process attribute access
1999  * @p: the object task
2000  * @name: the name of the attribute in /proc/.../attr
2001  * @value: where to put the result
2002  *
2003  * Places a copy of the task Smack into value
2004  *
2005  * Returns the length of the smack label or an error code
2006  */
2007 static int smack_getprocattr(struct task_struct *p, char *name, char **value)
2008 {
2009         char *cp;
2010         int slen;
2011
2012         if (strcmp(name, "current") != 0)
2013                 return -EINVAL;
2014
2015         cp = kstrdup(p->security, GFP_KERNEL);
2016         if (cp == NULL)
2017                 return -ENOMEM;
2018
2019         slen = strlen(cp);
2020         *value = cp;
2021         return slen;
2022 }
2023
2024 /**
2025  * smack_setprocattr - Smack process attribute setting
2026  * @p: the object task
2027  * @name: the name of the attribute in /proc/.../attr
2028  * @value: the value to set
2029  * @size: the size of the value
2030  *
2031  * Sets the Smack value of the task. Only setting self
2032  * is permitted and only with privilege
2033  *
2034  * Returns the length of the smack label or an error code
2035  */
2036 static int smack_setprocattr(struct task_struct *p, char *name,
2037                              void *value, size_t size)
2038 {
2039         char *newsmack;
2040
2041         if (!__capable(p, CAP_MAC_ADMIN))
2042                 return -EPERM;
2043
2044         /*
2045          * Changing another process' Smack value is too dangerous
2046          * and supports no sane use case.
2047          */
2048         if (p != current)
2049                 return -EPERM;
2050
2051         if (value == NULL || size == 0 || size >= SMK_LABELLEN)
2052                 return -EINVAL;
2053
2054         if (strcmp(name, "current") != 0)
2055                 return -EINVAL;
2056
2057         newsmack = smk_import(value, size);
2058         if (newsmack == NULL)
2059                 return -EINVAL;
2060
2061         p->security = newsmack;
2062         return size;
2063 }
2064
2065 /**
2066  * smack_unix_stream_connect - Smack access on UDS
2067  * @sock: one socket
2068  * @other: the other socket
2069  * @newsk: unused
2070  *
2071  * Return 0 if a subject with the smack of sock could access
2072  * an object with the smack of other, otherwise an error code
2073  */
2074 static int smack_unix_stream_connect(struct socket *sock,
2075                                      struct socket *other, struct sock *newsk)
2076 {
2077         struct inode *sp = SOCK_INODE(sock);
2078         struct inode *op = SOCK_INODE(other);
2079
2080         return smk_access(smk_of_inode(sp), smk_of_inode(op), MAY_READWRITE);
2081 }
2082
2083 /**
2084  * smack_unix_may_send - Smack access on UDS
2085  * @sock: one socket
2086  * @other: the other socket
2087  *
2088  * Return 0 if a subject with the smack of sock could access
2089  * an object with the smack of other, otherwise an error code
2090  */
2091 static int smack_unix_may_send(struct socket *sock, struct socket *other)
2092 {
2093         struct inode *sp = SOCK_INODE(sock);
2094         struct inode *op = SOCK_INODE(other);
2095
2096         return smk_access(smk_of_inode(sp), smk_of_inode(op), MAY_WRITE);
2097 }
2098
2099 /**
2100  * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat
2101  *      pair to smack
2102  * @sap: netlabel secattr
2103  * @sip: where to put the result
2104  *
2105  * Copies a smack label into sip
2106  */
2107 static void smack_from_secattr(struct netlbl_lsm_secattr *sap, char *sip)
2108 {
2109         char smack[SMK_LABELLEN];
2110         int pcat;
2111
2112         if ((sap->flags & NETLBL_SECATTR_MLS_LVL) == 0) {
2113                 /*
2114                  * If there are flags but no level netlabel isn't
2115                  * behaving the way we expect it to.
2116                  *
2117                  * Without guidance regarding the smack value
2118                  * for the packet fall back on the network
2119                  * ambient value.
2120                  */
2121                 strncpy(sip, smack_net_ambient, SMK_MAXLEN);
2122                 return;
2123         }
2124         /*
2125          * Get the categories, if any
2126          */
2127         memset(smack, '\0', SMK_LABELLEN);
2128         if ((sap->flags & NETLBL_SECATTR_MLS_CAT) != 0)
2129                 for (pcat = -1;;) {
2130                         pcat = netlbl_secattr_catmap_walk(sap->attr.mls.cat,
2131                                                           pcat + 1);
2132                         if (pcat < 0)
2133                                 break;
2134                         smack_catset_bit(pcat, smack);
2135                 }
2136         /*
2137          * If it is CIPSO using smack direct mapping
2138          * we are already done. WeeHee.
2139          */
2140         if (sap->attr.mls.lvl == smack_cipso_direct) {
2141                 memcpy(sip, smack, SMK_MAXLEN);
2142                 return;
2143         }
2144         /*
2145          * Look it up in the supplied table if it is not a direct mapping.
2146          */
2147         smack_from_cipso(sap->attr.mls.lvl, smack, sip);
2148         return;
2149 }
2150
2151 /**
2152  * smack_socket_sock_rcv_skb - Smack packet delivery access check
2153  * @sk: socket
2154  * @skb: packet
2155  *
2156  * Returns 0 if the packet should be delivered, an error code otherwise
2157  */
2158 static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
2159 {
2160         struct netlbl_lsm_secattr secattr;
2161         struct socket_smack *ssp = sk->sk_security;
2162         char smack[SMK_LABELLEN];
2163         int rc;
2164
2165         if (sk->sk_family != PF_INET && sk->sk_family != PF_INET6)
2166                 return 0;
2167
2168         /*
2169          * Translate what netlabel gave us.
2170          */
2171         memset(smack, '\0', SMK_LABELLEN);
2172         netlbl_secattr_init(&secattr);
2173         rc = netlbl_skbuff_getattr(skb, sk->sk_family, &secattr);
2174         if (rc == 0)
2175                 smack_from_secattr(&secattr, smack);
2176         else
2177                 strncpy(smack, smack_net_ambient, SMK_MAXLEN);
2178         netlbl_secattr_destroy(&secattr);
2179         /*
2180          * Receiving a packet requires that the other end
2181          * be able to write here. Read access is not required.
2182          * This is the simplist possible security model
2183          * for networking.
2184          */
2185         return smk_access(smack, ssp->smk_in, MAY_WRITE);
2186 }
2187
2188 /**
2189  * smack_socket_getpeersec_stream - pull in packet label
2190  * @sock: the socket
2191  * @optval: user's destination
2192  * @optlen: size thereof
2193  * @len: max thereoe
2194  *
2195  * returns zero on success, an error code otherwise
2196  */
2197 static int smack_socket_getpeersec_stream(struct socket *sock,
2198                                           char __user *optval,
2199                                           int __user *optlen, unsigned len)
2200 {
2201         struct socket_smack *ssp;
2202         int slen;
2203         int rc = 0;
2204
2205         ssp = sock->sk->sk_security;
2206         slen = strlen(ssp->smk_packet) + 1;
2207
2208         if (slen > len)
2209                 rc = -ERANGE;
2210         else if (copy_to_user(optval, ssp->smk_packet, slen) != 0)
2211                 rc = -EFAULT;
2212
2213         if (put_user(slen, optlen) != 0)
2214                 rc = -EFAULT;
2215
2216         return rc;
2217 }
2218
2219
2220 /**
2221  * smack_socket_getpeersec_dgram - pull in packet label
2222  * @sock: the socket
2223  * @skb: packet data
2224  * @secid: pointer to where to put the secid of the packet
2225  *
2226  * Sets the netlabel socket state on sk from parent
2227  */
2228 static int smack_socket_getpeersec_dgram(struct socket *sock,
2229                                          struct sk_buff *skb, u32 *secid)
2230
2231 {
2232         struct netlbl_lsm_secattr secattr;
2233         struct sock *sk;
2234         char smack[SMK_LABELLEN];
2235         int family = PF_INET;
2236         u32 s;
2237         int rc;
2238
2239         /*
2240          * Only works for families with packets.
2241          */
2242         if (sock != NULL) {
2243                 sk = sock->sk;
2244                 if (sk->sk_family != PF_INET && sk->sk_family != PF_INET6)
2245                         return 0;
2246                 family = sk->sk_family;
2247         }
2248         /*
2249          * Translate what netlabel gave us.
2250          */
2251         memset(smack, '\0', SMK_LABELLEN);
2252         netlbl_secattr_init(&secattr);
2253         rc = netlbl_skbuff_getattr(skb, family, &secattr);
2254         if (rc == 0)
2255                 smack_from_secattr(&secattr, smack);
2256         netlbl_secattr_destroy(&secattr);
2257
2258         /*
2259          * Give up if we couldn't get anything
2260          */
2261         if (rc != 0)
2262                 return rc;
2263
2264         s = smack_to_secid(smack);
2265         if (s == 0)
2266                 return -EINVAL;
2267
2268         *secid = s;
2269         return 0;
2270 }
2271
2272 /**
2273  * smack_sock_graft - graft access state between two sockets
2274  * @sk: fresh sock
2275  * @parent: donor socket
2276  *
2277  * Sets the netlabel socket state on sk from parent
2278  */
2279 static void smack_sock_graft(struct sock *sk, struct socket *parent)
2280 {
2281         struct socket_smack *ssp;
2282         int rc;
2283
2284         if (sk == NULL)
2285                 return;
2286
2287         if (sk->sk_family != PF_INET && sk->sk_family != PF_INET6)
2288                 return;
2289
2290         ssp = sk->sk_security;
2291         ssp->smk_in = current->security;
2292         ssp->smk_out = current->security;
2293         ssp->smk_packet[0] = '\0';
2294
2295         rc = smack_netlabel(sk);
2296         if (rc != 0)
2297                 printk(KERN_WARNING "Smack: \"%s\" netlbl error %d.\n",
2298                        __func__, -rc);
2299 }
2300
2301 /**
2302  * smack_inet_conn_request - Smack access check on connect
2303  * @sk: socket involved
2304  * @skb: packet
2305  * @req: unused
2306  *
2307  * Returns 0 if a task with the packet label could write to
2308  * the socket, otherwise an error code
2309  */
2310 static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
2311                                    struct request_sock *req)
2312 {
2313         struct netlbl_lsm_secattr skb_secattr;
2314         struct socket_smack *ssp = sk->sk_security;
2315         char smack[SMK_LABELLEN];
2316         int rc;
2317
2318         if (skb == NULL)
2319                 return -EACCES;
2320
2321         memset(smack, '\0', SMK_LABELLEN);
2322         netlbl_secattr_init(&skb_secattr);
2323         rc = netlbl_skbuff_getattr(skb, sk->sk_family, &skb_secattr);
2324         if (rc == 0)
2325                 smack_from_secattr(&skb_secattr, smack);
2326         else
2327                 strncpy(smack, smack_known_huh.smk_known, SMK_MAXLEN);
2328         netlbl_secattr_destroy(&skb_secattr);
2329         /*
2330          * Receiving a packet requires that the other end
2331          * be able to write here. Read access is not required.
2332          *
2333          * If the request is successful save the peer's label
2334          * so that SO_PEERCRED can report it.
2335          */
2336         rc = smk_access(smack, ssp->smk_in, MAY_WRITE);
2337         if (rc == 0)
2338                 strncpy(ssp->smk_packet, smack, SMK_MAXLEN);
2339
2340         return rc;
2341 }
2342
2343 /*
2344  * Key management security hooks
2345  *
2346  * Casey has not tested key support very heavily.
2347  * The permission check is most likely too restrictive.
2348  * If you care about keys please have a look.
2349  */
2350 #ifdef CONFIG_KEYS
2351
2352 /**
2353  * smack_key_alloc - Set the key security blob
2354  * @key: object
2355  * @tsk: the task associated with the key
2356  * @flags: unused
2357  *
2358  * No allocation required
2359  *
2360  * Returns 0
2361  */
2362 static int smack_key_alloc(struct key *key, struct task_struct *tsk,
2363                            unsigned long flags)
2364 {
2365         key->security = tsk->security;
2366         return 0;
2367 }
2368
2369 /**
2370  * smack_key_free - Clear the key security blob
2371  * @key: the object
2372  *
2373  * Clear the blob pointer
2374  */
2375 static void smack_key_free(struct key *key)
2376 {
2377         key->security = NULL;
2378 }
2379
2380 /*
2381  * smack_key_permission - Smack access on a key
2382  * @key_ref: gets to the object
2383  * @context: task involved
2384  * @perm: unused
2385  *
2386  * Return 0 if the task has read and write to the object,
2387  * an error code otherwise
2388  */
2389 static int smack_key_permission(key_ref_t key_ref,
2390                                 struct task_struct *context, key_perm_t perm)
2391 {
2392         struct key *keyp;
2393
2394         keyp = key_ref_to_ptr(key_ref);
2395         if (keyp == NULL)
2396                 return -EINVAL;
2397         /*
2398          * If the key hasn't been initialized give it access so that
2399          * it may do so.
2400          */
2401         if (keyp->security == NULL)
2402                 return 0;
2403         /*
2404          * This should not occur
2405          */
2406         if (context->security == NULL)
2407                 return -EACCES;
2408
2409         return smk_access(context->security, keyp->security, MAY_READWRITE);
2410 }
2411 #endif /* CONFIG_KEYS */
2412
2413 /*
2414  * Smack Audit hooks
2415  *
2416  * Audit requires a unique representation of each Smack specific
2417  * rule. This unique representation is used to distinguish the
2418  * object to be audited from remaining kernel objects and also
2419  * works as a glue between the audit hooks.
2420  *
2421  * Since repository entries are added but never deleted, we'll use
2422  * the smack_known label address related to the given audit rule as
2423  * the needed unique representation. This also better fits the smack
2424  * model where nearly everything is a label.
2425  */
2426 #ifdef CONFIG_AUDIT
2427
2428 /**
2429  * smack_audit_rule_init - Initialize a smack audit rule
2430  * @field: audit rule fields given from user-space (audit.h)
2431  * @op: required testing operator (=, !=, >, <, ...)
2432  * @rulestr: smack label to be audited
2433  * @vrule: pointer to save our own audit rule representation
2434  *
2435  * Prepare to audit cases where (@field @op @rulestr) is true.
2436  * The label to be audited is created if necessay.
2437  */
2438 static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
2439 {
2440         char **rule = (char **)vrule;
2441         *rule = NULL;
2442
2443         if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
2444                 return -EINVAL;
2445
2446         if (op != AUDIT_EQUAL && op != AUDIT_NOT_EQUAL)
2447                 return -EINVAL;
2448
2449         *rule = smk_import(rulestr, 0);
2450
2451         return 0;
2452 }
2453
2454 /**
2455  * smack_audit_rule_known - Distinguish Smack audit rules
2456  * @krule: rule of interest, in Audit kernel representation format
2457  *
2458  * This is used to filter Smack rules from remaining Audit ones.
2459  * If it's proved that this rule belongs to us, the
2460  * audit_rule_match hook will be called to do the final judgement.
2461  */
2462 static int smack_audit_rule_known(struct audit_krule *krule)
2463 {
2464         struct audit_field *f;
2465         int i;
2466
2467         for (i = 0; i < krule->field_count; i++) {
2468                 f = &krule->fields[i];
2469
2470                 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
2471                         return 1;
2472         }
2473
2474         return 0;
2475 }
2476
2477 /**
2478  * smack_audit_rule_match - Audit given object ?
2479  * @secid: security id for identifying the object to test
2480  * @field: audit rule flags given from user-space
2481  * @op: required testing operator
2482  * @vrule: smack internal rule presentation
2483  * @actx: audit context associated with the check
2484  *
2485  * The core Audit hook. It's used to take the decision of
2486  * whether to audit or not to audit a given object.
2487  */
2488 static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule,
2489                                   struct audit_context *actx)
2490 {
2491         char *smack;
2492         char *rule = vrule;
2493
2494         if (!rule) {
2495                 audit_log(actx, GFP_KERNEL, AUDIT_SELINUX_ERR,
2496                           "Smack: missing rule\n");
2497                 return -ENOENT;
2498         }
2499
2500         if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
2501                 return 0;
2502
2503         smack = smack_from_secid(secid);
2504
2505         /*
2506          * No need to do string comparisons. If a match occurs,
2507          * both pointers will point to the same smack_known
2508          * label.
2509          */
2510         if (op == AUDIT_EQUAL)
2511                 return (rule == smack);
2512         if (op == AUDIT_NOT_EQUAL)
2513                 return (rule != smack);
2514
2515         return 0;
2516 }
2517
2518 /**
2519  * smack_audit_rule_free - free smack rule representation
2520  * @vrule: rule to be freed.
2521  *
2522  * No memory was allocated.
2523  */
2524 static void smack_audit_rule_free(void *vrule)
2525 {
2526         /* No-op */
2527 }
2528
2529 #endif /* CONFIG_AUDIT */
2530
2531 /*
2532  * smack_secid_to_secctx - return the smack label for a secid
2533  * @secid: incoming integer
2534  * @secdata: destination
2535  * @seclen: how long it is
2536  *
2537  * Exists for networking code.
2538  */
2539 static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2540 {
2541         char *sp = smack_from_secid(secid);
2542
2543         *secdata = sp;
2544         *seclen = strlen(sp);
2545         return 0;
2546 }
2547
2548 /*
2549  * smack_secctx_to_secid - return the secid for a smack label
2550  * @secdata: smack label
2551  * @seclen: how long result is
2552  * @secid: outgoing integer
2553  *
2554  * Exists for audit and networking code.
2555  */
2556 static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
2557 {
2558         *secid = smack_to_secid(secdata);
2559         return 0;
2560 }
2561
2562 /*
2563  * smack_release_secctx - don't do anything.
2564  * @key_ref: unused
2565  * @context: unused
2566  * @perm: unused
2567  *
2568  * Exists to make sure nothing gets done, and properly
2569  */
2570 static void smack_release_secctx(char *secdata, u32 seclen)
2571 {
2572 }
2573
2574 struct security_operations smack_ops = {
2575         .name =                         "smack",
2576
2577         .ptrace =                       smack_ptrace,
2578         .capget =                       cap_capget,
2579         .capset_check =                 cap_capset_check,
2580         .capset_set =                   cap_capset_set,
2581         .capable =                      cap_capable,
2582         .syslog =                       smack_syslog,
2583         .settime =                      cap_settime,
2584         .vm_enough_memory =             cap_vm_enough_memory,
2585
2586         .bprm_apply_creds =             cap_bprm_apply_creds,
2587         .bprm_set_security =            cap_bprm_set_security,
2588         .bprm_secureexec =              cap_bprm_secureexec,
2589
2590         .sb_alloc_security =            smack_sb_alloc_security,
2591         .sb_free_security =             smack_sb_free_security,
2592         .sb_copy_data =                 smack_sb_copy_data,
2593         .sb_kern_mount =                smack_sb_kern_mount,
2594         .sb_statfs =                    smack_sb_statfs,
2595         .sb_mount =                     smack_sb_mount,
2596         .sb_umount =                    smack_sb_umount,
2597
2598         .inode_alloc_security =         smack_inode_alloc_security,
2599         .inode_free_security =          smack_inode_free_security,
2600         .inode_init_security =          smack_inode_init_security,
2601         .inode_link =                   smack_inode_link,
2602         .inode_unlink =                 smack_inode_unlink,
2603         .inode_rmdir =                  smack_inode_rmdir,
2604         .inode_rename =                 smack_inode_rename,
2605         .inode_permission =             smack_inode_permission,
2606         .inode_setattr =                smack_inode_setattr,
2607         .inode_getattr =                smack_inode_getattr,
2608         .inode_setxattr =               smack_inode_setxattr,
2609         .inode_post_setxattr =          smack_inode_post_setxattr,
2610         .inode_getxattr =               smack_inode_getxattr,
2611         .inode_removexattr =            smack_inode_removexattr,
2612         .inode_need_killpriv =          cap_inode_need_killpriv,
2613         .inode_killpriv =               cap_inode_killpriv,
2614         .inode_getsecurity =            smack_inode_getsecurity,
2615         .inode_setsecurity =            smack_inode_setsecurity,
2616         .inode_listsecurity =           smack_inode_listsecurity,
2617         .inode_getsecid =               smack_inode_getsecid,
2618
2619         .file_permission =              smack_file_permission,
2620         .file_alloc_security =          smack_file_alloc_security,
2621         .file_free_security =           smack_file_free_security,
2622         .file_ioctl =                   smack_file_ioctl,
2623         .file_lock =                    smack_file_lock,
2624         .file_fcntl =                   smack_file_fcntl,
2625         .file_set_fowner =              smack_file_set_fowner,
2626         .file_send_sigiotask =          smack_file_send_sigiotask,
2627         .file_receive =                 smack_file_receive,
2628
2629         .task_alloc_security =          smack_task_alloc_security,
2630         .task_free_security =           smack_task_free_security,
2631         .task_post_setuid =             cap_task_post_setuid,
2632         .task_setpgid =                 smack_task_setpgid,
2633         .task_getpgid =                 smack_task_getpgid,
2634         .task_getsid =                  smack_task_getsid,
2635         .task_getsecid =                smack_task_getsecid,
2636         .task_setnice =                 smack_task_setnice,
2637         .task_setioprio =               smack_task_setioprio,
2638         .task_getioprio =               smack_task_getioprio,
2639         .task_setscheduler =            smack_task_setscheduler,
2640         .task_getscheduler =            smack_task_getscheduler,
2641         .task_movememory =              smack_task_movememory,
2642         .task_kill =                    smack_task_kill,
2643         .task_wait =                    smack_task_wait,
2644         .task_reparent_to_init =        cap_task_reparent_to_init,
2645         .task_to_inode =                smack_task_to_inode,
2646         .task_prctl =                   cap_task_prctl,
2647
2648         .ipc_permission =               smack_ipc_permission,
2649         .ipc_getsecid =                 smack_ipc_getsecid,
2650
2651         .msg_msg_alloc_security =       smack_msg_msg_alloc_security,
2652         .msg_msg_free_security =        smack_msg_msg_free_security,
2653
2654         .msg_queue_alloc_security =     smack_msg_queue_alloc_security,
2655         .msg_queue_free_security =      smack_msg_queue_free_security,
2656         .msg_queue_associate =          smack_msg_queue_associate,
2657         .msg_queue_msgctl =             smack_msg_queue_msgctl,
2658         .msg_queue_msgsnd =             smack_msg_queue_msgsnd,
2659         .msg_queue_msgrcv =             smack_msg_queue_msgrcv,
2660
2661         .shm_alloc_security =           smack_shm_alloc_security,
2662         .shm_free_security =            smack_shm_free_security,
2663         .shm_associate =                smack_shm_associate,
2664         .shm_shmctl =                   smack_shm_shmctl,
2665         .shm_shmat =                    smack_shm_shmat,
2666
2667         .sem_alloc_security =           smack_sem_alloc_security,
2668         .sem_free_security =            smack_sem_free_security,
2669         .sem_associate =                smack_sem_associate,
2670         .sem_semctl =                   smack_sem_semctl,
2671         .sem_semop =                    smack_sem_semop,
2672
2673         .netlink_send =                 cap_netlink_send,
2674         .netlink_recv =                 cap_netlink_recv,
2675
2676         .register_security =            smack_register_security,
2677
2678         .d_instantiate =                smack_d_instantiate,
2679
2680         .getprocattr =                  smack_getprocattr,
2681         .setprocattr =                  smack_setprocattr,
2682
2683         .unix_stream_connect =          smack_unix_stream_connect,
2684         .unix_may_send =                smack_unix_may_send,
2685
2686         .socket_post_create =           smack_socket_post_create,
2687         .socket_sock_rcv_skb =          smack_socket_sock_rcv_skb,
2688         .socket_getpeersec_stream =     smack_socket_getpeersec_stream,
2689         .socket_getpeersec_dgram =      smack_socket_getpeersec_dgram,
2690         .sk_alloc_security =            smack_sk_alloc_security,
2691         .sk_free_security =             smack_sk_free_security,
2692         .sock_graft =                   smack_sock_graft,
2693         .inet_conn_request =            smack_inet_conn_request,
2694
2695  /* key management security hooks */
2696 #ifdef CONFIG_KEYS
2697         .key_alloc =                    smack_key_alloc,
2698         .key_free =                     smack_key_free,
2699         .key_permission =               smack_key_permission,
2700 #endif /* CONFIG_KEYS */
2701
2702  /* Audit hooks */
2703 #ifdef CONFIG_AUDIT
2704         .audit_rule_init =              smack_audit_rule_init,
2705         .audit_rule_known =             smack_audit_rule_known,
2706         .audit_rule_match =             smack_audit_rule_match,
2707         .audit_rule_free =              smack_audit_rule_free,
2708 #endif /* CONFIG_AUDIT */
2709
2710         .secid_to_secctx =              smack_secid_to_secctx,
2711         .secctx_to_secid =              smack_secctx_to_secid,
2712         .release_secctx =               smack_release_secctx,
2713 };
2714
2715 /**
2716  * smack_init - initialize the smack system
2717  *
2718  * Returns 0
2719  */
2720 static __init int smack_init(void)
2721 {
2722         if (!security_module_enable(&smack_ops))
2723                 return 0;
2724
2725         printk(KERN_INFO "Smack:  Initializing.\n");
2726
2727         /*
2728          * Set the security state for the initial task.
2729          */
2730         current->security = &smack_known_floor.smk_known;
2731
2732         /*
2733          * Initialize locks
2734          */
2735         spin_lock_init(&smack_known_unset.smk_cipsolock);
2736         spin_lock_init(&smack_known_huh.smk_cipsolock);
2737         spin_lock_init(&smack_known_hat.smk_cipsolock);
2738         spin_lock_init(&smack_known_star.smk_cipsolock);
2739         spin_lock_init(&smack_known_floor.smk_cipsolock);
2740         spin_lock_init(&smack_known_invalid.smk_cipsolock);
2741
2742         /*
2743          * Register with LSM
2744          */
2745         if (register_security(&smack_ops))
2746                 panic("smack: Unable to register with kernel.\n");
2747
2748         return 0;
2749 }
2750
2751 /*
2752  * Smack requires early initialization in order to label
2753  * all processes and objects when they are created.
2754  */
2755 security_initcall(smack_init);
2756