2 * Simplified MAC Kernel (smack) security module
4 * This file contains the smack hook function implementations.
7 * Casey Schaufler <casey@schaufler-ca.com>
9 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
10 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
11 * Paul Moore <paul.moore@hp.com>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2,
15 * as published by the Free Software Foundation.
18 #include <linux/xattr.h>
19 #include <linux/pagemap.h>
20 #include <linux/mount.h>
21 #include <linux/stat.h>
22 #include <linux/ext2_fs.h>
24 #include <asm/ioctls.h>
26 #include <linux/tcp.h>
27 #include <linux/udp.h>
28 #include <linux/mutex.h>
29 #include <linux/pipe_fs_i.h>
30 #include <net/netlabel.h>
31 #include <net/cipso_ipv4.h>
32 #include <linux/audit.h>
36 #define task_security(task) (task_cred_xxx((task), security))
39 * I hope these are the hokeyist lines of code in the module. Casey.
41 #define DEVPTS_SUPER_MAGIC 0x1cd1
42 #define SOCKFS_MAGIC 0x534F434B
43 #define TMPFS_MAGIC 0x01021994
46 * smk_fetch - Fetch the smack label from a file.
47 * @ip: a pointer to the inode
48 * @dp: a pointer to the dentry
50 * Returns a pointer to the master list entry for the Smack label
51 * or NULL if there was no label to fetch.
53 static char *smk_fetch(struct inode
*ip
, struct dentry
*dp
)
56 char in
[SMK_LABELLEN
];
58 if (ip
->i_op
->getxattr
== NULL
)
61 rc
= ip
->i_op
->getxattr(dp
, XATTR_NAME_SMACK
, in
, SMK_LABELLEN
);
65 return smk_import(in
, rc
);
69 * new_inode_smack - allocate an inode security blob
70 * @smack: a pointer to the Smack label to use in the blob
72 * Returns the new blob or NULL if there's no memory available
74 struct inode_smack
*new_inode_smack(char *smack
)
76 struct inode_smack
*isp
;
78 isp
= kzalloc(sizeof(struct inode_smack
), GFP_KERNEL
);
82 isp
->smk_inode
= smack
;
84 mutex_init(&isp
->smk_lock
);
95 * smack_ptrace_may_access - Smack approval on PTRACE_ATTACH
96 * @ctp: child task pointer
97 * @mode: ptrace attachment mode
99 * Returns 0 if access is OK, an error code otherwise
101 * Do the capability checks, and require read and write.
103 static int smack_ptrace_may_access(struct task_struct
*ctp
, unsigned int mode
)
107 rc
= cap_ptrace_may_access(ctp
, mode
);
111 rc
= smk_access(current_security(), task_security(ctp
), MAY_READWRITE
);
112 if (rc
!= 0 && capable(CAP_MAC_OVERRIDE
))
118 * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
119 * @ptp: parent task pointer
121 * Returns 0 if access is OK, an error code otherwise
123 * Do the capability checks, and require read and write.
125 static int smack_ptrace_traceme(struct task_struct
*ptp
)
129 rc
= cap_ptrace_traceme(ptp
);
133 rc
= smk_access(task_security(ptp
), current_security(), MAY_READWRITE
);
134 if (rc
!= 0 && has_capability(ptp
, CAP_MAC_OVERRIDE
))
140 * smack_syslog - Smack approval on syslog
141 * @type: message type
143 * Require that the task has the floor label
145 * Returns 0 on success, error code otherwise.
147 static int smack_syslog(int type
)
150 char *sp
= current_security();
152 rc
= cap_syslog(type
);
156 if (capable(CAP_MAC_OVERRIDE
))
159 if (sp
!= smack_known_floor
.smk_known
)
171 * smack_sb_alloc_security - allocate a superblock blob
172 * @sb: the superblock getting the blob
174 * Returns 0 on success or -ENOMEM on error.
176 static int smack_sb_alloc_security(struct super_block
*sb
)
178 struct superblock_smack
*sbsp
;
180 sbsp
= kzalloc(sizeof(struct superblock_smack
), GFP_KERNEL
);
185 sbsp
->smk_root
= smack_known_floor
.smk_known
;
186 sbsp
->smk_default
= smack_known_floor
.smk_known
;
187 sbsp
->smk_floor
= smack_known_floor
.smk_known
;
188 sbsp
->smk_hat
= smack_known_hat
.smk_known
;
189 sbsp
->smk_initialized
= 0;
190 spin_lock_init(&sbsp
->smk_sblock
);
192 sb
->s_security
= sbsp
;
198 * smack_sb_free_security - free a superblock blob
199 * @sb: the superblock getting the blob
202 static void smack_sb_free_security(struct super_block
*sb
)
204 kfree(sb
->s_security
);
205 sb
->s_security
= NULL
;
209 * smack_sb_copy_data - copy mount options data for processing
210 * @orig: where to start
211 * @smackopts: mount options string
213 * Returns 0 on success or -ENOMEM on error.
215 * Copy the Smack specific mount options out of the mount
218 static int smack_sb_copy_data(char *orig
, char *smackopts
)
220 char *cp
, *commap
, *otheropts
, *dp
;
222 otheropts
= (char *)get_zeroed_page(GFP_KERNEL
);
223 if (otheropts
== NULL
)
226 for (cp
= orig
, commap
= orig
; commap
!= NULL
; cp
= commap
+ 1) {
227 if (strstr(cp
, SMK_FSDEFAULT
) == cp
)
229 else if (strstr(cp
, SMK_FSFLOOR
) == cp
)
231 else if (strstr(cp
, SMK_FSHAT
) == cp
)
233 else if (strstr(cp
, SMK_FSROOT
) == cp
)
238 commap
= strchr(cp
, ',');
247 strcpy(orig
, otheropts
);
248 free_page((unsigned long)otheropts
);
254 * smack_sb_kern_mount - Smack specific mount processing
255 * @sb: the file system superblock
256 * @flags: the mount flags
257 * @data: the smack mount options
259 * Returns 0 on success, an error code on failure
261 static int smack_sb_kern_mount(struct super_block
*sb
, int flags
, void *data
)
263 struct dentry
*root
= sb
->s_root
;
264 struct inode
*inode
= root
->d_inode
;
265 struct superblock_smack
*sp
= sb
->s_security
;
266 struct inode_smack
*isp
;
271 spin_lock(&sp
->smk_sblock
);
272 if (sp
->smk_initialized
!= 0) {
273 spin_unlock(&sp
->smk_sblock
);
276 sp
->smk_initialized
= 1;
277 spin_unlock(&sp
->smk_sblock
);
279 for (op
= data
; op
!= NULL
; op
= commap
) {
280 commap
= strchr(op
, ',');
284 if (strncmp(op
, SMK_FSHAT
, strlen(SMK_FSHAT
)) == 0) {
285 op
+= strlen(SMK_FSHAT
);
286 nsp
= smk_import(op
, 0);
289 } else if (strncmp(op
, SMK_FSFLOOR
, strlen(SMK_FSFLOOR
)) == 0) {
290 op
+= strlen(SMK_FSFLOOR
);
291 nsp
= smk_import(op
, 0);
294 } else if (strncmp(op
, SMK_FSDEFAULT
,
295 strlen(SMK_FSDEFAULT
)) == 0) {
296 op
+= strlen(SMK_FSDEFAULT
);
297 nsp
= smk_import(op
, 0);
299 sp
->smk_default
= nsp
;
300 } else if (strncmp(op
, SMK_FSROOT
, strlen(SMK_FSROOT
)) == 0) {
301 op
+= strlen(SMK_FSROOT
);
302 nsp
= smk_import(op
, 0);
309 * Initialize the root inode.
311 isp
= inode
->i_security
;
313 inode
->i_security
= new_inode_smack(sp
->smk_root
);
315 isp
->smk_inode
= sp
->smk_root
;
321 * smack_sb_statfs - Smack check on statfs
322 * @dentry: identifies the file system in question
324 * Returns 0 if current can read the floor of the filesystem,
325 * and error code otherwise
327 static int smack_sb_statfs(struct dentry
*dentry
)
329 struct superblock_smack
*sbp
= dentry
->d_sb
->s_security
;
331 return smk_curacc(sbp
->smk_floor
, MAY_READ
);
335 * smack_sb_mount - Smack check for mounting
342 * Returns 0 if current can write the floor of the filesystem
343 * being mounted on, an error code otherwise.
345 static int smack_sb_mount(char *dev_name
, struct path
*path
,
346 char *type
, unsigned long flags
, void *data
)
348 struct superblock_smack
*sbp
= path
->mnt
->mnt_sb
->s_security
;
350 return smk_curacc(sbp
->smk_floor
, MAY_WRITE
);
354 * smack_sb_umount - Smack check for unmounting
355 * @mnt: file system to unmount
358 * Returns 0 if current can write the floor of the filesystem
359 * being unmounted, an error code otherwise.
361 static int smack_sb_umount(struct vfsmount
*mnt
, int flags
)
363 struct superblock_smack
*sbp
;
365 sbp
= mnt
->mnt_sb
->s_security
;
367 return smk_curacc(sbp
->smk_floor
, MAY_WRITE
);
375 * smack_inode_alloc_security - allocate an inode blob
376 * @inode: the inode in need of a blob
378 * Returns 0 if it gets a blob, -ENOMEM otherwise
380 static int smack_inode_alloc_security(struct inode
*inode
)
382 inode
->i_security
= new_inode_smack(current_security());
383 if (inode
->i_security
== NULL
)
389 * smack_inode_free_security - free an inode blob
390 * @inode: the inode with a blob
392 * Clears the blob pointer in inode
394 static void smack_inode_free_security(struct inode
*inode
)
396 kfree(inode
->i_security
);
397 inode
->i_security
= NULL
;
401 * smack_inode_init_security - copy out the smack from an inode
404 * @name: where to put the attribute name
405 * @value: where to put the attribute value
406 * @len: where to put the length of the attribute
408 * Returns 0 if it all works out, -ENOMEM if there's no memory
410 static int smack_inode_init_security(struct inode
*inode
, struct inode
*dir
,
411 char **name
, void **value
, size_t *len
)
413 char *isp
= smk_of_inode(inode
);
416 *name
= kstrdup(XATTR_SMACK_SUFFIX
, GFP_KERNEL
);
422 *value
= kstrdup(isp
, GFP_KERNEL
);
428 *len
= strlen(isp
) + 1;
434 * smack_inode_link - Smack check on link
435 * @old_dentry: the existing object
437 * @new_dentry: the new object
439 * Returns 0 if access is permitted, an error code otherwise
441 static int smack_inode_link(struct dentry
*old_dentry
, struct inode
*dir
,
442 struct dentry
*new_dentry
)
447 isp
= smk_of_inode(old_dentry
->d_inode
);
448 rc
= smk_curacc(isp
, MAY_WRITE
);
450 if (rc
== 0 && new_dentry
->d_inode
!= NULL
) {
451 isp
= smk_of_inode(new_dentry
->d_inode
);
452 rc
= smk_curacc(isp
, MAY_WRITE
);
459 * smack_inode_unlink - Smack check on inode deletion
460 * @dir: containing directory object
461 * @dentry: file to unlink
463 * Returns 0 if current can write the containing directory
464 * and the object, error code otherwise
466 static int smack_inode_unlink(struct inode
*dir
, struct dentry
*dentry
)
468 struct inode
*ip
= dentry
->d_inode
;
472 * You need write access to the thing you're unlinking
474 rc
= smk_curacc(smk_of_inode(ip
), MAY_WRITE
);
477 * You also need write access to the containing directory
479 rc
= smk_curacc(smk_of_inode(dir
), MAY_WRITE
);
485 * smack_inode_rmdir - Smack check on directory deletion
486 * @dir: containing directory object
487 * @dentry: directory to unlink
489 * Returns 0 if current can write the containing directory
490 * and the directory, error code otherwise
492 static int smack_inode_rmdir(struct inode
*dir
, struct dentry
*dentry
)
497 * You need write access to the thing you're removing
499 rc
= smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
);
502 * You also need write access to the containing directory
504 rc
= smk_curacc(smk_of_inode(dir
), MAY_WRITE
);
510 * smack_inode_rename - Smack check on rename
511 * @old_inode: the old directory
512 * @old_dentry: unused
513 * @new_inode: the new directory
514 * @new_dentry: unused
516 * Read and write access is required on both the old and
519 * Returns 0 if access is permitted, an error code otherwise
521 static int smack_inode_rename(struct inode
*old_inode
,
522 struct dentry
*old_dentry
,
523 struct inode
*new_inode
,
524 struct dentry
*new_dentry
)
529 isp
= smk_of_inode(old_dentry
->d_inode
);
530 rc
= smk_curacc(isp
, MAY_READWRITE
);
532 if (rc
== 0 && new_dentry
->d_inode
!= NULL
) {
533 isp
= smk_of_inode(new_dentry
->d_inode
);
534 rc
= smk_curacc(isp
, MAY_READWRITE
);
541 * smack_inode_permission - Smack version of permission()
542 * @inode: the inode in question
543 * @mask: the access requested
545 * This is the important Smack hook.
547 * Returns 0 if access is permitted, -EACCES otherwise
549 static int smack_inode_permission(struct inode
*inode
, int mask
)
552 * No permission to check. Existence test. Yup, it's there.
557 return smk_curacc(smk_of_inode(inode
), mask
);
561 * smack_inode_setattr - Smack check for setting attributes
562 * @dentry: the object
563 * @iattr: for the force flag
565 * Returns 0 if access is permitted, an error code otherwise
567 static int smack_inode_setattr(struct dentry
*dentry
, struct iattr
*iattr
)
570 * Need to allow for clearing the setuid bit.
572 if (iattr
->ia_valid
& ATTR_FORCE
)
575 return smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
);
579 * smack_inode_getattr - Smack check for getting attributes
581 * @dentry: the object
583 * Returns 0 if access is permitted, an error code otherwise
585 static int smack_inode_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
)
587 return smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_READ
);
591 * smack_inode_setxattr - Smack check for setting xattrs
592 * @dentry: the object
593 * @name: name of the attribute
598 * This protects the Smack attribute explicitly.
600 * Returns 0 if access is permitted, an error code otherwise
602 static int smack_inode_setxattr(struct dentry
*dentry
, const char *name
,
603 const void *value
, size_t size
, int flags
)
607 if (strcmp(name
, XATTR_NAME_SMACK
) == 0 ||
608 strcmp(name
, XATTR_NAME_SMACKIPIN
) == 0 ||
609 strcmp(name
, XATTR_NAME_SMACKIPOUT
) == 0) {
610 if (!capable(CAP_MAC_ADMIN
))
613 * check label validity here so import wont fail on
616 if (size
== 0 || size
>= SMK_LABELLEN
||
617 smk_import(value
, size
) == NULL
)
620 rc
= cap_inode_setxattr(dentry
, name
, value
, size
, flags
);
623 rc
= smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
);
629 * smack_inode_post_setxattr - Apply the Smack update approved above
631 * @name: attribute name
632 * @value: attribute value
633 * @size: attribute size
636 * Set the pointer in the inode blob to the entry found
637 * in the master label list.
639 static void smack_inode_post_setxattr(struct dentry
*dentry
, const char *name
,
640 const void *value
, size_t size
, int flags
)
642 struct inode_smack
*isp
;
648 if (strcmp(name
, XATTR_NAME_SMACK
))
651 isp
= dentry
->d_inode
->i_security
;
654 * No locking is done here. This is a pointer
657 nsp
= smk_import(value
, size
);
659 isp
->smk_inode
= nsp
;
661 isp
->smk_inode
= smack_known_invalid
.smk_known
;
667 * smack_inode_getxattr - Smack check on getxattr
668 * @dentry: the object
671 * Returns 0 if access is permitted, an error code otherwise
673 static int smack_inode_getxattr(struct dentry
*dentry
, const char *name
)
675 return smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_READ
);
679 * smack_inode_removexattr - Smack check on removexattr
680 * @dentry: the object
681 * @name: name of the attribute
683 * Removing the Smack attribute requires CAP_MAC_ADMIN
685 * Returns 0 if access is permitted, an error code otherwise
687 static int smack_inode_removexattr(struct dentry
*dentry
, const char *name
)
691 if (strcmp(name
, XATTR_NAME_SMACK
) == 0 ||
692 strcmp(name
, XATTR_NAME_SMACKIPIN
) == 0 ||
693 strcmp(name
, XATTR_NAME_SMACKIPOUT
) == 0) {
694 if (!capable(CAP_MAC_ADMIN
))
697 rc
= cap_inode_removexattr(dentry
, name
);
700 rc
= smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
);
706 * smack_inode_getsecurity - get smack xattrs
708 * @name: attribute name
709 * @buffer: where to put the result
712 * Returns the size of the attribute or an error code
714 static int smack_inode_getsecurity(const struct inode
*inode
,
715 const char *name
, void **buffer
,
718 struct socket_smack
*ssp
;
720 struct super_block
*sbp
;
721 struct inode
*ip
= (struct inode
*)inode
;
726 if (strcmp(name
, XATTR_SMACK_SUFFIX
) == 0) {
727 isp
= smk_of_inode(inode
);
728 ilen
= strlen(isp
) + 1;
734 * The rest of the Smack xattrs are only on sockets.
737 if (sbp
->s_magic
!= SOCKFS_MAGIC
)
741 if (sock
== NULL
|| sock
->sk
== NULL
)
744 ssp
= sock
->sk
->sk_security
;
746 if (strcmp(name
, XATTR_SMACK_IPIN
) == 0)
748 else if (strcmp(name
, XATTR_SMACK_IPOUT
) == 0)
753 ilen
= strlen(isp
) + 1;
764 * smack_inode_listsecurity - list the Smack attributes
766 * @buffer: where they go
767 * @buffer_size: size of buffer
769 * Returns 0 on success, -EINVAL otherwise
771 static int smack_inode_listsecurity(struct inode
*inode
, char *buffer
,
774 int len
= strlen(XATTR_NAME_SMACK
);
776 if (buffer
!= NULL
&& len
<= buffer_size
) {
777 memcpy(buffer
, XATTR_NAME_SMACK
, len
);
784 * smack_inode_getsecid - Extract inode's security id
785 * @inode: inode to extract the info from
786 * @secid: where result will be saved
788 static void smack_inode_getsecid(const struct inode
*inode
, u32
*secid
)
790 struct inode_smack
*isp
= inode
->i_security
;
792 *secid
= smack_to_secid(isp
->smk_inode
);
800 * smack_file_permission - Smack check on file operations
806 * Should access checks be done on each read or write?
807 * UNICOS and SELinux say yes.
808 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
810 * I'll say no for now. Smack does not do the frequent
811 * label changing that SELinux does.
813 static int smack_file_permission(struct file
*file
, int mask
)
819 * smack_file_alloc_security - assign a file security blob
822 * The security blob for a file is a pointer to the master
823 * label list, so no allocation is done.
827 static int smack_file_alloc_security(struct file
*file
)
829 file
->f_security
= current_security();
834 * smack_file_free_security - clear a file security blob
837 * The security blob for a file is a pointer to the master
838 * label list, so no memory is freed.
840 static void smack_file_free_security(struct file
*file
)
842 file
->f_security
= NULL
;
846 * smack_file_ioctl - Smack check on ioctls
851 * Relies heavily on the correct use of the ioctl command conventions.
853 * Returns 0 if allowed, error code otherwise
855 static int smack_file_ioctl(struct file
*file
, unsigned int cmd
,
860 if (_IOC_DIR(cmd
) & _IOC_WRITE
)
861 rc
= smk_curacc(file
->f_security
, MAY_WRITE
);
863 if (rc
== 0 && (_IOC_DIR(cmd
) & _IOC_READ
))
864 rc
= smk_curacc(file
->f_security
, MAY_READ
);
870 * smack_file_lock - Smack check on file locking
874 * Returns 0 if current has write access, error code otherwise
876 static int smack_file_lock(struct file
*file
, unsigned int cmd
)
878 return smk_curacc(file
->f_security
, MAY_WRITE
);
882 * smack_file_fcntl - Smack check on fcntl
884 * @cmd: what action to check
887 * Returns 0 if current has access, error code otherwise
889 static int smack_file_fcntl(struct file
*file
, unsigned int cmd
,
901 rc
= smk_curacc(file
->f_security
, MAY_READ
);
909 rc
= smk_curacc(file
->f_security
, MAY_WRITE
);
912 rc
= smk_curacc(file
->f_security
, MAY_READWRITE
);
919 * smack_file_set_fowner - set the file security blob value
920 * @file: object in question
923 * Further research may be required on this one.
925 static int smack_file_set_fowner(struct file
*file
)
927 file
->f_security
= current_security();
932 * smack_file_send_sigiotask - Smack on sigio
933 * @tsk: The target task
934 * @fown: the object the signal come from
937 * Allow a privileged task to get signals even if it shouldn't
939 * Returns 0 if a subject with the object's smack could
940 * write to the task, an error code otherwise.
942 static int smack_file_send_sigiotask(struct task_struct
*tsk
,
943 struct fown_struct
*fown
, int signum
)
949 * struct fown_struct is never outside the context of a struct file
951 file
= container_of(fown
, struct file
, f_owner
);
952 rc
= smk_access(file
->f_security
, tsk
->cred
->security
, MAY_WRITE
);
953 if (rc
!= 0 && has_capability(tsk
, CAP_MAC_OVERRIDE
))
959 * smack_file_receive - Smack file receive check
962 * Returns 0 if current has access, error code otherwise
964 static int smack_file_receive(struct file
*file
)
969 * This code relies on bitmasks.
971 if (file
->f_mode
& FMODE_READ
)
973 if (file
->f_mode
& FMODE_WRITE
)
976 return smk_curacc(file
->f_security
, may
);
984 * smack_cred_free - "free" task-level security credentials
985 * @cred: the credentials in question
987 * Smack isn't using copies of blobs. Everyone
988 * points to an immutable list. The blobs never go away.
989 * There is no leak here.
991 static void smack_cred_free(struct cred
*cred
)
993 cred
->security
= NULL
;
997 * smack_cred_prepare - prepare new set of credentials for modification
998 * @new: the new credentials
999 * @old: the original credentials
1000 * @gfp: the atomicity of any memory allocations
1002 * Prepare a new set of credentials for modification.
1004 static int smack_cred_prepare(struct cred
*new, const struct cred
*old
,
1007 new->security
= old
->security
;
1012 * smack_cred_commit - commit new credentials
1013 * @new: the new credentials
1014 * @old: the original credentials
1016 static void smack_cred_commit(struct cred
*new, const struct cred
*old
)
1021 * smack_kernel_act_as - Set the subjective context in a set of credentials
1022 * @new: points to the set of credentials to be modified.
1023 * @secid: specifies the security ID to be set
1025 * Set the security data for a kernel service.
1027 static int smack_kernel_act_as(struct cred
*new, u32 secid
)
1029 char *smack
= smack_from_secid(secid
);
1034 new->security
= smack
;
1039 * smack_kernel_create_files_as - Set the file creation label in a set of creds
1040 * @new: points to the set of credentials to be modified
1041 * @inode: points to the inode to use as a reference
1043 * Set the file creation context in a set of credentials to the same
1044 * as the objective context of the specified inode
1046 static int smack_kernel_create_files_as(struct cred
*new,
1047 struct inode
*inode
)
1049 struct inode_smack
*isp
= inode
->i_security
;
1051 new->security
= isp
->smk_inode
;
1056 * smack_task_setpgid - Smack check on setting pgid
1057 * @p: the task object
1060 * Return 0 if write access is permitted
1062 static int smack_task_setpgid(struct task_struct
*p
, pid_t pgid
)
1064 return smk_curacc(task_security(p
), MAY_WRITE
);
1068 * smack_task_getpgid - Smack access check for getpgid
1069 * @p: the object task
1071 * Returns 0 if current can read the object task, error code otherwise
1073 static int smack_task_getpgid(struct task_struct
*p
)
1075 return smk_curacc(task_security(p
), MAY_READ
);
1079 * smack_task_getsid - Smack access check for getsid
1080 * @p: the object task
1082 * Returns 0 if current can read the object task, error code otherwise
1084 static int smack_task_getsid(struct task_struct
*p
)
1086 return smk_curacc(task_security(p
), MAY_READ
);
1090 * smack_task_getsecid - get the secid of the task
1091 * @p: the object task
1092 * @secid: where to put the result
1094 * Sets the secid to contain a u32 version of the smack label.
1096 static void smack_task_getsecid(struct task_struct
*p
, u32
*secid
)
1098 *secid
= smack_to_secid(task_security(p
));
1102 * smack_task_setnice - Smack check on setting nice
1103 * @p: the task object
1106 * Return 0 if write access is permitted
1108 static int smack_task_setnice(struct task_struct
*p
, int nice
)
1112 rc
= cap_task_setnice(p
, nice
);
1114 rc
= smk_curacc(task_security(p
), MAY_WRITE
);
1119 * smack_task_setioprio - Smack check on setting ioprio
1120 * @p: the task object
1123 * Return 0 if write access is permitted
1125 static int smack_task_setioprio(struct task_struct
*p
, int ioprio
)
1129 rc
= cap_task_setioprio(p
, ioprio
);
1131 rc
= smk_curacc(task_security(p
), MAY_WRITE
);
1136 * smack_task_getioprio - Smack check on reading ioprio
1137 * @p: the task object
1139 * Return 0 if read access is permitted
1141 static int smack_task_getioprio(struct task_struct
*p
)
1143 return smk_curacc(task_security(p
), MAY_READ
);
1147 * smack_task_setscheduler - Smack check on setting scheduler
1148 * @p: the task object
1152 * Return 0 if read access is permitted
1154 static int smack_task_setscheduler(struct task_struct
*p
, int policy
,
1155 struct sched_param
*lp
)
1159 rc
= cap_task_setscheduler(p
, policy
, lp
);
1161 rc
= smk_curacc(task_security(p
), MAY_WRITE
);
1166 * smack_task_getscheduler - Smack check on reading scheduler
1167 * @p: the task object
1169 * Return 0 if read access is permitted
1171 static int smack_task_getscheduler(struct task_struct
*p
)
1173 return smk_curacc(task_security(p
), MAY_READ
);
1177 * smack_task_movememory - Smack check on moving memory
1178 * @p: the task object
1180 * Return 0 if write access is permitted
1182 static int smack_task_movememory(struct task_struct
*p
)
1184 return smk_curacc(task_security(p
), MAY_WRITE
);
1188 * smack_task_kill - Smack check on signal delivery
1189 * @p: the task object
1192 * @secid: identifies the smack to use in lieu of current's
1194 * Return 0 if write access is permitted
1196 * The secid behavior is an artifact of an SELinux hack
1197 * in the USB code. Someday it may go away.
1199 static int smack_task_kill(struct task_struct
*p
, struct siginfo
*info
,
1203 * Sending a signal requires that the sender
1204 * can write the receiver.
1207 return smk_curacc(task_security(p
), MAY_WRITE
);
1209 * If the secid isn't 0 we're dealing with some USB IO
1210 * specific behavior. This is not clean. For one thing
1211 * we can't take privilege into account.
1213 return smk_access(smack_from_secid(secid
), task_security(p
), MAY_WRITE
);
1217 * smack_task_wait - Smack access check for waiting
1218 * @p: task to wait for
1220 * Returns 0 if current can wait for p, error code otherwise
1222 static int smack_task_wait(struct task_struct
*p
)
1226 rc
= smk_access(current_security(), task_security(p
), MAY_WRITE
);
1231 * Allow the operation to succeed if either task
1232 * has privilege to perform operations that might
1233 * account for the smack labels having gotten to
1234 * be different in the first place.
1236 * This breaks the strict subject/object access
1237 * control ideal, taking the object's privilege
1238 * state into account in the decision as well as
1241 if (capable(CAP_MAC_OVERRIDE
) || has_capability(p
, CAP_MAC_OVERRIDE
))
1248 * smack_task_to_inode - copy task smack into the inode blob
1249 * @p: task to copy from
1250 * @inode: inode to copy to
1252 * Sets the smack pointer in the inode security blob
1254 static void smack_task_to_inode(struct task_struct
*p
, struct inode
*inode
)
1256 struct inode_smack
*isp
= inode
->i_security
;
1257 isp
->smk_inode
= task_security(p
);
1265 * smack_sk_alloc_security - Allocate a socket blob
1268 * @gfp_flags: memory allocation flags
1270 * Assign Smack pointers to current
1272 * Returns 0 on success, -ENOMEM is there's no memory
1274 static int smack_sk_alloc_security(struct sock
*sk
, int family
, gfp_t gfp_flags
)
1276 char *csp
= current_security();
1277 struct socket_smack
*ssp
;
1279 ssp
= kzalloc(sizeof(struct socket_smack
), gfp_flags
);
1285 ssp
->smk_packet
[0] = '\0';
1287 sk
->sk_security
= ssp
;
1293 * smack_sk_free_security - Free a socket blob
1296 * Clears the blob pointer
1298 static void smack_sk_free_security(struct sock
*sk
)
1300 kfree(sk
->sk_security
);
1304 * smack_host_label - check host based restrictions
1305 * @sip: the object end
1307 * looks for host based access restrictions
1309 * This version will only be appropriate for really small sets of single label
1310 * hosts. The caller is responsible for ensuring that the RCU read lock is
1311 * taken before calling this function.
1313 * Returns the label of the far end or NULL if it's not special.
1315 static char *smack_host_label(struct sockaddr_in
*sip
)
1317 struct smk_netlbladdr
*snp
;
1318 struct in_addr
*siap
= &sip
->sin_addr
;
1320 if (siap
->s_addr
== 0)
1323 list_for_each_entry_rcu(snp
, &smk_netlbladdr_list
, list
)
1325 * we break after finding the first match because
1326 * the list is sorted from longest to shortest mask
1327 * so we have found the most specific match
1329 if ((&snp
->smk_host
.sin_addr
)->s_addr
==
1330 (siap
->s_addr
& (&snp
->smk_mask
)->s_addr
)) {
1331 /* we have found the special CIPSO option */
1332 if (snp
->smk_label
== smack_cipso_option
)
1334 return snp
->smk_label
;
1341 * smack_set_catset - convert a capset to netlabel mls categories
1342 * @catset: the Smack categories
1343 * @sap: where to put the netlabel categories
1345 * Allocates and fills attr.mls.cat
1347 static void smack_set_catset(char *catset
, struct netlbl_lsm_secattr
*sap
)
1358 sap
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1359 sap
->attr
.mls
.cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1360 sap
->attr
.mls
.cat
->startbit
= 0;
1362 for (cat
= 1, cp
= catset
, byte
= 0; byte
< SMK_LABELLEN
; cp
++, byte
++)
1363 for (m
= 0x80; m
!= 0; m
>>= 1, cat
++) {
1366 rc
= netlbl_secattr_catmap_setbit(sap
->attr
.mls
.cat
,
1372 * smack_to_secattr - fill a secattr from a smack value
1373 * @smack: the smack value
1374 * @nlsp: where the result goes
1376 * Casey says that CIPSO is good enough for now.
1377 * It can be used to effect.
1378 * It can also be abused to effect when necessary.
1379 * Appologies to the TSIG group in general and GW in particular.
1381 static void smack_to_secattr(char *smack
, struct netlbl_lsm_secattr
*nlsp
)
1383 struct smack_cipso cipso
;
1386 nlsp
->domain
= smack
;
1387 nlsp
->flags
= NETLBL_SECATTR_DOMAIN
| NETLBL_SECATTR_MLS_LVL
;
1389 rc
= smack_to_cipso(smack
, &cipso
);
1391 nlsp
->attr
.mls
.lvl
= cipso
.smk_level
;
1392 smack_set_catset(cipso
.smk_catset
, nlsp
);
1394 nlsp
->attr
.mls
.lvl
= smack_cipso_direct
;
1395 smack_set_catset(smack
, nlsp
);
1400 * smack_netlabel - Set the secattr on a socket
1402 * @labeled: socket label scheme
1404 * Convert the outbound smack value (smk_out) to a
1405 * secattr and attach it to the socket.
1407 * Returns 0 on success or an error code
1409 static int smack_netlabel(struct sock
*sk
, int labeled
)
1411 struct socket_smack
*ssp
= sk
->sk_security
;
1412 struct netlbl_lsm_secattr secattr
;
1416 * Usually the netlabel code will handle changing the
1417 * packet labeling based on the label.
1418 * The case of a single label host is different, because
1419 * a single label host should never get a labeled packet
1420 * even though the label is usually associated with a packet
1424 bh_lock_sock_nested(sk
);
1426 if (ssp
->smk_out
== smack_net_ambient
||
1427 labeled
== SMACK_UNLABELED_SOCKET
)
1428 netlbl_sock_delattr(sk
);
1430 netlbl_secattr_init(&secattr
);
1431 smack_to_secattr(ssp
->smk_out
, &secattr
);
1432 rc
= netlbl_sock_setattr(sk
, sk
->sk_family
, &secattr
);
1433 netlbl_secattr_destroy(&secattr
);
1443 * smack_netlbel_send - Set the secattr on a socket and perform access checks
1445 * @sap: the destination address
1447 * Set the correct secattr for the given socket based on the destination
1448 * address and perform any outbound access checks needed.
1450 * Returns 0 on success or an error code.
1453 static int smack_netlabel_send(struct sock
*sk
, struct sockaddr_in
*sap
)
1458 struct socket_smack
*ssp
= sk
->sk_security
;
1461 hostsp
= smack_host_label(sap
);
1462 if (hostsp
!= NULL
) {
1463 sk_lbl
= SMACK_UNLABELED_SOCKET
;
1464 rc
= smk_access(ssp
->smk_out
, hostsp
, MAY_WRITE
);
1466 sk_lbl
= SMACK_CIPSO_SOCKET
;
1473 return smack_netlabel(sk
, sk_lbl
);
1477 * smack_inode_setsecurity - set smack xattrs
1478 * @inode: the object
1479 * @name: attribute name
1480 * @value: attribute value
1481 * @size: size of the attribute
1484 * Sets the named attribute in the appropriate blob
1486 * Returns 0 on success, or an error code
1488 static int smack_inode_setsecurity(struct inode
*inode
, const char *name
,
1489 const void *value
, size_t size
, int flags
)
1492 struct inode_smack
*nsp
= inode
->i_security
;
1493 struct socket_smack
*ssp
;
1494 struct socket
*sock
;
1497 if (value
== NULL
|| size
> SMK_LABELLEN
|| size
== 0)
1500 sp
= smk_import(value
, size
);
1504 if (strcmp(name
, XATTR_SMACK_SUFFIX
) == 0) {
1505 nsp
->smk_inode
= sp
;
1509 * The rest of the Smack xattrs are only on sockets.
1511 if (inode
->i_sb
->s_magic
!= SOCKFS_MAGIC
)
1514 sock
= SOCKET_I(inode
);
1515 if (sock
== NULL
|| sock
->sk
== NULL
)
1518 ssp
= sock
->sk
->sk_security
;
1520 if (strcmp(name
, XATTR_SMACK_IPIN
) == 0)
1522 else if (strcmp(name
, XATTR_SMACK_IPOUT
) == 0) {
1524 rc
= smack_netlabel(sock
->sk
, SMACK_CIPSO_SOCKET
);
1526 printk(KERN_WARNING
"Smack: \"%s\" netlbl error %d.\n",
1535 * smack_socket_post_create - finish socket setup
1537 * @family: protocol family
1542 * Sets the netlabel information on the socket
1544 * Returns 0 on success, and error code otherwise
1546 static int smack_socket_post_create(struct socket
*sock
, int family
,
1547 int type
, int protocol
, int kern
)
1549 if (family
!= PF_INET
|| sock
->sk
== NULL
)
1552 * Set the outbound netlbl.
1554 return smack_netlabel(sock
->sk
, SMACK_CIPSO_SOCKET
);
1558 * smack_socket_connect - connect access check
1560 * @sap: the other end
1561 * @addrlen: size of sap
1563 * Verifies that a connection may be possible
1565 * Returns 0 on success, and error code otherwise
1567 static int smack_socket_connect(struct socket
*sock
, struct sockaddr
*sap
,
1570 if (sock
->sk
== NULL
|| sock
->sk
->sk_family
!= PF_INET
)
1572 if (addrlen
< sizeof(struct sockaddr_in
))
1575 return smack_netlabel_send(sock
->sk
, (struct sockaddr_in
*)sap
);
1579 * smack_flags_to_may - convert S_ to MAY_ values
1580 * @flags: the S_ value
1582 * Returns the equivalent MAY_ value
1584 static int smack_flags_to_may(int flags
)
1588 if (flags
& S_IRUGO
)
1590 if (flags
& S_IWUGO
)
1592 if (flags
& S_IXUGO
)
1599 * smack_msg_msg_alloc_security - Set the security blob for msg_msg
1604 static int smack_msg_msg_alloc_security(struct msg_msg
*msg
)
1606 msg
->security
= current_security();
1611 * smack_msg_msg_free_security - Clear the security blob for msg_msg
1614 * Clears the blob pointer
1616 static void smack_msg_msg_free_security(struct msg_msg
*msg
)
1618 msg
->security
= NULL
;
1622 * smack_of_shm - the smack pointer for the shm
1625 * Returns a pointer to the smack value
1627 static char *smack_of_shm(struct shmid_kernel
*shp
)
1629 return (char *)shp
->shm_perm
.security
;
1633 * smack_shm_alloc_security - Set the security blob for shm
1638 static int smack_shm_alloc_security(struct shmid_kernel
*shp
)
1640 struct kern_ipc_perm
*isp
= &shp
->shm_perm
;
1642 isp
->security
= current_security();
1647 * smack_shm_free_security - Clear the security blob for shm
1650 * Clears the blob pointer
1652 static void smack_shm_free_security(struct shmid_kernel
*shp
)
1654 struct kern_ipc_perm
*isp
= &shp
->shm_perm
;
1656 isp
->security
= NULL
;
1660 * smack_shm_associate - Smack access check for shm
1662 * @shmflg: access requested
1664 * Returns 0 if current has the requested access, error code otherwise
1666 static int smack_shm_associate(struct shmid_kernel
*shp
, int shmflg
)
1668 char *ssp
= smack_of_shm(shp
);
1671 may
= smack_flags_to_may(shmflg
);
1672 return smk_curacc(ssp
, may
);
1676 * smack_shm_shmctl - Smack access check for shm
1678 * @cmd: what it wants to do
1680 * Returns 0 if current has the requested access, error code otherwise
1682 static int smack_shm_shmctl(struct shmid_kernel
*shp
, int cmd
)
1696 may
= MAY_READWRITE
;
1701 * System level information.
1708 ssp
= smack_of_shm(shp
);
1709 return smk_curacc(ssp
, may
);
1713 * smack_shm_shmat - Smack access for shmat
1716 * @shmflg: access requested
1718 * Returns 0 if current has the requested access, error code otherwise
1720 static int smack_shm_shmat(struct shmid_kernel
*shp
, char __user
*shmaddr
,
1723 char *ssp
= smack_of_shm(shp
);
1726 may
= smack_flags_to_may(shmflg
);
1727 return smk_curacc(ssp
, may
);
1731 * smack_of_sem - the smack pointer for the sem
1734 * Returns a pointer to the smack value
1736 static char *smack_of_sem(struct sem_array
*sma
)
1738 return (char *)sma
->sem_perm
.security
;
1742 * smack_sem_alloc_security - Set the security blob for sem
1747 static int smack_sem_alloc_security(struct sem_array
*sma
)
1749 struct kern_ipc_perm
*isp
= &sma
->sem_perm
;
1751 isp
->security
= current_security();
1756 * smack_sem_free_security - Clear the security blob for sem
1759 * Clears the blob pointer
1761 static void smack_sem_free_security(struct sem_array
*sma
)
1763 struct kern_ipc_perm
*isp
= &sma
->sem_perm
;
1765 isp
->security
= NULL
;
1769 * smack_sem_associate - Smack access check for sem
1771 * @semflg: access requested
1773 * Returns 0 if current has the requested access, error code otherwise
1775 static int smack_sem_associate(struct sem_array
*sma
, int semflg
)
1777 char *ssp
= smack_of_sem(sma
);
1780 may
= smack_flags_to_may(semflg
);
1781 return smk_curacc(ssp
, may
);
1785 * smack_sem_shmctl - Smack access check for sem
1787 * @cmd: what it wants to do
1789 * Returns 0 if current has the requested access, error code otherwise
1791 static int smack_sem_semctl(struct sem_array
*sma
, int cmd
)
1810 may
= MAY_READWRITE
;
1815 * System level information
1822 ssp
= smack_of_sem(sma
);
1823 return smk_curacc(ssp
, may
);
1827 * smack_sem_semop - Smack checks of semaphore operations
1833 * Treated as read and write in all cases.
1835 * Returns 0 if access is allowed, error code otherwise
1837 static int smack_sem_semop(struct sem_array
*sma
, struct sembuf
*sops
,
1838 unsigned nsops
, int alter
)
1840 char *ssp
= smack_of_sem(sma
);
1842 return smk_curacc(ssp
, MAY_READWRITE
);
1846 * smack_msg_alloc_security - Set the security blob for msg
1851 static int smack_msg_queue_alloc_security(struct msg_queue
*msq
)
1853 struct kern_ipc_perm
*kisp
= &msq
->q_perm
;
1855 kisp
->security
= current_security();
1860 * smack_msg_free_security - Clear the security blob for msg
1863 * Clears the blob pointer
1865 static void smack_msg_queue_free_security(struct msg_queue
*msq
)
1867 struct kern_ipc_perm
*kisp
= &msq
->q_perm
;
1869 kisp
->security
= NULL
;
1873 * smack_of_msq - the smack pointer for the msq
1876 * Returns a pointer to the smack value
1878 static char *smack_of_msq(struct msg_queue
*msq
)
1880 return (char *)msq
->q_perm
.security
;
1884 * smack_msg_queue_associate - Smack access check for msg_queue
1886 * @msqflg: access requested
1888 * Returns 0 if current has the requested access, error code otherwise
1890 static int smack_msg_queue_associate(struct msg_queue
*msq
, int msqflg
)
1892 char *msp
= smack_of_msq(msq
);
1895 may
= smack_flags_to_may(msqflg
);
1896 return smk_curacc(msp
, may
);
1900 * smack_msg_queue_msgctl - Smack access check for msg_queue
1902 * @cmd: what it wants to do
1904 * Returns 0 if current has the requested access, error code otherwise
1906 static int smack_msg_queue_msgctl(struct msg_queue
*msq
, int cmd
)
1918 may
= MAY_READWRITE
;
1923 * System level information
1930 msp
= smack_of_msq(msq
);
1931 return smk_curacc(msp
, may
);
1935 * smack_msg_queue_msgsnd - Smack access check for msg_queue
1938 * @msqflg: access requested
1940 * Returns 0 if current has the requested access, error code otherwise
1942 static int smack_msg_queue_msgsnd(struct msg_queue
*msq
, struct msg_msg
*msg
,
1945 char *msp
= smack_of_msq(msq
);
1948 rc
= smack_flags_to_may(msqflg
);
1949 return smk_curacc(msp
, rc
);
1953 * smack_msg_queue_msgsnd - Smack access check for msg_queue
1960 * Returns 0 if current has read and write access, error code otherwise
1962 static int smack_msg_queue_msgrcv(struct msg_queue
*msq
, struct msg_msg
*msg
,
1963 struct task_struct
*target
, long type
, int mode
)
1965 char *msp
= smack_of_msq(msq
);
1967 return smk_curacc(msp
, MAY_READWRITE
);
1971 * smack_ipc_permission - Smack access for ipc_permission()
1972 * @ipp: the object permissions
1973 * @flag: access requested
1975 * Returns 0 if current has read and write access, error code otherwise
1977 static int smack_ipc_permission(struct kern_ipc_perm
*ipp
, short flag
)
1979 char *isp
= ipp
->security
;
1982 may
= smack_flags_to_may(flag
);
1983 return smk_curacc(isp
, may
);
1987 * smack_ipc_getsecid - Extract smack security id
1988 * @ipp: the object permissions
1989 * @secid: where result will be saved
1991 static void smack_ipc_getsecid(struct kern_ipc_perm
*ipp
, u32
*secid
)
1993 char *smack
= ipp
->security
;
1995 *secid
= smack_to_secid(smack
);
1999 * smack_d_instantiate - Make sure the blob is correct on an inode
2000 * @opt_dentry: unused
2001 * @inode: the object
2003 * Set the inode's security blob if it hasn't been done already.
2005 static void smack_d_instantiate(struct dentry
*opt_dentry
, struct inode
*inode
)
2007 struct super_block
*sbp
;
2008 struct superblock_smack
*sbsp
;
2009 struct inode_smack
*isp
;
2010 char *csp
= current_security();
2018 isp
= inode
->i_security
;
2020 mutex_lock(&isp
->smk_lock
);
2022 * If the inode is already instantiated
2023 * take the quick way out
2025 if (isp
->smk_flags
& SMK_INODE_INSTANT
)
2029 sbsp
= sbp
->s_security
;
2031 * We're going to use the superblock default label
2032 * if there's no label on the file.
2034 final
= sbsp
->smk_default
;
2037 * If this is the root inode the superblock
2038 * may be in the process of initialization.
2039 * If that is the case use the root value out
2040 * of the superblock.
2042 if (opt_dentry
->d_parent
== opt_dentry
) {
2043 isp
->smk_inode
= sbsp
->smk_root
;
2044 isp
->smk_flags
|= SMK_INODE_INSTANT
;
2049 * This is pretty hackish.
2050 * Casey says that we shouldn't have to do
2051 * file system specific code, but it does help
2052 * with keeping it simple.
2054 switch (sbp
->s_magic
) {
2057 * Casey says that it's a little embarassing
2058 * that the smack file system doesn't do
2059 * extended attributes.
2061 final
= smack_known_star
.smk_known
;
2065 * Casey says pipes are easy (?)
2067 final
= smack_known_star
.smk_known
;
2069 case DEVPTS_SUPER_MAGIC
:
2071 * devpts seems content with the label of the task.
2072 * Programs that change smack have to treat the
2079 * Casey says sockets get the smack of the task.
2083 case PROC_SUPER_MAGIC
:
2085 * Casey says procfs appears not to care.
2086 * The superblock default suffices.
2091 * Device labels should come from the filesystem,
2092 * but watch out, because they're volitile,
2093 * getting recreated on every reboot.
2095 final
= smack_known_star
.smk_known
;
2099 * If a smack value has been set we want to use it,
2100 * but since tmpfs isn't giving us the opportunity
2101 * to set mount options simulate setting the
2102 * superblock default.
2106 * This isn't an understood special case.
2107 * Get the value from the xattr.
2109 * No xattr support means, alas, no SMACK label.
2110 * Use the aforeapplied default.
2111 * It would be curious if the label of the task
2112 * does not match that assigned.
2114 if (inode
->i_op
->getxattr
== NULL
)
2117 * Get the dentry for xattr.
2119 if (opt_dentry
== NULL
) {
2120 dp
= d_find_alias(inode
);
2124 dp
= dget(opt_dentry
);
2129 fetched
= smk_fetch(inode
, dp
);
2130 if (fetched
!= NULL
)
2138 isp
->smk_inode
= csp
;
2140 isp
->smk_inode
= final
;
2142 isp
->smk_flags
|= SMK_INODE_INSTANT
;
2145 mutex_unlock(&isp
->smk_lock
);
2150 * smack_getprocattr - Smack process attribute access
2151 * @p: the object task
2152 * @name: the name of the attribute in /proc/.../attr
2153 * @value: where to put the result
2155 * Places a copy of the task Smack into value
2157 * Returns the length of the smack label or an error code
2159 static int smack_getprocattr(struct task_struct
*p
, char *name
, char **value
)
2164 if (strcmp(name
, "current") != 0)
2167 cp
= kstrdup(task_security(p
), GFP_KERNEL
);
2177 * smack_setprocattr - Smack process attribute setting
2178 * @p: the object task
2179 * @name: the name of the attribute in /proc/.../attr
2180 * @value: the value to set
2181 * @size: the size of the value
2183 * Sets the Smack value of the task. Only setting self
2184 * is permitted and only with privilege
2186 * Returns the length of the smack label or an error code
2188 static int smack_setprocattr(struct task_struct
*p
, char *name
,
2189 void *value
, size_t size
)
2195 * Changing another process' Smack value is too dangerous
2196 * and supports no sane use case.
2201 if (!capable(CAP_MAC_ADMIN
))
2204 if (value
== NULL
|| size
== 0 || size
>= SMK_LABELLEN
)
2207 if (strcmp(name
, "current") != 0)
2210 newsmack
= smk_import(value
, size
);
2211 if (newsmack
== NULL
)
2215 * No process is ever allowed the web ("@") label.
2217 if (newsmack
== smack_known_web
.smk_known
)
2220 new = prepare_creds();
2223 new->security
= newsmack
;
2229 * smack_unix_stream_connect - Smack access on UDS
2231 * @other: the other socket
2234 * Return 0 if a subject with the smack of sock could access
2235 * an object with the smack of other, otherwise an error code
2237 static int smack_unix_stream_connect(struct socket
*sock
,
2238 struct socket
*other
, struct sock
*newsk
)
2240 struct inode
*sp
= SOCK_INODE(sock
);
2241 struct inode
*op
= SOCK_INODE(other
);
2243 return smk_access(smk_of_inode(sp
), smk_of_inode(op
), MAY_READWRITE
);
2247 * smack_unix_may_send - Smack access on UDS
2249 * @other: the other socket
2251 * Return 0 if a subject with the smack of sock could access
2252 * an object with the smack of other, otherwise an error code
2254 static int smack_unix_may_send(struct socket
*sock
, struct socket
*other
)
2256 struct inode
*sp
= SOCK_INODE(sock
);
2257 struct inode
*op
= SOCK_INODE(other
);
2259 return smk_access(smk_of_inode(sp
), smk_of_inode(op
), MAY_WRITE
);
2263 * smack_socket_sendmsg - Smack check based on destination host
2266 * @size: the size of the message
2268 * Return 0 if the current subject can write to the destination
2269 * host. This is only a question if the destination is a single
2272 static int smack_socket_sendmsg(struct socket
*sock
, struct msghdr
*msg
,
2275 struct sockaddr_in
*sip
= (struct sockaddr_in
*) msg
->msg_name
;
2278 * Perfectly reasonable for this to be NULL
2280 if (sip
== NULL
|| sip
->sin_family
!= PF_INET
)
2283 return smack_netlabel_send(sock
->sk
, sip
);
2288 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
2289 * @sap: netlabel secattr
2290 * @sip: where to put the result
2292 * Copies a smack label into sip
2294 static void smack_from_secattr(struct netlbl_lsm_secattr
*sap
, char *sip
)
2296 char smack
[SMK_LABELLEN
];
2300 if ((sap
->flags
& NETLBL_SECATTR_MLS_LVL
) != 0) {
2302 * Looks like a CIPSO packet.
2303 * If there are flags but no level netlabel isn't
2304 * behaving the way we expect it to.
2306 * Get the categories, if any
2307 * Without guidance regarding the smack value
2308 * for the packet fall back on the network
2311 memset(smack
, '\0', SMK_LABELLEN
);
2312 if ((sap
->flags
& NETLBL_SECATTR_MLS_CAT
) != 0)
2314 pcat
= netlbl_secattr_catmap_walk(
2315 sap
->attr
.mls
.cat
, pcat
+ 1);
2318 smack_catset_bit(pcat
, smack
);
2321 * If it is CIPSO using smack direct mapping
2322 * we are already done. WeeHee.
2324 if (sap
->attr
.mls
.lvl
== smack_cipso_direct
) {
2325 memcpy(sip
, smack
, SMK_MAXLEN
);
2329 * Look it up in the supplied table if it is not
2332 smack_from_cipso(sap
->attr
.mls
.lvl
, smack
, sip
);
2335 if ((sap
->flags
& NETLBL_SECATTR_SECID
) != 0) {
2337 * Looks like a fallback, which gives us a secid.
2339 sp
= smack_from_secid(sap
->attr
.secid
);
2341 * This has got to be a bug because it is
2342 * impossible to specify a fallback without
2343 * specifying the label, which will ensure
2344 * it has a secid, and the only way to get a
2345 * secid is from a fallback.
2348 strncpy(sip
, sp
, SMK_MAXLEN
);
2352 * Without guidance regarding the smack value
2353 * for the packet fall back on the network
2356 strncpy(sip
, smack_net_ambient
, SMK_MAXLEN
);
2361 * smack_socket_sock_rcv_skb - Smack packet delivery access check
2365 * Returns 0 if the packet should be delivered, an error code otherwise
2367 static int smack_socket_sock_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
2369 struct netlbl_lsm_secattr secattr
;
2370 struct socket_smack
*ssp
= sk
->sk_security
;
2371 char smack
[SMK_LABELLEN
];
2375 if (sk
->sk_family
!= PF_INET
&& sk
->sk_family
!= PF_INET6
)
2379 * Translate what netlabel gave us.
2381 netlbl_secattr_init(&secattr
);
2383 rc
= netlbl_skbuff_getattr(skb
, sk
->sk_family
, &secattr
);
2385 smack_from_secattr(&secattr
, smack
);
2388 csp
= smack_net_ambient
;
2390 netlbl_secattr_destroy(&secattr
);
2393 * Receiving a packet requires that the other end
2394 * be able to write here. Read access is not required.
2395 * This is the simplist possible security model
2398 rc
= smk_access(csp
, ssp
->smk_in
, MAY_WRITE
);
2400 netlbl_skbuff_err(skb
, rc
, 0);
2405 * smack_socket_getpeersec_stream - pull in packet label
2407 * @optval: user's destination
2408 * @optlen: size thereof
2411 * returns zero on success, an error code otherwise
2413 static int smack_socket_getpeersec_stream(struct socket
*sock
,
2414 char __user
*optval
,
2415 int __user
*optlen
, unsigned len
)
2417 struct socket_smack
*ssp
;
2421 ssp
= sock
->sk
->sk_security
;
2422 slen
= strlen(ssp
->smk_packet
) + 1;
2426 else if (copy_to_user(optval
, ssp
->smk_packet
, slen
) != 0)
2429 if (put_user(slen
, optlen
) != 0)
2437 * smack_socket_getpeersec_dgram - pull in packet label
2440 * @secid: pointer to where to put the secid of the packet
2442 * Sets the netlabel socket state on sk from parent
2444 static int smack_socket_getpeersec_dgram(struct socket
*sock
,
2445 struct sk_buff
*skb
, u32
*secid
)
2448 struct netlbl_lsm_secattr secattr
;
2450 char smack
[SMK_LABELLEN
];
2451 int family
= PF_INET
;
2456 * Only works for families with packets.
2460 if (sk
->sk_family
!= PF_INET
&& sk
->sk_family
!= PF_INET6
)
2462 family
= sk
->sk_family
;
2465 * Translate what netlabel gave us.
2467 netlbl_secattr_init(&secattr
);
2468 rc
= netlbl_skbuff_getattr(skb
, family
, &secattr
);
2470 smack_from_secattr(&secattr
, smack
);
2471 netlbl_secattr_destroy(&secattr
);
2474 * Give up if we couldn't get anything
2479 s
= smack_to_secid(smack
);
2488 * smack_sock_graft - Initialize a newly created socket with an existing sock
2490 * @parent: parent socket
2492 * Set the smk_{in,out} state of an existing sock based on the process that
2493 * is creating the new socket.
2495 static void smack_sock_graft(struct sock
*sk
, struct socket
*parent
)
2497 struct socket_smack
*ssp
;
2500 (sk
->sk_family
!= PF_INET
&& sk
->sk_family
!= PF_INET6
))
2503 ssp
= sk
->sk_security
;
2504 ssp
->smk_in
= ssp
->smk_out
= current_security();
2505 /* cssp->smk_packet is already set in smack_inet_csk_clone() */
2509 * smack_inet_conn_request - Smack access check on connect
2510 * @sk: socket involved
2514 * Returns 0 if a task with the packet label could write to
2515 * the socket, otherwise an error code
2517 static int smack_inet_conn_request(struct sock
*sk
, struct sk_buff
*skb
,
2518 struct request_sock
*req
)
2520 u16 family
= sk
->sk_family
;
2521 struct socket_smack
*ssp
= sk
->sk_security
;
2522 struct netlbl_lsm_secattr secattr
;
2523 struct sockaddr_in addr
;
2525 char smack
[SMK_LABELLEN
];
2528 /* handle mapped IPv4 packets arriving via IPv6 sockets */
2529 if (family
== PF_INET6
&& skb
->protocol
== htons(ETH_P_IP
))
2532 netlbl_secattr_init(&secattr
);
2533 rc
= netlbl_skbuff_getattr(skb
, family
, &secattr
);
2535 smack_from_secattr(&secattr
, smack
);
2537 strncpy(smack
, smack_known_huh
.smk_known
, SMK_MAXLEN
);
2538 netlbl_secattr_destroy(&secattr
);
2541 * Receiving a packet requires that the other end be able to write
2542 * here. Read access is not required.
2544 rc
= smk_access(smack
, ssp
->smk_in
, MAY_WRITE
);
2549 * Save the peer's label in the request_sock so we can later setup
2550 * smk_packet in the child socket so that SO_PEERCRED can report it.
2552 req
->peer_secid
= smack_to_secid(smack
);
2555 * We need to decide if we want to label the incoming connection here
2556 * if we do we only need to label the request_sock and the stack will
2557 * propogate the wire-label to the sock when it is created.
2560 addr
.sin_addr
.s_addr
= hdr
->saddr
;
2562 if (smack_host_label(&addr
) == NULL
) {
2564 netlbl_secattr_init(&secattr
);
2565 smack_to_secattr(smack
, &secattr
);
2566 rc
= netlbl_req_setattr(req
, &secattr
);
2567 netlbl_secattr_destroy(&secattr
);
2570 netlbl_req_delattr(req
);
2577 * smack_inet_csk_clone - Copy the connection information to the new socket
2578 * @sk: the new socket
2579 * @req: the connection's request_sock
2581 * Transfer the connection's peer label to the newly created socket.
2583 static void smack_inet_csk_clone(struct sock
*sk
,
2584 const struct request_sock
*req
)
2586 struct socket_smack
*ssp
= sk
->sk_security
;
2589 if (req
->peer_secid
!= 0) {
2590 smack
= smack_from_secid(req
->peer_secid
);
2591 strncpy(ssp
->smk_packet
, smack
, SMK_MAXLEN
);
2593 ssp
->smk_packet
[0] = '\0';
2597 * Key management security hooks
2599 * Casey has not tested key support very heavily.
2600 * The permission check is most likely too restrictive.
2601 * If you care about keys please have a look.
2606 * smack_key_alloc - Set the key security blob
2608 * @cred: the credentials to use
2611 * No allocation required
2615 static int smack_key_alloc(struct key
*key
, const struct cred
*cred
,
2616 unsigned long flags
)
2618 key
->security
= cred
->security
;
2623 * smack_key_free - Clear the key security blob
2626 * Clear the blob pointer
2628 static void smack_key_free(struct key
*key
)
2630 key
->security
= NULL
;
2634 * smack_key_permission - Smack access on a key
2635 * @key_ref: gets to the object
2636 * @cred: the credentials to use
2639 * Return 0 if the task has read and write to the object,
2640 * an error code otherwise
2642 static int smack_key_permission(key_ref_t key_ref
,
2643 const struct cred
*cred
, key_perm_t perm
)
2647 keyp
= key_ref_to_ptr(key_ref
);
2651 * If the key hasn't been initialized give it access so that
2654 if (keyp
->security
== NULL
)
2657 * This should not occur
2659 if (cred
->security
== NULL
)
2662 return smk_access(cred
->security
, keyp
->security
, MAY_READWRITE
);
2664 #endif /* CONFIG_KEYS */
2669 * Audit requires a unique representation of each Smack specific
2670 * rule. This unique representation is used to distinguish the
2671 * object to be audited from remaining kernel objects and also
2672 * works as a glue between the audit hooks.
2674 * Since repository entries are added but never deleted, we'll use
2675 * the smack_known label address related to the given audit rule as
2676 * the needed unique representation. This also better fits the smack
2677 * model where nearly everything is a label.
2682 * smack_audit_rule_init - Initialize a smack audit rule
2683 * @field: audit rule fields given from user-space (audit.h)
2684 * @op: required testing operator (=, !=, >, <, ...)
2685 * @rulestr: smack label to be audited
2686 * @vrule: pointer to save our own audit rule representation
2688 * Prepare to audit cases where (@field @op @rulestr) is true.
2689 * The label to be audited is created if necessay.
2691 static int smack_audit_rule_init(u32 field
, u32 op
, char *rulestr
, void **vrule
)
2693 char **rule
= (char **)vrule
;
2696 if (field
!= AUDIT_SUBJ_USER
&& field
!= AUDIT_OBJ_USER
)
2699 if (op
!= Audit_equal
&& op
!= Audit_not_equal
)
2702 *rule
= smk_import(rulestr
, 0);
2708 * smack_audit_rule_known - Distinguish Smack audit rules
2709 * @krule: rule of interest, in Audit kernel representation format
2711 * This is used to filter Smack rules from remaining Audit ones.
2712 * If it's proved that this rule belongs to us, the
2713 * audit_rule_match hook will be called to do the final judgement.
2715 static int smack_audit_rule_known(struct audit_krule
*krule
)
2717 struct audit_field
*f
;
2720 for (i
= 0; i
< krule
->field_count
; i
++) {
2721 f
= &krule
->fields
[i
];
2723 if (f
->type
== AUDIT_SUBJ_USER
|| f
->type
== AUDIT_OBJ_USER
)
2731 * smack_audit_rule_match - Audit given object ?
2732 * @secid: security id for identifying the object to test
2733 * @field: audit rule flags given from user-space
2734 * @op: required testing operator
2735 * @vrule: smack internal rule presentation
2736 * @actx: audit context associated with the check
2738 * The core Audit hook. It's used to take the decision of
2739 * whether to audit or not to audit a given object.
2741 static int smack_audit_rule_match(u32 secid
, u32 field
, u32 op
, void *vrule
,
2742 struct audit_context
*actx
)
2748 audit_log(actx
, GFP_KERNEL
, AUDIT_SELINUX_ERR
,
2749 "Smack: missing rule\n");
2753 if (field
!= AUDIT_SUBJ_USER
&& field
!= AUDIT_OBJ_USER
)
2756 smack
= smack_from_secid(secid
);
2759 * No need to do string comparisons. If a match occurs,
2760 * both pointers will point to the same smack_known
2763 if (op
== Audit_equal
)
2764 return (rule
== smack
);
2765 if (op
== Audit_not_equal
)
2766 return (rule
!= smack
);
2772 * smack_audit_rule_free - free smack rule representation
2773 * @vrule: rule to be freed.
2775 * No memory was allocated.
2777 static void smack_audit_rule_free(void *vrule
)
2782 #endif /* CONFIG_AUDIT */
2785 * smack_secid_to_secctx - return the smack label for a secid
2786 * @secid: incoming integer
2787 * @secdata: destination
2788 * @seclen: how long it is
2790 * Exists for networking code.
2792 static int smack_secid_to_secctx(u32 secid
, char **secdata
, u32
*seclen
)
2794 char *sp
= smack_from_secid(secid
);
2797 *seclen
= strlen(sp
);
2802 * smack_secctx_to_secid - return the secid for a smack label
2803 * @secdata: smack label
2804 * @seclen: how long result is
2805 * @secid: outgoing integer
2807 * Exists for audit and networking code.
2809 static int smack_secctx_to_secid(const char *secdata
, u32 seclen
, u32
*secid
)
2811 *secid
= smack_to_secid(secdata
);
2816 * smack_release_secctx - don't do anything.
2820 * Exists to make sure nothing gets done, and properly
2822 static void smack_release_secctx(char *secdata
, u32 seclen
)
2826 struct security_operations smack_ops
= {
2829 .ptrace_may_access
= smack_ptrace_may_access
,
2830 .ptrace_traceme
= smack_ptrace_traceme
,
2831 .capget
= cap_capget
,
2832 .capset
= cap_capset
,
2833 .capable
= cap_capable
,
2834 .syslog
= smack_syslog
,
2835 .settime
= cap_settime
,
2836 .vm_enough_memory
= cap_vm_enough_memory
,
2838 .bprm_set_creds
= cap_bprm_set_creds
,
2839 .bprm_secureexec
= cap_bprm_secureexec
,
2841 .sb_alloc_security
= smack_sb_alloc_security
,
2842 .sb_free_security
= smack_sb_free_security
,
2843 .sb_copy_data
= smack_sb_copy_data
,
2844 .sb_kern_mount
= smack_sb_kern_mount
,
2845 .sb_statfs
= smack_sb_statfs
,
2846 .sb_mount
= smack_sb_mount
,
2847 .sb_umount
= smack_sb_umount
,
2849 .inode_alloc_security
= smack_inode_alloc_security
,
2850 .inode_free_security
= smack_inode_free_security
,
2851 .inode_init_security
= smack_inode_init_security
,
2852 .inode_link
= smack_inode_link
,
2853 .inode_unlink
= smack_inode_unlink
,
2854 .inode_rmdir
= smack_inode_rmdir
,
2855 .inode_rename
= smack_inode_rename
,
2856 .inode_permission
= smack_inode_permission
,
2857 .inode_setattr
= smack_inode_setattr
,
2858 .inode_getattr
= smack_inode_getattr
,
2859 .inode_setxattr
= smack_inode_setxattr
,
2860 .inode_post_setxattr
= smack_inode_post_setxattr
,
2861 .inode_getxattr
= smack_inode_getxattr
,
2862 .inode_removexattr
= smack_inode_removexattr
,
2863 .inode_need_killpriv
= cap_inode_need_killpriv
,
2864 .inode_killpriv
= cap_inode_killpriv
,
2865 .inode_getsecurity
= smack_inode_getsecurity
,
2866 .inode_setsecurity
= smack_inode_setsecurity
,
2867 .inode_listsecurity
= smack_inode_listsecurity
,
2868 .inode_getsecid
= smack_inode_getsecid
,
2870 .file_permission
= smack_file_permission
,
2871 .file_alloc_security
= smack_file_alloc_security
,
2872 .file_free_security
= smack_file_free_security
,
2873 .file_ioctl
= smack_file_ioctl
,
2874 .file_lock
= smack_file_lock
,
2875 .file_fcntl
= smack_file_fcntl
,
2876 .file_set_fowner
= smack_file_set_fowner
,
2877 .file_send_sigiotask
= smack_file_send_sigiotask
,
2878 .file_receive
= smack_file_receive
,
2880 .cred_free
= smack_cred_free
,
2881 .cred_prepare
= smack_cred_prepare
,
2882 .cred_commit
= smack_cred_commit
,
2883 .kernel_act_as
= smack_kernel_act_as
,
2884 .kernel_create_files_as
= smack_kernel_create_files_as
,
2885 .task_fix_setuid
= cap_task_fix_setuid
,
2886 .task_setpgid
= smack_task_setpgid
,
2887 .task_getpgid
= smack_task_getpgid
,
2888 .task_getsid
= smack_task_getsid
,
2889 .task_getsecid
= smack_task_getsecid
,
2890 .task_setnice
= smack_task_setnice
,
2891 .task_setioprio
= smack_task_setioprio
,
2892 .task_getioprio
= smack_task_getioprio
,
2893 .task_setscheduler
= smack_task_setscheduler
,
2894 .task_getscheduler
= smack_task_getscheduler
,
2895 .task_movememory
= smack_task_movememory
,
2896 .task_kill
= smack_task_kill
,
2897 .task_wait
= smack_task_wait
,
2898 .task_to_inode
= smack_task_to_inode
,
2899 .task_prctl
= cap_task_prctl
,
2901 .ipc_permission
= smack_ipc_permission
,
2902 .ipc_getsecid
= smack_ipc_getsecid
,
2904 .msg_msg_alloc_security
= smack_msg_msg_alloc_security
,
2905 .msg_msg_free_security
= smack_msg_msg_free_security
,
2907 .msg_queue_alloc_security
= smack_msg_queue_alloc_security
,
2908 .msg_queue_free_security
= smack_msg_queue_free_security
,
2909 .msg_queue_associate
= smack_msg_queue_associate
,
2910 .msg_queue_msgctl
= smack_msg_queue_msgctl
,
2911 .msg_queue_msgsnd
= smack_msg_queue_msgsnd
,
2912 .msg_queue_msgrcv
= smack_msg_queue_msgrcv
,
2914 .shm_alloc_security
= smack_shm_alloc_security
,
2915 .shm_free_security
= smack_shm_free_security
,
2916 .shm_associate
= smack_shm_associate
,
2917 .shm_shmctl
= smack_shm_shmctl
,
2918 .shm_shmat
= smack_shm_shmat
,
2920 .sem_alloc_security
= smack_sem_alloc_security
,
2921 .sem_free_security
= smack_sem_free_security
,
2922 .sem_associate
= smack_sem_associate
,
2923 .sem_semctl
= smack_sem_semctl
,
2924 .sem_semop
= smack_sem_semop
,
2926 .netlink_send
= cap_netlink_send
,
2927 .netlink_recv
= cap_netlink_recv
,
2929 .d_instantiate
= smack_d_instantiate
,
2931 .getprocattr
= smack_getprocattr
,
2932 .setprocattr
= smack_setprocattr
,
2934 .unix_stream_connect
= smack_unix_stream_connect
,
2935 .unix_may_send
= smack_unix_may_send
,
2937 .socket_post_create
= smack_socket_post_create
,
2938 .socket_connect
= smack_socket_connect
,
2939 .socket_sendmsg
= smack_socket_sendmsg
,
2940 .socket_sock_rcv_skb
= smack_socket_sock_rcv_skb
,
2941 .socket_getpeersec_stream
= smack_socket_getpeersec_stream
,
2942 .socket_getpeersec_dgram
= smack_socket_getpeersec_dgram
,
2943 .sk_alloc_security
= smack_sk_alloc_security
,
2944 .sk_free_security
= smack_sk_free_security
,
2945 .sock_graft
= smack_sock_graft
,
2946 .inet_conn_request
= smack_inet_conn_request
,
2947 .inet_csk_clone
= smack_inet_csk_clone
,
2949 /* key management security hooks */
2951 .key_alloc
= smack_key_alloc
,
2952 .key_free
= smack_key_free
,
2953 .key_permission
= smack_key_permission
,
2954 #endif /* CONFIG_KEYS */
2958 .audit_rule_init
= smack_audit_rule_init
,
2959 .audit_rule_known
= smack_audit_rule_known
,
2960 .audit_rule_match
= smack_audit_rule_match
,
2961 .audit_rule_free
= smack_audit_rule_free
,
2962 #endif /* CONFIG_AUDIT */
2964 .secid_to_secctx
= smack_secid_to_secctx
,
2965 .secctx_to_secid
= smack_secctx_to_secid
,
2966 .release_secctx
= smack_release_secctx
,
2970 static __init
void init_smack_know_list(void)
2972 list_add(&smack_known_huh
.list
, &smack_known_list
);
2973 list_add(&smack_known_hat
.list
, &smack_known_list
);
2974 list_add(&smack_known_star
.list
, &smack_known_list
);
2975 list_add(&smack_known_floor
.list
, &smack_known_list
);
2976 list_add(&smack_known_invalid
.list
, &smack_known_list
);
2977 list_add(&smack_known_web
.list
, &smack_known_list
);
2981 * smack_init - initialize the smack system
2985 static __init
int smack_init(void)
2989 if (!security_module_enable(&smack_ops
))
2992 printk(KERN_INFO
"Smack: Initializing.\n");
2995 * Set the security state for the initial task.
2997 cred
= (struct cred
*) current
->cred
;
2998 cred
->security
= &smack_known_floor
.smk_known
;
3000 /* initilize the smack_know_list */
3001 init_smack_know_list();
3005 spin_lock_init(&smack_known_huh
.smk_cipsolock
);
3006 spin_lock_init(&smack_known_hat
.smk_cipsolock
);
3007 spin_lock_init(&smack_known_star
.smk_cipsolock
);
3008 spin_lock_init(&smack_known_floor
.smk_cipsolock
);
3009 spin_lock_init(&smack_known_invalid
.smk_cipsolock
);
3014 if (register_security(&smack_ops
))
3015 panic("smack: Unable to register with kernel.\n");
3021 * Smack requires early initialization in order to label
3022 * all processes and objects when they are created.
3024 security_initcall(smack_init
);