blob: 638af0655aaf8ec600ae5f6b201e252ca229d89d [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
Steffen Klassertb8c203b2014-09-16 10:08:49 +020042struct xfrm_flo {
43 struct dst_entry *dst_orig;
44 u8 flags;
45};
46
Priyanka Jain418a99a2012-08-12 21:22:29 +000047static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
48static struct xfrm_policy_afinfo __rcu *xfrm_policy_afinfo[NPROTO]
49 __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Christoph Lametere18b8902006-12-06 20:33:20 -080051static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Herbert Xu25ee3282007-12-11 09:32:34 -080053static void xfrm_init_pmtu(struct dst_entry *dst);
Timo Teräs80c802f2010-04-07 00:30:05 +000054static int stale_bundle(struct dst_entry *dst);
Steffen Klassert12fdb4d2011-06-29 23:18:20 +000055static int xfrm_bundle_ok(struct xfrm_dst *xdst);
Steffen Klasserta0073fe2013-02-05 12:52:55 +010056static void xfrm_policy_queue_process(unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Herbert Xu12bfa8b2014-11-13 17:09:50 +080058static void __xfrm_policy_link(struct xfrm_policy *pol, int dir);
Wei Yongjun29fa0b302008-12-03 00:33:09 -080059static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
60 int dir);
61
David S. Millerbc9b35a2012-05-15 15:04:57 -040062static inline bool
David S. Miller200ce962011-02-24 00:12:25 -050063__xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080064{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050065 const struct flowi4 *fl4 = &fl->u.ip4;
66
Alexey Dobriyan26bff942011-11-22 06:46:02 +000067 return addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
68 addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
David S. Miller7e1dc7b2011-03-12 02:42:11 -050069 !((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
70 !((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
71 (fl4->flowi4_proto == sel->proto || !sel->proto) &&
72 (fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080073}
74
David S. Millerbc9b35a2012-05-15 15:04:57 -040075static inline bool
David S. Miller200ce962011-02-24 00:12:25 -050076__xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080077{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050078 const struct flowi6 *fl6 = &fl->u.ip6;
79
80 return addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
81 addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
82 !((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
83 !((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
84 (fl6->flowi6_proto == sel->proto || !sel->proto) &&
85 (fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080086}
87
David S. Millerbc9b35a2012-05-15 15:04:57 -040088bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
89 unsigned short family)
Andrew Morton77681022006-11-08 22:46:26 -080090{
91 switch (family) {
92 case AF_INET:
93 return __xfrm4_selector_match(sel, fl);
94 case AF_INET6:
95 return __xfrm6_selector_match(sel, fl);
96 }
David S. Millerbc9b35a2012-05-15 15:04:57 -040097 return false;
Andrew Morton77681022006-11-08 22:46:26 -080098}
99
Eric Dumazetef8531b2012-08-19 12:31:48 +0200100static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
101{
102 struct xfrm_policy_afinfo *afinfo;
103
104 if (unlikely(family >= NPROTO))
105 return NULL;
106 rcu_read_lock();
107 afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
108 if (unlikely(!afinfo))
109 rcu_read_unlock();
110 return afinfo;
111}
112
113static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
114{
115 rcu_read_unlock();
116}
117
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800118static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
David S. Miller6418c4e2011-02-24 00:16:53 -0500119 const xfrm_address_t *saddr,
120 const xfrm_address_t *daddr,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900121 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800123 struct xfrm_policy_afinfo *afinfo;
124 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Herbert Xu25ee3282007-12-11 09:32:34 -0800126 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800128 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800130 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900133
134 return dst;
135}
136
137static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
138 xfrm_address_t *prev_saddr,
139 xfrm_address_t *prev_daddr,
140 int family)
141{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800142 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900143 xfrm_address_t *saddr = &x->props.saddr;
144 xfrm_address_t *daddr = &x->id.daddr;
145 struct dst_entry *dst;
146
147 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
148 saddr = x->coaddr;
149 daddr = prev_daddr;
150 }
151 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
152 saddr = prev_saddr;
153 daddr = x->coaddr;
154 }
155
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800156 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900157
158 if (!IS_ERR(dst)) {
159 if (prev_saddr != saddr)
160 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
161 if (prev_daddr != daddr)
162 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
163 }
164
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800165 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static inline unsigned long make_jiffies(long secs)
169{
170 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
171 return MAX_SCHEDULE_TIMEOUT-1;
172 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900173 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176static void xfrm_policy_timer(unsigned long data)
177{
Weilong Chen3e94c2d2013-12-24 09:43:47 +0800178 struct xfrm_policy *xp = (struct xfrm_policy *)data;
James Morris9d729f72007-03-04 16:12:44 -0800179 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 long next = LONG_MAX;
181 int warn = 0;
182 int dir;
183
184 read_lock(&xp->lock);
185
Timo Teräsea2dea92010-03-31 00:17:05 +0000186 if (unlikely(xp->walk.dead))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 goto out;
188
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700189 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 if (xp->lft.hard_add_expires_seconds) {
192 long tmo = xp->lft.hard_add_expires_seconds +
193 xp->curlft.add_time - now;
194 if (tmo <= 0)
195 goto expired;
196 if (tmo < next)
197 next = tmo;
198 }
199 if (xp->lft.hard_use_expires_seconds) {
200 long tmo = xp->lft.hard_use_expires_seconds +
201 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
202 if (tmo <= 0)
203 goto expired;
204 if (tmo < next)
205 next = tmo;
206 }
207 if (xp->lft.soft_add_expires_seconds) {
208 long tmo = xp->lft.soft_add_expires_seconds +
209 xp->curlft.add_time - now;
210 if (tmo <= 0) {
211 warn = 1;
212 tmo = XFRM_KM_TIMEOUT;
213 }
214 if (tmo < next)
215 next = tmo;
216 }
217 if (xp->lft.soft_use_expires_seconds) {
218 long tmo = xp->lft.soft_use_expires_seconds +
219 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
220 if (tmo <= 0) {
221 warn = 1;
222 tmo = XFRM_KM_TIMEOUT;
223 }
224 if (tmo < next)
225 next = tmo;
226 }
227
228 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800229 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (next != LONG_MAX &&
231 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
232 xfrm_pol_hold(xp);
233
234out:
235 read_unlock(&xp->lock);
236 xfrm_pol_put(xp);
237 return;
238
239expired:
240 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700241 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800242 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 xfrm_pol_put(xp);
244}
245
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000246static struct flow_cache_object *xfrm_policy_flo_get(struct flow_cache_object *flo)
247{
248 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
249
250 if (unlikely(pol->walk.dead))
251 flo = NULL;
252 else
253 xfrm_pol_hold(pol);
254
255 return flo;
256}
257
258static int xfrm_policy_flo_check(struct flow_cache_object *flo)
259{
260 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
261
262 return !pol->walk.dead;
263}
264
265static void xfrm_policy_flo_delete(struct flow_cache_object *flo)
266{
267 xfrm_pol_put(container_of(flo, struct xfrm_policy, flo));
268}
269
270static const struct flow_cache_ops xfrm_policy_fc_ops = {
271 .get = xfrm_policy_flo_get,
272 .check = xfrm_policy_flo_check,
273 .delete = xfrm_policy_flo_delete,
274};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
277 * SPD calls.
278 */
279
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800280struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct xfrm_policy *policy;
283
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700284 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800287 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700288 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700289 INIT_HLIST_NODE(&policy->bydst);
290 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700292 atomic_set(&policy->refcnt, 1);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100293 skb_queue_head_init(&policy->polq.hold_queue);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800294 setup_timer(&policy->timer, xfrm_policy_timer,
295 (unsigned long)policy);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100296 setup_timer(&policy->polq.hold_timer, xfrm_policy_queue_process,
297 (unsigned long)policy);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000298 policy->flo.ops = &xfrm_policy_fc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300 return policy;
301}
302EXPORT_SYMBOL(xfrm_policy_alloc);
303
304/* Destroy xfrm_policy: descendant resources must be released to this moment. */
305
WANG Cong64c31b32008-01-07 22:34:29 -0800306void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Herbert Xu12a169e2008-10-01 07:03:24 -0700308 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Fan Du0659eea2013-08-01 18:08:36 +0800310 if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 BUG();
312
Paul Moore03e1ad72008-04-12 19:07:52 -0700313 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 kfree(policy);
315}
WANG Cong64c31b32008-01-07 22:34:29 -0800316EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100318static void xfrm_queue_purge(struct sk_buff_head *list)
319{
320 struct sk_buff *skb;
321
Steffen Klassert302a50b2013-08-28 08:47:14 +0200322 while ((skb = skb_dequeue(list)) != NULL)
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100323 kfree_skb(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100324}
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/* Rule must be locked. Release descentant resources, announce
327 * entry dead. The rule must be unlinked from lists to the moment.
328 */
329
330static void xfrm_policy_kill(struct xfrm_policy *policy)
331{
Herbert Xu12a169e2008-10-01 07:03:24 -0700332 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Timo Teräs285ead12010-04-07 00:30:06 +0000334 atomic_inc(&policy->genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +0200336 if (del_timer(&policy->polq.hold_timer))
337 xfrm_pol_put(policy);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100338 xfrm_queue_purge(&policy->polq.hold_queue);
339
Timo Teräs285ead12010-04-07 00:30:06 +0000340 if (del_timer(&policy->timer))
341 xfrm_pol_put(policy);
342
343 xfrm_pol_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
David S. Miller2518c7c2006-08-24 04:45:07 -0700346static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
347
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800348static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700349{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800350 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700351}
352
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200353/* calculate policy hash thresholds */
354static void __get_hash_thresh(struct net *net,
355 unsigned short family, int dir,
356 u8 *dbits, u8 *sbits)
357{
358 switch (family) {
359 case AF_INET:
360 *dbits = net->xfrm.policy_bydst[dir].dbits4;
361 *sbits = net->xfrm.policy_bydst[dir].sbits4;
362 break;
363
364 case AF_INET6:
365 *dbits = net->xfrm.policy_bydst[dir].dbits6;
366 *sbits = net->xfrm.policy_bydst[dir].sbits6;
367 break;
368
369 default:
370 *dbits = 0;
371 *sbits = 0;
372 }
373}
374
David S. Miller5f803b52011-02-24 00:33:19 -0500375static struct hlist_head *policy_hash_bysel(struct net *net,
376 const struct xfrm_selector *sel,
377 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700378{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800379 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200380 unsigned int hash;
381 u8 dbits;
382 u8 sbits;
383
384 __get_hash_thresh(net, family, dir, &dbits, &sbits);
385 hash = __sel_hash(sel, family, hmask, dbits, sbits);
David S. Miller2518c7c2006-08-24 04:45:07 -0700386
387 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800388 &net->xfrm.policy_inexact[dir] :
389 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700390}
391
David S. Miller5f803b52011-02-24 00:33:19 -0500392static struct hlist_head *policy_hash_direct(struct net *net,
393 const xfrm_address_t *daddr,
394 const xfrm_address_t *saddr,
395 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700396{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800397 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200398 unsigned int hash;
399 u8 dbits;
400 u8 sbits;
401
402 __get_hash_thresh(net, family, dir, &dbits, &sbits);
403 hash = __addr_hash(daddr, saddr, family, hmask, dbits, sbits);
David S. Miller2518c7c2006-08-24 04:45:07 -0700404
Alexey Dobriyan11219942008-11-25 17:33:06 -0800405 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700406}
407
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200408static void xfrm_dst_hash_transfer(struct net *net,
409 struct hlist_head *list,
David S. Miller2518c7c2006-08-24 04:45:07 -0700410 struct hlist_head *ndsttable,
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200411 unsigned int nhashmask,
412 int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700413{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800414 struct hlist_node *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700415 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800416 unsigned int h0 = 0;
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200417 u8 dbits;
418 u8 sbits;
David S. Miller2518c7c2006-08-24 04:45:07 -0700419
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800420redo:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800421 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700422 unsigned int h;
423
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200424 __get_hash_thresh(net, pol->family, dir, &dbits, &sbits);
David S. Miller2518c7c2006-08-24 04:45:07 -0700425 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200426 pol->family, nhashmask, dbits, sbits);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800427 if (!entry0) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800428 hlist_del(&pol->bydst);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800429 hlist_add_head(&pol->bydst, ndsttable+h);
430 h0 = h;
431 } else {
432 if (h != h0)
433 continue;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800434 hlist_del(&pol->bydst);
Ken Helias1d023282014-08-06 16:09:16 -0700435 hlist_add_behind(&pol->bydst, entry0);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800436 }
Sasha Levinb67bfe02013-02-27 17:06:00 -0800437 entry0 = &pol->bydst;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800438 }
439 if (!hlist_empty(list)) {
440 entry0 = NULL;
441 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700442 }
443}
444
445static void xfrm_idx_hash_transfer(struct hlist_head *list,
446 struct hlist_head *nidxtable,
447 unsigned int nhashmask)
448{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800449 struct hlist_node *tmp;
David S. Miller2518c7c2006-08-24 04:45:07 -0700450 struct xfrm_policy *pol;
451
Sasha Levinb67bfe02013-02-27 17:06:00 -0800452 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700453 unsigned int h;
454
455 h = __idx_hash(pol->index, nhashmask);
456 hlist_add_head(&pol->byidx, nidxtable+h);
457 }
458}
459
460static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
461{
462 return ((old_hmask + 1) << 1) - 1;
463}
464
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800465static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700466{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800467 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700468 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
469 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800470 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700471 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700472 int i;
473
474 if (!ndst)
475 return;
476
Fan Du283bc9f2013-11-07 17:47:50 +0800477 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700478
479 for (i = hmask; i >= 0; i--)
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200480 xfrm_dst_hash_transfer(net, odst + i, ndst, nhashmask, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700481
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800482 net->xfrm.policy_bydst[dir].table = ndst;
483 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700484
Fan Du283bc9f2013-11-07 17:47:50 +0800485 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700486
David S. Miller44e36b42006-08-24 04:50:50 -0700487 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700488}
489
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800490static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700491{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800492 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700493 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
494 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800495 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700496 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700497 int i;
498
499 if (!nidx)
500 return;
501
Fan Du283bc9f2013-11-07 17:47:50 +0800502 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700503
504 for (i = hmask; i >= 0; i--)
505 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
506
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800507 net->xfrm.policy_byidx = nidx;
508 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700509
Fan Du283bc9f2013-11-07 17:47:50 +0800510 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700511
David S. Miller44e36b42006-08-24 04:50:50 -0700512 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700513}
514
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800515static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700516{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800517 unsigned int cnt = net->xfrm.policy_count[dir];
518 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700519
520 if (total)
521 *total += cnt;
522
523 if ((hmask + 1) < xfrm_policy_hashmax &&
524 cnt > hmask)
525 return 1;
526
527 return 0;
528}
529
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800530static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700531{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800532 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700533
534 if ((hmask + 1) < xfrm_policy_hashmax &&
535 total > hmask)
536 return 1;
537
538 return 0;
539}
540
Alexey Dobriyane0710412010-01-23 13:37:10 +0000541void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700542{
Fan Du283bc9f2013-11-07 17:47:50 +0800543 read_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000544 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
545 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
546 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
547 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
548 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
549 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
550 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700551 si->spdhmcnt = xfrm_policy_hashmax;
Fan Du283bc9f2013-11-07 17:47:50 +0800552 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700553}
554EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700555
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700556static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800557static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700558{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800559 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700560 int dir, total;
561
562 mutex_lock(&hash_resize_mutex);
563
564 total = 0;
Herbert Xu53c2e282014-11-13 17:09:49 +0800565 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800566 if (xfrm_bydst_should_resize(net, dir, &total))
567 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700568 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800569 if (xfrm_byidx_should_resize(net, total))
570 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700571
572 mutex_unlock(&hash_resize_mutex);
573}
574
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200575static void xfrm_hash_rebuild(struct work_struct *work)
576{
577 struct net *net = container_of(work, struct net,
578 xfrm.policy_hthresh.work);
579 unsigned int hmask;
580 struct xfrm_policy *pol;
581 struct xfrm_policy *policy;
582 struct hlist_head *chain;
583 struct hlist_head *odst;
584 struct hlist_node *newpos;
585 int i;
586 int dir;
587 unsigned seq;
588 u8 lbits4, rbits4, lbits6, rbits6;
589
590 mutex_lock(&hash_resize_mutex);
591
592 /* read selector prefixlen thresholds */
593 do {
594 seq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
595
596 lbits4 = net->xfrm.policy_hthresh.lbits4;
597 rbits4 = net->xfrm.policy_hthresh.rbits4;
598 lbits6 = net->xfrm.policy_hthresh.lbits6;
599 rbits6 = net->xfrm.policy_hthresh.rbits6;
600 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, seq));
601
602 write_lock_bh(&net->xfrm.xfrm_policy_lock);
603
604 /* reset the bydst and inexact table in all directions */
Herbert Xu53c2e282014-11-13 17:09:49 +0800605 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
Christophe Gouault880a6fa2014-08-29 16:16:05 +0200606 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
607 hmask = net->xfrm.policy_bydst[dir].hmask;
608 odst = net->xfrm.policy_bydst[dir].table;
609 for (i = hmask; i >= 0; i--)
610 INIT_HLIST_HEAD(odst + i);
611 if ((dir & XFRM_POLICY_MASK) == XFRM_POLICY_OUT) {
612 /* dir out => dst = remote, src = local */
613 net->xfrm.policy_bydst[dir].dbits4 = rbits4;
614 net->xfrm.policy_bydst[dir].sbits4 = lbits4;
615 net->xfrm.policy_bydst[dir].dbits6 = rbits6;
616 net->xfrm.policy_bydst[dir].sbits6 = lbits6;
617 } else {
618 /* dir in/fwd => dst = local, src = remote */
619 net->xfrm.policy_bydst[dir].dbits4 = lbits4;
620 net->xfrm.policy_bydst[dir].sbits4 = rbits4;
621 net->xfrm.policy_bydst[dir].dbits6 = lbits6;
622 net->xfrm.policy_bydst[dir].sbits6 = rbits6;
623 }
624 }
625
626 /* re-insert all policies by order of creation */
627 list_for_each_entry_reverse(policy, &net->xfrm.policy_all, walk.all) {
628 newpos = NULL;
629 chain = policy_hash_bysel(net, &policy->selector,
630 policy->family,
631 xfrm_policy_id2dir(policy->index));
632 hlist_for_each_entry(pol, chain, bydst) {
633 if (policy->priority >= pol->priority)
634 newpos = &pol->bydst;
635 else
636 break;
637 }
638 if (newpos)
639 hlist_add_behind(&policy->bydst, newpos);
640 else
641 hlist_add_head(&policy->bydst, chain);
642 }
643
644 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
645
646 mutex_unlock(&hash_resize_mutex);
647}
648
649void xfrm_policy_hash_rebuild(struct net *net)
650{
651 schedule_work(&net->xfrm.policy_hthresh.work);
652}
653EXPORT_SYMBOL(xfrm_policy_hash_rebuild);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655/* Generate new index... KAME seems to generate them ordered by cost
656 * of an absolute inpredictability of ordering of rules. This will not pass. */
Fan Due682adf2013-11-07 17:47:48 +0800657static u32 xfrm_gen_index(struct net *net, int dir, u32 index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 static u32 idx_generator;
660
661 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700662 struct hlist_head *list;
663 struct xfrm_policy *p;
664 u32 idx;
665 int found;
666
Fan Due682adf2013-11-07 17:47:48 +0800667 if (!index) {
668 idx = (idx_generator | dir);
669 idx_generator += 8;
670 } else {
671 idx = index;
672 index = 0;
673 }
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (idx == 0)
676 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800677 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700678 found = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800679 hlist_for_each_entry(p, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700680 if (p->index == idx) {
681 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700685 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return idx;
687 }
688}
689
David S. Miller2518c7c2006-08-24 04:45:07 -0700690static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
691{
692 u32 *p1 = (u32 *) s1;
693 u32 *p2 = (u32 *) s2;
694 int len = sizeof(struct xfrm_selector) / sizeof(u32);
695 int i;
696
697 for (i = 0; i < len; i++) {
698 if (p1[i] != p2[i])
699 return 1;
700 }
701
702 return 0;
703}
704
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100705static void xfrm_policy_requeue(struct xfrm_policy *old,
706 struct xfrm_policy *new)
707{
708 struct xfrm_policy_queue *pq = &old->polq;
709 struct sk_buff_head list;
710
711 __skb_queue_head_init(&list);
712
713 spin_lock_bh(&pq->hold_queue.lock);
714 skb_queue_splice_init(&pq->hold_queue, &list);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +0200715 if (del_timer(&pq->hold_timer))
716 xfrm_pol_put(old);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100717 spin_unlock_bh(&pq->hold_queue.lock);
718
719 if (skb_queue_empty(&list))
720 return;
721
722 pq = &new->polq;
723
724 spin_lock_bh(&pq->hold_queue.lock);
725 skb_queue_splice(&list, &pq->hold_queue);
726 pq->timeout = XFRM_QUEUE_TMO_MIN;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +0200727 if (!mod_timer(&pq->hold_timer, jiffies))
728 xfrm_pol_hold(new);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100729 spin_unlock_bh(&pq->hold_queue.lock);
730}
731
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100732static bool xfrm_policy_mark_match(struct xfrm_policy *policy,
733 struct xfrm_policy *pol)
734{
735 u32 mark = policy->mark.v & policy->mark.m;
736
737 if (policy->mark.v == pol->mark.v && policy->mark.m == pol->mark.m)
738 return true;
739
740 if ((mark & pol->mark.m) == pol->mark.v &&
741 policy->priority == pol->priority)
742 return true;
743
744 return false;
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
748{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800749 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700750 struct xfrm_policy *pol;
751 struct xfrm_policy *delpol;
752 struct hlist_head *chain;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800753 struct hlist_node *newpos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Fan Du283bc9f2013-11-07 17:47:50 +0800755 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800756 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700757 delpol = NULL;
758 newpos = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800759 hlist_for_each_entry(pol, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800760 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700761 !selector_cmp(&pol->selector, &policy->selector) &&
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100762 xfrm_policy_mark_match(policy, pol) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800763 xfrm_sec_ctx_match(pol->security, policy->security) &&
764 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (excl) {
Fan Du283bc9f2013-11-07 17:47:50 +0800766 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -EEXIST;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 delpol = pol;
770 if (policy->priority > pol->priority)
771 continue;
772 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800773 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 continue;
775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (delpol)
777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779 if (newpos)
Ken Helias1d023282014-08-06 16:09:16 -0700780 hlist_add_behind(&policy->bydst, newpos);
David S. Miller2518c7c2006-08-24 04:45:07 -0700781 else
782 hlist_add_head(&policy->bydst, chain);
Herbert Xu12bfa8b2014-11-13 17:09:50 +0800783 __xfrm_policy_link(policy, dir);
Fan Duca925cf2014-01-18 09:55:27 +0800784 atomic_inc(&net->xfrm.flow_cache_genid);
fan.duca4c3fc2013-07-30 08:33:53 +0800785
786 /* After previous checking, family can either be AF_INET or AF_INET6 */
787 if (policy->family == AF_INET)
788 rt_genid_bump_ipv4(net);
789 else
790 rt_genid_bump_ipv6(net);
791
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100792 if (delpol) {
793 xfrm_policy_requeue(delpol, policy);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800794 __xfrm_policy_unlink(delpol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100795 }
Fan Due682adf2013-11-07 17:47:48 +0800796 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir, policy->index);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800797 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800798 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 policy->curlft.use_time = 0;
800 if (!mod_timer(&policy->timer, jiffies + HZ))
801 xfrm_pol_hold(policy);
Fan Du283bc9f2013-11-07 17:47:50 +0800802 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
David S. Miller9b78a822005-12-22 07:39:48 -0800804 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800806 else if (xfrm_bydst_should_resize(net, dir, NULL))
807 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return 0;
810}
811EXPORT_SYMBOL(xfrm_policy_insert);
812
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000813struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
814 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800815 struct xfrm_sec_ctx *ctx, int delete,
816 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
David S. Miller2518c7c2006-08-24 04:45:07 -0700818 struct xfrm_policy *pol, *ret;
819 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Eric Parisef41aaa2007-03-07 15:37:58 -0800821 *err = 0;
Fan Du283bc9f2013-11-07 17:47:50 +0800822 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800823 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700824 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800825 hlist_for_each_entry(pol, chain, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700826 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000827 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700828 !selector_cmp(sel, &pol->selector) &&
829 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700831 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700832 *err = security_xfrm_policy_delete(
833 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800834 if (*err) {
Fan Du283bc9f2013-11-07 17:47:50 +0800835 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Eric Parisef41aaa2007-03-07 15:37:58 -0800836 return pol;
837 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800838 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700839 }
840 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 break;
842 }
843 }
Fan Du283bc9f2013-11-07 17:47:50 +0800844 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000846 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700847 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700848 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
Trent Jaegerdf718372005-12-13 23:12:27 -0800850EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000852struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
853 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
David S. Miller2518c7c2006-08-24 04:45:07 -0700855 struct xfrm_policy *pol, *ret;
856 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Herbert Xub5505c62007-05-14 02:15:47 -0700858 *err = -ENOENT;
859 if (xfrm_policy_id2dir(id) != dir)
860 return NULL;
861
Eric Parisef41aaa2007-03-07 15:37:58 -0800862 *err = 0;
Fan Du283bc9f2013-11-07 17:47:50 +0800863 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800864 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700865 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800866 hlist_for_each_entry(pol, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000867 if (pol->type == type && pol->index == id &&
868 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700870 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700871 *err = security_xfrm_policy_delete(
872 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800873 if (*err) {
Fan Du283bc9f2013-11-07 17:47:50 +0800874 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Eric Parisef41aaa2007-03-07 15:37:58 -0800875 return pol;
876 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800877 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700878 }
879 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 break;
881 }
882 }
Fan Du283bc9f2013-11-07 17:47:50 +0800883 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000885 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700886 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889EXPORT_SYMBOL(xfrm_policy_byid);
890
Joy Latten4aa2e622007-06-04 19:05:57 -0400891#ifdef CONFIG_SECURITY_NETWORK_XFRM
892static inline int
Tetsuo Handa2e710292014-04-22 21:48:30 +0900893xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Joy Latten4aa2e622007-06-04 19:05:57 -0400895 int dir, err = 0;
896
897 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
898 struct xfrm_policy *pol;
Joy Latten4aa2e622007-06-04 19:05:57 -0400899 int i;
900
Sasha Levinb67bfe02013-02-27 17:06:00 -0800901 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800902 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400903 if (pol->type != type)
904 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700905 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400906 if (err) {
Tetsuo Handa2e710292014-04-22 21:48:30 +0900907 xfrm_audit_policy_delete(pol, 0, task_valid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400908 return err;
909 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900910 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800911 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800912 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800913 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400914 bydst) {
915 if (pol->type != type)
916 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700917 err = security_xfrm_policy_delete(
918 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400919 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700920 xfrm_audit_policy_delete(pol, 0,
Tetsuo Handa2e710292014-04-22 21:48:30 +0900921 task_valid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400922 return err;
923 }
924 }
925 }
926 }
927 return err;
928}
929#else
930static inline int
Tetsuo Handa2e710292014-04-22 21:48:30 +0900931xfrm_policy_flush_secctx_check(struct net *net, u8 type, bool task_valid)
Joy Latten4aa2e622007-06-04 19:05:57 -0400932{
933 return 0;
934}
935#endif
936
Tetsuo Handa2e710292014-04-22 21:48:30 +0900937int xfrm_policy_flush(struct net *net, u8 type, bool task_valid)
Joy Latten4aa2e622007-06-04 19:05:57 -0400938{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000939 int dir, err = 0, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Fan Du283bc9f2013-11-07 17:47:50 +0800941 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400942
Tetsuo Handa2e710292014-04-22 21:48:30 +0900943 err = xfrm_policy_flush_secctx_check(net, type, task_valid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400944 if (err)
945 goto out;
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700948 struct xfrm_policy *pol;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800949 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700950
951 again1:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800952 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800953 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700954 if (pol->type != type)
955 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000956 __xfrm_policy_unlink(pol, dir);
Fan Du283bc9f2013-11-07 17:47:50 +0800957 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000958 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Tetsuo Handa2e710292014-04-22 21:48:30 +0900960 xfrm_audit_policy_delete(pol, 1, task_valid);
Joy Latten161a09e2006-11-27 13:11:54 -0600961
David S. Miller2518c7c2006-08-24 04:45:07 -0700962 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Fan Du283bc9f2013-11-07 17:47:50 +0800964 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700965 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700967
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800968 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700969 again2:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800970 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800971 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700972 bydst) {
973 if (pol->type != type)
974 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000975 __xfrm_policy_unlink(pol, dir);
Fan Du283bc9f2013-11-07 17:47:50 +0800976 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000977 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700978
Tetsuo Handa2e710292014-04-22 21:48:30 +0900979 xfrm_audit_policy_delete(pol, 1, task_valid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700980 xfrm_policy_kill(pol);
981
Fan Du283bc9f2013-11-07 17:47:50 +0800982 write_lock_bh(&net->xfrm.xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700983 goto again2;
984 }
985 }
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000988 if (!cnt)
989 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -0400990out:
Fan Du283bc9f2013-11-07 17:47:50 +0800991 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400992 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994EXPORT_SYMBOL(xfrm_policy_flush);
995
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800996int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800997 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 void *data)
999{
Herbert Xu12a169e2008-10-01 07:03:24 -07001000 struct xfrm_policy *pol;
1001 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -08001002 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Timo Teras4c563f72008-02-28 21:31:08 -08001004 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
1005 walk->type != XFRM_POLICY_TYPE_ANY)
1006 return -EINVAL;
1007
Herbert Xu12a169e2008-10-01 07:03:24 -07001008 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -08001009 return 0;
1010
Fan Du283bc9f2013-11-07 17:47:50 +08001011 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001012 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -08001013 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -07001014 else
1015 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -08001016 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -07001017 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -08001018 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -07001019 pol = container_of(x, struct xfrm_policy, walk);
1020 if (walk->type != XFRM_POLICY_TYPE_ANY &&
1021 walk->type != pol->type)
1022 continue;
1023 error = func(pol, xfrm_policy_id2dir(pol->index),
1024 walk->seq, data);
1025 if (error) {
1026 list_move_tail(&walk->walk.all, &x->all);
1027 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -08001028 }
Herbert Xu12a169e2008-10-01 07:03:24 -07001029 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Herbert Xu12a169e2008-10-01 07:03:24 -07001031 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -08001032 error = -ENOENT;
1033 goto out;
1034 }
Herbert Xu12a169e2008-10-01 07:03:24 -07001035 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036out:
Fan Du283bc9f2013-11-07 17:47:50 +08001037 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return error;
1039}
1040EXPORT_SYMBOL(xfrm_policy_walk);
1041
Herbert Xu12a169e2008-10-01 07:03:24 -07001042void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
1043{
1044 INIT_LIST_HEAD(&walk->walk.all);
1045 walk->walk.dead = 1;
1046 walk->type = type;
1047 walk->seq = 0;
1048}
1049EXPORT_SYMBOL(xfrm_policy_walk_init);
1050
Fan Du283bc9f2013-11-07 17:47:50 +08001051void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net)
Herbert Xu12a169e2008-10-01 07:03:24 -07001052{
1053 if (list_empty(&walk->walk.all))
1054 return;
1055
Fan Du283bc9f2013-11-07 17:47:50 +08001056 write_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME where is net? */
Herbert Xu12a169e2008-10-01 07:03:24 -07001057 list_del(&walk->walk.all);
Fan Du283bc9f2013-11-07 17:47:50 +08001058 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001059}
1060EXPORT_SYMBOL(xfrm_policy_walk_done);
1061
James Morris134b0fc2006-10-05 15:42:27 -05001062/*
1063 * Find policy to apply to this flow.
1064 *
1065 * Returns 0 if policy found, else an -errno.
1066 */
David S. Millerf299d552011-02-24 01:23:30 -05001067static int xfrm_policy_match(const struct xfrm_policy *pol,
1068 const struct flowi *fl,
David S. Miller2518c7c2006-08-24 04:45:07 -07001069 u8 type, u16 family, int dir)
1070{
David S. Millerf299d552011-02-24 01:23:30 -05001071 const struct xfrm_selector *sel = &pol->selector;
David S. Millerbc9b35a2012-05-15 15:04:57 -04001072 int ret = -ESRCH;
1073 bool match;
David S. Miller2518c7c2006-08-24 04:45:07 -07001074
1075 if (pol->family != family ||
David S. Miller1d28f422011-03-12 00:29:39 -05001076 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -07001077 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -05001078 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -07001079
1080 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -05001081 if (match)
David S. Miller1d28f422011-03-12 00:29:39 -05001082 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001083 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -07001084
James Morris134b0fc2006-10-05 15:42:27 -05001085 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -07001086}
1087
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001088static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -08001089 const struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001090 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
James Morris134b0fc2006-10-05 15:42:27 -05001092 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -07001093 struct xfrm_policy *pol, *ret;
David S. Miller0b597e72011-02-24 01:22:48 -05001094 const xfrm_address_t *daddr, *saddr;
David S. Miller2518c7c2006-08-24 04:45:07 -07001095 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -07001096 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -07001097
1098 daddr = xfrm_flowi_daddr(fl, family);
1099 saddr = xfrm_flowi_saddr(fl, family);
1100 if (unlikely(!daddr || !saddr))
1101 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Fan Du283bc9f2013-11-07 17:47:50 +08001103 read_lock_bh(&net->xfrm.xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001104 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -07001105 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001106 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -05001107 err = xfrm_policy_match(pol, fl, type, family, dir);
1108 if (err) {
1109 if (err == -ESRCH)
1110 continue;
1111 else {
1112 ret = ERR_PTR(err);
1113 goto fail;
1114 }
1115 } else {
David S. Milleracba48e2006-08-25 15:46:46 -07001116 ret = pol;
1117 priority = ret->priority;
1118 break;
1119 }
1120 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001121 chain = &net->xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001122 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -05001123 err = xfrm_policy_match(pol, fl, type, family, dir);
1124 if (err) {
1125 if (err == -ESRCH)
1126 continue;
1127 else {
1128 ret = ERR_PTR(err);
1129 goto fail;
1130 }
1131 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001132 ret = pol;
1133 break;
1134 }
1135 }
David S. Milleracba48e2006-08-25 15:46:46 -07001136 if (ret)
1137 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -05001138fail:
Fan Du283bc9f2013-11-07 17:47:50 +08001139 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001140
David S. Miller2518c7c2006-08-24 04:45:07 -07001141 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001142}
1143
Timo Teräs80c802f2010-04-07 00:30:05 +00001144static struct xfrm_policy *
David S. Miller73ff93c2011-02-22 18:33:42 -08001145__xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
Timo Teräs80c802f2010-04-07 00:30:05 +00001146{
1147#ifdef CONFIG_XFRM_SUB_POLICY
1148 struct xfrm_policy *pol;
1149
1150 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
1151 if (pol != NULL)
1152 return pol;
1153#endif
1154 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
1155}
1156
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001157static int flow_to_policy_dir(int dir)
1158{
1159 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
1160 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1161 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1162 return dir;
1163
1164 switch (dir) {
1165 default:
1166 case FLOW_DIR_IN:
1167 return XFRM_POLICY_IN;
1168 case FLOW_DIR_OUT:
1169 return XFRM_POLICY_OUT;
1170 case FLOW_DIR_FWD:
1171 return XFRM_POLICY_FWD;
1172 }
1173}
1174
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001175static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001176xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001177 u8 dir, struct flow_cache_object *old_obj, void *ctx)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001178{
1179 struct xfrm_policy *pol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001180
1181 if (old_obj)
1182 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001183
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001184 pol = __xfrm_policy_lookup(net, fl, family, flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00001185 if (IS_ERR_OR_NULL(pol))
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001186 return ERR_CAST(pol);
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001187
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001188 /* Resolver returns two references:
1189 * one for cache and one for caller of flow_cache_lookup() */
1190 xfrm_pol_hold(pol);
1191
1192 return &pol->flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
Trent Jaegerdf718372005-12-13 23:12:27 -08001195static inline int policy_to_flow_dir(int dir)
1196{
1197 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001198 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1199 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1200 return dir;
1201 switch (dir) {
1202 default:
1203 case XFRM_POLICY_IN:
1204 return FLOW_DIR_IN;
1205 case XFRM_POLICY_OUT:
1206 return FLOW_DIR_OUT;
1207 case XFRM_POLICY_FWD:
1208 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001209 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001210}
1211
David S. Millerdee9f4b2011-02-22 18:44:31 -08001212static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
1213 const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
1215 struct xfrm_policy *pol;
Fan Du283bc9f2013-11-07 17:47:50 +08001216 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Fan Du283bc9f2013-11-07 17:47:50 +08001218 read_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if ((pol = sk->sk_policy[dir]) != NULL) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04001220 bool match = xfrm_selector_match(&pol->selector, fl,
1221 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001222 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001223
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001224 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001225 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1226 pol = NULL;
1227 goto out;
1228 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001229 err = security_xfrm_policy_lookup(pol->security,
David S. Miller1d28f422011-03-12 00:29:39 -05001230 fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001231 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001232 if (!err)
1233 xfrm_pol_hold(pol);
1234 else if (err == -ESRCH)
1235 pol = NULL;
1236 else
1237 pol = ERR_PTR(err);
1238 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 pol = NULL;
1240 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001241out:
Fan Du283bc9f2013-11-07 17:47:50 +08001242 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return pol;
1244}
1245
1246static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1247{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001248 struct net *net = xp_net(pol);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001249
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001250 list_add(&pol->walk.all, &net->xfrm.policy_all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001251 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 xfrm_pol_hold(pol);
1253}
1254
1255static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1256 int dir)
1257{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001258 struct net *net = xp_net(pol);
1259
Herbert Xu53c2e282014-11-13 17:09:49 +08001260 if (list_empty(&pol->walk.all))
David S. Miller2518c7c2006-08-24 04:45:07 -07001261 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Herbert Xu53c2e282014-11-13 17:09:49 +08001263 /* Socket policies are not hashed. */
1264 if (!hlist_unhashed(&pol->bydst)) {
1265 hlist_del(&pol->bydst);
1266 hlist_del(&pol->byidx);
1267 }
1268
1269 list_del_init(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001270 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001271
1272 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
Herbert Xu53c2e282014-11-13 17:09:49 +08001275static void xfrm_sk_policy_link(struct xfrm_policy *pol, int dir)
1276{
1277 __xfrm_policy_link(pol, XFRM_POLICY_MAX + dir);
1278}
1279
1280static void xfrm_sk_policy_unlink(struct xfrm_policy *pol, int dir)
1281{
1282 __xfrm_policy_unlink(pol, XFRM_POLICY_MAX + dir);
1283}
1284
Herbert Xu4666faa2005-06-18 22:43:22 -07001285int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Fan Du283bc9f2013-11-07 17:47:50 +08001287 struct net *net = xp_net(pol);
1288
1289 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 pol = __xfrm_policy_unlink(pol, dir);
Fan Du283bc9f2013-11-07 17:47:50 +08001291 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001296 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
David S. Millera70fcb02006-03-20 19:18:52 -08001298EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1301{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001302 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct xfrm_policy *old_pol;
1304
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001305#ifdef CONFIG_XFRM_SUB_POLICY
1306 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1307 return -EINVAL;
1308#endif
1309
Fan Du283bc9f2013-11-07 17:47:50 +08001310 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 old_pol = sk->sk_policy[dir];
1312 sk->sk_policy[dir] = pol;
1313 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001314 pol->curlft.add_time = get_seconds();
Fan Due682adf2013-11-07 17:47:48 +08001315 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir, 0);
Herbert Xu53c2e282014-11-13 17:09:49 +08001316 xfrm_sk_policy_link(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001318 if (old_pol) {
1319 if (pol)
1320 xfrm_policy_requeue(old_pol, pol);
1321
Timo Teräsea2dea92010-03-31 00:17:05 +00001322 /* Unlinking succeeds always. This is the only function
1323 * allowed to delete or replace socket policy.
1324 */
Herbert Xu53c2e282014-11-13 17:09:49 +08001325 xfrm_sk_policy_unlink(old_pol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001326 }
Fan Du283bc9f2013-11-07 17:47:50 +08001327 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (old_pol) {
1330 xfrm_policy_kill(old_pol);
1331 }
1332 return 0;
1333}
1334
David S. Millerd3e40a92011-02-24 01:25:41 -05001335static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001337 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Fan Du283bc9f2013-11-07 17:47:50 +08001338 struct net *net = xp_net(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 if (newp) {
1341 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001342 if (security_xfrm_policy_clone(old->security,
1343 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001344 kfree(newp);
1345 return NULL; /* ENOMEM */
1346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 newp->lft = old->lft;
1348 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08001349 newp->mark = old->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 newp->action = old->action;
1351 newp->flags = old->flags;
1352 newp->xfrm_nr = old->xfrm_nr;
1353 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001354 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 memcpy(newp->xfrm_vec, old->xfrm_vec,
1356 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
Fan Du283bc9f2013-11-07 17:47:50 +08001357 write_lock_bh(&net->xfrm.xfrm_policy_lock);
Herbert Xu53c2e282014-11-13 17:09:49 +08001358 xfrm_sk_policy_link(newp, dir);
Fan Du283bc9f2013-11-07 17:47:50 +08001359 write_unlock_bh(&net->xfrm.xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 xfrm_pol_put(newp);
1361 }
1362 return newp;
1363}
1364
1365int __xfrm_sk_clone_policy(struct sock *sk)
1366{
1367 struct xfrm_policy *p0 = sk->sk_policy[0],
1368 *p1 = sk->sk_policy[1];
1369
1370 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1371 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1372 return -ENOMEM;
1373 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1374 return -ENOMEM;
1375 return 0;
1376}
1377
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001378static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001379xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001380 unsigned short family)
1381{
1382 int err;
1383 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1384
1385 if (unlikely(afinfo == NULL))
1386 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001387 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001388 xfrm_policy_put_afinfo(afinfo);
1389 return err;
1390}
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392/* Resolve list of templates for the flow, given policy. */
1393
1394static int
David S. Millera6c2e612011-02-22 18:35:39 -08001395xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1396 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001398 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 int nx;
1400 int i, error;
1401 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1402 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001403 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Weilong Chen9b7a7872013-12-24 09:43:46 +08001405 for (nx = 0, i = 0; i < policy->xfrm_nr; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 struct xfrm_state *x;
1407 xfrm_address_t *remote = daddr;
1408 xfrm_address_t *local = saddr;
1409 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1410
Joakim Koskela48b8d782007-07-26 00:08:42 -07001411 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1412 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 remote = &tmpl->id.daddr;
1414 local = &tmpl->saddr;
Thomas Egerer8444cf72010-09-20 11:11:38 -07001415 if (xfrm_addr_any(local, tmpl->encap_family)) {
1416 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001417 if (error)
1418 goto fail;
1419 local = &tmp;
1420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422
1423 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1424
1425 if (x && x->km.state == XFRM_STATE_VALID) {
1426 xfrm[nx++] = x;
1427 daddr = remote;
1428 saddr = local;
1429 continue;
1430 }
1431 if (x) {
1432 error = (x->km.state == XFRM_STATE_ERROR ?
1433 -EINVAL : -EAGAIN);
1434 xfrm_state_put(x);
Weilong Chen420545692013-12-24 09:43:49 +08001435 } else if (error == -ESRCH) {
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001436 error = -EAGAIN;
Weilong Chen420545692013-12-24 09:43:49 +08001437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 if (!tmpl->optional)
1440 goto fail;
1441 }
1442 return nx;
1443
1444fail:
Weilong Chen9b7a7872013-12-24 09:43:46 +08001445 for (nx--; nx >= 0; nx--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 xfrm_state_put(xfrm[nx]);
1447 return error;
1448}
1449
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001450static int
David S. Millera6c2e612011-02-22 18:35:39 -08001451xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1452 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001453{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001454 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1455 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001456 int cnx = 0;
1457 int error;
1458 int ret;
1459 int i;
1460
1461 for (i = 0; i < npols; i++) {
1462 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1463 error = -ENOBUFS;
1464 goto fail;
1465 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001466
1467 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001468 if (ret < 0) {
1469 error = ret;
1470 goto fail;
1471 } else
1472 cnx += ret;
1473 }
1474
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001475 /* found states are sorted for outbound processing */
1476 if (npols > 1)
1477 xfrm_state_sort(xfrm, tpp, cnx, family);
1478
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001479 return cnx;
1480
1481 fail:
Weilong Chen9b7a7872013-12-24 09:43:46 +08001482 for (cnx--; cnx >= 0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001483 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001484 return error;
1485
1486}
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488/* Check that the bundle accepts the flow and its components are
1489 * still valid.
1490 */
1491
David S. Miller05d84022011-02-22 17:47:10 -08001492static inline int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001493{
1494 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1495 int tos;
1496
1497 if (!afinfo)
1498 return -EINVAL;
1499
1500 tos = afinfo->get_tos(fl);
1501
1502 xfrm_policy_put_afinfo(afinfo);
1503
1504 return tos;
1505}
1506
Timo Teräs80c802f2010-04-07 00:30:05 +00001507static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1508{
1509 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1510 struct dst_entry *dst = &xdst->u.dst;
1511
1512 if (xdst->route == NULL) {
1513 /* Dummy bundle - if it has xfrms we were not
1514 * able to build bundle as template resolution failed.
1515 * It means we need to try again resolving. */
1516 if (xdst->num_xfrms > 0)
1517 return NULL;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001518 } else if (dst->flags & DST_XFRM_QUEUE) {
1519 return NULL;
Timo Teräs80c802f2010-04-07 00:30:05 +00001520 } else {
1521 /* Real bundle */
1522 if (stale_bundle(dst))
1523 return NULL;
1524 }
1525
1526 dst_hold(dst);
1527 return flo;
1528}
1529
1530static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1531{
1532 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1533 struct dst_entry *dst = &xdst->u.dst;
1534
1535 if (!xdst->route)
1536 return 0;
1537 if (stale_bundle(dst))
1538 return 0;
1539
1540 return 1;
1541}
1542
1543static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1544{
1545 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1546 struct dst_entry *dst = &xdst->u.dst;
1547
1548 dst_free(dst);
1549}
1550
1551static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1552 .get = xfrm_bundle_flo_get,
1553 .check = xfrm_bundle_flo_check,
1554 .delete = xfrm_bundle_flo_delete,
1555};
1556
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001557static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001558{
1559 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001560 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001561 struct xfrm_dst *xdst;
1562
1563 if (!afinfo)
1564 return ERR_PTR(-EINVAL);
1565
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001566 switch (family) {
1567 case AF_INET:
1568 dst_ops = &net->xfrm.xfrm4_dst_ops;
1569 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001570#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001571 case AF_INET6:
1572 dst_ops = &net->xfrm.xfrm6_dst_ops;
1573 break;
1574#endif
1575 default:
1576 BUG();
1577 }
David S. Millerf5b0a872012-07-19 12:31:33 -07001578 xdst = dst_alloc(dst_ops, NULL, 0, DST_OBSOLETE_NONE, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08001579
Madalin Bucurd4cae562011-09-26 07:04:36 +00001580 if (likely(xdst)) {
Steffen Klassert141e3692012-07-05 23:39:34 +00001581 struct dst_entry *dst = &xdst->u.dst;
1582
1583 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001584 xdst->flo.ops = &xfrm_bundle_fc_ops;
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -07001585 if (afinfo->init_dst)
1586 afinfo->init_dst(net, xdst);
Madalin Bucurd4cae562011-09-26 07:04:36 +00001587 } else
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001588 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00001589
Madalin Bucurd4cae562011-09-26 07:04:36 +00001590 xfrm_policy_put_afinfo(afinfo);
1591
Herbert Xu25ee3282007-12-11 09:32:34 -08001592 return xdst;
1593}
1594
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001595static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1596 int nfheader_len)
1597{
1598 struct xfrm_policy_afinfo *afinfo =
1599 xfrm_policy_get_afinfo(dst->ops->family);
1600 int err;
1601
1602 if (!afinfo)
1603 return -EINVAL;
1604
1605 err = afinfo->init_path(path, dst, nfheader_len);
1606
1607 xfrm_policy_put_afinfo(afinfo);
1608
1609 return err;
1610}
1611
Herbert Xu87c1e122010-03-02 02:51:56 +00001612static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08001613 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08001614{
1615 struct xfrm_policy_afinfo *afinfo =
1616 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1617 int err;
1618
1619 if (!afinfo)
1620 return -EINVAL;
1621
Herbert Xu87c1e122010-03-02 02:51:56 +00001622 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001623
1624 xfrm_policy_put_afinfo(afinfo);
1625
1626 return err;
1627}
1628
Timo Teräs80c802f2010-04-07 00:30:05 +00001629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1631 * all the metrics... Shortly, bundle a bundle.
1632 */
1633
Herbert Xu25ee3282007-12-11 09:32:34 -08001634static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1635 struct xfrm_state **xfrm, int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08001636 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08001637 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001639 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001640 unsigned long now = jiffies;
1641 struct net_device *dev;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001642 struct xfrm_mode *inner_mode;
Herbert Xu25ee3282007-12-11 09:32:34 -08001643 struct dst_entry *dst_prev = NULL;
1644 struct dst_entry *dst0 = NULL;
1645 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001647 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001648 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001649 int trailer_len = 0;
1650 int tos;
1651 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001652 xfrm_address_t saddr, daddr;
1653
1654 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001655
1656 tos = xfrm_get_tos(fl, family);
1657 err = tos;
1658 if (tos < 0)
1659 goto put_states;
1660
1661 dst_hold(dst);
1662
1663 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001664 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001665 struct dst_entry *dst1 = &xdst->u.dst;
1666
1667 err = PTR_ERR(xdst);
1668 if (IS_ERR(xdst)) {
1669 dst_release(dst);
1670 goto put_states;
1671 }
1672
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001673 if (xfrm[i]->sel.family == AF_UNSPEC) {
1674 inner_mode = xfrm_ip2inner_mode(xfrm[i],
1675 xfrm_af2proto(family));
1676 if (!inner_mode) {
1677 err = -EAFNOSUPPORT;
1678 dst_release(dst);
1679 goto put_states;
1680 }
1681 } else
1682 inner_mode = xfrm[i]->inner_mode;
1683
Herbert Xu25ee3282007-12-11 09:32:34 -08001684 if (!dst_prev)
1685 dst0 = dst1;
1686 else {
1687 dst_prev->child = dst_clone(dst1);
1688 dst1->flags |= DST_NOHASH;
1689 }
1690
1691 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08001692 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08001693
1694 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1695 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001696 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1697 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001698 err = PTR_ERR(dst);
1699 if (IS_ERR(dst))
1700 goto put_states;
1701 } else
1702 dst_hold(dst);
1703
1704 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00001705 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08001706
David S. Millerf5b0a872012-07-19 12:31:33 -07001707 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
Herbert Xu25ee3282007-12-11 09:32:34 -08001708 dst1->flags |= DST_HOST;
1709 dst1->lastuse = now;
1710
1711 dst1->input = dst_discard;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001712 dst1->output = inner_mode->afinfo->output;
Herbert Xu25ee3282007-12-11 09:32:34 -08001713
1714 dst1->next = dst_prev;
1715 dst_prev = dst1;
1716
1717 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001718 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1719 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001720 trailer_len += xfrm[i]->props.trailer_len;
1721 }
1722
1723 dst_prev->child = dst;
1724 dst0->path = dst;
1725
1726 err = -ENODEV;
1727 dev = dst->dev;
1728 if (!dev)
1729 goto free_dst;
1730
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001731 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001732 xfrm_init_pmtu(dst_prev);
1733
1734 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1735 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1736
Herbert Xu87c1e122010-03-02 02:51:56 +00001737 err = xfrm_fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001738 if (err)
1739 goto free_dst;
1740
1741 dst_prev->header_len = header_len;
1742 dst_prev->trailer_len = trailer_len;
1743 header_len -= xdst->u.dst.xfrm->props.header_len;
1744 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1745 }
1746
1747out:
1748 return dst0;
1749
1750put_states:
1751 for (; i < nx; i++)
1752 xfrm_state_put(xfrm[i]);
1753free_dst:
1754 if (dst0)
1755 dst_free(dst0);
1756 dst0 = ERR_PTR(err);
1757 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
Ying Xueda7c2242014-01-08 10:26:39 +08001760#ifdef CONFIG_XFRM_SUB_POLICY
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001761static int xfrm_dst_alloc_copy(void **target, const void *src, int size)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001762{
1763 if (!*target) {
1764 *target = kmalloc(size, GFP_ATOMIC);
1765 if (!*target)
1766 return -ENOMEM;
1767 }
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001768
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001769 memcpy(*target, src, size);
1770 return 0;
1771}
Ying Xueda7c2242014-01-08 10:26:39 +08001772#endif
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001773
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001774static int xfrm_dst_update_parent(struct dst_entry *dst,
1775 const struct xfrm_selector *sel)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001776{
1777#ifdef CONFIG_XFRM_SUB_POLICY
1778 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1779 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1780 sel, sizeof(*sel));
1781#else
1782 return 0;
1783#endif
1784}
1785
Daniel Borkmannbe7928d2014-01-07 23:20:27 +01001786static int xfrm_dst_update_origin(struct dst_entry *dst,
1787 const struct flowi *fl)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001788{
1789#ifdef CONFIG_XFRM_SUB_POLICY
1790 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1791 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1792#else
1793 return 0;
1794#endif
1795}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
David S. Miller73ff93c2011-02-22 18:33:42 -08001797static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001798 struct xfrm_policy **pols,
1799 int *num_pols, int *num_xfrms)
1800{
1801 int i;
1802
1803 if (*num_pols == 0 || !pols[0]) {
1804 *num_pols = 0;
1805 *num_xfrms = 0;
1806 return 0;
1807 }
1808 if (IS_ERR(pols[0]))
1809 return PTR_ERR(pols[0]);
1810
1811 *num_xfrms = pols[0]->xfrm_nr;
1812
1813#ifdef CONFIG_XFRM_SUB_POLICY
1814 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1815 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1816 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1817 XFRM_POLICY_TYPE_MAIN,
1818 fl, family,
1819 XFRM_POLICY_OUT);
1820 if (pols[1]) {
1821 if (IS_ERR(pols[1])) {
1822 xfrm_pols_put(pols, *num_pols);
1823 return PTR_ERR(pols[1]);
1824 }
Weilong Chen02d08922013-12-24 09:43:48 +08001825 (*num_pols)++;
Timo Teräs80c802f2010-04-07 00:30:05 +00001826 (*num_xfrms) += pols[1]->xfrm_nr;
1827 }
1828 }
1829#endif
1830 for (i = 0; i < *num_pols; i++) {
1831 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1832 *num_xfrms = -1;
1833 break;
1834 }
1835 }
1836
1837 return 0;
1838
1839}
1840
1841static struct xfrm_dst *
1842xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08001843 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001844 struct dst_entry *dst_orig)
1845{
1846 struct net *net = xp_net(pols[0]);
1847 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1848 struct dst_entry *dst;
1849 struct xfrm_dst *xdst;
1850 int err;
1851
1852 /* Try to instantiate a bundle */
1853 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00001854 if (err <= 0) {
1855 if (err != 0 && err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00001856 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1857 return ERR_PTR(err);
1858 }
1859
1860 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1861 if (IS_ERR(dst)) {
1862 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1863 return ERR_CAST(dst);
1864 }
1865
1866 xdst = (struct xfrm_dst *)dst;
1867 xdst->num_xfrms = err;
1868 if (num_pols > 1)
1869 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1870 else
1871 err = xfrm_dst_update_origin(dst, fl);
1872 if (unlikely(err)) {
1873 dst_free(dst);
1874 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1875 return ERR_PTR(err);
1876 }
1877
1878 xdst->num_pols = num_pols;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08001879 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00001880 xdst->policy_genid = atomic_read(&pols[0]->genid);
1881
1882 return xdst;
1883}
1884
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001885static void xfrm_policy_queue_process(unsigned long arg)
1886{
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001887 struct sk_buff *skb;
1888 struct sock *sk;
1889 struct dst_entry *dst;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001890 struct xfrm_policy *pol = (struct xfrm_policy *)arg;
1891 struct xfrm_policy_queue *pq = &pol->polq;
1892 struct flowi fl;
1893 struct sk_buff_head list;
1894
1895 spin_lock(&pq->hold_queue.lock);
1896 skb = skb_peek(&pq->hold_queue);
Steffen Klassert2bb53e22013-10-08 10:49:51 +02001897 if (!skb) {
1898 spin_unlock(&pq->hold_queue.lock);
1899 goto out;
1900 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001901 dst = skb_dst(skb);
1902 sk = skb->sk;
1903 xfrm_decode_session(skb, &fl, dst->ops->family);
1904 spin_unlock(&pq->hold_queue.lock);
1905
1906 dst_hold(dst->path);
1907 dst = xfrm_lookup(xp_net(pol), dst->path, &fl,
1908 sk, 0);
1909 if (IS_ERR(dst))
1910 goto purge_queue;
1911
1912 if (dst->flags & DST_XFRM_QUEUE) {
1913 dst_release(dst);
1914
1915 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
1916 goto purge_queue;
1917
1918 pq->timeout = pq->timeout << 1;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001919 if (!mod_timer(&pq->hold_timer, jiffies + pq->timeout))
1920 xfrm_pol_hold(pol);
1921 goto out;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001922 }
1923
1924 dst_release(dst);
1925
1926 __skb_queue_head_init(&list);
1927
1928 spin_lock(&pq->hold_queue.lock);
1929 pq->timeout = 0;
1930 skb_queue_splice_init(&pq->hold_queue, &list);
1931 spin_unlock(&pq->hold_queue.lock);
1932
1933 while (!skb_queue_empty(&list)) {
1934 skb = __skb_dequeue(&list);
1935
1936 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
1937 dst_hold(skb_dst(skb)->path);
1938 dst = xfrm_lookup(xp_net(pol), skb_dst(skb)->path,
1939 &fl, skb->sk, 0);
1940 if (IS_ERR(dst)) {
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001941 kfree_skb(skb);
1942 continue;
1943 }
1944
1945 nf_reset(skb);
1946 skb_dst_drop(skb);
1947 skb_dst_set(skb, dst);
1948
Fabian Frederick5c1e9f22014-10-25 17:27:09 +02001949 dst_output(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001950 }
1951
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001952out:
1953 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001954 return;
1955
1956purge_queue:
1957 pq->timeout = 0;
1958 xfrm_queue_purge(&pq->hold_queue);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001959 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001960}
1961
Eric Dumazetaad88722014-04-15 13:47:15 -04001962static int xdst_queue_output(struct sock *sk, struct sk_buff *skb)
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001963{
1964 unsigned long sched_next;
1965 struct dst_entry *dst = skb_dst(skb);
1966 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001967 struct xfrm_policy *pol = xdst->pols[0];
1968 struct xfrm_policy_queue *pq = &pol->polq;
Steffen Klassert4d53eff2013-10-16 13:42:46 +02001969
Eric Dumazet39bb5e62014-10-30 10:32:34 -07001970 if (unlikely(skb_fclone_busy(sk, skb))) {
Steffen Klassert4d53eff2013-10-16 13:42:46 +02001971 kfree_skb(skb);
1972 return 0;
1973 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001974
1975 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
1976 kfree_skb(skb);
1977 return -EAGAIN;
1978 }
1979
1980 skb_dst_force(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001981
1982 spin_lock_bh(&pq->hold_queue.lock);
1983
1984 if (!pq->timeout)
1985 pq->timeout = XFRM_QUEUE_TMO_MIN;
1986
1987 sched_next = jiffies + pq->timeout;
1988
1989 if (del_timer(&pq->hold_timer)) {
1990 if (time_before(pq->hold_timer.expires, sched_next))
1991 sched_next = pq->hold_timer.expires;
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001992 xfrm_pol_put(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001993 }
1994
1995 __skb_queue_tail(&pq->hold_queue, skb);
Steffen Klasserte7d8f6c2013-10-08 10:49:45 +02001996 if (!mod_timer(&pq->hold_timer, sched_next))
1997 xfrm_pol_hold(pol);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001998
1999 spin_unlock_bh(&pq->hold_queue.lock);
2000
2001 return 0;
2002}
2003
2004static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002005 struct xfrm_flo *xflo,
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002006 const struct flowi *fl,
2007 int num_xfrms,
2008 u16 family)
2009{
2010 int err;
2011 struct net_device *dev;
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002012 struct dst_entry *dst;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002013 struct dst_entry *dst1;
2014 struct xfrm_dst *xdst;
2015
2016 xdst = xfrm_alloc_dst(net, family);
2017 if (IS_ERR(xdst))
2018 return xdst;
2019
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002020 if (!(xflo->flags & XFRM_LOOKUP_QUEUE) ||
2021 net->xfrm.sysctl_larval_drop ||
2022 num_xfrms <= 0)
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002023 return xdst;
2024
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002025 dst = xflo->dst_orig;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002026 dst1 = &xdst->u.dst;
2027 dst_hold(dst);
2028 xdst->route = dst;
2029
2030 dst_copy_metrics(dst1, dst);
2031
2032 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
2033 dst1->flags |= DST_HOST | DST_XFRM_QUEUE;
2034 dst1->lastuse = jiffies;
2035
2036 dst1->input = dst_discard;
2037 dst1->output = xdst_queue_output;
2038
2039 dst_hold(dst);
2040 dst1->child = dst;
2041 dst1->path = dst;
2042
2043 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
2044
2045 err = -ENODEV;
2046 dev = dst->dev;
2047 if (!dev)
2048 goto free_dst;
2049
2050 err = xfrm_fill_dst(xdst, dev, fl);
2051 if (err)
2052 goto free_dst;
2053
2054out:
2055 return xdst;
2056
2057free_dst:
2058 dst_release(dst1);
2059 xdst = ERR_PTR(err);
2060 goto out;
2061}
2062
Timo Teräs80c802f2010-04-07 00:30:05 +00002063static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08002064xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
Timo Teräs80c802f2010-04-07 00:30:05 +00002065 struct flow_cache_object *oldflo, void *ctx)
2066{
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002067 struct xfrm_flo *xflo = (struct xfrm_flo *)ctx;
Timo Teräs80c802f2010-04-07 00:30:05 +00002068 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2069 struct xfrm_dst *xdst, *new_xdst;
2070 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
2071
2072 /* Check if the policies from old bundle are usable */
2073 xdst = NULL;
2074 if (oldflo) {
2075 xdst = container_of(oldflo, struct xfrm_dst, flo);
2076 num_pols = xdst->num_pols;
2077 num_xfrms = xdst->num_xfrms;
2078 pol_dead = 0;
2079 for (i = 0; i < num_pols; i++) {
2080 pols[i] = xdst->pols[i];
2081 pol_dead |= pols[i]->walk.dead;
2082 }
2083 if (pol_dead) {
2084 dst_free(&xdst->u.dst);
2085 xdst = NULL;
2086 num_pols = 0;
2087 num_xfrms = 0;
2088 oldflo = NULL;
2089 }
2090 }
2091
2092 /* Resolve policies to use if we couldn't get them from
2093 * previous cache entry */
2094 if (xdst == NULL) {
2095 num_pols = 1;
Baker Zhangb5fb82c2013-03-19 04:24:30 +00002096 pols[0] = __xfrm_policy_lookup(net, fl, family,
2097 flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00002098 err = xfrm_expand_policies(fl, family, pols,
2099 &num_pols, &num_xfrms);
2100 if (err < 0)
2101 goto inc_error;
2102 if (num_pols == 0)
2103 return NULL;
2104 if (num_xfrms <= 0)
2105 goto make_dummy_bundle;
2106 }
2107
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002108 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family,
2109 xflo->dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002110 if (IS_ERR(new_xdst)) {
2111 err = PTR_ERR(new_xdst);
2112 if (err != -EAGAIN)
2113 goto error;
2114 if (oldflo == NULL)
2115 goto make_dummy_bundle;
2116 dst_hold(&xdst->u.dst);
2117 return oldflo;
Timo Teräsd809ec82010-07-12 21:29:42 +00002118 } else if (new_xdst == NULL) {
2119 num_xfrms = 0;
2120 if (oldflo == NULL)
2121 goto make_dummy_bundle;
2122 xdst->num_xfrms = 0;
2123 dst_hold(&xdst->u.dst);
2124 return oldflo;
Timo Teräs80c802f2010-04-07 00:30:05 +00002125 }
2126
2127 /* Kill the previous bundle */
2128 if (xdst) {
2129 /* The policies were stolen for newly generated bundle */
2130 xdst->num_pols = 0;
2131 dst_free(&xdst->u.dst);
2132 }
2133
2134 /* Flow cache does not have reference, it dst_free()'s,
2135 * but we do need to return one reference for original caller */
2136 dst_hold(&new_xdst->u.dst);
2137 return &new_xdst->flo;
2138
2139make_dummy_bundle:
2140 /* We found policies, but there's no bundles to instantiate:
2141 * either because the policy blocks, has no transformations or
2142 * we could not build template (no xfrm_states).*/
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002143 xdst = xfrm_create_dummy_bundle(net, xflo, fl, num_xfrms, family);
Timo Teräs80c802f2010-04-07 00:30:05 +00002144 if (IS_ERR(xdst)) {
2145 xfrm_pols_put(pols, num_pols);
2146 return ERR_CAST(xdst);
2147 }
2148 xdst->num_pols = num_pols;
2149 xdst->num_xfrms = num_xfrms;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08002150 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002151
2152 dst_hold(&xdst->u.dst);
2153 return &xdst->flo;
2154
2155inc_error:
2156 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2157error:
2158 if (xdst != NULL)
2159 dst_free(&xdst->u.dst);
2160 else
2161 xfrm_pols_put(pols, num_pols);
2162 return ERR_PTR(err);
2163}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
David S. Miller2774c132011-03-01 14:59:04 -08002165static struct dst_entry *make_blackhole(struct net *net, u16 family,
2166 struct dst_entry *dst_orig)
2167{
2168 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2169 struct dst_entry *ret;
2170
2171 if (!afinfo) {
2172 dst_release(dst_orig);
Li RongQing433a1952012-09-17 22:40:10 +00002173 return ERR_PTR(-EINVAL);
David S. Miller2774c132011-03-01 14:59:04 -08002174 } else {
2175 ret = afinfo->blackhole_route(net, dst_orig);
2176 }
2177 xfrm_policy_put_afinfo(afinfo);
2178
2179 return ret;
2180}
2181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182/* Main function: finds/creates a bundle for given flow.
2183 *
2184 * At the moment we eat a raw IP route. Mostly to speed up lookups
2185 * on interfaces with disabled IPsec.
2186 */
David S. Miller452edd52011-03-02 13:27:41 -08002187struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
2188 const struct flowi *fl,
2189 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002191 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00002192 struct flow_cache_object *flo;
2193 struct xfrm_dst *xdst;
David S. Miller452edd52011-03-02 13:27:41 -08002194 struct dst_entry *dst, *route;
Timo Teräs80c802f2010-04-07 00:30:05 +00002195 u16 family = dst_orig->ops->family;
Trent Jaegerdf718372005-12-13 23:12:27 -08002196 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Changli Gao4b021622010-04-27 21:20:22 +00002197 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002198
Timo Teräs80c802f2010-04-07 00:30:05 +00002199 dst = NULL;
2200 xdst = NULL;
2201 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002202
Thomas Graff7944fb2007-08-25 13:46:55 -07002203 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002204 num_pols = 1;
2205 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
2206 err = xfrm_expand_policies(fl, family, pols,
2207 &num_pols, &num_xfrms);
2208 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08002209 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002210
2211 if (num_pols) {
2212 if (num_xfrms <= 0) {
2213 drop_pols = num_pols;
2214 goto no_transform;
2215 }
2216
2217 xdst = xfrm_resolve_and_create_bundle(
2218 pols, num_pols, fl,
2219 family, dst_orig);
2220 if (IS_ERR(xdst)) {
2221 xfrm_pols_put(pols, num_pols);
2222 err = PTR_ERR(xdst);
2223 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00002224 } else if (xdst == NULL) {
2225 num_xfrms = 0;
2226 drop_pols = num_pols;
2227 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00002228 }
2229
Steffen Klassertb7eea452014-06-18 12:34:21 +02002230 dst_hold(&xdst->u.dst);
2231 xdst->u.dst.flags |= DST_NOCACHE;
Timo Teräs80c802f2010-04-07 00:30:05 +00002232 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002233 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Timo Teräs80c802f2010-04-07 00:30:05 +00002236 if (xdst == NULL) {
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002237 struct xfrm_flo xflo;
2238
2239 xflo.dst_orig = dst_orig;
2240 xflo.flags = flags;
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07002243 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08002244 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08002245 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Timo Teräs80c802f2010-04-07 00:30:05 +00002247 flo = flow_cache_lookup(net, fl, family, dir,
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002248 xfrm_bundle_lookup, &xflo);
Timo Teräs80c802f2010-04-07 00:30:05 +00002249 if (flo == NULL)
2250 goto nopol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002251 if (IS_ERR(flo)) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002252 err = PTR_ERR(flo);
Herbert Xu75b8c132007-12-11 04:38:08 -08002253 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08002254 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002255 xdst = container_of(flo, struct xfrm_dst, flo);
2256
2257 num_pols = xdst->num_pols;
2258 num_xfrms = xdst->num_xfrms;
Weilong Chen3e94c2d2013-12-24 09:43:47 +08002259 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy *) * num_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002260 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
2262
Timo Teräs80c802f2010-04-07 00:30:05 +00002263 dst = &xdst->u.dst;
2264 if (route == NULL && num_xfrms > 0) {
2265 /* The only case when xfrm_bundle_lookup() returns a
2266 * bundle with null route, is when the template could
2267 * not be resolved. It means policies are there, but
2268 * bundle could not be created, since we don't yet
2269 * have the xfrm_state's. We need to wait for KM to
2270 * negotiate new SA's or bail out with error.*/
2271 if (net->xfrm.sysctl_larval_drop) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002272 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
huaibin Wangac37e252015-02-11 18:10:36 +01002273 err = -EREMOTE;
2274 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002275 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002276
Steffen Klassert5b8ef342013-08-27 13:43:30 +02002277 err = -EAGAIN;
Timo Teräs80c802f2010-04-07 00:30:05 +00002278
2279 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
2280 goto error;
2281 }
2282
2283no_transform:
2284 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08002285 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Timo Teräs80c802f2010-04-07 00:30:05 +00002287 if ((flags & XFRM_LOOKUP_ICMP) &&
2288 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
2289 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08002290 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002291 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08002292
Timo Teräs80c802f2010-04-07 00:30:05 +00002293 for (i = 0; i < num_pols; i++)
2294 pols[i]->curlft.use_time = get_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08002295
Timo Teräs80c802f2010-04-07 00:30:05 +00002296 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002298 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07002299 err = -EPERM;
2300 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002301 } else if (num_xfrms > 0) {
2302 /* Flow transformed */
Timo Teräs80c802f2010-04-07 00:30:05 +00002303 dst_release(dst_orig);
2304 } else {
2305 /* Flow passes untransformed */
2306 dst_release(dst);
David S. Miller452edd52011-03-02 13:27:41 -08002307 dst = dst_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002309ok:
2310 xfrm_pols_put(pols, drop_pols);
Gao feng0c183372012-05-26 01:30:53 +00002311 if (dst && dst->xfrm &&
2312 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
2313 dst->flags |= DST_XFRM_TUNNEL;
David S. Miller452edd52011-03-02 13:27:41 -08002314 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Timo Teräs80c802f2010-04-07 00:30:05 +00002316nopol:
David S. Miller452edd52011-03-02 13:27:41 -08002317 if (!(flags & XFRM_LOOKUP_ICMP)) {
2318 dst = dst_orig;
Timo Teräs80c802f2010-04-07 00:30:05 +00002319 goto ok;
David S. Miller452edd52011-03-02 13:27:41 -08002320 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002321 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322error:
Timo Teräs80c802f2010-04-07 00:30:05 +00002323 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08002324dropdst:
huaibin Wangac37e252015-02-11 18:10:36 +01002325 if (!(flags & XFRM_LOOKUP_KEEP_DST_REF))
2326 dst_release(dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002327 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08002328 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330EXPORT_SYMBOL(xfrm_lookup);
2331
Steffen Klassertf92ee612014-09-16 10:08:40 +02002332/* Callers of xfrm_lookup_route() must ensure a call to dst_output().
2333 * Otherwise we may send out blackholed packets.
2334 */
2335struct dst_entry *xfrm_lookup_route(struct net *net, struct dst_entry *dst_orig,
2336 const struct flowi *fl,
2337 struct sock *sk, int flags)
2338{
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002339 struct dst_entry *dst = xfrm_lookup(net, dst_orig, fl, sk,
huaibin Wangac37e252015-02-11 18:10:36 +01002340 flags | XFRM_LOOKUP_QUEUE |
2341 XFRM_LOOKUP_KEEP_DST_REF);
Steffen Klassertf92ee612014-09-16 10:08:40 +02002342
2343 if (IS_ERR(dst) && PTR_ERR(dst) == -EREMOTE)
2344 return make_blackhole(net, dst_orig->ops->family, dst_orig);
2345
2346 return dst;
2347}
2348EXPORT_SYMBOL(xfrm_lookup_route);
2349
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002350static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08002351xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002352{
2353 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002354
2355 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
2356 return 0;
2357 x = skb->sp->xvec[idx];
2358 if (!x->type->reject)
2359 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07002360 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002361}
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363/* When skb is transformed back to its "native" form, we have to
2364 * check policy restrictions. At the moment we make this in maximally
2365 * stupid way. Shame on me. :-) Of course, connected sockets must
2366 * have policy cached at them.
2367 */
2368
2369static inline int
David S. Miller7db454b2011-02-24 01:43:01 -05002370xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 unsigned short family)
2372{
2373 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08002374 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return x->id.proto == tmpl->id.proto &&
2376 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
2377 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
2378 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07002379 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07002380 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002381 !(x->props.mode != XFRM_MODE_TRANSPORT &&
2382 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383}
2384
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002385/*
2386 * 0 or more than 0 is returned when validation is succeeded (either bypass
2387 * because of optional transport mode, or next index of the mathced secpath
2388 * state with the template.
2389 * -1 is returned when no matching template is found.
2390 * Otherwise "-2 - errored_index" is returned.
2391 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392static inline int
David S. Miller22cccb72011-02-24 01:43:33 -05002393xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 unsigned short family)
2395{
2396 int idx = start;
2397
2398 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002399 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return start;
2401 } else
2402 start = -1;
2403 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002404 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002406 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
2407 if (start == -1)
2408 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
2412 return start;
2413}
2414
Herbert Xud5422ef2007-12-12 10:44:16 -08002415int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
2416 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
2418 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002419 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 if (unlikely(afinfo == NULL))
2422 return -EAFNOSUPPORT;
2423
Herbert Xud5422ef2007-12-12 10:44:16 -08002424 afinfo->decode_session(skb, fl, reverse);
David S. Miller1d28f422011-03-12 00:29:39 -05002425 err = security_xfrm_decode_session(skb, &fl->flowi_secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002427 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428}
Herbert Xud5422ef2007-12-12 10:44:16 -08002429EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
David S. Miller9a7386e2011-02-24 01:44:12 -05002431static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
2433 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002434 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002435 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 }
2439
2440 return 0;
2441}
2442
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002443int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 unsigned short family)
2445{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002446 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002448 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2449 int npols = 0;
2450 int xfrm_nr;
2451 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08002452 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08002454 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002455 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Herbert Xud5422ef2007-12-12 10:44:16 -08002457 reverse = dir & ~XFRM_POLICY_MASK;
2458 dir &= XFRM_POLICY_MASK;
2459 fl_dir = policy_to_flow_dir(dir);
2460
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002461 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002462 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002464 }
2465
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08002466 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 /* First, check used SA against their selectors. */
2469 if (skb->sp) {
2470 int i;
2471
Weilong Chen9b7a7872013-12-24 09:43:46 +08002472 for (i = skb->sp->len-1; i >= 0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002473 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002474 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002475 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
2479 }
2480
2481 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002482 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002483 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002484 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002485 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002486 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002487 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002490 if (!pol) {
2491 struct flow_cache_object *flo;
2492
2493 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2494 xfrm_policy_lookup, NULL);
2495 if (IS_ERR_OR_NULL(flo))
2496 pol = ERR_CAST(flo);
2497 else
2498 pol = container_of(flo, struct xfrm_policy, flo);
2499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002501 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002502 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002503 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002504 }
James Morris134b0fc2006-10-05 15:42:27 -05002505
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002506 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002507 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002508 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002509 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002510 return 0;
2511 }
2512 return 1;
2513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
James Morris9d729f72007-03-04 16:12:44 -08002515 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002517 pols[0] = pol;
Weilong Chen02d08922013-12-24 09:43:48 +08002518 npols++;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002519#ifdef CONFIG_XFRM_SUB_POLICY
2520 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002521 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002522 &fl, family,
2523 XFRM_POLICY_IN);
2524 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002525 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002526 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002527 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002528 }
James Morris9d729f72007-03-04 16:12:44 -08002529 pols[1]->curlft.use_time = get_seconds();
Weilong Chen02d08922013-12-24 09:43:48 +08002530 npols++;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002531 }
2532 }
2533#endif
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 if (pol->action == XFRM_POLICY_ALLOW) {
2536 struct sec_path *sp;
2537 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002538 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002539 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002540 struct xfrm_tmpl **tpp = tp;
2541 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 int i, k;
2543
2544 if ((sp = skb->sp) == NULL)
2545 sp = &dummy;
2546
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002547 for (pi = 0; pi < npols; pi++) {
2548 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002549 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002550 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002551 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002552 }
2553 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002554 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002555 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002556 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002557 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2558 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2559 }
2560 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002561 if (npols > 1) {
Fan Du283bc9f2013-11-07 17:47:50 +08002562 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family, net);
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002563 tpp = stp;
2564 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 /* For each tunnel xfrm, find the first matching tmpl.
2567 * For each tmpl before that, find corresponding xfrm.
2568 * Order is _important_. Later we will implement
2569 * some barriers, but at the moment barriers
2570 * are implied between each two transformations.
2571 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002572 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2573 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002574 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002575 if (k < -1)
2576 /* "-2 - errored_index" returned */
2577 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002578 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 }
2582
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002583 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002584 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002588 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return 1;
2590 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002591 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002594 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002595reject_error:
2596 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 return 0;
2598}
2599EXPORT_SYMBOL(__xfrm_policy_check);
2600
2601int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2602{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002603 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002605 struct dst_entry *dst;
Eric Dumazet73137142011-03-15 15:26:43 -07002606 int res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002608 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002609 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Eric Dumazetfafeeb62010-06-01 10:04:49 +00002613 skb_dst_force(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +00002614
Steffen Klassertb8c203b2014-09-16 10:08:49 +02002615 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, XFRM_LOOKUP_QUEUE);
David S. Miller452edd52011-03-02 13:27:41 -08002616 if (IS_ERR(dst)) {
Eric Dumazet73137142011-03-15 15:26:43 -07002617 res = 0;
David S. Miller452edd52011-03-02 13:27:41 -08002618 dst = NULL;
2619 }
Eric Dumazetadf30902009-06-02 05:19:30 +00002620 skb_dst_set(skb, dst);
2621 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623EXPORT_SYMBOL(__xfrm_route_forward);
2624
David S. Millerd49c73c2006-08-13 18:55:53 -07002625/* Optimize later using cookies and generation ids. */
2626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2628{
David S. Millerd49c73c2006-08-13 18:55:53 -07002629 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
David S. Millerf5b0a872012-07-19 12:31:33 -07002630 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
2631 * get validated by dst_ops->check on every use. We do this
2632 * because when a normal route referenced by an XFRM dst is
2633 * obsoleted we do not go looking around for all parent
2634 * referencing XFRM dsts so that we can invalidate them. It
2635 * is just too much work. Instead we make the checks here on
2636 * every use. For example:
David S. Millerd49c73c2006-08-13 18:55:53 -07002637 *
2638 * XFRM dst A --> IPv4 dst X
2639 *
2640 * X is the "xdst->route" of A (X is also the "dst->path" of A
2641 * in this example). If X is marked obsolete, "A" will not
2642 * notice. That's what we are validating here via the
2643 * stale_bundle() check.
2644 *
2645 * When a policy's bundle is pruned, we dst_free() the XFRM
David S. Millerf5b0a872012-07-19 12:31:33 -07002646 * dst which causes it's ->obsolete field to be set to
2647 * DST_OBSOLETE_DEAD. If an XFRM dst has been pruned like
2648 * this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002649 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002650 if (dst->obsolete < 0 && !stale_bundle(dst))
2651 return dst;
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 return NULL;
2654}
2655
2656static int stale_bundle(struct dst_entry *dst)
2657{
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002658 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
2660
Herbert Xuaabc9762005-05-03 16:27:10 -07002661void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002664 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002665 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 dev_put(dev);
2667 }
2668}
Herbert Xuaabc9762005-05-03 16:27:10 -07002669EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671static void xfrm_link_failure(struct sk_buff *skb)
2672{
2673 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
2676static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2677{
2678 if (dst) {
2679 if (dst->obsolete) {
2680 dst_release(dst);
2681 dst = NULL;
2682 }
2683 }
2684 return dst;
2685}
2686
Paul Mooree4c17212013-05-29 07:36:25 +00002687void xfrm_garbage_collect(struct net *net)
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002688{
Fan Duca925cf2014-01-18 09:55:27 +08002689 flow_cache_flush(net);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002690}
Paul Mooree4c17212013-05-29 07:36:25 +00002691EXPORT_SYMBOL(xfrm_garbage_collect);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002692
2693static void xfrm_garbage_collect_deferred(struct net *net)
2694{
Fan Duca925cf2014-01-18 09:55:27 +08002695 flow_cache_flush_deferred(net);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002696}
2697
Herbert Xu25ee3282007-12-11 09:32:34 -08002698static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699{
2700 do {
2701 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2702 u32 pmtu, route_mtu_cached;
2703
2704 pmtu = dst_mtu(dst->child);
2705 xdst->child_mtu_cached = pmtu;
2706
2707 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2708
2709 route_mtu_cached = dst_mtu(xdst->route);
2710 xdst->route_mtu_cached = route_mtu_cached;
2711
2712 if (pmtu > route_mtu_cached)
2713 pmtu = route_mtu_cached;
2714
David S. Millerdefb3512010-12-08 21:16:57 -08002715 dst_metric_set(dst, RTAX_MTU, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 } while ((dst = dst->next));
2717}
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719/* Check that the bundle accepts the flow and its components are
2720 * still valid.
2721 */
2722
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002723static int xfrm_bundle_ok(struct xfrm_dst *first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724{
2725 struct dst_entry *dst = &first->u.dst;
2726 struct xfrm_dst *last;
2727 u32 mtu;
2728
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002729 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 (dst->dev && !netif_running(dst->dev)))
2731 return 0;
2732
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002733 if (dst->flags & DST_XFRM_QUEUE)
2734 return 1;
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 last = NULL;
2737
2738 do {
2739 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2742 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00002743 if (xdst->xfrm_genid != dst->xfrm->genid)
2744 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07002745 if (xdst->num_pols > 0 &&
2746 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07002747 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
2749 mtu = dst_mtu(dst->child);
2750 if (xdst->child_mtu_cached != mtu) {
2751 last = xdst;
2752 xdst->child_mtu_cached = mtu;
2753 }
2754
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002755 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 return 0;
2757 mtu = dst_mtu(xdst->route);
2758 if (xdst->route_mtu_cached != mtu) {
2759 last = xdst;
2760 xdst->route_mtu_cached = mtu;
2761 }
2762
2763 dst = dst->child;
2764 } while (dst->xfrm);
2765
2766 if (likely(!last))
2767 return 1;
2768
2769 mtu = last->child_mtu_cached;
2770 for (;;) {
2771 dst = &last->u.dst;
2772
2773 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2774 if (mtu > last->route_mtu_cached)
2775 mtu = last->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08002776 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 if (last == first)
2779 break;
2780
Patrick McHardybd0bf072007-07-18 01:55:52 -07002781 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 last->child_mtu_cached = mtu;
2783 }
2784
2785 return 1;
2786}
2787
David S. Miller0dbaee32010-12-13 12:52:14 -08002788static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2789{
2790 return dst_metric_advmss(dst->path);
2791}
2792
Steffen Klassertebb762f2011-11-23 02:12:51 +00002793static unsigned int xfrm_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002794{
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002795 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
2796
2797 return mtu ? : dst_mtu(dst->path);
David S. Millerd33e4552010-12-14 13:01:14 -08002798}
2799
David S. Millerf894cbf2012-07-02 21:52:24 -07002800static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
2801 struct sk_buff *skb,
2802 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -07002803{
David S. Millerf894cbf2012-07-02 21:52:24 -07002804 return dst->path->ops->neigh_lookup(dst, skb, daddr);
David S. Millerd3aaeb32011-07-18 00:40:17 -07002805}
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2808{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002809 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 int err = 0;
2811 if (unlikely(afinfo == NULL))
2812 return -EINVAL;
2813 if (unlikely(afinfo->family >= NPROTO))
2814 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002815 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2817 err = -ENOBUFS;
2818 else {
2819 struct dst_ops *dst_ops = afinfo->dst_ops;
2820 if (likely(dst_ops->kmem_cachep == NULL))
2821 dst_ops->kmem_cachep = xfrm_dst_cache;
2822 if (likely(dst_ops->check == NULL))
2823 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08002824 if (likely(dst_ops->default_advmss == NULL))
2825 dst_ops->default_advmss = xfrm_default_advmss;
Steffen Klassertebb762f2011-11-23 02:12:51 +00002826 if (likely(dst_ops->mtu == NULL))
2827 dst_ops->mtu = xfrm_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 if (likely(dst_ops->negative_advice == NULL))
2829 dst_ops->negative_advice = xfrm_negative_advice;
2830 if (likely(dst_ops->link_failure == NULL))
2831 dst_ops->link_failure = xfrm_link_failure;
David S. Millerd3aaeb32011-07-18 00:40:17 -07002832 if (likely(dst_ops->neigh_lookup == NULL))
2833 dst_ops->neigh_lookup = xfrm_neigh_lookup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 if (likely(afinfo->garbage_collect == NULL))
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002835 afinfo->garbage_collect = xfrm_garbage_collect_deferred;
Priyanka Jain418a99a2012-08-12 21:22:29 +00002836 rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002838 spin_unlock(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002839
2840 rtnl_lock();
2841 for_each_net(net) {
2842 struct dst_ops *xfrm_dst_ops;
2843
2844 switch (afinfo->family) {
2845 case AF_INET:
2846 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2847 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002848#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002849 case AF_INET6:
2850 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2851 break;
2852#endif
2853 default:
2854 BUG();
2855 }
2856 *xfrm_dst_ops = *afinfo->dst_ops;
2857 }
2858 rtnl_unlock();
2859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 return err;
2861}
2862EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2863
2864int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2865{
2866 int err = 0;
2867 if (unlikely(afinfo == NULL))
2868 return -EINVAL;
2869 if (unlikely(afinfo->family >= NPROTO))
2870 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002871 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2873 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2874 err = -EINVAL;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002875 else
2876 RCU_INIT_POINTER(xfrm_policy_afinfo[afinfo->family],
2877 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002879 spin_unlock(&xfrm_policy_afinfo_lock);
2880 if (!err) {
2881 struct dst_ops *dst_ops = afinfo->dst_ops;
2882
2883 synchronize_rcu();
2884
2885 dst_ops->kmem_cachep = NULL;
2886 dst_ops->check = NULL;
2887 dst_ops->negative_advice = NULL;
2888 dst_ops->link_failure = NULL;
2889 afinfo->garbage_collect = NULL;
2890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 return err;
2892}
2893EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2894
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002895static void __net_init xfrm_dst_ops_init(struct net *net)
2896{
2897 struct xfrm_policy_afinfo *afinfo;
2898
Eric Dumazetef8531b2012-08-19 12:31:48 +02002899 rcu_read_lock();
2900 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002901 if (afinfo)
2902 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002903#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazetef8531b2012-08-19 12:31:48 +02002904 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET6]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002905 if (afinfo)
2906 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2907#endif
Priyanka Jain418a99a2012-08-12 21:22:29 +00002908 rcu_read_unlock();
Herbert Xu546be242006-05-27 23:03:58 -07002909}
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2912{
Jiri Pirko351638e2013-05-28 01:30:21 +00002913 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 switch (event) {
2916 case NETDEV_DOWN:
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002917 xfrm_garbage_collect(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 }
2919 return NOTIFY_DONE;
2920}
2921
2922static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002923 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924};
2925
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002926#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002927static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002928{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002929 int rv;
WANG Cong698365f2014-05-05 15:55:55 -07002930 net->mib.xfrm_statistics = alloc_percpu(struct linux_xfrm_mib);
2931 if (!net->mib.xfrm_statistics)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002932 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002933 rv = xfrm_proc_init(net);
2934 if (rv < 0)
WANG Cong698365f2014-05-05 15:55:55 -07002935 free_percpu(net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002936 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002937}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002938
2939static void xfrm_statistics_fini(struct net *net)
2940{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002941 xfrm_proc_fini(net);
WANG Cong698365f2014-05-05 15:55:55 -07002942 free_percpu(net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002943}
2944#else
2945static int __net_init xfrm_statistics_init(struct net *net)
2946{
2947 return 0;
2948}
2949
2950static void xfrm_statistics_fini(struct net *net)
2951{
2952}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002953#endif
2954
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002955static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956{
David S. Miller2518c7c2006-08-24 04:45:07 -07002957 unsigned int hmask, sz;
2958 int dir;
2959
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002960 if (net_eq(net, &init_net))
2961 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002963 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002964 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
David S. Miller2518c7c2006-08-24 04:45:07 -07002966 hmask = 8 - 1;
2967 sz = (hmask+1) * sizeof(struct hlist_head);
2968
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002969 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2970 if (!net->xfrm.policy_byidx)
2971 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002972 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002973
Herbert Xu53c2e282014-11-13 17:09:49 +08002974 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002975 struct xfrm_policy_hash *htab;
2976
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002977 net->xfrm.policy_count[dir] = 0;
Herbert Xu53c2e282014-11-13 17:09:49 +08002978 net->xfrm.policy_count[XFRM_POLICY_MAX + dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002979 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002980
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002981 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002982 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002983 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002984 goto out_bydst;
2985 htab->hmask = hmask;
Christophe Gouaultb58555f2014-08-29 16:16:04 +02002986 htab->dbits4 = 32;
2987 htab->sbits4 = 32;
2988 htab->dbits6 = 128;
2989 htab->sbits6 = 128;
David S. Miller2518c7c2006-08-24 04:45:07 -07002990 }
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002991 net->xfrm.policy_hthresh.lbits4 = 32;
2992 net->xfrm.policy_hthresh.rbits4 = 32;
2993 net->xfrm.policy_hthresh.lbits6 = 128;
2994 net->xfrm.policy_hthresh.rbits6 = 128;
2995
2996 seqlock_init(&net->xfrm.policy_hthresh.lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002997
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002998 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002999 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02003000 INIT_WORK(&net->xfrm.policy_hthresh.work, xfrm_hash_rebuild);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003001 if (net_eq(net, &init_net))
3002 register_netdevice_notifier(&xfrm_dev_notifier);
3003 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08003004
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08003005out_bydst:
3006 for (dir--; dir >= 0; dir--) {
3007 struct xfrm_policy_hash *htab;
3008
3009 htab = &net->xfrm.policy_bydst[dir];
3010 xfrm_hash_free(htab->table, sz);
3011 }
3012 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08003013out_byidx:
3014 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003017static void xfrm_policy_fini(struct net *net)
3018{
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08003019 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08003020 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08003021
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08003022 flush_work(&net->xfrm.policy_hash_work);
3023#ifdef CONFIG_XFRM_SUB_POLICY
Tetsuo Handa2e710292014-04-22 21:48:30 +09003024 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, false);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08003025#endif
Tetsuo Handa2e710292014-04-22 21:48:30 +09003026 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, false);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08003027
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08003028 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08003029
Herbert Xu53c2e282014-11-13 17:09:49 +08003030 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08003031 struct xfrm_policy_hash *htab;
3032
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08003033 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08003034
3035 htab = &net->xfrm.policy_bydst[dir];
Michal Kubecek5b653b22013-01-18 16:03:48 +01003036 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08003037 WARN_ON(!hlist_empty(htab->table));
3038 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08003039 }
3040
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08003041 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08003042 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
3043 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003044}
3045
3046static int __net_init xfrm_net_init(struct net *net)
3047{
3048 int rv;
3049
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003050 rv = xfrm_statistics_init(net);
3051 if (rv < 0)
3052 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003053 rv = xfrm_state_init(net);
3054 if (rv < 0)
3055 goto out_state;
3056 rv = xfrm_policy_init(net);
3057 if (rv < 0)
3058 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08003059 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08003060 rv = xfrm_sysctl_init(net);
3061 if (rv < 0)
3062 goto out_sysctl;
Steffen Klassert4a93f502014-03-12 09:43:17 +01003063 rv = flow_cache_init(net);
3064 if (rv < 0)
3065 goto out;
Fan Du283bc9f2013-11-07 17:47:50 +08003066
3067 /* Initialize the per-net locks here */
3068 spin_lock_init(&net->xfrm.xfrm_state_lock);
3069 rwlock_init(&net->xfrm.xfrm_policy_lock);
Fan Du283bc9f2013-11-07 17:47:50 +08003070 mutex_init(&net->xfrm.xfrm_cfg_mutex);
3071
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003072 return 0;
3073
Steffen Klassert4a93f502014-03-12 09:43:17 +01003074out:
3075 xfrm_sysctl_fini(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08003076out_sysctl:
3077 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003078out_policy:
3079 xfrm_state_fini(net);
3080out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003081 xfrm_statistics_fini(net);
3082out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003083 return rv;
3084}
3085
3086static void __net_exit xfrm_net_exit(struct net *net)
3087{
Steffen Klassert4a93f502014-03-12 09:43:17 +01003088 flow_cache_fini(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08003089 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003090 xfrm_policy_fini(net);
3091 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08003092 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003093}
3094
3095static struct pernet_operations __net_initdata xfrm_net_ops = {
3096 .init = xfrm_net_init,
3097 .exit = xfrm_net_exit,
3098};
3099
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100void __init xfrm_init(void)
3101{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08003102 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 xfrm_input_init();
3104}
3105
Joy Lattenab5f5e82007-09-17 11:51:22 -07003106#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08003107static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
3108 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003109{
Paul Moore875179f2007-12-01 23:27:18 +11003110 struct xfrm_sec_ctx *ctx = xp->security;
3111 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003112
Paul Moore875179f2007-12-01 23:27:18 +11003113 if (ctx)
3114 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
3115 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
3116
Weilong Chen9b7a7872013-12-24 09:43:46 +08003117 switch (sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07003118 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07003119 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11003120 if (sel->prefixlen_s != 32)
3121 audit_log_format(audit_buf, " src_prefixlen=%d",
3122 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07003123 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11003124 if (sel->prefixlen_d != 32)
3125 audit_log_format(audit_buf, " dst_prefixlen=%d",
3126 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003127 break;
3128 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07003129 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11003130 if (sel->prefixlen_s != 128)
3131 audit_log_format(audit_buf, " src_prefixlen=%d",
3132 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07003133 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11003134 if (sel->prefixlen_d != 128)
3135 audit_log_format(audit_buf, " dst_prefixlen=%d",
3136 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003137 break;
3138 }
3139}
3140
Tetsuo Handa2e710292014-04-22 21:48:30 +09003141void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003142{
3143 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003144
Paul Mooreafeb14b2007-12-21 14:58:11 -08003145 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003146 if (audit_buf == NULL)
3147 return;
Tetsuo Handa2e710292014-04-22 21:48:30 +09003148 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003149 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003150 xfrm_audit_common_policyinfo(xp, audit_buf);
3151 audit_log_end(audit_buf);
3152}
3153EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
3154
Paul Moore68277ac2007-12-20 20:49:33 -08003155void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Tetsuo Handa2e710292014-04-22 21:48:30 +09003156 bool task_valid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003157{
3158 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003159
Paul Mooreafeb14b2007-12-21 14:58:11 -08003160 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003161 if (audit_buf == NULL)
3162 return;
Tetsuo Handa2e710292014-04-22 21:48:30 +09003163 xfrm_audit_helper_usrinfo(task_valid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003164 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003165 xfrm_audit_common_policyinfo(xp, audit_buf);
3166 audit_log_end(audit_buf);
3167}
3168EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
3169#endif
3170
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003171#ifdef CONFIG_XFRM_MIGRATE
David S. Millerbc9b35a2012-05-15 15:04:57 -04003172static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
3173 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003174{
3175 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
3176 if (sel_tgt->family == sel_cmp->family &&
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003177 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
3178 sel_cmp->family) &&
3179 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
3180 sel_cmp->family) &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003181 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
3182 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003183 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003184 }
3185 } else {
3186 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003187 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003188 }
3189 }
David S. Millerbc9b35a2012-05-15 15:04:57 -04003190 return false;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003191}
3192
Weilong Chen3e94c2d2013-12-24 09:43:47 +08003193static struct xfrm_policy *xfrm_migrate_policy_find(const struct xfrm_selector *sel,
3194 u8 dir, u8 type, struct net *net)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003195{
3196 struct xfrm_policy *pol, *ret = NULL;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003197 struct hlist_head *chain;
3198 u32 priority = ~0U;
3199
Fan Du283bc9f2013-11-07 17:47:50 +08003200 read_lock_bh(&net->xfrm.xfrm_policy_lock); /*FIXME*/
Fan Du8d549c42013-11-07 17:47:49 +08003201 chain = policy_hash_direct(net, &sel->daddr, &sel->saddr, sel->family, dir);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003202 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003203 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3204 pol->type == type) {
3205 ret = pol;
3206 priority = ret->priority;
3207 break;
3208 }
3209 }
Fan Du8d549c42013-11-07 17:47:49 +08003210 chain = &net->xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003211 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003212 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3213 pol->type == type &&
3214 pol->priority < priority) {
3215 ret = pol;
3216 break;
3217 }
3218 }
3219
3220 if (ret)
3221 xfrm_pol_hold(ret);
3222
Fan Du283bc9f2013-11-07 17:47:50 +08003223 read_unlock_bh(&net->xfrm.xfrm_policy_lock);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003224
3225 return ret;
3226}
3227
David S. Millerdd701752011-02-24 00:21:08 -05003228static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003229{
3230 int match = 0;
3231
3232 if (t->mode == m->mode && t->id.proto == m->proto &&
3233 (m->reqid == 0 || t->reqid == m->reqid)) {
3234 switch (t->mode) {
3235 case XFRM_MODE_TUNNEL:
3236 case XFRM_MODE_BEET:
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003237 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
3238 m->old_family) &&
3239 xfrm_addr_equal(&t->saddr, &m->old_saddr,
3240 m->old_family)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003241 match = 1;
3242 }
3243 break;
3244 case XFRM_MODE_TRANSPORT:
3245 /* in case of transport mode, template does not store
3246 any IP addresses, hence we just compare mode and
3247 protocol */
3248 match = 1;
3249 break;
3250 default:
3251 break;
3252 }
3253 }
3254 return match;
3255}
3256
3257/* update endpoint address(es) of template(s) */
3258static int xfrm_policy_migrate(struct xfrm_policy *pol,
3259 struct xfrm_migrate *m, int num_migrate)
3260{
3261 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003262 int i, j, n = 0;
3263
3264 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07003265 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003266 /* target policy has been deleted */
3267 write_unlock_bh(&pol->lock);
3268 return -ENOENT;
3269 }
3270
3271 for (i = 0; i < pol->xfrm_nr; i++) {
3272 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
3273 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
3274 continue;
3275 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07003276 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
3277 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003278 continue;
3279 /* update endpoints */
3280 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
3281 sizeof(pol->xfrm_vec[i].id.daddr));
3282 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
3283 sizeof(pol->xfrm_vec[i].saddr));
3284 pol->xfrm_vec[i].encap_family = mp->new_family;
3285 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00003286 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003287 }
3288 }
3289
3290 write_unlock_bh(&pol->lock);
3291
3292 if (!n)
3293 return -ENODATA;
3294
3295 return 0;
3296}
3297
David S. Millerdd701752011-02-24 00:21:08 -05003298static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003299{
3300 int i, j;
3301
3302 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
3303 return -EINVAL;
3304
3305 for (i = 0; i < num_migrate; i++) {
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003306 if (xfrm_addr_equal(&m[i].old_daddr, &m[i].new_daddr,
3307 m[i].old_family) &&
3308 xfrm_addr_equal(&m[i].old_saddr, &m[i].new_saddr,
3309 m[i].old_family))
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003310 return -EINVAL;
3311 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
3312 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
3313 return -EINVAL;
3314
3315 /* check if there is any duplicated entry */
3316 for (j = i + 1; j < num_migrate; j++) {
3317 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
3318 sizeof(m[i].old_daddr)) &&
3319 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
3320 sizeof(m[i].old_saddr)) &&
3321 m[i].proto == m[j].proto &&
3322 m[i].mode == m[j].mode &&
3323 m[i].reqid == m[j].reqid &&
3324 m[i].old_family == m[j].old_family)
3325 return -EINVAL;
3326 }
3327 }
3328
3329 return 0;
3330}
3331
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003332int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003333 struct xfrm_migrate *m, int num_migrate,
Fan Du8d549c42013-11-07 17:47:49 +08003334 struct xfrm_kmaddress *k, struct net *net)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003335{
3336 int i, err, nx_cur = 0, nx_new = 0;
3337 struct xfrm_policy *pol = NULL;
3338 struct xfrm_state *x, *xc;
3339 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
3340 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
3341 struct xfrm_migrate *mp;
3342
3343 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
3344 goto out;
3345
3346 /* Stage 1 - find policy */
Fan Du8d549c42013-11-07 17:47:49 +08003347 if ((pol = xfrm_migrate_policy_find(sel, dir, type, net)) == NULL) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003348 err = -ENOENT;
3349 goto out;
3350 }
3351
3352 /* Stage 2 - find and update state(s) */
3353 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
Fan Du283bc9f2013-11-07 17:47:50 +08003354 if ((x = xfrm_migrate_state_find(mp, net))) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003355 x_cur[nx_cur] = x;
3356 nx_cur++;
3357 if ((xc = xfrm_state_migrate(x, mp))) {
3358 x_new[nx_new] = xc;
3359 nx_new++;
3360 } else {
3361 err = -ENODATA;
3362 goto restore_state;
3363 }
3364 }
3365 }
3366
3367 /* Stage 3 - update policy */
3368 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
3369 goto restore_state;
3370
3371 /* Stage 4 - delete old state(s) */
3372 if (nx_cur) {
3373 xfrm_states_put(x_cur, nx_cur);
3374 xfrm_states_delete(x_cur, nx_cur);
3375 }
3376
3377 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003378 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003379
3380 xfrm_pol_put(pol);
3381
3382 return 0;
3383out:
3384 return err;
3385
3386restore_state:
3387 if (pol)
3388 xfrm_pol_put(pol);
3389 if (nx_cur)
3390 xfrm_states_put(x_cur, nx_cur);
3391 if (nx_new)
3392 xfrm_states_delete(x_new, nx_new);
3393
3394 return err;
3395}
David S. Millere610e672007-02-08 13:29:15 -08003396EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003397#endif