blob: ed38d5d81f9e1f4890cf36447713badd48691489 [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
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080042DEFINE_MUTEX(xfrm_cfg_mutex);
43EXPORT_SYMBOL(xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Timo Teräs80c802f2010-04-07 00:30:05 +000045static DEFINE_SPINLOCK(xfrm_policy_sk_bundle_lock);
46static struct dst_entry *xfrm_policy_sk_bundles;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static DEFINE_RWLOCK(xfrm_policy_lock);
48
Priyanka Jain418a99a2012-08-12 21:22:29 +000049static DEFINE_SPINLOCK(xfrm_policy_afinfo_lock);
50static struct xfrm_policy_afinfo __rcu *xfrm_policy_afinfo[NPROTO]
51 __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Christoph Lametere18b8902006-12-06 20:33:20 -080053static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Herbert Xu25ee3282007-12-11 09:32:34 -080055static void xfrm_init_pmtu(struct dst_entry *dst);
Timo Teräs80c802f2010-04-07 00:30:05 +000056static int stale_bundle(struct dst_entry *dst);
Steffen Klassert12fdb4d2011-06-29 23:18:20 +000057static int xfrm_bundle_ok(struct xfrm_dst *xdst);
Steffen Klasserta0073fe2013-02-05 12:52:55 +010058static void xfrm_policy_queue_process(unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Wei Yongjun29fa0b302008-12-03 00:33:09 -080060static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
61 int dir);
62
David S. Millerbc9b35a2012-05-15 15:04:57 -040063static inline bool
David S. Miller200ce962011-02-24 00:12:25 -050064__xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080065{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050066 const struct flowi4 *fl4 = &fl->u.ip4;
67
Alexey Dobriyan26bff942011-11-22 06:46:02 +000068 return addr4_match(fl4->daddr, sel->daddr.a4, sel->prefixlen_d) &&
69 addr4_match(fl4->saddr, sel->saddr.a4, sel->prefixlen_s) &&
David S. Miller7e1dc7b2011-03-12 02:42:11 -050070 !((xfrm_flowi_dport(fl, &fl4->uli) ^ sel->dport) & sel->dport_mask) &&
71 !((xfrm_flowi_sport(fl, &fl4->uli) ^ sel->sport) & sel->sport_mask) &&
72 (fl4->flowi4_proto == sel->proto || !sel->proto) &&
73 (fl4->flowi4_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080074}
75
David S. Millerbc9b35a2012-05-15 15:04:57 -040076static inline bool
David S. Miller200ce962011-02-24 00:12:25 -050077__xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080078{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050079 const struct flowi6 *fl6 = &fl->u.ip6;
80
81 return addr_match(&fl6->daddr, &sel->daddr, sel->prefixlen_d) &&
82 addr_match(&fl6->saddr, &sel->saddr, sel->prefixlen_s) &&
83 !((xfrm_flowi_dport(fl, &fl6->uli) ^ sel->dport) & sel->dport_mask) &&
84 !((xfrm_flowi_sport(fl, &fl6->uli) ^ sel->sport) & sel->sport_mask) &&
85 (fl6->flowi6_proto == sel->proto || !sel->proto) &&
86 (fl6->flowi6_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080087}
88
David S. Millerbc9b35a2012-05-15 15:04:57 -040089bool xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
90 unsigned short family)
Andrew Morton77681022006-11-08 22:46:26 -080091{
92 switch (family) {
93 case AF_INET:
94 return __xfrm4_selector_match(sel, fl);
95 case AF_INET6:
96 return __xfrm6_selector_match(sel, fl);
97 }
David S. Millerbc9b35a2012-05-15 15:04:57 -040098 return false;
Andrew Morton77681022006-11-08 22:46:26 -080099}
100
Eric Dumazetef8531b2012-08-19 12:31:48 +0200101static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
102{
103 struct xfrm_policy_afinfo *afinfo;
104
105 if (unlikely(family >= NPROTO))
106 return NULL;
107 rcu_read_lock();
108 afinfo = rcu_dereference(xfrm_policy_afinfo[family]);
109 if (unlikely(!afinfo))
110 rcu_read_unlock();
111 return afinfo;
112}
113
114static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
115{
116 rcu_read_unlock();
117}
118
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800119static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
David S. Miller6418c4e2011-02-24 00:16:53 -0500120 const xfrm_address_t *saddr,
121 const xfrm_address_t *daddr,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900122 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800124 struct xfrm_policy_afinfo *afinfo;
125 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Herbert Xu25ee3282007-12-11 09:32:34 -0800127 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800129 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800131 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900134
135 return dst;
136}
137
138static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
139 xfrm_address_t *prev_saddr,
140 xfrm_address_t *prev_daddr,
141 int family)
142{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800143 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900144 xfrm_address_t *saddr = &x->props.saddr;
145 xfrm_address_t *daddr = &x->id.daddr;
146 struct dst_entry *dst;
147
148 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
149 saddr = x->coaddr;
150 daddr = prev_daddr;
151 }
152 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
153 saddr = prev_saddr;
154 daddr = x->coaddr;
155 }
156
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800157 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900158
159 if (!IS_ERR(dst)) {
160 if (prev_saddr != saddr)
161 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
162 if (prev_daddr != daddr)
163 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
164 }
165
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800166 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static inline unsigned long make_jiffies(long secs)
170{
171 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
172 return MAX_SCHEDULE_TIMEOUT-1;
173 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900174 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177static void xfrm_policy_timer(unsigned long data)
178{
179 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800180 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 long next = LONG_MAX;
182 int warn = 0;
183 int dir;
184
185 read_lock(&xp->lock);
186
Timo Teräsea2dea92010-03-31 00:17:05 +0000187 if (unlikely(xp->walk.dead))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto out;
189
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700190 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (xp->lft.hard_add_expires_seconds) {
193 long tmo = xp->lft.hard_add_expires_seconds +
194 xp->curlft.add_time - now;
195 if (tmo <= 0)
196 goto expired;
197 if (tmo < next)
198 next = tmo;
199 }
200 if (xp->lft.hard_use_expires_seconds) {
201 long tmo = xp->lft.hard_use_expires_seconds +
202 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
203 if (tmo <= 0)
204 goto expired;
205 if (tmo < next)
206 next = tmo;
207 }
208 if (xp->lft.soft_add_expires_seconds) {
209 long tmo = xp->lft.soft_add_expires_seconds +
210 xp->curlft.add_time - now;
211 if (tmo <= 0) {
212 warn = 1;
213 tmo = XFRM_KM_TIMEOUT;
214 }
215 if (tmo < next)
216 next = tmo;
217 }
218 if (xp->lft.soft_use_expires_seconds) {
219 long tmo = xp->lft.soft_use_expires_seconds +
220 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
221 if (tmo <= 0) {
222 warn = 1;
223 tmo = XFRM_KM_TIMEOUT;
224 }
225 if (tmo < next)
226 next = tmo;
227 }
228
229 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800230 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (next != LONG_MAX &&
232 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
233 xfrm_pol_hold(xp);
234
235out:
236 read_unlock(&xp->lock);
237 xfrm_pol_put(xp);
238 return;
239
240expired:
241 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700242 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800243 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 xfrm_pol_put(xp);
245}
246
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000247static struct flow_cache_object *xfrm_policy_flo_get(struct flow_cache_object *flo)
248{
249 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
250
251 if (unlikely(pol->walk.dead))
252 flo = NULL;
253 else
254 xfrm_pol_hold(pol);
255
256 return flo;
257}
258
259static int xfrm_policy_flo_check(struct flow_cache_object *flo)
260{
261 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
262
263 return !pol->walk.dead;
264}
265
266static void xfrm_policy_flo_delete(struct flow_cache_object *flo)
267{
268 xfrm_pol_put(container_of(flo, struct xfrm_policy, flo));
269}
270
271static const struct flow_cache_ops xfrm_policy_fc_ops = {
272 .get = xfrm_policy_flo_get,
273 .check = xfrm_policy_flo_check,
274 .delete = xfrm_policy_flo_delete,
275};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
278 * SPD calls.
279 */
280
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800281struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct xfrm_policy *policy;
284
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700285 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800288 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700289 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700290 INIT_HLIST_NODE(&policy->bydst);
291 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700293 atomic_set(&policy->refcnt, 1);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100294 skb_queue_head_init(&policy->polq.hold_queue);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800295 setup_timer(&policy->timer, xfrm_policy_timer,
296 (unsigned long)policy);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100297 setup_timer(&policy->polq.hold_timer, xfrm_policy_queue_process,
298 (unsigned long)policy);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000299 policy->flo.ops = &xfrm_policy_fc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 return policy;
302}
303EXPORT_SYMBOL(xfrm_policy_alloc);
304
305/* Destroy xfrm_policy: descendant resources must be released to this moment. */
306
WANG Cong64c31b32008-01-07 22:34:29 -0800307void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Herbert Xu12a169e2008-10-01 07:03:24 -0700309 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Fan Du0659eea2013-08-01 18:08:36 +0800311 if (del_timer(&policy->timer) || del_timer(&policy->polq.hold_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 BUG();
313
Paul Moore03e1ad72008-04-12 19:07:52 -0700314 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 kfree(policy);
316}
WANG Cong64c31b32008-01-07 22:34:29 -0800317EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100319static void xfrm_queue_purge(struct sk_buff_head *list)
320{
321 struct sk_buff *skb;
322
Steffen Klassert302a50b2013-08-28 08:47:14 +0200323 while ((skb = skb_dequeue(list)) != NULL)
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100324 kfree_skb(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/* Rule must be locked. Release descentant resources, announce
328 * entry dead. The rule must be unlinked from lists to the moment.
329 */
330
331static void xfrm_policy_kill(struct xfrm_policy *policy)
332{
Herbert Xu12a169e2008-10-01 07:03:24 -0700333 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Timo Teräs285ead12010-04-07 00:30:06 +0000335 atomic_inc(&policy->genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100337 del_timer(&policy->polq.hold_timer);
338 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
David S. Miller5f803b52011-02-24 00:33:19 -0500353static struct hlist_head *policy_hash_bysel(struct net *net,
354 const struct xfrm_selector *sel,
355 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700356{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800357 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700358 unsigned int hash = __sel_hash(sel, family, hmask);
359
360 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800361 &net->xfrm.policy_inexact[dir] :
362 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700363}
364
David S. Miller5f803b52011-02-24 00:33:19 -0500365static struct hlist_head *policy_hash_direct(struct net *net,
366 const xfrm_address_t *daddr,
367 const xfrm_address_t *saddr,
368 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700369{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800370 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700371 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
372
Alexey Dobriyan11219942008-11-25 17:33:06 -0800373 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700374}
375
David S. Miller2518c7c2006-08-24 04:45:07 -0700376static void xfrm_dst_hash_transfer(struct hlist_head *list,
377 struct hlist_head *ndsttable,
378 unsigned int nhashmask)
379{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800380 struct hlist_node *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700381 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800382 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700383
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800384redo:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800385 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700386 unsigned int h;
387
388 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
389 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800390 if (!entry0) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800391 hlist_del(&pol->bydst);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800392 hlist_add_head(&pol->bydst, ndsttable+h);
393 h0 = h;
394 } else {
395 if (h != h0)
396 continue;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800397 hlist_del(&pol->bydst);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800398 hlist_add_after(entry0, &pol->bydst);
399 }
Sasha Levinb67bfe02013-02-27 17:06:00 -0800400 entry0 = &pol->bydst;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800401 }
402 if (!hlist_empty(list)) {
403 entry0 = NULL;
404 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700405 }
406}
407
408static void xfrm_idx_hash_transfer(struct hlist_head *list,
409 struct hlist_head *nidxtable,
410 unsigned int nhashmask)
411{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800412 struct hlist_node *tmp;
David S. Miller2518c7c2006-08-24 04:45:07 -0700413 struct xfrm_policy *pol;
414
Sasha Levinb67bfe02013-02-27 17:06:00 -0800415 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700416 unsigned int h;
417
418 h = __idx_hash(pol->index, nhashmask);
419 hlist_add_head(&pol->byidx, nidxtable+h);
420 }
421}
422
423static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
424{
425 return ((old_hmask + 1) << 1) - 1;
426}
427
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800428static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700429{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800430 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700431 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
432 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800433 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700434 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700435 int i;
436
437 if (!ndst)
438 return;
439
440 write_lock_bh(&xfrm_policy_lock);
441
442 for (i = hmask; i >= 0; i--)
443 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
444
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800445 net->xfrm.policy_bydst[dir].table = ndst;
446 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700447
448 write_unlock_bh(&xfrm_policy_lock);
449
David S. Miller44e36b42006-08-24 04:50:50 -0700450 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700451}
452
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800453static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700454{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800455 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700456 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
457 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800458 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700459 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700460 int i;
461
462 if (!nidx)
463 return;
464
465 write_lock_bh(&xfrm_policy_lock);
466
467 for (i = hmask; i >= 0; i--)
468 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
469
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800470 net->xfrm.policy_byidx = nidx;
471 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700472
473 write_unlock_bh(&xfrm_policy_lock);
474
David S. Miller44e36b42006-08-24 04:50:50 -0700475 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700476}
477
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800478static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700479{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800480 unsigned int cnt = net->xfrm.policy_count[dir];
481 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700482
483 if (total)
484 *total += cnt;
485
486 if ((hmask + 1) < xfrm_policy_hashmax &&
487 cnt > hmask)
488 return 1;
489
490 return 0;
491}
492
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800493static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700494{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800495 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700496
497 if ((hmask + 1) < xfrm_policy_hashmax &&
498 total > hmask)
499 return 1;
500
501 return 0;
502}
503
Alexey Dobriyane0710412010-01-23 13:37:10 +0000504void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700505{
506 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000507 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
508 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
509 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
510 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
511 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
512 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
513 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700514 si->spdhmcnt = xfrm_policy_hashmax;
515 read_unlock_bh(&xfrm_policy_lock);
516}
517EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700518
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700519static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800520static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700521{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800522 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700523 int dir, total;
524
525 mutex_lock(&hash_resize_mutex);
526
527 total = 0;
528 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800529 if (xfrm_bydst_should_resize(net, dir, &total))
530 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700531 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800532 if (xfrm_byidx_should_resize(net, total))
533 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700534
535 mutex_unlock(&hash_resize_mutex);
536}
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/* Generate new index... KAME seems to generate them ordered by cost
539 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800540static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 static u32 idx_generator;
543
544 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700545 struct hlist_head *list;
546 struct xfrm_policy *p;
547 u32 idx;
548 int found;
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 idx = (idx_generator | dir);
551 idx_generator += 8;
552 if (idx == 0)
553 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800554 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700555 found = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800556 hlist_for_each_entry(p, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700557 if (p->index == idx) {
558 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700562 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return idx;
564 }
565}
566
David S. Miller2518c7c2006-08-24 04:45:07 -0700567static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
568{
569 u32 *p1 = (u32 *) s1;
570 u32 *p2 = (u32 *) s2;
571 int len = sizeof(struct xfrm_selector) / sizeof(u32);
572 int i;
573
574 for (i = 0; i < len; i++) {
575 if (p1[i] != p2[i])
576 return 1;
577 }
578
579 return 0;
580}
581
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100582static void xfrm_policy_requeue(struct xfrm_policy *old,
583 struct xfrm_policy *new)
584{
585 struct xfrm_policy_queue *pq = &old->polq;
586 struct sk_buff_head list;
587
588 __skb_queue_head_init(&list);
589
590 spin_lock_bh(&pq->hold_queue.lock);
591 skb_queue_splice_init(&pq->hold_queue, &list);
592 del_timer(&pq->hold_timer);
593 spin_unlock_bh(&pq->hold_queue.lock);
594
595 if (skb_queue_empty(&list))
596 return;
597
598 pq = &new->polq;
599
600 spin_lock_bh(&pq->hold_queue.lock);
601 skb_queue_splice(&list, &pq->hold_queue);
602 pq->timeout = XFRM_QUEUE_TMO_MIN;
603 mod_timer(&pq->hold_timer, jiffies);
604 spin_unlock_bh(&pq->hold_queue.lock);
605}
606
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100607static bool xfrm_policy_mark_match(struct xfrm_policy *policy,
608 struct xfrm_policy *pol)
609{
610 u32 mark = policy->mark.v & policy->mark.m;
611
612 if (policy->mark.v == pol->mark.v && policy->mark.m == pol->mark.m)
613 return true;
614
615 if ((mark & pol->mark.m) == pol->mark.v &&
616 policy->priority == pol->priority)
617 return true;
618
619 return false;
620}
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
623{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800624 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700625 struct xfrm_policy *pol;
626 struct xfrm_policy *delpol;
627 struct hlist_head *chain;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800628 struct hlist_node *newpos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800631 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700632 delpol = NULL;
633 newpos = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800634 hlist_for_each_entry(pol, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800635 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700636 !selector_cmp(&pol->selector, &policy->selector) &&
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100637 xfrm_policy_mark_match(policy, pol) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800638 xfrm_sec_ctx_match(pol->security, policy->security) &&
639 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (excl) {
641 write_unlock_bh(&xfrm_policy_lock);
642 return -EEXIST;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 delpol = pol;
645 if (policy->priority > pol->priority)
646 continue;
647 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800648 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 continue;
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (delpol)
652 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700655 hlist_add_after(newpos, &policy->bydst);
656 else
657 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800659 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 atomic_inc(&flow_cache_genid);
fan.duca4c3fc2013-07-30 08:33:53 +0800661
662 /* After previous checking, family can either be AF_INET or AF_INET6 */
663 if (policy->family == AF_INET)
664 rt_genid_bump_ipv4(net);
665 else
666 rt_genid_bump_ipv6(net);
667
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100668 if (delpol) {
669 xfrm_policy_requeue(delpol, policy);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800670 __xfrm_policy_unlink(delpol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100671 }
Alexey Dobriyan11219942008-11-25 17:33:06 -0800672 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
673 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800674 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 policy->curlft.use_time = 0;
676 if (!mod_timer(&policy->timer, jiffies + HZ))
677 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800678 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 write_unlock_bh(&xfrm_policy_lock);
680
David S. Miller9b78a822005-12-22 07:39:48 -0800681 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800683 else if (xfrm_bydst_should_resize(net, dir, NULL))
684 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return 0;
687}
688EXPORT_SYMBOL(xfrm_policy_insert);
689
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000690struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
691 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800692 struct xfrm_sec_ctx *ctx, int delete,
693 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
David S. Miller2518c7c2006-08-24 04:45:07 -0700695 struct xfrm_policy *pol, *ret;
696 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Eric Parisef41aaa2007-03-07 15:37:58 -0800698 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800700 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700701 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800702 hlist_for_each_entry(pol, chain, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700703 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000704 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700705 !selector_cmp(sel, &pol->selector) &&
706 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700708 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700709 *err = security_xfrm_policy_delete(
710 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800711 if (*err) {
712 write_unlock_bh(&xfrm_policy_lock);
713 return pol;
714 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800715 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700716 }
717 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 break;
719 }
720 }
721 write_unlock_bh(&xfrm_policy_lock);
722
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000723 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700724 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700725 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
Trent Jaegerdf718372005-12-13 23:12:27 -0800727EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000729struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
730 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
David S. Miller2518c7c2006-08-24 04:45:07 -0700732 struct xfrm_policy *pol, *ret;
733 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Herbert Xub5505c62007-05-14 02:15:47 -0700735 *err = -ENOENT;
736 if (xfrm_policy_id2dir(id) != dir)
737 return NULL;
738
Eric Parisef41aaa2007-03-07 15:37:58 -0800739 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800741 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700742 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800743 hlist_for_each_entry(pol, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000744 if (pol->type == type && pol->index == id &&
745 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700747 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700748 *err = security_xfrm_policy_delete(
749 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800750 if (*err) {
751 write_unlock_bh(&xfrm_policy_lock);
752 return pol;
753 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800754 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700755 }
756 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 break;
758 }
759 }
760 write_unlock_bh(&xfrm_policy_lock);
761
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000762 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700763 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700764 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766EXPORT_SYMBOL(xfrm_policy_byid);
767
Joy Latten4aa2e622007-06-04 19:05:57 -0400768#ifdef CONFIG_SECURITY_NETWORK_XFRM
769static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800770xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Joy Latten4aa2e622007-06-04 19:05:57 -0400772 int dir, err = 0;
773
774 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
775 struct xfrm_policy *pol;
Joy Latten4aa2e622007-06-04 19:05:57 -0400776 int i;
777
Sasha Levinb67bfe02013-02-27 17:06:00 -0800778 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800779 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400780 if (pol->type != type)
781 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700782 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400783 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700784 xfrm_audit_policy_delete(pol, 0,
785 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400786 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700787 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400788 return err;
789 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900790 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800791 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800792 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800793 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400794 bydst) {
795 if (pol->type != type)
796 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700797 err = security_xfrm_policy_delete(
798 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400799 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700800 xfrm_audit_policy_delete(pol, 0,
801 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400802 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700803 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400804 return err;
805 }
806 }
807 }
808 }
809 return err;
810}
811#else
812static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800813xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400814{
815 return 0;
816}
817#endif
818
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800819int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400820{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000821 int dir, err = 0, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400824
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800825 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400826 if (err)
827 goto out;
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700830 struct xfrm_policy *pol;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800831 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700832
833 again1:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800834 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800835 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700836 if (pol->type != type)
837 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000838 __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000840 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Joy Lattenab5f5e82007-09-17 11:51:22 -0700842 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400843 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700844 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600845
David S. Miller2518c7c2006-08-24 04:45:07 -0700846 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700849 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700851
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800852 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700853 again2:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800854 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800855 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700856 bydst) {
857 if (pol->type != type)
858 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000859 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700860 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000861 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700862
Joy Lattenab5f5e82007-09-17 11:51:22 -0700863 xfrm_audit_policy_delete(pol, 1,
864 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400865 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700866 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700867 xfrm_policy_kill(pol);
868
869 write_lock_bh(&xfrm_policy_lock);
870 goto again2;
871 }
872 }
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000875 if (!cnt)
876 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -0400877out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400879 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881EXPORT_SYMBOL(xfrm_policy_flush);
882
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800883int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800884 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 void *data)
886{
Herbert Xu12a169e2008-10-01 07:03:24 -0700887 struct xfrm_policy *pol;
888 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800889 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Timo Teras4c563f72008-02-28 21:31:08 -0800891 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
892 walk->type != XFRM_POLICY_TYPE_ANY)
893 return -EINVAL;
894
Herbert Xu12a169e2008-10-01 07:03:24 -0700895 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800896 return 0;
897
Herbert Xu12a169e2008-10-01 07:03:24 -0700898 write_lock_bh(&xfrm_policy_lock);
899 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800900 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700901 else
902 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800903 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700904 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800905 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700906 pol = container_of(x, struct xfrm_policy, walk);
907 if (walk->type != XFRM_POLICY_TYPE_ANY &&
908 walk->type != pol->type)
909 continue;
910 error = func(pol, xfrm_policy_id2dir(pol->index),
911 walk->seq, data);
912 if (error) {
913 list_move_tail(&walk->walk.all, &x->all);
914 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800915 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700916 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700918 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800919 error = -ENOENT;
920 goto out;
921 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700922 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700924 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return error;
926}
927EXPORT_SYMBOL(xfrm_policy_walk);
928
Herbert Xu12a169e2008-10-01 07:03:24 -0700929void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
930{
931 INIT_LIST_HEAD(&walk->walk.all);
932 walk->walk.dead = 1;
933 walk->type = type;
934 walk->seq = 0;
935}
936EXPORT_SYMBOL(xfrm_policy_walk_init);
937
938void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
939{
940 if (list_empty(&walk->walk.all))
941 return;
942
943 write_lock_bh(&xfrm_policy_lock);
944 list_del(&walk->walk.all);
945 write_unlock_bh(&xfrm_policy_lock);
946}
947EXPORT_SYMBOL(xfrm_policy_walk_done);
948
James Morris134b0fc2006-10-05 15:42:27 -0500949/*
950 * Find policy to apply to this flow.
951 *
952 * Returns 0 if policy found, else an -errno.
953 */
David S. Millerf299d552011-02-24 01:23:30 -0500954static int xfrm_policy_match(const struct xfrm_policy *pol,
955 const struct flowi *fl,
David S. Miller2518c7c2006-08-24 04:45:07 -0700956 u8 type, u16 family, int dir)
957{
David S. Millerf299d552011-02-24 01:23:30 -0500958 const struct xfrm_selector *sel = &pol->selector;
David S. Millerbc9b35a2012-05-15 15:04:57 -0400959 int ret = -ESRCH;
960 bool match;
David S. Miller2518c7c2006-08-24 04:45:07 -0700961
962 if (pol->family != family ||
David S. Miller1d28f422011-03-12 00:29:39 -0500963 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -0700964 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500965 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700966
967 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500968 if (match)
David S. Miller1d28f422011-03-12 00:29:39 -0500969 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -0700970 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700971
James Morris134b0fc2006-10-05 15:42:27 -0500972 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700973}
974
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800975static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -0800976 const struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700977 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
James Morris134b0fc2006-10-05 15:42:27 -0500979 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700980 struct xfrm_policy *pol, *ret;
David S. Miller0b597e72011-02-24 01:22:48 -0500981 const xfrm_address_t *daddr, *saddr;
David S. Miller2518c7c2006-08-24 04:45:07 -0700982 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700983 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700984
985 daddr = xfrm_flowi_daddr(fl, family);
986 saddr = xfrm_flowi_saddr(fl, family);
987 if (unlikely(!daddr || !saddr))
988 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800991 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700992 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800993 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500994 err = xfrm_policy_match(pol, fl, type, family, dir);
995 if (err) {
996 if (err == -ESRCH)
997 continue;
998 else {
999 ret = ERR_PTR(err);
1000 goto fail;
1001 }
1002 } else {
David S. Milleracba48e2006-08-25 15:46:46 -07001003 ret = pol;
1004 priority = ret->priority;
1005 break;
1006 }
1007 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001008 chain = &net->xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001009 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -05001010 err = xfrm_policy_match(pol, fl, type, family, dir);
1011 if (err) {
1012 if (err == -ESRCH)
1013 continue;
1014 else {
1015 ret = ERR_PTR(err);
1016 goto fail;
1017 }
1018 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001019 ret = pol;
1020 break;
1021 }
1022 }
David S. Milleracba48e2006-08-25 15:46:46 -07001023 if (ret)
1024 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -05001025fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001027
David S. Miller2518c7c2006-08-24 04:45:07 -07001028 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001029}
1030
Timo Teräs80c802f2010-04-07 00:30:05 +00001031static struct xfrm_policy *
David S. Miller73ff93c2011-02-22 18:33:42 -08001032__xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
Timo Teräs80c802f2010-04-07 00:30:05 +00001033{
1034#ifdef CONFIG_XFRM_SUB_POLICY
1035 struct xfrm_policy *pol;
1036
1037 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
1038 if (pol != NULL)
1039 return pol;
1040#endif
1041 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
1042}
1043
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001044static int flow_to_policy_dir(int dir)
1045{
1046 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
1047 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1048 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1049 return dir;
1050
1051 switch (dir) {
1052 default:
1053 case FLOW_DIR_IN:
1054 return XFRM_POLICY_IN;
1055 case FLOW_DIR_OUT:
1056 return XFRM_POLICY_OUT;
1057 case FLOW_DIR_FWD:
1058 return XFRM_POLICY_FWD;
1059 }
1060}
1061
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001062static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001063xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001064 u8 dir, struct flow_cache_object *old_obj, void *ctx)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001065{
1066 struct xfrm_policy *pol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001067
1068 if (old_obj)
1069 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001070
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001071 pol = __xfrm_policy_lookup(net, fl, family, flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00001072 if (IS_ERR_OR_NULL(pol))
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001073 return ERR_CAST(pol);
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001074
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001075 /* Resolver returns two references:
1076 * one for cache and one for caller of flow_cache_lookup() */
1077 xfrm_pol_hold(pol);
1078
1079 return &pol->flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Trent Jaegerdf718372005-12-13 23:12:27 -08001082static inline int policy_to_flow_dir(int dir)
1083{
1084 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001085 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1086 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1087 return dir;
1088 switch (dir) {
1089 default:
1090 case XFRM_POLICY_IN:
1091 return FLOW_DIR_IN;
1092 case XFRM_POLICY_OUT:
1093 return FLOW_DIR_OUT;
1094 case XFRM_POLICY_FWD:
1095 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001096 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001097}
1098
David S. Millerdee9f4b2011-02-22 18:44:31 -08001099static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
1100 const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
1102 struct xfrm_policy *pol;
1103
1104 read_lock_bh(&xfrm_policy_lock);
1105 if ((pol = sk->sk_policy[dir]) != NULL) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04001106 bool match = xfrm_selector_match(&pol->selector, fl,
1107 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001108 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001109
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001110 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001111 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1112 pol = NULL;
1113 goto out;
1114 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001115 err = security_xfrm_policy_lookup(pol->security,
David S. Miller1d28f422011-03-12 00:29:39 -05001116 fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001117 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001118 if (!err)
1119 xfrm_pol_hold(pol);
1120 else if (err == -ESRCH)
1121 pol = NULL;
1122 else
1123 pol = ERR_PTR(err);
1124 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 pol = NULL;
1126 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001127out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 read_unlock_bh(&xfrm_policy_lock);
1129 return pol;
1130}
1131
1132static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1133{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001134 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001135 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001136 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001137
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001138 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001139 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001140 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001141 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001143
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001144 if (xfrm_bydst_should_resize(net, dir, NULL))
1145 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
1148static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1149 int dir)
1150{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001151 struct net *net = xp_net(pol);
1152
David S. Miller2518c7c2006-08-24 04:45:07 -07001153 if (hlist_unhashed(&pol->bydst))
1154 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
David S. Miller2518c7c2006-08-24 04:45:07 -07001156 hlist_del(&pol->bydst);
1157 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001158 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001159 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001160
1161 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Herbert Xu4666faa2005-06-18 22:43:22 -07001164int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 write_lock_bh(&xfrm_policy_lock);
1167 pol = __xfrm_policy_unlink(pol, dir);
1168 write_unlock_bh(&xfrm_policy_lock);
1169 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001173 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
David S. Millera70fcb02006-03-20 19:18:52 -08001175EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1178{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001179 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 struct xfrm_policy *old_pol;
1181
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001182#ifdef CONFIG_XFRM_SUB_POLICY
1183 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1184 return -EINVAL;
1185#endif
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 write_lock_bh(&xfrm_policy_lock);
1188 old_pol = sk->sk_policy[dir];
1189 sk->sk_policy[dir] = pol;
1190 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001191 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001192 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1194 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001195 if (old_pol) {
1196 if (pol)
1197 xfrm_policy_requeue(old_pol, pol);
1198
Timo Teräsea2dea92010-03-31 00:17:05 +00001199 /* Unlinking succeeds always. This is the only function
1200 * allowed to delete or replace socket policy.
1201 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 write_unlock_bh(&xfrm_policy_lock);
1205
1206 if (old_pol) {
1207 xfrm_policy_kill(old_pol);
1208 }
1209 return 0;
1210}
1211
David S. Millerd3e40a92011-02-24 01:25:41 -05001212static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001214 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 if (newp) {
1217 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001218 if (security_xfrm_policy_clone(old->security,
1219 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001220 kfree(newp);
1221 return NULL; /* ENOMEM */
1222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 newp->lft = old->lft;
1224 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08001225 newp->mark = old->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 newp->action = old->action;
1227 newp->flags = old->flags;
1228 newp->xfrm_nr = old->xfrm_nr;
1229 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001230 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 memcpy(newp->xfrm_vec, old->xfrm_vec,
1232 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1233 write_lock_bh(&xfrm_policy_lock);
1234 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1235 write_unlock_bh(&xfrm_policy_lock);
1236 xfrm_pol_put(newp);
1237 }
1238 return newp;
1239}
1240
1241int __xfrm_sk_clone_policy(struct sock *sk)
1242{
1243 struct xfrm_policy *p0 = sk->sk_policy[0],
1244 *p1 = sk->sk_policy[1];
1245
1246 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1247 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1248 return -ENOMEM;
1249 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1250 return -ENOMEM;
1251 return 0;
1252}
1253
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001254static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001255xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001256 unsigned short family)
1257{
1258 int err;
1259 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1260
1261 if (unlikely(afinfo == NULL))
1262 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001263 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001264 xfrm_policy_put_afinfo(afinfo);
1265 return err;
1266}
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268/* Resolve list of templates for the flow, given policy. */
1269
1270static int
David S. Millera6c2e612011-02-22 18:35:39 -08001271xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1272 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001274 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 int nx;
1276 int i, error;
1277 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1278 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001279 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1282 struct xfrm_state *x;
1283 xfrm_address_t *remote = daddr;
1284 xfrm_address_t *local = saddr;
1285 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1286
Joakim Koskela48b8d782007-07-26 00:08:42 -07001287 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1288 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 remote = &tmpl->id.daddr;
1290 local = &tmpl->saddr;
Thomas Egerer8444cf72010-09-20 11:11:38 -07001291 if (xfrm_addr_any(local, tmpl->encap_family)) {
1292 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001293 if (error)
1294 goto fail;
1295 local = &tmp;
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298
1299 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1300
1301 if (x && x->km.state == XFRM_STATE_VALID) {
1302 xfrm[nx++] = x;
1303 daddr = remote;
1304 saddr = local;
1305 continue;
1306 }
1307 if (x) {
1308 error = (x->km.state == XFRM_STATE_ERROR ?
1309 -EINVAL : -EAGAIN);
1310 xfrm_state_put(x);
1311 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001312 else if (error == -ESRCH)
1313 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 if (!tmpl->optional)
1316 goto fail;
1317 }
1318 return nx;
1319
1320fail:
1321 for (nx--; nx>=0; nx--)
1322 xfrm_state_put(xfrm[nx]);
1323 return error;
1324}
1325
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001326static int
David S. Millera6c2e612011-02-22 18:35:39 -08001327xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1328 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001329{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001330 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1331 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001332 int cnx = 0;
1333 int error;
1334 int ret;
1335 int i;
1336
1337 for (i = 0; i < npols; i++) {
1338 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1339 error = -ENOBUFS;
1340 goto fail;
1341 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001342
1343 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001344 if (ret < 0) {
1345 error = ret;
1346 goto fail;
1347 } else
1348 cnx += ret;
1349 }
1350
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001351 /* found states are sorted for outbound processing */
1352 if (npols > 1)
1353 xfrm_state_sort(xfrm, tpp, cnx, family);
1354
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001355 return cnx;
1356
1357 fail:
1358 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001359 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001360 return error;
1361
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/* Check that the bundle accepts the flow and its components are
1365 * still valid.
1366 */
1367
David S. Miller05d84022011-02-22 17:47:10 -08001368static inline int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001369{
1370 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1371 int tos;
1372
1373 if (!afinfo)
1374 return -EINVAL;
1375
1376 tos = afinfo->get_tos(fl);
1377
1378 xfrm_policy_put_afinfo(afinfo);
1379
1380 return tos;
1381}
1382
Timo Teräs80c802f2010-04-07 00:30:05 +00001383static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1384{
1385 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1386 struct dst_entry *dst = &xdst->u.dst;
1387
1388 if (xdst->route == NULL) {
1389 /* Dummy bundle - if it has xfrms we were not
1390 * able to build bundle as template resolution failed.
1391 * It means we need to try again resolving. */
1392 if (xdst->num_xfrms > 0)
1393 return NULL;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001394 } else if (dst->flags & DST_XFRM_QUEUE) {
1395 return NULL;
Timo Teräs80c802f2010-04-07 00:30:05 +00001396 } else {
1397 /* Real bundle */
1398 if (stale_bundle(dst))
1399 return NULL;
1400 }
1401
1402 dst_hold(dst);
1403 return flo;
1404}
1405
1406static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1407{
1408 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1409 struct dst_entry *dst = &xdst->u.dst;
1410
1411 if (!xdst->route)
1412 return 0;
1413 if (stale_bundle(dst))
1414 return 0;
1415
1416 return 1;
1417}
1418
1419static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1420{
1421 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1422 struct dst_entry *dst = &xdst->u.dst;
1423
1424 dst_free(dst);
1425}
1426
1427static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1428 .get = xfrm_bundle_flo_get,
1429 .check = xfrm_bundle_flo_check,
1430 .delete = xfrm_bundle_flo_delete,
1431};
1432
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001433static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001434{
1435 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001436 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001437 struct xfrm_dst *xdst;
1438
1439 if (!afinfo)
1440 return ERR_PTR(-EINVAL);
1441
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001442 switch (family) {
1443 case AF_INET:
1444 dst_ops = &net->xfrm.xfrm4_dst_ops;
1445 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001446#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001447 case AF_INET6:
1448 dst_ops = &net->xfrm.xfrm6_dst_ops;
1449 break;
1450#endif
1451 default:
1452 BUG();
1453 }
David S. Millerf5b0a872012-07-19 12:31:33 -07001454 xdst = dst_alloc(dst_ops, NULL, 0, DST_OBSOLETE_NONE, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08001455
Madalin Bucurd4cae562011-09-26 07:04:36 +00001456 if (likely(xdst)) {
Steffen Klassert141e3692012-07-05 23:39:34 +00001457 struct dst_entry *dst = &xdst->u.dst;
1458
1459 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001460 xdst->flo.ops = &xfrm_bundle_fc_ops;
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -07001461 if (afinfo->init_dst)
1462 afinfo->init_dst(net, xdst);
Madalin Bucurd4cae562011-09-26 07:04:36 +00001463 } else
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001464 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00001465
Madalin Bucurd4cae562011-09-26 07:04:36 +00001466 xfrm_policy_put_afinfo(afinfo);
1467
Herbert Xu25ee3282007-12-11 09:32:34 -08001468 return xdst;
1469}
1470
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001471static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1472 int nfheader_len)
1473{
1474 struct xfrm_policy_afinfo *afinfo =
1475 xfrm_policy_get_afinfo(dst->ops->family);
1476 int err;
1477
1478 if (!afinfo)
1479 return -EINVAL;
1480
1481 err = afinfo->init_path(path, dst, nfheader_len);
1482
1483 xfrm_policy_put_afinfo(afinfo);
1484
1485 return err;
1486}
1487
Herbert Xu87c1e122010-03-02 02:51:56 +00001488static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08001489 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08001490{
1491 struct xfrm_policy_afinfo *afinfo =
1492 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1493 int err;
1494
1495 if (!afinfo)
1496 return -EINVAL;
1497
Herbert Xu87c1e122010-03-02 02:51:56 +00001498 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001499
1500 xfrm_policy_put_afinfo(afinfo);
1501
1502 return err;
1503}
1504
Timo Teräs80c802f2010-04-07 00:30:05 +00001505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1507 * all the metrics... Shortly, bundle a bundle.
1508 */
1509
Herbert Xu25ee3282007-12-11 09:32:34 -08001510static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1511 struct xfrm_state **xfrm, int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08001512 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08001513 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001515 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001516 unsigned long now = jiffies;
1517 struct net_device *dev;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001518 struct xfrm_mode *inner_mode;
Herbert Xu25ee3282007-12-11 09:32:34 -08001519 struct dst_entry *dst_prev = NULL;
1520 struct dst_entry *dst0 = NULL;
1521 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001523 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001524 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001525 int trailer_len = 0;
1526 int tos;
1527 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001528 xfrm_address_t saddr, daddr;
1529
1530 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001531
1532 tos = xfrm_get_tos(fl, family);
1533 err = tos;
1534 if (tos < 0)
1535 goto put_states;
1536
1537 dst_hold(dst);
1538
1539 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001540 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001541 struct dst_entry *dst1 = &xdst->u.dst;
1542
1543 err = PTR_ERR(xdst);
1544 if (IS_ERR(xdst)) {
1545 dst_release(dst);
1546 goto put_states;
1547 }
1548
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001549 if (xfrm[i]->sel.family == AF_UNSPEC) {
1550 inner_mode = xfrm_ip2inner_mode(xfrm[i],
1551 xfrm_af2proto(family));
1552 if (!inner_mode) {
1553 err = -EAFNOSUPPORT;
1554 dst_release(dst);
1555 goto put_states;
1556 }
1557 } else
1558 inner_mode = xfrm[i]->inner_mode;
1559
Herbert Xu25ee3282007-12-11 09:32:34 -08001560 if (!dst_prev)
1561 dst0 = dst1;
1562 else {
1563 dst_prev->child = dst_clone(dst1);
1564 dst1->flags |= DST_NOHASH;
1565 }
1566
1567 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08001568 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08001569
1570 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1571 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001572 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1573 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001574 err = PTR_ERR(dst);
1575 if (IS_ERR(dst))
1576 goto put_states;
1577 } else
1578 dst_hold(dst);
1579
1580 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00001581 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08001582
David S. Millerf5b0a872012-07-19 12:31:33 -07001583 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
Herbert Xu25ee3282007-12-11 09:32:34 -08001584 dst1->flags |= DST_HOST;
1585 dst1->lastuse = now;
1586
1587 dst1->input = dst_discard;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001588 dst1->output = inner_mode->afinfo->output;
Herbert Xu25ee3282007-12-11 09:32:34 -08001589
1590 dst1->next = dst_prev;
1591 dst_prev = dst1;
1592
1593 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001594 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1595 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001596 trailer_len += xfrm[i]->props.trailer_len;
1597 }
1598
1599 dst_prev->child = dst;
1600 dst0->path = dst;
1601
1602 err = -ENODEV;
1603 dev = dst->dev;
1604 if (!dev)
1605 goto free_dst;
1606
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001607 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001608 xfrm_init_pmtu(dst_prev);
1609
1610 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1611 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1612
Herbert Xu87c1e122010-03-02 02:51:56 +00001613 err = xfrm_fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001614 if (err)
1615 goto free_dst;
1616
1617 dst_prev->header_len = header_len;
1618 dst_prev->trailer_len = trailer_len;
1619 header_len -= xdst->u.dst.xfrm->props.header_len;
1620 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1621 }
1622
1623out:
1624 return dst0;
1625
1626put_states:
1627 for (; i < nx; i++)
1628 xfrm_state_put(xfrm[i]);
1629free_dst:
1630 if (dst0)
1631 dst_free(dst0);
1632 dst0 = ERR_PTR(err);
1633 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001636static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001637xfrm_dst_alloc_copy(void **target, const void *src, int size)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001638{
1639 if (!*target) {
1640 *target = kmalloc(size, GFP_ATOMIC);
1641 if (!*target)
1642 return -ENOMEM;
1643 }
1644 memcpy(*target, src, size);
1645 return 0;
1646}
1647
1648static int inline
David S. Miller1786b382011-02-24 01:32:54 -05001649xfrm_dst_update_parent(struct dst_entry *dst, const struct xfrm_selector *sel)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001650{
1651#ifdef CONFIG_XFRM_SUB_POLICY
1652 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1653 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1654 sel, sizeof(*sel));
1655#else
1656 return 0;
1657#endif
1658}
1659
1660static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001661xfrm_dst_update_origin(struct dst_entry *dst, const struct flowi *fl)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001662{
1663#ifdef CONFIG_XFRM_SUB_POLICY
1664 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1665 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1666#else
1667 return 0;
1668#endif
1669}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
David S. Miller73ff93c2011-02-22 18:33:42 -08001671static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001672 struct xfrm_policy **pols,
1673 int *num_pols, int *num_xfrms)
1674{
1675 int i;
1676
1677 if (*num_pols == 0 || !pols[0]) {
1678 *num_pols = 0;
1679 *num_xfrms = 0;
1680 return 0;
1681 }
1682 if (IS_ERR(pols[0]))
1683 return PTR_ERR(pols[0]);
1684
1685 *num_xfrms = pols[0]->xfrm_nr;
1686
1687#ifdef CONFIG_XFRM_SUB_POLICY
1688 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1689 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1690 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1691 XFRM_POLICY_TYPE_MAIN,
1692 fl, family,
1693 XFRM_POLICY_OUT);
1694 if (pols[1]) {
1695 if (IS_ERR(pols[1])) {
1696 xfrm_pols_put(pols, *num_pols);
1697 return PTR_ERR(pols[1]);
1698 }
1699 (*num_pols) ++;
1700 (*num_xfrms) += pols[1]->xfrm_nr;
1701 }
1702 }
1703#endif
1704 for (i = 0; i < *num_pols; i++) {
1705 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1706 *num_xfrms = -1;
1707 break;
1708 }
1709 }
1710
1711 return 0;
1712
1713}
1714
1715static struct xfrm_dst *
1716xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08001717 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001718 struct dst_entry *dst_orig)
1719{
1720 struct net *net = xp_net(pols[0]);
1721 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1722 struct dst_entry *dst;
1723 struct xfrm_dst *xdst;
1724 int err;
1725
1726 /* Try to instantiate a bundle */
1727 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00001728 if (err <= 0) {
1729 if (err != 0 && err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00001730 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1731 return ERR_PTR(err);
1732 }
1733
1734 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1735 if (IS_ERR(dst)) {
1736 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1737 return ERR_CAST(dst);
1738 }
1739
1740 xdst = (struct xfrm_dst *)dst;
1741 xdst->num_xfrms = err;
1742 if (num_pols > 1)
1743 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1744 else
1745 err = xfrm_dst_update_origin(dst, fl);
1746 if (unlikely(err)) {
1747 dst_free(dst);
1748 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1749 return ERR_PTR(err);
1750 }
1751
1752 xdst->num_pols = num_pols;
1753 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1754 xdst->policy_genid = atomic_read(&pols[0]->genid);
1755
1756 return xdst;
1757}
1758
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001759static void xfrm_policy_queue_process(unsigned long arg)
1760{
1761 int err = 0;
1762 struct sk_buff *skb;
1763 struct sock *sk;
1764 struct dst_entry *dst;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001765 struct xfrm_policy *pol = (struct xfrm_policy *)arg;
1766 struct xfrm_policy_queue *pq = &pol->polq;
1767 struct flowi fl;
1768 struct sk_buff_head list;
1769
1770 spin_lock(&pq->hold_queue.lock);
1771 skb = skb_peek(&pq->hold_queue);
1772 dst = skb_dst(skb);
1773 sk = skb->sk;
1774 xfrm_decode_session(skb, &fl, dst->ops->family);
1775 spin_unlock(&pq->hold_queue.lock);
1776
1777 dst_hold(dst->path);
1778 dst = xfrm_lookup(xp_net(pol), dst->path, &fl,
1779 sk, 0);
1780 if (IS_ERR(dst))
1781 goto purge_queue;
1782
1783 if (dst->flags & DST_XFRM_QUEUE) {
1784 dst_release(dst);
1785
1786 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
1787 goto purge_queue;
1788
1789 pq->timeout = pq->timeout << 1;
1790 mod_timer(&pq->hold_timer, jiffies + pq->timeout);
1791 return;
1792 }
1793
1794 dst_release(dst);
1795
1796 __skb_queue_head_init(&list);
1797
1798 spin_lock(&pq->hold_queue.lock);
1799 pq->timeout = 0;
1800 skb_queue_splice_init(&pq->hold_queue, &list);
1801 spin_unlock(&pq->hold_queue.lock);
1802
1803 while (!skb_queue_empty(&list)) {
1804 skb = __skb_dequeue(&list);
1805
1806 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
1807 dst_hold(skb_dst(skb)->path);
1808 dst = xfrm_lookup(xp_net(pol), skb_dst(skb)->path,
1809 &fl, skb->sk, 0);
1810 if (IS_ERR(dst)) {
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001811 kfree_skb(skb);
1812 continue;
1813 }
1814
1815 nf_reset(skb);
1816 skb_dst_drop(skb);
1817 skb_dst_set(skb, dst);
1818
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001819 err = dst_output(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001820 }
1821
1822 return;
1823
1824purge_queue:
1825 pq->timeout = 0;
1826 xfrm_queue_purge(&pq->hold_queue);
1827}
1828
1829static int xdst_queue_output(struct sk_buff *skb)
1830{
1831 unsigned long sched_next;
1832 struct dst_entry *dst = skb_dst(skb);
1833 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
1834 struct xfrm_policy_queue *pq = &xdst->pols[0]->polq;
1835
1836 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
1837 kfree_skb(skb);
1838 return -EAGAIN;
1839 }
1840
1841 skb_dst_force(skb);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001842
1843 spin_lock_bh(&pq->hold_queue.lock);
1844
1845 if (!pq->timeout)
1846 pq->timeout = XFRM_QUEUE_TMO_MIN;
1847
1848 sched_next = jiffies + pq->timeout;
1849
1850 if (del_timer(&pq->hold_timer)) {
1851 if (time_before(pq->hold_timer.expires, sched_next))
1852 sched_next = pq->hold_timer.expires;
1853 }
1854
1855 __skb_queue_tail(&pq->hold_queue, skb);
1856 mod_timer(&pq->hold_timer, sched_next);
1857
1858 spin_unlock_bh(&pq->hold_queue.lock);
1859
1860 return 0;
1861}
1862
1863static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
1864 struct dst_entry *dst,
1865 const struct flowi *fl,
1866 int num_xfrms,
1867 u16 family)
1868{
1869 int err;
1870 struct net_device *dev;
1871 struct dst_entry *dst1;
1872 struct xfrm_dst *xdst;
1873
1874 xdst = xfrm_alloc_dst(net, family);
1875 if (IS_ERR(xdst))
1876 return xdst;
1877
1878 if (net->xfrm.sysctl_larval_drop || num_xfrms <= 0 ||
1879 (fl->flowi_flags & FLOWI_FLAG_CAN_SLEEP))
1880 return xdst;
1881
1882 dst1 = &xdst->u.dst;
1883 dst_hold(dst);
1884 xdst->route = dst;
1885
1886 dst_copy_metrics(dst1, dst);
1887
1888 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
1889 dst1->flags |= DST_HOST | DST_XFRM_QUEUE;
1890 dst1->lastuse = jiffies;
1891
1892 dst1->input = dst_discard;
1893 dst1->output = xdst_queue_output;
1894
1895 dst_hold(dst);
1896 dst1->child = dst;
1897 dst1->path = dst;
1898
1899 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
1900
1901 err = -ENODEV;
1902 dev = dst->dev;
1903 if (!dev)
1904 goto free_dst;
1905
1906 err = xfrm_fill_dst(xdst, dev, fl);
1907 if (err)
1908 goto free_dst;
1909
1910out:
1911 return xdst;
1912
1913free_dst:
1914 dst_release(dst1);
1915 xdst = ERR_PTR(err);
1916 goto out;
1917}
1918
Timo Teräs80c802f2010-04-07 00:30:05 +00001919static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001920xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
Timo Teräs80c802f2010-04-07 00:30:05 +00001921 struct flow_cache_object *oldflo, void *ctx)
1922{
1923 struct dst_entry *dst_orig = (struct dst_entry *)ctx;
1924 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1925 struct xfrm_dst *xdst, *new_xdst;
1926 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
1927
1928 /* Check if the policies from old bundle are usable */
1929 xdst = NULL;
1930 if (oldflo) {
1931 xdst = container_of(oldflo, struct xfrm_dst, flo);
1932 num_pols = xdst->num_pols;
1933 num_xfrms = xdst->num_xfrms;
1934 pol_dead = 0;
1935 for (i = 0; i < num_pols; i++) {
1936 pols[i] = xdst->pols[i];
1937 pol_dead |= pols[i]->walk.dead;
1938 }
1939 if (pol_dead) {
1940 dst_free(&xdst->u.dst);
1941 xdst = NULL;
1942 num_pols = 0;
1943 num_xfrms = 0;
1944 oldflo = NULL;
1945 }
1946 }
1947
1948 /* Resolve policies to use if we couldn't get them from
1949 * previous cache entry */
1950 if (xdst == NULL) {
1951 num_pols = 1;
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001952 pols[0] = __xfrm_policy_lookup(net, fl, family,
1953 flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00001954 err = xfrm_expand_policies(fl, family, pols,
1955 &num_pols, &num_xfrms);
1956 if (err < 0)
1957 goto inc_error;
1958 if (num_pols == 0)
1959 return NULL;
1960 if (num_xfrms <= 0)
1961 goto make_dummy_bundle;
1962 }
1963
1964 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family, dst_orig);
1965 if (IS_ERR(new_xdst)) {
1966 err = PTR_ERR(new_xdst);
1967 if (err != -EAGAIN)
1968 goto error;
1969 if (oldflo == NULL)
1970 goto make_dummy_bundle;
1971 dst_hold(&xdst->u.dst);
1972 return oldflo;
Timo Teräsd809ec82010-07-12 21:29:42 +00001973 } else if (new_xdst == NULL) {
1974 num_xfrms = 0;
1975 if (oldflo == NULL)
1976 goto make_dummy_bundle;
1977 xdst->num_xfrms = 0;
1978 dst_hold(&xdst->u.dst);
1979 return oldflo;
Timo Teräs80c802f2010-04-07 00:30:05 +00001980 }
1981
1982 /* Kill the previous bundle */
1983 if (xdst) {
1984 /* The policies were stolen for newly generated bundle */
1985 xdst->num_pols = 0;
1986 dst_free(&xdst->u.dst);
1987 }
1988
1989 /* Flow cache does not have reference, it dst_free()'s,
1990 * but we do need to return one reference for original caller */
1991 dst_hold(&new_xdst->u.dst);
1992 return &new_xdst->flo;
1993
1994make_dummy_bundle:
1995 /* We found policies, but there's no bundles to instantiate:
1996 * either because the policy blocks, has no transformations or
1997 * we could not build template (no xfrm_states).*/
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001998 xdst = xfrm_create_dummy_bundle(net, dst_orig, fl, num_xfrms, family);
Timo Teräs80c802f2010-04-07 00:30:05 +00001999 if (IS_ERR(xdst)) {
2000 xfrm_pols_put(pols, num_pols);
2001 return ERR_CAST(xdst);
2002 }
2003 xdst->num_pols = num_pols;
2004 xdst->num_xfrms = num_xfrms;
2005 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
2006
2007 dst_hold(&xdst->u.dst);
2008 return &xdst->flo;
2009
2010inc_error:
2011 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2012error:
2013 if (xdst != NULL)
2014 dst_free(&xdst->u.dst);
2015 else
2016 xfrm_pols_put(pols, num_pols);
2017 return ERR_PTR(err);
2018}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
David S. Miller2774c132011-03-01 14:59:04 -08002020static struct dst_entry *make_blackhole(struct net *net, u16 family,
2021 struct dst_entry *dst_orig)
2022{
2023 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2024 struct dst_entry *ret;
2025
2026 if (!afinfo) {
2027 dst_release(dst_orig);
Li RongQing433a1952012-09-17 22:40:10 +00002028 return ERR_PTR(-EINVAL);
David S. Miller2774c132011-03-01 14:59:04 -08002029 } else {
2030 ret = afinfo->blackhole_route(net, dst_orig);
2031 }
2032 xfrm_policy_put_afinfo(afinfo);
2033
2034 return ret;
2035}
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037/* Main function: finds/creates a bundle for given flow.
2038 *
2039 * At the moment we eat a raw IP route. Mostly to speed up lookups
2040 * on interfaces with disabled IPsec.
2041 */
David S. Miller452edd52011-03-02 13:27:41 -08002042struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
2043 const struct flowi *fl,
2044 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002046 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00002047 struct flow_cache_object *flo;
2048 struct xfrm_dst *xdst;
David S. Miller452edd52011-03-02 13:27:41 -08002049 struct dst_entry *dst, *route;
Timo Teräs80c802f2010-04-07 00:30:05 +00002050 u16 family = dst_orig->ops->family;
Trent Jaegerdf718372005-12-13 23:12:27 -08002051 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Changli Gao4b021622010-04-27 21:20:22 +00002052 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054restart:
Timo Teräs80c802f2010-04-07 00:30:05 +00002055 dst = NULL;
2056 xdst = NULL;
2057 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002058
Thomas Graff7944fb2007-08-25 13:46:55 -07002059 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002060 num_pols = 1;
2061 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
2062 err = xfrm_expand_policies(fl, family, pols,
2063 &num_pols, &num_xfrms);
2064 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08002065 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002066
2067 if (num_pols) {
2068 if (num_xfrms <= 0) {
2069 drop_pols = num_pols;
2070 goto no_transform;
2071 }
2072
2073 xdst = xfrm_resolve_and_create_bundle(
2074 pols, num_pols, fl,
2075 family, dst_orig);
2076 if (IS_ERR(xdst)) {
2077 xfrm_pols_put(pols, num_pols);
2078 err = PTR_ERR(xdst);
2079 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00002080 } else if (xdst == NULL) {
2081 num_xfrms = 0;
2082 drop_pols = num_pols;
2083 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00002084 }
2085
Steffen Klassertfbd50602011-03-15 21:12:49 +00002086 dst_hold(&xdst->u.dst);
2087
Timo Teräs80c802f2010-04-07 00:30:05 +00002088 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2089 xdst->u.dst.next = xfrm_policy_sk_bundles;
2090 xfrm_policy_sk_bundles = &xdst->u.dst;
2091 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2092
2093 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002094 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Timo Teräs80c802f2010-04-07 00:30:05 +00002097 if (xdst == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07002099 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08002100 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08002101 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Timo Teräs80c802f2010-04-07 00:30:05 +00002103 flo = flow_cache_lookup(net, fl, family, dir,
2104 xfrm_bundle_lookup, dst_orig);
2105 if (flo == NULL)
2106 goto nopol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002107 if (IS_ERR(flo)) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002108 err = PTR_ERR(flo);
Herbert Xu75b8c132007-12-11 04:38:08 -08002109 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08002110 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002111 xdst = container_of(flo, struct xfrm_dst, flo);
2112
2113 num_pols = xdst->num_pols;
2114 num_xfrms = xdst->num_xfrms;
2115 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy*) * num_pols);
2116 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118
Timo Teräs80c802f2010-04-07 00:30:05 +00002119 dst = &xdst->u.dst;
2120 if (route == NULL && num_xfrms > 0) {
2121 /* The only case when xfrm_bundle_lookup() returns a
2122 * bundle with null route, is when the template could
2123 * not be resolved. It means policies are there, but
2124 * bundle could not be created, since we don't yet
2125 * have the xfrm_state's. We need to wait for KM to
2126 * negotiate new SA's or bail out with error.*/
2127 if (net->xfrm.sysctl_larval_drop) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002128 dst_release(dst);
Timo Terasa1aa3482010-05-15 23:49:26 -07002129 xfrm_pols_put(pols, drop_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002130 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller2774c132011-03-01 14:59:04 -08002131
David S. Miller452edd52011-03-02 13:27:41 -08002132 return make_blackhole(net, family, dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002133 }
David S. Miller1d28f422011-03-12 00:29:39 -05002134 if (fl->flowi_flags & FLOWI_FLAG_CAN_SLEEP) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002135 DECLARE_WAITQUEUE(wait, current);
2136
2137 add_wait_queue(&net->xfrm.km_waitq, &wait);
2138 set_current_state(TASK_INTERRUPTIBLE);
2139 schedule();
2140 set_current_state(TASK_RUNNING);
2141 remove_wait_queue(&net->xfrm.km_waitq, &wait);
2142
2143 if (!signal_pending(current)) {
2144 dst_release(dst);
2145 goto restart;
2146 }
2147
2148 err = -ERESTART;
2149 } else
2150 err = -EAGAIN;
2151
2152 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
2153 goto error;
2154 }
2155
2156no_transform:
2157 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08002158 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Timo Teräs80c802f2010-04-07 00:30:05 +00002160 if ((flags & XFRM_LOOKUP_ICMP) &&
2161 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
2162 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08002163 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002164 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08002165
Timo Teräs80c802f2010-04-07 00:30:05 +00002166 for (i = 0; i < num_pols; i++)
2167 pols[i]->curlft.use_time = get_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08002168
Timo Teräs80c802f2010-04-07 00:30:05 +00002169 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002171 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07002172 err = -EPERM;
2173 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002174 } else if (num_xfrms > 0) {
2175 /* Flow transformed */
Timo Teräs80c802f2010-04-07 00:30:05 +00002176 dst_release(dst_orig);
2177 } else {
2178 /* Flow passes untransformed */
2179 dst_release(dst);
David S. Miller452edd52011-03-02 13:27:41 -08002180 dst = dst_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002182ok:
2183 xfrm_pols_put(pols, drop_pols);
Gao feng0c183372012-05-26 01:30:53 +00002184 if (dst && dst->xfrm &&
2185 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
2186 dst->flags |= DST_XFRM_TUNNEL;
David S. Miller452edd52011-03-02 13:27:41 -08002187 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Timo Teräs80c802f2010-04-07 00:30:05 +00002189nopol:
David S. Miller452edd52011-03-02 13:27:41 -08002190 if (!(flags & XFRM_LOOKUP_ICMP)) {
2191 dst = dst_orig;
Timo Teräs80c802f2010-04-07 00:30:05 +00002192 goto ok;
David S. Miller452edd52011-03-02 13:27:41 -08002193 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002194 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195error:
Timo Teräs80c802f2010-04-07 00:30:05 +00002196 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08002197dropdst:
2198 dst_release(dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002199 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08002200 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202EXPORT_SYMBOL(xfrm_lookup);
2203
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002204static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08002205xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002206{
2207 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002208
2209 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
2210 return 0;
2211 x = skb->sp->xvec[idx];
2212 if (!x->type->reject)
2213 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07002214 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002215}
2216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217/* When skb is transformed back to its "native" form, we have to
2218 * check policy restrictions. At the moment we make this in maximally
2219 * stupid way. Shame on me. :-) Of course, connected sockets must
2220 * have policy cached at them.
2221 */
2222
2223static inline int
David S. Miller7db454b2011-02-24 01:43:01 -05002224xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 unsigned short family)
2226{
2227 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08002228 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return x->id.proto == tmpl->id.proto &&
2230 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
2231 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
2232 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07002233 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07002234 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002235 !(x->props.mode != XFRM_MODE_TRANSPORT &&
2236 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002239/*
2240 * 0 or more than 0 is returned when validation is succeeded (either bypass
2241 * because of optional transport mode, or next index of the mathced secpath
2242 * state with the template.
2243 * -1 is returned when no matching template is found.
2244 * Otherwise "-2 - errored_index" is returned.
2245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246static inline int
David S. Miller22cccb72011-02-24 01:43:33 -05002247xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 unsigned short family)
2249{
2250 int idx = start;
2251
2252 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002253 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return start;
2255 } else
2256 start = -1;
2257 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002258 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002260 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
2261 if (start == -1)
2262 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 }
2266 return start;
2267}
2268
Herbert Xud5422ef2007-12-12 10:44:16 -08002269int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
2270 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002273 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 if (unlikely(afinfo == NULL))
2276 return -EAFNOSUPPORT;
2277
Herbert Xud5422ef2007-12-12 10:44:16 -08002278 afinfo->decode_session(skb, fl, reverse);
David S. Miller1d28f422011-03-12 00:29:39 -05002279 err = security_xfrm_decode_session(skb, &fl->flowi_secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002281 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282}
Herbert Xud5422ef2007-12-12 10:44:16 -08002283EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
David S. Miller9a7386e2011-02-24 01:44:12 -05002285static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286{
2287 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002288 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002289 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293
2294 return 0;
2295}
2296
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002297int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 unsigned short family)
2299{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002300 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002302 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2303 int npols = 0;
2304 int xfrm_nr;
2305 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08002306 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08002308 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002309 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Herbert Xud5422ef2007-12-12 10:44:16 -08002311 reverse = dir & ~XFRM_POLICY_MASK;
2312 dir &= XFRM_POLICY_MASK;
2313 fl_dir = policy_to_flow_dir(dir);
2314
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002315 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002316 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002318 }
2319
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08002320 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 /* First, check used SA against their selectors. */
2323 if (skb->sp) {
2324 int i;
2325
2326 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002327 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002328 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002329 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333 }
2334
2335 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002336 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002337 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002338 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002339 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002340 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002341 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002344 if (!pol) {
2345 struct flow_cache_object *flo;
2346
2347 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2348 xfrm_policy_lookup, NULL);
2349 if (IS_ERR_OR_NULL(flo))
2350 pol = ERR_CAST(flo);
2351 else
2352 pol = container_of(flo, struct xfrm_policy, flo);
2353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002355 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002356 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002357 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002358 }
James Morris134b0fc2006-10-05 15:42:27 -05002359
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002360 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002361 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002362 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002363 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002364 return 0;
2365 }
2366 return 1;
2367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
James Morris9d729f72007-03-04 16:12:44 -08002369 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002371 pols[0] = pol;
2372 npols ++;
2373#ifdef CONFIG_XFRM_SUB_POLICY
2374 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002375 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002376 &fl, family,
2377 XFRM_POLICY_IN);
2378 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002379 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002380 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002381 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002382 }
James Morris9d729f72007-03-04 16:12:44 -08002383 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002384 npols ++;
2385 }
2386 }
2387#endif
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (pol->action == XFRM_POLICY_ALLOW) {
2390 struct sec_path *sp;
2391 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002392 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002393 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002394 struct xfrm_tmpl **tpp = tp;
2395 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 int i, k;
2397
2398 if ((sp = skb->sp) == NULL)
2399 sp = &dummy;
2400
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002401 for (pi = 0; pi < npols; pi++) {
2402 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002403 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002404 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002405 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002406 }
2407 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002408 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002409 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002410 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002411 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2412 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2413 }
2414 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002415 if (npols > 1) {
2416 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2417 tpp = stp;
2418 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 /* For each tunnel xfrm, find the first matching tmpl.
2421 * For each tmpl before that, find corresponding xfrm.
2422 * Order is _important_. Later we will implement
2423 * some barriers, but at the moment barriers
2424 * are implied between each two transformations.
2425 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002426 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2427 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002428 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002429 if (k < -1)
2430 /* "-2 - errored_index" returned */
2431 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002432 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
2436
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002437 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002438 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002442 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return 1;
2444 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002445 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
2447reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002448 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002449reject_error:
2450 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return 0;
2452}
2453EXPORT_SYMBOL(__xfrm_policy_check);
2454
2455int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2456{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002457 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002459 struct dst_entry *dst;
Eric Dumazet73137142011-03-15 15:26:43 -07002460 int res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002462 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002463 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Eric Dumazetfafeeb62010-06-01 10:04:49 +00002467 skb_dst_force(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +00002468
David S. Miller452edd52011-03-02 13:27:41 -08002469 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, 0);
2470 if (IS_ERR(dst)) {
Eric Dumazet73137142011-03-15 15:26:43 -07002471 res = 0;
David S. Miller452edd52011-03-02 13:27:41 -08002472 dst = NULL;
2473 }
Eric Dumazetadf30902009-06-02 05:19:30 +00002474 skb_dst_set(skb, dst);
2475 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477EXPORT_SYMBOL(__xfrm_route_forward);
2478
David S. Millerd49c73c2006-08-13 18:55:53 -07002479/* Optimize later using cookies and generation ids. */
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2482{
David S. Millerd49c73c2006-08-13 18:55:53 -07002483 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
David S. Millerf5b0a872012-07-19 12:31:33 -07002484 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
2485 * get validated by dst_ops->check on every use. We do this
2486 * because when a normal route referenced by an XFRM dst is
2487 * obsoleted we do not go looking around for all parent
2488 * referencing XFRM dsts so that we can invalidate them. It
2489 * is just too much work. Instead we make the checks here on
2490 * every use. For example:
David S. Millerd49c73c2006-08-13 18:55:53 -07002491 *
2492 * XFRM dst A --> IPv4 dst X
2493 *
2494 * X is the "xdst->route" of A (X is also the "dst->path" of A
2495 * in this example). If X is marked obsolete, "A" will not
2496 * notice. That's what we are validating here via the
2497 * stale_bundle() check.
2498 *
2499 * When a policy's bundle is pruned, we dst_free() the XFRM
David S. Millerf5b0a872012-07-19 12:31:33 -07002500 * dst which causes it's ->obsolete field to be set to
2501 * DST_OBSOLETE_DEAD. If an XFRM dst has been pruned like
2502 * this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002503 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002504 if (dst->obsolete < 0 && !stale_bundle(dst))
2505 return dst;
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return NULL;
2508}
2509
2510static int stale_bundle(struct dst_entry *dst)
2511{
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002512 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513}
2514
Herbert Xuaabc9762005-05-03 16:27:10 -07002515void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002518 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002519 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 dev_put(dev);
2521 }
2522}
Herbert Xuaabc9762005-05-03 16:27:10 -07002523EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525static void xfrm_link_failure(struct sk_buff *skb)
2526{
2527 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
2530static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2531{
2532 if (dst) {
2533 if (dst->obsolete) {
2534 dst_release(dst);
2535 dst = NULL;
2536 }
2537 }
2538 return dst;
2539}
2540
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002541static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
Timo Teräs80c802f2010-04-07 00:30:05 +00002543 struct dst_entry *head, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Timo Teräs80c802f2010-04-07 00:30:05 +00002545 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2546 head = xfrm_policy_sk_bundles;
2547 xfrm_policy_sk_bundles = NULL;
2548 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2549
2550 while (head) {
2551 next = head->next;
2552 dst_free(head);
2553 head = next;
2554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555}
2556
Paul Mooree4c17212013-05-29 07:36:25 +00002557void xfrm_garbage_collect(struct net *net)
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002558{
2559 flow_cache_flush();
2560 __xfrm_garbage_collect(net);
2561}
Paul Mooree4c17212013-05-29 07:36:25 +00002562EXPORT_SYMBOL(xfrm_garbage_collect);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002563
2564static void xfrm_garbage_collect_deferred(struct net *net)
2565{
2566 flow_cache_flush_deferred();
2567 __xfrm_garbage_collect(net);
2568}
2569
Herbert Xu25ee3282007-12-11 09:32:34 -08002570static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571{
2572 do {
2573 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2574 u32 pmtu, route_mtu_cached;
2575
2576 pmtu = dst_mtu(dst->child);
2577 xdst->child_mtu_cached = pmtu;
2578
2579 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2580
2581 route_mtu_cached = dst_mtu(xdst->route);
2582 xdst->route_mtu_cached = route_mtu_cached;
2583
2584 if (pmtu > route_mtu_cached)
2585 pmtu = route_mtu_cached;
2586
David S. Millerdefb3512010-12-08 21:16:57 -08002587 dst_metric_set(dst, RTAX_MTU, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 } while ((dst = dst->next));
2589}
2590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591/* Check that the bundle accepts the flow and its components are
2592 * still valid.
2593 */
2594
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002595static int xfrm_bundle_ok(struct xfrm_dst *first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
2597 struct dst_entry *dst = &first->u.dst;
2598 struct xfrm_dst *last;
2599 u32 mtu;
2600
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002601 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 (dst->dev && !netif_running(dst->dev)))
2603 return 0;
2604
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002605 if (dst->flags & DST_XFRM_QUEUE)
2606 return 1;
2607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 last = NULL;
2609
2610 do {
2611 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2614 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00002615 if (xdst->xfrm_genid != dst->xfrm->genid)
2616 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07002617 if (xdst->num_pols > 0 &&
2618 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07002619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621 mtu = dst_mtu(dst->child);
2622 if (xdst->child_mtu_cached != mtu) {
2623 last = xdst;
2624 xdst->child_mtu_cached = mtu;
2625 }
2626
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002627 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 return 0;
2629 mtu = dst_mtu(xdst->route);
2630 if (xdst->route_mtu_cached != mtu) {
2631 last = xdst;
2632 xdst->route_mtu_cached = mtu;
2633 }
2634
2635 dst = dst->child;
2636 } while (dst->xfrm);
2637
2638 if (likely(!last))
2639 return 1;
2640
2641 mtu = last->child_mtu_cached;
2642 for (;;) {
2643 dst = &last->u.dst;
2644
2645 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2646 if (mtu > last->route_mtu_cached)
2647 mtu = last->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08002648 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650 if (last == first)
2651 break;
2652
Patrick McHardybd0bf072007-07-18 01:55:52 -07002653 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 last->child_mtu_cached = mtu;
2655 }
2656
2657 return 1;
2658}
2659
David S. Miller0dbaee32010-12-13 12:52:14 -08002660static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2661{
2662 return dst_metric_advmss(dst->path);
2663}
2664
Steffen Klassertebb762f2011-11-23 02:12:51 +00002665static unsigned int xfrm_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002666{
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002667 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
2668
2669 return mtu ? : dst_mtu(dst->path);
David S. Millerd33e4552010-12-14 13:01:14 -08002670}
2671
David S. Millerf894cbf2012-07-02 21:52:24 -07002672static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
2673 struct sk_buff *skb,
2674 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -07002675{
David S. Millerf894cbf2012-07-02 21:52:24 -07002676 return dst->path->ops->neigh_lookup(dst, skb, daddr);
David S. Millerd3aaeb32011-07-18 00:40:17 -07002677}
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2680{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002681 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 int err = 0;
2683 if (unlikely(afinfo == NULL))
2684 return -EINVAL;
2685 if (unlikely(afinfo->family >= NPROTO))
2686 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002687 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2689 err = -ENOBUFS;
2690 else {
2691 struct dst_ops *dst_ops = afinfo->dst_ops;
2692 if (likely(dst_ops->kmem_cachep == NULL))
2693 dst_ops->kmem_cachep = xfrm_dst_cache;
2694 if (likely(dst_ops->check == NULL))
2695 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08002696 if (likely(dst_ops->default_advmss == NULL))
2697 dst_ops->default_advmss = xfrm_default_advmss;
Steffen Klassertebb762f2011-11-23 02:12:51 +00002698 if (likely(dst_ops->mtu == NULL))
2699 dst_ops->mtu = xfrm_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 if (likely(dst_ops->negative_advice == NULL))
2701 dst_ops->negative_advice = xfrm_negative_advice;
2702 if (likely(dst_ops->link_failure == NULL))
2703 dst_ops->link_failure = xfrm_link_failure;
David S. Millerd3aaeb32011-07-18 00:40:17 -07002704 if (likely(dst_ops->neigh_lookup == NULL))
2705 dst_ops->neigh_lookup = xfrm_neigh_lookup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 if (likely(afinfo->garbage_collect == NULL))
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002707 afinfo->garbage_collect = xfrm_garbage_collect_deferred;
Priyanka Jain418a99a2012-08-12 21:22:29 +00002708 rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002710 spin_unlock(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002711
2712 rtnl_lock();
2713 for_each_net(net) {
2714 struct dst_ops *xfrm_dst_ops;
2715
2716 switch (afinfo->family) {
2717 case AF_INET:
2718 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2719 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002720#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002721 case AF_INET6:
2722 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2723 break;
2724#endif
2725 default:
2726 BUG();
2727 }
2728 *xfrm_dst_ops = *afinfo->dst_ops;
2729 }
2730 rtnl_unlock();
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 return err;
2733}
2734EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2735
2736int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2737{
2738 int err = 0;
2739 if (unlikely(afinfo == NULL))
2740 return -EINVAL;
2741 if (unlikely(afinfo->family >= NPROTO))
2742 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002743 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2745 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2746 err = -EINVAL;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002747 else
2748 RCU_INIT_POINTER(xfrm_policy_afinfo[afinfo->family],
2749 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002751 spin_unlock(&xfrm_policy_afinfo_lock);
2752 if (!err) {
2753 struct dst_ops *dst_ops = afinfo->dst_ops;
2754
2755 synchronize_rcu();
2756
2757 dst_ops->kmem_cachep = NULL;
2758 dst_ops->check = NULL;
2759 dst_ops->negative_advice = NULL;
2760 dst_ops->link_failure = NULL;
2761 afinfo->garbage_collect = NULL;
2762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 return err;
2764}
2765EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2766
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002767static void __net_init xfrm_dst_ops_init(struct net *net)
2768{
2769 struct xfrm_policy_afinfo *afinfo;
2770
Eric Dumazetef8531b2012-08-19 12:31:48 +02002771 rcu_read_lock();
2772 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002773 if (afinfo)
2774 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002775#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazetef8531b2012-08-19 12:31:48 +02002776 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET6]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002777 if (afinfo)
2778 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2779#endif
Priyanka Jain418a99a2012-08-12 21:22:29 +00002780 rcu_read_unlock();
Herbert Xu546be242006-05-27 23:03:58 -07002781}
2782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2784{
Jiri Pirko351638e2013-05-28 01:30:21 +00002785 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 switch (event) {
2788 case NETDEV_DOWN:
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002789 xfrm_garbage_collect(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
2791 return NOTIFY_DONE;
2792}
2793
2794static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002795 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796};
2797
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002798#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002799static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002800{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002801 int rv;
2802
Tejun Heo7d720c32010-02-16 15:20:26 +00002803 if (snmp_mib_init((void __percpu **)net->mib.xfrm_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00002804 sizeof(struct linux_xfrm_mib),
2805 __alignof__(struct linux_xfrm_mib)) < 0)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002806 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002807 rv = xfrm_proc_init(net);
2808 if (rv < 0)
Tejun Heo7d720c32010-02-16 15:20:26 +00002809 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002810 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002811}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002812
2813static void xfrm_statistics_fini(struct net *net)
2814{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002815 xfrm_proc_fini(net);
Tejun Heo7d720c32010-02-16 15:20:26 +00002816 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002817}
2818#else
2819static int __net_init xfrm_statistics_init(struct net *net)
2820{
2821 return 0;
2822}
2823
2824static void xfrm_statistics_fini(struct net *net)
2825{
2826}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002827#endif
2828
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002829static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
David S. Miller2518c7c2006-08-24 04:45:07 -07002831 unsigned int hmask, sz;
2832 int dir;
2833
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002834 if (net_eq(net, &init_net))
2835 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002837 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002838 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
David S. Miller2518c7c2006-08-24 04:45:07 -07002840 hmask = 8 - 1;
2841 sz = (hmask+1) * sizeof(struct hlist_head);
2842
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002843 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2844 if (!net->xfrm.policy_byidx)
2845 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002846 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002847
2848 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2849 struct xfrm_policy_hash *htab;
2850
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002851 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002852 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002853
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002854 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002855 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002856 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002857 goto out_bydst;
2858 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002859 }
2860
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002861 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002862 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002863 if (net_eq(net, &init_net))
2864 register_netdevice_notifier(&xfrm_dev_notifier);
2865 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002866
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002867out_bydst:
2868 for (dir--; dir >= 0; dir--) {
2869 struct xfrm_policy_hash *htab;
2870
2871 htab = &net->xfrm.policy_bydst[dir];
2872 xfrm_hash_free(htab->table, sz);
2873 }
2874 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002875out_byidx:
2876 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002879static void xfrm_policy_fini(struct net *net)
2880{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002881 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002882 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002883 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002884
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002885 flush_work(&net->xfrm.policy_hash_work);
2886#ifdef CONFIG_XFRM_SUB_POLICY
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002887 audit_info.loginuid = INVALID_UID;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002888 audit_info.sessionid = -1;
2889 audit_info.secid = 0;
2890 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2891#endif
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002892 audit_info.loginuid = INVALID_UID;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002893 audit_info.sessionid = -1;
2894 audit_info.secid = 0;
2895 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002896
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002897 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002898
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002899 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002900 struct xfrm_policy_hash *htab;
2901
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002902 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002903
2904 htab = &net->xfrm.policy_bydst[dir];
Michal Kubecek5b653b22013-01-18 16:03:48 +01002905 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002906 WARN_ON(!hlist_empty(htab->table));
2907 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002908 }
2909
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002910 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002911 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2912 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002913}
2914
2915static int __net_init xfrm_net_init(struct net *net)
2916{
2917 int rv;
2918
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002919 rv = xfrm_statistics_init(net);
2920 if (rv < 0)
2921 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002922 rv = xfrm_state_init(net);
2923 if (rv < 0)
2924 goto out_state;
2925 rv = xfrm_policy_init(net);
2926 if (rv < 0)
2927 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002928 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002929 rv = xfrm_sysctl_init(net);
2930 if (rv < 0)
2931 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002932 return 0;
2933
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002934out_sysctl:
2935 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002936out_policy:
2937 xfrm_state_fini(net);
2938out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002939 xfrm_statistics_fini(net);
2940out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002941 return rv;
2942}
2943
2944static void __net_exit xfrm_net_exit(struct net *net)
2945{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002946 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002947 xfrm_policy_fini(net);
2948 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002949 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002950}
2951
2952static struct pernet_operations __net_initdata xfrm_net_ops = {
2953 .init = xfrm_net_init,
2954 .exit = xfrm_net_exit,
2955};
2956
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957void __init xfrm_init(void)
2958{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002959 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 xfrm_input_init();
2961}
2962
Joy Lattenab5f5e82007-09-17 11:51:22 -07002963#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002964static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2965 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002966{
Paul Moore875179f2007-12-01 23:27:18 +11002967 struct xfrm_sec_ctx *ctx = xp->security;
2968 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002969
Paul Moore875179f2007-12-01 23:27:18 +11002970 if (ctx)
2971 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2972 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2973
2974 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002975 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002976 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002977 if (sel->prefixlen_s != 32)
2978 audit_log_format(audit_buf, " src_prefixlen=%d",
2979 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002980 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002981 if (sel->prefixlen_d != 32)
2982 audit_log_format(audit_buf, " dst_prefixlen=%d",
2983 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002984 break;
2985 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002986 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002987 if (sel->prefixlen_s != 128)
2988 audit_log_format(audit_buf, " src_prefixlen=%d",
2989 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002990 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002991 if (sel->prefixlen_d != 128)
2992 audit_log_format(audit_buf, " dst_prefixlen=%d",
2993 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002994 break;
2995 }
2996}
2997
Paul Moore68277ac2007-12-20 20:49:33 -08002998void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002999 kuid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003000{
3001 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003002
Paul Mooreafeb14b2007-12-21 14:58:11 -08003003 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003004 if (audit_buf == NULL)
3005 return;
Eric Paris25323862008-04-18 10:09:25 -04003006 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003007 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003008 xfrm_audit_common_policyinfo(xp, audit_buf);
3009 audit_log_end(audit_buf);
3010}
3011EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
3012
Paul Moore68277ac2007-12-20 20:49:33 -08003013void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07003014 kuid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003015{
3016 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003017
Paul Mooreafeb14b2007-12-21 14:58:11 -08003018 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003019 if (audit_buf == NULL)
3020 return;
Eric Paris25323862008-04-18 10:09:25 -04003021 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003022 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003023 xfrm_audit_common_policyinfo(xp, audit_buf);
3024 audit_log_end(audit_buf);
3025}
3026EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
3027#endif
3028
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003029#ifdef CONFIG_XFRM_MIGRATE
David S. Millerbc9b35a2012-05-15 15:04:57 -04003030static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
3031 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003032{
3033 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
3034 if (sel_tgt->family == sel_cmp->family &&
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003035 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
3036 sel_cmp->family) &&
3037 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
3038 sel_cmp->family) &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003039 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
3040 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003041 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003042 }
3043 } else {
3044 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003045 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003046 }
3047 }
David S. Millerbc9b35a2012-05-15 15:04:57 -04003048 return false;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003049}
3050
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003051static struct xfrm_policy * xfrm_migrate_policy_find(const struct xfrm_selector *sel,
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003052 u8 dir, u8 type)
3053{
3054 struct xfrm_policy *pol, *ret = NULL;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003055 struct hlist_head *chain;
3056 u32 priority = ~0U;
3057
3058 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08003059 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003060 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003061 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3062 pol->type == type) {
3063 ret = pol;
3064 priority = ret->priority;
3065 break;
3066 }
3067 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08003068 chain = &init_net.xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003069 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003070 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3071 pol->type == type &&
3072 pol->priority < priority) {
3073 ret = pol;
3074 break;
3075 }
3076 }
3077
3078 if (ret)
3079 xfrm_pol_hold(ret);
3080
3081 read_unlock_bh(&xfrm_policy_lock);
3082
3083 return ret;
3084}
3085
David S. Millerdd701752011-02-24 00:21:08 -05003086static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003087{
3088 int match = 0;
3089
3090 if (t->mode == m->mode && t->id.proto == m->proto &&
3091 (m->reqid == 0 || t->reqid == m->reqid)) {
3092 switch (t->mode) {
3093 case XFRM_MODE_TUNNEL:
3094 case XFRM_MODE_BEET:
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003095 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
3096 m->old_family) &&
3097 xfrm_addr_equal(&t->saddr, &m->old_saddr,
3098 m->old_family)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003099 match = 1;
3100 }
3101 break;
3102 case XFRM_MODE_TRANSPORT:
3103 /* in case of transport mode, template does not store
3104 any IP addresses, hence we just compare mode and
3105 protocol */
3106 match = 1;
3107 break;
3108 default:
3109 break;
3110 }
3111 }
3112 return match;
3113}
3114
3115/* update endpoint address(es) of template(s) */
3116static int xfrm_policy_migrate(struct xfrm_policy *pol,
3117 struct xfrm_migrate *m, int num_migrate)
3118{
3119 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003120 int i, j, n = 0;
3121
3122 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07003123 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003124 /* target policy has been deleted */
3125 write_unlock_bh(&pol->lock);
3126 return -ENOENT;
3127 }
3128
3129 for (i = 0; i < pol->xfrm_nr; i++) {
3130 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
3131 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
3132 continue;
3133 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07003134 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
3135 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003136 continue;
3137 /* update endpoints */
3138 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
3139 sizeof(pol->xfrm_vec[i].id.daddr));
3140 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
3141 sizeof(pol->xfrm_vec[i].saddr));
3142 pol->xfrm_vec[i].encap_family = mp->new_family;
3143 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00003144 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003145 }
3146 }
3147
3148 write_unlock_bh(&pol->lock);
3149
3150 if (!n)
3151 return -ENODATA;
3152
3153 return 0;
3154}
3155
David S. Millerdd701752011-02-24 00:21:08 -05003156static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003157{
3158 int i, j;
3159
3160 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
3161 return -EINVAL;
3162
3163 for (i = 0; i < num_migrate; i++) {
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003164 if (xfrm_addr_equal(&m[i].old_daddr, &m[i].new_daddr,
3165 m[i].old_family) &&
3166 xfrm_addr_equal(&m[i].old_saddr, &m[i].new_saddr,
3167 m[i].old_family))
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003168 return -EINVAL;
3169 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
3170 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
3171 return -EINVAL;
3172
3173 /* check if there is any duplicated entry */
3174 for (j = i + 1; j < num_migrate; j++) {
3175 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
3176 sizeof(m[i].old_daddr)) &&
3177 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
3178 sizeof(m[i].old_saddr)) &&
3179 m[i].proto == m[j].proto &&
3180 m[i].mode == m[j].mode &&
3181 m[i].reqid == m[j].reqid &&
3182 m[i].old_family == m[j].old_family)
3183 return -EINVAL;
3184 }
3185 }
3186
3187 return 0;
3188}
3189
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003190int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003191 struct xfrm_migrate *m, int num_migrate,
3192 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003193{
3194 int i, err, nx_cur = 0, nx_new = 0;
3195 struct xfrm_policy *pol = NULL;
3196 struct xfrm_state *x, *xc;
3197 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
3198 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
3199 struct xfrm_migrate *mp;
3200
3201 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
3202 goto out;
3203
3204 /* Stage 1 - find policy */
3205 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
3206 err = -ENOENT;
3207 goto out;
3208 }
3209
3210 /* Stage 2 - find and update state(s) */
3211 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
3212 if ((x = xfrm_migrate_state_find(mp))) {
3213 x_cur[nx_cur] = x;
3214 nx_cur++;
3215 if ((xc = xfrm_state_migrate(x, mp))) {
3216 x_new[nx_new] = xc;
3217 nx_new++;
3218 } else {
3219 err = -ENODATA;
3220 goto restore_state;
3221 }
3222 }
3223 }
3224
3225 /* Stage 3 - update policy */
3226 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
3227 goto restore_state;
3228
3229 /* Stage 4 - delete old state(s) */
3230 if (nx_cur) {
3231 xfrm_states_put(x_cur, nx_cur);
3232 xfrm_states_delete(x_cur, nx_cur);
3233 }
3234
3235 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003236 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003237
3238 xfrm_pol_put(pol);
3239
3240 return 0;
3241out:
3242 return err;
3243
3244restore_state:
3245 if (pol)
3246 xfrm_pol_put(pol);
3247 if (nx_cur)
3248 xfrm_states_put(x_cur, nx_cur);
3249 if (nx_new)
3250 xfrm_states_delete(x_new, nx_new);
3251
3252 return err;
3253}
David S. Millere610e672007-02-08 13:29:15 -08003254EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003255#endif