blob: 8ca637a72697491863bf2f6f606c7a669932847f [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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
Trent Jaegerdf718372005-12-13 23:12:27 -080014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
Herbert Xu66cdb3c2007-11-13 21:37:28 -080017#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#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>
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -080025#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
David S. Miller2518c7c2006-08-24 04:45:07 -070027#include <linux/cache.h>
Florian Westphalec30d782017-07-17 13:57:27 +020028#include <linux/cpu.h>
Paul Moore68277ac2007-12-20 20:49:33 -080029#include <linux/audit.h>
Florian Westphal24969fa2018-11-07 23:00:35 +010030#include <linux/rhashtable.h>
Florian Westphalc53ac412019-04-16 16:44:39 +020031#include <linux/if_tunnel.h>
Herbert Xu25ee3282007-12-11 09:32:34 -080032#include <net/dst.h>
Eric Paris6ce74ec2012-02-16 15:08:39 -050033#include <net/flow.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <net/xfrm.h>
35#include <net/ip.h>
Florian Westphalc53ac412019-04-16 16:44:39 +020036#if IS_ENABLED(CONFIG_IPV6_MIP6)
37#include <net/mip6.h>
38#endif
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080039#ifdef CONFIG_XFRM_STATISTICS
40#include <net/snmp.h>
41#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
David S. Miller44e36b42006-08-24 04:50:50 -070043#include "xfrm_hash.h"
44
Steffen Klasserta0073fe2013-02-05 12:52:55 +010045#define XFRM_QUEUE_TMO_MIN ((unsigned)(HZ/10))
46#define XFRM_QUEUE_TMO_MAX ((unsigned)(60*HZ))
47#define XFRM_MAX_QUEUE_LEN 100
48
Steffen Klassertb8c203b2014-09-16 10:08:49 +020049struct xfrm_flo {
50 struct dst_entry *dst_orig;
51 u8 flags;
52};
53
Florian Westphal6be3b0d2018-11-07 23:00:37 +010054/* prefixes smaller than this are stored in lists, not trees. */
55#define INEXACT_PREFIXLEN_IPV4 16
56#define INEXACT_PREFIXLEN_IPV6 48
Florian Westphal9cf545e2018-11-07 23:00:38 +010057
58struct xfrm_pol_inexact_node {
59 struct rb_node node;
60 union {
61 xfrm_address_t addr;
62 struct rcu_head rcu;
63 };
64 u8 prefixlen;
65
Florian Westphal6ac098b2018-11-07 23:00:41 +010066 struct rb_root root;
67
Florian Westphal9cf545e2018-11-07 23:00:38 +010068 /* the policies matching this node, can be empty list */
69 struct hlist_head hhead;
70};
71
72/* xfrm inexact policy search tree:
73 * xfrm_pol_inexact_bin = hash(dir,type,family,if_id);
74 * |
75 * +---- root_d: sorted by daddr:prefix
76 * | |
77 * | xfrm_pol_inexact_node
78 * | |
Florian Westphal6ac098b2018-11-07 23:00:41 +010079 * | +- root: sorted by saddr/prefix
80 * | | |
81 * | | xfrm_pol_inexact_node
82 * | | |
83 * | | + root: unused
84 * | | |
85 * | | + hhead: saddr:daddr policies
86 * | |
Florian Westphal9cf545e2018-11-07 23:00:38 +010087 * | +- coarse policies and all any:daddr policies
88 * |
Florian Westphal64a09a72018-11-07 23:00:40 +010089 * +---- root_s: sorted by saddr:prefix
90 * | |
91 * | xfrm_pol_inexact_node
92 * | |
93 * | + root: unused
94 * | |
95 * | + hhead: saddr:any policies
96 * |
Florian Westphal9cf545e2018-11-07 23:00:38 +010097 * +---- coarse policies and all any:any policies
98 *
Florian Westphal6ac098b2018-11-07 23:00:41 +010099 * Lookups return four candidate lists:
Florian Westphal9cf545e2018-11-07 23:00:38 +0100100 * 1. any:any list from top-level xfrm_pol_inexact_bin
101 * 2. any:daddr list from daddr tree
Florian Westphal6ac098b2018-11-07 23:00:41 +0100102 * 3. saddr:daddr list from 2nd level daddr tree
103 * 4. saddr:any list from saddr tree
Florian Westphal9cf545e2018-11-07 23:00:38 +0100104 *
105 * This result set then needs to be searched for the policy with
106 * the lowest priority. If two results have same prio, youngest one wins.
107 */
108
Florian Westphal24969fa2018-11-07 23:00:35 +0100109struct xfrm_pol_inexact_key {
110 possible_net_t net;
Florian Westphalb5fe22e2018-11-07 23:00:36 +0100111 u32 if_id;
Florian Westphal24969fa2018-11-07 23:00:35 +0100112 u16 family;
113 u8 dir, type;
114};
115
116struct xfrm_pol_inexact_bin {
117 struct xfrm_pol_inexact_key k;
118 struct rhash_head head;
Florian Westphal6be3b0d2018-11-07 23:00:37 +0100119 /* list containing '*:*' policies */
Florian Westphal24969fa2018-11-07 23:00:35 +0100120 struct hlist_head hhead;
121
Florian Westphal9cf545e2018-11-07 23:00:38 +0100122 seqcount_t count;
123 /* tree sorted by daddr/prefix */
124 struct rb_root root_d;
125
Florian Westphal64a09a72018-11-07 23:00:40 +0100126 /* tree sorted by saddr/prefix */
127 struct rb_root root_s;
128
Florian Westphal24969fa2018-11-07 23:00:35 +0100129 /* slow path below */
130 struct list_head inexact_bins;
131 struct rcu_head rcu;
132};
133
Florian Westphal6be3b0d2018-11-07 23:00:37 +0100134enum xfrm_pol_inexact_candidate_type {
Florian Westphal6ac098b2018-11-07 23:00:41 +0100135 XFRM_POL_CAND_BOTH,
Florian Westphal64a09a72018-11-07 23:00:40 +0100136 XFRM_POL_CAND_SADDR,
Florian Westphal9cf545e2018-11-07 23:00:38 +0100137 XFRM_POL_CAND_DADDR,
Florian Westphal6be3b0d2018-11-07 23:00:37 +0100138 XFRM_POL_CAND_ANY,
139
140 XFRM_POL_CAND_MAX,
141};
142
143struct xfrm_pol_inexact_candidates {
144 struct hlist_head *res[XFRM_POL_CAND_MAX];
145};
146
Steffen Klassertf203b762018-06-12 14:07:12 +0200147static DEFINE_SPINLOCK(xfrm_if_cb_lock);
148static struct xfrm_if_cb const __rcu *xfrm_if_cb __read_mostly;
149
Priyanka Jain418a99a2012-08-12 21:22:29 +0000150static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
Florian Westphal37b10382017-02-07 15:00:19 +0100151static struct xfrm_policy_afinfo const __rcu *xfrm_policy_afinfo[AF_INET6 + 1]
Priyanka Jain418a99a2012-08-12 21:22:29 +0000152 __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Alexey Dobriyanf8c3d0d2018-02-24 21:21:38 +0300154static struct kmem_cache *xfrm_dst_cache __ro_after_init;
Florian Westphal30846092016-08-11 15:17:54 +0200155static __read_mostly seqcount_t xfrm_policy_hash_generation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Florian Westphal24969fa2018-11-07 23:00:35 +0100157static struct rhashtable xfrm_policy_inexact_table;
158static const struct rhashtable_params xfrm_pol_inexact_params;
159
David Miller54920932017-11-28 15:41:01 -0500160static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr);
Timo Teräs80c802f2010-04-07 00:30:05 +0000161static int stale_bundle(struct dst_entry *dst);
Steffen Klassert12fdb4d2011-06-29 23:18:20 +0000162static int xfrm_bundle_ok(struct xfrm_dst *xdst);
Kees Cookc3aed702017-10-16 17:28:56 -0700163static void xfrm_policy_queue_process(struct timer_list *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Herbert Xu12bfa8b2014-11-13 17:09:50 +0800165static void __xfrm_policy_link(struct xfrm_policy *pol, int dir);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800166static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
167 int dir);
168
Florian Westphal24969fa2018-11-07 23:00:35 +0100169static struct xfrm_pol_inexact_bin *
Florian Westphalb5fe22e2018-11-07 23:00:36 +0100170xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family, u8 dir,
171 u32 if_id);
Florian Westphal24969fa2018-11-07 23:00:35 +0100172
173static struct xfrm_pol_inexact_bin *
174xfrm_policy_inexact_lookup_rcu(struct net *net,
Florian Westphalb5fe22e2018-11-07 23:00:36 +0100175 u8 type, u16 family, u8 dir, u32 if_id);
Florian Westphal24969fa2018-11-07 23:00:35 +0100176static struct xfrm_policy *
177xfrm_policy_insert_list(struct hlist_head *chain, struct xfrm_policy *policy,
178 bool excl);
179static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
180 struct xfrm_policy *policy);
181
Florian Westphal6be3b0d2018-11-07 23:00:37 +0100182static bool
183xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
184 struct xfrm_pol_inexact_bin *b,
185 const xfrm_address_t *saddr,
186 const xfrm_address_t *daddr);
187
Florian Westphale37cc8ad2016-08-11 15:17:55 +0200188static inline bool xfrm_pol_hold_rcu(struct xfrm_policy *policy)
189{
Reshetova, Elena850a6212017-07-04 15:53:22 +0300190 return refcount_inc_not_zero(&policy->refcnt);
Florian Westphale37cc8ad2016-08-11 15:17:55 +0200191}
192
David S. Millerbc9b35a2012-05-15 15:04:57 -0400193static inline bool
David S. Miller200ce962011-02-24 00:12:25 -0500194__xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -0800195{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500196 const struct flowi4 *fl4 = &fl->u.ip4;
197
Alexey Dobriyan26bff942011-11-22 06:46:02 +0000198 return addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
199 addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500200 !((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
201 !((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
202 (fl4->flowi4_proto == sel->proto || !sel->proto) &&
203 (fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -0800204}
205
David S. Millerbc9b35a2012-05-15 15:04:57 -0400206static inline bool
David S. Miller200ce962011-02-24 00:12:25 -0500207__xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -0800208{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500209 const struct flowi6 *fl6 = &fl->u.ip6;
210
211 return addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
212 addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
213 !((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
214 !((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
215 (fl6->flowi6_proto == sel->proto || !sel->proto) &&
216 (fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -0800217}
218
David S. Millerbc9b35a2012-05-15 15:04:57 -0400219bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
220 unsigned short family)
Andrew Morton77681022006-11-08 22:46:26 -0800221{
222 switch (family) {
223 case AF_INET:
224 return __xfrm4_selector_match(sel, fl);
225 case AF_INET6:
226 return __xfrm6_selector_match(sel, fl);
227 }
David S. Millerbc9b35a2012-05-15 15:04:57 -0400228 return false;
Andrew Morton77681022006-11-08 22:46:26 -0800229}
230
Florian Westphala2817d82017-02-07 15:00:17 +0100231static const struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
Eric Dumazetef8531b2012-08-19 12:31:48 +0200232{
Florian Westphala2817d82017-02-07 15:00:17 +0100233 const struct xfrm_policy_afinfo *afinfo;
Eric Dumazetef8531b2012-08-19 12:31:48 +0200234
Florian Westphala2817d82017-02-07 15:00:17 +0100235 if (unlikely(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
Eric Dumazetef8531b2012-08-19 12:31:48 +0200236 return NULL;
237 rcu_read_lock();
238 afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
239 if (unlikely(!afinfo))
240 rcu_read_unlock();
241 return afinfo;
242}
243
Steffen Klassertf203b762018-06-12 14:07:12 +0200244/* Called with rcu_read_lock(). */
245static const struct xfrm_if_cb *xfrm_if_get_cb(void)
246{
247 return rcu_dereference(xfrm_if_cb);
248}
249
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200250struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos, int oif,
251 const xfrm_address_t *saddr,
252 const xfrm_address_t *daddr,
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900253 int family, u32 mark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Florian Westphal37b10382017-02-07 15:00:19 +0100255 const struct xfrm_policy_afinfo *afinfo;
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800256 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Herbert Xu25ee3282007-12-11 09:32:34 -0800258 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800260 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900262 dst = afinfo->dst_lookup(net, tos, oif, saddr, daddr, mark);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900263
Florian Westphalbdba9fe2017-02-07 15:00:18 +0100264 rcu_read_unlock();
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900265
266 return dst;
267}
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200268EXPORT_SYMBOL(__xfrm_dst_lookup);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900269
David Ahern42a7b322015-08-10 16:58:11 -0600270static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x,
271 int tos, int oif,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900272 xfrm_address_t *prev_saddr,
273 xfrm_address_t *prev_daddr,
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900274 int family, u32 mark)
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900275{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800276 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900277 xfrm_address_t *saddr = &x->props.saddr;
278 xfrm_address_t *daddr = &x->id.daddr;
279 struct dst_entry *dst;
280
281 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
282 saddr = x->coaddr;
283 daddr = prev_daddr;
284 }
285 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
286 saddr = prev_saddr;
287 daddr = x->coaddr;
288 }
289
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900290 dst = __xfrm_dst_lookup(net, tos, oif, saddr, daddr, family, mark);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900291
292 if (!IS_ERR(dst)) {
293 if (prev_saddr != saddr)
294 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
295 if (prev_daddr != daddr)
296 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
297 }
298
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800299 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302static inline unsigned long make_jiffies(long secs)
303{
304 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
305 return MAX_SCHEDULE_TIMEOUT-1;
306 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900307 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Kees Cookc3aed702017-10-16 17:28:56 -0700310static void xfrm_policy_timer(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Kees Cookc3aed702017-10-16 17:28:56 -0700312 struct xfrm_policy *xp = from_timer(xp, t, timer);
Arnd Bergmann386c5682018-07-11 12:19:13 +0200313 time64_t now = ktime_get_real_seconds();
314 time64_t next = TIME64_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 int warn = 0;
316 int dir;
317
318 read_lock(&xp->lock);
319
Timo Teräsea2dea92010-03-31 00:17:05 +0000320 if (unlikely(xp->walk.dead))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto out;
322
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700323 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 if (xp->lft.hard_add_expires_seconds) {
Arnd Bergmann386c5682018-07-11 12:19:13 +0200326 time64_t tmo = xp->lft.hard_add_expires_seconds +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 xp->curlft.add_time - now;
328 if (tmo <= 0)
329 goto expired;
330 if (tmo < next)
331 next = tmo;
332 }
333 if (xp->lft.hard_use_expires_seconds) {
Arnd Bergmann386c5682018-07-11 12:19:13 +0200334 time64_t tmo = xp->lft.hard_use_expires_seconds +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
336 if (tmo <= 0)
337 goto expired;
338 if (tmo < next)
339 next = tmo;
340 }
341 if (xp->lft.soft_add_expires_seconds) {
Arnd Bergmann386c5682018-07-11 12:19:13 +0200342 time64_t tmo = xp->lft.soft_add_expires_seconds +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 xp->curlft.add_time - now;
344 if (tmo <= 0) {
345 warn = 1;
346 tmo = XFRM_KM_TIMEOUT;
347 }
348 if (tmo < next)
349 next = tmo;
350 }
351 if (xp->lft.soft_use_expires_seconds) {
Arnd Bergmann386c5682018-07-11 12:19:13 +0200352 time64_t tmo = xp->lft.soft_use_expires_seconds +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
354 if (tmo <= 0) {
355 warn = 1;
356 tmo = XFRM_KM_TIMEOUT;
357 }
358 if (tmo < next)
359 next = tmo;
360 }
361
362 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800363 km_policy_expired(xp, dir, 0, 0);
Arnd Bergmann386c5682018-07-11 12:19:13 +0200364 if (next != TIME64_MAX &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
366 xfrm_pol_hold(xp);
367
368out:
369 read_unlock(&xp->lock);
370 xfrm_pol_put(xp);
371 return;
372
373expired:
374 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700375 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800376 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 xfrm_pol_put(xp);
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
381 * SPD calls.
382 */
383
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800384struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct xfrm_policy *policy;
387
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700388 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800391 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700392 INIT_LIST_HEAD(&policy->walk.all);
Florian Westphal24969fa2018-11-07 23:00:35 +0100393 INIT_HLIST_NODE(&policy->bydst_inexact_list);
David S. Miller2518c7c2006-08-24 04:45:07 -0700394 INIT_HLIST_NODE(&policy->bydst);
395 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 rwlock_init(&policy->lock);
Reshetova, Elena850a6212017-07-04 15:53:22 +0300397 refcount_set(&policy->refcnt, 1);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100398 skb_queue_head_init(&policy->polq.hold_queue);
Kees Cookc3aed702017-10-16 17:28:56 -0700399 timer_setup(&policy->timer, xfrm_policy_timer, 0);
400 timer_setup(&policy->polq.hold_timer,
401 xfrm_policy_queue_process, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403 return policy;
404}
405EXPORT_SYMBOL(xfrm_policy_alloc);
406
Eric Dumazet56f04732015-12-08 07:22:01 -0800407static void xfrm_policy_destroy_rcu(struct rcu_head *head)
408{
409 struct xfrm_policy *policy = container_of(head, struct xfrm_policy, rcu);
410
411 security_xfrm_policy_free(policy->security);
412 kfree(policy);
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/* Destroy xfrm_policy: descendant resources must be released to this moment. */
416
WANG Cong64c31b32008-01-07 22:34:29 -0800417void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Herbert Xu12a169e2008-10-01 07:03:24 -0700419 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Fan Du0659eea2013-08-01 18:08:36 +0800421 if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 BUG();
423
Eric Dumazet56f04732015-12-08 07:22:01 -0800424 call_rcu(&policy->rcu, xfrm_policy_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
WANG Cong64c31b32008-01-07 22:34:29 -0800426EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Alexander Alemayhu1365e547c2017-01-03 17:13:20 +0100428/* Rule must be locked. Release descendant resources, announce
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * entry dead. The rule must be unlinked from lists to the moment.
430 */
431
432static void xfrm_policy_kill(struct xfrm_policy *policy)
433{
Herbert Xu12a169e2008-10-01 07:03:24 -0700434 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Timo Teräs285ead12010-04-07 00:30:06 +0000436 atomic_inc(&policy->genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +0200438 if (del_timer(&policy->polq.hold_timer))
439 xfrm_pol_put(policy);
Li RongQing1ee5e662015-04-22 15:51:16 +0800440 skb_queue_purge(&policy->polq.hold_queue);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100441
Timo Teräs285ead12010-04-07 00:30:06 +0000442 if (del_timer(&policy->timer))
443 xfrm_pol_put(policy);
444
445 xfrm_pol_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
David S. Miller2518c7c2006-08-24 04:45:07 -0700448static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
449
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800450static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700451{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800452 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700453}
454
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200455/* calculate policy hash thresholds */
456static void __get_hash_thresh(struct net *net,
457 unsigned short family, int dir,
458 u8 *dbits, u8 *sbits)
459{
460 switch (family) {
461 case AF_INET:
462 *dbits = net->xfrm.policy_bydst[dir].dbits4;
463 *sbits = net->xfrm.policy_bydst[dir].sbits4;
464 break;
465
466 case AF_INET6:
467 *dbits = net->xfrm.policy_bydst[dir].dbits6;
468 *sbits = net->xfrm.policy_bydst[dir].sbits6;
469 break;
470
471 default:
472 *dbits = 0;
473 *sbits = 0;
474 }
475}
476
David S. Miller5f803b52011-02-24 00:33:19 -0500477static struct hlist_head *policy_hash_bysel(struct net *net,
478 const struct xfrm_selector *sel,
479 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700480{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800481 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200482 unsigned int hash;
483 u8 dbits;
484 u8 sbits;
485
486 __get_hash_thresh(net, family, dir, &dbits, &sbits);
487 hash = __sel_hash(sel, family, hmask, dbits, sbits);
David S. Miller2518c7c2006-08-24 04:45:07 -0700488
Florian Westphale1e551b2016-08-11 15:17:53 +0200489 if (hash == hmask + 1)
Florian Westphalcc1bb842018-11-07 23:00:34 +0100490 return NULL;
Florian Westphale1e551b2016-08-11 15:17:53 +0200491
492 return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
493 lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700494}
495
David S. Miller5f803b52011-02-24 00:33:19 -0500496static struct hlist_head *policy_hash_direct(struct net *net,
497 const xfrm_address_t *daddr,
498 const xfrm_address_t *saddr,
499 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700500{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800501 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200502 unsigned int hash;
503 u8 dbits;
504 u8 sbits;
505
506 __get_hash_thresh(net, family, dir, &dbits, &sbits);
507 hash = __addr_hash(daddr, saddr, family, hmask, dbits, sbits);
David S. Miller2518c7c2006-08-24 04:45:07 -0700508
Florian Westphale1e551b2016-08-11 15:17:53 +0200509 return rcu_dereference_check(net->xfrm.policy_bydst[dir].table,
510 lockdep_is_held(&net->xfrm.xfrm_policy_lock)) + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700511}
512
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200513static void xfrm_dst_hash_transfer(struct net *net,
514 struct hlist_head *list,
David S. Miller2518c7c2006-08-24 04:45:07 -0700515 struct hlist_head *ndsttable,
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200516 unsigned int nhashmask,
517 int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700518{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800519 struct hlist_node *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700520 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800521 unsigned int h0 = 0;
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200522 u8 dbits;
523 u8 sbits;
David S. Miller2518c7c2006-08-24 04:45:07 -0700524
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800525redo:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800526 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700527 unsigned int h;
528
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200529 __get_hash_thresh(net, pol->family, dir, &dbits, &sbits);
David S. Miller2518c7c2006-08-24 04:45:07 -0700530 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200531 pol->family, nhashmask, dbits, sbits);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800532 if (!entry0) {
Florian Westphala5eefc12016-08-11 15:17:52 +0200533 hlist_del_rcu(&pol->bydst);
534 hlist_add_head_rcu(&pol->bydst, ndsttable + h);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800535 h0 = h;
536 } else {
537 if (h != h0)
538 continue;
Florian Westphala5eefc12016-08-11 15:17:52 +0200539 hlist_del_rcu(&pol->bydst);
540 hlist_add_behind_rcu(&pol->bydst, entry0);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800541 }
Sasha Levinb67bfe02013-02-27 17:06:00 -0800542 entry0 = &pol->bydst;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800543 }
544 if (!hlist_empty(list)) {
545 entry0 = NULL;
546 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700547 }
548}
549
550static void xfrm_idx_hash_transfer(struct hlist_head *list,
551 struct hlist_head *nidxtable,
552 unsigned int nhashmask)
553{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800554 struct hlist_node *tmp;
David S. Miller2518c7c2006-08-24 04:45:07 -0700555 struct xfrm_policy *pol;
556
Sasha Levinb67bfe02013-02-27 17:06:00 -0800557 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700558 unsigned int h;
559
560 h = __idx_hash(pol->index, nhashmask);
561 hlist_add_head(&pol->byidx, nidxtable+h);
562 }
563}
564
565static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
566{
567 return ((old_hmask + 1) << 1) - 1;
568}
569
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800570static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700571{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800572 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700573 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
574 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
David S. Miller44e36b42006-08-24 04:50:50 -0700575 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
Florian Westphale1e551b2016-08-11 15:17:53 +0200576 struct hlist_head *odst;
David S. Miller2518c7c2006-08-24 04:45:07 -0700577 int i;
578
579 if (!ndst)
580 return;
581
Florian Westphal9d0380d2016-08-11 15:17:59 +0200582 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Florian Westphal30846092016-08-11 15:17:54 +0200583 write_seqcount_begin(&xfrm_policy_hash_generation);
584
585 odst = rcu_dereference_protected(net->xfrm.policy_bydst[dir].table,
586 lockdep_is_held(&net->xfrm.xfrm_policy_lock));
David S. Miller2518c7c2006-08-24 04:45:07 -0700587
588 for (i = hmask; i >= 0; i--)
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200589 xfrm_dst_hash_transfer(net, odst + i, ndst, nhashmask, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700590
Florian Westphale1e551b2016-08-11 15:17:53 +0200591 rcu_assign_pointer(net->xfrm.policy_bydst[dir].table, ndst);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800592 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700593
Florian Westphal30846092016-08-11 15:17:54 +0200594 write_seqcount_end(&xfrm_policy_hash_generation);
Florian Westphal9d0380d2016-08-11 15:17:59 +0200595 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700596
Florian Westphale1e551b2016-08-11 15:17:53 +0200597 synchronize_rcu();
598
David S. Miller44e36b42006-08-24 04:50:50 -0700599 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700600}
601
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800602static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700603{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800604 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700605 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
606 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800607 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700608 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700609 int i;
610
611 if (!nidx)
612 return;
613
Florian Westphal9d0380d2016-08-11 15:17:59 +0200614 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700615
616 for (i = hmask; i >= 0; i--)
617 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
618
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800619 net->xfrm.policy_byidx = nidx;
620 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700621
Florian Westphal9d0380d2016-08-11 15:17:59 +0200622 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700623
David S. Miller44e36b42006-08-24 04:50:50 -0700624 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700625}
626
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800627static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700628{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800629 unsigned int cnt = net->xfrm.policy_count[dir];
630 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700631
632 if (total)
633 *total += cnt;
634
635 if ((hmask + 1) < xfrm_policy_hashmax &&
636 cnt > hmask)
637 return 1;
638
639 return 0;
640}
641
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800642static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700643{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800644 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700645
646 if ((hmask + 1) < xfrm_policy_hashmax &&
647 total > hmask)
648 return 1;
649
650 return 0;
651}
652
Alexey Dobriyane0710412010-01-23 13:37:10 +0000653void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700654{
Alexey Dobriyane0710412010-01-23 13:37:10 +0000655 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
656 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
657 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
658 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
659 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
660 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
661 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700662 si->spdhmcnt = xfrm_policy_hashmax;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700663}
664EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700665
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700666static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800667static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700668{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800669 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700670 int dir, total;
671
672 mutex_lock(&hash_resize_mutex);
673
674 total = 0;
Herbert Xu53c2e282014-11-13 17:09:49 +0800675 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800676 if (xfrm_bydst_should_resize(net, dir, &total))
677 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700678 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800679 if (xfrm_byidx_should_resize(net, total))
680 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700681
682 mutex_unlock(&hash_resize_mutex);
683}
684
Florian Westphal24969fa2018-11-07 23:00:35 +0100685/* Make sure *pol can be inserted into fastbin.
686 * Useful to check that later insert requests will be sucessful
687 * (provided xfrm_policy_lock is held throughout).
688 */
689static struct xfrm_pol_inexact_bin *
690xfrm_policy_inexact_alloc_bin(const struct xfrm_policy *pol, u8 dir)
691{
692 struct xfrm_pol_inexact_bin *bin, *prev;
693 struct xfrm_pol_inexact_key k = {
694 .family = pol->family,
695 .type = pol->type,
696 .dir = dir,
Florian Westphalb5fe22e2018-11-07 23:00:36 +0100697 .if_id = pol->if_id,
Florian Westphal24969fa2018-11-07 23:00:35 +0100698 };
699 struct net *net = xp_net(pol);
700
701 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
702
703 write_pnet(&k.net, net);
704 bin = rhashtable_lookup_fast(&xfrm_policy_inexact_table, &k,
705 xfrm_pol_inexact_params);
706 if (bin)
707 return bin;
708
709 bin = kzalloc(sizeof(*bin), GFP_ATOMIC);
710 if (!bin)
711 return NULL;
712
713 bin->k = k;
714 INIT_HLIST_HEAD(&bin->hhead);
Florian Westphal9cf545e2018-11-07 23:00:38 +0100715 bin->root_d = RB_ROOT;
Florian Westphal64a09a72018-11-07 23:00:40 +0100716 bin->root_s = RB_ROOT;
Florian Westphal9cf545e2018-11-07 23:00:38 +0100717 seqcount_init(&bin->count);
Florian Westphal24969fa2018-11-07 23:00:35 +0100718
719 prev = rhashtable_lookup_get_insert_key(&xfrm_policy_inexact_table,
720 &bin->k, &bin->head,
721 xfrm_pol_inexact_params);
722 if (!prev) {
723 list_add(&bin->inexact_bins, &net->xfrm.inexact_bins);
724 return bin;
725 }
726
727 kfree(bin);
728
729 return IS_ERR(prev) ? NULL : prev;
730}
731
Florian Westphal6be3b0d2018-11-07 23:00:37 +0100732static bool xfrm_pol_inexact_addr_use_any_list(const xfrm_address_t *addr,
733 int family, u8 prefixlen)
Florian Westphal24969fa2018-11-07 23:00:35 +0100734{
Florian Westphal6be3b0d2018-11-07 23:00:37 +0100735 if (xfrm_addr_any(addr, family))
736 return true;
Florian Westphal24969fa2018-11-07 23:00:35 +0100737
Florian Westphal6be3b0d2018-11-07 23:00:37 +0100738 if (family == AF_INET6 && prefixlen < INEXACT_PREFIXLEN_IPV6)
739 return true;
740
741 if (family == AF_INET && prefixlen < INEXACT_PREFIXLEN_IPV4)
742 return true;
743
744 return false;
745}
746
747static bool
748xfrm_policy_inexact_insert_use_any_list(const struct xfrm_policy *policy)
749{
750 const xfrm_address_t *addr;
751 bool saddr_any, daddr_any;
752 u8 prefixlen;
753
754 addr = &policy->selector.saddr;
755 prefixlen = policy->selector.prefixlen_s;
756
757 saddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
758 policy->family,
759 prefixlen);
760 addr = &policy->selector.daddr;
761 prefixlen = policy->selector.prefixlen_d;
762 daddr_any = xfrm_pol_inexact_addr_use_any_list(addr,
763 policy->family,
764 prefixlen);
765 return saddr_any && daddr_any;
766}
767
Florian Westphal9cf545e2018-11-07 23:00:38 +0100768static void xfrm_pol_inexact_node_init(struct xfrm_pol_inexact_node *node,
769 const xfrm_address_t *addr, u8 prefixlen)
770{
771 node->addr = *addr;
772 node->prefixlen = prefixlen;
773}
774
775static struct xfrm_pol_inexact_node *
776xfrm_pol_inexact_node_alloc(const xfrm_address_t *addr, u8 prefixlen)
777{
778 struct xfrm_pol_inexact_node *node;
779
780 node = kzalloc(sizeof(*node), GFP_ATOMIC);
781 if (node)
782 xfrm_pol_inexact_node_init(node, addr, prefixlen);
783
784 return node;
785}
786
787static int xfrm_policy_addr_delta(const xfrm_address_t *a,
788 const xfrm_address_t *b,
789 u8 prefixlen, u16 family)
790{
791 unsigned int pdw, pbi;
792 int delta = 0;
793
794 switch (family) {
795 case AF_INET:
796 if (sizeof(long) == 4 && prefixlen == 0)
797 return ntohl(a->a4) - ntohl(b->a4);
798 return (ntohl(a->a4) & ((~0UL << (32 - prefixlen)))) -
799 (ntohl(b->a4) & ((~0UL << (32 - prefixlen))));
800 case AF_INET6:
801 pdw = prefixlen >> 5;
802 pbi = prefixlen & 0x1f;
803
804 if (pdw) {
805 delta = memcmp(a->a6, b->a6, pdw << 2);
806 if (delta)
807 return delta;
808 }
809 if (pbi) {
810 u32 mask = ~0u << (32 - pbi);
811
812 delta = (ntohl(a->a6[pdw]) & mask) -
813 (ntohl(b->a6[pdw]) & mask);
814 }
815 break;
816 default:
817 break;
818 }
819
820 return delta;
821}
822
823static void xfrm_policy_inexact_list_reinsert(struct net *net,
824 struct xfrm_pol_inexact_node *n,
825 u16 family)
826{
Florian Westphale901cbc2018-11-07 23:00:39 +0100827 unsigned int matched_s, matched_d;
Florian Westphal9cf545e2018-11-07 23:00:38 +0100828 struct xfrm_policy *policy, *p;
829
Florian Westphale901cbc2018-11-07 23:00:39 +0100830 matched_s = 0;
831 matched_d = 0;
832
Florian Westphal9cf545e2018-11-07 23:00:38 +0100833 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
Florian Westphal1d389002019-01-04 14:17:03 +0100834 struct hlist_node *newpos = NULL;
Florian Westphale901cbc2018-11-07 23:00:39 +0100835 bool matches_s, matches_d;
836
Florian Westphal9cf545e2018-11-07 23:00:38 +0100837 if (!policy->bydst_reinsert)
838 continue;
839
840 WARN_ON_ONCE(policy->family != family);
841
842 policy->bydst_reinsert = false;
843 hlist_for_each_entry(p, &n->hhead, bydst) {
Florian Westphal1d389002019-01-04 14:17:03 +0100844 if (policy->priority > p->priority)
845 newpos = &p->bydst;
846 else if (policy->priority == p->priority &&
847 policy->pos > p->pos)
Florian Westphal9cf545e2018-11-07 23:00:38 +0100848 newpos = &p->bydst;
849 else
850 break;
851 }
852
853 if (newpos)
Florian Westphal355b00d2019-01-04 14:17:00 +0100854 hlist_add_behind_rcu(&policy->bydst, newpos);
Florian Westphal9cf545e2018-11-07 23:00:38 +0100855 else
Florian Westphal355b00d2019-01-04 14:17:00 +0100856 hlist_add_head_rcu(&policy->bydst, &n->hhead);
Florian Westphale901cbc2018-11-07 23:00:39 +0100857
858 /* paranoia checks follow.
859 * Check that the reinserted policy matches at least
860 * saddr or daddr for current node prefix.
861 *
862 * Matching both is fine, matching saddr in one policy
863 * (but not daddr) and then matching only daddr in another
864 * is a bug.
865 */
866 matches_s = xfrm_policy_addr_delta(&policy->selector.saddr,
867 &n->addr,
868 n->prefixlen,
869 family) == 0;
870 matches_d = xfrm_policy_addr_delta(&policy->selector.daddr,
871 &n->addr,
872 n->prefixlen,
873 family) == 0;
874 if (matches_s && matches_d)
875 continue;
876
877 WARN_ON_ONCE(!matches_s && !matches_d);
878 if (matches_s)
879 matched_s++;
880 if (matches_d)
881 matched_d++;
882 WARN_ON_ONCE(matched_s && matched_d);
Florian Westphal9cf545e2018-11-07 23:00:38 +0100883 }
884}
885
Florian Westphal6ac098b2018-11-07 23:00:41 +0100886static void xfrm_policy_inexact_node_reinsert(struct net *net,
887 struct xfrm_pol_inexact_node *n,
888 struct rb_root *new,
889 u16 family)
890{
Florian Westphal6ac098b2018-11-07 23:00:41 +0100891 struct xfrm_pol_inexact_node *node;
Florian Westphal12750ab2019-01-04 14:17:05 +0100892 struct rb_node **p, *parent;
Florian Westphal6ac098b2018-11-07 23:00:41 +0100893
894 /* we should not have another subtree here */
895 WARN_ON_ONCE(!RB_EMPTY_ROOT(&n->root));
Florian Westphal12750ab2019-01-04 14:17:05 +0100896restart:
897 parent = NULL;
Florian Westphal6ac098b2018-11-07 23:00:41 +0100898 p = &new->rb_node;
899 while (*p) {
900 u8 prefixlen;
901 int delta;
902
903 parent = *p;
904 node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
905
906 prefixlen = min(node->prefixlen, n->prefixlen);
907
908 delta = xfrm_policy_addr_delta(&n->addr, &node->addr,
909 prefixlen, family);
910 if (delta < 0) {
911 p = &parent->rb_left;
912 } else if (delta > 0) {
913 p = &parent->rb_right;
914 } else {
915 struct xfrm_policy *tmp;
916
Florian Westphal12750ab2019-01-04 14:17:05 +0100917 hlist_for_each_entry(tmp, &n->hhead, bydst) {
Florian Westphal6ac098b2018-11-07 23:00:41 +0100918 tmp->bydst_reinsert = true;
Florian Westphal12750ab2019-01-04 14:17:05 +0100919 hlist_del_rcu(&tmp->bydst);
920 }
Florian Westphal6ac098b2018-11-07 23:00:41 +0100921
Florian Westphal6ac098b2018-11-07 23:00:41 +0100922 xfrm_policy_inexact_list_reinsert(net, node, family);
923
924 if (node->prefixlen == n->prefixlen) {
925 kfree_rcu(n, rcu);
926 return;
927 }
928
929 rb_erase(*p, new);
930 kfree_rcu(n, rcu);
931 n = node;
932 n->prefixlen = prefixlen;
Florian Westphal12750ab2019-01-04 14:17:05 +0100933 goto restart;
Florian Westphal6ac098b2018-11-07 23:00:41 +0100934 }
935 }
936
937 rb_link_node_rcu(&n->node, parent, p);
938 rb_insert_color(&n->node, new);
939}
940
Florian Westphal9cf545e2018-11-07 23:00:38 +0100941/* merge nodes v and n */
942static void xfrm_policy_inexact_node_merge(struct net *net,
943 struct xfrm_pol_inexact_node *v,
944 struct xfrm_pol_inexact_node *n,
945 u16 family)
946{
Florian Westphal6ac098b2018-11-07 23:00:41 +0100947 struct xfrm_pol_inexact_node *node;
Florian Westphal9cf545e2018-11-07 23:00:38 +0100948 struct xfrm_policy *tmp;
Florian Westphal6ac098b2018-11-07 23:00:41 +0100949 struct rb_node *rnode;
950
951 /* To-be-merged node v has a subtree.
952 *
953 * Dismantle it and insert its nodes to n->root.
954 */
955 while ((rnode = rb_first(&v->root)) != NULL) {
956 node = rb_entry(rnode, struct xfrm_pol_inexact_node, node);
957 rb_erase(&node->node, &v->root);
958 xfrm_policy_inexact_node_reinsert(net, node, &n->root,
959 family);
960 }
Florian Westphal9cf545e2018-11-07 23:00:38 +0100961
Florian Westphal1d389002019-01-04 14:17:03 +0100962 hlist_for_each_entry(tmp, &v->hhead, bydst) {
Florian Westphal9cf545e2018-11-07 23:00:38 +0100963 tmp->bydst_reinsert = true;
Florian Westphal1d389002019-01-04 14:17:03 +0100964 hlist_del_rcu(&tmp->bydst);
965 }
Florian Westphal9cf545e2018-11-07 23:00:38 +0100966
Florian Westphal9cf545e2018-11-07 23:00:38 +0100967 xfrm_policy_inexact_list_reinsert(net, n, family);
968}
969
970static struct xfrm_pol_inexact_node *
971xfrm_policy_inexact_insert_node(struct net *net,
972 struct rb_root *root,
973 xfrm_address_t *addr,
974 u16 family, u8 prefixlen, u8 dir)
975{
976 struct xfrm_pol_inexact_node *cached = NULL;
977 struct rb_node **p, *parent = NULL;
978 struct xfrm_pol_inexact_node *node;
979
980 p = &root->rb_node;
981 while (*p) {
982 int delta;
983
984 parent = *p;
985 node = rb_entry(*p, struct xfrm_pol_inexact_node, node);
986
987 delta = xfrm_policy_addr_delta(addr, &node->addr,
988 node->prefixlen,
989 family);
990 if (delta == 0 && prefixlen >= node->prefixlen) {
991 WARN_ON_ONCE(cached); /* ipsec policies got lost */
992 return node;
993 }
994
995 if (delta < 0)
996 p = &parent->rb_left;
997 else
998 p = &parent->rb_right;
999
1000 if (prefixlen < node->prefixlen) {
1001 delta = xfrm_policy_addr_delta(addr, &node->addr,
1002 prefixlen,
1003 family);
1004 if (delta)
1005 continue;
1006
1007 /* This node is a subnet of the new prefix. It needs
1008 * to be removed and re-inserted with the smaller
1009 * prefix and all nodes that are now also covered
1010 * by the reduced prefixlen.
1011 */
1012 rb_erase(&node->node, root);
1013
1014 if (!cached) {
1015 xfrm_pol_inexact_node_init(node, addr,
1016 prefixlen);
1017 cached = node;
1018 } else {
1019 /* This node also falls within the new
1020 * prefixlen. Merge the to-be-reinserted
1021 * node and this one.
1022 */
1023 xfrm_policy_inexact_node_merge(net, node,
1024 cached, family);
1025 kfree_rcu(node, rcu);
1026 }
1027
1028 /* restart */
1029 p = &root->rb_node;
1030 parent = NULL;
1031 }
1032 }
1033
1034 node = cached;
1035 if (!node) {
1036 node = xfrm_pol_inexact_node_alloc(addr, prefixlen);
1037 if (!node)
1038 return NULL;
1039 }
1040
1041 rb_link_node_rcu(&node->node, parent, p);
1042 rb_insert_color(&node->node, root);
1043
1044 return node;
1045}
1046
1047static void xfrm_policy_inexact_gc_tree(struct rb_root *r, bool rm)
1048{
1049 struct xfrm_pol_inexact_node *node;
1050 struct rb_node *rn = rb_first(r);
1051
1052 while (rn) {
1053 node = rb_entry(rn, struct xfrm_pol_inexact_node, node);
1054
Florian Westphal6ac098b2018-11-07 23:00:41 +01001055 xfrm_policy_inexact_gc_tree(&node->root, rm);
Florian Westphal9cf545e2018-11-07 23:00:38 +01001056 rn = rb_next(rn);
1057
Florian Westphal6ac098b2018-11-07 23:00:41 +01001058 if (!hlist_empty(&node->hhead) || !RB_EMPTY_ROOT(&node->root)) {
Florian Westphal9cf545e2018-11-07 23:00:38 +01001059 WARN_ON_ONCE(rm);
1060 continue;
1061 }
1062
1063 rb_erase(&node->node, r);
1064 kfree_rcu(node, rcu);
1065 }
1066}
1067
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001068static void __xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b, bool net_exit)
1069{
Florian Westphal9cf545e2018-11-07 23:00:38 +01001070 write_seqcount_begin(&b->count);
1071 xfrm_policy_inexact_gc_tree(&b->root_d, net_exit);
Florian Westphal64a09a72018-11-07 23:00:40 +01001072 xfrm_policy_inexact_gc_tree(&b->root_s, net_exit);
Florian Westphal9cf545e2018-11-07 23:00:38 +01001073 write_seqcount_end(&b->count);
1074
Florian Westphal64a09a72018-11-07 23:00:40 +01001075 if (!RB_EMPTY_ROOT(&b->root_d) || !RB_EMPTY_ROOT(&b->root_s) ||
Florian Westphal9cf545e2018-11-07 23:00:38 +01001076 !hlist_empty(&b->hhead)) {
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001077 WARN_ON_ONCE(net_exit);
Florian Westphal24969fa2018-11-07 23:00:35 +01001078 return;
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001079 }
Florian Westphal24969fa2018-11-07 23:00:35 +01001080
1081 if (rhashtable_remove_fast(&xfrm_policy_inexact_table, &b->head,
1082 xfrm_pol_inexact_params) == 0) {
1083 list_del(&b->inexact_bins);
1084 kfree_rcu(b, rcu);
1085 }
1086}
1087
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001088static void xfrm_policy_inexact_prune_bin(struct xfrm_pol_inexact_bin *b)
1089{
1090 struct net *net = read_pnet(&b->k.net);
1091
1092 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1093 __xfrm_policy_inexact_prune_bin(b, false);
1094 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1095}
1096
Florian Westphal24969fa2018-11-07 23:00:35 +01001097static void __xfrm_policy_inexact_flush(struct net *net)
1098{
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001099 struct xfrm_pol_inexact_bin *bin, *t;
Florian Westphal24969fa2018-11-07 23:00:35 +01001100
1101 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1102
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001103 list_for_each_entry_safe(bin, t, &net->xfrm.inexact_bins, inexact_bins)
1104 __xfrm_policy_inexact_prune_bin(bin, false);
Florian Westphal24969fa2018-11-07 23:00:35 +01001105}
1106
Florian Westphal9cf545e2018-11-07 23:00:38 +01001107static struct hlist_head *
1108xfrm_policy_inexact_alloc_chain(struct xfrm_pol_inexact_bin *bin,
1109 struct xfrm_policy *policy, u8 dir)
1110{
1111 struct xfrm_pol_inexact_node *n;
1112 struct net *net;
1113
1114 net = xp_net(policy);
1115 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1116
1117 if (xfrm_policy_inexact_insert_use_any_list(policy))
1118 return &bin->hhead;
1119
1120 if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.daddr,
1121 policy->family,
Florian Westphal64a09a72018-11-07 23:00:40 +01001122 policy->selector.prefixlen_d)) {
1123 write_seqcount_begin(&bin->count);
1124 n = xfrm_policy_inexact_insert_node(net,
1125 &bin->root_s,
1126 &policy->selector.saddr,
1127 policy->family,
1128 policy->selector.prefixlen_s,
1129 dir);
1130 write_seqcount_end(&bin->count);
1131 if (!n)
1132 return NULL;
1133
1134 return &n->hhead;
1135 }
Florian Westphal9cf545e2018-11-07 23:00:38 +01001136
1137 /* daddr is fixed */
1138 write_seqcount_begin(&bin->count);
1139 n = xfrm_policy_inexact_insert_node(net,
1140 &bin->root_d,
1141 &policy->selector.daddr,
1142 policy->family,
1143 policy->selector.prefixlen_d, dir);
1144 write_seqcount_end(&bin->count);
1145 if (!n)
1146 return NULL;
Florian Westphal6ac098b2018-11-07 23:00:41 +01001147
1148 /* saddr is wildcard */
1149 if (xfrm_pol_inexact_addr_use_any_list(&policy->selector.saddr,
1150 policy->family,
1151 policy->selector.prefixlen_s))
1152 return &n->hhead;
1153
1154 write_seqcount_begin(&bin->count);
1155 n = xfrm_policy_inexact_insert_node(net,
1156 &n->root,
1157 &policy->selector.saddr,
1158 policy->family,
1159 policy->selector.prefixlen_s, dir);
1160 write_seqcount_end(&bin->count);
1161 if (!n)
1162 return NULL;
1163
Florian Westphal9cf545e2018-11-07 23:00:38 +01001164 return &n->hhead;
1165}
1166
Florian Westphal24969fa2018-11-07 23:00:35 +01001167static struct xfrm_policy *
1168xfrm_policy_inexact_insert(struct xfrm_policy *policy, u8 dir, int excl)
1169{
1170 struct xfrm_pol_inexact_bin *bin;
1171 struct xfrm_policy *delpol;
1172 struct hlist_head *chain;
1173 struct net *net;
1174
1175 bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1176 if (!bin)
1177 return ERR_PTR(-ENOMEM);
1178
Florian Westphal24969fa2018-11-07 23:00:35 +01001179 net = xp_net(policy);
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001180 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
1181
Florian Westphal9cf545e2018-11-07 23:00:38 +01001182 chain = xfrm_policy_inexact_alloc_chain(bin, policy, dir);
1183 if (!chain) {
1184 __xfrm_policy_inexact_prune_bin(bin, false);
1185 return ERR_PTR(-ENOMEM);
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001186 }
1187
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001188 delpol = xfrm_policy_insert_list(chain, policy, excl);
1189 if (delpol && excl) {
1190 __xfrm_policy_inexact_prune_bin(bin, false);
1191 return ERR_PTR(-EEXIST);
1192 }
1193
Florian Westphal24969fa2018-11-07 23:00:35 +01001194 chain = &net->xfrm.policy_inexact[dir];
1195 xfrm_policy_insert_inexact_list(chain, policy);
1196
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001197 if (delpol)
1198 __xfrm_policy_inexact_prune_bin(bin, false);
1199
Florian Westphal24969fa2018-11-07 23:00:35 +01001200 return delpol;
1201}
1202
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001203static void xfrm_hash_rebuild(struct work_struct *work)
1204{
1205 struct net *net = container_of(work, struct net,
1206 xfrm.policy_hthresh.work);
1207 unsigned int hmask;
1208 struct xfrm_policy *pol;
1209 struct xfrm_policy *policy;
1210 struct hlist_head *chain;
1211 struct hlist_head *odst;
1212 struct hlist_node *newpos;
1213 int i;
1214 int dir;
1215 unsigned seq;
1216 u8 lbits4, rbits4, lbits6, rbits6;
1217
1218 mutex_lock(&hash_resize_mutex);
1219
1220 /* read selector prefixlen thresholds */
1221 do {
1222 seq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1223
1224 lbits4 = net->xfrm.policy_hthresh.lbits4;
1225 rbits4 = net->xfrm.policy_hthresh.rbits4;
1226 lbits6 = net->xfrm.policy_hthresh.lbits6;
1227 rbits6 = net->xfrm.policy_hthresh.rbits6;
1228 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, seq));
1229
Florian Westphal9d0380d2016-08-11 15:17:59 +02001230 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Florian Westphal7a474c32019-01-04 14:17:01 +01001231 write_seqcount_begin(&xfrm_policy_hash_generation);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001232
Florian Westphal24969fa2018-11-07 23:00:35 +01001233 /* make sure that we can insert the indirect policies again before
1234 * we start with destructive action.
1235 */
1236 list_for_each_entry(policy, &net->xfrm.policy_all, walk.all) {
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001237 struct xfrm_pol_inexact_bin *bin;
Florian Westphal24969fa2018-11-07 23:00:35 +01001238 u8 dbits, sbits;
1239
1240 dir = xfrm_policy_id2dir(policy->index);
1241 if (policy->walk.dead || dir >= XFRM_POLICY_MAX)
1242 continue;
1243
1244 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1245 if (policy->family == AF_INET) {
1246 dbits = rbits4;
1247 sbits = lbits4;
1248 } else {
1249 dbits = rbits6;
1250 sbits = lbits6;
1251 }
1252 } else {
1253 if (policy->family == AF_INET) {
1254 dbits = lbits4;
1255 sbits = rbits4;
1256 } else {
1257 dbits = lbits6;
1258 sbits = rbits6;
1259 }
1260 }
1261
1262 if (policy->selector.prefixlen_d < dbits ||
1263 policy->selector.prefixlen_s < sbits)
1264 continue;
1265
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001266 bin = xfrm_policy_inexact_alloc_bin(policy, dir);
1267 if (!bin)
Florian Westphal24969fa2018-11-07 23:00:35 +01001268 goto out_unlock;
Florian Westphal9cf545e2018-11-07 23:00:38 +01001269
1270 if (!xfrm_policy_inexact_alloc_chain(bin, policy, dir))
1271 goto out_unlock;
Florian Westphal24969fa2018-11-07 23:00:35 +01001272 }
1273
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001274 /* reset the bydst and inexact table in all directions */
Herbert Xu53c2e282014-11-13 17:09:49 +08001275 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
Florian Westphal1548bc42019-01-04 14:17:02 +01001276 struct hlist_node *n;
1277
1278 hlist_for_each_entry_safe(policy, n,
1279 &net->xfrm.policy_inexact[dir],
Florian Westphalfd709722019-07-02 12:46:00 +02001280 bydst_inexact_list) {
1281 hlist_del_rcu(&policy->bydst);
Florian Westphal1548bc42019-01-04 14:17:02 +01001282 hlist_del_init(&policy->bydst_inexact_list);
Florian Westphalfd709722019-07-02 12:46:00 +02001283 }
Florian Westphal1548bc42019-01-04 14:17:02 +01001284
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001285 hmask = net->xfrm.policy_bydst[dir].hmask;
1286 odst = net->xfrm.policy_bydst[dir].table;
Florian Westphalfd709722019-07-02 12:46:00 +02001287 for (i = hmask; i >= 0; i--) {
1288 hlist_for_each_entry_safe(policy, n, odst + i, bydst)
1289 hlist_del_rcu(&policy->bydst);
1290 }
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001291 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
1292 /* dir out => dst = remote, src = local */
1293 net->xfrm.policy_bydst[dir].dbits4 = rbits4;
1294 net->xfrm.policy_bydst[dir].sbits4 = lbits4;
1295 net->xfrm.policy_bydst[dir].dbits6 = rbits6;
1296 net->xfrm.policy_bydst[dir].sbits6 = lbits6;
1297 } else {
1298 /* dir in/fwd => dst = local, src = remote */
1299 net->xfrm.policy_bydst[dir].dbits4 = lbits4;
1300 net->xfrm.policy_bydst[dir].sbits4 = rbits4;
1301 net->xfrm.policy_bydst[dir].dbits6 = lbits6;
1302 net->xfrm.policy_bydst[dir].sbits6 = rbits6;
1303 }
1304 }
1305
1306 /* re-insert all policies by order of creation */
1307 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
Florian Westphal88584c32018-11-27 13:28:54 +01001308 if (policy->walk.dead)
1309 continue;
1310 dir = xfrm_policy_id2dir(policy->index);
1311 if (dir >= XFRM_POLICY_MAX) {
Tobias Brunner6916fb32016-07-29 09:57:32 +02001312 /* skip socket policies */
1313 continue;
1314 }
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001315 newpos = NULL;
1316 chain = policy_hash_bysel(net, &policy->selector,
Florian Westphal88584c32018-11-27 13:28:54 +01001317 policy->family, dir);
Florian Westphal1548bc42019-01-04 14:17:02 +01001318
Florian Westphal24969fa2018-11-07 23:00:35 +01001319 if (!chain) {
1320 void *p = xfrm_policy_inexact_insert(policy, dir, 0);
1321
1322 WARN_ONCE(IS_ERR(p), "reinsert: %ld\n", PTR_ERR(p));
1323 continue;
1324 }
1325
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001326 hlist_for_each_entry(pol, chain, bydst) {
1327 if (policy->priority >= pol->priority)
1328 newpos = &pol->bydst;
1329 else
1330 break;
1331 }
1332 if (newpos)
Florian Westphal9dffff22018-10-10 18:02:21 +02001333 hlist_add_behind_rcu(&policy->bydst, newpos);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001334 else
Florian Westphal9dffff22018-10-10 18:02:21 +02001335 hlist_add_head_rcu(&policy->bydst, chain);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001336 }
1337
Florian Westphal24969fa2018-11-07 23:00:35 +01001338out_unlock:
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001339 __xfrm_policy_inexact_flush(net);
Florian Westphal7a474c32019-01-04 14:17:01 +01001340 write_seqcount_end(&xfrm_policy_hash_generation);
Florian Westphal9d0380d2016-08-11 15:17:59 +02001341 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001342
1343 mutex_unlock(&hash_resize_mutex);
1344}
1345
1346void xfrm_policy_hash_rebuild(struct net *net)
1347{
1348 schedule_work(&net->xfrm.policy_hthresh.work);
1349}
1350EXPORT_SYMBOL(xfrm_policy_hash_rebuild);
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352/* Generate new index... KAME seems to generate them ordered by cost
1353 * of an absolute inpredictability of ordering of rules. This will not pass. */
Fan Due682adf02013-11-07 17:47:48 +08001354static u32 xfrm_gen_index(struct net *net, int dir, u32 index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 static u32 idx_generator;
1357
1358 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001359 struct hlist_head *list;
1360 struct xfrm_policy *p;
1361 u32 idx;
1362 int found;
1363
Fan Due682adf02013-11-07 17:47:48 +08001364 if (!index) {
1365 idx = (idx_generator | dir);
1366 idx_generator += 8;
1367 } else {
1368 idx = index;
1369 index = 0;
1370 }
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (idx == 0)
1373 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -08001374 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -07001375 found = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001376 hlist_for_each_entry(p, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001377 if (p->index == idx) {
1378 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 break;
David S. Miller2518c7c2006-08-24 04:45:07 -07001380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
David S. Miller2518c7c2006-08-24 04:45:07 -07001382 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return idx;
1384 }
1385}
1386
David S. Miller2518c7c2006-08-24 04:45:07 -07001387static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
1388{
1389 u32 *p1 = (u32 *) s1;
1390 u32 *p2 = (u32 *) s2;
1391 int len = sizeof(struct xfrm_selector) / sizeof(u32);
1392 int i;
1393
1394 for (i = 0; i < len; i++) {
1395 if (p1[i] != p2[i])
1396 return 1;
1397 }
1398
1399 return 0;
1400}
1401
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001402static void xfrm_policy_requeue(struct xfrm_policy *old,
1403 struct xfrm_policy *new)
1404{
1405 struct xfrm_policy_queue *pq = &old->polq;
1406 struct sk_buff_head list;
1407
Li RongQingde2ad482015-04-30 17:25:19 +08001408 if (skb_queue_empty(&pq->hold_queue))
1409 return;
1410
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001411 __skb_queue_head_init(&list);
1412
1413 spin_lock_bh(&pq->hold_queue.lock);
1414 skb_queue_splice_init(&pq->hold_queue, &list);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001415 if (del_timer(&pq->hold_timer))
1416 xfrm_pol_put(old);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001417 spin_unlock_bh(&pq->hold_queue.lock);
1418
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001419 pq = &new->polq;
1420
1421 spin_lock_bh(&pq->hold_queue.lock);
1422 skb_queue_splice(&list, &pq->hold_queue);
1423 pq->timeout = XFRM_QUEUE_TMO_MIN;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001424 if (!mod_timer(&pq->hold_timer, jiffies))
1425 xfrm_pol_hold(new);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001426 spin_unlock_bh(&pq->hold_queue.lock);
1427}
1428
Steffen Klassert7cb8a932013-02-11 07:02:36 +01001429static bool xfrm_policy_mark_match(struct xfrm_policy *policy,
1430 struct xfrm_policy *pol)
1431{
1432 u32 mark = policy->mark.v & policy->mark.m;
1433
1434 if (policy->mark.v == pol->mark.v && policy->mark.m == pol->mark.m)
1435 return true;
1436
1437 if ((mark & pol->mark.m) == pol->mark.v &&
1438 policy->priority == pol->priority)
1439 return true;
1440
1441 return false;
1442}
1443
Florian Westphal24969fa2018-11-07 23:00:35 +01001444static u32 xfrm_pol_bin_key(const void *data, u32 len, u32 seed)
1445{
1446 const struct xfrm_pol_inexact_key *k = data;
1447 u32 a = k->type << 24 | k->dir << 16 | k->family;
1448
Florian Westphalb5fe22e2018-11-07 23:00:36 +01001449 return jhash_3words(a, k->if_id, net_hash_mix(read_pnet(&k->net)),
1450 seed);
Florian Westphal24969fa2018-11-07 23:00:35 +01001451}
1452
1453static u32 xfrm_pol_bin_obj(const void *data, u32 len, u32 seed)
1454{
1455 const struct xfrm_pol_inexact_bin *b = data;
1456
1457 return xfrm_pol_bin_key(&b->k, 0, seed);
1458}
1459
1460static int xfrm_pol_bin_cmp(struct rhashtable_compare_arg *arg,
1461 const void *ptr)
1462{
1463 const struct xfrm_pol_inexact_key *key = arg->key;
1464 const struct xfrm_pol_inexact_bin *b = ptr;
1465 int ret;
1466
1467 if (!net_eq(read_pnet(&b->k.net), read_pnet(&key->net)))
1468 return -1;
1469
1470 ret = b->k.dir ^ key->dir;
1471 if (ret)
1472 return ret;
1473
1474 ret = b->k.type ^ key->type;
1475 if (ret)
1476 return ret;
1477
1478 ret = b->k.family ^ key->family;
1479 if (ret)
1480 return ret;
1481
Florian Westphalb5fe22e2018-11-07 23:00:36 +01001482 return b->k.if_id ^ key->if_id;
Florian Westphal24969fa2018-11-07 23:00:35 +01001483}
1484
1485static const struct rhashtable_params xfrm_pol_inexact_params = {
1486 .head_offset = offsetof(struct xfrm_pol_inexact_bin, head),
1487 .hashfn = xfrm_pol_bin_key,
1488 .obj_hashfn = xfrm_pol_bin_obj,
1489 .obj_cmpfn = xfrm_pol_bin_cmp,
1490 .automatic_shrinking = true,
1491};
1492
1493static void xfrm_policy_insert_inexact_list(struct hlist_head *chain,
1494 struct xfrm_policy *policy)
1495{
1496 struct xfrm_policy *pol, *delpol = NULL;
1497 struct hlist_node *newpos = NULL;
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001498 int i = 0;
Florian Westphal24969fa2018-11-07 23:00:35 +01001499
1500 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1501 if (pol->type == policy->type &&
1502 pol->if_id == policy->if_id &&
1503 !selector_cmp(&pol->selector, &policy->selector) &&
1504 xfrm_policy_mark_match(policy, pol) &&
1505 xfrm_sec_ctx_match(pol->security, policy->security) &&
1506 !WARN_ON(delpol)) {
1507 delpol = pol;
1508 if (policy->priority > pol->priority)
1509 continue;
1510 } else if (policy->priority >= pol->priority) {
1511 newpos = &pol->bydst_inexact_list;
1512 continue;
1513 }
1514 if (delpol)
1515 break;
1516 }
1517
1518 if (newpos)
1519 hlist_add_behind_rcu(&policy->bydst_inexact_list, newpos);
1520 else
1521 hlist_add_head_rcu(&policy->bydst_inexact_list, chain);
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001522
1523 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
1524 pol->pos = i;
1525 i++;
1526 }
Florian Westphal24969fa2018-11-07 23:00:35 +01001527}
1528
Florian Westphala927d6af2018-11-07 23:00:33 +01001529static struct xfrm_policy *xfrm_policy_insert_list(struct hlist_head *chain,
1530 struct xfrm_policy *policy,
1531 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Florian Westphala927d6af2018-11-07 23:00:33 +01001533 struct xfrm_policy *pol, *newpos = NULL, *delpol = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Sasha Levinb67bfe02013-02-27 17:06:00 -08001535 hlist_for_each_entry(pol, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -08001536 if (pol->type == policy->type &&
Steffen Klassert7e652642018-06-12 14:07:07 +02001537 pol->if_id == policy->if_id &&
David S. Miller2518c7c2006-08-24 04:45:07 -07001538 !selector_cmp(&pol->selector, &policy->selector) &&
Steffen Klassert7cb8a932013-02-11 07:02:36 +01001539 xfrm_policy_mark_match(policy, pol) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -08001540 xfrm_sec_ctx_match(pol->security, policy->security) &&
1541 !WARN_ON(delpol)) {
Florian Westphala927d6af2018-11-07 23:00:33 +01001542 if (excl)
1543 return ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 delpol = pol;
1545 if (policy->priority > pol->priority)
1546 continue;
1547 } else if (policy->priority >= pol->priority) {
Florian Westphala927d6af2018-11-07 23:00:33 +01001548 newpos = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 continue;
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (delpol)
1552 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
Florian Westphal24969fa2018-11-07 23:00:35 +01001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (newpos)
Florian Westphala927d6af2018-11-07 23:00:33 +01001556 hlist_add_behind_rcu(&policy->bydst, &newpos->bydst);
David S. Miller2518c7c2006-08-24 04:45:07 -07001557 else
Florian Westphal9dffff22018-10-10 18:02:21 +02001558 hlist_add_head_rcu(&policy->bydst, chain);
Florian Westphala927d6af2018-11-07 23:00:33 +01001559
1560 return delpol;
1561}
1562
1563int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
1564{
1565 struct net *net = xp_net(policy);
1566 struct xfrm_policy *delpol;
1567 struct hlist_head *chain;
1568
1569 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1570 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
Florian Westphal24969fa2018-11-07 23:00:35 +01001571 if (chain)
Florian Westphalcc1bb842018-11-07 23:00:34 +01001572 delpol = xfrm_policy_insert_list(chain, policy, excl);
Florian Westphal24969fa2018-11-07 23:00:35 +01001573 else
1574 delpol = xfrm_policy_inexact_insert(policy, dir, excl);
Florian Westphala927d6af2018-11-07 23:00:33 +01001575
1576 if (IS_ERR(delpol)) {
1577 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1578 return PTR_ERR(delpol);
1579 }
1580
Herbert Xu12bfa8b2014-11-13 17:09:50 +08001581 __xfrm_policy_link(policy, dir);
fan.duca4c3fc2013-07-30 08:33:53 +08001582
1583 /* After previous checking, family can either be AF_INET or AF_INET6 */
1584 if (policy->family == AF_INET)
1585 rt_genid_bump_ipv4(net);
1586 else
1587 rt_genid_bump_ipv6(net);
1588
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001589 if (delpol) {
1590 xfrm_policy_requeue(delpol, policy);
Wei Yongjun29fa0b302008-12-03 00:33:09 -08001591 __xfrm_policy_unlink(delpol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001592 }
Fan Due682adf02013-11-07 17:47:48 +08001593 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir, policy->index);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001594 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
Arnd Bergmann386c5682018-07-11 12:19:13 +02001595 policy->curlft.add_time = ktime_get_real_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 policy->curlft.use_time = 0;
1597 if (!mod_timer(&policy->timer, jiffies + HZ))
1598 xfrm_pol_hold(policy);
Florian Westphal9d0380d2016-08-11 15:17:59 +02001599 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
David S. Miller9b78a822005-12-22 07:39:48 -08001601 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001603 else if (xfrm_bydst_should_resize(net, dir, NULL))
1604 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -08001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return 0;
1607}
1608EXPORT_SYMBOL(xfrm_policy_insert);
1609
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001610static struct xfrm_policy *
1611__xfrm_policy_bysel_ctx(struct hlist_head *chain, u32 mark, u32 if_id,
1612 u8 type, int dir,
1613 struct xfrm_selector *sel,
1614 struct xfrm_sec_ctx *ctx)
1615{
1616 struct xfrm_policy *pol;
1617
1618 if (!chain)
1619 return NULL;
1620
1621 hlist_for_each_entry(pol, chain, bydst) {
1622 if (pol->type == type &&
1623 pol->if_id == if_id &&
1624 (mark & pol->mark.m) == pol->mark.v &&
1625 !selector_cmp(sel, &pol->selector) &&
1626 xfrm_sec_ctx_match(ctx, pol->security))
1627 return pol;
1628 }
1629
1630 return NULL;
1631}
1632
Steffen Klassert7e652642018-06-12 14:07:07 +02001633struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u32 if_id,
1634 u8 type, int dir,
1635 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -08001636 struct xfrm_sec_ctx *ctx, int delete,
1637 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Florian Westphal24969fa2018-11-07 23:00:35 +01001639 struct xfrm_pol_inexact_bin *bin = NULL;
1640 struct xfrm_policy *pol, *ret = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -07001641 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Eric Parisef41aaa2007-03-07 15:37:58 -08001643 *err = 0;
Florian Westphal9d0380d2016-08-11 15:17:59 +02001644 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -08001645 chain = policy_hash_bysel(net, sel, sel->family, dir);
Florian Westphal24969fa2018-11-07 23:00:35 +01001646 if (!chain) {
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001647 struct xfrm_pol_inexact_candidates cand;
1648 int i;
1649
Florian Westphal24969fa2018-11-07 23:00:35 +01001650 bin = xfrm_policy_inexact_lookup(net, type,
Florian Westphalb5fe22e2018-11-07 23:00:36 +01001651 sel->family, dir, if_id);
Florian Westphal24969fa2018-11-07 23:00:35 +01001652 if (!bin) {
1653 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1654 return NULL;
1655 }
1656
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001657 if (!xfrm_policy_find_inexact_candidates(&cand, bin,
1658 &sel->saddr,
1659 &sel->daddr)) {
1660 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1661 return NULL;
1662 }
1663
1664 pol = NULL;
1665 for (i = 0; i < ARRAY_SIZE(cand.res); i++) {
1666 struct xfrm_policy *tmp;
1667
1668 tmp = __xfrm_policy_bysel_ctx(cand.res[i], mark,
1669 if_id, type, dir,
1670 sel, ctx);
Florian Westphal39aa6922018-11-15 02:51:57 +01001671 if (!tmp)
1672 continue;
1673
1674 if (!pol || tmp->pos < pol->pos)
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001675 pol = tmp;
1676 }
1677 } else {
1678 pol = __xfrm_policy_bysel_ctx(chain, mark, if_id, type, dir,
1679 sel, ctx);
Florian Westphal24969fa2018-11-07 23:00:35 +01001680 }
1681
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001682 if (pol) {
1683 xfrm_pol_hold(pol);
1684 if (delete) {
1685 *err = security_xfrm_policy_delete(pol->security);
1686 if (*err) {
1687 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1688 return pol;
David S. Miller2518c7c2006-08-24 04:45:07 -07001689 }
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001690 __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001692 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
Florian Westphal9d0380d2016-08-11 15:17:59 +02001694 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001696 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -07001697 xfrm_policy_kill(ret);
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001698 if (bin && delete)
1699 xfrm_policy_inexact_prune_bin(bin);
David S. Miller2518c7c2006-08-24 04:45:07 -07001700 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
Trent Jaegerdf718372005-12-13 23:12:27 -08001702EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Steffen Klassert7e652642018-06-12 14:07:07 +02001704struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u32 if_id,
1705 u8 type, int dir, u32 id, int delete,
1706 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
David S. Miller2518c7c2006-08-24 04:45:07 -07001708 struct xfrm_policy *pol, *ret;
1709 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Herbert Xub5505c62007-05-14 02:15:47 -07001711 *err = -ENOENT;
1712 if (xfrm_policy_id2dir(id) != dir)
1713 return NULL;
1714
Eric Parisef41aaa2007-03-07 15:37:58 -08001715 *err = 0;
Florian Westphal9d0380d2016-08-11 15:17:59 +02001716 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -08001717 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -07001718 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001719 hlist_for_each_entry(pol, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001720 if (pol->type == type && pol->index == id &&
Steffen Klassert7e652642018-06-12 14:07:07 +02001721 pol->if_id == if_id &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001722 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001724 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001725 *err = security_xfrm_policy_delete(
1726 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -08001727 if (*err) {
Florian Westphal9d0380d2016-08-11 15:17:59 +02001728 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Eric Parisef41aaa2007-03-07 15:37:58 -08001729 return pol;
1730 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -08001731 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -07001732 }
1733 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 break;
1735 }
1736 }
Florian Westphal9d0380d2016-08-11 15:17:59 +02001737 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001739 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -07001740 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -07001741 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742}
1743EXPORT_SYMBOL(xfrm_policy_byid);
1744
Joy Latten4aa2e622007-06-04 19:05:57 -04001745#ifdef CONFIG_SECURITY_NETWORK_XFRM
1746static inline int
Tetsuo Handa2e710292014-04-22 21:48:30 +09001747xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
Florian Westphalceb159e2018-11-07 23:00:32 +01001749 struct xfrm_policy *pol;
1750 int err = 0;
Joy Latten4aa2e622007-06-04 19:05:57 -04001751
Florian Westphalceb159e2018-11-07 23:00:32 +01001752 list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1753 if (pol->walk.dead ||
1754 xfrm_policy_id2dir(pol->index) >= XFRM_POLICY_MAX ||
1755 pol->type != type)
1756 continue;
Joy Latten4aa2e622007-06-04 19:05:57 -04001757
Florian Westphalceb159e2018-11-07 23:00:32 +01001758 err = security_xfrm_policy_delete(pol->security);
1759 if (err) {
1760 xfrm_audit_policy_delete(pol, 0, task_valid);
1761 return err;
Joy Latten4aa2e622007-06-04 19:05:57 -04001762 }
1763 }
1764 return err;
1765}
1766#else
1767static inline int
Tetsuo Handa2e710292014-04-22 21:48:30 +09001768xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
Joy Latten4aa2e622007-06-04 19:05:57 -04001769{
1770 return 0;
1771}
1772#endif
1773
Tetsuo Handa2e710292014-04-22 21:48:30 +09001774int xfrm_policy_flush(struct net *net, u8 type, bool task_valid)
Joy Latten4aa2e622007-06-04 19:05:57 -04001775{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001776 int dir, err = 0, cnt = 0;
Florian Westphalceb159e2018-11-07 23:00:32 +01001777 struct xfrm_policy *pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Florian Westphal9d0380d2016-08-11 15:17:59 +02001779 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -04001780
Tetsuo Handa2e710292014-04-22 21:48:30 +09001781 err = xfrm_policy_flush_secctx_check(net, type, task_valid);
Joy Latten4aa2e622007-06-04 19:05:57 -04001782 if (err)
1783 goto out;
1784
Florian Westphalceb159e2018-11-07 23:00:32 +01001785again:
1786 list_for_each_entry(pol, &net->xfrm.policy_all, walk.all) {
1787 dir = xfrm_policy_id2dir(pol->index);
1788 if (pol->walk.dead ||
1789 dir >= XFRM_POLICY_MAX ||
1790 pol->type != type)
1791 continue;
David S. Miller2518c7c2006-08-24 04:45:07 -07001792
Florian Westphalceb159e2018-11-07 23:00:32 +01001793 __xfrm_policy_unlink(pol, dir);
1794 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
1795 cnt++;
1796 xfrm_audit_policy_delete(pol, 1, task_valid);
1797 xfrm_policy_kill(pol);
1798 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
1799 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
Florian Westphal24969fa2018-11-07 23:00:35 +01001801 if (cnt)
1802 __xfrm_policy_inexact_flush(net);
1803 else
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001804 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -04001805out:
Florian Westphal9d0380d2016-08-11 15:17:59 +02001806 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -04001807 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809EXPORT_SYMBOL(xfrm_policy_flush);
1810
Alexey Dobriyancdcbca72008-11-25 17:34:49 -08001811int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -08001812 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 void *data)
1814{
Herbert Xu12a169e2008-10-01 07:03:24 -07001815 struct xfrm_policy *pol;
1816 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -08001817 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Timo Teras4c563f72008-02-28 21:31:08 -08001819 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
1820 walk->type != XFRM_POLICY_TYPE_ANY)
1821 return -EINVAL;
1822
Herbert Xu12a169e2008-10-01 07:03:24 -07001823 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -08001824 return 0;
1825
Florian Westphal9d0380d2016-08-11 15:17:59 +02001826 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001827 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -08001828 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -07001829 else
Li RongQing80077702015-04-22 17:09:54 +08001830 x = list_first_entry(&walk->walk.all,
1831 struct xfrm_policy_walk_entry, all);
1832
Alexey Dobriyancdcbca72008-11-25 17:34:49 -08001833 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -07001834 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -08001835 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -07001836 pol = container_of(x, struct xfrm_policy, walk);
1837 if (walk->type != XFRM_POLICY_TYPE_ANY &&
1838 walk->type != pol->type)
1839 continue;
1840 error = func(pol, xfrm_policy_id2dir(pol->index),
1841 walk->seq, data);
1842 if (error) {
1843 list_move_tail(&walk->walk.all, &x->all);
1844 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -08001845 }
Herbert Xu12a169e2008-10-01 07:03:24 -07001846 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
Herbert Xu12a169e2008-10-01 07:03:24 -07001848 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -08001849 error = -ENOENT;
1850 goto out;
1851 }
Herbert Xu12a169e2008-10-01 07:03:24 -07001852 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853out:
Florian Westphal9d0380d2016-08-11 15:17:59 +02001854 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return error;
1856}
1857EXPORT_SYMBOL(xfrm_policy_walk);
1858
Herbert Xu12a169e2008-10-01 07:03:24 -07001859void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
1860{
1861 INIT_LIST_HEAD(&walk->walk.all);
1862 walk->walk.dead = 1;
1863 walk->type = type;
1864 walk->seq = 0;
1865}
1866EXPORT_SYMBOL(xfrm_policy_walk_init);
1867
Fan Du283bc9f2013-11-07 17:47:50 +08001868void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net)
Herbert Xu12a169e2008-10-01 07:03:24 -07001869{
1870 if (list_empty(&walk->walk.all))
1871 return;
1872
Florian Westphal9d0380d2016-08-11 15:17:59 +02001873 spin_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME where is net? */
Herbert Xu12a169e2008-10-01 07:03:24 -07001874 list_del(&walk->walk.all);
Florian Westphal9d0380d2016-08-11 15:17:59 +02001875 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001876}
1877EXPORT_SYMBOL(xfrm_policy_walk_done);
1878
James Morris134b0fc2006-10-05 15:42:27 -05001879/*
1880 * Find policy to apply to this flow.
1881 *
1882 * Returns 0 if policy found, else an -errno.
1883 */
David S. Millerf299d552011-02-24 01:23:30 -05001884static int xfrm_policy_match(const struct xfrm_policy *pol,
1885 const struct flowi *fl,
Benedict Wongbc56b332018-07-19 10:50:44 -07001886 u8 type, u16 family, int dir, u32 if_id)
David S. Miller2518c7c2006-08-24 04:45:07 -07001887{
David S. Millerf299d552011-02-24 01:23:30 -05001888 const struct xfrm_selector *sel = &pol->selector;
David S. Millerbc9b35a2012-05-15 15:04:57 -04001889 int ret = -ESRCH;
1890 bool match;
David S. Miller2518c7c2006-08-24 04:45:07 -07001891
1892 if (pol->family != family ||
Benedict Wongbc56b332018-07-19 10:50:44 -07001893 pol->if_id != if_id ||
David S. Miller1d28f422011-03-12 00:29:39 -05001894 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -07001895 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -05001896 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -07001897
1898 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -05001899 if (match)
David S. Miller1d28f422011-03-12 00:29:39 -05001900 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001901 dir);
James Morris134b0fc2006-10-05 15:42:27 -05001902 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -07001903}
1904
Florian Westphal9cf545e2018-11-07 23:00:38 +01001905static struct xfrm_pol_inexact_node *
1906xfrm_policy_lookup_inexact_addr(const struct rb_root *r,
1907 seqcount_t *count,
1908 const xfrm_address_t *addr, u16 family)
1909{
1910 const struct rb_node *parent;
1911 int seq;
1912
1913again:
1914 seq = read_seqcount_begin(count);
1915
1916 parent = rcu_dereference_raw(r->rb_node);
1917 while (parent) {
1918 struct xfrm_pol_inexact_node *node;
1919 int delta;
1920
1921 node = rb_entry(parent, struct xfrm_pol_inexact_node, node);
1922
1923 delta = xfrm_policy_addr_delta(addr, &node->addr,
1924 node->prefixlen, family);
1925 if (delta < 0) {
1926 parent = rcu_dereference_raw(parent->rb_left);
1927 continue;
1928 } else if (delta > 0) {
1929 parent = rcu_dereference_raw(parent->rb_right);
1930 continue;
1931 }
1932
1933 return node;
1934 }
1935
1936 if (read_seqcount_retry(count, seq))
1937 goto again;
1938
1939 return NULL;
1940}
1941
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001942static bool
1943xfrm_policy_find_inexact_candidates(struct xfrm_pol_inexact_candidates *cand,
1944 struct xfrm_pol_inexact_bin *b,
1945 const xfrm_address_t *saddr,
1946 const xfrm_address_t *daddr)
1947{
Florian Westphal9cf545e2018-11-07 23:00:38 +01001948 struct xfrm_pol_inexact_node *n;
1949 u16 family;
1950
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001951 if (!b)
1952 return false;
1953
Florian Westphal9cf545e2018-11-07 23:00:38 +01001954 family = b->k.family;
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001955 memset(cand, 0, sizeof(*cand));
1956 cand->res[XFRM_POL_CAND_ANY] = &b->hhead;
Florian Westphal9cf545e2018-11-07 23:00:38 +01001957
1958 n = xfrm_policy_lookup_inexact_addr(&b->root_d, &b->count, daddr,
1959 family);
Florian Westphal6ac098b2018-11-07 23:00:41 +01001960 if (n) {
Florian Westphal9cf545e2018-11-07 23:00:38 +01001961 cand->res[XFRM_POL_CAND_DADDR] = &n->hhead;
Florian Westphal6ac098b2018-11-07 23:00:41 +01001962 n = xfrm_policy_lookup_inexact_addr(&n->root, &b->count, saddr,
1963 family);
1964 if (n)
1965 cand->res[XFRM_POL_CAND_BOTH] = &n->hhead;
1966 }
Florian Westphal9cf545e2018-11-07 23:00:38 +01001967
Florian Westphal64a09a72018-11-07 23:00:40 +01001968 n = xfrm_policy_lookup_inexact_addr(&b->root_s, &b->count, saddr,
1969 family);
1970 if (n)
1971 cand->res[XFRM_POL_CAND_SADDR] = &n->hhead;
1972
Florian Westphal6be3b0d2018-11-07 23:00:37 +01001973 return true;
1974}
1975
Florian Westphal24969fa2018-11-07 23:00:35 +01001976static struct xfrm_pol_inexact_bin *
Florian Westphalb5fe22e2018-11-07 23:00:36 +01001977xfrm_policy_inexact_lookup_rcu(struct net *net, u8 type, u16 family,
1978 u8 dir, u32 if_id)
Florian Westphal24969fa2018-11-07 23:00:35 +01001979{
1980 struct xfrm_pol_inexact_key k = {
1981 .family = family,
1982 .type = type,
1983 .dir = dir,
Florian Westphalb5fe22e2018-11-07 23:00:36 +01001984 .if_id = if_id,
Florian Westphal24969fa2018-11-07 23:00:35 +01001985 };
1986
1987 write_pnet(&k.net, net);
1988
1989 return rhashtable_lookup(&xfrm_policy_inexact_table, &k,
1990 xfrm_pol_inexact_params);
1991}
1992
1993static struct xfrm_pol_inexact_bin *
Florian Westphalb5fe22e2018-11-07 23:00:36 +01001994xfrm_policy_inexact_lookup(struct net *net, u8 type, u16 family,
1995 u8 dir, u32 if_id)
Florian Westphal24969fa2018-11-07 23:00:35 +01001996{
1997 struct xfrm_pol_inexact_bin *bin;
1998
1999 lockdep_assert_held(&net->xfrm.xfrm_policy_lock);
2000
2001 rcu_read_lock();
Florian Westphalb5fe22e2018-11-07 23:00:36 +01002002 bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
Florian Westphal24969fa2018-11-07 23:00:35 +01002003 rcu_read_unlock();
2004
2005 return bin;
2006}
2007
Florian Westphal6be3b0d2018-11-07 23:00:37 +01002008static struct xfrm_policy *
2009__xfrm_policy_eval_candidates(struct hlist_head *chain,
2010 struct xfrm_policy *prefer,
2011 const struct flowi *fl,
2012 u8 type, u16 family, int dir, u32 if_id)
2013{
2014 u32 priority = prefer ? prefer->priority : ~0u;
2015 struct xfrm_policy *pol;
2016
2017 if (!chain)
2018 return NULL;
2019
2020 hlist_for_each_entry_rcu(pol, chain, bydst) {
2021 int err;
2022
2023 if (pol->priority > priority)
2024 break;
2025
2026 err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
2027 if (err) {
2028 if (err != -ESRCH)
2029 return ERR_PTR(err);
2030
2031 continue;
2032 }
2033
2034 if (prefer) {
2035 /* matches. Is it older than *prefer? */
2036 if (pol->priority == priority &&
2037 prefer->pos < pol->pos)
2038 return prefer;
2039 }
2040
2041 return pol;
2042 }
2043
2044 return NULL;
2045}
2046
2047static struct xfrm_policy *
2048xfrm_policy_eval_candidates(struct xfrm_pol_inexact_candidates *cand,
2049 struct xfrm_policy *prefer,
2050 const struct flowi *fl,
2051 u8 type, u16 family, int dir, u32 if_id)
2052{
2053 struct xfrm_policy *tmp;
2054 int i;
2055
2056 for (i = 0; i < ARRAY_SIZE(cand->res); i++) {
2057 tmp = __xfrm_policy_eval_candidates(cand->res[i],
2058 prefer,
2059 fl, type, family, dir,
2060 if_id);
2061 if (!tmp)
2062 continue;
2063
2064 if (IS_ERR(tmp))
2065 return tmp;
2066 prefer = tmp;
2067 }
2068
2069 return prefer;
2070}
2071
Alexey Dobriyan52479b62008-11-25 17:35:18 -08002072static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -08002073 const struct flowi *fl,
Benedict Wongbc56b332018-07-19 10:50:44 -07002074 u16 family, u8 dir,
2075 u32 if_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Florian Westphal6be3b0d2018-11-07 23:00:37 +01002077 struct xfrm_pol_inexact_candidates cand;
David S. Miller0b597e72011-02-24 01:22:48 -05002078 const xfrm_address_t *daddr, *saddr;
Florian Westphal24969fa2018-11-07 23:00:35 +01002079 struct xfrm_pol_inexact_bin *bin;
2080 struct xfrm_policy *pol, *ret;
David S. Miller2518c7c2006-08-24 04:45:07 -07002081 struct hlist_head *chain;
Florian Westphal30846092016-08-11 15:17:54 +02002082 unsigned int sequence;
Florian Westphal24969fa2018-11-07 23:00:35 +01002083 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -07002084
2085 daddr = xfrm_flowi_daddr(fl, family);
2086 saddr = xfrm_flowi_saddr(fl, family);
2087 if (unlikely(!daddr || !saddr))
2088 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Florian Westphala7c442472016-08-11 15:17:56 +02002090 rcu_read_lock();
Florian Westphal30846092016-08-11 15:17:54 +02002091 retry:
2092 do {
2093 sequence = read_seqcount_begin(&xfrm_policy_hash_generation);
2094 chain = policy_hash_direct(net, daddr, saddr, family, dir);
2095 } while (read_seqcount_retry(&xfrm_policy_hash_generation, sequence));
2096
David S. Miller2518c7c2006-08-24 04:45:07 -07002097 ret = NULL;
Florian Westphala5eefc12016-08-11 15:17:52 +02002098 hlist_for_each_entry_rcu(pol, chain, bydst) {
Benedict Wongbc56b332018-07-19 10:50:44 -07002099 err = xfrm_policy_match(pol, fl, type, family, dir, if_id);
James Morris134b0fc2006-10-05 15:42:27 -05002100 if (err) {
2101 if (err == -ESRCH)
2102 continue;
2103 else {
2104 ret = ERR_PTR(err);
2105 goto fail;
2106 }
2107 } else {
David S. Milleracba48e2006-08-25 15:46:46 -07002108 ret = pol;
David S. Milleracba48e2006-08-25 15:46:46 -07002109 break;
2110 }
2111 }
Florian Westphalb5fe22e2018-11-07 23:00:36 +01002112 bin = xfrm_policy_inexact_lookup_rcu(net, type, family, dir, if_id);
Florian Westphal6be3b0d2018-11-07 23:00:37 +01002113 if (!bin || !xfrm_policy_find_inexact_candidates(&cand, bin, saddr,
2114 daddr))
Florian Westphal24969fa2018-11-07 23:00:35 +01002115 goto skip_inexact;
Li RongQing8faf4912015-05-14 11:16:59 +08002116
Florian Westphal6be3b0d2018-11-07 23:00:37 +01002117 pol = xfrm_policy_eval_candidates(&cand, ret, fl, type,
2118 family, dir, if_id);
2119 if (pol) {
2120 ret = pol;
2121 if (IS_ERR(pol))
2122 goto fail;
David S. Miller2518c7c2006-08-24 04:45:07 -07002123 }
Li RongQing586f2eb2015-04-30 17:13:41 +08002124
Florian Westphal24969fa2018-11-07 23:00:35 +01002125skip_inexact:
Florian Westphal30846092016-08-11 15:17:54 +02002126 if (read_seqcount_retry(&xfrm_policy_hash_generation, sequence))
2127 goto retry;
2128
Florian Westphale37cc8ad2016-08-11 15:17:55 +02002129 if (ret && !xfrm_pol_hold_rcu(ret))
2130 goto retry;
James Morris134b0fc2006-10-05 15:42:27 -05002131fail:
Florian Westphala7c442472016-08-11 15:17:56 +02002132 rcu_read_unlock();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002133
David S. Miller2518c7c2006-08-24 04:45:07 -07002134 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002135}
2136
Benedict Wongbc56b332018-07-19 10:50:44 -07002137static struct xfrm_policy *xfrm_policy_lookup(struct net *net,
2138 const struct flowi *fl,
2139 u16 family, u8 dir, u32 if_id)
Timo Teräs80c802f2010-04-07 00:30:05 +00002140{
2141#ifdef CONFIG_XFRM_SUB_POLICY
2142 struct xfrm_policy *pol;
2143
Benedict Wongbc56b332018-07-19 10:50:44 -07002144 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family,
2145 dir, if_id);
Timo Teräs80c802f2010-04-07 00:30:05 +00002146 if (pol != NULL)
2147 return pol;
2148#endif
Benedict Wongbc56b332018-07-19 10:50:44 -07002149 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family,
2150 dir, if_id);
Timo Teräs80c802f2010-04-07 00:30:05 +00002151}
2152
Eric Dumazet6f9c9612015-09-25 07:39:10 -07002153static struct xfrm_policy *xfrm_sk_policy_lookup(const struct sock *sk, int dir,
Benedict Wongbc56b332018-07-19 10:50:44 -07002154 const struct flowi *fl,
2155 u16 family, u32 if_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 struct xfrm_policy *pol;
2158
Eric Dumazetd188ba82015-12-08 07:22:02 -08002159 rcu_read_lock();
Florian Westphalae337862016-08-11 15:17:57 +02002160 again:
Eric Dumazetd188ba82015-12-08 07:22:02 -08002161 pol = rcu_dereference(sk->sk_policy[dir]);
2162 if (pol != NULL) {
Steffen Klassertddc47e42017-11-29 06:53:55 +01002163 bool match;
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002164 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08002165
Steffen Klassertddc47e42017-11-29 06:53:55 +01002166 if (pol->family != family) {
2167 pol = NULL;
2168 goto out;
2169 }
2170
2171 match = xfrm_selector_match(&pol->selector, fl, family);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002172 if (match) {
Steffen Klassert7e652642018-06-12 14:07:07 +02002173 if ((sk->sk_mark & pol->mark.m) != pol->mark.v ||
Benedict Wongbc56b332018-07-19 10:50:44 -07002174 pol->if_id != if_id) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00002175 pol = NULL;
2176 goto out;
2177 }
Paul Moore03e1ad72008-04-12 19:07:52 -07002178 err = security_xfrm_policy_lookup(pol->security,
David S. Miller1d28f422011-03-12 00:29:39 -05002179 fl->flowi_secid,
Florian Westphalaff669b2017-07-17 13:57:23 +02002180 dir);
Florian Westphal330e8322016-11-17 13:21:46 +01002181 if (!err) {
2182 if (!xfrm_pol_hold_rcu(pol))
2183 goto again;
2184 } else if (err == -ESRCH) {
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002185 pol = NULL;
Florian Westphal330e8322016-11-17 13:21:46 +01002186 } else {
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002187 pol = ERR_PTR(err);
Florian Westphal330e8322016-11-17 13:21:46 +01002188 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002189 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 pol = NULL;
2191 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00002192out:
Eric Dumazetd188ba82015-12-08 07:22:02 -08002193 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 return pol;
2195}
2196
2197static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
2198{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08002199 struct net *net = xp_net(pol);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002200
Alexey Dobriyan98806f72008-11-25 17:29:47 -08002201 list_add(&pol->walk.all, &net->xfrm.policy_all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08002202 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 xfrm_pol_hold(pol);
2204}
2205
2206static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
2207 int dir)
2208{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08002209 struct net *net = xp_net(pol);
2210
Herbert Xu53c2e282014-11-13 17:09:49 +08002211 if (list_empty(&pol->walk.all))
David S. Miller2518c7c2006-08-24 04:45:07 -07002212 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Herbert Xu53c2e282014-11-13 17:09:49 +08002214 /* Socket policies are not hashed. */
2215 if (!hlist_unhashed(&pol->bydst)) {
Florian Westphala5eefc12016-08-11 15:17:52 +02002216 hlist_del_rcu(&pol->bydst);
Florian Westphal24969fa2018-11-07 23:00:35 +01002217 hlist_del_init(&pol->bydst_inexact_list);
Herbert Xu53c2e282014-11-13 17:09:49 +08002218 hlist_del(&pol->byidx);
2219 }
2220
2221 list_del_init(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08002222 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07002223
2224 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225}
2226
Herbert Xu53c2e282014-11-13 17:09:49 +08002227static void xfrm_sk_policy_link(struct xfrm_policy *pol, int dir)
2228{
2229 __xfrm_policy_link(pol, XFRM_POLICY_MAX + dir);
2230}
2231
2232static void xfrm_sk_policy_unlink(struct xfrm_policy *pol, int dir)
2233{
2234 __xfrm_policy_unlink(pol, XFRM_POLICY_MAX + dir);
2235}
2236
Herbert Xu4666faa2005-06-18 22:43:22 -07002237int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Fan Du283bc9f2013-11-07 17:47:50 +08002239 struct net *net = xp_net(pol);
2240
Florian Westphal9d0380d2016-08-11 15:17:59 +02002241 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 pol = __xfrm_policy_unlink(pol, dir);
Florian Westphal9d0380d2016-08-11 15:17:59 +02002243 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07002246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
Herbert Xu4666faa2005-06-18 22:43:22 -07002248 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249}
David S. Millera70fcb02006-03-20 19:18:52 -08002250EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
2253{
Lorenzo Colittibe8f8282017-11-20 19:26:02 +09002254 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 struct xfrm_policy *old_pol;
2256
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002257#ifdef CONFIG_XFRM_SUB_POLICY
2258 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
2259 return -EINVAL;
2260#endif
2261
Florian Westphal9d0380d2016-08-11 15:17:59 +02002262 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Eric Dumazetd188ba82015-12-08 07:22:02 -08002263 old_pol = rcu_dereference_protected(sk->sk_policy[dir],
2264 lockdep_is_held(&net->xfrm.xfrm_policy_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (pol) {
Arnd Bergmann386c5682018-07-11 12:19:13 +02002266 pol->curlft.add_time = ktime_get_real_seconds();
Fan Due682adf02013-11-07 17:47:48 +08002267 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir, 0);
Herbert Xu53c2e282014-11-13 17:09:49 +08002268 xfrm_sk_policy_link(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
Eric Dumazetd188ba82015-12-08 07:22:02 -08002270 rcu_assign_pointer(sk->sk_policy[dir], pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002271 if (old_pol) {
2272 if (pol)
2273 xfrm_policy_requeue(old_pol, pol);
2274
Timo Teräsea2dea92010-03-31 00:17:05 +00002275 /* Unlinking succeeds always. This is the only function
2276 * allowed to delete or replace socket policy.
2277 */
Herbert Xu53c2e282014-11-13 17:09:49 +08002278 xfrm_sk_policy_unlink(old_pol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002279 }
Florian Westphal9d0380d2016-08-11 15:17:59 +02002280 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 if (old_pol) {
2283 xfrm_policy_kill(old_pol);
2284 }
2285 return 0;
2286}
2287
David S. Millerd3e40a92011-02-24 01:25:41 -05002288static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08002290 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Fan Du283bc9f2013-11-07 17:47:50 +08002291 struct net *net = xp_net(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 if (newp) {
2294 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07002295 if (security_xfrm_policy_clone(old->security,
2296 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08002297 kfree(newp);
2298 return NULL; /* ENOMEM */
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 newp->lft = old->lft;
2301 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08002302 newp->mark = old->mark;
Steffen Klassert7e652642018-06-12 14:07:07 +02002303 newp->if_id = old->if_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 newp->action = old->action;
2305 newp->flags = old->flags;
2306 newp->xfrm_nr = old->xfrm_nr;
2307 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002308 newp->type = old->type;
Herbert Xu0e74aa12017-11-10 14:14:06 +11002309 newp->family = old->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 memcpy(newp->xfrm_vec, old->xfrm_vec,
2311 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
Florian Westphal9d0380d2016-08-11 15:17:59 +02002312 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu53c2e282014-11-13 17:09:49 +08002313 xfrm_sk_policy_link(newp, dir);
Florian Westphal9d0380d2016-08-11 15:17:59 +02002314 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 xfrm_pol_put(newp);
2316 }
2317 return newp;
2318}
2319
Eric Dumazetd188ba82015-12-08 07:22:02 -08002320int __xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
Eric Dumazetd188ba82015-12-08 07:22:02 -08002322 const struct xfrm_policy *p;
2323 struct xfrm_policy *np;
2324 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Eric Dumazetd188ba82015-12-08 07:22:02 -08002326 rcu_read_lock();
2327 for (i = 0; i < 2; i++) {
2328 p = rcu_dereference(osk->sk_policy[i]);
2329 if (p) {
2330 np = clone_policy(p, i);
2331 if (unlikely(!np)) {
2332 ret = -ENOMEM;
2333 break;
2334 }
2335 rcu_assign_pointer(sk->sk_policy[i], np);
2336 }
2337 }
2338 rcu_read_unlock();
2339 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340}
2341
Patrick McHardya1e59ab2006-09-19 12:57:34 -07002342static int
David Ahern42a7b322015-08-10 16:58:11 -06002343xfrm_get_saddr(struct net *net, int oif, xfrm_address_t *local,
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002344 xfrm_address_t *remote, unsigned short family, u32 mark)
Patrick McHardya1e59ab2006-09-19 12:57:34 -07002345{
2346 int err;
Florian Westphal37b10382017-02-07 15:00:19 +01002347 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07002348
2349 if (unlikely(afinfo == NULL))
2350 return -EINVAL;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002351 err = afinfo->get_saddr(net, oif, local, remote, mark);
Florian Westphalbdba9fe2017-02-07 15:00:18 +01002352 rcu_read_unlock();
Patrick McHardya1e59ab2006-09-19 12:57:34 -07002353 return err;
2354}
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356/* Resolve list of templates for the flow, given policy. */
2357
2358static int
David S. Millera6c2e612011-02-22 18:35:39 -08002359xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
2360 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08002362 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 int nx;
2364 int i, error;
Steffen Klassert94802152017-11-15 06:40:57 +01002365 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
2366 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07002367 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Weilong Chen9b7a7872013-12-24 09:43:46 +08002369 for (nx = 0, i = 0; i < policy->xfrm_nr; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 struct xfrm_state *x;
Steffen Klassert94802152017-11-15 06:40:57 +01002371 xfrm_address_t *remote = daddr;
2372 xfrm_address_t *local = saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
2374
Steffen Klassert94802152017-11-15 06:40:57 +01002375 if (tmpl->mode == XFRM_MODE_TUNNEL ||
2376 tmpl->mode == XFRM_MODE_BEET) {
2377 remote = &tmpl->id.daddr;
2378 local = &tmpl->saddr;
2379 if (xfrm_addr_any(local, tmpl->encap_family)) {
2380 error = xfrm_get_saddr(net, fl->flowi_oif,
2381 &tmp, remote,
2382 tmpl->encap_family, 0);
2383 if (error)
2384 goto fail;
2385 local = &tmp;
2386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
2388
Benedict Wongbc56b332018-07-19 10:50:44 -07002389 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error,
2390 family, policy->if_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 if (x && x->km.state == XFRM_STATE_VALID) {
2393 xfrm[nx++] = x;
Steffen Klassert94802152017-11-15 06:40:57 +01002394 daddr = remote;
2395 saddr = local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 continue;
2397 }
2398 if (x) {
2399 error = (x->km.state == XFRM_STATE_ERROR ?
2400 -EINVAL : -EAGAIN);
2401 xfrm_state_put(x);
Weilong Chen420545692013-12-24 09:43:49 +08002402 } else if (error == -ESRCH) {
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00002403 error = -EAGAIN;
Weilong Chen420545692013-12-24 09:43:49 +08002404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 if (!tmpl->optional)
2407 goto fail;
2408 }
2409 return nx;
2410
2411fail:
Weilong Chen9b7a7872013-12-24 09:43:46 +08002412 for (nx--; nx >= 0; nx--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 xfrm_state_put(xfrm[nx]);
2414 return error;
2415}
2416
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002417static int
David S. Millera6c2e612011-02-22 18:35:39 -08002418xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
2419 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002420{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002421 struct xfrm_state *tp[XFRM_MAX_DEPTH];
2422 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002423 int cnx = 0;
2424 int error;
2425 int ret;
2426 int i;
2427
2428 for (i = 0; i < npols; i++) {
2429 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
2430 error = -ENOBUFS;
2431 goto fail;
2432 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002433
2434 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002435 if (ret < 0) {
2436 error = ret;
2437 goto fail;
2438 } else
2439 cnx += ret;
2440 }
2441
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002442 /* found states are sorted for outbound processing */
2443 if (npols > 1)
2444 xfrm_state_sort(xfrm, tpp, cnx, family);
2445
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002446 return cnx;
2447
2448 fail:
Weilong Chen9b7a7872013-12-24 09:43:46 +08002449 for (cnx--; cnx >= 0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002450 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002451 return error;
2452
2453}
2454
Florian Westphalf5e2bb42017-02-07 15:00:14 +01002455static int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08002456{
Florian Westphalf24ea522019-04-16 16:44:37 +02002457 if (family == AF_INET)
2458 return IPTOS_RT_MASK & fl->u.ip4.flowi4_tos;
Herbert Xu25ee3282007-12-11 09:32:34 -08002459
Florian Westphalf24ea522019-04-16 16:44:37 +02002460 return 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08002461}
2462
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002463static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08002464{
Florian Westphal37b10382017-02-07 15:00:19 +01002465 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002466 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08002467 struct xfrm_dst *xdst;
2468
2469 if (!afinfo)
2470 return ERR_PTR(-EINVAL);
2471
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002472 switch (family) {
2473 case AF_INET:
2474 dst_ops = &net->xfrm.xfrm4_dst_ops;
2475 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002476#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002477 case AF_INET6:
2478 dst_ops = &net->xfrm.xfrm6_dst_ops;
2479 break;
2480#endif
2481 default:
2482 BUG();
2483 }
Wei Wangb2a9c0e2017-06-17 10:42:41 -07002484 xdst = dst_alloc(dst_ops, NULL, 1, DST_OBSOLETE_NONE, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08002485
Madalin Bucurd4cae562011-09-26 07:04:36 +00002486 if (likely(xdst)) {
Steffen Klassert141e3692012-07-05 23:39:34 +00002487 struct dst_entry *dst = &xdst->u.dst;
2488
2489 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
Madalin Bucurd4cae562011-09-26 07:04:36 +00002490 } else
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08002491 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00002492
Florian Westphalbdba9fe2017-02-07 15:00:18 +01002493 rcu_read_unlock();
Madalin Bucurd4cae562011-09-26 07:04:36 +00002494
Herbert Xu25ee3282007-12-11 09:32:34 -08002495 return xdst;
2496}
2497
Florian Westphal2e8b4aa2019-04-16 16:44:38 +02002498static void xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
2499 int nfheader_len)
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08002500{
Florian Westphal2e8b4aa2019-04-16 16:44:38 +02002501 if (dst->ops->family == AF_INET6) {
2502 struct rt6_info *rt = (struct rt6_info *)dst;
2503 path->path_cookie = rt6_get_cookie(rt);
2504 path->u.rt6.rt6i_nfheader_len = nfheader_len;
2505 }
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08002506}
2507
Herbert Xu87c1e122010-03-02 02:51:56 +00002508static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08002509 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08002510{
Florian Westphal37b10382017-02-07 15:00:19 +01002511 const struct xfrm_policy_afinfo *afinfo =
Herbert Xu25ee3282007-12-11 09:32:34 -08002512 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
2513 int err;
2514
2515 if (!afinfo)
2516 return -EINVAL;
2517
Herbert Xu87c1e122010-03-02 02:51:56 +00002518 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08002519
Florian Westphalbdba9fe2017-02-07 15:00:18 +01002520 rcu_read_unlock();
Herbert Xu25ee3282007-12-11 09:32:34 -08002521
2522 return err;
2523}
2524
Timo Teräs80c802f2010-04-07 00:30:05 +00002525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526/* Allocate chain of dst_entry's, attach known xfrm's, calculate
2527 * all the metrics... Shortly, bundle a bundle.
2528 */
2529
Herbert Xu25ee3282007-12-11 09:32:34 -08002530static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
David Miller54920932017-11-28 15:41:01 -05002531 struct xfrm_state **xfrm,
2532 struct xfrm_dst **bundle,
2533 int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08002534 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08002535 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
Florian Westphal733a5fa2019-03-29 21:16:30 +01002537 const struct xfrm_state_afinfo *afinfo;
Florian Westphal4c145dc2019-03-29 21:16:31 +01002538 const struct xfrm_mode *inner_mode;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002539 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08002540 unsigned long now = jiffies;
2541 struct net_device *dev;
David Miller45b018be2017-11-28 15:40:28 -05002542 struct xfrm_dst *xdst_prev = NULL;
2543 struct xfrm_dst *xdst0 = NULL;
Herbert Xu25ee3282007-12-11 09:32:34 -08002544 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08002546 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08002547 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08002548 int trailer_len = 0;
2549 int tos;
2550 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09002551 xfrm_address_t saddr, daddr;
2552
2553 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08002554
2555 tos = xfrm_get_tos(fl, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08002556
2557 dst_hold(dst);
2558
2559 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002560 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08002561 struct dst_entry *dst1 = &xdst->u.dst;
2562
2563 err = PTR_ERR(xdst);
2564 if (IS_ERR(xdst)) {
2565 dst_release(dst);
2566 goto put_states;
2567 }
2568
David Miller54920932017-11-28 15:41:01 -05002569 bundle[i] = xdst;
David Miller45b018be2017-11-28 15:40:28 -05002570 if (!xdst_prev)
2571 xdst0 = xdst;
David Miller10a7ef32017-10-10 20:59:38 -07002572 else
2573 /* Ref count is taken during xfrm_alloc_dst()
2574 * No need to do dst_clone() on dst1
2575 */
David Miller45b018be2017-11-28 15:40:28 -05002576 xfrm_dst_set_child(xdst_prev, &xdst->u.dst);
David Miller10a7ef32017-10-10 20:59:38 -07002577
Steffen Klassert43a4dea2011-05-09 19:36:38 +00002578 if (xfrm[i]->sel.family == AF_UNSPEC) {
2579 inner_mode = xfrm_ip2inner_mode(xfrm[i],
2580 xfrm_af2proto(family));
2581 if (!inner_mode) {
2582 err = -EAFNOSUPPORT;
2583 dst_release(dst);
2584 goto put_states;
2585 }
2586 } else
Florian Westphalc9500d72019-03-29 21:16:32 +01002587 inner_mode = &xfrm[i]->inner_mode;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00002588
Herbert Xu25ee3282007-12-11 09:32:34 -08002589 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08002590 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08002591
2592 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
Benedict Wonge2612cd2019-01-14 11:24:38 -08002593 __u32 mark = 0;
2594
2595 if (xfrm[i]->props.smark.v || xfrm[i]->props.smark.m)
2596 mark = xfrm_smark_get(fl->flowi_mark, xfrm[i]);
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002597
Herbert Xu25ee3282007-12-11 09:32:34 -08002598 family = xfrm[i]->props.family;
David Ahern42a7b322015-08-10 16:58:11 -06002599 dst = xfrm_dst_lookup(xfrm[i], tos, fl->flowi_oif,
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002600 &saddr, &daddr, family, mark);
Herbert Xu25ee3282007-12-11 09:32:34 -08002601 err = PTR_ERR(dst);
2602 if (IS_ERR(dst))
2603 goto put_states;
2604 } else
2605 dst_hold(dst);
2606
2607 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00002608 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08002609
David S. Millerf5b0a872012-07-19 12:31:33 -07002610 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
Herbert Xu25ee3282007-12-11 09:32:34 -08002611 dst1->flags |= DST_HOST;
2612 dst1->lastuse = now;
2613
2614 dst1->input = dst_discard;
Florian Westphal733a5fa2019-03-29 21:16:30 +01002615
2616 rcu_read_lock();
2617 afinfo = xfrm_state_afinfo_get_rcu(inner_mode->family);
2618 if (likely(afinfo))
2619 dst1->output = afinfo->output;
2620 else
2621 dst1->output = dst_discard_out;
2622 rcu_read_unlock();
Herbert Xu25ee3282007-12-11 09:32:34 -08002623
David Miller45b018be2017-11-28 15:40:28 -05002624 xdst_prev = xdst;
Herbert Xu25ee3282007-12-11 09:32:34 -08002625
2626 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08002627 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
2628 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08002629 trailer_len += xfrm[i]->props.trailer_len;
2630 }
2631
David Miller45b018be2017-11-28 15:40:28 -05002632 xfrm_dst_set_child(xdst_prev, dst);
David Miller0f6c4802017-11-28 15:40:46 -05002633 xdst0->path = dst;
Herbert Xu25ee3282007-12-11 09:32:34 -08002634
2635 err = -ENODEV;
2636 dev = dst->dev;
2637 if (!dev)
2638 goto free_dst;
2639
David Miller45b018be2017-11-28 15:40:28 -05002640 xfrm_init_path(xdst0, dst, nfheader_len);
David Miller54920932017-11-28 15:41:01 -05002641 xfrm_init_pmtu(bundle, nx);
Herbert Xu25ee3282007-12-11 09:32:34 -08002642
David Miller45b018be2017-11-28 15:40:28 -05002643 for (xdst_prev = xdst0; xdst_prev != (struct xfrm_dst *)dst;
2644 xdst_prev = (struct xfrm_dst *) xfrm_dst_child(&xdst_prev->u.dst)) {
2645 err = xfrm_fill_dst(xdst_prev, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08002646 if (err)
2647 goto free_dst;
2648
David Miller45b018be2017-11-28 15:40:28 -05002649 xdst_prev->u.dst.header_len = header_len;
2650 xdst_prev->u.dst.trailer_len = trailer_len;
2651 header_len -= xdst_prev->u.dst.xfrm->props.header_len;
2652 trailer_len -= xdst_prev->u.dst.xfrm->props.trailer_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08002653 }
2654
David Miller45b018be2017-11-28 15:40:28 -05002655 return &xdst0->u.dst;
Herbert Xu25ee3282007-12-11 09:32:34 -08002656
2657put_states:
2658 for (; i < nx; i++)
2659 xfrm_state_put(xfrm[i]);
2660free_dst:
David Miller45b018be2017-11-28 15:40:28 -05002661 if (xdst0)
2662 dst_release_immediate(&xdst0->u.dst);
Steffen Klassert38369f52018-05-31 09:45:18 +02002663
2664 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
2666
David S. Miller73ff93c2011-02-22 18:33:42 -08002667static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00002668 struct xfrm_policy **pols,
2669 int *num_pols, int *num_xfrms)
2670{
2671 int i;
2672
2673 if (*num_pols == 0 || !pols[0]) {
2674 *num_pols = 0;
2675 *num_xfrms = 0;
2676 return 0;
2677 }
2678 if (IS_ERR(pols[0]))
2679 return PTR_ERR(pols[0]);
2680
2681 *num_xfrms = pols[0]->xfrm_nr;
2682
2683#ifdef CONFIG_XFRM_SUB_POLICY
2684 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
2685 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
2686 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
2687 XFRM_POLICY_TYPE_MAIN,
2688 fl, family,
Benedict Wongbc56b332018-07-19 10:50:44 -07002689 XFRM_POLICY_OUT,
2690 pols[0]->if_id);
Timo Teräs80c802f2010-04-07 00:30:05 +00002691 if (pols[1]) {
2692 if (IS_ERR(pols[1])) {
2693 xfrm_pols_put(pols, *num_pols);
2694 return PTR_ERR(pols[1]);
2695 }
Weilong Chen02d08922013-12-24 09:43:48 +08002696 (*num_pols)++;
Timo Teräs80c802f2010-04-07 00:30:05 +00002697 (*num_xfrms) += pols[1]->xfrm_nr;
2698 }
2699 }
2700#endif
2701 for (i = 0; i < *num_pols; i++) {
2702 if (pols[i]->action != XFRM_POLICY_ALLOW) {
2703 *num_xfrms = -1;
2704 break;
2705 }
2706 }
2707
2708 return 0;
2709
2710}
2711
2712static struct xfrm_dst *
2713xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08002714 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00002715 struct dst_entry *dst_orig)
2716{
2717 struct net *net = xp_net(pols[0]);
2718 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
David Miller54920932017-11-28 15:41:01 -05002719 struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
Florian Westphale4db5b62018-06-25 17:26:02 +02002720 struct xfrm_dst *xdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002721 struct dst_entry *dst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002722 int err;
2723
2724 /* Try to instantiate a bundle */
2725 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00002726 if (err <= 0) {
YueHaibing934ffce2018-07-25 16:54:33 +08002727 if (err == 0)
2728 return NULL;
2729
2730 if (err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00002731 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2732 return ERR_PTR(err);
2733 }
2734
David Miller54920932017-11-28 15:41:01 -05002735 dst = xfrm_bundle_create(pols[0], xfrm, bundle, err, fl, dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002736 if (IS_ERR(dst)) {
2737 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
2738 return ERR_CAST(dst);
2739 }
2740
2741 xdst = (struct xfrm_dst *)dst;
2742 xdst->num_xfrms = err;
Timo Teräs80c802f2010-04-07 00:30:05 +00002743 xdst->num_pols = num_pols;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08002744 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002745 xdst->policy_genid = atomic_read(&pols[0]->genid);
2746
2747 return xdst;
2748}
2749
Kees Cookc3aed702017-10-16 17:28:56 -07002750static void xfrm_policy_queue_process(struct timer_list *t)
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002751{
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002752 struct sk_buff *skb;
2753 struct sock *sk;
2754 struct dst_entry *dst;
Kees Cookc3aed702017-10-16 17:28:56 -07002755 struct xfrm_policy *pol = from_timer(pol, t, polq.hold_timer);
Eric W. Biederman3f5312a2015-10-07 16:48:34 -05002756 struct net *net = xp_net(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002757 struct xfrm_policy_queue *pq = &pol->polq;
2758 struct flowi fl;
2759 struct sk_buff_head list;
2760
2761 spin_lock(&pq->hold_queue.lock);
2762 skb = skb_peek(&pq->hold_queue);
Steffen Klassert2bb53e22013-10-08 10:49:51 +02002763 if (!skb) {
2764 spin_unlock(&pq->hold_queue.lock);
2765 goto out;
2766 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002767 dst = skb_dst(skb);
2768 sk = skb->sk;
2769 xfrm_decode_session(skb, &fl, dst->ops->family);
2770 spin_unlock(&pq->hold_queue.lock);
2771
David Miller0f6c4802017-11-28 15:40:46 -05002772 dst_hold(xfrm_dst_path(dst));
Steffen Klassert2471c982018-02-01 11:26:12 +01002773 dst = xfrm_lookup(net, xfrm_dst_path(dst), &fl, sk, XFRM_LOOKUP_QUEUE);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002774 if (IS_ERR(dst))
2775 goto purge_queue;
2776
2777 if (dst->flags & DST_XFRM_QUEUE) {
2778 dst_release(dst);
2779
2780 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
2781 goto purge_queue;
2782
2783 pq->timeout = pq->timeout << 1;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02002784 if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
2785 xfrm_pol_hold(pol);
Colin Ian King7759d6a2018-11-13 14:28:42 +00002786 goto out;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002787 }
2788
2789 dst_release(dst);
2790
2791 __skb_queue_head_init(&list);
2792
2793 spin_lock(&pq->hold_queue.lock);
2794 pq->timeout = 0;
2795 skb_queue_splice_init(&pq->hold_queue, &list);
2796 spin_unlock(&pq->hold_queue.lock);
2797
2798 while (!skb_queue_empty(&list)) {
2799 skb = __skb_dequeue(&list);
2800
2801 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
David Miller0f6c4802017-11-28 15:40:46 -05002802 dst_hold(xfrm_dst_path(skb_dst(skb)));
2803 dst = xfrm_lookup(net, xfrm_dst_path(skb_dst(skb)), &fl, skb->sk, 0);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002804 if (IS_ERR(dst)) {
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002805 kfree_skb(skb);
2806 continue;
2807 }
2808
2809 nf_reset(skb);
2810 skb_dst_drop(skb);
2811 skb_dst_set(skb, dst);
2812
Eric W. Biederman13206b62015-10-07 16:48:35 -05002813 dst_output(net, skb->sk, skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002814 }
2815
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02002816out:
2817 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002818 return;
2819
2820purge_queue:
2821 pq->timeout = 0;
Li RongQing1ee5e662015-04-22 15:51:16 +08002822 skb_queue_purge(&pq->hold_queue);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02002823 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002824}
2825
Eric W. Biedermanede20592015-10-07 16:48:47 -05002826static int xdst_queue_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002827{
2828 unsigned long sched_next;
2829 struct dst_entry *dst = skb_dst(skb);
2830 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02002831 struct xfrm_policy *pol = xdst->pols[0];
2832 struct xfrm_policy_queue *pq = &pol->polq;
Steffen Klassert4d53eff2013-10-16 13:42:46 +02002833
Eric Dumazet39bb5e62014-10-30 10:32:34 -07002834 if (unlikely(skb_fclone_busy(sk, skb))) {
Steffen Klassert4d53eff2013-10-16 13:42:46 +02002835 kfree_skb(skb);
2836 return 0;
2837 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002838
2839 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
2840 kfree_skb(skb);
2841 return -EAGAIN;
2842 }
2843
2844 skb_dst_force(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002845
2846 spin_lock_bh(&pq->hold_queue.lock);
2847
2848 if (!pq->timeout)
2849 pq->timeout = XFRM_QUEUE_TMO_MIN;
2850
2851 sched_next = jiffies + pq->timeout;
2852
2853 if (del_timer(&pq->hold_timer)) {
2854 if (time_before(pq->hold_timer.expires, sched_next))
2855 sched_next = pq->hold_timer.expires;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02002856 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002857 }
2858
2859 __skb_queue_tail(&pq->hold_queue, skb);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02002860 if (!mod_timer(&pq->hold_timer, sched_next))
2861 xfrm_pol_hold(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002862
2863 spin_unlock_bh(&pq->hold_queue.lock);
2864
2865 return 0;
2866}
2867
2868static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002869 struct xfrm_flo *xflo,
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002870 const struct flowi *fl,
2871 int num_xfrms,
2872 u16 family)
2873{
2874 int err;
2875 struct net_device *dev;
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002876 struct dst_entry *dst;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002877 struct dst_entry *dst1;
2878 struct xfrm_dst *xdst;
2879
2880 xdst = xfrm_alloc_dst(net, family);
2881 if (IS_ERR(xdst))
2882 return xdst;
2883
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002884 if (!(xflo->flags & XFRM_LOOKUP_QUEUE) ||
2885 net->xfrm.sysctl_larval_drop ||
2886 num_xfrms <= 0)
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002887 return xdst;
2888
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002889 dst = xflo->dst_orig;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002890 dst1 = &xdst->u.dst;
2891 dst_hold(dst);
2892 xdst->route = dst;
2893
2894 dst_copy_metrics(dst1, dst);
2895
2896 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2897 dst1->flags |= DST_HOST | DST_XFRM_QUEUE;
2898 dst1->lastuse = jiffies;
2899
2900 dst1->input = dst_discard;
2901 dst1->output = xdst_queue_output;
2902
2903 dst_hold(dst);
David Miller45b018be2017-11-28 15:40:28 -05002904 xfrm_dst_set_child(xdst, dst);
David Miller0f6c4802017-11-28 15:40:46 -05002905 xdst->path = dst;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002906
2907 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
2908
2909 err = -ENODEV;
2910 dev = dst->dev;
2911 if (!dev)
2912 goto free_dst;
2913
2914 err = xfrm_fill_dst(xdst, dev, fl);
2915 if (err)
2916 goto free_dst;
2917
2918out:
2919 return xdst;
2920
2921free_dst:
2922 dst_release(dst1);
2923 xdst = ERR_PTR(err);
2924 goto out;
2925}
2926
Benedict Wongbc56b332018-07-19 10:50:44 -07002927static struct xfrm_dst *xfrm_bundle_lookup(struct net *net,
2928 const struct flowi *fl,
2929 u16 family, u8 dir,
2930 struct xfrm_flo *xflo, u32 if_id)
Timo Teräs80c802f2010-04-07 00:30:05 +00002931{
Timo Teräs80c802f2010-04-07 00:30:05 +00002932 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Florian Westphal855dad92017-07-17 13:57:22 +02002933 int num_pols = 0, num_xfrms = 0, err;
Florian Westphalbd45c532017-07-17 13:57:25 +02002934 struct xfrm_dst *xdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002935
Timo Teräs80c802f2010-04-07 00:30:05 +00002936 /* Resolve policies to use if we couldn't get them from
2937 * previous cache entry */
Florian Westphal855dad92017-07-17 13:57:22 +02002938 num_pols = 1;
Benedict Wongbc56b332018-07-19 10:50:44 -07002939 pols[0] = xfrm_policy_lookup(net, fl, family, dir, if_id);
Florian Westphal855dad92017-07-17 13:57:22 +02002940 err = xfrm_expand_policies(fl, family, pols,
Timo Teräs80c802f2010-04-07 00:30:05 +00002941 &num_pols, &num_xfrms);
Florian Westphal855dad92017-07-17 13:57:22 +02002942 if (err < 0)
2943 goto inc_error;
2944 if (num_pols == 0)
2945 return NULL;
2946 if (num_xfrms <= 0)
2947 goto make_dummy_bundle;
Timo Teräs80c802f2010-04-07 00:30:05 +00002948
Florian Westphalbd45c532017-07-17 13:57:25 +02002949 xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family,
Steffen Klassert76a42012018-01-10 12:14:28 +01002950 xflo->dst_orig);
Florian Westphalbd45c532017-07-17 13:57:25 +02002951 if (IS_ERR(xdst)) {
2952 err = PTR_ERR(xdst);
Steffen Klassertf203b762018-06-12 14:07:12 +02002953 if (err == -EREMOTE) {
2954 xfrm_pols_put(pols, num_pols);
2955 return NULL;
2956 }
2957
Timo Teräs80c802f2010-04-07 00:30:05 +00002958 if (err != -EAGAIN)
2959 goto error;
Florian Westphal855dad92017-07-17 13:57:22 +02002960 goto make_dummy_bundle;
Florian Westphalbd45c532017-07-17 13:57:25 +02002961 } else if (xdst == NULL) {
Timo Teräsd809ec82010-07-12 21:29:42 +00002962 num_xfrms = 0;
Florian Westphal855dad92017-07-17 13:57:22 +02002963 goto make_dummy_bundle;
Timo Teräs80c802f2010-04-07 00:30:05 +00002964 }
2965
Florian Westphalbd45c532017-07-17 13:57:25 +02002966 return xdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002967
2968make_dummy_bundle:
2969 /* We found policies, but there's no bundles to instantiate:
2970 * either because the policy blocks, has no transformations or
2971 * we could not build template (no xfrm_states).*/
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002972 xdst = xfrm_create_dummy_bundle(net, xflo, fl, num_xfrms, family);
Timo Teräs80c802f2010-04-07 00:30:05 +00002973 if (IS_ERR(xdst)) {
2974 xfrm_pols_put(pols, num_pols);
2975 return ERR_CAST(xdst);
2976 }
2977 xdst->num_pols = num_pols;
2978 xdst->num_xfrms = num_xfrms;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08002979 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002980
Florian Westphalbd45c532017-07-17 13:57:25 +02002981 return xdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002982
2983inc_error:
2984 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2985error:
Florian Westphal855dad92017-07-17 13:57:22 +02002986 xfrm_pols_put(pols, num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002987 return ERR_PTR(err);
2988}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
David S. Miller2774c132011-03-01 14:59:04 -08002990static struct dst_entry *make_blackhole(struct net *net, u16 family,
2991 struct dst_entry *dst_orig)
2992{
Florian Westphal37b10382017-02-07 15:00:19 +01002993 const struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
David S. Miller2774c132011-03-01 14:59:04 -08002994 struct dst_entry *ret;
2995
2996 if (!afinfo) {
2997 dst_release(dst_orig);
Li RongQing433a1952012-09-17 22:40:10 +00002998 return ERR_PTR(-EINVAL);
David S. Miller2774c132011-03-01 14:59:04 -08002999 } else {
3000 ret = afinfo->blackhole_route(net, dst_orig);
3001 }
Florian Westphalbdba9fe2017-02-07 15:00:18 +01003002 rcu_read_unlock();
David S. Miller2774c132011-03-01 14:59:04 -08003003
3004 return ret;
3005}
3006
Benedict Wongbc56b332018-07-19 10:50:44 -07003007/* Finds/creates a bundle for given flow and if_id
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 *
3009 * At the moment we eat a raw IP route. Mostly to speed up lookups
3010 * on interfaces with disabled IPsec.
Benedict Wongbc56b332018-07-19 10:50:44 -07003011 *
3012 * xfrm_lookup uses an if_id of 0 by default, and is provided for
3013 * compatibility
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 */
Benedict Wongbc56b332018-07-19 10:50:44 -07003015struct dst_entry *xfrm_lookup_with_ifid(struct net *net,
3016 struct dst_entry *dst_orig,
3017 const struct flowi *fl,
3018 const struct sock *sk,
3019 int flags, u32 if_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003021 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00003022 struct xfrm_dst *xdst;
David S. Miller452edd52011-03-02 13:27:41 -08003023 struct dst_entry *dst, *route;
Timo Teräs80c802f2010-04-07 00:30:05 +00003024 u16 family = dst_orig->ops->family;
Florian Westphalaff669b2017-07-17 13:57:23 +02003025 u8 dir = XFRM_POLICY_OUT;
Changli Gao4b021622010-04-27 21:20:22 +00003026 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07003027
Timo Teräs80c802f2010-04-07 00:30:05 +00003028 dst = NULL;
3029 xdst = NULL;
3030 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003031
Eric Dumazetbd5eb352015-12-07 08:53:17 -08003032 sk = sk_const_to_full_sk(sk);
Thomas Graff7944fb2007-08-25 13:46:55 -07003033 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00003034 num_pols = 1;
Benedict Wongbc56b332018-07-19 10:50:44 -07003035 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl, family,
3036 if_id);
Timo Teräs80c802f2010-04-07 00:30:05 +00003037 err = xfrm_expand_policies(fl, family, pols,
3038 &num_pols, &num_xfrms);
3039 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08003040 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00003041
3042 if (num_pols) {
3043 if (num_xfrms <= 0) {
3044 drop_pols = num_pols;
3045 goto no_transform;
3046 }
3047
3048 xdst = xfrm_resolve_and_create_bundle(
3049 pols, num_pols, fl,
3050 family, dst_orig);
Steffen Klassert76a42012018-01-10 12:14:28 +01003051
Timo Teräs80c802f2010-04-07 00:30:05 +00003052 if (IS_ERR(xdst)) {
3053 xfrm_pols_put(pols, num_pols);
3054 err = PTR_ERR(xdst);
Steffen Klassertf203b762018-06-12 14:07:12 +02003055 if (err == -EREMOTE)
3056 goto nopol;
3057
Timo Teräs80c802f2010-04-07 00:30:05 +00003058 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00003059 } else if (xdst == NULL) {
3060 num_xfrms = 0;
3061 drop_pols = num_pols;
3062 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00003063 }
3064
Timo Teräs80c802f2010-04-07 00:30:05 +00003065 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003066 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05003067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Timo Teräs80c802f2010-04-07 00:30:05 +00003069 if (xdst == NULL) {
Steffen Klassertb8c203b2014-09-16 10:08:49 +02003070 struct xfrm_flo xflo;
3071
3072 xflo.dst_orig = dst_orig;
3073 xflo.flags = flags;
3074
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07003076 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08003077 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08003078 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Benedict Wongbc56b332018-07-19 10:50:44 -07003080 xdst = xfrm_bundle_lookup(net, fl, family, dir, &xflo, if_id);
Florian Westphalbd45c532017-07-17 13:57:25 +02003081 if (xdst == NULL)
Timo Teräs80c802f2010-04-07 00:30:05 +00003082 goto nopol;
Florian Westphalbd45c532017-07-17 13:57:25 +02003083 if (IS_ERR(xdst)) {
3084 err = PTR_ERR(xdst);
Herbert Xu75b8c132007-12-11 04:38:08 -08003085 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08003086 }
Timo Teräs80c802f2010-04-07 00:30:05 +00003087
3088 num_pols = xdst->num_pols;
3089 num_xfrms = xdst->num_xfrms;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08003090 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00003091 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093
Timo Teräs80c802f2010-04-07 00:30:05 +00003094 dst = &xdst->u.dst;
3095 if (route == NULL && num_xfrms > 0) {
3096 /* The only case when xfrm_bundle_lookup() returns a
3097 * bundle with null route, is when the template could
3098 * not be resolved. It means policies are there, but
3099 * bundle could not be created, since we don't yet
3100 * have the xfrm_state's. We need to wait for KM to
3101 * negotiate new SA's or bail out with error.*/
3102 if (net->xfrm.sysctl_larval_drop) {
Timo Teräs80c802f2010-04-07 00:30:05 +00003103 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
huaibin Wangac37e252015-02-11 18:10:36 +01003104 err = -EREMOTE;
3105 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00003106 }
Timo Teräs80c802f2010-04-07 00:30:05 +00003107
Steffen Klassert5b8ef342013-08-27 13:43:30 +02003108 err = -EAGAIN;
Timo Teräs80c802f2010-04-07 00:30:05 +00003109
3110 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
3111 goto error;
3112 }
3113
3114no_transform:
3115 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08003116 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Timo Teräs80c802f2010-04-07 00:30:05 +00003118 if ((flags & XFRM_LOOKUP_ICMP) &&
3119 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
3120 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08003121 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00003122 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08003123
Timo Teräs80c802f2010-04-07 00:30:05 +00003124 for (i = 0; i < num_pols; i++)
Arnd Bergmann386c5682018-07-11 12:19:13 +02003125 pols[i]->curlft.use_time = ktime_get_real_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08003126
Timo Teräs80c802f2010-04-07 00:30:05 +00003127 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003129 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07003130 err = -EPERM;
3131 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00003132 } else if (num_xfrms > 0) {
3133 /* Flow transformed */
Timo Teräs80c802f2010-04-07 00:30:05 +00003134 dst_release(dst_orig);
3135 } else {
3136 /* Flow passes untransformed */
3137 dst_release(dst);
David S. Miller452edd52011-03-02 13:27:41 -08003138 dst = dst_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 }
Timo Teräs80c802f2010-04-07 00:30:05 +00003140ok:
3141 xfrm_pols_put(pols, drop_pols);
Gao feng0c183372012-05-26 01:30:53 +00003142 if (dst && dst->xfrm &&
3143 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
3144 dst->flags |= DST_XFRM_TUNNEL;
David S. Miller452edd52011-03-02 13:27:41 -08003145 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Timo Teräs80c802f2010-04-07 00:30:05 +00003147nopol:
David S. Miller452edd52011-03-02 13:27:41 -08003148 if (!(flags & XFRM_LOOKUP_ICMP)) {
3149 dst = dst_orig;
Timo Teräs80c802f2010-04-07 00:30:05 +00003150 goto ok;
David S. Miller452edd52011-03-02 13:27:41 -08003151 }
Timo Teräs80c802f2010-04-07 00:30:05 +00003152 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153error:
Timo Teräs80c802f2010-04-07 00:30:05 +00003154 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08003155dropdst:
huaibin Wangac37e252015-02-11 18:10:36 +01003156 if (!(flags & XFRM_LOOKUP_KEEP_DST_REF))
3157 dst_release(dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00003158 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08003159 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
Benedict Wongbc56b332018-07-19 10:50:44 -07003161EXPORT_SYMBOL(xfrm_lookup_with_ifid);
3162
3163/* Main function: finds/creates a bundle for given flow.
3164 *
3165 * At the moment we eat a raw IP route. Mostly to speed up lookups
3166 * on interfaces with disabled IPsec.
3167 */
3168struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
3169 const struct flowi *fl, const struct sock *sk,
3170 int flags)
3171{
3172 return xfrm_lookup_with_ifid(net, dst_orig, fl, sk, flags, 0);
3173}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174EXPORT_SYMBOL(xfrm_lookup);
3175
Steffen Klassertf92ee612014-09-16 10:08:40 +02003176/* Callers of xfrm_lookup_route() must ensure a call to dst_output().
3177 * Otherwise we may send out blackholed packets.
3178 */
3179struct dst_entry *xfrm_lookup_route(struct net *net, struct dst_entry *dst_orig,
3180 const struct flowi *fl,
Eric Dumazet6f9c9612015-09-25 07:39:10 -07003181 const struct sock *sk, int flags)
Steffen Klassertf92ee612014-09-16 10:08:40 +02003182{
Steffen Klassertb8c203b2014-09-16 10:08:49 +02003183 struct dst_entry *dst = xfrm_lookup(net, dst_orig, fl, sk,
huaibin Wangac37e252015-02-11 18:10:36 +01003184 flags | XFRM_LOOKUP_QUEUE |
3185 XFRM_LOOKUP_KEEP_DST_REF);
Steffen Klassertf92ee612014-09-16 10:08:40 +02003186
3187 if (IS_ERR(dst) && PTR_ERR(dst) == -EREMOTE)
3188 return make_blackhole(net, dst_orig->ops->family, dst_orig);
3189
Tommi Rantala8cc88772018-06-21 09:30:47 +03003190 if (IS_ERR(dst))
3191 dst_release(dst_orig);
3192
Steffen Klassertf92ee612014-09-16 10:08:40 +02003193 return dst;
3194}
3195EXPORT_SYMBOL(xfrm_lookup_route);
3196
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003197static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08003198xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003199{
Florian Westphal2294be0f2018-12-18 17:15:20 +01003200 struct sec_path *sp = skb_sec_path(skb);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003201 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003202
Florian Westphal2294be0f2018-12-18 17:15:20 +01003203 if (!sp || idx < 0 || idx >= sp->len)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003204 return 0;
Florian Westphal2294be0f2018-12-18 17:15:20 +01003205 x = sp->xvec[idx];
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003206 if (!x->type->reject)
3207 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07003208 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003209}
3210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211/* When skb is transformed back to its "native" form, we have to
3212 * check policy restrictions. At the moment we make this in maximally
3213 * stupid way. Shame on me. :-) Of course, connected sockets must
3214 * have policy cached at them.
3215 */
3216
3217static inline int
David S. Miller7db454b2011-02-24 01:43:01 -05003218xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 unsigned short family)
3220{
3221 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08003222 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 return x->id.proto == tmpl->id.proto &&
3224 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
3225 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
3226 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07003227 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07003228 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07003229 !(x->props.mode != XFRM_MODE_TRANSPORT &&
3230 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003233/*
3234 * 0 or more than 0 is returned when validation is succeeded (either bypass
3235 * because of optional transport mode, or next index of the mathced secpath
3236 * state with the template.
3237 * -1 is returned when no matching template is found.
3238 * Otherwise "-2 - errored_index" is returned.
3239 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240static inline int
David S. Miller22cccb72011-02-24 01:43:33 -05003241xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 unsigned short family)
3243{
3244 int idx = start;
3245
3246 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07003247 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 return start;
3249 } else
3250 start = -1;
3251 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08003252 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003254 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
3255 if (start == -1)
3256 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 }
3260 return start;
3261}
3262
Florian Westphalc53ac412019-04-16 16:44:39 +02003263static void
3264decode_session4(struct sk_buff *skb, struct flowi *fl, bool reverse)
3265{
3266 const struct iphdr *iph = ip_hdr(skb);
Florian Westphal858e5402019-05-16 11:28:16 +02003267 int ihl = iph->ihl;
3268 u8 *xprth = skb_network_header(skb) + ihl * 4;
Florian Westphalc53ac412019-04-16 16:44:39 +02003269 struct flowi4 *fl4 = &fl->u.ip4;
3270 int oif = 0;
3271
3272 if (skb_dst(skb))
3273 oif = skb_dst(skb)->dev->ifindex;
3274
3275 memset(fl4, 0, sizeof(struct flowi4));
3276 fl4->flowi4_mark = skb->mark;
3277 fl4->flowi4_oif = reverse ? skb->skb_iif : oif;
3278
Florian Westphal858e5402019-05-16 11:28:16 +02003279 fl4->flowi4_proto = iph->protocol;
3280 fl4->daddr = reverse ? iph->saddr : iph->daddr;
3281 fl4->saddr = reverse ? iph->daddr : iph->saddr;
3282 fl4->flowi4_tos = iph->tos;
3283
Florian Westphalc53ac412019-04-16 16:44:39 +02003284 if (!ip_is_fragment(iph)) {
3285 switch (iph->protocol) {
3286 case IPPROTO_UDP:
3287 case IPPROTO_UDPLITE:
3288 case IPPROTO_TCP:
3289 case IPPROTO_SCTP:
3290 case IPPROTO_DCCP:
3291 if (xprth + 4 < skb->data ||
3292 pskb_may_pull(skb, xprth + 4 - skb->data)) {
3293 __be16 *ports;
3294
Florian Westphal858e5402019-05-16 11:28:16 +02003295 xprth = skb_network_header(skb) + ihl * 4;
Florian Westphalc53ac412019-04-16 16:44:39 +02003296 ports = (__be16 *)xprth;
3297
3298 fl4->fl4_sport = ports[!!reverse];
3299 fl4->fl4_dport = ports[!reverse];
3300 }
3301 break;
3302 case IPPROTO_ICMP:
3303 if (xprth + 2 < skb->data ||
3304 pskb_may_pull(skb, xprth + 2 - skb->data)) {
3305 u8 *icmp;
3306
Florian Westphal858e5402019-05-16 11:28:16 +02003307 xprth = skb_network_header(skb) + ihl * 4;
Florian Westphalc53ac412019-04-16 16:44:39 +02003308 icmp = xprth;
3309
3310 fl4->fl4_icmp_type = icmp[0];
3311 fl4->fl4_icmp_code = icmp[1];
3312 }
3313 break;
3314 case IPPROTO_ESP:
3315 if (xprth + 4 < skb->data ||
3316 pskb_may_pull(skb, xprth + 4 - skb->data)) {
3317 __be32 *ehdr;
3318
Florian Westphal858e5402019-05-16 11:28:16 +02003319 xprth = skb_network_header(skb) + ihl * 4;
Florian Westphalc53ac412019-04-16 16:44:39 +02003320 ehdr = (__be32 *)xprth;
3321
3322 fl4->fl4_ipsec_spi = ehdr[0];
3323 }
3324 break;
3325 case IPPROTO_AH:
3326 if (xprth + 8 < skb->data ||
3327 pskb_may_pull(skb, xprth + 8 - skb->data)) {
3328 __be32 *ah_hdr;
3329
Florian Westphal858e5402019-05-16 11:28:16 +02003330 xprth = skb_network_header(skb) + ihl * 4;
Florian Westphalc53ac412019-04-16 16:44:39 +02003331 ah_hdr = (__be32 *)xprth;
3332
3333 fl4->fl4_ipsec_spi = ah_hdr[1];
3334 }
3335 break;
3336 case IPPROTO_COMP:
3337 if (xprth + 4 < skb->data ||
3338 pskb_may_pull(skb, xprth + 4 - skb->data)) {
3339 __be16 *ipcomp_hdr;
3340
Florian Westphal858e5402019-05-16 11:28:16 +02003341 xprth = skb_network_header(skb) + ihl * 4;
Florian Westphalc53ac412019-04-16 16:44:39 +02003342 ipcomp_hdr = (__be16 *)xprth;
3343
3344 fl4->fl4_ipsec_spi = htonl(ntohs(ipcomp_hdr[1]));
3345 }
3346 break;
3347 case IPPROTO_GRE:
3348 if (xprth + 12 < skb->data ||
3349 pskb_may_pull(skb, xprth + 12 - skb->data)) {
3350 __be16 *greflags;
3351 __be32 *gre_hdr;
3352
Florian Westphal858e5402019-05-16 11:28:16 +02003353 xprth = skb_network_header(skb) + ihl * 4;
Florian Westphalc53ac412019-04-16 16:44:39 +02003354 greflags = (__be16 *)xprth;
3355 gre_hdr = (__be32 *)xprth;
3356
3357 if (greflags[0] & GRE_KEY) {
3358 if (greflags[0] & GRE_CSUM)
3359 gre_hdr++;
3360 fl4->fl4_gre_key = gre_hdr[1];
3361 }
3362 }
3363 break;
3364 default:
3365 fl4->fl4_ipsec_spi = 0;
3366 break;
3367 }
3368 }
Florian Westphalc53ac412019-04-16 16:44:39 +02003369}
3370
3371#if IS_ENABLED(CONFIG_IPV6)
3372static void
3373decode_session6(struct sk_buff *skb, struct flowi *fl, bool reverse)
3374{
3375 struct flowi6 *fl6 = &fl->u.ip6;
3376 int onlyproto = 0;
3377 const struct ipv6hdr *hdr = ipv6_hdr(skb);
3378 u32 offset = sizeof(*hdr);
3379 struct ipv6_opt_hdr *exthdr;
3380 const unsigned char *nh = skb_network_header(skb);
3381 u16 nhoff = IP6CB(skb)->nhoff;
3382 int oif = 0;
3383 u8 nexthdr;
3384
3385 if (!nhoff)
3386 nhoff = offsetof(struct ipv6hdr, nexthdr);
3387
3388 nexthdr = nh[nhoff];
3389
3390 if (skb_dst(skb))
3391 oif = skb_dst(skb)->dev->ifindex;
3392
3393 memset(fl6, 0, sizeof(struct flowi6));
3394 fl6->flowi6_mark = skb->mark;
3395 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
3396
3397 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
3398 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
3399
3400 while (nh + offset + sizeof(*exthdr) < skb->data ||
3401 pskb_may_pull(skb, nh + offset + sizeof(*exthdr) - skb->data)) {
3402 nh = skb_network_header(skb);
3403 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
3404
3405 switch (nexthdr) {
3406 case NEXTHDR_FRAGMENT:
3407 onlyproto = 1;
3408 /* fall through */
3409 case NEXTHDR_ROUTING:
3410 case NEXTHDR_HOP:
3411 case NEXTHDR_DEST:
3412 offset += ipv6_optlen(exthdr);
3413 nexthdr = exthdr->nexthdr;
3414 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
3415 break;
3416 case IPPROTO_UDP:
3417 case IPPROTO_UDPLITE:
3418 case IPPROTO_TCP:
3419 case IPPROTO_SCTP:
3420 case IPPROTO_DCCP:
3421 if (!onlyproto && (nh + offset + 4 < skb->data ||
3422 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
3423 __be16 *ports;
3424
3425 nh = skb_network_header(skb);
3426 ports = (__be16 *)(nh + offset);
3427 fl6->fl6_sport = ports[!!reverse];
3428 fl6->fl6_dport = ports[!reverse];
3429 }
3430 fl6->flowi6_proto = nexthdr;
3431 return;
3432 case IPPROTO_ICMPV6:
3433 if (!onlyproto && (nh + offset + 2 < skb->data ||
3434 pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
3435 u8 *icmp;
3436
3437 nh = skb_network_header(skb);
3438 icmp = (u8 *)(nh + offset);
3439 fl6->fl6_icmp_type = icmp[0];
3440 fl6->fl6_icmp_code = icmp[1];
3441 }
3442 fl6->flowi6_proto = nexthdr;
3443 return;
3444#if IS_ENABLED(CONFIG_IPV6_MIP6)
3445 case IPPROTO_MH:
3446 offset += ipv6_optlen(exthdr);
3447 if (!onlyproto && (nh + offset + 3 < skb->data ||
3448 pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
3449 struct ip6_mh *mh;
3450
3451 nh = skb_network_header(skb);
3452 mh = (struct ip6_mh *)(nh + offset);
3453 fl6->fl6_mh_type = mh->ip6mh_type;
3454 }
3455 fl6->flowi6_proto = nexthdr;
3456 return;
3457#endif
3458 /* XXX Why are there these headers? */
3459 case IPPROTO_AH:
3460 case IPPROTO_ESP:
3461 case IPPROTO_COMP:
3462 default:
3463 fl6->fl6_ipsec_spi = 0;
3464 fl6->flowi6_proto = nexthdr;
3465 return;
3466 }
3467 }
3468}
3469#endif
3470
Herbert Xud5422ef2007-12-12 10:44:16 -08003471int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
3472 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473{
Florian Westphalc53ac412019-04-16 16:44:39 +02003474 switch (family) {
3475 case AF_INET:
3476 decode_session4(skb, fl, reverse);
3477 break;
3478#if IS_ENABLED(CONFIG_IPV6)
3479 case AF_INET6:
3480 decode_session6(skb, fl, reverse);
3481 break;
3482#endif
3483 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 return -EAFNOSUPPORT;
Florian Westphalc53ac412019-04-16 16:44:39 +02003485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Florian Westphalc53ac412019-04-16 16:44:39 +02003487 return security_xfrm_decode_session(skb, &fl->flowi_secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488}
Herbert Xud5422ef2007-12-12 10:44:16 -08003489EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
David S. Miller9a7386e2011-02-24 01:44:12 -05003491static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492{
3493 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003494 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07003495 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499
3500 return 0;
3501}
3502
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09003503int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 unsigned short family)
3505{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08003506 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003508 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
3509 int npols = 0;
3510 int xfrm_nr;
3511 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08003512 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 struct flowi fl;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003514 int xerr_idx = -1;
Benedict Wongbc56b332018-07-19 10:50:44 -07003515 const struct xfrm_if_cb *ifcb;
Florian Westphal2294be0f2018-12-18 17:15:20 +01003516 struct sec_path *sp;
Benedict Wongbc56b332018-07-19 10:50:44 -07003517 struct xfrm_if *xi;
3518 u32 if_id = 0;
3519
3520 rcu_read_lock();
3521 ifcb = xfrm_if_get_cb();
3522
3523 if (ifcb) {
Martin Willi025c65e2019-03-26 13:20:43 +01003524 xi = ifcb->decode_session(skb, family);
Tobias Brunner660899d2019-02-18 10:49:39 +01003525 if (xi) {
Benedict Wongbc56b332018-07-19 10:50:44 -07003526 if_id = xi->p.if_id;
Tobias Brunner660899d2019-02-18 10:49:39 +01003527 net = xi->net;
3528 }
Benedict Wongbc56b332018-07-19 10:50:44 -07003529 }
3530 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Herbert Xud5422ef2007-12-12 10:44:16 -08003532 reverse = dir & ~XFRM_POLICY_MASK;
3533 dir &= XFRM_POLICY_MASK;
Herbert Xud5422ef2007-12-12 10:44:16 -08003534
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003535 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003536 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003538 }
3539
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08003540 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
3542 /* First, check used SA against their selectors. */
Florian Westphal2294be0f2018-12-18 17:15:20 +01003543 sp = skb_sec_path(skb);
3544 if (sp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 int i;
3546
Florian Westphal2294be0f2018-12-18 17:15:20 +01003547 for (i = sp->len - 1; i >= 0; i--) {
3548 struct xfrm_state *x = sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003549 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003550 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 }
3554 }
3555
3556 pol = NULL;
Eric Dumazetbd5eb352015-12-07 08:53:17 -08003557 sk = sk_to_full_sk(sk);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05003558 if (sk && sk->sk_policy[dir]) {
Benedict Wongbc56b332018-07-19 10:50:44 -07003559 pol = xfrm_sk_policy_lookup(sk, dir, &fl, family, if_id);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003560 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003561 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05003562 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003563 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05003564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Florian Westphal86dc8ee2017-07-17 13:57:24 +02003566 if (!pol)
Benedict Wongbc56b332018-07-19 10:50:44 -07003567 pol = xfrm_policy_lookup(net, &fl, family, dir, if_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003569 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003570 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05003571 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003572 }
James Morris134b0fc2006-10-05 15:42:27 -05003573
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003574 if (!pol) {
Florian Westphal2294be0f2018-12-18 17:15:20 +01003575 if (sp && secpath_has_nontransport(sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003576 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003577 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003578 return 0;
3579 }
3580 return 1;
3581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Arnd Bergmann386c5682018-07-11 12:19:13 +02003583 pol->curlft.use_time = ktime_get_real_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003585 pols[0] = pol;
Weilong Chen02d08922013-12-24 09:43:48 +08003586 npols++;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003587#ifdef CONFIG_XFRM_SUB_POLICY
3588 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08003589 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003590 &fl, family,
Benedict Wongbc56b332018-07-19 10:50:44 -07003591 XFRM_POLICY_IN, if_id);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003592 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003593 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003594 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05003595 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003596 }
Arnd Bergmann386c5682018-07-11 12:19:13 +02003597 pols[1]->curlft.use_time = ktime_get_real_seconds();
Weilong Chen02d08922013-12-24 09:43:48 +08003598 npols++;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003599 }
3600 }
3601#endif
3602
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 if (pol->action == XFRM_POLICY_ALLOW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003605 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07003606 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003607 struct xfrm_tmpl **tpp = tp;
3608 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 int i, k;
3610
Florian Westphal2294be0f2018-12-18 17:15:20 +01003611 sp = skb_sec_path(skb);
3612 if (!sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 sp = &dummy;
3614
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003615 for (pi = 0; pi < npols; pi++) {
3616 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003617 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003618 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003619 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003620 }
3621 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003622 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003623 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003624 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003625 for (i = 0; i < pols[pi]->xfrm_nr; i++)
3626 tpp[ti++] = &pols[pi]->xfrm_vec[i];
3627 }
3628 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07003629 if (npols > 1) {
Florian Westphal3aaf3912019-05-03 17:46:17 +02003630 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07003631 tpp = stp;
3632 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 /* For each tunnel xfrm, find the first matching tmpl.
3635 * For each tmpl before that, find corresponding xfrm.
3636 * Order is _important_. Later we will implement
3637 * some barriers, but at the moment barriers
3638 * are implied between each two transformations.
3639 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003640 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
3641 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003642 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07003643 if (k < -1)
3644 /* "-2 - errored_index" returned */
3645 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003646 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 }
3650
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003651 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003652 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003656 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 return 1;
3658 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003659 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
3661reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07003662 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07003663reject_error:
3664 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 return 0;
3666}
3667EXPORT_SYMBOL(__xfrm_policy_check);
3668
3669int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
3670{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08003671 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00003673 struct dst_entry *dst;
Eric Dumazet73137142011-03-15 15:26:43 -07003674 int res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003676 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00003677 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08003679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680
Eric Dumazetfafeeb62010-06-01 10:04:49 +00003681 skb_dst_force(skb);
Steffen Klassert9e143792018-09-11 10:31:15 +02003682 if (!skb_dst(skb)) {
3683 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
3684 return 0;
3685 }
Eric Dumazetadf30902009-06-02 05:19:30 +00003686
Steffen Klassertb8c203b2014-09-16 10:08:49 +02003687 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, XFRM_LOOKUP_QUEUE);
David S. Miller452edd52011-03-02 13:27:41 -08003688 if (IS_ERR(dst)) {
Eric Dumazet73137142011-03-15 15:26:43 -07003689 res = 0;
David S. Miller452edd52011-03-02 13:27:41 -08003690 dst = NULL;
3691 }
Eric Dumazetadf30902009-06-02 05:19:30 +00003692 skb_dst_set(skb, dst);
3693 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694}
3695EXPORT_SYMBOL(__xfrm_route_forward);
3696
David S. Millerd49c73c2006-08-13 18:55:53 -07003697/* Optimize later using cookies and generation ids. */
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
3700{
David S. Millerd49c73c2006-08-13 18:55:53 -07003701 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
David S. Millerf5b0a872012-07-19 12:31:33 -07003702 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
3703 * get validated by dst_ops->check on every use. We do this
3704 * because when a normal route referenced by an XFRM dst is
3705 * obsoleted we do not go looking around for all parent
3706 * referencing XFRM dsts so that we can invalidate them. It
3707 * is just too much work. Instead we make the checks here on
3708 * every use. For example:
David S. Millerd49c73c2006-08-13 18:55:53 -07003709 *
3710 * XFRM dst A --> IPv4 dst X
3711 *
3712 * X is the "xdst->route" of A (X is also the "dst->path" of A
3713 * in this example). If X is marked obsolete, "A" will not
3714 * notice. That's what we are validating here via the
3715 * stale_bundle() check.
3716 *
Wei Wang52df1572017-06-17 10:42:38 -07003717 * When a dst is removed from the fib tree, DST_OBSOLETE_DEAD will
3718 * be marked on it.
Florian Westphal09c75702017-07-17 13:57:26 +02003719 * This will force stale_bundle() to fail on any xdst bundle with
Wei Wang52df1572017-06-17 10:42:38 -07003720 * this dst linked in it.
David S. Miller399c1802005-12-19 14:23:23 -08003721 */
David S. Millerd49c73c2006-08-13 18:55:53 -07003722 if (dst->obsolete < 0 && !stale_bundle(dst))
3723 return dst;
3724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 return NULL;
3726}
3727
3728static int stale_bundle(struct dst_entry *dst)
3729{
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00003730 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731}
3732
Herbert Xuaabc9762005-05-03 16:27:10 -07003733void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734{
David Millerb92cf4a2017-11-28 15:40:22 -05003735 while ((dst = xfrm_dst_child(dst)) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003736 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07003737 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 dev_put(dev);
3739 }
3740}
Herbert Xuaabc9762005-05-03 16:27:10 -07003741EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
3743static void xfrm_link_failure(struct sk_buff *skb)
3744{
3745 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746}
3747
3748static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
3749{
3750 if (dst) {
3751 if (dst->obsolete) {
3752 dst_release(dst);
3753 dst = NULL;
3754 }
3755 }
3756 return dst;
3757}
3758
David Miller54920932017-11-28 15:41:01 -05003759static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
David Miller54920932017-11-28 15:41:01 -05003761 while (nr--) {
3762 struct xfrm_dst *xdst = bundle[nr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 u32 pmtu, route_mtu_cached;
David Miller54920932017-11-28 15:41:01 -05003764 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
David Miller54920932017-11-28 15:41:01 -05003766 dst = &xdst->u.dst;
David Millerb92cf4a2017-11-28 15:40:22 -05003767 pmtu = dst_mtu(xfrm_dst_child(dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 xdst->child_mtu_cached = pmtu;
3769
3770 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
3771
3772 route_mtu_cached = dst_mtu(xdst->route);
3773 xdst->route_mtu_cached = route_mtu_cached;
3774
3775 if (pmtu > route_mtu_cached)
3776 pmtu = route_mtu_cached;
3777
David S. Millerdefb3512010-12-08 21:16:57 -08003778 dst_metric_set(dst, RTAX_MTU, pmtu);
David Miller54920932017-11-28 15:41:01 -05003779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780}
3781
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782/* Check that the bundle accepts the flow and its components are
3783 * still valid.
3784 */
3785
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00003786static int xfrm_bundle_ok(struct xfrm_dst *first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787{
David Miller54920932017-11-28 15:41:01 -05003788 struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 struct dst_entry *dst = &first->u.dst;
David Miller54920932017-11-28 15:41:01 -05003790 struct xfrm_dst *xdst;
3791 int start_from, nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 u32 mtu;
3793
David Miller0f6c4802017-11-28 15:40:46 -05003794 if (!dst_check(xfrm_dst_path(dst), ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 (dst->dev && !netif_running(dst->dev)))
3796 return 0;
3797
Steffen Klasserta0073fe2013-02-05 12:52:55 +01003798 if (dst->flags & DST_XFRM_QUEUE)
3799 return 1;
3800
David Miller54920932017-11-28 15:41:01 -05003801 start_from = nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 do {
3803 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
3804
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 if (dst->xfrm->km.state != XFRM_STATE_VALID)
3806 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00003807 if (xdst->xfrm_genid != dst->xfrm->genid)
3808 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07003809 if (xdst->num_pols > 0 &&
3810 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07003811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
David Miller54920932017-11-28 15:41:01 -05003813 bundle[nr++] = xdst;
3814
David Millerb92cf4a2017-11-28 15:40:22 -05003815 mtu = dst_mtu(xfrm_dst_child(dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 if (xdst->child_mtu_cached != mtu) {
David Miller54920932017-11-28 15:41:01 -05003817 start_from = nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 xdst->child_mtu_cached = mtu;
3819 }
3820
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07003821 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 return 0;
3823 mtu = dst_mtu(xdst->route);
3824 if (xdst->route_mtu_cached != mtu) {
David Miller54920932017-11-28 15:41:01 -05003825 start_from = nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 xdst->route_mtu_cached = mtu;
3827 }
3828
David Millerb92cf4a2017-11-28 15:40:22 -05003829 dst = xfrm_dst_child(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 } while (dst->xfrm);
3831
David Miller54920932017-11-28 15:41:01 -05003832 if (likely(!start_from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 return 1;
3834
David Miller54920932017-11-28 15:41:01 -05003835 xdst = bundle[start_from - 1];
3836 mtu = xdst->child_mtu_cached;
3837 while (start_from--) {
3838 dst = &xdst->u.dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
3840 mtu = xfrm_state_mtu(dst->xfrm, mtu);
David Miller54920932017-11-28 15:41:01 -05003841 if (mtu > xdst->route_mtu_cached)
3842 mtu = xdst->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08003843 dst_metric_set(dst, RTAX_MTU, mtu);
David Miller54920932017-11-28 15:41:01 -05003844 if (!start_from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 break;
3846
David Miller54920932017-11-28 15:41:01 -05003847 xdst = bundle[start_from - 1];
3848 xdst->child_mtu_cached = mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 }
3850
3851 return 1;
3852}
3853
David S. Miller0dbaee32010-12-13 12:52:14 -08003854static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
3855{
David Miller0f6c4802017-11-28 15:40:46 -05003856 return dst_metric_advmss(xfrm_dst_path(dst));
David S. Miller0dbaee32010-12-13 12:52:14 -08003857}
3858
Steffen Klassertebb762f2011-11-23 02:12:51 +00003859static unsigned int xfrm_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08003860{
Steffen Klassert618f9bc2011-11-23 02:13:31 +00003861 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
3862
David Miller0f6c4802017-11-28 15:40:46 -05003863 return mtu ? : dst_mtu(xfrm_dst_path(dst));
David S. Millerd33e4552010-12-14 13:01:14 -08003864}
3865
Julian Anastasov1ecc9ad2017-02-25 17:57:43 +02003866static const void *xfrm_get_dst_nexthop(const struct dst_entry *dst,
3867 const void *daddr)
Julian Anastasov63fca652017-02-06 23:14:15 +02003868{
David Miller0f6c4802017-11-28 15:40:46 -05003869 while (dst->xfrm) {
Julian Anastasov63fca652017-02-06 23:14:15 +02003870 const struct xfrm_state *xfrm = dst->xfrm;
3871
Steffen Klassert013cb812018-02-19 07:44:07 +01003872 dst = xfrm_dst_child(dst);
3873
Julian Anastasov63fca652017-02-06 23:14:15 +02003874 if (xfrm->props.mode == XFRM_MODE_TRANSPORT)
3875 continue;
3876 if (xfrm->type->flags & XFRM_TYPE_REMOTE_COADDR)
3877 daddr = xfrm->coaddr;
3878 else if (!(xfrm->type->flags & XFRM_TYPE_LOCAL_COADDR))
3879 daddr = &xfrm->id.daddr;
3880 }
Julian Anastasov1ecc9ad2017-02-25 17:57:43 +02003881 return daddr;
3882}
3883
3884static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
3885 struct sk_buff *skb,
3886 const void *daddr)
3887{
David Miller0f6c4802017-11-28 15:40:46 -05003888 const struct dst_entry *path = xfrm_dst_path(dst);
Julian Anastasov1ecc9ad2017-02-25 17:57:43 +02003889
3890 if (!skb)
3891 daddr = xfrm_get_dst_nexthop(dst, daddr);
3892 return path->ops->neigh_lookup(path, skb, daddr);
3893}
3894
3895static void xfrm_confirm_neigh(const struct dst_entry *dst, const void *daddr)
3896{
David Miller0f6c4802017-11-28 15:40:46 -05003897 const struct dst_entry *path = xfrm_dst_path(dst);
Julian Anastasov1ecc9ad2017-02-25 17:57:43 +02003898
3899 daddr = xfrm_get_dst_nexthop(dst, daddr);
Julian Anastasov63fca652017-02-06 23:14:15 +02003900 path->ops->confirm_neigh(path, daddr);
3901}
3902
Florian Westphala2817d82017-02-07 15:00:17 +01003903int xfrm_policy_register_afinfo(const struct xfrm_policy_afinfo *afinfo, int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904{
3905 int err = 0;
Florian Westphala2817d82017-02-07 15:00:17 +01003906
3907 if (WARN_ON(family >= ARRAY_SIZE(xfrm_policy_afinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 return -EAFNOSUPPORT;
Florian Westphala2817d82017-02-07 15:00:17 +01003909
Eric Dumazetef8531b2012-08-19 12:31:48 +02003910 spin_lock(&xfrm_policy_afinfo_lock);
Florian Westphala2817d82017-02-07 15:00:17 +01003911 if (unlikely(xfrm_policy_afinfo[family] != NULL))
Li RongQingf31e8d4f2015-04-23 11:06:53 +08003912 err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 else {
3914 struct dst_ops *dst_ops = afinfo->dst_ops;
3915 if (likely(dst_ops->kmem_cachep == NULL))
3916 dst_ops->kmem_cachep = xfrm_dst_cache;
3917 if (likely(dst_ops->check == NULL))
3918 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08003919 if (likely(dst_ops->default_advmss == NULL))
3920 dst_ops->default_advmss = xfrm_default_advmss;
Steffen Klassertebb762f2011-11-23 02:12:51 +00003921 if (likely(dst_ops->mtu == NULL))
3922 dst_ops->mtu = xfrm_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 if (likely(dst_ops->negative_advice == NULL))
3924 dst_ops->negative_advice = xfrm_negative_advice;
3925 if (likely(dst_ops->link_failure == NULL))
3926 dst_ops->link_failure = xfrm_link_failure;
David S. Millerd3aaeb32011-07-18 00:40:17 -07003927 if (likely(dst_ops->neigh_lookup == NULL))
3928 dst_ops->neigh_lookup = xfrm_neigh_lookup;
Julian Anastasov63fca652017-02-06 23:14:15 +02003929 if (likely(!dst_ops->confirm_neigh))
3930 dst_ops->confirm_neigh = xfrm_confirm_neigh;
Florian Westphala2817d82017-02-07 15:00:17 +01003931 rcu_assign_pointer(xfrm_policy_afinfo[family], afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02003933 spin_unlock(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08003934
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 return err;
3936}
3937EXPORT_SYMBOL(xfrm_policy_register_afinfo);
3938
Florian Westphala2817d82017-02-07 15:00:17 +01003939void xfrm_policy_unregister_afinfo(const struct xfrm_policy_afinfo *afinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
Florian Westphal2b619972017-02-07 15:00:15 +01003941 struct dst_ops *dst_ops = afinfo->dst_ops;
Florian Westphala2817d82017-02-07 15:00:17 +01003942 int i;
Eric Dumazetef8531b2012-08-19 12:31:48 +02003943
Florian Westphala2817d82017-02-07 15:00:17 +01003944 for (i = 0; i < ARRAY_SIZE(xfrm_policy_afinfo); i++) {
3945 if (xfrm_policy_afinfo[i] != afinfo)
3946 continue;
3947 RCU_INIT_POINTER(xfrm_policy_afinfo[i], NULL);
3948 break;
Eric Dumazetef8531b2012-08-19 12:31:48 +02003949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
Florian Westphal2b619972017-02-07 15:00:15 +01003951 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
Florian Westphal2b619972017-02-07 15:00:15 +01003953 dst_ops->kmem_cachep = NULL;
3954 dst_ops->check = NULL;
3955 dst_ops->negative_advice = NULL;
3956 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957}
3958EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
3959
Steffen Klassertf203b762018-06-12 14:07:12 +02003960void xfrm_if_register_cb(const struct xfrm_if_cb *ifcb)
3961{
3962 spin_lock(&xfrm_if_cb_lock);
3963 rcu_assign_pointer(xfrm_if_cb, ifcb);
3964 spin_unlock(&xfrm_if_cb_lock);
3965}
3966EXPORT_SYMBOL(xfrm_if_register_cb);
3967
3968void xfrm_if_unregister_cb(void)
3969{
3970 RCU_INIT_POINTER(xfrm_if_cb, NULL);
3971 synchronize_rcu();
3972}
3973EXPORT_SYMBOL(xfrm_if_unregister_cb);
3974
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08003975#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003976static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08003977{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08003978 int rv;
WANG Cong698365f2014-05-05 15:55:55 -07003979 net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
3980 if (!net->mib.xfrm_statistics)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08003981 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08003982 rv = xfrm_proc_init(net);
3983 if (rv < 0)
WANG Cong698365f2014-05-05 15:55:55 -07003984 free_percpu(net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08003985 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08003986}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003987
3988static void xfrm_statistics_fini(struct net *net)
3989{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08003990 xfrm_proc_fini(net);
WANG Cong698365f2014-05-05 15:55:55 -07003991 free_percpu(net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003992}
3993#else
3994static int __net_init xfrm_statistics_init(struct net *net)
3995{
3996 return 0;
3997}
3998
3999static void xfrm_statistics_fini(struct net *net)
4000{
4001}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08004002#endif
4003
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004004static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005{
David S. Miller2518c7c2006-08-24 04:45:07 -07004006 unsigned int hmask, sz;
Florian Westphal24969fa2018-11-07 23:00:35 +01004007 int dir, err;
David S. Miller2518c7c2006-08-24 04:45:07 -07004008
Florian Westphal24969fa2018-11-07 23:00:35 +01004009 if (net_eq(net, &init_net)) {
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004010 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07004012 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09004013 NULL);
Florian Westphal24969fa2018-11-07 23:00:35 +01004014 err = rhashtable_init(&xfrm_policy_inexact_table,
4015 &xfrm_pol_inexact_params);
4016 BUG_ON(err);
4017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
David S. Miller2518c7c2006-08-24 04:45:07 -07004019 hmask = 8 - 1;
4020 sz = (hmask+1) * sizeof(struct hlist_head);
4021
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08004022 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
4023 if (!net->xfrm.policy_byidx)
4024 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08004025 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07004026
Herbert Xu53c2e282014-11-13 17:09:49 +08004027 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -07004028 struct xfrm_policy_hash *htab;
4029
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08004030 net->xfrm.policy_count[dir] = 0;
Herbert Xu53c2e282014-11-13 17:09:49 +08004031 net->xfrm.policy_count[XFRM_POLICY_MAX + dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08004032 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07004033
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08004034 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07004035 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07004036 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08004037 goto out_bydst;
4038 htab->hmask = hmask;
Christophe Gouaultb58555f2014-08-29 16:16:04 +02004039 htab->dbits4 = 32;
4040 htab->sbits4 = 32;
4041 htab->dbits6 = 128;
4042 htab->sbits6 = 128;
David S. Miller2518c7c2006-08-24 04:45:07 -07004043 }
Christophe Gouault880a6fa2014-08-29 16:16:05 +02004044 net->xfrm.policy_hthresh.lbits4 = 32;
4045 net->xfrm.policy_hthresh.rbits4 = 32;
4046 net->xfrm.policy_hthresh.lbits6 = 128;
4047 net->xfrm.policy_hthresh.rbits6 = 128;
4048
4049 seqlock_init(&net->xfrm.policy_hthresh.lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07004050
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08004051 INIT_LIST_HEAD(&net->xfrm.policy_all);
Florian Westphal24969fa2018-11-07 23:00:35 +01004052 INIT_LIST_HEAD(&net->xfrm.inexact_bins);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08004053 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02004054 INIT_WORK(&net->xfrm.policy_hthresh.work, xfrm_hash_rebuild);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004055 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08004056
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08004057out_bydst:
4058 for (dir--; dir >= 0; dir--) {
4059 struct xfrm_policy_hash *htab;
4060
4061 htab = &net->xfrm.policy_bydst[dir];
4062 xfrm_hash_free(htab->table, sz);
4063 }
4064 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08004065out_byidx:
4066 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067}
4068
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004069static void xfrm_policy_fini(struct net *net)
4070{
Florian Westphal6be3b0d2018-11-07 23:00:37 +01004071 struct xfrm_pol_inexact_bin *b, *t;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08004072 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08004073 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08004074
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08004075 flush_work(&net->xfrm.policy_hash_work);
4076#ifdef CONFIG_XFRM_SUB_POLICY
Tetsuo Handa2e710292014-04-22 21:48:30 +09004077 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, false);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08004078#endif
Tetsuo Handa2e710292014-04-22 21:48:30 +09004079 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, false);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08004080
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08004081 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08004082
Herbert Xu53c2e282014-11-13 17:09:49 +08004083 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08004084 struct xfrm_policy_hash *htab;
4085
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08004086 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08004087
4088 htab = &net->xfrm.policy_bydst[dir];
Michal Kubecek5b653b22013-01-18 16:03:48 +01004089 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08004090 WARN_ON(!hlist_empty(htab->table));
4091 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08004092 }
4093
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08004094 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08004095 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
4096 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Florian Westphal24969fa2018-11-07 23:00:35 +01004097
Florian Westphal6be3b0d2018-11-07 23:00:37 +01004098 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
4099 list_for_each_entry_safe(b, t, &net->xfrm.inexact_bins, inexact_bins)
4100 __xfrm_policy_inexact_prune_bin(b, true);
4101 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004102}
4103
4104static int __net_init xfrm_net_init(struct net *net)
4105{
4106 int rv;
4107
Florian Westphalc2822222017-02-08 11:52:29 +01004108 /* Initialize the per-net locks here */
4109 spin_lock_init(&net->xfrm.xfrm_state_lock);
4110 spin_lock_init(&net->xfrm.xfrm_policy_lock);
4111 mutex_init(&net->xfrm.xfrm_cfg_mutex);
4112
Alexey Dobriyan59c99402008-11-25 17:59:52 -08004113 rv = xfrm_statistics_init(net);
4114 if (rv < 0)
4115 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004116 rv = xfrm_state_init(net);
4117 if (rv < 0)
4118 goto out_state;
4119 rv = xfrm_policy_init(net);
4120 if (rv < 0)
4121 goto out_policy;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08004122 rv = xfrm_sysctl_init(net);
4123 if (rv < 0)
4124 goto out_sysctl;
Fan Du283bc9f2013-11-07 17:47:50 +08004125
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004126 return 0;
4127
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08004128out_sysctl:
4129 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004130out_policy:
4131 xfrm_state_fini(net);
4132out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08004133 xfrm_statistics_fini(net);
4134out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004135 return rv;
4136}
4137
4138static void __net_exit xfrm_net_exit(struct net *net)
4139{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08004140 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004141 xfrm_policy_fini(net);
4142 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08004143 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004144}
4145
4146static struct pernet_operations __net_initdata xfrm_net_ops = {
4147 .init = xfrm_net_init,
4148 .exit = xfrm_net_exit,
4149};
4150
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151void __init xfrm_init(void)
4152{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08004153 register_pernet_subsys(&xfrm_net_ops);
Kirill Tkhaie9a441b2018-03-29 17:03:25 +03004154 xfrm_dev_init();
Florian Westphal30846092016-08-11 15:17:54 +02004155 seqcount_init(&xfrm_policy_hash_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 xfrm_input_init();
Steffen Klassertf203b762018-06-12 14:07:12 +02004157
4158 RCU_INIT_POINTER(xfrm_if_cb, NULL);
4159 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160}
4161
Joy Lattenab5f5e82007-09-17 11:51:22 -07004162#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08004163static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
4164 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07004165{
Paul Moore875179f2007-12-01 23:27:18 +11004166 struct xfrm_sec_ctx *ctx = xp->security;
4167 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07004168
Paul Moore875179f2007-12-01 23:27:18 +11004169 if (ctx)
4170 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
4171 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
4172
Weilong Chen9b7a7872013-12-24 09:43:46 +08004173 switch (sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07004174 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07004175 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11004176 if (sel->prefixlen_s != 32)
4177 audit_log_format(audit_buf, " src_prefixlen=%d",
4178 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07004179 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11004180 if (sel->prefixlen_d != 32)
4181 audit_log_format(audit_buf, " dst_prefixlen=%d",
4182 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07004183 break;
4184 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07004185 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11004186 if (sel->prefixlen_s != 128)
4187 audit_log_format(audit_buf, " src_prefixlen=%d",
4188 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07004189 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11004190 if (sel->prefixlen_d != 128)
4191 audit_log_format(audit_buf, " dst_prefixlen=%d",
4192 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07004193 break;
4194 }
4195}
4196
Tetsuo Handa2e710292014-04-22 21:48:30 +09004197void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07004198{
4199 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07004200
Paul Mooreafeb14b2007-12-21 14:58:11 -08004201 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07004202 if (audit_buf == NULL)
4203 return;
Tetsuo Handa2e710292014-04-22 21:48:30 +09004204 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08004205 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07004206 xfrm_audit_common_policyinfo(xp, audit_buf);
4207 audit_log_end(audit_buf);
4208}
4209EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
4210
Paul Moore68277ac2007-12-20 20:49:33 -08004211void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Tetsuo Handa2e710292014-04-22 21:48:30 +09004212 bool task_valid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07004213{
4214 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07004215
Paul Mooreafeb14b2007-12-21 14:58:11 -08004216 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07004217 if (audit_buf == NULL)
4218 return;
Tetsuo Handa2e710292014-04-22 21:48:30 +09004219 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08004220 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07004221 xfrm_audit_common_policyinfo(xp, audit_buf);
4222 audit_log_end(audit_buf);
4223}
4224EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
4225#endif
4226
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004227#ifdef CONFIG_XFRM_MIGRATE
David S. Millerbc9b35a2012-05-15 15:04:57 -04004228static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
4229 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004230{
4231 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
4232 if (sel_tgt->family == sel_cmp->family &&
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00004233 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
4234 sel_cmp->family) &&
4235 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
4236 sel_cmp->family) &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004237 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
4238 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04004239 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004240 }
4241 } else {
4242 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04004243 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004244 }
4245 }
David S. Millerbc9b35a2012-05-15 15:04:57 -04004246 return false;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004247}
4248
Weilong Chen3e94c2d2013-12-24 09:43:47 +08004249static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
4250 u8 dir, u8 type, struct net *net)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004251{
4252 struct xfrm_policy *pol, *ret = NULL;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004253 struct hlist_head *chain;
4254 u32 priority = ~0U;
4255
Florian Westphal9d0380d2016-08-11 15:17:59 +02004256 spin_lock_bh(&net->xfrm.xfrm_policy_lock);
Fan Du8d549c42013-11-07 17:47:49 +08004257 chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
Sasha Levinb67bfe02013-02-27 17:06:00 -08004258 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004259 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
4260 pol->type == type) {
4261 ret = pol;
4262 priority = ret->priority;
4263 break;
4264 }
4265 }
Fan Du8d549c42013-11-07 17:47:49 +08004266 chain = &net->xfrm.policy_inexact[dir];
Florian Westphal24969fa2018-11-07 23:00:35 +01004267 hlist_for_each_entry(pol, chain, bydst_inexact_list) {
Li RongQing8faf4912015-05-14 11:16:59 +08004268 if ((pol->priority >= priority) && ret)
4269 break;
4270
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004271 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
Li RongQing8faf4912015-05-14 11:16:59 +08004272 pol->type == type) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004273 ret = pol;
4274 break;
4275 }
4276 }
4277
Li RongQing586f2eb2015-04-30 17:13:41 +08004278 xfrm_pol_hold(ret);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004279
Florian Westphal9d0380d2016-08-11 15:17:59 +02004280 spin_unlock_bh(&net->xfrm.xfrm_policy_lock);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004281
4282 return ret;
4283}
4284
David S. Millerdd701752011-02-24 00:21:08 -05004285static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004286{
4287 int match = 0;
4288
4289 if (t->mode == m->mode && t->id.proto == m->proto &&
4290 (m->reqid == 0 || t->reqid == m->reqid)) {
4291 switch (t->mode) {
4292 case XFRM_MODE_TUNNEL:
4293 case XFRM_MODE_BEET:
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00004294 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
4295 m->old_family) &&
4296 xfrm_addr_equal(&t->saddr, &m->old_saddr,
4297 m->old_family)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004298 match = 1;
4299 }
4300 break;
4301 case XFRM_MODE_TRANSPORT:
4302 /* in case of transport mode, template does not store
4303 any IP addresses, hence we just compare mode and
4304 protocol */
4305 match = 1;
4306 break;
4307 default:
4308 break;
4309 }
4310 }
4311 return match;
4312}
4313
4314/* update endpoint address(es) of template(s) */
4315static int xfrm_policy_migrate(struct xfrm_policy *pol,
4316 struct xfrm_migrate *m, int num_migrate)
4317{
4318 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004319 int i, j, n = 0;
4320
4321 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07004322 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004323 /* target policy has been deleted */
4324 write_unlock_bh(&pol->lock);
4325 return -ENOENT;
4326 }
4327
4328 for (i = 0; i < pol->xfrm_nr; i++) {
4329 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
4330 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
4331 continue;
4332 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07004333 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
4334 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004335 continue;
4336 /* update endpoints */
4337 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
4338 sizeof(pol->xfrm_vec[i].id.daddr));
4339 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
4340 sizeof(pol->xfrm_vec[i].saddr));
4341 pol->xfrm_vec[i].encap_family = mp->new_family;
4342 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00004343 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004344 }
4345 }
4346
4347 write_unlock_bh(&pol->lock);
4348
4349 if (!n)
4350 return -ENODATA;
4351
4352 return 0;
4353}
4354
David S. Millerdd701752011-02-24 00:21:08 -05004355static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004356{
4357 int i, j;
4358
4359 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
4360 return -EINVAL;
4361
4362 for (i = 0; i < num_migrate; i++) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004363 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
4364 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
4365 return -EINVAL;
4366
4367 /* check if there is any duplicated entry */
4368 for (j = i + 1; j < num_migrate; j++) {
4369 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
4370 sizeof(m[i].old_daddr)) &&
4371 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
4372 sizeof(m[i].old_saddr)) &&
4373 m[i].proto == m[j].proto &&
4374 m[i].mode == m[j].mode &&
4375 m[i].reqid == m[j].reqid &&
4376 m[i].old_family == m[j].old_family)
4377 return -EINVAL;
4378 }
4379 }
4380
4381 return 0;
4382}
4383
David S. Millerb4b7c0b2011-02-24 00:35:06 -05004384int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07004385 struct xfrm_migrate *m, int num_migrate,
Antony Antony4ab47d42017-06-06 12:12:13 +02004386 struct xfrm_kmaddress *k, struct net *net,
4387 struct xfrm_encap_tmpl *encap)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004388{
4389 int i, err, nx_cur = 0, nx_new = 0;
4390 struct xfrm_policy *pol = NULL;
4391 struct xfrm_state *x, *xc;
4392 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
4393 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
4394 struct xfrm_migrate *mp;
4395
Vladis Dronov7bab0962017-08-02 19:50:14 +02004396 /* Stage 0 - sanity checks */
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004397 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
4398 goto out;
4399
Vladis Dronov7bab0962017-08-02 19:50:14 +02004400 if (dir >= XFRM_POLICY_MAX) {
4401 err = -EINVAL;
4402 goto out;
4403 }
4404
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004405 /* Stage 1 - find policy */
Fan Du8d549c42013-11-07 17:47:49 +08004406 if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004407 err = -ENOENT;
4408 goto out;
4409 }
4410
4411 /* Stage 2 - find and update state(s) */
4412 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
Fan Du283bc9f2013-11-07 17:47:50 +08004413 if ((x = xfrm_migrate_state_find(mp, net))) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004414 x_cur[nx_cur] = x;
4415 nx_cur++;
Antony Antony4ab47d42017-06-06 12:12:13 +02004416 xc = xfrm_state_migrate(x, mp, encap);
4417 if (xc) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004418 x_new[nx_new] = xc;
4419 nx_new++;
4420 } else {
4421 err = -ENODATA;
4422 goto restore_state;
4423 }
4424 }
4425 }
4426
4427 /* Stage 3 - update policy */
4428 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
4429 goto restore_state;
4430
4431 /* Stage 4 - delete old state(s) */
4432 if (nx_cur) {
4433 xfrm_states_put(x_cur, nx_cur);
4434 xfrm_states_delete(x_cur, nx_cur);
4435 }
4436
4437 /* Stage 5 - announce */
Antony Antony8bafd732017-06-06 12:12:14 +02004438 km_migrate(sel, dir, type, m, num_migrate, k, encap);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004439
4440 xfrm_pol_put(pol);
4441
4442 return 0;
4443out:
4444 return err;
4445
4446restore_state:
4447 if (pol)
4448 xfrm_pol_put(pol);
4449 if (nx_cur)
4450 xfrm_states_put(x_cur, nx_cur);
4451 if (nx_new)
4452 xfrm_states_delete(x_new, nx_new);
4453
4454 return err;
4455}
David S. Millere610e672007-02-08 13:29:15 -08004456EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08004457#endif