blob: e63f242ae03e22b5566029c28dedcff0bdc85d1f [file] [log] [blame]
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * xfrm_policy.c
3 *
4 * Changes:
5 * Mitsuru KANDA @USAGI
6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
8 * IPv6 support
9 * Kazunori MIYAZAWA @USAGI
10 * YOSHIFUJI Hideaki
11 * Split up af-specific portion
12 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
Trent Jaegerdf718372005-12-13 23:12:27 -080013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Herbert Xu66cdb3c2007-11-13 21:37:28 -080016#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/kmod.h>
19#include <linux/list.h>
20#include <linux/spinlock.h>
21#include <linux/workqueue.h>
22#include <linux/notifier.h>
23#include <linux/netdevice.h>
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -080024#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
David S. Miller2518c7c2006-08-24 04:45:07 -070026#include <linux/cache.h>
Paul Moore68277ac2007-12-20 20:49:33 -080027#include <linux/audit.h>
Herbert Xu25ee3282007-12-11 09:32:34 -080028#include <net/dst.h>
Eric Paris6ce74ec2012-02-16 15:08:39 -050029#include <net/flow.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/xfrm.h>
31#include <net/ip.h>
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080032#ifdef CONFIG_XFRM_STATISTICS
33#include <net/snmp.h>
34#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
David S. Miller44e36b42006-08-24 04:50:50 -070036#include "xfrm_hash.h"
37
Steffen Klasserta0073fe2013-02-05 12:52:55 +010038#define XFRM_QUEUE_TMO_MIN ((unsigned)(HZ/10))
39#define XFRM_QUEUE_TMO_MAX ((unsigned)(60*HZ))
40#define XFRM_MAX_QUEUE_LEN 100
41
Priyanka Jain418a99a2012-08-12 21:22:29 +000042static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
43static struct xfrm_policy_afinfo __rcu *xfrm_policy_afinfo[NPROTO]
44 __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Christoph Lametere18b8902006-12-06 20:33:20 -080046static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Herbert Xu25ee3282007-12-11 09:32:34 -080048static void xfrm_init_pmtu(struct dst_entry *dst);
Timo Teräs80c802f2010-04-07 00:30:05 +000049static int stale_bundle(struct dst_entry *dst);
Steffen Klassert12fdb4d2011-06-29 23:18:20 +000050static int xfrm_bundle_ok(struct xfrm_dst *xdst);
Steffen Klasserta0073fe2013-02-05 12:52:55 +010051static void xfrm_policy_queue_process(unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Wei Yongjun29fa0b302008-12-03 00:33:09 -080053static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
54 int dir);
55
David S. Millerbc9b35a2012-05-15 15:04:57 -040056static inline bool
David S. Miller200ce962011-02-24 00:12:25 -050057__xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080058{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050059 const struct flowi4 *fl4 = &fl->u.ip4;
60
Alexey Dobriyan26bff942011-11-22 06:46:02 +000061 return addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
62 addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
David S. Miller7e1dc7b2011-03-12 02:42:11 -050063 !((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
64 !((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
65 (fl4->flowi4_proto == sel->proto || !sel->proto) &&
66 (fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080067}
68
David S. Millerbc9b35a2012-05-15 15:04:57 -040069static inline bool
David S. Miller200ce962011-02-24 00:12:25 -050070__xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080071{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050072 const struct flowi6 *fl6 = &fl->u.ip6;
73
74 return addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
75 addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
76 !((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
77 !((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
78 (fl6->flowi6_proto == sel->proto || !sel->proto) &&
79 (fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080080}
81
David S. Millerbc9b35a2012-05-15 15:04:57 -040082bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
83 unsigned short family)
Andrew Morton77681022006-11-08 22:46:26 -080084{
85 switch (family) {
86 case AF_INET:
87 return __xfrm4_selector_match(sel, fl);
88 case AF_INET6:
89 return __xfrm6_selector_match(sel, fl);
90 }
David S. Millerbc9b35a2012-05-15 15:04:57 -040091 return false;
Andrew Morton77681022006-11-08 22:46:26 -080092}
93
Eric Dumazetef8531b2012-08-19 12:31:48 +020094static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
95{
96 struct xfrm_policy_afinfo *afinfo;
97
98 if (unlikely(family >= NPROTO))
99 return NULL;
100 rcu_read_lock();
101 afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
102 if (unlikely(!afinfo))
103 rcu_read_unlock();
104 return afinfo;
105}
106
107static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
108{
109 rcu_read_unlock();
110}
111
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800112static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
David S. Miller6418c4e2011-02-24 00:16:53 -0500113 const xfrm_address_t *saddr,
114 const xfrm_address_t *daddr,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900115 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800117 struct xfrm_policy_afinfo *afinfo;
118 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Herbert Xu25ee3282007-12-11 09:32:34 -0800120 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800122 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800124 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900127
128 return dst;
129}
130
131static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
132 xfrm_address_t *prev_saddr,
133 xfrm_address_t *prev_daddr,
134 int family)
135{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800136 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900137 xfrm_address_t *saddr = &x->props.saddr;
138 xfrm_address_t *daddr = &x->id.daddr;
139 struct dst_entry *dst;
140
141 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
142 saddr = x->coaddr;
143 daddr = prev_daddr;
144 }
145 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
146 saddr = prev_saddr;
147 daddr = x->coaddr;
148 }
149
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800150 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900151
152 if (!IS_ERR(dst)) {
153 if (prev_saddr != saddr)
154 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
155 if (prev_daddr != daddr)
156 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
157 }
158
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800159 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static inline unsigned long make_jiffies(long secs)
163{
164 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
165 return MAX_SCHEDULE_TIMEOUT-1;
166 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900167 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170static void xfrm_policy_timer(unsigned long data)
171{
Weilong Chen3e94c2d2013-12-24 09:43:47 +0800172 struct xfrm_policy *xp = (struct xfrm_policy *)data;
James Morris9d729f72007-03-04 16:12:44 -0800173 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 long next = LONG_MAX;
175 int warn = 0;
176 int dir;
177
178 read_lock(&xp->lock);
179
Timo Teräsea2dea92010-03-31 00:17:05 +0000180 if (unlikely(xp->walk.dead))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 goto out;
182
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700183 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (xp->lft.hard_add_expires_seconds) {
186 long tmo = xp->lft.hard_add_expires_seconds +
187 xp->curlft.add_time - now;
188 if (tmo <= 0)
189 goto expired;
190 if (tmo < next)
191 next = tmo;
192 }
193 if (xp->lft.hard_use_expires_seconds) {
194 long tmo = xp->lft.hard_use_expires_seconds +
195 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
196 if (tmo <= 0)
197 goto expired;
198 if (tmo < next)
199 next = tmo;
200 }
201 if (xp->lft.soft_add_expires_seconds) {
202 long tmo = xp->lft.soft_add_expires_seconds +
203 xp->curlft.add_time - now;
204 if (tmo <= 0) {
205 warn = 1;
206 tmo = XFRM_KM_TIMEOUT;
207 }
208 if (tmo < next)
209 next = tmo;
210 }
211 if (xp->lft.soft_use_expires_seconds) {
212 long tmo = xp->lft.soft_use_expires_seconds +
213 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
214 if (tmo <= 0) {
215 warn = 1;
216 tmo = XFRM_KM_TIMEOUT;
217 }
218 if (tmo < next)
219 next = tmo;
220 }
221
222 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800223 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (next != LONG_MAX &&
225 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
226 xfrm_pol_hold(xp);
227
228out:
229 read_unlock(&xp->lock);
230 xfrm_pol_put(xp);
231 return;
232
233expired:
234 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700235 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800236 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 xfrm_pol_put(xp);
238}
239
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000240static struct flow_cache_object *xfrm_policy_flo_get(struct flow_cache_object *flo)
241{
242 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
243
244 if (unlikely(pol->walk.dead))
245 flo = NULL;
246 else
247 xfrm_pol_hold(pol);
248
249 return flo;
250}
251
252static int xfrm_policy_flo_check(struct flow_cache_object *flo)
253{
254 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
255
256 return !pol->walk.dead;
257}
258
259static void xfrm_policy_flo_delete(struct flow_cache_object *flo)
260{
261 xfrm_pol_put(container_of(flo, struct xfrm_policy, flo));
262}
263
264static const struct flow_cache_ops xfrm_policy_fc_ops = {
265 .get = xfrm_policy_flo_get,
266 .check = xfrm_policy_flo_check,
267 .delete = xfrm_policy_flo_delete,
268};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
271 * SPD calls.
272 */
273
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800274struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct xfrm_policy *policy;
277
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700278 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800281 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700282 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700283 INIT_HLIST_NODE(&policy->bydst);
284 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700286 atomic_set(&policy->refcnt, 1);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100287 skb_queue_head_init(&policy->polq.hold_queue);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800288 setup_timer(&policy->timer, xfrm_policy_timer,
289 (unsigned long)policy);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100290 setup_timer(&policy->polq.hold_timer, xfrm_policy_queue_process,
291 (unsigned long)policy);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000292 policy->flo.ops = &xfrm_policy_fc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294 return policy;
295}
296EXPORT_SYMBOL(xfrm_policy_alloc);
297
298/* Destroy xfrm_policy: descendant resources must be released to this moment. */
299
WANG Cong64c31b32008-01-07 22:34:29 -0800300void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Herbert Xu12a169e2008-10-01 07:03:24 -0700302 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Fan Du0659eea2013-08-01 18:08:36 +0800304 if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 BUG();
306
Paul Moore03e1ad72008-04-12 19:07:52 -0700307 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 kfree(policy);
309}
WANG Cong64c31b32008-01-07 22:34:29 -0800310EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100312static void xfrm_queue_purge(struct sk_buff_head *list)
313{
314 struct sk_buff *skb;
315
Steffen Klassert302a50b2013-08-28 08:47:14 +0200316 while ((skb = skb_dequeue(list)) != NULL)
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100317 kfree_skb(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100318}
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/* Rule must be locked. Release descentant resources, announce
321 * entry dead. The rule must be unlinked from lists to the moment.
322 */
323
324static void xfrm_policy_kill(struct xfrm_policy *policy)
325{
Herbert Xu12a169e2008-10-01 07:03:24 -0700326 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Timo Teräs285ead12010-04-07 00:30:06 +0000328 atomic_inc(&policy->genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +0200330 if (del_timer(&policy->polq.hold_timer))
331 xfrm_pol_put(policy);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100332 xfrm_queue_purge(&policy->polq.hold_queue);
333
Timo Teräs285ead12010-04-07 00:30:06 +0000334 if (del_timer(&policy->timer))
335 xfrm_pol_put(policy);
336
337 xfrm_pol_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
David S. Miller2518c7c2006-08-24 04:45:07 -0700340static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
341
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800342static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700343{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800344 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700345}
346
David S. Miller5f803b52011-02-24 00:33:19 -0500347static struct hlist_head *policy_hash_bysel(struct net *net,
348 const struct xfrm_selector *sel,
349 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700350{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800351 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700352 unsigned int hash = __sel_hash(sel, family, hmask);
353
354 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800355 &net->xfrm.policy_inexact[dir] :
356 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700357}
358
David S. Miller5f803b52011-02-24 00:33:19 -0500359static struct hlist_head *policy_hash_direct(struct net *net,
360 const xfrm_address_t *daddr,
361 const xfrm_address_t *saddr,
362 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700363{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800364 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700365 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
366
Alexey Dobriyan11219942008-11-25 17:33:06 -0800367 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700368}
369
David S. Miller2518c7c2006-08-24 04:45:07 -0700370static void xfrm_dst_hash_transfer(struct hlist_head *list,
371 struct hlist_head *ndsttable,
372 unsigned int nhashmask)
373{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800374 struct hlist_node *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700375 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800376 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700377
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800378redo:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800379 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700380 unsigned int h;
381
382 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
383 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800384 if (!entry0) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800385 hlist_del(&pol->bydst);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800386 hlist_add_head(&pol->bydst, ndsttable+h);
387 h0 = h;
388 } else {
389 if (h != h0)
390 continue;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800391 hlist_del(&pol->bydst);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800392 hlist_add_after(entry0, &pol->bydst);
393 }
Sasha Levinb67bfe02013-02-27 17:06:00 -0800394 entry0 = &pol->bydst;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800395 }
396 if (!hlist_empty(list)) {
397 entry0 = NULL;
398 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700399 }
400}
401
402static void xfrm_idx_hash_transfer(struct hlist_head *list,
403 struct hlist_head *nidxtable,
404 unsigned int nhashmask)
405{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800406 struct hlist_node *tmp;
David S. Miller2518c7c2006-08-24 04:45:07 -0700407 struct xfrm_policy *pol;
408
Sasha Levinb67bfe02013-02-27 17:06:00 -0800409 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700410 unsigned int h;
411
412 h = __idx_hash(pol->index, nhashmask);
413 hlist_add_head(&pol->byidx, nidxtable+h);
414 }
415}
416
417static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
418{
419 return ((old_hmask + 1) << 1) - 1;
420}
421
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800422static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700423{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800424 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700425 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
426 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800427 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700428 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700429 int i;
430
431 if (!ndst)
432 return;
433
Fan Du283bc9f2013-11-07 17:47:50 +0800434 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700435
436 for (i = hmask; i >= 0; i--)
437 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
438
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800439 net->xfrm.policy_bydst[dir].table = ndst;
440 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700441
Fan Du283bc9f2013-11-07 17:47:50 +0800442 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700443
David S. Miller44e36b42006-08-24 04:50:50 -0700444 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700445}
446
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800447static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700448{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800449 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700450 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
451 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800452 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700453 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700454 int i;
455
456 if (!nidx)
457 return;
458
Fan Du283bc9f2013-11-07 17:47:50 +0800459 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700460
461 for (i = hmask; i >= 0; i--)
462 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
463
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800464 net->xfrm.policy_byidx = nidx;
465 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700466
Fan Du283bc9f2013-11-07 17:47:50 +0800467 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700468
David S. Miller44e36b42006-08-24 04:50:50 -0700469 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700470}
471
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800472static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700473{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800474 unsigned int cnt = net->xfrm.policy_count[dir];
475 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700476
477 if (total)
478 *total += cnt;
479
480 if ((hmask + 1) < xfrm_policy_hashmax &&
481 cnt > hmask)
482 return 1;
483
484 return 0;
485}
486
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800487static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700488{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800489 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700490
491 if ((hmask + 1) < xfrm_policy_hashmax &&
492 total > hmask)
493 return 1;
494
495 return 0;
496}
497
Alexey Dobriyane0710412010-01-23 13:37:10 +0000498void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700499{
Fan Du283bc9f2013-11-07 17:47:50 +0800500 read_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000501 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
502 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
503 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
504 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
505 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
506 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
507 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700508 si->spdhmcnt = xfrm_policy_hashmax;
Fan Du283bc9f2013-11-07 17:47:50 +0800509 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700510}
511EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700512
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700513static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800514static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700515{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800516 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700517 int dir, total;
518
519 mutex_lock(&hash_resize_mutex);
520
521 total = 0;
522 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800523 if (xfrm_bydst_should_resize(net, dir, &total))
524 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700525 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800526 if (xfrm_byidx_should_resize(net, total))
527 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700528
529 mutex_unlock(&hash_resize_mutex);
530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/* Generate new index... KAME seems to generate them ordered by cost
533 * of an absolute inpredictability of ordering of rules. This will not pass. */
Fan Due682adf2013-11-07 17:47:48 +0800534static u32 xfrm_gen_index(struct net *net, int dir, u32 index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 static u32 idx_generator;
537
538 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700539 struct hlist_head *list;
540 struct xfrm_policy *p;
541 u32 idx;
542 int found;
543
Fan Due682adf2013-11-07 17:47:48 +0800544 if (!index) {
545 idx = (idx_generator | dir);
546 idx_generator += 8;
547 } else {
548 idx = index;
549 index = 0;
550 }
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (idx == 0)
553 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800554 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700555 found = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800556 hlist_for_each_entry(p, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700557 if (p->index == idx) {
558 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700562 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return idx;
564 }
565}
566
David S. Miller2518c7c2006-08-24 04:45:07 -0700567static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
568{
569 u32 *p1 = (u32 *) s1;
570 u32 *p2 = (u32 *) s2;
571 int len = sizeof(struct xfrm_selector) / sizeof(u32);
572 int i;
573
574 for (i = 0; i < len; i++) {
575 if (p1[i] != p2[i])
576 return 1;
577 }
578
579 return 0;
580}
581
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100582static void xfrm_policy_requeue(struct xfrm_policy *old,
583 struct xfrm_policy *new)
584{
585 struct xfrm_policy_queue *pq = &old->polq;
586 struct sk_buff_head list;
587
588 __skb_queue_head_init(&list);
589
590 spin_lock_bh(&pq->hold_queue.lock);
591 skb_queue_splice_init(&pq->hold_queue, &list);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +0200592 if (del_timer(&pq->hold_timer))
593 xfrm_pol_put(old);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100594 spin_unlock_bh(&pq->hold_queue.lock);
595
596 if (skb_queue_empty(&list))
597 return;
598
599 pq = &new->polq;
600
601 spin_lock_bh(&pq->hold_queue.lock);
602 skb_queue_splice(&list, &pq->hold_queue);
603 pq->timeout = XFRM_QUEUE_TMO_MIN;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +0200604 if (!mod_timer(&pq->hold_timer, jiffies))
605 xfrm_pol_hold(new);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100606 spin_unlock_bh(&pq->hold_queue.lock);
607}
608
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100609static bool xfrm_policy_mark_match(struct xfrm_policy *policy,
610 struct xfrm_policy *pol)
611{
612 u32 mark = policy->mark.v & policy->mark.m;
613
614 if (policy->mark.v == pol->mark.v && policy->mark.m == pol->mark.m)
615 return true;
616
617 if ((mark & pol->mark.m) == pol->mark.v &&
618 policy->priority == pol->priority)
619 return true;
620
621 return false;
622}
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
625{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800626 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700627 struct xfrm_policy *pol;
628 struct xfrm_policy *delpol;
629 struct hlist_head *chain;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800630 struct hlist_node *newpos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Fan Du283bc9f2013-11-07 17:47:50 +0800632 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800633 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700634 delpol = NULL;
635 newpos = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800636 hlist_for_each_entry(pol, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800637 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700638 !selector_cmp(&pol->selector, &policy->selector) &&
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100639 xfrm_policy_mark_match(policy, pol) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800640 xfrm_sec_ctx_match(pol->security, policy->security) &&
641 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (excl) {
Fan Du283bc9f2013-11-07 17:47:50 +0800643 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return -EEXIST;
645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 delpol = pol;
647 if (policy->priority > pol->priority)
648 continue;
649 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800650 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 continue;
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (delpol)
654 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700657 hlist_add_after(newpos, &policy->bydst);
658 else
659 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800661 net->xfrm.policy_count[dir]++;
Fan Duca925cf2014-01-18 09:55:27 +0800662 atomic_inc(&net->xfrm.flow_cache_genid);
fan.duca4c3fc2013-07-30 08:33:53 +0800663
664 /* After previous checking, family can either be AF_INET or AF_INET6 */
665 if (policy->family == AF_INET)
666 rt_genid_bump_ipv4(net);
667 else
668 rt_genid_bump_ipv6(net);
669
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100670 if (delpol) {
671 xfrm_policy_requeue(delpol, policy);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800672 __xfrm_policy_unlink(delpol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100673 }
Fan Due682adf2013-11-07 17:47:48 +0800674 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir, policy->index);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800675 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800676 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 policy->curlft.use_time = 0;
678 if (!mod_timer(&policy->timer, jiffies + HZ))
679 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800680 list_add(&policy->walk.all, &net->xfrm.policy_all);
Fan Du283bc9f2013-11-07 17:47:50 +0800681 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
David S. Miller9b78a822005-12-22 07:39:48 -0800683 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800685 else if (xfrm_bydst_should_resize(net, dir, NULL))
686 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return 0;
689}
690EXPORT_SYMBOL(xfrm_policy_insert);
691
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000692struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
693 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800694 struct xfrm_sec_ctx *ctx, int delete,
695 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
David S. Miller2518c7c2006-08-24 04:45:07 -0700697 struct xfrm_policy *pol, *ret;
698 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Eric Parisef41aaa2007-03-07 15:37:58 -0800700 *err = 0;
Fan Du283bc9f2013-11-07 17:47:50 +0800701 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800702 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700703 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800704 hlist_for_each_entry(pol, chain, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700705 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000706 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700707 !selector_cmp(sel, &pol->selector) &&
708 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700710 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700711 *err = security_xfrm_policy_delete(
712 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800713 if (*err) {
Fan Du283bc9f2013-11-07 17:47:50 +0800714 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Eric Parisef41aaa2007-03-07 15:37:58 -0800715 return pol;
716 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800717 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700718 }
719 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 break;
721 }
722 }
Fan Du283bc9f2013-11-07 17:47:50 +0800723 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000725 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700726 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700727 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
Trent Jaegerdf718372005-12-13 23:12:27 -0800729EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000731struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
732 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
David S. Miller2518c7c2006-08-24 04:45:07 -0700734 struct xfrm_policy *pol, *ret;
735 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Herbert Xub5505c62007-05-14 02:15:47 -0700737 *err = -ENOENT;
738 if (xfrm_policy_id2dir(id) != dir)
739 return NULL;
740
Eric Parisef41aaa2007-03-07 15:37:58 -0800741 *err = 0;
Fan Du283bc9f2013-11-07 17:47:50 +0800742 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800743 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700744 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800745 hlist_for_each_entry(pol, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000746 if (pol->type == type && pol->index == id &&
747 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700749 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700750 *err = security_xfrm_policy_delete(
751 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800752 if (*err) {
Fan Du283bc9f2013-11-07 17:47:50 +0800753 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Eric Parisef41aaa2007-03-07 15:37:58 -0800754 return pol;
755 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800756 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700757 }
758 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 break;
760 }
761 }
Fan Du283bc9f2013-11-07 17:47:50 +0800762 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000764 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700765 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700766 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768EXPORT_SYMBOL(xfrm_policy_byid);
769
Joy Latten4aa2e622007-06-04 19:05:57 -0400770#ifdef CONFIG_SECURITY_NETWORK_XFRM
771static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800772xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Joy Latten4aa2e622007-06-04 19:05:57 -0400774 int dir, err = 0;
775
776 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
777 struct xfrm_policy *pol;
Joy Latten4aa2e622007-06-04 19:05:57 -0400778 int i;
779
Sasha Levinb67bfe02013-02-27 17:06:00 -0800780 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800781 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400782 if (pol->type != type)
783 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700784 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400785 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700786 xfrm_audit_policy_delete(pol, 0,
787 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400788 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700789 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400790 return err;
791 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900792 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800793 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800794 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800795 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400796 bydst) {
797 if (pol->type != type)
798 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700799 err = security_xfrm_policy_delete(
800 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400801 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700802 xfrm_audit_policy_delete(pol, 0,
803 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400804 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700805 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400806 return err;
807 }
808 }
809 }
810 }
811 return err;
812}
813#else
814static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800815xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400816{
817 return 0;
818}
819#endif
820
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800821int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400822{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000823 int dir, err = 0, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Fan Du283bc9f2013-11-07 17:47:50 +0800825 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400826
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800827 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400828 if (err)
829 goto out;
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700832 struct xfrm_policy *pol;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800833 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700834
835 again1:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800836 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800837 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700838 if (pol->type != type)
839 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000840 __xfrm_policy_unlink(pol, dir);
Fan Du283bc9f2013-11-07 17:47:50 +0800841 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000842 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Joy Lattenab5f5e82007-09-17 11:51:22 -0700844 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400845 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700846 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600847
David S. Miller2518c7c2006-08-24 04:45:07 -0700848 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Fan Du283bc9f2013-11-07 17:47:50 +0800850 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700851 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700853
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800854 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700855 again2:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800856 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800857 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700858 bydst) {
859 if (pol->type != type)
860 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000861 __xfrm_policy_unlink(pol, dir);
Fan Du283bc9f2013-11-07 17:47:50 +0800862 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000863 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700864
Joy Lattenab5f5e82007-09-17 11:51:22 -0700865 xfrm_audit_policy_delete(pol, 1,
866 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400867 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700868 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700869 xfrm_policy_kill(pol);
870
Fan Du283bc9f2013-11-07 17:47:50 +0800871 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700872 goto again2;
873 }
874 }
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000877 if (!cnt)
878 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -0400879out:
Fan Du283bc9f2013-11-07 17:47:50 +0800880 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400881 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883EXPORT_SYMBOL(xfrm_policy_flush);
884
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800885int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800886 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 void *data)
888{
Herbert Xu12a169e2008-10-01 07:03:24 -0700889 struct xfrm_policy *pol;
890 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800891 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Timo Teras4c563f72008-02-28 21:31:08 -0800893 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
894 walk->type != XFRM_POLICY_TYPE_ANY)
895 return -EINVAL;
896
Herbert Xu12a169e2008-10-01 07:03:24 -0700897 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800898 return 0;
899
Fan Du283bc9f2013-11-07 17:47:50 +0800900 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700901 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800902 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700903 else
904 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800905 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700906 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800907 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700908 pol = container_of(x, struct xfrm_policy, walk);
909 if (walk->type != XFRM_POLICY_TYPE_ANY &&
910 walk->type != pol->type)
911 continue;
912 error = func(pol, xfrm_policy_id2dir(pol->index),
913 walk->seq, data);
914 if (error) {
915 list_move_tail(&walk->walk.all, &x->all);
916 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800917 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700918 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700920 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800921 error = -ENOENT;
922 goto out;
923 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700924 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925out:
Fan Du283bc9f2013-11-07 17:47:50 +0800926 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return error;
928}
929EXPORT_SYMBOL(xfrm_policy_walk);
930
Herbert Xu12a169e2008-10-01 07:03:24 -0700931void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
932{
933 INIT_LIST_HEAD(&walk->walk.all);
934 walk->walk.dead = 1;
935 walk->type = type;
936 walk->seq = 0;
937}
938EXPORT_SYMBOL(xfrm_policy_walk_init);
939
Fan Du283bc9f2013-11-07 17:47:50 +0800940void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net)
Herbert Xu12a169e2008-10-01 07:03:24 -0700941{
942 if (list_empty(&walk->walk.all))
943 return;
944
Fan Du283bc9f2013-11-07 17:47:50 +0800945 write_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME where is net? */
Herbert Xu12a169e2008-10-01 07:03:24 -0700946 list_del(&walk->walk.all);
Fan Du283bc9f2013-11-07 17:47:50 +0800947 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700948}
949EXPORT_SYMBOL(xfrm_policy_walk_done);
950
James Morris134b0fc2006-10-05 15:42:27 -0500951/*
952 * Find policy to apply to this flow.
953 *
954 * Returns 0 if policy found, else an -errno.
955 */
David S. Millerf299d552011-02-24 01:23:30 -0500956static int xfrm_policy_match(const struct xfrm_policy *pol,
957 const struct flowi *fl,
David S. Miller2518c7c2006-08-24 04:45:07 -0700958 u8 type, u16 family, int dir)
959{
David S. Millerf299d552011-02-24 01:23:30 -0500960 const struct xfrm_selector *sel = &pol->selector;
David S. Millerbc9b35a2012-05-15 15:04:57 -0400961 int ret = -ESRCH;
962 bool match;
David S. Miller2518c7c2006-08-24 04:45:07 -0700963
964 if (pol->family != family ||
David S. Miller1d28f422011-03-12 00:29:39 -0500965 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -0700966 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500967 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700968
969 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500970 if (match)
David S. Miller1d28f422011-03-12 00:29:39 -0500971 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -0700972 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700973
James Morris134b0fc2006-10-05 15:42:27 -0500974 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700975}
976
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800977static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -0800978 const struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700979 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
James Morris134b0fc2006-10-05 15:42:27 -0500981 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700982 struct xfrm_policy *pol, *ret;
David S. Miller0b597e72011-02-24 01:22:48 -0500983 const xfrm_address_t *daddr, *saddr;
David S. Miller2518c7c2006-08-24 04:45:07 -0700984 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700985 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700986
987 daddr = xfrm_flowi_daddr(fl, family);
988 saddr = xfrm_flowi_saddr(fl, family);
989 if (unlikely(!daddr || !saddr))
990 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Fan Du283bc9f2013-11-07 17:47:50 +0800992 read_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800993 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700994 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800995 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500996 err = xfrm_policy_match(pol, fl, type, family, dir);
997 if (err) {
998 if (err == -ESRCH)
999 continue;
1000 else {
1001 ret = ERR_PTR(err);
1002 goto fail;
1003 }
1004 } else {
David S. Milleracba48e2006-08-25 15:46:46 -07001005 ret = pol;
1006 priority = ret->priority;
1007 break;
1008 }
1009 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001010 chain = &net->xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001011 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -05001012 err = xfrm_policy_match(pol, fl, type, family, dir);
1013 if (err) {
1014 if (err == -ESRCH)
1015 continue;
1016 else {
1017 ret = ERR_PTR(err);
1018 goto fail;
1019 }
1020 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001021 ret = pol;
1022 break;
1023 }
1024 }
David S. Milleracba48e2006-08-25 15:46:46 -07001025 if (ret)
1026 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -05001027fail:
Fan Du283bc9f2013-11-07 17:47:50 +08001028 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001029
David S. Miller2518c7c2006-08-24 04:45:07 -07001030 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001031}
1032
Timo Teräs80c802f2010-04-07 00:30:05 +00001033static struct xfrm_policy *
David S. Miller73ff93c2011-02-22 18:33:42 -08001034__xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
Timo Teräs80c802f2010-04-07 00:30:05 +00001035{
1036#ifdef CONFIG_XFRM_SUB_POLICY
1037 struct xfrm_policy *pol;
1038
1039 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
1040 if (pol != NULL)
1041 return pol;
1042#endif
1043 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
1044}
1045
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001046static int flow_to_policy_dir(int dir)
1047{
1048 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
1049 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1050 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1051 return dir;
1052
1053 switch (dir) {
1054 default:
1055 case FLOW_DIR_IN:
1056 return XFRM_POLICY_IN;
1057 case FLOW_DIR_OUT:
1058 return XFRM_POLICY_OUT;
1059 case FLOW_DIR_FWD:
1060 return XFRM_POLICY_FWD;
1061 }
1062}
1063
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001064static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001065xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001066 u8 dir, struct flow_cache_object *old_obj, void *ctx)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001067{
1068 struct xfrm_policy *pol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001069
1070 if (old_obj)
1071 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001072
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001073 pol = __xfrm_policy_lookup(net, fl, family, flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00001074 if (IS_ERR_OR_NULL(pol))
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001075 return ERR_CAST(pol);
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001076
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001077 /* Resolver returns two references:
1078 * one for cache and one for caller of flow_cache_lookup() */
1079 xfrm_pol_hold(pol);
1080
1081 return &pol->flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
Trent Jaegerdf718372005-12-13 23:12:27 -08001084static inline int policy_to_flow_dir(int dir)
1085{
1086 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001087 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1088 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1089 return dir;
1090 switch (dir) {
1091 default:
1092 case XFRM_POLICY_IN:
1093 return FLOW_DIR_IN;
1094 case XFRM_POLICY_OUT:
1095 return FLOW_DIR_OUT;
1096 case XFRM_POLICY_FWD:
1097 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001098 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001099}
1100
David S. Millerdee9f4b2011-02-22 18:44:31 -08001101static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
1102 const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct xfrm_policy *pol;
Fan Du283bc9f2013-11-07 17:47:50 +08001105 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Fan Du283bc9f2013-11-07 17:47:50 +08001107 read_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if ((pol = sk->sk_policy[dir]) != NULL) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04001109 bool match = xfrm_selector_match(&pol->selector, fl,
1110 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001111 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001112
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001113 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001114 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1115 pol = NULL;
1116 goto out;
1117 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001118 err = security_xfrm_policy_lookup(pol->security,
David S. Miller1d28f422011-03-12 00:29:39 -05001119 fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001120 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001121 if (!err)
1122 xfrm_pol_hold(pol);
1123 else if (err == -ESRCH)
1124 pol = NULL;
1125 else
1126 pol = ERR_PTR(err);
1127 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 pol = NULL;
1129 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001130out:
Fan Du283bc9f2013-11-07 17:47:50 +08001131 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return pol;
1133}
1134
1135static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1136{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001137 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001138 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001139 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001140
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001141 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001142 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001143 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001144 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001146
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001147 if (xfrm_bydst_should_resize(net, dir, NULL))
1148 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
1151static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1152 int dir)
1153{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001154 struct net *net = xp_net(pol);
1155
David S. Miller2518c7c2006-08-24 04:45:07 -07001156 if (hlist_unhashed(&pol->bydst))
1157 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Steffen Klassert3a9016f2014-02-19 10:07:34 +01001159 hlist_del_init(&pol->bydst);
David S. Miller2518c7c2006-08-24 04:45:07 -07001160 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001161 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001162 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001163
1164 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
Herbert Xu4666faa2005-06-18 22:43:22 -07001167int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Fan Du283bc9f2013-11-07 17:47:50 +08001169 struct net *net = xp_net(pol);
1170
1171 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 pol = __xfrm_policy_unlink(pol, dir);
Fan Du283bc9f2013-11-07 17:47:50 +08001173 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001178 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
David S. Millera70fcb02006-03-20 19:18:52 -08001180EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1183{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001184 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 struct xfrm_policy *old_pol;
1186
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001187#ifdef CONFIG_XFRM_SUB_POLICY
1188 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1189 return -EINVAL;
1190#endif
1191
Fan Du283bc9f2013-11-07 17:47:50 +08001192 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 old_pol = sk->sk_policy[dir];
1194 sk->sk_policy[dir] = pol;
1195 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001196 pol->curlft.add_time = get_seconds();
Fan Due682adf2013-11-07 17:47:48 +08001197 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1199 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001200 if (old_pol) {
1201 if (pol)
1202 xfrm_policy_requeue(old_pol, pol);
1203
Timo Teräsea2dea92010-03-31 00:17:05 +00001204 /* Unlinking succeeds always. This is the only function
1205 * allowed to delete or replace socket policy.
1206 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001208 }
Fan Du283bc9f2013-11-07 17:47:50 +08001209 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if (old_pol) {
1212 xfrm_policy_kill(old_pol);
1213 }
1214 return 0;
1215}
1216
David S. Millerd3e40a92011-02-24 01:25:41 -05001217static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001219 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Fan Du283bc9f2013-11-07 17:47:50 +08001220 struct net *net = xp_net(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 if (newp) {
1223 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001224 if (security_xfrm_policy_clone(old->security,
1225 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001226 kfree(newp);
1227 return NULL; /* ENOMEM */
1228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 newp->lft = old->lft;
1230 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08001231 newp->mark = old->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 newp->action = old->action;
1233 newp->flags = old->flags;
1234 newp->xfrm_nr = old->xfrm_nr;
1235 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001236 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 memcpy(newp->xfrm_vec, old->xfrm_vec,
1238 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
Fan Du283bc9f2013-11-07 17:47:50 +08001239 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
Fan Du283bc9f2013-11-07 17:47:50 +08001241 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 xfrm_pol_put(newp);
1243 }
1244 return newp;
1245}
1246
1247int __xfrm_sk_clone_policy(struct sock *sk)
1248{
1249 struct xfrm_policy *p0 = sk->sk_policy[0],
1250 *p1 = sk->sk_policy[1];
1251
1252 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1253 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1254 return -ENOMEM;
1255 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1256 return -ENOMEM;
1257 return 0;
1258}
1259
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001260static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001261xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001262 unsigned short family)
1263{
1264 int err;
1265 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1266
1267 if (unlikely(afinfo == NULL))
1268 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001269 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001270 xfrm_policy_put_afinfo(afinfo);
1271 return err;
1272}
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274/* Resolve list of templates for the flow, given policy. */
1275
1276static int
David S. Millera6c2e612011-02-22 18:35:39 -08001277xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1278 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001280 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 int nx;
1282 int i, error;
1283 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1284 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001285 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Weilong Chen9b7a7872013-12-24 09:43:46 +08001287 for (nx = 0, i = 0; i < policy->xfrm_nr; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct xfrm_state *x;
1289 xfrm_address_t *remote = daddr;
1290 xfrm_address_t *local = saddr;
1291 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1292
Joakim Koskela48b8d782007-07-26 00:08:42 -07001293 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1294 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 remote = &tmpl->id.daddr;
1296 local = &tmpl->saddr;
Thomas Egerer8444cf72010-09-20 11:11:38 -07001297 if (xfrm_addr_any(local, tmpl->encap_family)) {
1298 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001299 if (error)
1300 goto fail;
1301 local = &tmp;
1302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304
1305 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1306
1307 if (x && x->km.state == XFRM_STATE_VALID) {
1308 xfrm[nx++] = x;
1309 daddr = remote;
1310 saddr = local;
1311 continue;
1312 }
1313 if (x) {
1314 error = (x->km.state == XFRM_STATE_ERROR ?
1315 -EINVAL : -EAGAIN);
1316 xfrm_state_put(x);
Weilong Chen420545692013-12-24 09:43:49 +08001317 } else if (error == -ESRCH) {
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001318 error = -EAGAIN;
Weilong Chen420545692013-12-24 09:43:49 +08001319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 if (!tmpl->optional)
1322 goto fail;
1323 }
1324 return nx;
1325
1326fail:
Weilong Chen9b7a7872013-12-24 09:43:46 +08001327 for (nx--; nx >= 0; nx--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 xfrm_state_put(xfrm[nx]);
1329 return error;
1330}
1331
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001332static int
David S. Millera6c2e612011-02-22 18:35:39 -08001333xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1334 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001335{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001336 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1337 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001338 int cnx = 0;
1339 int error;
1340 int ret;
1341 int i;
1342
1343 for (i = 0; i < npols; i++) {
1344 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1345 error = -ENOBUFS;
1346 goto fail;
1347 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001348
1349 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001350 if (ret < 0) {
1351 error = ret;
1352 goto fail;
1353 } else
1354 cnx += ret;
1355 }
1356
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001357 /* found states are sorted for outbound processing */
1358 if (npols > 1)
1359 xfrm_state_sort(xfrm, tpp, cnx, family);
1360
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001361 return cnx;
1362
1363 fail:
Weilong Chen9b7a7872013-12-24 09:43:46 +08001364 for (cnx--; cnx >= 0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001365 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001366 return error;
1367
1368}
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370/* Check that the bundle accepts the flow and its components are
1371 * still valid.
1372 */
1373
David S. Miller05d84022011-02-22 17:47:10 -08001374static inline int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001375{
1376 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1377 int tos;
1378
1379 if (!afinfo)
1380 return -EINVAL;
1381
1382 tos = afinfo->get_tos(fl);
1383
1384 xfrm_policy_put_afinfo(afinfo);
1385
1386 return tos;
1387}
1388
Timo Teräs80c802f2010-04-07 00:30:05 +00001389static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1390{
1391 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1392 struct dst_entry *dst = &xdst->u.dst;
1393
1394 if (xdst->route == NULL) {
1395 /* Dummy bundle - if it has xfrms we were not
1396 * able to build bundle as template resolution failed.
1397 * It means we need to try again resolving. */
1398 if (xdst->num_xfrms > 0)
1399 return NULL;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001400 } else if (dst->flags & DST_XFRM_QUEUE) {
1401 return NULL;
Timo Teräs80c802f2010-04-07 00:30:05 +00001402 } else {
1403 /* Real bundle */
1404 if (stale_bundle(dst))
1405 return NULL;
1406 }
1407
1408 dst_hold(dst);
1409 return flo;
1410}
1411
1412static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1413{
1414 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1415 struct dst_entry *dst = &xdst->u.dst;
1416
1417 if (!xdst->route)
1418 return 0;
1419 if (stale_bundle(dst))
1420 return 0;
1421
1422 return 1;
1423}
1424
1425static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1426{
1427 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1428 struct dst_entry *dst = &xdst->u.dst;
1429
1430 dst_free(dst);
1431}
1432
1433static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1434 .get = xfrm_bundle_flo_get,
1435 .check = xfrm_bundle_flo_check,
1436 .delete = xfrm_bundle_flo_delete,
1437};
1438
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001439static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001440{
1441 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001442 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001443 struct xfrm_dst *xdst;
1444
1445 if (!afinfo)
1446 return ERR_PTR(-EINVAL);
1447
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001448 switch (family) {
1449 case AF_INET:
1450 dst_ops = &net->xfrm.xfrm4_dst_ops;
1451 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001452#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001453 case AF_INET6:
1454 dst_ops = &net->xfrm.xfrm6_dst_ops;
1455 break;
1456#endif
1457 default:
1458 BUG();
1459 }
David S. Millerf5b0a872012-07-19 12:31:33 -07001460 xdst = dst_alloc(dst_ops, NULL, 0, DST_OBSOLETE_NONE, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08001461
Madalin Bucurd4cae562011-09-26 07:04:36 +00001462 if (likely(xdst)) {
Steffen Klassert141e3692012-07-05 23:39:34 +00001463 struct dst_entry *dst = &xdst->u.dst;
1464
1465 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001466 xdst->flo.ops = &xfrm_bundle_fc_ops;
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -07001467 if (afinfo->init_dst)
1468 afinfo->init_dst(net, xdst);
Madalin Bucurd4cae562011-09-26 07:04:36 +00001469 } else
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001470 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00001471
Madalin Bucurd4cae562011-09-26 07:04:36 +00001472 xfrm_policy_put_afinfo(afinfo);
1473
Herbert Xu25ee3282007-12-11 09:32:34 -08001474 return xdst;
1475}
1476
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001477static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1478 int nfheader_len)
1479{
1480 struct xfrm_policy_afinfo *afinfo =
1481 xfrm_policy_get_afinfo(dst->ops->family);
1482 int err;
1483
1484 if (!afinfo)
1485 return -EINVAL;
1486
1487 err = afinfo->init_path(path, dst, nfheader_len);
1488
1489 xfrm_policy_put_afinfo(afinfo);
1490
1491 return err;
1492}
1493
Herbert Xu87c1e122010-03-02 02:51:56 +00001494static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08001495 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08001496{
1497 struct xfrm_policy_afinfo *afinfo =
1498 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1499 int err;
1500
1501 if (!afinfo)
1502 return -EINVAL;
1503
Herbert Xu87c1e122010-03-02 02:51:56 +00001504 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001505
1506 xfrm_policy_put_afinfo(afinfo);
1507
1508 return err;
1509}
1510
Timo Teräs80c802f2010-04-07 00:30:05 +00001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1513 * all the metrics... Shortly, bundle a bundle.
1514 */
1515
Herbert Xu25ee3282007-12-11 09:32:34 -08001516static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1517 struct xfrm_state **xfrm, int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08001518 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08001519 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001521 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001522 unsigned long now = jiffies;
1523 struct net_device *dev;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001524 struct xfrm_mode *inner_mode;
Herbert Xu25ee3282007-12-11 09:32:34 -08001525 struct dst_entry *dst_prev = NULL;
1526 struct dst_entry *dst0 = NULL;
1527 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001529 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001530 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001531 int trailer_len = 0;
1532 int tos;
1533 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001534 xfrm_address_t saddr, daddr;
1535
1536 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001537
1538 tos = xfrm_get_tos(fl, family);
1539 err = tos;
1540 if (tos < 0)
1541 goto put_states;
1542
1543 dst_hold(dst);
1544
1545 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001546 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001547 struct dst_entry *dst1 = &xdst->u.dst;
1548
1549 err = PTR_ERR(xdst);
1550 if (IS_ERR(xdst)) {
1551 dst_release(dst);
1552 goto put_states;
1553 }
1554
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001555 if (xfrm[i]->sel.family == AF_UNSPEC) {
1556 inner_mode = xfrm_ip2inner_mode(xfrm[i],
1557 xfrm_af2proto(family));
1558 if (!inner_mode) {
1559 err = -EAFNOSUPPORT;
1560 dst_release(dst);
1561 goto put_states;
1562 }
1563 } else
1564 inner_mode = xfrm[i]->inner_mode;
1565
Herbert Xu25ee3282007-12-11 09:32:34 -08001566 if (!dst_prev)
1567 dst0 = dst1;
1568 else {
1569 dst_prev->child = dst_clone(dst1);
1570 dst1->flags |= DST_NOHASH;
1571 }
1572
1573 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08001574 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08001575
1576 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1577 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001578 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1579 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001580 err = PTR_ERR(dst);
1581 if (IS_ERR(dst))
1582 goto put_states;
1583 } else
1584 dst_hold(dst);
1585
1586 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00001587 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08001588
David S. Millerf5b0a872012-07-19 12:31:33 -07001589 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
Herbert Xu25ee3282007-12-11 09:32:34 -08001590 dst1->flags |= DST_HOST;
1591 dst1->lastuse = now;
1592
1593 dst1->input = dst_discard;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001594 dst1->output = inner_mode->afinfo->output;
Herbert Xu25ee3282007-12-11 09:32:34 -08001595
1596 dst1->next = dst_prev;
1597 dst_prev = dst1;
1598
1599 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001600 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1601 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001602 trailer_len += xfrm[i]->props.trailer_len;
1603 }
1604
1605 dst_prev->child = dst;
1606 dst0->path = dst;
1607
1608 err = -ENODEV;
1609 dev = dst->dev;
1610 if (!dev)
1611 goto free_dst;
1612
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001613 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001614 xfrm_init_pmtu(dst_prev);
1615
1616 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1617 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1618
Herbert Xu87c1e122010-03-02 02:51:56 +00001619 err = xfrm_fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001620 if (err)
1621 goto free_dst;
1622
1623 dst_prev->header_len = header_len;
1624 dst_prev->trailer_len = trailer_len;
1625 header_len -= xdst->u.dst.xfrm->props.header_len;
1626 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1627 }
1628
1629out:
1630 return dst0;
1631
1632put_states:
1633 for (; i < nx; i++)
1634 xfrm_state_put(xfrm[i]);
1635free_dst:
1636 if (dst0)
1637 dst_free(dst0);
1638 dst0 = ERR_PTR(err);
1639 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
Ying Xueda7c2242014-01-08 10:26:39 +08001642#ifdef CONFIG_XFRM_SUB_POLICY
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001643static int xfrm_dst_alloc_copy(void **target, const void *src, int size)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001644{
1645 if (!*target) {
1646 *target = kmalloc(size, GFP_ATOMIC);
1647 if (!*target)
1648 return -ENOMEM;
1649 }
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001650
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001651 memcpy(*target, src, size);
1652 return 0;
1653}
Ying Xueda7c2242014-01-08 10:26:39 +08001654#endif
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001655
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001656static int xfrm_dst_update_parent(struct dst_entry *dst,
1657 const struct xfrm_selector *sel)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001658{
1659#ifdef CONFIG_XFRM_SUB_POLICY
1660 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1661 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1662 sel, sizeof(*sel));
1663#else
1664 return 0;
1665#endif
1666}
1667
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001668static int xfrm_dst_update_origin(struct dst_entry *dst,
1669 const struct flowi *fl)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001670{
1671#ifdef CONFIG_XFRM_SUB_POLICY
1672 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1673 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1674#else
1675 return 0;
1676#endif
1677}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
David S. Miller73ff93c2011-02-22 18:33:42 -08001679static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001680 struct xfrm_policy **pols,
1681 int *num_pols, int *num_xfrms)
1682{
1683 int i;
1684
1685 if (*num_pols == 0 || !pols[0]) {
1686 *num_pols = 0;
1687 *num_xfrms = 0;
1688 return 0;
1689 }
1690 if (IS_ERR(pols[0]))
1691 return PTR_ERR(pols[0]);
1692
1693 *num_xfrms = pols[0]->xfrm_nr;
1694
1695#ifdef CONFIG_XFRM_SUB_POLICY
1696 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1697 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1698 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1699 XFRM_POLICY_TYPE_MAIN,
1700 fl, family,
1701 XFRM_POLICY_OUT);
1702 if (pols[1]) {
1703 if (IS_ERR(pols[1])) {
1704 xfrm_pols_put(pols, *num_pols);
1705 return PTR_ERR(pols[1]);
1706 }
Weilong Chen02d08922013-12-24 09:43:48 +08001707 (*num_pols)++;
Timo Teräs80c802f2010-04-07 00:30:05 +00001708 (*num_xfrms) += pols[1]->xfrm_nr;
1709 }
1710 }
1711#endif
1712 for (i = 0; i < *num_pols; i++) {
1713 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1714 *num_xfrms = -1;
1715 break;
1716 }
1717 }
1718
1719 return 0;
1720
1721}
1722
1723static struct xfrm_dst *
1724xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08001725 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001726 struct dst_entry *dst_orig)
1727{
1728 struct net *net = xp_net(pols[0]);
1729 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1730 struct dst_entry *dst;
1731 struct xfrm_dst *xdst;
1732 int err;
1733
1734 /* Try to instantiate a bundle */
1735 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00001736 if (err <= 0) {
1737 if (err != 0 && err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00001738 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1739 return ERR_PTR(err);
1740 }
1741
1742 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1743 if (IS_ERR(dst)) {
1744 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1745 return ERR_CAST(dst);
1746 }
1747
1748 xdst = (struct xfrm_dst *)dst;
1749 xdst->num_xfrms = err;
1750 if (num_pols > 1)
1751 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1752 else
1753 err = xfrm_dst_update_origin(dst, fl);
1754 if (unlikely(err)) {
1755 dst_free(dst);
1756 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1757 return ERR_PTR(err);
1758 }
1759
1760 xdst->num_pols = num_pols;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08001761 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00001762 xdst->policy_genid = atomic_read(&pols[0]->genid);
1763
1764 return xdst;
1765}
1766
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001767static void xfrm_policy_queue_process(unsigned long arg)
1768{
1769 int err = 0;
1770 struct sk_buff *skb;
1771 struct sock *sk;
1772 struct dst_entry *dst;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001773 struct xfrm_policy *pol = (struct xfrm_policy *)arg;
1774 struct xfrm_policy_queue *pq = &pol->polq;
1775 struct flowi fl;
1776 struct sk_buff_head list;
1777
1778 spin_lock(&pq->hold_queue.lock);
1779 skb = skb_peek(&pq->hold_queue);
Steffen Klassert2bb53e22013-10-08 10:49:51 +02001780 if (!skb) {
1781 spin_unlock(&pq->hold_queue.lock);
1782 goto out;
1783 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001784 dst = skb_dst(skb);
1785 sk = skb->sk;
1786 xfrm_decode_session(skb, &fl, dst->ops->family);
1787 spin_unlock(&pq->hold_queue.lock);
1788
1789 dst_hold(dst->path);
1790 dst = xfrm_lookup(xp_net(pol), dst->path, &fl,
1791 sk, 0);
1792 if (IS_ERR(dst))
1793 goto purge_queue;
1794
1795 if (dst->flags & DST_XFRM_QUEUE) {
1796 dst_release(dst);
1797
1798 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
1799 goto purge_queue;
1800
1801 pq->timeout = pq->timeout << 1;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001802 if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
1803 xfrm_pol_hold(pol);
1804 goto out;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001805 }
1806
1807 dst_release(dst);
1808
1809 __skb_queue_head_init(&list);
1810
1811 spin_lock(&pq->hold_queue.lock);
1812 pq->timeout = 0;
1813 skb_queue_splice_init(&pq->hold_queue, &list);
1814 spin_unlock(&pq->hold_queue.lock);
1815
1816 while (!skb_queue_empty(&list)) {
1817 skb = __skb_dequeue(&list);
1818
1819 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
1820 dst_hold(skb_dst(skb)->path);
1821 dst = xfrm_lookup(xp_net(pol), skb_dst(skb)->path,
1822 &fl, skb->sk, 0);
1823 if (IS_ERR(dst)) {
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001824 kfree_skb(skb);
1825 continue;
1826 }
1827
1828 nf_reset(skb);
1829 skb_dst_drop(skb);
1830 skb_dst_set(skb, dst);
1831
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001832 err = dst_output(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001833 }
1834
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001835out:
1836 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001837 return;
1838
1839purge_queue:
1840 pq->timeout = 0;
1841 xfrm_queue_purge(&pq->hold_queue);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001842 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001843}
1844
Eric Dumazetaad88722014-04-15 13:47:15 -04001845static int xdst_queue_output(struct sock *sk, struct sk_buff *skb)
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001846{
1847 unsigned long sched_next;
1848 struct dst_entry *dst = skb_dst(skb);
1849 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001850 struct xfrm_policy *pol = xdst->pols[0];
1851 struct xfrm_policy_queue *pq = &pol->polq;
Steffen Klassert4d53eff2013-10-16 13:42:46 +02001852 const struct sk_buff *fclone = skb + 1;
1853
1854 if (unlikely(skb->fclone == SKB_FCLONE_ORIG &&
1855 fclone->fclone == SKB_FCLONE_CLONE)) {
1856 kfree_skb(skb);
1857 return 0;
1858 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001859
1860 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
1861 kfree_skb(skb);
1862 return -EAGAIN;
1863 }
1864
1865 skb_dst_force(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001866
1867 spin_lock_bh(&pq->hold_queue.lock);
1868
1869 if (!pq->timeout)
1870 pq->timeout = XFRM_QUEUE_TMO_MIN;
1871
1872 sched_next = jiffies + pq->timeout;
1873
1874 if (del_timer(&pq->hold_timer)) {
1875 if (time_before(pq->hold_timer.expires, sched_next))
1876 sched_next = pq->hold_timer.expires;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001877 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001878 }
1879
1880 __skb_queue_tail(&pq->hold_queue, skb);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001881 if (!mod_timer(&pq->hold_timer, sched_next))
1882 xfrm_pol_hold(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001883
1884 spin_unlock_bh(&pq->hold_queue.lock);
1885
1886 return 0;
1887}
1888
1889static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
1890 struct dst_entry *dst,
1891 const struct flowi *fl,
1892 int num_xfrms,
1893 u16 family)
1894{
1895 int err;
1896 struct net_device *dev;
1897 struct dst_entry *dst1;
1898 struct xfrm_dst *xdst;
1899
1900 xdst = xfrm_alloc_dst(net, family);
1901 if (IS_ERR(xdst))
1902 return xdst;
1903
Steffen Klassert5b8ef342013-08-27 13:43:30 +02001904 if (net->xfrm.sysctl_larval_drop || num_xfrms <= 0)
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001905 return xdst;
1906
1907 dst1 = &xdst->u.dst;
1908 dst_hold(dst);
1909 xdst->route = dst;
1910
1911 dst_copy_metrics(dst1, dst);
1912
1913 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
1914 dst1->flags |= DST_HOST | DST_XFRM_QUEUE;
1915 dst1->lastuse = jiffies;
1916
1917 dst1->input = dst_discard;
1918 dst1->output = xdst_queue_output;
1919
1920 dst_hold(dst);
1921 dst1->child = dst;
1922 dst1->path = dst;
1923
1924 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
1925
1926 err = -ENODEV;
1927 dev = dst->dev;
1928 if (!dev)
1929 goto free_dst;
1930
1931 err = xfrm_fill_dst(xdst, dev, fl);
1932 if (err)
1933 goto free_dst;
1934
1935out:
1936 return xdst;
1937
1938free_dst:
1939 dst_release(dst1);
1940 xdst = ERR_PTR(err);
1941 goto out;
1942}
1943
Timo Teräs80c802f2010-04-07 00:30:05 +00001944static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001945xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
Timo Teräs80c802f2010-04-07 00:30:05 +00001946 struct flow_cache_object *oldflo, void *ctx)
1947{
1948 struct dst_entry *dst_orig = (struct dst_entry *)ctx;
1949 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1950 struct xfrm_dst *xdst, *new_xdst;
1951 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
1952
1953 /* Check if the policies from old bundle are usable */
1954 xdst = NULL;
1955 if (oldflo) {
1956 xdst = container_of(oldflo, struct xfrm_dst, flo);
1957 num_pols = xdst->num_pols;
1958 num_xfrms = xdst->num_xfrms;
1959 pol_dead = 0;
1960 for (i = 0; i < num_pols; i++) {
1961 pols[i] = xdst->pols[i];
1962 pol_dead |= pols[i]->walk.dead;
1963 }
1964 if (pol_dead) {
1965 dst_free(&xdst->u.dst);
1966 xdst = NULL;
1967 num_pols = 0;
1968 num_xfrms = 0;
1969 oldflo = NULL;
1970 }
1971 }
1972
1973 /* Resolve policies to use if we couldn't get them from
1974 * previous cache entry */
1975 if (xdst == NULL) {
1976 num_pols = 1;
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001977 pols[0] = __xfrm_policy_lookup(net, fl, family,
1978 flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00001979 err = xfrm_expand_policies(fl, family, pols,
1980 &num_pols, &num_xfrms);
1981 if (err < 0)
1982 goto inc_error;
1983 if (num_pols == 0)
1984 return NULL;
1985 if (num_xfrms <= 0)
1986 goto make_dummy_bundle;
1987 }
1988
1989 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family, dst_orig);
1990 if (IS_ERR(new_xdst)) {
1991 err = PTR_ERR(new_xdst);
1992 if (err != -EAGAIN)
1993 goto error;
1994 if (oldflo == NULL)
1995 goto make_dummy_bundle;
1996 dst_hold(&xdst->u.dst);
1997 return oldflo;
Timo Teräsd809ec82010-07-12 21:29:42 +00001998 } else if (new_xdst == NULL) {
1999 num_xfrms = 0;
2000 if (oldflo == NULL)
2001 goto make_dummy_bundle;
2002 xdst->num_xfrms = 0;
2003 dst_hold(&xdst->u.dst);
2004 return oldflo;
Timo Teräs80c802f2010-04-07 00:30:05 +00002005 }
2006
2007 /* Kill the previous bundle */
2008 if (xdst) {
2009 /* The policies were stolen for newly generated bundle */
2010 xdst->num_pols = 0;
2011 dst_free(&xdst->u.dst);
2012 }
2013
2014 /* Flow cache does not have reference, it dst_free()'s,
2015 * but we do need to return one reference for original caller */
2016 dst_hold(&new_xdst->u.dst);
2017 return &new_xdst->flo;
2018
2019make_dummy_bundle:
2020 /* We found policies, but there's no bundles to instantiate:
2021 * either because the policy blocks, has no transformations or
2022 * we could not build template (no xfrm_states).*/
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002023 xdst = xfrm_create_dummy_bundle(net, dst_orig, fl, num_xfrms, family);
Timo Teräs80c802f2010-04-07 00:30:05 +00002024 if (IS_ERR(xdst)) {
2025 xfrm_pols_put(pols, num_pols);
2026 return ERR_CAST(xdst);
2027 }
2028 xdst->num_pols = num_pols;
2029 xdst->num_xfrms = num_xfrms;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08002030 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002031
2032 dst_hold(&xdst->u.dst);
2033 return &xdst->flo;
2034
2035inc_error:
2036 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2037error:
2038 if (xdst != NULL)
2039 dst_free(&xdst->u.dst);
2040 else
2041 xfrm_pols_put(pols, num_pols);
2042 return ERR_PTR(err);
2043}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
David S. Miller2774c132011-03-01 14:59:04 -08002045static struct dst_entry *make_blackhole(struct net *net, u16 family,
2046 struct dst_entry *dst_orig)
2047{
2048 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2049 struct dst_entry *ret;
2050
2051 if (!afinfo) {
2052 dst_release(dst_orig);
Li RongQing433a1952012-09-17 22:40:10 +00002053 return ERR_PTR(-EINVAL);
David S. Miller2774c132011-03-01 14:59:04 -08002054 } else {
2055 ret = afinfo->blackhole_route(net, dst_orig);
2056 }
2057 xfrm_policy_put_afinfo(afinfo);
2058
2059 return ret;
2060}
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062/* Main function: finds/creates a bundle for given flow.
2063 *
2064 * At the moment we eat a raw IP route. Mostly to speed up lookups
2065 * on interfaces with disabled IPsec.
2066 */
David S. Miller452edd52011-03-02 13:27:41 -08002067struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
2068 const struct flowi *fl,
2069 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002071 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00002072 struct flow_cache_object *flo;
2073 struct xfrm_dst *xdst;
David S. Miller452edd52011-03-02 13:27:41 -08002074 struct dst_entry *dst, *route;
Timo Teräs80c802f2010-04-07 00:30:05 +00002075 u16 family = dst_orig->ops->family;
Trent Jaegerdf718372005-12-13 23:12:27 -08002076 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Changli Gao4b021622010-04-27 21:20:22 +00002077 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002078
Timo Teräs80c802f2010-04-07 00:30:05 +00002079 dst = NULL;
2080 xdst = NULL;
2081 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002082
Thomas Graff7944fb2007-08-25 13:46:55 -07002083 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002084 num_pols = 1;
2085 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
2086 err = xfrm_expand_policies(fl, family, pols,
2087 &num_pols, &num_xfrms);
2088 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08002089 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002090
2091 if (num_pols) {
2092 if (num_xfrms <= 0) {
2093 drop_pols = num_pols;
2094 goto no_transform;
2095 }
2096
2097 xdst = xfrm_resolve_and_create_bundle(
2098 pols, num_pols, fl,
2099 family, dst_orig);
2100 if (IS_ERR(xdst)) {
2101 xfrm_pols_put(pols, num_pols);
2102 err = PTR_ERR(xdst);
2103 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00002104 } else if (xdst == NULL) {
2105 num_xfrms = 0;
2106 drop_pols = num_pols;
2107 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00002108 }
2109
Timo Teräs80c802f2010-04-07 00:30:05 +00002110 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002111 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Timo Teräs80c802f2010-04-07 00:30:05 +00002114 if (xdst == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07002116 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08002117 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08002118 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Timo Teräs80c802f2010-04-07 00:30:05 +00002120 flo = flow_cache_lookup(net, fl, family, dir,
2121 xfrm_bundle_lookup, dst_orig);
2122 if (flo == NULL)
2123 goto nopol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002124 if (IS_ERR(flo)) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002125 err = PTR_ERR(flo);
Herbert Xu75b8c132007-12-11 04:38:08 -08002126 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08002127 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002128 xdst = container_of(flo, struct xfrm_dst, flo);
2129
2130 num_pols = xdst->num_pols;
2131 num_xfrms = xdst->num_xfrms;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08002132 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002133 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
2135
Timo Teräs80c802f2010-04-07 00:30:05 +00002136 dst = &xdst->u.dst;
2137 if (route == NULL && num_xfrms > 0) {
2138 /* The only case when xfrm_bundle_lookup() returns a
2139 * bundle with null route, is when the template could
2140 * not be resolved. It means policies are there, but
2141 * bundle could not be created, since we don't yet
2142 * have the xfrm_state's. We need to wait for KM to
2143 * negotiate new SA's or bail out with error.*/
2144 if (net->xfrm.sysctl_larval_drop) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002145 dst_release(dst);
Timo Terasa1aa3482010-05-15 23:49:26 -07002146 xfrm_pols_put(pols, drop_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002147 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller2774c132011-03-01 14:59:04 -08002148
David S. Miller452edd52011-03-02 13:27:41 -08002149 return make_blackhole(net, family, dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002150 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002151
Steffen Klassert5b8ef342013-08-27 13:43:30 +02002152 err = -EAGAIN;
Timo Teräs80c802f2010-04-07 00:30:05 +00002153
2154 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
2155 goto error;
2156 }
2157
2158no_transform:
2159 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08002160 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Timo Teräs80c802f2010-04-07 00:30:05 +00002162 if ((flags & XFRM_LOOKUP_ICMP) &&
2163 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
2164 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08002165 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002166 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08002167
Timo Teräs80c802f2010-04-07 00:30:05 +00002168 for (i = 0; i < num_pols; i++)
2169 pols[i]->curlft.use_time = get_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08002170
Timo Teräs80c802f2010-04-07 00:30:05 +00002171 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002173 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07002174 err = -EPERM;
2175 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002176 } else if (num_xfrms > 0) {
2177 /* Flow transformed */
Timo Teräs80c802f2010-04-07 00:30:05 +00002178 dst_release(dst_orig);
2179 } else {
2180 /* Flow passes untransformed */
2181 dst_release(dst);
David S. Miller452edd52011-03-02 13:27:41 -08002182 dst = dst_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002184ok:
2185 xfrm_pols_put(pols, drop_pols);
Gao feng0c183372012-05-26 01:30:53 +00002186 if (dst && dst->xfrm &&
2187 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
2188 dst->flags |= DST_XFRM_TUNNEL;
David S. Miller452edd52011-03-02 13:27:41 -08002189 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Timo Teräs80c802f2010-04-07 00:30:05 +00002191nopol:
David S. Miller452edd52011-03-02 13:27:41 -08002192 if (!(flags & XFRM_LOOKUP_ICMP)) {
2193 dst = dst_orig;
Timo Teräs80c802f2010-04-07 00:30:05 +00002194 goto ok;
David S. Miller452edd52011-03-02 13:27:41 -08002195 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002196 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197error:
Timo Teräs80c802f2010-04-07 00:30:05 +00002198 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08002199dropdst:
2200 dst_release(dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002201 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08002202 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203}
2204EXPORT_SYMBOL(xfrm_lookup);
2205
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002206static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08002207xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002208{
2209 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002210
2211 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
2212 return 0;
2213 x = skb->sp->xvec[idx];
2214 if (!x->type->reject)
2215 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07002216 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002217}
2218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219/* When skb is transformed back to its "native" form, we have to
2220 * check policy restrictions. At the moment we make this in maximally
2221 * stupid way. Shame on me. :-) Of course, connected sockets must
2222 * have policy cached at them.
2223 */
2224
2225static inline int
David S. Miller7db454b2011-02-24 01:43:01 -05002226xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 unsigned short family)
2228{
2229 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08002230 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 return x->id.proto == tmpl->id.proto &&
2232 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
2233 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
2234 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07002235 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07002236 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002237 !(x->props.mode != XFRM_MODE_TRANSPORT &&
2238 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239}
2240
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002241/*
2242 * 0 or more than 0 is returned when validation is succeeded (either bypass
2243 * because of optional transport mode, or next index of the mathced secpath
2244 * state with the template.
2245 * -1 is returned when no matching template is found.
2246 * Otherwise "-2 - errored_index" is returned.
2247 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248static inline int
David S. Miller22cccb72011-02-24 01:43:33 -05002249xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 unsigned short family)
2251{
2252 int idx = start;
2253
2254 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002255 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return start;
2257 } else
2258 start = -1;
2259 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002260 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002262 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
2263 if (start == -1)
2264 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268 return start;
2269}
2270
Herbert Xud5422ef2007-12-12 10:44:16 -08002271int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
2272 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002275 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 if (unlikely(afinfo == NULL))
2278 return -EAFNOSUPPORT;
2279
Herbert Xud5422ef2007-12-12 10:44:16 -08002280 afinfo->decode_session(skb, fl, reverse);
David S. Miller1d28f422011-03-12 00:29:39 -05002281 err = security_xfrm_decode_session(skb, &fl->flowi_secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002283 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284}
Herbert Xud5422ef2007-12-12 10:44:16 -08002285EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
David S. Miller9a7386e2011-02-24 01:44:12 -05002287static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
2289 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002290 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002291 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
2295
2296 return 0;
2297}
2298
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002299int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 unsigned short family)
2301{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002302 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002304 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2305 int npols = 0;
2306 int xfrm_nr;
2307 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08002308 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08002310 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002311 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Herbert Xud5422ef2007-12-12 10:44:16 -08002313 reverse = dir & ~XFRM_POLICY_MASK;
2314 dir &= XFRM_POLICY_MASK;
2315 fl_dir = policy_to_flow_dir(dir);
2316
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002317 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002318 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002320 }
2321
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08002322 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 /* First, check used SA against their selectors. */
2325 if (skb->sp) {
2326 int i;
2327
Weilong Chen9b7a7872013-12-24 09:43:46 +08002328 for (i = skb->sp->len-1; i >= 0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002329 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002330 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002331 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
2335 }
2336
2337 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002338 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002339 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002340 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002341 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002342 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002343 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002346 if (!pol) {
2347 struct flow_cache_object *flo;
2348
2349 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2350 xfrm_policy_lookup, NULL);
2351 if (IS_ERR_OR_NULL(flo))
2352 pol = ERR_CAST(flo);
2353 else
2354 pol = container_of(flo, struct xfrm_policy, flo);
2355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002357 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002358 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002359 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002360 }
James Morris134b0fc2006-10-05 15:42:27 -05002361
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002362 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002363 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002364 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002365 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002366 return 0;
2367 }
2368 return 1;
2369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
James Morris9d729f72007-03-04 16:12:44 -08002371 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002373 pols[0] = pol;
Weilong Chen02d08922013-12-24 09:43:48 +08002374 npols++;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002375#ifdef CONFIG_XFRM_SUB_POLICY
2376 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002377 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002378 &fl, family,
2379 XFRM_POLICY_IN);
2380 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002381 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002382 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002383 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002384 }
James Morris9d729f72007-03-04 16:12:44 -08002385 pols[1]->curlft.use_time = get_seconds();
Weilong Chen02d08922013-12-24 09:43:48 +08002386 npols++;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002387 }
2388 }
2389#endif
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 if (pol->action == XFRM_POLICY_ALLOW) {
2392 struct sec_path *sp;
2393 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002394 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002395 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002396 struct xfrm_tmpl **tpp = tp;
2397 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 int i, k;
2399
2400 if ((sp = skb->sp) == NULL)
2401 sp = &dummy;
2402
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002403 for (pi = 0; pi < npols; pi++) {
2404 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002405 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002406 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002407 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002408 }
2409 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002410 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002411 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002412 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002413 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2414 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2415 }
2416 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002417 if (npols > 1) {
Fan Du283bc9f2013-11-07 17:47:50 +08002418 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family, net);
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002419 tpp = stp;
2420 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 /* For each tunnel xfrm, find the first matching tmpl.
2423 * For each tmpl before that, find corresponding xfrm.
2424 * Order is _important_. Later we will implement
2425 * some barriers, but at the moment barriers
2426 * are implied between each two transformations.
2427 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002428 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2429 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002430 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002431 if (k < -1)
2432 /* "-2 - errored_index" returned */
2433 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002434 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
2438
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002439 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002440 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002444 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 return 1;
2446 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002447 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
2449reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002450 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002451reject_error:
2452 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return 0;
2454}
2455EXPORT_SYMBOL(__xfrm_policy_check);
2456
2457int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2458{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002459 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002461 struct dst_entry *dst;
Eric Dumazet73137142011-03-15 15:26:43 -07002462 int res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002464 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002465 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Eric Dumazetfafeeb62010-06-01 10:04:49 +00002469 skb_dst_force(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +00002470
David S. Miller452edd52011-03-02 13:27:41 -08002471 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, 0);
2472 if (IS_ERR(dst)) {
Eric Dumazet73137142011-03-15 15:26:43 -07002473 res = 0;
David S. Miller452edd52011-03-02 13:27:41 -08002474 dst = NULL;
2475 }
Eric Dumazetadf30902009-06-02 05:19:30 +00002476 skb_dst_set(skb, dst);
2477 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479EXPORT_SYMBOL(__xfrm_route_forward);
2480
David S. Millerd49c73c2006-08-13 18:55:53 -07002481/* Optimize later using cookies and generation ids. */
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2484{
David S. Millerd49c73c2006-08-13 18:55:53 -07002485 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
David S. Millerf5b0a872012-07-19 12:31:33 -07002486 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
2487 * get validated by dst_ops->check on every use. We do this
2488 * because when a normal route referenced by an XFRM dst is
2489 * obsoleted we do not go looking around for all parent
2490 * referencing XFRM dsts so that we can invalidate them. It
2491 * is just too much work. Instead we make the checks here on
2492 * every use. For example:
David S. Millerd49c73c2006-08-13 18:55:53 -07002493 *
2494 * XFRM dst A --> IPv4 dst X
2495 *
2496 * X is the "xdst->route" of A (X is also the "dst->path" of A
2497 * in this example). If X is marked obsolete, "A" will not
2498 * notice. That's what we are validating here via the
2499 * stale_bundle() check.
2500 *
2501 * When a policy's bundle is pruned, we dst_free() the XFRM
David S. Millerf5b0a872012-07-19 12:31:33 -07002502 * dst which causes it's ->obsolete field to be set to
2503 * DST_OBSOLETE_DEAD. If an XFRM dst has been pruned like
2504 * this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002505 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002506 if (dst->obsolete < 0 && !stale_bundle(dst))
2507 return dst;
2508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return NULL;
2510}
2511
2512static int stale_bundle(struct dst_entry *dst)
2513{
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002514 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515}
2516
Herbert Xuaabc9762005-05-03 16:27:10 -07002517void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002520 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002521 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 dev_put(dev);
2523 }
2524}
Herbert Xuaabc9762005-05-03 16:27:10 -07002525EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527static void xfrm_link_failure(struct sk_buff *skb)
2528{
2529 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
2531
2532static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2533{
2534 if (dst) {
2535 if (dst->obsolete) {
2536 dst_release(dst);
2537 dst = NULL;
2538 }
2539 }
2540 return dst;
2541}
2542
Paul Mooree4c17212013-05-29 07:36:25 +00002543void xfrm_garbage_collect(struct net *net)
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002544{
Fan Duca925cf2014-01-18 09:55:27 +08002545 flow_cache_flush(net);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002546}
Paul Mooree4c17212013-05-29 07:36:25 +00002547EXPORT_SYMBOL(xfrm_garbage_collect);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002548
2549static void xfrm_garbage_collect_deferred(struct net *net)
2550{
Fan Duca925cf2014-01-18 09:55:27 +08002551 flow_cache_flush_deferred(net);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002552}
2553
Herbert Xu25ee3282007-12-11 09:32:34 -08002554static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555{
2556 do {
2557 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2558 u32 pmtu, route_mtu_cached;
2559
2560 pmtu = dst_mtu(dst->child);
2561 xdst->child_mtu_cached = pmtu;
2562
2563 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2564
2565 route_mtu_cached = dst_mtu(xdst->route);
2566 xdst->route_mtu_cached = route_mtu_cached;
2567
2568 if (pmtu > route_mtu_cached)
2569 pmtu = route_mtu_cached;
2570
David S. Millerdefb3512010-12-08 21:16:57 -08002571 dst_metric_set(dst, RTAX_MTU, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 } while ((dst = dst->next));
2573}
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575/* Check that the bundle accepts the flow and its components are
2576 * still valid.
2577 */
2578
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002579static int xfrm_bundle_ok(struct xfrm_dst *first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
2581 struct dst_entry *dst = &first->u.dst;
2582 struct xfrm_dst *last;
2583 u32 mtu;
2584
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002585 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 (dst->dev && !netif_running(dst->dev)))
2587 return 0;
2588
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002589 if (dst->flags & DST_XFRM_QUEUE)
2590 return 1;
2591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 last = NULL;
2593
2594 do {
2595 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2596
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2598 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00002599 if (xdst->xfrm_genid != dst->xfrm->genid)
2600 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07002601 if (xdst->num_pols > 0 &&
2602 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07002603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 mtu = dst_mtu(dst->child);
2606 if (xdst->child_mtu_cached != mtu) {
2607 last = xdst;
2608 xdst->child_mtu_cached = mtu;
2609 }
2610
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002611 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 return 0;
2613 mtu = dst_mtu(xdst->route);
2614 if (xdst->route_mtu_cached != mtu) {
2615 last = xdst;
2616 xdst->route_mtu_cached = mtu;
2617 }
2618
2619 dst = dst->child;
2620 } while (dst->xfrm);
2621
2622 if (likely(!last))
2623 return 1;
2624
2625 mtu = last->child_mtu_cached;
2626 for (;;) {
2627 dst = &last->u.dst;
2628
2629 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2630 if (mtu > last->route_mtu_cached)
2631 mtu = last->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08002632 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 if (last == first)
2635 break;
2636
Patrick McHardybd0bf072007-07-18 01:55:52 -07002637 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 last->child_mtu_cached = mtu;
2639 }
2640
2641 return 1;
2642}
2643
David S. Miller0dbaee32010-12-13 12:52:14 -08002644static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2645{
2646 return dst_metric_advmss(dst->path);
2647}
2648
Steffen Klassertebb762f2011-11-23 02:12:51 +00002649static unsigned int xfrm_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002650{
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002651 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
2652
2653 return mtu ? : dst_mtu(dst->path);
David S. Millerd33e4552010-12-14 13:01:14 -08002654}
2655
David S. Millerf894cbf2012-07-02 21:52:24 -07002656static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
2657 struct sk_buff *skb,
2658 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -07002659{
David S. Millerf894cbf2012-07-02 21:52:24 -07002660 return dst->path->ops->neigh_lookup(dst, skb, daddr);
David S. Millerd3aaeb32011-07-18 00:40:17 -07002661}
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2664{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002665 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 int err = 0;
2667 if (unlikely(afinfo == NULL))
2668 return -EINVAL;
2669 if (unlikely(afinfo->family >= NPROTO))
2670 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002671 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2673 err = -ENOBUFS;
2674 else {
2675 struct dst_ops *dst_ops = afinfo->dst_ops;
2676 if (likely(dst_ops->kmem_cachep == NULL))
2677 dst_ops->kmem_cachep = xfrm_dst_cache;
2678 if (likely(dst_ops->check == NULL))
2679 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08002680 if (likely(dst_ops->default_advmss == NULL))
2681 dst_ops->default_advmss = xfrm_default_advmss;
Steffen Klassertebb762f2011-11-23 02:12:51 +00002682 if (likely(dst_ops->mtu == NULL))
2683 dst_ops->mtu = xfrm_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if (likely(dst_ops->negative_advice == NULL))
2685 dst_ops->negative_advice = xfrm_negative_advice;
2686 if (likely(dst_ops->link_failure == NULL))
2687 dst_ops->link_failure = xfrm_link_failure;
David S. Millerd3aaeb32011-07-18 00:40:17 -07002688 if (likely(dst_ops->neigh_lookup == NULL))
2689 dst_ops->neigh_lookup = xfrm_neigh_lookup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 if (likely(afinfo->garbage_collect == NULL))
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002691 afinfo->garbage_collect = xfrm_garbage_collect_deferred;
Priyanka Jain418a99a2012-08-12 21:22:29 +00002692 rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002694 spin_unlock(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002695
2696 rtnl_lock();
2697 for_each_net(net) {
2698 struct dst_ops *xfrm_dst_ops;
2699
2700 switch (afinfo->family) {
2701 case AF_INET:
2702 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2703 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002704#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002705 case AF_INET6:
2706 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2707 break;
2708#endif
2709 default:
2710 BUG();
2711 }
2712 *xfrm_dst_ops = *afinfo->dst_ops;
2713 }
2714 rtnl_unlock();
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 return err;
2717}
2718EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2719
2720int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2721{
2722 int err = 0;
2723 if (unlikely(afinfo == NULL))
2724 return -EINVAL;
2725 if (unlikely(afinfo->family >= NPROTO))
2726 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002727 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2729 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2730 err = -EINVAL;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002731 else
2732 RCU_INIT_POINTER(xfrm_policy_afinfo[afinfo->family],
2733 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002735 spin_unlock(&xfrm_policy_afinfo_lock);
2736 if (!err) {
2737 struct dst_ops *dst_ops = afinfo->dst_ops;
2738
2739 synchronize_rcu();
2740
2741 dst_ops->kmem_cachep = NULL;
2742 dst_ops->check = NULL;
2743 dst_ops->negative_advice = NULL;
2744 dst_ops->link_failure = NULL;
2745 afinfo->garbage_collect = NULL;
2746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return err;
2748}
2749EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2750
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002751static void __net_init xfrm_dst_ops_init(struct net *net)
2752{
2753 struct xfrm_policy_afinfo *afinfo;
2754
Eric Dumazetef8531b2012-08-19 12:31:48 +02002755 rcu_read_lock();
2756 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002757 if (afinfo)
2758 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002759#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazetef8531b2012-08-19 12:31:48 +02002760 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET6]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002761 if (afinfo)
2762 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2763#endif
Priyanka Jain418a99a2012-08-12 21:22:29 +00002764 rcu_read_unlock();
Herbert Xu546be242006-05-27 23:03:58 -07002765}
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2768{
Jiri Pirko351638e2013-05-28 01:30:21 +00002769 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 switch (event) {
2772 case NETDEV_DOWN:
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002773 xfrm_garbage_collect(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 }
2775 return NOTIFY_DONE;
2776}
2777
2778static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002779 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780};
2781
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002782#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002783static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002784{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002785 int rv;
WANG Cong698365f2014-05-05 15:55:55 -07002786 net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
2787 if (!net->mib.xfrm_statistics)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002788 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002789 rv = xfrm_proc_init(net);
2790 if (rv < 0)
WANG Cong698365f2014-05-05 15:55:55 -07002791 free_percpu(net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002792 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002793}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002794
2795static void xfrm_statistics_fini(struct net *net)
2796{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002797 xfrm_proc_fini(net);
WANG Cong698365f2014-05-05 15:55:55 -07002798 free_percpu(net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002799}
2800#else
2801static int __net_init xfrm_statistics_init(struct net *net)
2802{
2803 return 0;
2804}
2805
2806static void xfrm_statistics_fini(struct net *net)
2807{
2808}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002809#endif
2810
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002811static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
David S. Miller2518c7c2006-08-24 04:45:07 -07002813 unsigned int hmask, sz;
2814 int dir;
2815
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002816 if (net_eq(net, &init_net))
2817 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002819 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002820 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
David S. Miller2518c7c2006-08-24 04:45:07 -07002822 hmask = 8 - 1;
2823 sz = (hmask+1) * sizeof(struct hlist_head);
2824
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002825 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2826 if (!net->xfrm.policy_byidx)
2827 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002828 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002829
2830 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2831 struct xfrm_policy_hash *htab;
2832
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002833 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002834 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002835
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002836 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002837 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002838 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002839 goto out_bydst;
2840 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002841 }
2842
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002843 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002844 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002845 if (net_eq(net, &init_net))
2846 register_netdevice_notifier(&xfrm_dev_notifier);
2847 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002848
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002849out_bydst:
2850 for (dir--; dir >= 0; dir--) {
2851 struct xfrm_policy_hash *htab;
2852
2853 htab = &net->xfrm.policy_bydst[dir];
2854 xfrm_hash_free(htab->table, sz);
2855 }
2856 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002857out_byidx:
2858 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859}
2860
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002861static void xfrm_policy_fini(struct net *net)
2862{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002863 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002864 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002865 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002866
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002867 flush_work(&net->xfrm.policy_hash_work);
2868#ifdef CONFIG_XFRM_SUB_POLICY
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002869 audit_info.loginuid = INVALID_UID;
Eric Paris4440e852013-11-27 17:35:17 -05002870 audit_info.sessionid = (unsigned int)-1;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002871 audit_info.secid = 0;
2872 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2873#endif
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002874 audit_info.loginuid = INVALID_UID;
Eric Paris4440e852013-11-27 17:35:17 -05002875 audit_info.sessionid = (unsigned int)-1;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002876 audit_info.secid = 0;
2877 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002878
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002879 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002880
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002881 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002882 struct xfrm_policy_hash *htab;
2883
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002884 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002885
2886 htab = &net->xfrm.policy_bydst[dir];
Michal Kubecek5b653b22013-01-18 16:03:48 +01002887 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002888 WARN_ON(!hlist_empty(htab->table));
2889 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002890 }
2891
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002892 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002893 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2894 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002895}
2896
2897static int __net_init xfrm_net_init(struct net *net)
2898{
2899 int rv;
2900
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002901 rv = xfrm_statistics_init(net);
2902 if (rv < 0)
2903 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002904 rv = xfrm_state_init(net);
2905 if (rv < 0)
2906 goto out_state;
2907 rv = xfrm_policy_init(net);
2908 if (rv < 0)
2909 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002910 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002911 rv = xfrm_sysctl_init(net);
2912 if (rv < 0)
2913 goto out_sysctl;
Steffen Klassert4a93f502014-03-12 09:43:17 +01002914 rv = flow_cache_init(net);
2915 if (rv < 0)
2916 goto out;
Fan Du283bc9f2013-11-07 17:47:50 +08002917
2918 /* Initialize the per-net locks here */
2919 spin_lock_init(&net->xfrm.xfrm_state_lock);
2920 rwlock_init(&net->xfrm.xfrm_policy_lock);
Fan Du283bc9f2013-11-07 17:47:50 +08002921 mutex_init(&net->xfrm.xfrm_cfg_mutex);
2922
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002923 return 0;
2924
Steffen Klassert4a93f502014-03-12 09:43:17 +01002925out:
2926 xfrm_sysctl_fini(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002927out_sysctl:
2928 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002929out_policy:
2930 xfrm_state_fini(net);
2931out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002932 xfrm_statistics_fini(net);
2933out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002934 return rv;
2935}
2936
2937static void __net_exit xfrm_net_exit(struct net *net)
2938{
Steffen Klassert4a93f502014-03-12 09:43:17 +01002939 flow_cache_fini(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002940 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002941 xfrm_policy_fini(net);
2942 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002943 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002944}
2945
2946static struct pernet_operations __net_initdata xfrm_net_ops = {
2947 .init = xfrm_net_init,
2948 .exit = xfrm_net_exit,
2949};
2950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951void __init xfrm_init(void)
2952{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002953 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 xfrm_input_init();
2955}
2956
Joy Lattenab5f5e82007-09-17 11:51:22 -07002957#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002958static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2959 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002960{
Paul Moore875179f2007-12-01 23:27:18 +11002961 struct xfrm_sec_ctx *ctx = xp->security;
2962 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002963
Paul Moore875179f2007-12-01 23:27:18 +11002964 if (ctx)
2965 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2966 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2967
Weilong Chen9b7a7872013-12-24 09:43:46 +08002968 switch (sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002969 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002970 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002971 if (sel->prefixlen_s != 32)
2972 audit_log_format(audit_buf, " src_prefixlen=%d",
2973 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002974 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002975 if (sel->prefixlen_d != 32)
2976 audit_log_format(audit_buf, " dst_prefixlen=%d",
2977 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002978 break;
2979 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002980 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002981 if (sel->prefixlen_s != 128)
2982 audit_log_format(audit_buf, " src_prefixlen=%d",
2983 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002984 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002985 if (sel->prefixlen_d != 128)
2986 audit_log_format(audit_buf, " dst_prefixlen=%d",
2987 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002988 break;
2989 }
2990}
2991
Paul Moore68277ac2007-12-20 20:49:33 -08002992void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris4440e852013-11-27 17:35:17 -05002993 kuid_t auid, unsigned int sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002994{
2995 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002996
Paul Mooreafeb14b2007-12-21 14:58:11 -08002997 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002998 if (audit_buf == NULL)
2999 return;
Eric Paris25323862008-04-18 10:09:25 -04003000 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003001 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003002 xfrm_audit_common_policyinfo(xp, audit_buf);
3003 audit_log_end(audit_buf);
3004}
3005EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
3006
Paul Moore68277ac2007-12-20 20:49:33 -08003007void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris4440e852013-11-27 17:35:17 -05003008 kuid_t auid, unsigned int sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003009{
3010 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003011
Paul Mooreafeb14b2007-12-21 14:58:11 -08003012 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003013 if (audit_buf == NULL)
3014 return;
Eric Paris25323862008-04-18 10:09:25 -04003015 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003016 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003017 xfrm_audit_common_policyinfo(xp, audit_buf);
3018 audit_log_end(audit_buf);
3019}
3020EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
3021#endif
3022
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003023#ifdef CONFIG_XFRM_MIGRATE
David S. Millerbc9b35a2012-05-15 15:04:57 -04003024static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
3025 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003026{
3027 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
3028 if (sel_tgt->family == sel_cmp->family &&
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003029 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
3030 sel_cmp->family) &&
3031 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
3032 sel_cmp->family) &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003033 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
3034 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003035 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003036 }
3037 } else {
3038 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003039 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003040 }
3041 }
David S. Millerbc9b35a2012-05-15 15:04:57 -04003042 return false;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003043}
3044
Weilong Chen3e94c2d2013-12-24 09:43:47 +08003045static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
3046 u8 dir, u8 type, struct net *net)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003047{
3048 struct xfrm_policy *pol, *ret = NULL;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003049 struct hlist_head *chain;
3050 u32 priority = ~0U;
3051
Fan Du283bc9f2013-11-07 17:47:50 +08003052 read_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME*/
Fan Du8d549c42013-11-07 17:47:49 +08003053 chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003054 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003055 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3056 pol->type == type) {
3057 ret = pol;
3058 priority = ret->priority;
3059 break;
3060 }
3061 }
Fan Du8d549c42013-11-07 17:47:49 +08003062 chain = &net->xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003063 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003064 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3065 pol->type == type &&
3066 pol->priority < priority) {
3067 ret = pol;
3068 break;
3069 }
3070 }
3071
3072 if (ret)
3073 xfrm_pol_hold(ret);
3074
Fan Du283bc9f2013-11-07 17:47:50 +08003075 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003076
3077 return ret;
3078}
3079
David S. Millerdd701752011-02-24 00:21:08 -05003080static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003081{
3082 int match = 0;
3083
3084 if (t->mode == m->mode && t->id.proto == m->proto &&
3085 (m->reqid == 0 || t->reqid == m->reqid)) {
3086 switch (t->mode) {
3087 case XFRM_MODE_TUNNEL:
3088 case XFRM_MODE_BEET:
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003089 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
3090 m->old_family) &&
3091 xfrm_addr_equal(&t->saddr, &m->old_saddr,
3092 m->old_family)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003093 match = 1;
3094 }
3095 break;
3096 case XFRM_MODE_TRANSPORT:
3097 /* in case of transport mode, template does not store
3098 any IP addresses, hence we just compare mode and
3099 protocol */
3100 match = 1;
3101 break;
3102 default:
3103 break;
3104 }
3105 }
3106 return match;
3107}
3108
3109/* update endpoint address(es) of template(s) */
3110static int xfrm_policy_migrate(struct xfrm_policy *pol,
3111 struct xfrm_migrate *m, int num_migrate)
3112{
3113 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003114 int i, j, n = 0;
3115
3116 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07003117 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003118 /* target policy has been deleted */
3119 write_unlock_bh(&pol->lock);
3120 return -ENOENT;
3121 }
3122
3123 for (i = 0; i < pol->xfrm_nr; i++) {
3124 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
3125 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
3126 continue;
3127 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07003128 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
3129 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003130 continue;
3131 /* update endpoints */
3132 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
3133 sizeof(pol->xfrm_vec[i].id.daddr));
3134 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
3135 sizeof(pol->xfrm_vec[i].saddr));
3136 pol->xfrm_vec[i].encap_family = mp->new_family;
3137 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00003138 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003139 }
3140 }
3141
3142 write_unlock_bh(&pol->lock);
3143
3144 if (!n)
3145 return -ENODATA;
3146
3147 return 0;
3148}
3149
David S. Millerdd701752011-02-24 00:21:08 -05003150static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003151{
3152 int i, j;
3153
3154 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
3155 return -EINVAL;
3156
3157 for (i = 0; i < num_migrate; i++) {
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003158 if (xfrm_addr_equal(&m[i].old_daddr, &m[i].new_daddr,
3159 m[i].old_family) &&
3160 xfrm_addr_equal(&m[i].old_saddr, &m[i].new_saddr,
3161 m[i].old_family))
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003162 return -EINVAL;
3163 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
3164 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
3165 return -EINVAL;
3166
3167 /* check if there is any duplicated entry */
3168 for (j = i + 1; j < num_migrate; j++) {
3169 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
3170 sizeof(m[i].old_daddr)) &&
3171 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
3172 sizeof(m[i].old_saddr)) &&
3173 m[i].proto == m[j].proto &&
3174 m[i].mode == m[j].mode &&
3175 m[i].reqid == m[j].reqid &&
3176 m[i].old_family == m[j].old_family)
3177 return -EINVAL;
3178 }
3179 }
3180
3181 return 0;
3182}
3183
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003184int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003185 struct xfrm_migrate *m, int num_migrate,
Fan Du8d549c42013-11-07 17:47:49 +08003186 struct xfrm_kmaddress *k, struct net *net)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003187{
3188 int i, err, nx_cur = 0, nx_new = 0;
3189 struct xfrm_policy *pol = NULL;
3190 struct xfrm_state *x, *xc;
3191 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
3192 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
3193 struct xfrm_migrate *mp;
3194
3195 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
3196 goto out;
3197
3198 /* Stage 1 - find policy */
Fan Du8d549c42013-11-07 17:47:49 +08003199 if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003200 err = -ENOENT;
3201 goto out;
3202 }
3203
3204 /* Stage 2 - find and update state(s) */
3205 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
Fan Du283bc9f2013-11-07 17:47:50 +08003206 if ((x = xfrm_migrate_state_find(mp, net))) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003207 x_cur[nx_cur] = x;
3208 nx_cur++;
3209 if ((xc = xfrm_state_migrate(x, mp))) {
3210 x_new[nx_new] = xc;
3211 nx_new++;
3212 } else {
3213 err = -ENODATA;
3214 goto restore_state;
3215 }
3216 }
3217 }
3218
3219 /* Stage 3 - update policy */
3220 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
3221 goto restore_state;
3222
3223 /* Stage 4 - delete old state(s) */
3224 if (nx_cur) {
3225 xfrm_states_put(x_cur, nx_cur);
3226 xfrm_states_delete(x_cur, nx_cur);
3227 }
3228
3229 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003230 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003231
3232 xfrm_pol_put(pol);
3233
3234 return 0;
3235out:
3236 return err;
3237
3238restore_state:
3239 if (pol)
3240 xfrm_pol_put(pol);
3241 if (nx_cur)
3242 xfrm_states_put(x_cur, nx_cur);
3243 if (nx_new)
3244 xfrm_states_delete(x_new, nx_new);
3245
3246 return err;
3247}
David S. Millere610e672007-02-08 13:29:15 -08003248EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003249#endif