Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec
[linux-block.git] / net / xfrm / xfrm_policy.c
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 #if IS_ENABLED(CONFIG_IPV6_MIP6)
37 #include <net/mip6.h>
38 #endif
39 #ifdef CONFIG_XFRM_STATISTICS
40 #include <net/snmp.h>
41 #endif
42 #ifdef CONFIG_XFRM_ESPINTCP
43 #include <net/espintcp.h>
44 #endif
45
46 #include "xfrm_hash.h"
47
48 #define XFRM_QUEUE_TMO_MIN ((unsigned)(HZ/10))
49 #define XFRM_QUEUE_TMO_MAX ((unsigned)(60*HZ))
50 #define XFRM_MAX_QUEUE_LEN      100
51
52 struct xfrm_flo {
53         struct dst_entry *dst_orig;
54         u8 flags;
55 };
56
57 /* prefixes smaller than this are stored in lists, not trees. */
58 #define INEXACT_PREFIXLEN_IPV4  16
59 #define INEXACT_PREFIXLEN_IPV6  48
60
61 struct xfrm_pol_inexact_node {
62         struct rb_node node;
63         union {
64                 xfrm_address_t addr;
65                 struct rcu_head rcu;
66         };
67         u8 prefixlen;
68
69         struct rb_root root;
70
71         /* the policies matching this node, can be empty list */
72         struct hlist_head hhead;
73 };
74
75 /* xfrm inexact policy search tree:
76  * xfrm_pol_inexact_bin = hash(dir,type,family,if_id);
77  *  |
78  * +---- root_d: sorted by daddr:prefix
79  * |                 |
80  * |        xfrm_pol_inexact_node
81  * |                 |
82  * |                 +- root: sorted by saddr/prefix
83  * |                 |              |
84  * |                 |         xfrm_pol_inexact_node
85  * |                 |              |
86  * |                 |              + root: unused
87  * |                 |              |
88  * |                 |              + hhead: saddr:daddr policies
89  * |                 |
90  * |                 +- coarse policies and all any:daddr policies
91  * |
92  * +---- root_s: sorted by saddr:prefix
93  * |                 |
94  * |        xfrm_pol_inexact_node
95  * |                 |
96  * |                 + root: unused
97  * |                 |
98  * |                 + hhead: saddr:any policies
99  * |
100  * +---- coarse policies and all any:any policies
101  *
102  * Lookups return four candidate lists:
103  * 1. any:any list from top-level xfrm_pol_inexact_bin
104  * 2. any:daddr list from daddr tree
105  * 3. saddr:daddr list from 2nd level daddr tree
106  * 4. saddr:any list from saddr tree
107  *
108  * This result set then needs to be searched for the policy with
109  * the lowest priority.  If two results have same prio, youngest one wins.
110  */
111
112 struct xfrm_pol_inexact_key {
113         possible_net_t net;
114         u32 if_id;
115         u16 family;
116         u8 dir, type;
117 };
118
119 struct xfrm_pol_inexact_bin {
120         struct xfrm_pol_inexact_key k;
121         struct rhash_head head;
122         /* list containing '*:*' policies */
123         struct hlist_head hhead;
124
125         seqcount_spinlock_t count;
126         /* tree sorted by daddr/prefix */
127         struct rb_root root_d;
128
129         /* tree sorted by saddr/prefix */
130         struct rb_root root_s;
131
132         /* slow path below */
133         struct list_head inexact_bins;
134         struct rcu_head rcu;
135 };
136
137 enum xfrm_pol_inexact_candidate_type {
138         XFRM_POL_CAND_BOTH,
139         XFRM_POL_CAND_SADDR,
140         XFRM_POL_CAND_DADDR,
141         XFRM_POL_CAND_ANY,
142
143         XFRM_POL_CAND_MAX,
144 };
145
146 struct xfrm_pol_inexact_candidates {
147         struct hlist_head *res[XFRM_POL_CAND_MAX];
148 };
149
150 static DEFINE_SPINLOCK(xfrm_if_cb_lock);
151 static struct xfrm_if_cb const __rcu *xfrm_if_cb __read_mostly;
152
153 static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
154 static struct xfrm_policy_afinfo const __rcu *xfrm_policy_afinfo[AF_INET6 + 1]
155                                                 __read_mostly;
156
157 static struct kmem_cache *xfrm_dst_cache __ro_after_init;
158 static __read_mostly seqcount_mutex_t xfrm_policy_hash_generation;
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(&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(&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(&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(&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                                                   dir);
1907         return ret;
1908 }
1909
1910 static struct xfrm_pol_inexact_node *
1911 xfrm_policy_lookup_inexact_addr(const struct rb_root *r,
1912                                 seqcount_spinlock_t *count,
1913                                 const xfrm_address_t *addr, u16 family)
1914 {
1915         const struct rb_node *parent;
1916         int seq;
1917
1918 again:
1919         seq = read_seqcount_begin(count);
1920
1921         parent = rcu_dereference_raw(r->rb_node);
1922         while (parent) {
1923                 struct xfrm_pol_inexact_node *node;
1924                 int delta;
1925
1926                 node = rb_entry(parent, struct xfrm_pol_inexact_node, node);
1927
1928                 delta = xfrm_policy_addr_delta(addr, &node->addr,
1929                                                node->prefixlen, family);
1930                 if (delta < 0) {
1931                         parent = rcu_dereference_raw(parent->rb_left);
1932                         continue;
1933                 } else if (delta > 0) {
1934                         parent = rcu_dereference_raw(parent->rb_right);
1935                         continue;
1936                 }
1937
1938                 return node;
1939         }
1940
1941         if (read_seqcount_retry(count, seq))
1942                 goto again;
1943
1944         return NULL;
1945 }
1946
1947 static bool
1948 xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
1949                                     struct xfrm_pol_inexact_bin *b,
1950                                     const xfrm_address_t *saddr,
1951                                     const xfrm_address_t *daddr)
1952 {
1953         struct xfrm_pol_inexact_node *n;
1954         u16 family;
1955
1956         if (!b)
1957                 return false;
1958
1959         family = b->k.family;
1960         memset(cand, 0, sizeof(*cand));
1961         cand->res[XFRM_POL_CAND_ANY] = &b->hhead;
1962
1963         n = xfrm_policy_lookup_inexact_addr(&b->root_d, &b->count, daddr,
1964                                             family);
1965         if (n) {
1966                 cand->res[XFRM_POL_CAND_DADDR] = &n->hhead;
1967                 n = xfrm_policy_lookup_inexact_addr(&n->root, &b->count, saddr,
1968                                                     family);
1969                 if (n)
1970                         cand->res[XFRM_POL_CAND_BOTH] = &n->hhead;
1971         }
1972
1973         n = xfrm_policy_lookup_inexact_addr(&b->root_s, &b->count, saddr,
1974                                             family);
1975         if (n)
1976                 cand->res[XFRM_POL_CAND_SADDR] = &n->hhead;
1977
1978         return true;
1979 }
1980
1981 static struct xfrm_pol_inexact_bin *
1982 xfrm_policy_inexact_lookup_rcu(struct net *net, u8 type, u16 family,
1983                                u8 dir, u32 if_id)
1984 {
1985         struct xfrm_pol_inexact_key k = {
1986                 .family = family,
1987                 .type = type,
1988                 .dir = dir,
1989                 .if_id = if_id,
1990         };
1991
1992         write_pnet(&k.net, net);
1993
1994         return rhashtable_lookup(&xfrm_policy_inexact_table, &k,
1995                                  xfrm_pol_inexact_params);
1996 }
1997
1998 static struct xfrm_pol_inexact_bin *
1999 xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family,
2000                            u8 dir, u32 if_id)
2001 {
2002         struct xfrm_pol_inexact_bin *bin;
2003
2004         lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
2005
2006         rcu_read_lock();
2007         bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
2008         rcu_read_unlock();
2009
2010         return bin;
2011 }
2012
2013 static struct xfrm_policy *
2014 __xfrm_policy_eval_candidates(struct hlist_head *chain,
2015                               struct xfrm_policy *prefer,
2016                               const struct flowi *fl,
2017                               u8 type, u16 family, int dir, u32 if_id)
2018 {
2019         u32 priority = prefer ? prefer->priority : ~0u;
2020         struct xfrm_policy *pol;
2021
2022         if (!chain)
2023                 return NULL;
2024
2025         hlist_for_each_entry_rcu(pol, chain, bydst) {
2026                 int err;
2027
2028                 if (pol->priority > priority)
2029                         break;
2030
2031                 err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
2032                 if (err) {
2033                         if (err != -ESRCH)
2034                                 return ERR_PTR(err);
2035
2036                         continue;
2037                 }
2038
2039                 if (prefer) {
2040                         /* matches.  Is it older than *prefer? */
2041                         if (pol->priority == priority &&
2042                             prefer->pos < pol->pos)
2043                                 return prefer;
2044                 }
2045
2046                 return pol;
2047         }
2048
2049         return NULL;
2050 }
2051
2052 static struct xfrm_policy *
2053 xfrm_policy_eval_candidates(struct xfrm_pol_inexact_candidates *cand,
2054                             struct xfrm_policy *prefer,
2055                             const struct flowi *fl,
2056                             u8 type, u16 family, int dir, u32 if_id)
2057 {
2058         struct xfrm_policy *tmp;
2059         int i;
2060
2061         for (i = 0; i < ARRAY_SIZE(cand->res); i++) {
2062                 tmp = __xfrm_policy_eval_candidates(cand->res[i],
2063                                                     prefer,
2064                                                     fl, type, family, dir,
2065                                                     if_id);
2066                 if (!tmp)
2067                         continue;
2068
2069                 if (IS_ERR(tmp))
2070                         return tmp;
2071                 prefer = tmp;
2072         }
2073
2074         return prefer;
2075 }
2076
2077 static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
2078                                                      const struct flowi *fl,
2079                                                      u16 family, u8 dir,
2080                                                      u32 if_id)
2081 {
2082         struct xfrm_pol_inexact_candidates cand;
2083         const xfrm_address_t *daddr, *saddr;
2084         struct xfrm_pol_inexact_bin *bin;
2085         struct xfrm_policy *pol, *ret;
2086         struct hlist_head *chain;
2087         unsigned int sequence;
2088         int err;
2089
2090         daddr = xfrm_flowi_daddr(fl, family);
2091         saddr = xfrm_flowi_saddr(fl, family);
2092         if (unlikely(!daddr || !saddr))
2093                 return NULL;
2094
2095  retry:
2096         sequence = read_seqcount_begin(&xfrm_policy_hash_generation);
2097         rcu_read_lock();
2098
2099         chain = policy_hash_direct(net, daddr, saddr, family, dir);
2100         if (read_seqcount_retry(&xfrm_policy_hash_generation, sequence)) {
2101                 rcu_read_unlock();
2102                 goto retry;
2103         }
2104
2105         ret = NULL;
2106         hlist_for_each_entry_rcu(pol, chain, bydst) {
2107                 err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
2108                 if (err) {
2109                         if (err == -ESRCH)
2110                                 continue;
2111                         else {
2112                                 ret = ERR_PTR(err);
2113                                 goto fail;
2114                         }
2115                 } else {
2116                         ret = pol;
2117                         break;
2118                 }
2119         }
2120         bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
2121         if (!bin || !xfrm_policy_find_inexact_candidates(&cand, bin, saddr,
2122                                                          daddr))
2123                 goto skip_inexact;
2124
2125         pol = xfrm_policy_eval_candidates(&cand, ret, fl, type,
2126                                           family, dir, if_id);
2127         if (pol) {
2128                 ret = pol;
2129                 if (IS_ERR(pol))
2130                         goto fail;
2131         }
2132
2133 skip_inexact:
2134         if (read_seqcount_retry(&xfrm_policy_hash_generation, sequence)) {
2135                 rcu_read_unlock();
2136                 goto retry;
2137         }
2138
2139         if (ret && !xfrm_pol_hold_rcu(ret)) {
2140                 rcu_read_unlock();
2141                 goto retry;
2142         }
2143 fail:
2144         rcu_read_unlock();
2145
2146         return ret;
2147 }
2148
2149 static struct xfrm_policy *xfrm_policy_lookup(struct net *net,
2150                                               const struct flowi *fl,
2151                                               u16 family, u8 dir, u32 if_id)
2152 {
2153 #ifdef CONFIG_XFRM_SUB_POLICY
2154         struct xfrm_policy *pol;
2155
2156         pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family,
2157                                         dir, if_id);
2158         if (pol != NULL)
2159                 return pol;
2160 #endif
2161         return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family,
2162                                          dir, if_id);
2163 }
2164
2165 static struct xfrm_policy *xfrm_sk_policy_lookup(const struct sock *sk, int dir,
2166                                                  const struct flowi *fl,
2167                                                  u16 family, u32 if_id)
2168 {
2169         struct xfrm_policy *pol;
2170
2171         rcu_read_lock();
2172  again:
2173         pol = rcu_dereference(sk->sk_policy[dir]);
2174         if (pol != NULL) {
2175                 bool match;
2176                 int err = 0;
2177
2178                 if (pol->family != family) {
2179                         pol = NULL;
2180                         goto out;
2181                 }
2182
2183                 match = xfrm_selector_match(&pol->selector, fl, family);
2184                 if (match) {
2185                         if ((sk->sk_mark & pol->mark.m) != pol->mark.v ||
2186                             pol->if_id != if_id) {
2187                                 pol = NULL;
2188                                 goto out;
2189                         }
2190                         err = security_xfrm_policy_lookup(pol->security,
2191                                                       fl->flowi_secid,
2192                                                       dir);
2193                         if (!err) {
2194                                 if (!xfrm_pol_hold_rcu(pol))
2195                                         goto again;
2196                         } else if (err == -ESRCH) {
2197                                 pol = NULL;
2198                         } else {
2199                                 pol = ERR_PTR(err);
2200                         }
2201                 } else
2202                         pol = NULL;
2203         }
2204 out:
2205         rcu_read_unlock();
2206         return pol;
2207 }
2208
2209 static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
2210 {
2211         struct net *net = xp_net(pol);
2212
2213         list_add(&pol->walk.all, &net->xfrm.policy_all);
2214         net->xfrm.policy_count[dir]++;
2215         xfrm_pol_hold(pol);
2216 }
2217
2218 static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
2219                                                 int dir)
2220 {
2221         struct net *net = xp_net(pol);
2222
2223         if (list_empty(&pol->walk.all))
2224                 return NULL;
2225
2226         /* Socket policies are not hashed. */
2227         if (!hlist_unhashed(&pol->bydst)) {
2228                 hlist_del_rcu(&pol->bydst);
2229                 hlist_del_init(&pol->bydst_inexact_list);
2230                 hlist_del(&pol->byidx);
2231         }
2232
2233         list_del_init(&pol->walk.all);
2234         net->xfrm.policy_count[dir]--;
2235
2236         return pol;
2237 }
2238
2239 static void xfrm_sk_policy_link(struct xfrm_policy *pol, int dir)
2240 {
2241         __xfrm_policy_link(pol, XFRM_POLICY_MAX + dir);
2242 }
2243
2244 static void xfrm_sk_policy_unlink(struct xfrm_policy *pol, int dir)
2245 {
2246         __xfrm_policy_unlink(pol, XFRM_POLICY_MAX + dir);
2247 }
2248
2249 int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
2250 {
2251         struct net *net = xp_net(pol);
2252
2253         spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2254         pol = __xfrm_policy_unlink(pol, dir);
2255         spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2256         if (pol) {
2257                 xfrm_policy_kill(pol);
2258                 return 0;
2259         }
2260         return -ENOENT;
2261 }
2262 EXPORT_SYMBOL(xfrm_policy_delete);
2263
2264 int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
2265 {
2266         struct net *net = sock_net(sk);
2267         struct xfrm_policy *old_pol;
2268
2269 #ifdef CONFIG_XFRM_SUB_POLICY
2270         if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
2271                 return -EINVAL;
2272 #endif
2273
2274         spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2275         old_pol = rcu_dereference_protected(sk->sk_policy[dir],
2276                                 lockdep_is_held(&net->xfrm.xfrm_policy_lock));
2277         if (pol) {
2278                 pol->curlft.add_time = ktime_get_real_seconds();
2279                 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir, 0);
2280                 xfrm_sk_policy_link(pol, dir);
2281         }
2282         rcu_assign_pointer(sk->sk_policy[dir], pol);
2283         if (old_pol) {
2284                 if (pol)
2285                         xfrm_policy_requeue(old_pol, pol);
2286
2287                 /* Unlinking succeeds always. This is the only function
2288                  * allowed to delete or replace socket policy.
2289                  */
2290                 xfrm_sk_policy_unlink(old_pol, dir);
2291         }
2292         spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2293
2294         if (old_pol) {
2295                 xfrm_policy_kill(old_pol);
2296         }
2297         return 0;
2298 }
2299
2300 static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
2301 {
2302         struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
2303         struct net *net = xp_net(old);
2304
2305         if (newp) {
2306                 newp->selector = old->selector;
2307                 if (security_xfrm_policy_clone(old->security,
2308                                                &newp->security)) {
2309                         kfree(newp);
2310                         return NULL;  /* ENOMEM */
2311                 }
2312                 newp->lft = old->lft;
2313                 newp->curlft = old->curlft;
2314                 newp->mark = old->mark;
2315                 newp->if_id = old->if_id;
2316                 newp->action = old->action;
2317                 newp->flags = old->flags;
2318                 newp->xfrm_nr = old->xfrm_nr;
2319                 newp->index = old->index;
2320                 newp->type = old->type;
2321                 newp->family = old->family;
2322                 memcpy(newp->xfrm_vec, old->xfrm_vec,
2323                        newp->xfrm_nr*sizeof(struct xfrm_tmpl));
2324                 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
2325                 xfrm_sk_policy_link(newp, dir);
2326                 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
2327                 xfrm_pol_put(newp);
2328         }
2329         return newp;
2330 }
2331
2332 int __xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk)
2333 {
2334         const struct xfrm_policy *p;
2335         struct xfrm_policy *np;
2336         int i, ret = 0;
2337
2338         rcu_read_lock();
2339         for (i = 0; i < 2; i++) {
2340                 p = rcu_dereference(osk->sk_policy[i]);
2341                 if (p) {
2342                         np = clone_policy(p, i);
2343                         if (unlikely(!np)) {
2344                                 ret = -ENOMEM;
2345                                 break;
2346                         }
2347                         rcu_assign_pointer(sk->sk_policy[i], np);
2348                 }
2349         }
2350         rcu_read_unlock();
2351         return ret;
2352 }
2353
2354 static int
2355 xfrm_get_saddr(struct net *net, int oif, xfrm_address_t *local,
2356                xfrm_address_t *remote, unsigned short family, u32 mark)
2357 {
2358         int err;
2359         const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2360
2361         if (unlikely(afinfo == NULL))
2362                 return -EINVAL;
2363         err = afinfo->get_saddr(net, oif, local, remote, mark);
2364         rcu_read_unlock();
2365         return err;
2366 }
2367
2368 /* Resolve list of templates for the flow, given policy. */
2369
2370 static int
2371 xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
2372                       struct xfrm_state **xfrm, unsigned short family)
2373 {
2374         struct net *net = xp_net(policy);
2375         int nx;
2376         int i, error;
2377         xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
2378         xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
2379         xfrm_address_t tmp;
2380
2381         for (nx = 0, i = 0; i < policy->xfrm_nr; i++) {
2382                 struct xfrm_state *x;
2383                 xfrm_address_t *remote = daddr;
2384                 xfrm_address_t *local  = saddr;
2385                 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
2386
2387                 if (tmpl->mode == XFRM_MODE_TUNNEL ||
2388                     tmpl->mode == XFRM_MODE_BEET) {
2389                         remote = &tmpl->id.daddr;
2390                         local = &tmpl->saddr;
2391                         if (xfrm_addr_any(local, tmpl->encap_family)) {
2392                                 error = xfrm_get_saddr(net, fl->flowi_oif,
2393                                                        &tmp, remote,
2394                                                        tmpl->encap_family, 0);
2395                                 if (error)
2396                                         goto fail;
2397                                 local = &tmp;
2398                         }
2399                 }
2400
2401                 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error,
2402                                     family, policy->if_id);
2403
2404                 if (x && x->km.state == XFRM_STATE_VALID) {
2405                         xfrm[nx++] = x;
2406                         daddr = remote;
2407                         saddr = local;
2408                         continue;
2409                 }
2410                 if (x) {
2411                         error = (x->km.state == XFRM_STATE_ERROR ?
2412                                  -EINVAL : -EAGAIN);
2413                         xfrm_state_put(x);
2414                 } else if (error == -ESRCH) {
2415                         error = -EAGAIN;
2416                 }
2417
2418                 if (!tmpl->optional)
2419                         goto fail;
2420         }
2421         return nx;
2422
2423 fail:
2424         for (nx--; nx >= 0; nx--)
2425                 xfrm_state_put(xfrm[nx]);
2426         return error;
2427 }
2428
2429 static int
2430 xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
2431                   struct xfrm_state **xfrm, unsigned short family)
2432 {
2433         struct xfrm_state *tp[XFRM_MAX_DEPTH];
2434         struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
2435         int cnx = 0;
2436         int error;
2437         int ret;
2438         int i;
2439
2440         for (i = 0; i < npols; i++) {
2441                 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
2442                         error = -ENOBUFS;
2443                         goto fail;
2444                 }
2445
2446                 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
2447                 if (ret < 0) {
2448                         error = ret;
2449                         goto fail;
2450                 } else
2451                         cnx += ret;
2452         }
2453
2454         /* found states are sorted for outbound processing */
2455         if (npols > 1)
2456                 xfrm_state_sort(xfrm, tpp, cnx, family);
2457
2458         return cnx;
2459
2460  fail:
2461         for (cnx--; cnx >= 0; cnx--)
2462                 xfrm_state_put(tpp[cnx]);
2463         return error;
2464
2465 }
2466
2467 static int xfrm_get_tos(const struct flowi *fl, int family)
2468 {
2469         if (family == AF_INET)
2470                 return IPTOS_RT_MASK & fl->u.ip4.flowi4_tos;
2471
2472         return 0;
2473 }
2474
2475 static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
2476 {
2477         const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2478         struct dst_ops *dst_ops;
2479         struct xfrm_dst *xdst;
2480
2481         if (!afinfo)
2482                 return ERR_PTR(-EINVAL);
2483
2484         switch (family) {
2485         case AF_INET:
2486                 dst_ops = &net->xfrm.xfrm4_dst_ops;
2487                 break;
2488 #if IS_ENABLED(CONFIG_IPV6)
2489         case AF_INET6:
2490                 dst_ops = &net->xfrm.xfrm6_dst_ops;
2491                 break;
2492 #endif
2493         default:
2494                 BUG();
2495         }
2496         xdst = dst_alloc(dst_ops, NULL, 1, DST_OBSOLETE_NONE, 0);
2497
2498         if (likely(xdst)) {
2499                 struct dst_entry *dst = &xdst->u.dst;
2500
2501                 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
2502         } else
2503                 xdst = ERR_PTR(-ENOBUFS);
2504
2505         rcu_read_unlock();
2506
2507         return xdst;
2508 }
2509
2510 static void xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
2511                            int nfheader_len)
2512 {
2513         if (dst->ops->family == AF_INET6) {
2514                 struct rt6_info *rt = (struct rt6_info *)dst;
2515                 path->path_cookie = rt6_get_cookie(rt);
2516                 path->u.rt6.rt6i_nfheader_len = nfheader_len;
2517         }
2518 }
2519
2520 static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
2521                                 const struct flowi *fl)
2522 {
2523         const struct xfrm_policy_afinfo *afinfo =
2524                 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
2525         int err;
2526
2527         if (!afinfo)
2528                 return -EINVAL;
2529
2530         err = afinfo->fill_dst(xdst, dev, fl);
2531
2532         rcu_read_unlock();
2533
2534         return err;
2535 }
2536
2537
2538 /* Allocate chain of dst_entry's, attach known xfrm's, calculate
2539  * all the metrics... Shortly, bundle a bundle.
2540  */
2541
2542 static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
2543                                             struct xfrm_state **xfrm,
2544                                             struct xfrm_dst **bundle,
2545                                             int nx,
2546                                             const struct flowi *fl,
2547                                             struct dst_entry *dst)
2548 {
2549         const struct xfrm_state_afinfo *afinfo;
2550         const struct xfrm_mode *inner_mode;
2551         struct net *net = xp_net(policy);
2552         unsigned long now = jiffies;
2553         struct net_device *dev;
2554         struct xfrm_dst *xdst_prev = NULL;
2555         struct xfrm_dst *xdst0 = NULL;
2556         int i = 0;
2557         int err;
2558         int header_len = 0;
2559         int nfheader_len = 0;
2560         int trailer_len = 0;
2561         int tos;
2562         int family = policy->selector.family;
2563         xfrm_address_t saddr, daddr;
2564
2565         xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
2566
2567         tos = xfrm_get_tos(fl, family);
2568
2569         dst_hold(dst);
2570
2571         for (; i < nx; i++) {
2572                 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
2573                 struct dst_entry *dst1 = &xdst->u.dst;
2574
2575                 err = PTR_ERR(xdst);
2576                 if (IS_ERR(xdst)) {
2577                         dst_release(dst);
2578                         goto put_states;
2579                 }
2580
2581                 bundle[i] = xdst;
2582                 if (!xdst_prev)
2583                         xdst0 = xdst;
2584                 else
2585                         /* Ref count is taken during xfrm_alloc_dst()
2586                          * No need to do dst_clone() on dst1
2587                          */
2588                         xfrm_dst_set_child(xdst_prev, &xdst->u.dst);
2589
2590                 if (xfrm[i]->sel.family == AF_UNSPEC) {
2591                         inner_mode = xfrm_ip2inner_mode(xfrm[i],
2592                                                         xfrm_af2proto(family));
2593                         if (!inner_mode) {
2594                                 err = -EAFNOSUPPORT;
2595                                 dst_release(dst);
2596                                 goto put_states;
2597                         }
2598                 } else
2599                         inner_mode = &xfrm[i]->inner_mode;
2600
2601                 xdst->route = dst;
2602                 dst_copy_metrics(dst1, dst);
2603
2604                 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
2605                         __u32 mark = 0;
2606
2607                         if (xfrm[i]->props.smark.v || xfrm[i]->props.smark.m)
2608                                 mark = xfrm_smark_get(fl->flowi_mark, xfrm[i]);
2609
2610                         family = xfrm[i]->props.family;
2611                         dst = xfrm_dst_lookup(xfrm[i], tos, fl->flowi_oif,
2612                                               &saddr, &daddr, family, mark);
2613                         err = PTR_ERR(dst);
2614                         if (IS_ERR(dst))
2615                                 goto put_states;
2616                 } else
2617                         dst_hold(dst);
2618
2619                 dst1->xfrm = xfrm[i];
2620                 xdst->xfrm_genid = xfrm[i]->genid;
2621
2622                 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2623                 dst1->lastuse = now;
2624
2625                 dst1->input = dst_discard;
2626
2627                 rcu_read_lock();
2628                 afinfo = xfrm_state_afinfo_get_rcu(inner_mode->family);
2629                 if (likely(afinfo))
2630                         dst1->output = afinfo->output;
2631                 else
2632                         dst1->output = dst_discard_out;
2633                 rcu_read_unlock();
2634
2635                 xdst_prev = xdst;
2636
2637                 header_len += xfrm[i]->props.header_len;
2638                 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
2639                         nfheader_len += xfrm[i]->props.header_len;
2640                 trailer_len += xfrm[i]->props.trailer_len;
2641         }
2642
2643         xfrm_dst_set_child(xdst_prev, dst);
2644         xdst0->path = dst;
2645
2646         err = -ENODEV;
2647         dev = dst->dev;
2648         if (!dev)
2649                 goto free_dst;
2650
2651         xfrm_init_path(xdst0, dst, nfheader_len);
2652         xfrm_init_pmtu(bundle, nx);
2653
2654         for (xdst_prev = xdst0; xdst_prev != (struct xfrm_dst *)dst;
2655              xdst_prev = (struct xfrm_dst *) xfrm_dst_child(&xdst_prev->u.dst)) {
2656                 err = xfrm_fill_dst(xdst_prev, dev, fl);
2657                 if (err)
2658                         goto free_dst;
2659
2660                 xdst_prev->u.dst.header_len = header_len;
2661                 xdst_prev->u.dst.trailer_len = trailer_len;
2662                 header_len -= xdst_prev->u.dst.xfrm->props.header_len;
2663                 trailer_len -= xdst_prev->u.dst.xfrm->props.trailer_len;
2664         }
2665
2666         return &xdst0->u.dst;
2667
2668 put_states:
2669         for (; i < nx; i++)
2670                 xfrm_state_put(xfrm[i]);
2671 free_dst:
2672         if (xdst0)
2673                 dst_release_immediate(&xdst0->u.dst);
2674
2675         return ERR_PTR(err);
2676 }
2677
2678 static int xfrm_expand_policies(const struct flowi *fl, u16 family,
2679                                 struct xfrm_policy **pols,
2680                                 int *num_pols, int *num_xfrms)
2681 {
2682         int i;
2683
2684         if (*num_pols == 0 || !pols[0]) {
2685                 *num_pols = 0;
2686                 *num_xfrms = 0;
2687                 return 0;
2688         }
2689         if (IS_ERR(pols[0]))
2690                 return PTR_ERR(pols[0]);
2691
2692         *num_xfrms = pols[0]->xfrm_nr;
2693
2694 #ifdef CONFIG_XFRM_SUB_POLICY
2695         if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
2696             pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
2697                 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
2698                                                     XFRM_POLICY_TYPE_MAIN,
2699                                                     fl, family,
2700                                                     XFRM_POLICY_OUT,
2701                                                     pols[0]->if_id);
2702                 if (pols[1]) {
2703                         if (IS_ERR(pols[1])) {
2704                                 xfrm_pols_put(pols, *num_pols);
2705                                 return PTR_ERR(pols[1]);
2706                         }
2707                         (*num_pols)++;
2708                         (*num_xfrms) += pols[1]->xfrm_nr;
2709                 }
2710         }
2711 #endif
2712         for (i = 0; i < *num_pols; i++) {
2713                 if (pols[i]->action != XFRM_POLICY_ALLOW) {
2714                         *num_xfrms = -1;
2715                         break;
2716                 }
2717         }
2718
2719         return 0;
2720
2721 }
2722
2723 static struct xfrm_dst *
2724 xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
2725                                const struct flowi *fl, u16 family,
2726                                struct dst_entry *dst_orig)
2727 {
2728         struct net *net = xp_net(pols[0]);
2729         struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
2730         struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
2731         struct xfrm_dst *xdst;
2732         struct dst_entry *dst;
2733         int err;
2734
2735         /* Try to instantiate a bundle */
2736         err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
2737         if (err <= 0) {
2738                 if (err == 0)
2739                         return NULL;
2740
2741                 if (err != -EAGAIN)
2742                         XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2743                 return ERR_PTR(err);
2744         }
2745
2746         dst = xfrm_bundle_create(pols[0], xfrm, bundle, err, fl, dst_orig);
2747         if (IS_ERR(dst)) {
2748                 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
2749                 return ERR_CAST(dst);
2750         }
2751
2752         xdst = (struct xfrm_dst *)dst;
2753         xdst->num_xfrms = err;
2754         xdst->num_pols = num_pols;
2755         memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
2756         xdst->policy_genid = atomic_read(&pols[0]->genid);
2757
2758         return xdst;
2759 }
2760
2761 static void xfrm_policy_queue_process(struct timer_list *t)
2762 {
2763         struct sk_buff *skb;
2764         struct sock *sk;
2765         struct dst_entry *dst;
2766         struct xfrm_policy *pol = from_timer(pol, t, polq.hold_timer);
2767         struct net *net = xp_net(pol);
2768         struct xfrm_policy_queue *pq = &pol->polq;
2769         struct flowi fl;
2770         struct sk_buff_head list;
2771         __u32 skb_mark;
2772
2773         spin_lock(&pq->hold_queue.lock);
2774         skb = skb_peek(&pq->hold_queue);
2775         if (!skb) {
2776                 spin_unlock(&pq->hold_queue.lock);
2777                 goto out;
2778         }
2779         dst = skb_dst(skb);
2780         sk = skb->sk;
2781
2782         /* Fixup the mark to support VTI. */
2783         skb_mark = skb->mark;
2784         skb->mark = pol->mark.v;
2785         xfrm_decode_session(skb, &fl, dst->ops->family);
2786         skb->mark = skb_mark;
2787         spin_unlock(&pq->hold_queue.lock);
2788
2789         dst_hold(xfrm_dst_path(dst));
2790         dst = xfrm_lookup(net, xfrm_dst_path(dst), &fl, sk, XFRM_LOOKUP_QUEUE);
2791         if (IS_ERR(dst))
2792                 goto purge_queue;
2793
2794         if (dst->flags & DST_XFRM_QUEUE) {
2795                 dst_release(dst);
2796
2797                 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
2798                         goto purge_queue;
2799
2800                 pq->timeout = pq->timeout << 1;
2801                 if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
2802                         xfrm_pol_hold(pol);
2803                 goto out;
2804         }
2805
2806         dst_release(dst);
2807
2808         __skb_queue_head_init(&list);
2809
2810         spin_lock(&pq->hold_queue.lock);
2811         pq->timeout = 0;
2812         skb_queue_splice_init(&pq->hold_queue, &list);
2813         spin_unlock(&pq->hold_queue.lock);
2814
2815         while (!skb_queue_empty(&list)) {
2816                 skb = __skb_dequeue(&list);
2817
2818                 /* Fixup the mark to support VTI. */
2819                 skb_mark = skb->mark;
2820                 skb->mark = pol->mark.v;
2821                 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
2822                 skb->mark = skb_mark;
2823
2824                 dst_hold(xfrm_dst_path(skb_dst(skb)));
2825                 dst = xfrm_lookup(net, xfrm_dst_path(skb_dst(skb)), &fl, skb->sk, 0);
2826                 if (IS_ERR(dst)) {
2827                         kfree_skb(skb);
2828                         continue;
2829                 }
2830
2831                 nf_reset_ct(skb);
2832                 skb_dst_drop(skb);
2833                 skb_dst_set(skb, dst);
2834
2835                 dst_output(net, skb->sk, skb);
2836         }
2837
2838 out:
2839         xfrm_pol_put(pol);
2840         return;
2841
2842 purge_queue:
2843         pq->timeout = 0;
2844         skb_queue_purge(&pq->hold_queue);
2845         xfrm_pol_put(pol);
2846 }
2847
2848 static int xdst_queue_output(struct net *net, struct sock *sk, struct sk_buff *skb)
2849 {
2850         unsigned long sched_next;
2851         struct dst_entry *dst = skb_dst(skb);
2852         struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
2853         struct xfrm_policy *pol = xdst->pols[0];
2854         struct xfrm_policy_queue *pq = &pol->polq;
2855
2856         if (unlikely(skb_fclone_busy(sk, skb))) {
2857                 kfree_skb(skb);
2858                 return 0;
2859         }
2860
2861         if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
2862                 kfree_skb(skb);
2863                 return -EAGAIN;
2864         }
2865
2866         skb_dst_force(skb);
2867
2868         spin_lock_bh(&pq->hold_queue.lock);
2869
2870         if (!pq->timeout)
2871                 pq->timeout = XFRM_QUEUE_TMO_MIN;
2872
2873         sched_next = jiffies + pq->timeout;
2874
2875         if (del_timer(&pq->hold_timer)) {
2876                 if (time_before(pq->hold_timer.expires, sched_next))
2877                         sched_next = pq->hold_timer.expires;
2878                 xfrm_pol_put(pol);
2879         }
2880
2881         __skb_queue_tail(&pq->hold_queue, skb);
2882         if (!mod_timer(&pq->hold_timer, sched_next))
2883                 xfrm_pol_hold(pol);
2884
2885         spin_unlock_bh(&pq->hold_queue.lock);
2886
2887         return 0;
2888 }
2889
2890 static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
2891                                                  struct xfrm_flo *xflo,
2892                                                  const struct flowi *fl,
2893                                                  int num_xfrms,
2894                                                  u16 family)
2895 {
2896         int err;
2897         struct net_device *dev;
2898         struct dst_entry *dst;
2899         struct dst_entry *dst1;
2900         struct xfrm_dst *xdst;
2901
2902         xdst = xfrm_alloc_dst(net, family);
2903         if (IS_ERR(xdst))
2904                 return xdst;
2905
2906         if (!(xflo->flags & XFRM_LOOKUP_QUEUE) ||
2907             net->xfrm.sysctl_larval_drop ||
2908             num_xfrms <= 0)
2909                 return xdst;
2910
2911         dst = xflo->dst_orig;
2912         dst1 = &xdst->u.dst;
2913         dst_hold(dst);
2914         xdst->route = dst;
2915
2916         dst_copy_metrics(dst1, dst);
2917
2918         dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2919         dst1->flags |= DST_XFRM_QUEUE;
2920         dst1->lastuse = jiffies;
2921
2922         dst1->input = dst_discard;
2923         dst1->output = xdst_queue_output;
2924
2925         dst_hold(dst);
2926         xfrm_dst_set_child(xdst, dst);
2927         xdst->path = dst;
2928
2929         xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
2930
2931         err = -ENODEV;
2932         dev = dst->dev;
2933         if (!dev)
2934                 goto free_dst;
2935
2936         err = xfrm_fill_dst(xdst, dev, fl);
2937         if (err)
2938                 goto free_dst;
2939
2940 out:
2941         return xdst;
2942
2943 free_dst:
2944         dst_release(dst1);
2945         xdst = ERR_PTR(err);
2946         goto out;
2947 }
2948
2949 static struct xfrm_dst *xfrm_bundle_lookup(struct net *net,
2950                                            const struct flowi *fl,
2951                                            u16 family, u8 dir,
2952                                            struct xfrm_flo *xflo, u32 if_id)
2953 {
2954         struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2955         int num_pols = 0, num_xfrms = 0, err;
2956         struct xfrm_dst *xdst;
2957
2958         /* Resolve policies to use if we couldn't get them from
2959          * previous cache entry */
2960         num_pols = 1;
2961         pols[0] = xfrm_policy_lookup(net, fl, family, dir, if_id);
2962         err = xfrm_expand_policies(fl, family, pols,
2963                                            &num_pols, &num_xfrms);
2964         if (err < 0)
2965                 goto inc_error;
2966         if (num_pols == 0)
2967                 return NULL;
2968         if (num_xfrms <= 0)
2969                 goto make_dummy_bundle;
2970
2971         xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family,
2972                                               xflo->dst_orig);
2973         if (IS_ERR(xdst)) {
2974                 err = PTR_ERR(xdst);
2975                 if (err == -EREMOTE) {
2976                         xfrm_pols_put(pols, num_pols);
2977                         return NULL;
2978                 }
2979
2980                 if (err != -EAGAIN)
2981                         goto error;
2982                 goto make_dummy_bundle;
2983         } else if (xdst == NULL) {
2984                 num_xfrms = 0;
2985                 goto make_dummy_bundle;
2986         }
2987
2988         return xdst;
2989
2990 make_dummy_bundle:
2991         /* We found policies, but there's no bundles to instantiate:
2992          * either because the policy blocks, has no transformations or
2993          * we could not build template (no xfrm_states).*/
2994         xdst = xfrm_create_dummy_bundle(net, xflo, fl, num_xfrms, family);
2995         if (IS_ERR(xdst)) {
2996                 xfrm_pols_put(pols, num_pols);
2997                 return ERR_CAST(xdst);
2998         }
2999         xdst->num_pols = num_pols;
3000         xdst->num_xfrms = num_xfrms;
3001         memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
3002
3003         return xdst;
3004
3005 inc_error:
3006         XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
3007 error:
3008         xfrm_pols_put(pols, num_pols);
3009         return ERR_PTR(err);
3010 }
3011
3012 static struct dst_entry *make_blackhole(struct net *net, u16 family,
3013                                         struct dst_entry *dst_orig)
3014 {
3015         const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
3016         struct dst_entry *ret;
3017
3018         if (!afinfo) {
3019                 dst_release(dst_orig);
3020                 return ERR_PTR(-EINVAL);
3021         } else {
3022                 ret = afinfo->blackhole_route(net, dst_orig);
3023         }
3024         rcu_read_unlock();
3025
3026         return ret;
3027 }
3028
3029 /* Finds/creates a bundle for given flow and if_id
3030  *
3031  * At the moment we eat a raw IP route. Mostly to speed up lookups
3032  * on interfaces with disabled IPsec.
3033  *
3034  * xfrm_lookup uses an if_id of 0 by default, and is provided for
3035  * compatibility
3036  */
3037 struct dst_entry *xfrm_lookup_with_ifid(struct net *net,
3038                                         struct dst_entry *dst_orig,
3039                                         const struct flowi *fl,
3040                                         const struct sock *sk,
3041                                         int flags, u32 if_id)
3042 {
3043         struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3044         struct xfrm_dst *xdst;
3045         struct dst_entry *dst, *route;
3046         u16 family = dst_orig->ops->family;
3047         u8 dir = XFRM_POLICY_OUT;
3048         int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
3049
3050         dst = NULL;
3051         xdst = NULL;
3052         route = NULL;
3053
3054         sk = sk_const_to_full_sk(sk);
3055         if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
3056                 num_pols = 1;
3057                 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, family,
3058                                                 if_id);
3059                 err = xfrm_expand_policies(fl, family, pols,
3060                                            &num_pols, &num_xfrms);
3061                 if (err < 0)
3062                         goto dropdst;
3063
3064                 if (num_pols) {
3065                         if (num_xfrms <= 0) {
3066                                 drop_pols = num_pols;
3067                                 goto no_transform;
3068                         }
3069
3070                         xdst = xfrm_resolve_and_create_bundle(
3071                                         pols, num_pols, fl,
3072                                         family, dst_orig);
3073
3074                         if (IS_ERR(xdst)) {
3075                                 xfrm_pols_put(pols, num_pols);
3076                                 err = PTR_ERR(xdst);
3077                                 if (err == -EREMOTE)
3078                                         goto nopol;
3079
3080                                 goto dropdst;
3081                         } else if (xdst == NULL) {
3082                                 num_xfrms = 0;
3083                                 drop_pols = num_pols;
3084                                 goto no_transform;
3085                         }
3086
3087                         route = xdst->route;
3088                 }
3089         }
3090
3091         if (xdst == NULL) {
3092                 struct xfrm_flo xflo;
3093
3094                 xflo.dst_orig = dst_orig;
3095                 xflo.flags = flags;
3096
3097                 /* To accelerate a bit...  */
3098                 if (!if_id && ((dst_orig->flags & DST_NOXFRM) ||
3099                                !net->xfrm.policy_count[XFRM_POLICY_OUT]))
3100                         goto nopol;
3101
3102                 xdst = xfrm_bundle_lookup(net, fl, family, dir, &xflo, if_id);
3103                 if (xdst == NULL)
3104                         goto nopol;
3105                 if (IS_ERR(xdst)) {
3106                         err = PTR_ERR(xdst);
3107                         goto dropdst;
3108                 }
3109
3110                 num_pols = xdst->num_pols;
3111                 num_xfrms = xdst->num_xfrms;
3112                 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
3113                 route = xdst->route;
3114         }
3115
3116         dst = &xdst->u.dst;
3117         if (route == NULL && num_xfrms > 0) {
3118                 /* The only case when xfrm_bundle_lookup() returns a
3119                  * bundle with null route, is when the template could
3120                  * not be resolved. It means policies are there, but
3121                  * bundle could not be created, since we don't yet
3122                  * have the xfrm_state's. We need to wait for KM to
3123                  * negotiate new SA's or bail out with error.*/
3124                 if (net->xfrm.sysctl_larval_drop) {
3125                         XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3126                         err = -EREMOTE;
3127                         goto error;
3128                 }
3129
3130                 err = -EAGAIN;
3131
3132                 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3133                 goto error;
3134         }
3135
3136 no_transform:
3137         if (num_pols == 0)
3138                 goto nopol;
3139
3140         if ((flags & XFRM_LOOKUP_ICMP) &&
3141             !(pols[0]->flags & XFRM_POLICY_ICMP)) {
3142                 err = -ENOENT;
3143                 goto error;
3144         }
3145
3146         for (i = 0; i < num_pols; i++)
3147                 pols[i]->curlft.use_time = ktime_get_real_seconds();
3148
3149         if (num_xfrms < 0) {
3150                 /* Prohibit the flow */
3151                 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
3152                 err = -EPERM;
3153                 goto error;
3154         } else if (num_xfrms > 0) {
3155                 /* Flow transformed */
3156                 dst_release(dst_orig);
3157         } else {
3158                 /* Flow passes untransformed */
3159                 dst_release(dst);
3160                 dst = dst_orig;
3161         }
3162 ok:
3163         xfrm_pols_put(pols, drop_pols);
3164         if (dst && dst->xfrm &&
3165             dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
3166                 dst->flags |= DST_XFRM_TUNNEL;
3167         return dst;
3168
3169 nopol:
3170         if (!(flags & XFRM_LOOKUP_ICMP)) {
3171                 dst = dst_orig;
3172                 goto ok;
3173         }
3174         err = -ENOENT;
3175 error:
3176         dst_release(dst);
3177 dropdst:
3178         if (!(flags & XFRM_LOOKUP_KEEP_DST_REF))
3179                 dst_release(dst_orig);
3180         xfrm_pols_put(pols, drop_pols);
3181         return ERR_PTR(err);
3182 }
3183 EXPORT_SYMBOL(xfrm_lookup_with_ifid);
3184
3185 /* Main function: finds/creates a bundle for given flow.
3186  *
3187  * At the moment we eat a raw IP route. Mostly to speed up lookups
3188  * on interfaces with disabled IPsec.
3189  */
3190 struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
3191                               const struct flowi *fl, const struct sock *sk,
3192                               int flags)
3193 {
3194         return xfrm_lookup_with_ifid(net, dst_orig, fl, sk, flags, 0);
3195 }
3196 EXPORT_SYMBOL(xfrm_lookup);
3197
3198 /* Callers of xfrm_lookup_route() must ensure a call to dst_output().
3199  * Otherwise we may send out blackholed packets.
3200  */
3201 struct dst_entry *xfrm_lookup_route(struct net *net, struct dst_entry *dst_orig,
3202                                     const struct flowi *fl,
3203                                     const struct sock *sk, int flags)
3204 {
3205         struct dst_entry *dst = xfrm_lookup(net, dst_orig, fl, sk,
3206                                             flags | XFRM_LOOKUP_QUEUE |
3207                                             XFRM_LOOKUP_KEEP_DST_REF);
3208
3209         if (PTR_ERR(dst) == -EREMOTE)
3210                 return make_blackhole(net, dst_orig->ops->family, dst_orig);
3211
3212         if (IS_ERR(dst))
3213                 dst_release(dst_orig);
3214
3215         return dst;
3216 }
3217 EXPORT_SYMBOL(xfrm_lookup_route);
3218
3219 static inline int
3220 xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
3221 {
3222         struct sec_path *sp = skb_sec_path(skb);
3223         struct xfrm_state *x;
3224
3225         if (!sp || idx < 0 || idx >= sp->len)
3226                 return 0;
3227         x = sp->xvec[idx];
3228         if (!x->type->reject)
3229                 return 0;
3230         return x->type->reject(x, skb, fl);
3231 }
3232
3233 /* When skb is transformed back to its "native" form, we have to
3234  * check policy restrictions. At the moment we make this in maximally
3235  * stupid way. Shame on me. :-) Of course, connected sockets must
3236  * have policy cached at them.
3237  */
3238
3239 static inline int
3240 xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
3241               unsigned short family)
3242 {
3243         if (xfrm_state_kern(x))
3244                 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
3245         return  x->id.proto == tmpl->id.proto &&
3246                 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
3247                 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
3248                 x->props.mode == tmpl->mode &&
3249                 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
3250                  !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
3251                 !(x->props.mode != XFRM_MODE_TRANSPORT &&
3252                   xfrm_state_addr_cmp(tmpl, x, family));
3253 }
3254
3255 /*
3256  * 0 or more than 0 is returned when validation is succeeded (either bypass
3257  * because of optional transport mode, or next index of the mathced secpath
3258  * state with the template.
3259  * -1 is returned when no matching template is found.
3260  * Otherwise "-2 - errored_index" is returned.
3261  */
3262 static inline int
3263 xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
3264                unsigned short family)
3265 {
3266         int idx = start;
3267
3268         if (tmpl->optional) {
3269                 if (tmpl->mode == XFRM_MODE_TRANSPORT)
3270                         return start;
3271         } else
3272                 start = -1;
3273         for (; idx < sp->len; idx++) {
3274                 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
3275                         return ++idx;
3276                 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
3277                         if (start == -1)
3278                                 start = -2-idx;
3279                         break;
3280                 }
3281         }
3282         return start;
3283 }
3284
3285 static void
3286 decode_session4(struct sk_buff *skb, struct flowi *fl, bool reverse)
3287 {
3288         const struct iphdr *iph = ip_hdr(skb);
3289         int ihl = iph->ihl;
3290         u8 *xprth = skb_network_header(skb) + ihl * 4;
3291         struct flowi4 *fl4 = &fl->u.ip4;
3292         int oif = 0;
3293
3294         if (skb_dst(skb) && skb_dst(skb)->dev)
3295                 oif = skb_dst(skb)->dev->ifindex;
3296
3297         memset(fl4, 0, sizeof(struct flowi4));
3298         fl4->flowi4_mark = skb->mark;
3299         fl4->flowi4_oif = reverse ? skb->skb_iif : oif;
3300
3301         fl4->flowi4_proto = iph->protocol;
3302         fl4->daddr = reverse ? iph->saddr : iph->daddr;
3303         fl4->saddr = reverse ? iph->daddr : iph->saddr;
3304         fl4->flowi4_tos = iph->tos;
3305
3306         if (!ip_is_fragment(iph)) {
3307                 switch (iph->protocol) {
3308                 case IPPROTO_UDP:
3309                 case IPPROTO_UDPLITE:
3310                 case IPPROTO_TCP:
3311                 case IPPROTO_SCTP:
3312                 case IPPROTO_DCCP:
3313                         if (xprth + 4 < skb->data ||
3314                             pskb_may_pull(skb, xprth + 4 - skb->data)) {
3315                                 __be16 *ports;
3316
3317                                 xprth = skb_network_header(skb) + ihl * 4;
3318                                 ports = (__be16 *)xprth;
3319
3320                                 fl4->fl4_sport = ports[!!reverse];
3321                                 fl4->fl4_dport = ports[!reverse];
3322                         }
3323                         break;
3324                 case IPPROTO_ICMP:
3325                         if (xprth + 2 < skb->data ||
3326                             pskb_may_pull(skb, xprth + 2 - skb->data)) {
3327                                 u8 *icmp;
3328
3329                                 xprth = skb_network_header(skb) + ihl * 4;
3330                                 icmp = xprth;
3331
3332                                 fl4->fl4_icmp_type = icmp[0];
3333                                 fl4->fl4_icmp_code = icmp[1];
3334                         }
3335                         break;
3336                 case IPPROTO_GRE:
3337                         if (xprth + 12 < skb->data ||
3338                             pskb_may_pull(skb, xprth + 12 - skb->data)) {
3339                                 __be16 *greflags;
3340                                 __be32 *gre_hdr;
3341
3342                                 xprth = skb_network_header(skb) + ihl * 4;
3343                                 greflags = (__be16 *)xprth;
3344                                 gre_hdr = (__be32 *)xprth;
3345
3346                                 if (greflags[0] & GRE_KEY) {
3347                                         if (greflags[0] & GRE_CSUM)
3348                                                 gre_hdr++;
3349                                         fl4->fl4_gre_key = gre_hdr[1];
3350                                 }
3351                         }
3352                         break;
3353                 default:
3354                         break;
3355                 }
3356         }
3357 }
3358
3359 #if IS_ENABLED(CONFIG_IPV6)
3360 static void
3361 decode_session6(struct sk_buff *skb, struct flowi *fl, bool reverse)
3362 {
3363         struct flowi6 *fl6 = &fl->u.ip6;
3364         int onlyproto = 0;
3365         const struct ipv6hdr *hdr = ipv6_hdr(skb);
3366         u32 offset = sizeof(*hdr);
3367         struct ipv6_opt_hdr *exthdr;
3368         const unsigned char *nh = skb_network_header(skb);
3369         u16 nhoff = IP6CB(skb)->nhoff;
3370         int oif = 0;
3371         u8 nexthdr;
3372
3373         if (!nhoff)
3374                 nhoff = offsetof(struct ipv6hdr, nexthdr);
3375
3376         nexthdr = nh[nhoff];
3377
3378         if (skb_dst(skb) && skb_dst(skb)->dev)
3379                 oif = skb_dst(skb)->dev->ifindex;
3380
3381         memset(fl6, 0, sizeof(struct flowi6));
3382         fl6->flowi6_mark = skb->mark;
3383         fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
3384
3385         fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
3386         fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
3387
3388         while (nh + offset + sizeof(*exthdr) < skb->data ||
3389                pskb_may_pull(skb, nh + offset + sizeof(*exthdr) - skb->data)) {
3390                 nh = skb_network_header(skb);
3391                 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
3392
3393                 switch (nexthdr) {
3394                 case NEXTHDR_FRAGMENT:
3395                         onlyproto = 1;
3396                         fallthrough;
3397                 case NEXTHDR_ROUTING:
3398                 case NEXTHDR_HOP:
3399                 case NEXTHDR_DEST:
3400                         offset += ipv6_optlen(exthdr);
3401                         nexthdr = exthdr->nexthdr;
3402                         exthdr = (struct ipv6_opt_hdr *)(nh + offset);
3403                         break;
3404                 case IPPROTO_UDP:
3405                 case IPPROTO_UDPLITE:
3406                 case IPPROTO_TCP:
3407                 case IPPROTO_SCTP:
3408                 case IPPROTO_DCCP:
3409                         if (!onlyproto && (nh + offset + 4 < skb->data ||
3410                              pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
3411                                 __be16 *ports;
3412
3413                                 nh = skb_network_header(skb);
3414                                 ports = (__be16 *)(nh + offset);
3415                                 fl6->fl6_sport = ports[!!reverse];
3416                                 fl6->fl6_dport = ports[!reverse];
3417                         }
3418                         fl6->flowi6_proto = nexthdr;
3419                         return;
3420                 case IPPROTO_ICMPV6:
3421                         if (!onlyproto && (nh + offset + 2 < skb->data ||
3422                             pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
3423                                 u8 *icmp;
3424
3425                                 nh = skb_network_header(skb);
3426                                 icmp = (u8 *)(nh + offset);
3427                                 fl6->fl6_icmp_type = icmp[0];
3428                                 fl6->fl6_icmp_code = icmp[1];
3429                         }
3430                         fl6->flowi6_proto = nexthdr;
3431                         return;
3432 #if IS_ENABLED(CONFIG_IPV6_MIP6)
3433                 case IPPROTO_MH:
3434                         offset += ipv6_optlen(exthdr);
3435                         if (!onlyproto && (nh + offset + 3 < skb->data ||
3436                             pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
3437                                 struct ip6_mh *mh;
3438
3439                                 nh = skb_network_header(skb);
3440                                 mh = (struct ip6_mh *)(nh + offset);
3441                                 fl6->fl6_mh_type = mh->ip6mh_type;
3442                         }
3443                         fl6->flowi6_proto = nexthdr;
3444                         return;
3445 #endif
3446                 default:
3447                         fl6->flowi6_proto = nexthdr;
3448                         return;
3449                 }
3450         }
3451 }
3452 #endif
3453
3454 int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
3455                           unsigned int family, int reverse)
3456 {
3457         switch (family) {
3458         case AF_INET:
3459                 decode_session4(skb, fl, reverse);
3460                 break;
3461 #if IS_ENABLED(CONFIG_IPV6)
3462         case AF_INET6:
3463                 decode_session6(skb, fl, reverse);
3464                 break;
3465 #endif
3466         default:
3467                 return -EAFNOSUPPORT;
3468         }
3469
3470         return security_xfrm_decode_session(skb, &fl->flowi_secid);
3471 }
3472 EXPORT_SYMBOL(__xfrm_decode_session);
3473
3474 static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
3475 {
3476         for (; k < sp->len; k++) {
3477                 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
3478                         *idxp = k;
3479                         return 1;
3480                 }
3481         }
3482
3483         return 0;
3484 }
3485
3486 int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
3487                         unsigned short family)
3488 {
3489         struct net *net = dev_net(skb->dev);
3490         struct xfrm_policy *pol;
3491         struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3492         int npols = 0;
3493         int xfrm_nr;
3494         int pi;
3495         int reverse;
3496         struct flowi fl;
3497         int xerr_idx = -1;
3498         const struct xfrm_if_cb *ifcb;
3499         struct sec_path *sp;
3500         struct xfrm_if *xi;
3501         u32 if_id = 0;
3502
3503         rcu_read_lock();
3504         ifcb = xfrm_if_get_cb();
3505
3506         if (ifcb) {
3507                 xi = ifcb->decode_session(skb, family);
3508                 if (xi) {
3509                         if_id = xi->p.if_id;
3510                         net = xi->net;
3511                 }
3512         }
3513         rcu_read_unlock();
3514
3515         reverse = dir & ~XFRM_POLICY_MASK;
3516         dir &= XFRM_POLICY_MASK;
3517
3518         if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
3519                 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
3520                 return 0;
3521         }
3522
3523         nf_nat_decode_session(skb, &fl, family);
3524
3525         /* First, check used SA against their selectors. */
3526         sp = skb_sec_path(skb);
3527         if (sp) {
3528                 int i;
3529
3530                 for (i = sp->len - 1; i >= 0; i--) {
3531                         struct xfrm_state *x = sp->xvec[i];
3532                         if (!xfrm_selector_match(&x->sel, &fl, family)) {
3533                                 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
3534                                 return 0;
3535                         }
3536                 }
3537         }
3538
3539         pol = NULL;
3540         sk = sk_to_full_sk(sk);
3541         if (sk && sk->sk_policy[dir]) {
3542                 pol = xfrm_sk_policy_lookup(sk, dir, &fl, family, if_id);
3543                 if (IS_ERR(pol)) {
3544                         XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3545                         return 0;
3546                 }
3547         }
3548
3549         if (!pol)
3550                 pol = xfrm_policy_lookup(net, &fl, family, dir, if_id);
3551
3552         if (IS_ERR(pol)) {
3553                 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3554                 return 0;
3555         }
3556
3557         if (!pol) {
3558                 if (sp && secpath_has_nontransport(sp, 0, &xerr_idx)) {
3559                         xfrm_secpath_reject(xerr_idx, skb, &fl);
3560                         XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
3561                         return 0;
3562                 }
3563                 return 1;
3564         }
3565
3566         pol->curlft.use_time = ktime_get_real_seconds();
3567
3568         pols[0] = pol;
3569         npols++;
3570 #ifdef CONFIG_XFRM_SUB_POLICY
3571         if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
3572                 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
3573                                                     &fl, family,
3574                                                     XFRM_POLICY_IN, if_id);
3575                 if (pols[1]) {
3576                         if (IS_ERR(pols[1])) {
3577                                 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3578                                 return 0;
3579                         }
3580                         pols[1]->curlft.use_time = ktime_get_real_seconds();
3581                         npols++;
3582                 }
3583         }
3584 #endif
3585
3586         if (pol->action == XFRM_POLICY_ALLOW) {
3587                 static struct sec_path dummy;
3588                 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
3589                 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
3590                 struct xfrm_tmpl **tpp = tp;
3591                 int ti = 0;
3592                 int i, k;
3593
3594                 sp = skb_sec_path(skb);
3595                 if (!sp)
3596                         sp = &dummy;
3597
3598                 for (pi = 0; pi < npols; pi++) {
3599                         if (pols[pi] != pol &&
3600                             pols[pi]->action != XFRM_POLICY_ALLOW) {
3601                                 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3602                                 goto reject;
3603                         }
3604                         if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
3605                                 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
3606                                 goto reject_error;
3607                         }
3608                         for (i = 0; i < pols[pi]->xfrm_nr; i++)
3609                                 tpp[ti++] = &pols[pi]->xfrm_vec[i];
3610                 }
3611                 xfrm_nr = ti;
3612                 if (npols > 1) {
3613                         xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
3614                         tpp = stp;
3615                 }
3616
3617                 /* For each tunnel xfrm, find the first matching tmpl.
3618                  * For each tmpl before that, find corresponding xfrm.
3619                  * Order is _important_. Later we will implement
3620                  * some barriers, but at the moment barriers
3621                  * are implied between each two transformations.
3622                  */
3623                 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
3624                         k = xfrm_policy_ok(tpp[i], sp, k, family);
3625                         if (k < 0) {
3626                                 if (k < -1)
3627                                         /* "-2 - errored_index" returned */
3628                                         xerr_idx = -(2+k);
3629                                 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3630                                 goto reject;
3631                         }
3632                 }
3633
3634                 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
3635                         XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
3636                         goto reject;
3637                 }
3638
3639                 xfrm_pols_put(pols, npols);
3640                 return 1;
3641         }
3642         XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
3643
3644 reject:
3645         xfrm_secpath_reject(xerr_idx, skb, &fl);
3646 reject_error:
3647         xfrm_pols_put(pols, npols);
3648         return 0;
3649 }
3650 EXPORT_SYMBOL(__xfrm_policy_check);
3651
3652 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
3653 {
3654         struct net *net = dev_net(skb->dev);
3655         struct flowi fl;
3656         struct dst_entry *dst;
3657         int res = 1;
3658
3659         if (xfrm_decode_session(skb, &fl, family) < 0) {
3660                 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3661                 return 0;
3662         }
3663
3664         skb_dst_force(skb);
3665         if (!skb_dst(skb)) {
3666                 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3667                 return 0;
3668         }
3669
3670         dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, XFRM_LOOKUP_QUEUE);
3671         if (IS_ERR(dst)) {
3672                 res = 0;
3673                 dst = NULL;
3674         }
3675         skb_dst_set(skb, dst);
3676         return res;
3677 }
3678 EXPORT_SYMBOL(__xfrm_route_forward);
3679
3680 /* Optimize later using cookies and generation ids. */
3681
3682 static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
3683 {
3684         /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
3685          * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
3686          * get validated by dst_ops->check on every use.  We do this
3687          * because when a normal route referenced by an XFRM dst is
3688          * obsoleted we do not go looking around for all parent
3689          * referencing XFRM dsts so that we can invalidate them.  It
3690          * is just too much work.  Instead we make the checks here on
3691          * every use.  For example:
3692          *
3693          *      XFRM dst A --> IPv4 dst X
3694          *
3695          * X is the "xdst->route" of A (X is also the "dst->path" of A
3696          * in this example).  If X is marked obsolete, "A" will not
3697          * notice.  That's what we are validating here via the
3698          * stale_bundle() check.
3699          *
3700          * When a dst is removed from the fib tree, DST_OBSOLETE_DEAD will
3701          * be marked on it.
3702          * This will force stale_bundle() to fail on any xdst bundle with
3703          * this dst linked in it.
3704          */
3705         if (dst->obsolete < 0 && !stale_bundle(dst))
3706                 return dst;
3707
3708         return NULL;
3709 }
3710
3711 static int stale_bundle(struct dst_entry *dst)
3712 {
3713         return !xfrm_bundle_ok((struct xfrm_dst *)dst);
3714 }
3715
3716 void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
3717 {
3718         while ((dst = xfrm_dst_child(dst)) && dst->xfrm && dst->dev == dev) {
3719                 dst->dev = dev_net(dev)->loopback_dev;
3720                 dev_hold(dst->dev);
3721                 dev_put(dev);
3722         }
3723 }
3724 EXPORT_SYMBOL(xfrm_dst_ifdown);
3725
3726 static void xfrm_link_failure(struct sk_buff *skb)
3727 {
3728         /* Impossible. Such dst must be popped before reaches point of failure. */
3729 }
3730
3731 static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
3732 {
3733         if (dst) {
3734                 if (dst->obsolete) {
3735                         dst_release(dst);
3736                         dst = NULL;
3737                 }
3738         }
3739         return dst;
3740 }
3741
3742 static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr)
3743 {
3744         while (nr--) {
3745                 struct xfrm_dst *xdst = bundle[nr];
3746                 u32 pmtu, route_mtu_cached;
3747                 struct dst_entry *dst;
3748
3749                 dst = &xdst->u.dst;
3750                 pmtu = dst_mtu(xfrm_dst_child(dst));
3751                 xdst->child_mtu_cached = pmtu;
3752
3753                 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
3754
3755                 route_mtu_cached = dst_mtu(xdst->route);
3756                 xdst->route_mtu_cached = route_mtu_cached;
3757
3758                 if (pmtu > route_mtu_cached)
3759                         pmtu = route_mtu_cached;
3760
3761                 dst_metric_set(dst, RTAX_MTU, pmtu);
3762         }
3763 }
3764
3765 /* Check that the bundle accepts the flow and its components are
3766  * still valid.
3767  */
3768
3769 static int xfrm_bundle_ok(struct xfrm_dst *first)
3770 {
3771         struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
3772         struct dst_entry *dst = &first->u.dst;
3773         struct xfrm_dst *xdst;
3774         int start_from, nr;
3775         u32 mtu;
3776
3777         if (!dst_check(xfrm_dst_path(dst), ((struct xfrm_dst *)dst)->path_cookie) ||
3778             (dst->dev && !netif_running(dst->dev)))
3779                 return 0;
3780
3781         if (dst->flags & DST_XFRM_QUEUE)
3782                 return 1;
3783
3784         start_from = nr = 0;
3785         do {
3786                 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
3787
3788                 if (dst->xfrm->km.state != XFRM_STATE_VALID)
3789                         return 0;
3790                 if (xdst->xfrm_genid != dst->xfrm->genid)
3791                         return 0;
3792                 if (xdst->num_pols > 0 &&
3793                     xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
3794                         return 0;
3795
3796                 bundle[nr++] = xdst;
3797
3798                 mtu = dst_mtu(xfrm_dst_child(dst));
3799                 if (xdst->child_mtu_cached != mtu) {
3800                         start_from = nr;
3801                         xdst->child_mtu_cached = mtu;
3802                 }
3803
3804                 if (!dst_check(xdst->route, xdst->route_cookie))
3805                         return 0;
3806                 mtu = dst_mtu(xdst->route);
3807                 if (xdst->route_mtu_cached != mtu) {
3808                         start_from = nr;
3809                         xdst->route_mtu_cached = mtu;
3810                 }
3811
3812                 dst = xfrm_dst_child(dst);
3813         } while (dst->xfrm);
3814
3815         if (likely(!start_from))
3816                 return 1;
3817
3818         xdst = bundle[start_from - 1];
3819         mtu = xdst->child_mtu_cached;
3820         while (start_from--) {
3821                 dst = &xdst->u.dst;
3822
3823                 mtu = xfrm_state_mtu(dst->xfrm, mtu);
3824                 if (mtu > xdst->route_mtu_cached)
3825                         mtu = xdst->route_mtu_cached;
3826                 dst_metric_set(dst, RTAX_MTU, mtu);
3827                 if (!start_from)
3828                         break;
3829
3830                 xdst = bundle[start_from - 1];
3831                 xdst->child_mtu_cached = mtu;
3832         }
3833
3834         return 1;
3835 }
3836
3837 static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
3838 {
3839         return dst_metric_advmss(xfrm_dst_path(dst));
3840 }
3841
3842 static unsigned int xfrm_mtu(const struct dst_entry *dst)
3843 {
3844         unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
3845
3846         return mtu ? : dst_mtu(xfrm_dst_path(dst));
3847 }
3848
3849 static const void *xfrm_get_dst_nexthop(const struct dst_entry *dst,
3850                                         const void *daddr)
3851 {
3852         while (dst->xfrm) {
3853                 const struct xfrm_state *xfrm = dst->xfrm;
3854
3855                 dst = xfrm_dst_child(dst);
3856
3857                 if (xfrm->props.mode == XFRM_MODE_TRANSPORT)
3858                         continue;
3859                 if (xfrm->type->flags & XFRM_TYPE_REMOTE_COADDR)
3860                         daddr = xfrm->coaddr;
3861                 else if (!(xfrm->type->flags & XFRM_TYPE_LOCAL_COADDR))
3862                         daddr = &xfrm->id.daddr;
3863         }
3864         return daddr;
3865 }
3866
3867 static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
3868                                            struct sk_buff *skb,
3869                                            const void *daddr)
3870 {
3871         const struct dst_entry *path = xfrm_dst_path(dst);
3872
3873         if (!skb)
3874                 daddr = xfrm_get_dst_nexthop(dst, daddr);
3875         return path->ops->neigh_lookup(path, skb, daddr);
3876 }
3877
3878 static void xfrm_confirm_neigh(const struct dst_entry *dst, const void *daddr)
3879 {
3880         const struct dst_entry *path = xfrm_dst_path(dst);
3881
3882         daddr = xfrm_get_dst_nexthop(dst, daddr);
3883         path->ops->confirm_neigh(path, daddr);
3884 }
3885
3886 int xfrm_policy_register_afinfo(const struct xfrm_policy_afinfo *afinfo, int family)
3887 {
3888         int err = 0;
3889
3890         if (WARN_ON(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
3891                 return -EAFNOSUPPORT;
3892
3893         spin_lock(&xfrm_policy_afinfo_lock);
3894         if (unlikely(xfrm_policy_afinfo[family] != NULL))
3895                 err = -EEXIST;
3896         else {
3897                 struct dst_ops *dst_ops = afinfo->dst_ops;
3898                 if (likely(dst_ops->kmem_cachep == NULL))
3899                         dst_ops->kmem_cachep = xfrm_dst_cache;
3900                 if (likely(dst_ops->check == NULL))
3901                         dst_ops->check = xfrm_dst_check;
3902                 if (likely(dst_ops->default_advmss == NULL))
3903                         dst_ops->default_advmss = xfrm_default_advmss;
3904                 if (likely(dst_ops->mtu == NULL))
3905                         dst_ops->mtu = xfrm_mtu;
3906                 if (likely(dst_ops->negative_advice == NULL))
3907                         dst_ops->negative_advice = xfrm_negative_advice;
3908                 if (likely(dst_ops->link_failure == NULL))
3909                         dst_ops->link_failure = xfrm_link_failure;
3910                 if (likely(dst_ops->neigh_lookup == NULL))
3911                         dst_ops->neigh_lookup = xfrm_neigh_lookup;
3912                 if (likely(!dst_ops->confirm_neigh))
3913                         dst_ops->confirm_neigh = xfrm_confirm_neigh;
3914                 rcu_assign_pointer(xfrm_policy_afinfo[family], afinfo);
3915         }
3916         spin_unlock(&xfrm_policy_afinfo_lock);
3917
3918         return err;
3919 }
3920 EXPORT_SYMBOL(xfrm_policy_register_afinfo);
3921
3922 void xfrm_policy_unregister_afinfo(const struct xfrm_policy_afinfo *afinfo)
3923 {
3924         struct dst_ops *dst_ops = afinfo->dst_ops;
3925         int i;
3926
3927         for (i = 0; i < ARRAY_SIZE(xfrm_policy_afinfo); i++) {
3928                 if (xfrm_policy_afinfo[i] != afinfo)
3929                         continue;
3930                 RCU_INIT_POINTER(xfrm_policy_afinfo[i], NULL);
3931                 break;
3932         }
3933
3934         synchronize_rcu();
3935
3936         dst_ops->kmem_cachep = NULL;
3937         dst_ops->check = NULL;
3938         dst_ops->negative_advice = NULL;
3939         dst_ops->link_failure = NULL;
3940 }
3941 EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
3942
3943 void xfrm_if_register_cb(const struct xfrm_if_cb *ifcb)
3944 {
3945         spin_lock(&xfrm_if_cb_lock);
3946         rcu_assign_pointer(xfrm_if_cb, ifcb);
3947         spin_unlock(&xfrm_if_cb_lock);
3948 }
3949 EXPORT_SYMBOL(xfrm_if_register_cb);
3950
3951 void xfrm_if_unregister_cb(void)
3952 {
3953         RCU_INIT_POINTER(xfrm_if_cb, NULL);
3954         synchronize_rcu();
3955 }
3956 EXPORT_SYMBOL(xfrm_if_unregister_cb);
3957
3958 #ifdef CONFIG_XFRM_STATISTICS
3959 static int __net_init xfrm_statistics_init(struct net *net)
3960 {
3961         int rv;
3962         net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
3963         if (!net->mib.xfrm_statistics)
3964                 return -ENOMEM;
3965         rv = xfrm_proc_init(net);
3966         if (rv < 0)
3967                 free_percpu(net->mib.xfrm_statistics);
3968         return rv;
3969 }
3970
3971 static void xfrm_statistics_fini(struct net *net)
3972 {
3973         xfrm_proc_fini(net);
3974         free_percpu(net->mib.xfrm_statistics);
3975 }
3976 #else
3977 static int __net_init xfrm_statistics_init(struct net *net)
3978 {
3979         return 0;
3980 }
3981
3982 static void xfrm_statistics_fini(struct net *net)
3983 {
3984 }
3985 #endif
3986
3987 static int __net_init xfrm_policy_init(struct net *net)
3988 {
3989         unsigned int hmask, sz;
3990         int dir, err;
3991
3992         if (net_eq(net, &init_net)) {
3993                 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
3994                                            sizeof(struct xfrm_dst),
3995                                            0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
3996                                            NULL);
3997                 err = rhashtable_init(&xfrm_policy_inexact_table,
3998                                       &xfrm_pol_inexact_params);
3999                 BUG_ON(err);
4000         }
4001
4002         hmask = 8 - 1;
4003         sz = (hmask+1) * sizeof(struct hlist_head);
4004
4005         net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
4006         if (!net->xfrm.policy_byidx)
4007                 goto out_byidx;
4008         net->xfrm.policy_idx_hmask = hmask;
4009
4010         for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4011                 struct xfrm_policy_hash *htab;
4012
4013                 net->xfrm.policy_count[dir] = 0;
4014                 net->xfrm.policy_count[XFRM_POLICY_MAX + dir] = 0;
4015                 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
4016
4017                 htab = &net->xfrm.policy_bydst[dir];
4018                 htab->table = xfrm_hash_alloc(sz);
4019                 if (!htab->table)
4020                         goto out_bydst;
4021                 htab->hmask = hmask;
4022                 htab->dbits4 = 32;
4023                 htab->sbits4 = 32;
4024                 htab->dbits6 = 128;
4025                 htab->sbits6 = 128;
4026         }
4027         net->xfrm.policy_hthresh.lbits4 = 32;
4028         net->xfrm.policy_hthresh.rbits4 = 32;
4029         net->xfrm.policy_hthresh.lbits6 = 128;
4030         net->xfrm.policy_hthresh.rbits6 = 128;
4031
4032         seqlock_init(&net->xfrm.policy_hthresh.lock);
4033
4034         INIT_LIST_HEAD(&net->xfrm.policy_all);
4035         INIT_LIST_HEAD(&net->xfrm.inexact_bins);
4036         INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
4037         INIT_WORK(&net->xfrm.policy_hthresh.work, xfrm_hash_rebuild);
4038         return 0;
4039
4040 out_bydst:
4041         for (dir--; dir >= 0; dir--) {
4042                 struct xfrm_policy_hash *htab;
4043
4044                 htab = &net->xfrm.policy_bydst[dir];
4045                 xfrm_hash_free(htab->table, sz);
4046         }
4047         xfrm_hash_free(net->xfrm.policy_byidx, sz);
4048 out_byidx:
4049         return -ENOMEM;
4050 }
4051
4052 static void xfrm_policy_fini(struct net *net)
4053 {
4054         struct xfrm_pol_inexact_bin *b, *t;
4055         unsigned int sz;
4056         int dir;
4057
4058         flush_work(&net->xfrm.policy_hash_work);
4059 #ifdef CONFIG_XFRM_SUB_POLICY
4060         xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, false);
4061 #endif
4062         xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, false);
4063
4064         WARN_ON(!list_empty(&net->xfrm.policy_all));
4065
4066         for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
4067                 struct xfrm_policy_hash *htab;
4068
4069                 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
4070
4071                 htab = &net->xfrm.policy_bydst[dir];
4072                 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
4073                 WARN_ON(!hlist_empty(htab->table));
4074                 xfrm_hash_free(htab->table, sz);
4075         }
4076
4077         sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
4078         WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
4079         xfrm_hash_free(net->xfrm.policy_byidx, sz);
4080
4081         spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4082         list_for_each_entry_safe(b, t, &net->xfrm.inexact_bins, inexact_bins)
4083                 __xfrm_policy_inexact_prune_bin(b, true);
4084         spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4085 }
4086
4087 static int __net_init xfrm_net_init(struct net *net)
4088 {
4089         int rv;
4090
4091         /* Initialize the per-net locks here */
4092         spin_lock_init(&net->xfrm.xfrm_state_lock);
4093         spin_lock_init(&net->xfrm.xfrm_policy_lock);
4094         mutex_init(&net->xfrm.xfrm_cfg_mutex);
4095
4096         rv = xfrm_statistics_init(net);
4097         if (rv < 0)
4098                 goto out_statistics;
4099         rv = xfrm_state_init(net);
4100         if (rv < 0)
4101                 goto out_state;
4102         rv = xfrm_policy_init(net);
4103         if (rv < 0)
4104                 goto out_policy;
4105         rv = xfrm_sysctl_init(net);
4106         if (rv < 0)
4107                 goto out_sysctl;
4108
4109         return 0;
4110
4111 out_sysctl:
4112         xfrm_policy_fini(net);
4113 out_policy:
4114         xfrm_state_fini(net);
4115 out_state:
4116         xfrm_statistics_fini(net);
4117 out_statistics:
4118         return rv;
4119 }
4120
4121 static void __net_exit xfrm_net_exit(struct net *net)
4122 {
4123         xfrm_sysctl_fini(net);
4124         xfrm_policy_fini(net);
4125         xfrm_state_fini(net);
4126         xfrm_statistics_fini(net);
4127 }
4128
4129 static struct pernet_operations __net_initdata xfrm_net_ops = {
4130         .init = xfrm_net_init,
4131         .exit = xfrm_net_exit,
4132 };
4133
4134 void __init xfrm_init(void)
4135 {
4136         register_pernet_subsys(&xfrm_net_ops);
4137         xfrm_dev_init();
4138         seqcount_mutex_init(&xfrm_policy_hash_generation, &hash_resize_mutex);
4139         xfrm_input_init();
4140
4141 #ifdef CONFIG_XFRM_ESPINTCP
4142         espintcp_init();
4143 #endif
4144 }
4145
4146 #ifdef CONFIG_AUDITSYSCALL
4147 static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
4148                                          struct audit_buffer *audit_buf)
4149 {
4150         struct xfrm_sec_ctx *ctx = xp->security;
4151         struct xfrm_selector *sel = &xp->selector;
4152
4153         if (ctx)
4154                 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
4155                                  ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
4156
4157         switch (sel->family) {
4158         case AF_INET:
4159                 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
4160                 if (sel->prefixlen_s != 32)
4161                         audit_log_format(audit_buf, " src_prefixlen=%d",
4162                                          sel->prefixlen_s);
4163                 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
4164                 if (sel->prefixlen_d != 32)
4165                         audit_log_format(audit_buf, " dst_prefixlen=%d",
4166                                          sel->prefixlen_d);
4167                 break;
4168         case AF_INET6:
4169                 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
4170                 if (sel->prefixlen_s != 128)
4171                         audit_log_format(audit_buf, " src_prefixlen=%d",
4172                                          sel->prefixlen_s);
4173                 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
4174                 if (sel->prefixlen_d != 128)
4175                         audit_log_format(audit_buf, " dst_prefixlen=%d",
4176                                          sel->prefixlen_d);
4177                 break;
4178         }
4179 }
4180
4181 void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid)
4182 {
4183         struct audit_buffer *audit_buf;
4184
4185         audit_buf = xfrm_audit_start("SPD-add");
4186         if (audit_buf == NULL)
4187                 return;
4188         xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4189         audit_log_format(audit_buf, " res=%u", result);
4190         xfrm_audit_common_policyinfo(xp, audit_buf);
4191         audit_log_end(audit_buf);
4192 }
4193 EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
4194
4195 void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
4196                               bool task_valid)
4197 {
4198         struct audit_buffer *audit_buf;
4199
4200         audit_buf = xfrm_audit_start("SPD-delete");
4201         if (audit_buf == NULL)
4202                 return;
4203         xfrm_audit_helper_usrinfo(task_valid, audit_buf);
4204         audit_log_format(audit_buf, " res=%u", result);
4205         xfrm_audit_common_policyinfo(xp, audit_buf);
4206         audit_log_end(audit_buf);
4207 }
4208 EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
4209 #endif
4210
4211 #ifdef CONFIG_XFRM_MIGRATE
4212 static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
4213                                         const struct xfrm_selector *sel_tgt)
4214 {
4215         if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
4216                 if (sel_tgt->family == sel_cmp->family &&
4217                     xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
4218                                     sel_cmp->family) &&
4219                     xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
4220                                     sel_cmp->family) &&
4221                     sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
4222                     sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
4223                         return true;
4224                 }
4225         } else {
4226                 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
4227                         return true;
4228                 }
4229         }
4230         return false;
4231 }
4232
4233 static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
4234                                                     u8 dir, u8 type, struct net *net)
4235 {
4236         struct xfrm_policy *pol, *ret = NULL;
4237         struct hlist_head *chain;
4238         u32 priority = ~0U;
4239
4240         spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4241         chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
4242         hlist_for_each_entry(pol, chain, bydst) {
4243                 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
4244                     pol->type == type) {
4245                         ret = pol;
4246                         priority = ret->priority;
4247                         break;
4248                 }
4249         }
4250         chain = &net->xfrm.policy_inexact[dir];
4251         hlist_for_each_entry(pol, chain, bydst_inexact_list) {
4252                 if ((pol->priority >= priority) && ret)
4253                         break;
4254
4255                 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
4256                     pol->type == type) {
4257                         ret = pol;
4258                         break;
4259                 }
4260         }
4261
4262         xfrm_pol_hold(ret);
4263
4264         spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
4265
4266         return ret;
4267 }
4268
4269 static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
4270 {
4271         int match = 0;
4272
4273         if (t->mode == m->mode && t->id.proto == m->proto &&
4274             (m->reqid == 0 || t->reqid == m->reqid)) {
4275                 switch (t->mode) {
4276                 case XFRM_MODE_TUNNEL:
4277                 case XFRM_MODE_BEET:
4278                         if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
4279                                             m->old_family) &&
4280                             xfrm_addr_equal(&t->saddr, &m->old_saddr,
4281                                             m->old_family)) {
4282                                 match = 1;
4283                         }
4284                         break;
4285                 case XFRM_MODE_TRANSPORT:
4286                         /* in case of transport mode, template does not store
4287                            any IP addresses, hence we just compare mode and
4288                            protocol */
4289                         match = 1;
4290                         break;
4291                 default:
4292                         break;
4293                 }
4294         }
4295         return match;
4296 }
4297
4298 /* update endpoint address(es) of template(s) */
4299 static int xfrm_policy_migrate(struct xfrm_policy *pol,
4300                                struct xfrm_migrate *m, int num_migrate)
4301 {
4302         struct xfrm_migrate *mp;
4303         int i, j, n = 0;
4304
4305         write_lock_bh(&pol->lock);
4306         if (unlikely(pol->walk.dead)) {
4307                 /* target policy has been deleted */
4308                 write_unlock_bh(&pol->lock);
4309                 return -ENOENT;
4310         }
4311
4312         for (i = 0; i < pol->xfrm_nr; i++) {
4313                 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
4314                         if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
4315                                 continue;
4316                         n++;
4317                         if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
4318                             pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
4319                                 continue;
4320                         /* update endpoints */
4321                         memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
4322                                sizeof(pol->xfrm_vec[i].id.daddr));
4323                         memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
4324                                sizeof(pol->xfrm_vec[i].saddr));
4325                         pol->xfrm_vec[i].encap_family = mp->new_family;
4326                         /* flush bundles */
4327                         atomic_inc(&pol->genid);
4328                 }
4329         }
4330
4331         write_unlock_bh(&pol->lock);
4332
4333         if (!n)
4334                 return -ENODATA;
4335
4336         return 0;
4337 }
4338
4339 static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
4340 {
4341         int i, j;
4342
4343         if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
4344                 return -EINVAL;
4345
4346         for (i = 0; i < num_migrate; i++) {
4347                 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
4348                     xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
4349                         return -EINVAL;
4350
4351                 /* check if there is any duplicated entry */
4352                 for (j = i + 1; j < num_migrate; j++) {
4353                         if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
4354                                     sizeof(m[i].old_daddr)) &&
4355                             !memcmp(&m[i].old_saddr, &m[j].old_saddr,
4356                                     sizeof(m[i].old_saddr)) &&
4357                             m[i].proto == m[j].proto &&
4358                             m[i].mode == m[j].mode &&
4359                             m[i].reqid == m[j].reqid &&
4360                             m[i].old_family == m[j].old_family)
4361                                 return -EINVAL;
4362                 }
4363         }
4364
4365         return 0;
4366 }
4367
4368 int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
4369                  struct xfrm_migrate *m, int num_migrate,
4370                  struct xfrm_kmaddress *k, struct net *net,
4371                  struct xfrm_encap_tmpl *encap)
4372 {
4373         int i, err, nx_cur = 0, nx_new = 0;
4374         struct xfrm_policy *pol = NULL;
4375         struct xfrm_state *x, *xc;
4376         struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
4377         struct xfrm_state *x_new[XFRM_MAX_DEPTH];
4378         struct xfrm_migrate *mp;
4379
4380         /* Stage 0 - sanity checks */
4381         if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
4382                 goto out;
4383
4384         if (dir >= XFRM_POLICY_MAX) {
4385                 err = -EINVAL;
4386                 goto out;
4387         }
4388
4389         /* Stage 1 - find policy */
4390         if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) {
4391                 err = -ENOENT;
4392                 goto out;
4393         }
4394
4395         /* Stage 2 - find and update state(s) */
4396         for (i = 0, mp = m; i < num_migrate; i++, mp++) {
4397                 if ((x = xfrm_migrate_state_find(mp, net))) {
4398                         x_cur[nx_cur] = x;
4399                         nx_cur++;
4400                         xc = xfrm_state_migrate(x, mp, encap);
4401                         if (xc) {
4402                                 x_new[nx_new] = xc;
4403                                 nx_new++;
4404                         } else {
4405                                 err = -ENODATA;
4406                                 goto restore_state;
4407                         }
4408                 }
4409         }
4410
4411         /* Stage 3 - update policy */
4412         if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
4413                 goto restore_state;
4414
4415         /* Stage 4 - delete old state(s) */
4416         if (nx_cur) {
4417                 xfrm_states_put(x_cur, nx_cur);
4418                 xfrm_states_delete(x_cur, nx_cur);
4419         }
4420
4421         /* Stage 5 - announce */
4422         km_migrate(sel, dir, type, m, num_migrate, k, encap);
4423
4424         xfrm_pol_put(pol);
4425
4426         return 0;
4427 out:
4428         return err;
4429
4430 restore_state:
4431         if (pol)
4432                 xfrm_pol_put(pol);
4433         if (nx_cur)
4434                 xfrm_states_put(x_cur, nx_cur);
4435         if (nx_new)
4436                 xfrm_states_delete(x_new, nx_new);
4437
4438         return err;
4439 }
4440 EXPORT_SYMBOL(xfrm_migrate);
4441 #endif