1 // SPDX-License-Identifier: GPL-2.0-only
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
10 * Kazunori MIYAZAWA @USAGI
12 * Split up af-specific portion
13 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/kmod.h>
20 #include <linux/list.h>
21 #include <linux/spinlock.h>
22 #include <linux/workqueue.h>
23 #include <linux/notifier.h>
24 #include <linux/netdevice.h>
25 #include <linux/netfilter.h>
26 #include <linux/module.h>
27 #include <linux/cache.h>
28 #include <linux/cpu.h>
29 #include <linux/audit.h>
30 #include <linux/rhashtable.h>
31 #include <linux/if_tunnel.h>
36 #if IS_ENABLED(CONFIG_IPV6_MIP6)
39 #ifdef CONFIG_XFRM_STATISTICS
42 #ifdef CONFIG_XFRM_ESPINTCP
43 #include <net/espintcp.h>
46 #include "xfrm_hash.h"
48 #define XFRM_QUEUE_TMO_MIN ((unsigned)(HZ/10))
49 #define XFRM_QUEUE_TMO_MAX ((unsigned)(60*HZ))
50 #define XFRM_MAX_QUEUE_LEN 100
53 struct dst_entry *dst_orig;
57 /* prefixes smaller than this are stored in lists, not trees. */
58 #define INEXACT_PREFIXLEN_IPV4 16
59 #define INEXACT_PREFIXLEN_IPV6 48
61 struct xfrm_pol_inexact_node {
71 /* the policies matching this node, can be empty list */
72 struct hlist_head hhead;
75 /* xfrm inexact policy search tree:
76 * xfrm_pol_inexact_bin = hash(dir,type,family,if_id);
78 * +---- root_d: sorted by daddr:prefix
80 * | xfrm_pol_inexact_node
82 * | +- root: sorted by saddr/prefix
84 * | | xfrm_pol_inexact_node
88 * | | + hhead: saddr:daddr policies
90 * | +- coarse policies and all any:daddr policies
92 * +---- root_s: sorted by saddr:prefix
94 * | xfrm_pol_inexact_node
98 * | + hhead: saddr:any policies
100 * +---- coarse policies and all any:any policies
102 * Lookups return four candidate lists:
103 * 1. any:any list from top-level xfrm_pol_inexact_bin
104 * 2. any:daddr list from daddr tree
105 * 3. saddr:daddr list from 2nd level daddr tree
106 * 4. saddr:any list from saddr tree
108 * This result set then needs to be searched for the policy with
109 * the lowest priority. If two results have same prio, youngest one wins.
112 struct xfrm_pol_inexact_key {
119 struct xfrm_pol_inexact_bin {
120 struct xfrm_pol_inexact_key k;
121 struct rhash_head head;
122 /* list containing '*:*' policies */
123 struct hlist_head hhead;
125 seqcount_spinlock_t count;
126 /* tree sorted by daddr/prefix */
127 struct rb_root root_d;
129 /* tree sorted by saddr/prefix */
130 struct rb_root root_s;
132 /* slow path below */
133 struct list_head inexact_bins;
137 enum xfrm_pol_inexact_candidate_type {
146 struct xfrm_pol_inexact_candidates {
147 struct hlist_head *res[XFRM_POL_CAND_MAX];
150 static DEFINE_SPINLOCK(xfrm_if_cb_lock);
151 static struct xfrm_if_cb const __rcu *xfrm_if_cb __read_mostly;
153 static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
154 static struct xfrm_policy_afinfo const __rcu *xfrm_policy_afinfo[AF_INET6 + 1]
157 static struct kmem_cache *xfrm_dst_cache __ro_after_init;
158 static __read_mostly seqcount_mutex_t xfrm_policy_hash_generation;
160 static struct rhashtable xfrm_policy_inexact_table;
161 static const struct rhashtable_params xfrm_pol_inexact_params;
163 static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr);
164 static int stale_bundle(struct dst_entry *dst);
165 static int xfrm_bundle_ok(struct xfrm_dst *xdst);
166 static void xfrm_policy_queue_process(struct timer_list *t);
168 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir);
169 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
172 static struct xfrm_pol_inexact_bin *
173 xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family, u8 dir,
176 static struct xfrm_pol_inexact_bin *
177 xfrm_policy_inexact_lookup_rcu(struct net *net,
178 u8 type, u16 family, u8 dir, u32 if_id);
179 static struct xfrm_policy *
180 xfrm_policy_insert_list(struct hlist_head *chain, struct xfrm_policy *policy,
182 static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
183 struct xfrm_policy *policy);
186 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
187 struct xfrm_pol_inexact_bin *b,
188 const xfrm_address_t *saddr,
189 const xfrm_address_t *daddr);
191 static inline bool xfrm_pol_hold_rcu(struct xfrm_policy *policy)
193 return refcount_inc_not_zero(&policy->refcnt);
197 __xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
199 const struct flowi4 *fl4 = &fl->u.ip4;
201 return addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
202 addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
203 !((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
204 !((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
205 (fl4->flowi4_proto == sel->proto || !sel->proto) &&
206 (fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
210 __xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
212 const struct flowi6 *fl6 = &fl->u.ip6;
214 return addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
215 addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
216 !((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
217 !((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
218 (fl6->flowi6_proto == sel->proto || !sel->proto) &&
219 (fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
222 bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
223 unsigned short family)
227 return __xfrm4_selector_match(sel, fl);
229 return __xfrm6_selector_match(sel, fl);
234 static const struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
236 const struct xfrm_policy_afinfo *afinfo;
238 if (unlikely(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
241 afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
242 if (unlikely(!afinfo))
247 /* Called with rcu_read_lock(). */
248 static const struct xfrm_if_cb *xfrm_if_get_cb(void)
250 return rcu_dereference(xfrm_if_cb);
253 struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos, int oif,
254 const xfrm_address_t *saddr,
255 const xfrm_address_t *daddr,
256 int family, u32 mark)
258 const struct xfrm_policy_afinfo *afinfo;
259 struct dst_entry *dst;
261 afinfo = xfrm_policy_get_afinfo(family);
262 if (unlikely(afinfo == NULL))
263 return ERR_PTR(-EAFNOSUPPORT);
265 dst = afinfo->dst_lookup(net, tos, oif, saddr, daddr, mark);
271 EXPORT_SYMBOL(__xfrm_dst_lookup);
273 static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x,
275 xfrm_address_t *prev_saddr,
276 xfrm_address_t *prev_daddr,
277 int family, u32 mark)
279 struct net *net = xs_net(x);
280 xfrm_address_t *saddr = &x->props.saddr;
281 xfrm_address_t *daddr = &x->id.daddr;
282 struct dst_entry *dst;
284 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
288 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
293 dst = __xfrm_dst_lookup(net, tos, oif, saddr, daddr, family, mark);
296 if (prev_saddr != saddr)
297 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
298 if (prev_daddr != daddr)
299 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
305 static inline unsigned long make_jiffies(long secs)
307 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
308 return MAX_SCHEDULE_TIMEOUT-1;
313 static void xfrm_policy_timer(struct timer_list *t)
315 struct xfrm_policy *xp = from_timer(xp, t, timer);
316 time64_t now = ktime_get_real_seconds();
317 time64_t next = TIME64_MAX;
321 read_lock(&xp->lock);
323 if (unlikely(xp->walk.dead))
326 dir = xfrm_policy_id2dir(xp->index);
328 if (xp->lft.hard_add_expires_seconds) {
329 time64_t tmo = xp->lft.hard_add_expires_seconds +
330 xp->curlft.add_time - now;
336 if (xp->lft.hard_use_expires_seconds) {
337 time64_t tmo = xp->lft.hard_use_expires_seconds +
338 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
344 if (xp->lft.soft_add_expires_seconds) {
345 time64_t tmo = xp->lft.soft_add_expires_seconds +
346 xp->curlft.add_time - now;
349 tmo = XFRM_KM_TIMEOUT;
354 if (xp->lft.soft_use_expires_seconds) {
355 time64_t tmo = xp->lft.soft_use_expires_seconds +
356 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
359 tmo = XFRM_KM_TIMEOUT;
366 km_policy_expired(xp, dir, 0, 0);
367 if (next != TIME64_MAX &&
368 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
372 read_unlock(&xp->lock);
377 read_unlock(&xp->lock);
378 if (!xfrm_policy_delete(xp, dir))
379 km_policy_expired(xp, dir, 1, 0);
383 /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
387 struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
389 struct xfrm_policy *policy;
391 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
394 write_pnet(&policy->xp_net, net);
395 INIT_LIST_HEAD(&policy->walk.all);
396 INIT_HLIST_NODE(&policy->bydst_inexact_list);
397 INIT_HLIST_NODE(&policy->bydst);
398 INIT_HLIST_NODE(&policy->byidx);
399 rwlock_init(&policy->lock);
400 refcount_set(&policy->refcnt, 1);
401 skb_queue_head_init(&policy->polq.hold_queue);
402 timer_setup(&policy->timer, xfrm_policy_timer, 0);
403 timer_setup(&policy->polq.hold_timer,
404 xfrm_policy_queue_process, 0);
408 EXPORT_SYMBOL(xfrm_policy_alloc);
410 static void xfrm_policy_destroy_rcu(struct rcu_head *head)
412 struct xfrm_policy *policy = container_of(head, struct xfrm_policy, rcu);
414 security_xfrm_policy_free(policy->security);
418 /* Destroy xfrm_policy: descendant resources must be released to this moment. */
420 void xfrm_policy_destroy(struct xfrm_policy *policy)
422 BUG_ON(!policy->walk.dead);
424 if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
427 call_rcu(&policy->rcu, xfrm_policy_destroy_rcu);
429 EXPORT_SYMBOL(xfrm_policy_destroy);
431 /* Rule must be locked. Release descendant resources, announce
432 * entry dead. The rule must be unlinked from lists to the moment.
435 static void xfrm_policy_kill(struct xfrm_policy *policy)
437 write_lock_bh(&policy->lock);
438 policy->walk.dead = 1;
439 write_unlock_bh(&policy->lock);
441 atomic_inc(&policy->genid);
443 if (del_timer(&policy->polq.hold_timer))
444 xfrm_pol_put(policy);
445 skb_queue_purge(&policy->polq.hold_queue);
447 if (del_timer(&policy->timer))
448 xfrm_pol_put(policy);
450 xfrm_pol_put(policy);
453 static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
455 static inline unsigned int idx_hash(struct net *net, u32 index)
457 return __idx_hash(index, net->xfrm.policy_idx_hmask);
460 /* calculate policy hash thresholds */
461 static void __get_hash_thresh(struct net *net,
462 unsigned short family, int dir,
463 u8 *dbits, u8 *sbits)
467 *dbits = net->xfrm.policy_bydst[dir].dbits4;
468 *sbits = net->xfrm.policy_bydst[dir].sbits4;
472 *dbits = net->xfrm.policy_bydst[dir].dbits6;
473 *sbits = net->xfrm.policy_bydst[dir].sbits6;
482 static struct hlist_head *policy_hash_bysel(struct net *net,
483 const struct xfrm_selector *sel,
484 unsigned short family, int dir)
486 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
491 __get_hash_thresh(net, family, dir, &dbits, &sbits);
492 hash = __sel_hash(sel, family, hmask, dbits, sbits);
494 if (hash == hmask + 1)
497 return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
498 lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
501 static struct hlist_head *policy_hash_direct(struct net *net,
502 const xfrm_address_t *daddr,
503 const xfrm_address_t *saddr,
504 unsigned short family, int dir)
506 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
511 __get_hash_thresh(net, family, dir, &dbits, &sbits);
512 hash = __addr_hash(daddr, saddr, family, hmask, dbits, sbits);
514 return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
515 lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
518 static void xfrm_dst_hash_transfer(struct net *net,
519 struct hlist_head *list,
520 struct hlist_head *ndsttable,
521 unsigned int nhashmask,
524 struct hlist_node *tmp, *entry0 = NULL;
525 struct xfrm_policy *pol;
531 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
534 __get_hash_thresh(net, pol->family, dir, &dbits, &sbits);
535 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
536 pol->family, nhashmask, dbits, sbits);
538 hlist_del_rcu(&pol->bydst);
539 hlist_add_head_rcu(&pol->bydst, ndsttable + h);
544 hlist_del_rcu(&pol->bydst);
545 hlist_add_behind_rcu(&pol->bydst, entry0);
547 entry0 = &pol->bydst;
549 if (!hlist_empty(list)) {
555 static void xfrm_idx_hash_transfer(struct hlist_head *list,
556 struct hlist_head *nidxtable,
557 unsigned int nhashmask)
559 struct hlist_node *tmp;
560 struct xfrm_policy *pol;
562 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
565 h = __idx_hash(pol->index, nhashmask);
566 hlist_add_head(&pol->byidx, nidxtable+h);
570 static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
572 return ((old_hmask + 1) << 1) - 1;
575 static void xfrm_bydst_resize(struct net *net, int dir)
577 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
578 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
579 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
580 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
581 struct hlist_head *odst;
587 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
588 write_seqcount_begin(&xfrm_policy_hash_generation);
590 odst = rcu_dereference_protected(net->xfrm.policy_bydst[dir].table,
591 lockdep_is_held(&net->xfrm.xfrm_policy_lock));
593 for (i = hmask; i >= 0; i--)
594 xfrm_dst_hash_transfer(net, odst + i, ndst, nhashmask, dir);
596 rcu_assign_pointer(net->xfrm.policy_bydst[dir].table, ndst);
597 net->xfrm.policy_bydst[dir].hmask = nhashmask;
599 write_seqcount_end(&xfrm_policy_hash_generation);
600 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
604 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
607 static void xfrm_byidx_resize(struct net *net, int total)
609 unsigned int hmask = net->xfrm.policy_idx_hmask;
610 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
611 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
612 struct hlist_head *oidx = net->xfrm.policy_byidx;
613 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
619 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
621 for (i = hmask; i >= 0; i--)
622 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
624 net->xfrm.policy_byidx = nidx;
625 net->xfrm.policy_idx_hmask = nhashmask;
627 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
629 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
632 static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
634 unsigned int cnt = net->xfrm.policy_count[dir];
635 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
640 if ((hmask + 1) < xfrm_policy_hashmax &&
647 static inline int xfrm_byidx_should_resize(struct net *net, int total)
649 unsigned int hmask = net->xfrm.policy_idx_hmask;
651 if ((hmask + 1) < xfrm_policy_hashmax &&
658 void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
660 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
661 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
662 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
663 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
664 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
665 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
666 si->spdhcnt = net->xfrm.policy_idx_hmask;
667 si->spdhmcnt = xfrm_policy_hashmax;
669 EXPORT_SYMBOL(xfrm_spd_getinfo);
671 static DEFINE_MUTEX(hash_resize_mutex);
672 static void xfrm_hash_resize(struct work_struct *work)
674 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
677 mutex_lock(&hash_resize_mutex);
680 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
681 if (xfrm_bydst_should_resize(net, dir, &total))
682 xfrm_bydst_resize(net, dir);
684 if (xfrm_byidx_should_resize(net, total))
685 xfrm_byidx_resize(net, total);
687 mutex_unlock(&hash_resize_mutex);
690 /* Make sure *pol can be inserted into fastbin.
691 * Useful to check that later insert requests will be successful
692 * (provided xfrm_policy_lock is held throughout).
694 static struct xfrm_pol_inexact_bin *
695 xfrm_policy_inexact_alloc_bin(const struct xfrm_policy *pol, u8 dir)
697 struct xfrm_pol_inexact_bin *bin, *prev;
698 struct xfrm_pol_inexact_key k = {
699 .family = pol->family,
704 struct net *net = xp_net(pol);
706 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
708 write_pnet(&k.net, net);
709 bin = rhashtable_lookup_fast(&xfrm_policy_inexact_table, &k,
710 xfrm_pol_inexact_params);
714 bin = kzalloc(sizeof(*bin), GFP_ATOMIC);
719 INIT_HLIST_HEAD(&bin->hhead);
720 bin->root_d = RB_ROOT;
721 bin->root_s = RB_ROOT;
722 seqcount_spinlock_init(&bin->count, &net->xfrm.xfrm_policy_lock);
724 prev = rhashtable_lookup_get_insert_key(&xfrm_policy_inexact_table,
726 xfrm_pol_inexact_params);
728 list_add(&bin->inexact_bins, &net->xfrm.inexact_bins);
734 return IS_ERR(prev) ? NULL : prev;
737 static bool xfrm_pol_inexact_addr_use_any_list(const xfrm_address_t *addr,
738 int family, u8 prefixlen)
740 if (xfrm_addr_any(addr, family))
743 if (family == AF_INET6 && prefixlen < INEXACT_PREFIXLEN_IPV6)
746 if (family == AF_INET && prefixlen < INEXACT_PREFIXLEN_IPV4)
753 xfrm_policy_inexact_insert_use_any_list(const struct xfrm_policy *policy)
755 const xfrm_address_t *addr;
756 bool saddr_any, daddr_any;
759 addr = &policy->selector.saddr;
760 prefixlen = policy->selector.prefixlen_s;
762 saddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
765 addr = &policy->selector.daddr;
766 prefixlen = policy->selector.prefixlen_d;
767 daddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
770 return saddr_any && daddr_any;
773 static void xfrm_pol_inexact_node_init(struct xfrm_pol_inexact_node *node,
774 const xfrm_address_t *addr, u8 prefixlen)
777 node->prefixlen = prefixlen;
780 static struct xfrm_pol_inexact_node *
781 xfrm_pol_inexact_node_alloc(const xfrm_address_t *addr, u8 prefixlen)
783 struct xfrm_pol_inexact_node *node;
785 node = kzalloc(sizeof(*node), GFP_ATOMIC);
787 xfrm_pol_inexact_node_init(node, addr, prefixlen);
792 static int xfrm_policy_addr_delta(const xfrm_address_t *a,
793 const xfrm_address_t *b,
794 u8 prefixlen, u16 family)
797 unsigned int pdw, pbi;
804 mask = ~0U << (32 - prefixlen);
805 ma = ntohl(a->a4) & mask;
806 mb = ntohl(b->a4) & mask;
813 pdw = prefixlen >> 5;
814 pbi = prefixlen & 0x1f;
817 delta = memcmp(a->a6, b->a6, pdw << 2);
822 mask = ~0U << (32 - pbi);
823 ma = ntohl(a->a6[pdw]) & mask;
824 mb = ntohl(b->a6[pdw]) & mask;
838 static void xfrm_policy_inexact_list_reinsert(struct net *net,
839 struct xfrm_pol_inexact_node *n,
842 unsigned int matched_s, matched_d;
843 struct xfrm_policy *policy, *p;
848 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
849 struct hlist_node *newpos = NULL;
850 bool matches_s, matches_d;
852 if (!policy->bydst_reinsert)
855 WARN_ON_ONCE(policy->family != family);
857 policy->bydst_reinsert = false;
858 hlist_for_each_entry(p, &n->hhead, bydst) {
859 if (policy->priority > p->priority)
861 else if (policy->priority == p->priority &&
862 policy->pos > p->pos)
869 hlist_add_behind_rcu(&policy->bydst, newpos);
871 hlist_add_head_rcu(&policy->bydst, &n->hhead);
873 /* paranoia checks follow.
874 * Check that the reinserted policy matches at least
875 * saddr or daddr for current node prefix.
877 * Matching both is fine, matching saddr in one policy
878 * (but not daddr) and then matching only daddr in another
881 matches_s = xfrm_policy_addr_delta(&policy->selector.saddr,
885 matches_d = xfrm_policy_addr_delta(&policy->selector.daddr,
889 if (matches_s && matches_d)
892 WARN_ON_ONCE(!matches_s && !matches_d);
897 WARN_ON_ONCE(matched_s && matched_d);
901 static void xfrm_policy_inexact_node_reinsert(struct net *net,
902 struct xfrm_pol_inexact_node *n,
906 struct xfrm_pol_inexact_node *node;
907 struct rb_node **p, *parent;
909 /* we should not have another subtree here */
910 WARN_ON_ONCE(!RB_EMPTY_ROOT(&n->root));
919 node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
921 prefixlen = min(node->prefixlen, n->prefixlen);
923 delta = xfrm_policy_addr_delta(&n->addr, &node->addr,
926 p = &parent->rb_left;
927 } else if (delta > 0) {
928 p = &parent->rb_right;
930 bool same_prefixlen = node->prefixlen == n->prefixlen;
931 struct xfrm_policy *tmp;
933 hlist_for_each_entry(tmp, &n->hhead, bydst) {
934 tmp->bydst_reinsert = true;
935 hlist_del_rcu(&tmp->bydst);
938 node->prefixlen = prefixlen;
940 xfrm_policy_inexact_list_reinsert(net, node, family);
942 if (same_prefixlen) {
954 rb_link_node_rcu(&n->node, parent, p);
955 rb_insert_color(&n->node, new);
958 /* merge nodes v and n */
959 static void xfrm_policy_inexact_node_merge(struct net *net,
960 struct xfrm_pol_inexact_node *v,
961 struct xfrm_pol_inexact_node *n,
964 struct xfrm_pol_inexact_node *node;
965 struct xfrm_policy *tmp;
966 struct rb_node *rnode;
968 /* To-be-merged node v has a subtree.
970 * Dismantle it and insert its nodes to n->root.
972 while ((rnode = rb_first(&v->root)) != NULL) {
973 node = rb_entry(rnode, struct xfrm_pol_inexact_node, node);
974 rb_erase(&node->node, &v->root);
975 xfrm_policy_inexact_node_reinsert(net, node, &n->root,
979 hlist_for_each_entry(tmp, &v->hhead, bydst) {
980 tmp->bydst_reinsert = true;
981 hlist_del_rcu(&tmp->bydst);
984 xfrm_policy_inexact_list_reinsert(net, n, family);
987 static struct xfrm_pol_inexact_node *
988 xfrm_policy_inexact_insert_node(struct net *net,
989 struct rb_root *root,
990 xfrm_address_t *addr,
991 u16 family, u8 prefixlen, u8 dir)
993 struct xfrm_pol_inexact_node *cached = NULL;
994 struct rb_node **p, *parent = NULL;
995 struct xfrm_pol_inexact_node *node;
1002 node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
1004 delta = xfrm_policy_addr_delta(addr, &node->addr,
1007 if (delta == 0 && prefixlen >= node->prefixlen) {
1008 WARN_ON_ONCE(cached); /* ipsec policies got lost */
1013 p = &parent->rb_left;
1015 p = &parent->rb_right;
1017 if (prefixlen < node->prefixlen) {
1018 delta = xfrm_policy_addr_delta(addr, &node->addr,
1024 /* This node is a subnet of the new prefix. It needs
1025 * to be removed and re-inserted with the smaller
1026 * prefix and all nodes that are now also covered
1027 * by the reduced prefixlen.
1029 rb_erase(&node->node, root);
1032 xfrm_pol_inexact_node_init(node, addr,
1036 /* This node also falls within the new
1037 * prefixlen. Merge the to-be-reinserted
1038 * node and this one.
1040 xfrm_policy_inexact_node_merge(net, node,
1042 kfree_rcu(node, rcu);
1053 node = xfrm_pol_inexact_node_alloc(addr, prefixlen);
1058 rb_link_node_rcu(&node->node, parent, p);
1059 rb_insert_color(&node->node, root);
1064 static void xfrm_policy_inexact_gc_tree(struct rb_root *r, bool rm)
1066 struct xfrm_pol_inexact_node *node;
1067 struct rb_node *rn = rb_first(r);
1070 node = rb_entry(rn, struct xfrm_pol_inexact_node, node);
1072 xfrm_policy_inexact_gc_tree(&node->root, rm);
1075 if (!hlist_empty(&node->hhead) || !RB_EMPTY_ROOT(&node->root)) {
1080 rb_erase(&node->node, r);
1081 kfree_rcu(node, rcu);
1085 static void __xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b, bool net_exit)
1087 write_seqcount_begin(&b->count);
1088 xfrm_policy_inexact_gc_tree(&b->root_d, net_exit);
1089 xfrm_policy_inexact_gc_tree(&b->root_s, net_exit);
1090 write_seqcount_end(&b->count);
1092 if (!RB_EMPTY_ROOT(&b->root_d) || !RB_EMPTY_ROOT(&b->root_s) ||
1093 !hlist_empty(&b->hhead)) {
1094 WARN_ON_ONCE(net_exit);
1098 if (rhashtable_remove_fast(&xfrm_policy_inexact_table, &b->head,
1099 xfrm_pol_inexact_params) == 0) {
1100 list_del(&b->inexact_bins);
1105 static void xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b)
1107 struct net *net = read_pnet(&b->k.net);
1109 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1110 __xfrm_policy_inexact_prune_bin(b, false);
1111 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1114 static void __xfrm_policy_inexact_flush(struct net *net)
1116 struct xfrm_pol_inexact_bin *bin, *t;
1118 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1120 list_for_each_entry_safe(bin, t, &net->xfrm.inexact_bins, inexact_bins)
1121 __xfrm_policy_inexact_prune_bin(bin, false);
1124 static struct hlist_head *
1125 xfrm_policy_inexact_alloc_chain(struct xfrm_pol_inexact_bin *bin,
1126 struct xfrm_policy *policy, u8 dir)
1128 struct xfrm_pol_inexact_node *n;
1131 net = xp_net(policy);
1132 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1134 if (xfrm_policy_inexact_insert_use_any_list(policy))
1137 if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.daddr,
1139 policy->selector.prefixlen_d)) {
1140 write_seqcount_begin(&bin->count);
1141 n = xfrm_policy_inexact_insert_node(net,
1143 &policy->selector.saddr,
1145 policy->selector.prefixlen_s,
1147 write_seqcount_end(&bin->count);
1154 /* daddr is fixed */
1155 write_seqcount_begin(&bin->count);
1156 n = xfrm_policy_inexact_insert_node(net,
1158 &policy->selector.daddr,
1160 policy->selector.prefixlen_d, dir);
1161 write_seqcount_end(&bin->count);
1165 /* saddr is wildcard */
1166 if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.saddr,
1168 policy->selector.prefixlen_s))
1171 write_seqcount_begin(&bin->count);
1172 n = xfrm_policy_inexact_insert_node(net,
1174 &policy->selector.saddr,
1176 policy->selector.prefixlen_s, dir);
1177 write_seqcount_end(&bin->count);
1184 static struct xfrm_policy *
1185 xfrm_policy_inexact_insert(struct xfrm_policy *policy, u8 dir, int excl)
1187 struct xfrm_pol_inexact_bin *bin;
1188 struct xfrm_policy *delpol;
1189 struct hlist_head *chain;
1192 bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1194 return ERR_PTR(-ENOMEM);
1196 net = xp_net(policy);
1197 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1199 chain = xfrm_policy_inexact_alloc_chain(bin, policy, dir);
1201 __xfrm_policy_inexact_prune_bin(bin, false);
1202 return ERR_PTR(-ENOMEM);
1205 delpol = xfrm_policy_insert_list(chain, policy, excl);
1206 if (delpol && excl) {
1207 __xfrm_policy_inexact_prune_bin(bin, false);
1208 return ERR_PTR(-EEXIST);
1211 chain = &net->xfrm.policy_inexact[dir];
1212 xfrm_policy_insert_inexact_list(chain, policy);
1215 __xfrm_policy_inexact_prune_bin(bin, false);
1220 static void xfrm_hash_rebuild(struct work_struct *work)
1222 struct net *net = container_of(work, struct net,
1223 xfrm.policy_hthresh.work);
1225 struct xfrm_policy *pol;
1226 struct xfrm_policy *policy;
1227 struct hlist_head *chain;
1228 struct hlist_head *odst;
1229 struct hlist_node *newpos;
1233 u8 lbits4, rbits4, lbits6, rbits6;
1235 mutex_lock(&hash_resize_mutex);
1237 /* read selector prefixlen thresholds */
1239 seq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1241 lbits4 = net->xfrm.policy_hthresh.lbits4;
1242 rbits4 = net->xfrm.policy_hthresh.rbits4;
1243 lbits6 = net->xfrm.policy_hthresh.lbits6;
1244 rbits6 = net->xfrm.policy_hthresh.rbits6;
1245 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, seq));
1247 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1248 write_seqcount_begin(&xfrm_policy_hash_generation);
1250 /* make sure that we can insert the indirect policies again before
1251 * we start with destructive action.
1253 list_for_each_entry(policy, &net->xfrm.policy_all, walk.all) {
1254 struct xfrm_pol_inexact_bin *bin;
1257 dir = xfrm_policy_id2dir(policy->index);
1258 if (policy->walk.dead || dir >= XFRM_POLICY_MAX)
1261 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1262 if (policy->family == AF_INET) {
1270 if (policy->family == AF_INET) {
1279 if (policy->selector.prefixlen_d < dbits ||
1280 policy->selector.prefixlen_s < sbits)
1283 bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1287 if (!xfrm_policy_inexact_alloc_chain(bin, policy, dir))
1291 /* reset the bydst and inexact table in all directions */
1292 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
1293 struct hlist_node *n;
1295 hlist_for_each_entry_safe(policy, n,
1296 &net->xfrm.policy_inexact[dir],
1297 bydst_inexact_list) {
1298 hlist_del_rcu(&policy->bydst);
1299 hlist_del_init(&policy->bydst_inexact_list);
1302 hmask = net->xfrm.policy_bydst[dir].hmask;
1303 odst = net->xfrm.policy_bydst[dir].table;
1304 for (i = hmask; i >= 0; i--) {
1305 hlist_for_each_entry_safe(policy, n, odst + i, bydst)
1306 hlist_del_rcu(&policy->bydst);
1308 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1309 /* dir out => dst = remote, src = local */
1310 net->xfrm.policy_bydst[dir].dbits4 = rbits4;
1311 net->xfrm.policy_bydst[dir].sbits4 = lbits4;
1312 net->xfrm.policy_bydst[dir].dbits6 = rbits6;
1313 net->xfrm.policy_bydst[dir].sbits6 = lbits6;
1315 /* dir in/fwd => dst = local, src = remote */
1316 net->xfrm.policy_bydst[dir].dbits4 = lbits4;
1317 net->xfrm.policy_bydst[dir].sbits4 = rbits4;
1318 net->xfrm.policy_bydst[dir].dbits6 = lbits6;
1319 net->xfrm.policy_bydst[dir].sbits6 = rbits6;
1323 /* re-insert all policies by order of creation */
1324 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
1325 if (policy->walk.dead)
1327 dir = xfrm_policy_id2dir(policy->index);
1328 if (dir >= XFRM_POLICY_MAX) {
1329 /* skip socket policies */
1333 chain = policy_hash_bysel(net, &policy->selector,
1334 policy->family, dir);
1337 void *p = xfrm_policy_inexact_insert(policy, dir, 0);
1339 WARN_ONCE(IS_ERR(p), "reinsert: %ld\n", PTR_ERR(p));
1343 hlist_for_each_entry(pol, chain, bydst) {
1344 if (policy->priority >= pol->priority)
1345 newpos = &pol->bydst;
1350 hlist_add_behind_rcu(&policy->bydst, newpos);
1352 hlist_add_head_rcu(&policy->bydst, chain);
1356 __xfrm_policy_inexact_flush(net);
1357 write_seqcount_end(&xfrm_policy_hash_generation);
1358 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1360 mutex_unlock(&hash_resize_mutex);
1363 void xfrm_policy_hash_rebuild(struct net *net)
1365 schedule_work(&net->xfrm.policy_hthresh.work);
1367 EXPORT_SYMBOL(xfrm_policy_hash_rebuild);
1369 /* Generate new index... KAME seems to generate them ordered by cost
1370 * of an absolute inpredictability of ordering of rules. This will not pass. */
1371 static u32 xfrm_gen_index(struct net *net, int dir, u32 index)
1373 static u32 idx_generator;
1376 struct hlist_head *list;
1377 struct xfrm_policy *p;
1382 idx = (idx_generator | dir);
1391 list = net->xfrm.policy_byidx + idx_hash(net, idx);
1393 hlist_for_each_entry(p, list, byidx) {
1394 if (p->index == idx) {
1404 static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
1406 u32 *p1 = (u32 *) s1;
1407 u32 *p2 = (u32 *) s2;
1408 int len = sizeof(struct xfrm_selector) / sizeof(u32);
1411 for (i = 0; i < len; i++) {
1419 static void xfrm_policy_requeue(struct xfrm_policy *old,
1420 struct xfrm_policy *new)
1422 struct xfrm_policy_queue *pq = &old->polq;
1423 struct sk_buff_head list;
1425 if (skb_queue_empty(&pq->hold_queue))
1428 __skb_queue_head_init(&list);
1430 spin_lock_bh(&pq->hold_queue.lock);
1431 skb_queue_splice_init(&pq->hold_queue, &list);
1432 if (del_timer(&pq->hold_timer))
1434 spin_unlock_bh(&pq->hold_queue.lock);
1438 spin_lock_bh(&pq->hold_queue.lock);
1439 skb_queue_splice(&list, &pq->hold_queue);
1440 pq->timeout = XFRM_QUEUE_TMO_MIN;
1441 if (!mod_timer(&pq->hold_timer, jiffies))
1443 spin_unlock_bh(&pq->hold_queue.lock);
1446 static inline bool xfrm_policy_mark_match(const struct xfrm_mark *mark,
1447 struct xfrm_policy *pol)
1449 return mark->v == pol->mark.v && mark->m == pol->mark.m;
1452 static u32 xfrm_pol_bin_key(const void *data, u32 len, u32 seed)
1454 const struct xfrm_pol_inexact_key *k = data;
1455 u32 a = k->type << 24 | k->dir << 16 | k->family;
1457 return jhash_3words(a, k->if_id, net_hash_mix(read_pnet(&k->net)),
1461 static u32 xfrm_pol_bin_obj(const void *data, u32 len, u32 seed)
1463 const struct xfrm_pol_inexact_bin *b = data;
1465 return xfrm_pol_bin_key(&b->k, 0, seed);
1468 static int xfrm_pol_bin_cmp(struct rhashtable_compare_arg *arg,
1471 const struct xfrm_pol_inexact_key *key = arg->key;
1472 const struct xfrm_pol_inexact_bin *b = ptr;
1475 if (!net_eq(read_pnet(&b->k.net), read_pnet(&key->net)))
1478 ret = b->k.dir ^ key->dir;
1482 ret = b->k.type ^ key->type;
1486 ret = b->k.family ^ key->family;
1490 return b->k.if_id ^ key->if_id;
1493 static const struct rhashtable_params xfrm_pol_inexact_params = {
1494 .head_offset = offsetof(struct xfrm_pol_inexact_bin, head),
1495 .hashfn = xfrm_pol_bin_key,
1496 .obj_hashfn = xfrm_pol_bin_obj,
1497 .obj_cmpfn = xfrm_pol_bin_cmp,
1498 .automatic_shrinking = true,
1501 static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
1502 struct xfrm_policy *policy)
1504 struct xfrm_policy *pol, *delpol = NULL;
1505 struct hlist_node *newpos = NULL;
1508 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1509 if (pol->type == policy->type &&
1510 pol->if_id == policy->if_id &&
1511 !selector_cmp(&pol->selector, &policy->selector) &&
1512 xfrm_policy_mark_match(&policy->mark, pol) &&
1513 xfrm_sec_ctx_match(pol->security, policy->security) &&
1516 if (policy->priority > pol->priority)
1518 } else if (policy->priority >= pol->priority) {
1519 newpos = &pol->bydst_inexact_list;
1527 hlist_add_behind_rcu(&policy->bydst_inexact_list, newpos);
1529 hlist_add_head_rcu(&policy->bydst_inexact_list, chain);
1531 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1537 static struct xfrm_policy *xfrm_policy_insert_list(struct hlist_head *chain,
1538 struct xfrm_policy *policy,
1541 struct xfrm_policy *pol, *newpos = NULL, *delpol = NULL;
1543 hlist_for_each_entry(pol, chain, bydst) {
1544 if (pol->type == policy->type &&
1545 pol->if_id == policy->if_id &&
1546 !selector_cmp(&pol->selector, &policy->selector) &&
1547 xfrm_policy_mark_match(&policy->mark, pol) &&
1548 xfrm_sec_ctx_match(pol->security, policy->security) &&
1551 return ERR_PTR(-EEXIST);
1553 if (policy->priority > pol->priority)
1555 } else if (policy->priority >= pol->priority) {
1564 hlist_add_behind_rcu(&policy->bydst, &newpos->bydst);
1566 hlist_add_head_rcu(&policy->bydst, chain);
1571 int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
1573 struct net *net = xp_net(policy);
1574 struct xfrm_policy *delpol;
1575 struct hlist_head *chain;
1577 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1578 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
1580 delpol = xfrm_policy_insert_list(chain, policy, excl);
1582 delpol = xfrm_policy_inexact_insert(policy, dir, excl);
1584 if (IS_ERR(delpol)) {
1585 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1586 return PTR_ERR(delpol);
1589 __xfrm_policy_link(policy, dir);
1591 /* After previous checking, family can either be AF_INET or AF_INET6 */
1592 if (policy->family == AF_INET)
1593 rt_genid_bump_ipv4(net);
1595 rt_genid_bump_ipv6(net);
1598 xfrm_policy_requeue(delpol, policy);
1599 __xfrm_policy_unlink(delpol, dir);
1601 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir, policy->index);
1602 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
1603 policy->curlft.add_time = ktime_get_real_seconds();
1604 policy->curlft.use_time = 0;
1605 if (!mod_timer(&policy->timer, jiffies + HZ))
1606 xfrm_pol_hold(policy);
1607 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1610 xfrm_policy_kill(delpol);
1611 else if (xfrm_bydst_should_resize(net, dir, NULL))
1612 schedule_work(&net->xfrm.policy_hash_work);
1616 EXPORT_SYMBOL(xfrm_policy_insert);
1618 static struct xfrm_policy *
1619 __xfrm_policy_bysel_ctx(struct hlist_head *chain, const struct xfrm_mark *mark,
1620 u32 if_id, u8 type, int dir, struct xfrm_selector *sel,
1621 struct xfrm_sec_ctx *ctx)
1623 struct xfrm_policy *pol;
1628 hlist_for_each_entry(pol, chain, bydst) {
1629 if (pol->type == type &&
1630 pol->if_id == if_id &&
1631 xfrm_policy_mark_match(mark, pol) &&
1632 !selector_cmp(sel, &pol->selector) &&
1633 xfrm_sec_ctx_match(ctx, pol->security))
1640 struct xfrm_policy *
1641 xfrm_policy_bysel_ctx(struct net *net, const struct xfrm_mark *mark, u32 if_id,
1642 u8 type, int dir, struct xfrm_selector *sel,
1643 struct xfrm_sec_ctx *ctx, int delete, int *err)
1645 struct xfrm_pol_inexact_bin *bin = NULL;
1646 struct xfrm_policy *pol, *ret = NULL;
1647 struct hlist_head *chain;
1650 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1651 chain = policy_hash_bysel(net, sel, sel->family, dir);
1653 struct xfrm_pol_inexact_candidates cand;
1656 bin = xfrm_policy_inexact_lookup(net, type,
1657 sel->family, dir, if_id);
1659 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1663 if (!xfrm_policy_find_inexact_candidates(&cand, bin,
1666 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1671 for (i = 0; i < ARRAY_SIZE(cand.res); i++) {
1672 struct xfrm_policy *tmp;
1674 tmp = __xfrm_policy_bysel_ctx(cand.res[i], mark,
1680 if (!pol || tmp->pos < pol->pos)
1684 pol = __xfrm_policy_bysel_ctx(chain, mark, if_id, type, dir,
1691 *err = security_xfrm_policy_delete(pol->security);
1693 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1696 __xfrm_policy_unlink(pol, dir);
1700 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1703 xfrm_policy_kill(ret);
1705 xfrm_policy_inexact_prune_bin(bin);
1708 EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
1710 struct xfrm_policy *
1711 xfrm_policy_byid(struct net *net, const struct xfrm_mark *mark, u32 if_id,
1712 u8 type, int dir, u32 id, int delete, int *err)
1714 struct xfrm_policy *pol, *ret;
1715 struct hlist_head *chain;
1718 if (xfrm_policy_id2dir(id) != dir)
1722 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1723 chain = net->xfrm.policy_byidx + idx_hash(net, id);
1725 hlist_for_each_entry(pol, chain, byidx) {
1726 if (pol->type == type && pol->index == id &&
1727 pol->if_id == if_id && xfrm_policy_mark_match(mark, pol)) {
1730 *err = security_xfrm_policy_delete(
1733 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1736 __xfrm_policy_unlink(pol, dir);
1742 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1745 xfrm_policy_kill(ret);
1748 EXPORT_SYMBOL(xfrm_policy_byid);
1750 #ifdef CONFIG_SECURITY_NETWORK_XFRM
1752 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
1754 struct xfrm_policy *pol;
1757 list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1758 if (pol->walk.dead ||
1759 xfrm_policy_id2dir(pol->index) >= XFRM_POLICY_MAX ||
1763 err = security_xfrm_policy_delete(pol->security);
1765 xfrm_audit_policy_delete(pol, 0, task_valid);
1773 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
1779 int xfrm_policy_flush(struct net *net, u8 type, bool task_valid)
1781 int dir, err = 0, cnt = 0;
1782 struct xfrm_policy *pol;
1784 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1786 err = xfrm_policy_flush_secctx_check(net, type, task_valid);
1791 list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1792 dir = xfrm_policy_id2dir(pol->index);
1793 if (pol->walk.dead ||
1794 dir >= XFRM_POLICY_MAX ||
1798 __xfrm_policy_unlink(pol, dir);
1799 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1801 xfrm_audit_policy_delete(pol, 1, task_valid);
1802 xfrm_policy_kill(pol);
1803 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1807 __xfrm_policy_inexact_flush(net);
1811 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1814 EXPORT_SYMBOL(xfrm_policy_flush);
1816 int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
1817 int (*func)(struct xfrm_policy *, int, int, void*),
1820 struct xfrm_policy *pol;
1821 struct xfrm_policy_walk_entry *x;
1824 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
1825 walk->type != XFRM_POLICY_TYPE_ANY)
1828 if (list_empty(&walk->walk.all) && walk->seq != 0)
1831 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1832 if (list_empty(&walk->walk.all))
1833 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
1835 x = list_first_entry(&walk->walk.all,
1836 struct xfrm_policy_walk_entry, all);
1838 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
1841 pol = container_of(x, struct xfrm_policy, walk);
1842 if (walk->type != XFRM_POLICY_TYPE_ANY &&
1843 walk->type != pol->type)
1845 error = func(pol, xfrm_policy_id2dir(pol->index),
1848 list_move_tail(&walk->walk.all, &x->all);
1853 if (walk->seq == 0) {
1857 list_del_init(&walk->walk.all);
1859 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1862 EXPORT_SYMBOL(xfrm_policy_walk);
1864 void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
1866 INIT_LIST_HEAD(&walk->walk.all);
1867 walk->walk.dead = 1;
1871 EXPORT_SYMBOL(xfrm_policy_walk_init);
1873 void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net)
1875 if (list_empty(&walk->walk.all))
1878 spin_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME where is net? */
1879 list_del(&walk->walk.all);
1880 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1882 EXPORT_SYMBOL(xfrm_policy_walk_done);
1885 * Find policy to apply to this flow.
1887 * Returns 0 if policy found, else an -errno.
1889 static int xfrm_policy_match(const struct xfrm_policy *pol,
1890 const struct flowi *fl,
1891 u8 type, u16 family, int dir, u32 if_id)
1893 const struct xfrm_selector *sel = &pol->selector;
1897 if (pol->family != family ||
1898 pol->if_id != if_id ||
1899 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
1903 match = xfrm_selector_match(sel, fl, family);
1905 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
1910 static struct xfrm_pol_inexact_node *
1911 xfrm_policy_lookup_inexact_addr(const struct rb_root *r,
1912 seqcount_spinlock_t *count,
1913 const xfrm_address_t *addr, u16 family)
1915 const struct rb_node *parent;
1919 seq = read_seqcount_begin(count);
1921 parent = rcu_dereference_raw(r->rb_node);
1923 struct xfrm_pol_inexact_node *node;
1926 node = rb_entry(parent, struct xfrm_pol_inexact_node, node);
1928 delta = xfrm_policy_addr_delta(addr, &node->addr,
1929 node->prefixlen, family);
1931 parent = rcu_dereference_raw(parent->rb_left);
1933 } else if (delta > 0) {
1934 parent = rcu_dereference_raw(parent->rb_right);
1941 if (read_seqcount_retry(count, seq))
1948 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
1949 struct xfrm_pol_inexact_bin *b,
1950 const xfrm_address_t *saddr,
1951 const xfrm_address_t *daddr)
1953 struct xfrm_pol_inexact_node *n;
1959 family = b->k.family;
1960 memset(cand, 0, sizeof(*cand));
1961 cand->res[XFRM_POL_CAND_ANY] = &b->hhead;
1963 n = xfrm_policy_lookup_inexact_addr(&b->root_d, &b->count, daddr,
1966 cand->res[XFRM_POL_CAND_DADDR] = &n->hhead;
1967 n = xfrm_policy_lookup_inexact_addr(&n->root, &b->count, saddr,
1970 cand->res[XFRM_POL_CAND_BOTH] = &n->hhead;
1973 n = xfrm_policy_lookup_inexact_addr(&b->root_s, &b->count, saddr,
1976 cand->res[XFRM_POL_CAND_SADDR] = &n->hhead;
1981 static struct xfrm_pol_inexact_bin *
1982 xfrm_policy_inexact_lookup_rcu(struct net *net, u8 type, u16 family,
1985 struct xfrm_pol_inexact_key k = {
1992 write_pnet(&k.net, net);
1994 return rhashtable_lookup(&xfrm_policy_inexact_table, &k,
1995 xfrm_pol_inexact_params);
1998 static struct xfrm_pol_inexact_bin *
1999 xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family,
2002 struct xfrm_pol_inexact_bin *bin;
2004 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
2007 bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
2013 static struct xfrm_policy *
2014 __xfrm_policy_eval_candidates(struct hlist_head *chain,
2015 struct xfrm_policy *prefer,
2016 const struct flowi *fl,
2017 u8 type, u16 family, int dir, u32 if_id)
2019 u32 priority = prefer ? prefer->priority : ~0u;
2020 struct xfrm_policy *pol;
2025 hlist_for_each_entry_rcu(pol, chain, bydst) {
2028 if (pol->priority > priority)
2031 err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
2034 return ERR_PTR(err);
2040 /* matches. Is it older than *prefer? */
2041 if (pol->priority == priority &&
2042 prefer->pos < pol->pos)
2052 static struct xfrm_policy *
2053 xfrm_policy_eval_candidates(struct xfrm_pol_inexact_candidates *cand,
2054 struct xfrm_policy *prefer,
2055 const struct flowi *fl,
2056 u8 type, u16 family, int dir, u32 if_id)
2058 struct xfrm_policy *tmp;
2061 for (i = 0; i < ARRAY_SIZE(cand->res); i++) {
2062 tmp = __xfrm_policy_eval_candidates(cand->res[i],
2064 fl, type, family, dir,
2077 static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
2078 const struct flowi *fl,
2082 struct xfrm_pol_inexact_candidates cand;
2083 const xfrm_address_t *daddr, *saddr;
2084 struct xfrm_pol_inexact_bin *bin;
2085 struct xfrm_policy *pol, *ret;
2086 struct hlist_head *chain;
2087 unsigned int sequence;
2090 daddr = xfrm_flowi_daddr(fl, family);
2091 saddr = xfrm_flowi_saddr(fl, family);
2092 if (unlikely(!daddr || !saddr))
2096 sequence = read_seqcount_begin(&xfrm_policy_hash_generation);
2099 chain = policy_hash_direct(net, daddr, saddr, family, dir);
2100 if (read_seqcount_retry(&xfrm_policy_hash_generation, sequence)) {
2106 hlist_for_each_entry_rcu(pol, chain, bydst) {
2107 err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
2120 bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
2121 if (!bin || !xfrm_policy_find_inexact_candidates(&cand, bin, saddr,
2125 pol = xfrm_policy_eval_candidates(&cand, ret, fl, type,
2126 family, dir, if_id);
2134 if (read_seqcount_retry(&xfrm_policy_hash_generation, sequence)) {
2139 if (ret && !xfrm_pol_hold_rcu(ret)) {
2149 static struct xfrm_policy *xfrm_policy_lookup(struct net *net,
2150 const struct flowi *fl,
2151 u16 family, u8 dir, u32 if_id)
2153 #ifdef CONFIG_XFRM_SUB_POLICY
2154 struct xfrm_policy *pol;
2156 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family,
2161 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family,
2165 static struct xfrm_policy *xfrm_sk_policy_lookup(const struct sock *sk, int dir,
2166 const struct flowi *fl,
2167 u16 family, u32 if_id)
2169 struct xfrm_policy *pol;
2173 pol = rcu_dereference(sk->sk_policy[dir]);
2178 if (pol->family != family) {
2183 match = xfrm_selector_match(&pol->selector, fl, family);
2185 if ((sk->sk_mark & pol->mark.m) != pol->mark.v ||
2186 pol->if_id != if_id) {
2190 err = security_xfrm_policy_lookup(pol->security,
2194 if (!xfrm_pol_hold_rcu(pol))
2196 } else if (err == -ESRCH) {
2209 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
2211 struct net *net = xp_net(pol);
2213 list_add(&pol->walk.all, &net->xfrm.policy_all);
2214 net->xfrm.policy_count[dir]++;
2218 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
2221 struct net *net = xp_net(pol);
2223 if (list_empty(&pol->walk.all))
2226 /* Socket policies are not hashed. */
2227 if (!hlist_unhashed(&pol->bydst)) {
2228 hlist_del_rcu(&pol->bydst);
2229 hlist_del_init(&pol->bydst_inexact_list);
2230 hlist_del(&pol->byidx);
2233 list_del_init(&pol->walk.all);
2234 net->xfrm.policy_count[dir]--;
2239 static void xfrm_sk_policy_link(struct xfrm_policy *pol, int dir)
2241 __xfrm_policy_link(pol, XFRM_POLICY_MAX + dir);
2244 static void xfrm_sk_policy_unlink(struct xfrm_policy *pol, int dir)
2246 __xfrm_policy_unlink(pol, XFRM_POLICY_MAX + dir);
2249 int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
2251 struct net *net = xp_net(pol);
2253 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2254 pol = __xfrm_policy_unlink(pol, dir);
2255 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2257 xfrm_policy_kill(pol);
2262 EXPORT_SYMBOL(xfrm_policy_delete);
2264 int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
2266 struct net *net = sock_net(sk);
2267 struct xfrm_policy *old_pol;
2269 #ifdef CONFIG_XFRM_SUB_POLICY
2270 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
2274 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2275 old_pol = rcu_dereference_protected(sk->sk_policy[dir],
2276 lockdep_is_held(&net->xfrm.xfrm_policy_lock));
2278 pol->curlft.add_time = ktime_get_real_seconds();
2279 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir, 0);
2280 xfrm_sk_policy_link(pol, dir);
2282 rcu_assign_pointer(sk->sk_policy[dir], pol);
2285 xfrm_policy_requeue(old_pol, pol);
2287 /* Unlinking succeeds always. This is the only function
2288 * allowed to delete or replace socket policy.
2290 xfrm_sk_policy_unlink(old_pol, dir);
2292 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2295 xfrm_policy_kill(old_pol);
2300 static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
2302 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
2303 struct net *net = xp_net(old);
2306 newp->selector = old->selector;
2307 if (security_xfrm_policy_clone(old->security,
2310 return NULL; /* ENOMEM */
2312 newp->lft = old->lft;
2313 newp->curlft = old->curlft;
2314 newp->mark = old->mark;
2315 newp->if_id = old->if_id;
2316 newp->action = old->action;
2317 newp->flags = old->flags;
2318 newp->xfrm_nr = old->xfrm_nr;
2319 newp->index = old->index;
2320 newp->type = old->type;
2321 newp->family = old->family;
2322 memcpy(newp->xfrm_vec, old->xfrm_vec,
2323 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
2324 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2325 xfrm_sk_policy_link(newp, dir);
2326 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2332 int __xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk)
2334 const struct xfrm_policy *p;
2335 struct xfrm_policy *np;
2339 for (i = 0; i < 2; i++) {
2340 p = rcu_dereference(osk->sk_policy[i]);
2342 np = clone_policy(p, i);
2343 if (unlikely(!np)) {
2347 rcu_assign_pointer(sk->sk_policy[i], np);
2355 xfrm_get_saddr(struct net *net, int oif, xfrm_address_t *local,
2356 xfrm_address_t *remote, unsigned short family, u32 mark)
2359 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2361 if (unlikely(afinfo == NULL))
2363 err = afinfo->get_saddr(net, oif, local, remote, mark);
2368 /* Resolve list of templates for the flow, given policy. */
2371 xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
2372 struct xfrm_state **xfrm, unsigned short family)
2374 struct net *net = xp_net(policy);
2377 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
2378 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
2381 for (nx = 0, i = 0; i < policy->xfrm_nr; i++) {
2382 struct xfrm_state *x;
2383 xfrm_address_t *remote = daddr;
2384 xfrm_address_t *local = saddr;
2385 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
2387 if (tmpl->mode == XFRM_MODE_TUNNEL ||
2388 tmpl->mode == XFRM_MODE_BEET) {
2389 remote = &tmpl->id.daddr;
2390 local = &tmpl->saddr;
2391 if (xfrm_addr_any(local, tmpl->encap_family)) {
2392 error = xfrm_get_saddr(net, fl->flowi_oif,
2394 tmpl->encap_family, 0);
2401 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error,
2402 family, policy->if_id);
2404 if (x && x->km.state == XFRM_STATE_VALID) {
2411 error = (x->km.state == XFRM_STATE_ERROR ?
2414 } else if (error == -ESRCH) {
2418 if (!tmpl->optional)
2424 for (nx--; nx >= 0; nx--)
2425 xfrm_state_put(xfrm[nx]);
2430 xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
2431 struct xfrm_state **xfrm, unsigned short family)
2433 struct xfrm_state *tp[XFRM_MAX_DEPTH];
2434 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
2440 for (i = 0; i < npols; i++) {
2441 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
2446 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
2454 /* found states are sorted for outbound processing */
2456 xfrm_state_sort(xfrm, tpp, cnx, family);
2461 for (cnx--; cnx >= 0; cnx--)
2462 xfrm_state_put(tpp[cnx]);
2467 static int xfrm_get_tos(const struct flowi *fl, int family)
2469 if (family == AF_INET)
2470 return IPTOS_RT_MASK & fl->u.ip4.flowi4_tos;
2475 static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
2477 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2478 struct dst_ops *dst_ops;
2479 struct xfrm_dst *xdst;
2482 return ERR_PTR(-EINVAL);
2486 dst_ops = &net->xfrm.xfrm4_dst_ops;
2488 #if IS_ENABLED(CONFIG_IPV6)
2490 dst_ops = &net->xfrm.xfrm6_dst_ops;
2496 xdst = dst_alloc(dst_ops, NULL, 1, DST_OBSOLETE_NONE, 0);
2499 struct dst_entry *dst = &xdst->u.dst;
2501 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
2503 xdst = ERR_PTR(-ENOBUFS);
2510 static void xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
2513 if (dst->ops->family == AF_INET6) {
2514 struct rt6_info *rt = (struct rt6_info *)dst;
2515 path->path_cookie = rt6_get_cookie(rt);
2516 path->u.rt6.rt6i_nfheader_len = nfheader_len;
2520 static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
2521 const struct flowi *fl)
2523 const struct xfrm_policy_afinfo *afinfo =
2524 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
2530 err = afinfo->fill_dst(xdst, dev, fl);
2538 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
2539 * all the metrics... Shortly, bundle a bundle.
2542 static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
2543 struct xfrm_state **xfrm,
2544 struct xfrm_dst **bundle,
2546 const struct flowi *fl,
2547 struct dst_entry *dst)
2549 const struct xfrm_state_afinfo *afinfo;
2550 const struct xfrm_mode *inner_mode;
2551 struct net *net = xp_net(policy);
2552 unsigned long now = jiffies;
2553 struct net_device *dev;
2554 struct xfrm_dst *xdst_prev = NULL;
2555 struct xfrm_dst *xdst0 = NULL;
2559 int nfheader_len = 0;
2560 int trailer_len = 0;
2562 int family = policy->selector.family;
2563 xfrm_address_t saddr, daddr;
2565 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
2567 tos = xfrm_get_tos(fl, family);
2571 for (; i < nx; i++) {
2572 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
2573 struct dst_entry *dst1 = &xdst->u.dst;
2575 err = PTR_ERR(xdst);
2585 /* Ref count is taken during xfrm_alloc_dst()
2586 * No need to do dst_clone() on dst1
2588 xfrm_dst_set_child(xdst_prev, &xdst->u.dst);
2590 if (xfrm[i]->sel.family == AF_UNSPEC) {
2591 inner_mode = xfrm_ip2inner_mode(xfrm[i],
2592 xfrm_af2proto(family));
2594 err = -EAFNOSUPPORT;
2599 inner_mode = &xfrm[i]->inner_mode;
2602 dst_copy_metrics(dst1, dst);
2604 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
2607 if (xfrm[i]->props.smark.v || xfrm[i]->props.smark.m)
2608 mark = xfrm_smark_get(fl->flowi_mark, xfrm[i]);
2610 family = xfrm[i]->props.family;
2611 dst = xfrm_dst_lookup(xfrm[i], tos, fl->flowi_oif,
2612 &saddr, &daddr, family, mark);
2619 dst1->xfrm = xfrm[i];
2620 xdst->xfrm_genid = xfrm[i]->genid;
2622 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2623 dst1->lastuse = now;
2625 dst1->input = dst_discard;
2628 afinfo = xfrm_state_afinfo_get_rcu(inner_mode->family);
2630 dst1->output = afinfo->output;
2632 dst1->output = dst_discard_out;
2637 header_len += xfrm[i]->props.header_len;
2638 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
2639 nfheader_len += xfrm[i]->props.header_len;
2640 trailer_len += xfrm[i]->props.trailer_len;
2643 xfrm_dst_set_child(xdst_prev, dst);
2651 xfrm_init_path(xdst0, dst, nfheader_len);
2652 xfrm_init_pmtu(bundle, nx);
2654 for (xdst_prev = xdst0; xdst_prev != (struct xfrm_dst *)dst;
2655 xdst_prev = (struct xfrm_dst *) xfrm_dst_child(&xdst_prev->u.dst)) {
2656 err = xfrm_fill_dst(xdst_prev, dev, fl);
2660 xdst_prev->u.dst.header_len = header_len;
2661 xdst_prev->u.dst.trailer_len = trailer_len;
2662 header_len -= xdst_prev->u.dst.xfrm->props.header_len;
2663 trailer_len -= xdst_prev->u.dst.xfrm->props.trailer_len;
2666 return &xdst0->u.dst;
2670 xfrm_state_put(xfrm[i]);
2673 dst_release_immediate(&xdst0->u.dst);
2675 return ERR_PTR(err);
2678 static int xfrm_expand_policies(const struct flowi *fl, u16 family,
2679 struct xfrm_policy **pols,
2680 int *num_pols, int *num_xfrms)
2684 if (*num_pols == 0 || !pols[0]) {
2689 if (IS_ERR(pols[0]))
2690 return PTR_ERR(pols[0]);
2692 *num_xfrms = pols[0]->xfrm_nr;
2694 #ifdef CONFIG_XFRM_SUB_POLICY
2695 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
2696 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
2697 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
2698 XFRM_POLICY_TYPE_MAIN,
2703 if (IS_ERR(pols[1])) {
2704 xfrm_pols_put(pols, *num_pols);
2705 return PTR_ERR(pols[1]);
2708 (*num_xfrms) += pols[1]->xfrm_nr;
2712 for (i = 0; i < *num_pols; i++) {
2713 if (pols[i]->action != XFRM_POLICY_ALLOW) {
2723 static struct xfrm_dst *
2724 xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
2725 const struct flowi *fl, u16 family,
2726 struct dst_entry *dst_orig)
2728 struct net *net = xp_net(pols[0]);
2729 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
2730 struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
2731 struct xfrm_dst *xdst;
2732 struct dst_entry *dst;
2735 /* Try to instantiate a bundle */
2736 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
2742 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2743 return ERR_PTR(err);
2746 dst = xfrm_bundle_create(pols[0], xfrm, bundle, err, fl, dst_orig);
2748 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
2749 return ERR_CAST(dst);
2752 xdst = (struct xfrm_dst *)dst;
2753 xdst->num_xfrms = err;
2754 xdst->num_pols = num_pols;
2755 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
2756 xdst->policy_genid = atomic_read(&pols[0]->genid);
2761 static void xfrm_policy_queue_process(struct timer_list *t)
2763 struct sk_buff *skb;
2765 struct dst_entry *dst;
2766 struct xfrm_policy *pol = from_timer(pol, t, polq.hold_timer);
2767 struct net *net = xp_net(pol);
2768 struct xfrm_policy_queue *pq = &pol->polq;
2770 struct sk_buff_head list;
2773 spin_lock(&pq->hold_queue.lock);
2774 skb = skb_peek(&pq->hold_queue);
2776 spin_unlock(&pq->hold_queue.lock);
2782 /* Fixup the mark to support VTI. */
2783 skb_mark = skb->mark;
2784 skb->mark = pol->mark.v;
2785 xfrm_decode_session(skb, &fl, dst->ops->family);
2786 skb->mark = skb_mark;
2787 spin_unlock(&pq->hold_queue.lock);
2789 dst_hold(xfrm_dst_path(dst));
2790 dst = xfrm_lookup(net, xfrm_dst_path(dst), &fl, sk, XFRM_LOOKUP_QUEUE);
2794 if (dst->flags & DST_XFRM_QUEUE) {
2797 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
2800 pq->timeout = pq->timeout << 1;
2801 if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
2808 __skb_queue_head_init(&list);
2810 spin_lock(&pq->hold_queue.lock);
2812 skb_queue_splice_init(&pq->hold_queue, &list);
2813 spin_unlock(&pq->hold_queue.lock);
2815 while (!skb_queue_empty(&list)) {
2816 skb = __skb_dequeue(&list);
2818 /* Fixup the mark to support VTI. */
2819 skb_mark = skb->mark;
2820 skb->mark = pol->mark.v;
2821 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
2822 skb->mark = skb_mark;
2824 dst_hold(xfrm_dst_path(skb_dst(skb)));
2825 dst = xfrm_lookup(net, xfrm_dst_path(skb_dst(skb)), &fl, skb->sk, 0);
2833 skb_dst_set(skb, dst);
2835 dst_output(net, skb->sk, skb);
2844 skb_queue_purge(&pq->hold_queue);
2848 static int xdst_queue_output(struct net *net, struct sock *sk, struct sk_buff *skb)
2850 unsigned long sched_next;
2851 struct dst_entry *dst = skb_dst(skb);
2852 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
2853 struct xfrm_policy *pol = xdst->pols[0];
2854 struct xfrm_policy_queue *pq = &pol->polq;
2856 if (unlikely(skb_fclone_busy(sk, skb))) {
2861 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
2868 spin_lock_bh(&pq->hold_queue.lock);
2871 pq->timeout = XFRM_QUEUE_TMO_MIN;
2873 sched_next = jiffies + pq->timeout;
2875 if (del_timer(&pq->hold_timer)) {
2876 if (time_before(pq->hold_timer.expires, sched_next))
2877 sched_next = pq->hold_timer.expires;
2881 __skb_queue_tail(&pq->hold_queue, skb);
2882 if (!mod_timer(&pq->hold_timer, sched_next))
2885 spin_unlock_bh(&pq->hold_queue.lock);
2890 static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
2891 struct xfrm_flo *xflo,
2892 const struct flowi *fl,
2897 struct net_device *dev;
2898 struct dst_entry *dst;
2899 struct dst_entry *dst1;
2900 struct xfrm_dst *xdst;
2902 xdst = xfrm_alloc_dst(net, family);
2906 if (!(xflo->flags & XFRM_LOOKUP_QUEUE) ||
2907 net->xfrm.sysctl_larval_drop ||
2911 dst = xflo->dst_orig;
2912 dst1 = &xdst->u.dst;
2916 dst_copy_metrics(dst1, dst);
2918 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2919 dst1->flags |= DST_XFRM_QUEUE;
2920 dst1->lastuse = jiffies;
2922 dst1->input = dst_discard;
2923 dst1->output = xdst_queue_output;
2926 xfrm_dst_set_child(xdst, dst);
2929 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
2936 err = xfrm_fill_dst(xdst, dev, fl);
2945 xdst = ERR_PTR(err);
2949 static struct xfrm_dst *xfrm_bundle_lookup(struct net *net,
2950 const struct flowi *fl,
2952 struct xfrm_flo *xflo, u32 if_id)
2954 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2955 int num_pols = 0, num_xfrms = 0, err;
2956 struct xfrm_dst *xdst;
2958 /* Resolve policies to use if we couldn't get them from
2959 * previous cache entry */
2961 pols[0] = xfrm_policy_lookup(net, fl, family, dir, if_id);
2962 err = xfrm_expand_policies(fl, family, pols,
2963 &num_pols, &num_xfrms);
2969 goto make_dummy_bundle;
2971 xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family,
2974 err = PTR_ERR(xdst);
2975 if (err == -EREMOTE) {
2976 xfrm_pols_put(pols, num_pols);
2982 goto make_dummy_bundle;
2983 } else if (xdst == NULL) {
2985 goto make_dummy_bundle;
2991 /* We found policies, but there's no bundles to instantiate:
2992 * either because the policy blocks, has no transformations or
2993 * we could not build template (no xfrm_states).*/
2994 xdst = xfrm_create_dummy_bundle(net, xflo, fl, num_xfrms, family);
2996 xfrm_pols_put(pols, num_pols);
2997 return ERR_CAST(xdst);
2999 xdst->num_pols = num_pols;
3000 xdst->num_xfrms = num_xfrms;
3001 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
3006 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
3008 xfrm_pols_put(pols, num_pols);
3009 return ERR_PTR(err);
3012 static struct dst_entry *make_blackhole(struct net *net, u16 family,
3013 struct dst_entry *dst_orig)
3015 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
3016 struct dst_entry *ret;
3019 dst_release(dst_orig);
3020 return ERR_PTR(-EINVAL);
3022 ret = afinfo->blackhole_route(net, dst_orig);
3029 /* Finds/creates a bundle for given flow and if_id
3031 * At the moment we eat a raw IP route. Mostly to speed up lookups
3032 * on interfaces with disabled IPsec.
3034 * xfrm_lookup uses an if_id of 0 by default, and is provided for
3037 struct dst_entry *xfrm_lookup_with_ifid(struct net *net,
3038 struct dst_entry *dst_orig,
3039 const struct flowi *fl,
3040 const struct sock *sk,
3041 int flags, u32 if_id)
3043 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3044 struct xfrm_dst *xdst;
3045 struct dst_entry *dst, *route;
3046 u16 family = dst_orig->ops->family;
3047 u8 dir = XFRM_POLICY_OUT;
3048 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
3054 sk = sk_const_to_full_sk(sk);
3055 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
3057 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, family,
3059 err = xfrm_expand_policies(fl, family, pols,
3060 &num_pols, &num_xfrms);
3065 if (num_xfrms <= 0) {
3066 drop_pols = num_pols;
3070 xdst = xfrm_resolve_and_create_bundle(
3075 xfrm_pols_put(pols, num_pols);
3076 err = PTR_ERR(xdst);
3077 if (err == -EREMOTE)
3081 } else if (xdst == NULL) {
3083 drop_pols = num_pols;
3087 route = xdst->route;
3092 struct xfrm_flo xflo;
3094 xflo.dst_orig = dst_orig;
3097 /* To accelerate a bit... */
3098 if (!if_id && ((dst_orig->flags & DST_NOXFRM) ||
3099 !net->xfrm.policy_count[XFRM_POLICY_OUT]))
3102 xdst = xfrm_bundle_lookup(net, fl, family, dir, &xflo, if_id);
3106 err = PTR_ERR(xdst);
3110 num_pols = xdst->num_pols;
3111 num_xfrms = xdst->num_xfrms;
3112 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
3113 route = xdst->route;
3117 if (route == NULL && num_xfrms > 0) {
3118 /* The only case when xfrm_bundle_lookup() returns a
3119 * bundle with null route, is when the template could
3120 * not be resolved. It means policies are there, but
3121 * bundle could not be created, since we don't yet
3122 * have the xfrm_state's. We need to wait for KM to
3123 * negotiate new SA's or bail out with error.*/
3124 if (net->xfrm.sysctl_larval_drop) {
3125 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3132 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3140 if ((flags & XFRM_LOOKUP_ICMP) &&
3141 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
3146 for (i = 0; i < num_pols; i++)
3147 pols[i]->curlft.use_time = ktime_get_real_seconds();
3149 if (num_xfrms < 0) {
3150 /* Prohibit the flow */
3151 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
3154 } else if (num_xfrms > 0) {
3155 /* Flow transformed */
3156 dst_release(dst_orig);
3158 /* Flow passes untransformed */
3163 xfrm_pols_put(pols, drop_pols);
3164 if (dst && dst->xfrm &&
3165 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
3166 dst->flags |= DST_XFRM_TUNNEL;
3170 if (!(flags & XFRM_LOOKUP_ICMP)) {
3178 if (!(flags & XFRM_LOOKUP_KEEP_DST_REF))
3179 dst_release(dst_orig);
3180 xfrm_pols_put(pols, drop_pols);
3181 return ERR_PTR(err);
3183 EXPORT_SYMBOL(xfrm_lookup_with_ifid);
3185 /* Main function: finds/creates a bundle for given flow.
3187 * At the moment we eat a raw IP route. Mostly to speed up lookups
3188 * on interfaces with disabled IPsec.
3190 struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
3191 const struct flowi *fl, const struct sock *sk,
3194 return xfrm_lookup_with_ifid(net, dst_orig, fl, sk, flags, 0);
3196 EXPORT_SYMBOL(xfrm_lookup);
3198 /* Callers of xfrm_lookup_route() must ensure a call to dst_output().
3199 * Otherwise we may send out blackholed packets.
3201 struct dst_entry *xfrm_lookup_route(struct net *net, struct dst_entry *dst_orig,
3202 const struct flowi *fl,
3203 const struct sock *sk, int flags)
3205 struct dst_entry *dst = xfrm_lookup(net, dst_orig, fl, sk,
3206 flags | XFRM_LOOKUP_QUEUE |
3207 XFRM_LOOKUP_KEEP_DST_REF);
3209 if (PTR_ERR(dst) == -EREMOTE)
3210 return make_blackhole(net, dst_orig->ops->family, dst_orig);
3213 dst_release(dst_orig);
3217 EXPORT_SYMBOL(xfrm_lookup_route);
3220 xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
3222 struct sec_path *sp = skb_sec_path(skb);
3223 struct xfrm_state *x;
3225 if (!sp || idx < 0 || idx >= sp->len)
3228 if (!x->type->reject)
3230 return x->type->reject(x, skb, fl);
3233 /* When skb is transformed back to its "native" form, we have to
3234 * check policy restrictions. At the moment we make this in maximally
3235 * stupid way. Shame on me. :-) Of course, connected sockets must
3236 * have policy cached at them.
3240 xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
3241 unsigned short family)
3243 if (xfrm_state_kern(x))
3244 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
3245 return x->id.proto == tmpl->id.proto &&
3246 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
3247 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
3248 x->props.mode == tmpl->mode &&
3249 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
3250 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
3251 !(x->props.mode != XFRM_MODE_TRANSPORT &&
3252 xfrm_state_addr_cmp(tmpl, x, family));
3256 * 0 or more than 0 is returned when validation is succeeded (either bypass
3257 * because of optional transport mode, or next index of the matched secpath
3258 * state with the template.
3259 * -1 is returned when no matching template is found.
3260 * Otherwise "-2 - errored_index" is returned.
3263 xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
3264 unsigned short family)
3268 if (tmpl->optional) {
3269 if (tmpl->mode == XFRM_MODE_TRANSPORT)
3273 for (; idx < sp->len; idx++) {
3274 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
3276 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
3286 decode_session4(struct sk_buff *skb, struct flowi *fl, bool reverse)
3288 const struct iphdr *iph = ip_hdr(skb);
3290 u8 *xprth = skb_network_header(skb) + ihl * 4;
3291 struct flowi4 *fl4 = &fl->u.ip4;
3294 if (skb_dst(skb) && skb_dst(skb)->dev)
3295 oif = skb_dst(skb)->dev->ifindex;
3297 memset(fl4, 0, sizeof(struct flowi4));
3298 fl4->flowi4_mark = skb->mark;
3299 fl4->flowi4_oif = reverse ? skb->skb_iif : oif;
3301 fl4->flowi4_proto = iph->protocol;
3302 fl4->daddr = reverse ? iph->saddr : iph->daddr;
3303 fl4->saddr = reverse ? iph->daddr : iph->saddr;
3304 fl4->flowi4_tos = iph->tos;
3306 if (!ip_is_fragment(iph)) {
3307 switch (iph->protocol) {
3309 case IPPROTO_UDPLITE:
3313 if (xprth + 4 < skb->data ||
3314 pskb_may_pull(skb, xprth + 4 - skb->data)) {
3317 xprth = skb_network_header(skb) + ihl * 4;
3318 ports = (__be16 *)xprth;
3320 fl4->fl4_sport = ports[!!reverse];
3321 fl4->fl4_dport = ports[!reverse];
3325 if (xprth + 2 < skb->data ||
3326 pskb_may_pull(skb, xprth + 2 - skb->data)) {
3329 xprth = skb_network_header(skb) + ihl * 4;
3332 fl4->fl4_icmp_type = icmp[0];
3333 fl4->fl4_icmp_code = icmp[1];
3337 if (xprth + 12 < skb->data ||
3338 pskb_may_pull(skb, xprth + 12 - skb->data)) {
3342 xprth = skb_network_header(skb) + ihl * 4;
3343 greflags = (__be16 *)xprth;
3344 gre_hdr = (__be32 *)xprth;
3346 if (greflags[0] & GRE_KEY) {
3347 if (greflags[0] & GRE_CSUM)
3349 fl4->fl4_gre_key = gre_hdr[1];
3359 #if IS_ENABLED(CONFIG_IPV6)
3361 decode_session6(struct sk_buff *skb, struct flowi *fl, bool reverse)
3363 struct flowi6 *fl6 = &fl->u.ip6;
3365 const struct ipv6hdr *hdr = ipv6_hdr(skb);
3366 u32 offset = sizeof(*hdr);
3367 struct ipv6_opt_hdr *exthdr;
3368 const unsigned char *nh = skb_network_header(skb);
3369 u16 nhoff = IP6CB(skb)->nhoff;
3374 nhoff = offsetof(struct ipv6hdr, nexthdr);
3376 nexthdr = nh[nhoff];
3378 if (skb_dst(skb) && skb_dst(skb)->dev)
3379 oif = skb_dst(skb)->dev->ifindex;
3381 memset(fl6, 0, sizeof(struct flowi6));
3382 fl6->flowi6_mark = skb->mark;
3383 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
3385 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
3386 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
3388 while (nh + offset + sizeof(*exthdr) < skb->data ||
3389 pskb_may_pull(skb, nh + offset + sizeof(*exthdr) - skb->data)) {
3390 nh = skb_network_header(skb);
3391 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
3394 case NEXTHDR_FRAGMENT:
3397 case NEXTHDR_ROUTING:
3400 offset += ipv6_optlen(exthdr);
3401 nexthdr = exthdr->nexthdr;
3402 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
3405 case IPPROTO_UDPLITE:
3409 if (!onlyproto && (nh + offset + 4 < skb->data ||
3410 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
3413 nh = skb_network_header(skb);
3414 ports = (__be16 *)(nh + offset);
3415 fl6->fl6_sport = ports[!!reverse];
3416 fl6->fl6_dport = ports[!reverse];
3418 fl6->flowi6_proto = nexthdr;
3420 case IPPROTO_ICMPV6:
3421 if (!onlyproto && (nh + offset + 2 < skb->data ||
3422 pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
3425 nh = skb_network_header(skb);
3426 icmp = (u8 *)(nh + offset);
3427 fl6->fl6_icmp_type = icmp[0];
3428 fl6->fl6_icmp_code = icmp[1];
3430 fl6->flowi6_proto = nexthdr;
3432 #if IS_ENABLED(CONFIG_IPV6_MIP6)
3434 offset += ipv6_optlen(exthdr);
3435 if (!onlyproto && (nh + offset + 3 < skb->data ||
3436 pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
3439 nh = skb_network_header(skb);
3440 mh = (struct ip6_mh *)(nh + offset);
3441 fl6->fl6_mh_type = mh->ip6mh_type;
3443 fl6->flowi6_proto = nexthdr;
3447 fl6->flowi6_proto = nexthdr;
3454 int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
3455 unsigned int family, int reverse)
3459 decode_session4(skb, fl, reverse);
3461 #if IS_ENABLED(CONFIG_IPV6)
3463 decode_session6(skb, fl, reverse);
3467 return -EAFNOSUPPORT;
3470 return security_xfrm_decode_session(skb, &fl->flowi_secid);
3472 EXPORT_SYMBOL(__xfrm_decode_session);
3474 static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
3476 for (; k < sp->len; k++) {
3477 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
3486 int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
3487 unsigned short family)
3489 struct net *net = dev_net(skb->dev);
3490 struct xfrm_policy *pol;
3491 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3498 const struct xfrm_if_cb *ifcb;
3499 struct sec_path *sp;
3504 ifcb = xfrm_if_get_cb();
3507 xi = ifcb->decode_session(skb, family);
3509 if_id = xi->p.if_id;
3515 reverse = dir & ~XFRM_POLICY_MASK;
3516 dir &= XFRM_POLICY_MASK;
3518 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
3519 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
3523 nf_nat_decode_session(skb, &fl, family);
3525 /* First, check used SA against their selectors. */
3526 sp = skb_sec_path(skb);
3530 for (i = sp->len - 1; i >= 0; i--) {
3531 struct xfrm_state *x = sp->xvec[i];
3532 if (!xfrm_selector_match(&x->sel, &fl, family)) {
3533 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
3540 sk = sk_to_full_sk(sk);
3541 if (sk && sk->sk_policy[dir]) {
3542 pol = xfrm_sk_policy_lookup(sk, dir, &fl, family, if_id);
3544 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3550 pol = xfrm_policy_lookup(net, &fl, family, dir, if_id);
3553 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3558 if (sp && secpath_has_nontransport(sp, 0, &xerr_idx)) {
3559 xfrm_secpath_reject(xerr_idx, skb, &fl);
3560 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
3566 pol->curlft.use_time = ktime_get_real_seconds();
3570 #ifdef CONFIG_XFRM_SUB_POLICY
3571 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
3572 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
3574 XFRM_POLICY_IN, if_id);
3576 if (IS_ERR(pols[1])) {
3577 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3580 pols[1]->curlft.use_time = ktime_get_real_seconds();
3586 if (pol->action == XFRM_POLICY_ALLOW) {
3587 static struct sec_path dummy;
3588 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
3589 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
3590 struct xfrm_tmpl **tpp = tp;
3594 sp = skb_sec_path(skb);
3598 for (pi = 0; pi < npols; pi++) {
3599 if (pols[pi] != pol &&
3600 pols[pi]->action != XFRM_POLICY_ALLOW) {
3601 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3604 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
3605 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
3608 for (i = 0; i < pols[pi]->xfrm_nr; i++)
3609 tpp[ti++] = &pols[pi]->xfrm_vec[i];
3613 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
3617 /* For each tunnel xfrm, find the first matching tmpl.
3618 * For each tmpl before that, find corresponding xfrm.
3619 * Order is _important_. Later we will implement
3620 * some barriers, but at the moment barriers
3621 * are implied between each two transformations.
3623 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
3624 k = xfrm_policy_ok(tpp[i], sp, k, family);
3627 /* "-2 - errored_index" returned */
3629 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3634 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
3635 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3639 xfrm_pols_put(pols, npols);
3642 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3645 xfrm_secpath_reject(xerr_idx, skb, &fl);
3647 xfrm_pols_put(pols, npols);
3650 EXPORT_SYMBOL(__xfrm_policy_check);
3652 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
3654 struct net *net = dev_net(skb->dev);
3656 struct dst_entry *dst;
3659 if (xfrm_decode_session(skb, &fl, family) < 0) {
3660 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3665 if (!skb_dst(skb)) {
3666 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3670 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, XFRM_LOOKUP_QUEUE);
3675 skb_dst_set(skb, dst);
3678 EXPORT_SYMBOL(__xfrm_route_forward);
3680 /* Optimize later using cookies and generation ids. */
3682 static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
3684 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
3685 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
3686 * get validated by dst_ops->check on every use. We do this
3687 * because when a normal route referenced by an XFRM dst is
3688 * obsoleted we do not go looking around for all parent
3689 * referencing XFRM dsts so that we can invalidate them. It
3690 * is just too much work. Instead we make the checks here on
3691 * every use. For example:
3693 * XFRM dst A --> IPv4 dst X
3695 * X is the "xdst->route" of A (X is also the "dst->path" of A
3696 * in this example). If X is marked obsolete, "A" will not
3697 * notice. That's what we are validating here via the
3698 * stale_bundle() check.
3700 * When a dst is removed from the fib tree, DST_OBSOLETE_DEAD will
3702 * This will force stale_bundle() to fail on any xdst bundle with
3703 * this dst linked in it.
3705 if (dst->obsolete < 0 && !stale_bundle(dst))
3711 static int stale_bundle(struct dst_entry *dst)
3713 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
3716 void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
3718 while ((dst = xfrm_dst_child(dst)) && dst->xfrm && dst->dev == dev) {
3719 dst->dev = dev_net(dev)->loopback_dev;
3724 EXPORT_SYMBOL(xfrm_dst_ifdown);
3726 static void xfrm_link_failure(struct sk_buff *skb)
3728 /* Impossible. Such dst must be popped before reaches point of failure. */
3731 static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
3734 if (dst->obsolete) {
3742 static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr)
3745 struct xfrm_dst *xdst = bundle[nr];
3746 u32 pmtu, route_mtu_cached;
3747 struct dst_entry *dst;
3750 pmtu = dst_mtu(xfrm_dst_child(dst));
3751 xdst->child_mtu_cached = pmtu;
3753 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
3755 route_mtu_cached = dst_mtu(xdst->route);
3756 xdst->route_mtu_cached = route_mtu_cached;
3758 if (pmtu > route_mtu_cached)
3759 pmtu = route_mtu_cached;
3761 dst_metric_set(dst, RTAX_MTU, pmtu);
3765 /* Check that the bundle accepts the flow and its components are
3769 static int xfrm_bundle_ok(struct xfrm_dst *first)
3771 struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
3772 struct dst_entry *dst = &first->u.dst;
3773 struct xfrm_dst *xdst;
3777 if (!dst_check(xfrm_dst_path(dst), ((struct xfrm_dst *)dst)->path_cookie) ||
3778 (dst->dev && !netif_running(dst->dev)))
3781 if (dst->flags & DST_XFRM_QUEUE)
3784 start_from = nr = 0;
3786 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
3788 if (dst->xfrm->km.state != XFRM_STATE_VALID)
3790 if (xdst->xfrm_genid != dst->xfrm->genid)
3792 if (xdst->num_pols > 0 &&
3793 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
3796 bundle[nr++] = xdst;
3798 mtu = dst_mtu(xfrm_dst_child(dst));
3799 if (xdst->child_mtu_cached != mtu) {
3801 xdst->child_mtu_cached = mtu;
3804 if (!dst_check(xdst->route, xdst->route_cookie))
3806 mtu = dst_mtu(xdst->route);
3807 if (xdst->route_mtu_cached != mtu) {
3809 xdst->route_mtu_cached = mtu;
3812 dst = xfrm_dst_child(dst);
3813 } while (dst->xfrm);
3815 if (likely(!start_from))
3818 xdst = bundle[start_from - 1];
3819 mtu = xdst->child_mtu_cached;
3820 while (start_from--) {
3823 mtu = xfrm_state_mtu(dst->xfrm, mtu);
3824 if (mtu > xdst->route_mtu_cached)
3825 mtu = xdst->route_mtu_cached;
3826 dst_metric_set(dst, RTAX_MTU, mtu);
3830 xdst = bundle[start_from - 1];
3831 xdst->child_mtu_cached = mtu;
3837 static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
3839 return dst_metric_advmss(xfrm_dst_path(dst));
3842 static unsigned int xfrm_mtu(const struct dst_entry *dst)
3844 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
3846 return mtu ? : dst_mtu(xfrm_dst_path(dst));
3849 static const void *xfrm_get_dst_nexthop(const struct dst_entry *dst,
3853 const struct xfrm_state *xfrm = dst->xfrm;
3855 dst = xfrm_dst_child(dst);
3857 if (xfrm->props.mode == XFRM_MODE_TRANSPORT)
3859 if (xfrm->type->flags & XFRM_TYPE_REMOTE_COADDR)
3860 daddr = xfrm->coaddr;
3861 else if (!(xfrm->type->flags & XFRM_TYPE_LOCAL_COADDR))
3862 daddr = &xfrm->id.daddr;
3867 static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
3868 struct sk_buff *skb,
3871 const struct dst_entry *path = xfrm_dst_path(dst);
3874 daddr = xfrm_get_dst_nexthop(dst, daddr);
3875 return path->ops->neigh_lookup(path, skb, daddr);
3878 static void xfrm_confirm_neigh(const struct dst_entry *dst, const void *daddr)
3880 const struct dst_entry *path = xfrm_dst_path(dst);
3882 daddr = xfrm_get_dst_nexthop(dst, daddr);
3883 path->ops->confirm_neigh(path, daddr);
3886 int xfrm_policy_register_afinfo(const struct xfrm_policy_afinfo *afinfo, int family)
3890 if (WARN_ON(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
3891 return -EAFNOSUPPORT;
3893 spin_lock(&xfrm_policy_afinfo_lock);
3894 if (unlikely(xfrm_policy_afinfo[family] != NULL))
3897 struct dst_ops *dst_ops = afinfo->dst_ops;
3898 if (likely(dst_ops->kmem_cachep == NULL))
3899 dst_ops->kmem_cachep = xfrm_dst_cache;
3900 if (likely(dst_ops->check == NULL))
3901 dst_ops->check = xfrm_dst_check;
3902 if (likely(dst_ops->default_advmss == NULL))
3903 dst_ops->default_advmss = xfrm_default_advmss;
3904 if (likely(dst_ops->mtu == NULL))
3905 dst_ops->mtu = xfrm_mtu;
3906 if (likely(dst_ops->negative_advice == NULL))
3907 dst_ops->negative_advice = xfrm_negative_advice;
3908 if (likely(dst_ops->link_failure == NULL))
3909 dst_ops->link_failure = xfrm_link_failure;
3910 if (likely(dst_ops->neigh_lookup == NULL))
3911 dst_ops->neigh_lookup = xfrm_neigh_lookup;
3912 if (likely(!dst_ops->confirm_neigh))
3913 dst_ops->confirm_neigh = xfrm_confirm_neigh;
3914 rcu_assign_pointer(xfrm_policy_afinfo[family], afinfo);
3916 spin_unlock(&xfrm_policy_afinfo_lock);
3920 EXPORT_SYMBOL(xfrm_policy_register_afinfo);
3922 void xfrm_policy_unregister_afinfo(const struct xfrm_policy_afinfo *afinfo)
3924 struct dst_ops *dst_ops = afinfo->dst_ops;
3927 for (i = 0; i < ARRAY_SIZE(xfrm_policy_afinfo); i++) {
3928 if (xfrm_policy_afinfo[i] != afinfo)
3930 RCU_INIT_POINTER(xfrm_policy_afinfo[i], NULL);
3936 dst_ops->kmem_cachep = NULL;
3937 dst_ops->check = NULL;
3938 dst_ops->negative_advice = NULL;
3939 dst_ops->link_failure = NULL;
3941 EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
3943 void xfrm_if_register_cb(const struct xfrm_if_cb *ifcb)
3945 spin_lock(&xfrm_if_cb_lock);
3946 rcu_assign_pointer(xfrm_if_cb, ifcb);
3947 spin_unlock(&xfrm_if_cb_lock);
3949 EXPORT_SYMBOL(xfrm_if_register_cb);
3951 void xfrm_if_unregister_cb(void)
3953 RCU_INIT_POINTER(xfrm_if_cb, NULL);
3956 EXPORT_SYMBOL(xfrm_if_unregister_cb);
3958 #ifdef CONFIG_XFRM_STATISTICS
3959 static int __net_init xfrm_statistics_init(struct net *net)
3962 net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
3963 if (!net->mib.xfrm_statistics)
3965 rv = xfrm_proc_init(net);
3967 free_percpu(net->mib.xfrm_statistics);
3971 static void xfrm_statistics_fini(struct net *net)
3973 xfrm_proc_fini(net);
3974 free_percpu(net->mib.xfrm_statistics);
3977 static int __net_init xfrm_statistics_init(struct net *net)
3982 static void xfrm_statistics_fini(struct net *net)
3987 static int __net_init xfrm_policy_init(struct net *net)
3989 unsigned int hmask, sz;
3992 if (net_eq(net, &init_net)) {
3993 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
3994 sizeof(struct xfrm_dst),
3995 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
3997 err = rhashtable_init(&xfrm_policy_inexact_table,
3998 &xfrm_pol_inexact_params);
4003 sz = (hmask+1) * sizeof(struct hlist_head);
4005 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
4006 if (!net->xfrm.policy_byidx)
4008 net->xfrm.policy_idx_hmask = hmask;
4010 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4011 struct xfrm_policy_hash *htab;
4013 net->xfrm.policy_count[dir] = 0;
4014 net->xfrm.policy_count[XFRM_POLICY_MAX + dir] = 0;
4015 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
4017 htab = &net->xfrm.policy_bydst[dir];
4018 htab->table = xfrm_hash_alloc(sz);
4021 htab->hmask = hmask;
4027 net->xfrm.policy_hthresh.lbits4 = 32;
4028 net->xfrm.policy_hthresh.rbits4 = 32;
4029 net->xfrm.policy_hthresh.lbits6 = 128;
4030 net->xfrm.policy_hthresh.rbits6 = 128;
4032 seqlock_init(&net->xfrm.policy_hthresh.lock);
4034 INIT_LIST_HEAD(&net->xfrm.policy_all);
4035 INIT_LIST_HEAD(&net->xfrm.inexact_bins);
4036 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
4037 INIT_WORK(&net->xfrm.policy_hthresh.work, xfrm_hash_rebuild);
4041 for (dir--; dir >= 0; dir--) {
4042 struct xfrm_policy_hash *htab;
4044 htab = &net->xfrm.policy_bydst[dir];
4045 xfrm_hash_free(htab->table, sz);
4047 xfrm_hash_free(net->xfrm.policy_byidx, sz);
4052 static void xfrm_policy_fini(struct net *net)
4054 struct xfrm_pol_inexact_bin *b, *t;
4058 flush_work(&net->xfrm.policy_hash_work);
4059 #ifdef CONFIG_XFRM_SUB_POLICY
4060 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, false);
4062 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, false);
4064 WARN_ON(!list_empty(&net->xfrm.policy_all));
4066 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4067 struct xfrm_policy_hash *htab;
4069 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
4071 htab = &net->xfrm.policy_bydst[dir];
4072 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
4073 WARN_ON(!hlist_empty(htab->table));
4074 xfrm_hash_free(htab->table, sz);
4077 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
4078 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
4079 xfrm_hash_free(net->xfrm.policy_byidx, sz);
4081 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4082 list_for_each_entry_safe(b, t, &net->xfrm.inexact_bins, inexact_bins)
4083 __xfrm_policy_inexact_prune_bin(b, true);
4084 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4087 static int __net_init xfrm_net_init(struct net *net)
4091 /* Initialize the per-net locks here */
4092 spin_lock_init(&net->xfrm.xfrm_state_lock);
4093 spin_lock_init(&net->xfrm.xfrm_policy_lock);
4094 mutex_init(&net->xfrm.xfrm_cfg_mutex);
4096 rv = xfrm_statistics_init(net);
4098 goto out_statistics;
4099 rv = xfrm_state_init(net);
4102 rv = xfrm_policy_init(net);
4105 rv = xfrm_sysctl_init(net);
4112 xfrm_policy_fini(net);
4114 xfrm_state_fini(net);
4116 xfrm_statistics_fini(net);
4121 static void __net_exit xfrm_net_exit(struct net *net)
4123 xfrm_sysctl_fini(net);
4124 xfrm_policy_fini(net);
4125 xfrm_state_fini(net);
4126 xfrm_statistics_fini(net);
4129 static struct pernet_operations __net_initdata xfrm_net_ops = {
4130 .init = xfrm_net_init,
4131 .exit = xfrm_net_exit,
4134 void __init xfrm_init(void)
4136 register_pernet_subsys(&xfrm_net_ops);
4138 seqcount_mutex_init(&xfrm_policy_hash_generation, &hash_resize_mutex);
4141 #ifdef CONFIG_XFRM_ESPINTCP
4146 #ifdef CONFIG_AUDITSYSCALL
4147 static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
4148 struct audit_buffer *audit_buf)
4150 struct xfrm_sec_ctx *ctx = xp->security;
4151 struct xfrm_selector *sel = &xp->selector;
4154 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
4155 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
4157 switch (sel->family) {
4159 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
4160 if (sel->prefixlen_s != 32)
4161 audit_log_format(audit_buf, " src_prefixlen=%d",
4163 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
4164 if (sel->prefixlen_d != 32)
4165 audit_log_format(audit_buf, " dst_prefixlen=%d",
4169 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
4170 if (sel->prefixlen_s != 128)
4171 audit_log_format(audit_buf, " src_prefixlen=%d",
4173 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
4174 if (sel->prefixlen_d != 128)
4175 audit_log_format(audit_buf, " dst_prefixlen=%d",
4181 void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid)
4183 struct audit_buffer *audit_buf;
4185 audit_buf = xfrm_audit_start("SPD-add");
4186 if (audit_buf == NULL)
4188 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4189 audit_log_format(audit_buf, " res=%u", result);
4190 xfrm_audit_common_policyinfo(xp, audit_buf);
4191 audit_log_end(audit_buf);
4193 EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
4195 void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
4198 struct audit_buffer *audit_buf;
4200 audit_buf = xfrm_audit_start("SPD-delete");
4201 if (audit_buf == NULL)
4203 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4204 audit_log_format(audit_buf, " res=%u", result);
4205 xfrm_audit_common_policyinfo(xp, audit_buf);
4206 audit_log_end(audit_buf);
4208 EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
4211 #ifdef CONFIG_XFRM_MIGRATE
4212 static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
4213 const struct xfrm_selector *sel_tgt)
4215 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
4216 if (sel_tgt->family == sel_cmp->family &&
4217 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
4219 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
4221 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
4222 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
4226 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
4233 static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
4234 u8 dir, u8 type, struct net *net)
4236 struct xfrm_policy *pol, *ret = NULL;
4237 struct hlist_head *chain;
4240 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4241 chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
4242 hlist_for_each_entry(pol, chain, bydst) {
4243 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
4244 pol->type == type) {
4246 priority = ret->priority;
4250 chain = &net->xfrm.policy_inexact[dir];
4251 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
4252 if ((pol->priority >= priority) && ret)
4255 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
4256 pol->type == type) {
4264 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4269 static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
4273 if (t->mode == m->mode && t->id.proto == m->proto &&
4274 (m->reqid == 0 || t->reqid == m->reqid)) {
4276 case XFRM_MODE_TUNNEL:
4277 case XFRM_MODE_BEET:
4278 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
4280 xfrm_addr_equal(&t->saddr, &m->old_saddr,
4285 case XFRM_MODE_TRANSPORT:
4286 /* in case of transport mode, template does not store
4287 any IP addresses, hence we just compare mode and
4298 /* update endpoint address(es) of template(s) */
4299 static int xfrm_policy_migrate(struct xfrm_policy *pol,
4300 struct xfrm_migrate *m, int num_migrate)
4302 struct xfrm_migrate *mp;
4305 write_lock_bh(&pol->lock);
4306 if (unlikely(pol->walk.dead)) {
4307 /* target policy has been deleted */
4308 write_unlock_bh(&pol->lock);
4312 for (i = 0; i < pol->xfrm_nr; i++) {
4313 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
4314 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
4317 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
4318 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
4320 /* update endpoints */
4321 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
4322 sizeof(pol->xfrm_vec[i].id.daddr));
4323 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
4324 sizeof(pol->xfrm_vec[i].saddr));
4325 pol->xfrm_vec[i].encap_family = mp->new_family;
4327 atomic_inc(&pol->genid);
4331 write_unlock_bh(&pol->lock);
4339 static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
4343 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
4346 for (i = 0; i < num_migrate; i++) {
4347 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
4348 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
4351 /* check if there is any duplicated entry */
4352 for (j = i + 1; j < num_migrate; j++) {
4353 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
4354 sizeof(m[i].old_daddr)) &&
4355 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
4356 sizeof(m[i].old_saddr)) &&
4357 m[i].proto == m[j].proto &&
4358 m[i].mode == m[j].mode &&
4359 m[i].reqid == m[j].reqid &&
4360 m[i].old_family == m[j].old_family)
4368 int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
4369 struct xfrm_migrate *m, int num_migrate,
4370 struct xfrm_kmaddress *k, struct net *net,
4371 struct xfrm_encap_tmpl *encap)
4373 int i, err, nx_cur = 0, nx_new = 0;
4374 struct xfrm_policy *pol = NULL;
4375 struct xfrm_state *x, *xc;
4376 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
4377 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
4378 struct xfrm_migrate *mp;
4380 /* Stage 0 - sanity checks */
4381 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
4384 if (dir >= XFRM_POLICY_MAX) {
4389 /* Stage 1 - find policy */
4390 if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) {
4395 /* Stage 2 - find and update state(s) */
4396 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
4397 if ((x = xfrm_migrate_state_find(mp, net))) {
4400 xc = xfrm_state_migrate(x, mp, encap);
4411 /* Stage 3 - update policy */
4412 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
4415 /* Stage 4 - delete old state(s) */
4417 xfrm_states_put(x_cur, nx_cur);
4418 xfrm_states_delete(x_cur, nx_cur);
4421 /* Stage 5 - announce */
4422 km_migrate(sel, dir, type, m, num_migrate, k, encap);
4434 xfrm_states_put(x_cur, nx_cur);
4436 xfrm_states_delete(x_new, nx_new);
4440 EXPORT_SYMBOL(xfrm_migrate);