[PATCH] v9fs: fix corner cases when flushing request
[linux-2.6/verdex.git] / net / xfrm / xfrm_policy.c
blob077bbf9fb9b7605f08af1de583141bbea0429be0
1 /*
2 * xfrm_policy.c
4 * Changes:
5 * Mitsuru KANDA @USAGI
6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
8 * IPv6 support
9 * Kazunori MIYAZAWA @USAGI
10 * YOSHIFUJI Hideaki
11 * Split up af-specific portion
12 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
16 #include <asm/bug.h>
17 #include <linux/config.h>
18 #include <linux/slab.h>
19 #include <linux/kmod.h>
20 #include <linux/list.h>
21 #include <linux/spinlock.h>
22 #include <linux/workqueue.h>
23 #include <linux/notifier.h>
24 #include <linux/netdevice.h>
25 #include <linux/netfilter.h>
26 #include <linux/module.h>
27 #include <net/xfrm.h>
28 #include <net/ip.h>
30 DECLARE_MUTEX(xfrm_cfg_sem);
31 EXPORT_SYMBOL(xfrm_cfg_sem);
33 static DEFINE_RWLOCK(xfrm_policy_lock);
35 struct xfrm_policy *xfrm_policy_list[XFRM_POLICY_MAX*2];
36 EXPORT_SYMBOL(xfrm_policy_list);
38 static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
39 static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
41 static kmem_cache_t *xfrm_dst_cache __read_mostly;
43 static struct work_struct xfrm_policy_gc_work;
44 static struct list_head xfrm_policy_gc_list =
45 LIST_HEAD_INIT(xfrm_policy_gc_list);
46 static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
48 static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
49 static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
51 int xfrm_register_type(struct xfrm_type *type, unsigned short family)
53 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
54 struct xfrm_type_map *typemap;
55 int err = 0;
57 if (unlikely(afinfo == NULL))
58 return -EAFNOSUPPORT;
59 typemap = afinfo->type_map;
61 write_lock(&typemap->lock);
62 if (likely(typemap->map[type->proto] == NULL))
63 typemap->map[type->proto] = type;
64 else
65 err = -EEXIST;
66 write_unlock(&typemap->lock);
67 xfrm_policy_put_afinfo(afinfo);
68 return err;
70 EXPORT_SYMBOL(xfrm_register_type);
72 int xfrm_unregister_type(struct xfrm_type *type, unsigned short family)
74 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
75 struct xfrm_type_map *typemap;
76 int err = 0;
78 if (unlikely(afinfo == NULL))
79 return -EAFNOSUPPORT;
80 typemap = afinfo->type_map;
82 write_lock(&typemap->lock);
83 if (unlikely(typemap->map[type->proto] != type))
84 err = -ENOENT;
85 else
86 typemap->map[type->proto] = NULL;
87 write_unlock(&typemap->lock);
88 xfrm_policy_put_afinfo(afinfo);
89 return err;
91 EXPORT_SYMBOL(xfrm_unregister_type);
93 struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family)
95 struct xfrm_policy_afinfo *afinfo;
96 struct xfrm_type_map *typemap;
97 struct xfrm_type *type;
98 int modload_attempted = 0;
100 retry:
101 afinfo = xfrm_policy_get_afinfo(family);
102 if (unlikely(afinfo == NULL))
103 return NULL;
104 typemap = afinfo->type_map;
106 read_lock(&typemap->lock);
107 type = typemap->map[proto];
108 if (unlikely(type && !try_module_get(type->owner)))
109 type = NULL;
110 read_unlock(&typemap->lock);
111 if (!type && !modload_attempted) {
112 xfrm_policy_put_afinfo(afinfo);
113 request_module("xfrm-type-%d-%d",
114 (int) family, (int) proto);
115 modload_attempted = 1;
116 goto retry;
119 xfrm_policy_put_afinfo(afinfo);
120 return type;
123 int xfrm_dst_lookup(struct xfrm_dst **dst, struct flowi *fl,
124 unsigned short family)
126 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
127 int err = 0;
129 if (unlikely(afinfo == NULL))
130 return -EAFNOSUPPORT;
132 if (likely(afinfo->dst_lookup != NULL))
133 err = afinfo->dst_lookup(dst, fl);
134 else
135 err = -EINVAL;
136 xfrm_policy_put_afinfo(afinfo);
137 return err;
139 EXPORT_SYMBOL(xfrm_dst_lookup);
141 void xfrm_put_type(struct xfrm_type *type)
143 module_put(type->owner);
146 static inline unsigned long make_jiffies(long secs)
148 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
149 return MAX_SCHEDULE_TIMEOUT-1;
150 else
151 return secs*HZ;
154 static void xfrm_policy_timer(unsigned long data)
156 struct xfrm_policy *xp = (struct xfrm_policy*)data;
157 unsigned long now = (unsigned long)xtime.tv_sec;
158 long next = LONG_MAX;
159 int warn = 0;
160 int dir;
162 read_lock(&xp->lock);
164 if (xp->dead)
165 goto out;
167 dir = xfrm_policy_id2dir(xp->index);
169 if (xp->lft.hard_add_expires_seconds) {
170 long tmo = xp->lft.hard_add_expires_seconds +
171 xp->curlft.add_time - now;
172 if (tmo <= 0)
173 goto expired;
174 if (tmo < next)
175 next = tmo;
177 if (xp->lft.hard_use_expires_seconds) {
178 long tmo = xp->lft.hard_use_expires_seconds +
179 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
180 if (tmo <= 0)
181 goto expired;
182 if (tmo < next)
183 next = tmo;
185 if (xp->lft.soft_add_expires_seconds) {
186 long tmo = xp->lft.soft_add_expires_seconds +
187 xp->curlft.add_time - now;
188 if (tmo <= 0) {
189 warn = 1;
190 tmo = XFRM_KM_TIMEOUT;
192 if (tmo < next)
193 next = tmo;
195 if (xp->lft.soft_use_expires_seconds) {
196 long tmo = xp->lft.soft_use_expires_seconds +
197 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
198 if (tmo <= 0) {
199 warn = 1;
200 tmo = XFRM_KM_TIMEOUT;
202 if (tmo < next)
203 next = tmo;
206 if (warn)
207 km_policy_expired(xp, dir, 0);
208 if (next != LONG_MAX &&
209 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
210 xfrm_pol_hold(xp);
212 out:
213 read_unlock(&xp->lock);
214 xfrm_pol_put(xp);
215 return;
217 expired:
218 read_unlock(&xp->lock);
219 if (!xfrm_policy_delete(xp, dir))
220 km_policy_expired(xp, dir, 1);
221 xfrm_pol_put(xp);
225 /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
226 * SPD calls.
229 struct xfrm_policy *xfrm_policy_alloc(gfp_t gfp)
231 struct xfrm_policy *policy;
233 policy = kmalloc(sizeof(struct xfrm_policy), gfp);
235 if (policy) {
236 memset(policy, 0, sizeof(struct xfrm_policy));
237 atomic_set(&policy->refcnt, 1);
238 rwlock_init(&policy->lock);
239 init_timer(&policy->timer);
240 policy->timer.data = (unsigned long)policy;
241 policy->timer.function = xfrm_policy_timer;
243 return policy;
245 EXPORT_SYMBOL(xfrm_policy_alloc);
247 /* Destroy xfrm_policy: descendant resources must be released to this moment. */
249 void __xfrm_policy_destroy(struct xfrm_policy *policy)
251 BUG_ON(!policy->dead);
253 BUG_ON(policy->bundles);
255 if (del_timer(&policy->timer))
256 BUG();
258 security_xfrm_policy_free(policy);
259 kfree(policy);
261 EXPORT_SYMBOL(__xfrm_policy_destroy);
263 static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
265 struct dst_entry *dst;
267 while ((dst = policy->bundles) != NULL) {
268 policy->bundles = dst->next;
269 dst_free(dst);
272 if (del_timer(&policy->timer))
273 atomic_dec(&policy->refcnt);
275 if (atomic_read(&policy->refcnt) > 1)
276 flow_cache_flush();
278 xfrm_pol_put(policy);
281 static void xfrm_policy_gc_task(void *data)
283 struct xfrm_policy *policy;
284 struct list_head *entry, *tmp;
285 struct list_head gc_list = LIST_HEAD_INIT(gc_list);
287 spin_lock_bh(&xfrm_policy_gc_lock);
288 list_splice_init(&xfrm_policy_gc_list, &gc_list);
289 spin_unlock_bh(&xfrm_policy_gc_lock);
291 list_for_each_safe(entry, tmp, &gc_list) {
292 policy = list_entry(entry, struct xfrm_policy, list);
293 xfrm_policy_gc_kill(policy);
297 /* Rule must be locked. Release descentant resources, announce
298 * entry dead. The rule must be unlinked from lists to the moment.
301 static void xfrm_policy_kill(struct xfrm_policy *policy)
303 int dead;
305 write_lock_bh(&policy->lock);
306 dead = policy->dead;
307 policy->dead = 1;
308 write_unlock_bh(&policy->lock);
310 if (unlikely(dead)) {
311 WARN_ON(1);
312 return;
315 spin_lock(&xfrm_policy_gc_lock);
316 list_add(&policy->list, &xfrm_policy_gc_list);
317 spin_unlock(&xfrm_policy_gc_lock);
319 schedule_work(&xfrm_policy_gc_work);
322 /* Generate new index... KAME seems to generate them ordered by cost
323 * of an absolute inpredictability of ordering of rules. This will not pass. */
324 static u32 xfrm_gen_index(int dir)
326 u32 idx;
327 struct xfrm_policy *p;
328 static u32 idx_generator;
330 for (;;) {
331 idx = (idx_generator | dir);
332 idx_generator += 8;
333 if (idx == 0)
334 idx = 8;
335 for (p = xfrm_policy_list[dir]; p; p = p->next) {
336 if (p->index == idx)
337 break;
339 if (!p)
340 return idx;
344 int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
346 struct xfrm_policy *pol, **p;
347 struct xfrm_policy *delpol = NULL;
348 struct xfrm_policy **newpos = NULL;
349 struct dst_entry *gc_list;
351 write_lock_bh(&xfrm_policy_lock);
352 for (p = &xfrm_policy_list[dir]; (pol=*p)!=NULL;) {
353 if (!delpol && memcmp(&policy->selector, &pol->selector, sizeof(pol->selector)) == 0 &&
354 xfrm_sec_ctx_match(pol->security, policy->security)) {
355 if (excl) {
356 write_unlock_bh(&xfrm_policy_lock);
357 return -EEXIST;
359 *p = pol->next;
360 delpol = pol;
361 if (policy->priority > pol->priority)
362 continue;
363 } else if (policy->priority >= pol->priority) {
364 p = &pol->next;
365 continue;
367 if (!newpos)
368 newpos = p;
369 if (delpol)
370 break;
371 p = &pol->next;
373 if (newpos)
374 p = newpos;
375 xfrm_pol_hold(policy);
376 policy->next = *p;
377 *p = policy;
378 atomic_inc(&flow_cache_genid);
379 policy->index = delpol ? delpol->index : xfrm_gen_index(dir);
380 policy->curlft.add_time = (unsigned long)xtime.tv_sec;
381 policy->curlft.use_time = 0;
382 if (!mod_timer(&policy->timer, jiffies + HZ))
383 xfrm_pol_hold(policy);
384 write_unlock_bh(&xfrm_policy_lock);
386 if (delpol)
387 xfrm_policy_kill(delpol);
389 read_lock_bh(&xfrm_policy_lock);
390 gc_list = NULL;
391 for (policy = policy->next; policy; policy = policy->next) {
392 struct dst_entry *dst;
394 write_lock(&policy->lock);
395 dst = policy->bundles;
396 if (dst) {
397 struct dst_entry *tail = dst;
398 while (tail->next)
399 tail = tail->next;
400 tail->next = gc_list;
401 gc_list = dst;
403 policy->bundles = NULL;
405 write_unlock(&policy->lock);
407 read_unlock_bh(&xfrm_policy_lock);
409 while (gc_list) {
410 struct dst_entry *dst = gc_list;
412 gc_list = dst->next;
413 dst_free(dst);
416 return 0;
418 EXPORT_SYMBOL(xfrm_policy_insert);
420 struct xfrm_policy *xfrm_policy_bysel_ctx(int dir, struct xfrm_selector *sel,
421 struct xfrm_sec_ctx *ctx, int delete)
423 struct xfrm_policy *pol, **p;
425 write_lock_bh(&xfrm_policy_lock);
426 for (p = &xfrm_policy_list[dir]; (pol=*p)!=NULL; p = &pol->next) {
427 if ((memcmp(sel, &pol->selector, sizeof(*sel)) == 0) &&
428 (xfrm_sec_ctx_match(ctx, pol->security))) {
429 xfrm_pol_hold(pol);
430 if (delete)
431 *p = pol->next;
432 break;
435 write_unlock_bh(&xfrm_policy_lock);
437 if (pol && delete) {
438 atomic_inc(&flow_cache_genid);
439 xfrm_policy_kill(pol);
441 return pol;
443 EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
445 struct xfrm_policy *xfrm_policy_byid(int dir, u32 id, int delete)
447 struct xfrm_policy *pol, **p;
449 write_lock_bh(&xfrm_policy_lock);
450 for (p = &xfrm_policy_list[dir]; (pol=*p)!=NULL; p = &pol->next) {
451 if (pol->index == id) {
452 xfrm_pol_hold(pol);
453 if (delete)
454 *p = pol->next;
455 break;
458 write_unlock_bh(&xfrm_policy_lock);
460 if (pol && delete) {
461 atomic_inc(&flow_cache_genid);
462 xfrm_policy_kill(pol);
464 return pol;
466 EXPORT_SYMBOL(xfrm_policy_byid);
468 void xfrm_policy_flush(void)
470 struct xfrm_policy *xp;
471 int dir;
473 write_lock_bh(&xfrm_policy_lock);
474 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
475 while ((xp = xfrm_policy_list[dir]) != NULL) {
476 xfrm_policy_list[dir] = xp->next;
477 write_unlock_bh(&xfrm_policy_lock);
479 xfrm_policy_kill(xp);
481 write_lock_bh(&xfrm_policy_lock);
484 atomic_inc(&flow_cache_genid);
485 write_unlock_bh(&xfrm_policy_lock);
487 EXPORT_SYMBOL(xfrm_policy_flush);
489 int xfrm_policy_walk(int (*func)(struct xfrm_policy *, int, int, void*),
490 void *data)
492 struct xfrm_policy *xp;
493 int dir;
494 int count = 0;
495 int error = 0;
497 read_lock_bh(&xfrm_policy_lock);
498 for (dir = 0; dir < 2*XFRM_POLICY_MAX; dir++) {
499 for (xp = xfrm_policy_list[dir]; xp; xp = xp->next)
500 count++;
503 if (count == 0) {
504 error = -ENOENT;
505 goto out;
508 for (dir = 0; dir < 2*XFRM_POLICY_MAX; dir++) {
509 for (xp = xfrm_policy_list[dir]; xp; xp = xp->next) {
510 error = func(xp, dir%XFRM_POLICY_MAX, --count, data);
511 if (error)
512 goto out;
516 out:
517 read_unlock_bh(&xfrm_policy_lock);
518 return error;
520 EXPORT_SYMBOL(xfrm_policy_walk);
522 /* Find policy to apply to this flow. */
524 static void xfrm_policy_lookup(struct flowi *fl, u32 sk_sid, u16 family, u8 dir,
525 void **objp, atomic_t **obj_refp)
527 struct xfrm_policy *pol;
529 read_lock_bh(&xfrm_policy_lock);
530 for (pol = xfrm_policy_list[dir]; pol; pol = pol->next) {
531 struct xfrm_selector *sel = &pol->selector;
532 int match;
534 if (pol->family != family)
535 continue;
537 match = xfrm_selector_match(sel, fl, family);
539 if (match) {
540 if (!security_xfrm_policy_lookup(pol, sk_sid, dir)) {
541 xfrm_pol_hold(pol);
542 break;
546 read_unlock_bh(&xfrm_policy_lock);
547 if ((*objp = (void *) pol) != NULL)
548 *obj_refp = &pol->refcnt;
551 static inline int policy_to_flow_dir(int dir)
553 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
554 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
555 XFRM_POLICY_FWD == FLOW_DIR_FWD)
556 return dir;
557 switch (dir) {
558 default:
559 case XFRM_POLICY_IN:
560 return FLOW_DIR_IN;
561 case XFRM_POLICY_OUT:
562 return FLOW_DIR_OUT;
563 case XFRM_POLICY_FWD:
564 return FLOW_DIR_FWD;
568 static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl, u32 sk_sid)
570 struct xfrm_policy *pol;
572 read_lock_bh(&xfrm_policy_lock);
573 if ((pol = sk->sk_policy[dir]) != NULL) {
574 int match = xfrm_selector_match(&pol->selector, fl,
575 sk->sk_family);
576 int err = 0;
578 if (match)
579 err = security_xfrm_policy_lookup(pol, sk_sid, policy_to_flow_dir(dir));
581 if (match && !err)
582 xfrm_pol_hold(pol);
583 else
584 pol = NULL;
586 read_unlock_bh(&xfrm_policy_lock);
587 return pol;
590 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
592 pol->next = xfrm_policy_list[dir];
593 xfrm_policy_list[dir] = pol;
594 xfrm_pol_hold(pol);
597 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
598 int dir)
600 struct xfrm_policy **polp;
602 for (polp = &xfrm_policy_list[dir];
603 *polp != NULL; polp = &(*polp)->next) {
604 if (*polp == pol) {
605 *polp = pol->next;
606 return pol;
609 return NULL;
612 int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
614 write_lock_bh(&xfrm_policy_lock);
615 pol = __xfrm_policy_unlink(pol, dir);
616 write_unlock_bh(&xfrm_policy_lock);
617 if (pol) {
618 if (dir < XFRM_POLICY_MAX)
619 atomic_inc(&flow_cache_genid);
620 xfrm_policy_kill(pol);
621 return 0;
623 return -ENOENT;
626 int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
628 struct xfrm_policy *old_pol;
630 write_lock_bh(&xfrm_policy_lock);
631 old_pol = sk->sk_policy[dir];
632 sk->sk_policy[dir] = pol;
633 if (pol) {
634 pol->curlft.add_time = (unsigned long)xtime.tv_sec;
635 pol->index = xfrm_gen_index(XFRM_POLICY_MAX+dir);
636 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
638 if (old_pol)
639 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
640 write_unlock_bh(&xfrm_policy_lock);
642 if (old_pol) {
643 xfrm_policy_kill(old_pol);
645 return 0;
648 static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
650 struct xfrm_policy *newp = xfrm_policy_alloc(GFP_ATOMIC);
652 if (newp) {
653 newp->selector = old->selector;
654 if (security_xfrm_policy_clone(old, newp)) {
655 kfree(newp);
656 return NULL; /* ENOMEM */
658 newp->lft = old->lft;
659 newp->curlft = old->curlft;
660 newp->action = old->action;
661 newp->flags = old->flags;
662 newp->xfrm_nr = old->xfrm_nr;
663 newp->index = old->index;
664 memcpy(newp->xfrm_vec, old->xfrm_vec,
665 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
666 write_lock_bh(&xfrm_policy_lock);
667 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
668 write_unlock_bh(&xfrm_policy_lock);
669 xfrm_pol_put(newp);
671 return newp;
674 int __xfrm_sk_clone_policy(struct sock *sk)
676 struct xfrm_policy *p0 = sk->sk_policy[0],
677 *p1 = sk->sk_policy[1];
679 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
680 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
681 return -ENOMEM;
682 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
683 return -ENOMEM;
684 return 0;
687 /* Resolve list of templates for the flow, given policy. */
689 static int
690 xfrm_tmpl_resolve(struct xfrm_policy *policy, struct flowi *fl,
691 struct xfrm_state **xfrm,
692 unsigned short family)
694 int nx;
695 int i, error;
696 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
697 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
699 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
700 struct xfrm_state *x;
701 xfrm_address_t *remote = daddr;
702 xfrm_address_t *local = saddr;
703 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
705 if (tmpl->mode) {
706 remote = &tmpl->id.daddr;
707 local = &tmpl->saddr;
710 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
712 if (x && x->km.state == XFRM_STATE_VALID) {
713 xfrm[nx++] = x;
714 daddr = remote;
715 saddr = local;
716 continue;
718 if (x) {
719 error = (x->km.state == XFRM_STATE_ERROR ?
720 -EINVAL : -EAGAIN);
721 xfrm_state_put(x);
724 if (!tmpl->optional)
725 goto fail;
727 return nx;
729 fail:
730 for (nx--; nx>=0; nx--)
731 xfrm_state_put(xfrm[nx]);
732 return error;
735 /* Check that the bundle accepts the flow and its components are
736 * still valid.
739 static struct dst_entry *
740 xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
742 struct dst_entry *x;
743 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
744 if (unlikely(afinfo == NULL))
745 return ERR_PTR(-EINVAL);
746 x = afinfo->find_bundle(fl, policy);
747 xfrm_policy_put_afinfo(afinfo);
748 return x;
751 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
752 * all the metrics... Shortly, bundle a bundle.
755 static int
756 xfrm_bundle_create(struct xfrm_policy *policy, struct xfrm_state **xfrm, int nx,
757 struct flowi *fl, struct dst_entry **dst_p,
758 unsigned short family)
760 int err;
761 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
762 if (unlikely(afinfo == NULL))
763 return -EINVAL;
764 err = afinfo->bundle_create(policy, xfrm, nx, fl, dst_p);
765 xfrm_policy_put_afinfo(afinfo);
766 return err;
770 static int stale_bundle(struct dst_entry *dst);
772 /* Main function: finds/creates a bundle for given flow.
774 * At the moment we eat a raw IP route. Mostly to speed up lookups
775 * on interfaces with disabled IPsec.
777 int xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
778 struct sock *sk, int flags)
780 struct xfrm_policy *policy;
781 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
782 struct dst_entry *dst, *dst_orig = *dst_p;
783 int nx = 0;
784 int err;
785 u32 genid;
786 u16 family = dst_orig->ops->family;
787 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
788 u32 sk_sid = security_sk_sid(sk, fl, dir);
789 restart:
790 genid = atomic_read(&flow_cache_genid);
791 policy = NULL;
792 if (sk && sk->sk_policy[1])
793 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, sk_sid);
795 if (!policy) {
796 /* To accelerate a bit... */
797 if ((dst_orig->flags & DST_NOXFRM) || !xfrm_policy_list[XFRM_POLICY_OUT])
798 return 0;
800 policy = flow_cache_lookup(fl, sk_sid, family, dir,
801 xfrm_policy_lookup);
804 if (!policy)
805 return 0;
807 policy->curlft.use_time = (unsigned long)xtime.tv_sec;
809 switch (policy->action) {
810 case XFRM_POLICY_BLOCK:
811 /* Prohibit the flow */
812 err = -EPERM;
813 goto error;
815 case XFRM_POLICY_ALLOW:
816 if (policy->xfrm_nr == 0) {
817 /* Flow passes not transformed. */
818 xfrm_pol_put(policy);
819 return 0;
822 /* Try to find matching bundle.
824 * LATER: help from flow cache. It is optional, this
825 * is required only for output policy.
827 dst = xfrm_find_bundle(fl, policy, family);
828 if (IS_ERR(dst)) {
829 err = PTR_ERR(dst);
830 goto error;
833 if (dst)
834 break;
836 nx = xfrm_tmpl_resolve(policy, fl, xfrm, family);
838 if (unlikely(nx<0)) {
839 err = nx;
840 if (err == -EAGAIN && flags) {
841 DECLARE_WAITQUEUE(wait, current);
843 add_wait_queue(&km_waitq, &wait);
844 set_current_state(TASK_INTERRUPTIBLE);
845 schedule();
846 set_current_state(TASK_RUNNING);
847 remove_wait_queue(&km_waitq, &wait);
849 nx = xfrm_tmpl_resolve(policy, fl, xfrm, family);
851 if (nx == -EAGAIN && signal_pending(current)) {
852 err = -ERESTART;
853 goto error;
855 if (nx == -EAGAIN ||
856 genid != atomic_read(&flow_cache_genid)) {
857 xfrm_pol_put(policy);
858 goto restart;
860 err = nx;
862 if (err < 0)
863 goto error;
865 if (nx == 0) {
866 /* Flow passes not transformed. */
867 xfrm_pol_put(policy);
868 return 0;
871 dst = dst_orig;
872 err = xfrm_bundle_create(policy, xfrm, nx, fl, &dst, family);
874 if (unlikely(err)) {
875 int i;
876 for (i=0; i<nx; i++)
877 xfrm_state_put(xfrm[i]);
878 goto error;
881 write_lock_bh(&policy->lock);
882 if (unlikely(policy->dead || stale_bundle(dst))) {
883 /* Wow! While we worked on resolving, this
884 * policy has gone. Retry. It is not paranoia,
885 * we just cannot enlist new bundle to dead object.
886 * We can't enlist stable bundles either.
888 write_unlock_bh(&policy->lock);
890 xfrm_pol_put(policy);
891 if (dst)
892 dst_free(dst);
893 goto restart;
895 dst->next = policy->bundles;
896 policy->bundles = dst;
897 dst_hold(dst);
898 write_unlock_bh(&policy->lock);
900 *dst_p = dst;
901 dst_release(dst_orig);
902 xfrm_pol_put(policy);
903 return 0;
905 error:
906 dst_release(dst_orig);
907 xfrm_pol_put(policy);
908 *dst_p = NULL;
909 return err;
911 EXPORT_SYMBOL(xfrm_lookup);
913 /* When skb is transformed back to its "native" form, we have to
914 * check policy restrictions. At the moment we make this in maximally
915 * stupid way. Shame on me. :-) Of course, connected sockets must
916 * have policy cached at them.
919 static inline int
920 xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
921 unsigned short family)
923 if (xfrm_state_kern(x))
924 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, family);
925 return x->id.proto == tmpl->id.proto &&
926 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
927 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
928 x->props.mode == tmpl->mode &&
929 (tmpl->aalgos & (1<<x->props.aalgo)) &&
930 !(x->props.mode && xfrm_state_addr_cmp(tmpl, x, family));
933 static inline int
934 xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
935 unsigned short family)
937 int idx = start;
939 if (tmpl->optional) {
940 if (!tmpl->mode)
941 return start;
942 } else
943 start = -1;
944 for (; idx < sp->len; idx++) {
945 if (xfrm_state_ok(tmpl, sp->x[idx].xvec, family))
946 return ++idx;
947 if (sp->x[idx].xvec->props.mode)
948 break;
950 return start;
954 xfrm_decode_session(struct sk_buff *skb, struct flowi *fl, unsigned short family)
956 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
958 if (unlikely(afinfo == NULL))
959 return -EAFNOSUPPORT;
961 afinfo->decode_session(skb, fl);
962 xfrm_policy_put_afinfo(afinfo);
963 return 0;
965 EXPORT_SYMBOL(xfrm_decode_session);
967 static inline int secpath_has_tunnel(struct sec_path *sp, int k)
969 for (; k < sp->len; k++) {
970 if (sp->x[k].xvec->props.mode)
971 return 1;
974 return 0;
977 int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
978 unsigned short family)
980 struct xfrm_policy *pol;
981 struct flowi fl;
982 u8 fl_dir = policy_to_flow_dir(dir);
983 u32 sk_sid;
985 if (xfrm_decode_session(skb, &fl, family) < 0)
986 return 0;
987 nf_nat_decode_session(skb, &fl, family);
989 sk_sid = security_sk_sid(sk, &fl, fl_dir);
991 /* First, check used SA against their selectors. */
992 if (skb->sp) {
993 int i;
995 for (i=skb->sp->len-1; i>=0; i--) {
996 struct sec_decap_state *xvec = &(skb->sp->x[i]);
997 if (!xfrm_selector_match(&xvec->xvec->sel, &fl, family))
998 return 0;
1000 /* If there is a post_input processor, try running it */
1001 if (xvec->xvec->type->post_input &&
1002 (xvec->xvec->type->post_input)(xvec->xvec,
1003 &(xvec->decap),
1004 skb) != 0)
1005 return 0;
1009 pol = NULL;
1010 if (sk && sk->sk_policy[dir])
1011 pol = xfrm_sk_policy_lookup(sk, dir, &fl, sk_sid);
1013 if (!pol)
1014 pol = flow_cache_lookup(&fl, sk_sid, family, fl_dir,
1015 xfrm_policy_lookup);
1017 if (!pol)
1018 return !skb->sp || !secpath_has_tunnel(skb->sp, 0);
1020 pol->curlft.use_time = (unsigned long)xtime.tv_sec;
1022 if (pol->action == XFRM_POLICY_ALLOW) {
1023 struct sec_path *sp;
1024 static struct sec_path dummy;
1025 int i, k;
1027 if ((sp = skb->sp) == NULL)
1028 sp = &dummy;
1030 /* For each tunnel xfrm, find the first matching tmpl.
1031 * For each tmpl before that, find corresponding xfrm.
1032 * Order is _important_. Later we will implement
1033 * some barriers, but at the moment barriers
1034 * are implied between each two transformations.
1036 for (i = pol->xfrm_nr-1, k = 0; i >= 0; i--) {
1037 k = xfrm_policy_ok(pol->xfrm_vec+i, sp, k, family);
1038 if (k < 0)
1039 goto reject;
1042 if (secpath_has_tunnel(sp, k))
1043 goto reject;
1045 xfrm_pol_put(pol);
1046 return 1;
1049 reject:
1050 xfrm_pol_put(pol);
1051 return 0;
1053 EXPORT_SYMBOL(__xfrm_policy_check);
1055 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
1057 struct flowi fl;
1059 if (xfrm_decode_session(skb, &fl, family) < 0)
1060 return 0;
1062 return xfrm_lookup(&skb->dst, &fl, NULL, 0) == 0;
1064 EXPORT_SYMBOL(__xfrm_route_forward);
1066 static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
1068 /* If it is marked obsolete, which is how we even get here,
1069 * then we have purged it from the policy bundle list and we
1070 * did that for a good reason.
1072 return NULL;
1075 static int stale_bundle(struct dst_entry *dst)
1077 return !xfrm_bundle_ok((struct xfrm_dst *)dst, NULL, AF_UNSPEC);
1080 void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
1082 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
1083 dst->dev = &loopback_dev;
1084 dev_hold(&loopback_dev);
1085 dev_put(dev);
1088 EXPORT_SYMBOL(xfrm_dst_ifdown);
1090 static void xfrm_link_failure(struct sk_buff *skb)
1092 /* Impossible. Such dst must be popped before reaches point of failure. */
1093 return;
1096 static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
1098 if (dst) {
1099 if (dst->obsolete) {
1100 dst_release(dst);
1101 dst = NULL;
1104 return dst;
1107 static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
1109 int i;
1110 struct xfrm_policy *pol;
1111 struct dst_entry *dst, **dstp, *gc_list = NULL;
1113 read_lock_bh(&xfrm_policy_lock);
1114 for (i=0; i<2*XFRM_POLICY_MAX; i++) {
1115 for (pol = xfrm_policy_list[i]; pol; pol = pol->next) {
1116 write_lock(&pol->lock);
1117 dstp = &pol->bundles;
1118 while ((dst=*dstp) != NULL) {
1119 if (func(dst)) {
1120 *dstp = dst->next;
1121 dst->next = gc_list;
1122 gc_list = dst;
1123 } else {
1124 dstp = &dst->next;
1127 write_unlock(&pol->lock);
1130 read_unlock_bh(&xfrm_policy_lock);
1132 while (gc_list) {
1133 dst = gc_list;
1134 gc_list = dst->next;
1135 dst_free(dst);
1139 static int unused_bundle(struct dst_entry *dst)
1141 return !atomic_read(&dst->__refcnt);
1144 static void __xfrm_garbage_collect(void)
1146 xfrm_prune_bundles(unused_bundle);
1149 int xfrm_flush_bundles(void)
1151 xfrm_prune_bundles(stale_bundle);
1152 return 0;
1155 static int always_true(struct dst_entry *dst)
1157 return 1;
1160 void xfrm_flush_all_bundles(void)
1162 xfrm_prune_bundles(always_true);
1165 void xfrm_init_pmtu(struct dst_entry *dst)
1167 do {
1168 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1169 u32 pmtu, route_mtu_cached;
1171 pmtu = dst_mtu(dst->child);
1172 xdst->child_mtu_cached = pmtu;
1174 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
1176 route_mtu_cached = dst_mtu(xdst->route);
1177 xdst->route_mtu_cached = route_mtu_cached;
1179 if (pmtu > route_mtu_cached)
1180 pmtu = route_mtu_cached;
1182 dst->metrics[RTAX_MTU-1] = pmtu;
1183 } while ((dst = dst->next));
1186 EXPORT_SYMBOL(xfrm_init_pmtu);
1188 /* Check that the bundle accepts the flow and its components are
1189 * still valid.
1192 int xfrm_bundle_ok(struct xfrm_dst *first, struct flowi *fl, int family)
1194 struct dst_entry *dst = &first->u.dst;
1195 struct xfrm_dst *last;
1196 u32 mtu;
1198 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
1199 (dst->dev && !netif_running(dst->dev)))
1200 return 0;
1202 last = NULL;
1204 do {
1205 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1207 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
1208 return 0;
1209 if (dst->xfrm->km.state != XFRM_STATE_VALID)
1210 return 0;
1212 mtu = dst_mtu(dst->child);
1213 if (xdst->child_mtu_cached != mtu) {
1214 last = xdst;
1215 xdst->child_mtu_cached = mtu;
1218 if (!dst_check(xdst->route, xdst->route_cookie))
1219 return 0;
1220 mtu = dst_mtu(xdst->route);
1221 if (xdst->route_mtu_cached != mtu) {
1222 last = xdst;
1223 xdst->route_mtu_cached = mtu;
1226 dst = dst->child;
1227 } while (dst->xfrm);
1229 if (likely(!last))
1230 return 1;
1232 mtu = last->child_mtu_cached;
1233 for (;;) {
1234 dst = &last->u.dst;
1236 mtu = xfrm_state_mtu(dst->xfrm, mtu);
1237 if (mtu > last->route_mtu_cached)
1238 mtu = last->route_mtu_cached;
1239 dst->metrics[RTAX_MTU-1] = mtu;
1241 if (last == first)
1242 break;
1244 last = last->u.next;
1245 last->child_mtu_cached = mtu;
1248 return 1;
1251 EXPORT_SYMBOL(xfrm_bundle_ok);
1253 int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
1255 int err = 0;
1256 if (unlikely(afinfo == NULL))
1257 return -EINVAL;
1258 if (unlikely(afinfo->family >= NPROTO))
1259 return -EAFNOSUPPORT;
1260 write_lock(&xfrm_policy_afinfo_lock);
1261 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
1262 err = -ENOBUFS;
1263 else {
1264 struct dst_ops *dst_ops = afinfo->dst_ops;
1265 if (likely(dst_ops->kmem_cachep == NULL))
1266 dst_ops->kmem_cachep = xfrm_dst_cache;
1267 if (likely(dst_ops->check == NULL))
1268 dst_ops->check = xfrm_dst_check;
1269 if (likely(dst_ops->negative_advice == NULL))
1270 dst_ops->negative_advice = xfrm_negative_advice;
1271 if (likely(dst_ops->link_failure == NULL))
1272 dst_ops->link_failure = xfrm_link_failure;
1273 if (likely(afinfo->garbage_collect == NULL))
1274 afinfo->garbage_collect = __xfrm_garbage_collect;
1275 xfrm_policy_afinfo[afinfo->family] = afinfo;
1277 write_unlock(&xfrm_policy_afinfo_lock);
1278 return err;
1280 EXPORT_SYMBOL(xfrm_policy_register_afinfo);
1282 int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
1284 int err = 0;
1285 if (unlikely(afinfo == NULL))
1286 return -EINVAL;
1287 if (unlikely(afinfo->family >= NPROTO))
1288 return -EAFNOSUPPORT;
1289 write_lock(&xfrm_policy_afinfo_lock);
1290 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
1291 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
1292 err = -EINVAL;
1293 else {
1294 struct dst_ops *dst_ops = afinfo->dst_ops;
1295 xfrm_policy_afinfo[afinfo->family] = NULL;
1296 dst_ops->kmem_cachep = NULL;
1297 dst_ops->check = NULL;
1298 dst_ops->negative_advice = NULL;
1299 dst_ops->link_failure = NULL;
1300 afinfo->garbage_collect = NULL;
1303 write_unlock(&xfrm_policy_afinfo_lock);
1304 return err;
1306 EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
1308 static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
1310 struct xfrm_policy_afinfo *afinfo;
1311 if (unlikely(family >= NPROTO))
1312 return NULL;
1313 read_lock(&xfrm_policy_afinfo_lock);
1314 afinfo = xfrm_policy_afinfo[family];
1315 if (likely(afinfo != NULL))
1316 read_lock(&afinfo->lock);
1317 read_unlock(&xfrm_policy_afinfo_lock);
1318 return afinfo;
1321 static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
1323 if (unlikely(afinfo == NULL))
1324 return;
1325 read_unlock(&afinfo->lock);
1328 static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
1330 switch (event) {
1331 case NETDEV_DOWN:
1332 xfrm_flush_bundles();
1334 return NOTIFY_DONE;
1337 static struct notifier_block xfrm_dev_notifier = {
1338 xfrm_dev_event,
1339 NULL,
1343 static void __init xfrm_policy_init(void)
1345 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
1346 sizeof(struct xfrm_dst),
1347 0, SLAB_HWCACHE_ALIGN,
1348 NULL, NULL);
1349 if (!xfrm_dst_cache)
1350 panic("XFRM: failed to allocate xfrm_dst_cache\n");
1352 INIT_WORK(&xfrm_policy_gc_work, xfrm_policy_gc_task, NULL);
1353 register_netdevice_notifier(&xfrm_dev_notifier);
1356 void __init xfrm_init(void)
1358 xfrm_state_init();
1359 xfrm_policy_init();
1360 xfrm_input_init();