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