[MLSXFRM]: Add flow labeling
[safe/jmp/linux-2.6] / security / selinux / xfrm.c
1 /*
2  *  NSA Security-Enhanced Linux (SELinux) security module
3  *
4  *  This file contains the SELinux XFRM hook function implementations.
5  *
6  *  Authors:  Serge Hallyn <sergeh@us.ibm.com>
7  *            Trent Jaeger <jaegert@us.ibm.com>
8  *
9  *  Updated: Venkat Yekkirala <vyekkirala@TrustedCS.com>
10  *
11  *           Granular IPSec Associations for use in MLS environments.
12  *
13  *  Copyright (C) 2005 International Business Machines Corporation
14  *  Copyright (C) 2006 Trusted Computer Solutions, Inc.
15  *
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.
19  */
20
21 /*
22  * USAGE:
23  * NOTES:
24  *   1. Make sure to enable the following options in your kernel config:
25  *      CONFIG_SECURITY=y
26  *      CONFIG_SECURITY_NETWORK=y
27  *      CONFIG_SECURITY_NETWORK_XFRM=y
28  *      CONFIG_SECURITY_SELINUX=m/y
29  * ISSUES:
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
33  */
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>
42 #include <linux/ip.h>
43 #include <linux/tcp.h>
44 #include <linux/skbuff.h>
45 #include <linux/xfrm.h>
46 #include <net/xfrm.h>
47 #include <net/checksum.h>
48 #include <net/udp.h>
49 #include <asm/semaphore.h>
50
51 #include "avc.h"
52 #include "objsec.h"
53 #include "xfrm.h"
54
55
56 /*
57  * Returns true if an LSM/SELinux context
58  */
59 static inline int selinux_authorizable_ctx(struct xfrm_sec_ctx *ctx)
60 {
61         return (ctx &&
62                 (ctx->ctx_doi == XFRM_SC_DOI_LSM) &&
63                 (ctx->ctx_alg == XFRM_SC_ALG_SELINUX));
64 }
65
66 /*
67  * Returns true if the xfrm contains a security blob for SELinux
68  */
69 static inline int selinux_authorizable_xfrm(struct xfrm_state *x)
70 {
71         return selinux_authorizable_ctx(x->security);
72 }
73
74 /*
75  * LSM hook implementation that authorizes that a flow can use
76  * a xfrm policy rule.
77  */
78 int selinux_xfrm_policy_lookup(struct xfrm_policy *xp, u32 fl_secid, u8 dir)
79 {
80         int rc = 0;
81         u32 sel_sid = SECINITSID_UNLABELED;
82         struct xfrm_sec_ctx *ctx;
83
84         /* Context sid is either set to label or ANY_ASSOC */
85         if ((ctx = xp->security)) {
86                 if (!selinux_authorizable_ctx(ctx))
87                         return -EINVAL;
88
89                 sel_sid = ctx->ctx_sid;
90         }
91
92         rc = avc_has_perm(fl_secid, sel_sid, SECCLASS_ASSOCIATION,
93                           ASSOCIATION__POLMATCH,
94                           NULL);
95
96         return rc;
97 }
98
99 /*
100  * LSM hook implementation that authorizes that a state matches
101  * the given policy, flow combo.
102  */
103
104 int selinux_xfrm_state_pol_flow_match(struct xfrm_state *x, struct xfrm_policy *xp,
105                         struct flowi *fl)
106 {
107         u32 state_sid;
108         u32 pol_sid;
109         int err;
110
111         if (x->security)
112                 state_sid = x->security->ctx_sid;
113         else
114                 state_sid = SECINITSID_UNLABELED;
115
116         if (xp->security)
117                 pol_sid = xp->security->ctx_sid;
118         else
119                 pol_sid = SECINITSID_UNLABELED;
120
121         err = avc_has_perm(state_sid, pol_sid, SECCLASS_ASSOCIATION,
122                           ASSOCIATION__POLMATCH,
123                           NULL);
124
125         if (err)
126                 return 0;
127
128         return selinux_xfrm_flow_state_match(fl, x);
129 }
130
131 /*
132  * LSM hook implementation that authorizes that a particular outgoing flow
133  * can use a given security association.
134  */
135
136 int selinux_xfrm_flow_state_match(struct flowi *fl, struct xfrm_state *xfrm)
137 {
138         int rc = 0;
139         u32 sel_sid = SECINITSID_UNLABELED;
140         struct xfrm_sec_ctx *ctx;
141
142         /* Context sid is either set to label or ANY_ASSOC */
143         if ((ctx = xfrm->security)) {
144                 if (!selinux_authorizable_ctx(ctx))
145                         return 0;
146
147                 sel_sid = ctx->ctx_sid;
148         }
149
150         rc = avc_has_perm(fl->secid, sel_sid, SECCLASS_ASSOCIATION,
151                           ASSOCIATION__SENDTO,
152                           NULL)? 0:1;
153
154         return rc;
155 }
156
157 /*
158  * LSM hook implementation that determines the sid for the session.
159  */
160
161 int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall)
162 {
163         struct sec_path *sp;
164
165         *sid = SECSID_NULL;
166
167         if (skb == NULL)
168                 return 0;
169
170         sp = skb->sp;
171         if (sp) {
172                 int i, sid_set = 0;
173
174                 for (i = sp->len-1; i >= 0; i--) {
175                         struct xfrm_state *x = sp->xvec[i];
176                         if (selinux_authorizable_xfrm(x)) {
177                                 struct xfrm_sec_ctx *ctx = x->security;
178
179                                 if (!sid_set) {
180                                         *sid = ctx->ctx_sid;
181                                         sid_set = 1;
182
183                                         if (!ckall)
184                                                 break;
185                                 }
186                                 else if (*sid != ctx->ctx_sid)
187                                         return -EINVAL;
188                         }
189                 }
190         }
191
192         return 0;
193 }
194
195 /*
196  * Security blob allocation for xfrm_policy and xfrm_state
197  * CTX does not have a meaningful value on input
198  */
199 static int selinux_xfrm_sec_ctx_alloc(struct xfrm_sec_ctx **ctxp,
200         struct xfrm_user_sec_ctx *uctx, struct xfrm_sec_ctx *pol, u32 sid)
201 {
202         int rc = 0;
203         struct task_security_struct *tsec = current->security;
204         struct xfrm_sec_ctx *ctx = NULL;
205         char *ctx_str = NULL;
206         u32 str_len;
207         u32 ctx_sid;
208
209         BUG_ON(uctx && pol);
210
211         if (pol)
212                 goto from_policy;
213
214         BUG_ON(!uctx);
215
216         if (uctx->ctx_doi != XFRM_SC_ALG_SELINUX)
217                 return -EINVAL;
218
219         if (uctx->ctx_len >= PAGE_SIZE)
220                 return -ENOMEM;
221
222         *ctxp = ctx = kmalloc(sizeof(*ctx) +
223                               uctx->ctx_len,
224                               GFP_KERNEL);
225
226         if (!ctx)
227                 return -ENOMEM;
228
229         ctx->ctx_doi = uctx->ctx_doi;
230         ctx->ctx_len = uctx->ctx_len;
231         ctx->ctx_alg = uctx->ctx_alg;
232
233         memcpy(ctx->ctx_str,
234                uctx+1,
235                ctx->ctx_len);
236         rc = security_context_to_sid(ctx->ctx_str,
237                                      ctx->ctx_len,
238                                      &ctx->ctx_sid);
239
240         if (rc)
241                 goto out;
242
243         /*
244          * Does the subject have permission to set security context?
245          */
246         rc = avc_has_perm(tsec->sid, ctx->ctx_sid,
247                           SECCLASS_ASSOCIATION,
248                           ASSOCIATION__SETCONTEXT, NULL);
249         if (rc)
250                 goto out;
251
252         return rc;
253
254 from_policy:
255         BUG_ON(!pol);
256         rc = security_sid_mls_copy(pol->ctx_sid, sid, &ctx_sid);
257         if (rc)
258                 goto out;
259
260         rc = security_sid_to_context(ctx_sid, &ctx_str, &str_len);
261         if (rc)
262                 goto out;
263
264         *ctxp = ctx = kmalloc(sizeof(*ctx) +
265                               str_len,
266                               GFP_ATOMIC);
267
268         if (!ctx) {
269                 rc = -ENOMEM;
270                 goto out;
271         }
272
273
274         ctx->ctx_doi = XFRM_SC_DOI_LSM;
275         ctx->ctx_alg = XFRM_SC_ALG_SELINUX;
276         ctx->ctx_sid = ctx_sid;
277         ctx->ctx_len = str_len;
278         memcpy(ctx->ctx_str,
279                ctx_str,
280                str_len);
281
282         goto out2;
283
284 out:
285         *ctxp = NULL;
286         kfree(ctx);
287 out2:
288         kfree(ctx_str);
289         return rc;
290 }
291
292 /*
293  * LSM hook implementation that allocs and transfers uctx spec to
294  * xfrm_policy.
295  */
296 int selinux_xfrm_policy_alloc(struct xfrm_policy *xp, struct xfrm_user_sec_ctx *uctx)
297 {
298         int err;
299
300         BUG_ON(!xp);
301
302         err = selinux_xfrm_sec_ctx_alloc(&xp->security, uctx, NULL, 0);
303         return err;
304 }
305
306
307 /*
308  * LSM hook implementation that copies security data structure from old to
309  * new for policy cloning.
310  */
311 int selinux_xfrm_policy_clone(struct xfrm_policy *old, struct xfrm_policy *new)
312 {
313         struct xfrm_sec_ctx *old_ctx, *new_ctx;
314
315         old_ctx = old->security;
316
317         if (old_ctx) {
318                 new_ctx = new->security = kmalloc(sizeof(*new_ctx) +
319                                                   old_ctx->ctx_len,
320                                                   GFP_KERNEL);
321
322                 if (!new_ctx)
323                         return -ENOMEM;
324
325                 memcpy(new_ctx, old_ctx, sizeof(*new_ctx));
326                 memcpy(new_ctx->ctx_str, old_ctx->ctx_str, new_ctx->ctx_len);
327         }
328         return 0;
329 }
330
331 /*
332  * LSM hook implementation that frees xfrm_policy security information.
333  */
334 void selinux_xfrm_policy_free(struct xfrm_policy *xp)
335 {
336         struct xfrm_sec_ctx *ctx = xp->security;
337         if (ctx)
338                 kfree(ctx);
339 }
340
341 /*
342  * LSM hook implementation that authorizes deletion of labeled policies.
343  */
344 int selinux_xfrm_policy_delete(struct xfrm_policy *xp)
345 {
346         struct task_security_struct *tsec = current->security;
347         struct xfrm_sec_ctx *ctx = xp->security;
348         int rc = 0;
349
350         if (ctx)
351                 rc = avc_has_perm(tsec->sid, ctx->ctx_sid,
352                                   SECCLASS_ASSOCIATION,
353                                   ASSOCIATION__SETCONTEXT, NULL);
354
355         return rc;
356 }
357
358 /*
359  * LSM hook implementation that allocs and transfers sec_ctx spec to
360  * xfrm_state.
361  */
362 int selinux_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *uctx,
363                 struct xfrm_sec_ctx *pol, u32 secid)
364 {
365         int err;
366
367         BUG_ON(!x);
368
369         err = selinux_xfrm_sec_ctx_alloc(&x->security, uctx, pol, secid);
370         return err;
371 }
372
373 /*
374  * LSM hook implementation that frees xfrm_state security information.
375  */
376 void selinux_xfrm_state_free(struct xfrm_state *x)
377 {
378         struct xfrm_sec_ctx *ctx = x->security;
379         if (ctx)
380                 kfree(ctx);
381 }
382
383 /*
384  * SELinux internal function to retrieve the context of a connected
385  * (sk->sk_state == TCP_ESTABLISHED) TCP socket based on its security
386  * association used to connect to the remote socket.
387  *
388  * Retrieve via getsockopt SO_PEERSEC.
389  */
390 u32 selinux_socket_getpeer_stream(struct sock *sk)
391 {
392         struct dst_entry *dst, *dst_test;
393         u32 peer_sid = SECSID_NULL;
394
395         if (sk->sk_state != TCP_ESTABLISHED)
396                 goto out;
397
398         dst = sk_dst_get(sk);
399         if (!dst)
400                 goto out;
401
402         for (dst_test = dst; dst_test != 0;
403              dst_test = dst_test->child) {
404                 struct xfrm_state *x = dst_test->xfrm;
405
406                 if (x && selinux_authorizable_xfrm(x)) {
407                         struct xfrm_sec_ctx *ctx = x->security;
408                         peer_sid = ctx->ctx_sid;
409                         break;
410                 }
411         }
412         dst_release(dst);
413
414 out:
415         return peer_sid;
416 }
417
418 /*
419  * SELinux internal function to retrieve the context of a UDP packet
420  * based on its security association used to connect to the remote socket.
421  *
422  * Retrieve via setsockopt IP_PASSSEC and recvmsg with control message
423  * type SCM_SECURITY.
424  */
425 u32 selinux_socket_getpeer_dgram(struct sk_buff *skb)
426 {
427         struct sec_path *sp;
428
429         if (skb == NULL)
430                 return SECSID_NULL;
431
432         if (skb->sk->sk_protocol != IPPROTO_UDP)
433                 return SECSID_NULL;
434
435         sp = skb->sp;
436         if (sp) {
437                 int i;
438
439                 for (i = sp->len-1; i >= 0; i--) {
440                         struct xfrm_state *x = sp->xvec[i];
441                         if (selinux_authorizable_xfrm(x)) {
442                                 struct xfrm_sec_ctx *ctx = x->security;
443                                 return ctx->ctx_sid;
444                         }
445                 }
446         }
447
448         return SECSID_NULL;
449 }
450
451  /*
452   * LSM hook implementation that authorizes deletion of labeled SAs.
453   */
454 int selinux_xfrm_state_delete(struct xfrm_state *x)
455 {
456         struct task_security_struct *tsec = current->security;
457         struct xfrm_sec_ctx *ctx = x->security;
458         int rc = 0;
459
460         if (ctx)
461                 rc = avc_has_perm(tsec->sid, ctx->ctx_sid,
462                                   SECCLASS_ASSOCIATION,
463                                   ASSOCIATION__SETCONTEXT, NULL);
464
465         return rc;
466 }
467
468 /*
469  * LSM hook that controls access to unlabelled packets.  If
470  * a xfrm_state is authorizable (defined by macro) then it was
471  * already authorized by the IPSec process.  If not, then
472  * we need to check for unlabelled access since this may not have
473  * gone thru the IPSec process.
474  */
475 int selinux_xfrm_sock_rcv_skb(u32 isec_sid, struct sk_buff *skb,
476                                 struct avc_audit_data *ad)
477 {
478         int i, rc = 0;
479         struct sec_path *sp;
480         u32 sel_sid = SECINITSID_UNLABELED;
481
482         sp = skb->sp;
483
484         if (sp) {
485                 for (i = 0; i < sp->len; i++) {
486                         struct xfrm_state *x = sp->xvec[i];
487
488                         if (x && selinux_authorizable_xfrm(x)) {
489                                 struct xfrm_sec_ctx *ctx = x->security;
490                                 sel_sid = ctx->ctx_sid;
491                                 break;
492                         }
493                 }
494         }
495
496         rc = avc_has_perm(isec_sid, sel_sid, SECCLASS_ASSOCIATION,
497                           ASSOCIATION__RECVFROM, ad);
498
499         return rc;
500 }
501
502 /*
503  * POSTROUTE_LAST hook's XFRM processing:
504  * If we have no security association, then we need to determine
505  * whether the socket is allowed to send to an unlabelled destination.
506  * If we do have a authorizable security association, then it has already been
507  * checked in xfrm_policy_lookup hook.
508  */
509 int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb,
510                                         struct avc_audit_data *ad)
511 {
512         struct dst_entry *dst;
513         int rc = 0;
514
515         dst = skb->dst;
516
517         if (dst) {
518                 struct dst_entry *dst_test;
519
520                 for (dst_test = dst; dst_test != 0;
521                      dst_test = dst_test->child) {
522                         struct xfrm_state *x = dst_test->xfrm;
523
524                         if (x && selinux_authorizable_xfrm(x))
525                                 goto out;
526                 }
527         }
528
529         rc = avc_has_perm(isec_sid, SECINITSID_UNLABELED, SECCLASS_ASSOCIATION,
530                           ASSOCIATION__SENDTO, ad);
531 out:
532         return rc;
533 }