bnx2fc: Read npiv table from nvram and create vports.
[linux/fpc-iii.git] / net / xfrm / xfrm_policy.c
blob18cead7645be0e75621e1b08a9e02621e75b7a4c
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 <linux/err.h>
17 #include <linux/slab.h>
18 #include <linux/kmod.h>
19 #include <linux/list.h>
20 #include <linux/spinlock.h>
21 #include <linux/workqueue.h>
22 #include <linux/notifier.h>
23 #include <linux/netdevice.h>
24 #include <linux/netfilter.h>
25 #include <linux/module.h>
26 #include <linux/cache.h>
27 #include <linux/audit.h>
28 #include <net/dst.h>
29 #include <net/flow.h>
30 #include <net/xfrm.h>
31 #include <net/ip.h>
32 #ifdef CONFIG_XFRM_STATISTICS
33 #include <net/snmp.h>
34 #endif
36 #include "xfrm_hash.h"
38 #define XFRM_QUEUE_TMO_MIN ((unsigned)(HZ/10))
39 #define XFRM_QUEUE_TMO_MAX ((unsigned)(60*HZ))
40 #define XFRM_MAX_QUEUE_LEN 100
42 struct xfrm_flo {
43 struct dst_entry *dst_orig;
44 u8 flags;
47 static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
48 static struct xfrm_policy_afinfo __rcu *xfrm_policy_afinfo[NPROTO]
49 __read_mostly;
51 static struct kmem_cache *xfrm_dst_cache __read_mostly;
53 static void xfrm_init_pmtu(struct dst_entry *dst);
54 static int stale_bundle(struct dst_entry *dst);
55 static int xfrm_bundle_ok(struct xfrm_dst *xdst);
56 static void xfrm_policy_queue_process(unsigned long arg);
58 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir);
59 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
60 int dir);
62 static inline bool
63 __xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
65 const struct flowi4 *fl4 = &fl->u.ip4;
67 return addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
68 addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
69 !((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
70 !((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
71 (fl4->flowi4_proto == sel->proto || !sel->proto) &&
72 (fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
75 static inline bool
76 __xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
78 const struct flowi6 *fl6 = &fl->u.ip6;
80 return addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
81 addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
82 !((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
83 !((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
84 (fl6->flowi6_proto == sel->proto || !sel->proto) &&
85 (fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
88 bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
89 unsigned short family)
91 switch (family) {
92 case AF_INET:
93 return __xfrm4_selector_match(sel, fl);
94 case AF_INET6:
95 return __xfrm6_selector_match(sel, fl);
97 return false;
100 static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
102 struct xfrm_policy_afinfo *afinfo;
104 if (unlikely(family >= NPROTO))
105 return NULL;
106 rcu_read_lock();
107 afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
108 if (unlikely(!afinfo))
109 rcu_read_unlock();
110 return afinfo;
113 static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
115 rcu_read_unlock();
118 static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
119 const xfrm_address_t *saddr,
120 const xfrm_address_t *daddr,
121 int family)
123 struct xfrm_policy_afinfo *afinfo;
124 struct dst_entry *dst;
126 afinfo = xfrm_policy_get_afinfo(family);
127 if (unlikely(afinfo == NULL))
128 return ERR_PTR(-EAFNOSUPPORT);
130 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
132 xfrm_policy_put_afinfo(afinfo);
134 return dst;
137 static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
138 xfrm_address_t *prev_saddr,
139 xfrm_address_t *prev_daddr,
140 int family)
142 struct net *net = xs_net(x);
143 xfrm_address_t *saddr = &x->props.saddr;
144 xfrm_address_t *daddr = &x->id.daddr;
145 struct dst_entry *dst;
147 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
148 saddr = x->coaddr;
149 daddr = prev_daddr;
151 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
152 saddr = prev_saddr;
153 daddr = x->coaddr;
156 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
158 if (!IS_ERR(dst)) {
159 if (prev_saddr != saddr)
160 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
161 if (prev_daddr != daddr)
162 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
165 return dst;
168 static inline unsigned long make_jiffies(long secs)
170 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
171 return MAX_SCHEDULE_TIMEOUT-1;
172 else
173 return secs*HZ;
176 static void xfrm_policy_timer(unsigned long data)
178 struct xfrm_policy *xp = (struct xfrm_policy *)data;
179 unsigned long now = get_seconds();
180 long next = LONG_MAX;
181 int warn = 0;
182 int dir;
184 read_lock(&xp->lock);
186 if (unlikely(xp->walk.dead))
187 goto out;
189 dir = xfrm_policy_id2dir(xp->index);
191 if (xp->lft.hard_add_expires_seconds) {
192 long tmo = xp->lft.hard_add_expires_seconds +
193 xp->curlft.add_time - now;
194 if (tmo <= 0)
195 goto expired;
196 if (tmo < next)
197 next = tmo;
199 if (xp->lft.hard_use_expires_seconds) {
200 long tmo = xp->lft.hard_use_expires_seconds +
201 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
202 if (tmo <= 0)
203 goto expired;
204 if (tmo < next)
205 next = tmo;
207 if (xp->lft.soft_add_expires_seconds) {
208 long tmo = xp->lft.soft_add_expires_seconds +
209 xp->curlft.add_time - now;
210 if (tmo <= 0) {
211 warn = 1;
212 tmo = XFRM_KM_TIMEOUT;
214 if (tmo < next)
215 next = tmo;
217 if (xp->lft.soft_use_expires_seconds) {
218 long tmo = xp->lft.soft_use_expires_seconds +
219 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
220 if (tmo <= 0) {
221 warn = 1;
222 tmo = XFRM_KM_TIMEOUT;
224 if (tmo < next)
225 next = tmo;
228 if (warn)
229 km_policy_expired(xp, dir, 0, 0);
230 if (next != LONG_MAX &&
231 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
232 xfrm_pol_hold(xp);
234 out:
235 read_unlock(&xp->lock);
236 xfrm_pol_put(xp);
237 return;
239 expired:
240 read_unlock(&xp->lock);
241 if (!xfrm_policy_delete(xp, dir))
242 km_policy_expired(xp, dir, 1, 0);
243 xfrm_pol_put(xp);
246 static struct flow_cache_object *xfrm_policy_flo_get(struct flow_cache_object *flo)
248 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
250 if (unlikely(pol->walk.dead))
251 flo = NULL;
252 else
253 xfrm_pol_hold(pol);
255 return flo;
258 static int xfrm_policy_flo_check(struct flow_cache_object *flo)
260 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
262 return !pol->walk.dead;
265 static void xfrm_policy_flo_delete(struct flow_cache_object *flo)
267 xfrm_pol_put(container_of(flo, struct xfrm_policy, flo));
270 static const struct flow_cache_ops xfrm_policy_fc_ops = {
271 .get = xfrm_policy_flo_get,
272 .check = xfrm_policy_flo_check,
273 .delete = xfrm_policy_flo_delete,
276 /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
277 * SPD calls.
280 struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
282 struct xfrm_policy *policy;
284 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
286 if (policy) {
287 write_pnet(&policy->xp_net, net);
288 INIT_LIST_HEAD(&policy->walk.all);
289 INIT_HLIST_NODE(&policy->bydst);
290 INIT_HLIST_NODE(&policy->byidx);
291 rwlock_init(&policy->lock);
292 atomic_set(&policy->refcnt, 1);
293 skb_queue_head_init(&policy->polq.hold_queue);
294 setup_timer(&policy->timer, xfrm_policy_timer,
295 (unsigned long)policy);
296 setup_timer(&policy->polq.hold_timer, xfrm_policy_queue_process,
297 (unsigned long)policy);
298 policy->flo.ops = &xfrm_policy_fc_ops;
300 return policy;
302 EXPORT_SYMBOL(xfrm_policy_alloc);
304 /* Destroy xfrm_policy: descendant resources must be released to this moment. */
306 void xfrm_policy_destroy(struct xfrm_policy *policy)
308 BUG_ON(!policy->walk.dead);
310 if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
311 BUG();
313 security_xfrm_policy_free(policy->security);
314 kfree(policy);
316 EXPORT_SYMBOL(xfrm_policy_destroy);
318 /* Rule must be locked. Release descentant resources, announce
319 * entry dead. The rule must be unlinked from lists to the moment.
322 static void xfrm_policy_kill(struct xfrm_policy *policy)
324 policy->walk.dead = 1;
326 atomic_inc(&policy->genid);
328 if (del_timer(&policy->polq.hold_timer))
329 xfrm_pol_put(policy);
330 skb_queue_purge(&policy->polq.hold_queue);
332 if (del_timer(&policy->timer))
333 xfrm_pol_put(policy);
335 xfrm_pol_put(policy);
338 static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
340 static inline unsigned int idx_hash(struct net *net, u32 index)
342 return __idx_hash(index, net->xfrm.policy_idx_hmask);
345 /* calculate policy hash thresholds */
346 static void __get_hash_thresh(struct net *net,
347 unsigned short family, int dir,
348 u8 *dbits, u8 *sbits)
350 switch (family) {
351 case AF_INET:
352 *dbits = net->xfrm.policy_bydst[dir].dbits4;
353 *sbits = net->xfrm.policy_bydst[dir].sbits4;
354 break;
356 case AF_INET6:
357 *dbits = net->xfrm.policy_bydst[dir].dbits6;
358 *sbits = net->xfrm.policy_bydst[dir].sbits6;
359 break;
361 default:
362 *dbits = 0;
363 *sbits = 0;
367 static struct hlist_head *policy_hash_bysel(struct net *net,
368 const struct xfrm_selector *sel,
369 unsigned short family, int dir)
371 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
372 unsigned int hash;
373 u8 dbits;
374 u8 sbits;
376 __get_hash_thresh(net, family, dir, &dbits, &sbits);
377 hash = __sel_hash(sel, family, hmask, dbits, sbits);
379 return (hash == hmask + 1 ?
380 &net->xfrm.policy_inexact[dir] :
381 net->xfrm.policy_bydst[dir].table + hash);
384 static struct hlist_head *policy_hash_direct(struct net *net,
385 const xfrm_address_t *daddr,
386 const xfrm_address_t *saddr,
387 unsigned short family, int dir)
389 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
390 unsigned int hash;
391 u8 dbits;
392 u8 sbits;
394 __get_hash_thresh(net, family, dir, &dbits, &sbits);
395 hash = __addr_hash(daddr, saddr, family, hmask, dbits, sbits);
397 return net->xfrm.policy_bydst[dir].table + hash;
400 static void xfrm_dst_hash_transfer(struct net *net,
401 struct hlist_head *list,
402 struct hlist_head *ndsttable,
403 unsigned int nhashmask,
404 int dir)
406 struct hlist_node *tmp, *entry0 = NULL;
407 struct xfrm_policy *pol;
408 unsigned int h0 = 0;
409 u8 dbits;
410 u8 sbits;
412 redo:
413 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
414 unsigned int h;
416 __get_hash_thresh(net, pol->family, dir, &dbits, &sbits);
417 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
418 pol->family, nhashmask, dbits, sbits);
419 if (!entry0) {
420 hlist_del(&pol->bydst);
421 hlist_add_head(&pol->bydst, ndsttable+h);
422 h0 = h;
423 } else {
424 if (h != h0)
425 continue;
426 hlist_del(&pol->bydst);
427 hlist_add_behind(&pol->bydst, entry0);
429 entry0 = &pol->bydst;
431 if (!hlist_empty(list)) {
432 entry0 = NULL;
433 goto redo;
437 static void xfrm_idx_hash_transfer(struct hlist_head *list,
438 struct hlist_head *nidxtable,
439 unsigned int nhashmask)
441 struct hlist_node *tmp;
442 struct xfrm_policy *pol;
444 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
445 unsigned int h;
447 h = __idx_hash(pol->index, nhashmask);
448 hlist_add_head(&pol->byidx, nidxtable+h);
452 static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
454 return ((old_hmask + 1) << 1) - 1;
457 static void xfrm_bydst_resize(struct net *net, int dir)
459 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
460 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
461 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
462 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
463 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
464 int i;
466 if (!ndst)
467 return;
469 write_lock_bh(&net->xfrm.xfrm_policy_lock);
471 for (i = hmask; i >= 0; i--)
472 xfrm_dst_hash_transfer(net, odst + i, ndst, nhashmask, dir);
474 net->xfrm.policy_bydst[dir].table = ndst;
475 net->xfrm.policy_bydst[dir].hmask = nhashmask;
477 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
479 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
482 static void xfrm_byidx_resize(struct net *net, int total)
484 unsigned int hmask = net->xfrm.policy_idx_hmask;
485 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
486 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
487 struct hlist_head *oidx = net->xfrm.policy_byidx;
488 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
489 int i;
491 if (!nidx)
492 return;
494 write_lock_bh(&net->xfrm.xfrm_policy_lock);
496 for (i = hmask; i >= 0; i--)
497 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
499 net->xfrm.policy_byidx = nidx;
500 net->xfrm.policy_idx_hmask = nhashmask;
502 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
504 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
507 static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
509 unsigned int cnt = net->xfrm.policy_count[dir];
510 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
512 if (total)
513 *total += cnt;
515 if ((hmask + 1) < xfrm_policy_hashmax &&
516 cnt > hmask)
517 return 1;
519 return 0;
522 static inline int xfrm_byidx_should_resize(struct net *net, int total)
524 unsigned int hmask = net->xfrm.policy_idx_hmask;
526 if ((hmask + 1) < xfrm_policy_hashmax &&
527 total > hmask)
528 return 1;
530 return 0;
533 void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
535 read_lock_bh(&net->xfrm.xfrm_policy_lock);
536 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
537 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
538 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
539 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
540 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
541 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
542 si->spdhcnt = net->xfrm.policy_idx_hmask;
543 si->spdhmcnt = xfrm_policy_hashmax;
544 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
546 EXPORT_SYMBOL(xfrm_spd_getinfo);
548 static DEFINE_MUTEX(hash_resize_mutex);
549 static void xfrm_hash_resize(struct work_struct *work)
551 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
552 int dir, total;
554 mutex_lock(&hash_resize_mutex);
556 total = 0;
557 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
558 if (xfrm_bydst_should_resize(net, dir, &total))
559 xfrm_bydst_resize(net, dir);
561 if (xfrm_byidx_should_resize(net, total))
562 xfrm_byidx_resize(net, total);
564 mutex_unlock(&hash_resize_mutex);
567 static void xfrm_hash_rebuild(struct work_struct *work)
569 struct net *net = container_of(work, struct net,
570 xfrm.policy_hthresh.work);
571 unsigned int hmask;
572 struct xfrm_policy *pol;
573 struct xfrm_policy *policy;
574 struct hlist_head *chain;
575 struct hlist_head *odst;
576 struct hlist_node *newpos;
577 int i;
578 int dir;
579 unsigned seq;
580 u8 lbits4, rbits4, lbits6, rbits6;
582 mutex_lock(&hash_resize_mutex);
584 /* read selector prefixlen thresholds */
585 do {
586 seq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
588 lbits4 = net->xfrm.policy_hthresh.lbits4;
589 rbits4 = net->xfrm.policy_hthresh.rbits4;
590 lbits6 = net->xfrm.policy_hthresh.lbits6;
591 rbits6 = net->xfrm.policy_hthresh.rbits6;
592 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, seq));
594 write_lock_bh(&net->xfrm.xfrm_policy_lock);
596 /* reset the bydst and inexact table in all directions */
597 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
598 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
599 hmask = net->xfrm.policy_bydst[dir].hmask;
600 odst = net->xfrm.policy_bydst[dir].table;
601 for (i = hmask; i >= 0; i--)
602 INIT_HLIST_HEAD(odst + i);
603 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
604 /* dir out => dst = remote, src = local */
605 net->xfrm.policy_bydst[dir].dbits4 = rbits4;
606 net->xfrm.policy_bydst[dir].sbits4 = lbits4;
607 net->xfrm.policy_bydst[dir].dbits6 = rbits6;
608 net->xfrm.policy_bydst[dir].sbits6 = lbits6;
609 } else {
610 /* dir in/fwd => dst = local, src = remote */
611 net->xfrm.policy_bydst[dir].dbits4 = lbits4;
612 net->xfrm.policy_bydst[dir].sbits4 = rbits4;
613 net->xfrm.policy_bydst[dir].dbits6 = lbits6;
614 net->xfrm.policy_bydst[dir].sbits6 = rbits6;
618 /* re-insert all policies by order of creation */
619 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
620 newpos = NULL;
621 chain = policy_hash_bysel(net, &policy->selector,
622 policy->family,
623 xfrm_policy_id2dir(policy->index));
624 hlist_for_each_entry(pol, chain, bydst) {
625 if (policy->priority >= pol->priority)
626 newpos = &pol->bydst;
627 else
628 break;
630 if (newpos)
631 hlist_add_behind(&policy->bydst, newpos);
632 else
633 hlist_add_head(&policy->bydst, chain);
636 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
638 mutex_unlock(&hash_resize_mutex);
641 void xfrm_policy_hash_rebuild(struct net *net)
643 schedule_work(&net->xfrm.policy_hthresh.work);
645 EXPORT_SYMBOL(xfrm_policy_hash_rebuild);
647 /* Generate new index... KAME seems to generate them ordered by cost
648 * of an absolute inpredictability of ordering of rules. This will not pass. */
649 static u32 xfrm_gen_index(struct net *net, int dir, u32 index)
651 static u32 idx_generator;
653 for (;;) {
654 struct hlist_head *list;
655 struct xfrm_policy *p;
656 u32 idx;
657 int found;
659 if (!index) {
660 idx = (idx_generator | dir);
661 idx_generator += 8;
662 } else {
663 idx = index;
664 index = 0;
667 if (idx == 0)
668 idx = 8;
669 list = net->xfrm.policy_byidx + idx_hash(net, idx);
670 found = 0;
671 hlist_for_each_entry(p, list, byidx) {
672 if (p->index == idx) {
673 found = 1;
674 break;
677 if (!found)
678 return idx;
682 static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
684 u32 *p1 = (u32 *) s1;
685 u32 *p2 = (u32 *) s2;
686 int len = sizeof(struct xfrm_selector) / sizeof(u32);
687 int i;
689 for (i = 0; i < len; i++) {
690 if (p1[i] != p2[i])
691 return 1;
694 return 0;
697 static void xfrm_policy_requeue(struct xfrm_policy *old,
698 struct xfrm_policy *new)
700 struct xfrm_policy_queue *pq = &old->polq;
701 struct sk_buff_head list;
703 if (skb_queue_empty(&pq->hold_queue))
704 return;
706 __skb_queue_head_init(&list);
708 spin_lock_bh(&pq->hold_queue.lock);
709 skb_queue_splice_init(&pq->hold_queue, &list);
710 if (del_timer(&pq->hold_timer))
711 xfrm_pol_put(old);
712 spin_unlock_bh(&pq->hold_queue.lock);
714 pq = &new->polq;
716 spin_lock_bh(&pq->hold_queue.lock);
717 skb_queue_splice(&list, &pq->hold_queue);
718 pq->timeout = XFRM_QUEUE_TMO_MIN;
719 if (!mod_timer(&pq->hold_timer, jiffies))
720 xfrm_pol_hold(new);
721 spin_unlock_bh(&pq->hold_queue.lock);
724 static bool xfrm_policy_mark_match(struct xfrm_policy *policy,
725 struct xfrm_policy *pol)
727 u32 mark = policy->mark.v & policy->mark.m;
729 if (policy->mark.v == pol->mark.v && policy->mark.m == pol->mark.m)
730 return true;
732 if ((mark & pol->mark.m) == pol->mark.v &&
733 policy->priority == pol->priority)
734 return true;
736 return false;
739 int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
741 struct net *net = xp_net(policy);
742 struct xfrm_policy *pol;
743 struct xfrm_policy *delpol;
744 struct hlist_head *chain;
745 struct hlist_node *newpos;
747 write_lock_bh(&net->xfrm.xfrm_policy_lock);
748 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
749 delpol = NULL;
750 newpos = NULL;
751 hlist_for_each_entry(pol, chain, bydst) {
752 if (pol->type == policy->type &&
753 !selector_cmp(&pol->selector, &policy->selector) &&
754 xfrm_policy_mark_match(policy, pol) &&
755 xfrm_sec_ctx_match(pol->security, policy->security) &&
756 !WARN_ON(delpol)) {
757 if (excl) {
758 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
759 return -EEXIST;
761 delpol = pol;
762 if (policy->priority > pol->priority)
763 continue;
764 } else if (policy->priority >= pol->priority) {
765 newpos = &pol->bydst;
766 continue;
768 if (delpol)
769 break;
771 if (newpos)
772 hlist_add_behind(&policy->bydst, newpos);
773 else
774 hlist_add_head(&policy->bydst, chain);
775 __xfrm_policy_link(policy, dir);
776 atomic_inc(&net->xfrm.flow_cache_genid);
778 /* After previous checking, family can either be AF_INET or AF_INET6 */
779 if (policy->family == AF_INET)
780 rt_genid_bump_ipv4(net);
781 else
782 rt_genid_bump_ipv6(net);
784 if (delpol) {
785 xfrm_policy_requeue(delpol, policy);
786 __xfrm_policy_unlink(delpol, dir);
788 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir, policy->index);
789 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
790 policy->curlft.add_time = get_seconds();
791 policy->curlft.use_time = 0;
792 if (!mod_timer(&policy->timer, jiffies + HZ))
793 xfrm_pol_hold(policy);
794 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
796 if (delpol)
797 xfrm_policy_kill(delpol);
798 else if (xfrm_bydst_should_resize(net, dir, NULL))
799 schedule_work(&net->xfrm.policy_hash_work);
801 return 0;
803 EXPORT_SYMBOL(xfrm_policy_insert);
805 struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
806 int dir, struct xfrm_selector *sel,
807 struct xfrm_sec_ctx *ctx, int delete,
808 int *err)
810 struct xfrm_policy *pol, *ret;
811 struct hlist_head *chain;
813 *err = 0;
814 write_lock_bh(&net->xfrm.xfrm_policy_lock);
815 chain = policy_hash_bysel(net, sel, sel->family, dir);
816 ret = NULL;
817 hlist_for_each_entry(pol, chain, bydst) {
818 if (pol->type == type &&
819 (mark & pol->mark.m) == pol->mark.v &&
820 !selector_cmp(sel, &pol->selector) &&
821 xfrm_sec_ctx_match(ctx, pol->security)) {
822 xfrm_pol_hold(pol);
823 if (delete) {
824 *err = security_xfrm_policy_delete(
825 pol->security);
826 if (*err) {
827 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
828 return pol;
830 __xfrm_policy_unlink(pol, dir);
832 ret = pol;
833 break;
836 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
838 if (ret && delete)
839 xfrm_policy_kill(ret);
840 return ret;
842 EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
844 struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
845 int dir, u32 id, int delete, int *err)
847 struct xfrm_policy *pol, *ret;
848 struct hlist_head *chain;
850 *err = -ENOENT;
851 if (xfrm_policy_id2dir(id) != dir)
852 return NULL;
854 *err = 0;
855 write_lock_bh(&net->xfrm.xfrm_policy_lock);
856 chain = net->xfrm.policy_byidx + idx_hash(net, id);
857 ret = NULL;
858 hlist_for_each_entry(pol, chain, byidx) {
859 if (pol->type == type && pol->index == id &&
860 (mark & pol->mark.m) == pol->mark.v) {
861 xfrm_pol_hold(pol);
862 if (delete) {
863 *err = security_xfrm_policy_delete(
864 pol->security);
865 if (*err) {
866 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
867 return pol;
869 __xfrm_policy_unlink(pol, dir);
871 ret = pol;
872 break;
875 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
877 if (ret && delete)
878 xfrm_policy_kill(ret);
879 return ret;
881 EXPORT_SYMBOL(xfrm_policy_byid);
883 #ifdef CONFIG_SECURITY_NETWORK_XFRM
884 static inline int
885 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
887 int dir, err = 0;
889 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
890 struct xfrm_policy *pol;
891 int i;
893 hlist_for_each_entry(pol,
894 &net->xfrm.policy_inexact[dir], bydst) {
895 if (pol->type != type)
896 continue;
897 err = security_xfrm_policy_delete(pol->security);
898 if (err) {
899 xfrm_audit_policy_delete(pol, 0, task_valid);
900 return err;
903 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
904 hlist_for_each_entry(pol,
905 net->xfrm.policy_bydst[dir].table + i,
906 bydst) {
907 if (pol->type != type)
908 continue;
909 err = security_xfrm_policy_delete(
910 pol->security);
911 if (err) {
912 xfrm_audit_policy_delete(pol, 0,
913 task_valid);
914 return err;
919 return err;
921 #else
922 static inline int
923 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
925 return 0;
927 #endif
929 int xfrm_policy_flush(struct net *net, u8 type, bool task_valid)
931 int dir, err = 0, cnt = 0;
933 write_lock_bh(&net->xfrm.xfrm_policy_lock);
935 err = xfrm_policy_flush_secctx_check(net, type, task_valid);
936 if (err)
937 goto out;
939 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
940 struct xfrm_policy *pol;
941 int i;
943 again1:
944 hlist_for_each_entry(pol,
945 &net->xfrm.policy_inexact[dir], bydst) {
946 if (pol->type != type)
947 continue;
948 __xfrm_policy_unlink(pol, dir);
949 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
950 cnt++;
952 xfrm_audit_policy_delete(pol, 1, task_valid);
954 xfrm_policy_kill(pol);
956 write_lock_bh(&net->xfrm.xfrm_policy_lock);
957 goto again1;
960 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
961 again2:
962 hlist_for_each_entry(pol,
963 net->xfrm.policy_bydst[dir].table + i,
964 bydst) {
965 if (pol->type != type)
966 continue;
967 __xfrm_policy_unlink(pol, dir);
968 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
969 cnt++;
971 xfrm_audit_policy_delete(pol, 1, task_valid);
972 xfrm_policy_kill(pol);
974 write_lock_bh(&net->xfrm.xfrm_policy_lock);
975 goto again2;
980 if (!cnt)
981 err = -ESRCH;
982 out:
983 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
984 return err;
986 EXPORT_SYMBOL(xfrm_policy_flush);
988 int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
989 int (*func)(struct xfrm_policy *, int, int, void*),
990 void *data)
992 struct xfrm_policy *pol;
993 struct xfrm_policy_walk_entry *x;
994 int error = 0;
996 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
997 walk->type != XFRM_POLICY_TYPE_ANY)
998 return -EINVAL;
1000 if (list_empty(&walk->walk.all) && walk->seq != 0)
1001 return 0;
1003 write_lock_bh(&net->xfrm.xfrm_policy_lock);
1004 if (list_empty(&walk->walk.all))
1005 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
1006 else
1007 x = list_first_entry(&walk->walk.all,
1008 struct xfrm_policy_walk_entry, all);
1010 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
1011 if (x->dead)
1012 continue;
1013 pol = container_of(x, struct xfrm_policy, walk);
1014 if (walk->type != XFRM_POLICY_TYPE_ANY &&
1015 walk->type != pol->type)
1016 continue;
1017 error = func(pol, xfrm_policy_id2dir(pol->index),
1018 walk->seq, data);
1019 if (error) {
1020 list_move_tail(&walk->walk.all, &x->all);
1021 goto out;
1023 walk->seq++;
1025 if (walk->seq == 0) {
1026 error = -ENOENT;
1027 goto out;
1029 list_del_init(&walk->walk.all);
1030 out:
1031 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
1032 return error;
1034 EXPORT_SYMBOL(xfrm_policy_walk);
1036 void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
1038 INIT_LIST_HEAD(&walk->walk.all);
1039 walk->walk.dead = 1;
1040 walk->type = type;
1041 walk->seq = 0;
1043 EXPORT_SYMBOL(xfrm_policy_walk_init);
1045 void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net)
1047 if (list_empty(&walk->walk.all))
1048 return;
1050 write_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME where is net? */
1051 list_del(&walk->walk.all);
1052 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
1054 EXPORT_SYMBOL(xfrm_policy_walk_done);
1057 * Find policy to apply to this flow.
1059 * Returns 0 if policy found, else an -errno.
1061 static int xfrm_policy_match(const struct xfrm_policy *pol,
1062 const struct flowi *fl,
1063 u8 type, u16 family, int dir)
1065 const struct xfrm_selector *sel = &pol->selector;
1066 int ret = -ESRCH;
1067 bool match;
1069 if (pol->family != family ||
1070 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
1071 pol->type != type)
1072 return ret;
1074 match = xfrm_selector_match(sel, fl, family);
1075 if (match)
1076 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
1077 dir);
1079 return ret;
1082 static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
1083 const struct flowi *fl,
1084 u16 family, u8 dir)
1086 int err;
1087 struct xfrm_policy *pol, *ret;
1088 const xfrm_address_t *daddr, *saddr;
1089 struct hlist_head *chain;
1090 u32 priority = ~0U;
1092 daddr = xfrm_flowi_daddr(fl, family);
1093 saddr = xfrm_flowi_saddr(fl, family);
1094 if (unlikely(!daddr || !saddr))
1095 return NULL;
1097 read_lock_bh(&net->xfrm.xfrm_policy_lock);
1098 chain = policy_hash_direct(net, daddr, saddr, family, dir);
1099 ret = NULL;
1100 hlist_for_each_entry(pol, chain, bydst) {
1101 err = xfrm_policy_match(pol, fl, type, family, dir);
1102 if (err) {
1103 if (err == -ESRCH)
1104 continue;
1105 else {
1106 ret = ERR_PTR(err);
1107 goto fail;
1109 } else {
1110 ret = pol;
1111 priority = ret->priority;
1112 break;
1115 chain = &net->xfrm.policy_inexact[dir];
1116 hlist_for_each_entry(pol, chain, bydst) {
1117 if ((pol->priority >= priority) && ret)
1118 break;
1120 err = xfrm_policy_match(pol, fl, type, family, dir);
1121 if (err) {
1122 if (err == -ESRCH)
1123 continue;
1124 else {
1125 ret = ERR_PTR(err);
1126 goto fail;
1128 } else {
1129 ret = pol;
1130 break;
1134 xfrm_pol_hold(ret);
1135 fail:
1136 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
1138 return ret;
1141 static struct xfrm_policy *
1142 __xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
1144 #ifdef CONFIG_XFRM_SUB_POLICY
1145 struct xfrm_policy *pol;
1147 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
1148 if (pol != NULL)
1149 return pol;
1150 #endif
1151 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
1154 static int flow_to_policy_dir(int dir)
1156 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
1157 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1158 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1159 return dir;
1161 switch (dir) {
1162 default:
1163 case FLOW_DIR_IN:
1164 return XFRM_POLICY_IN;
1165 case FLOW_DIR_OUT:
1166 return XFRM_POLICY_OUT;
1167 case FLOW_DIR_FWD:
1168 return XFRM_POLICY_FWD;
1172 static struct flow_cache_object *
1173 xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
1174 u8 dir, struct flow_cache_object *old_obj, void *ctx)
1176 struct xfrm_policy *pol;
1178 if (old_obj)
1179 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
1181 pol = __xfrm_policy_lookup(net, fl, family, flow_to_policy_dir(dir));
1182 if (IS_ERR_OR_NULL(pol))
1183 return ERR_CAST(pol);
1185 /* Resolver returns two references:
1186 * one for cache and one for caller of flow_cache_lookup() */
1187 xfrm_pol_hold(pol);
1189 return &pol->flo;
1192 static inline int policy_to_flow_dir(int dir)
1194 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
1195 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1196 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1197 return dir;
1198 switch (dir) {
1199 default:
1200 case XFRM_POLICY_IN:
1201 return FLOW_DIR_IN;
1202 case XFRM_POLICY_OUT:
1203 return FLOW_DIR_OUT;
1204 case XFRM_POLICY_FWD:
1205 return FLOW_DIR_FWD;
1209 static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
1210 const struct flowi *fl)
1212 struct xfrm_policy *pol;
1213 struct net *net = sock_net(sk);
1215 read_lock_bh(&net->xfrm.xfrm_policy_lock);
1216 if ((pol = sk->sk_policy[dir]) != NULL) {
1217 bool match = xfrm_selector_match(&pol->selector, fl,
1218 sk->sk_family);
1219 int err = 0;
1221 if (match) {
1222 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1223 pol = NULL;
1224 goto out;
1226 err = security_xfrm_policy_lookup(pol->security,
1227 fl->flowi_secid,
1228 policy_to_flow_dir(dir));
1229 if (!err)
1230 xfrm_pol_hold(pol);
1231 else if (err == -ESRCH)
1232 pol = NULL;
1233 else
1234 pol = ERR_PTR(err);
1235 } else
1236 pol = NULL;
1238 out:
1239 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
1240 return pol;
1243 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1245 struct net *net = xp_net(pol);
1247 list_add(&pol->walk.all, &net->xfrm.policy_all);
1248 net->xfrm.policy_count[dir]++;
1249 xfrm_pol_hold(pol);
1252 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1253 int dir)
1255 struct net *net = xp_net(pol);
1257 if (list_empty(&pol->walk.all))
1258 return NULL;
1260 /* Socket policies are not hashed. */
1261 if (!hlist_unhashed(&pol->bydst)) {
1262 hlist_del(&pol->bydst);
1263 hlist_del(&pol->byidx);
1266 list_del_init(&pol->walk.all);
1267 net->xfrm.policy_count[dir]--;
1269 return pol;
1272 static void xfrm_sk_policy_link(struct xfrm_policy *pol, int dir)
1274 __xfrm_policy_link(pol, XFRM_POLICY_MAX + dir);
1277 static void xfrm_sk_policy_unlink(struct xfrm_policy *pol, int dir)
1279 __xfrm_policy_unlink(pol, XFRM_POLICY_MAX + dir);
1282 int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
1284 struct net *net = xp_net(pol);
1286 write_lock_bh(&net->xfrm.xfrm_policy_lock);
1287 pol = __xfrm_policy_unlink(pol, dir);
1288 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
1289 if (pol) {
1290 xfrm_policy_kill(pol);
1291 return 0;
1293 return -ENOENT;
1295 EXPORT_SYMBOL(xfrm_policy_delete);
1297 int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1299 struct net *net = xp_net(pol);
1300 struct xfrm_policy *old_pol;
1302 #ifdef CONFIG_XFRM_SUB_POLICY
1303 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1304 return -EINVAL;
1305 #endif
1307 write_lock_bh(&net->xfrm.xfrm_policy_lock);
1308 old_pol = sk->sk_policy[dir];
1309 sk->sk_policy[dir] = pol;
1310 if (pol) {
1311 pol->curlft.add_time = get_seconds();
1312 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir, 0);
1313 xfrm_sk_policy_link(pol, dir);
1315 if (old_pol) {
1316 if (pol)
1317 xfrm_policy_requeue(old_pol, pol);
1319 /* Unlinking succeeds always. This is the only function
1320 * allowed to delete or replace socket policy.
1322 xfrm_sk_policy_unlink(old_pol, dir);
1324 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
1326 if (old_pol) {
1327 xfrm_policy_kill(old_pol);
1329 return 0;
1332 static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
1334 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
1335 struct net *net = xp_net(old);
1337 if (newp) {
1338 newp->selector = old->selector;
1339 if (security_xfrm_policy_clone(old->security,
1340 &newp->security)) {
1341 kfree(newp);
1342 return NULL; /* ENOMEM */
1344 newp->lft = old->lft;
1345 newp->curlft = old->curlft;
1346 newp->mark = old->mark;
1347 newp->action = old->action;
1348 newp->flags = old->flags;
1349 newp->xfrm_nr = old->xfrm_nr;
1350 newp->index = old->index;
1351 newp->type = old->type;
1352 memcpy(newp->xfrm_vec, old->xfrm_vec,
1353 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1354 write_lock_bh(&net->xfrm.xfrm_policy_lock);
1355 xfrm_sk_policy_link(newp, dir);
1356 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
1357 xfrm_pol_put(newp);
1359 return newp;
1362 int __xfrm_sk_clone_policy(struct sock *sk)
1364 struct xfrm_policy *p0 = sk->sk_policy[0],
1365 *p1 = sk->sk_policy[1];
1367 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1368 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1369 return -ENOMEM;
1370 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1371 return -ENOMEM;
1372 return 0;
1375 static int
1376 xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
1377 unsigned short family)
1379 int err;
1380 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1382 if (unlikely(afinfo == NULL))
1383 return -EINVAL;
1384 err = afinfo->get_saddr(net, local, remote);
1385 xfrm_policy_put_afinfo(afinfo);
1386 return err;
1389 /* Resolve list of templates for the flow, given policy. */
1391 static int
1392 xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1393 struct xfrm_state **xfrm, unsigned short family)
1395 struct net *net = xp_net(policy);
1396 int nx;
1397 int i, error;
1398 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1399 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
1400 xfrm_address_t tmp;
1402 for (nx = 0, i = 0; i < policy->xfrm_nr; i++) {
1403 struct xfrm_state *x;
1404 xfrm_address_t *remote = daddr;
1405 xfrm_address_t *local = saddr;
1406 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1408 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1409 tmpl->mode == XFRM_MODE_BEET) {
1410 remote = &tmpl->id.daddr;
1411 local = &tmpl->saddr;
1412 if (xfrm_addr_any(local, tmpl->encap_family)) {
1413 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
1414 if (error)
1415 goto fail;
1416 local = &tmp;
1420 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1422 if (x && x->km.state == XFRM_STATE_VALID) {
1423 xfrm[nx++] = x;
1424 daddr = remote;
1425 saddr = local;
1426 continue;
1428 if (x) {
1429 error = (x->km.state == XFRM_STATE_ERROR ?
1430 -EINVAL : -EAGAIN);
1431 xfrm_state_put(x);
1432 } else if (error == -ESRCH) {
1433 error = -EAGAIN;
1436 if (!tmpl->optional)
1437 goto fail;
1439 return nx;
1441 fail:
1442 for (nx--; nx >= 0; nx--)
1443 xfrm_state_put(xfrm[nx]);
1444 return error;
1447 static int
1448 xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1449 struct xfrm_state **xfrm, unsigned short family)
1451 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1452 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
1453 int cnx = 0;
1454 int error;
1455 int ret;
1456 int i;
1458 for (i = 0; i < npols; i++) {
1459 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1460 error = -ENOBUFS;
1461 goto fail;
1464 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
1465 if (ret < 0) {
1466 error = ret;
1467 goto fail;
1468 } else
1469 cnx += ret;
1472 /* found states are sorted for outbound processing */
1473 if (npols > 1)
1474 xfrm_state_sort(xfrm, tpp, cnx, family);
1476 return cnx;
1478 fail:
1479 for (cnx--; cnx >= 0; cnx--)
1480 xfrm_state_put(tpp[cnx]);
1481 return error;
1485 /* Check that the bundle accepts the flow and its components are
1486 * still valid.
1489 static inline int xfrm_get_tos(const struct flowi *fl, int family)
1491 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1492 int tos;
1494 if (!afinfo)
1495 return -EINVAL;
1497 tos = afinfo->get_tos(fl);
1499 xfrm_policy_put_afinfo(afinfo);
1501 return tos;
1504 static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1506 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1507 struct dst_entry *dst = &xdst->u.dst;
1509 if (xdst->route == NULL) {
1510 /* Dummy bundle - if it has xfrms we were not
1511 * able to build bundle as template resolution failed.
1512 * It means we need to try again resolving. */
1513 if (xdst->num_xfrms > 0)
1514 return NULL;
1515 } else if (dst->flags & DST_XFRM_QUEUE) {
1516 return NULL;
1517 } else {
1518 /* Real bundle */
1519 if (stale_bundle(dst))
1520 return NULL;
1523 dst_hold(dst);
1524 return flo;
1527 static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1529 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1530 struct dst_entry *dst = &xdst->u.dst;
1532 if (!xdst->route)
1533 return 0;
1534 if (stale_bundle(dst))
1535 return 0;
1537 return 1;
1540 static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1542 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1543 struct dst_entry *dst = &xdst->u.dst;
1545 dst_free(dst);
1548 static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1549 .get = xfrm_bundle_flo_get,
1550 .check = xfrm_bundle_flo_check,
1551 .delete = xfrm_bundle_flo_delete,
1554 static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
1556 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1557 struct dst_ops *dst_ops;
1558 struct xfrm_dst *xdst;
1560 if (!afinfo)
1561 return ERR_PTR(-EINVAL);
1563 switch (family) {
1564 case AF_INET:
1565 dst_ops = &net->xfrm.xfrm4_dst_ops;
1566 break;
1567 #if IS_ENABLED(CONFIG_IPV6)
1568 case AF_INET6:
1569 dst_ops = &net->xfrm.xfrm6_dst_ops;
1570 break;
1571 #endif
1572 default:
1573 BUG();
1575 xdst = dst_alloc(dst_ops, NULL, 0, DST_OBSOLETE_NONE, 0);
1577 if (likely(xdst)) {
1578 struct dst_entry *dst = &xdst->u.dst;
1580 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
1581 xdst->flo.ops = &xfrm_bundle_fc_ops;
1582 if (afinfo->init_dst)
1583 afinfo->init_dst(net, xdst);
1584 } else
1585 xdst = ERR_PTR(-ENOBUFS);
1587 xfrm_policy_put_afinfo(afinfo);
1589 return xdst;
1592 static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1593 int nfheader_len)
1595 struct xfrm_policy_afinfo *afinfo =
1596 xfrm_policy_get_afinfo(dst->ops->family);
1597 int err;
1599 if (!afinfo)
1600 return -EINVAL;
1602 err = afinfo->init_path(path, dst, nfheader_len);
1604 xfrm_policy_put_afinfo(afinfo);
1606 return err;
1609 static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
1610 const struct flowi *fl)
1612 struct xfrm_policy_afinfo *afinfo =
1613 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1614 int err;
1616 if (!afinfo)
1617 return -EINVAL;
1619 err = afinfo->fill_dst(xdst, dev, fl);
1621 xfrm_policy_put_afinfo(afinfo);
1623 return err;
1627 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
1628 * all the metrics... Shortly, bundle a bundle.
1631 static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1632 struct xfrm_state **xfrm, int nx,
1633 const struct flowi *fl,
1634 struct dst_entry *dst)
1636 struct net *net = xp_net(policy);
1637 unsigned long now = jiffies;
1638 struct net_device *dev;
1639 struct xfrm_mode *inner_mode;
1640 struct dst_entry *dst_prev = NULL;
1641 struct dst_entry *dst0 = NULL;
1642 int i = 0;
1643 int err;
1644 int header_len = 0;
1645 int nfheader_len = 0;
1646 int trailer_len = 0;
1647 int tos;
1648 int family = policy->selector.family;
1649 xfrm_address_t saddr, daddr;
1651 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
1653 tos = xfrm_get_tos(fl, family);
1654 err = tos;
1655 if (tos < 0)
1656 goto put_states;
1658 dst_hold(dst);
1660 for (; i < nx; i++) {
1661 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
1662 struct dst_entry *dst1 = &xdst->u.dst;
1664 err = PTR_ERR(xdst);
1665 if (IS_ERR(xdst)) {
1666 dst_release(dst);
1667 goto put_states;
1670 if (xfrm[i]->sel.family == AF_UNSPEC) {
1671 inner_mode = xfrm_ip2inner_mode(xfrm[i],
1672 xfrm_af2proto(family));
1673 if (!inner_mode) {
1674 err = -EAFNOSUPPORT;
1675 dst_release(dst);
1676 goto put_states;
1678 } else
1679 inner_mode = xfrm[i]->inner_mode;
1681 if (!dst_prev)
1682 dst0 = dst1;
1683 else {
1684 dst_prev->child = dst_clone(dst1);
1685 dst1->flags |= DST_NOHASH;
1688 xdst->route = dst;
1689 dst_copy_metrics(dst1, dst);
1691 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1692 family = xfrm[i]->props.family;
1693 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1694 family);
1695 err = PTR_ERR(dst);
1696 if (IS_ERR(dst))
1697 goto put_states;
1698 } else
1699 dst_hold(dst);
1701 dst1->xfrm = xfrm[i];
1702 xdst->xfrm_genid = xfrm[i]->genid;
1704 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
1705 dst1->flags |= DST_HOST;
1706 dst1->lastuse = now;
1708 dst1->input = dst_discard;
1709 dst1->output = inner_mode->afinfo->output;
1711 dst1->next = dst_prev;
1712 dst_prev = dst1;
1714 header_len += xfrm[i]->props.header_len;
1715 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1716 nfheader_len += xfrm[i]->props.header_len;
1717 trailer_len += xfrm[i]->props.trailer_len;
1720 dst_prev->child = dst;
1721 dst0->path = dst;
1723 err = -ENODEV;
1724 dev = dst->dev;
1725 if (!dev)
1726 goto free_dst;
1728 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
1729 xfrm_init_pmtu(dst_prev);
1731 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1732 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1734 err = xfrm_fill_dst(xdst, dev, fl);
1735 if (err)
1736 goto free_dst;
1738 dst_prev->header_len = header_len;
1739 dst_prev->trailer_len = trailer_len;
1740 header_len -= xdst->u.dst.xfrm->props.header_len;
1741 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1744 out:
1745 return dst0;
1747 put_states:
1748 for (; i < nx; i++)
1749 xfrm_state_put(xfrm[i]);
1750 free_dst:
1751 if (dst0)
1752 dst_free(dst0);
1753 dst0 = ERR_PTR(err);
1754 goto out;
1757 #ifdef CONFIG_XFRM_SUB_POLICY
1758 static int xfrm_dst_alloc_copy(void **target, const void *src, int size)
1760 if (!*target) {
1761 *target = kmalloc(size, GFP_ATOMIC);
1762 if (!*target)
1763 return -ENOMEM;
1766 memcpy(*target, src, size);
1767 return 0;
1769 #endif
1771 static int xfrm_dst_update_parent(struct dst_entry *dst,
1772 const struct xfrm_selector *sel)
1774 #ifdef CONFIG_XFRM_SUB_POLICY
1775 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1776 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1777 sel, sizeof(*sel));
1778 #else
1779 return 0;
1780 #endif
1783 static int xfrm_dst_update_origin(struct dst_entry *dst,
1784 const struct flowi *fl)
1786 #ifdef CONFIG_XFRM_SUB_POLICY
1787 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1788 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1789 #else
1790 return 0;
1791 #endif
1794 static int xfrm_expand_policies(const struct flowi *fl, u16 family,
1795 struct xfrm_policy **pols,
1796 int *num_pols, int *num_xfrms)
1798 int i;
1800 if (*num_pols == 0 || !pols[0]) {
1801 *num_pols = 0;
1802 *num_xfrms = 0;
1803 return 0;
1805 if (IS_ERR(pols[0]))
1806 return PTR_ERR(pols[0]);
1808 *num_xfrms = pols[0]->xfrm_nr;
1810 #ifdef CONFIG_XFRM_SUB_POLICY
1811 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1812 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1813 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1814 XFRM_POLICY_TYPE_MAIN,
1815 fl, family,
1816 XFRM_POLICY_OUT);
1817 if (pols[1]) {
1818 if (IS_ERR(pols[1])) {
1819 xfrm_pols_put(pols, *num_pols);
1820 return PTR_ERR(pols[1]);
1822 (*num_pols)++;
1823 (*num_xfrms) += pols[1]->xfrm_nr;
1826 #endif
1827 for (i = 0; i < *num_pols; i++) {
1828 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1829 *num_xfrms = -1;
1830 break;
1834 return 0;
1838 static struct xfrm_dst *
1839 xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
1840 const struct flowi *fl, u16 family,
1841 struct dst_entry *dst_orig)
1843 struct net *net = xp_net(pols[0]);
1844 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1845 struct dst_entry *dst;
1846 struct xfrm_dst *xdst;
1847 int err;
1849 /* Try to instantiate a bundle */
1850 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
1851 if (err <= 0) {
1852 if (err != 0 && err != -EAGAIN)
1853 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1854 return ERR_PTR(err);
1857 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1858 if (IS_ERR(dst)) {
1859 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1860 return ERR_CAST(dst);
1863 xdst = (struct xfrm_dst *)dst;
1864 xdst->num_xfrms = err;
1865 if (num_pols > 1)
1866 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1867 else
1868 err = xfrm_dst_update_origin(dst, fl);
1869 if (unlikely(err)) {
1870 dst_free(dst);
1871 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1872 return ERR_PTR(err);
1875 xdst->num_pols = num_pols;
1876 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
1877 xdst->policy_genid = atomic_read(&pols[0]->genid);
1879 return xdst;
1882 static void xfrm_policy_queue_process(unsigned long arg)
1884 struct sk_buff *skb;
1885 struct sock *sk;
1886 struct dst_entry *dst;
1887 struct xfrm_policy *pol = (struct xfrm_policy *)arg;
1888 struct xfrm_policy_queue *pq = &pol->polq;
1889 struct flowi fl;
1890 struct sk_buff_head list;
1892 spin_lock(&pq->hold_queue.lock);
1893 skb = skb_peek(&pq->hold_queue);
1894 if (!skb) {
1895 spin_unlock(&pq->hold_queue.lock);
1896 goto out;
1898 dst = skb_dst(skb);
1899 sk = skb->sk;
1900 xfrm_decode_session(skb, &fl, dst->ops->family);
1901 spin_unlock(&pq->hold_queue.lock);
1903 dst_hold(dst->path);
1904 dst = xfrm_lookup(xp_net(pol), dst->path, &fl,
1905 sk, 0);
1906 if (IS_ERR(dst))
1907 goto purge_queue;
1909 if (dst->flags & DST_XFRM_QUEUE) {
1910 dst_release(dst);
1912 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
1913 goto purge_queue;
1915 pq->timeout = pq->timeout << 1;
1916 if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
1917 xfrm_pol_hold(pol);
1918 goto out;
1921 dst_release(dst);
1923 __skb_queue_head_init(&list);
1925 spin_lock(&pq->hold_queue.lock);
1926 pq->timeout = 0;
1927 skb_queue_splice_init(&pq->hold_queue, &list);
1928 spin_unlock(&pq->hold_queue.lock);
1930 while (!skb_queue_empty(&list)) {
1931 skb = __skb_dequeue(&list);
1933 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
1934 dst_hold(skb_dst(skb)->path);
1935 dst = xfrm_lookup(xp_net(pol), skb_dst(skb)->path,
1936 &fl, skb->sk, 0);
1937 if (IS_ERR(dst)) {
1938 kfree_skb(skb);
1939 continue;
1942 nf_reset(skb);
1943 skb_dst_drop(skb);
1944 skb_dst_set(skb, dst);
1946 dst_output(skb);
1949 out:
1950 xfrm_pol_put(pol);
1951 return;
1953 purge_queue:
1954 pq->timeout = 0;
1955 skb_queue_purge(&pq->hold_queue);
1956 xfrm_pol_put(pol);
1959 static int xdst_queue_output(struct sock *sk, struct sk_buff *skb)
1961 unsigned long sched_next;
1962 struct dst_entry *dst = skb_dst(skb);
1963 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
1964 struct xfrm_policy *pol = xdst->pols[0];
1965 struct xfrm_policy_queue *pq = &pol->polq;
1967 if (unlikely(skb_fclone_busy(sk, skb))) {
1968 kfree_skb(skb);
1969 return 0;
1972 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
1973 kfree_skb(skb);
1974 return -EAGAIN;
1977 skb_dst_force(skb);
1979 spin_lock_bh(&pq->hold_queue.lock);
1981 if (!pq->timeout)
1982 pq->timeout = XFRM_QUEUE_TMO_MIN;
1984 sched_next = jiffies + pq->timeout;
1986 if (del_timer(&pq->hold_timer)) {
1987 if (time_before(pq->hold_timer.expires, sched_next))
1988 sched_next = pq->hold_timer.expires;
1989 xfrm_pol_put(pol);
1992 __skb_queue_tail(&pq->hold_queue, skb);
1993 if (!mod_timer(&pq->hold_timer, sched_next))
1994 xfrm_pol_hold(pol);
1996 spin_unlock_bh(&pq->hold_queue.lock);
1998 return 0;
2001 static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
2002 struct xfrm_flo *xflo,
2003 const struct flowi *fl,
2004 int num_xfrms,
2005 u16 family)
2007 int err;
2008 struct net_device *dev;
2009 struct dst_entry *dst;
2010 struct dst_entry *dst1;
2011 struct xfrm_dst *xdst;
2013 xdst = xfrm_alloc_dst(net, family);
2014 if (IS_ERR(xdst))
2015 return xdst;
2017 if (!(xflo->flags & XFRM_LOOKUP_QUEUE) ||
2018 net->xfrm.sysctl_larval_drop ||
2019 num_xfrms <= 0)
2020 return xdst;
2022 dst = xflo->dst_orig;
2023 dst1 = &xdst->u.dst;
2024 dst_hold(dst);
2025 xdst->route = dst;
2027 dst_copy_metrics(dst1, dst);
2029 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2030 dst1->flags |= DST_HOST | DST_XFRM_QUEUE;
2031 dst1->lastuse = jiffies;
2033 dst1->input = dst_discard;
2034 dst1->output = xdst_queue_output;
2036 dst_hold(dst);
2037 dst1->child = dst;
2038 dst1->path = dst;
2040 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
2042 err = -ENODEV;
2043 dev = dst->dev;
2044 if (!dev)
2045 goto free_dst;
2047 err = xfrm_fill_dst(xdst, dev, fl);
2048 if (err)
2049 goto free_dst;
2051 out:
2052 return xdst;
2054 free_dst:
2055 dst_release(dst1);
2056 xdst = ERR_PTR(err);
2057 goto out;
2060 static struct flow_cache_object *
2061 xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
2062 struct flow_cache_object *oldflo, void *ctx)
2064 struct xfrm_flo *xflo = (struct xfrm_flo *)ctx;
2065 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2066 struct xfrm_dst *xdst, *new_xdst;
2067 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
2069 /* Check if the policies from old bundle are usable */
2070 xdst = NULL;
2071 if (oldflo) {
2072 xdst = container_of(oldflo, struct xfrm_dst, flo);
2073 num_pols = xdst->num_pols;
2074 num_xfrms = xdst->num_xfrms;
2075 pol_dead = 0;
2076 for (i = 0; i < num_pols; i++) {
2077 pols[i] = xdst->pols[i];
2078 pol_dead |= pols[i]->walk.dead;
2080 if (pol_dead) {
2081 dst_free(&xdst->u.dst);
2082 xdst = NULL;
2083 num_pols = 0;
2084 num_xfrms = 0;
2085 oldflo = NULL;
2089 /* Resolve policies to use if we couldn't get them from
2090 * previous cache entry */
2091 if (xdst == NULL) {
2092 num_pols = 1;
2093 pols[0] = __xfrm_policy_lookup(net, fl, family,
2094 flow_to_policy_dir(dir));
2095 err = xfrm_expand_policies(fl, family, pols,
2096 &num_pols, &num_xfrms);
2097 if (err < 0)
2098 goto inc_error;
2099 if (num_pols == 0)
2100 return NULL;
2101 if (num_xfrms <= 0)
2102 goto make_dummy_bundle;
2105 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family,
2106 xflo->dst_orig);
2107 if (IS_ERR(new_xdst)) {
2108 err = PTR_ERR(new_xdst);
2109 if (err != -EAGAIN)
2110 goto error;
2111 if (oldflo == NULL)
2112 goto make_dummy_bundle;
2113 dst_hold(&xdst->u.dst);
2114 return oldflo;
2115 } else if (new_xdst == NULL) {
2116 num_xfrms = 0;
2117 if (oldflo == NULL)
2118 goto make_dummy_bundle;
2119 xdst->num_xfrms = 0;
2120 dst_hold(&xdst->u.dst);
2121 return oldflo;
2124 /* Kill the previous bundle */
2125 if (xdst) {
2126 /* The policies were stolen for newly generated bundle */
2127 xdst->num_pols = 0;
2128 dst_free(&xdst->u.dst);
2131 /* Flow cache does not have reference, it dst_free()'s,
2132 * but we do need to return one reference for original caller */
2133 dst_hold(&new_xdst->u.dst);
2134 return &new_xdst->flo;
2136 make_dummy_bundle:
2137 /* We found policies, but there's no bundles to instantiate:
2138 * either because the policy blocks, has no transformations or
2139 * we could not build template (no xfrm_states).*/
2140 xdst = xfrm_create_dummy_bundle(net, xflo, fl, num_xfrms, family);
2141 if (IS_ERR(xdst)) {
2142 xfrm_pols_put(pols, num_pols);
2143 return ERR_CAST(xdst);
2145 xdst->num_pols = num_pols;
2146 xdst->num_xfrms = num_xfrms;
2147 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
2149 dst_hold(&xdst->u.dst);
2150 return &xdst->flo;
2152 inc_error:
2153 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2154 error:
2155 if (xdst != NULL)
2156 dst_free(&xdst->u.dst);
2157 else
2158 xfrm_pols_put(pols, num_pols);
2159 return ERR_PTR(err);
2162 static struct dst_entry *make_blackhole(struct net *net, u16 family,
2163 struct dst_entry *dst_orig)
2165 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2166 struct dst_entry *ret;
2168 if (!afinfo) {
2169 dst_release(dst_orig);
2170 return ERR_PTR(-EINVAL);
2171 } else {
2172 ret = afinfo->blackhole_route(net, dst_orig);
2174 xfrm_policy_put_afinfo(afinfo);
2176 return ret;
2179 /* Main function: finds/creates a bundle for given flow.
2181 * At the moment we eat a raw IP route. Mostly to speed up lookups
2182 * on interfaces with disabled IPsec.
2184 struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
2185 const struct flowi *fl,
2186 struct sock *sk, int flags)
2188 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2189 struct flow_cache_object *flo;
2190 struct xfrm_dst *xdst;
2191 struct dst_entry *dst, *route;
2192 u16 family = dst_orig->ops->family;
2193 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
2194 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
2196 dst = NULL;
2197 xdst = NULL;
2198 route = NULL;
2200 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
2201 num_pols = 1;
2202 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
2203 err = xfrm_expand_policies(fl, family, pols,
2204 &num_pols, &num_xfrms);
2205 if (err < 0)
2206 goto dropdst;
2208 if (num_pols) {
2209 if (num_xfrms <= 0) {
2210 drop_pols = num_pols;
2211 goto no_transform;
2214 xdst = xfrm_resolve_and_create_bundle(
2215 pols, num_pols, fl,
2216 family, dst_orig);
2217 if (IS_ERR(xdst)) {
2218 xfrm_pols_put(pols, num_pols);
2219 err = PTR_ERR(xdst);
2220 goto dropdst;
2221 } else if (xdst == NULL) {
2222 num_xfrms = 0;
2223 drop_pols = num_pols;
2224 goto no_transform;
2227 dst_hold(&xdst->u.dst);
2228 xdst->u.dst.flags |= DST_NOCACHE;
2229 route = xdst->route;
2233 if (xdst == NULL) {
2234 struct xfrm_flo xflo;
2236 xflo.dst_orig = dst_orig;
2237 xflo.flags = flags;
2239 /* To accelerate a bit... */
2240 if ((dst_orig->flags & DST_NOXFRM) ||
2241 !net->xfrm.policy_count[XFRM_POLICY_OUT])
2242 goto nopol;
2244 flo = flow_cache_lookup(net, fl, family, dir,
2245 xfrm_bundle_lookup, &xflo);
2246 if (flo == NULL)
2247 goto nopol;
2248 if (IS_ERR(flo)) {
2249 err = PTR_ERR(flo);
2250 goto dropdst;
2252 xdst = container_of(flo, struct xfrm_dst, flo);
2254 num_pols = xdst->num_pols;
2255 num_xfrms = xdst->num_xfrms;
2256 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
2257 route = xdst->route;
2260 dst = &xdst->u.dst;
2261 if (route == NULL && num_xfrms > 0) {
2262 /* The only case when xfrm_bundle_lookup() returns a
2263 * bundle with null route, is when the template could
2264 * not be resolved. It means policies are there, but
2265 * bundle could not be created, since we don't yet
2266 * have the xfrm_state's. We need to wait for KM to
2267 * negotiate new SA's or bail out with error.*/
2268 if (net->xfrm.sysctl_larval_drop) {
2269 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
2270 err = -EREMOTE;
2271 goto error;
2274 err = -EAGAIN;
2276 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
2277 goto error;
2280 no_transform:
2281 if (num_pols == 0)
2282 goto nopol;
2284 if ((flags & XFRM_LOOKUP_ICMP) &&
2285 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
2286 err = -ENOENT;
2287 goto error;
2290 for (i = 0; i < num_pols; i++)
2291 pols[i]->curlft.use_time = get_seconds();
2293 if (num_xfrms < 0) {
2294 /* Prohibit the flow */
2295 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
2296 err = -EPERM;
2297 goto error;
2298 } else if (num_xfrms > 0) {
2299 /* Flow transformed */
2300 dst_release(dst_orig);
2301 } else {
2302 /* Flow passes untransformed */
2303 dst_release(dst);
2304 dst = dst_orig;
2307 xfrm_pols_put(pols, drop_pols);
2308 if (dst && dst->xfrm &&
2309 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
2310 dst->flags |= DST_XFRM_TUNNEL;
2311 return dst;
2313 nopol:
2314 if (!(flags & XFRM_LOOKUP_ICMP)) {
2315 dst = dst_orig;
2316 goto ok;
2318 err = -ENOENT;
2319 error:
2320 dst_release(dst);
2321 dropdst:
2322 if (!(flags & XFRM_LOOKUP_KEEP_DST_REF))
2323 dst_release(dst_orig);
2324 xfrm_pols_put(pols, drop_pols);
2325 return ERR_PTR(err);
2327 EXPORT_SYMBOL(xfrm_lookup);
2329 /* Callers of xfrm_lookup_route() must ensure a call to dst_output().
2330 * Otherwise we may send out blackholed packets.
2332 struct dst_entry *xfrm_lookup_route(struct net *net, struct dst_entry *dst_orig,
2333 const struct flowi *fl,
2334 struct sock *sk, int flags)
2336 struct dst_entry *dst = xfrm_lookup(net, dst_orig, fl, sk,
2337 flags | XFRM_LOOKUP_QUEUE |
2338 XFRM_LOOKUP_KEEP_DST_REF);
2340 if (IS_ERR(dst) && PTR_ERR(dst) == -EREMOTE)
2341 return make_blackhole(net, dst_orig->ops->family, dst_orig);
2343 return dst;
2345 EXPORT_SYMBOL(xfrm_lookup_route);
2347 static inline int
2348 xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
2350 struct xfrm_state *x;
2352 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
2353 return 0;
2354 x = skb->sp->xvec[idx];
2355 if (!x->type->reject)
2356 return 0;
2357 return x->type->reject(x, skb, fl);
2360 /* When skb is transformed back to its "native" form, we have to
2361 * check policy restrictions. At the moment we make this in maximally
2362 * stupid way. Shame on me. :-) Of course, connected sockets must
2363 * have policy cached at them.
2366 static inline int
2367 xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
2368 unsigned short family)
2370 if (xfrm_state_kern(x))
2371 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
2372 return x->id.proto == tmpl->id.proto &&
2373 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
2374 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
2375 x->props.mode == tmpl->mode &&
2376 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
2377 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
2378 !(x->props.mode != XFRM_MODE_TRANSPORT &&
2379 xfrm_state_addr_cmp(tmpl, x, family));
2383 * 0 or more than 0 is returned when validation is succeeded (either bypass
2384 * because of optional transport mode, or next index of the mathced secpath
2385 * state with the template.
2386 * -1 is returned when no matching template is found.
2387 * Otherwise "-2 - errored_index" is returned.
2389 static inline int
2390 xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
2391 unsigned short family)
2393 int idx = start;
2395 if (tmpl->optional) {
2396 if (tmpl->mode == XFRM_MODE_TRANSPORT)
2397 return start;
2398 } else
2399 start = -1;
2400 for (; idx < sp->len; idx++) {
2401 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
2402 return ++idx;
2403 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
2404 if (start == -1)
2405 start = -2-idx;
2406 break;
2409 return start;
2412 int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
2413 unsigned int family, int reverse)
2415 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2416 int err;
2418 if (unlikely(afinfo == NULL))
2419 return -EAFNOSUPPORT;
2421 afinfo->decode_session(skb, fl, reverse);
2422 err = security_xfrm_decode_session(skb, &fl->flowi_secid);
2423 xfrm_policy_put_afinfo(afinfo);
2424 return err;
2426 EXPORT_SYMBOL(__xfrm_decode_session);
2428 static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
2430 for (; k < sp->len; k++) {
2431 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
2432 *idxp = k;
2433 return 1;
2437 return 0;
2440 int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
2441 unsigned short family)
2443 struct net *net = dev_net(skb->dev);
2444 struct xfrm_policy *pol;
2445 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2446 int npols = 0;
2447 int xfrm_nr;
2448 int pi;
2449 int reverse;
2450 struct flowi fl;
2451 u8 fl_dir;
2452 int xerr_idx = -1;
2454 reverse = dir & ~XFRM_POLICY_MASK;
2455 dir &= XFRM_POLICY_MASK;
2456 fl_dir = policy_to_flow_dir(dir);
2458 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
2459 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
2460 return 0;
2463 nf_nat_decode_session(skb, &fl, family);
2465 /* First, check used SA against their selectors. */
2466 if (skb->sp) {
2467 int i;
2469 for (i = skb->sp->len-1; i >= 0; i--) {
2470 struct xfrm_state *x = skb->sp->xvec[i];
2471 if (!xfrm_selector_match(&x->sel, &fl, family)) {
2472 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
2473 return 0;
2478 pol = NULL;
2479 if (sk && sk->sk_policy[dir]) {
2480 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
2481 if (IS_ERR(pol)) {
2482 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
2483 return 0;
2487 if (!pol) {
2488 struct flow_cache_object *flo;
2490 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2491 xfrm_policy_lookup, NULL);
2492 if (IS_ERR_OR_NULL(flo))
2493 pol = ERR_CAST(flo);
2494 else
2495 pol = container_of(flo, struct xfrm_policy, flo);
2498 if (IS_ERR(pol)) {
2499 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
2500 return 0;
2503 if (!pol) {
2504 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
2505 xfrm_secpath_reject(xerr_idx, skb, &fl);
2506 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
2507 return 0;
2509 return 1;
2512 pol->curlft.use_time = get_seconds();
2514 pols[0] = pol;
2515 npols++;
2516 #ifdef CONFIG_XFRM_SUB_POLICY
2517 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
2518 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
2519 &fl, family,
2520 XFRM_POLICY_IN);
2521 if (pols[1]) {
2522 if (IS_ERR(pols[1])) {
2523 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
2524 return 0;
2526 pols[1]->curlft.use_time = get_seconds();
2527 npols++;
2530 #endif
2532 if (pol->action == XFRM_POLICY_ALLOW) {
2533 struct sec_path *sp;
2534 static struct sec_path dummy;
2535 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
2536 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
2537 struct xfrm_tmpl **tpp = tp;
2538 int ti = 0;
2539 int i, k;
2541 if ((sp = skb->sp) == NULL)
2542 sp = &dummy;
2544 for (pi = 0; pi < npols; pi++) {
2545 if (pols[pi] != pol &&
2546 pols[pi]->action != XFRM_POLICY_ALLOW) {
2547 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
2548 goto reject;
2550 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
2551 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
2552 goto reject_error;
2554 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2555 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2557 xfrm_nr = ti;
2558 if (npols > 1) {
2559 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family, net);
2560 tpp = stp;
2563 /* For each tunnel xfrm, find the first matching tmpl.
2564 * For each tmpl before that, find corresponding xfrm.
2565 * Order is _important_. Later we will implement
2566 * some barriers, but at the moment barriers
2567 * are implied between each two transformations.
2569 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2570 k = xfrm_policy_ok(tpp[i], sp, k, family);
2571 if (k < 0) {
2572 if (k < -1)
2573 /* "-2 - errored_index" returned */
2574 xerr_idx = -(2+k);
2575 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
2576 goto reject;
2580 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2581 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
2582 goto reject;
2585 xfrm_pols_put(pols, npols);
2586 return 1;
2588 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
2590 reject:
2591 xfrm_secpath_reject(xerr_idx, skb, &fl);
2592 reject_error:
2593 xfrm_pols_put(pols, npols);
2594 return 0;
2596 EXPORT_SYMBOL(__xfrm_policy_check);
2598 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2600 struct net *net = dev_net(skb->dev);
2601 struct flowi fl;
2602 struct dst_entry *dst;
2603 int res = 1;
2605 if (xfrm_decode_session(skb, &fl, family) < 0) {
2606 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
2607 return 0;
2610 skb_dst_force(skb);
2612 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, XFRM_LOOKUP_QUEUE);
2613 if (IS_ERR(dst)) {
2614 res = 0;
2615 dst = NULL;
2617 skb_dst_set(skb, dst);
2618 return res;
2620 EXPORT_SYMBOL(__xfrm_route_forward);
2622 /* Optimize later using cookies and generation ids. */
2624 static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2626 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2627 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
2628 * get validated by dst_ops->check on every use. We do this
2629 * because when a normal route referenced by an XFRM dst is
2630 * obsoleted we do not go looking around for all parent
2631 * referencing XFRM dsts so that we can invalidate them. It
2632 * is just too much work. Instead we make the checks here on
2633 * every use. For example:
2635 * XFRM dst A --> IPv4 dst X
2637 * X is the "xdst->route" of A (X is also the "dst->path" of A
2638 * in this example). If X is marked obsolete, "A" will not
2639 * notice. That's what we are validating here via the
2640 * stale_bundle() check.
2642 * When a policy's bundle is pruned, we dst_free() the XFRM
2643 * dst which causes it's ->obsolete field to be set to
2644 * DST_OBSOLETE_DEAD. If an XFRM dst has been pruned like
2645 * this, we want to force a new route lookup.
2647 if (dst->obsolete < 0 && !stale_bundle(dst))
2648 return dst;
2650 return NULL;
2653 static int stale_bundle(struct dst_entry *dst)
2655 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
2658 void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
2660 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
2661 dst->dev = dev_net(dev)->loopback_dev;
2662 dev_hold(dst->dev);
2663 dev_put(dev);
2666 EXPORT_SYMBOL(xfrm_dst_ifdown);
2668 static void xfrm_link_failure(struct sk_buff *skb)
2670 /* Impossible. Such dst must be popped before reaches point of failure. */
2673 static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2675 if (dst) {
2676 if (dst->obsolete) {
2677 dst_release(dst);
2678 dst = NULL;
2681 return dst;
2684 void xfrm_garbage_collect(struct net *net)
2686 flow_cache_flush(net);
2688 EXPORT_SYMBOL(xfrm_garbage_collect);
2690 static void xfrm_garbage_collect_deferred(struct net *net)
2692 flow_cache_flush_deferred(net);
2695 static void xfrm_init_pmtu(struct dst_entry *dst)
2697 do {
2698 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2699 u32 pmtu, route_mtu_cached;
2701 pmtu = dst_mtu(dst->child);
2702 xdst->child_mtu_cached = pmtu;
2704 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2706 route_mtu_cached = dst_mtu(xdst->route);
2707 xdst->route_mtu_cached = route_mtu_cached;
2709 if (pmtu > route_mtu_cached)
2710 pmtu = route_mtu_cached;
2712 dst_metric_set(dst, RTAX_MTU, pmtu);
2713 } while ((dst = dst->next));
2716 /* Check that the bundle accepts the flow and its components are
2717 * still valid.
2720 static int xfrm_bundle_ok(struct xfrm_dst *first)
2722 struct dst_entry *dst = &first->u.dst;
2723 struct xfrm_dst *last;
2724 u32 mtu;
2726 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
2727 (dst->dev && !netif_running(dst->dev)))
2728 return 0;
2730 if (dst->flags & DST_XFRM_QUEUE)
2731 return 1;
2733 last = NULL;
2735 do {
2736 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2738 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2739 return 0;
2740 if (xdst->xfrm_genid != dst->xfrm->genid)
2741 return 0;
2742 if (xdst->num_pols > 0 &&
2743 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
2744 return 0;
2746 mtu = dst_mtu(dst->child);
2747 if (xdst->child_mtu_cached != mtu) {
2748 last = xdst;
2749 xdst->child_mtu_cached = mtu;
2752 if (!dst_check(xdst->route, xdst->route_cookie))
2753 return 0;
2754 mtu = dst_mtu(xdst->route);
2755 if (xdst->route_mtu_cached != mtu) {
2756 last = xdst;
2757 xdst->route_mtu_cached = mtu;
2760 dst = dst->child;
2761 } while (dst->xfrm);
2763 if (likely(!last))
2764 return 1;
2766 mtu = last->child_mtu_cached;
2767 for (;;) {
2768 dst = &last->u.dst;
2770 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2771 if (mtu > last->route_mtu_cached)
2772 mtu = last->route_mtu_cached;
2773 dst_metric_set(dst, RTAX_MTU, mtu);
2775 if (last == first)
2776 break;
2778 last = (struct xfrm_dst *)last->u.dst.next;
2779 last->child_mtu_cached = mtu;
2782 return 1;
2785 static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2787 return dst_metric_advmss(dst->path);
2790 static unsigned int xfrm_mtu(const struct dst_entry *dst)
2792 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
2794 return mtu ? : dst_mtu(dst->path);
2797 static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
2798 struct sk_buff *skb,
2799 const void *daddr)
2801 return dst->path->ops->neigh_lookup(dst, skb, daddr);
2804 int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2806 struct net *net;
2807 int err = 0;
2808 if (unlikely(afinfo == NULL))
2809 return -EINVAL;
2810 if (unlikely(afinfo->family >= NPROTO))
2811 return -EAFNOSUPPORT;
2812 spin_lock(&xfrm_policy_afinfo_lock);
2813 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2814 err = -EEXIST;
2815 else {
2816 struct dst_ops *dst_ops = afinfo->dst_ops;
2817 if (likely(dst_ops->kmem_cachep == NULL))
2818 dst_ops->kmem_cachep = xfrm_dst_cache;
2819 if (likely(dst_ops->check == NULL))
2820 dst_ops->check = xfrm_dst_check;
2821 if (likely(dst_ops->default_advmss == NULL))
2822 dst_ops->default_advmss = xfrm_default_advmss;
2823 if (likely(dst_ops->mtu == NULL))
2824 dst_ops->mtu = xfrm_mtu;
2825 if (likely(dst_ops->negative_advice == NULL))
2826 dst_ops->negative_advice = xfrm_negative_advice;
2827 if (likely(dst_ops->link_failure == NULL))
2828 dst_ops->link_failure = xfrm_link_failure;
2829 if (likely(dst_ops->neigh_lookup == NULL))
2830 dst_ops->neigh_lookup = xfrm_neigh_lookup;
2831 if (likely(afinfo->garbage_collect == NULL))
2832 afinfo->garbage_collect = xfrm_garbage_collect_deferred;
2833 rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo);
2835 spin_unlock(&xfrm_policy_afinfo_lock);
2837 rtnl_lock();
2838 for_each_net(net) {
2839 struct dst_ops *xfrm_dst_ops;
2841 switch (afinfo->family) {
2842 case AF_INET:
2843 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2844 break;
2845 #if IS_ENABLED(CONFIG_IPV6)
2846 case AF_INET6:
2847 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2848 break;
2849 #endif
2850 default:
2851 BUG();
2853 *xfrm_dst_ops = *afinfo->dst_ops;
2855 rtnl_unlock();
2857 return err;
2859 EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2861 int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2863 int err = 0;
2864 if (unlikely(afinfo == NULL))
2865 return -EINVAL;
2866 if (unlikely(afinfo->family >= NPROTO))
2867 return -EAFNOSUPPORT;
2868 spin_lock(&xfrm_policy_afinfo_lock);
2869 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2870 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2871 err = -EINVAL;
2872 else
2873 RCU_INIT_POINTER(xfrm_policy_afinfo[afinfo->family],
2874 NULL);
2876 spin_unlock(&xfrm_policy_afinfo_lock);
2877 if (!err) {
2878 struct dst_ops *dst_ops = afinfo->dst_ops;
2880 synchronize_rcu();
2882 dst_ops->kmem_cachep = NULL;
2883 dst_ops->check = NULL;
2884 dst_ops->negative_advice = NULL;
2885 dst_ops->link_failure = NULL;
2886 afinfo->garbage_collect = NULL;
2888 return err;
2890 EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2892 static void __net_init xfrm_dst_ops_init(struct net *net)
2894 struct xfrm_policy_afinfo *afinfo;
2896 rcu_read_lock();
2897 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET]);
2898 if (afinfo)
2899 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
2900 #if IS_ENABLED(CONFIG_IPV6)
2901 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET6]);
2902 if (afinfo)
2903 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2904 #endif
2905 rcu_read_unlock();
2908 static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2910 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2912 switch (event) {
2913 case NETDEV_DOWN:
2914 xfrm_garbage_collect(dev_net(dev));
2916 return NOTIFY_DONE;
2919 static struct notifier_block xfrm_dev_notifier = {
2920 .notifier_call = xfrm_dev_event,
2923 #ifdef CONFIG_XFRM_STATISTICS
2924 static int __net_init xfrm_statistics_init(struct net *net)
2926 int rv;
2927 net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
2928 if (!net->mib.xfrm_statistics)
2929 return -ENOMEM;
2930 rv = xfrm_proc_init(net);
2931 if (rv < 0)
2932 free_percpu(net->mib.xfrm_statistics);
2933 return rv;
2936 static void xfrm_statistics_fini(struct net *net)
2938 xfrm_proc_fini(net);
2939 free_percpu(net->mib.xfrm_statistics);
2941 #else
2942 static int __net_init xfrm_statistics_init(struct net *net)
2944 return 0;
2947 static void xfrm_statistics_fini(struct net *net)
2950 #endif
2952 static int __net_init xfrm_policy_init(struct net *net)
2954 unsigned int hmask, sz;
2955 int dir;
2957 if (net_eq(net, &init_net))
2958 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
2959 sizeof(struct xfrm_dst),
2960 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
2961 NULL);
2963 hmask = 8 - 1;
2964 sz = (hmask+1) * sizeof(struct hlist_head);
2966 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2967 if (!net->xfrm.policy_byidx)
2968 goto out_byidx;
2969 net->xfrm.policy_idx_hmask = hmask;
2971 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
2972 struct xfrm_policy_hash *htab;
2974 net->xfrm.policy_count[dir] = 0;
2975 net->xfrm.policy_count[XFRM_POLICY_MAX + dir] = 0;
2976 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
2978 htab = &net->xfrm.policy_bydst[dir];
2979 htab->table = xfrm_hash_alloc(sz);
2980 if (!htab->table)
2981 goto out_bydst;
2982 htab->hmask = hmask;
2983 htab->dbits4 = 32;
2984 htab->sbits4 = 32;
2985 htab->dbits6 = 128;
2986 htab->sbits6 = 128;
2988 net->xfrm.policy_hthresh.lbits4 = 32;
2989 net->xfrm.policy_hthresh.rbits4 = 32;
2990 net->xfrm.policy_hthresh.lbits6 = 128;
2991 net->xfrm.policy_hthresh.rbits6 = 128;
2993 seqlock_init(&net->xfrm.policy_hthresh.lock);
2995 INIT_LIST_HEAD(&net->xfrm.policy_all);
2996 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
2997 INIT_WORK(&net->xfrm.policy_hthresh.work, xfrm_hash_rebuild);
2998 if (net_eq(net, &init_net))
2999 register_netdevice_notifier(&xfrm_dev_notifier);
3000 return 0;
3002 out_bydst:
3003 for (dir--; dir >= 0; dir--) {
3004 struct xfrm_policy_hash *htab;
3006 htab = &net->xfrm.policy_bydst[dir];
3007 xfrm_hash_free(htab->table, sz);
3009 xfrm_hash_free(net->xfrm.policy_byidx, sz);
3010 out_byidx:
3011 return -ENOMEM;
3014 static void xfrm_policy_fini(struct net *net)
3016 unsigned int sz;
3017 int dir;
3019 flush_work(&net->xfrm.policy_hash_work);
3020 #ifdef CONFIG_XFRM_SUB_POLICY
3021 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, false);
3022 #endif
3023 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, false);
3025 WARN_ON(!list_empty(&net->xfrm.policy_all));
3027 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
3028 struct xfrm_policy_hash *htab;
3030 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
3032 htab = &net->xfrm.policy_bydst[dir];
3033 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
3034 WARN_ON(!hlist_empty(htab->table));
3035 xfrm_hash_free(htab->table, sz);
3038 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
3039 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
3040 xfrm_hash_free(net->xfrm.policy_byidx, sz);
3043 static int __net_init xfrm_net_init(struct net *net)
3045 int rv;
3047 rv = xfrm_statistics_init(net);
3048 if (rv < 0)
3049 goto out_statistics;
3050 rv = xfrm_state_init(net);
3051 if (rv < 0)
3052 goto out_state;
3053 rv = xfrm_policy_init(net);
3054 if (rv < 0)
3055 goto out_policy;
3056 xfrm_dst_ops_init(net);
3057 rv = xfrm_sysctl_init(net);
3058 if (rv < 0)
3059 goto out_sysctl;
3060 rv = flow_cache_init(net);
3061 if (rv < 0)
3062 goto out;
3064 /* Initialize the per-net locks here */
3065 spin_lock_init(&net->xfrm.xfrm_state_lock);
3066 rwlock_init(&net->xfrm.xfrm_policy_lock);
3067 mutex_init(&net->xfrm.xfrm_cfg_mutex);
3069 return 0;
3071 out:
3072 xfrm_sysctl_fini(net);
3073 out_sysctl:
3074 xfrm_policy_fini(net);
3075 out_policy:
3076 xfrm_state_fini(net);
3077 out_state:
3078 xfrm_statistics_fini(net);
3079 out_statistics:
3080 return rv;
3083 static void __net_exit xfrm_net_exit(struct net *net)
3085 flow_cache_fini(net);
3086 xfrm_sysctl_fini(net);
3087 xfrm_policy_fini(net);
3088 xfrm_state_fini(net);
3089 xfrm_statistics_fini(net);
3092 static struct pernet_operations __net_initdata xfrm_net_ops = {
3093 .init = xfrm_net_init,
3094 .exit = xfrm_net_exit,
3097 void __init xfrm_init(void)
3099 register_pernet_subsys(&xfrm_net_ops);
3100 xfrm_input_init();
3103 #ifdef CONFIG_AUDITSYSCALL
3104 static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
3105 struct audit_buffer *audit_buf)
3107 struct xfrm_sec_ctx *ctx = xp->security;
3108 struct xfrm_selector *sel = &xp->selector;
3110 if (ctx)
3111 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
3112 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
3114 switch (sel->family) {
3115 case AF_INET:
3116 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
3117 if (sel->prefixlen_s != 32)
3118 audit_log_format(audit_buf, " src_prefixlen=%d",
3119 sel->prefixlen_s);
3120 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
3121 if (sel->prefixlen_d != 32)
3122 audit_log_format(audit_buf, " dst_prefixlen=%d",
3123 sel->prefixlen_d);
3124 break;
3125 case AF_INET6:
3126 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
3127 if (sel->prefixlen_s != 128)
3128 audit_log_format(audit_buf, " src_prefixlen=%d",
3129 sel->prefixlen_s);
3130 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
3131 if (sel->prefixlen_d != 128)
3132 audit_log_format(audit_buf, " dst_prefixlen=%d",
3133 sel->prefixlen_d);
3134 break;
3138 void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid)
3140 struct audit_buffer *audit_buf;
3142 audit_buf = xfrm_audit_start("SPD-add");
3143 if (audit_buf == NULL)
3144 return;
3145 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
3146 audit_log_format(audit_buf, " res=%u", result);
3147 xfrm_audit_common_policyinfo(xp, audit_buf);
3148 audit_log_end(audit_buf);
3150 EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
3152 void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
3153 bool task_valid)
3155 struct audit_buffer *audit_buf;
3157 audit_buf = xfrm_audit_start("SPD-delete");
3158 if (audit_buf == NULL)
3159 return;
3160 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
3161 audit_log_format(audit_buf, " res=%u", result);
3162 xfrm_audit_common_policyinfo(xp, audit_buf);
3163 audit_log_end(audit_buf);
3165 EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
3166 #endif
3168 #ifdef CONFIG_XFRM_MIGRATE
3169 static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
3170 const struct xfrm_selector *sel_tgt)
3172 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
3173 if (sel_tgt->family == sel_cmp->family &&
3174 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
3175 sel_cmp->family) &&
3176 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
3177 sel_cmp->family) &&
3178 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
3179 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
3180 return true;
3182 } else {
3183 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
3184 return true;
3187 return false;
3190 static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
3191 u8 dir, u8 type, struct net *net)
3193 struct xfrm_policy *pol, *ret = NULL;
3194 struct hlist_head *chain;
3195 u32 priority = ~0U;
3197 read_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME*/
3198 chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
3199 hlist_for_each_entry(pol, chain, bydst) {
3200 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3201 pol->type == type) {
3202 ret = pol;
3203 priority = ret->priority;
3204 break;
3207 chain = &net->xfrm.policy_inexact[dir];
3208 hlist_for_each_entry(pol, chain, bydst) {
3209 if ((pol->priority >= priority) && ret)
3210 break;
3212 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3213 pol->type == type) {
3214 ret = pol;
3215 break;
3219 xfrm_pol_hold(ret);
3221 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
3223 return ret;
3226 static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
3228 int match = 0;
3230 if (t->mode == m->mode && t->id.proto == m->proto &&
3231 (m->reqid == 0 || t->reqid == m->reqid)) {
3232 switch (t->mode) {
3233 case XFRM_MODE_TUNNEL:
3234 case XFRM_MODE_BEET:
3235 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
3236 m->old_family) &&
3237 xfrm_addr_equal(&t->saddr, &m->old_saddr,
3238 m->old_family)) {
3239 match = 1;
3241 break;
3242 case XFRM_MODE_TRANSPORT:
3243 /* in case of transport mode, template does not store
3244 any IP addresses, hence we just compare mode and
3245 protocol */
3246 match = 1;
3247 break;
3248 default:
3249 break;
3252 return match;
3255 /* update endpoint address(es) of template(s) */
3256 static int xfrm_policy_migrate(struct xfrm_policy *pol,
3257 struct xfrm_migrate *m, int num_migrate)
3259 struct xfrm_migrate *mp;
3260 int i, j, n = 0;
3262 write_lock_bh(&pol->lock);
3263 if (unlikely(pol->walk.dead)) {
3264 /* target policy has been deleted */
3265 write_unlock_bh(&pol->lock);
3266 return -ENOENT;
3269 for (i = 0; i < pol->xfrm_nr; i++) {
3270 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
3271 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
3272 continue;
3273 n++;
3274 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
3275 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
3276 continue;
3277 /* update endpoints */
3278 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
3279 sizeof(pol->xfrm_vec[i].id.daddr));
3280 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
3281 sizeof(pol->xfrm_vec[i].saddr));
3282 pol->xfrm_vec[i].encap_family = mp->new_family;
3283 /* flush bundles */
3284 atomic_inc(&pol->genid);
3288 write_unlock_bh(&pol->lock);
3290 if (!n)
3291 return -ENODATA;
3293 return 0;
3296 static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
3298 int i, j;
3300 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
3301 return -EINVAL;
3303 for (i = 0; i < num_migrate; i++) {
3304 if (xfrm_addr_equal(&m[i].old_daddr, &m[i].new_daddr,
3305 m[i].old_family) &&
3306 xfrm_addr_equal(&m[i].old_saddr, &m[i].new_saddr,
3307 m[i].old_family))
3308 return -EINVAL;
3309 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
3310 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
3311 return -EINVAL;
3313 /* check if there is any duplicated entry */
3314 for (j = i + 1; j < num_migrate; j++) {
3315 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
3316 sizeof(m[i].old_daddr)) &&
3317 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
3318 sizeof(m[i].old_saddr)) &&
3319 m[i].proto == m[j].proto &&
3320 m[i].mode == m[j].mode &&
3321 m[i].reqid == m[j].reqid &&
3322 m[i].old_family == m[j].old_family)
3323 return -EINVAL;
3327 return 0;
3330 int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
3331 struct xfrm_migrate *m, int num_migrate,
3332 struct xfrm_kmaddress *k, struct net *net)
3334 int i, err, nx_cur = 0, nx_new = 0;
3335 struct xfrm_policy *pol = NULL;
3336 struct xfrm_state *x, *xc;
3337 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
3338 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
3339 struct xfrm_migrate *mp;
3341 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
3342 goto out;
3344 /* Stage 1 - find policy */
3345 if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) {
3346 err = -ENOENT;
3347 goto out;
3350 /* Stage 2 - find and update state(s) */
3351 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
3352 if ((x = xfrm_migrate_state_find(mp, net))) {
3353 x_cur[nx_cur] = x;
3354 nx_cur++;
3355 if ((xc = xfrm_state_migrate(x, mp))) {
3356 x_new[nx_new] = xc;
3357 nx_new++;
3358 } else {
3359 err = -ENODATA;
3360 goto restore_state;
3365 /* Stage 3 - update policy */
3366 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
3367 goto restore_state;
3369 /* Stage 4 - delete old state(s) */
3370 if (nx_cur) {
3371 xfrm_states_put(x_cur, nx_cur);
3372 xfrm_states_delete(x_cur, nx_cur);
3375 /* Stage 5 - announce */
3376 km_migrate(sel, dir, type, m, num_migrate, k);
3378 xfrm_pol_put(pol);
3380 return 0;
3381 out:
3382 return err;
3384 restore_state:
3385 if (pol)
3386 xfrm_pol_put(pol);
3387 if (nx_cur)
3388 xfrm_states_put(x_cur, nx_cur);
3389 if (nx_new)
3390 xfrm_states_delete(x_new, nx_new);
3392 return err;
3394 EXPORT_SYMBOL(xfrm_migrate);
3395 #endif