aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/hooks.c
diff options
context:
space:
mode:
authorVenkat Yekkirala <vyekkirala@TrustedCS.com>2006-07-28 01:01:34 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 17:53:30 -0400
commita51c64f1e5c2876eab2a32955acd9e8015c91c15 (patch)
tree1cc49c6ee7a3135ea000956e5fef41ff4c8e2ebe /security/selinux/hooks.c
parent4237c75c0a35535d7f9f2bfeeb4b4df1e068a0bf (diff)
[MLSXFRM]: Fix build with SECURITY_NETWORK_XFRM disabled.
The following patch will fix the build problem (encountered by Andrew Morton) when SECURITY_NETWORK_XFRM is not enabled. As compared to git-net-selinux_xfrm_decode_session-build-fix.patch in -mm, this patch sets the return parameter sid to SECSID_NULL in selinux_xfrm_decode_session() and handles this value in the caller selinux_inet_conn_request() appropriately. Signed-off-by: Venkat Yekkirala <vyekkirala@TrustedCS.com> Acked-by: James Morris <jmorris@namei.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'security/selinux/hooks.c')
-rw-r--r--security/selinux/hooks.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 1dc935f7b919..33028b3b19ce 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -3591,6 +3591,11 @@ int selinux_inet_conn_request(struct sock *sk, struct sk_buff *skb,
3591 err = selinux_xfrm_decode_session(skb, &peersid, 0); 3591 err = selinux_xfrm_decode_session(skb, &peersid, 0);
3592 BUG_ON(err); 3592 BUG_ON(err);
3593 3593
3594 if (peersid == SECSID_NULL) {
3595 req->secid = sksec->sid;
3596 return 0;
3597 }
3598
3594 err = security_sid_mls_copy(sksec->sid, peersid, &newsid); 3599 err = security_sid_mls_copy(sksec->sid, peersid, &newsid);
3595 if (err) 3600 if (err)
3596 return err; 3601 return err;