xref: /openbmc/linux/net/xfrm/xfrm_policy.c (revision 6e10e219)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * xfrm_policy.c
4  *
5  * Changes:
6  *	Mitsuru KANDA @USAGI
7  * 	Kazunori MIYAZAWA @USAGI
8  * 	Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9  * 		IPv6 support
10  * 	Kazunori MIYAZAWA @USAGI
11  * 	YOSHIFUJI Hideaki
12  * 		Split up af-specific portion
13  *	Derek Atkins <derek@ihtfp.com>		Add the post_input processor
14  *
15  */
16 
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>
32 #include <net/dst.h>
33 #include <net/flow.h>
34 #include <net/xfrm.h>
35 #include <net/ip.h>
36 #include <net/gre.h>
37 #if IS_ENABLED(CONFIG_IPV6_MIP6)
38 #include <net/mip6.h>
39 #endif
40 #ifdef CONFIG_XFRM_STATISTICS
41 #include <net/snmp.h>
42 #endif
43 #ifdef CONFIG_XFRM_ESPINTCP
44 #include <net/espintcp.h>
45 #endif
46 
47 #include "xfrm_hash.h"
48 
49 #define XFRM_QUEUE_TMO_MIN ((unsigned)(HZ/10))
50 #define XFRM_QUEUE_TMO_MAX ((unsigned)(60*HZ))
51 #define XFRM_MAX_QUEUE_LEN	100
52 
53 struct xfrm_flo {
54 	struct dst_entry *dst_orig;
55 	u8 flags;
56 };
57 
58 /* prefixes smaller than this are stored in lists, not trees. */
59 #define INEXACT_PREFIXLEN_IPV4	16
60 #define INEXACT_PREFIXLEN_IPV6	48
61 
62 struct xfrm_pol_inexact_node {
63 	struct rb_node node;
64 	union {
65 		xfrm_address_t addr;
66 		struct rcu_head rcu;
67 	};
68 	u8 prefixlen;
69 
70 	struct rb_root root;
71 
72 	/* the policies matching this node, can be empty list */
73 	struct hlist_head hhead;
74 };
75 
76 /* xfrm inexact policy search tree:
77  * xfrm_pol_inexact_bin = hash(dir,type,family,if_id);
78  *  |
79  * +---- root_d: sorted by daddr:prefix
80  * |                 |
81  * |        xfrm_pol_inexact_node
82  * |                 |
83  * |                 +- root: sorted by saddr/prefix
84  * |                 |              |
85  * |                 |         xfrm_pol_inexact_node
86  * |                 |              |
87  * |                 |              + root: unused
88  * |                 |              |
89  * |                 |              + hhead: saddr:daddr policies
90  * |                 |
91  * |                 +- coarse policies and all any:daddr policies
92  * |
93  * +---- root_s: sorted by saddr:prefix
94  * |                 |
95  * |        xfrm_pol_inexact_node
96  * |                 |
97  * |                 + root: unused
98  * |                 |
99  * |                 + hhead: saddr:any policies
100  * |
101  * +---- coarse policies and all any:any policies
102  *
103  * Lookups return four candidate lists:
104  * 1. any:any list from top-level xfrm_pol_inexact_bin
105  * 2. any:daddr list from daddr tree
106  * 3. saddr:daddr list from 2nd level daddr tree
107  * 4. saddr:any list from saddr tree
108  *
109  * This result set then needs to be searched for the policy with
110  * the lowest priority.  If two results have same prio, youngest one wins.
111  */
112 
113 struct xfrm_pol_inexact_key {
114 	possible_net_t net;
115 	u32 if_id;
116 	u16 family;
117 	u8 dir, type;
118 };
119 
120 struct xfrm_pol_inexact_bin {
121 	struct xfrm_pol_inexact_key k;
122 	struct rhash_head head;
123 	/* list containing '*:*' policies */
124 	struct hlist_head hhead;
125 
126 	seqcount_spinlock_t count;
127 	/* tree sorted by daddr/prefix */
128 	struct rb_root root_d;
129 
130 	/* tree sorted by saddr/prefix */
131 	struct rb_root root_s;
132 
133 	/* slow path below */
134 	struct list_head inexact_bins;
135 	struct rcu_head rcu;
136 };
137 
138 enum xfrm_pol_inexact_candidate_type {
139 	XFRM_POL_CAND_BOTH,
140 	XFRM_POL_CAND_SADDR,
141 	XFRM_POL_CAND_DADDR,
142 	XFRM_POL_CAND_ANY,
143 
144 	XFRM_POL_CAND_MAX,
145 };
146 
147 struct xfrm_pol_inexact_candidates {
148 	struct hlist_head *res[XFRM_POL_CAND_MAX];
149 };
150 
151 static DEFINE_SPINLOCK(xfrm_if_cb_lock);
152 static struct xfrm_if_cb const __rcu *xfrm_if_cb __read_mostly;
153 
154 static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
155 static struct xfrm_policy_afinfo const __rcu *xfrm_policy_afinfo[AF_INET6 + 1]
156 						__read_mostly;
157 
158 static struct kmem_cache *xfrm_dst_cache __ro_after_init;
159 
160 static struct rhashtable xfrm_policy_inexact_table;
161 static const struct rhashtable_params xfrm_pol_inexact_params;
162 
163 static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr);
164 static int stale_bundle(struct dst_entry *dst);
165 static int xfrm_bundle_ok(struct xfrm_dst *xdst);
166 static void xfrm_policy_queue_process(struct timer_list *t);
167 
168 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir);
169 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
170 						int dir);
171 
172 static struct xfrm_pol_inexact_bin *
173 xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family, u8 dir,
174 			   u32 if_id);
175 
176 static struct xfrm_pol_inexact_bin *
177 xfrm_policy_inexact_lookup_rcu(struct net *net,
178 			       u8 type, u16 family, u8 dir, u32 if_id);
179 static struct xfrm_policy *
180 xfrm_policy_insert_list(struct hlist_head *chain, struct xfrm_policy *policy,
181 			bool excl);
182 static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
183 					    struct xfrm_policy *policy);
184 
185 static bool
186 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
187 				    struct xfrm_pol_inexact_bin *b,
188 				    const xfrm_address_t *saddr,
189 				    const xfrm_address_t *daddr);
190 
191 static inline bool xfrm_pol_hold_rcu(struct xfrm_policy *policy)
192 {
193 	return refcount_inc_not_zero(&policy->refcnt);
194 }
195 
196 static inline bool
197 __xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
198 {
199 	const struct flowi4 *fl4 = &fl->u.ip4;
200 
201 	return  addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
202 		addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
203 		!((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
204 		!((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
205 		(fl4->flowi4_proto == sel->proto || !sel->proto) &&
206 		(fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
207 }
208 
209 static inline bool
210 __xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
211 {
212 	const struct flowi6 *fl6 = &fl->u.ip6;
213 
214 	return  addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
215 		addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
216 		!((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
217 		!((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
218 		(fl6->flowi6_proto == sel->proto || !sel->proto) &&
219 		(fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
220 }
221 
222 bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
223 			 unsigned short family)
224 {
225 	switch (family) {
226 	case AF_INET:
227 		return __xfrm4_selector_match(sel, fl);
228 	case AF_INET6:
229 		return __xfrm6_selector_match(sel, fl);
230 	}
231 	return false;
232 }
233 
234 static const struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
235 {
236 	const struct xfrm_policy_afinfo *afinfo;
237 
238 	if (unlikely(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
239 		return NULL;
240 	rcu_read_lock();
241 	afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
242 	if (unlikely(!afinfo))
243 		rcu_read_unlock();
244 	return afinfo;
245 }
246 
247 /* Called with rcu_read_lock(). */
248 static const struct xfrm_if_cb *xfrm_if_get_cb(void)
249 {
250 	return rcu_dereference(xfrm_if_cb);
251 }
252 
253 struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos, int oif,
254 				    const xfrm_address_t *saddr,
255 				    const xfrm_address_t *daddr,
256 				    int family, u32 mark)
257 {
258 	const struct xfrm_policy_afinfo *afinfo;
259 	struct dst_entry *dst;
260 
261 	afinfo = xfrm_policy_get_afinfo(family);
262 	if (unlikely(afinfo == NULL))
263 		return ERR_PTR(-EAFNOSUPPORT);
264 
265 	dst = afinfo->dst_lookup(net, tos, oif, saddr, daddr, mark);
266 
267 	rcu_read_unlock();
268 
269 	return dst;
270 }
271 EXPORT_SYMBOL(__xfrm_dst_lookup);
272 
273 static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x,
274 						int tos, int oif,
275 						xfrm_address_t *prev_saddr,
276 						xfrm_address_t *prev_daddr,
277 						int family, u32 mark)
278 {
279 	struct net *net = xs_net(x);
280 	xfrm_address_t *saddr = &x->props.saddr;
281 	xfrm_address_t *daddr = &x->id.daddr;
282 	struct dst_entry *dst;
283 
284 	if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
285 		saddr = x->coaddr;
286 		daddr = prev_daddr;
287 	}
288 	if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
289 		saddr = prev_saddr;
290 		daddr = x->coaddr;
291 	}
292 
293 	dst = __xfrm_dst_lookup(net, tos, oif, saddr, daddr, family, mark);
294 
295 	if (!IS_ERR(dst)) {
296 		if (prev_saddr != saddr)
297 			memcpy(prev_saddr, saddr,  sizeof(*prev_saddr));
298 		if (prev_daddr != daddr)
299 			memcpy(prev_daddr, daddr,  sizeof(*prev_daddr));
300 	}
301 
302 	return dst;
303 }
304 
305 static inline unsigned long make_jiffies(long secs)
306 {
307 	if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
308 		return MAX_SCHEDULE_TIMEOUT-1;
309 	else
310 		return secs*HZ;
311 }
312 
313 static void xfrm_policy_timer(struct timer_list *t)
314 {
315 	struct xfrm_policy *xp = from_timer(xp, t, timer);
316 	time64_t now = ktime_get_real_seconds();
317 	time64_t next = TIME64_MAX;
318 	int warn = 0;
319 	int dir;
320 
321 	read_lock(&xp->lock);
322 
323 	if (unlikely(xp->walk.dead))
324 		goto out;
325 
326 	dir = xfrm_policy_id2dir(xp->index);
327 
328 	if (xp->lft.hard_add_expires_seconds) {
329 		time64_t tmo = xp->lft.hard_add_expires_seconds +
330 			xp->curlft.add_time - now;
331 		if (tmo <= 0)
332 			goto expired;
333 		if (tmo < next)
334 			next = tmo;
335 	}
336 	if (xp->lft.hard_use_expires_seconds) {
337 		time64_t tmo = xp->lft.hard_use_expires_seconds +
338 			(xp->curlft.use_time ? : xp->curlft.add_time) - now;
339 		if (tmo <= 0)
340 			goto expired;
341 		if (tmo < next)
342 			next = tmo;
343 	}
344 	if (xp->lft.soft_add_expires_seconds) {
345 		time64_t tmo = xp->lft.soft_add_expires_seconds +
346 			xp->curlft.add_time - now;
347 		if (tmo <= 0) {
348 			warn = 1;
349 			tmo = XFRM_KM_TIMEOUT;
350 		}
351 		if (tmo < next)
352 			next = tmo;
353 	}
354 	if (xp->lft.soft_use_expires_seconds) {
355 		time64_t tmo = xp->lft.soft_use_expires_seconds +
356 			(xp->curlft.use_time ? : xp->curlft.add_time) - now;
357 		if (tmo <= 0) {
358 			warn = 1;
359 			tmo = XFRM_KM_TIMEOUT;
360 		}
361 		if (tmo < next)
362 			next = tmo;
363 	}
364 
365 	if (warn)
366 		km_policy_expired(xp, dir, 0, 0);
367 	if (next != TIME64_MAX &&
368 	    !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
369 		xfrm_pol_hold(xp);
370 
371 out:
372 	read_unlock(&xp->lock);
373 	xfrm_pol_put(xp);
374 	return;
375 
376 expired:
377 	read_unlock(&xp->lock);
378 	if (!xfrm_policy_delete(xp, dir))
379 		km_policy_expired(xp, dir, 1, 0);
380 	xfrm_pol_put(xp);
381 }
382 
383 /* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
384  * SPD calls.
385  */
386 
387 struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
388 {
389 	struct xfrm_policy *policy;
390 
391 	policy = kzalloc(sizeof(struct xfrm_policy), gfp);
392 
393 	if (policy) {
394 		write_pnet(&policy->xp_net, net);
395 		INIT_LIST_HEAD(&policy->walk.all);
396 		INIT_HLIST_NODE(&policy->bydst_inexact_list);
397 		INIT_HLIST_NODE(&policy->bydst);
398 		INIT_HLIST_NODE(&policy->byidx);
399 		rwlock_init(&policy->lock);
400 		refcount_set(&policy->refcnt, 1);
401 		skb_queue_head_init(&policy->polq.hold_queue);
402 		timer_setup(&policy->timer, xfrm_policy_timer, 0);
403 		timer_setup(&policy->polq.hold_timer,
404 			    xfrm_policy_queue_process, 0);
405 	}
406 	return policy;
407 }
408 EXPORT_SYMBOL(xfrm_policy_alloc);
409 
410 static void xfrm_policy_destroy_rcu(struct rcu_head *head)
411 {
412 	struct xfrm_policy *policy = container_of(head, struct xfrm_policy, rcu);
413 
414 	security_xfrm_policy_free(policy->security);
415 	kfree(policy);
416 }
417 
418 /* Destroy xfrm_policy: descendant resources must be released to this moment. */
419 
420 void xfrm_policy_destroy(struct xfrm_policy *policy)
421 {
422 	BUG_ON(!policy->walk.dead);
423 
424 	if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
425 		BUG();
426 
427 	call_rcu(&policy->rcu, xfrm_policy_destroy_rcu);
428 }
429 EXPORT_SYMBOL(xfrm_policy_destroy);
430 
431 /* Rule must be locked. Release descendant resources, announce
432  * entry dead. The rule must be unlinked from lists to the moment.
433  */
434 
435 static void xfrm_policy_kill(struct xfrm_policy *policy)
436 {
437 	write_lock_bh(&policy->lock);
438 	policy->walk.dead = 1;
439 	write_unlock_bh(&policy->lock);
440 
441 	atomic_inc(&policy->genid);
442 
443 	if (del_timer(&policy->polq.hold_timer))
444 		xfrm_pol_put(policy);
445 	skb_queue_purge(&policy->polq.hold_queue);
446 
447 	if (del_timer(&policy->timer))
448 		xfrm_pol_put(policy);
449 
450 	xfrm_pol_put(policy);
451 }
452 
453 static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
454 
455 static inline unsigned int idx_hash(struct net *net, u32 index)
456 {
457 	return __idx_hash(index, net->xfrm.policy_idx_hmask);
458 }
459 
460 /* calculate policy hash thresholds */
461 static void __get_hash_thresh(struct net *net,
462 			      unsigned short family, int dir,
463 			      u8 *dbits, u8 *sbits)
464 {
465 	switch (family) {
466 	case AF_INET:
467 		*dbits = net->xfrm.policy_bydst[dir].dbits4;
468 		*sbits = net->xfrm.policy_bydst[dir].sbits4;
469 		break;
470 
471 	case AF_INET6:
472 		*dbits = net->xfrm.policy_bydst[dir].dbits6;
473 		*sbits = net->xfrm.policy_bydst[dir].sbits6;
474 		break;
475 
476 	default:
477 		*dbits = 0;
478 		*sbits = 0;
479 	}
480 }
481 
482 static struct hlist_head *policy_hash_bysel(struct net *net,
483 					    const struct xfrm_selector *sel,
484 					    unsigned short family, int dir)
485 {
486 	unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
487 	unsigned int hash;
488 	u8 dbits;
489 	u8 sbits;
490 
491 	__get_hash_thresh(net, family, dir, &dbits, &sbits);
492 	hash = __sel_hash(sel, family, hmask, dbits, sbits);
493 
494 	if (hash == hmask + 1)
495 		return NULL;
496 
497 	return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
498 		     lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
499 }
500 
501 static struct hlist_head *policy_hash_direct(struct net *net,
502 					     const xfrm_address_t *daddr,
503 					     const xfrm_address_t *saddr,
504 					     unsigned short family, int dir)
505 {
506 	unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
507 	unsigned int hash;
508 	u8 dbits;
509 	u8 sbits;
510 
511 	__get_hash_thresh(net, family, dir, &dbits, &sbits);
512 	hash = __addr_hash(daddr, saddr, family, hmask, dbits, sbits);
513 
514 	return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
515 		     lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
516 }
517 
518 static void xfrm_dst_hash_transfer(struct net *net,
519 				   struct hlist_head *list,
520 				   struct hlist_head *ndsttable,
521 				   unsigned int nhashmask,
522 				   int dir)
523 {
524 	struct hlist_node *tmp, *entry0 = NULL;
525 	struct xfrm_policy *pol;
526 	unsigned int h0 = 0;
527 	u8 dbits;
528 	u8 sbits;
529 
530 redo:
531 	hlist_for_each_entry_safe(pol, tmp, list, bydst) {
532 		unsigned int h;
533 
534 		__get_hash_thresh(net, pol->family, dir, &dbits, &sbits);
535 		h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
536 				pol->family, nhashmask, dbits, sbits);
537 		if (!entry0) {
538 			hlist_del_rcu(&pol->bydst);
539 			hlist_add_head_rcu(&pol->bydst, ndsttable + h);
540 			h0 = h;
541 		} else {
542 			if (h != h0)
543 				continue;
544 			hlist_del_rcu(&pol->bydst);
545 			hlist_add_behind_rcu(&pol->bydst, entry0);
546 		}
547 		entry0 = &pol->bydst;
548 	}
549 	if (!hlist_empty(list)) {
550 		entry0 = NULL;
551 		goto redo;
552 	}
553 }
554 
555 static void xfrm_idx_hash_transfer(struct hlist_head *list,
556 				   struct hlist_head *nidxtable,
557 				   unsigned int nhashmask)
558 {
559 	struct hlist_node *tmp;
560 	struct xfrm_policy *pol;
561 
562 	hlist_for_each_entry_safe(pol, tmp, list, byidx) {
563 		unsigned int h;
564 
565 		h = __idx_hash(pol->index, nhashmask);
566 		hlist_add_head(&pol->byidx, nidxtable+h);
567 	}
568 }
569 
570 static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
571 {
572 	return ((old_hmask + 1) << 1) - 1;
573 }
574 
575 static void xfrm_bydst_resize(struct net *net, int dir)
576 {
577 	unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
578 	unsigned int nhashmask = xfrm_new_hash_mask(hmask);
579 	unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
580 	struct hlist_head *ndst = xfrm_hash_alloc(nsize);
581 	struct hlist_head *odst;
582 	int i;
583 
584 	if (!ndst)
585 		return;
586 
587 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
588 	write_seqcount_begin(&net->xfrm.xfrm_policy_hash_generation);
589 
590 	odst = rcu_dereference_protected(net->xfrm.policy_bydst[dir].table,
591 				lockdep_is_held(&net->xfrm.xfrm_policy_lock));
592 
593 	for (i = hmask; i >= 0; i--)
594 		xfrm_dst_hash_transfer(net, odst + i, ndst, nhashmask, dir);
595 
596 	rcu_assign_pointer(net->xfrm.policy_bydst[dir].table, ndst);
597 	net->xfrm.policy_bydst[dir].hmask = nhashmask;
598 
599 	write_seqcount_end(&net->xfrm.xfrm_policy_hash_generation);
600 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
601 
602 	synchronize_rcu();
603 
604 	xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
605 }
606 
607 static void xfrm_byidx_resize(struct net *net, int total)
608 {
609 	unsigned int hmask = net->xfrm.policy_idx_hmask;
610 	unsigned int nhashmask = xfrm_new_hash_mask(hmask);
611 	unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
612 	struct hlist_head *oidx = net->xfrm.policy_byidx;
613 	struct hlist_head *nidx = xfrm_hash_alloc(nsize);
614 	int i;
615 
616 	if (!nidx)
617 		return;
618 
619 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
620 
621 	for (i = hmask; i >= 0; i--)
622 		xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
623 
624 	net->xfrm.policy_byidx = nidx;
625 	net->xfrm.policy_idx_hmask = nhashmask;
626 
627 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
628 
629 	xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
630 }
631 
632 static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
633 {
634 	unsigned int cnt = net->xfrm.policy_count[dir];
635 	unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
636 
637 	if (total)
638 		*total += cnt;
639 
640 	if ((hmask + 1) < xfrm_policy_hashmax &&
641 	    cnt > hmask)
642 		return 1;
643 
644 	return 0;
645 }
646 
647 static inline int xfrm_byidx_should_resize(struct net *net, int total)
648 {
649 	unsigned int hmask = net->xfrm.policy_idx_hmask;
650 
651 	if ((hmask + 1) < xfrm_policy_hashmax &&
652 	    total > hmask)
653 		return 1;
654 
655 	return 0;
656 }
657 
658 void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
659 {
660 	si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
661 	si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
662 	si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
663 	si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
664 	si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
665 	si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
666 	si->spdhcnt = net->xfrm.policy_idx_hmask;
667 	si->spdhmcnt = xfrm_policy_hashmax;
668 }
669 EXPORT_SYMBOL(xfrm_spd_getinfo);
670 
671 static DEFINE_MUTEX(hash_resize_mutex);
672 static void xfrm_hash_resize(struct work_struct *work)
673 {
674 	struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
675 	int dir, total;
676 
677 	mutex_lock(&hash_resize_mutex);
678 
679 	total = 0;
680 	for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
681 		if (xfrm_bydst_should_resize(net, dir, &total))
682 			xfrm_bydst_resize(net, dir);
683 	}
684 	if (xfrm_byidx_should_resize(net, total))
685 		xfrm_byidx_resize(net, total);
686 
687 	mutex_unlock(&hash_resize_mutex);
688 }
689 
690 /* Make sure *pol can be inserted into fastbin.
691  * Useful to check that later insert requests will be successful
692  * (provided xfrm_policy_lock is held throughout).
693  */
694 static struct xfrm_pol_inexact_bin *
695 xfrm_policy_inexact_alloc_bin(const struct xfrm_policy *pol, u8 dir)
696 {
697 	struct xfrm_pol_inexact_bin *bin, *prev;
698 	struct xfrm_pol_inexact_key k = {
699 		.family = pol->family,
700 		.type = pol->type,
701 		.dir = dir,
702 		.if_id = pol->if_id,
703 	};
704 	struct net *net = xp_net(pol);
705 
706 	lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
707 
708 	write_pnet(&k.net, net);
709 	bin = rhashtable_lookup_fast(&xfrm_policy_inexact_table, &k,
710 				     xfrm_pol_inexact_params);
711 	if (bin)
712 		return bin;
713 
714 	bin = kzalloc(sizeof(*bin), GFP_ATOMIC);
715 	if (!bin)
716 		return NULL;
717 
718 	bin->k = k;
719 	INIT_HLIST_HEAD(&bin->hhead);
720 	bin->root_d = RB_ROOT;
721 	bin->root_s = RB_ROOT;
722 	seqcount_spinlock_init(&bin->count, &net->xfrm.xfrm_policy_lock);
723 
724 	prev = rhashtable_lookup_get_insert_key(&xfrm_policy_inexact_table,
725 						&bin->k, &bin->head,
726 						xfrm_pol_inexact_params);
727 	if (!prev) {
728 		list_add(&bin->inexact_bins, &net->xfrm.inexact_bins);
729 		return bin;
730 	}
731 
732 	kfree(bin);
733 
734 	return IS_ERR(prev) ? NULL : prev;
735 }
736 
737 static bool xfrm_pol_inexact_addr_use_any_list(const xfrm_address_t *addr,
738 					       int family, u8 prefixlen)
739 {
740 	if (xfrm_addr_any(addr, family))
741 		return true;
742 
743 	if (family == AF_INET6 && prefixlen < INEXACT_PREFIXLEN_IPV6)
744 		return true;
745 
746 	if (family == AF_INET && prefixlen < INEXACT_PREFIXLEN_IPV4)
747 		return true;
748 
749 	return false;
750 }
751 
752 static bool
753 xfrm_policy_inexact_insert_use_any_list(const struct xfrm_policy *policy)
754 {
755 	const xfrm_address_t *addr;
756 	bool saddr_any, daddr_any;
757 	u8 prefixlen;
758 
759 	addr = &policy->selector.saddr;
760 	prefixlen = policy->selector.prefixlen_s;
761 
762 	saddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
763 						       policy->family,
764 						       prefixlen);
765 	addr = &policy->selector.daddr;
766 	prefixlen = policy->selector.prefixlen_d;
767 	daddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
768 						       policy->family,
769 						       prefixlen);
770 	return saddr_any && daddr_any;
771 }
772 
773 static void xfrm_pol_inexact_node_init(struct xfrm_pol_inexact_node *node,
774 				       const xfrm_address_t *addr, u8 prefixlen)
775 {
776 	node->addr = *addr;
777 	node->prefixlen = prefixlen;
778 }
779 
780 static struct xfrm_pol_inexact_node *
781 xfrm_pol_inexact_node_alloc(const xfrm_address_t *addr, u8 prefixlen)
782 {
783 	struct xfrm_pol_inexact_node *node;
784 
785 	node = kzalloc(sizeof(*node), GFP_ATOMIC);
786 	if (node)
787 		xfrm_pol_inexact_node_init(node, addr, prefixlen);
788 
789 	return node;
790 }
791 
792 static int xfrm_policy_addr_delta(const xfrm_address_t *a,
793 				  const xfrm_address_t *b,
794 				  u8 prefixlen, u16 family)
795 {
796 	u32 ma, mb, mask;
797 	unsigned int pdw, pbi;
798 	int delta = 0;
799 
800 	switch (family) {
801 	case AF_INET:
802 		if (prefixlen == 0)
803 			return 0;
804 		mask = ~0U << (32 - prefixlen);
805 		ma = ntohl(a->a4) & mask;
806 		mb = ntohl(b->a4) & mask;
807 		if (ma < mb)
808 			delta = -1;
809 		else if (ma > mb)
810 			delta = 1;
811 		break;
812 	case AF_INET6:
813 		pdw = prefixlen >> 5;
814 		pbi = prefixlen & 0x1f;
815 
816 		if (pdw) {
817 			delta = memcmp(a->a6, b->a6, pdw << 2);
818 			if (delta)
819 				return delta;
820 		}
821 		if (pbi) {
822 			mask = ~0U << (32 - pbi);
823 			ma = ntohl(a->a6[pdw]) & mask;
824 			mb = ntohl(b->a6[pdw]) & mask;
825 			if (ma < mb)
826 				delta = -1;
827 			else if (ma > mb)
828 				delta = 1;
829 		}
830 		break;
831 	default:
832 		break;
833 	}
834 
835 	return delta;
836 }
837 
838 static void xfrm_policy_inexact_list_reinsert(struct net *net,
839 					      struct xfrm_pol_inexact_node *n,
840 					      u16 family)
841 {
842 	unsigned int matched_s, matched_d;
843 	struct xfrm_policy *policy, *p;
844 
845 	matched_s = 0;
846 	matched_d = 0;
847 
848 	list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
849 		struct hlist_node *newpos = NULL;
850 		bool matches_s, matches_d;
851 
852 		if (!policy->bydst_reinsert)
853 			continue;
854 
855 		WARN_ON_ONCE(policy->family != family);
856 
857 		policy->bydst_reinsert = false;
858 		hlist_for_each_entry(p, &n->hhead, bydst) {
859 			if (policy->priority > p->priority)
860 				newpos = &p->bydst;
861 			else if (policy->priority == p->priority &&
862 				 policy->pos > p->pos)
863 				newpos = &p->bydst;
864 			else
865 				break;
866 		}
867 
868 		if (newpos)
869 			hlist_add_behind_rcu(&policy->bydst, newpos);
870 		else
871 			hlist_add_head_rcu(&policy->bydst, &n->hhead);
872 
873 		/* paranoia checks follow.
874 		 * Check that the reinserted policy matches at least
875 		 * saddr or daddr for current node prefix.
876 		 *
877 		 * Matching both is fine, matching saddr in one policy
878 		 * (but not daddr) and then matching only daddr in another
879 		 * is a bug.
880 		 */
881 		matches_s = xfrm_policy_addr_delta(&policy->selector.saddr,
882 						   &n->addr,
883 						   n->prefixlen,
884 						   family) == 0;
885 		matches_d = xfrm_policy_addr_delta(&policy->selector.daddr,
886 						   &n->addr,
887 						   n->prefixlen,
888 						   family) == 0;
889 		if (matches_s && matches_d)
890 			continue;
891 
892 		WARN_ON_ONCE(!matches_s && !matches_d);
893 		if (matches_s)
894 			matched_s++;
895 		if (matches_d)
896 			matched_d++;
897 		WARN_ON_ONCE(matched_s && matched_d);
898 	}
899 }
900 
901 static void xfrm_policy_inexact_node_reinsert(struct net *net,
902 					      struct xfrm_pol_inexact_node *n,
903 					      struct rb_root *new,
904 					      u16 family)
905 {
906 	struct xfrm_pol_inexact_node *node;
907 	struct rb_node **p, *parent;
908 
909 	/* we should not have another subtree here */
910 	WARN_ON_ONCE(!RB_EMPTY_ROOT(&n->root));
911 restart:
912 	parent = NULL;
913 	p = &new->rb_node;
914 	while (*p) {
915 		u8 prefixlen;
916 		int delta;
917 
918 		parent = *p;
919 		node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
920 
921 		prefixlen = min(node->prefixlen, n->prefixlen);
922 
923 		delta = xfrm_policy_addr_delta(&n->addr, &node->addr,
924 					       prefixlen, family);
925 		if (delta < 0) {
926 			p = &parent->rb_left;
927 		} else if (delta > 0) {
928 			p = &parent->rb_right;
929 		} else {
930 			bool same_prefixlen = node->prefixlen == n->prefixlen;
931 			struct xfrm_policy *tmp;
932 
933 			hlist_for_each_entry(tmp, &n->hhead, bydst) {
934 				tmp->bydst_reinsert = true;
935 				hlist_del_rcu(&tmp->bydst);
936 			}
937 
938 			node->prefixlen = prefixlen;
939 
940 			xfrm_policy_inexact_list_reinsert(net, node, family);
941 
942 			if (same_prefixlen) {
943 				kfree_rcu(n, rcu);
944 				return;
945 			}
946 
947 			rb_erase(*p, new);
948 			kfree_rcu(n, rcu);
949 			n = node;
950 			goto restart;
951 		}
952 	}
953 
954 	rb_link_node_rcu(&n->node, parent, p);
955 	rb_insert_color(&n->node, new);
956 }
957 
958 /* merge nodes v and n */
959 static void xfrm_policy_inexact_node_merge(struct net *net,
960 					   struct xfrm_pol_inexact_node *v,
961 					   struct xfrm_pol_inexact_node *n,
962 					   u16 family)
963 {
964 	struct xfrm_pol_inexact_node *node;
965 	struct xfrm_policy *tmp;
966 	struct rb_node *rnode;
967 
968 	/* To-be-merged node v has a subtree.
969 	 *
970 	 * Dismantle it and insert its nodes to n->root.
971 	 */
972 	while ((rnode = rb_first(&v->root)) != NULL) {
973 		node = rb_entry(rnode, struct xfrm_pol_inexact_node, node);
974 		rb_erase(&node->node, &v->root);
975 		xfrm_policy_inexact_node_reinsert(net, node, &n->root,
976 						  family);
977 	}
978 
979 	hlist_for_each_entry(tmp, &v->hhead, bydst) {
980 		tmp->bydst_reinsert = true;
981 		hlist_del_rcu(&tmp->bydst);
982 	}
983 
984 	xfrm_policy_inexact_list_reinsert(net, n, family);
985 }
986 
987 static struct xfrm_pol_inexact_node *
988 xfrm_policy_inexact_insert_node(struct net *net,
989 				struct rb_root *root,
990 				xfrm_address_t *addr,
991 				u16 family, u8 prefixlen, u8 dir)
992 {
993 	struct xfrm_pol_inexact_node *cached = NULL;
994 	struct rb_node **p, *parent = NULL;
995 	struct xfrm_pol_inexact_node *node;
996 
997 	p = &root->rb_node;
998 	while (*p) {
999 		int delta;
1000 
1001 		parent = *p;
1002 		node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
1003 
1004 		delta = xfrm_policy_addr_delta(addr, &node->addr,
1005 					       node->prefixlen,
1006 					       family);
1007 		if (delta == 0 && prefixlen >= node->prefixlen) {
1008 			WARN_ON_ONCE(cached); /* ipsec policies got lost */
1009 			return node;
1010 		}
1011 
1012 		if (delta < 0)
1013 			p = &parent->rb_left;
1014 		else
1015 			p = &parent->rb_right;
1016 
1017 		if (prefixlen < node->prefixlen) {
1018 			delta = xfrm_policy_addr_delta(addr, &node->addr,
1019 						       prefixlen,
1020 						       family);
1021 			if (delta)
1022 				continue;
1023 
1024 			/* This node is a subnet of the new prefix. It needs
1025 			 * to be removed and re-inserted with the smaller
1026 			 * prefix and all nodes that are now also covered
1027 			 * by the reduced prefixlen.
1028 			 */
1029 			rb_erase(&node->node, root);
1030 
1031 			if (!cached) {
1032 				xfrm_pol_inexact_node_init(node, addr,
1033 							   prefixlen);
1034 				cached = node;
1035 			} else {
1036 				/* This node also falls within the new
1037 				 * prefixlen. Merge the to-be-reinserted
1038 				 * node and this one.
1039 				 */
1040 				xfrm_policy_inexact_node_merge(net, node,
1041 							       cached, family);
1042 				kfree_rcu(node, rcu);
1043 			}
1044 
1045 			/* restart */
1046 			p = &root->rb_node;
1047 			parent = NULL;
1048 		}
1049 	}
1050 
1051 	node = cached;
1052 	if (!node) {
1053 		node = xfrm_pol_inexact_node_alloc(addr, prefixlen);
1054 		if (!node)
1055 			return NULL;
1056 	}
1057 
1058 	rb_link_node_rcu(&node->node, parent, p);
1059 	rb_insert_color(&node->node, root);
1060 
1061 	return node;
1062 }
1063 
1064 static void xfrm_policy_inexact_gc_tree(struct rb_root *r, bool rm)
1065 {
1066 	struct xfrm_pol_inexact_node *node;
1067 	struct rb_node *rn = rb_first(r);
1068 
1069 	while (rn) {
1070 		node = rb_entry(rn, struct xfrm_pol_inexact_node, node);
1071 
1072 		xfrm_policy_inexact_gc_tree(&node->root, rm);
1073 		rn = rb_next(rn);
1074 
1075 		if (!hlist_empty(&node->hhead) || !RB_EMPTY_ROOT(&node->root)) {
1076 			WARN_ON_ONCE(rm);
1077 			continue;
1078 		}
1079 
1080 		rb_erase(&node->node, r);
1081 		kfree_rcu(node, rcu);
1082 	}
1083 }
1084 
1085 static void __xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b, bool net_exit)
1086 {
1087 	write_seqcount_begin(&b->count);
1088 	xfrm_policy_inexact_gc_tree(&b->root_d, net_exit);
1089 	xfrm_policy_inexact_gc_tree(&b->root_s, net_exit);
1090 	write_seqcount_end(&b->count);
1091 
1092 	if (!RB_EMPTY_ROOT(&b->root_d) || !RB_EMPTY_ROOT(&b->root_s) ||
1093 	    !hlist_empty(&b->hhead)) {
1094 		WARN_ON_ONCE(net_exit);
1095 		return;
1096 	}
1097 
1098 	if (rhashtable_remove_fast(&xfrm_policy_inexact_table, &b->head,
1099 				   xfrm_pol_inexact_params) == 0) {
1100 		list_del(&b->inexact_bins);
1101 		kfree_rcu(b, rcu);
1102 	}
1103 }
1104 
1105 static void xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b)
1106 {
1107 	struct net *net = read_pnet(&b->k.net);
1108 
1109 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1110 	__xfrm_policy_inexact_prune_bin(b, false);
1111 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1112 }
1113 
1114 static void __xfrm_policy_inexact_flush(struct net *net)
1115 {
1116 	struct xfrm_pol_inexact_bin *bin, *t;
1117 
1118 	lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1119 
1120 	list_for_each_entry_safe(bin, t, &net->xfrm.inexact_bins, inexact_bins)
1121 		__xfrm_policy_inexact_prune_bin(bin, false);
1122 }
1123 
1124 static struct hlist_head *
1125 xfrm_policy_inexact_alloc_chain(struct xfrm_pol_inexact_bin *bin,
1126 				struct xfrm_policy *policy, u8 dir)
1127 {
1128 	struct xfrm_pol_inexact_node *n;
1129 	struct net *net;
1130 
1131 	net = xp_net(policy);
1132 	lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1133 
1134 	if (xfrm_policy_inexact_insert_use_any_list(policy))
1135 		return &bin->hhead;
1136 
1137 	if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.daddr,
1138 					       policy->family,
1139 					       policy->selector.prefixlen_d)) {
1140 		write_seqcount_begin(&bin->count);
1141 		n = xfrm_policy_inexact_insert_node(net,
1142 						    &bin->root_s,
1143 						    &policy->selector.saddr,
1144 						    policy->family,
1145 						    policy->selector.prefixlen_s,
1146 						    dir);
1147 		write_seqcount_end(&bin->count);
1148 		if (!n)
1149 			return NULL;
1150 
1151 		return &n->hhead;
1152 	}
1153 
1154 	/* daddr is fixed */
1155 	write_seqcount_begin(&bin->count);
1156 	n = xfrm_policy_inexact_insert_node(net,
1157 					    &bin->root_d,
1158 					    &policy->selector.daddr,
1159 					    policy->family,
1160 					    policy->selector.prefixlen_d, dir);
1161 	write_seqcount_end(&bin->count);
1162 	if (!n)
1163 		return NULL;
1164 
1165 	/* saddr is wildcard */
1166 	if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.saddr,
1167 					       policy->family,
1168 					       policy->selector.prefixlen_s))
1169 		return &n->hhead;
1170 
1171 	write_seqcount_begin(&bin->count);
1172 	n = xfrm_policy_inexact_insert_node(net,
1173 					    &n->root,
1174 					    &policy->selector.saddr,
1175 					    policy->family,
1176 					    policy->selector.prefixlen_s, dir);
1177 	write_seqcount_end(&bin->count);
1178 	if (!n)
1179 		return NULL;
1180 
1181 	return &n->hhead;
1182 }
1183 
1184 static struct xfrm_policy *
1185 xfrm_policy_inexact_insert(struct xfrm_policy *policy, u8 dir, int excl)
1186 {
1187 	struct xfrm_pol_inexact_bin *bin;
1188 	struct xfrm_policy *delpol;
1189 	struct hlist_head *chain;
1190 	struct net *net;
1191 
1192 	bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1193 	if (!bin)
1194 		return ERR_PTR(-ENOMEM);
1195 
1196 	net = xp_net(policy);
1197 	lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1198 
1199 	chain = xfrm_policy_inexact_alloc_chain(bin, policy, dir);
1200 	if (!chain) {
1201 		__xfrm_policy_inexact_prune_bin(bin, false);
1202 		return ERR_PTR(-ENOMEM);
1203 	}
1204 
1205 	delpol = xfrm_policy_insert_list(chain, policy, excl);
1206 	if (delpol && excl) {
1207 		__xfrm_policy_inexact_prune_bin(bin, false);
1208 		return ERR_PTR(-EEXIST);
1209 	}
1210 
1211 	chain = &net->xfrm.policy_inexact[dir];
1212 	xfrm_policy_insert_inexact_list(chain, policy);
1213 
1214 	if (delpol)
1215 		__xfrm_policy_inexact_prune_bin(bin, false);
1216 
1217 	return delpol;
1218 }
1219 
1220 static void xfrm_hash_rebuild(struct work_struct *work)
1221 {
1222 	struct net *net = container_of(work, struct net,
1223 				       xfrm.policy_hthresh.work);
1224 	unsigned int hmask;
1225 	struct xfrm_policy *pol;
1226 	struct xfrm_policy *policy;
1227 	struct hlist_head *chain;
1228 	struct hlist_head *odst;
1229 	struct hlist_node *newpos;
1230 	int i;
1231 	int dir;
1232 	unsigned seq;
1233 	u8 lbits4, rbits4, lbits6, rbits6;
1234 
1235 	mutex_lock(&hash_resize_mutex);
1236 
1237 	/* read selector prefixlen thresholds */
1238 	do {
1239 		seq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1240 
1241 		lbits4 = net->xfrm.policy_hthresh.lbits4;
1242 		rbits4 = net->xfrm.policy_hthresh.rbits4;
1243 		lbits6 = net->xfrm.policy_hthresh.lbits6;
1244 		rbits6 = net->xfrm.policy_hthresh.rbits6;
1245 	} while (read_seqretry(&net->xfrm.policy_hthresh.lock, seq));
1246 
1247 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1248 	write_seqcount_begin(&net->xfrm.xfrm_policy_hash_generation);
1249 
1250 	/* make sure that we can insert the indirect policies again before
1251 	 * we start with destructive action.
1252 	 */
1253 	list_for_each_entry(policy, &net->xfrm.policy_all, walk.all) {
1254 		struct xfrm_pol_inexact_bin *bin;
1255 		u8 dbits, sbits;
1256 
1257 		dir = xfrm_policy_id2dir(policy->index);
1258 		if (policy->walk.dead || dir >= XFRM_POLICY_MAX)
1259 			continue;
1260 
1261 		if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1262 			if (policy->family == AF_INET) {
1263 				dbits = rbits4;
1264 				sbits = lbits4;
1265 			} else {
1266 				dbits = rbits6;
1267 				sbits = lbits6;
1268 			}
1269 		} else {
1270 			if (policy->family == AF_INET) {
1271 				dbits = lbits4;
1272 				sbits = rbits4;
1273 			} else {
1274 				dbits = lbits6;
1275 				sbits = rbits6;
1276 			}
1277 		}
1278 
1279 		if (policy->selector.prefixlen_d < dbits ||
1280 		    policy->selector.prefixlen_s < sbits)
1281 			continue;
1282 
1283 		bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1284 		if (!bin)
1285 			goto out_unlock;
1286 
1287 		if (!xfrm_policy_inexact_alloc_chain(bin, policy, dir))
1288 			goto out_unlock;
1289 	}
1290 
1291 	/* reset the bydst and inexact table in all directions */
1292 	for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
1293 		struct hlist_node *n;
1294 
1295 		hlist_for_each_entry_safe(policy, n,
1296 					  &net->xfrm.policy_inexact[dir],
1297 					  bydst_inexact_list) {
1298 			hlist_del_rcu(&policy->bydst);
1299 			hlist_del_init(&policy->bydst_inexact_list);
1300 		}
1301 
1302 		hmask = net->xfrm.policy_bydst[dir].hmask;
1303 		odst = net->xfrm.policy_bydst[dir].table;
1304 		for (i = hmask; i >= 0; i--) {
1305 			hlist_for_each_entry_safe(policy, n, odst + i, bydst)
1306 				hlist_del_rcu(&policy->bydst);
1307 		}
1308 		if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1309 			/* dir out => dst = remote, src = local */
1310 			net->xfrm.policy_bydst[dir].dbits4 = rbits4;
1311 			net->xfrm.policy_bydst[dir].sbits4 = lbits4;
1312 			net->xfrm.policy_bydst[dir].dbits6 = rbits6;
1313 			net->xfrm.policy_bydst[dir].sbits6 = lbits6;
1314 		} else {
1315 			/* dir in/fwd => dst = local, src = remote */
1316 			net->xfrm.policy_bydst[dir].dbits4 = lbits4;
1317 			net->xfrm.policy_bydst[dir].sbits4 = rbits4;
1318 			net->xfrm.policy_bydst[dir].dbits6 = lbits6;
1319 			net->xfrm.policy_bydst[dir].sbits6 = rbits6;
1320 		}
1321 	}
1322 
1323 	/* re-insert all policies by order of creation */
1324 	list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
1325 		if (policy->walk.dead)
1326 			continue;
1327 		dir = xfrm_policy_id2dir(policy->index);
1328 		if (dir >= XFRM_POLICY_MAX) {
1329 			/* skip socket policies */
1330 			continue;
1331 		}
1332 		newpos = NULL;
1333 		chain = policy_hash_bysel(net, &policy->selector,
1334 					  policy->family, dir);
1335 
1336 		if (!chain) {
1337 			void *p = xfrm_policy_inexact_insert(policy, dir, 0);
1338 
1339 			WARN_ONCE(IS_ERR(p), "reinsert: %ld\n", PTR_ERR(p));
1340 			continue;
1341 		}
1342 
1343 		hlist_for_each_entry(pol, chain, bydst) {
1344 			if (policy->priority >= pol->priority)
1345 				newpos = &pol->bydst;
1346 			else
1347 				break;
1348 		}
1349 		if (newpos)
1350 			hlist_add_behind_rcu(&policy->bydst, newpos);
1351 		else
1352 			hlist_add_head_rcu(&policy->bydst, chain);
1353 	}
1354 
1355 out_unlock:
1356 	__xfrm_policy_inexact_flush(net);
1357 	write_seqcount_end(&net->xfrm.xfrm_policy_hash_generation);
1358 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1359 
1360 	mutex_unlock(&hash_resize_mutex);
1361 }
1362 
1363 void xfrm_policy_hash_rebuild(struct net *net)
1364 {
1365 	schedule_work(&net->xfrm.policy_hthresh.work);
1366 }
1367 EXPORT_SYMBOL(xfrm_policy_hash_rebuild);
1368 
1369 /* Generate new index... KAME seems to generate them ordered by cost
1370  * of an absolute inpredictability of ordering of rules. This will not pass. */
1371 static u32 xfrm_gen_index(struct net *net, int dir, u32 index)
1372 {
1373 	static u32 idx_generator;
1374 
1375 	for (;;) {
1376 		struct hlist_head *list;
1377 		struct xfrm_policy *p;
1378 		u32 idx;
1379 		int found;
1380 
1381 		if (!index) {
1382 			idx = (idx_generator | dir);
1383 			idx_generator += 8;
1384 		} else {
1385 			idx = index;
1386 			index = 0;
1387 		}
1388 
1389 		if (idx == 0)
1390 			idx = 8;
1391 		list = net->xfrm.policy_byidx + idx_hash(net, idx);
1392 		found = 0;
1393 		hlist_for_each_entry(p, list, byidx) {
1394 			if (p->index == idx) {
1395 				found = 1;
1396 				break;
1397 			}
1398 		}
1399 		if (!found)
1400 			return idx;
1401 	}
1402 }
1403 
1404 static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
1405 {
1406 	u32 *p1 = (u32 *) s1;
1407 	u32 *p2 = (u32 *) s2;
1408 	int len = sizeof(struct xfrm_selector) / sizeof(u32);
1409 	int i;
1410 
1411 	for (i = 0; i < len; i++) {
1412 		if (p1[i] != p2[i])
1413 			return 1;
1414 	}
1415 
1416 	return 0;
1417 }
1418 
1419 static void xfrm_policy_requeue(struct xfrm_policy *old,
1420 				struct xfrm_policy *new)
1421 {
1422 	struct xfrm_policy_queue *pq = &old->polq;
1423 	struct sk_buff_head list;
1424 
1425 	if (skb_queue_empty(&pq->hold_queue))
1426 		return;
1427 
1428 	__skb_queue_head_init(&list);
1429 
1430 	spin_lock_bh(&pq->hold_queue.lock);
1431 	skb_queue_splice_init(&pq->hold_queue, &list);
1432 	if (del_timer(&pq->hold_timer))
1433 		xfrm_pol_put(old);
1434 	spin_unlock_bh(&pq->hold_queue.lock);
1435 
1436 	pq = &new->polq;
1437 
1438 	spin_lock_bh(&pq->hold_queue.lock);
1439 	skb_queue_splice(&list, &pq->hold_queue);
1440 	pq->timeout = XFRM_QUEUE_TMO_MIN;
1441 	if (!mod_timer(&pq->hold_timer, jiffies))
1442 		xfrm_pol_hold(new);
1443 	spin_unlock_bh(&pq->hold_queue.lock);
1444 }
1445 
1446 static inline bool xfrm_policy_mark_match(const struct xfrm_mark *mark,
1447 					  struct xfrm_policy *pol)
1448 {
1449 	return mark->v == pol->mark.v && mark->m == pol->mark.m;
1450 }
1451 
1452 static u32 xfrm_pol_bin_key(const void *data, u32 len, u32 seed)
1453 {
1454 	const struct xfrm_pol_inexact_key *k = data;
1455 	u32 a = k->type << 24 | k->dir << 16 | k->family;
1456 
1457 	return jhash_3words(a, k->if_id, net_hash_mix(read_pnet(&k->net)),
1458 			    seed);
1459 }
1460 
1461 static u32 xfrm_pol_bin_obj(const void *data, u32 len, u32 seed)
1462 {
1463 	const struct xfrm_pol_inexact_bin *b = data;
1464 
1465 	return xfrm_pol_bin_key(&b->k, 0, seed);
1466 }
1467 
1468 static int xfrm_pol_bin_cmp(struct rhashtable_compare_arg *arg,
1469 			    const void *ptr)
1470 {
1471 	const struct xfrm_pol_inexact_key *key = arg->key;
1472 	const struct xfrm_pol_inexact_bin *b = ptr;
1473 	int ret;
1474 
1475 	if (!net_eq(read_pnet(&b->k.net), read_pnet(&key->net)))
1476 		return -1;
1477 
1478 	ret = b->k.dir ^ key->dir;
1479 	if (ret)
1480 		return ret;
1481 
1482 	ret = b->k.type ^ key->type;
1483 	if (ret)
1484 		return ret;
1485 
1486 	ret = b->k.family ^ key->family;
1487 	if (ret)
1488 		return ret;
1489 
1490 	return b->k.if_id ^ key->if_id;
1491 }
1492 
1493 static const struct rhashtable_params xfrm_pol_inexact_params = {
1494 	.head_offset		= offsetof(struct xfrm_pol_inexact_bin, head),
1495 	.hashfn			= xfrm_pol_bin_key,
1496 	.obj_hashfn		= xfrm_pol_bin_obj,
1497 	.obj_cmpfn		= xfrm_pol_bin_cmp,
1498 	.automatic_shrinking	= true,
1499 };
1500 
1501 static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
1502 					    struct xfrm_policy *policy)
1503 {
1504 	struct xfrm_policy *pol, *delpol = NULL;
1505 	struct hlist_node *newpos = NULL;
1506 	int i = 0;
1507 
1508 	hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1509 		if (pol->type == policy->type &&
1510 		    pol->if_id == policy->if_id &&
1511 		    !selector_cmp(&pol->selector, &policy->selector) &&
1512 		    xfrm_policy_mark_match(&policy->mark, pol) &&
1513 		    xfrm_sec_ctx_match(pol->security, policy->security) &&
1514 		    !WARN_ON(delpol)) {
1515 			delpol = pol;
1516 			if (policy->priority > pol->priority)
1517 				continue;
1518 		} else if (policy->priority >= pol->priority) {
1519 			newpos = &pol->bydst_inexact_list;
1520 			continue;
1521 		}
1522 		if (delpol)
1523 			break;
1524 	}
1525 
1526 	if (newpos)
1527 		hlist_add_behind_rcu(&policy->bydst_inexact_list, newpos);
1528 	else
1529 		hlist_add_head_rcu(&policy->bydst_inexact_list, chain);
1530 
1531 	hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1532 		pol->pos = i;
1533 		i++;
1534 	}
1535 }
1536 
1537 static struct xfrm_policy *xfrm_policy_insert_list(struct hlist_head *chain,
1538 						   struct xfrm_policy *policy,
1539 						   bool excl)
1540 {
1541 	struct xfrm_policy *pol, *newpos = NULL, *delpol = NULL;
1542 
1543 	hlist_for_each_entry(pol, chain, bydst) {
1544 		if (pol->type == policy->type &&
1545 		    pol->if_id == policy->if_id &&
1546 		    !selector_cmp(&pol->selector, &policy->selector) &&
1547 		    xfrm_policy_mark_match(&policy->mark, pol) &&
1548 		    xfrm_sec_ctx_match(pol->security, policy->security) &&
1549 		    !WARN_ON(delpol)) {
1550 			if (excl)
1551 				return ERR_PTR(-EEXIST);
1552 			delpol = pol;
1553 			if (policy->priority > pol->priority)
1554 				continue;
1555 		} else if (policy->priority >= pol->priority) {
1556 			newpos = pol;
1557 			continue;
1558 		}
1559 		if (delpol)
1560 			break;
1561 	}
1562 
1563 	if (newpos)
1564 		hlist_add_behind_rcu(&policy->bydst, &newpos->bydst);
1565 	else
1566 		hlist_add_head_rcu(&policy->bydst, chain);
1567 
1568 	return delpol;
1569 }
1570 
1571 int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
1572 {
1573 	struct net *net = xp_net(policy);
1574 	struct xfrm_policy *delpol;
1575 	struct hlist_head *chain;
1576 
1577 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1578 	chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
1579 	if (chain)
1580 		delpol = xfrm_policy_insert_list(chain, policy, excl);
1581 	else
1582 		delpol = xfrm_policy_inexact_insert(policy, dir, excl);
1583 
1584 	if (IS_ERR(delpol)) {
1585 		spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1586 		return PTR_ERR(delpol);
1587 	}
1588 
1589 	__xfrm_policy_link(policy, dir);
1590 
1591 	/* After previous checking, family can either be AF_INET or AF_INET6 */
1592 	if (policy->family == AF_INET)
1593 		rt_genid_bump_ipv4(net);
1594 	else
1595 		rt_genid_bump_ipv6(net);
1596 
1597 	if (delpol) {
1598 		xfrm_policy_requeue(delpol, policy);
1599 		__xfrm_policy_unlink(delpol, dir);
1600 	}
1601 	policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir, policy->index);
1602 	hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
1603 	policy->curlft.add_time = ktime_get_real_seconds();
1604 	policy->curlft.use_time = 0;
1605 	if (!mod_timer(&policy->timer, jiffies + HZ))
1606 		xfrm_pol_hold(policy);
1607 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1608 
1609 	if (delpol)
1610 		xfrm_policy_kill(delpol);
1611 	else if (xfrm_bydst_should_resize(net, dir, NULL))
1612 		schedule_work(&net->xfrm.policy_hash_work);
1613 
1614 	return 0;
1615 }
1616 EXPORT_SYMBOL(xfrm_policy_insert);
1617 
1618 static struct xfrm_policy *
1619 __xfrm_policy_bysel_ctx(struct hlist_head *chain, const struct xfrm_mark *mark,
1620 			u32 if_id, u8 type, int dir, struct xfrm_selector *sel,
1621 			struct xfrm_sec_ctx *ctx)
1622 {
1623 	struct xfrm_policy *pol;
1624 
1625 	if (!chain)
1626 		return NULL;
1627 
1628 	hlist_for_each_entry(pol, chain, bydst) {
1629 		if (pol->type == type &&
1630 		    pol->if_id == if_id &&
1631 		    xfrm_policy_mark_match(mark, pol) &&
1632 		    !selector_cmp(sel, &pol->selector) &&
1633 		    xfrm_sec_ctx_match(ctx, pol->security))
1634 			return pol;
1635 	}
1636 
1637 	return NULL;
1638 }
1639 
1640 struct xfrm_policy *
1641 xfrm_policy_bysel_ctx(struct net *net, const struct xfrm_mark *mark, u32 if_id,
1642 		      u8 type, int dir, struct xfrm_selector *sel,
1643 		      struct xfrm_sec_ctx *ctx, int delete, int *err)
1644 {
1645 	struct xfrm_pol_inexact_bin *bin = NULL;
1646 	struct xfrm_policy *pol, *ret = NULL;
1647 	struct hlist_head *chain;
1648 
1649 	*err = 0;
1650 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1651 	chain = policy_hash_bysel(net, sel, sel->family, dir);
1652 	if (!chain) {
1653 		struct xfrm_pol_inexact_candidates cand;
1654 		int i;
1655 
1656 		bin = xfrm_policy_inexact_lookup(net, type,
1657 						 sel->family, dir, if_id);
1658 		if (!bin) {
1659 			spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1660 			return NULL;
1661 		}
1662 
1663 		if (!xfrm_policy_find_inexact_candidates(&cand, bin,
1664 							 &sel->saddr,
1665 							 &sel->daddr)) {
1666 			spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1667 			return NULL;
1668 		}
1669 
1670 		pol = NULL;
1671 		for (i = 0; i < ARRAY_SIZE(cand.res); i++) {
1672 			struct xfrm_policy *tmp;
1673 
1674 			tmp = __xfrm_policy_bysel_ctx(cand.res[i], mark,
1675 						      if_id, type, dir,
1676 						      sel, ctx);
1677 			if (!tmp)
1678 				continue;
1679 
1680 			if (!pol || tmp->pos < pol->pos)
1681 				pol = tmp;
1682 		}
1683 	} else {
1684 		pol = __xfrm_policy_bysel_ctx(chain, mark, if_id, type, dir,
1685 					      sel, ctx);
1686 	}
1687 
1688 	if (pol) {
1689 		xfrm_pol_hold(pol);
1690 		if (delete) {
1691 			*err = security_xfrm_policy_delete(pol->security);
1692 			if (*err) {
1693 				spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1694 				return pol;
1695 			}
1696 			__xfrm_policy_unlink(pol, dir);
1697 		}
1698 		ret = pol;
1699 	}
1700 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1701 
1702 	if (ret && delete)
1703 		xfrm_policy_kill(ret);
1704 	if (bin && delete)
1705 		xfrm_policy_inexact_prune_bin(bin);
1706 	return ret;
1707 }
1708 EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
1709 
1710 struct xfrm_policy *
1711 xfrm_policy_byid(struct net *net, const struct xfrm_mark *mark, u32 if_id,
1712 		 u8 type, int dir, u32 id, int delete, int *err)
1713 {
1714 	struct xfrm_policy *pol, *ret;
1715 	struct hlist_head *chain;
1716 
1717 	*err = -ENOENT;
1718 	if (xfrm_policy_id2dir(id) != dir)
1719 		return NULL;
1720 
1721 	*err = 0;
1722 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1723 	chain = net->xfrm.policy_byidx + idx_hash(net, id);
1724 	ret = NULL;
1725 	hlist_for_each_entry(pol, chain, byidx) {
1726 		if (pol->type == type && pol->index == id &&
1727 		    pol->if_id == if_id && xfrm_policy_mark_match(mark, pol)) {
1728 			xfrm_pol_hold(pol);
1729 			if (delete) {
1730 				*err = security_xfrm_policy_delete(
1731 								pol->security);
1732 				if (*err) {
1733 					spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1734 					return pol;
1735 				}
1736 				__xfrm_policy_unlink(pol, dir);
1737 			}
1738 			ret = pol;
1739 			break;
1740 		}
1741 	}
1742 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1743 
1744 	if (ret && delete)
1745 		xfrm_policy_kill(ret);
1746 	return ret;
1747 }
1748 EXPORT_SYMBOL(xfrm_policy_byid);
1749 
1750 #ifdef CONFIG_SECURITY_NETWORK_XFRM
1751 static inline int
1752 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
1753 {
1754 	struct xfrm_policy *pol;
1755 	int err = 0;
1756 
1757 	list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1758 		if (pol->walk.dead ||
1759 		    xfrm_policy_id2dir(pol->index) >= XFRM_POLICY_MAX ||
1760 		    pol->type != type)
1761 			continue;
1762 
1763 		err = security_xfrm_policy_delete(pol->security);
1764 		if (err) {
1765 			xfrm_audit_policy_delete(pol, 0, task_valid);
1766 			return err;
1767 		}
1768 	}
1769 	return err;
1770 }
1771 #else
1772 static inline int
1773 xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
1774 {
1775 	return 0;
1776 }
1777 #endif
1778 
1779 int xfrm_policy_flush(struct net *net, u8 type, bool task_valid)
1780 {
1781 	int dir, err = 0, cnt = 0;
1782 	struct xfrm_policy *pol;
1783 
1784 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1785 
1786 	err = xfrm_policy_flush_secctx_check(net, type, task_valid);
1787 	if (err)
1788 		goto out;
1789 
1790 again:
1791 	list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1792 		dir = xfrm_policy_id2dir(pol->index);
1793 		if (pol->walk.dead ||
1794 		    dir >= XFRM_POLICY_MAX ||
1795 		    pol->type != type)
1796 			continue;
1797 
1798 		__xfrm_policy_unlink(pol, dir);
1799 		spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1800 		cnt++;
1801 		xfrm_audit_policy_delete(pol, 1, task_valid);
1802 		xfrm_policy_kill(pol);
1803 		spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1804 		goto again;
1805 	}
1806 	if (cnt)
1807 		__xfrm_policy_inexact_flush(net);
1808 	else
1809 		err = -ESRCH;
1810 out:
1811 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1812 	return err;
1813 }
1814 EXPORT_SYMBOL(xfrm_policy_flush);
1815 
1816 int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
1817 		     int (*func)(struct xfrm_policy *, int, int, void*),
1818 		     void *data)
1819 {
1820 	struct xfrm_policy *pol;
1821 	struct xfrm_policy_walk_entry *x;
1822 	int error = 0;
1823 
1824 	if (walk->type >= XFRM_POLICY_TYPE_MAX &&
1825 	    walk->type != XFRM_POLICY_TYPE_ANY)
1826 		return -EINVAL;
1827 
1828 	if (list_empty(&walk->walk.all) && walk->seq != 0)
1829 		return 0;
1830 
1831 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1832 	if (list_empty(&walk->walk.all))
1833 		x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
1834 	else
1835 		x = list_first_entry(&walk->walk.all,
1836 				     struct xfrm_policy_walk_entry, all);
1837 
1838 	list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
1839 		if (x->dead)
1840 			continue;
1841 		pol = container_of(x, struct xfrm_policy, walk);
1842 		if (walk->type != XFRM_POLICY_TYPE_ANY &&
1843 		    walk->type != pol->type)
1844 			continue;
1845 		error = func(pol, xfrm_policy_id2dir(pol->index),
1846 			     walk->seq, data);
1847 		if (error) {
1848 			list_move_tail(&walk->walk.all, &x->all);
1849 			goto out;
1850 		}
1851 		walk->seq++;
1852 	}
1853 	if (walk->seq == 0) {
1854 		error = -ENOENT;
1855 		goto out;
1856 	}
1857 	list_del_init(&walk->walk.all);
1858 out:
1859 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1860 	return error;
1861 }
1862 EXPORT_SYMBOL(xfrm_policy_walk);
1863 
1864 void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
1865 {
1866 	INIT_LIST_HEAD(&walk->walk.all);
1867 	walk->walk.dead = 1;
1868 	walk->type = type;
1869 	walk->seq = 0;
1870 }
1871 EXPORT_SYMBOL(xfrm_policy_walk_init);
1872 
1873 void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net)
1874 {
1875 	if (list_empty(&walk->walk.all))
1876 		return;
1877 
1878 	spin_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME where is net? */
1879 	list_del(&walk->walk.all);
1880 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1881 }
1882 EXPORT_SYMBOL(xfrm_policy_walk_done);
1883 
1884 /*
1885  * Find policy to apply to this flow.
1886  *
1887  * Returns 0 if policy found, else an -errno.
1888  */
1889 static int xfrm_policy_match(const struct xfrm_policy *pol,
1890 			     const struct flowi *fl,
1891 			     u8 type, u16 family, int dir, u32 if_id)
1892 {
1893 	const struct xfrm_selector *sel = &pol->selector;
1894 	int ret = -ESRCH;
1895 	bool match;
1896 
1897 	if (pol->family != family ||
1898 	    pol->if_id != if_id ||
1899 	    (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
1900 	    pol->type != type)
1901 		return ret;
1902 
1903 	match = xfrm_selector_match(sel, fl, family);
1904 	if (match)
1905 		ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid);
1906 	return ret;
1907 }
1908 
1909 static struct xfrm_pol_inexact_node *
1910 xfrm_policy_lookup_inexact_addr(const struct rb_root *r,
1911 				seqcount_spinlock_t *count,
1912 				const xfrm_address_t *addr, u16 family)
1913 {
1914 	const struct rb_node *parent;
1915 	int seq;
1916 
1917 again:
1918 	seq = read_seqcount_begin(count);
1919 
1920 	parent = rcu_dereference_raw(r->rb_node);
1921 	while (parent) {
1922 		struct xfrm_pol_inexact_node *node;
1923 		int delta;
1924 
1925 		node = rb_entry(parent, struct xfrm_pol_inexact_node, node);
1926 
1927 		delta = xfrm_policy_addr_delta(addr, &node->addr,
1928 					       node->prefixlen, family);
1929 		if (delta < 0) {
1930 			parent = rcu_dereference_raw(parent->rb_left);
1931 			continue;
1932 		} else if (delta > 0) {
1933 			parent = rcu_dereference_raw(parent->rb_right);
1934 			continue;
1935 		}
1936 
1937 		return node;
1938 	}
1939 
1940 	if (read_seqcount_retry(count, seq))
1941 		goto again;
1942 
1943 	return NULL;
1944 }
1945 
1946 static bool
1947 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
1948 				    struct xfrm_pol_inexact_bin *b,
1949 				    const xfrm_address_t *saddr,
1950 				    const xfrm_address_t *daddr)
1951 {
1952 	struct xfrm_pol_inexact_node *n;
1953 	u16 family;
1954 
1955 	if (!b)
1956 		return false;
1957 
1958 	family = b->k.family;
1959 	memset(cand, 0, sizeof(*cand));
1960 	cand->res[XFRM_POL_CAND_ANY] = &b->hhead;
1961 
1962 	n = xfrm_policy_lookup_inexact_addr(&b->root_d, &b->count, daddr,
1963 					    family);
1964 	if (n) {
1965 		cand->res[XFRM_POL_CAND_DADDR] = &n->hhead;
1966 		n = xfrm_policy_lookup_inexact_addr(&n->root, &b->count, saddr,
1967 						    family);
1968 		if (n)
1969 			cand->res[XFRM_POL_CAND_BOTH] = &n->hhead;
1970 	}
1971 
1972 	n = xfrm_policy_lookup_inexact_addr(&b->root_s, &b->count, saddr,
1973 					    family);
1974 	if (n)
1975 		cand->res[XFRM_POL_CAND_SADDR] = &n->hhead;
1976 
1977 	return true;
1978 }
1979 
1980 static struct xfrm_pol_inexact_bin *
1981 xfrm_policy_inexact_lookup_rcu(struct net *net, u8 type, u16 family,
1982 			       u8 dir, u32 if_id)
1983 {
1984 	struct xfrm_pol_inexact_key k = {
1985 		.family = family,
1986 		.type = type,
1987 		.dir = dir,
1988 		.if_id = if_id,
1989 	};
1990 
1991 	write_pnet(&k.net, net);
1992 
1993 	return rhashtable_lookup(&xfrm_policy_inexact_table, &k,
1994 				 xfrm_pol_inexact_params);
1995 }
1996 
1997 static struct xfrm_pol_inexact_bin *
1998 xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family,
1999 			   u8 dir, u32 if_id)
2000 {
2001 	struct xfrm_pol_inexact_bin *bin;
2002 
2003 	lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
2004 
2005 	rcu_read_lock();
2006 	bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
2007 	rcu_read_unlock();
2008 
2009 	return bin;
2010 }
2011 
2012 static struct xfrm_policy *
2013 __xfrm_policy_eval_candidates(struct hlist_head *chain,
2014 			      struct xfrm_policy *prefer,
2015 			      const struct flowi *fl,
2016 			      u8 type, u16 family, int dir, u32 if_id)
2017 {
2018 	u32 priority = prefer ? prefer->priority : ~0u;
2019 	struct xfrm_policy *pol;
2020 
2021 	if (!chain)
2022 		return NULL;
2023 
2024 	hlist_for_each_entry_rcu(pol, chain, bydst) {
2025 		int err;
2026 
2027 		if (pol->priority > priority)
2028 			break;
2029 
2030 		err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
2031 		if (err) {
2032 			if (err != -ESRCH)
2033 				return ERR_PTR(err);
2034 
2035 			continue;
2036 		}
2037 
2038 		if (prefer) {
2039 			/* matches.  Is it older than *prefer? */
2040 			if (pol->priority == priority &&
2041 			    prefer->pos < pol->pos)
2042 				return prefer;
2043 		}
2044 
2045 		return pol;
2046 	}
2047 
2048 	return NULL;
2049 }
2050 
2051 static struct xfrm_policy *
2052 xfrm_policy_eval_candidates(struct xfrm_pol_inexact_candidates *cand,
2053 			    struct xfrm_policy *prefer,
2054 			    const struct flowi *fl,
2055 			    u8 type, u16 family, int dir, u32 if_id)
2056 {
2057 	struct xfrm_policy *tmp;
2058 	int i;
2059 
2060 	for (i = 0; i < ARRAY_SIZE(cand->res); i++) {
2061 		tmp = __xfrm_policy_eval_candidates(cand->res[i],
2062 						    prefer,
2063 						    fl, type, family, dir,
2064 						    if_id);
2065 		if (!tmp)
2066 			continue;
2067 
2068 		if (IS_ERR(tmp))
2069 			return tmp;
2070 		prefer = tmp;
2071 	}
2072 
2073 	return prefer;
2074 }
2075 
2076 static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
2077 						     const struct flowi *fl,
2078 						     u16 family, u8 dir,
2079 						     u32 if_id)
2080 {
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;
2087 	int err;
2088 
2089 	daddr = xfrm_flowi_daddr(fl, family);
2090 	saddr = xfrm_flowi_saddr(fl, family);
2091 	if (unlikely(!daddr || !saddr))
2092 		return NULL;
2093 
2094 	rcu_read_lock();
2095  retry:
2096 	do {
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));
2100 
2101 	ret = NULL;
2102 	hlist_for_each_entry_rcu(pol, chain, bydst) {
2103 		err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
2104 		if (err) {
2105 			if (err == -ESRCH)
2106 				continue;
2107 			else {
2108 				ret = ERR_PTR(err);
2109 				goto fail;
2110 			}
2111 		} else {
2112 			ret = pol;
2113 			break;
2114 		}
2115 	}
2116 	bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
2117 	if (!bin || !xfrm_policy_find_inexact_candidates(&cand, bin, saddr,
2118 							 daddr))
2119 		goto skip_inexact;
2120 
2121 	pol = xfrm_policy_eval_candidates(&cand, ret, fl, type,
2122 					  family, dir, if_id);
2123 	if (pol) {
2124 		ret = pol;
2125 		if (IS_ERR(pol))
2126 			goto fail;
2127 	}
2128 
2129 skip_inexact:
2130 	if (read_seqcount_retry(&net->xfrm.xfrm_policy_hash_generation, sequence))
2131 		goto retry;
2132 
2133 	if (ret && !xfrm_pol_hold_rcu(ret))
2134 		goto retry;
2135 fail:
2136 	rcu_read_unlock();
2137 
2138 	return ret;
2139 }
2140 
2141 static struct xfrm_policy *xfrm_policy_lookup(struct net *net,
2142 					      const struct flowi *fl,
2143 					      u16 family, u8 dir, u32 if_id)
2144 {
2145 #ifdef CONFIG_XFRM_SUB_POLICY
2146 	struct xfrm_policy *pol;
2147 
2148 	pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family,
2149 					dir, if_id);
2150 	if (pol != NULL)
2151 		return pol;
2152 #endif
2153 	return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family,
2154 					 dir, if_id);
2155 }
2156 
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)
2160 {
2161 	struct xfrm_policy *pol;
2162 
2163 	rcu_read_lock();
2164  again:
2165 	pol = rcu_dereference(sk->sk_policy[dir]);
2166 	if (pol != NULL) {
2167 		bool match;
2168 		int err = 0;
2169 
2170 		if (pol->family != family) {
2171 			pol = NULL;
2172 			goto out;
2173 		}
2174 
2175 		match = xfrm_selector_match(&pol->selector, fl, family);
2176 		if (match) {
2177 			if ((sk->sk_mark & pol->mark.m) != pol->mark.v ||
2178 			    pol->if_id != if_id) {
2179 				pol = NULL;
2180 				goto out;
2181 			}
2182 			err = security_xfrm_policy_lookup(pol->security,
2183 						      fl->flowi_secid);
2184 			if (!err) {
2185 				if (!xfrm_pol_hold_rcu(pol))
2186 					goto again;
2187 			} else if (err == -ESRCH) {
2188 				pol = NULL;
2189 			} else {
2190 				pol = ERR_PTR(err);
2191 			}
2192 		} else
2193 			pol = NULL;
2194 	}
2195 out:
2196 	rcu_read_unlock();
2197 	return pol;
2198 }
2199 
2200 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
2201 {
2202 	struct net *net = xp_net(pol);
2203 
2204 	list_add(&pol->walk.all, &net->xfrm.policy_all);
2205 	net->xfrm.policy_count[dir]++;
2206 	xfrm_pol_hold(pol);
2207 }
2208 
2209 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
2210 						int dir)
2211 {
2212 	struct net *net = xp_net(pol);
2213 
2214 	if (list_empty(&pol->walk.all))
2215 		return NULL;
2216 
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);
2222 	}
2223 
2224 	list_del_init(&pol->walk.all);
2225 	net->xfrm.policy_count[dir]--;
2226 
2227 	return pol;
2228 }
2229 
2230 static void xfrm_sk_policy_link(struct xfrm_policy *pol, int dir)
2231 {
2232 	__xfrm_policy_link(pol, XFRM_POLICY_MAX + dir);
2233 }
2234 
2235 static void xfrm_sk_policy_unlink(struct xfrm_policy *pol, int dir)
2236 {
2237 	__xfrm_policy_unlink(pol, XFRM_POLICY_MAX + dir);
2238 }
2239 
2240 int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
2241 {
2242 	struct net *net = xp_net(pol);
2243 
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);
2247 	if (pol) {
2248 		xfrm_policy_kill(pol);
2249 		return 0;
2250 	}
2251 	return -ENOENT;
2252 }
2253 EXPORT_SYMBOL(xfrm_policy_delete);
2254 
2255 int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
2256 {
2257 	struct net *net = sock_net(sk);
2258 	struct xfrm_policy *old_pol;
2259 
2260 #ifdef CONFIG_XFRM_SUB_POLICY
2261 	if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
2262 		return -EINVAL;
2263 #endif
2264 
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));
2268 	if (pol) {
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);
2272 	}
2273 	rcu_assign_pointer(sk->sk_policy[dir], pol);
2274 	if (old_pol) {
2275 		if (pol)
2276 			xfrm_policy_requeue(old_pol, pol);
2277 
2278 		/* Unlinking succeeds always. This is the only function
2279 		 * allowed to delete or replace socket policy.
2280 		 */
2281 		xfrm_sk_policy_unlink(old_pol, dir);
2282 	}
2283 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2284 
2285 	if (old_pol) {
2286 		xfrm_policy_kill(old_pol);
2287 	}
2288 	return 0;
2289 }
2290 
2291 static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
2292 {
2293 	struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
2294 	struct net *net = xp_net(old);
2295 
2296 	if (newp) {
2297 		newp->selector = old->selector;
2298 		if (security_xfrm_policy_clone(old->security,
2299 					       &newp->security)) {
2300 			kfree(newp);
2301 			return NULL;  /* ENOMEM */
2302 		}
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);
2318 		xfrm_pol_put(newp);
2319 	}
2320 	return newp;
2321 }
2322 
2323 int __xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk)
2324 {
2325 	const struct xfrm_policy *p;
2326 	struct xfrm_policy *np;
2327 	int i, ret = 0;
2328 
2329 	rcu_read_lock();
2330 	for (i = 0; i < 2; i++) {
2331 		p = rcu_dereference(osk->sk_policy[i]);
2332 		if (p) {
2333 			np = clone_policy(p, i);
2334 			if (unlikely(!np)) {
2335 				ret = -ENOMEM;
2336 				break;
2337 			}
2338 			rcu_assign_pointer(sk->sk_policy[i], np);
2339 		}
2340 	}
2341 	rcu_read_unlock();
2342 	return ret;
2343 }
2344 
2345 static int
2346 xfrm_get_saddr(struct net *net, int oif, xfrm_address_t *local,
2347 	       xfrm_address_t *remote, unsigned short family, u32 mark)
2348 {
2349 	int err;
2350 	const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2351 
2352 	if (unlikely(afinfo == NULL))
2353 		return -EINVAL;
2354 	err = afinfo->get_saddr(net, oif, local, remote, mark);
2355 	rcu_read_unlock();
2356 	return err;
2357 }
2358 
2359 /* Resolve list of templates for the flow, given policy. */
2360 
2361 static int
2362 xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
2363 		      struct xfrm_state **xfrm, unsigned short family)
2364 {
2365 	struct net *net = xp_net(policy);
2366 	int nx;
2367 	int i, error;
2368 	xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
2369 	xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
2370 	xfrm_address_t tmp;
2371 
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];
2377 
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,
2384 						       &tmp, remote,
2385 						       tmpl->encap_family, 0);
2386 				if (error)
2387 					goto fail;
2388 				local = &tmp;
2389 			}
2390 		}
2391 
2392 		x = xfrm_state_find(remote, local, fl, tmpl, policy, &error,
2393 				    family, policy->if_id);
2394 
2395 		if (x && x->km.state == XFRM_STATE_VALID) {
2396 			xfrm[nx++] = x;
2397 			daddr = remote;
2398 			saddr = local;
2399 			continue;
2400 		}
2401 		if (x) {
2402 			error = (x->km.state == XFRM_STATE_ERROR ?
2403 				 -EINVAL : -EAGAIN);
2404 			xfrm_state_put(x);
2405 		} else if (error == -ESRCH) {
2406 			error = -EAGAIN;
2407 		}
2408 
2409 		if (!tmpl->optional)
2410 			goto fail;
2411 	}
2412 	return nx;
2413 
2414 fail:
2415 	for (nx--; nx >= 0; nx--)
2416 		xfrm_state_put(xfrm[nx]);
2417 	return error;
2418 }
2419 
2420 static int
2421 xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
2422 		  struct xfrm_state **xfrm, unsigned short family)
2423 {
2424 	struct xfrm_state *tp[XFRM_MAX_DEPTH];
2425 	struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
2426 	int cnx = 0;
2427 	int error;
2428 	int ret;
2429 	int i;
2430 
2431 	for (i = 0; i < npols; i++) {
2432 		if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
2433 			error = -ENOBUFS;
2434 			goto fail;
2435 		}
2436 
2437 		ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
2438 		if (ret < 0) {
2439 			error = ret;
2440 			goto fail;
2441 		} else
2442 			cnx += ret;
2443 	}
2444 
2445 	/* found states are sorted for outbound processing */
2446 	if (npols > 1)
2447 		xfrm_state_sort(xfrm, tpp, cnx, family);
2448 
2449 	return cnx;
2450 
2451  fail:
2452 	for (cnx--; cnx >= 0; cnx--)
2453 		xfrm_state_put(tpp[cnx]);
2454 	return error;
2455 
2456 }
2457 
2458 static int xfrm_get_tos(const struct flowi *fl, int family)
2459 {
2460 	if (family == AF_INET)
2461 		return IPTOS_RT_MASK & fl->u.ip4.flowi4_tos;
2462 
2463 	return 0;
2464 }
2465 
2466 static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
2467 {
2468 	const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2469 	struct dst_ops *dst_ops;
2470 	struct xfrm_dst *xdst;
2471 
2472 	if (!afinfo)
2473 		return ERR_PTR(-EINVAL);
2474 
2475 	switch (family) {
2476 	case AF_INET:
2477 		dst_ops = &net->xfrm.xfrm4_dst_ops;
2478 		break;
2479 #if IS_ENABLED(CONFIG_IPV6)
2480 	case AF_INET6:
2481 		dst_ops = &net->xfrm.xfrm6_dst_ops;
2482 		break;
2483 #endif
2484 	default:
2485 		BUG();
2486 	}
2487 	xdst = dst_alloc(dst_ops, NULL, 1, DST_OBSOLETE_NONE, 0);
2488 
2489 	if (likely(xdst)) {
2490 		memset_after(xdst, 0, u.dst);
2491 	} else
2492 		xdst = ERR_PTR(-ENOBUFS);
2493 
2494 	rcu_read_unlock();
2495 
2496 	return xdst;
2497 }
2498 
2499 static void xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
2500 			   int nfheader_len)
2501 {
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;
2506 	}
2507 }
2508 
2509 static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
2510 				const struct flowi *fl)
2511 {
2512 	const struct xfrm_policy_afinfo *afinfo =
2513 		xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
2514 	int err;
2515 
2516 	if (!afinfo)
2517 		return -EINVAL;
2518 
2519 	err = afinfo->fill_dst(xdst, dev, fl);
2520 
2521 	rcu_read_unlock();
2522 
2523 	return err;
2524 }
2525 
2526 
2527 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
2528  * all the metrics... Shortly, bundle a bundle.
2529  */
2530 
2531 static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
2532 					    struct xfrm_state **xfrm,
2533 					    struct xfrm_dst **bundle,
2534 					    int nx,
2535 					    const struct flowi *fl,
2536 					    struct dst_entry *dst)
2537 {
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;
2545 	int i = 0;
2546 	int err;
2547 	int header_len = 0;
2548 	int nfheader_len = 0;
2549 	int trailer_len = 0;
2550 	int tos;
2551 	int family = policy->selector.family;
2552 	xfrm_address_t saddr, daddr;
2553 
2554 	xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
2555 
2556 	tos = xfrm_get_tos(fl, family);
2557 
2558 	dst_hold(dst);
2559 
2560 	for (; i < nx; i++) {
2561 		struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
2562 		struct dst_entry *dst1 = &xdst->u.dst;
2563 
2564 		err = PTR_ERR(xdst);
2565 		if (IS_ERR(xdst)) {
2566 			dst_release(dst);
2567 			goto put_states;
2568 		}
2569 
2570 		bundle[i] = xdst;
2571 		if (!xdst_prev)
2572 			xdst0 = xdst;
2573 		else
2574 			/* Ref count is taken during xfrm_alloc_dst()
2575 			 * No need to do dst_clone() on dst1
2576 			 */
2577 			xfrm_dst_set_child(xdst_prev, &xdst->u.dst);
2578 
2579 		if (xfrm[i]->sel.family == AF_UNSPEC) {
2580 			inner_mode = xfrm_ip2inner_mode(xfrm[i],
2581 							xfrm_af2proto(family));
2582 			if (!inner_mode) {
2583 				err = -EAFNOSUPPORT;
2584 				dst_release(dst);
2585 				goto put_states;
2586 			}
2587 		} else
2588 			inner_mode = &xfrm[i]->inner_mode;
2589 
2590 		xdst->route = dst;
2591 		dst_copy_metrics(dst1, dst);
2592 
2593 		if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
2594 			__u32 mark = 0;
2595 
2596 			if (xfrm[i]->props.smark.v || xfrm[i]->props.smark.m)
2597 				mark = xfrm_smark_get(fl->flowi_mark, xfrm[i]);
2598 
2599 			family = xfrm[i]->props.family;
2600 			dst = xfrm_dst_lookup(xfrm[i], tos, fl->flowi_oif,
2601 					      &saddr, &daddr, family, mark);
2602 			err = PTR_ERR(dst);
2603 			if (IS_ERR(dst))
2604 				goto put_states;
2605 		} else
2606 			dst_hold(dst);
2607 
2608 		dst1->xfrm = xfrm[i];
2609 		xdst->xfrm_genid = xfrm[i]->genid;
2610 
2611 		dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2612 		dst1->lastuse = now;
2613 
2614 		dst1->input = dst_discard;
2615 
2616 		rcu_read_lock();
2617 		afinfo = xfrm_state_afinfo_get_rcu(inner_mode->family);
2618 		if (likely(afinfo))
2619 			dst1->output = afinfo->output;
2620 		else
2621 			dst1->output = dst_discard_out;
2622 		rcu_read_unlock();
2623 
2624 		xdst_prev = xdst;
2625 
2626 		header_len += xfrm[i]->props.header_len;
2627 		if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
2628 			nfheader_len += xfrm[i]->props.header_len;
2629 		trailer_len += xfrm[i]->props.trailer_len;
2630 	}
2631 
2632 	xfrm_dst_set_child(xdst_prev, dst);
2633 	xdst0->path = dst;
2634 
2635 	err = -ENODEV;
2636 	dev = dst->dev;
2637 	if (!dev)
2638 		goto free_dst;
2639 
2640 	xfrm_init_path(xdst0, dst, nfheader_len);
2641 	xfrm_init_pmtu(bundle, nx);
2642 
2643 	for (xdst_prev = xdst0; xdst_prev != (struct xfrm_dst *)dst;
2644 	     xdst_prev = (struct xfrm_dst *) xfrm_dst_child(&xdst_prev->u.dst)) {
2645 		err = xfrm_fill_dst(xdst_prev, dev, fl);
2646 		if (err)
2647 			goto free_dst;
2648 
2649 		xdst_prev->u.dst.header_len = header_len;
2650 		xdst_prev->u.dst.trailer_len = trailer_len;
2651 		header_len -= xdst_prev->u.dst.xfrm->props.header_len;
2652 		trailer_len -= xdst_prev->u.dst.xfrm->props.trailer_len;
2653 	}
2654 
2655 	return &xdst0->u.dst;
2656 
2657 put_states:
2658 	for (; i < nx; i++)
2659 		xfrm_state_put(xfrm[i]);
2660 free_dst:
2661 	if (xdst0)
2662 		dst_release_immediate(&xdst0->u.dst);
2663 
2664 	return ERR_PTR(err);
2665 }
2666 
2667 static int xfrm_expand_policies(const struct flowi *fl, u16 family,
2668 				struct xfrm_policy **pols,
2669 				int *num_pols, int *num_xfrms)
2670 {
2671 	int i;
2672 
2673 	if (*num_pols == 0 || !pols[0]) {
2674 		*num_pols = 0;
2675 		*num_xfrms = 0;
2676 		return 0;
2677 	}
2678 	if (IS_ERR(pols[0]))
2679 		return PTR_ERR(pols[0]);
2680 
2681 	*num_xfrms = pols[0]->xfrm_nr;
2682 
2683 #ifdef CONFIG_XFRM_SUB_POLICY
2684 	if (pols[0]->action == XFRM_POLICY_ALLOW &&
2685 	    pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
2686 		pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
2687 						    XFRM_POLICY_TYPE_MAIN,
2688 						    fl, family,
2689 						    XFRM_POLICY_OUT,
2690 						    pols[0]->if_id);
2691 		if (pols[1]) {
2692 			if (IS_ERR(pols[1])) {
2693 				xfrm_pols_put(pols, *num_pols);
2694 				return PTR_ERR(pols[1]);
2695 			}
2696 			(*num_pols)++;
2697 			(*num_xfrms) += pols[1]->xfrm_nr;
2698 		}
2699 	}
2700 #endif
2701 	for (i = 0; i < *num_pols; i++) {
2702 		if (pols[i]->action != XFRM_POLICY_ALLOW) {
2703 			*num_xfrms = -1;
2704 			break;
2705 		}
2706 	}
2707 
2708 	return 0;
2709 
2710 }
2711 
2712 static struct xfrm_dst *
2713 xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
2714 			       const struct flowi *fl, u16 family,
2715 			       struct dst_entry *dst_orig)
2716 {
2717 	struct net *net = xp_net(pols[0]);
2718 	struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
2719 	struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
2720 	struct xfrm_dst *xdst;
2721 	struct dst_entry *dst;
2722 	int err;
2723 
2724 	/* Try to instantiate a bundle */
2725 	err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
2726 	if (err <= 0) {
2727 		if (err == 0)
2728 			return NULL;
2729 
2730 		if (err != -EAGAIN)
2731 			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2732 		return ERR_PTR(err);
2733 	}
2734 
2735 	dst = xfrm_bundle_create(pols[0], xfrm, bundle, err, fl, dst_orig);
2736 	if (IS_ERR(dst)) {
2737 		XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
2738 		return ERR_CAST(dst);
2739 	}
2740 
2741 	xdst = (struct xfrm_dst *)dst;
2742 	xdst->num_xfrms = err;
2743 	xdst->num_pols = num_pols;
2744 	memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
2745 	xdst->policy_genid = atomic_read(&pols[0]->genid);
2746 
2747 	return xdst;
2748 }
2749 
2750 static void xfrm_policy_queue_process(struct timer_list *t)
2751 {
2752 	struct sk_buff *skb;
2753 	struct sock *sk;
2754 	struct dst_entry *dst;
2755 	struct xfrm_policy *pol = from_timer(pol, t, polq.hold_timer);
2756 	struct net *net = xp_net(pol);
2757 	struct xfrm_policy_queue *pq = &pol->polq;
2758 	struct flowi fl;
2759 	struct sk_buff_head list;
2760 	__u32 skb_mark;
2761 
2762 	spin_lock(&pq->hold_queue.lock);
2763 	skb = skb_peek(&pq->hold_queue);
2764 	if (!skb) {
2765 		spin_unlock(&pq->hold_queue.lock);
2766 		goto out;
2767 	}
2768 	dst = skb_dst(skb);
2769 	sk = skb->sk;
2770 
2771 	/* Fixup the mark to support VTI. */
2772 	skb_mark = skb->mark;
2773 	skb->mark = pol->mark.v;
2774 	xfrm_decode_session(skb, &fl, dst->ops->family);
2775 	skb->mark = skb_mark;
2776 	spin_unlock(&pq->hold_queue.lock);
2777 
2778 	dst_hold(xfrm_dst_path(dst));
2779 	dst = xfrm_lookup(net, xfrm_dst_path(dst), &fl, sk, XFRM_LOOKUP_QUEUE);
2780 	if (IS_ERR(dst))
2781 		goto purge_queue;
2782 
2783 	if (dst->flags & DST_XFRM_QUEUE) {
2784 		dst_release(dst);
2785 
2786 		if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
2787 			goto purge_queue;
2788 
2789 		pq->timeout = pq->timeout << 1;
2790 		if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
2791 			xfrm_pol_hold(pol);
2792 		goto out;
2793 	}
2794 
2795 	dst_release(dst);
2796 
2797 	__skb_queue_head_init(&list);
2798 
2799 	spin_lock(&pq->hold_queue.lock);
2800 	pq->timeout = 0;
2801 	skb_queue_splice_init(&pq->hold_queue, &list);
2802 	spin_unlock(&pq->hold_queue.lock);
2803 
2804 	while (!skb_queue_empty(&list)) {
2805 		skb = __skb_dequeue(&list);
2806 
2807 		/* Fixup the mark to support VTI. */
2808 		skb_mark = skb->mark;
2809 		skb->mark = pol->mark.v;
2810 		xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
2811 		skb->mark = skb_mark;
2812 
2813 		dst_hold(xfrm_dst_path(skb_dst(skb)));
2814 		dst = xfrm_lookup(net, xfrm_dst_path(skb_dst(skb)), &fl, skb->sk, 0);
2815 		if (IS_ERR(dst)) {
2816 			kfree_skb(skb);
2817 			continue;
2818 		}
2819 
2820 		nf_reset_ct(skb);
2821 		skb_dst_drop(skb);
2822 		skb_dst_set(skb, dst);
2823 
2824 		dst_output(net, skb->sk, skb);
2825 	}
2826 
2827 out:
2828 	xfrm_pol_put(pol);
2829 	return;
2830 
2831 purge_queue:
2832 	pq->timeout = 0;
2833 	skb_queue_purge(&pq->hold_queue);
2834 	xfrm_pol_put(pol);
2835 }
2836 
2837 static int xdst_queue_output(struct net *net, struct sock *sk, struct sk_buff *skb)
2838 {
2839 	unsigned long sched_next;
2840 	struct dst_entry *dst = skb_dst(skb);
2841 	struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
2842 	struct xfrm_policy *pol = xdst->pols[0];
2843 	struct xfrm_policy_queue *pq = &pol->polq;
2844 
2845 	if (unlikely(skb_fclone_busy(sk, skb))) {
2846 		kfree_skb(skb);
2847 		return 0;
2848 	}
2849 
2850 	if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
2851 		kfree_skb(skb);
2852 		return -EAGAIN;
2853 	}
2854 
2855 	skb_dst_force(skb);
2856 
2857 	spin_lock_bh(&pq->hold_queue.lock);
2858 
2859 	if (!pq->timeout)
2860 		pq->timeout = XFRM_QUEUE_TMO_MIN;
2861 
2862 	sched_next = jiffies + pq->timeout;
2863 
2864 	if (del_timer(&pq->hold_timer)) {
2865 		if (time_before(pq->hold_timer.expires, sched_next))
2866 			sched_next = pq->hold_timer.expires;
2867 		xfrm_pol_put(pol);
2868 	}
2869 
2870 	__skb_queue_tail(&pq->hold_queue, skb);
2871 	if (!mod_timer(&pq->hold_timer, sched_next))
2872 		xfrm_pol_hold(pol);
2873 
2874 	spin_unlock_bh(&pq->hold_queue.lock);
2875 
2876 	return 0;
2877 }
2878 
2879 static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
2880 						 struct xfrm_flo *xflo,
2881 						 const struct flowi *fl,
2882 						 int num_xfrms,
2883 						 u16 family)
2884 {
2885 	int err;
2886 	struct net_device *dev;
2887 	struct dst_entry *dst;
2888 	struct dst_entry *dst1;
2889 	struct xfrm_dst *xdst;
2890 
2891 	xdst = xfrm_alloc_dst(net, family);
2892 	if (IS_ERR(xdst))
2893 		return xdst;
2894 
2895 	if (!(xflo->flags & XFRM_LOOKUP_QUEUE) ||
2896 	    net->xfrm.sysctl_larval_drop ||
2897 	    num_xfrms <= 0)
2898 		return xdst;
2899 
2900 	dst = xflo->dst_orig;
2901 	dst1 = &xdst->u.dst;
2902 	dst_hold(dst);
2903 	xdst->route = dst;
2904 
2905 	dst_copy_metrics(dst1, dst);
2906 
2907 	dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2908 	dst1->flags |= DST_XFRM_QUEUE;
2909 	dst1->lastuse = jiffies;
2910 
2911 	dst1->input = dst_discard;
2912 	dst1->output = xdst_queue_output;
2913 
2914 	dst_hold(dst);
2915 	xfrm_dst_set_child(xdst, dst);
2916 	xdst->path = dst;
2917 
2918 	xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
2919 
2920 	err = -ENODEV;
2921 	dev = dst->dev;
2922 	if (!dev)
2923 		goto free_dst;
2924 
2925 	err = xfrm_fill_dst(xdst, dev, fl);
2926 	if (err)
2927 		goto free_dst;
2928 
2929 out:
2930 	return xdst;
2931 
2932 free_dst:
2933 	dst_release(dst1);
2934 	xdst = ERR_PTR(err);
2935 	goto out;
2936 }
2937 
2938 static struct xfrm_dst *xfrm_bundle_lookup(struct net *net,
2939 					   const struct flowi *fl,
2940 					   u16 family, u8 dir,
2941 					   struct xfrm_flo *xflo, u32 if_id)
2942 {
2943 	struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2944 	int num_pols = 0, num_xfrms = 0, err;
2945 	struct xfrm_dst *xdst;
2946 
2947 	/* Resolve policies to use if we couldn't get them from
2948 	 * previous cache entry */
2949 	num_pols = 1;
2950 	pols[0] = xfrm_policy_lookup(net, fl, family, dir, if_id);
2951 	err = xfrm_expand_policies(fl, family, pols,
2952 					   &num_pols, &num_xfrms);
2953 	if (err < 0)
2954 		goto inc_error;
2955 	if (num_pols == 0)
2956 		return NULL;
2957 	if (num_xfrms <= 0)
2958 		goto make_dummy_bundle;
2959 
2960 	xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family,
2961 					      xflo->dst_orig);
2962 	if (IS_ERR(xdst)) {
2963 		err = PTR_ERR(xdst);
2964 		if (err == -EREMOTE) {
2965 			xfrm_pols_put(pols, num_pols);
2966 			return NULL;
2967 		}
2968 
2969 		if (err != -EAGAIN)
2970 			goto error;
2971 		goto make_dummy_bundle;
2972 	} else if (xdst == NULL) {
2973 		num_xfrms = 0;
2974 		goto make_dummy_bundle;
2975 	}
2976 
2977 	return xdst;
2978 
2979 make_dummy_bundle:
2980 	/* We found policies, but there's no bundles to instantiate:
2981 	 * either because the policy blocks, has no transformations or
2982 	 * we could not build template (no xfrm_states).*/
2983 	xdst = xfrm_create_dummy_bundle(net, xflo, fl, num_xfrms, family);
2984 	if (IS_ERR(xdst)) {
2985 		xfrm_pols_put(pols, num_pols);
2986 		return ERR_CAST(xdst);
2987 	}
2988 	xdst->num_pols = num_pols;
2989 	xdst->num_xfrms = num_xfrms;
2990 	memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
2991 
2992 	return xdst;
2993 
2994 inc_error:
2995 	XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2996 error:
2997 	xfrm_pols_put(pols, num_pols);
2998 	return ERR_PTR(err);
2999 }
3000 
3001 static struct dst_entry *make_blackhole(struct net *net, u16 family,
3002 					struct dst_entry *dst_orig)
3003 {
3004 	const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
3005 	struct dst_entry *ret;
3006 
3007 	if (!afinfo) {
3008 		dst_release(dst_orig);
3009 		return ERR_PTR(-EINVAL);
3010 	} else {
3011 		ret = afinfo->blackhole_route(net, dst_orig);
3012 	}
3013 	rcu_read_unlock();
3014 
3015 	return ret;
3016 }
3017 
3018 /* Finds/creates a bundle for given flow and if_id
3019  *
3020  * At the moment we eat a raw IP route. Mostly to speed up lookups
3021  * on interfaces with disabled IPsec.
3022  *
3023  * xfrm_lookup uses an if_id of 0 by default, and is provided for
3024  * compatibility
3025  */
3026 struct dst_entry *xfrm_lookup_with_ifid(struct net *net,
3027 					struct dst_entry *dst_orig,
3028 					const struct flowi *fl,
3029 					const struct sock *sk,
3030 					int flags, u32 if_id)
3031 {
3032 	struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3033 	struct xfrm_dst *xdst;
3034 	struct dst_entry *dst, *route;
3035 	u16 family = dst_orig->ops->family;
3036 	u8 dir = XFRM_POLICY_OUT;
3037 	int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
3038 
3039 	dst = NULL;
3040 	xdst = NULL;
3041 	route = NULL;
3042 
3043 	sk = sk_const_to_full_sk(sk);
3044 	if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
3045 		num_pols = 1;
3046 		pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, family,
3047 						if_id);
3048 		err = xfrm_expand_policies(fl, family, pols,
3049 					   &num_pols, &num_xfrms);
3050 		if (err < 0)
3051 			goto dropdst;
3052 
3053 		if (num_pols) {
3054 			if (num_xfrms <= 0) {
3055 				drop_pols = num_pols;
3056 				goto no_transform;
3057 			}
3058 
3059 			xdst = xfrm_resolve_and_create_bundle(
3060 					pols, num_pols, fl,
3061 					family, dst_orig);
3062 
3063 			if (IS_ERR(xdst)) {
3064 				xfrm_pols_put(pols, num_pols);
3065 				err = PTR_ERR(xdst);
3066 				if (err == -EREMOTE)
3067 					goto nopol;
3068 
3069 				goto dropdst;
3070 			} else if (xdst == NULL) {
3071 				num_xfrms = 0;
3072 				drop_pols = num_pols;
3073 				goto no_transform;
3074 			}
3075 
3076 			route = xdst->route;
3077 		}
3078 	}
3079 
3080 	if (xdst == NULL) {
3081 		struct xfrm_flo xflo;
3082 
3083 		xflo.dst_orig = dst_orig;
3084 		xflo.flags = flags;
3085 
3086 		/* To accelerate a bit...  */
3087 		if (!if_id && ((dst_orig->flags & DST_NOXFRM) ||
3088 			       !net->xfrm.policy_count[XFRM_POLICY_OUT]))
3089 			goto nopol;
3090 
3091 		xdst = xfrm_bundle_lookup(net, fl, family, dir, &xflo, if_id);
3092 		if (xdst == NULL)
3093 			goto nopol;
3094 		if (IS_ERR(xdst)) {
3095 			err = PTR_ERR(xdst);
3096 			goto dropdst;
3097 		}
3098 
3099 		num_pols = xdst->num_pols;
3100 		num_xfrms = xdst->num_xfrms;
3101 		memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
3102 		route = xdst->route;
3103 	}
3104 
3105 	dst = &xdst->u.dst;
3106 	if (route == NULL && num_xfrms > 0) {
3107 		/* The only case when xfrm_bundle_lookup() returns a
3108 		 * bundle with null route, is when the template could
3109 		 * not be resolved. It means policies are there, but
3110 		 * bundle could not be created, since we don't yet
3111 		 * have the xfrm_state's. We need to wait for KM to
3112 		 * negotiate new SA's or bail out with error.*/
3113 		if (net->xfrm.sysctl_larval_drop) {
3114 			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3115 			err = -EREMOTE;
3116 			goto error;
3117 		}
3118 
3119 		err = -EAGAIN;
3120 
3121 		XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3122 		goto error;
3123 	}
3124 
3125 no_transform:
3126 	if (num_pols == 0)
3127 		goto nopol;
3128 
3129 	if ((flags & XFRM_LOOKUP_ICMP) &&
3130 	    !(pols[0]->flags & XFRM_POLICY_ICMP)) {
3131 		err = -ENOENT;
3132 		goto error;
3133 	}
3134 
3135 	for (i = 0; i < num_pols; i++)
3136 		pols[i]->curlft.use_time = ktime_get_real_seconds();
3137 
3138 	if (num_xfrms < 0) {
3139 		/* Prohibit the flow */
3140 		XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
3141 		err = -EPERM;
3142 		goto error;
3143 	} else if (num_xfrms > 0) {
3144 		/* Flow transformed */
3145 		dst_release(dst_orig);
3146 	} else {
3147 		/* Flow passes untransformed */
3148 		dst_release(dst);
3149 		dst = dst_orig;
3150 	}
3151 ok:
3152 	xfrm_pols_put(pols, drop_pols);
3153 	if (dst && dst->xfrm &&
3154 	    dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
3155 		dst->flags |= DST_XFRM_TUNNEL;
3156 	return dst;
3157 
3158 nopol:
3159 	if (!(dst_orig->dev->flags & IFF_LOOPBACK) &&
3160 	    !xfrm_default_allow(net, dir)) {
3161 		err = -EPERM;
3162 		goto error;
3163 	}
3164 	if (!(flags & XFRM_LOOKUP_ICMP)) {
3165 		dst = dst_orig;
3166 		goto ok;
3167 	}
3168 	err = -ENOENT;
3169 error:
3170 	dst_release(dst);
3171 dropdst:
3172 	if (!(flags & XFRM_LOOKUP_KEEP_DST_REF))
3173 		dst_release(dst_orig);
3174 	xfrm_pols_put(pols, drop_pols);
3175 	return ERR_PTR(err);
3176 }
3177 EXPORT_SYMBOL(xfrm_lookup_with_ifid);
3178 
3179 /* Main function: finds/creates a bundle for given flow.
3180  *
3181  * At the moment we eat a raw IP route. Mostly to speed up lookups
3182  * on interfaces with disabled IPsec.
3183  */
3184 struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
3185 			      const struct flowi *fl, const struct sock *sk,
3186 			      int flags)
3187 {
3188 	return xfrm_lookup_with_ifid(net, dst_orig, fl, sk, flags, 0);
3189 }
3190 EXPORT_SYMBOL(xfrm_lookup);
3191 
3192 /* Callers of xfrm_lookup_route() must ensure a call to dst_output().
3193  * Otherwise we may send out blackholed packets.
3194  */
3195 struct dst_entry *xfrm_lookup_route(struct net *net, struct dst_entry *dst_orig,
3196 				    const struct flowi *fl,
3197 				    const struct sock *sk, int flags)
3198 {
3199 	struct dst_entry *dst = xfrm_lookup(net, dst_orig, fl, sk,
3200 					    flags | XFRM_LOOKUP_QUEUE |
3201 					    XFRM_LOOKUP_KEEP_DST_REF);
3202 
3203 	if (PTR_ERR(dst) == -EREMOTE)
3204 		return make_blackhole(net, dst_orig->ops->family, dst_orig);
3205 
3206 	if (IS_ERR(dst))
3207 		dst_release(dst_orig);
3208 
3209 	return dst;
3210 }
3211 EXPORT_SYMBOL(xfrm_lookup_route);
3212 
3213 static inline int
3214 xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
3215 {
3216 	struct sec_path *sp = skb_sec_path(skb);
3217 	struct xfrm_state *x;
3218 
3219 	if (!sp || idx < 0 || idx >= sp->len)
3220 		return 0;
3221 	x = sp->xvec[idx];
3222 	if (!x->type->reject)
3223 		return 0;
3224 	return x->type->reject(x, skb, fl);
3225 }
3226 
3227 /* When skb is transformed back to its "native" form, we have to
3228  * check policy restrictions. At the moment we make this in maximally
3229  * stupid way. Shame on me. :-) Of course, connected sockets must
3230  * have policy cached at them.
3231  */
3232 
3233 static inline int
3234 xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
3235 	      unsigned short family)
3236 {
3237 	if (xfrm_state_kern(x))
3238 		return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
3239 	return	x->id.proto == tmpl->id.proto &&
3240 		(x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
3241 		(x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
3242 		x->props.mode == tmpl->mode &&
3243 		(tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
3244 		 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
3245 		!(x->props.mode != XFRM_MODE_TRANSPORT &&
3246 		  xfrm_state_addr_cmp(tmpl, x, family));
3247 }
3248 
3249 /*
3250  * 0 or more than 0 is returned when validation is succeeded (either bypass
3251  * because of optional transport mode, or next index of the matched secpath
3252  * state with the template.
3253  * -1 is returned when no matching template is found.
3254  * Otherwise "-2 - errored_index" is returned.
3255  */
3256 static inline int
3257 xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
3258 	       unsigned short family)
3259 {
3260 	int idx = start;
3261 
3262 	if (tmpl->optional) {
3263 		if (tmpl->mode == XFRM_MODE_TRANSPORT)
3264 			return start;
3265 	} else
3266 		start = -1;
3267 	for (; idx < sp->len; idx++) {
3268 		if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
3269 			return ++idx;
3270 		if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
3271 			if (start == -1)
3272 				start = -2-idx;
3273 			break;
3274 		}
3275 	}
3276 	return start;
3277 }
3278 
3279 static void
3280 decode_session4(struct sk_buff *skb, struct flowi *fl, bool reverse)
3281 {
3282 	const struct iphdr *iph = ip_hdr(skb);
3283 	int ihl = iph->ihl;
3284 	u8 *xprth = skb_network_header(skb) + ihl * 4;
3285 	struct flowi4 *fl4 = &fl->u.ip4;
3286 	int oif = 0;
3287 
3288 	if (skb_dst(skb) && skb_dst(skb)->dev)
3289 		oif = skb_dst(skb)->dev->ifindex;
3290 
3291 	memset(fl4, 0, sizeof(struct flowi4));
3292 	fl4->flowi4_mark = skb->mark;
3293 	fl4->flowi4_oif = reverse ? skb->skb_iif : oif;
3294 
3295 	fl4->flowi4_proto = iph->protocol;
3296 	fl4->daddr = reverse ? iph->saddr : iph->daddr;
3297 	fl4->saddr = reverse ? iph->daddr : iph->saddr;
3298 	fl4->flowi4_tos = iph->tos;
3299 
3300 	if (!ip_is_fragment(iph)) {
3301 		switch (iph->protocol) {
3302 		case IPPROTO_UDP:
3303 		case IPPROTO_UDPLITE:
3304 		case IPPROTO_TCP:
3305 		case IPPROTO_SCTP:
3306 		case IPPROTO_DCCP:
3307 			if (xprth + 4 < skb->data ||
3308 			    pskb_may_pull(skb, xprth + 4 - skb->data)) {
3309 				__be16 *ports;
3310 
3311 				xprth = skb_network_header(skb) + ihl * 4;
3312 				ports = (__be16 *)xprth;
3313 
3314 				fl4->fl4_sport = ports[!!reverse];
3315 				fl4->fl4_dport = ports[!reverse];
3316 			}
3317 			break;
3318 		case IPPROTO_ICMP:
3319 			if (xprth + 2 < skb->data ||
3320 			    pskb_may_pull(skb, xprth + 2 - skb->data)) {
3321 				u8 *icmp;
3322 
3323 				xprth = skb_network_header(skb) + ihl * 4;
3324 				icmp = xprth;
3325 
3326 				fl4->fl4_icmp_type = icmp[0];
3327 				fl4->fl4_icmp_code = icmp[1];
3328 			}
3329 			break;
3330 		case IPPROTO_GRE:
3331 			if (xprth + 12 < skb->data ||
3332 			    pskb_may_pull(skb, xprth + 12 - skb->data)) {
3333 				__be16 *greflags;
3334 				__be32 *gre_hdr;
3335 
3336 				xprth = skb_network_header(skb) + ihl * 4;
3337 				greflags = (__be16 *)xprth;
3338 				gre_hdr = (__be32 *)xprth;
3339 
3340 				if (greflags[0] & GRE_KEY) {
3341 					if (greflags[0] & GRE_CSUM)
3342 						gre_hdr++;
3343 					fl4->fl4_gre_key = gre_hdr[1];
3344 				}
3345 			}
3346 			break;
3347 		default:
3348 			break;
3349 		}
3350 	}
3351 }
3352 
3353 #if IS_ENABLED(CONFIG_IPV6)
3354 static void
3355 decode_session6(struct sk_buff *skb, struct flowi *fl, bool reverse)
3356 {
3357 	struct flowi6 *fl6 = &fl->u.ip6;
3358 	int onlyproto = 0;
3359 	const struct ipv6hdr *hdr = ipv6_hdr(skb);
3360 	u32 offset = sizeof(*hdr);
3361 	struct ipv6_opt_hdr *exthdr;
3362 	const unsigned char *nh = skb_network_header(skb);
3363 	u16 nhoff = IP6CB(skb)->nhoff;
3364 	int oif = 0;
3365 	u8 nexthdr;
3366 
3367 	if (!nhoff)
3368 		nhoff = offsetof(struct ipv6hdr, nexthdr);
3369 
3370 	nexthdr = nh[nhoff];
3371 
3372 	if (skb_dst(skb) && skb_dst(skb)->dev)
3373 		oif = skb_dst(skb)->dev->ifindex;
3374 
3375 	memset(fl6, 0, sizeof(struct flowi6));
3376 	fl6->flowi6_mark = skb->mark;
3377 	fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
3378 
3379 	fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
3380 	fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
3381 
3382 	while (nh + offset + sizeof(*exthdr) < skb->data ||
3383 	       pskb_may_pull(skb, nh + offset + sizeof(*exthdr) - skb->data)) {
3384 		nh = skb_network_header(skb);
3385 		exthdr = (struct ipv6_opt_hdr *)(nh + offset);
3386 
3387 		switch (nexthdr) {
3388 		case NEXTHDR_FRAGMENT:
3389 			onlyproto = 1;
3390 			fallthrough;
3391 		case NEXTHDR_ROUTING:
3392 		case NEXTHDR_HOP:
3393 		case NEXTHDR_DEST:
3394 			offset += ipv6_optlen(exthdr);
3395 			nexthdr = exthdr->nexthdr;
3396 			break;
3397 		case IPPROTO_UDP:
3398 		case IPPROTO_UDPLITE:
3399 		case IPPROTO_TCP:
3400 		case IPPROTO_SCTP:
3401 		case IPPROTO_DCCP:
3402 			if (!onlyproto && (nh + offset + 4 < skb->data ||
3403 			     pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
3404 				__be16 *ports;
3405 
3406 				nh = skb_network_header(skb);
3407 				ports = (__be16 *)(nh + offset);
3408 				fl6->fl6_sport = ports[!!reverse];
3409 				fl6->fl6_dport = ports[!reverse];
3410 			}
3411 			fl6->flowi6_proto = nexthdr;
3412 			return;
3413 		case IPPROTO_ICMPV6:
3414 			if (!onlyproto && (nh + offset + 2 < skb->data ||
3415 			    pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
3416 				u8 *icmp;
3417 
3418 				nh = skb_network_header(skb);
3419 				icmp = (u8 *)(nh + offset);
3420 				fl6->fl6_icmp_type = icmp[0];
3421 				fl6->fl6_icmp_code = icmp[1];
3422 			}
3423 			fl6->flowi6_proto = nexthdr;
3424 			return;
3425 		case IPPROTO_GRE:
3426 			if (!onlyproto &&
3427 			    (nh + offset + 12 < skb->data ||
3428 			     pskb_may_pull(skb, nh + offset + 12 - skb->data))) {
3429 				struct gre_base_hdr *gre_hdr;
3430 				__be32 *gre_key;
3431 
3432 				nh = skb_network_header(skb);
3433 				gre_hdr = (struct gre_base_hdr *)(nh + offset);
3434 				gre_key = (__be32 *)(gre_hdr + 1);
3435 
3436 				if (gre_hdr->flags & GRE_KEY) {
3437 					if (gre_hdr->flags & GRE_CSUM)
3438 						gre_key++;
3439 					fl6->fl6_gre_key = *gre_key;
3440 				}
3441 			}
3442 			fl6->flowi6_proto = nexthdr;
3443 			return;
3444 
3445 #if IS_ENABLED(CONFIG_IPV6_MIP6)
3446 		case IPPROTO_MH:
3447 			offset += ipv6_optlen(exthdr);
3448 			if (!onlyproto && (nh + offset + 3 < skb->data ||
3449 			    pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
3450 				struct ip6_mh *mh;
3451 
3452 				nh = skb_network_header(skb);
3453 				mh = (struct ip6_mh *)(nh + offset);
3454 				fl6->fl6_mh_type = mh->ip6mh_type;
3455 			}
3456 			fl6->flowi6_proto = nexthdr;
3457 			return;
3458 #endif
3459 		default:
3460 			fl6->flowi6_proto = nexthdr;
3461 			return;
3462 		}
3463 	}
3464 }
3465 #endif
3466 
3467 int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
3468 			  unsigned int family, int reverse)
3469 {
3470 	switch (family) {
3471 	case AF_INET:
3472 		decode_session4(skb, fl, reverse);
3473 		break;
3474 #if IS_ENABLED(CONFIG_IPV6)
3475 	case AF_INET6:
3476 		decode_session6(skb, fl, reverse);
3477 		break;
3478 #endif
3479 	default:
3480 		return -EAFNOSUPPORT;
3481 	}
3482 
3483 	return security_xfrm_decode_session(skb, &fl->flowi_secid);
3484 }
3485 EXPORT_SYMBOL(__xfrm_decode_session);
3486 
3487 static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
3488 {
3489 	for (; k < sp->len; k++) {
3490 		if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
3491 			*idxp = k;
3492 			return 1;
3493 		}
3494 	}
3495 
3496 	return 0;
3497 }
3498 
3499 int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
3500 			unsigned short family)
3501 {
3502 	struct net *net = dev_net(skb->dev);
3503 	struct xfrm_policy *pol;
3504 	struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3505 	int npols = 0;
3506 	int xfrm_nr;
3507 	int pi;
3508 	int reverse;
3509 	struct flowi fl;
3510 	int xerr_idx = -1;
3511 	const struct xfrm_if_cb *ifcb;
3512 	struct sec_path *sp;
3513 	struct xfrm_if *xi;
3514 	u32 if_id = 0;
3515 
3516 	rcu_read_lock();
3517 	ifcb = xfrm_if_get_cb();
3518 
3519 	if (ifcb) {
3520 		xi = ifcb->decode_session(skb, family);
3521 		if (xi) {
3522 			if_id = xi->p.if_id;
3523 			net = xi->net;
3524 		}
3525 	}
3526 	rcu_read_unlock();
3527 
3528 	reverse = dir & ~XFRM_POLICY_MASK;
3529 	dir &= XFRM_POLICY_MASK;
3530 
3531 	if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
3532 		XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
3533 		return 0;
3534 	}
3535 
3536 	nf_nat_decode_session(skb, &fl, family);
3537 
3538 	/* First, check used SA against their selectors. */
3539 	sp = skb_sec_path(skb);
3540 	if (sp) {
3541 		int i;
3542 
3543 		for (i = sp->len - 1; i >= 0; i--) {
3544 			struct xfrm_state *x = sp->xvec[i];
3545 			if (!xfrm_selector_match(&x->sel, &fl, family)) {
3546 				XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
3547 				return 0;
3548 			}
3549 		}
3550 	}
3551 
3552 	pol = NULL;
3553 	sk = sk_to_full_sk(sk);
3554 	if (sk && sk->sk_policy[dir]) {
3555 		pol = xfrm_sk_policy_lookup(sk, dir, &fl, family, if_id);
3556 		if (IS_ERR(pol)) {
3557 			XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3558 			return 0;
3559 		}
3560 	}
3561 
3562 	if (!pol)
3563 		pol = xfrm_policy_lookup(net, &fl, family, dir, if_id);
3564 
3565 	if (IS_ERR(pol)) {
3566 		XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3567 		return 0;
3568 	}
3569 
3570 	if (!pol) {
3571 		if (!xfrm_default_allow(net, dir)) {
3572 			XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
3573 			return 0;
3574 		}
3575 
3576 		if (sp && secpath_has_nontransport(sp, 0, &xerr_idx)) {
3577 			xfrm_secpath_reject(xerr_idx, skb, &fl);
3578 			XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
3579 			return 0;
3580 		}
3581 		return 1;
3582 	}
3583 
3584 	pol->curlft.use_time = ktime_get_real_seconds();
3585 
3586 	pols[0] = pol;
3587 	npols++;
3588 #ifdef CONFIG_XFRM_SUB_POLICY
3589 	if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
3590 		pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
3591 						    &fl, family,
3592 						    XFRM_POLICY_IN, if_id);
3593 		if (pols[1]) {
3594 			if (IS_ERR(pols[1])) {
3595 				XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3596 				return 0;
3597 			}
3598 			pols[1]->curlft.use_time = ktime_get_real_seconds();
3599 			npols++;
3600 		}
3601 	}
3602 #endif
3603 
3604 	if (pol->action == XFRM_POLICY_ALLOW) {
3605 		static struct sec_path dummy;
3606 		struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
3607 		struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
3608 		struct xfrm_tmpl **tpp = tp;
3609 		int ti = 0;
3610 		int i, k;
3611 
3612 		sp = skb_sec_path(skb);
3613 		if (!sp)
3614 			sp = &dummy;
3615 
3616 		for (pi = 0; pi < npols; pi++) {
3617 			if (pols[pi] != pol &&
3618 			    pols[pi]->action != XFRM_POLICY_ALLOW) {
3619 				XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3620 				goto reject;
3621 			}
3622 			if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
3623 				XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
3624 				goto reject_error;
3625 			}
3626 			for (i = 0; i < pols[pi]->xfrm_nr; i++)
3627 				tpp[ti++] = &pols[pi]->xfrm_vec[i];
3628 		}
3629 		xfrm_nr = ti;
3630 
3631 		if (!xfrm_default_allow(net, dir) && !xfrm_nr) {
3632 			XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOSTATES);
3633 			goto reject;
3634 		}
3635 
3636 		if (npols > 1) {
3637 			xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
3638 			tpp = stp;
3639 		}
3640 
3641 		/* For each tunnel xfrm, find the first matching tmpl.
3642 		 * For each tmpl before that, find corresponding xfrm.
3643 		 * Order is _important_. Later we will implement
3644 		 * some barriers, but at the moment barriers
3645 		 * are implied between each two transformations.
3646 		 */
3647 		for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
3648 			k = xfrm_policy_ok(tpp[i], sp, k, family);
3649 			if (k < 0) {
3650 				if (k < -1)
3651 					/* "-2 - errored_index" returned */
3652 					xerr_idx = -(2+k);
3653 				XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3654 				goto reject;
3655 			}
3656 		}
3657 
3658 		if (secpath_has_nontransport(sp, k, &xerr_idx)) {
3659 			XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3660 			goto reject;
3661 		}
3662 
3663 		xfrm_pols_put(pols, npols);
3664 		return 1;
3665 	}
3666 	XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3667 
3668 reject:
3669 	xfrm_secpath_reject(xerr_idx, skb, &fl);
3670 reject_error:
3671 	xfrm_pols_put(pols, npols);
3672 	return 0;
3673 }
3674 EXPORT_SYMBOL(__xfrm_policy_check);
3675 
3676 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
3677 {
3678 	struct net *net = dev_net(skb->dev);
3679 	struct flowi fl;
3680 	struct dst_entry *dst;
3681 	int res = 1;
3682 
3683 	if (xfrm_decode_session(skb, &fl, family) < 0) {
3684 		XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3685 		return 0;
3686 	}
3687 
3688 	skb_dst_force(skb);
3689 	if (!skb_dst(skb)) {
3690 		XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3691 		return 0;
3692 	}
3693 
3694 	dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, XFRM_LOOKUP_QUEUE);
3695 	if (IS_ERR(dst)) {
3696 		res = 0;
3697 		dst = NULL;
3698 	}
3699 	skb_dst_set(skb, dst);
3700 	return res;
3701 }
3702 EXPORT_SYMBOL(__xfrm_route_forward);
3703 
3704 /* Optimize later using cookies and generation ids. */
3705 
3706 static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
3707 {
3708 	/* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
3709 	 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
3710 	 * get validated by dst_ops->check on every use.  We do this
3711 	 * because when a normal route referenced by an XFRM dst is
3712 	 * obsoleted we do not go looking around for all parent
3713 	 * referencing XFRM dsts so that we can invalidate them.  It
3714 	 * is just too much work.  Instead we make the checks here on
3715 	 * every use.  For example:
3716 	 *
3717 	 *	XFRM dst A --> IPv4 dst X
3718 	 *
3719 	 * X is the "xdst->route" of A (X is also the "dst->path" of A
3720 	 * in this example).  If X is marked obsolete, "A" will not
3721 	 * notice.  That's what we are validating here via the
3722 	 * stale_bundle() check.
3723 	 *
3724 	 * When a dst is removed from the fib tree, DST_OBSOLETE_DEAD will
3725 	 * be marked on it.
3726 	 * This will force stale_bundle() to fail on any xdst bundle with
3727 	 * this dst linked in it.
3728 	 */
3729 	if (dst->obsolete < 0 && !stale_bundle(dst))
3730 		return dst;
3731 
3732 	return NULL;
3733 }
3734 
3735 static int stale_bundle(struct dst_entry *dst)
3736 {
3737 	return !xfrm_bundle_ok((struct xfrm_dst *)dst);
3738 }
3739 
3740 void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
3741 {
3742 	while ((dst = xfrm_dst_child(dst)) && dst->xfrm && dst->dev == dev) {
3743 		dst->dev = dev_net(dev)->loopback_dev;
3744 		dev_hold(dst->dev);
3745 		dev_put(dev);
3746 	}
3747 }
3748 EXPORT_SYMBOL(xfrm_dst_ifdown);
3749 
3750 static void xfrm_link_failure(struct sk_buff *skb)
3751 {
3752 	/* Impossible. Such dst must be popped before reaches point of failure. */
3753 }
3754 
3755 static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
3756 {
3757 	if (dst) {
3758 		if (dst->obsolete) {
3759 			dst_release(dst);
3760 			dst = NULL;
3761 		}
3762 	}
3763 	return dst;
3764 }
3765 
3766 static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr)
3767 {
3768 	while (nr--) {
3769 		struct xfrm_dst *xdst = bundle[nr];
3770 		u32 pmtu, route_mtu_cached;
3771 		struct dst_entry *dst;
3772 
3773 		dst = &xdst->u.dst;
3774 		pmtu = dst_mtu(xfrm_dst_child(dst));
3775 		xdst->child_mtu_cached = pmtu;
3776 
3777 		pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
3778 
3779 		route_mtu_cached = dst_mtu(xdst->route);
3780 		xdst->route_mtu_cached = route_mtu_cached;
3781 
3782 		if (pmtu > route_mtu_cached)
3783 			pmtu = route_mtu_cached;
3784 
3785 		dst_metric_set(dst, RTAX_MTU, pmtu);
3786 	}
3787 }
3788 
3789 /* Check that the bundle accepts the flow and its components are
3790  * still valid.
3791  */
3792 
3793 static int xfrm_bundle_ok(struct xfrm_dst *first)
3794 {
3795 	struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
3796 	struct dst_entry *dst = &first->u.dst;
3797 	struct xfrm_dst *xdst;
3798 	int start_from, nr;
3799 	u32 mtu;
3800 
3801 	if (!dst_check(xfrm_dst_path(dst), ((struct xfrm_dst *)dst)->path_cookie) ||
3802 	    (dst->dev && !netif_running(dst->dev)))
3803 		return 0;
3804 
3805 	if (dst->flags & DST_XFRM_QUEUE)
3806 		return 1;
3807 
3808 	start_from = nr = 0;
3809 	do {
3810 		struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
3811 
3812 		if (dst->xfrm->km.state != XFRM_STATE_VALID)
3813 			return 0;
3814 		if (xdst->xfrm_genid != dst->xfrm->genid)
3815 			return 0;
3816 		if (xdst->num_pols > 0 &&
3817 		    xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
3818 			return 0;
3819 
3820 		bundle[nr++] = xdst;
3821 
3822 		mtu = dst_mtu(xfrm_dst_child(dst));
3823 		if (xdst->child_mtu_cached != mtu) {
3824 			start_from = nr;
3825 			xdst->child_mtu_cached = mtu;
3826 		}
3827 
3828 		if (!dst_check(xdst->route, xdst->route_cookie))
3829 			return 0;
3830 		mtu = dst_mtu(xdst->route);
3831 		if (xdst->route_mtu_cached != mtu) {
3832 			start_from = nr;
3833 			xdst->route_mtu_cached = mtu;
3834 		}
3835 
3836 		dst = xfrm_dst_child(dst);
3837 	} while (dst->xfrm);
3838 
3839 	if (likely(!start_from))
3840 		return 1;
3841 
3842 	xdst = bundle[start_from - 1];
3843 	mtu = xdst->child_mtu_cached;
3844 	while (start_from--) {
3845 		dst = &xdst->u.dst;
3846 
3847 		mtu = xfrm_state_mtu(dst->xfrm, mtu);
3848 		if (mtu > xdst->route_mtu_cached)
3849 			mtu = xdst->route_mtu_cached;
3850 		dst_metric_set(dst, RTAX_MTU, mtu);
3851 		if (!start_from)
3852 			break;
3853 
3854 		xdst = bundle[start_from - 1];
3855 		xdst->child_mtu_cached = mtu;
3856 	}
3857 
3858 	return 1;
3859 }
3860 
3861 static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
3862 {
3863 	return dst_metric_advmss(xfrm_dst_path(dst));
3864 }
3865 
3866 static unsigned int xfrm_mtu(const struct dst_entry *dst)
3867 {
3868 	unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
3869 
3870 	return mtu ? : dst_mtu(xfrm_dst_path(dst));
3871 }
3872 
3873 static const void *xfrm_get_dst_nexthop(const struct dst_entry *dst,
3874 					const void *daddr)
3875 {
3876 	while (dst->xfrm) {
3877 		const struct xfrm_state *xfrm = dst->xfrm;
3878 
3879 		dst = xfrm_dst_child(dst);
3880 
3881 		if (xfrm->props.mode == XFRM_MODE_TRANSPORT)
3882 			continue;
3883 		if (xfrm->type->flags & XFRM_TYPE_REMOTE_COADDR)
3884 			daddr = xfrm->coaddr;
3885 		else if (!(xfrm->type->flags & XFRM_TYPE_LOCAL_COADDR))
3886 			daddr = &xfrm->id.daddr;
3887 	}
3888 	return daddr;
3889 }
3890 
3891 static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
3892 					   struct sk_buff *skb,
3893 					   const void *daddr)
3894 {
3895 	const struct dst_entry *path = xfrm_dst_path(dst);
3896 
3897 	if (!skb)
3898 		daddr = xfrm_get_dst_nexthop(dst, daddr);
3899 	return path->ops->neigh_lookup(path, skb, daddr);
3900 }
3901 
3902 static void xfrm_confirm_neigh(const struct dst_entry *dst, const void *daddr)
3903 {
3904 	const struct dst_entry *path = xfrm_dst_path(dst);
3905 
3906 	daddr = xfrm_get_dst_nexthop(dst, daddr);
3907 	path->ops->confirm_neigh(path, daddr);
3908 }
3909 
3910 int xfrm_policy_register_afinfo(const struct xfrm_policy_afinfo *afinfo, int family)
3911 {
3912 	int err = 0;
3913 
3914 	if (WARN_ON(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
3915 		return -EAFNOSUPPORT;
3916 
3917 	spin_lock(&xfrm_policy_afinfo_lock);
3918 	if (unlikely(xfrm_policy_afinfo[family] != NULL))
3919 		err = -EEXIST;
3920 	else {
3921 		struct dst_ops *dst_ops = afinfo->dst_ops;
3922 		if (likely(dst_ops->kmem_cachep == NULL))
3923 			dst_ops->kmem_cachep = xfrm_dst_cache;
3924 		if (likely(dst_ops->check == NULL))
3925 			dst_ops->check = xfrm_dst_check;
3926 		if (likely(dst_ops->default_advmss == NULL))
3927 			dst_ops->default_advmss = xfrm_default_advmss;
3928 		if (likely(dst_ops->mtu == NULL))
3929 			dst_ops->mtu = xfrm_mtu;
3930 		if (likely(dst_ops->negative_advice == NULL))
3931 			dst_ops->negative_advice = xfrm_negative_advice;
3932 		if (likely(dst_ops->link_failure == NULL))
3933 			dst_ops->link_failure = xfrm_link_failure;
3934 		if (likely(dst_ops->neigh_lookup == NULL))
3935 			dst_ops->neigh_lookup = xfrm_neigh_lookup;
3936 		if (likely(!dst_ops->confirm_neigh))
3937 			dst_ops->confirm_neigh = xfrm_confirm_neigh;
3938 		rcu_assign_pointer(xfrm_policy_afinfo[family], afinfo);
3939 	}
3940 	spin_unlock(&xfrm_policy_afinfo_lock);
3941 
3942 	return err;
3943 }
3944 EXPORT_SYMBOL(xfrm_policy_register_afinfo);
3945 
3946 void xfrm_policy_unregister_afinfo(const struct xfrm_policy_afinfo *afinfo)
3947 {
3948 	struct dst_ops *dst_ops = afinfo->dst_ops;
3949 	int i;
3950 
3951 	for (i = 0; i < ARRAY_SIZE(xfrm_policy_afinfo); i++) {
3952 		if (xfrm_policy_afinfo[i] != afinfo)
3953 			continue;
3954 		RCU_INIT_POINTER(xfrm_policy_afinfo[i], NULL);
3955 		break;
3956 	}
3957 
3958 	synchronize_rcu();
3959 
3960 	dst_ops->kmem_cachep = NULL;
3961 	dst_ops->check = NULL;
3962 	dst_ops->negative_advice = NULL;
3963 	dst_ops->link_failure = NULL;
3964 }
3965 EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
3966 
3967 void xfrm_if_register_cb(const struct xfrm_if_cb *ifcb)
3968 {
3969 	spin_lock(&xfrm_if_cb_lock);
3970 	rcu_assign_pointer(xfrm_if_cb, ifcb);
3971 	spin_unlock(&xfrm_if_cb_lock);
3972 }
3973 EXPORT_SYMBOL(xfrm_if_register_cb);
3974 
3975 void xfrm_if_unregister_cb(void)
3976 {
3977 	RCU_INIT_POINTER(xfrm_if_cb, NULL);
3978 	synchronize_rcu();
3979 }
3980 EXPORT_SYMBOL(xfrm_if_unregister_cb);
3981 
3982 #ifdef CONFIG_XFRM_STATISTICS
3983 static int __net_init xfrm_statistics_init(struct net *net)
3984 {
3985 	int rv;
3986 	net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
3987 	if (!net->mib.xfrm_statistics)
3988 		return -ENOMEM;
3989 	rv = xfrm_proc_init(net);
3990 	if (rv < 0)
3991 		free_percpu(net->mib.xfrm_statistics);
3992 	return rv;
3993 }
3994 
3995 static void xfrm_statistics_fini(struct net *net)
3996 {
3997 	xfrm_proc_fini(net);
3998 	free_percpu(net->mib.xfrm_statistics);
3999 }
4000 #else
4001 static int __net_init xfrm_statistics_init(struct net *net)
4002 {
4003 	return 0;
4004 }
4005 
4006 static void xfrm_statistics_fini(struct net *net)
4007 {
4008 }
4009 #endif
4010 
4011 static int __net_init xfrm_policy_init(struct net *net)
4012 {
4013 	unsigned int hmask, sz;
4014 	int dir, err;
4015 
4016 	if (net_eq(net, &init_net)) {
4017 		xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
4018 					   sizeof(struct xfrm_dst),
4019 					   0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4020 					   NULL);
4021 		err = rhashtable_init(&xfrm_policy_inexact_table,
4022 				      &xfrm_pol_inexact_params);
4023 		BUG_ON(err);
4024 	}
4025 
4026 	hmask = 8 - 1;
4027 	sz = (hmask+1) * sizeof(struct hlist_head);
4028 
4029 	net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
4030 	if (!net->xfrm.policy_byidx)
4031 		goto out_byidx;
4032 	net->xfrm.policy_idx_hmask = hmask;
4033 
4034 	for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4035 		struct xfrm_policy_hash *htab;
4036 
4037 		net->xfrm.policy_count[dir] = 0;
4038 		net->xfrm.policy_count[XFRM_POLICY_MAX + dir] = 0;
4039 		INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
4040 
4041 		htab = &net->xfrm.policy_bydst[dir];
4042 		htab->table = xfrm_hash_alloc(sz);
4043 		if (!htab->table)
4044 			goto out_bydst;
4045 		htab->hmask = hmask;
4046 		htab->dbits4 = 32;
4047 		htab->sbits4 = 32;
4048 		htab->dbits6 = 128;
4049 		htab->sbits6 = 128;
4050 	}
4051 	net->xfrm.policy_hthresh.lbits4 = 32;
4052 	net->xfrm.policy_hthresh.rbits4 = 32;
4053 	net->xfrm.policy_hthresh.lbits6 = 128;
4054 	net->xfrm.policy_hthresh.rbits6 = 128;
4055 
4056 	seqlock_init(&net->xfrm.policy_hthresh.lock);
4057 
4058 	INIT_LIST_HEAD(&net->xfrm.policy_all);
4059 	INIT_LIST_HEAD(&net->xfrm.inexact_bins);
4060 	INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
4061 	INIT_WORK(&net->xfrm.policy_hthresh.work, xfrm_hash_rebuild);
4062 	return 0;
4063 
4064 out_bydst:
4065 	for (dir--; dir >= 0; dir--) {
4066 		struct xfrm_policy_hash *htab;
4067 
4068 		htab = &net->xfrm.policy_bydst[dir];
4069 		xfrm_hash_free(htab->table, sz);
4070 	}
4071 	xfrm_hash_free(net->xfrm.policy_byidx, sz);
4072 out_byidx:
4073 	return -ENOMEM;
4074 }
4075 
4076 static void xfrm_policy_fini(struct net *net)
4077 {
4078 	struct xfrm_pol_inexact_bin *b, *t;
4079 	unsigned int sz;
4080 	int dir;
4081 
4082 	flush_work(&net->xfrm.policy_hash_work);
4083 #ifdef CONFIG_XFRM_SUB_POLICY
4084 	xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, false);
4085 #endif
4086 	xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, false);
4087 
4088 	WARN_ON(!list_empty(&net->xfrm.policy_all));
4089 
4090 	for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4091 		struct xfrm_policy_hash *htab;
4092 
4093 		WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
4094 
4095 		htab = &net->xfrm.policy_bydst[dir];
4096 		sz = (htab->hmask + 1) * sizeof(struct hlist_head);
4097 		WARN_ON(!hlist_empty(htab->table));
4098 		xfrm_hash_free(htab->table, sz);
4099 	}
4100 
4101 	sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
4102 	WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
4103 	xfrm_hash_free(net->xfrm.policy_byidx, sz);
4104 
4105 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4106 	list_for_each_entry_safe(b, t, &net->xfrm.inexact_bins, inexact_bins)
4107 		__xfrm_policy_inexact_prune_bin(b, true);
4108 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4109 }
4110 
4111 static int __net_init xfrm_net_init(struct net *net)
4112 {
4113 	int rv;
4114 
4115 	/* Initialize the per-net locks here */
4116 	spin_lock_init(&net->xfrm.xfrm_state_lock);
4117 	spin_lock_init(&net->xfrm.xfrm_policy_lock);
4118 	seqcount_spinlock_init(&net->xfrm.xfrm_policy_hash_generation, &net->xfrm.xfrm_policy_lock);
4119 	mutex_init(&net->xfrm.xfrm_cfg_mutex);
4120 
4121 	rv = xfrm_statistics_init(net);
4122 	if (rv < 0)
4123 		goto out_statistics;
4124 	rv = xfrm_state_init(net);
4125 	if (rv < 0)
4126 		goto out_state;
4127 	rv = xfrm_policy_init(net);
4128 	if (rv < 0)
4129 		goto out_policy;
4130 	rv = xfrm_sysctl_init(net);
4131 	if (rv < 0)
4132 		goto out_sysctl;
4133 
4134 	return 0;
4135 
4136 out_sysctl:
4137 	xfrm_policy_fini(net);
4138 out_policy:
4139 	xfrm_state_fini(net);
4140 out_state:
4141 	xfrm_statistics_fini(net);
4142 out_statistics:
4143 	return rv;
4144 }
4145 
4146 static void __net_exit xfrm_net_exit(struct net *net)
4147 {
4148 	xfrm_sysctl_fini(net);
4149 	xfrm_policy_fini(net);
4150 	xfrm_state_fini(net);
4151 	xfrm_statistics_fini(net);
4152 }
4153 
4154 static struct pernet_operations __net_initdata xfrm_net_ops = {
4155 	.init = xfrm_net_init,
4156 	.exit = xfrm_net_exit,
4157 };
4158 
4159 void __init xfrm_init(void)
4160 {
4161 	register_pernet_subsys(&xfrm_net_ops);
4162 	xfrm_dev_init();
4163 	xfrm_input_init();
4164 
4165 #ifdef CONFIG_XFRM_ESPINTCP
4166 	espintcp_init();
4167 #endif
4168 }
4169 
4170 #ifdef CONFIG_AUDITSYSCALL
4171 static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
4172 					 struct audit_buffer *audit_buf)
4173 {
4174 	struct xfrm_sec_ctx *ctx = xp->security;
4175 	struct xfrm_selector *sel = &xp->selector;
4176 
4177 	if (ctx)
4178 		audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
4179 				 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
4180 
4181 	switch (sel->family) {
4182 	case AF_INET:
4183 		audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
4184 		if (sel->prefixlen_s != 32)
4185 			audit_log_format(audit_buf, " src_prefixlen=%d",
4186 					 sel->prefixlen_s);
4187 		audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
4188 		if (sel->prefixlen_d != 32)
4189 			audit_log_format(audit_buf, " dst_prefixlen=%d",
4190 					 sel->prefixlen_d);
4191 		break;
4192 	case AF_INET6:
4193 		audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
4194 		if (sel->prefixlen_s != 128)
4195 			audit_log_format(audit_buf, " src_prefixlen=%d",
4196 					 sel->prefixlen_s);
4197 		audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
4198 		if (sel->prefixlen_d != 128)
4199 			audit_log_format(audit_buf, " dst_prefixlen=%d",
4200 					 sel->prefixlen_d);
4201 		break;
4202 	}
4203 }
4204 
4205 void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid)
4206 {
4207 	struct audit_buffer *audit_buf;
4208 
4209 	audit_buf = xfrm_audit_start("SPD-add");
4210 	if (audit_buf == NULL)
4211 		return;
4212 	xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4213 	audit_log_format(audit_buf, " res=%u", result);
4214 	xfrm_audit_common_policyinfo(xp, audit_buf);
4215 	audit_log_end(audit_buf);
4216 }
4217 EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
4218 
4219 void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
4220 			      bool task_valid)
4221 {
4222 	struct audit_buffer *audit_buf;
4223 
4224 	audit_buf = xfrm_audit_start("SPD-delete");
4225 	if (audit_buf == NULL)
4226 		return;
4227 	xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4228 	audit_log_format(audit_buf, " res=%u", result);
4229 	xfrm_audit_common_policyinfo(xp, audit_buf);
4230 	audit_log_end(audit_buf);
4231 }
4232 EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
4233 #endif
4234 
4235 #ifdef CONFIG_XFRM_MIGRATE
4236 static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
4237 					const struct xfrm_selector *sel_tgt)
4238 {
4239 	if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
4240 		if (sel_tgt->family == sel_cmp->family &&
4241 		    xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
4242 				    sel_cmp->family) &&
4243 		    xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
4244 				    sel_cmp->family) &&
4245 		    sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
4246 		    sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
4247 			return true;
4248 		}
4249 	} else {
4250 		if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
4251 			return true;
4252 		}
4253 	}
4254 	return false;
4255 }
4256 
4257 static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
4258 						    u8 dir, u8 type, struct net *net)
4259 {
4260 	struct xfrm_policy *pol, *ret = NULL;
4261 	struct hlist_head *chain;
4262 	u32 priority = ~0U;
4263 
4264 	spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4265 	chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
4266 	hlist_for_each_entry(pol, chain, bydst) {
4267 		if (xfrm_migrate_selector_match(sel, &pol->selector) &&
4268 		    pol->type == type) {
4269 			ret = pol;
4270 			priority = ret->priority;
4271 			break;
4272 		}
4273 	}
4274 	chain = &net->xfrm.policy_inexact[dir];
4275 	hlist_for_each_entry(pol, chain, bydst_inexact_list) {
4276 		if ((pol->priority >= priority) && ret)
4277 			break;
4278 
4279 		if (xfrm_migrate_selector_match(sel, &pol->selector) &&
4280 		    pol->type == type) {
4281 			ret = pol;
4282 			break;
4283 		}
4284 	}
4285 
4286 	xfrm_pol_hold(ret);
4287 
4288 	spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4289 
4290 	return ret;
4291 }
4292 
4293 static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
4294 {
4295 	int match = 0;
4296 
4297 	if (t->mode == m->mode && t->id.proto == m->proto &&
4298 	    (m->reqid == 0 || t->reqid == m->reqid)) {
4299 		switch (t->mode) {
4300 		case XFRM_MODE_TUNNEL:
4301 		case XFRM_MODE_BEET:
4302 			if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
4303 					    m->old_family) &&
4304 			    xfrm_addr_equal(&t->saddr, &m->old_saddr,
4305 					    m->old_family)) {
4306 				match = 1;
4307 			}
4308 			break;
4309 		case XFRM_MODE_TRANSPORT:
4310 			/* in case of transport mode, template does not store
4311 			   any IP addresses, hence we just compare mode and
4312 			   protocol */
4313 			match = 1;
4314 			break;
4315 		default:
4316 			break;
4317 		}
4318 	}
4319 	return match;
4320 }
4321 
4322 /* update endpoint address(es) of template(s) */
4323 static int xfrm_policy_migrate(struct xfrm_policy *pol,
4324 			       struct xfrm_migrate *m, int num_migrate)
4325 {
4326 	struct xfrm_migrate *mp;
4327 	int i, j, n = 0;
4328 
4329 	write_lock_bh(&pol->lock);
4330 	if (unlikely(pol->walk.dead)) {
4331 		/* target policy has been deleted */
4332 		write_unlock_bh(&pol->lock);
4333 		return -ENOENT;
4334 	}
4335 
4336 	for (i = 0; i < pol->xfrm_nr; i++) {
4337 		for (j = 0, mp = m; j < num_migrate; j++, mp++) {
4338 			if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
4339 				continue;
4340 			n++;
4341 			if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
4342 			    pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
4343 				continue;
4344 			/* update endpoints */
4345 			memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
4346 			       sizeof(pol->xfrm_vec[i].id.daddr));
4347 			memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
4348 			       sizeof(pol->xfrm_vec[i].saddr));
4349 			pol->xfrm_vec[i].encap_family = mp->new_family;
4350 			/* flush bundles */
4351 			atomic_inc(&pol->genid);
4352 		}
4353 	}
4354 
4355 	write_unlock_bh(&pol->lock);
4356 
4357 	if (!n)
4358 		return -ENODATA;
4359 
4360 	return 0;
4361 }
4362 
4363 static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
4364 {
4365 	int i, j;
4366 
4367 	if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
4368 		return -EINVAL;
4369 
4370 	for (i = 0; i < num_migrate; i++) {
4371 		if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
4372 		    xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
4373 			return -EINVAL;
4374 
4375 		/* check if there is any duplicated entry */
4376 		for (j = i + 1; j < num_migrate; j++) {
4377 			if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
4378 				    sizeof(m[i].old_daddr)) &&
4379 			    !memcmp(&m[i].old_saddr, &m[j].old_saddr,
4380 				    sizeof(m[i].old_saddr)) &&
4381 			    m[i].proto == m[j].proto &&
4382 			    m[i].mode == m[j].mode &&
4383 			    m[i].reqid == m[j].reqid &&
4384 			    m[i].old_family == m[j].old_family)
4385 				return -EINVAL;
4386 		}
4387 	}
4388 
4389 	return 0;
4390 }
4391 
4392 int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
4393 		 struct xfrm_migrate *m, int num_migrate,
4394 		 struct xfrm_kmaddress *k, struct net *net,
4395 		 struct xfrm_encap_tmpl *encap)
4396 {
4397 	int i, err, nx_cur = 0, nx_new = 0;
4398 	struct xfrm_policy *pol = NULL;
4399 	struct xfrm_state *x, *xc;
4400 	struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
4401 	struct xfrm_state *x_new[XFRM_MAX_DEPTH];
4402 	struct xfrm_migrate *mp;
4403 
4404 	/* Stage 0 - sanity checks */
4405 	if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
4406 		goto out;
4407 
4408 	if (dir >= XFRM_POLICY_MAX) {
4409 		err = -EINVAL;
4410 		goto out;
4411 	}
4412 
4413 	/* Stage 1 - find policy */
4414 	if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) {
4415 		err = -ENOENT;
4416 		goto out;
4417 	}
4418 
4419 	/* Stage 2 - find and update state(s) */
4420 	for (i = 0, mp = m; i < num_migrate; i++, mp++) {
4421 		if ((x = xfrm_migrate_state_find(mp, net))) {
4422 			x_cur[nx_cur] = x;
4423 			nx_cur++;
4424 			xc = xfrm_state_migrate(x, mp, encap);
4425 			if (xc) {
4426 				x_new[nx_new] = xc;
4427 				nx_new++;
4428 			} else {
4429 				err = -ENODATA;
4430 				goto restore_state;
4431 			}
4432 		}
4433 	}
4434 
4435 	/* Stage 3 - update policy */
4436 	if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
4437 		goto restore_state;
4438 
4439 	/* Stage 4 - delete old state(s) */
4440 	if (nx_cur) {
4441 		xfrm_states_put(x_cur, nx_cur);
4442 		xfrm_states_delete(x_cur, nx_cur);
4443 	}
4444 
4445 	/* Stage 5 - announce */
4446 	km_migrate(sel, dir, type, m, num_migrate, k, encap);
4447 
4448 	xfrm_pol_put(pol);
4449 
4450 	return 0;
4451 out:
4452 	return err;
4453 
4454 restore_state:
4455 	if (pol)
4456 		xfrm_pol_put(pol);
4457 	if (nx_cur)
4458 		xfrm_states_put(x_cur, nx_cur);
4459 	if (nx_new)
4460 		xfrm_states_delete(x_new, nx_new);
4461 
4462 	return err;
4463 }
4464 EXPORT_SYMBOL(xfrm_migrate);
4465 #endif
4466