2 * NSA Security-Enhanced Linux (SELinux) security module
4 * This file contains the SELinux XFRM hook function implementations.
6 * Authors: Serge Hallyn <sergeh@us.ibm.com>
7 * Trent Jaeger <jaegert@us.ibm.com>
9 * Updated: Venkat Yekkirala <vyekkirala@TrustedCS.com>
11 * Granular IPSec Associations for use in MLS environments.
13 * Copyright (C) 2005 International Business Machines Corporation
14 * Copyright (C) 2006 Trusted Computer Solutions, Inc.
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2,
18 * as published by the Free Software Foundation.
24 * 1. Make sure to enable the following options in your kernel config:
26 * CONFIG_SECURITY_NETWORK=y
27 * CONFIG_SECURITY_NETWORK_XFRM=y
28 * CONFIG_SECURITY_SELINUX=m/y
30 * 1. Caching packets, so they are not dropped during negotiation
31 * 2. Emulating a reasonable SO_PEERSEC across machines
32 * 3. Testing addition of sk_policy's with security context via setsockopt
34 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/init.h>
37 #include <linux/security.h>
38 #include <linux/types.h>
39 #include <linux/netfilter.h>
40 #include <linux/netfilter_ipv4.h>
41 #include <linux/netfilter_ipv6.h>
43 #include <linux/tcp.h>
44 #include <linux/skbuff.h>
45 #include <linux/xfrm.h>
47 #include <net/checksum.h>
49 #include <asm/semaphore.h>
57 * Returns true if an LSM/SELinux context
59 static inline int selinux_authorizable_ctx(struct xfrm_sec_ctx *ctx)
62 (ctx->ctx_doi == XFRM_SC_DOI_LSM) &&
63 (ctx->ctx_alg == XFRM_SC_ALG_SELINUX));
67 * Returns true if the xfrm contains a security blob for SELinux
69 static inline int selinux_authorizable_xfrm(struct xfrm_state *x)
71 return selinux_authorizable_ctx(x->security);
75 * LSM hook implementation that authorizes that a flow can use
78 int selinux_xfrm_policy_lookup(struct xfrm_policy *xp, u32 fl_secid, u8 dir)
82 struct xfrm_sec_ctx *ctx;
84 /* Context sid is either set to label or ANY_ASSOC */
85 if ((ctx = xp->security)) {
86 if (!selinux_authorizable_ctx(ctx))
89 sel_sid = ctx->ctx_sid;
93 * All flows should be treated as polmatch'ing an
94 * otherwise applicable "non-labeled" policy. This
95 * would prevent inadvertent "leaks".
99 rc = avc_has_perm(fl_secid, sel_sid, SECCLASS_ASSOCIATION,
100 ASSOCIATION__POLMATCH,
110 * LSM hook implementation that authorizes that a state matches
111 * the given policy, flow combo.
114 int selinux_xfrm_state_pol_flow_match(struct xfrm_state *x, struct xfrm_policy *xp,
123 /* unlabeled SA and labeled policy can't match */
126 state_sid = x->security->ctx_sid;
127 pol_sid = xp->security->ctx_sid;
130 /* unlabeled policy and labeled SA can't match */
133 /* unlabeled policy and unlabeled SA match all flows */
136 err = avc_has_perm(state_sid, pol_sid, SECCLASS_ASSOCIATION,
137 ASSOCIATION__POLMATCH,
143 err = avc_has_perm(fl->secid, state_sid, SECCLASS_ASSOCIATION,
151 * LSM hook implementation that authorizes that a particular outgoing flow
152 * can use a given security association.
155 int selinux_xfrm_flow_state_match(struct flowi *fl, struct xfrm_state *xfrm,
156 struct xfrm_policy *xp)
159 u32 sel_sid = SECINITSID_UNLABELED;
160 struct xfrm_sec_ctx *ctx;
171 /* Context sid is either set to label or ANY_ASSOC */
172 if ((ctx = xfrm->security)) {
173 if (!selinux_authorizable_ctx(ctx))
176 sel_sid = ctx->ctx_sid;
179 rc = avc_has_perm(fl->secid, sel_sid, SECCLASS_ASSOCIATION,
187 * LSM hook implementation that determines the sid for the session.
190 int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall)
203 for (i = sp->len-1; i >= 0; i--) {
204 struct xfrm_state *x = sp->xvec[i];
205 if (selinux_authorizable_xfrm(x)) {
206 struct xfrm_sec_ctx *ctx = x->security;
215 else if (*sid != ctx->ctx_sid)
225 * Security blob allocation for xfrm_policy and xfrm_state
226 * CTX does not have a meaningful value on input
228 static int selinux_xfrm_sec_ctx_alloc(struct xfrm_sec_ctx **ctxp,
229 struct xfrm_user_sec_ctx *uctx, struct xfrm_sec_ctx *pol, u32 sid)
232 struct task_security_struct *tsec = current->security;
233 struct xfrm_sec_ctx *ctx = NULL;
234 char *ctx_str = NULL;
243 if (uctx->ctx_doi != XFRM_SC_ALG_SELINUX)
246 if (uctx->ctx_len >= PAGE_SIZE)
249 *ctxp = ctx = kmalloc(sizeof(*ctx) +
256 ctx->ctx_doi = uctx->ctx_doi;
257 ctx->ctx_len = uctx->ctx_len;
258 ctx->ctx_alg = uctx->ctx_alg;
263 rc = security_context_to_sid(ctx->ctx_str,
271 * Does the subject have permission to set security context?
273 rc = avc_has_perm(tsec->sid, ctx->ctx_sid,
274 SECCLASS_ASSOCIATION,
275 ASSOCIATION__SETCONTEXT, NULL);
283 rc = security_sid_mls_copy(pol->ctx_sid, sid, &ctx_sid);
290 rc = security_sid_to_context(ctx_sid, &ctx_str, &str_len);
294 *ctxp = ctx = kmalloc(sizeof(*ctx) +
303 ctx->ctx_doi = XFRM_SC_DOI_LSM;
304 ctx->ctx_alg = XFRM_SC_ALG_SELINUX;
305 ctx->ctx_sid = ctx_sid;
306 ctx->ctx_len = str_len;
322 * LSM hook implementation that allocs and transfers uctx spec to
325 int selinux_xfrm_policy_alloc(struct xfrm_policy *xp,
326 struct xfrm_user_sec_ctx *uctx, struct sock *sk)
335 struct sk_security_struct *ssec = sk->sk_security;
341 err = selinux_xfrm_sec_ctx_alloc(&xp->security, uctx, NULL, sid);
347 * LSM hook implementation that copies security data structure from old to
348 * new for policy cloning.
350 int selinux_xfrm_policy_clone(struct xfrm_policy *old, struct xfrm_policy *new)
352 struct xfrm_sec_ctx *old_ctx, *new_ctx;
354 old_ctx = old->security;
357 new_ctx = new->security = kmalloc(sizeof(*new_ctx) +
364 memcpy(new_ctx, old_ctx, sizeof(*new_ctx));
365 memcpy(new_ctx->ctx_str, old_ctx->ctx_str, new_ctx->ctx_len);
371 * LSM hook implementation that frees xfrm_policy security information.
373 void selinux_xfrm_policy_free(struct xfrm_policy *xp)
375 struct xfrm_sec_ctx *ctx = xp->security;
381 * LSM hook implementation that authorizes deletion of labeled policies.
383 int selinux_xfrm_policy_delete(struct xfrm_policy *xp)
385 struct task_security_struct *tsec = current->security;
386 struct xfrm_sec_ctx *ctx = xp->security;
390 rc = avc_has_perm(tsec->sid, ctx->ctx_sid,
391 SECCLASS_ASSOCIATION,
392 ASSOCIATION__SETCONTEXT, NULL);
398 * LSM hook implementation that allocs and transfers sec_ctx spec to
401 int selinux_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *uctx,
402 struct xfrm_sec_ctx *pol, u32 secid)
408 err = selinux_xfrm_sec_ctx_alloc(&x->security, uctx, pol, secid);
413 * LSM hook implementation that frees xfrm_state security information.
415 void selinux_xfrm_state_free(struct xfrm_state *x)
417 struct xfrm_sec_ctx *ctx = x->security;
423 * SELinux internal function to retrieve the context of a connected
424 * (sk->sk_state == TCP_ESTABLISHED) TCP socket based on its security
425 * association used to connect to the remote socket.
427 * Retrieve via getsockopt SO_PEERSEC.
429 u32 selinux_socket_getpeer_stream(struct sock *sk)
431 struct dst_entry *dst, *dst_test;
432 u32 peer_sid = SECSID_NULL;
434 if (sk->sk_state != TCP_ESTABLISHED)
437 dst = sk_dst_get(sk);
441 for (dst_test = dst; dst_test != 0;
442 dst_test = dst_test->child) {
443 struct xfrm_state *x = dst_test->xfrm;
445 if (x && selinux_authorizable_xfrm(x)) {
446 struct xfrm_sec_ctx *ctx = x->security;
447 peer_sid = ctx->ctx_sid;
458 * SELinux internal function to retrieve the context of a UDP packet
459 * based on its security association used to connect to the remote socket.
461 * Retrieve via setsockopt IP_PASSSEC and recvmsg with control message
464 u32 selinux_socket_getpeer_dgram(struct sk_buff *skb)
471 if (skb->sk->sk_protocol != IPPROTO_UDP)
478 for (i = sp->len-1; i >= 0; i--) {
479 struct xfrm_state *x = sp->xvec[i];
480 if (selinux_authorizable_xfrm(x)) {
481 struct xfrm_sec_ctx *ctx = x->security;
491 * LSM hook implementation that authorizes deletion of labeled SAs.
493 int selinux_xfrm_state_delete(struct xfrm_state *x)
495 struct task_security_struct *tsec = current->security;
496 struct xfrm_sec_ctx *ctx = x->security;
500 rc = avc_has_perm(tsec->sid, ctx->ctx_sid,
501 SECCLASS_ASSOCIATION,
502 ASSOCIATION__SETCONTEXT, NULL);
508 * LSM hook that controls access to unlabelled packets. If
509 * a xfrm_state is authorizable (defined by macro) then it was
510 * already authorized by the IPSec process. If not, then
511 * we need to check for unlabelled access since this may not have
512 * gone thru the IPSec process.
514 int selinux_xfrm_sock_rcv_skb(u32 isec_sid, struct sk_buff *skb,
515 struct avc_audit_data *ad)
519 u32 sel_sid = SECINITSID_UNLABELED;
524 for (i = 0; i < sp->len; i++) {
525 struct xfrm_state *x = sp->xvec[i];
527 if (x && selinux_authorizable_xfrm(x)) {
528 struct xfrm_sec_ctx *ctx = x->security;
529 sel_sid = ctx->ctx_sid;
535 rc = avc_has_perm(isec_sid, sel_sid, SECCLASS_ASSOCIATION,
536 ASSOCIATION__RECVFROM, ad);
542 * POSTROUTE_LAST hook's XFRM processing:
543 * If we have no security association, then we need to determine
544 * whether the socket is allowed to send to an unlabelled destination.
545 * If we do have a authorizable security association, then it has already been
546 * checked in xfrm_policy_lookup hook.
548 int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb,
549 struct avc_audit_data *ad)
551 struct dst_entry *dst;
557 struct dst_entry *dst_test;
559 for (dst_test = dst; dst_test != 0;
560 dst_test = dst_test->child) {
561 struct xfrm_state *x = dst_test->xfrm;
563 if (x && selinux_authorizable_xfrm(x))
568 rc = avc_has_perm(isec_sid, SECINITSID_UNLABELED, SECCLASS_ASSOCIATION,
569 ASSOCIATION__SENDTO, ad);