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