smack: do not dereference NULL ipc object
[deliverable/linux.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 */
e0007529 192static int smack_sb_copy_data(char *orig, char *smackopts)
e114e473
CS
193{
194 char *cp, *commap, *otheropts, *dp;
195
e114e473
CS
196 otheropts = (char *)get_zeroed_page(GFP_KERNEL);
197 if (otheropts == NULL)
198 return -ENOMEM;
199
200 for (cp = orig, commap = orig; commap != NULL; cp = commap + 1) {
201 if (strstr(cp, SMK_FSDEFAULT) == cp)
202 dp = smackopts;
203 else if (strstr(cp, SMK_FSFLOOR) == cp)
204 dp = smackopts;
205 else if (strstr(cp, SMK_FSHAT) == cp)
206 dp = smackopts;
207 else if (strstr(cp, SMK_FSROOT) == cp)
208 dp = smackopts;
209 else
210 dp = otheropts;
211
212 commap = strchr(cp, ',');
213 if (commap != NULL)
214 *commap = '\0';
215
216 if (*dp != '\0')
217 strcat(dp, ",");
218 strcat(dp, cp);
219 }
220
221 strcpy(orig, otheropts);
222 free_page((unsigned long)otheropts);
223
224 return 0;
225}
226
227/**
228 * smack_sb_kern_mount - Smack specific mount processing
229 * @sb: the file system superblock
230 * @data: the smack mount options
231 *
232 * Returns 0 on success, an error code on failure
233 */
234static int smack_sb_kern_mount(struct super_block *sb, void *data)
235{
236 struct dentry *root = sb->s_root;
237 struct inode *inode = root->d_inode;
238 struct superblock_smack *sp = sb->s_security;
239 struct inode_smack *isp;
240 char *op;
241 char *commap;
242 char *nsp;
243
244 spin_lock(&sp->smk_sblock);
245 if (sp->smk_initialized != 0) {
246 spin_unlock(&sp->smk_sblock);
247 return 0;
248 }
249 sp->smk_initialized = 1;
250 spin_unlock(&sp->smk_sblock);
251
252 for (op = data; op != NULL; op = commap) {
253 commap = strchr(op, ',');
254 if (commap != NULL)
255 *commap++ = '\0';
256
257 if (strncmp(op, SMK_FSHAT, strlen(SMK_FSHAT)) == 0) {
258 op += strlen(SMK_FSHAT);
259 nsp = smk_import(op, 0);
260 if (nsp != NULL)
261 sp->smk_hat = nsp;
262 } else if (strncmp(op, SMK_FSFLOOR, strlen(SMK_FSFLOOR)) == 0) {
263 op += strlen(SMK_FSFLOOR);
264 nsp = smk_import(op, 0);
265 if (nsp != NULL)
266 sp->smk_floor = nsp;
267 } else if (strncmp(op, SMK_FSDEFAULT,
268 strlen(SMK_FSDEFAULT)) == 0) {
269 op += strlen(SMK_FSDEFAULT);
270 nsp = smk_import(op, 0);
271 if (nsp != NULL)
272 sp->smk_default = nsp;
273 } else if (strncmp(op, SMK_FSROOT, strlen(SMK_FSROOT)) == 0) {
274 op += strlen(SMK_FSROOT);
275 nsp = smk_import(op, 0);
276 if (nsp != NULL)
277 sp->smk_root = nsp;
278 }
279 }
280
281 /*
282 * Initialize the root inode.
283 */
284 isp = inode->i_security;
285 if (isp == NULL)
286 inode->i_security = new_inode_smack(sp->smk_root);
287 else
288 isp->smk_inode = sp->smk_root;
289
290 return 0;
291}
292
293/**
294 * smack_sb_statfs - Smack check on statfs
295 * @dentry: identifies the file system in question
296 *
297 * Returns 0 if current can read the floor of the filesystem,
298 * and error code otherwise
299 */
300static int smack_sb_statfs(struct dentry *dentry)
301{
302 struct superblock_smack *sbp = dentry->d_sb->s_security;
303
304 return smk_curacc(sbp->smk_floor, MAY_READ);
305}
306
307/**
308 * smack_sb_mount - Smack check for mounting
309 * @dev_name: unused
310 * @nd: mount point
311 * @type: unused
312 * @flags: unused
313 * @data: unused
314 *
315 * Returns 0 if current can write the floor of the filesystem
316 * being mounted on, an error code otherwise.
317 */
318static int smack_sb_mount(char *dev_name, struct nameidata *nd,
319 char *type, unsigned long flags, void *data)
320{
4ac91378 321 struct superblock_smack *sbp = nd->path.mnt->mnt_sb->s_security;
e114e473
CS
322
323 return smk_curacc(sbp->smk_floor, MAY_WRITE);
324}
325
326/**
327 * smack_sb_umount - Smack check for unmounting
328 * @mnt: file system to unmount
329 * @flags: unused
330 *
331 * Returns 0 if current can write the floor of the filesystem
332 * being unmounted, an error code otherwise.
333 */
334static int smack_sb_umount(struct vfsmount *mnt, int flags)
335{
336 struct superblock_smack *sbp;
337
338 sbp = mnt->mnt_sb->s_security;
339
340 return smk_curacc(sbp->smk_floor, MAY_WRITE);
341}
342
343/*
344 * Inode hooks
345 */
346
347/**
348 * smack_inode_alloc_security - allocate an inode blob
349 * @inode - the inode in need of a blob
350 *
351 * Returns 0 if it gets a blob, -ENOMEM otherwise
352 */
353static int smack_inode_alloc_security(struct inode *inode)
354{
355 inode->i_security = new_inode_smack(current->security);
356 if (inode->i_security == NULL)
357 return -ENOMEM;
358 return 0;
359}
360
361/**
362 * smack_inode_free_security - free an inode blob
363 * @inode - the inode with a blob
364 *
365 * Clears the blob pointer in inode
366 */
367static void smack_inode_free_security(struct inode *inode)
368{
369 kfree(inode->i_security);
370 inode->i_security = NULL;
371}
372
373/**
374 * smack_inode_init_security - copy out the smack from an inode
375 * @inode: the inode
376 * @dir: unused
377 * @name: where to put the attribute name
378 * @value: where to put the attribute value
379 * @len: where to put the length of the attribute
380 *
381 * Returns 0 if it all works out, -ENOMEM if there's no memory
382 */
383static int smack_inode_init_security(struct inode *inode, struct inode *dir,
384 char **name, void **value, size_t *len)
385{
386 char *isp = smk_of_inode(inode);
387
388 if (name) {
389 *name = kstrdup(XATTR_SMACK_SUFFIX, GFP_KERNEL);
390 if (*name == NULL)
391 return -ENOMEM;
392 }
393
394 if (value) {
395 *value = kstrdup(isp, GFP_KERNEL);
396 if (*value == NULL)
397 return -ENOMEM;
398 }
399
400 if (len)
401 *len = strlen(isp) + 1;
402
403 return 0;
404}
405
406/**
407 * smack_inode_link - Smack check on link
408 * @old_dentry: the existing object
409 * @dir: unused
410 * @new_dentry: the new object
411 *
412 * Returns 0 if access is permitted, an error code otherwise
413 */
414static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
415 struct dentry *new_dentry)
416{
417 int rc;
418 char *isp;
419
420 isp = smk_of_inode(old_dentry->d_inode);
421 rc = smk_curacc(isp, MAY_WRITE);
422
423 if (rc == 0 && new_dentry->d_inode != NULL) {
424 isp = smk_of_inode(new_dentry->d_inode);
425 rc = smk_curacc(isp, MAY_WRITE);
426 }
427
428 return rc;
429}
430
431/**
432 * smack_inode_unlink - Smack check on inode deletion
433 * @dir: containing directory object
434 * @dentry: file to unlink
435 *
436 * Returns 0 if current can write the containing directory
437 * and the object, error code otherwise
438 */
439static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
440{
441 struct inode *ip = dentry->d_inode;
442 int rc;
443
444 /*
445 * You need write access to the thing you're unlinking
446 */
447 rc = smk_curacc(smk_of_inode(ip), MAY_WRITE);
448 if (rc == 0)
449 /*
450 * You also need write access to the containing directory
451 */
452 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE);
453
454 return rc;
455}
456
457/**
458 * smack_inode_rmdir - Smack check on directory deletion
459 * @dir: containing directory object
460 * @dentry: directory to unlink
461 *
462 * Returns 0 if current can write the containing directory
463 * and the directory, error code otherwise
464 */
465static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
466{
467 int rc;
468
469 /*
470 * You need write access to the thing you're removing
471 */
472 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
473 if (rc == 0)
474 /*
475 * You also need write access to the containing directory
476 */
477 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE);
478
479 return rc;
480}
481
482/**
483 * smack_inode_rename - Smack check on rename
484 * @old_inode: the old directory
485 * @old_dentry: unused
486 * @new_inode: the new directory
487 * @new_dentry: unused
488 *
489 * Read and write access is required on both the old and
490 * new directories.
491 *
492 * Returns 0 if access is permitted, an error code otherwise
493 */
494static int smack_inode_rename(struct inode *old_inode,
495 struct dentry *old_dentry,
496 struct inode *new_inode,
497 struct dentry *new_dentry)
498{
499 int rc;
500 char *isp;
501
502 isp = smk_of_inode(old_dentry->d_inode);
503 rc = smk_curacc(isp, MAY_READWRITE);
504
505 if (rc == 0 && new_dentry->d_inode != NULL) {
506 isp = smk_of_inode(new_dentry->d_inode);
507 rc = smk_curacc(isp, MAY_READWRITE);
508 }
509
510 return rc;
511}
512
513/**
514 * smack_inode_permission - Smack version of permission()
515 * @inode: the inode in question
516 * @mask: the access requested
517 * @nd: unused
518 *
519 * This is the important Smack hook.
520 *
521 * Returns 0 if access is permitted, -EACCES otherwise
522 */
523static int smack_inode_permission(struct inode *inode, int mask,
524 struct nameidata *nd)
525{
526 /*
527 * No permission to check. Existence test. Yup, it's there.
528 */
529 if (mask == 0)
530 return 0;
531
532 return smk_curacc(smk_of_inode(inode), mask);
533}
534
535/**
536 * smack_inode_setattr - Smack check for setting attributes
537 * @dentry: the object
538 * @iattr: for the force flag
539 *
540 * Returns 0 if access is permitted, an error code otherwise
541 */
542static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
543{
544 /*
545 * Need to allow for clearing the setuid bit.
546 */
547 if (iattr->ia_valid & ATTR_FORCE)
548 return 0;
549
550 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
551}
552
553/**
554 * smack_inode_getattr - Smack check for getting attributes
555 * @mnt: unused
556 * @dentry: the object
557 *
558 * Returns 0 if access is permitted, an error code otherwise
559 */
560static int smack_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
561{
562 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ);
563}
564
565/**
566 * smack_inode_setxattr - Smack check for setting xattrs
567 * @dentry: the object
568 * @name: name of the attribute
569 * @value: unused
570 * @size: unused
571 * @flags: unused
572 *
573 * This protects the Smack attribute explicitly.
574 *
575 * Returns 0 if access is permitted, an error code otherwise
576 */
577static int smack_inode_setxattr(struct dentry *dentry, char *name,
578 void *value, size_t size, int flags)
579{
bcdca225 580 int rc = 0;
e114e473 581
bcdca225
CS
582 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
583 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
584 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
585 if (!capable(CAP_MAC_ADMIN))
586 rc = -EPERM;
587 } else
588 rc = cap_inode_setxattr(dentry, name, value, size, flags);
589
590 if (rc == 0)
591 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
592
593 return rc;
e114e473
CS
594}
595
596/**
597 * smack_inode_post_setxattr - Apply the Smack update approved above
598 * @dentry: object
599 * @name: attribute name
600 * @value: attribute value
601 * @size: attribute size
602 * @flags: unused
603 *
604 * Set the pointer in the inode blob to the entry found
605 * in the master label list.
606 */
607static void smack_inode_post_setxattr(struct dentry *dentry, char *name,
608 void *value, size_t size, int flags)
609{
610 struct inode_smack *isp;
611 char *nsp;
612
613 /*
614 * Not SMACK
615 */
616 if (strcmp(name, XATTR_NAME_SMACK))
617 return;
618
619 if (size >= SMK_LABELLEN)
620 return;
621
622 isp = dentry->d_inode->i_security;
623
624 /*
625 * No locking is done here. This is a pointer
626 * assignment.
627 */
628 nsp = smk_import(value, size);
629 if (nsp != NULL)
630 isp->smk_inode = nsp;
631 else
632 isp->smk_inode = smack_known_invalid.smk_known;
633
634 return;
635}
636
637/*
638 * smack_inode_getxattr - Smack check on getxattr
639 * @dentry: the object
640 * @name: unused
641 *
642 * Returns 0 if access is permitted, an error code otherwise
643 */
644static int smack_inode_getxattr(struct dentry *dentry, char *name)
645{
646 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ);
647}
648
649/*
650 * smack_inode_removexattr - Smack check on removexattr
651 * @dentry: the object
652 * @name: name of the attribute
653 *
654 * Removing the Smack attribute requires CAP_MAC_ADMIN
655 *
656 * Returns 0 if access is permitted, an error code otherwise
657 */
658static int smack_inode_removexattr(struct dentry *dentry, char *name)
659{
bcdca225 660 int rc = 0;
e114e473 661
bcdca225
CS
662 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
663 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
664 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
665 if (!capable(CAP_MAC_ADMIN))
666 rc = -EPERM;
667 } else
668 rc = cap_inode_removexattr(dentry, name);
669
670 if (rc == 0)
671 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE);
672
673 return rc;
e114e473
CS
674}
675
676/**
677 * smack_inode_getsecurity - get smack xattrs
678 * @inode: the object
679 * @name: attribute name
680 * @buffer: where to put the result
681 * @size: size of the buffer
682 * @err: unused
683 *
684 * Returns the size of the attribute or an error code
685 */
686static int smack_inode_getsecurity(const struct inode *inode,
687 const char *name, void **buffer,
688 bool alloc)
689{
690 struct socket_smack *ssp;
691 struct socket *sock;
692 struct super_block *sbp;
693 struct inode *ip = (struct inode *)inode;
694 char *isp;
695 int ilen;
696 int rc = 0;
697
698 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
699 isp = smk_of_inode(inode);
700 ilen = strlen(isp) + 1;
701 *buffer = isp;
702 return ilen;
703 }
704
705 /*
706 * The rest of the Smack xattrs are only on sockets.
707 */
708 sbp = ip->i_sb;
709 if (sbp->s_magic != SOCKFS_MAGIC)
710 return -EOPNOTSUPP;
711
712 sock = SOCKET_I(ip);
2e1d146a 713 if (sock == NULL || sock->sk == NULL)
e114e473
CS
714 return -EOPNOTSUPP;
715
716 ssp = sock->sk->sk_security;
717
718 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
719 isp = ssp->smk_in;
720 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
721 isp = ssp->smk_out;
722 else
723 return -EOPNOTSUPP;
724
725 ilen = strlen(isp) + 1;
726 if (rc == 0) {
727 *buffer = isp;
728 rc = ilen;
729 }
730
731 return rc;
732}
733
734
735/**
736 * smack_inode_listsecurity - list the Smack attributes
737 * @inode: the object
738 * @buffer: where they go
739 * @buffer_size: size of buffer
740 *
741 * Returns 0 on success, -EINVAL otherwise
742 */
743static int smack_inode_listsecurity(struct inode *inode, char *buffer,
744 size_t buffer_size)
745{
746 int len = strlen(XATTR_NAME_SMACK);
747
748 if (buffer != NULL && len <= buffer_size) {
749 memcpy(buffer, XATTR_NAME_SMACK, len);
750 return len;
751 }
752 return -EINVAL;
753}
754
755/*
756 * File Hooks
757 */
758
759/**
760 * smack_file_permission - Smack check on file operations
761 * @file: unused
762 * @mask: unused
763 *
764 * Returns 0
765 *
766 * Should access checks be done on each read or write?
767 * UNICOS and SELinux say yes.
768 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
769 *
770 * I'll say no for now. Smack does not do the frequent
771 * label changing that SELinux does.
772 */
773static int smack_file_permission(struct file *file, int mask)
774{
775 return 0;
776}
777
778/**
779 * smack_file_alloc_security - assign a file security blob
780 * @file: the object
781 *
782 * The security blob for a file is a pointer to the master
783 * label list, so no allocation is done.
784 *
785 * Returns 0
786 */
787static int smack_file_alloc_security(struct file *file)
788{
789 file->f_security = current->security;
790 return 0;
791}
792
793/**
794 * smack_file_free_security - clear a file security blob
795 * @file: the object
796 *
797 * The security blob for a file is a pointer to the master
798 * label list, so no memory is freed.
799 */
800static void smack_file_free_security(struct file *file)
801{
802 file->f_security = NULL;
803}
804
805/**
806 * smack_file_ioctl - Smack check on ioctls
807 * @file: the object
808 * @cmd: what to do
809 * @arg: unused
810 *
811 * Relies heavily on the correct use of the ioctl command conventions.
812 *
813 * Returns 0 if allowed, error code otherwise
814 */
815static int smack_file_ioctl(struct file *file, unsigned int cmd,
816 unsigned long arg)
817{
818 int rc = 0;
819
820 if (_IOC_DIR(cmd) & _IOC_WRITE)
821 rc = smk_curacc(file->f_security, MAY_WRITE);
822
823 if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ))
824 rc = smk_curacc(file->f_security, MAY_READ);
825
826 return rc;
827}
828
829/**
830 * smack_file_lock - Smack check on file locking
831 * @file: the object
832 * @cmd unused
833 *
834 * Returns 0 if current has write access, error code otherwise
835 */
836static int smack_file_lock(struct file *file, unsigned int cmd)
837{
838 return smk_curacc(file->f_security, MAY_WRITE);
839}
840
841/**
842 * smack_file_fcntl - Smack check on fcntl
843 * @file: the object
844 * @cmd: what action to check
845 * @arg: unused
846 *
847 * Returns 0 if current has access, error code otherwise
848 */
849static int smack_file_fcntl(struct file *file, unsigned int cmd,
850 unsigned long arg)
851{
852 int rc;
853
854 switch (cmd) {
855 case F_DUPFD:
856 case F_GETFD:
857 case F_GETFL:
858 case F_GETLK:
859 case F_GETOWN:
860 case F_GETSIG:
861 rc = smk_curacc(file->f_security, MAY_READ);
862 break;
863 case F_SETFD:
864 case F_SETFL:
865 case F_SETLK:
866 case F_SETLKW:
867 case F_SETOWN:
868 case F_SETSIG:
869 rc = smk_curacc(file->f_security, MAY_WRITE);
870 break;
871 default:
872 rc = smk_curacc(file->f_security, MAY_READWRITE);
873 }
874
875 return rc;
876}
877
878/**
879 * smack_file_set_fowner - set the file security blob value
880 * @file: object in question
881 *
882 * Returns 0
883 * Further research may be required on this one.
884 */
885static int smack_file_set_fowner(struct file *file)
886{
887 file->f_security = current->security;
888 return 0;
889}
890
891/**
892 * smack_file_send_sigiotask - Smack on sigio
893 * @tsk: The target task
894 * @fown: the object the signal come from
895 * @signum: unused
896 *
897 * Allow a privileged task to get signals even if it shouldn't
898 *
899 * Returns 0 if a subject with the object's smack could
900 * write to the task, an error code otherwise.
901 */
902static int smack_file_send_sigiotask(struct task_struct *tsk,
903 struct fown_struct *fown, int signum)
904{
905 struct file *file;
906 int rc;
907
908 /*
909 * struct fown_struct is never outside the context of a struct file
910 */
911 file = container_of(fown, struct file, f_owner);
912 rc = smk_access(file->f_security, tsk->security, MAY_WRITE);
913 if (rc != 0 && __capable(tsk, CAP_MAC_OVERRIDE))
914 return 0;
915 return rc;
916}
917
918/**
919 * smack_file_receive - Smack file receive check
920 * @file: the object
921 *
922 * Returns 0 if current has access, error code otherwise
923 */
924static int smack_file_receive(struct file *file)
925{
926 int may = 0;
927
928 /*
929 * This code relies on bitmasks.
930 */
931 if (file->f_mode & FMODE_READ)
932 may = MAY_READ;
933 if (file->f_mode & FMODE_WRITE)
934 may |= MAY_WRITE;
935
936 return smk_curacc(file->f_security, may);
937}
938
939/*
940 * Task hooks
941 */
942
943/**
944 * smack_task_alloc_security - "allocate" a task blob
945 * @tsk: the task in need of a blob
946 *
947 * Smack isn't using copies of blobs. Everyone
948 * points to an immutable list. No alloc required.
949 * No data copy required.
950 *
951 * Always returns 0
952 */
953static int smack_task_alloc_security(struct task_struct *tsk)
954{
955 tsk->security = current->security;
956
957 return 0;
958}
959
960/**
961 * smack_task_free_security - "free" a task blob
962 * @task: the task with the blob
963 *
964 * Smack isn't using copies of blobs. Everyone
965 * points to an immutable list. The blobs never go away.
966 * There is no leak here.
967 */
968static void smack_task_free_security(struct task_struct *task)
969{
970 task->security = NULL;
971}
972
973/**
974 * smack_task_setpgid - Smack check on setting pgid
975 * @p: the task object
976 * @pgid: unused
977 *
978 * Return 0 if write access is permitted
979 */
980static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
981{
982 return smk_curacc(p->security, MAY_WRITE);
983}
984
985/**
986 * smack_task_getpgid - Smack access check for getpgid
987 * @p: the object task
988 *
989 * Returns 0 if current can read the object task, error code otherwise
990 */
991static int smack_task_getpgid(struct task_struct *p)
992{
993 return smk_curacc(p->security, MAY_READ);
994}
995
996/**
997 * smack_task_getsid - Smack access check for getsid
998 * @p: the object task
999 *
1000 * Returns 0 if current can read the object task, error code otherwise
1001 */
1002static int smack_task_getsid(struct task_struct *p)
1003{
1004 return smk_curacc(p->security, MAY_READ);
1005}
1006
1007/**
1008 * smack_task_getsecid - get the secid of the task
1009 * @p: the object task
1010 * @secid: where to put the result
1011 *
1012 * Sets the secid to contain a u32 version of the smack label.
1013 */
1014static void smack_task_getsecid(struct task_struct *p, u32 *secid)
1015{
1016 *secid = smack_to_secid(p->security);
1017}
1018
1019/**
1020 * smack_task_setnice - Smack check on setting nice
1021 * @p: the task object
1022 * @nice: unused
1023 *
1024 * Return 0 if write access is permitted
1025 */
1026static int smack_task_setnice(struct task_struct *p, int nice)
1027{
bcdca225
CS
1028 int rc;
1029
1030 rc = cap_task_setnice(p, nice);
1031 if (rc == 0)
1032 rc = smk_curacc(p->security, MAY_WRITE);
1033 return rc;
e114e473
CS
1034}
1035
1036/**
1037 * smack_task_setioprio - Smack check on setting ioprio
1038 * @p: the task object
1039 * @ioprio: unused
1040 *
1041 * Return 0 if write access is permitted
1042 */
1043static int smack_task_setioprio(struct task_struct *p, int ioprio)
1044{
bcdca225
CS
1045 int rc;
1046
1047 rc = cap_task_setioprio(p, ioprio);
1048 if (rc == 0)
1049 rc = smk_curacc(p->security, MAY_WRITE);
1050 return rc;
e114e473
CS
1051}
1052
1053/**
1054 * smack_task_getioprio - Smack check on reading ioprio
1055 * @p: the task object
1056 *
1057 * Return 0 if read access is permitted
1058 */
1059static int smack_task_getioprio(struct task_struct *p)
1060{
1061 return smk_curacc(p->security, MAY_READ);
1062}
1063
1064/**
1065 * smack_task_setscheduler - Smack check on setting scheduler
1066 * @p: the task object
1067 * @policy: unused
1068 * @lp: unused
1069 *
1070 * Return 0 if read access is permitted
1071 */
1072static int smack_task_setscheduler(struct task_struct *p, int policy,
1073 struct sched_param *lp)
1074{
bcdca225
CS
1075 int rc;
1076
1077 rc = cap_task_setscheduler(p, policy, lp);
1078 if (rc == 0)
1079 rc = smk_curacc(p->security, MAY_WRITE);
1080 return rc;
e114e473
CS
1081}
1082
1083/**
1084 * smack_task_getscheduler - Smack check on reading scheduler
1085 * @p: the task object
1086 *
1087 * Return 0 if read access is permitted
1088 */
1089static int smack_task_getscheduler(struct task_struct *p)
1090{
1091 return smk_curacc(p->security, MAY_READ);
1092}
1093
1094/**
1095 * smack_task_movememory - Smack check on moving memory
1096 * @p: the task object
1097 *
1098 * Return 0 if write access is permitted
1099 */
1100static int smack_task_movememory(struct task_struct *p)
1101{
1102 return smk_curacc(p->security, MAY_WRITE);
1103}
1104
1105/**
1106 * smack_task_kill - Smack check on signal delivery
1107 * @p: the task object
1108 * @info: unused
1109 * @sig: unused
1110 * @secid: identifies the smack to use in lieu of current's
1111 *
1112 * Return 0 if write access is permitted
1113 *
1114 * The secid behavior is an artifact of an SELinux hack
1115 * in the USB code. Someday it may go away.
1116 */
1117static int smack_task_kill(struct task_struct *p, struct siginfo *info,
1118 int sig, u32 secid)
1119{
bcdca225
CS
1120 int rc;
1121
1122 rc = cap_task_kill(p, info, sig, secid);
1123 if (rc != 0)
1124 return rc;
e114e473
CS
1125 /*
1126 * Special cases where signals really ought to go through
1127 * in spite of policy. Stephen Smalley suggests it may
1128 * make sense to change the caller so that it doesn't
1129 * bother with the LSM hook in these cases.
1130 */
1131 if (info != SEND_SIG_NOINFO &&
1132 (is_si_special(info) || SI_FROMKERNEL(info)))
1133 return 0;
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 */
1154static 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 */
1186static 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 */
1206static 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 */
1230static 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 */
1242static 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 == 0)
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 */
1276static 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:
4bc87e62
CS
1283 nlsp->domain = kstrdup(smack, GFP_ATOMIC);
1284 nlsp->flags = NETLBL_SECATTR_DOMAIN | NETLBL_SECATTR_MLS_LVL;
e114e473
CS
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 */
1309static int smack_netlabel(struct sock *sk)
1310{
2e1d146a 1311 struct socket_smack *ssp;
e114e473 1312 struct netlbl_lsm_secattr secattr;
4bc87e62 1313 int rc;
e114e473 1314
2e1d146a 1315 ssp = sk->sk_security;
e114e473
CS
1316 netlbl_secattr_init(&secattr);
1317 smack_to_secattr(ssp->smk_out, &secattr);
4bc87e62 1318 rc = netlbl_sock_setattr(sk, &secattr);
e114e473 1319 netlbl_secattr_destroy(&secattr);
4bc87e62 1320
e114e473
CS
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 */
1336static 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;
4bc87e62 1343 int rc = 0;
e114e473
CS
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);
2e1d146a 1363 if (sock == NULL || sock->sk == NULL)
e114e473
CS
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;
4bc87e62
CS
1372 rc = smack_netlabel(sock->sk);
1373 if (rc != 0)
1374 printk(KERN_WARNING "Smack: \"%s\" netlbl error %d.\n",
1375 __func__, -rc);
e114e473
CS
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 */
1394static int smack_socket_post_create(struct socket *sock, int family,
1395 int type, int protocol, int kern)
1396{
2e1d146a 1397 if (family != PF_INET || sock->sk == NULL)
e114e473
CS
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 */
1411static 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 */
1431static 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 */
1443static 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 */
1454static 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 */
1465static 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 */
1479static 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 */
1493static 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 */
1509static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
1510{
1d252fb8 1511 char *ssp;
e114e473
CS
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
1d252fb8 1535 ssp = smack_of_shm(shp);
e114e473
CS
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 */
1547static 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 */
1563static 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 */
1574static 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 */
1588static 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 */
1602static 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 */
1618static int smack_sem_semctl(struct sem_array *sma, int cmd)
1619{
1d252fb8 1620 char *ssp;
e114e473
CS
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
1d252fb8 1649 ssp = smack_of_sem(sma);
e114e473
CS
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 */
1664static 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 */
1678static 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 */
1692static 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 */
1705static 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 */
1717static 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 */
1733static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
1734{
1d252fb8 1735 char *msp;
e114e473
CS
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
1d252fb8 1757 msp = smack_of_msq(msq);
e114e473
CS
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 */
1769static 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 */
1789static 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 */
1804static 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
bcdca225
CS
1813/* module stacking operations */
1814
1815/**
1816 * smack_register_security - stack capability module
1817 * @name: module name
1818 * @ops: module operations - ignored
1819 *
1820 * Allow the capability module to register.
1821 */
1822static int smack_register_security(const char *name,
1823 struct security_operations *ops)
1824{
1825 if (strcmp(name, "capability") != 0)
1826 return -EINVAL;
1827
1828 printk(KERN_INFO "%s: Registering secondary module %s\n",
1829 __func__, name);
1830
1831 return 0;
1832}
1833
e114e473
CS
1834/**
1835 * smack_d_instantiate - Make sure the blob is correct on an inode
1836 * @opt_dentry: unused
1837 * @inode: the object
1838 *
1839 * Set the inode's security blob if it hasn't been done already.
1840 */
1841static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
1842{
1843 struct super_block *sbp;
1844 struct superblock_smack *sbsp;
1845 struct inode_smack *isp;
1846 char *csp = current->security;
1847 char *fetched;
1848 char *final;
1849 struct dentry *dp;
1850
1851 if (inode == NULL)
1852 return;
1853
1854 isp = inode->i_security;
1855
1856 mutex_lock(&isp->smk_lock);
1857 /*
1858 * If the inode is already instantiated
1859 * take the quick way out
1860 */
1861 if (isp->smk_flags & SMK_INODE_INSTANT)
1862 goto unlockandout;
1863
1864 sbp = inode->i_sb;
1865 sbsp = sbp->s_security;
1866 /*
1867 * We're going to use the superblock default label
1868 * if there's no label on the file.
1869 */
1870 final = sbsp->smk_default;
1871
1872 /*
1873 * This is pretty hackish.
1874 * Casey says that we shouldn't have to do
1875 * file system specific code, but it does help
1876 * with keeping it simple.
1877 */
1878 switch (sbp->s_magic) {
1879 case SMACK_MAGIC:
1880 /*
1881 * Casey says that it's a little embarassing
1882 * that the smack file system doesn't do
1883 * extended attributes.
1884 */
1885 final = smack_known_star.smk_known;
1886 break;
1887 case PIPEFS_MAGIC:
1888 /*
1889 * Casey says pipes are easy (?)
1890 */
1891 final = smack_known_star.smk_known;
1892 break;
1893 case DEVPTS_SUPER_MAGIC:
1894 /*
1895 * devpts seems content with the label of the task.
1896 * Programs that change smack have to treat the
1897 * pty with respect.
1898 */
1899 final = csp;
1900 break;
1901 case SOCKFS_MAGIC:
1902 /*
1903 * Casey says sockets get the smack of the task.
1904 */
1905 final = csp;
1906 break;
1907 case PROC_SUPER_MAGIC:
1908 /*
1909 * Casey says procfs appears not to care.
1910 * The superblock default suffices.
1911 */
1912 break;
1913 case TMPFS_MAGIC:
1914 /*
1915 * Device labels should come from the filesystem,
1916 * but watch out, because they're volitile,
1917 * getting recreated on every reboot.
1918 */
1919 final = smack_known_star.smk_known;
1920 /*
1921 * No break.
1922 *
1923 * If a smack value has been set we want to use it,
1924 * but since tmpfs isn't giving us the opportunity
1925 * to set mount options simulate setting the
1926 * superblock default.
1927 */
1928 default:
1929 /*
1930 * This isn't an understood special case.
1931 * Get the value from the xattr.
1932 *
1933 * No xattr support means, alas, no SMACK label.
1934 * Use the aforeapplied default.
1935 * It would be curious if the label of the task
1936 * does not match that assigned.
1937 */
1938 if (inode->i_op->getxattr == NULL)
1939 break;
1940 /*
1941 * Get the dentry for xattr.
1942 */
1943 if (opt_dentry == NULL) {
1944 dp = d_find_alias(inode);
1945 if (dp == NULL)
1946 break;
1947 } else {
1948 dp = dget(opt_dentry);
1949 if (dp == NULL)
1950 break;
1951 }
1952
1953 fetched = smk_fetch(inode, dp);
1954 if (fetched != NULL)
1955 final = fetched;
1956
1957 dput(dp);
1958 break;
1959 }
1960
1961 if (final == NULL)
1962 isp->smk_inode = csp;
1963 else
1964 isp->smk_inode = final;
1965
1966 isp->smk_flags |= SMK_INODE_INSTANT;
1967
1968unlockandout:
1969 mutex_unlock(&isp->smk_lock);
1970 return;
1971}
1972
1973/**
1974 * smack_getprocattr - Smack process attribute access
1975 * @p: the object task
1976 * @name: the name of the attribute in /proc/.../attr
1977 * @value: where to put the result
1978 *
1979 * Places a copy of the task Smack into value
1980 *
1981 * Returns the length of the smack label or an error code
1982 */
1983static int smack_getprocattr(struct task_struct *p, char *name, char **value)
1984{
1985 char *cp;
1986 int slen;
1987
1988 if (strcmp(name, "current") != 0)
1989 return -EINVAL;
1990
1991 cp = kstrdup(p->security, GFP_KERNEL);
1992 if (cp == NULL)
1993 return -ENOMEM;
1994
1995 slen = strlen(cp);
1996 *value = cp;
1997 return slen;
1998}
1999
2000/**
2001 * smack_setprocattr - Smack process attribute setting
2002 * @p: the object task
2003 * @name: the name of the attribute in /proc/.../attr
2004 * @value: the value to set
2005 * @size: the size of the value
2006 *
2007 * Sets the Smack value of the task. Only setting self
2008 * is permitted and only with privilege
2009 *
2010 * Returns the length of the smack label or an error code
2011 */
2012static int smack_setprocattr(struct task_struct *p, char *name,
2013 void *value, size_t size)
2014{
2015 char *newsmack;
2016
2017 if (!__capable(p, CAP_MAC_ADMIN))
2018 return -EPERM;
2019
2020 /*
2021 * Changing another process' Smack value is too dangerous
2022 * and supports no sane use case.
2023 */
2024 if (p != current)
2025 return -EPERM;
2026
2027 if (value == NULL || size == 0 || size >= SMK_LABELLEN)
2028 return -EINVAL;
2029
2030 if (strcmp(name, "current") != 0)
2031 return -EINVAL;
2032
2033 newsmack = smk_import(value, size);
2034 if (newsmack == NULL)
2035 return -EINVAL;
2036
2037 p->security = newsmack;
2038 return size;
2039}
2040
2041/**
2042 * smack_unix_stream_connect - Smack access on UDS
2043 * @sock: one socket
2044 * @other: the other socket
2045 * @newsk: unused
2046 *
2047 * Return 0 if a subject with the smack of sock could access
2048 * an object with the smack of other, otherwise an error code
2049 */
2050static int smack_unix_stream_connect(struct socket *sock,
2051 struct socket *other, struct sock *newsk)
2052{
2053 struct inode *sp = SOCK_INODE(sock);
2054 struct inode *op = SOCK_INODE(other);
2055
2056 return smk_access(smk_of_inode(sp), smk_of_inode(op), MAY_READWRITE);
2057}
2058
2059/**
2060 * smack_unix_may_send - Smack access on UDS
2061 * @sock: one socket
2062 * @other: the other socket
2063 *
2064 * Return 0 if a subject with the smack of sock could access
2065 * an object with the smack of other, otherwise an error code
2066 */
2067static int smack_unix_may_send(struct socket *sock, struct socket *other)
2068{
2069 struct inode *sp = SOCK_INODE(sock);
2070 struct inode *op = SOCK_INODE(other);
2071
2072 return smk_access(smk_of_inode(sp), smk_of_inode(op), MAY_WRITE);
2073}
2074
2075/**
2076 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat
2077 * pair to smack
2078 * @sap: netlabel secattr
2079 * @sip: where to put the result
2080 *
2081 * Copies a smack label into sip
2082 */
2083static void smack_from_secattr(struct netlbl_lsm_secattr *sap, char *sip)
2084{
2085 char smack[SMK_LABELLEN];
2086 int pcat;
2087
2088 if ((sap->flags & NETLBL_SECATTR_MLS_LVL) == 0) {
2089 /*
2090 * If there are flags but no level netlabel isn't
2091 * behaving the way we expect it to.
2092 *
2093 * Without guidance regarding the smack value
2094 * for the packet fall back on the network
2095 * ambient value.
2096 */
2097 strncpy(sip, smack_net_ambient, SMK_MAXLEN);
2098 return;
2099 }
2100 /*
2101 * Get the categories, if any
2102 */
2103 memset(smack, '\0', SMK_LABELLEN);
2104 if ((sap->flags & NETLBL_SECATTR_MLS_CAT) != 0)
2105 for (pcat = -1;;) {
2106 pcat = netlbl_secattr_catmap_walk(sap->attr.mls.cat,
2107 pcat + 1);
2108 if (pcat < 0)
2109 break;
2110 smack_catset_bit(pcat, smack);
2111 }
2112 /*
2113 * If it is CIPSO using smack direct mapping
2114 * we are already done. WeeHee.
2115 */
2116 if (sap->attr.mls.lvl == smack_cipso_direct) {
2117 memcpy(sip, smack, SMK_MAXLEN);
2118 return;
2119 }
2120 /*
2121 * Look it up in the supplied table if it is not a direct mapping.
2122 */
2123 smack_from_cipso(sap->attr.mls.lvl, smack, sip);
2124 return;
2125}
2126
2127/**
2128 * smack_socket_sock_rcv_skb - Smack packet delivery access check
2129 * @sk: socket
2130 * @skb: packet
2131 *
2132 * Returns 0 if the packet should be delivered, an error code otherwise
2133 */
2134static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
2135{
2136 struct netlbl_lsm_secattr secattr;
2137 struct socket_smack *ssp = sk->sk_security;
2138 char smack[SMK_LABELLEN];
2139 int rc;
2140
2141 if (sk->sk_family != PF_INET && sk->sk_family != PF_INET6)
2142 return 0;
2143
2144 /*
2145 * Translate what netlabel gave us.
2146 */
2147 memset(smack, '\0', SMK_LABELLEN);
2148 netlbl_secattr_init(&secattr);
2149 rc = netlbl_skbuff_getattr(skb, sk->sk_family, &secattr);
2150 if (rc == 0)
2151 smack_from_secattr(&secattr, smack);
2152 else
2153 strncpy(smack, smack_net_ambient, SMK_MAXLEN);
2154 netlbl_secattr_destroy(&secattr);
2155 /*
2156 * Receiving a packet requires that the other end
2157 * be able to write here. Read access is not required.
2158 * This is the simplist possible security model
2159 * for networking.
2160 */
2161 return smk_access(smack, ssp->smk_in, MAY_WRITE);
2162}
2163
2164/**
2165 * smack_socket_getpeersec_stream - pull in packet label
2166 * @sock: the socket
2167 * @optval: user's destination
2168 * @optlen: size thereof
2169 * @len: max thereoe
2170 *
2171 * returns zero on success, an error code otherwise
2172 */
2173static int smack_socket_getpeersec_stream(struct socket *sock,
2174 char __user *optval,
2175 int __user *optlen, unsigned len)
2176{
2177 struct socket_smack *ssp;
2178 int slen;
2179 int rc = 0;
2180
2181 ssp = sock->sk->sk_security;
2182 slen = strlen(ssp->smk_packet) + 1;
2183
2184 if (slen > len)
2185 rc = -ERANGE;
2186 else if (copy_to_user(optval, ssp->smk_packet, slen) != 0)
2187 rc = -EFAULT;
2188
2189 if (put_user(slen, optlen) != 0)
2190 rc = -EFAULT;
2191
2192 return rc;
2193}
2194
2195
2196/**
2197 * smack_socket_getpeersec_dgram - pull in packet label
2198 * @sock: the socket
2199 * @skb: packet data
2200 * @secid: pointer to where to put the secid of the packet
2201 *
2202 * Sets the netlabel socket state on sk from parent
2203 */
2204static int smack_socket_getpeersec_dgram(struct socket *sock,
2205 struct sk_buff *skb, u32 *secid)
2206
2207{
2208 struct netlbl_lsm_secattr secattr;
2209 struct sock *sk;
2210 char smack[SMK_LABELLEN];
2211 int family = PF_INET;
2212 u32 s;
2213 int rc;
2214
2215 /*
2216 * Only works for families with packets.
2217 */
2218 if (sock != NULL) {
2219 sk = sock->sk;
2220 if (sk->sk_family != PF_INET && sk->sk_family != PF_INET6)
2221 return 0;
2222 family = sk->sk_family;
2223 }
2224 /*
2225 * Translate what netlabel gave us.
2226 */
2227 memset(smack, '\0', SMK_LABELLEN);
2228 netlbl_secattr_init(&secattr);
2229 rc = netlbl_skbuff_getattr(skb, family, &secattr);
2230 if (rc == 0)
2231 smack_from_secattr(&secattr, smack);
2232 netlbl_secattr_destroy(&secattr);
2233
2234 /*
2235 * Give up if we couldn't get anything
2236 */
2237 if (rc != 0)
2238 return rc;
2239
2240 s = smack_to_secid(smack);
2241 if (s == 0)
2242 return -EINVAL;
2243
2244 *secid = s;
2245 return 0;
2246}
2247
2248/**
2249 * smack_sock_graft - graft access state between two sockets
2250 * @sk: fresh sock
2251 * @parent: donor socket
2252 *
2253 * Sets the netlabel socket state on sk from parent
2254 */
2255static void smack_sock_graft(struct sock *sk, struct socket *parent)
2256{
2257 struct socket_smack *ssp;
2258 int rc;
2259
2260 if (sk == NULL)
2261 return;
2262
2263 if (sk->sk_family != PF_INET && sk->sk_family != PF_INET6)
2264 return;
2265
2266 ssp = sk->sk_security;
2267 ssp->smk_in = current->security;
2268 ssp->smk_out = current->security;
2269 ssp->smk_packet[0] = '\0';
2270
2271 rc = smack_netlabel(sk);
4bc87e62
CS
2272 if (rc != 0)
2273 printk(KERN_WARNING "Smack: \"%s\" netlbl error %d.\n",
2274 __func__, -rc);
e114e473
CS
2275}
2276
2277/**
2278 * smack_inet_conn_request - Smack access check on connect
2279 * @sk: socket involved
2280 * @skb: packet
2281 * @req: unused
2282 *
2283 * Returns 0 if a task with the packet label could write to
2284 * the socket, otherwise an error code
2285 */
2286static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
2287 struct request_sock *req)
2288{
2289 struct netlbl_lsm_secattr skb_secattr;
2290 struct socket_smack *ssp = sk->sk_security;
2291 char smack[SMK_LABELLEN];
2292 int rc;
2293
2294 if (skb == NULL)
2295 return -EACCES;
2296
2297 memset(smack, '\0', SMK_LABELLEN);
2298 netlbl_secattr_init(&skb_secattr);
2299 rc = netlbl_skbuff_getattr(skb, sk->sk_family, &skb_secattr);
2300 if (rc == 0)
2301 smack_from_secattr(&skb_secattr, smack);
2302 else
2303 strncpy(smack, smack_known_huh.smk_known, SMK_MAXLEN);
2304 netlbl_secattr_destroy(&skb_secattr);
2305 /*
2306 * Receiving a packet requires that the other end
2307 * be able to write here. Read access is not required.
2308 *
2309 * If the request is successful save the peer's label
2310 * so that SO_PEERCRED can report it.
2311 */
2312 rc = smk_access(smack, ssp->smk_in, MAY_WRITE);
2313 if (rc == 0)
2314 strncpy(ssp->smk_packet, smack, SMK_MAXLEN);
2315
2316 return rc;
2317}
2318
2319/*
2320 * Key management security hooks
2321 *
2322 * Casey has not tested key support very heavily.
2323 * The permission check is most likely too restrictive.
2324 * If you care about keys please have a look.
2325 */
2326#ifdef CONFIG_KEYS
2327
2328/**
2329 * smack_key_alloc - Set the key security blob
2330 * @key: object
2331 * @tsk: the task associated with the key
2332 * @flags: unused
2333 *
2334 * No allocation required
2335 *
2336 * Returns 0
2337 */
2338static int smack_key_alloc(struct key *key, struct task_struct *tsk,
2339 unsigned long flags)
2340{
2341 key->security = tsk->security;
2342 return 0;
2343}
2344
2345/**
2346 * smack_key_free - Clear the key security blob
2347 * @key: the object
2348 *
2349 * Clear the blob pointer
2350 */
2351static void smack_key_free(struct key *key)
2352{
2353 key->security = NULL;
2354}
2355
2356/*
2357 * smack_key_permission - Smack access on a key
2358 * @key_ref: gets to the object
2359 * @context: task involved
2360 * @perm: unused
2361 *
2362 * Return 0 if the task has read and write to the object,
2363 * an error code otherwise
2364 */
2365static int smack_key_permission(key_ref_t key_ref,
2366 struct task_struct *context, key_perm_t perm)
2367{
2368 struct key *keyp;
2369
2370 keyp = key_ref_to_ptr(key_ref);
2371 if (keyp == NULL)
2372 return -EINVAL;
2373 /*
2374 * If the key hasn't been initialized give it access so that
2375 * it may do so.
2376 */
2377 if (keyp->security == NULL)
2378 return 0;
2379 /*
2380 * This should not occur
2381 */
2382 if (context->security == NULL)
2383 return -EACCES;
2384
2385 return smk_access(context->security, keyp->security, MAY_READWRITE);
2386}
2387#endif /* CONFIG_KEYS */
2388
2389/*
2390 * smack_secid_to_secctx - return the smack label for a secid
2391 * @secid: incoming integer
2392 * @secdata: destination
2393 * @seclen: how long it is
2394 *
2395 * Exists for networking code.
2396 */
2397static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2398{
2399 char *sp = smack_from_secid(secid);
2400
2401 *secdata = sp;
2402 *seclen = strlen(sp);
2403 return 0;
2404}
2405
4bc87e62
CS
2406/*
2407 * smack_secctx_to_secid - return the secid for a smack label
2408 * @secdata: smack label
2409 * @seclen: how long result is
2410 * @secid: outgoing integer
2411 *
2412 * Exists for audit and networking code.
2413 */
2414static int smack_secctx_to_secid(char *secdata, u32 seclen, u32 *secid)
2415{
2416 *secid = smack_to_secid(secdata);
2417 return 0;
2418}
2419
e114e473
CS
2420/*
2421 * smack_release_secctx - don't do anything.
2422 * @key_ref: unused
2423 * @context: unused
2424 * @perm: unused
2425 *
2426 * Exists to make sure nothing gets done, and properly
2427 */
2428static void smack_release_secctx(char *secdata, u32 seclen)
2429{
2430}
2431
2432static struct security_operations smack_ops = {
2433 .ptrace = smack_ptrace,
2434 .capget = cap_capget,
2435 .capset_check = cap_capset_check,
2436 .capset_set = cap_capset_set,
2437 .capable = cap_capable,
2438 .syslog = smack_syslog,
2439 .settime = cap_settime,
2440 .vm_enough_memory = cap_vm_enough_memory,
2441
2442 .bprm_apply_creds = cap_bprm_apply_creds,
2443 .bprm_set_security = cap_bprm_set_security,
2444 .bprm_secureexec = cap_bprm_secureexec,
2445
2446 .sb_alloc_security = smack_sb_alloc_security,
2447 .sb_free_security = smack_sb_free_security,
2448 .sb_copy_data = smack_sb_copy_data,
2449 .sb_kern_mount = smack_sb_kern_mount,
2450 .sb_statfs = smack_sb_statfs,
2451 .sb_mount = smack_sb_mount,
2452 .sb_umount = smack_sb_umount,
2453
2454 .inode_alloc_security = smack_inode_alloc_security,
2455 .inode_free_security = smack_inode_free_security,
2456 .inode_init_security = smack_inode_init_security,
2457 .inode_link = smack_inode_link,
2458 .inode_unlink = smack_inode_unlink,
2459 .inode_rmdir = smack_inode_rmdir,
2460 .inode_rename = smack_inode_rename,
2461 .inode_permission = smack_inode_permission,
2462 .inode_setattr = smack_inode_setattr,
2463 .inode_getattr = smack_inode_getattr,
2464 .inode_setxattr = smack_inode_setxattr,
2465 .inode_post_setxattr = smack_inode_post_setxattr,
2466 .inode_getxattr = smack_inode_getxattr,
2467 .inode_removexattr = smack_inode_removexattr,
bcdca225
CS
2468 .inode_need_killpriv = cap_inode_need_killpriv,
2469 .inode_killpriv = cap_inode_killpriv,
e114e473
CS
2470 .inode_getsecurity = smack_inode_getsecurity,
2471 .inode_setsecurity = smack_inode_setsecurity,
2472 .inode_listsecurity = smack_inode_listsecurity,
2473
2474 .file_permission = smack_file_permission,
2475 .file_alloc_security = smack_file_alloc_security,
2476 .file_free_security = smack_file_free_security,
2477 .file_ioctl = smack_file_ioctl,
2478 .file_lock = smack_file_lock,
2479 .file_fcntl = smack_file_fcntl,
2480 .file_set_fowner = smack_file_set_fowner,
2481 .file_send_sigiotask = smack_file_send_sigiotask,
2482 .file_receive = smack_file_receive,
2483
2484 .task_alloc_security = smack_task_alloc_security,
2485 .task_free_security = smack_task_free_security,
2486 .task_post_setuid = cap_task_post_setuid,
2487 .task_setpgid = smack_task_setpgid,
2488 .task_getpgid = smack_task_getpgid,
2489 .task_getsid = smack_task_getsid,
2490 .task_getsecid = smack_task_getsecid,
2491 .task_setnice = smack_task_setnice,
2492 .task_setioprio = smack_task_setioprio,
2493 .task_getioprio = smack_task_getioprio,
2494 .task_setscheduler = smack_task_setscheduler,
2495 .task_getscheduler = smack_task_getscheduler,
2496 .task_movememory = smack_task_movememory,
2497 .task_kill = smack_task_kill,
2498 .task_wait = smack_task_wait,
2499 .task_reparent_to_init = cap_task_reparent_to_init,
2500 .task_to_inode = smack_task_to_inode,
2501
2502 .ipc_permission = smack_ipc_permission,
2503
2504 .msg_msg_alloc_security = smack_msg_msg_alloc_security,
2505 .msg_msg_free_security = smack_msg_msg_free_security,
2506
2507 .msg_queue_alloc_security = smack_msg_queue_alloc_security,
2508 .msg_queue_free_security = smack_msg_queue_free_security,
2509 .msg_queue_associate = smack_msg_queue_associate,
2510 .msg_queue_msgctl = smack_msg_queue_msgctl,
2511 .msg_queue_msgsnd = smack_msg_queue_msgsnd,
2512 .msg_queue_msgrcv = smack_msg_queue_msgrcv,
2513
2514 .shm_alloc_security = smack_shm_alloc_security,
2515 .shm_free_security = smack_shm_free_security,
2516 .shm_associate = smack_shm_associate,
2517 .shm_shmctl = smack_shm_shmctl,
2518 .shm_shmat = smack_shm_shmat,
2519
2520 .sem_alloc_security = smack_sem_alloc_security,
2521 .sem_free_security = smack_sem_free_security,
2522 .sem_associate = smack_sem_associate,
2523 .sem_semctl = smack_sem_semctl,
2524 .sem_semop = smack_sem_semop,
2525
2526 .netlink_send = cap_netlink_send,
2527 .netlink_recv = cap_netlink_recv,
2528
bcdca225
CS
2529 .register_security = smack_register_security,
2530
e114e473
CS
2531 .d_instantiate = smack_d_instantiate,
2532
2533 .getprocattr = smack_getprocattr,
2534 .setprocattr = smack_setprocattr,
2535
2536 .unix_stream_connect = smack_unix_stream_connect,
2537 .unix_may_send = smack_unix_may_send,
2538
2539 .socket_post_create = smack_socket_post_create,
2540 .socket_sock_rcv_skb = smack_socket_sock_rcv_skb,
2541 .socket_getpeersec_stream = smack_socket_getpeersec_stream,
2542 .socket_getpeersec_dgram = smack_socket_getpeersec_dgram,
2543 .sk_alloc_security = smack_sk_alloc_security,
2544 .sk_free_security = smack_sk_free_security,
2545 .sock_graft = smack_sock_graft,
2546 .inet_conn_request = smack_inet_conn_request,
2547 /* key management security hooks */
2548#ifdef CONFIG_KEYS
2549 .key_alloc = smack_key_alloc,
2550 .key_free = smack_key_free,
2551 .key_permission = smack_key_permission,
2552#endif /* CONFIG_KEYS */
2553 .secid_to_secctx = smack_secid_to_secctx,
4bc87e62 2554 .secctx_to_secid = smack_secctx_to_secid,
e114e473
CS
2555 .release_secctx = smack_release_secctx,
2556};
2557
2558/**
2559 * smack_init - initialize the smack system
2560 *
2561 * Returns 0
2562 */
2563static __init int smack_init(void)
2564{
2565 printk(KERN_INFO "Smack: Initializing.\n");
2566
2567 /*
2568 * Set the security state for the initial task.
2569 */
2570 current->security = &smack_known_floor.smk_known;
2571
2572 /*
2573 * Initialize locks
2574 */
2575 spin_lock_init(&smack_known_unset.smk_cipsolock);
2576 spin_lock_init(&smack_known_huh.smk_cipsolock);
2577 spin_lock_init(&smack_known_hat.smk_cipsolock);
2578 spin_lock_init(&smack_known_star.smk_cipsolock);
2579 spin_lock_init(&smack_known_floor.smk_cipsolock);
2580 spin_lock_init(&smack_known_invalid.smk_cipsolock);
2581
2582 /*
2583 * Register with LSM
2584 */
2585 if (register_security(&smack_ops))
2586 panic("smack: Unable to register with kernel.\n");
2587
2588 return 0;
2589}
2590
2591/*
2592 * Smack requires early initialization in order to label
2593 * all processes and objects when they are created.
2594 */
2595security_initcall(smack_init);
2596
This page took 0.15761 seconds and 5 git commands to generate.