aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2014-07-10 10:17:48 -0400
committerPaul Moore <pmoore@redhat.com>2014-07-10 10:17:48 -0400
commit4da6daf4d3df5a977e4623963f141a627fd2efce (patch)
tree4dce3efc23da4d26f263b3f135f3edf2ffcf7798
parent170b5910d9fbea79de1bb40df22eda5f98250c0c (diff)
selinux: fix the default socket labeling in sock_graft()
The sock_graft() hook has special handling for AF_INET, AF_INET, and AF_UNIX sockets as those address families have special hooks which label the sock before it is attached its associated socket. Unfortunately, the sock_graft() hook was missing a default approach to labeling sockets which meant that any other address family which made use of connections or the accept() syscall would find the returned socket to be in an "unlabeled" state. This was recently demonstrated by the kcrypto/AF_ALG subsystem and the newly released cryptsetup package (cryptsetup v1.6.5 and later). This patch preserves the special handling in selinux_sock_graft(), but adds a default behavior - setting the sock's label equal to the associated socket - which resolves the problem with AF_ALG and presumably any other address family which makes use of accept(). Cc: stable@vger.kernel.org Signed-off-by: Paul Moore <pmoore@redhat.com> Tested-by: Milan Broz <gmazyland@gmail.com>
-rw-r--r--include/linux/security.h5
-rw-r--r--security/selinux/hooks.c13
2 files changed, 15 insertions, 3 deletions
diff --git a/include/linux/security.h b/include/linux/security.h
index 6478ce3252c7..794be735ff4b 100644
--- a/include/linux/security.h
+++ b/include/linux/security.h
@@ -987,7 +987,10 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
987 * Retrieve the LSM-specific secid for the sock to enable caching of network 987 * Retrieve the LSM-specific secid for the sock to enable caching of network
988 * authorizations. 988 * authorizations.
989 * @sock_graft: 989 * @sock_graft:
990 * Sets the socket's isec sid to the sock's sid. 990 * This hook is called in response to a newly created sock struct being
991 * grafted onto an existing socket and allows the security module to
992 * perform whatever security attribute management is necessary for both
993 * the sock and socket.
991 * @inet_conn_request: 994 * @inet_conn_request:
992 * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid. 995 * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid.
993 * @inet_csk_clone: 996 * @inet_csk_clone:
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 336f0a04450e..b3a6754e932b 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -4499,9 +4499,18 @@ static void selinux_sock_graft(struct sock *sk, struct socket *parent)
4499 struct inode_security_struct *isec = SOCK_INODE(parent)->i_security; 4499 struct inode_security_struct *isec = SOCK_INODE(parent)->i_security;
4500 struct sk_security_struct *sksec = sk->sk_security; 4500 struct sk_security_struct *sksec = sk->sk_security;
4501 4501
4502 if (sk->sk_family == PF_INET || sk->sk_family == PF_INET6 || 4502 switch (sk->sk_family) {
4503 sk->sk_family == PF_UNIX) 4503 case PF_INET:
4504 case PF_INET6:
4505 case PF_UNIX:
4504 isec->sid = sksec->sid; 4506 isec->sid = sksec->sid;
4507 break;
4508 default:
4509 /* by default there is no special labeling mechanism for the
4510 * sksec label so inherit the label from the parent socket */
4511 BUG_ON(sksec->sid != SECINITSID_UNLABELED);
4512 sksec->sid = isec->sid;
4513 }
4505 sksec->sclass = isec->sclass; 4514 sksec->sclass = isec->sclass;
4506} 4515}
4507 4516