2 * NSA Security-Enhanced Linux (SELinux) security module
4 * This file contains the SELinux hook function implementations.
6 * Authors: Stephen Smalley, <sds@epoch.ncsc.mil>
7 * Chris Vance, <cvance@nai.com>
8 * Wayne Salamon, <wsalamon@nai.com>
9 * James Morris <jmorris@redhat.com>
11 * Copyright (C) 2001,2002 Networks Associates Technology, Inc.
12 * Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com>
13 * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
14 * <dgoeddel@trustedcs.com>
15 * Copyright (C) 2006 Hewlett-Packard Development Company, L.P.
16 * Paul Moore, <paul.moore@hp.com>
17 * Copyright (C) 2007 Hitachi Software Engineering Co., Ltd.
18 * Yuichi Nakamura <ynakam@hitachisoft.jp>
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License version 2,
22 * as published by the Free Software Foundation.
25 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/ptrace.h>
28 #include <linux/errno.h>
29 #include <linux/sched.h>
30 #include <linux/security.h>
31 #include <linux/xattr.h>
32 #include <linux/capability.h>
33 #include <linux/unistd.h>
35 #include <linux/mman.h>
36 #include <linux/slab.h>
37 #include <linux/pagemap.h>
38 #include <linux/swap.h>
39 #include <linux/spinlock.h>
40 #include <linux/syscalls.h>
41 #include <linux/file.h>
42 #include <linux/namei.h>
43 #include <linux/mount.h>
44 #include <linux/ext2_fs.h>
45 #include <linux/proc_fs.h>
47 #include <linux/netfilter_ipv4.h>
48 #include <linux/netfilter_ipv6.h>
49 #include <linux/tty.h>
51 #include <net/ip.h> /* for local_port_range[] */
52 #include <net/tcp.h> /* struct or_callable used in sock_rcv_skb */
53 #include <asm/uaccess.h>
54 #include <asm/ioctls.h>
55 #include <linux/bitops.h>
56 #include <linux/interrupt.h>
57 #include <linux/netdevice.h> /* for network interface checks */
58 #include <linux/netlink.h>
59 #include <linux/tcp.h>
60 #include <linux/udp.h>
61 #include <linux/dccp.h>
62 #include <linux/quota.h>
63 #include <linux/un.h> /* for Unix socket types */
64 #include <net/af_unix.h> /* for Unix socket types */
65 #include <linux/parser.h>
66 #include <linux/nfs_mount.h>
68 #include <linux/hugetlb.h>
69 #include <linux/personality.h>
70 #include <linux/sysctl.h>
71 #include <linux/audit.h>
72 #include <linux/string.h>
73 #include <linux/selinux.h>
74 #include <linux/mutex.h>
82 #define XATTR_SELINUX_SUFFIX "selinux"
83 #define XATTR_NAME_SELINUX XATTR_SECURITY_PREFIX XATTR_SELINUX_SUFFIX
85 extern unsigned int policydb_loaded_version
;
86 extern int selinux_nlmsg_lookup(u16 sclass
, u16 nlmsg_type
, u32
*perm
);
87 extern int selinux_compat_net
;
88 extern struct security_operations
*security_ops
;
90 #ifdef CONFIG_SECURITY_SELINUX_DEVELOP
91 int selinux_enforcing
= 0;
93 static int __init
enforcing_setup(char *str
)
95 selinux_enforcing
= simple_strtol(str
,NULL
,0);
98 __setup("enforcing=", enforcing_setup
);
101 #ifdef CONFIG_SECURITY_SELINUX_BOOTPARAM
102 int selinux_enabled
= CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE
;
104 static int __init
selinux_enabled_setup(char *str
)
106 selinux_enabled
= simple_strtol(str
, NULL
, 0);
109 __setup("selinux=", selinux_enabled_setup
);
111 int selinux_enabled
= 1;
114 /* Original (dummy) security module. */
115 static struct security_operations
*original_ops
= NULL
;
117 /* Minimal support for a secondary security module,
118 just to allow the use of the dummy or capability modules.
119 The owlsm module can alternatively be used as a secondary
120 module as long as CONFIG_OWLSM_FD is not enabled. */
121 static struct security_operations
*secondary_ops
= NULL
;
123 /* Lists of inode and superblock security structures initialized
124 before the policy was loaded. */
125 static LIST_HEAD(superblock_security_head
);
126 static DEFINE_SPINLOCK(sb_security_lock
);
128 static struct kmem_cache
*sel_inode_cache
;
130 /* Return security context for a given sid or just the context
131 length if the buffer is null or length is 0 */
132 static int selinux_getsecurity(u32 sid
, void *buffer
, size_t size
)
138 rc
= security_sid_to_context(sid
, &context
, &len
);
142 if (!buffer
|| !size
)
143 goto getsecurity_exit
;
147 goto getsecurity_exit
;
149 memcpy(buffer
, context
, len
);
156 /* Allocate and free functions for each kind of security blob. */
158 static int task_alloc_security(struct task_struct
*task
)
160 struct task_security_struct
*tsec
;
162 tsec
= kzalloc(sizeof(struct task_security_struct
), GFP_KERNEL
);
167 tsec
->osid
= tsec
->sid
= tsec
->ptrace_sid
= SECINITSID_UNLABELED
;
168 task
->security
= tsec
;
173 static void task_free_security(struct task_struct
*task
)
175 struct task_security_struct
*tsec
= task
->security
;
176 task
->security
= NULL
;
180 static int inode_alloc_security(struct inode
*inode
)
182 struct task_security_struct
*tsec
= current
->security
;
183 struct inode_security_struct
*isec
;
185 isec
= kmem_cache_zalloc(sel_inode_cache
, GFP_KERNEL
);
189 mutex_init(&isec
->lock
);
190 INIT_LIST_HEAD(&isec
->list
);
192 isec
->sid
= SECINITSID_UNLABELED
;
193 isec
->sclass
= SECCLASS_FILE
;
194 isec
->task_sid
= tsec
->sid
;
195 inode
->i_security
= isec
;
200 static void inode_free_security(struct inode
*inode
)
202 struct inode_security_struct
*isec
= inode
->i_security
;
203 struct superblock_security_struct
*sbsec
= inode
->i_sb
->s_security
;
205 spin_lock(&sbsec
->isec_lock
);
206 if (!list_empty(&isec
->list
))
207 list_del_init(&isec
->list
);
208 spin_unlock(&sbsec
->isec_lock
);
210 inode
->i_security
= NULL
;
211 kmem_cache_free(sel_inode_cache
, isec
);
214 static int file_alloc_security(struct file
*file
)
216 struct task_security_struct
*tsec
= current
->security
;
217 struct file_security_struct
*fsec
;
219 fsec
= kzalloc(sizeof(struct file_security_struct
), GFP_KERNEL
);
224 fsec
->sid
= tsec
->sid
;
225 fsec
->fown_sid
= tsec
->sid
;
226 file
->f_security
= fsec
;
231 static void file_free_security(struct file
*file
)
233 struct file_security_struct
*fsec
= file
->f_security
;
234 file
->f_security
= NULL
;
238 static int superblock_alloc_security(struct super_block
*sb
)
240 struct superblock_security_struct
*sbsec
;
242 sbsec
= kzalloc(sizeof(struct superblock_security_struct
), GFP_KERNEL
);
246 mutex_init(&sbsec
->lock
);
247 INIT_LIST_HEAD(&sbsec
->list
);
248 INIT_LIST_HEAD(&sbsec
->isec_head
);
249 spin_lock_init(&sbsec
->isec_lock
);
251 sbsec
->sid
= SECINITSID_UNLABELED
;
252 sbsec
->def_sid
= SECINITSID_FILE
;
253 sbsec
->mntpoint_sid
= SECINITSID_UNLABELED
;
254 sb
->s_security
= sbsec
;
259 static void superblock_free_security(struct super_block
*sb
)
261 struct superblock_security_struct
*sbsec
= sb
->s_security
;
263 spin_lock(&sb_security_lock
);
264 if (!list_empty(&sbsec
->list
))
265 list_del_init(&sbsec
->list
);
266 spin_unlock(&sb_security_lock
);
268 sb
->s_security
= NULL
;
272 static int sk_alloc_security(struct sock
*sk
, int family
, gfp_t priority
)
274 struct sk_security_struct
*ssec
;
276 ssec
= kzalloc(sizeof(*ssec
), priority
);
281 ssec
->peer_sid
= SECINITSID_UNLABELED
;
282 ssec
->sid
= SECINITSID_UNLABELED
;
283 sk
->sk_security
= ssec
;
285 selinux_netlbl_sk_security_init(ssec
, family
);
290 static void sk_free_security(struct sock
*sk
)
292 struct sk_security_struct
*ssec
= sk
->sk_security
;
294 sk
->sk_security
= NULL
;
298 /* The security server must be initialized before
299 any labeling or access decisions can be provided. */
300 extern int ss_initialized
;
302 /* The file system's label must be initialized prior to use. */
304 static char *labeling_behaviors
[6] = {
306 "uses transition SIDs",
308 "uses genfs_contexts",
309 "not configured for labeling",
310 "uses mountpoint labeling",
313 static int inode_doinit_with_dentry(struct inode
*inode
, struct dentry
*opt_dentry
);
315 static inline int inode_doinit(struct inode
*inode
)
317 return inode_doinit_with_dentry(inode
, NULL
);
328 static match_table_t tokens
= {
329 {Opt_context
, "context=%s"},
330 {Opt_fscontext
, "fscontext=%s"},
331 {Opt_defcontext
, "defcontext=%s"},
332 {Opt_rootcontext
, "rootcontext=%s"},
336 #define SEL_MOUNT_FAIL_MSG "SELinux: duplicate or incompatible mount options\n"
338 static int may_context_mount_sb_relabel(u32 sid
,
339 struct superblock_security_struct
*sbsec
,
340 struct task_security_struct
*tsec
)
344 rc
= avc_has_perm(tsec
->sid
, sbsec
->sid
, SECCLASS_FILESYSTEM
,
345 FILESYSTEM__RELABELFROM
, NULL
);
349 rc
= avc_has_perm(tsec
->sid
, sid
, SECCLASS_FILESYSTEM
,
350 FILESYSTEM__RELABELTO
, NULL
);
354 static int may_context_mount_inode_relabel(u32 sid
,
355 struct superblock_security_struct
*sbsec
,
356 struct task_security_struct
*tsec
)
359 rc
= avc_has_perm(tsec
->sid
, sbsec
->sid
, SECCLASS_FILESYSTEM
,
360 FILESYSTEM__RELABELFROM
, NULL
);
364 rc
= avc_has_perm(sid
, sbsec
->sid
, SECCLASS_FILESYSTEM
,
365 FILESYSTEM__ASSOCIATE
, NULL
);
369 static int try_context_mount(struct super_block
*sb
, void *data
)
371 char *context
= NULL
, *defcontext
= NULL
;
372 char *fscontext
= NULL
, *rootcontext
= NULL
;
375 int alloc
= 0, rc
= 0, seen
= 0;
376 struct task_security_struct
*tsec
= current
->security
;
377 struct superblock_security_struct
*sbsec
= sb
->s_security
;
382 name
= sb
->s_type
->name
;
384 if (sb
->s_type
->fs_flags
& FS_BINARY_MOUNTDATA
) {
386 /* NFS we understand. */
387 if (!strcmp(name
, "nfs")) {
388 struct nfs_mount_data
*d
= data
;
390 if (d
->version
< NFS_MOUNT_VERSION
)
394 context
= d
->context
;
401 /* Standard string-based options. */
402 char *p
, *options
= data
;
404 while ((p
= strsep(&options
, "|")) != NULL
) {
406 substring_t args
[MAX_OPT_ARGS
];
411 token
= match_token(p
, tokens
, args
);
415 if (seen
& (Opt_context
|Opt_defcontext
)) {
417 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG
);
420 context
= match_strdup(&args
[0]);
431 if (seen
& Opt_fscontext
) {
433 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG
);
436 fscontext
= match_strdup(&args
[0]);
443 seen
|= Opt_fscontext
;
446 case Opt_rootcontext
:
447 if (seen
& Opt_rootcontext
) {
449 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG
);
452 rootcontext
= match_strdup(&args
[0]);
459 seen
|= Opt_rootcontext
;
463 if (sbsec
->behavior
!= SECURITY_FS_USE_XATTR
) {
465 printk(KERN_WARNING
"SELinux: "
466 "defcontext option is invalid "
467 "for this filesystem type\n");
470 if (seen
& (Opt_context
|Opt_defcontext
)) {
472 printk(KERN_WARNING SEL_MOUNT_FAIL_MSG
);
475 defcontext
= match_strdup(&args
[0]);
482 seen
|= Opt_defcontext
;
487 printk(KERN_WARNING
"SELinux: unknown mount "
498 /* sets the context of the superblock for the fs being mounted. */
500 rc
= security_context_to_sid(fscontext
, strlen(fscontext
), &sid
);
502 printk(KERN_WARNING
"SELinux: security_context_to_sid"
503 "(%s) failed for (dev %s, type %s) errno=%d\n",
504 fscontext
, sb
->s_id
, name
, rc
);
508 rc
= may_context_mount_sb_relabel(sid
, sbsec
, tsec
);
516 * Switch to using mount point labeling behavior.
517 * sets the label used on all file below the mountpoint, and will set
518 * the superblock context if not already set.
521 rc
= security_context_to_sid(context
, strlen(context
), &sid
);
523 printk(KERN_WARNING
"SELinux: security_context_to_sid"
524 "(%s) failed for (dev %s, type %s) errno=%d\n",
525 context
, sb
->s_id
, name
, rc
);
530 rc
= may_context_mount_sb_relabel(sid
, sbsec
, tsec
);
535 rc
= may_context_mount_inode_relabel(sid
, sbsec
, tsec
);
539 sbsec
->mntpoint_sid
= sid
;
541 sbsec
->behavior
= SECURITY_FS_USE_MNTPOINT
;
545 struct inode
*inode
= sb
->s_root
->d_inode
;
546 struct inode_security_struct
*isec
= inode
->i_security
;
547 rc
= security_context_to_sid(rootcontext
, strlen(rootcontext
), &sid
);
549 printk(KERN_WARNING
"SELinux: security_context_to_sid"
550 "(%s) failed for (dev %s, type %s) errno=%d\n",
551 rootcontext
, sb
->s_id
, name
, rc
);
555 rc
= may_context_mount_inode_relabel(sid
, sbsec
, tsec
);
560 isec
->initialized
= 1;
564 rc
= security_context_to_sid(defcontext
, strlen(defcontext
), &sid
);
566 printk(KERN_WARNING
"SELinux: security_context_to_sid"
567 "(%s) failed for (dev %s, type %s) errno=%d\n",
568 defcontext
, sb
->s_id
, name
, rc
);
572 if (sid
== sbsec
->def_sid
)
575 rc
= may_context_mount_inode_relabel(sid
, sbsec
, tsec
);
579 sbsec
->def_sid
= sid
;
593 static int superblock_doinit(struct super_block
*sb
, void *data
)
595 struct superblock_security_struct
*sbsec
= sb
->s_security
;
596 struct dentry
*root
= sb
->s_root
;
597 struct inode
*inode
= root
->d_inode
;
600 mutex_lock(&sbsec
->lock
);
601 if (sbsec
->initialized
)
604 if (!ss_initialized
) {
605 /* Defer initialization until selinux_complete_init,
606 after the initial policy is loaded and the security
607 server is ready to handle calls. */
608 spin_lock(&sb_security_lock
);
609 if (list_empty(&sbsec
->list
))
610 list_add(&sbsec
->list
, &superblock_security_head
);
611 spin_unlock(&sb_security_lock
);
615 /* Determine the labeling behavior to use for this filesystem type. */
616 rc
= security_fs_use(sb
->s_type
->name
, &sbsec
->behavior
, &sbsec
->sid
);
618 printk(KERN_WARNING
"%s: security_fs_use(%s) returned %d\n",
619 __FUNCTION__
, sb
->s_type
->name
, rc
);
623 rc
= try_context_mount(sb
, data
);
627 if (sbsec
->behavior
== SECURITY_FS_USE_XATTR
) {
628 /* Make sure that the xattr handler exists and that no
629 error other than -ENODATA is returned by getxattr on
630 the root directory. -ENODATA is ok, as this may be
631 the first boot of the SELinux kernel before we have
632 assigned xattr values to the filesystem. */
633 if (!inode
->i_op
->getxattr
) {
634 printk(KERN_WARNING
"SELinux: (dev %s, type %s) has no "
635 "xattr support\n", sb
->s_id
, sb
->s_type
->name
);
639 rc
= inode
->i_op
->getxattr(root
, XATTR_NAME_SELINUX
, NULL
, 0);
640 if (rc
< 0 && rc
!= -ENODATA
) {
641 if (rc
== -EOPNOTSUPP
)
642 printk(KERN_WARNING
"SELinux: (dev %s, type "
643 "%s) has no security xattr handler\n",
644 sb
->s_id
, sb
->s_type
->name
);
646 printk(KERN_WARNING
"SELinux: (dev %s, type "
647 "%s) getxattr errno %d\n", sb
->s_id
,
648 sb
->s_type
->name
, -rc
);
653 if (strcmp(sb
->s_type
->name
, "proc") == 0)
656 sbsec
->initialized
= 1;
658 if (sbsec
->behavior
> ARRAY_SIZE(labeling_behaviors
)) {
659 printk(KERN_ERR
"SELinux: initialized (dev %s, type %s), unknown behavior\n",
660 sb
->s_id
, sb
->s_type
->name
);
663 printk(KERN_DEBUG
"SELinux: initialized (dev %s, type %s), %s\n",
664 sb
->s_id
, sb
->s_type
->name
,
665 labeling_behaviors
[sbsec
->behavior
-1]);
668 /* Initialize the root inode. */
669 rc
= inode_doinit_with_dentry(sb
->s_root
->d_inode
, sb
->s_root
);
671 /* Initialize any other inodes associated with the superblock, e.g.
672 inodes created prior to initial policy load or inodes created
673 during get_sb by a pseudo filesystem that directly
675 spin_lock(&sbsec
->isec_lock
);
677 if (!list_empty(&sbsec
->isec_head
)) {
678 struct inode_security_struct
*isec
=
679 list_entry(sbsec
->isec_head
.next
,
680 struct inode_security_struct
, list
);
681 struct inode
*inode
= isec
->inode
;
682 spin_unlock(&sbsec
->isec_lock
);
683 inode
= igrab(inode
);
685 if (!IS_PRIVATE (inode
))
689 spin_lock(&sbsec
->isec_lock
);
690 list_del_init(&isec
->list
);
693 spin_unlock(&sbsec
->isec_lock
);
695 mutex_unlock(&sbsec
->lock
);
699 static inline u16
inode_mode_to_security_class(umode_t mode
)
701 switch (mode
& S_IFMT
) {
703 return SECCLASS_SOCK_FILE
;
705 return SECCLASS_LNK_FILE
;
707 return SECCLASS_FILE
;
709 return SECCLASS_BLK_FILE
;
713 return SECCLASS_CHR_FILE
;
715 return SECCLASS_FIFO_FILE
;
719 return SECCLASS_FILE
;
722 static inline int default_protocol_stream(int protocol
)
724 return (protocol
== IPPROTO_IP
|| protocol
== IPPROTO_TCP
);
727 static inline int default_protocol_dgram(int protocol
)
729 return (protocol
== IPPROTO_IP
|| protocol
== IPPROTO_UDP
);
732 static inline u16
socket_type_to_security_class(int family
, int type
, int protocol
)
739 return SECCLASS_UNIX_STREAM_SOCKET
;
741 return SECCLASS_UNIX_DGRAM_SOCKET
;
748 if (default_protocol_stream(protocol
))
749 return SECCLASS_TCP_SOCKET
;
751 return SECCLASS_RAWIP_SOCKET
;
753 if (default_protocol_dgram(protocol
))
754 return SECCLASS_UDP_SOCKET
;
756 return SECCLASS_RAWIP_SOCKET
;
758 return SECCLASS_DCCP_SOCKET
;
760 return SECCLASS_RAWIP_SOCKET
;
766 return SECCLASS_NETLINK_ROUTE_SOCKET
;
767 case NETLINK_FIREWALL
:
768 return SECCLASS_NETLINK_FIREWALL_SOCKET
;
769 case NETLINK_INET_DIAG
:
770 return SECCLASS_NETLINK_TCPDIAG_SOCKET
;
772 return SECCLASS_NETLINK_NFLOG_SOCKET
;
774 return SECCLASS_NETLINK_XFRM_SOCKET
;
775 case NETLINK_SELINUX
:
776 return SECCLASS_NETLINK_SELINUX_SOCKET
;
778 return SECCLASS_NETLINK_AUDIT_SOCKET
;
780 return SECCLASS_NETLINK_IP6FW_SOCKET
;
781 case NETLINK_DNRTMSG
:
782 return SECCLASS_NETLINK_DNRT_SOCKET
;
783 case NETLINK_KOBJECT_UEVENT
:
784 return SECCLASS_NETLINK_KOBJECT_UEVENT_SOCKET
;
786 return SECCLASS_NETLINK_SOCKET
;
789 return SECCLASS_PACKET_SOCKET
;
791 return SECCLASS_KEY_SOCKET
;
793 return SECCLASS_APPLETALK_SOCKET
;
796 return SECCLASS_SOCKET
;
799 #ifdef CONFIG_PROC_FS
800 static int selinux_proc_get_sid(struct proc_dir_entry
*de
,
805 char *buffer
, *path
, *end
;
807 buffer
= (char*)__get_free_page(GFP_KERNEL
);
817 while (de
&& de
!= de
->parent
) {
818 buflen
-= de
->namelen
+ 1;
822 memcpy(end
, de
->name
, de
->namelen
);
827 rc
= security_genfs_sid("proc", path
, tclass
, sid
);
828 free_page((unsigned long)buffer
);
832 static int selinux_proc_get_sid(struct proc_dir_entry
*de
,
840 /* The inode's security attributes must be initialized before first use. */
841 static int inode_doinit_with_dentry(struct inode
*inode
, struct dentry
*opt_dentry
)
843 struct superblock_security_struct
*sbsec
= NULL
;
844 struct inode_security_struct
*isec
= inode
->i_security
;
846 struct dentry
*dentry
;
847 #define INITCONTEXTLEN 255
848 char *context
= NULL
;
852 if (isec
->initialized
)
855 mutex_lock(&isec
->lock
);
856 if (isec
->initialized
)
859 sbsec
= inode
->i_sb
->s_security
;
860 if (!sbsec
->initialized
) {
861 /* Defer initialization until selinux_complete_init,
862 after the initial policy is loaded and the security
863 server is ready to handle calls. */
864 spin_lock(&sbsec
->isec_lock
);
865 if (list_empty(&isec
->list
))
866 list_add(&isec
->list
, &sbsec
->isec_head
);
867 spin_unlock(&sbsec
->isec_lock
);
871 switch (sbsec
->behavior
) {
872 case SECURITY_FS_USE_XATTR
:
873 if (!inode
->i_op
->getxattr
) {
874 isec
->sid
= sbsec
->def_sid
;
878 /* Need a dentry, since the xattr API requires one.
879 Life would be simpler if we could just pass the inode. */
881 /* Called from d_instantiate or d_splice_alias. */
882 dentry
= dget(opt_dentry
);
884 /* Called from selinux_complete_init, try to find a dentry. */
885 dentry
= d_find_alias(inode
);
888 printk(KERN_WARNING
"%s: no dentry for dev=%s "
889 "ino=%ld\n", __FUNCTION__
, inode
->i_sb
->s_id
,
894 len
= INITCONTEXTLEN
;
895 context
= kmalloc(len
, GFP_KERNEL
);
901 rc
= inode
->i_op
->getxattr(dentry
, XATTR_NAME_SELINUX
,
904 /* Need a larger buffer. Query for the right size. */
905 rc
= inode
->i_op
->getxattr(dentry
, XATTR_NAME_SELINUX
,
913 context
= kmalloc(len
, GFP_KERNEL
);
919 rc
= inode
->i_op
->getxattr(dentry
,
925 if (rc
!= -ENODATA
) {
926 printk(KERN_WARNING
"%s: getxattr returned "
927 "%d for dev=%s ino=%ld\n", __FUNCTION__
,
928 -rc
, inode
->i_sb
->s_id
, inode
->i_ino
);
932 /* Map ENODATA to the default file SID */
933 sid
= sbsec
->def_sid
;
936 rc
= security_context_to_sid_default(context
, rc
, &sid
,
939 printk(KERN_WARNING
"%s: context_to_sid(%s) "
940 "returned %d for dev=%s ino=%ld\n",
941 __FUNCTION__
, context
, -rc
,
942 inode
->i_sb
->s_id
, inode
->i_ino
);
944 /* Leave with the unlabeled SID */
952 case SECURITY_FS_USE_TASK
:
953 isec
->sid
= isec
->task_sid
;
955 case SECURITY_FS_USE_TRANS
:
956 /* Default to the fs SID. */
957 isec
->sid
= sbsec
->sid
;
959 /* Try to obtain a transition SID. */
960 isec
->sclass
= inode_mode_to_security_class(inode
->i_mode
);
961 rc
= security_transition_sid(isec
->task_sid
,
969 case SECURITY_FS_USE_MNTPOINT
:
970 isec
->sid
= sbsec
->mntpoint_sid
;
973 /* Default to the fs superblock SID. */
974 isec
->sid
= sbsec
->sid
;
977 struct proc_inode
*proci
= PROC_I(inode
);
979 isec
->sclass
= inode_mode_to_security_class(inode
->i_mode
);
980 rc
= selinux_proc_get_sid(proci
->pde
,
991 isec
->initialized
= 1;
994 mutex_unlock(&isec
->lock
);
996 if (isec
->sclass
== SECCLASS_FILE
)
997 isec
->sclass
= inode_mode_to_security_class(inode
->i_mode
);
1001 /* Convert a Linux signal to an access vector. */
1002 static inline u32
signal_to_av(int sig
)
1008 /* Commonly granted from child to parent. */
1009 perm
= PROCESS__SIGCHLD
;
1012 /* Cannot be caught or ignored */
1013 perm
= PROCESS__SIGKILL
;
1016 /* Cannot be caught or ignored */
1017 perm
= PROCESS__SIGSTOP
;
1020 /* All other signals. */
1021 perm
= PROCESS__SIGNAL
;
1028 /* Check permission betweeen a pair of tasks, e.g. signal checks,
1029 fork check, ptrace check, etc. */
1030 static int task_has_perm(struct task_struct
*tsk1
,
1031 struct task_struct
*tsk2
,
1034 struct task_security_struct
*tsec1
, *tsec2
;
1036 tsec1
= tsk1
->security
;
1037 tsec2
= tsk2
->security
;
1038 return avc_has_perm(tsec1
->sid
, tsec2
->sid
,
1039 SECCLASS_PROCESS
, perms
, NULL
);
1042 /* Check whether a task is allowed to use a capability. */
1043 static int task_has_capability(struct task_struct
*tsk
,
1046 struct task_security_struct
*tsec
;
1047 struct avc_audit_data ad
;
1049 tsec
= tsk
->security
;
1051 AVC_AUDIT_DATA_INIT(&ad
,CAP
);
1055 return avc_has_perm(tsec
->sid
, tsec
->sid
,
1056 SECCLASS_CAPABILITY
, CAP_TO_MASK(cap
), &ad
);
1059 /* Check whether a task is allowed to use a system operation. */
1060 static int task_has_system(struct task_struct
*tsk
,
1063 struct task_security_struct
*tsec
;
1065 tsec
= tsk
->security
;
1067 return avc_has_perm(tsec
->sid
, SECINITSID_KERNEL
,
1068 SECCLASS_SYSTEM
, perms
, NULL
);
1071 /* Check whether a task has a particular permission to an inode.
1072 The 'adp' parameter is optional and allows other audit
1073 data to be passed (e.g. the dentry). */
1074 static int inode_has_perm(struct task_struct
*tsk
,
1075 struct inode
*inode
,
1077 struct avc_audit_data
*adp
)
1079 struct task_security_struct
*tsec
;
1080 struct inode_security_struct
*isec
;
1081 struct avc_audit_data ad
;
1083 if (unlikely (IS_PRIVATE (inode
)))
1086 tsec
= tsk
->security
;
1087 isec
= inode
->i_security
;
1091 AVC_AUDIT_DATA_INIT(&ad
, FS
);
1092 ad
.u
.fs
.inode
= inode
;
1095 return avc_has_perm(tsec
->sid
, isec
->sid
, isec
->sclass
, perms
, adp
);
1098 /* Same as inode_has_perm, but pass explicit audit data containing
1099 the dentry to help the auditing code to more easily generate the
1100 pathname if needed. */
1101 static inline int dentry_has_perm(struct task_struct
*tsk
,
1102 struct vfsmount
*mnt
,
1103 struct dentry
*dentry
,
1106 struct inode
*inode
= dentry
->d_inode
;
1107 struct avc_audit_data ad
;
1108 AVC_AUDIT_DATA_INIT(&ad
,FS
);
1110 ad
.u
.fs
.dentry
= dentry
;
1111 return inode_has_perm(tsk
, inode
, av
, &ad
);
1114 /* Check whether a task can use an open file descriptor to
1115 access an inode in a given way. Check access to the
1116 descriptor itself, and then use dentry_has_perm to
1117 check a particular permission to the file.
1118 Access to the descriptor is implicitly granted if it
1119 has the same SID as the process. If av is zero, then
1120 access to the file is not checked, e.g. for cases
1121 where only the descriptor is affected like seek. */
1122 static int file_has_perm(struct task_struct
*tsk
,
1126 struct task_security_struct
*tsec
= tsk
->security
;
1127 struct file_security_struct
*fsec
= file
->f_security
;
1128 struct vfsmount
*mnt
= file
->f_path
.mnt
;
1129 struct dentry
*dentry
= file
->f_path
.dentry
;
1130 struct inode
*inode
= dentry
->d_inode
;
1131 struct avc_audit_data ad
;
1134 AVC_AUDIT_DATA_INIT(&ad
, FS
);
1136 ad
.u
.fs
.dentry
= dentry
;
1138 if (tsec
->sid
!= fsec
->sid
) {
1139 rc
= avc_has_perm(tsec
->sid
, fsec
->sid
,
1147 /* av is zero if only checking access to the descriptor. */
1149 return inode_has_perm(tsk
, inode
, av
, &ad
);
1154 /* Check whether a task can create a file. */
1155 static int may_create(struct inode
*dir
,
1156 struct dentry
*dentry
,
1159 struct task_security_struct
*tsec
;
1160 struct inode_security_struct
*dsec
;
1161 struct superblock_security_struct
*sbsec
;
1163 struct avc_audit_data ad
;
1166 tsec
= current
->security
;
1167 dsec
= dir
->i_security
;
1168 sbsec
= dir
->i_sb
->s_security
;
1170 AVC_AUDIT_DATA_INIT(&ad
, FS
);
1171 ad
.u
.fs
.dentry
= dentry
;
1173 rc
= avc_has_perm(tsec
->sid
, dsec
->sid
, SECCLASS_DIR
,
1174 DIR__ADD_NAME
| DIR__SEARCH
,
1179 if (tsec
->create_sid
&& sbsec
->behavior
!= SECURITY_FS_USE_MNTPOINT
) {
1180 newsid
= tsec
->create_sid
;
1182 rc
= security_transition_sid(tsec
->sid
, dsec
->sid
, tclass
,
1188 rc
= avc_has_perm(tsec
->sid
, newsid
, tclass
, FILE__CREATE
, &ad
);
1192 return avc_has_perm(newsid
, sbsec
->sid
,
1193 SECCLASS_FILESYSTEM
,
1194 FILESYSTEM__ASSOCIATE
, &ad
);
1197 /* Check whether a task can create a key. */
1198 static int may_create_key(u32 ksid
,
1199 struct task_struct
*ctx
)
1201 struct task_security_struct
*tsec
;
1203 tsec
= ctx
->security
;
1205 return avc_has_perm(tsec
->sid
, ksid
, SECCLASS_KEY
, KEY__CREATE
, NULL
);
1209 #define MAY_UNLINK 1
1212 /* Check whether a task can link, unlink, or rmdir a file/directory. */
1213 static int may_link(struct inode
*dir
,
1214 struct dentry
*dentry
,
1218 struct task_security_struct
*tsec
;
1219 struct inode_security_struct
*dsec
, *isec
;
1220 struct avc_audit_data ad
;
1224 tsec
= current
->security
;
1225 dsec
= dir
->i_security
;
1226 isec
= dentry
->d_inode
->i_security
;
1228 AVC_AUDIT_DATA_INIT(&ad
, FS
);
1229 ad
.u
.fs
.dentry
= dentry
;
1232 av
|= (kind
? DIR__REMOVE_NAME
: DIR__ADD_NAME
);
1233 rc
= avc_has_perm(tsec
->sid
, dsec
->sid
, SECCLASS_DIR
, av
, &ad
);
1248 printk(KERN_WARNING
"may_link: unrecognized kind %d\n", kind
);
1252 rc
= avc_has_perm(tsec
->sid
, isec
->sid
, isec
->sclass
, av
, &ad
);
1256 static inline int may_rename(struct inode
*old_dir
,
1257 struct dentry
*old_dentry
,
1258 struct inode
*new_dir
,
1259 struct dentry
*new_dentry
)
1261 struct task_security_struct
*tsec
;
1262 struct inode_security_struct
*old_dsec
, *new_dsec
, *old_isec
, *new_isec
;
1263 struct avc_audit_data ad
;
1265 int old_is_dir
, new_is_dir
;
1268 tsec
= current
->security
;
1269 old_dsec
= old_dir
->i_security
;
1270 old_isec
= old_dentry
->d_inode
->i_security
;
1271 old_is_dir
= S_ISDIR(old_dentry
->d_inode
->i_mode
);
1272 new_dsec
= new_dir
->i_security
;
1274 AVC_AUDIT_DATA_INIT(&ad
, FS
);
1276 ad
.u
.fs
.dentry
= old_dentry
;
1277 rc
= avc_has_perm(tsec
->sid
, old_dsec
->sid
, SECCLASS_DIR
,
1278 DIR__REMOVE_NAME
| DIR__SEARCH
, &ad
);
1281 rc
= avc_has_perm(tsec
->sid
, old_isec
->sid
,
1282 old_isec
->sclass
, FILE__RENAME
, &ad
);
1285 if (old_is_dir
&& new_dir
!= old_dir
) {
1286 rc
= avc_has_perm(tsec
->sid
, old_isec
->sid
,
1287 old_isec
->sclass
, DIR__REPARENT
, &ad
);
1292 ad
.u
.fs
.dentry
= new_dentry
;
1293 av
= DIR__ADD_NAME
| DIR__SEARCH
;
1294 if (new_dentry
->d_inode
)
1295 av
|= DIR__REMOVE_NAME
;
1296 rc
= avc_has_perm(tsec
->sid
, new_dsec
->sid
, SECCLASS_DIR
, av
, &ad
);
1299 if (new_dentry
->d_inode
) {
1300 new_isec
= new_dentry
->d_inode
->i_security
;
1301 new_is_dir
= S_ISDIR(new_dentry
->d_inode
->i_mode
);
1302 rc
= avc_has_perm(tsec
->sid
, new_isec
->sid
,
1304 (new_is_dir
? DIR__RMDIR
: FILE__UNLINK
), &ad
);
1312 /* Check whether a task can perform a filesystem operation. */
1313 static int superblock_has_perm(struct task_struct
*tsk
,
1314 struct super_block
*sb
,
1316 struct avc_audit_data
*ad
)
1318 struct task_security_struct
*tsec
;
1319 struct superblock_security_struct
*sbsec
;
1321 tsec
= tsk
->security
;
1322 sbsec
= sb
->s_security
;
1323 return avc_has_perm(tsec
->sid
, sbsec
->sid
, SECCLASS_FILESYSTEM
,
1327 /* Convert a Linux mode and permission mask to an access vector. */
1328 static inline u32
file_mask_to_av(int mode
, int mask
)
1332 if ((mode
& S_IFMT
) != S_IFDIR
) {
1333 if (mask
& MAY_EXEC
)
1334 av
|= FILE__EXECUTE
;
1335 if (mask
& MAY_READ
)
1338 if (mask
& MAY_APPEND
)
1340 else if (mask
& MAY_WRITE
)
1344 if (mask
& MAY_EXEC
)
1346 if (mask
& MAY_WRITE
)
1348 if (mask
& MAY_READ
)
1355 /* Convert a Linux file to an access vector. */
1356 static inline u32
file_to_av(struct file
*file
)
1360 if (file
->f_mode
& FMODE_READ
)
1362 if (file
->f_mode
& FMODE_WRITE
) {
1363 if (file
->f_flags
& O_APPEND
)
1372 /* Hook functions begin here. */
1374 static int selinux_ptrace(struct task_struct
*parent
, struct task_struct
*child
)
1376 struct task_security_struct
*psec
= parent
->security
;
1377 struct task_security_struct
*csec
= child
->security
;
1380 rc
= secondary_ops
->ptrace(parent
,child
);
1384 rc
= task_has_perm(parent
, child
, PROCESS__PTRACE
);
1385 /* Save the SID of the tracing process for later use in apply_creds. */
1386 if (!(child
->ptrace
& PT_PTRACED
) && !rc
)
1387 csec
->ptrace_sid
= psec
->sid
;
1391 static int selinux_capget(struct task_struct
*target
, kernel_cap_t
*effective
,
1392 kernel_cap_t
*inheritable
, kernel_cap_t
*permitted
)
1396 error
= task_has_perm(current
, target
, PROCESS__GETCAP
);
1400 return secondary_ops
->capget(target
, effective
, inheritable
, permitted
);
1403 static int selinux_capset_check(struct task_struct
*target
, kernel_cap_t
*effective
,
1404 kernel_cap_t
*inheritable
, kernel_cap_t
*permitted
)
1408 error
= secondary_ops
->capset_check(target
, effective
, inheritable
, permitted
);
1412 return task_has_perm(current
, target
, PROCESS__SETCAP
);
1415 static void selinux_capset_set(struct task_struct
*target
, kernel_cap_t
*effective
,
1416 kernel_cap_t
*inheritable
, kernel_cap_t
*permitted
)
1418 secondary_ops
->capset_set(target
, effective
, inheritable
, permitted
);
1421 static int selinux_capable(struct task_struct
*tsk
, int cap
)
1425 rc
= secondary_ops
->capable(tsk
, cap
);
1429 return task_has_capability(tsk
,cap
);
1432 static int selinux_sysctl_get_sid(ctl_table
*table
, u16 tclass
, u32
*sid
)
1435 char *buffer
, *path
, *end
;
1438 buffer
= (char*)__get_free_page(GFP_KERNEL
);
1443 end
= buffer
+buflen
;
1449 const char *name
= table
->procname
;
1450 size_t namelen
= strlen(name
);
1451 buflen
-= namelen
+ 1;
1455 memcpy(end
, name
, namelen
);
1458 table
= table
->parent
;
1464 memcpy(end
, "/sys", 4);
1466 rc
= security_genfs_sid("proc", path
, tclass
, sid
);
1468 free_page((unsigned long)buffer
);
1473 static int selinux_sysctl(ctl_table
*table
, int op
)
1477 struct task_security_struct
*tsec
;
1481 rc
= secondary_ops
->sysctl(table
, op
);
1485 tsec
= current
->security
;
1487 rc
= selinux_sysctl_get_sid(table
, (op
== 0001) ?
1488 SECCLASS_DIR
: SECCLASS_FILE
, &tsid
);
1490 /* Default to the well-defined sysctl SID. */
1491 tsid
= SECINITSID_SYSCTL
;
1494 /* The op values are "defined" in sysctl.c, thereby creating
1495 * a bad coupling between this module and sysctl.c */
1497 error
= avc_has_perm(tsec
->sid
, tsid
,
1498 SECCLASS_DIR
, DIR__SEARCH
, NULL
);
1506 error
= avc_has_perm(tsec
->sid
, tsid
,
1507 SECCLASS_FILE
, av
, NULL
);
1513 static int selinux_quotactl(int cmds
, int type
, int id
, struct super_block
*sb
)
1526 rc
= superblock_has_perm(current
,
1528 FILESYSTEM__QUOTAMOD
, NULL
);
1533 rc
= superblock_has_perm(current
,
1535 FILESYSTEM__QUOTAGET
, NULL
);
1538 rc
= 0; /* let the kernel handle invalid cmds */
1544 static int selinux_quota_on(struct dentry
*dentry
)
1546 return dentry_has_perm(current
, NULL
, dentry
, FILE__QUOTAON
);
1549 static int selinux_syslog(int type
)
1553 rc
= secondary_ops
->syslog(type
);
1558 case 3: /* Read last kernel messages */
1559 case 10: /* Return size of the log buffer */
1560 rc
= task_has_system(current
, SYSTEM__SYSLOG_READ
);
1562 case 6: /* Disable logging to console */
1563 case 7: /* Enable logging to console */
1564 case 8: /* Set level of messages printed to console */
1565 rc
= task_has_system(current
, SYSTEM__SYSLOG_CONSOLE
);
1567 case 0: /* Close log */
1568 case 1: /* Open log */
1569 case 2: /* Read from log */
1570 case 4: /* Read/clear last kernel messages */
1571 case 5: /* Clear ring buffer */
1573 rc
= task_has_system(current
, SYSTEM__SYSLOG_MOD
);
1580 * Check that a process has enough memory to allocate a new virtual
1581 * mapping. 0 means there is enough memory for the allocation to
1582 * succeed and -ENOMEM implies there is not.
1584 * Note that secondary_ops->capable and task_has_perm_noaudit return 0
1585 * if the capability is granted, but __vm_enough_memory requires 1 if
1586 * the capability is granted.
1588 * Do not audit the selinux permission check, as this is applied to all
1589 * processes that allocate mappings.
1591 static int selinux_vm_enough_memory(struct mm_struct
*mm
, long pages
)
1593 int rc
, cap_sys_admin
= 0;
1594 struct task_security_struct
*tsec
= current
->security
;
1596 rc
= secondary_ops
->capable(current
, CAP_SYS_ADMIN
);
1598 rc
= avc_has_perm_noaudit(tsec
->sid
, tsec
->sid
,
1599 SECCLASS_CAPABILITY
,
1600 CAP_TO_MASK(CAP_SYS_ADMIN
),
1607 return __vm_enough_memory(mm
, pages
, cap_sys_admin
);
1610 /* binprm security operations */
1612 static int selinux_bprm_alloc_security(struct linux_binprm
*bprm
)
1614 struct bprm_security_struct
*bsec
;
1616 bsec
= kzalloc(sizeof(struct bprm_security_struct
), GFP_KERNEL
);
1621 bsec
->sid
= SECINITSID_UNLABELED
;
1624 bprm
->security
= bsec
;
1628 static int selinux_bprm_set_security(struct linux_binprm
*bprm
)
1630 struct task_security_struct
*tsec
;
1631 struct inode
*inode
= bprm
->file
->f_path
.dentry
->d_inode
;
1632 struct inode_security_struct
*isec
;
1633 struct bprm_security_struct
*bsec
;
1635 struct avc_audit_data ad
;
1638 rc
= secondary_ops
->bprm_set_security(bprm
);
1642 bsec
= bprm
->security
;
1647 tsec
= current
->security
;
1648 isec
= inode
->i_security
;
1650 /* Default to the current task SID. */
1651 bsec
->sid
= tsec
->sid
;
1653 /* Reset fs, key, and sock SIDs on execve. */
1654 tsec
->create_sid
= 0;
1655 tsec
->keycreate_sid
= 0;
1656 tsec
->sockcreate_sid
= 0;
1658 if (tsec
->exec_sid
) {
1659 newsid
= tsec
->exec_sid
;
1660 /* Reset exec SID on execve. */
1663 /* Check for a default transition on this program. */
1664 rc
= security_transition_sid(tsec
->sid
, isec
->sid
,
1665 SECCLASS_PROCESS
, &newsid
);
1670 AVC_AUDIT_DATA_INIT(&ad
, FS
);
1671 ad
.u
.fs
.mnt
= bprm
->file
->f_path
.mnt
;
1672 ad
.u
.fs
.dentry
= bprm
->file
->f_path
.dentry
;
1674 if (bprm
->file
->f_path
.mnt
->mnt_flags
& MNT_NOSUID
)
1677 if (tsec
->sid
== newsid
) {
1678 rc
= avc_has_perm(tsec
->sid
, isec
->sid
,
1679 SECCLASS_FILE
, FILE__EXECUTE_NO_TRANS
, &ad
);
1683 /* Check permissions for the transition. */
1684 rc
= avc_has_perm(tsec
->sid
, newsid
,
1685 SECCLASS_PROCESS
, PROCESS__TRANSITION
, &ad
);
1689 rc
= avc_has_perm(newsid
, isec
->sid
,
1690 SECCLASS_FILE
, FILE__ENTRYPOINT
, &ad
);
1694 /* Clear any possibly unsafe personality bits on exec: */
1695 current
->personality
&= ~PER_CLEAR_ON_SETID
;
1697 /* Set the security field to the new SID. */
1705 static int selinux_bprm_check_security (struct linux_binprm
*bprm
)
1707 return secondary_ops
->bprm_check_security(bprm
);
1711 static int selinux_bprm_secureexec (struct linux_binprm
*bprm
)
1713 struct task_security_struct
*tsec
= current
->security
;
1716 if (tsec
->osid
!= tsec
->sid
) {
1717 /* Enable secure mode for SIDs transitions unless
1718 the noatsecure permission is granted between
1719 the two SIDs, i.e. ahp returns 0. */
1720 atsecure
= avc_has_perm(tsec
->osid
, tsec
->sid
,
1722 PROCESS__NOATSECURE
, NULL
);
1725 return (atsecure
|| secondary_ops
->bprm_secureexec(bprm
));
1728 static void selinux_bprm_free_security(struct linux_binprm
*bprm
)
1730 kfree(bprm
->security
);
1731 bprm
->security
= NULL
;
1734 extern struct vfsmount
*selinuxfs_mount
;
1735 extern struct dentry
*selinux_null
;
1737 /* Derived from fs/exec.c:flush_old_files. */
1738 static inline void flush_unauthorized_files(struct files_struct
* files
)
1740 struct avc_audit_data ad
;
1741 struct file
*file
, *devnull
= NULL
;
1742 struct tty_struct
*tty
;
1743 struct fdtable
*fdt
;
1747 mutex_lock(&tty_mutex
);
1748 tty
= get_current_tty();
1751 file
= list_entry(tty
->tty_files
.next
, typeof(*file
), f_u
.fu_list
);
1753 /* Revalidate access to controlling tty.
1754 Use inode_has_perm on the tty inode directly rather
1755 than using file_has_perm, as this particular open
1756 file may belong to another process and we are only
1757 interested in the inode-based check here. */
1758 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1759 if (inode_has_perm(current
, inode
,
1760 FILE__READ
| FILE__WRITE
, NULL
)) {
1766 mutex_unlock(&tty_mutex
);
1767 /* Reset controlling tty. */
1771 /* Revalidate access to inherited open files. */
1773 AVC_AUDIT_DATA_INIT(&ad
,FS
);
1775 spin_lock(&files
->file_lock
);
1777 unsigned long set
, i
;
1782 fdt
= files_fdtable(files
);
1783 if (i
>= fdt
->max_fds
)
1785 set
= fdt
->open_fds
->fds_bits
[j
];
1788 spin_unlock(&files
->file_lock
);
1789 for ( ; set
; i
++,set
>>= 1) {
1794 if (file_has_perm(current
,
1796 file_to_av(file
))) {
1798 fd
= get_unused_fd();
1808 devnull
= dentry_open(dget(selinux_null
), mntget(selinuxfs_mount
), O_RDWR
);
1809 if (IS_ERR(devnull
)) {
1816 fd_install(fd
, devnull
);
1821 spin_lock(&files
->file_lock
);
1824 spin_unlock(&files
->file_lock
);
1827 static void selinux_bprm_apply_creds(struct linux_binprm
*bprm
, int unsafe
)
1829 struct task_security_struct
*tsec
;
1830 struct bprm_security_struct
*bsec
;
1834 secondary_ops
->bprm_apply_creds(bprm
, unsafe
);
1836 tsec
= current
->security
;
1838 bsec
= bprm
->security
;
1841 tsec
->osid
= tsec
->sid
;
1843 if (tsec
->sid
!= sid
) {
1844 /* Check for shared state. If not ok, leave SID
1845 unchanged and kill. */
1846 if (unsafe
& LSM_UNSAFE_SHARE
) {
1847 rc
= avc_has_perm(tsec
->sid
, sid
, SECCLASS_PROCESS
,
1848 PROCESS__SHARE
, NULL
);
1855 /* Check for ptracing, and update the task SID if ok.
1856 Otherwise, leave SID unchanged and kill. */
1857 if (unsafe
& (LSM_UNSAFE_PTRACE
| LSM_UNSAFE_PTRACE_CAP
)) {
1858 rc
= avc_has_perm(tsec
->ptrace_sid
, sid
,
1859 SECCLASS_PROCESS
, PROCESS__PTRACE
,
1871 * called after apply_creds without the task lock held
1873 static void selinux_bprm_post_apply_creds(struct linux_binprm
*bprm
)
1875 struct task_security_struct
*tsec
;
1876 struct rlimit
*rlim
, *initrlim
;
1877 struct itimerval itimer
;
1878 struct bprm_security_struct
*bsec
;
1881 tsec
= current
->security
;
1882 bsec
= bprm
->security
;
1885 force_sig_specific(SIGKILL
, current
);
1888 if (tsec
->osid
== tsec
->sid
)
1891 /* Close files for which the new task SID is not authorized. */
1892 flush_unauthorized_files(current
->files
);
1894 /* Check whether the new SID can inherit signal state
1895 from the old SID. If not, clear itimers to avoid
1896 subsequent signal generation and flush and unblock
1897 signals. This must occur _after_ the task SID has
1898 been updated so that any kill done after the flush
1899 will be checked against the new SID. */
1900 rc
= avc_has_perm(tsec
->osid
, tsec
->sid
, SECCLASS_PROCESS
,
1901 PROCESS__SIGINH
, NULL
);
1903 memset(&itimer
, 0, sizeof itimer
);
1904 for (i
= 0; i
< 3; i
++)
1905 do_setitimer(i
, &itimer
, NULL
);
1906 flush_signals(current
);
1907 spin_lock_irq(¤t
->sighand
->siglock
);
1908 flush_signal_handlers(current
, 1);
1909 sigemptyset(¤t
->blocked
);
1910 recalc_sigpending();
1911 spin_unlock_irq(¤t
->sighand
->siglock
);
1914 /* Always clear parent death signal on SID transitions. */
1915 current
->pdeath_signal
= 0;
1917 /* Check whether the new SID can inherit resource limits
1918 from the old SID. If not, reset all soft limits to
1919 the lower of the current task's hard limit and the init
1920 task's soft limit. Note that the setting of hard limits
1921 (even to lower them) can be controlled by the setrlimit
1922 check. The inclusion of the init task's soft limit into
1923 the computation is to avoid resetting soft limits higher
1924 than the default soft limit for cases where the default
1925 is lower than the hard limit, e.g. RLIMIT_CORE or
1927 rc
= avc_has_perm(tsec
->osid
, tsec
->sid
, SECCLASS_PROCESS
,
1928 PROCESS__RLIMITINH
, NULL
);
1930 for (i
= 0; i
< RLIM_NLIMITS
; i
++) {
1931 rlim
= current
->signal
->rlim
+ i
;
1932 initrlim
= init_task
.signal
->rlim
+i
;
1933 rlim
->rlim_cur
= min(rlim
->rlim_max
,initrlim
->rlim_cur
);
1935 if (current
->signal
->rlim
[RLIMIT_CPU
].rlim_cur
!= RLIM_INFINITY
) {
1937 * This will cause RLIMIT_CPU calculations
1940 current
->it_prof_expires
= jiffies_to_cputime(1);
1944 /* Wake up the parent if it is waiting so that it can
1945 recheck wait permission to the new task SID. */
1946 wake_up_interruptible(¤t
->parent
->signal
->wait_chldexit
);
1949 /* superblock security operations */
1951 static int selinux_sb_alloc_security(struct super_block
*sb
)
1953 return superblock_alloc_security(sb
);
1956 static void selinux_sb_free_security(struct super_block
*sb
)
1958 superblock_free_security(sb
);
1961 static inline int match_prefix(char *prefix
, int plen
, char *option
, int olen
)
1966 return !memcmp(prefix
, option
, plen
);
1969 static inline int selinux_option(char *option
, int len
)
1971 return (match_prefix("context=", sizeof("context=")-1, option
, len
) ||
1972 match_prefix("fscontext=", sizeof("fscontext=")-1, option
, len
) ||
1973 match_prefix("defcontext=", sizeof("defcontext=")-1, option
, len
) ||
1974 match_prefix("rootcontext=", sizeof("rootcontext=")-1, option
, len
));
1977 static inline void take_option(char **to
, char *from
, int *first
, int len
)
1984 memcpy(*to
, from
, len
);
1988 static inline void take_selinux_option(char **to
, char *from
, int *first
,
1991 int current_size
= 0;
2000 while (current_size
< len
) {
2010 static int selinux_sb_copy_data(struct file_system_type
*type
, void *orig
, void *copy
)
2012 int fnosec
, fsec
, rc
= 0;
2013 char *in_save
, *in_curr
, *in_end
;
2014 char *sec_curr
, *nosec_save
, *nosec
;
2020 /* Binary mount data: just copy */
2021 if (type
->fs_flags
& FS_BINARY_MOUNTDATA
) {
2022 copy_page(sec_curr
, in_curr
);
2026 nosec
= (char *)get_zeroed_page(GFP_KERNEL
);
2034 in_save
= in_end
= orig
;
2038 open_quote
= !open_quote
;
2039 if ((*in_end
== ',' && open_quote
== 0) ||
2041 int len
= in_end
- in_curr
;
2043 if (selinux_option(in_curr
, len
))
2044 take_selinux_option(&sec_curr
, in_curr
, &fsec
, len
);
2046 take_option(&nosec
, in_curr
, &fnosec
, len
);
2048 in_curr
= in_end
+ 1;
2050 } while (*in_end
++);
2052 strcpy(in_save
, nosec_save
);
2053 free_page((unsigned long)nosec_save
);
2058 static int selinux_sb_kern_mount(struct super_block
*sb
, void *data
)
2060 struct avc_audit_data ad
;
2063 rc
= superblock_doinit(sb
, data
);
2067 AVC_AUDIT_DATA_INIT(&ad
,FS
);
2068 ad
.u
.fs
.dentry
= sb
->s_root
;
2069 return superblock_has_perm(current
, sb
, FILESYSTEM__MOUNT
, &ad
);
2072 static int selinux_sb_statfs(struct dentry
*dentry
)
2074 struct avc_audit_data ad
;
2076 AVC_AUDIT_DATA_INIT(&ad
,FS
);
2077 ad
.u
.fs
.dentry
= dentry
->d_sb
->s_root
;
2078 return superblock_has_perm(current
, dentry
->d_sb
, FILESYSTEM__GETATTR
, &ad
);
2081 static int selinux_mount(char * dev_name
,
2082 struct nameidata
*nd
,
2084 unsigned long flags
,
2089 rc
= secondary_ops
->sb_mount(dev_name
, nd
, type
, flags
, data
);
2093 if (flags
& MS_REMOUNT
)
2094 return superblock_has_perm(current
, nd
->mnt
->mnt_sb
,
2095 FILESYSTEM__REMOUNT
, NULL
);
2097 return dentry_has_perm(current
, nd
->mnt
, nd
->dentry
,
2101 static int selinux_umount(struct vfsmount
*mnt
, int flags
)
2105 rc
= secondary_ops
->sb_umount(mnt
, flags
);
2109 return superblock_has_perm(current
,mnt
->mnt_sb
,
2110 FILESYSTEM__UNMOUNT
,NULL
);
2113 /* inode security operations */
2115 static int selinux_inode_alloc_security(struct inode
*inode
)
2117 return inode_alloc_security(inode
);
2120 static void selinux_inode_free_security(struct inode
*inode
)
2122 inode_free_security(inode
);
2125 static int selinux_inode_init_security(struct inode
*inode
, struct inode
*dir
,
2126 char **name
, void **value
,
2129 struct task_security_struct
*tsec
;
2130 struct inode_security_struct
*dsec
;
2131 struct superblock_security_struct
*sbsec
;
2134 char *namep
= NULL
, *context
;
2136 tsec
= current
->security
;
2137 dsec
= dir
->i_security
;
2138 sbsec
= dir
->i_sb
->s_security
;
2140 if (tsec
->create_sid
&& sbsec
->behavior
!= SECURITY_FS_USE_MNTPOINT
) {
2141 newsid
= tsec
->create_sid
;
2143 rc
= security_transition_sid(tsec
->sid
, dsec
->sid
,
2144 inode_mode_to_security_class(inode
->i_mode
),
2147 printk(KERN_WARNING
"%s: "
2148 "security_transition_sid failed, rc=%d (dev=%s "
2151 -rc
, inode
->i_sb
->s_id
, inode
->i_ino
);
2156 /* Possibly defer initialization to selinux_complete_init. */
2157 if (sbsec
->initialized
) {
2158 struct inode_security_struct
*isec
= inode
->i_security
;
2159 isec
->sclass
= inode_mode_to_security_class(inode
->i_mode
);
2161 isec
->initialized
= 1;
2164 if (!ss_initialized
|| sbsec
->behavior
== SECURITY_FS_USE_MNTPOINT
)
2168 namep
= kstrdup(XATTR_SELINUX_SUFFIX
, GFP_KERNEL
);
2175 rc
= security_sid_to_context(newsid
, &context
, &clen
);
2187 static int selinux_inode_create(struct inode
*dir
, struct dentry
*dentry
, int mask
)
2189 return may_create(dir
, dentry
, SECCLASS_FILE
);
2192 static int selinux_inode_link(struct dentry
*old_dentry
, struct inode
*dir
, struct dentry
*new_dentry
)
2196 rc
= secondary_ops
->inode_link(old_dentry
,dir
,new_dentry
);
2199 return may_link(dir
, old_dentry
, MAY_LINK
);
2202 static int selinux_inode_unlink(struct inode
*dir
, struct dentry
*dentry
)
2206 rc
= secondary_ops
->inode_unlink(dir
, dentry
);
2209 return may_link(dir
, dentry
, MAY_UNLINK
);
2212 static int selinux_inode_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *name
)
2214 return may_create(dir
, dentry
, SECCLASS_LNK_FILE
);
2217 static int selinux_inode_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mask
)
2219 return may_create(dir
, dentry
, SECCLASS_DIR
);
2222 static int selinux_inode_rmdir(struct inode
*dir
, struct dentry
*dentry
)
2224 return may_link(dir
, dentry
, MAY_RMDIR
);
2227 static int selinux_inode_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t dev
)
2231 rc
= secondary_ops
->inode_mknod(dir
, dentry
, mode
, dev
);
2235 return may_create(dir
, dentry
, inode_mode_to_security_class(mode
));
2238 static int selinux_inode_rename(struct inode
*old_inode
, struct dentry
*old_dentry
,
2239 struct inode
*new_inode
, struct dentry
*new_dentry
)
2241 return may_rename(old_inode
, old_dentry
, new_inode
, new_dentry
);
2244 static int selinux_inode_readlink(struct dentry
*dentry
)
2246 return dentry_has_perm(current
, NULL
, dentry
, FILE__READ
);
2249 static int selinux_inode_follow_link(struct dentry
*dentry
, struct nameidata
*nameidata
)
2253 rc
= secondary_ops
->inode_follow_link(dentry
,nameidata
);
2256 return dentry_has_perm(current
, NULL
, dentry
, FILE__READ
);
2259 static int selinux_inode_permission(struct inode
*inode
, int mask
,
2260 struct nameidata
*nd
)
2264 rc
= secondary_ops
->inode_permission(inode
, mask
, nd
);
2269 /* No permission to check. Existence test. */
2273 return inode_has_perm(current
, inode
,
2274 file_mask_to_av(inode
->i_mode
, mask
), NULL
);
2277 static int selinux_inode_setattr(struct dentry
*dentry
, struct iattr
*iattr
)
2281 rc
= secondary_ops
->inode_setattr(dentry
, iattr
);
2285 if (iattr
->ia_valid
& ATTR_FORCE
)
2288 if (iattr
->ia_valid
& (ATTR_MODE
| ATTR_UID
| ATTR_GID
|
2289 ATTR_ATIME_SET
| ATTR_MTIME_SET
))
2290 return dentry_has_perm(current
, NULL
, dentry
, FILE__SETATTR
);
2292 return dentry_has_perm(current
, NULL
, dentry
, FILE__WRITE
);
2295 static int selinux_inode_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
)
2297 return dentry_has_perm(current
, mnt
, dentry
, FILE__GETATTR
);
2300 static int selinux_inode_setotherxattr(struct dentry
*dentry
, char *name
)
2302 if (!strncmp(name
, XATTR_SECURITY_PREFIX
,
2303 sizeof XATTR_SECURITY_PREFIX
- 1)) {
2304 if (!strcmp(name
, XATTR_NAME_CAPS
)) {
2305 if (!capable(CAP_SETFCAP
))
2307 } else if (!capable(CAP_SYS_ADMIN
)) {
2308 /* A different attribute in the security namespace.
2309 Restrict to administrator. */
2314 /* Not an attribute we recognize, so just check the
2315 ordinary setattr permission. */
2316 return dentry_has_perm(current
, NULL
, dentry
, FILE__SETATTR
);
2319 static int selinux_inode_setxattr(struct dentry
*dentry
, char *name
, void *value
, size_t size
, int flags
)
2321 struct task_security_struct
*tsec
= current
->security
;
2322 struct inode
*inode
= dentry
->d_inode
;
2323 struct inode_security_struct
*isec
= inode
->i_security
;
2324 struct superblock_security_struct
*sbsec
;
2325 struct avc_audit_data ad
;
2329 if (strcmp(name
, XATTR_NAME_SELINUX
))
2330 return selinux_inode_setotherxattr(dentry
, name
);
2332 sbsec
= inode
->i_sb
->s_security
;
2333 if (sbsec
->behavior
== SECURITY_FS_USE_MNTPOINT
)
2336 if (!is_owner_or_cap(inode
))
2339 AVC_AUDIT_DATA_INIT(&ad
,FS
);
2340 ad
.u
.fs
.dentry
= dentry
;
2342 rc
= avc_has_perm(tsec
->sid
, isec
->sid
, isec
->sclass
,
2343 FILE__RELABELFROM
, &ad
);
2347 rc
= security_context_to_sid(value
, size
, &newsid
);
2351 rc
= avc_has_perm(tsec
->sid
, newsid
, isec
->sclass
,
2352 FILE__RELABELTO
, &ad
);
2356 rc
= security_validate_transition(isec
->sid
, newsid
, tsec
->sid
,
2361 return avc_has_perm(newsid
,
2363 SECCLASS_FILESYSTEM
,
2364 FILESYSTEM__ASSOCIATE
,
2368 static void selinux_inode_post_setxattr(struct dentry
*dentry
, char *name
,
2369 void *value
, size_t size
, int flags
)
2371 struct inode
*inode
= dentry
->d_inode
;
2372 struct inode_security_struct
*isec
= inode
->i_security
;
2376 if (strcmp(name
, XATTR_NAME_SELINUX
)) {
2377 /* Not an attribute we recognize, so nothing to do. */
2381 rc
= security_context_to_sid(value
, size
, &newsid
);
2383 printk(KERN_WARNING
"%s: unable to obtain SID for context "
2384 "%s, rc=%d\n", __FUNCTION__
, (char*)value
, -rc
);
2392 static int selinux_inode_getxattr (struct dentry
*dentry
, char *name
)
2394 return dentry_has_perm(current
, NULL
, dentry
, FILE__GETATTR
);
2397 static int selinux_inode_listxattr (struct dentry
*dentry
)
2399 return dentry_has_perm(current
, NULL
, dentry
, FILE__GETATTR
);
2402 static int selinux_inode_removexattr (struct dentry
*dentry
, char *name
)
2404 if (strcmp(name
, XATTR_NAME_SELINUX
))
2405 return selinux_inode_setotherxattr(dentry
, name
);
2407 /* No one is allowed to remove a SELinux security label.
2408 You can change the label, but all data must be labeled. */
2413 * Copy the in-core inode security context value to the user. If the
2414 * getxattr() prior to this succeeded, check to see if we need to
2415 * canonicalize the value to be finally returned to the user.
2417 * Permission check is handled by selinux_inode_getxattr hook.
2419 static int selinux_inode_getsecurity(const struct inode
*inode
, const char *name
, void *buffer
, size_t size
, int err
)
2421 struct inode_security_struct
*isec
= inode
->i_security
;
2423 if (strcmp(name
, XATTR_SELINUX_SUFFIX
))
2426 return selinux_getsecurity(isec
->sid
, buffer
, size
);
2429 static int selinux_inode_setsecurity(struct inode
*inode
, const char *name
,
2430 const void *value
, size_t size
, int flags
)
2432 struct inode_security_struct
*isec
= inode
->i_security
;
2436 if (strcmp(name
, XATTR_SELINUX_SUFFIX
))
2439 if (!value
|| !size
)
2442 rc
= security_context_to_sid((void*)value
, size
, &newsid
);
2450 static int selinux_inode_listsecurity(struct inode
*inode
, char *buffer
, size_t buffer_size
)
2452 const int len
= sizeof(XATTR_NAME_SELINUX
);
2453 if (buffer
&& len
<= buffer_size
)
2454 memcpy(buffer
, XATTR_NAME_SELINUX
, len
);
2458 static int selinux_inode_need_killpriv(struct dentry
*dentry
)
2460 return secondary_ops
->inode_need_killpriv(dentry
);
2463 static int selinux_inode_killpriv(struct dentry
*dentry
)
2465 return secondary_ops
->inode_killpriv(dentry
);
2468 /* file security operations */
2470 static int selinux_revalidate_file_permission(struct file
*file
, int mask
)
2473 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
2476 /* No permission to check. Existence test. */
2480 /* file_mask_to_av won't add FILE__WRITE if MAY_APPEND is set */
2481 if ((file
->f_flags
& O_APPEND
) && (mask
& MAY_WRITE
))
2484 rc
= file_has_perm(current
, file
,
2485 file_mask_to_av(inode
->i_mode
, mask
));
2489 return selinux_netlbl_inode_permission(inode
, mask
);
2492 static int selinux_file_permission(struct file
*file
, int mask
)
2494 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
2495 struct task_security_struct
*tsec
= current
->security
;
2496 struct file_security_struct
*fsec
= file
->f_security
;
2497 struct inode_security_struct
*isec
= inode
->i_security
;
2500 /* No permission to check. Existence test. */
2504 if (tsec
->sid
== fsec
->sid
&& fsec
->isid
== isec
->sid
2505 && fsec
->pseqno
== avc_policy_seqno())
2506 return selinux_netlbl_inode_permission(inode
, mask
);
2508 return selinux_revalidate_file_permission(file
, mask
);
2511 static int selinux_file_alloc_security(struct file
*file
)
2513 return file_alloc_security(file
);
2516 static void selinux_file_free_security(struct file
*file
)
2518 file_free_security(file
);
2521 static int selinux_file_ioctl(struct file
*file
, unsigned int cmd
,
2533 case EXT2_IOC_GETFLAGS
:
2535 case EXT2_IOC_GETVERSION
:
2536 error
= file_has_perm(current
, file
, FILE__GETATTR
);
2539 case EXT2_IOC_SETFLAGS
:
2541 case EXT2_IOC_SETVERSION
:
2542 error
= file_has_perm(current
, file
, FILE__SETATTR
);
2545 /* sys_ioctl() checks */
2549 error
= file_has_perm(current
, file
, 0);
2554 error
= task_has_capability(current
,CAP_SYS_TTY_CONFIG
);
2557 /* default case assumes that the command will go
2558 * to the file's ioctl() function.
2561 error
= file_has_perm(current
, file
, FILE__IOCTL
);
2567 static int file_map_prot_check(struct file
*file
, unsigned long prot
, int shared
)
2569 #ifndef CONFIG_PPC32
2570 if ((prot
& PROT_EXEC
) && (!file
|| (!shared
&& (prot
& PROT_WRITE
)))) {
2572 * We are making executable an anonymous mapping or a
2573 * private file mapping that will also be writable.
2574 * This has an additional check.
2576 int rc
= task_has_perm(current
, current
, PROCESS__EXECMEM
);
2583 /* read access is always possible with a mapping */
2584 u32 av
= FILE__READ
;
2586 /* write access only matters if the mapping is shared */
2587 if (shared
&& (prot
& PROT_WRITE
))
2590 if (prot
& PROT_EXEC
)
2591 av
|= FILE__EXECUTE
;
2593 return file_has_perm(current
, file
, av
);
2598 static int selinux_file_mmap(struct file
*file
, unsigned long reqprot
,
2599 unsigned long prot
, unsigned long flags
,
2600 unsigned long addr
, unsigned long addr_only
)
2603 u32 sid
= ((struct task_security_struct
*)(current
->security
))->sid
;
2605 if (addr
< mmap_min_addr
)
2606 rc
= avc_has_perm(sid
, sid
, SECCLASS_MEMPROTECT
,
2607 MEMPROTECT__MMAP_ZERO
, NULL
);
2608 if (rc
|| addr_only
)
2611 if (selinux_checkreqprot
)
2614 return file_map_prot_check(file
, prot
,
2615 (flags
& MAP_TYPE
) == MAP_SHARED
);
2618 static int selinux_file_mprotect(struct vm_area_struct
*vma
,
2619 unsigned long reqprot
,
2624 rc
= secondary_ops
->file_mprotect(vma
, reqprot
, prot
);
2628 if (selinux_checkreqprot
)
2631 #ifndef CONFIG_PPC32
2632 if ((prot
& PROT_EXEC
) && !(vma
->vm_flags
& VM_EXEC
)) {
2634 if (vma
->vm_start
>= vma
->vm_mm
->start_brk
&&
2635 vma
->vm_end
<= vma
->vm_mm
->brk
) {
2636 rc
= task_has_perm(current
, current
,
2638 } else if (!vma
->vm_file
&&
2639 vma
->vm_start
<= vma
->vm_mm
->start_stack
&&
2640 vma
->vm_end
>= vma
->vm_mm
->start_stack
) {
2641 rc
= task_has_perm(current
, current
, PROCESS__EXECSTACK
);
2642 } else if (vma
->vm_file
&& vma
->anon_vma
) {
2644 * We are making executable a file mapping that has
2645 * had some COW done. Since pages might have been
2646 * written, check ability to execute the possibly
2647 * modified content. This typically should only
2648 * occur for text relocations.
2650 rc
= file_has_perm(current
, vma
->vm_file
,
2658 return file_map_prot_check(vma
->vm_file
, prot
, vma
->vm_flags
&VM_SHARED
);
2661 static int selinux_file_lock(struct file
*file
, unsigned int cmd
)
2663 return file_has_perm(current
, file
, FILE__LOCK
);
2666 static int selinux_file_fcntl(struct file
*file
, unsigned int cmd
,
2673 if (!file
->f_path
.dentry
|| !file
->f_path
.dentry
->d_inode
) {
2678 if ((file
->f_flags
& O_APPEND
) && !(arg
& O_APPEND
)) {
2679 err
= file_has_perm(current
, file
,FILE__WRITE
);
2688 /* Just check FD__USE permission */
2689 err
= file_has_perm(current
, file
, 0);
2694 #if BITS_PER_LONG == 32
2699 if (!file
->f_path
.dentry
|| !file
->f_path
.dentry
->d_inode
) {
2703 err
= file_has_perm(current
, file
, FILE__LOCK
);
2710 static int selinux_file_set_fowner(struct file
*file
)
2712 struct task_security_struct
*tsec
;
2713 struct file_security_struct
*fsec
;
2715 tsec
= current
->security
;
2716 fsec
= file
->f_security
;
2717 fsec
->fown_sid
= tsec
->sid
;
2722 static int selinux_file_send_sigiotask(struct task_struct
*tsk
,
2723 struct fown_struct
*fown
, int signum
)
2727 struct task_security_struct
*tsec
;
2728 struct file_security_struct
*fsec
;
2730 /* struct fown_struct is never outside the context of a struct file */
2731 file
= container_of(fown
, struct file
, f_owner
);
2733 tsec
= tsk
->security
;
2734 fsec
= file
->f_security
;
2737 perm
= signal_to_av(SIGIO
); /* as per send_sigio_to_task */
2739 perm
= signal_to_av(signum
);
2741 return avc_has_perm(fsec
->fown_sid
, tsec
->sid
,
2742 SECCLASS_PROCESS
, perm
, NULL
);
2745 static int selinux_file_receive(struct file
*file
)
2747 return file_has_perm(current
, file
, file_to_av(file
));
2750 static int selinux_dentry_open(struct file
*file
)
2752 struct file_security_struct
*fsec
;
2753 struct inode
*inode
;
2754 struct inode_security_struct
*isec
;
2755 inode
= file
->f_path
.dentry
->d_inode
;
2756 fsec
= file
->f_security
;
2757 isec
= inode
->i_security
;
2759 * Save inode label and policy sequence number
2760 * at open-time so that selinux_file_permission
2761 * can determine whether revalidation is necessary.
2762 * Task label is already saved in the file security
2763 * struct as its SID.
2765 fsec
->isid
= isec
->sid
;
2766 fsec
->pseqno
= avc_policy_seqno();
2768 * Since the inode label or policy seqno may have changed
2769 * between the selinux_inode_permission check and the saving
2770 * of state above, recheck that access is still permitted.
2771 * Otherwise, access might never be revalidated against the
2772 * new inode label or new policy.
2773 * This check is not redundant - do not remove.
2775 return inode_has_perm(current
, inode
, file_to_av(file
), NULL
);
2778 /* task security operations */
2780 static int selinux_task_create(unsigned long clone_flags
)
2784 rc
= secondary_ops
->task_create(clone_flags
);
2788 return task_has_perm(current
, current
, PROCESS__FORK
);
2791 static int selinux_task_alloc_security(struct task_struct
*tsk
)
2793 struct task_security_struct
*tsec1
, *tsec2
;
2796 tsec1
= current
->security
;
2798 rc
= task_alloc_security(tsk
);
2801 tsec2
= tsk
->security
;
2803 tsec2
->osid
= tsec1
->osid
;
2804 tsec2
->sid
= tsec1
->sid
;
2806 /* Retain the exec, fs, key, and sock SIDs across fork */
2807 tsec2
->exec_sid
= tsec1
->exec_sid
;
2808 tsec2
->create_sid
= tsec1
->create_sid
;
2809 tsec2
->keycreate_sid
= tsec1
->keycreate_sid
;
2810 tsec2
->sockcreate_sid
= tsec1
->sockcreate_sid
;
2812 /* Retain ptracer SID across fork, if any.
2813 This will be reset by the ptrace hook upon any
2814 subsequent ptrace_attach operations. */
2815 tsec2
->ptrace_sid
= tsec1
->ptrace_sid
;
2820 static void selinux_task_free_security(struct task_struct
*tsk
)
2822 task_free_security(tsk
);
2825 static int selinux_task_setuid(uid_t id0
, uid_t id1
, uid_t id2
, int flags
)
2827 /* Since setuid only affects the current process, and
2828 since the SELinux controls are not based on the Linux
2829 identity attributes, SELinux does not need to control
2830 this operation. However, SELinux does control the use
2831 of the CAP_SETUID and CAP_SETGID capabilities using the
2836 static int selinux_task_post_setuid(uid_t id0
, uid_t id1
, uid_t id2
, int flags
)
2838 return secondary_ops
->task_post_setuid(id0
,id1
,id2
,flags
);
2841 static int selinux_task_setgid(gid_t id0
, gid_t id1
, gid_t id2
, int flags
)
2843 /* See the comment for setuid above. */
2847 static int selinux_task_setpgid(struct task_struct
*p
, pid_t pgid
)
2849 return task_has_perm(current
, p
, PROCESS__SETPGID
);
2852 static int selinux_task_getpgid(struct task_struct
*p
)
2854 return task_has_perm(current
, p
, PROCESS__GETPGID
);
2857 static int selinux_task_getsid(struct task_struct
*p
)
2859 return task_has_perm(current
, p
, PROCESS__GETSESSION
);
2862 static void selinux_task_getsecid(struct task_struct
*p
, u32
*secid
)
2864 selinux_get_task_sid(p
, secid
);
2867 static int selinux_task_setgroups(struct group_info
*group_info
)
2869 /* See the comment for setuid above. */
2873 static int selinux_task_setnice(struct task_struct
*p
, int nice
)
2877 rc
= secondary_ops
->task_setnice(p
, nice
);
2881 return task_has_perm(current
,p
, PROCESS__SETSCHED
);
2884 static int selinux_task_setioprio(struct task_struct
*p
, int ioprio
)
2888 rc
= secondary_ops
->task_setioprio(p
, ioprio
);
2892 return task_has_perm(current
, p
, PROCESS__SETSCHED
);
2895 static int selinux_task_getioprio(struct task_struct
*p
)
2897 return task_has_perm(current
, p
, PROCESS__GETSCHED
);
2900 static int selinux_task_setrlimit(unsigned int resource
, struct rlimit
*new_rlim
)
2902 struct rlimit
*old_rlim
= current
->signal
->rlim
+ resource
;
2905 rc
= secondary_ops
->task_setrlimit(resource
, new_rlim
);
2909 /* Control the ability to change the hard limit (whether
2910 lowering or raising it), so that the hard limit can
2911 later be used as a safe reset point for the soft limit
2912 upon context transitions. See selinux_bprm_apply_creds. */
2913 if (old_rlim
->rlim_max
!= new_rlim
->rlim_max
)
2914 return task_has_perm(current
, current
, PROCESS__SETRLIMIT
);
2919 static int selinux_task_setscheduler(struct task_struct
*p
, int policy
, struct sched_param
*lp
)
2923 rc
= secondary_ops
->task_setscheduler(p
, policy
, lp
);
2927 return task_has_perm(current
, p
, PROCESS__SETSCHED
);
2930 static int selinux_task_getscheduler(struct task_struct
*p
)
2932 return task_has_perm(current
, p
, PROCESS__GETSCHED
);
2935 static int selinux_task_movememory(struct task_struct
*p
)
2937 return task_has_perm(current
, p
, PROCESS__SETSCHED
);
2940 static int selinux_task_kill(struct task_struct
*p
, struct siginfo
*info
,
2945 struct task_security_struct
*tsec
;
2947 rc
= secondary_ops
->task_kill(p
, info
, sig
, secid
);
2951 if (info
!= SEND_SIG_NOINFO
&& (is_si_special(info
) || SI_FROMKERNEL(info
)))
2955 perm
= PROCESS__SIGNULL
; /* null signal; existence test */
2957 perm
= signal_to_av(sig
);
2960 rc
= avc_has_perm(secid
, tsec
->sid
, SECCLASS_PROCESS
, perm
, NULL
);
2962 rc
= task_has_perm(current
, p
, perm
);
2966 static int selinux_task_prctl(int option
,
2972 /* The current prctl operations do not appear to require
2973 any SELinux controls since they merely observe or modify
2974 the state of the current process. */
2978 static int selinux_task_wait(struct task_struct
*p
)
2980 return task_has_perm(p
, current
, PROCESS__SIGCHLD
);
2983 static void selinux_task_reparent_to_init(struct task_struct
*p
)
2985 struct task_security_struct
*tsec
;
2987 secondary_ops
->task_reparent_to_init(p
);
2990 tsec
->osid
= tsec
->sid
;
2991 tsec
->sid
= SECINITSID_KERNEL
;
2995 static void selinux_task_to_inode(struct task_struct
*p
,
2996 struct inode
*inode
)
2998 struct task_security_struct
*tsec
= p
->security
;
2999 struct inode_security_struct
*isec
= inode
->i_security
;
3001 isec
->sid
= tsec
->sid
;
3002 isec
->initialized
= 1;
3006 /* Returns error only if unable to parse addresses */
3007 static int selinux_parse_skb_ipv4(struct sk_buff
*skb
,
3008 struct avc_audit_data
*ad
, u8
*proto
)
3010 int offset
, ihlen
, ret
= -EINVAL
;
3011 struct iphdr _iph
, *ih
;
3013 offset
= skb_network_offset(skb
);
3014 ih
= skb_header_pointer(skb
, offset
, sizeof(_iph
), &_iph
);
3018 ihlen
= ih
->ihl
* 4;
3019 if (ihlen
< sizeof(_iph
))
3022 ad
->u
.net
.v4info
.saddr
= ih
->saddr
;
3023 ad
->u
.net
.v4info
.daddr
= ih
->daddr
;
3027 *proto
= ih
->protocol
;
3029 switch (ih
->protocol
) {
3031 struct tcphdr _tcph
, *th
;
3033 if (ntohs(ih
->frag_off
) & IP_OFFSET
)
3037 th
= skb_header_pointer(skb
, offset
, sizeof(_tcph
), &_tcph
);
3041 ad
->u
.net
.sport
= th
->source
;
3042 ad
->u
.net
.dport
= th
->dest
;
3047 struct udphdr _udph
, *uh
;
3049 if (ntohs(ih
->frag_off
) & IP_OFFSET
)
3053 uh
= skb_header_pointer(skb
, offset
, sizeof(_udph
), &_udph
);
3057 ad
->u
.net
.sport
= uh
->source
;
3058 ad
->u
.net
.dport
= uh
->dest
;
3062 case IPPROTO_DCCP
: {
3063 struct dccp_hdr _dccph
, *dh
;
3065 if (ntohs(ih
->frag_off
) & IP_OFFSET
)
3069 dh
= skb_header_pointer(skb
, offset
, sizeof(_dccph
), &_dccph
);
3073 ad
->u
.net
.sport
= dh
->dccph_sport
;
3074 ad
->u
.net
.dport
= dh
->dccph_dport
;
3085 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3087 /* Returns error only if unable to parse addresses */
3088 static int selinux_parse_skb_ipv6(struct sk_buff
*skb
,
3089 struct avc_audit_data
*ad
, u8
*proto
)
3092 int ret
= -EINVAL
, offset
;
3093 struct ipv6hdr _ipv6h
, *ip6
;
3095 offset
= skb_network_offset(skb
);
3096 ip6
= skb_header_pointer(skb
, offset
, sizeof(_ipv6h
), &_ipv6h
);
3100 ipv6_addr_copy(&ad
->u
.net
.v6info
.saddr
, &ip6
->saddr
);
3101 ipv6_addr_copy(&ad
->u
.net
.v6info
.daddr
, &ip6
->daddr
);
3104 nexthdr
= ip6
->nexthdr
;
3105 offset
+= sizeof(_ipv6h
);
3106 offset
= ipv6_skip_exthdr(skb
, offset
, &nexthdr
);
3115 struct tcphdr _tcph
, *th
;
3117 th
= skb_header_pointer(skb
, offset
, sizeof(_tcph
), &_tcph
);
3121 ad
->u
.net
.sport
= th
->source
;
3122 ad
->u
.net
.dport
= th
->dest
;
3127 struct udphdr _udph
, *uh
;
3129 uh
= skb_header_pointer(skb
, offset
, sizeof(_udph
), &_udph
);
3133 ad
->u
.net
.sport
= uh
->source
;
3134 ad
->u
.net
.dport
= uh
->dest
;
3138 case IPPROTO_DCCP
: {
3139 struct dccp_hdr _dccph
, *dh
;
3141 dh
= skb_header_pointer(skb
, offset
, sizeof(_dccph
), &_dccph
);
3145 ad
->u
.net
.sport
= dh
->dccph_sport
;
3146 ad
->u
.net
.dport
= dh
->dccph_dport
;
3150 /* includes fragments */
3160 static int selinux_parse_skb(struct sk_buff
*skb
, struct avc_audit_data
*ad
,
3161 char **addrp
, int *len
, int src
, u8
*proto
)
3165 switch (ad
->u
.net
.family
) {
3167 ret
= selinux_parse_skb_ipv4(skb
, ad
, proto
);
3171 *addrp
= (char *)(src
? &ad
->u
.net
.v4info
.saddr
:
3172 &ad
->u
.net
.v4info
.daddr
);
3175 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3177 ret
= selinux_parse_skb_ipv6(skb
, ad
, proto
);
3181 *addrp
= (char *)(src
? &ad
->u
.net
.v6info
.saddr
:
3182 &ad
->u
.net
.v6info
.daddr
);
3193 * selinux_skb_extlbl_sid - Determine the external label of a packet
3195 * @sid: the packet's SID
3198 * Check the various different forms of external packet labeling and determine
3199 * the external SID for the packet. If only one form of external labeling is
3200 * present then it is used, if both labeled IPsec and NetLabel labels are
3201 * present then the SELinux type information is taken from the labeled IPsec
3202 * SA and the MLS sensitivity label information is taken from the NetLabel
3203 * security attributes. This bit of "magic" is done in the call to
3204 * selinux_netlbl_skbuff_getsid().
3207 static void selinux_skb_extlbl_sid(struct sk_buff
*skb
, u32
*sid
)
3212 selinux_skb_xfrm_sid(skb
, &xfrm_sid
);
3213 if (selinux_netlbl_skbuff_getsid(skb
,
3214 (xfrm_sid
== SECSID_NULL
?
3215 SECINITSID_NETMSG
: xfrm_sid
),
3217 nlbl_sid
= SECSID_NULL
;
3218 *sid
= (nlbl_sid
== SECSID_NULL
? xfrm_sid
: nlbl_sid
);
3221 /* socket security operations */
3222 static int socket_has_perm(struct task_struct
*task
, struct socket
*sock
,
3225 struct inode_security_struct
*isec
;
3226 struct task_security_struct
*tsec
;
3227 struct avc_audit_data ad
;
3230 tsec
= task
->security
;
3231 isec
= SOCK_INODE(sock
)->i_security
;
3233 if (isec
->sid
== SECINITSID_KERNEL
)
3236 AVC_AUDIT_DATA_INIT(&ad
,NET
);
3237 ad
.u
.net
.sk
= sock
->sk
;
3238 err
= avc_has_perm(tsec
->sid
, isec
->sid
, isec
->sclass
, perms
, &ad
);
3244 static int selinux_socket_create(int family
, int type
,
3245 int protocol
, int kern
)
3248 struct task_security_struct
*tsec
;
3254 tsec
= current
->security
;
3255 newsid
= tsec
->sockcreate_sid
? : tsec
->sid
;
3256 err
= avc_has_perm(tsec
->sid
, newsid
,
3257 socket_type_to_security_class(family
, type
,
3258 protocol
), SOCKET__CREATE
, NULL
);
3264 static int selinux_socket_post_create(struct socket
*sock
, int family
,
3265 int type
, int protocol
, int kern
)
3268 struct inode_security_struct
*isec
;
3269 struct task_security_struct
*tsec
;
3270 struct sk_security_struct
*sksec
;
3273 isec
= SOCK_INODE(sock
)->i_security
;
3275 tsec
= current
->security
;
3276 newsid
= tsec
->sockcreate_sid
? : tsec
->sid
;
3277 isec
->sclass
= socket_type_to_security_class(family
, type
, protocol
);
3278 isec
->sid
= kern
? SECINITSID_KERNEL
: newsid
;
3279 isec
->initialized
= 1;
3282 sksec
= sock
->sk
->sk_security
;
3283 sksec
->sid
= isec
->sid
;
3284 err
= selinux_netlbl_socket_post_create(sock
);
3290 /* Range of port numbers used to automatically bind.
3291 Need to determine whether we should perform a name_bind
3292 permission check between the socket and the port number. */
3294 static int selinux_socket_bind(struct socket
*sock
, struct sockaddr
*address
, int addrlen
)
3299 err
= socket_has_perm(current
, sock
, SOCKET__BIND
);
3304 * If PF_INET or PF_INET6, check name_bind permission for the port.
3305 * Multiple address binding for SCTP is not supported yet: we just
3306 * check the first address now.
3308 family
= sock
->sk
->sk_family
;
3309 if (family
== PF_INET
|| family
== PF_INET6
) {
3311 struct inode_security_struct
*isec
;
3312 struct task_security_struct
*tsec
;
3313 struct avc_audit_data ad
;
3314 struct sockaddr_in
*addr4
= NULL
;
3315 struct sockaddr_in6
*addr6
= NULL
;
3316 unsigned short snum
;
3317 struct sock
*sk
= sock
->sk
;
3318 u32 sid
, node_perm
, addrlen
;
3320 tsec
= current
->security
;
3321 isec
= SOCK_INODE(sock
)->i_security
;
3323 if (family
== PF_INET
) {
3324 addr4
= (struct sockaddr_in
*)address
;
3325 snum
= ntohs(addr4
->sin_port
);
3326 addrlen
= sizeof(addr4
->sin_addr
.s_addr
);
3327 addrp
= (char *)&addr4
->sin_addr
.s_addr
;
3329 addr6
= (struct sockaddr_in6
*)address
;
3330 snum
= ntohs(addr6
->sin6_port
);
3331 addrlen
= sizeof(addr6
->sin6_addr
.s6_addr
);
3332 addrp
= (char *)&addr6
->sin6_addr
.s6_addr
;
3338 inet_get_local_port_range(&low
, &high
);
3340 if (snum
< max(PROT_SOCK
, low
) || snum
> high
) {
3341 err
= security_port_sid(sk
->sk_family
,
3343 sk
->sk_protocol
, snum
,
3347 AVC_AUDIT_DATA_INIT(&ad
,NET
);
3348 ad
.u
.net
.sport
= htons(snum
);
3349 ad
.u
.net
.family
= family
;
3350 err
= avc_has_perm(isec
->sid
, sid
,
3352 SOCKET__NAME_BIND
, &ad
);
3358 switch(isec
->sclass
) {
3359 case SECCLASS_TCP_SOCKET
:
3360 node_perm
= TCP_SOCKET__NODE_BIND
;
3363 case SECCLASS_UDP_SOCKET
:
3364 node_perm
= UDP_SOCKET__NODE_BIND
;
3367 case SECCLASS_DCCP_SOCKET
:
3368 node_perm
= DCCP_SOCKET__NODE_BIND
;
3372 node_perm
= RAWIP_SOCKET__NODE_BIND
;
3376 err
= security_node_sid(family
, addrp
, addrlen
, &sid
);
3380 AVC_AUDIT_DATA_INIT(&ad
,NET
);
3381 ad
.u
.net
.sport
= htons(snum
);
3382 ad
.u
.net
.family
= family
;
3384 if (family
== PF_INET
)
3385 ad
.u
.net
.v4info
.saddr
= addr4
->sin_addr
.s_addr
;
3387 ipv6_addr_copy(&ad
.u
.net
.v6info
.saddr
, &addr6
->sin6_addr
);
3389 err
= avc_has_perm(isec
->sid
, sid
,
3390 isec
->sclass
, node_perm
, &ad
);
3398 static int selinux_socket_connect(struct socket
*sock
, struct sockaddr
*address
, int addrlen
)
3400 struct inode_security_struct
*isec
;
3403 err
= socket_has_perm(current
, sock
, SOCKET__CONNECT
);
3408 * If a TCP or DCCP socket, check name_connect permission for the port.
3410 isec
= SOCK_INODE(sock
)->i_security
;
3411 if (isec
->sclass
== SECCLASS_TCP_SOCKET
||
3412 isec
->sclass
== SECCLASS_DCCP_SOCKET
) {
3413 struct sock
*sk
= sock
->sk
;
3414 struct avc_audit_data ad
;
3415 struct sockaddr_in
*addr4
= NULL
;
3416 struct sockaddr_in6
*addr6
= NULL
;
3417 unsigned short snum
;
3420 if (sk
->sk_family
== PF_INET
) {
3421 addr4
= (struct sockaddr_in
*)address
;
3422 if (addrlen
< sizeof(struct sockaddr_in
))
3424 snum
= ntohs(addr4
->sin_port
);
3426 addr6
= (struct sockaddr_in6
*)address
;
3427 if (addrlen
< SIN6_LEN_RFC2133
)
3429 snum
= ntohs(addr6
->sin6_port
);
3432 err
= security_port_sid(sk
->sk_family
, sk
->sk_type
,
3433 sk
->sk_protocol
, snum
, &sid
);
3437 perm
= (isec
->sclass
== SECCLASS_TCP_SOCKET
) ?
3438 TCP_SOCKET__NAME_CONNECT
: DCCP_SOCKET__NAME_CONNECT
;
3440 AVC_AUDIT_DATA_INIT(&ad
,NET
);
3441 ad
.u
.net
.dport
= htons(snum
);
3442 ad
.u
.net
.family
= sk
->sk_family
;
3443 err
= avc_has_perm(isec
->sid
, sid
, isec
->sclass
, perm
, &ad
);
3452 static int selinux_socket_listen(struct socket
*sock
, int backlog
)
3454 return socket_has_perm(current
, sock
, SOCKET__LISTEN
);
3457 static int selinux_socket_accept(struct socket
*sock
, struct socket
*newsock
)
3460 struct inode_security_struct
*isec
;
3461 struct inode_security_struct
*newisec
;
3463 err
= socket_has_perm(current
, sock
, SOCKET__ACCEPT
);
3467 newisec
= SOCK_INODE(newsock
)->i_security
;
3469 isec
= SOCK_INODE(sock
)->i_security
;
3470 newisec
->sclass
= isec
->sclass
;
3471 newisec
->sid
= isec
->sid
;
3472 newisec
->initialized
= 1;
3477 static int selinux_socket_sendmsg(struct socket
*sock
, struct msghdr
*msg
,
3482 rc
= socket_has_perm(current
, sock
, SOCKET__WRITE
);
3486 return selinux_netlbl_inode_permission(SOCK_INODE(sock
), MAY_WRITE
);
3489 static int selinux_socket_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
3490 int size
, int flags
)
3492 return socket_has_perm(current
, sock
, SOCKET__READ
);
3495 static int selinux_socket_getsockname(struct socket
*sock
)
3497 return socket_has_perm(current
, sock
, SOCKET__GETATTR
);
3500 static int selinux_socket_getpeername(struct socket
*sock
)
3502 return socket_has_perm(current
, sock
, SOCKET__GETATTR
);
3505 static int selinux_socket_setsockopt(struct socket
*sock
,int level
,int optname
)
3509 err
= socket_has_perm(current
, sock
, SOCKET__SETOPT
);
3513 return selinux_netlbl_socket_setsockopt(sock
, level
, optname
);
3516 static int selinux_socket_getsockopt(struct socket
*sock
, int level
,
3519 return socket_has_perm(current
, sock
, SOCKET__GETOPT
);
3522 static int selinux_socket_shutdown(struct socket
*sock
, int how
)
3524 return socket_has_perm(current
, sock
, SOCKET__SHUTDOWN
);
3527 static int selinux_socket_unix_stream_connect(struct socket
*sock
,
3528 struct socket
*other
,
3531 struct sk_security_struct
*ssec
;
3532 struct inode_security_struct
*isec
;
3533 struct inode_security_struct
*other_isec
;
3534 struct avc_audit_data ad
;
3537 err
= secondary_ops
->unix_stream_connect(sock
, other
, newsk
);
3541 isec
= SOCK_INODE(sock
)->i_security
;
3542 other_isec
= SOCK_INODE(other
)->i_security
;
3544 AVC_AUDIT_DATA_INIT(&ad
,NET
);
3545 ad
.u
.net
.sk
= other
->sk
;
3547 err
= avc_has_perm(isec
->sid
, other_isec
->sid
,
3549 UNIX_STREAM_SOCKET__CONNECTTO
, &ad
);
3553 /* connecting socket */
3554 ssec
= sock
->sk
->sk_security
;
3555 ssec
->peer_sid
= other_isec
->sid
;
3557 /* server child socket */
3558 ssec
= newsk
->sk_security
;
3559 ssec
->peer_sid
= isec
->sid
;
3560 err
= security_sid_mls_copy(other_isec
->sid
, ssec
->peer_sid
, &ssec
->sid
);
3565 static int selinux_socket_unix_may_send(struct socket
*sock
,
3566 struct socket
*other
)
3568 struct inode_security_struct
*isec
;
3569 struct inode_security_struct
*other_isec
;
3570 struct avc_audit_data ad
;
3573 isec
= SOCK_INODE(sock
)->i_security
;
3574 other_isec
= SOCK_INODE(other
)->i_security
;
3576 AVC_AUDIT_DATA_INIT(&ad
,NET
);
3577 ad
.u
.net
.sk
= other
->sk
;
3579 err
= avc_has_perm(isec
->sid
, other_isec
->sid
,
3580 isec
->sclass
, SOCKET__SENDTO
, &ad
);
3587 static int selinux_sock_rcv_skb_compat(struct sock
*sk
, struct sk_buff
*skb
,
3588 struct avc_audit_data
*ad
, u16 family
, char *addrp
, int len
)
3591 u32 netif_perm
, node_perm
, node_sid
, if_sid
, recv_perm
= 0;
3592 struct socket
*sock
;
3596 read_lock_bh(&sk
->sk_callback_lock
);
3597 sock
= sk
->sk_socket
;
3599 struct inode
*inode
;
3600 inode
= SOCK_INODE(sock
);
3602 struct inode_security_struct
*isec
;
3603 isec
= inode
->i_security
;
3604 sock_sid
= isec
->sid
;
3605 sock_class
= isec
->sclass
;
3608 read_unlock_bh(&sk
->sk_callback_lock
);
3615 err
= sel_netif_sids(skb
->dev
, &if_sid
, NULL
);
3619 switch (sock_class
) {
3620 case SECCLASS_UDP_SOCKET
:
3621 netif_perm
= NETIF__UDP_RECV
;
3622 node_perm
= NODE__UDP_RECV
;
3623 recv_perm
= UDP_SOCKET__RECV_MSG
;
3626 case SECCLASS_TCP_SOCKET
:
3627 netif_perm
= NETIF__TCP_RECV
;
3628 node_perm
= NODE__TCP_RECV
;
3629 recv_perm
= TCP_SOCKET__RECV_MSG
;
3632 case SECCLASS_DCCP_SOCKET
:
3633 netif_perm
= NETIF__DCCP_RECV
;
3634 node_perm
= NODE__DCCP_RECV
;
3635 recv_perm
= DCCP_SOCKET__RECV_MSG
;
3639 netif_perm
= NETIF__RAWIP_RECV
;
3640 node_perm
= NODE__RAWIP_RECV
;
3644 err
= avc_has_perm(sock_sid
, if_sid
, SECCLASS_NETIF
, netif_perm
, ad
);
3648 err
= security_node_sid(family
, addrp
, len
, &node_sid
);
3652 err
= avc_has_perm(sock_sid
, node_sid
, SECCLASS_NODE
, node_perm
, ad
);
3659 err
= security_port_sid(sk
->sk_family
, sk
->sk_type
,
3660 sk
->sk_protocol
, ntohs(ad
->u
.net
.sport
),
3665 err
= avc_has_perm(sock_sid
, port_sid
,
3666 sock_class
, recv_perm
, ad
);
3673 static int selinux_socket_sock_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
3678 struct avc_audit_data ad
;
3679 struct sk_security_struct
*sksec
= sk
->sk_security
;
3681 family
= sk
->sk_family
;
3682 if (family
!= PF_INET
&& family
!= PF_INET6
)
3685 /* Handle mapped IPv4 packets arriving via IPv6 sockets */
3686 if (family
== PF_INET6
&& skb
->protocol
== htons(ETH_P_IP
))
3689 AVC_AUDIT_DATA_INIT(&ad
, NET
);
3690 ad
.u
.net
.netif
= skb
->dev
? skb
->dev
->name
: "[unknown]";
3691 ad
.u
.net
.family
= family
;
3693 err
= selinux_parse_skb(skb
, &ad
, &addrp
, &len
, 1, NULL
);
3697 if (selinux_compat_net
)
3698 err
= selinux_sock_rcv_skb_compat(sk
, skb
, &ad
, family
,
3701 err
= avc_has_perm(sksec
->sid
, skb
->secmark
, SECCLASS_PACKET
,
3706 err
= selinux_netlbl_sock_rcv_skb(sksec
, skb
, &ad
);
3710 err
= selinux_xfrm_sock_rcv_skb(sksec
->sid
, skb
, &ad
);
3715 static int selinux_socket_getpeersec_stream(struct socket
*sock
, char __user
*optval
,
3716 int __user
*optlen
, unsigned len
)
3721 struct sk_security_struct
*ssec
;
3722 struct inode_security_struct
*isec
;
3723 u32 peer_sid
= SECSID_NULL
;
3725 isec
= SOCK_INODE(sock
)->i_security
;
3727 if (isec
->sclass
== SECCLASS_UNIX_STREAM_SOCKET
||
3728 isec
->sclass
== SECCLASS_TCP_SOCKET
) {
3729 ssec
= sock
->sk
->sk_security
;
3730 peer_sid
= ssec
->peer_sid
;
3732 if (peer_sid
== SECSID_NULL
) {
3737 err
= security_sid_to_context(peer_sid
, &scontext
, &scontext_len
);
3742 if (scontext_len
> len
) {
3747 if (copy_to_user(optval
, scontext
, scontext_len
))
3751 if (put_user(scontext_len
, optlen
))
3759 static int selinux_socket_getpeersec_dgram(struct socket
*sock
, struct sk_buff
*skb
, u32
*secid
)
3761 u32 peer_secid
= SECSID_NULL
;
3764 if (sock
&& sock
->sk
->sk_family
== PF_UNIX
)
3765 selinux_get_inode_sid(SOCK_INODE(sock
), &peer_secid
);
3767 selinux_skb_extlbl_sid(skb
, &peer_secid
);
3769 if (peer_secid
== SECSID_NULL
)
3771 *secid
= peer_secid
;
3776 static int selinux_sk_alloc_security(struct sock
*sk
, int family
, gfp_t priority
)
3778 return sk_alloc_security(sk
, family
, priority
);
3781 static void selinux_sk_free_security(struct sock
*sk
)
3783 sk_free_security(sk
);
3786 static void selinux_sk_clone_security(const struct sock
*sk
, struct sock
*newsk
)
3788 struct sk_security_struct
*ssec
= sk
->sk_security
;
3789 struct sk_security_struct
*newssec
= newsk
->sk_security
;
3791 newssec
->sid
= ssec
->sid
;
3792 newssec
->peer_sid
= ssec
->peer_sid
;
3794 selinux_netlbl_sk_security_clone(ssec
, newssec
);
3797 static void selinux_sk_getsecid(struct sock
*sk
, u32
*secid
)
3800 *secid
= SECINITSID_ANY_SOCKET
;
3802 struct sk_security_struct
*sksec
= sk
->sk_security
;
3804 *secid
= sksec
->sid
;
3808 static void selinux_sock_graft(struct sock
* sk
, struct socket
*parent
)
3810 struct inode_security_struct
*isec
= SOCK_INODE(parent
)->i_security
;
3811 struct sk_security_struct
*sksec
= sk
->sk_security
;
3813 if (sk
->sk_family
== PF_INET
|| sk
->sk_family
== PF_INET6
||
3814 sk
->sk_family
== PF_UNIX
)
3815 isec
->sid
= sksec
->sid
;
3817 selinux_netlbl_sock_graft(sk
, parent
);
3820 static int selinux_inet_conn_request(struct sock
*sk
, struct sk_buff
*skb
,
3821 struct request_sock
*req
)
3823 struct sk_security_struct
*sksec
= sk
->sk_security
;
3828 selinux_skb_extlbl_sid(skb
, &peersid
);
3829 if (peersid
== SECSID_NULL
) {
3830 req
->secid
= sksec
->sid
;
3831 req
->peer_secid
= SECSID_NULL
;
3835 err
= security_sid_mls_copy(sksec
->sid
, peersid
, &newsid
);
3839 req
->secid
= newsid
;
3840 req
->peer_secid
= peersid
;
3844 static void selinux_inet_csk_clone(struct sock
*newsk
,
3845 const struct request_sock
*req
)
3847 struct sk_security_struct
*newsksec
= newsk
->sk_security
;
3849 newsksec
->sid
= req
->secid
;
3850 newsksec
->peer_sid
= req
->peer_secid
;
3851 /* NOTE: Ideally, we should also get the isec->sid for the
3852 new socket in sync, but we don't have the isec available yet.
3853 So we will wait until sock_graft to do it, by which
3854 time it will have been created and available. */
3856 /* We don't need to take any sort of lock here as we are the only
3857 * thread with access to newsksec */
3858 selinux_netlbl_sk_security_reset(newsksec
, req
->rsk_ops
->family
);
3861 static void selinux_inet_conn_established(struct sock
*sk
,
3862 struct sk_buff
*skb
)
3864 struct sk_security_struct
*sksec
= sk
->sk_security
;
3866 selinux_skb_extlbl_sid(skb
, &sksec
->peer_sid
);
3869 static void selinux_req_classify_flow(const struct request_sock
*req
,
3872 fl
->secid
= req
->secid
;
3875 static int selinux_nlmsg_perm(struct sock
*sk
, struct sk_buff
*skb
)
3879 struct nlmsghdr
*nlh
;
3880 struct socket
*sock
= sk
->sk_socket
;
3881 struct inode_security_struct
*isec
= SOCK_INODE(sock
)->i_security
;
3883 if (skb
->len
< NLMSG_SPACE(0)) {
3887 nlh
= nlmsg_hdr(skb
);
3889 err
= selinux_nlmsg_lookup(isec
->sclass
, nlh
->nlmsg_type
, &perm
);
3891 if (err
== -EINVAL
) {
3892 audit_log(current
->audit_context
, GFP_KERNEL
, AUDIT_SELINUX_ERR
,
3893 "SELinux: unrecognized netlink message"
3894 " type=%hu for sclass=%hu\n",
3895 nlh
->nlmsg_type
, isec
->sclass
);
3896 if (!selinux_enforcing
)
3906 err
= socket_has_perm(current
, sock
, perm
);
3911 #ifdef CONFIG_NETFILTER
3913 static int selinux_ip_postroute_last_compat(struct sock
*sk
, struct net_device
*dev
,
3914 struct avc_audit_data
*ad
,
3915 u16 family
, char *addrp
, int len
)
3918 u32 netif_perm
, node_perm
, node_sid
, if_sid
, send_perm
= 0;
3919 struct socket
*sock
;
3920 struct inode
*inode
;
3921 struct inode_security_struct
*isec
;
3923 sock
= sk
->sk_socket
;
3927 inode
= SOCK_INODE(sock
);
3931 isec
= inode
->i_security
;
3933 err
= sel_netif_sids(dev
, &if_sid
, NULL
);
3937 switch (isec
->sclass
) {
3938 case SECCLASS_UDP_SOCKET
:
3939 netif_perm
= NETIF__UDP_SEND
;
3940 node_perm
= NODE__UDP_SEND
;
3941 send_perm
= UDP_SOCKET__SEND_MSG
;
3944 case SECCLASS_TCP_SOCKET
:
3945 netif_perm
= NETIF__TCP_SEND
;
3946 node_perm
= NODE__TCP_SEND
;
3947 send_perm
= TCP_SOCKET__SEND_MSG
;
3950 case SECCLASS_DCCP_SOCKET
:
3951 netif_perm
= NETIF__DCCP_SEND
;
3952 node_perm
= NODE__DCCP_SEND
;
3953 send_perm
= DCCP_SOCKET__SEND_MSG
;
3957 netif_perm
= NETIF__RAWIP_SEND
;
3958 node_perm
= NODE__RAWIP_SEND
;
3962 err
= avc_has_perm(isec
->sid
, if_sid
, SECCLASS_NETIF
, netif_perm
, ad
);
3966 err
= security_node_sid(family
, addrp
, len
, &node_sid
);
3970 err
= avc_has_perm(isec
->sid
, node_sid
, SECCLASS_NODE
, node_perm
, ad
);
3977 err
= security_port_sid(sk
->sk_family
,
3980 ntohs(ad
->u
.net
.dport
),
3985 err
= avc_has_perm(isec
->sid
, port_sid
, isec
->sclass
,
3992 static unsigned int selinux_ip_postroute_last(unsigned int hooknum
,
3993 struct sk_buff
*skb
,
3994 const struct net_device
*in
,
3995 const struct net_device
*out
,
3996 int (*okfn
)(struct sk_buff
*),
4002 struct avc_audit_data ad
;
4003 struct net_device
*dev
= (struct net_device
*)out
;
4004 struct sk_security_struct
*sksec
;
4011 sksec
= sk
->sk_security
;
4013 AVC_AUDIT_DATA_INIT(&ad
, NET
);
4014 ad
.u
.net
.netif
= dev
->name
;
4015 ad
.u
.net
.family
= family
;
4017 err
= selinux_parse_skb(skb
, &ad
, &addrp
, &len
, 0, &proto
);
4021 if (selinux_compat_net
)
4022 err
= selinux_ip_postroute_last_compat(sk
, dev
, &ad
,
4023 family
, addrp
, len
);
4025 err
= avc_has_perm(sksec
->sid
, skb
->secmark
, SECCLASS_PACKET
,
4031 err
= selinux_xfrm_postroute_last(sksec
->sid
, skb
, &ad
, proto
);
4033 return err
? NF_DROP
: NF_ACCEPT
;
4036 static unsigned int selinux_ipv4_postroute_last(unsigned int hooknum
,
4037 struct sk_buff
*skb
,
4038 const struct net_device
*in
,
4039 const struct net_device
*out
,
4040 int (*okfn
)(struct sk_buff
*))
4042 return selinux_ip_postroute_last(hooknum
, skb
, in
, out
, okfn
, PF_INET
);
4045 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
4047 static unsigned int selinux_ipv6_postroute_last(unsigned int hooknum
,
4048 struct sk_buff
*skb
,
4049 const struct net_device
*in
,
4050 const struct net_device
*out
,
4051 int (*okfn
)(struct sk_buff
*))
4053 return selinux_ip_postroute_last(hooknum
, skb
, in
, out
, okfn
, PF_INET6
);
4058 #endif /* CONFIG_NETFILTER */
4060 static int selinux_netlink_send(struct sock
*sk
, struct sk_buff
*skb
)
4064 err
= secondary_ops
->netlink_send(sk
, skb
);
4068 if (policydb_loaded_version
>= POLICYDB_VERSION_NLCLASS
)
4069 err
= selinux_nlmsg_perm(sk
, skb
);
4074 static int selinux_netlink_recv(struct sk_buff
*skb
, int capability
)
4077 struct avc_audit_data ad
;
4079 err
= secondary_ops
->netlink_recv(skb
, capability
);
4083 AVC_AUDIT_DATA_INIT(&ad
, CAP
);
4084 ad
.u
.cap
= capability
;
4086 return avc_has_perm(NETLINK_CB(skb
).sid
, NETLINK_CB(skb
).sid
,
4087 SECCLASS_CAPABILITY
, CAP_TO_MASK(capability
), &ad
);
4090 static int ipc_alloc_security(struct task_struct
*task
,
4091 struct kern_ipc_perm
*perm
,
4094 struct task_security_struct
*tsec
= task
->security
;
4095 struct ipc_security_struct
*isec
;
4097 isec
= kzalloc(sizeof(struct ipc_security_struct
), GFP_KERNEL
);
4101 isec
->sclass
= sclass
;
4102 isec
->ipc_perm
= perm
;
4103 isec
->sid
= tsec
->sid
;
4104 perm
->security
= isec
;
4109 static void ipc_free_security(struct kern_ipc_perm
*perm
)
4111 struct ipc_security_struct
*isec
= perm
->security
;
4112 perm
->security
= NULL
;
4116 static int msg_msg_alloc_security(struct msg_msg
*msg
)
4118 struct msg_security_struct
*msec
;
4120 msec
= kzalloc(sizeof(struct msg_security_struct
), GFP_KERNEL
);
4125 msec
->sid
= SECINITSID_UNLABELED
;
4126 msg
->security
= msec
;
4131 static void msg_msg_free_security(struct msg_msg
*msg
)
4133 struct msg_security_struct
*msec
= msg
->security
;
4135 msg
->security
= NULL
;
4139 static int ipc_has_perm(struct kern_ipc_perm
*ipc_perms
,
4142 struct task_security_struct
*tsec
;
4143 struct ipc_security_struct
*isec
;
4144 struct avc_audit_data ad
;
4146 tsec
= current
->security
;
4147 isec
= ipc_perms
->security
;
4149 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4150 ad
.u
.ipc_id
= ipc_perms
->key
;
4152 return avc_has_perm(tsec
->sid
, isec
->sid
, isec
->sclass
, perms
, &ad
);
4155 static int selinux_msg_msg_alloc_security(struct msg_msg
*msg
)
4157 return msg_msg_alloc_security(msg
);
4160 static void selinux_msg_msg_free_security(struct msg_msg
*msg
)
4162 msg_msg_free_security(msg
);
4165 /* message queue security operations */
4166 static int selinux_msg_queue_alloc_security(struct msg_queue
*msq
)
4168 struct task_security_struct
*tsec
;
4169 struct ipc_security_struct
*isec
;
4170 struct avc_audit_data ad
;
4173 rc
= ipc_alloc_security(current
, &msq
->q_perm
, SECCLASS_MSGQ
);
4177 tsec
= current
->security
;
4178 isec
= msq
->q_perm
.security
;
4180 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4181 ad
.u
.ipc_id
= msq
->q_perm
.key
;
4183 rc
= avc_has_perm(tsec
->sid
, isec
->sid
, SECCLASS_MSGQ
,
4186 ipc_free_security(&msq
->q_perm
);
4192 static void selinux_msg_queue_free_security(struct msg_queue
*msq
)
4194 ipc_free_security(&msq
->q_perm
);
4197 static int selinux_msg_queue_associate(struct msg_queue
*msq
, int msqflg
)
4199 struct task_security_struct
*tsec
;
4200 struct ipc_security_struct
*isec
;
4201 struct avc_audit_data ad
;
4203 tsec
= current
->security
;
4204 isec
= msq
->q_perm
.security
;
4206 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4207 ad
.u
.ipc_id
= msq
->q_perm
.key
;
4209 return avc_has_perm(tsec
->sid
, isec
->sid
, SECCLASS_MSGQ
,
4210 MSGQ__ASSOCIATE
, &ad
);
4213 static int selinux_msg_queue_msgctl(struct msg_queue
*msq
, int cmd
)
4221 /* No specific object, just general system-wide information. */
4222 return task_has_system(current
, SYSTEM__IPC_INFO
);
4225 perms
= MSGQ__GETATTR
| MSGQ__ASSOCIATE
;
4228 perms
= MSGQ__SETATTR
;
4231 perms
= MSGQ__DESTROY
;
4237 err
= ipc_has_perm(&msq
->q_perm
, perms
);
4241 static int selinux_msg_queue_msgsnd(struct msg_queue
*msq
, struct msg_msg
*msg
, int msqflg
)
4243 struct task_security_struct
*tsec
;
4244 struct ipc_security_struct
*isec
;
4245 struct msg_security_struct
*msec
;
4246 struct avc_audit_data ad
;
4249 tsec
= current
->security
;
4250 isec
= msq
->q_perm
.security
;
4251 msec
= msg
->security
;
4254 * First time through, need to assign label to the message
4256 if (msec
->sid
== SECINITSID_UNLABELED
) {
4258 * Compute new sid based on current process and
4259 * message queue this message will be stored in
4261 rc
= security_transition_sid(tsec
->sid
,
4269 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4270 ad
.u
.ipc_id
= msq
->q_perm
.key
;
4272 /* Can this process write to the queue? */
4273 rc
= avc_has_perm(tsec
->sid
, isec
->sid
, SECCLASS_MSGQ
,
4276 /* Can this process send the message */
4277 rc
= avc_has_perm(tsec
->sid
, msec
->sid
,
4278 SECCLASS_MSG
, MSG__SEND
, &ad
);
4280 /* Can the message be put in the queue? */
4281 rc
= avc_has_perm(msec
->sid
, isec
->sid
,
4282 SECCLASS_MSGQ
, MSGQ__ENQUEUE
, &ad
);
4287 static int selinux_msg_queue_msgrcv(struct msg_queue
*msq
, struct msg_msg
*msg
,
4288 struct task_struct
*target
,
4289 long type
, int mode
)
4291 struct task_security_struct
*tsec
;
4292 struct ipc_security_struct
*isec
;
4293 struct msg_security_struct
*msec
;
4294 struct avc_audit_data ad
;
4297 tsec
= target
->security
;
4298 isec
= msq
->q_perm
.security
;
4299 msec
= msg
->security
;
4301 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4302 ad
.u
.ipc_id
= msq
->q_perm
.key
;
4304 rc
= avc_has_perm(tsec
->sid
, isec
->sid
,
4305 SECCLASS_MSGQ
, MSGQ__READ
, &ad
);
4307 rc
= avc_has_perm(tsec
->sid
, msec
->sid
,
4308 SECCLASS_MSG
, MSG__RECEIVE
, &ad
);
4312 /* Shared Memory security operations */
4313 static int selinux_shm_alloc_security(struct shmid_kernel
*shp
)
4315 struct task_security_struct
*tsec
;
4316 struct ipc_security_struct
*isec
;
4317 struct avc_audit_data ad
;
4320 rc
= ipc_alloc_security(current
, &shp
->shm_perm
, SECCLASS_SHM
);
4324 tsec
= current
->security
;
4325 isec
= shp
->shm_perm
.security
;
4327 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4328 ad
.u
.ipc_id
= shp
->shm_perm
.key
;
4330 rc
= avc_has_perm(tsec
->sid
, isec
->sid
, SECCLASS_SHM
,
4333 ipc_free_security(&shp
->shm_perm
);
4339 static void selinux_shm_free_security(struct shmid_kernel
*shp
)
4341 ipc_free_security(&shp
->shm_perm
);
4344 static int selinux_shm_associate(struct shmid_kernel
*shp
, int shmflg
)
4346 struct task_security_struct
*tsec
;
4347 struct ipc_security_struct
*isec
;
4348 struct avc_audit_data ad
;
4350 tsec
= current
->security
;
4351 isec
= shp
->shm_perm
.security
;
4353 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4354 ad
.u
.ipc_id
= shp
->shm_perm
.key
;
4356 return avc_has_perm(tsec
->sid
, isec
->sid
, SECCLASS_SHM
,
4357 SHM__ASSOCIATE
, &ad
);
4360 /* Note, at this point, shp is locked down */
4361 static int selinux_shm_shmctl(struct shmid_kernel
*shp
, int cmd
)
4369 /* No specific object, just general system-wide information. */
4370 return task_has_system(current
, SYSTEM__IPC_INFO
);
4373 perms
= SHM__GETATTR
| SHM__ASSOCIATE
;
4376 perms
= SHM__SETATTR
;
4383 perms
= SHM__DESTROY
;
4389 err
= ipc_has_perm(&shp
->shm_perm
, perms
);
4393 static int selinux_shm_shmat(struct shmid_kernel
*shp
,
4394 char __user
*shmaddr
, int shmflg
)
4399 rc
= secondary_ops
->shm_shmat(shp
, shmaddr
, shmflg
);
4403 if (shmflg
& SHM_RDONLY
)
4406 perms
= SHM__READ
| SHM__WRITE
;
4408 return ipc_has_perm(&shp
->shm_perm
, perms
);
4411 /* Semaphore security operations */
4412 static int selinux_sem_alloc_security(struct sem_array
*sma
)
4414 struct task_security_struct
*tsec
;
4415 struct ipc_security_struct
*isec
;
4416 struct avc_audit_data ad
;
4419 rc
= ipc_alloc_security(current
, &sma
->sem_perm
, SECCLASS_SEM
);
4423 tsec
= current
->security
;
4424 isec
= sma
->sem_perm
.security
;
4426 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4427 ad
.u
.ipc_id
= sma
->sem_perm
.key
;
4429 rc
= avc_has_perm(tsec
->sid
, isec
->sid
, SECCLASS_SEM
,
4432 ipc_free_security(&sma
->sem_perm
);
4438 static void selinux_sem_free_security(struct sem_array
*sma
)
4440 ipc_free_security(&sma
->sem_perm
);
4443 static int selinux_sem_associate(struct sem_array
*sma
, int semflg
)
4445 struct task_security_struct
*tsec
;
4446 struct ipc_security_struct
*isec
;
4447 struct avc_audit_data ad
;
4449 tsec
= current
->security
;
4450 isec
= sma
->sem_perm
.security
;
4452 AVC_AUDIT_DATA_INIT(&ad
, IPC
);
4453 ad
.u
.ipc_id
= sma
->sem_perm
.key
;
4455 return avc_has_perm(tsec
->sid
, isec
->sid
, SECCLASS_SEM
,
4456 SEM__ASSOCIATE
, &ad
);
4459 /* Note, at this point, sma is locked down */
4460 static int selinux_sem_semctl(struct sem_array
*sma
, int cmd
)
4468 /* No specific object, just general system-wide information. */
4469 return task_has_system(current
, SYSTEM__IPC_INFO
);
4473 perms
= SEM__GETATTR
;
4484 perms
= SEM__DESTROY
;
4487 perms
= SEM__SETATTR
;
4491 perms
= SEM__GETATTR
| SEM__ASSOCIATE
;
4497 err
= ipc_has_perm(&sma
->sem_perm
, perms
);
4501 static int selinux_sem_semop(struct sem_array
*sma
,
4502 struct sembuf
*sops
, unsigned nsops
, int alter
)
4507 perms
= SEM__READ
| SEM__WRITE
;
4511 return ipc_has_perm(&sma
->sem_perm
, perms
);
4514 static int selinux_ipc_permission(struct kern_ipc_perm
*ipcp
, short flag
)
4520 av
|= IPC__UNIX_READ
;
4522 av
|= IPC__UNIX_WRITE
;
4527 return ipc_has_perm(ipcp
, av
);
4530 /* module stacking operations */
4531 static int selinux_register_security (const char *name
, struct security_operations
*ops
)
4533 if (secondary_ops
!= original_ops
) {
4534 printk(KERN_ERR
"%s: There is already a secondary security "
4535 "module registered.\n", __FUNCTION__
);
4539 secondary_ops
= ops
;
4541 printk(KERN_INFO
"%s: Registering secondary module %s\n",
4548 static void selinux_d_instantiate (struct dentry
*dentry
, struct inode
*inode
)
4551 inode_doinit_with_dentry(inode
, dentry
);
4554 static int selinux_getprocattr(struct task_struct
*p
,
4555 char *name
, char **value
)
4557 struct task_security_struct
*tsec
;
4563 error
= task_has_perm(current
, p
, PROCESS__GETATTR
);
4570 if (!strcmp(name
, "current"))
4572 else if (!strcmp(name
, "prev"))
4574 else if (!strcmp(name
, "exec"))
4575 sid
= tsec
->exec_sid
;
4576 else if (!strcmp(name
, "fscreate"))
4577 sid
= tsec
->create_sid
;
4578 else if (!strcmp(name
, "keycreate"))
4579 sid
= tsec
->keycreate_sid
;
4580 else if (!strcmp(name
, "sockcreate"))
4581 sid
= tsec
->sockcreate_sid
;
4588 error
= security_sid_to_context(sid
, value
, &len
);
4594 static int selinux_setprocattr(struct task_struct
*p
,
4595 char *name
, void *value
, size_t size
)
4597 struct task_security_struct
*tsec
;
4603 /* SELinux only allows a process to change its own
4604 security attributes. */
4609 * Basic control over ability to set these attributes at all.
4610 * current == p, but we'll pass them separately in case the
4611 * above restriction is ever removed.
4613 if (!strcmp(name
, "exec"))
4614 error
= task_has_perm(current
, p
, PROCESS__SETEXEC
);
4615 else if (!strcmp(name
, "fscreate"))
4616 error
= task_has_perm(current
, p
, PROCESS__SETFSCREATE
);
4617 else if (!strcmp(name
, "keycreate"))
4618 error
= task_has_perm(current
, p
, PROCESS__SETKEYCREATE
);
4619 else if (!strcmp(name
, "sockcreate"))
4620 error
= task_has_perm(current
, p
, PROCESS__SETSOCKCREATE
);
4621 else if (!strcmp(name
, "current"))
4622 error
= task_has_perm(current
, p
, PROCESS__SETCURRENT
);
4628 /* Obtain a SID for the context, if one was specified. */
4629 if (size
&& str
[1] && str
[1] != '\n') {
4630 if (str
[size
-1] == '\n') {
4634 error
= security_context_to_sid(value
, size
, &sid
);
4639 /* Permission checking based on the specified context is
4640 performed during the actual operation (execve,
4641 open/mkdir/...), when we know the full context of the
4642 operation. See selinux_bprm_set_security for the execve
4643 checks and may_create for the file creation checks. The
4644 operation will then fail if the context is not permitted. */
4646 if (!strcmp(name
, "exec"))
4647 tsec
->exec_sid
= sid
;
4648 else if (!strcmp(name
, "fscreate"))
4649 tsec
->create_sid
= sid
;
4650 else if (!strcmp(name
, "keycreate")) {
4651 error
= may_create_key(sid
, p
);
4654 tsec
->keycreate_sid
= sid
;
4655 } else if (!strcmp(name
, "sockcreate"))
4656 tsec
->sockcreate_sid
= sid
;
4657 else if (!strcmp(name
, "current")) {
4658 struct av_decision avd
;
4663 /* Only allow single threaded processes to change context */
4664 if (atomic_read(&p
->mm
->mm_users
) != 1) {
4665 struct task_struct
*g
, *t
;
4666 struct mm_struct
*mm
= p
->mm
;
4667 read_lock(&tasklist_lock
);
4668 do_each_thread(g
, t
)
4669 if (t
->mm
== mm
&& t
!= p
) {
4670 read_unlock(&tasklist_lock
);
4673 while_each_thread(g
, t
);
4674 read_unlock(&tasklist_lock
);
4677 /* Check permissions for the transition. */
4678 error
= avc_has_perm(tsec
->sid
, sid
, SECCLASS_PROCESS
,
4679 PROCESS__DYNTRANSITION
, NULL
);
4683 /* Check for ptracing, and update the task SID if ok.
4684 Otherwise, leave SID unchanged and fail. */
4686 if (p
->ptrace
& PT_PTRACED
) {
4687 error
= avc_has_perm_noaudit(tsec
->ptrace_sid
, sid
,
4689 PROCESS__PTRACE
, 0, &avd
);
4693 avc_audit(tsec
->ptrace_sid
, sid
, SECCLASS_PROCESS
,
4694 PROCESS__PTRACE
, &avd
, error
, NULL
);
4708 static int selinux_secid_to_secctx(u32 secid
, char **secdata
, u32
*seclen
)
4710 return security_sid_to_context(secid
, secdata
, seclen
);
4713 static void selinux_release_secctx(char *secdata
, u32 seclen
)
4720 static int selinux_key_alloc(struct key
*k
, struct task_struct
*tsk
,
4721 unsigned long flags
)
4723 struct task_security_struct
*tsec
= tsk
->security
;
4724 struct key_security_struct
*ksec
;
4726 ksec
= kzalloc(sizeof(struct key_security_struct
), GFP_KERNEL
);
4731 if (tsec
->keycreate_sid
)
4732 ksec
->sid
= tsec
->keycreate_sid
;
4734 ksec
->sid
= tsec
->sid
;
4740 static void selinux_key_free(struct key
*k
)
4742 struct key_security_struct
*ksec
= k
->security
;
4748 static int selinux_key_permission(key_ref_t key_ref
,
4749 struct task_struct
*ctx
,
4753 struct task_security_struct
*tsec
;
4754 struct key_security_struct
*ksec
;
4756 key
= key_ref_to_ptr(key_ref
);
4758 tsec
= ctx
->security
;
4759 ksec
= key
->security
;
4761 /* if no specific permissions are requested, we skip the
4762 permission check. No serious, additional covert channels
4763 appear to be created. */
4767 return avc_has_perm(tsec
->sid
, ksec
->sid
,
4768 SECCLASS_KEY
, perm
, NULL
);
4773 static struct security_operations selinux_ops
= {
4774 .ptrace
= selinux_ptrace
,
4775 .capget
= selinux_capget
,
4776 .capset_check
= selinux_capset_check
,
4777 .capset_set
= selinux_capset_set
,
4778 .sysctl
= selinux_sysctl
,
4779 .capable
= selinux_capable
,
4780 .quotactl
= selinux_quotactl
,
4781 .quota_on
= selinux_quota_on
,
4782 .syslog
= selinux_syslog
,
4783 .vm_enough_memory
= selinux_vm_enough_memory
,
4785 .netlink_send
= selinux_netlink_send
,
4786 .netlink_recv
= selinux_netlink_recv
,
4788 .bprm_alloc_security
= selinux_bprm_alloc_security
,
4789 .bprm_free_security
= selinux_bprm_free_security
,
4790 .bprm_apply_creds
= selinux_bprm_apply_creds
,
4791 .bprm_post_apply_creds
= selinux_bprm_post_apply_creds
,
4792 .bprm_set_security
= selinux_bprm_set_security
,
4793 .bprm_check_security
= selinux_bprm_check_security
,
4794 .bprm_secureexec
= selinux_bprm_secureexec
,
4796 .sb_alloc_security
= selinux_sb_alloc_security
,
4797 .sb_free_security
= selinux_sb_free_security
,
4798 .sb_copy_data
= selinux_sb_copy_data
,
4799 .sb_kern_mount
= selinux_sb_kern_mount
,
4800 .sb_statfs
= selinux_sb_statfs
,
4801 .sb_mount
= selinux_mount
,
4802 .sb_umount
= selinux_umount
,
4804 .inode_alloc_security
= selinux_inode_alloc_security
,
4805 .inode_free_security
= selinux_inode_free_security
,
4806 .inode_init_security
= selinux_inode_init_security
,
4807 .inode_create
= selinux_inode_create
,
4808 .inode_link
= selinux_inode_link
,
4809 .inode_unlink
= selinux_inode_unlink
,
4810 .inode_symlink
= selinux_inode_symlink
,
4811 .inode_mkdir
= selinux_inode_mkdir
,
4812 .inode_rmdir
= selinux_inode_rmdir
,
4813 .inode_mknod
= selinux_inode_mknod
,
4814 .inode_rename
= selinux_inode_rename
,
4815 .inode_readlink
= selinux_inode_readlink
,
4816 .inode_follow_link
= selinux_inode_follow_link
,
4817 .inode_permission
= selinux_inode_permission
,
4818 .inode_setattr
= selinux_inode_setattr
,
4819 .inode_getattr
= selinux_inode_getattr
,
4820 .inode_setxattr
= selinux_inode_setxattr
,
4821 .inode_post_setxattr
= selinux_inode_post_setxattr
,
4822 .inode_getxattr
= selinux_inode_getxattr
,
4823 .inode_listxattr
= selinux_inode_listxattr
,
4824 .inode_removexattr
= selinux_inode_removexattr
,
4825 .inode_getsecurity
= selinux_inode_getsecurity
,
4826 .inode_setsecurity
= selinux_inode_setsecurity
,
4827 .inode_listsecurity
= selinux_inode_listsecurity
,
4828 .inode_need_killpriv
= selinux_inode_need_killpriv
,
4829 .inode_killpriv
= selinux_inode_killpriv
,
4831 .file_permission
= selinux_file_permission
,
4832 .file_alloc_security
= selinux_file_alloc_security
,
4833 .file_free_security
= selinux_file_free_security
,
4834 .file_ioctl
= selinux_file_ioctl
,
4835 .file_mmap
= selinux_file_mmap
,
4836 .file_mprotect
= selinux_file_mprotect
,
4837 .file_lock
= selinux_file_lock
,
4838 .file_fcntl
= selinux_file_fcntl
,
4839 .file_set_fowner
= selinux_file_set_fowner
,
4840 .file_send_sigiotask
= selinux_file_send_sigiotask
,
4841 .file_receive
= selinux_file_receive
,
4843 .dentry_open
= selinux_dentry_open
,
4845 .task_create
= selinux_task_create
,
4846 .task_alloc_security
= selinux_task_alloc_security
,
4847 .task_free_security
= selinux_task_free_security
,
4848 .task_setuid
= selinux_task_setuid
,
4849 .task_post_setuid
= selinux_task_post_setuid
,
4850 .task_setgid
= selinux_task_setgid
,
4851 .task_setpgid
= selinux_task_setpgid
,
4852 .task_getpgid
= selinux_task_getpgid
,
4853 .task_getsid
= selinux_task_getsid
,
4854 .task_getsecid
= selinux_task_getsecid
,
4855 .task_setgroups
= selinux_task_setgroups
,
4856 .task_setnice
= selinux_task_setnice
,
4857 .task_setioprio
= selinux_task_setioprio
,
4858 .task_getioprio
= selinux_task_getioprio
,
4859 .task_setrlimit
= selinux_task_setrlimit
,
4860 .task_setscheduler
= selinux_task_setscheduler
,
4861 .task_getscheduler
= selinux_task_getscheduler
,
4862 .task_movememory
= selinux_task_movememory
,
4863 .task_kill
= selinux_task_kill
,
4864 .task_wait
= selinux_task_wait
,
4865 .task_prctl
= selinux_task_prctl
,
4866 .task_reparent_to_init
= selinux_task_reparent_to_init
,
4867 .task_to_inode
= selinux_task_to_inode
,
4869 .ipc_permission
= selinux_ipc_permission
,
4871 .msg_msg_alloc_security
= selinux_msg_msg_alloc_security
,
4872 .msg_msg_free_security
= selinux_msg_msg_free_security
,
4874 .msg_queue_alloc_security
= selinux_msg_queue_alloc_security
,
4875 .msg_queue_free_security
= selinux_msg_queue_free_security
,
4876 .msg_queue_associate
= selinux_msg_queue_associate
,
4877 .msg_queue_msgctl
= selinux_msg_queue_msgctl
,
4878 .msg_queue_msgsnd
= selinux_msg_queue_msgsnd
,
4879 .msg_queue_msgrcv
= selinux_msg_queue_msgrcv
,
4881 .shm_alloc_security
= selinux_shm_alloc_security
,
4882 .shm_free_security
= selinux_shm_free_security
,
4883 .shm_associate
= selinux_shm_associate
,
4884 .shm_shmctl
= selinux_shm_shmctl
,
4885 .shm_shmat
= selinux_shm_shmat
,
4887 .sem_alloc_security
= selinux_sem_alloc_security
,
4888 .sem_free_security
= selinux_sem_free_security
,
4889 .sem_associate
= selinux_sem_associate
,
4890 .sem_semctl
= selinux_sem_semctl
,
4891 .sem_semop
= selinux_sem_semop
,
4893 .register_security
= selinux_register_security
,
4895 .d_instantiate
= selinux_d_instantiate
,
4897 .getprocattr
= selinux_getprocattr
,
4898 .setprocattr
= selinux_setprocattr
,
4900 .secid_to_secctx
= selinux_secid_to_secctx
,
4901 .release_secctx
= selinux_release_secctx
,
4903 .unix_stream_connect
= selinux_socket_unix_stream_connect
,
4904 .unix_may_send
= selinux_socket_unix_may_send
,
4906 .socket_create
= selinux_socket_create
,
4907 .socket_post_create
= selinux_socket_post_create
,
4908 .socket_bind
= selinux_socket_bind
,
4909 .socket_connect
= selinux_socket_connect
,
4910 .socket_listen
= selinux_socket_listen
,
4911 .socket_accept
= selinux_socket_accept
,
4912 .socket_sendmsg
= selinux_socket_sendmsg
,
4913 .socket_recvmsg
= selinux_socket_recvmsg
,
4914 .socket_getsockname
= selinux_socket_getsockname
,
4915 .socket_getpeername
= selinux_socket_getpeername
,
4916 .socket_getsockopt
= selinux_socket_getsockopt
,
4917 .socket_setsockopt
= selinux_socket_setsockopt
,
4918 .socket_shutdown
= selinux_socket_shutdown
,
4919 .socket_sock_rcv_skb
= selinux_socket_sock_rcv_skb
,
4920 .socket_getpeersec_stream
= selinux_socket_getpeersec_stream
,
4921 .socket_getpeersec_dgram
= selinux_socket_getpeersec_dgram
,
4922 .sk_alloc_security
= selinux_sk_alloc_security
,
4923 .sk_free_security
= selinux_sk_free_security
,
4924 .sk_clone_security
= selinux_sk_clone_security
,
4925 .sk_getsecid
= selinux_sk_getsecid
,
4926 .sock_graft
= selinux_sock_graft
,
4927 .inet_conn_request
= selinux_inet_conn_request
,
4928 .inet_csk_clone
= selinux_inet_csk_clone
,
4929 .inet_conn_established
= selinux_inet_conn_established
,
4930 .req_classify_flow
= selinux_req_classify_flow
,
4932 #ifdef CONFIG_SECURITY_NETWORK_XFRM
4933 .xfrm_policy_alloc_security
= selinux_xfrm_policy_alloc
,
4934 .xfrm_policy_clone_security
= selinux_xfrm_policy_clone
,
4935 .xfrm_policy_free_security
= selinux_xfrm_policy_free
,
4936 .xfrm_policy_delete_security
= selinux_xfrm_policy_delete
,
4937 .xfrm_state_alloc_security
= selinux_xfrm_state_alloc
,
4938 .xfrm_state_free_security
= selinux_xfrm_state_free
,
4939 .xfrm_state_delete_security
= selinux_xfrm_state_delete
,
4940 .xfrm_policy_lookup
= selinux_xfrm_policy_lookup
,
4941 .xfrm_state_pol_flow_match
= selinux_xfrm_state_pol_flow_match
,
4942 .xfrm_decode_session
= selinux_xfrm_decode_session
,
4946 .key_alloc
= selinux_key_alloc
,
4947 .key_free
= selinux_key_free
,
4948 .key_permission
= selinux_key_permission
,
4952 static __init
int selinux_init(void)
4954 struct task_security_struct
*tsec
;
4956 if (!selinux_enabled
) {
4957 printk(KERN_INFO
"SELinux: Disabled at boot.\n");
4961 printk(KERN_INFO
"SELinux: Initializing.\n");
4963 /* Set the security state for the initial task. */
4964 if (task_alloc_security(current
))
4965 panic("SELinux: Failed to initialize initial task.\n");
4966 tsec
= current
->security
;
4967 tsec
->osid
= tsec
->sid
= SECINITSID_KERNEL
;
4969 sel_inode_cache
= kmem_cache_create("selinux_inode_security",
4970 sizeof(struct inode_security_struct
),
4971 0, SLAB_PANIC
, NULL
);
4974 original_ops
= secondary_ops
= security_ops
;
4976 panic ("SELinux: No initial security operations\n");
4977 if (register_security (&selinux_ops
))
4978 panic("SELinux: Unable to register with kernel.\n");
4980 if (selinux_enforcing
) {
4981 printk(KERN_DEBUG
"SELinux: Starting in enforcing mode\n");
4983 printk(KERN_DEBUG
"SELinux: Starting in permissive mode\n");
4987 /* Add security information to initial keyrings */
4988 selinux_key_alloc(&root_user_keyring
, current
,
4989 KEY_ALLOC_NOT_IN_QUOTA
);
4990 selinux_key_alloc(&root_session_keyring
, current
,
4991 KEY_ALLOC_NOT_IN_QUOTA
);
4997 void selinux_complete_init(void)
4999 printk(KERN_DEBUG
"SELinux: Completing initialization.\n");
5001 /* Set up any superblocks initialized prior to the policy load. */
5002 printk(KERN_DEBUG
"SELinux: Setting up existing superblocks.\n");
5003 spin_lock(&sb_lock
);
5004 spin_lock(&sb_security_lock
);
5006 if (!list_empty(&superblock_security_head
)) {
5007 struct superblock_security_struct
*sbsec
=
5008 list_entry(superblock_security_head
.next
,
5009 struct superblock_security_struct
,
5011 struct super_block
*sb
= sbsec
->sb
;
5013 spin_unlock(&sb_security_lock
);
5014 spin_unlock(&sb_lock
);
5015 down_read(&sb
->s_umount
);
5017 superblock_doinit(sb
, NULL
);
5019 spin_lock(&sb_lock
);
5020 spin_lock(&sb_security_lock
);
5021 list_del_init(&sbsec
->list
);
5024 spin_unlock(&sb_security_lock
);
5025 spin_unlock(&sb_lock
);
5028 /* SELinux requires early initialization in order to label
5029 all processes and objects when they are created. */
5030 security_initcall(selinux_init
);
5032 #if defined(CONFIG_NETFILTER)
5034 static struct nf_hook_ops selinux_ipv4_op
= {
5035 .hook
= selinux_ipv4_postroute_last
,
5036 .owner
= THIS_MODULE
,
5038 .hooknum
= NF_IP_POST_ROUTING
,
5039 .priority
= NF_IP_PRI_SELINUX_LAST
,
5042 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
5044 static struct nf_hook_ops selinux_ipv6_op
= {
5045 .hook
= selinux_ipv6_postroute_last
,
5046 .owner
= THIS_MODULE
,
5048 .hooknum
= NF_IP6_POST_ROUTING
,
5049 .priority
= NF_IP6_PRI_SELINUX_LAST
,
5054 static int __init
selinux_nf_ip_init(void)
5058 if (!selinux_enabled
)
5061 printk(KERN_DEBUG
"SELinux: Registering netfilter hooks\n");
5063 err
= nf_register_hook(&selinux_ipv4_op
);
5065 panic("SELinux: nf_register_hook for IPv4: error %d\n", err
);
5067 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
5069 err
= nf_register_hook(&selinux_ipv6_op
);
5071 panic("SELinux: nf_register_hook for IPv6: error %d\n", err
);
5079 __initcall(selinux_nf_ip_init
);
5081 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
5082 static void selinux_nf_ip_exit(void)
5084 printk(KERN_DEBUG
"SELinux: Unregistering netfilter hooks\n");
5086 nf_unregister_hook(&selinux_ipv4_op
);
5087 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
5088 nf_unregister_hook(&selinux_ipv6_op
);
5093 #else /* CONFIG_NETFILTER */
5095 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
5096 #define selinux_nf_ip_exit()
5099 #endif /* CONFIG_NETFILTER */
5101 #ifdef CONFIG_SECURITY_SELINUX_DISABLE
5102 int selinux_disable(void)
5104 extern void exit_sel_fs(void);
5105 static int selinux_disabled
= 0;
5107 if (ss_initialized
) {
5108 /* Not permitted after initial policy load. */
5112 if (selinux_disabled
) {
5113 /* Only do this once. */
5117 printk(KERN_INFO
"SELinux: Disabled at runtime.\n");
5119 selinux_disabled
= 1;
5120 selinux_enabled
= 0;
5122 /* Reset security_ops to the secondary module, dummy or capability. */
5123 security_ops
= secondary_ops
;
5125 /* Unregister netfilter hooks. */
5126 selinux_nf_ip_exit();
5128 /* Unregister selinuxfs. */