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>
34 #include <net/inet_ecn.h>
38 #if IS_ENABLED(CONFIG_IPV6_MIP6)
41 #ifdef CONFIG_XFRM_STATISTICS
44 #ifdef CONFIG_XFRM_ESPINTCP
45 #include <net/espintcp.h>
48 #include "xfrm_hash.h"
50 #define XFRM_QUEUE_TMO_MIN ((unsigned)(HZ/10))
51 #define XFRM_QUEUE_TMO_MAX ((unsigned)(60*HZ))
52 #define XFRM_MAX_QUEUE_LEN 100
55 struct dst_entry *dst_orig;
59 /* prefixes smaller than this are stored in lists, not trees. */
60 #define INEXACT_PREFIXLEN_IPV4 16
61 #define INEXACT_PREFIXLEN_IPV6 48
63 struct xfrm_pol_inexact_node {
73 /* the policies matching this node, can be empty list */
74 struct hlist_head hhead;
77 /* xfrm inexact policy search tree:
78 * xfrm_pol_inexact_bin = hash(dir,type,family,if_id);
80 * +---- root_d: sorted by daddr:prefix
82 * | xfrm_pol_inexact_node
84 * | +- root: sorted by saddr/prefix
86 * | | xfrm_pol_inexact_node
90 * | | + hhead: saddr:daddr policies
92 * | +- coarse policies and all any:daddr policies
94 * +---- root_s: sorted by saddr:prefix
96 * | xfrm_pol_inexact_node
100 * | + hhead: saddr:any policies
102 * +---- coarse policies and all any:any policies
104 * Lookups return four candidate lists:
105 * 1. any:any list from top-level xfrm_pol_inexact_bin
106 * 2. any:daddr list from daddr tree
107 * 3. saddr:daddr list from 2nd level daddr tree
108 * 4. saddr:any list from saddr tree
110 * This result set then needs to be searched for the policy with
111 * the lowest priority. If two results have same prio, youngest one wins.
114 struct xfrm_pol_inexact_key {
121 struct xfrm_pol_inexact_bin {
122 struct xfrm_pol_inexact_key k;
123 struct rhash_head head;
124 /* list containing '*:*' policies */
125 struct hlist_head hhead;
127 seqcount_spinlock_t count;
128 /* tree sorted by daddr/prefix */
129 struct rb_root root_d;
131 /* tree sorted by saddr/prefix */
132 struct rb_root root_s;
134 /* slow path below */
135 struct list_head inexact_bins;
139 enum xfrm_pol_inexact_candidate_type {
148 struct xfrm_pol_inexact_candidates {
149 struct hlist_head *res[XFRM_POL_CAND_MAX];
152 static DEFINE_SPINLOCK(xfrm_if_cb_lock);
153 static struct xfrm_if_cb const __rcu *xfrm_if_cb __read_mostly;
155 static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
156 static struct xfrm_policy_afinfo const __rcu *xfrm_policy_afinfo[AF_INET6 + 1]
159 static struct kmem_cache *xfrm_dst_cache __ro_after_init;
161 static struct rhashtable xfrm_policy_inexact_table;
162 static const struct rhashtable_params xfrm_pol_inexact_params;
164 static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr);
165 static int stale_bundle(struct dst_entry *dst);
166 static int xfrm_bundle_ok(struct xfrm_dst *xdst);
167 static void xfrm_policy_queue_process(struct timer_list *t);
169 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir);
170 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
173 static struct xfrm_pol_inexact_bin *
174 xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family, u8 dir,
177 static struct xfrm_pol_inexact_bin *
178 xfrm_policy_inexact_lookup_rcu(struct net *net,
179 u8 type, u16 family, u8 dir, u32 if_id);
180 static struct xfrm_policy *
181 xfrm_policy_insert_list(struct hlist_head *chain, struct xfrm_policy *policy,
183 static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
184 struct xfrm_policy *policy);
187 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
188 struct xfrm_pol_inexact_bin *b,
189 const xfrm_address_t *saddr,
190 const xfrm_address_t *daddr);
192 static inline bool xfrm_pol_hold_rcu(struct xfrm_policy *policy)
194 return refcount_inc_not_zero(&policy->refcnt);
198 __xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
200 const struct flowi4 *fl4 = &fl->u.ip4;
202 return addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
203 addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
204 !((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
205 !((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
206 (fl4->flowi4_proto == sel->proto || !sel->proto) &&
207 (fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
211 __xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
213 const struct flowi6 *fl6 = &fl->u.ip6;
215 return addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
216 addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
217 !((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
218 !((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
219 (fl6->flowi6_proto == sel->proto || !sel->proto) &&
220 (fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
223 bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
224 unsigned short family)
228 return __xfrm4_selector_match(sel, fl);
230 return __xfrm6_selector_match(sel, fl);
235 static const struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
237 const struct xfrm_policy_afinfo *afinfo;
239 if (unlikely(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
242 afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
243 if (unlikely(!afinfo))
248 /* Called with rcu_read_lock(). */
249 static const struct xfrm_if_cb *xfrm_if_get_cb(void)
251 return rcu_dereference(xfrm_if_cb);
254 struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos, int oif,
255 const xfrm_address_t *saddr,
256 const xfrm_address_t *daddr,
257 int family, u32 mark)
259 const struct xfrm_policy_afinfo *afinfo;
260 struct dst_entry *dst;
262 afinfo = xfrm_policy_get_afinfo(family);
263 if (unlikely(afinfo == NULL))
264 return ERR_PTR(-EAFNOSUPPORT);
266 dst = afinfo->dst_lookup(net, tos, oif, saddr, daddr, mark);
272 EXPORT_SYMBOL(__xfrm_dst_lookup);
274 static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x,
276 xfrm_address_t *prev_saddr,
277 xfrm_address_t *prev_daddr,
278 int family, u32 mark)
280 struct net *net = xs_net(x);
281 xfrm_address_t *saddr = &x->props.saddr;
282 xfrm_address_t *daddr = &x->id.daddr;
283 struct dst_entry *dst;
285 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
289 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
294 dst = __xfrm_dst_lookup(net, tos, oif, saddr, daddr, family, mark);
297 if (prev_saddr != saddr)
298 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
299 if (prev_daddr != daddr)
300 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
306 static inline unsigned long make_jiffies(long secs)
308 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
309 return MAX_SCHEDULE_TIMEOUT-1;
314 static void xfrm_policy_timer(struct timer_list *t)
316 struct xfrm_policy *xp = from_timer(xp, t, timer);
317 time64_t now = ktime_get_real_seconds();
318 time64_t next = TIME64_MAX;
322 read_lock(&xp->lock);
324 if (unlikely(xp->walk.dead))
327 dir = xfrm_policy_id2dir(xp->index);
329 if (xp->lft.hard_add_expires_seconds) {
330 time64_t tmo = xp->lft.hard_add_expires_seconds +
331 xp->curlft.add_time - now;
337 if (xp->lft.hard_use_expires_seconds) {
338 time64_t tmo = xp->lft.hard_use_expires_seconds +
339 (READ_ONCE(xp->curlft.use_time) ? : xp->curlft.add_time) - now;
345 if (xp->lft.soft_add_expires_seconds) {
346 time64_t tmo = xp->lft.soft_add_expires_seconds +
347 xp->curlft.add_time - now;
350 tmo = XFRM_KM_TIMEOUT;
355 if (xp->lft.soft_use_expires_seconds) {
356 time64_t tmo = xp->lft.soft_use_expires_seconds +
357 (READ_ONCE(xp->curlft.use_time) ? : xp->curlft.add_time) - now;
360 tmo = XFRM_KM_TIMEOUT;
367 km_policy_expired(xp, dir, 0, 0);
368 if (next != TIME64_MAX &&
369 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
373 read_unlock(&xp->lock);
378 read_unlock(&xp->lock);
379 if (!xfrm_policy_delete(xp, dir))
380 km_policy_expired(xp, dir, 1, 0);
384 /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
388 struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
390 struct xfrm_policy *policy;
392 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
395 write_pnet(&policy->xp_net, net);
396 INIT_LIST_HEAD(&policy->walk.all);
397 INIT_HLIST_NODE(&policy->bydst_inexact_list);
398 INIT_HLIST_NODE(&policy->bydst);
399 INIT_HLIST_NODE(&policy->byidx);
400 rwlock_init(&policy->lock);
401 refcount_set(&policy->refcnt, 1);
402 skb_queue_head_init(&policy->polq.hold_queue);
403 timer_setup(&policy->timer, xfrm_policy_timer, 0);
404 timer_setup(&policy->polq.hold_timer,
405 xfrm_policy_queue_process, 0);
409 EXPORT_SYMBOL(xfrm_policy_alloc);
411 static void xfrm_policy_destroy_rcu(struct rcu_head *head)
413 struct xfrm_policy *policy = container_of(head, struct xfrm_policy, rcu);
415 security_xfrm_policy_free(policy->security);
419 /* Destroy xfrm_policy: descendant resources must be released to this moment. */
421 void xfrm_policy_destroy(struct xfrm_policy *policy)
423 BUG_ON(!policy->walk.dead);
425 if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
428 call_rcu(&policy->rcu, xfrm_policy_destroy_rcu);
430 EXPORT_SYMBOL(xfrm_policy_destroy);
432 /* Rule must be locked. Release descendant resources, announce
433 * entry dead. The rule must be unlinked from lists to the moment.
436 static void xfrm_policy_kill(struct xfrm_policy *policy)
438 write_lock_bh(&policy->lock);
439 policy->walk.dead = 1;
440 write_unlock_bh(&policy->lock);
442 atomic_inc(&policy->genid);
444 if (del_timer(&policy->polq.hold_timer))
445 xfrm_pol_put(policy);
446 skb_queue_purge(&policy->polq.hold_queue);
448 if (del_timer(&policy->timer))
449 xfrm_pol_put(policy);
451 xfrm_pol_put(policy);
454 static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
456 static inline unsigned int idx_hash(struct net *net, u32 index)
458 return __idx_hash(index, net->xfrm.policy_idx_hmask);
461 /* calculate policy hash thresholds */
462 static void __get_hash_thresh(struct net *net,
463 unsigned short family, int dir,
464 u8 *dbits, u8 *sbits)
468 *dbits = net->xfrm.policy_bydst[dir].dbits4;
469 *sbits = net->xfrm.policy_bydst[dir].sbits4;
473 *dbits = net->xfrm.policy_bydst[dir].dbits6;
474 *sbits = net->xfrm.policy_bydst[dir].sbits6;
483 static struct hlist_head *policy_hash_bysel(struct net *net,
484 const struct xfrm_selector *sel,
485 unsigned short family, int dir)
487 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
492 __get_hash_thresh(net, family, dir, &dbits, &sbits);
493 hash = __sel_hash(sel, family, hmask, dbits, sbits);
495 if (hash == hmask + 1)
498 return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
499 lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
502 static struct hlist_head *policy_hash_direct(struct net *net,
503 const xfrm_address_t *daddr,
504 const xfrm_address_t *saddr,
505 unsigned short family, int dir)
507 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
512 __get_hash_thresh(net, family, dir, &dbits, &sbits);
513 hash = __addr_hash(daddr, saddr, family, hmask, dbits, sbits);
515 return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
516 lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
519 static void xfrm_dst_hash_transfer(struct net *net,
520 struct hlist_head *list,
521 struct hlist_head *ndsttable,
522 unsigned int nhashmask,
525 struct hlist_node *tmp, *entry0 = NULL;
526 struct xfrm_policy *pol;
532 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
535 __get_hash_thresh(net, pol->family, dir, &dbits, &sbits);
536 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
537 pol->family, nhashmask, dbits, sbits);
539 hlist_del_rcu(&pol->bydst);
540 hlist_add_head_rcu(&pol->bydst, ndsttable + h);
545 hlist_del_rcu(&pol->bydst);
546 hlist_add_behind_rcu(&pol->bydst, entry0);
548 entry0 = &pol->bydst;
550 if (!hlist_empty(list)) {
556 static void xfrm_idx_hash_transfer(struct hlist_head *list,
557 struct hlist_head *nidxtable,
558 unsigned int nhashmask)
560 struct hlist_node *tmp;
561 struct xfrm_policy *pol;
563 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
566 h = __idx_hash(pol->index, nhashmask);
567 hlist_add_head(&pol->byidx, nidxtable+h);
571 static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
573 return ((old_hmask + 1) << 1) - 1;
576 static void xfrm_bydst_resize(struct net *net, int dir)
578 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
579 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
580 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
581 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
582 struct hlist_head *odst;
588 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
589 write_seqcount_begin(&net->xfrm.xfrm_policy_hash_generation);
591 odst = rcu_dereference_protected(net->xfrm.policy_bydst[dir].table,
592 lockdep_is_held(&net->xfrm.xfrm_policy_lock));
594 for (i = hmask; i >= 0; i--)
595 xfrm_dst_hash_transfer(net, odst + i, ndst, nhashmask, dir);
597 rcu_assign_pointer(net->xfrm.policy_bydst[dir].table, ndst);
598 net->xfrm.policy_bydst[dir].hmask = nhashmask;
600 write_seqcount_end(&net->xfrm.xfrm_policy_hash_generation);
601 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
605 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
608 static void xfrm_byidx_resize(struct net *net, int total)
610 unsigned int hmask = net->xfrm.policy_idx_hmask;
611 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
612 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
613 struct hlist_head *oidx = net->xfrm.policy_byidx;
614 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
620 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
622 for (i = hmask; i >= 0; i--)
623 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
625 net->xfrm.policy_byidx = nidx;
626 net->xfrm.policy_idx_hmask = nhashmask;
628 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
630 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
633 static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
635 unsigned int cnt = net->xfrm.policy_count[dir];
636 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
641 if ((hmask + 1) < xfrm_policy_hashmax &&
648 static inline int xfrm_byidx_should_resize(struct net *net, int total)
650 unsigned int hmask = net->xfrm.policy_idx_hmask;
652 if ((hmask + 1) < xfrm_policy_hashmax &&
659 void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
661 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
662 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
663 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
664 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
665 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
666 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
667 si->spdhcnt = net->xfrm.policy_idx_hmask;
668 si->spdhmcnt = xfrm_policy_hashmax;
670 EXPORT_SYMBOL(xfrm_spd_getinfo);
672 static DEFINE_MUTEX(hash_resize_mutex);
673 static void xfrm_hash_resize(struct work_struct *work)
675 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
678 mutex_lock(&hash_resize_mutex);
681 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
682 if (xfrm_bydst_should_resize(net, dir, &total))
683 xfrm_bydst_resize(net, dir);
685 if (xfrm_byidx_should_resize(net, total))
686 xfrm_byidx_resize(net, total);
688 mutex_unlock(&hash_resize_mutex);
691 /* Make sure *pol can be inserted into fastbin.
692 * Useful to check that later insert requests will be successful
693 * (provided xfrm_policy_lock is held throughout).
695 static struct xfrm_pol_inexact_bin *
696 xfrm_policy_inexact_alloc_bin(const struct xfrm_policy *pol, u8 dir)
698 struct xfrm_pol_inexact_bin *bin, *prev;
699 struct xfrm_pol_inexact_key k = {
700 .family = pol->family,
705 struct net *net = xp_net(pol);
707 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
709 write_pnet(&k.net, net);
710 bin = rhashtable_lookup_fast(&xfrm_policy_inexact_table, &k,
711 xfrm_pol_inexact_params);
715 bin = kzalloc(sizeof(*bin), GFP_ATOMIC);
720 INIT_HLIST_HEAD(&bin->hhead);
721 bin->root_d = RB_ROOT;
722 bin->root_s = RB_ROOT;
723 seqcount_spinlock_init(&bin->count, &net->xfrm.xfrm_policy_lock);
725 prev = rhashtable_lookup_get_insert_key(&xfrm_policy_inexact_table,
727 xfrm_pol_inexact_params);
729 list_add(&bin->inexact_bins, &net->xfrm.inexact_bins);
735 return IS_ERR(prev) ? NULL : prev;
738 static bool xfrm_pol_inexact_addr_use_any_list(const xfrm_address_t *addr,
739 int family, u8 prefixlen)
741 if (xfrm_addr_any(addr, family))
744 if (family == AF_INET6 && prefixlen < INEXACT_PREFIXLEN_IPV6)
747 if (family == AF_INET && prefixlen < INEXACT_PREFIXLEN_IPV4)
754 xfrm_policy_inexact_insert_use_any_list(const struct xfrm_policy *policy)
756 const xfrm_address_t *addr;
757 bool saddr_any, daddr_any;
760 addr = &policy->selector.saddr;
761 prefixlen = policy->selector.prefixlen_s;
763 saddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
766 addr = &policy->selector.daddr;
767 prefixlen = policy->selector.prefixlen_d;
768 daddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
771 return saddr_any && daddr_any;
774 static void xfrm_pol_inexact_node_init(struct xfrm_pol_inexact_node *node,
775 const xfrm_address_t *addr, u8 prefixlen)
778 node->prefixlen = prefixlen;
781 static struct xfrm_pol_inexact_node *
782 xfrm_pol_inexact_node_alloc(const xfrm_address_t *addr, u8 prefixlen)
784 struct xfrm_pol_inexact_node *node;
786 node = kzalloc(sizeof(*node), GFP_ATOMIC);
788 xfrm_pol_inexact_node_init(node, addr, prefixlen);
793 static int xfrm_policy_addr_delta(const xfrm_address_t *a,
794 const xfrm_address_t *b,
795 u8 prefixlen, u16 family)
798 unsigned int pdw, pbi;
805 mask = ~0U << (32 - prefixlen);
806 ma = ntohl(a->a4) & mask;
807 mb = ntohl(b->a4) & mask;
814 pdw = prefixlen >> 5;
815 pbi = prefixlen & 0x1f;
818 delta = memcmp(a->a6, b->a6, pdw << 2);
823 mask = ~0U << (32 - pbi);
824 ma = ntohl(a->a6[pdw]) & mask;
825 mb = ntohl(b->a6[pdw]) & mask;
839 static void xfrm_policy_inexact_list_reinsert(struct net *net,
840 struct xfrm_pol_inexact_node *n,
843 unsigned int matched_s, matched_d;
844 struct xfrm_policy *policy, *p;
849 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
850 struct hlist_node *newpos = NULL;
851 bool matches_s, matches_d;
853 if (!policy->bydst_reinsert)
856 WARN_ON_ONCE(policy->family != family);
858 policy->bydst_reinsert = false;
859 hlist_for_each_entry(p, &n->hhead, bydst) {
860 if (policy->priority > p->priority)
862 else if (policy->priority == p->priority &&
863 policy->pos > p->pos)
870 hlist_add_behind_rcu(&policy->bydst, newpos);
872 hlist_add_head_rcu(&policy->bydst, &n->hhead);
874 /* paranoia checks follow.
875 * Check that the reinserted policy matches at least
876 * saddr or daddr for current node prefix.
878 * Matching both is fine, matching saddr in one policy
879 * (but not daddr) and then matching only daddr in another
882 matches_s = xfrm_policy_addr_delta(&policy->selector.saddr,
886 matches_d = xfrm_policy_addr_delta(&policy->selector.daddr,
890 if (matches_s && matches_d)
893 WARN_ON_ONCE(!matches_s && !matches_d);
898 WARN_ON_ONCE(matched_s && matched_d);
902 static void xfrm_policy_inexact_node_reinsert(struct net *net,
903 struct xfrm_pol_inexact_node *n,
907 struct xfrm_pol_inexact_node *node;
908 struct rb_node **p, *parent;
910 /* we should not have another subtree here */
911 WARN_ON_ONCE(!RB_EMPTY_ROOT(&n->root));
920 node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
922 prefixlen = min(node->prefixlen, n->prefixlen);
924 delta = xfrm_policy_addr_delta(&n->addr, &node->addr,
927 p = &parent->rb_left;
928 } else if (delta > 0) {
929 p = &parent->rb_right;
931 bool same_prefixlen = node->prefixlen == n->prefixlen;
932 struct xfrm_policy *tmp;
934 hlist_for_each_entry(tmp, &n->hhead, bydst) {
935 tmp->bydst_reinsert = true;
936 hlist_del_rcu(&tmp->bydst);
939 node->prefixlen = prefixlen;
941 xfrm_policy_inexact_list_reinsert(net, node, family);
943 if (same_prefixlen) {
955 rb_link_node_rcu(&n->node, parent, p);
956 rb_insert_color(&n->node, new);
959 /* merge nodes v and n */
960 static void xfrm_policy_inexact_node_merge(struct net *net,
961 struct xfrm_pol_inexact_node *v,
962 struct xfrm_pol_inexact_node *n,
965 struct xfrm_pol_inexact_node *node;
966 struct xfrm_policy *tmp;
967 struct rb_node *rnode;
969 /* To-be-merged node v has a subtree.
971 * Dismantle it and insert its nodes to n->root.
973 while ((rnode = rb_first(&v->root)) != NULL) {
974 node = rb_entry(rnode, struct xfrm_pol_inexact_node, node);
975 rb_erase(&node->node, &v->root);
976 xfrm_policy_inexact_node_reinsert(net, node, &n->root,
980 hlist_for_each_entry(tmp, &v->hhead, bydst) {
981 tmp->bydst_reinsert = true;
982 hlist_del_rcu(&tmp->bydst);
985 xfrm_policy_inexact_list_reinsert(net, n, family);
988 static struct xfrm_pol_inexact_node *
989 xfrm_policy_inexact_insert_node(struct net *net,
990 struct rb_root *root,
991 xfrm_address_t *addr,
992 u16 family, u8 prefixlen, u8 dir)
994 struct xfrm_pol_inexact_node *cached = NULL;
995 struct rb_node **p, *parent = NULL;
996 struct xfrm_pol_inexact_node *node;
1003 node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
1005 delta = xfrm_policy_addr_delta(addr, &node->addr,
1008 if (delta == 0 && prefixlen >= node->prefixlen) {
1009 WARN_ON_ONCE(cached); /* ipsec policies got lost */
1014 p = &parent->rb_left;
1016 p = &parent->rb_right;
1018 if (prefixlen < node->prefixlen) {
1019 delta = xfrm_policy_addr_delta(addr, &node->addr,
1025 /* This node is a subnet of the new prefix. It needs
1026 * to be removed and re-inserted with the smaller
1027 * prefix and all nodes that are now also covered
1028 * by the reduced prefixlen.
1030 rb_erase(&node->node, root);
1033 xfrm_pol_inexact_node_init(node, addr,
1037 /* This node also falls within the new
1038 * prefixlen. Merge the to-be-reinserted
1039 * node and this one.
1041 xfrm_policy_inexact_node_merge(net, node,
1043 kfree_rcu(node, rcu);
1054 node = xfrm_pol_inexact_node_alloc(addr, prefixlen);
1059 rb_link_node_rcu(&node->node, parent, p);
1060 rb_insert_color(&node->node, root);
1065 static void xfrm_policy_inexact_gc_tree(struct rb_root *r, bool rm)
1067 struct xfrm_pol_inexact_node *node;
1068 struct rb_node *rn = rb_first(r);
1071 node = rb_entry(rn, struct xfrm_pol_inexact_node, node);
1073 xfrm_policy_inexact_gc_tree(&node->root, rm);
1076 if (!hlist_empty(&node->hhead) || !RB_EMPTY_ROOT(&node->root)) {
1081 rb_erase(&node->node, r);
1082 kfree_rcu(node, rcu);
1086 static void __xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b, bool net_exit)
1088 write_seqcount_begin(&b->count);
1089 xfrm_policy_inexact_gc_tree(&b->root_d, net_exit);
1090 xfrm_policy_inexact_gc_tree(&b->root_s, net_exit);
1091 write_seqcount_end(&b->count);
1093 if (!RB_EMPTY_ROOT(&b->root_d) || !RB_EMPTY_ROOT(&b->root_s) ||
1094 !hlist_empty(&b->hhead)) {
1095 WARN_ON_ONCE(net_exit);
1099 if (rhashtable_remove_fast(&xfrm_policy_inexact_table, &b->head,
1100 xfrm_pol_inexact_params) == 0) {
1101 list_del(&b->inexact_bins);
1106 static void xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b)
1108 struct net *net = read_pnet(&b->k.net);
1110 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1111 __xfrm_policy_inexact_prune_bin(b, false);
1112 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1115 static void __xfrm_policy_inexact_flush(struct net *net)
1117 struct xfrm_pol_inexact_bin *bin, *t;
1119 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1121 list_for_each_entry_safe(bin, t, &net->xfrm.inexact_bins, inexact_bins)
1122 __xfrm_policy_inexact_prune_bin(bin, false);
1125 static struct hlist_head *
1126 xfrm_policy_inexact_alloc_chain(struct xfrm_pol_inexact_bin *bin,
1127 struct xfrm_policy *policy, u8 dir)
1129 struct xfrm_pol_inexact_node *n;
1132 net = xp_net(policy);
1133 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1135 if (xfrm_policy_inexact_insert_use_any_list(policy))
1138 if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.daddr,
1140 policy->selector.prefixlen_d)) {
1141 write_seqcount_begin(&bin->count);
1142 n = xfrm_policy_inexact_insert_node(net,
1144 &policy->selector.saddr,
1146 policy->selector.prefixlen_s,
1148 write_seqcount_end(&bin->count);
1155 /* daddr is fixed */
1156 write_seqcount_begin(&bin->count);
1157 n = xfrm_policy_inexact_insert_node(net,
1159 &policy->selector.daddr,
1161 policy->selector.prefixlen_d, dir);
1162 write_seqcount_end(&bin->count);
1166 /* saddr is wildcard */
1167 if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.saddr,
1169 policy->selector.prefixlen_s))
1172 write_seqcount_begin(&bin->count);
1173 n = xfrm_policy_inexact_insert_node(net,
1175 &policy->selector.saddr,
1177 policy->selector.prefixlen_s, dir);
1178 write_seqcount_end(&bin->count);
1185 static struct xfrm_policy *
1186 xfrm_policy_inexact_insert(struct xfrm_policy *policy, u8 dir, int excl)
1188 struct xfrm_pol_inexact_bin *bin;
1189 struct xfrm_policy *delpol;
1190 struct hlist_head *chain;
1193 bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1195 return ERR_PTR(-ENOMEM);
1197 net = xp_net(policy);
1198 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1200 chain = xfrm_policy_inexact_alloc_chain(bin, policy, dir);
1202 __xfrm_policy_inexact_prune_bin(bin, false);
1203 return ERR_PTR(-ENOMEM);
1206 delpol = xfrm_policy_insert_list(chain, policy, excl);
1207 if (delpol && excl) {
1208 __xfrm_policy_inexact_prune_bin(bin, false);
1209 return ERR_PTR(-EEXIST);
1212 chain = &net->xfrm.policy_inexact[dir];
1213 xfrm_policy_insert_inexact_list(chain, policy);
1216 __xfrm_policy_inexact_prune_bin(bin, false);
1221 static void xfrm_hash_rebuild(struct work_struct *work)
1223 struct net *net = container_of(work, struct net,
1224 xfrm.policy_hthresh.work);
1226 struct xfrm_policy *pol;
1227 struct xfrm_policy *policy;
1228 struct hlist_head *chain;
1229 struct hlist_head *odst;
1230 struct hlist_node *newpos;
1234 u8 lbits4, rbits4, lbits6, rbits6;
1236 mutex_lock(&hash_resize_mutex);
1238 /* read selector prefixlen thresholds */
1240 seq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1242 lbits4 = net->xfrm.policy_hthresh.lbits4;
1243 rbits4 = net->xfrm.policy_hthresh.rbits4;
1244 lbits6 = net->xfrm.policy_hthresh.lbits6;
1245 rbits6 = net->xfrm.policy_hthresh.rbits6;
1246 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, seq));
1248 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1249 write_seqcount_begin(&net->xfrm.xfrm_policy_hash_generation);
1251 /* make sure that we can insert the indirect policies again before
1252 * we start with destructive action.
1254 list_for_each_entry(policy, &net->xfrm.policy_all, walk.all) {
1255 struct xfrm_pol_inexact_bin *bin;
1258 dir = xfrm_policy_id2dir(policy->index);
1259 if (policy->walk.dead || dir >= XFRM_POLICY_MAX)
1262 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1263 if (policy->family == AF_INET) {
1271 if (policy->family == AF_INET) {
1280 if (policy->selector.prefixlen_d < dbits ||
1281 policy->selector.prefixlen_s < sbits)
1284 bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1288 if (!xfrm_policy_inexact_alloc_chain(bin, policy, dir))
1292 /* reset the bydst and inexact table in all directions */
1293 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
1294 struct hlist_node *n;
1296 hlist_for_each_entry_safe(policy, n,
1297 &net->xfrm.policy_inexact[dir],
1298 bydst_inexact_list) {
1299 hlist_del_rcu(&policy->bydst);
1300 hlist_del_init(&policy->bydst_inexact_list);
1303 hmask = net->xfrm.policy_bydst[dir].hmask;
1304 odst = net->xfrm.policy_bydst[dir].table;
1305 for (i = hmask; i >= 0; i--) {
1306 hlist_for_each_entry_safe(policy, n, odst + i, bydst)
1307 hlist_del_rcu(&policy->bydst);
1309 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1310 /* dir out => dst = remote, src = local */
1311 net->xfrm.policy_bydst[dir].dbits4 = rbits4;
1312 net->xfrm.policy_bydst[dir].sbits4 = lbits4;
1313 net->xfrm.policy_bydst[dir].dbits6 = rbits6;
1314 net->xfrm.policy_bydst[dir].sbits6 = lbits6;
1316 /* dir in/fwd => dst = local, src = remote */
1317 net->xfrm.policy_bydst[dir].dbits4 = lbits4;
1318 net->xfrm.policy_bydst[dir].sbits4 = rbits4;
1319 net->xfrm.policy_bydst[dir].dbits6 = lbits6;
1320 net->xfrm.policy_bydst[dir].sbits6 = rbits6;
1324 /* re-insert all policies by order of creation */
1325 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
1326 if (policy->walk.dead)
1328 dir = xfrm_policy_id2dir(policy->index);
1329 if (dir >= XFRM_POLICY_MAX) {
1330 /* skip socket policies */
1334 chain = policy_hash_bysel(net, &policy->selector,
1335 policy->family, dir);
1338 void *p = xfrm_policy_inexact_insert(policy, dir, 0);
1340 WARN_ONCE(IS_ERR(p), "reinsert: %ld\n", PTR_ERR(p));
1344 hlist_for_each_entry(pol, chain, bydst) {
1345 if (policy->priority >= pol->priority)
1346 newpos = &pol->bydst;
1351 hlist_add_behind_rcu(&policy->bydst, newpos);
1353 hlist_add_head_rcu(&policy->bydst, chain);
1357 __xfrm_policy_inexact_flush(net);
1358 write_seqcount_end(&net->xfrm.xfrm_policy_hash_generation);
1359 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1361 mutex_unlock(&hash_resize_mutex);
1364 void xfrm_policy_hash_rebuild(struct net *net)
1366 schedule_work(&net->xfrm.policy_hthresh.work);
1368 EXPORT_SYMBOL(xfrm_policy_hash_rebuild);
1370 /* Generate new index... KAME seems to generate them ordered by cost
1371 * of an absolute inpredictability of ordering of rules. This will not pass. */
1372 static u32 xfrm_gen_index(struct net *net, int dir, u32 index)
1374 static u32 idx_generator;
1377 struct hlist_head *list;
1378 struct xfrm_policy *p;
1383 idx = (idx_generator | dir);
1392 list = net->xfrm.policy_byidx + idx_hash(net, idx);
1394 hlist_for_each_entry(p, list, byidx) {
1395 if (p->index == idx) {
1405 static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
1407 u32 *p1 = (u32 *) s1;
1408 u32 *p2 = (u32 *) s2;
1409 int len = sizeof(struct xfrm_selector) / sizeof(u32);
1412 for (i = 0; i < len; i++) {
1420 static void xfrm_policy_requeue(struct xfrm_policy *old,
1421 struct xfrm_policy *new)
1423 struct xfrm_policy_queue *pq = &old->polq;
1424 struct sk_buff_head list;
1426 if (skb_queue_empty(&pq->hold_queue))
1429 __skb_queue_head_init(&list);
1431 spin_lock_bh(&pq->hold_queue.lock);
1432 skb_queue_splice_init(&pq->hold_queue, &list);
1433 if (del_timer(&pq->hold_timer))
1435 spin_unlock_bh(&pq->hold_queue.lock);
1439 spin_lock_bh(&pq->hold_queue.lock);
1440 skb_queue_splice(&list, &pq->hold_queue);
1441 pq->timeout = XFRM_QUEUE_TMO_MIN;
1442 if (!mod_timer(&pq->hold_timer, jiffies))
1444 spin_unlock_bh(&pq->hold_queue.lock);
1447 static inline bool xfrm_policy_mark_match(const struct xfrm_mark *mark,
1448 struct xfrm_policy *pol)
1450 return mark->v == pol->mark.v && mark->m == pol->mark.m;
1453 static u32 xfrm_pol_bin_key(const void *data, u32 len, u32 seed)
1455 const struct xfrm_pol_inexact_key *k = data;
1456 u32 a = k->type << 24 | k->dir << 16 | k->family;
1458 return jhash_3words(a, k->if_id, net_hash_mix(read_pnet(&k->net)),
1462 static u32 xfrm_pol_bin_obj(const void *data, u32 len, u32 seed)
1464 const struct xfrm_pol_inexact_bin *b = data;
1466 return xfrm_pol_bin_key(&b->k, 0, seed);
1469 static int xfrm_pol_bin_cmp(struct rhashtable_compare_arg *arg,
1472 const struct xfrm_pol_inexact_key *key = arg->key;
1473 const struct xfrm_pol_inexact_bin *b = ptr;
1476 if (!net_eq(read_pnet(&b->k.net), read_pnet(&key->net)))
1479 ret = b->k.dir ^ key->dir;
1483 ret = b->k.type ^ key->type;
1487 ret = b->k.family ^ key->family;
1491 return b->k.if_id ^ key->if_id;
1494 static const struct rhashtable_params xfrm_pol_inexact_params = {
1495 .head_offset = offsetof(struct xfrm_pol_inexact_bin, head),
1496 .hashfn = xfrm_pol_bin_key,
1497 .obj_hashfn = xfrm_pol_bin_obj,
1498 .obj_cmpfn = xfrm_pol_bin_cmp,
1499 .automatic_shrinking = true,
1502 static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
1503 struct xfrm_policy *policy)
1505 struct xfrm_policy *pol, *delpol = NULL;
1506 struct hlist_node *newpos = NULL;
1509 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1510 if (pol->type == policy->type &&
1511 pol->if_id == policy->if_id &&
1512 !selector_cmp(&pol->selector, &policy->selector) &&
1513 xfrm_policy_mark_match(&policy->mark, pol) &&
1514 xfrm_sec_ctx_match(pol->security, policy->security) &&
1517 if (policy->priority > pol->priority)
1519 } else if (policy->priority >= pol->priority) {
1520 newpos = &pol->bydst_inexact_list;
1528 hlist_add_behind_rcu(&policy->bydst_inexact_list, newpos);
1530 hlist_add_head_rcu(&policy->bydst_inexact_list, chain);
1532 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1538 static struct xfrm_policy *xfrm_policy_insert_list(struct hlist_head *chain,
1539 struct xfrm_policy *policy,
1542 struct xfrm_policy *pol, *newpos = NULL, *delpol = NULL;
1544 hlist_for_each_entry(pol, chain, bydst) {
1545 if (pol->type == policy->type &&
1546 pol->if_id == policy->if_id &&
1547 !selector_cmp(&pol->selector, &policy->selector) &&
1548 xfrm_policy_mark_match(&policy->mark, pol) &&
1549 xfrm_sec_ctx_match(pol->security, policy->security) &&
1552 return ERR_PTR(-EEXIST);
1554 if (policy->priority > pol->priority)
1556 } else if (policy->priority >= pol->priority) {
1565 hlist_add_behind_rcu(&policy->bydst, &newpos->bydst);
1567 hlist_add_head_rcu(&policy->bydst, chain);
1572 int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
1574 struct net *net = xp_net(policy);
1575 struct xfrm_policy *delpol;
1576 struct hlist_head *chain;
1578 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1579 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
1581 delpol = xfrm_policy_insert_list(chain, policy, excl);
1583 delpol = xfrm_policy_inexact_insert(policy, dir, excl);
1585 if (IS_ERR(delpol)) {
1586 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1587 return PTR_ERR(delpol);
1590 __xfrm_policy_link(policy, dir);
1592 /* After previous checking, family can either be AF_INET or AF_INET6 */
1593 if (policy->family == AF_INET)
1594 rt_genid_bump_ipv4(net);
1596 rt_genid_bump_ipv6(net);
1599 xfrm_policy_requeue(delpol, policy);
1600 __xfrm_policy_unlink(delpol, dir);
1602 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir, policy->index);
1603 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
1604 policy->curlft.add_time = ktime_get_real_seconds();
1605 policy->curlft.use_time = 0;
1606 if (!mod_timer(&policy->timer, jiffies + HZ))
1607 xfrm_pol_hold(policy);
1608 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1611 xfrm_policy_kill(delpol);
1612 else if (xfrm_bydst_should_resize(net, dir, NULL))
1613 schedule_work(&net->xfrm.policy_hash_work);
1617 EXPORT_SYMBOL(xfrm_policy_insert);
1619 static struct xfrm_policy *
1620 __xfrm_policy_bysel_ctx(struct hlist_head *chain, const struct xfrm_mark *mark,
1621 u32 if_id, u8 type, int dir, struct xfrm_selector *sel,
1622 struct xfrm_sec_ctx *ctx)
1624 struct xfrm_policy *pol;
1629 hlist_for_each_entry(pol, chain, bydst) {
1630 if (pol->type == type &&
1631 pol->if_id == if_id &&
1632 xfrm_policy_mark_match(mark, pol) &&
1633 !selector_cmp(sel, &pol->selector) &&
1634 xfrm_sec_ctx_match(ctx, pol->security))
1641 struct xfrm_policy *
1642 xfrm_policy_bysel_ctx(struct net *net, const struct xfrm_mark *mark, u32 if_id,
1643 u8 type, int dir, struct xfrm_selector *sel,
1644 struct xfrm_sec_ctx *ctx, int delete, int *err)
1646 struct xfrm_pol_inexact_bin *bin = NULL;
1647 struct xfrm_policy *pol, *ret = NULL;
1648 struct hlist_head *chain;
1651 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1652 chain = policy_hash_bysel(net, sel, sel->family, dir);
1654 struct xfrm_pol_inexact_candidates cand;
1657 bin = xfrm_policy_inexact_lookup(net, type,
1658 sel->family, dir, if_id);
1660 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1664 if (!xfrm_policy_find_inexact_candidates(&cand, bin,
1667 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1672 for (i = 0; i < ARRAY_SIZE(cand.res); i++) {
1673 struct xfrm_policy *tmp;
1675 tmp = __xfrm_policy_bysel_ctx(cand.res[i], mark,
1681 if (!pol || tmp->pos < pol->pos)
1685 pol = __xfrm_policy_bysel_ctx(chain, mark, if_id, type, dir,
1692 *err = security_xfrm_policy_delete(pol->security);
1694 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1697 __xfrm_policy_unlink(pol, dir);
1701 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1704 xfrm_policy_kill(ret);
1706 xfrm_policy_inexact_prune_bin(bin);
1709 EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
1711 struct xfrm_policy *
1712 xfrm_policy_byid(struct net *net, const struct xfrm_mark *mark, u32 if_id,
1713 u8 type, int dir, u32 id, int delete, int *err)
1715 struct xfrm_policy *pol, *ret;
1716 struct hlist_head *chain;
1719 if (xfrm_policy_id2dir(id) != dir)
1723 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1724 chain = net->xfrm.policy_byidx + idx_hash(net, id);
1726 hlist_for_each_entry(pol, chain, byidx) {
1727 if (pol->type == type && pol->index == id &&
1728 pol->if_id == if_id && xfrm_policy_mark_match(mark, pol)) {
1731 *err = security_xfrm_policy_delete(
1734 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1737 __xfrm_policy_unlink(pol, dir);
1743 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1746 xfrm_policy_kill(ret);
1749 EXPORT_SYMBOL(xfrm_policy_byid);
1751 #ifdef CONFIG_SECURITY_NETWORK_XFRM
1753 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
1755 struct xfrm_policy *pol;
1758 list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1759 if (pol->walk.dead ||
1760 xfrm_policy_id2dir(pol->index) >= XFRM_POLICY_MAX ||
1764 err = security_xfrm_policy_delete(pol->security);
1766 xfrm_audit_policy_delete(pol, 0, task_valid);
1774 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
1780 int xfrm_policy_flush(struct net *net, u8 type, bool task_valid)
1782 int dir, err = 0, cnt = 0;
1783 struct xfrm_policy *pol;
1785 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1787 err = xfrm_policy_flush_secctx_check(net, type, task_valid);
1792 list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1793 dir = xfrm_policy_id2dir(pol->index);
1794 if (pol->walk.dead ||
1795 dir >= XFRM_POLICY_MAX ||
1799 __xfrm_policy_unlink(pol, dir);
1800 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1802 xfrm_audit_policy_delete(pol, 1, task_valid);
1803 xfrm_policy_kill(pol);
1804 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1808 __xfrm_policy_inexact_flush(net);
1812 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1815 EXPORT_SYMBOL(xfrm_policy_flush);
1817 int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
1818 int (*func)(struct xfrm_policy *, int, int, void*),
1821 struct xfrm_policy *pol;
1822 struct xfrm_policy_walk_entry *x;
1825 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
1826 walk->type != XFRM_POLICY_TYPE_ANY)
1829 if (list_empty(&walk->walk.all) && walk->seq != 0)
1832 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1833 if (list_empty(&walk->walk.all))
1834 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
1836 x = list_first_entry(&walk->walk.all,
1837 struct xfrm_policy_walk_entry, all);
1839 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
1842 pol = container_of(x, struct xfrm_policy, walk);
1843 if (walk->type != XFRM_POLICY_TYPE_ANY &&
1844 walk->type != pol->type)
1846 error = func(pol, xfrm_policy_id2dir(pol->index),
1849 list_move_tail(&walk->walk.all, &x->all);
1854 if (walk->seq == 0) {
1858 list_del_init(&walk->walk.all);
1860 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1863 EXPORT_SYMBOL(xfrm_policy_walk);
1865 void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
1867 INIT_LIST_HEAD(&walk->walk.all);
1868 walk->walk.dead = 1;
1872 EXPORT_SYMBOL(xfrm_policy_walk_init);
1874 void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net)
1876 if (list_empty(&walk->walk.all))
1879 spin_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME where is net? */
1880 list_del(&walk->walk.all);
1881 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1883 EXPORT_SYMBOL(xfrm_policy_walk_done);
1886 * Find policy to apply to this flow.
1888 * Returns 0 if policy found, else an -errno.
1890 static int xfrm_policy_match(const struct xfrm_policy *pol,
1891 const struct flowi *fl,
1892 u8 type, u16 family, u32 if_id)
1894 const struct xfrm_selector *sel = &pol->selector;
1898 if (pol->family != family ||
1899 pol->if_id != if_id ||
1900 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
1904 match = xfrm_selector_match(sel, fl, family);
1906 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, 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, 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, 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, if_id);
2076 static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
2077 const struct flowi *fl,
2081 struct xfrm_pol_inexact_candidates cand;
2082 const xfrm_address_t *daddr, *saddr;
2083 struct xfrm_pol_inexact_bin *bin;
2084 struct xfrm_policy *pol, *ret;
2085 struct hlist_head *chain;
2086 unsigned int sequence;
2089 daddr = xfrm_flowi_daddr(fl, family);
2090 saddr = xfrm_flowi_saddr(fl, family);
2091 if (unlikely(!daddr || !saddr))
2097 sequence = read_seqcount_begin(&net->xfrm.xfrm_policy_hash_generation);
2098 chain = policy_hash_direct(net, daddr, saddr, family, dir);
2099 } while (read_seqcount_retry(&net->xfrm.xfrm_policy_hash_generation, sequence));
2102 hlist_for_each_entry_rcu(pol, chain, bydst) {
2103 err = xfrm_policy_match(pol, fl, type, family, if_id);
2116 bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
2117 if (!bin || !xfrm_policy_find_inexact_candidates(&cand, bin, saddr,
2121 pol = xfrm_policy_eval_candidates(&cand, ret, fl, type,
2130 if (read_seqcount_retry(&net->xfrm.xfrm_policy_hash_generation, sequence))
2133 if (ret && !xfrm_pol_hold_rcu(ret))
2141 static struct xfrm_policy *xfrm_policy_lookup(struct net *net,
2142 const struct flowi *fl,
2143 u16 family, u8 dir, u32 if_id)
2145 #ifdef CONFIG_XFRM_SUB_POLICY
2146 struct xfrm_policy *pol;
2148 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family,
2153 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family,
2157 static struct xfrm_policy *xfrm_sk_policy_lookup(const struct sock *sk, int dir,
2158 const struct flowi *fl,
2159 u16 family, u32 if_id)
2161 struct xfrm_policy *pol;
2165 pol = rcu_dereference(sk->sk_policy[dir]);
2170 if (pol->family != family) {
2175 match = xfrm_selector_match(&pol->selector, fl, family);
2177 if ((sk->sk_mark & pol->mark.m) != pol->mark.v ||
2178 pol->if_id != if_id) {
2182 err = security_xfrm_policy_lookup(pol->security,
2185 if (!xfrm_pol_hold_rcu(pol))
2187 } else if (err == -ESRCH) {
2200 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
2202 struct net *net = xp_net(pol);
2204 list_add(&pol->walk.all, &net->xfrm.policy_all);
2205 net->xfrm.policy_count[dir]++;
2209 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
2212 struct net *net = xp_net(pol);
2214 if (list_empty(&pol->walk.all))
2217 /* Socket policies are not hashed. */
2218 if (!hlist_unhashed(&pol->bydst)) {
2219 hlist_del_rcu(&pol->bydst);
2220 hlist_del_init(&pol->bydst_inexact_list);
2221 hlist_del(&pol->byidx);
2224 list_del_init(&pol->walk.all);
2225 net->xfrm.policy_count[dir]--;
2230 static void xfrm_sk_policy_link(struct xfrm_policy *pol, int dir)
2232 __xfrm_policy_link(pol, XFRM_POLICY_MAX + dir);
2235 static void xfrm_sk_policy_unlink(struct xfrm_policy *pol, int dir)
2237 __xfrm_policy_unlink(pol, XFRM_POLICY_MAX + dir);
2240 int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
2242 struct net *net = xp_net(pol);
2244 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2245 pol = __xfrm_policy_unlink(pol, dir);
2246 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2248 xfrm_policy_kill(pol);
2253 EXPORT_SYMBOL(xfrm_policy_delete);
2255 int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
2257 struct net *net = sock_net(sk);
2258 struct xfrm_policy *old_pol;
2260 #ifdef CONFIG_XFRM_SUB_POLICY
2261 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
2265 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2266 old_pol = rcu_dereference_protected(sk->sk_policy[dir],
2267 lockdep_is_held(&net->xfrm.xfrm_policy_lock));
2269 pol->curlft.add_time = ktime_get_real_seconds();
2270 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir, 0);
2271 xfrm_sk_policy_link(pol, dir);
2273 rcu_assign_pointer(sk->sk_policy[dir], pol);
2276 xfrm_policy_requeue(old_pol, pol);
2278 /* Unlinking succeeds always. This is the only function
2279 * allowed to delete or replace socket policy.
2281 xfrm_sk_policy_unlink(old_pol, dir);
2283 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2286 xfrm_policy_kill(old_pol);
2291 static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
2293 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
2294 struct net *net = xp_net(old);
2297 newp->selector = old->selector;
2298 if (security_xfrm_policy_clone(old->security,
2301 return NULL; /* ENOMEM */
2303 newp->lft = old->lft;
2304 newp->curlft = old->curlft;
2305 newp->mark = old->mark;
2306 newp->if_id = old->if_id;
2307 newp->action = old->action;
2308 newp->flags = old->flags;
2309 newp->xfrm_nr = old->xfrm_nr;
2310 newp->index = old->index;
2311 newp->type = old->type;
2312 newp->family = old->family;
2313 memcpy(newp->xfrm_vec, old->xfrm_vec,
2314 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
2315 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2316 xfrm_sk_policy_link(newp, dir);
2317 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2323 int __xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk)
2325 const struct xfrm_policy *p;
2326 struct xfrm_policy *np;
2330 for (i = 0; i < 2; i++) {
2331 p = rcu_dereference(osk->sk_policy[i]);
2333 np = clone_policy(p, i);
2334 if (unlikely(!np)) {
2338 rcu_assign_pointer(sk->sk_policy[i], np);
2346 xfrm_get_saddr(struct net *net, int oif, xfrm_address_t *local,
2347 xfrm_address_t *remote, unsigned short family, u32 mark)
2350 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2352 if (unlikely(afinfo == NULL))
2354 err = afinfo->get_saddr(net, oif, local, remote, mark);
2359 /* Resolve list of templates for the flow, given policy. */
2362 xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
2363 struct xfrm_state **xfrm, unsigned short family)
2365 struct net *net = xp_net(policy);
2368 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
2369 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
2372 for (nx = 0, i = 0; i < policy->xfrm_nr; i++) {
2373 struct xfrm_state *x;
2374 xfrm_address_t *remote = daddr;
2375 xfrm_address_t *local = saddr;
2376 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
2378 if (tmpl->mode == XFRM_MODE_TUNNEL ||
2379 tmpl->mode == XFRM_MODE_BEET) {
2380 remote = &tmpl->id.daddr;
2381 local = &tmpl->saddr;
2382 if (xfrm_addr_any(local, tmpl->encap_family)) {
2383 error = xfrm_get_saddr(net, fl->flowi_oif,
2385 tmpl->encap_family, 0);
2392 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error,
2393 family, policy->if_id);
2395 if (x && x->km.state == XFRM_STATE_VALID) {
2402 error = (x->km.state == XFRM_STATE_ERROR ?
2405 } else if (error == -ESRCH) {
2409 if (!tmpl->optional)
2415 for (nx--; nx >= 0; nx--)
2416 xfrm_state_put(xfrm[nx]);
2421 xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
2422 struct xfrm_state **xfrm, unsigned short family)
2424 struct xfrm_state *tp[XFRM_MAX_DEPTH];
2425 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
2431 for (i = 0; i < npols; i++) {
2432 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
2437 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
2445 /* found states are sorted for outbound processing */
2447 xfrm_state_sort(xfrm, tpp, cnx, family);
2452 for (cnx--; cnx >= 0; cnx--)
2453 xfrm_state_put(tpp[cnx]);
2458 static int xfrm_get_tos(const struct flowi *fl, int family)
2460 if (family == AF_INET)
2461 return IPTOS_RT_MASK & fl->u.ip4.flowi4_tos;
2466 static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
2468 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2469 struct dst_ops *dst_ops;
2470 struct xfrm_dst *xdst;
2473 return ERR_PTR(-EINVAL);
2477 dst_ops = &net->xfrm.xfrm4_dst_ops;
2479 #if IS_ENABLED(CONFIG_IPV6)
2481 dst_ops = &net->xfrm.xfrm6_dst_ops;
2487 xdst = dst_alloc(dst_ops, NULL, 1, DST_OBSOLETE_NONE, 0);
2490 memset_after(xdst, 0, u.dst);
2492 xdst = ERR_PTR(-ENOBUFS);
2499 static void xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
2502 if (dst->ops->family == AF_INET6) {
2503 struct rt6_info *rt = (struct rt6_info *)dst;
2504 path->path_cookie = rt6_get_cookie(rt);
2505 path->u.rt6.rt6i_nfheader_len = nfheader_len;
2509 static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
2510 const struct flowi *fl)
2512 const struct xfrm_policy_afinfo *afinfo =
2513 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
2519 err = afinfo->fill_dst(xdst, dev, fl);
2527 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
2528 * all the metrics... Shortly, bundle a bundle.
2531 static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
2532 struct xfrm_state **xfrm,
2533 struct xfrm_dst **bundle,
2535 const struct flowi *fl,
2536 struct dst_entry *dst)
2538 const struct xfrm_state_afinfo *afinfo;
2539 const struct xfrm_mode *inner_mode;
2540 struct net *net = xp_net(policy);
2541 unsigned long now = jiffies;
2542 struct net_device *dev;
2543 struct xfrm_dst *xdst_prev = NULL;
2544 struct xfrm_dst *xdst0 = NULL;
2548 int nfheader_len = 0;
2549 int trailer_len = 0;
2551 int family = policy->selector.family;
2552 xfrm_address_t saddr, daddr;
2554 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
2556 tos = xfrm_get_tos(fl, family);
2560 for (; i < nx; i++) {
2561 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
2562 struct dst_entry *dst1 = &xdst->u.dst;
2564 err = PTR_ERR(xdst);
2574 /* Ref count is taken during xfrm_alloc_dst()
2575 * No need to do dst_clone() on dst1
2577 xfrm_dst_set_child(xdst_prev, &xdst->u.dst);
2579 if (xfrm[i]->sel.family == AF_UNSPEC) {
2580 inner_mode = xfrm_ip2inner_mode(xfrm[i],
2581 xfrm_af2proto(family));
2583 err = -EAFNOSUPPORT;
2588 inner_mode = &xfrm[i]->inner_mode;
2591 dst_copy_metrics(dst1, dst);
2593 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
2597 if (xfrm[i]->props.smark.v || xfrm[i]->props.smark.m)
2598 mark = xfrm_smark_get(fl->flowi_mark, xfrm[i]);
2600 family = xfrm[i]->props.family;
2601 oif = fl->flowi_oif ? : fl->flowi_l3mdev;
2602 dst = xfrm_dst_lookup(xfrm[i], tos, oif,
2603 &saddr, &daddr, family, mark);
2610 dst1->xfrm = xfrm[i];
2611 xdst->xfrm_genid = xfrm[i]->genid;
2613 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2614 dst1->lastuse = now;
2616 dst1->input = dst_discard;
2619 afinfo = xfrm_state_afinfo_get_rcu(inner_mode->family);
2621 dst1->output = afinfo->output;
2623 dst1->output = dst_discard_out;
2628 header_len += xfrm[i]->props.header_len;
2629 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
2630 nfheader_len += xfrm[i]->props.header_len;
2631 trailer_len += xfrm[i]->props.trailer_len;
2634 xfrm_dst_set_child(xdst_prev, dst);
2642 xfrm_init_path(xdst0, dst, nfheader_len);
2643 xfrm_init_pmtu(bundle, nx);
2645 for (xdst_prev = xdst0; xdst_prev != (struct xfrm_dst *)dst;
2646 xdst_prev = (struct xfrm_dst *) xfrm_dst_child(&xdst_prev->u.dst)) {
2647 err = xfrm_fill_dst(xdst_prev, dev, fl);
2651 xdst_prev->u.dst.header_len = header_len;
2652 xdst_prev->u.dst.trailer_len = trailer_len;
2653 header_len -= xdst_prev->u.dst.xfrm->props.header_len;
2654 trailer_len -= xdst_prev->u.dst.xfrm->props.trailer_len;
2657 return &xdst0->u.dst;
2661 xfrm_state_put(xfrm[i]);
2664 dst_release_immediate(&xdst0->u.dst);
2666 return ERR_PTR(err);
2669 static int xfrm_expand_policies(const struct flowi *fl, u16 family,
2670 struct xfrm_policy **pols,
2671 int *num_pols, int *num_xfrms)
2675 if (*num_pols == 0 || !pols[0]) {
2680 if (IS_ERR(pols[0])) {
2682 return PTR_ERR(pols[0]);
2685 *num_xfrms = pols[0]->xfrm_nr;
2687 #ifdef CONFIG_XFRM_SUB_POLICY
2688 if (pols[0]->action == XFRM_POLICY_ALLOW &&
2689 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
2690 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
2691 XFRM_POLICY_TYPE_MAIN,
2696 if (IS_ERR(pols[1])) {
2697 xfrm_pols_put(pols, *num_pols);
2699 return PTR_ERR(pols[1]);
2702 (*num_xfrms) += pols[1]->xfrm_nr;
2706 for (i = 0; i < *num_pols; i++) {
2707 if (pols[i]->action != XFRM_POLICY_ALLOW) {
2717 static struct xfrm_dst *
2718 xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
2719 const struct flowi *fl, u16 family,
2720 struct dst_entry *dst_orig)
2722 struct net *net = xp_net(pols[0]);
2723 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
2724 struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
2725 struct xfrm_dst *xdst;
2726 struct dst_entry *dst;
2729 /* Try to instantiate a bundle */
2730 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
2736 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2737 return ERR_PTR(err);
2740 dst = xfrm_bundle_create(pols[0], xfrm, bundle, err, fl, dst_orig);
2742 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
2743 return ERR_CAST(dst);
2746 xdst = (struct xfrm_dst *)dst;
2747 xdst->num_xfrms = err;
2748 xdst->num_pols = num_pols;
2749 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
2750 xdst->policy_genid = atomic_read(&pols[0]->genid);
2755 static void xfrm_policy_queue_process(struct timer_list *t)
2757 struct sk_buff *skb;
2759 struct dst_entry *dst;
2760 struct xfrm_policy *pol = from_timer(pol, t, polq.hold_timer);
2761 struct net *net = xp_net(pol);
2762 struct xfrm_policy_queue *pq = &pol->polq;
2764 struct sk_buff_head list;
2767 spin_lock(&pq->hold_queue.lock);
2768 skb = skb_peek(&pq->hold_queue);
2770 spin_unlock(&pq->hold_queue.lock);
2776 /* Fixup the mark to support VTI. */
2777 skb_mark = skb->mark;
2778 skb->mark = pol->mark.v;
2779 xfrm_decode_session(skb, &fl, dst->ops->family);
2780 skb->mark = skb_mark;
2781 spin_unlock(&pq->hold_queue.lock);
2783 dst_hold(xfrm_dst_path(dst));
2784 dst = xfrm_lookup(net, xfrm_dst_path(dst), &fl, sk, XFRM_LOOKUP_QUEUE);
2788 if (dst->flags & DST_XFRM_QUEUE) {
2791 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
2794 pq->timeout = pq->timeout << 1;
2795 if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
2802 __skb_queue_head_init(&list);
2804 spin_lock(&pq->hold_queue.lock);
2806 skb_queue_splice_init(&pq->hold_queue, &list);
2807 spin_unlock(&pq->hold_queue.lock);
2809 while (!skb_queue_empty(&list)) {
2810 skb = __skb_dequeue(&list);
2812 /* Fixup the mark to support VTI. */
2813 skb_mark = skb->mark;
2814 skb->mark = pol->mark.v;
2815 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
2816 skb->mark = skb_mark;
2818 dst_hold(xfrm_dst_path(skb_dst(skb)));
2819 dst = xfrm_lookup(net, xfrm_dst_path(skb_dst(skb)), &fl, skb->sk, 0);
2827 skb_dst_set(skb, dst);
2829 dst_output(net, skb->sk, skb);
2838 skb_queue_purge(&pq->hold_queue);
2842 static int xdst_queue_output(struct net *net, struct sock *sk, struct sk_buff *skb)
2844 unsigned long sched_next;
2845 struct dst_entry *dst = skb_dst(skb);
2846 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
2847 struct xfrm_policy *pol = xdst->pols[0];
2848 struct xfrm_policy_queue *pq = &pol->polq;
2850 if (unlikely(skb_fclone_busy(sk, skb))) {
2855 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
2862 spin_lock_bh(&pq->hold_queue.lock);
2865 pq->timeout = XFRM_QUEUE_TMO_MIN;
2867 sched_next = jiffies + pq->timeout;
2869 if (del_timer(&pq->hold_timer)) {
2870 if (time_before(pq->hold_timer.expires, sched_next))
2871 sched_next = pq->hold_timer.expires;
2875 __skb_queue_tail(&pq->hold_queue, skb);
2876 if (!mod_timer(&pq->hold_timer, sched_next))
2879 spin_unlock_bh(&pq->hold_queue.lock);
2884 static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
2885 struct xfrm_flo *xflo,
2886 const struct flowi *fl,
2891 struct net_device *dev;
2892 struct dst_entry *dst;
2893 struct dst_entry *dst1;
2894 struct xfrm_dst *xdst;
2896 xdst = xfrm_alloc_dst(net, family);
2900 if (!(xflo->flags & XFRM_LOOKUP_QUEUE) ||
2901 net->xfrm.sysctl_larval_drop ||
2905 dst = xflo->dst_orig;
2906 dst1 = &xdst->u.dst;
2910 dst_copy_metrics(dst1, dst);
2912 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2913 dst1->flags |= DST_XFRM_QUEUE;
2914 dst1->lastuse = jiffies;
2916 dst1->input = dst_discard;
2917 dst1->output = xdst_queue_output;
2920 xfrm_dst_set_child(xdst, dst);
2923 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
2930 err = xfrm_fill_dst(xdst, dev, fl);
2939 xdst = ERR_PTR(err);
2943 static struct xfrm_dst *xfrm_bundle_lookup(struct net *net,
2944 const struct flowi *fl,
2946 struct xfrm_flo *xflo, u32 if_id)
2948 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2949 int num_pols = 0, num_xfrms = 0, err;
2950 struct xfrm_dst *xdst;
2952 /* Resolve policies to use if we couldn't get them from
2953 * previous cache entry */
2955 pols[0] = xfrm_policy_lookup(net, fl, family, dir, if_id);
2956 err = xfrm_expand_policies(fl, family, pols,
2957 &num_pols, &num_xfrms);
2963 goto make_dummy_bundle;
2965 xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family,
2968 err = PTR_ERR(xdst);
2969 if (err == -EREMOTE) {
2970 xfrm_pols_put(pols, num_pols);
2976 goto make_dummy_bundle;
2977 } else if (xdst == NULL) {
2979 goto make_dummy_bundle;
2985 /* We found policies, but there's no bundles to instantiate:
2986 * either because the policy blocks, has no transformations or
2987 * we could not build template (no xfrm_states).*/
2988 xdst = xfrm_create_dummy_bundle(net, xflo, fl, num_xfrms, family);
2990 xfrm_pols_put(pols, num_pols);
2991 return ERR_CAST(xdst);
2993 xdst->num_pols = num_pols;
2994 xdst->num_xfrms = num_xfrms;
2995 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
3000 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
3002 xfrm_pols_put(pols, num_pols);
3003 return ERR_PTR(err);
3006 static struct dst_entry *make_blackhole(struct net *net, u16 family,
3007 struct dst_entry *dst_orig)
3009 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
3010 struct dst_entry *ret;
3013 dst_release(dst_orig);
3014 return ERR_PTR(-EINVAL);
3016 ret = afinfo->blackhole_route(net, dst_orig);
3023 /* Finds/creates a bundle for given flow and if_id
3025 * At the moment we eat a raw IP route. Mostly to speed up lookups
3026 * on interfaces with disabled IPsec.
3028 * xfrm_lookup uses an if_id of 0 by default, and is provided for
3031 struct dst_entry *xfrm_lookup_with_ifid(struct net *net,
3032 struct dst_entry *dst_orig,
3033 const struct flowi *fl,
3034 const struct sock *sk,
3035 int flags, u32 if_id)
3037 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3038 struct xfrm_dst *xdst;
3039 struct dst_entry *dst, *route;
3040 u16 family = dst_orig->ops->family;
3041 u8 dir = XFRM_POLICY_OUT;
3042 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
3048 sk = sk_const_to_full_sk(sk);
3049 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
3051 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, family,
3053 err = xfrm_expand_policies(fl, family, pols,
3054 &num_pols, &num_xfrms);
3059 if (num_xfrms <= 0) {
3060 drop_pols = num_pols;
3064 xdst = xfrm_resolve_and_create_bundle(
3069 xfrm_pols_put(pols, num_pols);
3070 err = PTR_ERR(xdst);
3071 if (err == -EREMOTE)
3075 } else if (xdst == NULL) {
3077 drop_pols = num_pols;
3081 route = xdst->route;
3086 struct xfrm_flo xflo;
3088 xflo.dst_orig = dst_orig;
3091 /* To accelerate a bit... */
3092 if (!if_id && ((dst_orig->flags & DST_NOXFRM) ||
3093 !net->xfrm.policy_count[XFRM_POLICY_OUT]))
3096 xdst = xfrm_bundle_lookup(net, fl, family, dir, &xflo, if_id);
3100 err = PTR_ERR(xdst);
3104 num_pols = xdst->num_pols;
3105 num_xfrms = xdst->num_xfrms;
3106 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
3107 route = xdst->route;
3111 if (route == NULL && num_xfrms > 0) {
3112 /* The only case when xfrm_bundle_lookup() returns a
3113 * bundle with null route, is when the template could
3114 * not be resolved. It means policies are there, but
3115 * bundle could not be created, since we don't yet
3116 * have the xfrm_state's. We need to wait for KM to
3117 * negotiate new SA's or bail out with error.*/
3118 if (net->xfrm.sysctl_larval_drop) {
3119 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3126 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3134 if ((flags & XFRM_LOOKUP_ICMP) &&
3135 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
3140 for (i = 0; i < num_pols; i++)
3141 pols[i]->curlft.use_time = ktime_get_real_seconds();
3143 if (num_xfrms < 0) {
3144 /* Prohibit the flow */
3145 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
3148 } else if (num_xfrms > 0) {
3149 /* Flow transformed */
3150 dst_release(dst_orig);
3152 /* Flow passes untransformed */
3157 xfrm_pols_put(pols, drop_pols);
3158 if (dst && dst->xfrm &&
3159 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
3160 dst->flags |= DST_XFRM_TUNNEL;
3164 if ((!dst_orig->dev || !(dst_orig->dev->flags & IFF_LOOPBACK)) &&
3165 net->xfrm.policy_default[dir] == XFRM_USERPOLICY_BLOCK) {
3169 if (!(flags & XFRM_LOOKUP_ICMP)) {
3177 if (!(flags & XFRM_LOOKUP_KEEP_DST_REF))
3178 dst_release(dst_orig);
3179 xfrm_pols_put(pols, drop_pols);
3180 return ERR_PTR(err);
3182 EXPORT_SYMBOL(xfrm_lookup_with_ifid);
3184 /* Main function: finds/creates a bundle for given flow.
3186 * At the moment we eat a raw IP route. Mostly to speed up lookups
3187 * on interfaces with disabled IPsec.
3189 struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
3190 const struct flowi *fl, const struct sock *sk,
3193 return xfrm_lookup_with_ifid(net, dst_orig, fl, sk, flags, 0);
3195 EXPORT_SYMBOL(xfrm_lookup);
3197 /* Callers of xfrm_lookup_route() must ensure a call to dst_output().
3198 * Otherwise we may send out blackholed packets.
3200 struct dst_entry *xfrm_lookup_route(struct net *net, struct dst_entry *dst_orig,
3201 const struct flowi *fl,
3202 const struct sock *sk, int flags)
3204 struct dst_entry *dst = xfrm_lookup(net, dst_orig, fl, sk,
3205 flags | XFRM_LOOKUP_QUEUE |
3206 XFRM_LOOKUP_KEEP_DST_REF);
3208 if (PTR_ERR(dst) == -EREMOTE)
3209 return make_blackhole(net, dst_orig->ops->family, dst_orig);
3212 dst_release(dst_orig);
3216 EXPORT_SYMBOL(xfrm_lookup_route);
3219 xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
3221 struct sec_path *sp = skb_sec_path(skb);
3222 struct xfrm_state *x;
3224 if (!sp || idx < 0 || idx >= sp->len)
3227 if (!x->type->reject)
3229 return x->type->reject(x, skb, fl);
3232 /* When skb is transformed back to its "native" form, we have to
3233 * check policy restrictions. At the moment we make this in maximally
3234 * stupid way. Shame on me. :-) Of course, connected sockets must
3235 * have policy cached at them.
3239 xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
3240 unsigned short family, u32 if_id)
3242 if (xfrm_state_kern(x))
3243 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
3244 return x->id.proto == tmpl->id.proto &&
3245 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
3246 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
3247 x->props.mode == tmpl->mode &&
3248 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
3249 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
3250 !(x->props.mode != XFRM_MODE_TRANSPORT &&
3251 xfrm_state_addr_cmp(tmpl, x, family)) &&
3252 (if_id == 0 || if_id == x->if_id);
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, u32 if_id)
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, if_id))
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 & ~INET_ECN_MASK;
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;
3404 case IPPROTO_UDPLITE:
3408 if (!onlyproto && (nh + offset + 4 < skb->data ||
3409 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
3412 nh = skb_network_header(skb);
3413 ports = (__be16 *)(nh + offset);
3414 fl6->fl6_sport = ports[!!reverse];
3415 fl6->fl6_dport = ports[!reverse];
3417 fl6->flowi6_proto = nexthdr;
3419 case IPPROTO_ICMPV6:
3420 if (!onlyproto && (nh + offset + 2 < skb->data ||
3421 pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
3424 nh = skb_network_header(skb);
3425 icmp = (u8 *)(nh + offset);
3426 fl6->fl6_icmp_type = icmp[0];
3427 fl6->fl6_icmp_code = icmp[1];
3429 fl6->flowi6_proto = nexthdr;
3433 (nh + offset + 12 < skb->data ||
3434 pskb_may_pull(skb, nh + offset + 12 - skb->data))) {
3435 struct gre_base_hdr *gre_hdr;
3438 nh = skb_network_header(skb);
3439 gre_hdr = (struct gre_base_hdr *)(nh + offset);
3440 gre_key = (__be32 *)(gre_hdr + 1);
3442 if (gre_hdr->flags & GRE_KEY) {
3443 if (gre_hdr->flags & GRE_CSUM)
3445 fl6->fl6_gre_key = *gre_key;
3448 fl6->flowi6_proto = nexthdr;
3451 #if IS_ENABLED(CONFIG_IPV6_MIP6)
3453 offset += ipv6_optlen(exthdr);
3454 if (!onlyproto && (nh + offset + 3 < skb->data ||
3455 pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
3458 nh = skb_network_header(skb);
3459 mh = (struct ip6_mh *)(nh + offset);
3460 fl6->fl6_mh_type = mh->ip6mh_type;
3462 fl6->flowi6_proto = nexthdr;
3466 fl6->flowi6_proto = nexthdr;
3473 int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
3474 unsigned int family, int reverse)
3478 decode_session4(skb, fl, reverse);
3480 #if IS_ENABLED(CONFIG_IPV6)
3482 decode_session6(skb, fl, reverse);
3486 return -EAFNOSUPPORT;
3489 return security_xfrm_decode_session(skb, &fl->flowi_secid);
3491 EXPORT_SYMBOL(__xfrm_decode_session);
3493 static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
3495 for (; k < sp->len; k++) {
3496 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
3505 int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
3506 unsigned short family)
3508 struct net *net = dev_net(skb->dev);
3509 struct xfrm_policy *pol;
3510 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3517 const struct xfrm_if_cb *ifcb;
3518 struct sec_path *sp;
3522 ifcb = xfrm_if_get_cb();
3525 struct xfrm_if_decode_session_result r;
3527 if (ifcb->decode_session(skb, family, &r)) {
3534 reverse = dir & ~XFRM_POLICY_MASK;
3535 dir &= XFRM_POLICY_MASK;
3537 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
3538 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
3542 nf_nat_decode_session(skb, &fl, family);
3544 /* First, check used SA against their selectors. */
3545 sp = skb_sec_path(skb);
3549 for (i = sp->len - 1; i >= 0; i--) {
3550 struct xfrm_state *x = sp->xvec[i];
3551 if (!xfrm_selector_match(&x->sel, &fl, family)) {
3552 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
3559 sk = sk_to_full_sk(sk);
3560 if (sk && sk->sk_policy[dir]) {
3561 pol = xfrm_sk_policy_lookup(sk, dir, &fl, family, if_id);
3563 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3569 pol = xfrm_policy_lookup(net, &fl, family, dir, if_id);
3572 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3577 if (net->xfrm.policy_default[dir] == XFRM_USERPOLICY_BLOCK) {
3578 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
3582 if (sp && secpath_has_nontransport(sp, 0, &xerr_idx)) {
3583 xfrm_secpath_reject(xerr_idx, skb, &fl);
3584 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
3590 /* This lockless write can happen from different cpus. */
3591 WRITE_ONCE(pol->curlft.use_time, ktime_get_real_seconds());
3595 #ifdef CONFIG_XFRM_SUB_POLICY
3596 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
3597 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
3599 XFRM_POLICY_IN, if_id);
3601 if (IS_ERR(pols[1])) {
3602 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3603 xfrm_pol_put(pols[0]);
3606 /* This write can happen from different cpus. */
3607 WRITE_ONCE(pols[1]->curlft.use_time,
3608 ktime_get_real_seconds());
3614 if (pol->action == XFRM_POLICY_ALLOW) {
3615 static struct sec_path dummy;
3616 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
3617 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
3618 struct xfrm_tmpl **tpp = tp;
3622 sp = skb_sec_path(skb);
3626 for (pi = 0; pi < npols; pi++) {
3627 if (pols[pi] != pol &&
3628 pols[pi]->action != XFRM_POLICY_ALLOW) {
3629 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3632 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
3633 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
3636 for (i = 0; i < pols[pi]->xfrm_nr; i++)
3637 tpp[ti++] = &pols[pi]->xfrm_vec[i];
3642 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
3646 /* For each tunnel xfrm, find the first matching tmpl.
3647 * For each tmpl before that, find corresponding xfrm.
3648 * Order is _important_. Later we will implement
3649 * some barriers, but at the moment barriers
3650 * are implied between each two transformations.
3652 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
3653 k = xfrm_policy_ok(tpp[i], sp, k, family, if_id);
3656 /* "-2 - errored_index" returned */
3658 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3663 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
3664 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3668 xfrm_pols_put(pols, npols);
3671 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3674 xfrm_secpath_reject(xerr_idx, skb, &fl);
3676 xfrm_pols_put(pols, npols);
3679 EXPORT_SYMBOL(__xfrm_policy_check);
3681 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
3683 struct net *net = dev_net(skb->dev);
3685 struct dst_entry *dst;
3688 if (xfrm_decode_session(skb, &fl, family) < 0) {
3689 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3694 if (!skb_dst(skb)) {
3695 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3699 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, XFRM_LOOKUP_QUEUE);
3704 skb_dst_set(skb, dst);
3707 EXPORT_SYMBOL(__xfrm_route_forward);
3709 /* Optimize later using cookies and generation ids. */
3711 static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
3713 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
3714 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
3715 * get validated by dst_ops->check on every use. We do this
3716 * because when a normal route referenced by an XFRM dst is
3717 * obsoleted we do not go looking around for all parent
3718 * referencing XFRM dsts so that we can invalidate them. It
3719 * is just too much work. Instead we make the checks here on
3720 * every use. For example:
3722 * XFRM dst A --> IPv4 dst X
3724 * X is the "xdst->route" of A (X is also the "dst->path" of A
3725 * in this example). If X is marked obsolete, "A" will not
3726 * notice. That's what we are validating here via the
3727 * stale_bundle() check.
3729 * When a dst is removed from the fib tree, DST_OBSOLETE_DEAD will
3731 * This will force stale_bundle() to fail on any xdst bundle with
3732 * this dst linked in it.
3734 if (dst->obsolete < 0 && !stale_bundle(dst))
3740 static int stale_bundle(struct dst_entry *dst)
3742 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
3745 void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
3747 while ((dst = xfrm_dst_child(dst)) && dst->xfrm && dst->dev == dev) {
3748 dst->dev = blackhole_netdev;
3753 EXPORT_SYMBOL(xfrm_dst_ifdown);
3755 static void xfrm_link_failure(struct sk_buff *skb)
3757 /* Impossible. Such dst must be popped before reaches point of failure. */
3760 static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
3763 if (dst->obsolete) {
3771 static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr)
3774 struct xfrm_dst *xdst = bundle[nr];
3775 u32 pmtu, route_mtu_cached;
3776 struct dst_entry *dst;
3779 pmtu = dst_mtu(xfrm_dst_child(dst));
3780 xdst->child_mtu_cached = pmtu;
3782 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
3784 route_mtu_cached = dst_mtu(xdst->route);
3785 xdst->route_mtu_cached = route_mtu_cached;
3787 if (pmtu > route_mtu_cached)
3788 pmtu = route_mtu_cached;
3790 dst_metric_set(dst, RTAX_MTU, pmtu);
3794 /* Check that the bundle accepts the flow and its components are
3798 static int xfrm_bundle_ok(struct xfrm_dst *first)
3800 struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
3801 struct dst_entry *dst = &first->u.dst;
3802 struct xfrm_dst *xdst;
3806 if (!dst_check(xfrm_dst_path(dst), ((struct xfrm_dst *)dst)->path_cookie) ||
3807 (dst->dev && !netif_running(dst->dev)))
3810 if (dst->flags & DST_XFRM_QUEUE)
3813 start_from = nr = 0;
3815 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
3817 if (dst->xfrm->km.state != XFRM_STATE_VALID)
3819 if (xdst->xfrm_genid != dst->xfrm->genid)
3821 if (xdst->num_pols > 0 &&
3822 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
3825 bundle[nr++] = xdst;
3827 mtu = dst_mtu(xfrm_dst_child(dst));
3828 if (xdst->child_mtu_cached != mtu) {
3830 xdst->child_mtu_cached = mtu;
3833 if (!dst_check(xdst->route, xdst->route_cookie))
3835 mtu = dst_mtu(xdst->route);
3836 if (xdst->route_mtu_cached != mtu) {
3838 xdst->route_mtu_cached = mtu;
3841 dst = xfrm_dst_child(dst);
3842 } while (dst->xfrm);
3844 if (likely(!start_from))
3847 xdst = bundle[start_from - 1];
3848 mtu = xdst->child_mtu_cached;
3849 while (start_from--) {
3852 mtu = xfrm_state_mtu(dst->xfrm, mtu);
3853 if (mtu > xdst->route_mtu_cached)
3854 mtu = xdst->route_mtu_cached;
3855 dst_metric_set(dst, RTAX_MTU, mtu);
3859 xdst = bundle[start_from - 1];
3860 xdst->child_mtu_cached = mtu;
3866 static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
3868 return dst_metric_advmss(xfrm_dst_path(dst));
3871 static unsigned int xfrm_mtu(const struct dst_entry *dst)
3873 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
3875 return mtu ? : dst_mtu(xfrm_dst_path(dst));
3878 static const void *xfrm_get_dst_nexthop(const struct dst_entry *dst,
3882 const struct xfrm_state *xfrm = dst->xfrm;
3884 dst = xfrm_dst_child(dst);
3886 if (xfrm->props.mode == XFRM_MODE_TRANSPORT)
3888 if (xfrm->type->flags & XFRM_TYPE_REMOTE_COADDR)
3889 daddr = xfrm->coaddr;
3890 else if (!(xfrm->type->flags & XFRM_TYPE_LOCAL_COADDR))
3891 daddr = &xfrm->id.daddr;
3896 static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
3897 struct sk_buff *skb,
3900 const struct dst_entry *path = xfrm_dst_path(dst);
3903 daddr = xfrm_get_dst_nexthop(dst, daddr);
3904 return path->ops->neigh_lookup(path, skb, daddr);
3907 static void xfrm_confirm_neigh(const struct dst_entry *dst, const void *daddr)
3909 const struct dst_entry *path = xfrm_dst_path(dst);
3911 daddr = xfrm_get_dst_nexthop(dst, daddr);
3912 path->ops->confirm_neigh(path, daddr);
3915 int xfrm_policy_register_afinfo(const struct xfrm_policy_afinfo *afinfo, int family)
3919 if (WARN_ON(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
3920 return -EAFNOSUPPORT;
3922 spin_lock(&xfrm_policy_afinfo_lock);
3923 if (unlikely(xfrm_policy_afinfo[family] != NULL))
3926 struct dst_ops *dst_ops = afinfo->dst_ops;
3927 if (likely(dst_ops->kmem_cachep == NULL))
3928 dst_ops->kmem_cachep = xfrm_dst_cache;
3929 if (likely(dst_ops->check == NULL))
3930 dst_ops->check = xfrm_dst_check;
3931 if (likely(dst_ops->default_advmss == NULL))
3932 dst_ops->default_advmss = xfrm_default_advmss;
3933 if (likely(dst_ops->mtu == NULL))
3934 dst_ops->mtu = xfrm_mtu;
3935 if (likely(dst_ops->negative_advice == NULL))
3936 dst_ops->negative_advice = xfrm_negative_advice;
3937 if (likely(dst_ops->link_failure == NULL))
3938 dst_ops->link_failure = xfrm_link_failure;
3939 if (likely(dst_ops->neigh_lookup == NULL))
3940 dst_ops->neigh_lookup = xfrm_neigh_lookup;
3941 if (likely(!dst_ops->confirm_neigh))
3942 dst_ops->confirm_neigh = xfrm_confirm_neigh;
3943 rcu_assign_pointer(xfrm_policy_afinfo[family], afinfo);
3945 spin_unlock(&xfrm_policy_afinfo_lock);
3949 EXPORT_SYMBOL(xfrm_policy_register_afinfo);
3951 void xfrm_policy_unregister_afinfo(const struct xfrm_policy_afinfo *afinfo)
3953 struct dst_ops *dst_ops = afinfo->dst_ops;
3956 for (i = 0; i < ARRAY_SIZE(xfrm_policy_afinfo); i++) {
3957 if (xfrm_policy_afinfo[i] != afinfo)
3959 RCU_INIT_POINTER(xfrm_policy_afinfo[i], NULL);
3965 dst_ops->kmem_cachep = NULL;
3966 dst_ops->check = NULL;
3967 dst_ops->negative_advice = NULL;
3968 dst_ops->link_failure = NULL;
3970 EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
3972 void xfrm_if_register_cb(const struct xfrm_if_cb *ifcb)
3974 spin_lock(&xfrm_if_cb_lock);
3975 rcu_assign_pointer(xfrm_if_cb, ifcb);
3976 spin_unlock(&xfrm_if_cb_lock);
3978 EXPORT_SYMBOL(xfrm_if_register_cb);
3980 void xfrm_if_unregister_cb(void)
3982 RCU_INIT_POINTER(xfrm_if_cb, NULL);
3985 EXPORT_SYMBOL(xfrm_if_unregister_cb);
3987 #ifdef CONFIG_XFRM_STATISTICS
3988 static int __net_init xfrm_statistics_init(struct net *net)
3991 net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
3992 if (!net->mib.xfrm_statistics)
3994 rv = xfrm_proc_init(net);
3996 free_percpu(net->mib.xfrm_statistics);
4000 static void xfrm_statistics_fini(struct net *net)
4002 xfrm_proc_fini(net);
4003 free_percpu(net->mib.xfrm_statistics);
4006 static int __net_init xfrm_statistics_init(struct net *net)
4011 static void xfrm_statistics_fini(struct net *net)
4016 static int __net_init xfrm_policy_init(struct net *net)
4018 unsigned int hmask, sz;
4021 if (net_eq(net, &init_net)) {
4022 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
4023 sizeof(struct xfrm_dst),
4024 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4026 err = rhashtable_init(&xfrm_policy_inexact_table,
4027 &xfrm_pol_inexact_params);
4032 sz = (hmask+1) * sizeof(struct hlist_head);
4034 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
4035 if (!net->xfrm.policy_byidx)
4037 net->xfrm.policy_idx_hmask = hmask;
4039 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4040 struct xfrm_policy_hash *htab;
4042 net->xfrm.policy_count[dir] = 0;
4043 net->xfrm.policy_count[XFRM_POLICY_MAX + dir] = 0;
4044 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
4046 htab = &net->xfrm.policy_bydst[dir];
4047 htab->table = xfrm_hash_alloc(sz);
4050 htab->hmask = hmask;
4056 net->xfrm.policy_hthresh.lbits4 = 32;
4057 net->xfrm.policy_hthresh.rbits4 = 32;
4058 net->xfrm.policy_hthresh.lbits6 = 128;
4059 net->xfrm.policy_hthresh.rbits6 = 128;
4061 seqlock_init(&net->xfrm.policy_hthresh.lock);
4063 INIT_LIST_HEAD(&net->xfrm.policy_all);
4064 INIT_LIST_HEAD(&net->xfrm.inexact_bins);
4065 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
4066 INIT_WORK(&net->xfrm.policy_hthresh.work, xfrm_hash_rebuild);
4070 for (dir--; dir >= 0; dir--) {
4071 struct xfrm_policy_hash *htab;
4073 htab = &net->xfrm.policy_bydst[dir];
4074 xfrm_hash_free(htab->table, sz);
4076 xfrm_hash_free(net->xfrm.policy_byidx, sz);
4081 static void xfrm_policy_fini(struct net *net)
4083 struct xfrm_pol_inexact_bin *b, *t;
4087 flush_work(&net->xfrm.policy_hash_work);
4088 #ifdef CONFIG_XFRM_SUB_POLICY
4089 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, false);
4091 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, false);
4093 WARN_ON(!list_empty(&net->xfrm.policy_all));
4095 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4096 struct xfrm_policy_hash *htab;
4098 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
4100 htab = &net->xfrm.policy_bydst[dir];
4101 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
4102 WARN_ON(!hlist_empty(htab->table));
4103 xfrm_hash_free(htab->table, sz);
4106 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
4107 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
4108 xfrm_hash_free(net->xfrm.policy_byidx, sz);
4110 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4111 list_for_each_entry_safe(b, t, &net->xfrm.inexact_bins, inexact_bins)
4112 __xfrm_policy_inexact_prune_bin(b, true);
4113 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4116 static int __net_init xfrm_net_init(struct net *net)
4120 /* Initialize the per-net locks here */
4121 spin_lock_init(&net->xfrm.xfrm_state_lock);
4122 spin_lock_init(&net->xfrm.xfrm_policy_lock);
4123 seqcount_spinlock_init(&net->xfrm.xfrm_policy_hash_generation, &net->xfrm.xfrm_policy_lock);
4124 mutex_init(&net->xfrm.xfrm_cfg_mutex);
4125 net->xfrm.policy_default[XFRM_POLICY_IN] = XFRM_USERPOLICY_ACCEPT;
4126 net->xfrm.policy_default[XFRM_POLICY_FWD] = XFRM_USERPOLICY_ACCEPT;
4127 net->xfrm.policy_default[XFRM_POLICY_OUT] = XFRM_USERPOLICY_ACCEPT;
4129 rv = xfrm_statistics_init(net);
4131 goto out_statistics;
4132 rv = xfrm_state_init(net);
4135 rv = xfrm_policy_init(net);
4138 rv = xfrm_sysctl_init(net);
4145 xfrm_policy_fini(net);
4147 xfrm_state_fini(net);
4149 xfrm_statistics_fini(net);
4154 static void __net_exit xfrm_net_exit(struct net *net)
4156 xfrm_sysctl_fini(net);
4157 xfrm_policy_fini(net);
4158 xfrm_state_fini(net);
4159 xfrm_statistics_fini(net);
4162 static struct pernet_operations __net_initdata xfrm_net_ops = {
4163 .init = xfrm_net_init,
4164 .exit = xfrm_net_exit,
4167 void __init xfrm_init(void)
4169 register_pernet_subsys(&xfrm_net_ops);
4173 #ifdef CONFIG_XFRM_ESPINTCP
4178 #ifdef CONFIG_AUDITSYSCALL
4179 static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
4180 struct audit_buffer *audit_buf)
4182 struct xfrm_sec_ctx *ctx = xp->security;
4183 struct xfrm_selector *sel = &xp->selector;
4186 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
4187 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
4189 switch (sel->family) {
4191 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
4192 if (sel->prefixlen_s != 32)
4193 audit_log_format(audit_buf, " src_prefixlen=%d",
4195 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
4196 if (sel->prefixlen_d != 32)
4197 audit_log_format(audit_buf, " dst_prefixlen=%d",
4201 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
4202 if (sel->prefixlen_s != 128)
4203 audit_log_format(audit_buf, " src_prefixlen=%d",
4205 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
4206 if (sel->prefixlen_d != 128)
4207 audit_log_format(audit_buf, " dst_prefixlen=%d",
4213 void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid)
4215 struct audit_buffer *audit_buf;
4217 audit_buf = xfrm_audit_start("SPD-add");
4218 if (audit_buf == NULL)
4220 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4221 audit_log_format(audit_buf, " res=%u", result);
4222 xfrm_audit_common_policyinfo(xp, audit_buf);
4223 audit_log_end(audit_buf);
4225 EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
4227 void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
4230 struct audit_buffer *audit_buf;
4232 audit_buf = xfrm_audit_start("SPD-delete");
4233 if (audit_buf == NULL)
4235 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4236 audit_log_format(audit_buf, " res=%u", result);
4237 xfrm_audit_common_policyinfo(xp, audit_buf);
4238 audit_log_end(audit_buf);
4240 EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
4243 #ifdef CONFIG_XFRM_MIGRATE
4244 static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
4245 const struct xfrm_selector *sel_tgt)
4247 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
4248 if (sel_tgt->family == sel_cmp->family &&
4249 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
4251 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
4253 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
4254 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
4258 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
4265 static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
4266 u8 dir, u8 type, struct net *net, u32 if_id)
4268 struct xfrm_policy *pol, *ret = NULL;
4269 struct hlist_head *chain;
4272 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4273 chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
4274 hlist_for_each_entry(pol, chain, bydst) {
4275 if ((if_id == 0 || pol->if_id == if_id) &&
4276 xfrm_migrate_selector_match(sel, &pol->selector) &&
4277 pol->type == type) {
4279 priority = ret->priority;
4283 chain = &net->xfrm.policy_inexact[dir];
4284 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
4285 if ((pol->priority >= priority) && ret)
4288 if ((if_id == 0 || pol->if_id == if_id) &&
4289 xfrm_migrate_selector_match(sel, &pol->selector) &&
4290 pol->type == type) {
4298 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4303 static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
4307 if (t->mode == m->mode && t->id.proto == m->proto &&
4308 (m->reqid == 0 || t->reqid == m->reqid)) {
4310 case XFRM_MODE_TUNNEL:
4311 case XFRM_MODE_BEET:
4312 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
4314 xfrm_addr_equal(&t->saddr, &m->old_saddr,
4319 case XFRM_MODE_TRANSPORT:
4320 /* in case of transport mode, template does not store
4321 any IP addresses, hence we just compare mode and
4332 /* update endpoint address(es) of template(s) */
4333 static int xfrm_policy_migrate(struct xfrm_policy *pol,
4334 struct xfrm_migrate *m, int num_migrate)
4336 struct xfrm_migrate *mp;
4339 write_lock_bh(&pol->lock);
4340 if (unlikely(pol->walk.dead)) {
4341 /* target policy has been deleted */
4342 write_unlock_bh(&pol->lock);
4346 for (i = 0; i < pol->xfrm_nr; i++) {
4347 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
4348 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
4351 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
4352 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
4354 /* update endpoints */
4355 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
4356 sizeof(pol->xfrm_vec[i].id.daddr));
4357 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
4358 sizeof(pol->xfrm_vec[i].saddr));
4359 pol->xfrm_vec[i].encap_family = mp->new_family;
4361 atomic_inc(&pol->genid);
4365 write_unlock_bh(&pol->lock);
4373 static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
4377 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
4380 for (i = 0; i < num_migrate; i++) {
4381 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
4382 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
4385 /* check if there is any duplicated entry */
4386 for (j = i + 1; j < num_migrate; j++) {
4387 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
4388 sizeof(m[i].old_daddr)) &&
4389 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
4390 sizeof(m[i].old_saddr)) &&
4391 m[i].proto == m[j].proto &&
4392 m[i].mode == m[j].mode &&
4393 m[i].reqid == m[j].reqid &&
4394 m[i].old_family == m[j].old_family)
4402 int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
4403 struct xfrm_migrate *m, int num_migrate,
4404 struct xfrm_kmaddress *k, struct net *net,
4405 struct xfrm_encap_tmpl *encap, u32 if_id)
4407 int i, err, nx_cur = 0, nx_new = 0;
4408 struct xfrm_policy *pol = NULL;
4409 struct xfrm_state *x, *xc;
4410 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
4411 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
4412 struct xfrm_migrate *mp;
4414 /* Stage 0 - sanity checks */
4415 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
4418 if (dir >= XFRM_POLICY_MAX) {
4423 /* Stage 1 - find policy */
4424 if ((pol = xfrm_migrate_policy_find(sel, dir, type, net, if_id)) == NULL) {
4429 /* Stage 2 - find and update state(s) */
4430 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
4431 if ((x = xfrm_migrate_state_find(mp, net, if_id))) {
4434 xc = xfrm_state_migrate(x, mp, encap);
4445 /* Stage 3 - update policy */
4446 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
4449 /* Stage 4 - delete old state(s) */
4451 xfrm_states_put(x_cur, nx_cur);
4452 xfrm_states_delete(x_cur, nx_cur);
4455 /* Stage 5 - announce */
4456 km_migrate(sel, dir, type, m, num_migrate, k, encap);
4468 xfrm_states_put(x_cur, nx_cur);
4470 xfrm_states_delete(x_new, nx_new);
4474 EXPORT_SYMBOL(xfrm_migrate);