6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * Kazunori MIYAZAWA @USAGI
11 * Split up af-specific portion
12 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
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>
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;
57 if (unlikely(afinfo == NULL))
59 typemap = afinfo->type_map;
61 write_lock(&typemap->lock);
62 if (likely(typemap->map[type->proto] == NULL))
63 typemap->map[type->proto] = type;
66 write_unlock(&typemap->lock);
67 xfrm_policy_put_afinfo(afinfo);
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;
78 if (unlikely(afinfo == NULL))
80 typemap = afinfo->type_map;
82 write_lock(&typemap->lock);
83 if (unlikely(typemap->map[type->proto] != type))
86 typemap->map[type->proto] = NULL;
87 write_unlock(&typemap->lock);
88 xfrm_policy_put_afinfo(afinfo);
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;
101 afinfo = xfrm_policy_get_afinfo(family);
102 if (unlikely(afinfo == 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)))
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;
119 xfrm_policy_put_afinfo(afinfo);
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);
129 if (unlikely(afinfo == NULL))
130 return -EAFNOSUPPORT;
132 if (likely(afinfo->dst_lookup != NULL))
133 err = afinfo->dst_lookup(dst, fl);
136 xfrm_policy_put_afinfo(afinfo);
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;
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;
162 read_lock(&xp->lock);
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;
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;
185 if (xp->lft.soft_add_expires_seconds) {
186 long tmo = xp->lft.soft_add_expires_seconds +
187 xp->curlft.add_time - now;
190 tmo = XFRM_KM_TIMEOUT;
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;
200 tmo = XFRM_KM_TIMEOUT;
207 km_policy_expired(xp, dir, 0);
208 if (next != LONG_MAX &&
209 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
213 read_unlock(&xp->lock);
218 read_unlock(&xp->lock);
219 if (!xfrm_policy_delete(xp, dir))
220 km_policy_expired(xp, dir, 1);
225 /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
229 struct xfrm_policy *xfrm_policy_alloc(gfp_t gfp)
231 struct xfrm_policy *policy;
233 policy = kmalloc(sizeof(struct xfrm_policy), gfp);
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;
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))
258 security_xfrm_policy_free(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;
272 if (del_timer(&policy->timer))
273 atomic_dec(&policy->refcnt);
275 if (atomic_read(&policy->refcnt) > 1)
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)
305 write_lock_bh(&policy->lock);
308 write_unlock_bh(&policy->lock);
310 if (unlikely(dead)) {
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)
327 struct xfrm_policy *p;
328 static u32 idx_generator;
331 idx = (idx_generator | dir);
335 for (p = xfrm_policy_list[dir]; p; p = p->next) {
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)) {
356 write_unlock_bh(&xfrm_policy_lock);
361 if (policy->priority > pol->priority)
363 } else if (policy->priority >= pol->priority) {
375 xfrm_pol_hold(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);
387 xfrm_policy_kill(delpol);
389 read_lock_bh(&xfrm_policy_lock);
391 for (policy = policy->next; policy; policy = policy->next) {
392 struct dst_entry *dst;
394 write_lock(&policy->lock);
395 dst = policy->bundles;
397 struct dst_entry *tail = dst;
400 tail->next = gc_list;
403 policy->bundles = NULL;
405 write_unlock(&policy->lock);
407 read_unlock_bh(&xfrm_policy_lock);
410 struct dst_entry *dst = gc_list;
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))) {
435 write_unlock_bh(&xfrm_policy_lock);
438 atomic_inc(&flow_cache_genid);
439 xfrm_policy_kill(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) {
458 write_unlock_bh(&xfrm_policy_lock);
461 atomic_inc(&flow_cache_genid);
462 xfrm_policy_kill(pol);
466 EXPORT_SYMBOL(xfrm_policy_byid);
468 void xfrm_policy_flush(void)
470 struct xfrm_policy *xp;
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*),
492 struct xfrm_policy *xp;
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)
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);
517 read_unlock_bh(&xfrm_policy_lock);
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;
534 if (pol->family != family)
537 match = xfrm_selector_match(sel, fl, family);
540 if (!security_xfrm_policy_lookup(pol, sk_sid, dir)) {
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)
561 case XFRM_POLICY_OUT:
563 case XFRM_POLICY_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,
579 err = security_xfrm_policy_lookup(pol, sk_sid, policy_to_flow_dir(dir));
586 read_unlock_bh(&xfrm_policy_lock);
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;
597 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
600 struct xfrm_policy **polp;
602 for (polp = &xfrm_policy_list[dir];
603 *polp != NULL; polp = &(*polp)->next) {
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);
618 if (dir < XFRM_POLICY_MAX)
619 atomic_inc(&flow_cache_genid);
620 xfrm_policy_kill(pol);
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;
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);
639 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
640 write_unlock_bh(&xfrm_policy_lock);
643 xfrm_policy_kill(old_pol);
648 static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
650 struct xfrm_policy *newp = xfrm_policy_alloc(GFP_ATOMIC);
653 newp->selector = old->selector;
654 if (security_xfrm_policy_clone(old, 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);
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)
682 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
687 /* Resolve list of templates for the flow, given policy. */
690 xfrm_tmpl_resolve(struct xfrm_policy *policy, struct flowi *fl,
691 struct xfrm_state **xfrm,
692 unsigned short family)
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];
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) {
719 error = (x->km.state == XFRM_STATE_ERROR ?
730 for (nx--; nx>=0; nx--)
731 xfrm_state_put(xfrm[nx]);
735 /* Check that the bundle accepts the flow and its components are
739 static struct dst_entry *
740 xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
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);
751 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
752 * all the metrics... Shortly, bundle a bundle.
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)
761 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
762 if (unlikely(afinfo == NULL))
764 err = afinfo->bundle_create(policy, xfrm, nx, fl, dst_p);
765 xfrm_policy_put_afinfo(afinfo);
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;
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);
790 genid = atomic_read(&flow_cache_genid);
792 if (sk && sk->sk_policy[1])
793 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, sk_sid);
796 /* To accelerate a bit... */
797 if ((dst_orig->flags & DST_NOXFRM) || !xfrm_policy_list[XFRM_POLICY_OUT])
800 policy = flow_cache_lookup(fl, sk_sid, family, dir,
807 policy->curlft.use_time = (unsigned long)xtime.tv_sec;
809 switch (policy->action) {
810 case XFRM_POLICY_BLOCK:
811 /* Prohibit the flow */
815 case XFRM_POLICY_ALLOW:
816 if (policy->xfrm_nr == 0) {
817 /* Flow passes not transformed. */
818 xfrm_pol_put(policy);
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);
836 nx = xfrm_tmpl_resolve(policy, fl, xfrm, family);
838 if (unlikely(nx<0)) {
840 if (err == -EAGAIN && flags) {
841 DECLARE_WAITQUEUE(wait, current);
843 add_wait_queue(&km_waitq, &wait);
844 set_current_state(TASK_INTERRUPTIBLE);
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)) {
856 genid != atomic_read(&flow_cache_genid)) {
857 xfrm_pol_put(policy);
866 /* Flow passes not transformed. */
867 xfrm_pol_put(policy);
872 err = xfrm_bundle_create(policy, xfrm, nx, fl, &dst, family);
877 xfrm_state_put(xfrm[i]);
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);
895 dst->next = policy->bundles;
896 policy->bundles = dst;
898 write_unlock_bh(&policy->lock);
901 dst_release(dst_orig);
902 xfrm_pol_put(policy);
906 dst_release(dst_orig);
907 xfrm_pol_put(policy);
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.
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));
934 xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
935 unsigned short family)
939 if (tmpl->optional) {
944 for (; idx < sp->len; idx++) {
945 if (xfrm_state_ok(tmpl, sp->x[idx].xvec, family))
947 if (sp->x[idx].xvec->props.mode)
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);
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)
977 int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
978 unsigned short family)
980 struct xfrm_policy *pol;
982 u8 fl_dir = policy_to_flow_dir(dir);
985 if (xfrm_decode_session(skb, &fl, family) < 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. */
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))
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,
1010 if (sk && sk->sk_policy[dir])
1011 pol = xfrm_sk_policy_lookup(sk, dir, &fl, sk_sid);
1014 pol = flow_cache_lookup(&fl, sk_sid, family, fl_dir,
1015 xfrm_policy_lookup);
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;
1027 if ((sp = skb->sp) == NULL)
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);
1042 if (secpath_has_tunnel(sp, k))
1053 EXPORT_SYMBOL(__xfrm_policy_check);
1055 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
1059 if (xfrm_decode_session(skb, &fl, family) < 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.
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);
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. */
1096 static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
1099 if (dst->obsolete) {
1107 static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
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) {
1121 dst->next = gc_list;
1127 write_unlock(&pol->lock);
1130 read_unlock_bh(&xfrm_policy_lock);
1134 gc_list = dst->next;
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);
1155 static int always_true(struct dst_entry *dst)
1160 void xfrm_flush_all_bundles(void)
1162 xfrm_prune_bundles(always_true);
1165 void xfrm_init_pmtu(struct dst_entry *dst)
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
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;
1198 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
1199 (dst->dev && !netif_running(dst->dev)))
1205 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1207 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
1209 if (dst->xfrm->km.state != XFRM_STATE_VALID)
1212 mtu = dst_mtu(dst->child);
1213 if (xdst->child_mtu_cached != mtu) {
1215 xdst->child_mtu_cached = mtu;
1218 if (!dst_check(xdst->route, xdst->route_cookie))
1220 mtu = dst_mtu(xdst->route);
1221 if (xdst->route_mtu_cached != mtu) {
1223 xdst->route_mtu_cached = mtu;
1227 } while (dst->xfrm);
1232 mtu = last->child_mtu_cached;
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;
1244 last = last->u.next;
1245 last->child_mtu_cached = mtu;
1251 EXPORT_SYMBOL(xfrm_bundle_ok);
1253 int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
1256 if (unlikely(afinfo == NULL))
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))
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);
1280 EXPORT_SYMBOL(xfrm_policy_register_afinfo);
1282 int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
1285 if (unlikely(afinfo == NULL))
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))
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);
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))
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);
1321 static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
1323 if (unlikely(afinfo == NULL))
1325 read_unlock(&afinfo->lock);
1328 static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
1332 xfrm_flush_bundles();
1337 static struct notifier_block xfrm_dev_notifier = {
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,
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)