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>
23 #include <asm/ioctls.h>
25 #include <linux/tcp.h>
26 #include <linux/udp.h>
27 #include <linux/slab.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>
33 #include <linux/magic.h>
36 #define task_security(task) (task_cred_xxx((task), security))
39 * smk_fetch - Fetch the smack label from a file.
40 * @ip: a pointer to the inode
41 * @dp: a pointer to the dentry
43 * Returns a pointer to the master list entry for the Smack label
44 * or NULL if there was no label to fetch.
46 static char *smk_fetch(struct inode
*ip
, struct dentry
*dp
)
49 char in
[SMK_LABELLEN
];
51 if (ip
->i_op
->getxattr
== NULL
)
54 rc
= ip
->i_op
->getxattr(dp
, XATTR_NAME_SMACK
, in
, SMK_LABELLEN
);
58 return smk_import(in
, rc
);
62 * new_inode_smack - allocate an inode security blob
63 * @smack: a pointer to the Smack label to use in the blob
65 * Returns the new blob or NULL if there's no memory available
67 struct inode_smack
*new_inode_smack(char *smack
)
69 struct inode_smack
*isp
;
71 isp
= kzalloc(sizeof(struct inode_smack
), GFP_KERNEL
);
75 isp
->smk_inode
= smack
;
77 mutex_init(&isp
->smk_lock
);
88 * smack_ptrace_access_check - Smack approval on PTRACE_ATTACH
89 * @ctp: child task pointer
90 * @mode: ptrace attachment mode
92 * Returns 0 if access is OK, an error code otherwise
94 * Do the capability checks, and require read and write.
96 static int smack_ptrace_access_check(struct task_struct
*ctp
, unsigned int mode
)
99 struct smk_audit_info ad
;
102 rc
= cap_ptrace_access_check(ctp
, mode
);
106 sp
= current_security();
107 tsp
= task_security(ctp
);
108 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_TASK
);
109 smk_ad_setfield_u_tsk(&ad
, ctp
);
111 /* we won't log here, because rc can be overriden */
112 rc
= smk_access(sp
, tsp
, MAY_READWRITE
, NULL
);
113 if (rc
!= 0 && capable(CAP_MAC_OVERRIDE
))
116 smack_log(sp
, tsp
, MAY_READWRITE
, rc
, &ad
);
121 * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
122 * @ptp: parent task pointer
124 * Returns 0 if access is OK, an error code otherwise
126 * Do the capability checks, and require read and write.
128 static int smack_ptrace_traceme(struct task_struct
*ptp
)
131 struct smk_audit_info ad
;
134 rc
= cap_ptrace_traceme(ptp
);
138 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_TASK
);
139 smk_ad_setfield_u_tsk(&ad
, ptp
);
141 sp
= current_security();
142 tsp
= task_security(ptp
);
143 /* we won't log here, because rc can be overriden */
144 rc
= smk_access(tsp
, sp
, MAY_READWRITE
, NULL
);
145 if (rc
!= 0 && has_capability(ptp
, CAP_MAC_OVERRIDE
))
148 smack_log(tsp
, sp
, MAY_READWRITE
, rc
, &ad
);
153 * smack_syslog - Smack approval on syslog
154 * @type: message type
156 * Require that the task has the floor label
158 * Returns 0 on success, error code otherwise.
160 static int smack_syslog(int type
, bool from_file
)
163 char *sp
= current_security();
165 rc
= cap_syslog(type
, from_file
);
169 if (capable(CAP_MAC_OVERRIDE
))
172 if (sp
!= smack_known_floor
.smk_known
)
184 * smack_sb_alloc_security - allocate a superblock blob
185 * @sb: the superblock getting the blob
187 * Returns 0 on success or -ENOMEM on error.
189 static int smack_sb_alloc_security(struct super_block
*sb
)
191 struct superblock_smack
*sbsp
;
193 sbsp
= kzalloc(sizeof(struct superblock_smack
), GFP_KERNEL
);
198 sbsp
->smk_root
= smack_known_floor
.smk_known
;
199 sbsp
->smk_default
= smack_known_floor
.smk_known
;
200 sbsp
->smk_floor
= smack_known_floor
.smk_known
;
201 sbsp
->smk_hat
= smack_known_hat
.smk_known
;
202 sbsp
->smk_initialized
= 0;
203 spin_lock_init(&sbsp
->smk_sblock
);
205 sb
->s_security
= sbsp
;
211 * smack_sb_free_security - free a superblock blob
212 * @sb: the superblock getting the blob
215 static void smack_sb_free_security(struct super_block
*sb
)
217 kfree(sb
->s_security
);
218 sb
->s_security
= NULL
;
222 * smack_sb_copy_data - copy mount options data for processing
223 * @orig: where to start
224 * @smackopts: mount options string
226 * Returns 0 on success or -ENOMEM on error.
228 * Copy the Smack specific mount options out of the mount
231 static int smack_sb_copy_data(char *orig
, char *smackopts
)
233 char *cp
, *commap
, *otheropts
, *dp
;
235 otheropts
= (char *)get_zeroed_page(GFP_KERNEL
);
236 if (otheropts
== NULL
)
239 for (cp
= orig
, commap
= orig
; commap
!= NULL
; cp
= commap
+ 1) {
240 if (strstr(cp
, SMK_FSDEFAULT
) == cp
)
242 else if (strstr(cp
, SMK_FSFLOOR
) == cp
)
244 else if (strstr(cp
, SMK_FSHAT
) == cp
)
246 else if (strstr(cp
, SMK_FSROOT
) == cp
)
251 commap
= strchr(cp
, ',');
260 strcpy(orig
, otheropts
);
261 free_page((unsigned long)otheropts
);
267 * smack_sb_kern_mount - Smack specific mount processing
268 * @sb: the file system superblock
269 * @flags: the mount flags
270 * @data: the smack mount options
272 * Returns 0 on success, an error code on failure
274 static int smack_sb_kern_mount(struct super_block
*sb
, int flags
, void *data
)
276 struct dentry
*root
= sb
->s_root
;
277 struct inode
*inode
= root
->d_inode
;
278 struct superblock_smack
*sp
= sb
->s_security
;
279 struct inode_smack
*isp
;
284 spin_lock(&sp
->smk_sblock
);
285 if (sp
->smk_initialized
!= 0) {
286 spin_unlock(&sp
->smk_sblock
);
289 sp
->smk_initialized
= 1;
290 spin_unlock(&sp
->smk_sblock
);
292 for (op
= data
; op
!= NULL
; op
= commap
) {
293 commap
= strchr(op
, ',');
297 if (strncmp(op
, SMK_FSHAT
, strlen(SMK_FSHAT
)) == 0) {
298 op
+= strlen(SMK_FSHAT
);
299 nsp
= smk_import(op
, 0);
302 } else if (strncmp(op
, SMK_FSFLOOR
, strlen(SMK_FSFLOOR
)) == 0) {
303 op
+= strlen(SMK_FSFLOOR
);
304 nsp
= smk_import(op
, 0);
307 } else if (strncmp(op
, SMK_FSDEFAULT
,
308 strlen(SMK_FSDEFAULT
)) == 0) {
309 op
+= strlen(SMK_FSDEFAULT
);
310 nsp
= smk_import(op
, 0);
312 sp
->smk_default
= nsp
;
313 } else if (strncmp(op
, SMK_FSROOT
, strlen(SMK_FSROOT
)) == 0) {
314 op
+= strlen(SMK_FSROOT
);
315 nsp
= smk_import(op
, 0);
322 * Initialize the root inode.
324 isp
= inode
->i_security
;
326 inode
->i_security
= new_inode_smack(sp
->smk_root
);
328 isp
->smk_inode
= sp
->smk_root
;
334 * smack_sb_statfs - Smack check on statfs
335 * @dentry: identifies the file system in question
337 * Returns 0 if current can read the floor of the filesystem,
338 * and error code otherwise
340 static int smack_sb_statfs(struct dentry
*dentry
)
342 struct superblock_smack
*sbp
= dentry
->d_sb
->s_security
;
344 struct smk_audit_info ad
;
346 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
347 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
349 rc
= smk_curacc(sbp
->smk_floor
, MAY_READ
, &ad
);
354 * smack_sb_mount - Smack check for mounting
361 * Returns 0 if current can write the floor of the filesystem
362 * being mounted on, an error code otherwise.
364 static int smack_sb_mount(char *dev_name
, struct path
*path
,
365 char *type
, unsigned long flags
, void *data
)
367 struct superblock_smack
*sbp
= path
->mnt
->mnt_sb
->s_security
;
368 struct smk_audit_info ad
;
370 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
371 smk_ad_setfield_u_fs_path(&ad
, *path
);
373 return smk_curacc(sbp
->smk_floor
, MAY_WRITE
, &ad
);
377 * smack_sb_umount - Smack check for unmounting
378 * @mnt: file system to unmount
381 * Returns 0 if current can write the floor of the filesystem
382 * being unmounted, an error code otherwise.
384 static int smack_sb_umount(struct vfsmount
*mnt
, int flags
)
386 struct superblock_smack
*sbp
;
387 struct smk_audit_info ad
;
389 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
390 smk_ad_setfield_u_fs_path_dentry(&ad
, mnt
->mnt_root
);
391 smk_ad_setfield_u_fs_path_mnt(&ad
, mnt
);
393 sbp
= mnt
->mnt_sb
->s_security
;
394 return smk_curacc(sbp
->smk_floor
, MAY_WRITE
, &ad
);
402 * smack_inode_alloc_security - allocate an inode blob
403 * @inode: the inode in need of a blob
405 * Returns 0 if it gets a blob, -ENOMEM otherwise
407 static int smack_inode_alloc_security(struct inode
*inode
)
409 inode
->i_security
= new_inode_smack(current_security());
410 if (inode
->i_security
== NULL
)
416 * smack_inode_free_security - free an inode blob
417 * @inode: the inode with a blob
419 * Clears the blob pointer in inode
421 static void smack_inode_free_security(struct inode
*inode
)
423 kfree(inode
->i_security
);
424 inode
->i_security
= NULL
;
428 * smack_inode_init_security - copy out the smack from an inode
431 * @name: where to put the attribute name
432 * @value: where to put the attribute value
433 * @len: where to put the length of the attribute
435 * Returns 0 if it all works out, -ENOMEM if there's no memory
437 static int smack_inode_init_security(struct inode
*inode
, struct inode
*dir
,
438 char **name
, void **value
, size_t *len
)
440 char *isp
= smk_of_inode(inode
);
443 *name
= kstrdup(XATTR_SMACK_SUFFIX
, GFP_KERNEL
);
449 *value
= kstrdup(isp
, GFP_KERNEL
);
455 *len
= strlen(isp
) + 1;
461 * smack_inode_link - Smack check on link
462 * @old_dentry: the existing object
464 * @new_dentry: the new object
466 * Returns 0 if access is permitted, an error code otherwise
468 static int smack_inode_link(struct dentry
*old_dentry
, struct inode
*dir
,
469 struct dentry
*new_dentry
)
472 struct smk_audit_info ad
;
475 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
476 smk_ad_setfield_u_fs_path_dentry(&ad
, old_dentry
);
478 isp
= smk_of_inode(old_dentry
->d_inode
);
479 rc
= smk_curacc(isp
, MAY_WRITE
, &ad
);
481 if (rc
== 0 && new_dentry
->d_inode
!= NULL
) {
482 isp
= smk_of_inode(new_dentry
->d_inode
);
483 smk_ad_setfield_u_fs_path_dentry(&ad
, new_dentry
);
484 rc
= smk_curacc(isp
, MAY_WRITE
, &ad
);
491 * smack_inode_unlink - Smack check on inode deletion
492 * @dir: containing directory object
493 * @dentry: file to unlink
495 * Returns 0 if current can write the containing directory
496 * and the object, error code otherwise
498 static int smack_inode_unlink(struct inode
*dir
, struct dentry
*dentry
)
500 struct inode
*ip
= dentry
->d_inode
;
501 struct smk_audit_info ad
;
504 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
505 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
508 * You need write access to the thing you're unlinking
510 rc
= smk_curacc(smk_of_inode(ip
), MAY_WRITE
, &ad
);
513 * You also need write access to the containing directory
515 smk_ad_setfield_u_fs_path_dentry(&ad
, NULL
);
516 smk_ad_setfield_u_fs_inode(&ad
, dir
);
517 rc
= smk_curacc(smk_of_inode(dir
), MAY_WRITE
, &ad
);
523 * smack_inode_rmdir - Smack check on directory deletion
524 * @dir: containing directory object
525 * @dentry: directory to unlink
527 * Returns 0 if current can write the containing directory
528 * and the directory, error code otherwise
530 static int smack_inode_rmdir(struct inode
*dir
, struct dentry
*dentry
)
532 struct smk_audit_info ad
;
535 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
536 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
539 * You need write access to the thing you're removing
541 rc
= smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
, &ad
);
544 * You also need write access to the containing directory
546 smk_ad_setfield_u_fs_path_dentry(&ad
, NULL
);
547 smk_ad_setfield_u_fs_inode(&ad
, dir
);
548 rc
= smk_curacc(smk_of_inode(dir
), MAY_WRITE
, &ad
);
555 * smack_inode_rename - Smack check on rename
556 * @old_inode: the old directory
557 * @old_dentry: unused
558 * @new_inode: the new directory
559 * @new_dentry: unused
561 * Read and write access is required on both the old and
564 * Returns 0 if access is permitted, an error code otherwise
566 static int smack_inode_rename(struct inode
*old_inode
,
567 struct dentry
*old_dentry
,
568 struct inode
*new_inode
,
569 struct dentry
*new_dentry
)
573 struct smk_audit_info ad
;
575 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
576 smk_ad_setfield_u_fs_path_dentry(&ad
, old_dentry
);
578 isp
= smk_of_inode(old_dentry
->d_inode
);
579 rc
= smk_curacc(isp
, MAY_READWRITE
, &ad
);
581 if (rc
== 0 && new_dentry
->d_inode
!= NULL
) {
582 isp
= smk_of_inode(new_dentry
->d_inode
);
583 smk_ad_setfield_u_fs_path_dentry(&ad
, new_dentry
);
584 rc
= smk_curacc(isp
, MAY_READWRITE
, &ad
);
590 * smack_inode_permission - Smack version of permission()
591 * @inode: the inode in question
592 * @mask: the access requested
594 * This is the important Smack hook.
596 * Returns 0 if access is permitted, -EACCES otherwise
598 static int smack_inode_permission(struct inode
*inode
, int mask
)
600 struct smk_audit_info ad
;
602 mask
&= (MAY_READ
|MAY_WRITE
|MAY_EXEC
|MAY_APPEND
);
604 * No permission to check. Existence test. Yup, it's there.
608 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
609 smk_ad_setfield_u_fs_inode(&ad
, inode
);
610 return smk_curacc(smk_of_inode(inode
), mask
, &ad
);
614 * smack_inode_setattr - Smack check for setting attributes
615 * @dentry: the object
616 * @iattr: for the force flag
618 * Returns 0 if access is permitted, an error code otherwise
620 static int smack_inode_setattr(struct dentry
*dentry
, struct iattr
*iattr
)
622 struct smk_audit_info ad
;
624 * Need to allow for clearing the setuid bit.
626 if (iattr
->ia_valid
& ATTR_FORCE
)
628 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
629 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
631 return smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
, &ad
);
635 * smack_inode_getattr - Smack check for getting attributes
637 * @dentry: the object
639 * Returns 0 if access is permitted, an error code otherwise
641 static int smack_inode_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
)
643 struct smk_audit_info ad
;
645 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
646 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
647 smk_ad_setfield_u_fs_path_mnt(&ad
, mnt
);
648 return smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_READ
, &ad
);
652 * smack_inode_setxattr - Smack check for setting xattrs
653 * @dentry: the object
654 * @name: name of the attribute
659 * This protects the Smack attribute explicitly.
661 * Returns 0 if access is permitted, an error code otherwise
663 static int smack_inode_setxattr(struct dentry
*dentry
, const char *name
,
664 const void *value
, size_t size
, int flags
)
666 struct smk_audit_info ad
;
669 if (strcmp(name
, XATTR_NAME_SMACK
) == 0 ||
670 strcmp(name
, XATTR_NAME_SMACKIPIN
) == 0 ||
671 strcmp(name
, XATTR_NAME_SMACKIPOUT
) == 0) {
672 if (!capable(CAP_MAC_ADMIN
))
675 * check label validity here so import wont fail on
678 if (size
== 0 || size
>= SMK_LABELLEN
||
679 smk_import(value
, size
) == NULL
)
682 rc
= cap_inode_setxattr(dentry
, name
, value
, size
, flags
);
684 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
685 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
688 rc
= smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
, &ad
);
694 * smack_inode_post_setxattr - Apply the Smack update approved above
696 * @name: attribute name
697 * @value: attribute value
698 * @size: attribute size
701 * Set the pointer in the inode blob to the entry found
702 * in the master label list.
704 static void smack_inode_post_setxattr(struct dentry
*dentry
, const char *name
,
705 const void *value
, size_t size
, int flags
)
707 struct inode_smack
*isp
;
713 if (strcmp(name
, XATTR_NAME_SMACK
))
716 isp
= dentry
->d_inode
->i_security
;
719 * No locking is done here. This is a pointer
722 nsp
= smk_import(value
, size
);
724 isp
->smk_inode
= nsp
;
726 isp
->smk_inode
= smack_known_invalid
.smk_known
;
732 * smack_inode_getxattr - Smack check on getxattr
733 * @dentry: the object
736 * Returns 0 if access is permitted, an error code otherwise
738 static int smack_inode_getxattr(struct dentry
*dentry
, const char *name
)
740 struct smk_audit_info ad
;
742 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
743 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
745 return smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_READ
, &ad
);
749 * smack_inode_removexattr - Smack check on removexattr
750 * @dentry: the object
751 * @name: name of the attribute
753 * Removing the Smack attribute requires CAP_MAC_ADMIN
755 * Returns 0 if access is permitted, an error code otherwise
757 static int smack_inode_removexattr(struct dentry
*dentry
, const char *name
)
759 struct smk_audit_info ad
;
762 if (strcmp(name
, XATTR_NAME_SMACK
) == 0 ||
763 strcmp(name
, XATTR_NAME_SMACKIPIN
) == 0 ||
764 strcmp(name
, XATTR_NAME_SMACKIPOUT
) == 0) {
765 if (!capable(CAP_MAC_ADMIN
))
768 rc
= cap_inode_removexattr(dentry
, name
);
770 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
771 smk_ad_setfield_u_fs_path_dentry(&ad
, dentry
);
773 rc
= smk_curacc(smk_of_inode(dentry
->d_inode
), MAY_WRITE
, &ad
);
779 * smack_inode_getsecurity - get smack xattrs
781 * @name: attribute name
782 * @buffer: where to put the result
785 * Returns the size of the attribute or an error code
787 static int smack_inode_getsecurity(const struct inode
*inode
,
788 const char *name
, void **buffer
,
791 struct socket_smack
*ssp
;
793 struct super_block
*sbp
;
794 struct inode
*ip
= (struct inode
*)inode
;
799 if (strcmp(name
, XATTR_SMACK_SUFFIX
) == 0) {
800 isp
= smk_of_inode(inode
);
801 ilen
= strlen(isp
) + 1;
807 * The rest of the Smack xattrs are only on sockets.
810 if (sbp
->s_magic
!= SOCKFS_MAGIC
)
814 if (sock
== NULL
|| sock
->sk
== NULL
)
817 ssp
= sock
->sk
->sk_security
;
819 if (strcmp(name
, XATTR_SMACK_IPIN
) == 0)
821 else if (strcmp(name
, XATTR_SMACK_IPOUT
) == 0)
826 ilen
= strlen(isp
) + 1;
837 * smack_inode_listsecurity - list the Smack attributes
839 * @buffer: where they go
840 * @buffer_size: size of buffer
842 * Returns 0 on success, -EINVAL otherwise
844 static int smack_inode_listsecurity(struct inode
*inode
, char *buffer
,
847 int len
= strlen(XATTR_NAME_SMACK
);
849 if (buffer
!= NULL
&& len
<= buffer_size
) {
850 memcpy(buffer
, XATTR_NAME_SMACK
, len
);
857 * smack_inode_getsecid - Extract inode's security id
858 * @inode: inode to extract the info from
859 * @secid: where result will be saved
861 static void smack_inode_getsecid(const struct inode
*inode
, u32
*secid
)
863 struct inode_smack
*isp
= inode
->i_security
;
865 *secid
= smack_to_secid(isp
->smk_inode
);
873 * smack_file_permission - Smack check on file operations
879 * Should access checks be done on each read or write?
880 * UNICOS and SELinux say yes.
881 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
883 * I'll say no for now. Smack does not do the frequent
884 * label changing that SELinux does.
886 static int smack_file_permission(struct file
*file
, int mask
)
892 * smack_file_alloc_security - assign a file security blob
895 * The security blob for a file is a pointer to the master
896 * label list, so no allocation is done.
900 static int smack_file_alloc_security(struct file
*file
)
902 file
->f_security
= current_security();
907 * smack_file_free_security - clear a file security blob
910 * The security blob for a file is a pointer to the master
911 * label list, so no memory is freed.
913 static void smack_file_free_security(struct file
*file
)
915 file
->f_security
= NULL
;
919 * smack_file_ioctl - Smack check on ioctls
924 * Relies heavily on the correct use of the ioctl command conventions.
926 * Returns 0 if allowed, error code otherwise
928 static int smack_file_ioctl(struct file
*file
, unsigned int cmd
,
932 struct smk_audit_info ad
;
934 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
935 smk_ad_setfield_u_fs_path(&ad
, file
->f_path
);
937 if (_IOC_DIR(cmd
) & _IOC_WRITE
)
938 rc
= smk_curacc(file
->f_security
, MAY_WRITE
, &ad
);
940 if (rc
== 0 && (_IOC_DIR(cmd
) & _IOC_READ
))
941 rc
= smk_curacc(file
->f_security
, MAY_READ
, &ad
);
947 * smack_file_lock - Smack check on file locking
951 * Returns 0 if current has write access, error code otherwise
953 static int smack_file_lock(struct file
*file
, unsigned int cmd
)
955 struct smk_audit_info ad
;
957 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
958 smk_ad_setfield_u_fs_path_dentry(&ad
, file
->f_path
.dentry
);
959 return smk_curacc(file
->f_security
, MAY_WRITE
, &ad
);
963 * smack_file_fcntl - Smack check on fcntl
965 * @cmd: what action to check
968 * Returns 0 if current has access, error code otherwise
970 static int smack_file_fcntl(struct file
*file
, unsigned int cmd
,
973 struct smk_audit_info ad
;
976 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_FS
);
977 smk_ad_setfield_u_fs_path(&ad
, file
->f_path
);
986 rc
= smk_curacc(file
->f_security
, MAY_READ
, &ad
);
994 rc
= smk_curacc(file
->f_security
, MAY_WRITE
, &ad
);
997 rc
= smk_curacc(file
->f_security
, MAY_READWRITE
, &ad
);
1004 * smack_file_set_fowner - set the file security blob value
1005 * @file: object in question
1008 * Further research may be required on this one.
1010 static int smack_file_set_fowner(struct file
*file
)
1012 file
->f_security
= current_security();
1017 * smack_file_send_sigiotask - Smack on sigio
1018 * @tsk: The target task
1019 * @fown: the object the signal come from
1022 * Allow a privileged task to get signals even if it shouldn't
1024 * Returns 0 if a subject with the object's smack could
1025 * write to the task, an error code otherwise.
1027 static int smack_file_send_sigiotask(struct task_struct
*tsk
,
1028 struct fown_struct
*fown
, int signum
)
1032 char *tsp
= tsk
->cred
->security
;
1033 struct smk_audit_info ad
;
1036 * struct fown_struct is never outside the context of a struct file
1038 file
= container_of(fown
, struct file
, f_owner
);
1039 /* we don't log here as rc can be overriden */
1040 rc
= smk_access(file
->f_security
, tsp
, MAY_WRITE
, NULL
);
1041 if (rc
!= 0 && has_capability(tsk
, CAP_MAC_OVERRIDE
))
1044 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_TASK
);
1045 smk_ad_setfield_u_tsk(&ad
, tsk
);
1046 smack_log(file
->f_security
, tsp
, MAY_WRITE
, rc
, &ad
);
1051 * smack_file_receive - Smack file receive check
1054 * Returns 0 if current has access, error code otherwise
1056 static int smack_file_receive(struct file
*file
)
1059 struct smk_audit_info ad
;
1061 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_TASK
);
1062 smk_ad_setfield_u_fs_path(&ad
, file
->f_path
);
1064 * This code relies on bitmasks.
1066 if (file
->f_mode
& FMODE_READ
)
1068 if (file
->f_mode
& FMODE_WRITE
)
1071 return smk_curacc(file
->f_security
, may
, &ad
);
1079 * smack_cred_alloc_blank - "allocate" blank task-level security credentials
1080 * @new: the new credentials
1081 * @gfp: the atomicity of any memory allocations
1083 * Prepare a blank set of credentials for modification. This must allocate all
1084 * the memory the LSM module might require such that cred_transfer() can
1085 * complete without error.
1087 static int smack_cred_alloc_blank(struct cred
*cred
, gfp_t gfp
)
1089 cred
->security
= NULL
;
1095 * smack_cred_free - "free" task-level security credentials
1096 * @cred: the credentials in question
1098 * Smack isn't using copies of blobs. Everyone
1099 * points to an immutable list. The blobs never go away.
1100 * There is no leak here.
1102 static void smack_cred_free(struct cred
*cred
)
1104 cred
->security
= NULL
;
1108 * smack_cred_prepare - prepare new set of credentials for modification
1109 * @new: the new credentials
1110 * @old: the original credentials
1111 * @gfp: the atomicity of any memory allocations
1113 * Prepare a new set of credentials for modification.
1115 static int smack_cred_prepare(struct cred
*new, const struct cred
*old
,
1118 new->security
= old
->security
;
1123 * smack_cred_transfer - Transfer the old credentials to the new credentials
1124 * @new: the new credentials
1125 * @old: the original credentials
1127 * Fill in a set of blank credentials from another set of credentials.
1129 static void smack_cred_transfer(struct cred
*new, const struct cred
*old
)
1131 new->security
= old
->security
;
1135 * smack_kernel_act_as - Set the subjective context in a set of credentials
1136 * @new: points to the set of credentials to be modified.
1137 * @secid: specifies the security ID to be set
1139 * Set the security data for a kernel service.
1141 static int smack_kernel_act_as(struct cred
*new, u32 secid
)
1143 char *smack
= smack_from_secid(secid
);
1148 new->security
= smack
;
1153 * smack_kernel_create_files_as - Set the file creation label in a set of creds
1154 * @new: points to the set of credentials to be modified
1155 * @inode: points to the inode to use as a reference
1157 * Set the file creation context in a set of credentials to the same
1158 * as the objective context of the specified inode
1160 static int smack_kernel_create_files_as(struct cred
*new,
1161 struct inode
*inode
)
1163 struct inode_smack
*isp
= inode
->i_security
;
1165 new->security
= isp
->smk_inode
;
1170 * smk_curacc_on_task - helper to log task related access
1171 * @p: the task object
1172 * @access : the access requested
1174 * Return 0 if access is permitted
1176 static int smk_curacc_on_task(struct task_struct
*p
, int access
)
1178 struct smk_audit_info ad
;
1180 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_TASK
);
1181 smk_ad_setfield_u_tsk(&ad
, p
);
1182 return smk_curacc(task_security(p
), access
, &ad
);
1186 * smack_task_setpgid - Smack check on setting pgid
1187 * @p: the task object
1190 * Return 0 if write access is permitted
1192 static int smack_task_setpgid(struct task_struct
*p
, pid_t pgid
)
1194 return smk_curacc_on_task(p
, MAY_WRITE
);
1198 * smack_task_getpgid - Smack access check for getpgid
1199 * @p: the object task
1201 * Returns 0 if current can read the object task, error code otherwise
1203 static int smack_task_getpgid(struct task_struct
*p
)
1205 return smk_curacc_on_task(p
, MAY_READ
);
1209 * smack_task_getsid - Smack access check for getsid
1210 * @p: the object task
1212 * Returns 0 if current can read the object task, error code otherwise
1214 static int smack_task_getsid(struct task_struct
*p
)
1216 return smk_curacc_on_task(p
, MAY_READ
);
1220 * smack_task_getsecid - get the secid of the task
1221 * @p: the object task
1222 * @secid: where to put the result
1224 * Sets the secid to contain a u32 version of the smack label.
1226 static void smack_task_getsecid(struct task_struct
*p
, u32
*secid
)
1228 *secid
= smack_to_secid(task_security(p
));
1232 * smack_task_setnice - Smack check on setting nice
1233 * @p: the task object
1236 * Return 0 if write access is permitted
1238 static int smack_task_setnice(struct task_struct
*p
, int nice
)
1242 rc
= cap_task_setnice(p
, nice
);
1244 rc
= smk_curacc_on_task(p
, MAY_WRITE
);
1249 * smack_task_setioprio - Smack check on setting ioprio
1250 * @p: the task object
1253 * Return 0 if write access is permitted
1255 static int smack_task_setioprio(struct task_struct
*p
, int ioprio
)
1259 rc
= cap_task_setioprio(p
, ioprio
);
1261 rc
= smk_curacc_on_task(p
, MAY_WRITE
);
1266 * smack_task_getioprio - Smack check on reading ioprio
1267 * @p: the task object
1269 * Return 0 if read access is permitted
1271 static int smack_task_getioprio(struct task_struct
*p
)
1273 return smk_curacc_on_task(p
, MAY_READ
);
1277 * smack_task_setscheduler - Smack check on setting scheduler
1278 * @p: the task object
1282 * Return 0 if read access is permitted
1284 static int smack_task_setscheduler(struct task_struct
*p
, int policy
,
1285 struct sched_param
*lp
)
1289 rc
= cap_task_setscheduler(p
, policy
, lp
);
1291 rc
= smk_curacc_on_task(p
, MAY_WRITE
);
1296 * smack_task_getscheduler - Smack check on reading scheduler
1297 * @p: the task object
1299 * Return 0 if read access is permitted
1301 static int smack_task_getscheduler(struct task_struct
*p
)
1303 return smk_curacc_on_task(p
, MAY_READ
);
1307 * smack_task_movememory - Smack check on moving memory
1308 * @p: the task object
1310 * Return 0 if write access is permitted
1312 static int smack_task_movememory(struct task_struct
*p
)
1314 return smk_curacc_on_task(p
, MAY_WRITE
);
1318 * smack_task_kill - Smack check on signal delivery
1319 * @p: the task object
1322 * @secid: identifies the smack to use in lieu of current's
1324 * Return 0 if write access is permitted
1326 * The secid behavior is an artifact of an SELinux hack
1327 * in the USB code. Someday it may go away.
1329 static int smack_task_kill(struct task_struct
*p
, struct siginfo
*info
,
1332 struct smk_audit_info ad
;
1334 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_TASK
);
1335 smk_ad_setfield_u_tsk(&ad
, p
);
1337 * Sending a signal requires that the sender
1338 * can write the receiver.
1341 return smk_curacc(task_security(p
), MAY_WRITE
, &ad
);
1343 * If the secid isn't 0 we're dealing with some USB IO
1344 * specific behavior. This is not clean. For one thing
1345 * we can't take privilege into account.
1347 return smk_access(smack_from_secid(secid
), task_security(p
),
1352 * smack_task_wait - Smack access check for waiting
1353 * @p: task to wait for
1355 * Returns 0 if current can wait for p, error code otherwise
1357 static int smack_task_wait(struct task_struct
*p
)
1359 struct smk_audit_info ad
;
1360 char *sp
= current_security();
1361 char *tsp
= task_security(p
);
1364 /* we don't log here, we can be overriden */
1365 rc
= smk_access(sp
, tsp
, MAY_WRITE
, NULL
);
1370 * Allow the operation to succeed if either task
1371 * has privilege to perform operations that might
1372 * account for the smack labels having gotten to
1373 * be different in the first place.
1375 * This breaks the strict subject/object access
1376 * control ideal, taking the object's privilege
1377 * state into account in the decision as well as
1380 if (capable(CAP_MAC_OVERRIDE
) || has_capability(p
, CAP_MAC_OVERRIDE
))
1382 /* we log only if we didn't get overriden */
1384 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_TASK
);
1385 smk_ad_setfield_u_tsk(&ad
, p
);
1386 smack_log(sp
, tsp
, MAY_WRITE
, rc
, &ad
);
1391 * smack_task_to_inode - copy task smack into the inode blob
1392 * @p: task to copy from
1393 * @inode: inode to copy to
1395 * Sets the smack pointer in the inode security blob
1397 static void smack_task_to_inode(struct task_struct
*p
, struct inode
*inode
)
1399 struct inode_smack
*isp
= inode
->i_security
;
1400 isp
->smk_inode
= task_security(p
);
1408 * smack_sk_alloc_security - Allocate a socket blob
1411 * @gfp_flags: memory allocation flags
1413 * Assign Smack pointers to current
1415 * Returns 0 on success, -ENOMEM is there's no memory
1417 static int smack_sk_alloc_security(struct sock
*sk
, int family
, gfp_t gfp_flags
)
1419 char *csp
= current_security();
1420 struct socket_smack
*ssp
;
1422 ssp
= kzalloc(sizeof(struct socket_smack
), gfp_flags
);
1428 ssp
->smk_packet
[0] = '\0';
1430 sk
->sk_security
= ssp
;
1436 * smack_sk_free_security - Free a socket blob
1439 * Clears the blob pointer
1441 static void smack_sk_free_security(struct sock
*sk
)
1443 kfree(sk
->sk_security
);
1447 * smack_host_label - check host based restrictions
1448 * @sip: the object end
1450 * looks for host based access restrictions
1452 * This version will only be appropriate for really small sets of single label
1453 * hosts. The caller is responsible for ensuring that the RCU read lock is
1454 * taken before calling this function.
1456 * Returns the label of the far end or NULL if it's not special.
1458 static char *smack_host_label(struct sockaddr_in
*sip
)
1460 struct smk_netlbladdr
*snp
;
1461 struct in_addr
*siap
= &sip
->sin_addr
;
1463 if (siap
->s_addr
== 0)
1466 list_for_each_entry_rcu(snp
, &smk_netlbladdr_list
, list
)
1468 * we break after finding the first match because
1469 * the list is sorted from longest to shortest mask
1470 * so we have found the most specific match
1472 if ((&snp
->smk_host
.sin_addr
)->s_addr
==
1473 (siap
->s_addr
& (&snp
->smk_mask
)->s_addr
)) {
1474 /* we have found the special CIPSO option */
1475 if (snp
->smk_label
== smack_cipso_option
)
1477 return snp
->smk_label
;
1484 * smack_set_catset - convert a capset to netlabel mls categories
1485 * @catset: the Smack categories
1486 * @sap: where to put the netlabel categories
1488 * Allocates and fills attr.mls.cat
1490 static void smack_set_catset(char *catset
, struct netlbl_lsm_secattr
*sap
)
1501 sap
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1502 sap
->attr
.mls
.cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1503 sap
->attr
.mls
.cat
->startbit
= 0;
1505 for (cat
= 1, cp
= catset
, byte
= 0; byte
< SMK_LABELLEN
; cp
++, byte
++)
1506 for (m
= 0x80; m
!= 0; m
>>= 1, cat
++) {
1509 rc
= netlbl_secattr_catmap_setbit(sap
->attr
.mls
.cat
,
1515 * smack_to_secattr - fill a secattr from a smack value
1516 * @smack: the smack value
1517 * @nlsp: where the result goes
1519 * Casey says that CIPSO is good enough for now.
1520 * It can be used to effect.
1521 * It can also be abused to effect when necessary.
1522 * Appologies to the TSIG group in general and GW in particular.
1524 static void smack_to_secattr(char *smack
, struct netlbl_lsm_secattr
*nlsp
)
1526 struct smack_cipso cipso
;
1529 nlsp
->domain
= smack
;
1530 nlsp
->flags
= NETLBL_SECATTR_DOMAIN
| NETLBL_SECATTR_MLS_LVL
;
1532 rc
= smack_to_cipso(smack
, &cipso
);
1534 nlsp
->attr
.mls
.lvl
= cipso
.smk_level
;
1535 smack_set_catset(cipso
.smk_catset
, nlsp
);
1537 nlsp
->attr
.mls
.lvl
= smack_cipso_direct
;
1538 smack_set_catset(smack
, nlsp
);
1543 * smack_netlabel - Set the secattr on a socket
1545 * @labeled: socket label scheme
1547 * Convert the outbound smack value (smk_out) to a
1548 * secattr and attach it to the socket.
1550 * Returns 0 on success or an error code
1552 static int smack_netlabel(struct sock
*sk
, int labeled
)
1554 struct socket_smack
*ssp
= sk
->sk_security
;
1555 struct netlbl_lsm_secattr secattr
;
1559 * Usually the netlabel code will handle changing the
1560 * packet labeling based on the label.
1561 * The case of a single label host is different, because
1562 * a single label host should never get a labeled packet
1563 * even though the label is usually associated with a packet
1567 bh_lock_sock_nested(sk
);
1569 if (ssp
->smk_out
== smack_net_ambient
||
1570 labeled
== SMACK_UNLABELED_SOCKET
)
1571 netlbl_sock_delattr(sk
);
1573 netlbl_secattr_init(&secattr
);
1574 smack_to_secattr(ssp
->smk_out
, &secattr
);
1575 rc
= netlbl_sock_setattr(sk
, sk
->sk_family
, &secattr
);
1576 netlbl_secattr_destroy(&secattr
);
1586 * smack_netlbel_send - Set the secattr on a socket and perform access checks
1588 * @sap: the destination address
1590 * Set the correct secattr for the given socket based on the destination
1591 * address and perform any outbound access checks needed.
1593 * Returns 0 on success or an error code.
1596 static int smack_netlabel_send(struct sock
*sk
, struct sockaddr_in
*sap
)
1601 struct socket_smack
*ssp
= sk
->sk_security
;
1602 struct smk_audit_info ad
;
1605 hostsp
= smack_host_label(sap
);
1606 if (hostsp
!= NULL
) {
1607 sk_lbl
= SMACK_UNLABELED_SOCKET
;
1609 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_NET
);
1610 ad
.a
.u
.net
.family
= sap
->sin_family
;
1611 ad
.a
.u
.net
.dport
= sap
->sin_port
;
1612 ad
.a
.u
.net
.v4info
.daddr
= sap
->sin_addr
.s_addr
;
1614 rc
= smk_access(ssp
->smk_out
, hostsp
, MAY_WRITE
, &ad
);
1616 sk_lbl
= SMACK_CIPSO_SOCKET
;
1623 return smack_netlabel(sk
, sk_lbl
);
1627 * smack_inode_setsecurity - set smack xattrs
1628 * @inode: the object
1629 * @name: attribute name
1630 * @value: attribute value
1631 * @size: size of the attribute
1634 * Sets the named attribute in the appropriate blob
1636 * Returns 0 on success, or an error code
1638 static int smack_inode_setsecurity(struct inode
*inode
, const char *name
,
1639 const void *value
, size_t size
, int flags
)
1642 struct inode_smack
*nsp
= inode
->i_security
;
1643 struct socket_smack
*ssp
;
1644 struct socket
*sock
;
1647 if (value
== NULL
|| size
> SMK_LABELLEN
|| size
== 0)
1650 sp
= smk_import(value
, size
);
1654 if (strcmp(name
, XATTR_SMACK_SUFFIX
) == 0) {
1655 nsp
->smk_inode
= sp
;
1656 nsp
->smk_flags
|= SMK_INODE_INSTANT
;
1660 * The rest of the Smack xattrs are only on sockets.
1662 if (inode
->i_sb
->s_magic
!= SOCKFS_MAGIC
)
1665 sock
= SOCKET_I(inode
);
1666 if (sock
== NULL
|| sock
->sk
== NULL
)
1669 ssp
= sock
->sk
->sk_security
;
1671 if (strcmp(name
, XATTR_SMACK_IPIN
) == 0)
1673 else if (strcmp(name
, XATTR_SMACK_IPOUT
) == 0) {
1675 rc
= smack_netlabel(sock
->sk
, SMACK_CIPSO_SOCKET
);
1677 printk(KERN_WARNING
"Smack: \"%s\" netlbl error %d.\n",
1686 * smack_socket_post_create - finish socket setup
1688 * @family: protocol family
1693 * Sets the netlabel information on the socket
1695 * Returns 0 on success, and error code otherwise
1697 static int smack_socket_post_create(struct socket
*sock
, int family
,
1698 int type
, int protocol
, int kern
)
1700 if (family
!= PF_INET
|| sock
->sk
== NULL
)
1703 * Set the outbound netlbl.
1705 return smack_netlabel(sock
->sk
, SMACK_CIPSO_SOCKET
);
1709 * smack_socket_connect - connect access check
1711 * @sap: the other end
1712 * @addrlen: size of sap
1714 * Verifies that a connection may be possible
1716 * Returns 0 on success, and error code otherwise
1718 static int smack_socket_connect(struct socket
*sock
, struct sockaddr
*sap
,
1721 if (sock
->sk
== NULL
|| sock
->sk
->sk_family
!= PF_INET
)
1723 if (addrlen
< sizeof(struct sockaddr_in
))
1726 return smack_netlabel_send(sock
->sk
, (struct sockaddr_in
*)sap
);
1730 * smack_flags_to_may - convert S_ to MAY_ values
1731 * @flags: the S_ value
1733 * Returns the equivalent MAY_ value
1735 static int smack_flags_to_may(int flags
)
1739 if (flags
& S_IRUGO
)
1741 if (flags
& S_IWUGO
)
1743 if (flags
& S_IXUGO
)
1750 * smack_msg_msg_alloc_security - Set the security blob for msg_msg
1755 static int smack_msg_msg_alloc_security(struct msg_msg
*msg
)
1757 msg
->security
= current_security();
1762 * smack_msg_msg_free_security - Clear the security blob for msg_msg
1765 * Clears the blob pointer
1767 static void smack_msg_msg_free_security(struct msg_msg
*msg
)
1769 msg
->security
= NULL
;
1773 * smack_of_shm - the smack pointer for the shm
1776 * Returns a pointer to the smack value
1778 static char *smack_of_shm(struct shmid_kernel
*shp
)
1780 return (char *)shp
->shm_perm
.security
;
1784 * smack_shm_alloc_security - Set the security blob for shm
1789 static int smack_shm_alloc_security(struct shmid_kernel
*shp
)
1791 struct kern_ipc_perm
*isp
= &shp
->shm_perm
;
1793 isp
->security
= current_security();
1798 * smack_shm_free_security - Clear the security blob for shm
1801 * Clears the blob pointer
1803 static void smack_shm_free_security(struct shmid_kernel
*shp
)
1805 struct kern_ipc_perm
*isp
= &shp
->shm_perm
;
1807 isp
->security
= NULL
;
1811 * smk_curacc_shm : check if current has access on shm
1813 * @access : access requested
1815 * Returns 0 if current has the requested access, error code otherwise
1817 static int smk_curacc_shm(struct shmid_kernel
*shp
, int access
)
1819 char *ssp
= smack_of_shm(shp
);
1820 struct smk_audit_info ad
;
1823 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_IPC
);
1824 ad
.a
.u
.ipc_id
= shp
->shm_perm
.id
;
1826 return smk_curacc(ssp
, access
, &ad
);
1830 * smack_shm_associate - Smack access check for shm
1832 * @shmflg: access requested
1834 * Returns 0 if current has the requested access, error code otherwise
1836 static int smack_shm_associate(struct shmid_kernel
*shp
, int shmflg
)
1840 may
= smack_flags_to_may(shmflg
);
1841 return smk_curacc_shm(shp
, may
);
1845 * smack_shm_shmctl - Smack access check for shm
1847 * @cmd: what it wants to do
1849 * Returns 0 if current has the requested access, error code otherwise
1851 static int smack_shm_shmctl(struct shmid_kernel
*shp
, int cmd
)
1864 may
= MAY_READWRITE
;
1869 * System level information.
1875 return smk_curacc_shm(shp
, may
);
1879 * smack_shm_shmat - Smack access for shmat
1882 * @shmflg: access requested
1884 * Returns 0 if current has the requested access, error code otherwise
1886 static int smack_shm_shmat(struct shmid_kernel
*shp
, char __user
*shmaddr
,
1891 may
= smack_flags_to_may(shmflg
);
1892 return smk_curacc_shm(shp
, may
);
1896 * smack_of_sem - the smack pointer for the sem
1899 * Returns a pointer to the smack value
1901 static char *smack_of_sem(struct sem_array
*sma
)
1903 return (char *)sma
->sem_perm
.security
;
1907 * smack_sem_alloc_security - Set the security blob for sem
1912 static int smack_sem_alloc_security(struct sem_array
*sma
)
1914 struct kern_ipc_perm
*isp
= &sma
->sem_perm
;
1916 isp
->security
= current_security();
1921 * smack_sem_free_security - Clear the security blob for sem
1924 * Clears the blob pointer
1926 static void smack_sem_free_security(struct sem_array
*sma
)
1928 struct kern_ipc_perm
*isp
= &sma
->sem_perm
;
1930 isp
->security
= NULL
;
1934 * smk_curacc_sem : check if current has access on sem
1936 * @access : access requested
1938 * Returns 0 if current has the requested access, error code otherwise
1940 static int smk_curacc_sem(struct sem_array
*sma
, int access
)
1942 char *ssp
= smack_of_sem(sma
);
1943 struct smk_audit_info ad
;
1946 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_IPC
);
1947 ad
.a
.u
.ipc_id
= sma
->sem_perm
.id
;
1949 return smk_curacc(ssp
, access
, &ad
);
1953 * smack_sem_associate - Smack access check for sem
1955 * @semflg: access requested
1957 * Returns 0 if current has the requested access, error code otherwise
1959 static int smack_sem_associate(struct sem_array
*sma
, int semflg
)
1963 may
= smack_flags_to_may(semflg
);
1964 return smk_curacc_sem(sma
, may
);
1968 * smack_sem_shmctl - Smack access check for sem
1970 * @cmd: what it wants to do
1972 * Returns 0 if current has the requested access, error code otherwise
1974 static int smack_sem_semctl(struct sem_array
*sma
, int cmd
)
1992 may
= MAY_READWRITE
;
1997 * System level information
2004 return smk_curacc_sem(sma
, may
);
2008 * smack_sem_semop - Smack checks of semaphore operations
2014 * Treated as read and write in all cases.
2016 * Returns 0 if access is allowed, error code otherwise
2018 static int smack_sem_semop(struct sem_array
*sma
, struct sembuf
*sops
,
2019 unsigned nsops
, int alter
)
2021 return smk_curacc_sem(sma
, MAY_READWRITE
);
2025 * smack_msg_alloc_security - Set the security blob for msg
2030 static int smack_msg_queue_alloc_security(struct msg_queue
*msq
)
2032 struct kern_ipc_perm
*kisp
= &msq
->q_perm
;
2034 kisp
->security
= current_security();
2039 * smack_msg_free_security - Clear the security blob for msg
2042 * Clears the blob pointer
2044 static void smack_msg_queue_free_security(struct msg_queue
*msq
)
2046 struct kern_ipc_perm
*kisp
= &msq
->q_perm
;
2048 kisp
->security
= NULL
;
2052 * smack_of_msq - the smack pointer for the msq
2055 * Returns a pointer to the smack value
2057 static char *smack_of_msq(struct msg_queue
*msq
)
2059 return (char *)msq
->q_perm
.security
;
2063 * smk_curacc_msq : helper to check if current has access on msq
2065 * @access : access requested
2067 * return 0 if current has access, error otherwise
2069 static int smk_curacc_msq(struct msg_queue
*msq
, int access
)
2071 char *msp
= smack_of_msq(msq
);
2072 struct smk_audit_info ad
;
2075 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_IPC
);
2076 ad
.a
.u
.ipc_id
= msq
->q_perm
.id
;
2078 return smk_curacc(msp
, access
, &ad
);
2082 * smack_msg_queue_associate - Smack access check for msg_queue
2084 * @msqflg: access requested
2086 * Returns 0 if current has the requested access, error code otherwise
2088 static int smack_msg_queue_associate(struct msg_queue
*msq
, int msqflg
)
2092 may
= smack_flags_to_may(msqflg
);
2093 return smk_curacc_msq(msq
, may
);
2097 * smack_msg_queue_msgctl - Smack access check for msg_queue
2099 * @cmd: what it wants to do
2101 * Returns 0 if current has the requested access, error code otherwise
2103 static int smack_msg_queue_msgctl(struct msg_queue
*msq
, int cmd
)
2114 may
= MAY_READWRITE
;
2119 * System level information
2126 return smk_curacc_msq(msq
, may
);
2130 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2133 * @msqflg: access requested
2135 * Returns 0 if current has the requested access, error code otherwise
2137 static int smack_msg_queue_msgsnd(struct msg_queue
*msq
, struct msg_msg
*msg
,
2142 may
= smack_flags_to_may(msqflg
);
2143 return smk_curacc_msq(msq
, may
);
2147 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2154 * Returns 0 if current has read and write access, error code otherwise
2156 static int smack_msg_queue_msgrcv(struct msg_queue
*msq
, struct msg_msg
*msg
,
2157 struct task_struct
*target
, long type
, int mode
)
2159 return smk_curacc_msq(msq
, MAY_READWRITE
);
2163 * smack_ipc_permission - Smack access for ipc_permission()
2164 * @ipp: the object permissions
2165 * @flag: access requested
2167 * Returns 0 if current has read and write access, error code otherwise
2169 static int smack_ipc_permission(struct kern_ipc_perm
*ipp
, short flag
)
2171 char *isp
= ipp
->security
;
2172 int may
= smack_flags_to_may(flag
);
2173 struct smk_audit_info ad
;
2176 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_IPC
);
2177 ad
.a
.u
.ipc_id
= ipp
->id
;
2179 return smk_curacc(isp
, may
, &ad
);
2183 * smack_ipc_getsecid - Extract smack security id
2184 * @ipp: the object permissions
2185 * @secid: where result will be saved
2187 static void smack_ipc_getsecid(struct kern_ipc_perm
*ipp
, u32
*secid
)
2189 char *smack
= ipp
->security
;
2191 *secid
= smack_to_secid(smack
);
2195 * smack_d_instantiate - Make sure the blob is correct on an inode
2196 * @opt_dentry: dentry where inode will be attached
2197 * @inode: the object
2199 * Set the inode's security blob if it hasn't been done already.
2201 static void smack_d_instantiate(struct dentry
*opt_dentry
, struct inode
*inode
)
2203 struct super_block
*sbp
;
2204 struct superblock_smack
*sbsp
;
2205 struct inode_smack
*isp
;
2206 char *csp
= current_security();
2214 isp
= inode
->i_security
;
2216 mutex_lock(&isp
->smk_lock
);
2218 * If the inode is already instantiated
2219 * take the quick way out
2221 if (isp
->smk_flags
& SMK_INODE_INSTANT
)
2225 sbsp
= sbp
->s_security
;
2227 * We're going to use the superblock default label
2228 * if there's no label on the file.
2230 final
= sbsp
->smk_default
;
2233 * If this is the root inode the superblock
2234 * may be in the process of initialization.
2235 * If that is the case use the root value out
2236 * of the superblock.
2238 if (opt_dentry
->d_parent
== opt_dentry
) {
2239 isp
->smk_inode
= sbsp
->smk_root
;
2240 isp
->smk_flags
|= SMK_INODE_INSTANT
;
2245 * This is pretty hackish.
2246 * Casey says that we shouldn't have to do
2247 * file system specific code, but it does help
2248 * with keeping it simple.
2250 switch (sbp
->s_magic
) {
2253 * Casey says that it's a little embarassing
2254 * that the smack file system doesn't do
2255 * extended attributes.
2257 final
= smack_known_star
.smk_known
;
2261 * Casey says pipes are easy (?)
2263 final
= smack_known_star
.smk_known
;
2265 case DEVPTS_SUPER_MAGIC
:
2267 * devpts seems content with the label of the task.
2268 * Programs that change smack have to treat the
2275 * Casey says sockets get the smack of the task.
2279 case PROC_SUPER_MAGIC
:
2281 * Casey says procfs appears not to care.
2282 * The superblock default suffices.
2287 * Device labels should come from the filesystem,
2288 * but watch out, because they're volitile,
2289 * getting recreated on every reboot.
2291 final
= smack_known_star
.smk_known
;
2295 * If a smack value has been set we want to use it,
2296 * but since tmpfs isn't giving us the opportunity
2297 * to set mount options simulate setting the
2298 * superblock default.
2302 * This isn't an understood special case.
2303 * Get the value from the xattr.
2305 * No xattr support means, alas, no SMACK label.
2306 * Use the aforeapplied default.
2307 * It would be curious if the label of the task
2308 * does not match that assigned.
2310 if (inode
->i_op
->getxattr
== NULL
)
2313 * Get the dentry for xattr.
2315 dp
= dget(opt_dentry
);
2316 fetched
= smk_fetch(inode
, dp
);
2317 if (fetched
!= NULL
)
2324 isp
->smk_inode
= csp
;
2326 isp
->smk_inode
= final
;
2328 isp
->smk_flags
|= SMK_INODE_INSTANT
;
2331 mutex_unlock(&isp
->smk_lock
);
2336 * smack_getprocattr - Smack process attribute access
2337 * @p: the object task
2338 * @name: the name of the attribute in /proc/.../attr
2339 * @value: where to put the result
2341 * Places a copy of the task Smack into value
2343 * Returns the length of the smack label or an error code
2345 static int smack_getprocattr(struct task_struct
*p
, char *name
, char **value
)
2350 if (strcmp(name
, "current") != 0)
2353 cp
= kstrdup(task_security(p
), GFP_KERNEL
);
2363 * smack_setprocattr - Smack process attribute setting
2364 * @p: the object task
2365 * @name: the name of the attribute in /proc/.../attr
2366 * @value: the value to set
2367 * @size: the size of the value
2369 * Sets the Smack value of the task. Only setting self
2370 * is permitted and only with privilege
2372 * Returns the length of the smack label or an error code
2374 static int smack_setprocattr(struct task_struct
*p
, char *name
,
2375 void *value
, size_t size
)
2381 * Changing another process' Smack value is too dangerous
2382 * and supports no sane use case.
2387 if (!capable(CAP_MAC_ADMIN
))
2390 if (value
== NULL
|| size
== 0 || size
>= SMK_LABELLEN
)
2393 if (strcmp(name
, "current") != 0)
2396 newsmack
= smk_import(value
, size
);
2397 if (newsmack
== NULL
)
2401 * No process is ever allowed the web ("@") label.
2403 if (newsmack
== smack_known_web
.smk_known
)
2406 new = prepare_creds();
2409 new->security
= newsmack
;
2415 * smack_unix_stream_connect - Smack access on UDS
2417 * @other: the other socket
2420 * Return 0 if a subject with the smack of sock could access
2421 * an object with the smack of other, otherwise an error code
2423 static int smack_unix_stream_connect(struct socket
*sock
,
2424 struct socket
*other
, struct sock
*newsk
)
2426 struct inode
*sp
= SOCK_INODE(sock
);
2427 struct inode
*op
= SOCK_INODE(other
);
2428 struct smk_audit_info ad
;
2430 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_NET
);
2431 smk_ad_setfield_u_net_sk(&ad
, other
->sk
);
2432 return smk_access(smk_of_inode(sp
), smk_of_inode(op
),
2433 MAY_READWRITE
, &ad
);
2437 * smack_unix_may_send - Smack access on UDS
2439 * @other: the other socket
2441 * Return 0 if a subject with the smack of sock could access
2442 * an object with the smack of other, otherwise an error code
2444 static int smack_unix_may_send(struct socket
*sock
, struct socket
*other
)
2446 struct inode
*sp
= SOCK_INODE(sock
);
2447 struct inode
*op
= SOCK_INODE(other
);
2448 struct smk_audit_info ad
;
2450 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_NET
);
2451 smk_ad_setfield_u_net_sk(&ad
, other
->sk
);
2452 return smk_access(smk_of_inode(sp
), smk_of_inode(op
), MAY_WRITE
, &ad
);
2456 * smack_socket_sendmsg - Smack check based on destination host
2459 * @size: the size of the message
2461 * Return 0 if the current subject can write to the destination
2462 * host. This is only a question if the destination is a single
2465 static int smack_socket_sendmsg(struct socket
*sock
, struct msghdr
*msg
,
2468 struct sockaddr_in
*sip
= (struct sockaddr_in
*) msg
->msg_name
;
2471 * Perfectly reasonable for this to be NULL
2473 if (sip
== NULL
|| sip
->sin_family
!= AF_INET
)
2476 return smack_netlabel_send(sock
->sk
, sip
);
2481 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
2482 * @sap: netlabel secattr
2483 * @sip: where to put the result
2485 * Copies a smack label into sip
2487 static void smack_from_secattr(struct netlbl_lsm_secattr
*sap
, char *sip
)
2489 char smack
[SMK_LABELLEN
];
2493 if ((sap
->flags
& NETLBL_SECATTR_MLS_LVL
) != 0) {
2495 * Looks like a CIPSO packet.
2496 * If there are flags but no level netlabel isn't
2497 * behaving the way we expect it to.
2499 * Get the categories, if any
2500 * Without guidance regarding the smack value
2501 * for the packet fall back on the network
2504 memset(smack
, '\0', SMK_LABELLEN
);
2505 if ((sap
->flags
& NETLBL_SECATTR_MLS_CAT
) != 0)
2507 pcat
= netlbl_secattr_catmap_walk(
2508 sap
->attr
.mls
.cat
, pcat
+ 1);
2511 smack_catset_bit(pcat
, smack
);
2514 * If it is CIPSO using smack direct mapping
2515 * we are already done. WeeHee.
2517 if (sap
->attr
.mls
.lvl
== smack_cipso_direct
) {
2518 memcpy(sip
, smack
, SMK_MAXLEN
);
2522 * Look it up in the supplied table if it is not
2525 smack_from_cipso(sap
->attr
.mls
.lvl
, smack
, sip
);
2528 if ((sap
->flags
& NETLBL_SECATTR_SECID
) != 0) {
2530 * Looks like a fallback, which gives us a secid.
2532 sp
= smack_from_secid(sap
->attr
.secid
);
2534 * This has got to be a bug because it is
2535 * impossible to specify a fallback without
2536 * specifying the label, which will ensure
2537 * it has a secid, and the only way to get a
2538 * secid is from a fallback.
2541 strncpy(sip
, sp
, SMK_MAXLEN
);
2545 * Without guidance regarding the smack value
2546 * for the packet fall back on the network
2549 strncpy(sip
, smack_net_ambient
, SMK_MAXLEN
);
2554 * smack_socket_sock_rcv_skb - Smack packet delivery access check
2558 * Returns 0 if the packet should be delivered, an error code otherwise
2560 static int smack_socket_sock_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
2562 struct netlbl_lsm_secattr secattr
;
2563 struct socket_smack
*ssp
= sk
->sk_security
;
2564 char smack
[SMK_LABELLEN
];
2567 struct smk_audit_info ad
;
2568 if (sk
->sk_family
!= PF_INET
&& sk
->sk_family
!= PF_INET6
)
2572 * Translate what netlabel gave us.
2574 netlbl_secattr_init(&secattr
);
2576 rc
= netlbl_skbuff_getattr(skb
, sk
->sk_family
, &secattr
);
2578 smack_from_secattr(&secattr
, smack
);
2581 csp
= smack_net_ambient
;
2583 netlbl_secattr_destroy(&secattr
);
2586 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_NET
);
2587 ad
.a
.u
.net
.family
= sk
->sk_family
;
2588 ad
.a
.u
.net
.netif
= skb
->skb_iif
;
2589 ipv4_skb_to_auditdata(skb
, &ad
.a
, NULL
);
2592 * Receiving a packet requires that the other end
2593 * be able to write here. Read access is not required.
2594 * This is the simplist possible security model
2597 rc
= smk_access(csp
, ssp
->smk_in
, MAY_WRITE
, &ad
);
2599 netlbl_skbuff_err(skb
, rc
, 0);
2604 * smack_socket_getpeersec_stream - pull in packet label
2606 * @optval: user's destination
2607 * @optlen: size thereof
2610 * returns zero on success, an error code otherwise
2612 static int smack_socket_getpeersec_stream(struct socket
*sock
,
2613 char __user
*optval
,
2614 int __user
*optlen
, unsigned len
)
2616 struct socket_smack
*ssp
;
2620 ssp
= sock
->sk
->sk_security
;
2621 slen
= strlen(ssp
->smk_packet
) + 1;
2625 else if (copy_to_user(optval
, ssp
->smk_packet
, slen
) != 0)
2628 if (put_user(slen
, optlen
) != 0)
2636 * smack_socket_getpeersec_dgram - pull in packet label
2639 * @secid: pointer to where to put the secid of the packet
2641 * Sets the netlabel socket state on sk from parent
2643 static int smack_socket_getpeersec_dgram(struct socket
*sock
,
2644 struct sk_buff
*skb
, u32
*secid
)
2647 struct netlbl_lsm_secattr secattr
;
2649 char smack
[SMK_LABELLEN
];
2650 int family
= PF_INET
;
2655 * Only works for families with packets.
2659 if (sk
->sk_family
!= PF_INET
&& sk
->sk_family
!= PF_INET6
)
2661 family
= sk
->sk_family
;
2664 * Translate what netlabel gave us.
2666 netlbl_secattr_init(&secattr
);
2667 rc
= netlbl_skbuff_getattr(skb
, family
, &secattr
);
2669 smack_from_secattr(&secattr
, smack
);
2670 netlbl_secattr_destroy(&secattr
);
2673 * Give up if we couldn't get anything
2678 s
= smack_to_secid(smack
);
2687 * smack_sock_graft - Initialize a newly created socket with an existing sock
2689 * @parent: parent socket
2691 * Set the smk_{in,out} state of an existing sock based on the process that
2692 * is creating the new socket.
2694 static void smack_sock_graft(struct sock
*sk
, struct socket
*parent
)
2696 struct socket_smack
*ssp
;
2699 (sk
->sk_family
!= PF_INET
&& sk
->sk_family
!= PF_INET6
))
2702 ssp
= sk
->sk_security
;
2703 ssp
->smk_in
= ssp
->smk_out
= current_security();
2704 /* cssp->smk_packet is already set in smack_inet_csk_clone() */
2708 * smack_inet_conn_request - Smack access check on connect
2709 * @sk: socket involved
2713 * Returns 0 if a task with the packet label could write to
2714 * the socket, otherwise an error code
2716 static int smack_inet_conn_request(struct sock
*sk
, struct sk_buff
*skb
,
2717 struct request_sock
*req
)
2719 u16 family
= sk
->sk_family
;
2720 struct socket_smack
*ssp
= sk
->sk_security
;
2721 struct netlbl_lsm_secattr secattr
;
2722 struct sockaddr_in addr
;
2724 char smack
[SMK_LABELLEN
];
2726 struct smk_audit_info ad
;
2728 /* handle mapped IPv4 packets arriving via IPv6 sockets */
2729 if (family
== PF_INET6
&& skb
->protocol
== htons(ETH_P_IP
))
2732 netlbl_secattr_init(&secattr
);
2733 rc
= netlbl_skbuff_getattr(skb
, family
, &secattr
);
2735 smack_from_secattr(&secattr
, smack
);
2737 strncpy(smack
, smack_known_huh
.smk_known
, SMK_MAXLEN
);
2738 netlbl_secattr_destroy(&secattr
);
2741 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_NET
);
2742 ad
.a
.u
.net
.family
= family
;
2743 ad
.a
.u
.net
.netif
= skb
->skb_iif
;
2744 ipv4_skb_to_auditdata(skb
, &ad
.a
, NULL
);
2747 * Receiving a packet requires that the other end be able to write
2748 * here. Read access is not required.
2750 rc
= smk_access(smack
, ssp
->smk_in
, MAY_WRITE
, &ad
);
2755 * Save the peer's label in the request_sock so we can later setup
2756 * smk_packet in the child socket so that SO_PEERCRED can report it.
2758 req
->peer_secid
= smack_to_secid(smack
);
2761 * We need to decide if we want to label the incoming connection here
2762 * if we do we only need to label the request_sock and the stack will
2763 * propogate the wire-label to the sock when it is created.
2766 addr
.sin_addr
.s_addr
= hdr
->saddr
;
2768 if (smack_host_label(&addr
) == NULL
) {
2770 netlbl_secattr_init(&secattr
);
2771 smack_to_secattr(smack
, &secattr
);
2772 rc
= netlbl_req_setattr(req
, &secattr
);
2773 netlbl_secattr_destroy(&secattr
);
2776 netlbl_req_delattr(req
);
2783 * smack_inet_csk_clone - Copy the connection information to the new socket
2784 * @sk: the new socket
2785 * @req: the connection's request_sock
2787 * Transfer the connection's peer label to the newly created socket.
2789 static void smack_inet_csk_clone(struct sock
*sk
,
2790 const struct request_sock
*req
)
2792 struct socket_smack
*ssp
= sk
->sk_security
;
2795 if (req
->peer_secid
!= 0) {
2796 smack
= smack_from_secid(req
->peer_secid
);
2797 strncpy(ssp
->smk_packet
, smack
, SMK_MAXLEN
);
2799 ssp
->smk_packet
[0] = '\0';
2803 * Key management security hooks
2805 * Casey has not tested key support very heavily.
2806 * The permission check is most likely too restrictive.
2807 * If you care about keys please have a look.
2812 * smack_key_alloc - Set the key security blob
2814 * @cred: the credentials to use
2817 * No allocation required
2821 static int smack_key_alloc(struct key
*key
, const struct cred
*cred
,
2822 unsigned long flags
)
2824 key
->security
= cred
->security
;
2829 * smack_key_free - Clear the key security blob
2832 * Clear the blob pointer
2834 static void smack_key_free(struct key
*key
)
2836 key
->security
= NULL
;
2840 * smack_key_permission - Smack access on a key
2841 * @key_ref: gets to the object
2842 * @cred: the credentials to use
2845 * Return 0 if the task has read and write to the object,
2846 * an error code otherwise
2848 static int smack_key_permission(key_ref_t key_ref
,
2849 const struct cred
*cred
, key_perm_t perm
)
2852 struct smk_audit_info ad
;
2854 keyp
= key_ref_to_ptr(key_ref
);
2858 * If the key hasn't been initialized give it access so that
2861 if (keyp
->security
== NULL
)
2864 * This should not occur
2866 if (cred
->security
== NULL
)
2869 smk_ad_init(&ad
, __func__
, LSM_AUDIT_DATA_KEY
);
2870 ad
.a
.u
.key_struct
.key
= keyp
->serial
;
2871 ad
.a
.u
.key_struct
.key_desc
= keyp
->description
;
2873 return smk_access(cred
->security
, keyp
->security
,
2874 MAY_READWRITE
, &ad
);
2876 #endif /* CONFIG_KEYS */
2881 * Audit requires a unique representation of each Smack specific
2882 * rule. This unique representation is used to distinguish the
2883 * object to be audited from remaining kernel objects and also
2884 * works as a glue between the audit hooks.
2886 * Since repository entries are added but never deleted, we'll use
2887 * the smack_known label address related to the given audit rule as
2888 * the needed unique representation. This also better fits the smack
2889 * model where nearly everything is a label.
2894 * smack_audit_rule_init - Initialize a smack audit rule
2895 * @field: audit rule fields given from user-space (audit.h)
2896 * @op: required testing operator (=, !=, >, <, ...)
2897 * @rulestr: smack label to be audited
2898 * @vrule: pointer to save our own audit rule representation
2900 * Prepare to audit cases where (@field @op @rulestr) is true.
2901 * The label to be audited is created if necessay.
2903 static int smack_audit_rule_init(u32 field
, u32 op
, char *rulestr
, void **vrule
)
2905 char **rule
= (char **)vrule
;
2908 if (field
!= AUDIT_SUBJ_USER
&& field
!= AUDIT_OBJ_USER
)
2911 if (op
!= Audit_equal
&& op
!= Audit_not_equal
)
2914 *rule
= smk_import(rulestr
, 0);
2920 * smack_audit_rule_known - Distinguish Smack audit rules
2921 * @krule: rule of interest, in Audit kernel representation format
2923 * This is used to filter Smack rules from remaining Audit ones.
2924 * If it's proved that this rule belongs to us, the
2925 * audit_rule_match hook will be called to do the final judgement.
2927 static int smack_audit_rule_known(struct audit_krule
*krule
)
2929 struct audit_field
*f
;
2932 for (i
= 0; i
< krule
->field_count
; i
++) {
2933 f
= &krule
->fields
[i
];
2935 if (f
->type
== AUDIT_SUBJ_USER
|| f
->type
== AUDIT_OBJ_USER
)
2943 * smack_audit_rule_match - Audit given object ?
2944 * @secid: security id for identifying the object to test
2945 * @field: audit rule flags given from user-space
2946 * @op: required testing operator
2947 * @vrule: smack internal rule presentation
2948 * @actx: audit context associated with the check
2950 * The core Audit hook. It's used to take the decision of
2951 * whether to audit or not to audit a given object.
2953 static int smack_audit_rule_match(u32 secid
, u32 field
, u32 op
, void *vrule
,
2954 struct audit_context
*actx
)
2960 audit_log(actx
, GFP_KERNEL
, AUDIT_SELINUX_ERR
,
2961 "Smack: missing rule\n");
2965 if (field
!= AUDIT_SUBJ_USER
&& field
!= AUDIT_OBJ_USER
)
2968 smack
= smack_from_secid(secid
);
2971 * No need to do string comparisons. If a match occurs,
2972 * both pointers will point to the same smack_known
2975 if (op
== Audit_equal
)
2976 return (rule
== smack
);
2977 if (op
== Audit_not_equal
)
2978 return (rule
!= smack
);
2984 * smack_audit_rule_free - free smack rule representation
2985 * @vrule: rule to be freed.
2987 * No memory was allocated.
2989 static void smack_audit_rule_free(void *vrule
)
2994 #endif /* CONFIG_AUDIT */
2997 * smack_secid_to_secctx - return the smack label for a secid
2998 * @secid: incoming integer
2999 * @secdata: destination
3000 * @seclen: how long it is
3002 * Exists for networking code.
3004 static int smack_secid_to_secctx(u32 secid
, char **secdata
, u32
*seclen
)
3006 char *sp
= smack_from_secid(secid
);
3009 *seclen
= strlen(sp
);
3014 * smack_secctx_to_secid - return the secid for a smack label
3015 * @secdata: smack label
3016 * @seclen: how long result is
3017 * @secid: outgoing integer
3019 * Exists for audit and networking code.
3021 static int smack_secctx_to_secid(const char *secdata
, u32 seclen
, u32
*secid
)
3023 *secid
= smack_to_secid(secdata
);
3028 * smack_release_secctx - don't do anything.
3032 * Exists to make sure nothing gets done, and properly
3034 static void smack_release_secctx(char *secdata
, u32 seclen
)
3038 static int smack_inode_notifysecctx(struct inode
*inode
, void *ctx
, u32 ctxlen
)
3040 return smack_inode_setsecurity(inode
, XATTR_SMACK_SUFFIX
, ctx
, ctxlen
, 0);
3043 static int smack_inode_setsecctx(struct dentry
*dentry
, void *ctx
, u32 ctxlen
)
3045 return __vfs_setxattr_noperm(dentry
, XATTR_NAME_SMACK
, ctx
, ctxlen
, 0);
3048 static int smack_inode_getsecctx(struct inode
*inode
, void **ctx
, u32
*ctxlen
)
3051 len
= smack_inode_getsecurity(inode
, XATTR_SMACK_SUFFIX
, ctx
, true);
3059 struct security_operations smack_ops
= {
3062 .ptrace_access_check
= smack_ptrace_access_check
,
3063 .ptrace_traceme
= smack_ptrace_traceme
,
3064 .syslog
= smack_syslog
,
3066 .sb_alloc_security
= smack_sb_alloc_security
,
3067 .sb_free_security
= smack_sb_free_security
,
3068 .sb_copy_data
= smack_sb_copy_data
,
3069 .sb_kern_mount
= smack_sb_kern_mount
,
3070 .sb_statfs
= smack_sb_statfs
,
3071 .sb_mount
= smack_sb_mount
,
3072 .sb_umount
= smack_sb_umount
,
3074 .inode_alloc_security
= smack_inode_alloc_security
,
3075 .inode_free_security
= smack_inode_free_security
,
3076 .inode_init_security
= smack_inode_init_security
,
3077 .inode_link
= smack_inode_link
,
3078 .inode_unlink
= smack_inode_unlink
,
3079 .inode_rmdir
= smack_inode_rmdir
,
3080 .inode_rename
= smack_inode_rename
,
3081 .inode_permission
= smack_inode_permission
,
3082 .inode_setattr
= smack_inode_setattr
,
3083 .inode_getattr
= smack_inode_getattr
,
3084 .inode_setxattr
= smack_inode_setxattr
,
3085 .inode_post_setxattr
= smack_inode_post_setxattr
,
3086 .inode_getxattr
= smack_inode_getxattr
,
3087 .inode_removexattr
= smack_inode_removexattr
,
3088 .inode_getsecurity
= smack_inode_getsecurity
,
3089 .inode_setsecurity
= smack_inode_setsecurity
,
3090 .inode_listsecurity
= smack_inode_listsecurity
,
3091 .inode_getsecid
= smack_inode_getsecid
,
3093 .file_permission
= smack_file_permission
,
3094 .file_alloc_security
= smack_file_alloc_security
,
3095 .file_free_security
= smack_file_free_security
,
3096 .file_ioctl
= smack_file_ioctl
,
3097 .file_lock
= smack_file_lock
,
3098 .file_fcntl
= smack_file_fcntl
,
3099 .file_set_fowner
= smack_file_set_fowner
,
3100 .file_send_sigiotask
= smack_file_send_sigiotask
,
3101 .file_receive
= smack_file_receive
,
3103 .cred_alloc_blank
= smack_cred_alloc_blank
,
3104 .cred_free
= smack_cred_free
,
3105 .cred_prepare
= smack_cred_prepare
,
3106 .cred_transfer
= smack_cred_transfer
,
3107 .kernel_act_as
= smack_kernel_act_as
,
3108 .kernel_create_files_as
= smack_kernel_create_files_as
,
3109 .task_setpgid
= smack_task_setpgid
,
3110 .task_getpgid
= smack_task_getpgid
,
3111 .task_getsid
= smack_task_getsid
,
3112 .task_getsecid
= smack_task_getsecid
,
3113 .task_setnice
= smack_task_setnice
,
3114 .task_setioprio
= smack_task_setioprio
,
3115 .task_getioprio
= smack_task_getioprio
,
3116 .task_setscheduler
= smack_task_setscheduler
,
3117 .task_getscheduler
= smack_task_getscheduler
,
3118 .task_movememory
= smack_task_movememory
,
3119 .task_kill
= smack_task_kill
,
3120 .task_wait
= smack_task_wait
,
3121 .task_to_inode
= smack_task_to_inode
,
3123 .ipc_permission
= smack_ipc_permission
,
3124 .ipc_getsecid
= smack_ipc_getsecid
,
3126 .msg_msg_alloc_security
= smack_msg_msg_alloc_security
,
3127 .msg_msg_free_security
= smack_msg_msg_free_security
,
3129 .msg_queue_alloc_security
= smack_msg_queue_alloc_security
,
3130 .msg_queue_free_security
= smack_msg_queue_free_security
,
3131 .msg_queue_associate
= smack_msg_queue_associate
,
3132 .msg_queue_msgctl
= smack_msg_queue_msgctl
,
3133 .msg_queue_msgsnd
= smack_msg_queue_msgsnd
,
3134 .msg_queue_msgrcv
= smack_msg_queue_msgrcv
,
3136 .shm_alloc_security
= smack_shm_alloc_security
,
3137 .shm_free_security
= smack_shm_free_security
,
3138 .shm_associate
= smack_shm_associate
,
3139 .shm_shmctl
= smack_shm_shmctl
,
3140 .shm_shmat
= smack_shm_shmat
,
3142 .sem_alloc_security
= smack_sem_alloc_security
,
3143 .sem_free_security
= smack_sem_free_security
,
3144 .sem_associate
= smack_sem_associate
,
3145 .sem_semctl
= smack_sem_semctl
,
3146 .sem_semop
= smack_sem_semop
,
3148 .d_instantiate
= smack_d_instantiate
,
3150 .getprocattr
= smack_getprocattr
,
3151 .setprocattr
= smack_setprocattr
,
3153 .unix_stream_connect
= smack_unix_stream_connect
,
3154 .unix_may_send
= smack_unix_may_send
,
3156 .socket_post_create
= smack_socket_post_create
,
3157 .socket_connect
= smack_socket_connect
,
3158 .socket_sendmsg
= smack_socket_sendmsg
,
3159 .socket_sock_rcv_skb
= smack_socket_sock_rcv_skb
,
3160 .socket_getpeersec_stream
= smack_socket_getpeersec_stream
,
3161 .socket_getpeersec_dgram
= smack_socket_getpeersec_dgram
,
3162 .sk_alloc_security
= smack_sk_alloc_security
,
3163 .sk_free_security
= smack_sk_free_security
,
3164 .sock_graft
= smack_sock_graft
,
3165 .inet_conn_request
= smack_inet_conn_request
,
3166 .inet_csk_clone
= smack_inet_csk_clone
,
3168 /* key management security hooks */
3170 .key_alloc
= smack_key_alloc
,
3171 .key_free
= smack_key_free
,
3172 .key_permission
= smack_key_permission
,
3173 #endif /* CONFIG_KEYS */
3177 .audit_rule_init
= smack_audit_rule_init
,
3178 .audit_rule_known
= smack_audit_rule_known
,
3179 .audit_rule_match
= smack_audit_rule_match
,
3180 .audit_rule_free
= smack_audit_rule_free
,
3181 #endif /* CONFIG_AUDIT */
3183 .secid_to_secctx
= smack_secid_to_secctx
,
3184 .secctx_to_secid
= smack_secctx_to_secid
,
3185 .release_secctx
= smack_release_secctx
,
3186 .inode_notifysecctx
= smack_inode_notifysecctx
,
3187 .inode_setsecctx
= smack_inode_setsecctx
,
3188 .inode_getsecctx
= smack_inode_getsecctx
,
3192 static __init
void init_smack_know_list(void)
3194 list_add(&smack_known_huh
.list
, &smack_known_list
);
3195 list_add(&smack_known_hat
.list
, &smack_known_list
);
3196 list_add(&smack_known_star
.list
, &smack_known_list
);
3197 list_add(&smack_known_floor
.list
, &smack_known_list
);
3198 list_add(&smack_known_invalid
.list
, &smack_known_list
);
3199 list_add(&smack_known_web
.list
, &smack_known_list
);
3203 * smack_init - initialize the smack system
3207 static __init
int smack_init(void)
3211 if (!security_module_enable(&smack_ops
))
3214 printk(KERN_INFO
"Smack: Initializing.\n");
3217 * Set the security state for the initial task.
3219 cred
= (struct cred
*) current
->cred
;
3220 cred
->security
= &smack_known_floor
.smk_known
;
3222 /* initialize the smack_know_list */
3223 init_smack_know_list();
3227 spin_lock_init(&smack_known_huh
.smk_cipsolock
);
3228 spin_lock_init(&smack_known_hat
.smk_cipsolock
);
3229 spin_lock_init(&smack_known_star
.smk_cipsolock
);
3230 spin_lock_init(&smack_known_floor
.smk_cipsolock
);
3231 spin_lock_init(&smack_known_invalid
.smk_cipsolock
);
3236 if (register_security(&smack_ops
))
3237 panic("smack: Unable to register with kernel.\n");
3243 * Smack requires early initialization in order to label
3244 * all processes and objects when they are created.
3246 security_initcall(smack_init
);