blob: e52cab3591dd78c373274bb64420f87383775e8c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (del_timer(&policy->timer))
312 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
323 while ((skb = skb_dequeue(list)) != NULL) {
324 dev_put(skb->dev);
325 kfree_skb(skb);
326 }
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/* Rule must be locked. Release descentant resources, announce
330 * entry dead. The rule must be unlinked from lists to the moment.
331 */
332
333static void xfrm_policy_kill(struct xfrm_policy *policy)
334{
Herbert Xu12a169e2008-10-01 07:03:24 -0700335 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Timo Teräs285ead12010-04-07 00:30:06 +0000337 atomic_inc(&policy->genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100339 del_timer(&policy->polq.hold_timer);
340 xfrm_queue_purge(&policy->polq.hold_queue);
341
Timo Teräs285ead12010-04-07 00:30:06 +0000342 if (del_timer(&policy->timer))
343 xfrm_pol_put(policy);
344
345 xfrm_pol_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
David S. Miller2518c7c2006-08-24 04:45:07 -0700348static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
349
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800350static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700351{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800352 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700353}
354
David S. Miller5f803b52011-02-24 00:33:19 -0500355static struct hlist_head *policy_hash_bysel(struct net *net,
356 const struct xfrm_selector *sel,
357 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700358{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800359 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700360 unsigned int hash = __sel_hash(sel, family, hmask);
361
362 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800363 &net->xfrm.policy_inexact[dir] :
364 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700365}
366
David S. Miller5f803b52011-02-24 00:33:19 -0500367static struct hlist_head *policy_hash_direct(struct net *net,
368 const xfrm_address_t *daddr,
369 const xfrm_address_t *saddr,
370 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700371{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800372 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700373 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
374
Alexey Dobriyan11219942008-11-25 17:33:06 -0800375 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700376}
377
David S. Miller2518c7c2006-08-24 04:45:07 -0700378static void xfrm_dst_hash_transfer(struct hlist_head *list,
379 struct hlist_head *ndsttable,
380 unsigned int nhashmask)
381{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800382 struct hlist_node *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700383 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800384 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700385
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800386redo:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800387 hlist_for_each_entry_safe(pol, tmp, list, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700388 unsigned int h;
389
390 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
391 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800392 if (!entry0) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800393 hlist_del(&pol->bydst);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800394 hlist_add_head(&pol->bydst, ndsttable+h);
395 h0 = h;
396 } else {
397 if (h != h0)
398 continue;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800399 hlist_del(&pol->bydst);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800400 hlist_add_after(entry0, &pol->bydst);
401 }
Sasha Levinb67bfe02013-02-27 17:06:00 -0800402 entry0 = &pol->bydst;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800403 }
404 if (!hlist_empty(list)) {
405 entry0 = NULL;
406 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700407 }
408}
409
410static void xfrm_idx_hash_transfer(struct hlist_head *list,
411 struct hlist_head *nidxtable,
412 unsigned int nhashmask)
413{
Sasha Levinb67bfe02013-02-27 17:06:00 -0800414 struct hlist_node *tmp;
David S. Miller2518c7c2006-08-24 04:45:07 -0700415 struct xfrm_policy *pol;
416
Sasha Levinb67bfe02013-02-27 17:06:00 -0800417 hlist_for_each_entry_safe(pol, tmp, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700418 unsigned int h;
419
420 h = __idx_hash(pol->index, nhashmask);
421 hlist_add_head(&pol->byidx, nidxtable+h);
422 }
423}
424
425static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
426{
427 return ((old_hmask + 1) << 1) - 1;
428}
429
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800430static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700431{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800432 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700433 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
434 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800435 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700436 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700437 int i;
438
439 if (!ndst)
440 return;
441
442 write_lock_bh(&xfrm_policy_lock);
443
444 for (i = hmask; i >= 0; i--)
445 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
446
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800447 net->xfrm.policy_bydst[dir].table = ndst;
448 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700449
450 write_unlock_bh(&xfrm_policy_lock);
451
David S. Miller44e36b42006-08-24 04:50:50 -0700452 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700453}
454
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800455static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700456{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800457 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700458 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
459 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800460 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700461 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700462 int i;
463
464 if (!nidx)
465 return;
466
467 write_lock_bh(&xfrm_policy_lock);
468
469 for (i = hmask; i >= 0; i--)
470 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
471
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800472 net->xfrm.policy_byidx = nidx;
473 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700474
475 write_unlock_bh(&xfrm_policy_lock);
476
David S. Miller44e36b42006-08-24 04:50:50 -0700477 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700478}
479
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800480static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700481{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800482 unsigned int cnt = net->xfrm.policy_count[dir];
483 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700484
485 if (total)
486 *total += cnt;
487
488 if ((hmask + 1) < xfrm_policy_hashmax &&
489 cnt > hmask)
490 return 1;
491
492 return 0;
493}
494
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800495static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700496{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800497 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700498
499 if ((hmask + 1) < xfrm_policy_hashmax &&
500 total > hmask)
501 return 1;
502
503 return 0;
504}
505
Alexey Dobriyane0710412010-01-23 13:37:10 +0000506void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700507{
508 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000509 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
510 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
511 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
512 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
513 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
514 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
515 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700516 si->spdhmcnt = xfrm_policy_hashmax;
517 read_unlock_bh(&xfrm_policy_lock);
518}
519EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700520
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700521static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800522static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700523{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800524 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700525 int dir, total;
526
527 mutex_lock(&hash_resize_mutex);
528
529 total = 0;
530 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800531 if (xfrm_bydst_should_resize(net, dir, &total))
532 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700533 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800534 if (xfrm_byidx_should_resize(net, total))
535 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700536
537 mutex_unlock(&hash_resize_mutex);
538}
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540/* Generate new index... KAME seems to generate them ordered by cost
541 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800542static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 static u32 idx_generator;
545
546 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700547 struct hlist_head *list;
548 struct xfrm_policy *p;
549 u32 idx;
550 int found;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 idx = (idx_generator | dir);
553 idx_generator += 8;
554 if (idx == 0)
555 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800556 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700557 found = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800558 hlist_for_each_entry(p, list, byidx) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700559 if (p->index == idx) {
560 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700564 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return idx;
566 }
567}
568
David S. Miller2518c7c2006-08-24 04:45:07 -0700569static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
570{
571 u32 *p1 = (u32 *) s1;
572 u32 *p2 = (u32 *) s2;
573 int len = sizeof(struct xfrm_selector) / sizeof(u32);
574 int i;
575
576 for (i = 0; i < len; i++) {
577 if (p1[i] != p2[i])
578 return 1;
579 }
580
581 return 0;
582}
583
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100584static void xfrm_policy_requeue(struct xfrm_policy *old,
585 struct xfrm_policy *new)
586{
587 struct xfrm_policy_queue *pq = &old->polq;
588 struct sk_buff_head list;
589
590 __skb_queue_head_init(&list);
591
592 spin_lock_bh(&pq->hold_queue.lock);
593 skb_queue_splice_init(&pq->hold_queue, &list);
594 del_timer(&pq->hold_timer);
595 spin_unlock_bh(&pq->hold_queue.lock);
596
597 if (skb_queue_empty(&list))
598 return;
599
600 pq = &new->polq;
601
602 spin_lock_bh(&pq->hold_queue.lock);
603 skb_queue_splice(&list, &pq->hold_queue);
604 pq->timeout = XFRM_QUEUE_TMO_MIN;
605 mod_timer(&pq->hold_timer, jiffies);
606 spin_unlock_bh(&pq->hold_queue.lock);
607}
608
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100609static bool xfrm_policy_mark_match(struct xfrm_policy *policy,
610 struct xfrm_policy *pol)
611{
612 u32 mark = policy->mark.v & policy->mark.m;
613
614 if (policy->mark.v == pol->mark.v && policy->mark.m == pol->mark.m)
615 return true;
616
617 if ((mark & pol->mark.m) == pol->mark.v &&
618 policy->priority == pol->priority)
619 return true;
620
621 return false;
622}
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
625{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800626 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700627 struct xfrm_policy *pol;
628 struct xfrm_policy *delpol;
629 struct hlist_head *chain;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800630 struct hlist_node *newpos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800633 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700634 delpol = NULL;
635 newpos = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800636 hlist_for_each_entry(pol, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800637 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700638 !selector_cmp(&pol->selector, &policy->selector) &&
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100639 xfrm_policy_mark_match(policy, pol) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800640 xfrm_sec_ctx_match(pol->security, policy->security) &&
641 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (excl) {
643 write_unlock_bh(&xfrm_policy_lock);
644 return -EEXIST;
645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 delpol = pol;
647 if (policy->priority > pol->priority)
648 continue;
649 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800650 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 continue;
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (delpol)
654 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700657 hlist_add_after(newpos, &policy->bydst);
658 else
659 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800661 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 atomic_inc(&flow_cache_genid);
Nicolas Dichtelee8372d2012-09-10 22:09:45 +0000663 rt_genid_bump(net);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100664 if (delpol) {
665 xfrm_policy_requeue(delpol, policy);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800666 __xfrm_policy_unlink(delpol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100667 }
Alexey Dobriyan11219942008-11-25 17:33:06 -0800668 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
669 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800670 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 policy->curlft.use_time = 0;
672 if (!mod_timer(&policy->timer, jiffies + HZ))
673 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800674 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 write_unlock_bh(&xfrm_policy_lock);
676
David S. Miller9b78a822005-12-22 07:39:48 -0800677 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800679 else if (xfrm_bydst_should_resize(net, dir, NULL))
680 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return 0;
683}
684EXPORT_SYMBOL(xfrm_policy_insert);
685
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000686struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
687 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800688 struct xfrm_sec_ctx *ctx, int delete,
689 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
David S. Miller2518c7c2006-08-24 04:45:07 -0700691 struct xfrm_policy *pol, *ret;
692 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Eric Parisef41aaa2007-03-07 15:37:58 -0800694 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800696 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700697 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800698 hlist_for_each_entry(pol, chain, bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700699 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000700 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700701 !selector_cmp(sel, &pol->selector) &&
702 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700704 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700705 *err = security_xfrm_policy_delete(
706 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800707 if (*err) {
708 write_unlock_bh(&xfrm_policy_lock);
709 return pol;
710 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800711 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700712 }
713 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
715 }
716 }
717 write_unlock_bh(&xfrm_policy_lock);
718
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000719 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700720 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Trent Jaegerdf718372005-12-13 23:12:27 -0800723EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000725struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
726 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
David S. Miller2518c7c2006-08-24 04:45:07 -0700728 struct xfrm_policy *pol, *ret;
729 struct hlist_head *chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Herbert Xub5505c62007-05-14 02:15:47 -0700731 *err = -ENOENT;
732 if (xfrm_policy_id2dir(id) != dir)
733 return NULL;
734
Eric Parisef41aaa2007-03-07 15:37:58 -0800735 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800737 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700738 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800739 hlist_for_each_entry(pol, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000740 if (pol->type == type && pol->index == id &&
741 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700743 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700744 *err = security_xfrm_policy_delete(
745 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800746 if (*err) {
747 write_unlock_bh(&xfrm_policy_lock);
748 return pol;
749 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800750 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700751 }
752 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 break;
754 }
755 }
756 write_unlock_bh(&xfrm_policy_lock);
757
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000758 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700759 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700760 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762EXPORT_SYMBOL(xfrm_policy_byid);
763
Joy Latten4aa2e622007-06-04 19:05:57 -0400764#ifdef CONFIG_SECURITY_NETWORK_XFRM
765static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800766xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Joy Latten4aa2e622007-06-04 19:05:57 -0400768 int dir, err = 0;
769
770 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
771 struct xfrm_policy *pol;
Joy Latten4aa2e622007-06-04 19:05:57 -0400772 int i;
773
Sasha Levinb67bfe02013-02-27 17:06:00 -0800774 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800775 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400776 if (pol->type != type)
777 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700778 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400779 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700780 xfrm_audit_policy_delete(pol, 0,
781 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400782 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700783 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400784 return err;
785 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900786 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800787 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800788 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800789 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400790 bydst) {
791 if (pol->type != type)
792 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700793 err = security_xfrm_policy_delete(
794 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400795 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700796 xfrm_audit_policy_delete(pol, 0,
797 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400798 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700799 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400800 return err;
801 }
802 }
803 }
804 }
805 return err;
806}
807#else
808static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800809xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400810{
811 return 0;
812}
813#endif
814
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800815int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400816{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000817 int dir, err = 0, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400820
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800821 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400822 if (err)
823 goto out;
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700826 struct xfrm_policy *pol;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800827 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700828
829 again1:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800830 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800831 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700832 if (pol->type != type)
833 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000834 __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000836 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Joy Lattenab5f5e82007-09-17 11:51:22 -0700838 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400839 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700840 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600841
David S. Miller2518c7c2006-08-24 04:45:07 -0700842 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700845 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700847
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800848 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700849 again2:
Sasha Levinb67bfe02013-02-27 17:06:00 -0800850 hlist_for_each_entry(pol,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800851 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700852 bydst) {
853 if (pol->type != type)
854 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000855 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700856 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000857 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700858
Joy Lattenab5f5e82007-09-17 11:51:22 -0700859 xfrm_audit_policy_delete(pol, 1,
860 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400861 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700862 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700863 xfrm_policy_kill(pol);
864
865 write_lock_bh(&xfrm_policy_lock);
866 goto again2;
867 }
868 }
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000871 if (!cnt)
872 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -0400873out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400875 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877EXPORT_SYMBOL(xfrm_policy_flush);
878
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800879int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800880 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 void *data)
882{
Herbert Xu12a169e2008-10-01 07:03:24 -0700883 struct xfrm_policy *pol;
884 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800885 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Timo Teras4c563f72008-02-28 21:31:08 -0800887 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
888 walk->type != XFRM_POLICY_TYPE_ANY)
889 return -EINVAL;
890
Herbert Xu12a169e2008-10-01 07:03:24 -0700891 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800892 return 0;
893
Herbert Xu12a169e2008-10-01 07:03:24 -0700894 write_lock_bh(&xfrm_policy_lock);
895 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800896 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700897 else
898 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800899 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700900 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800901 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700902 pol = container_of(x, struct xfrm_policy, walk);
903 if (walk->type != XFRM_POLICY_TYPE_ANY &&
904 walk->type != pol->type)
905 continue;
906 error = func(pol, xfrm_policy_id2dir(pol->index),
907 walk->seq, data);
908 if (error) {
909 list_move_tail(&walk->walk.all, &x->all);
910 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800911 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700912 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700914 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800915 error = -ENOENT;
916 goto out;
917 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700918 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700920 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return error;
922}
923EXPORT_SYMBOL(xfrm_policy_walk);
924
Herbert Xu12a169e2008-10-01 07:03:24 -0700925void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
926{
927 INIT_LIST_HEAD(&walk->walk.all);
928 walk->walk.dead = 1;
929 walk->type = type;
930 walk->seq = 0;
931}
932EXPORT_SYMBOL(xfrm_policy_walk_init);
933
934void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
935{
936 if (list_empty(&walk->walk.all))
937 return;
938
939 write_lock_bh(&xfrm_policy_lock);
940 list_del(&walk->walk.all);
941 write_unlock_bh(&xfrm_policy_lock);
942}
943EXPORT_SYMBOL(xfrm_policy_walk_done);
944
James Morris134b0fc2006-10-05 15:42:27 -0500945/*
946 * Find policy to apply to this flow.
947 *
948 * Returns 0 if policy found, else an -errno.
949 */
David S. Millerf299d552011-02-24 01:23:30 -0500950static int xfrm_policy_match(const struct xfrm_policy *pol,
951 const struct flowi *fl,
David S. Miller2518c7c2006-08-24 04:45:07 -0700952 u8 type, u16 family, int dir)
953{
David S. Millerf299d552011-02-24 01:23:30 -0500954 const struct xfrm_selector *sel = &pol->selector;
David S. Millerbc9b35a2012-05-15 15:04:57 -0400955 int ret = -ESRCH;
956 bool match;
David S. Miller2518c7c2006-08-24 04:45:07 -0700957
958 if (pol->family != family ||
David S. Miller1d28f422011-03-12 00:29:39 -0500959 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -0700960 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500961 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700962
963 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500964 if (match)
David S. Miller1d28f422011-03-12 00:29:39 -0500965 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -0700966 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700967
James Morris134b0fc2006-10-05 15:42:27 -0500968 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700969}
970
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800971static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -0800972 const struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700973 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
James Morris134b0fc2006-10-05 15:42:27 -0500975 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700976 struct xfrm_policy *pol, *ret;
David S. Miller0b597e72011-02-24 01:22:48 -0500977 const xfrm_address_t *daddr, *saddr;
David S. Miller2518c7c2006-08-24 04:45:07 -0700978 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700979 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700980
981 daddr = xfrm_flowi_daddr(fl, family);
982 saddr = xfrm_flowi_saddr(fl, family);
983 if (unlikely(!daddr || !saddr))
984 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800987 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700988 ret = NULL;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800989 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500990 err = xfrm_policy_match(pol, fl, type, family, dir);
991 if (err) {
992 if (err == -ESRCH)
993 continue;
994 else {
995 ret = ERR_PTR(err);
996 goto fail;
997 }
998 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700999 ret = pol;
1000 priority = ret->priority;
1001 break;
1002 }
1003 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001004 chain = &net->xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001005 hlist_for_each_entry(pol, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -05001006 err = xfrm_policy_match(pol, fl, type, family, dir);
1007 if (err) {
1008 if (err == -ESRCH)
1009 continue;
1010 else {
1011 ret = ERR_PTR(err);
1012 goto fail;
1013 }
1014 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001015 ret = pol;
1016 break;
1017 }
1018 }
David S. Milleracba48e2006-08-25 15:46:46 -07001019 if (ret)
1020 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -05001021fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001023
David S. Miller2518c7c2006-08-24 04:45:07 -07001024 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001025}
1026
Timo Teräs80c802f2010-04-07 00:30:05 +00001027static struct xfrm_policy *
David S. Miller73ff93c2011-02-22 18:33:42 -08001028__xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
Timo Teräs80c802f2010-04-07 00:30:05 +00001029{
1030#ifdef CONFIG_XFRM_SUB_POLICY
1031 struct xfrm_policy *pol;
1032
1033 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
1034 if (pol != NULL)
1035 return pol;
1036#endif
1037 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
1038}
1039
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001040static int flow_to_policy_dir(int dir)
1041{
1042 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
1043 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1044 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1045 return dir;
1046
1047 switch (dir) {
1048 default:
1049 case FLOW_DIR_IN:
1050 return XFRM_POLICY_IN;
1051 case FLOW_DIR_OUT:
1052 return XFRM_POLICY_OUT;
1053 case FLOW_DIR_FWD:
1054 return XFRM_POLICY_FWD;
1055 }
1056}
1057
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001058static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001059xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001060 u8 dir, struct flow_cache_object *old_obj, void *ctx)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001061{
1062 struct xfrm_policy *pol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001063
1064 if (old_obj)
1065 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001066
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001067 pol = __xfrm_policy_lookup(net, fl, family, flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00001068 if (IS_ERR_OR_NULL(pol))
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001069 return ERR_CAST(pol);
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001070
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001071 /* Resolver returns two references:
1072 * one for cache and one for caller of flow_cache_lookup() */
1073 xfrm_pol_hold(pol);
1074
1075 return &pol->flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
Trent Jaegerdf718372005-12-13 23:12:27 -08001078static inline int policy_to_flow_dir(int dir)
1079{
1080 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001081 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1082 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1083 return dir;
1084 switch (dir) {
1085 default:
1086 case XFRM_POLICY_IN:
1087 return FLOW_DIR_IN;
1088 case XFRM_POLICY_OUT:
1089 return FLOW_DIR_OUT;
1090 case XFRM_POLICY_FWD:
1091 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001092 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001093}
1094
David S. Millerdee9f4b2011-02-22 18:44:31 -08001095static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
1096 const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098 struct xfrm_policy *pol;
1099
1100 read_lock_bh(&xfrm_policy_lock);
1101 if ((pol = sk->sk_policy[dir]) != NULL) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04001102 bool match = xfrm_selector_match(&pol->selector, fl,
1103 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001104 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001105
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001106 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001107 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1108 pol = NULL;
1109 goto out;
1110 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001111 err = security_xfrm_policy_lookup(pol->security,
David S. Miller1d28f422011-03-12 00:29:39 -05001112 fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001113 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001114 if (!err)
1115 xfrm_pol_hold(pol);
1116 else if (err == -ESRCH)
1117 pol = NULL;
1118 else
1119 pol = ERR_PTR(err);
1120 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 pol = NULL;
1122 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001123out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 read_unlock_bh(&xfrm_policy_lock);
1125 return pol;
1126}
1127
1128static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1129{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001130 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001131 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001132 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001133
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001134 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001135 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001136 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001137 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001139
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001140 if (xfrm_bydst_should_resize(net, dir, NULL))
1141 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
1144static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1145 int dir)
1146{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001147 struct net *net = xp_net(pol);
1148
David S. Miller2518c7c2006-08-24 04:45:07 -07001149 if (hlist_unhashed(&pol->bydst))
1150 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
David S. Miller2518c7c2006-08-24 04:45:07 -07001152 hlist_del(&pol->bydst);
1153 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001154 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001155 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001156
1157 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
Herbert Xu4666faa2005-06-18 22:43:22 -07001160int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 write_lock_bh(&xfrm_policy_lock);
1163 pol = __xfrm_policy_unlink(pol, dir);
1164 write_unlock_bh(&xfrm_policy_lock);
1165 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001169 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
David S. Millera70fcb02006-03-20 19:18:52 -08001171EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1174{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001175 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct xfrm_policy *old_pol;
1177
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001178#ifdef CONFIG_XFRM_SUB_POLICY
1179 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1180 return -EINVAL;
1181#endif
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 write_lock_bh(&xfrm_policy_lock);
1184 old_pol = sk->sk_policy[dir];
1185 sk->sk_policy[dir] = pol;
1186 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001187 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001188 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1190 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001191 if (old_pol) {
1192 if (pol)
1193 xfrm_policy_requeue(old_pol, pol);
1194
Timo Teräsea2dea92010-03-31 00:17:05 +00001195 /* Unlinking succeeds always. This is the only function
1196 * allowed to delete or replace socket policy.
1197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 write_unlock_bh(&xfrm_policy_lock);
1201
1202 if (old_pol) {
1203 xfrm_policy_kill(old_pol);
1204 }
1205 return 0;
1206}
1207
David S. Millerd3e40a92011-02-24 01:25:41 -05001208static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001210 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 if (newp) {
1213 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001214 if (security_xfrm_policy_clone(old->security,
1215 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001216 kfree(newp);
1217 return NULL; /* ENOMEM */
1218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 newp->lft = old->lft;
1220 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08001221 newp->mark = old->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 newp->action = old->action;
1223 newp->flags = old->flags;
1224 newp->xfrm_nr = old->xfrm_nr;
1225 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001226 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 memcpy(newp->xfrm_vec, old->xfrm_vec,
1228 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1229 write_lock_bh(&xfrm_policy_lock);
1230 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1231 write_unlock_bh(&xfrm_policy_lock);
1232 xfrm_pol_put(newp);
1233 }
1234 return newp;
1235}
1236
1237int __xfrm_sk_clone_policy(struct sock *sk)
1238{
1239 struct xfrm_policy *p0 = sk->sk_policy[0],
1240 *p1 = sk->sk_policy[1];
1241
1242 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1243 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1244 return -ENOMEM;
1245 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1246 return -ENOMEM;
1247 return 0;
1248}
1249
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001250static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001251xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001252 unsigned short family)
1253{
1254 int err;
1255 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1256
1257 if (unlikely(afinfo == NULL))
1258 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001259 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001260 xfrm_policy_put_afinfo(afinfo);
1261 return err;
1262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264/* Resolve list of templates for the flow, given policy. */
1265
1266static int
David S. Millera6c2e612011-02-22 18:35:39 -08001267xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1268 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001270 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 int nx;
1272 int i, error;
1273 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1274 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001275 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1278 struct xfrm_state *x;
1279 xfrm_address_t *remote = daddr;
1280 xfrm_address_t *local = saddr;
1281 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1282
Joakim Koskela48b8d782007-07-26 00:08:42 -07001283 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1284 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 remote = &tmpl->id.daddr;
1286 local = &tmpl->saddr;
Thomas Egerer8444cf72010-09-20 11:11:38 -07001287 if (xfrm_addr_any(local, tmpl->encap_family)) {
1288 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001289 if (error)
1290 goto fail;
1291 local = &tmp;
1292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
1294
1295 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1296
1297 if (x && x->km.state == XFRM_STATE_VALID) {
1298 xfrm[nx++] = x;
1299 daddr = remote;
1300 saddr = local;
1301 continue;
1302 }
1303 if (x) {
1304 error = (x->km.state == XFRM_STATE_ERROR ?
1305 -EINVAL : -EAGAIN);
1306 xfrm_state_put(x);
1307 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001308 else if (error == -ESRCH)
1309 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 if (!tmpl->optional)
1312 goto fail;
1313 }
1314 return nx;
1315
1316fail:
1317 for (nx--; nx>=0; nx--)
1318 xfrm_state_put(xfrm[nx]);
1319 return error;
1320}
1321
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001322static int
David S. Millera6c2e612011-02-22 18:35:39 -08001323xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1324 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001325{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001326 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1327 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001328 int cnx = 0;
1329 int error;
1330 int ret;
1331 int i;
1332
1333 for (i = 0; i < npols; i++) {
1334 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1335 error = -ENOBUFS;
1336 goto fail;
1337 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001338
1339 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001340 if (ret < 0) {
1341 error = ret;
1342 goto fail;
1343 } else
1344 cnx += ret;
1345 }
1346
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001347 /* found states are sorted for outbound processing */
1348 if (npols > 1)
1349 xfrm_state_sort(xfrm, tpp, cnx, family);
1350
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001351 return cnx;
1352
1353 fail:
1354 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001355 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001356 return error;
1357
1358}
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360/* Check that the bundle accepts the flow and its components are
1361 * still valid.
1362 */
1363
David S. Miller05d84022011-02-22 17:47:10 -08001364static inline int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001365{
1366 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1367 int tos;
1368
1369 if (!afinfo)
1370 return -EINVAL;
1371
1372 tos = afinfo->get_tos(fl);
1373
1374 xfrm_policy_put_afinfo(afinfo);
1375
1376 return tos;
1377}
1378
Timo Teräs80c802f2010-04-07 00:30:05 +00001379static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1380{
1381 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1382 struct dst_entry *dst = &xdst->u.dst;
1383
1384 if (xdst->route == NULL) {
1385 /* Dummy bundle - if it has xfrms we were not
1386 * able to build bundle as template resolution failed.
1387 * It means we need to try again resolving. */
1388 if (xdst->num_xfrms > 0)
1389 return NULL;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001390 } else if (dst->flags & DST_XFRM_QUEUE) {
1391 return NULL;
Timo Teräs80c802f2010-04-07 00:30:05 +00001392 } else {
1393 /* Real bundle */
1394 if (stale_bundle(dst))
1395 return NULL;
1396 }
1397
1398 dst_hold(dst);
1399 return flo;
1400}
1401
1402static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1403{
1404 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1405 struct dst_entry *dst = &xdst->u.dst;
1406
1407 if (!xdst->route)
1408 return 0;
1409 if (stale_bundle(dst))
1410 return 0;
1411
1412 return 1;
1413}
1414
1415static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1416{
1417 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1418 struct dst_entry *dst = &xdst->u.dst;
1419
1420 dst_free(dst);
1421}
1422
1423static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1424 .get = xfrm_bundle_flo_get,
1425 .check = xfrm_bundle_flo_check,
1426 .delete = xfrm_bundle_flo_delete,
1427};
1428
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001429static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001430{
1431 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001432 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001433 struct xfrm_dst *xdst;
1434
1435 if (!afinfo)
1436 return ERR_PTR(-EINVAL);
1437
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001438 switch (family) {
1439 case AF_INET:
1440 dst_ops = &net->xfrm.xfrm4_dst_ops;
1441 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001442#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001443 case AF_INET6:
1444 dst_ops = &net->xfrm.xfrm6_dst_ops;
1445 break;
1446#endif
1447 default:
1448 BUG();
1449 }
David S. Millerf5b0a872012-07-19 12:31:33 -07001450 xdst = dst_alloc(dst_ops, NULL, 0, DST_OBSOLETE_NONE, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08001451
Madalin Bucurd4cae562011-09-26 07:04:36 +00001452 if (likely(xdst)) {
Steffen Klassert141e3692012-07-05 23:39:34 +00001453 struct dst_entry *dst = &xdst->u.dst;
1454
1455 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001456 xdst->flo.ops = &xfrm_bundle_fc_ops;
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -07001457 if (afinfo->init_dst)
1458 afinfo->init_dst(net, xdst);
Madalin Bucurd4cae562011-09-26 07:04:36 +00001459 } else
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001460 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00001461
Madalin Bucurd4cae562011-09-26 07:04:36 +00001462 xfrm_policy_put_afinfo(afinfo);
1463
Herbert Xu25ee3282007-12-11 09:32:34 -08001464 return xdst;
1465}
1466
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001467static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1468 int nfheader_len)
1469{
1470 struct xfrm_policy_afinfo *afinfo =
1471 xfrm_policy_get_afinfo(dst->ops->family);
1472 int err;
1473
1474 if (!afinfo)
1475 return -EINVAL;
1476
1477 err = afinfo->init_path(path, dst, nfheader_len);
1478
1479 xfrm_policy_put_afinfo(afinfo);
1480
1481 return err;
1482}
1483
Herbert Xu87c1e122010-03-02 02:51:56 +00001484static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08001485 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08001486{
1487 struct xfrm_policy_afinfo *afinfo =
1488 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1489 int err;
1490
1491 if (!afinfo)
1492 return -EINVAL;
1493
Herbert Xu87c1e122010-03-02 02:51:56 +00001494 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001495
1496 xfrm_policy_put_afinfo(afinfo);
1497
1498 return err;
1499}
1500
Timo Teräs80c802f2010-04-07 00:30:05 +00001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1503 * all the metrics... Shortly, bundle a bundle.
1504 */
1505
Herbert Xu25ee3282007-12-11 09:32:34 -08001506static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1507 struct xfrm_state **xfrm, int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08001508 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08001509 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001511 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001512 unsigned long now = jiffies;
1513 struct net_device *dev;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001514 struct xfrm_mode *inner_mode;
Herbert Xu25ee3282007-12-11 09:32:34 -08001515 struct dst_entry *dst_prev = NULL;
1516 struct dst_entry *dst0 = NULL;
1517 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001519 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001520 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001521 int trailer_len = 0;
1522 int tos;
1523 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001524 xfrm_address_t saddr, daddr;
1525
1526 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001527
1528 tos = xfrm_get_tos(fl, family);
1529 err = tos;
1530 if (tos < 0)
1531 goto put_states;
1532
1533 dst_hold(dst);
1534
1535 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001536 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001537 struct dst_entry *dst1 = &xdst->u.dst;
1538
1539 err = PTR_ERR(xdst);
1540 if (IS_ERR(xdst)) {
1541 dst_release(dst);
1542 goto put_states;
1543 }
1544
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001545 if (xfrm[i]->sel.family == AF_UNSPEC) {
1546 inner_mode = xfrm_ip2inner_mode(xfrm[i],
1547 xfrm_af2proto(family));
1548 if (!inner_mode) {
1549 err = -EAFNOSUPPORT;
1550 dst_release(dst);
1551 goto put_states;
1552 }
1553 } else
1554 inner_mode = xfrm[i]->inner_mode;
1555
Herbert Xu25ee3282007-12-11 09:32:34 -08001556 if (!dst_prev)
1557 dst0 = dst1;
1558 else {
1559 dst_prev->child = dst_clone(dst1);
1560 dst1->flags |= DST_NOHASH;
1561 }
1562
1563 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08001564 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08001565
1566 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1567 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001568 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1569 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001570 err = PTR_ERR(dst);
1571 if (IS_ERR(dst))
1572 goto put_states;
1573 } else
1574 dst_hold(dst);
1575
1576 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00001577 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08001578
David S. Millerf5b0a872012-07-19 12:31:33 -07001579 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
Herbert Xu25ee3282007-12-11 09:32:34 -08001580 dst1->flags |= DST_HOST;
1581 dst1->lastuse = now;
1582
1583 dst1->input = dst_discard;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001584 dst1->output = inner_mode->afinfo->output;
Herbert Xu25ee3282007-12-11 09:32:34 -08001585
1586 dst1->next = dst_prev;
1587 dst_prev = dst1;
1588
1589 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001590 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1591 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001592 trailer_len += xfrm[i]->props.trailer_len;
1593 }
1594
1595 dst_prev->child = dst;
1596 dst0->path = dst;
1597
1598 err = -ENODEV;
1599 dev = dst->dev;
1600 if (!dev)
1601 goto free_dst;
1602
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001603 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001604 xfrm_init_pmtu(dst_prev);
1605
1606 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1607 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1608
Herbert Xu87c1e122010-03-02 02:51:56 +00001609 err = xfrm_fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001610 if (err)
1611 goto free_dst;
1612
1613 dst_prev->header_len = header_len;
1614 dst_prev->trailer_len = trailer_len;
1615 header_len -= xdst->u.dst.xfrm->props.header_len;
1616 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1617 }
1618
1619out:
1620 return dst0;
1621
1622put_states:
1623 for (; i < nx; i++)
1624 xfrm_state_put(xfrm[i]);
1625free_dst:
1626 if (dst0)
1627 dst_free(dst0);
1628 dst0 = ERR_PTR(err);
1629 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001632static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001633xfrm_dst_alloc_copy(void **target, const void *src, int size)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001634{
1635 if (!*target) {
1636 *target = kmalloc(size, GFP_ATOMIC);
1637 if (!*target)
1638 return -ENOMEM;
1639 }
1640 memcpy(*target, src, size);
1641 return 0;
1642}
1643
1644static int inline
David S. Miller1786b382011-02-24 01:32:54 -05001645xfrm_dst_update_parent(struct dst_entry *dst, const struct xfrm_selector *sel)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001646{
1647#ifdef CONFIG_XFRM_SUB_POLICY
1648 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1649 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1650 sel, sizeof(*sel));
1651#else
1652 return 0;
1653#endif
1654}
1655
1656static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001657xfrm_dst_update_origin(struct dst_entry *dst, const struct flowi *fl)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001658{
1659#ifdef CONFIG_XFRM_SUB_POLICY
1660 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1661 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1662#else
1663 return 0;
1664#endif
1665}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
David S. Miller73ff93c2011-02-22 18:33:42 -08001667static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001668 struct xfrm_policy **pols,
1669 int *num_pols, int *num_xfrms)
1670{
1671 int i;
1672
1673 if (*num_pols == 0 || !pols[0]) {
1674 *num_pols = 0;
1675 *num_xfrms = 0;
1676 return 0;
1677 }
1678 if (IS_ERR(pols[0]))
1679 return PTR_ERR(pols[0]);
1680
1681 *num_xfrms = pols[0]->xfrm_nr;
1682
1683#ifdef CONFIG_XFRM_SUB_POLICY
1684 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1685 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1686 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1687 XFRM_POLICY_TYPE_MAIN,
1688 fl, family,
1689 XFRM_POLICY_OUT);
1690 if (pols[1]) {
1691 if (IS_ERR(pols[1])) {
1692 xfrm_pols_put(pols, *num_pols);
1693 return PTR_ERR(pols[1]);
1694 }
1695 (*num_pols) ++;
1696 (*num_xfrms) += pols[1]->xfrm_nr;
1697 }
1698 }
1699#endif
1700 for (i = 0; i < *num_pols; i++) {
1701 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1702 *num_xfrms = -1;
1703 break;
1704 }
1705 }
1706
1707 return 0;
1708
1709}
1710
1711static struct xfrm_dst *
1712xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08001713 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001714 struct dst_entry *dst_orig)
1715{
1716 struct net *net = xp_net(pols[0]);
1717 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1718 struct dst_entry *dst;
1719 struct xfrm_dst *xdst;
1720 int err;
1721
1722 /* Try to instantiate a bundle */
1723 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00001724 if (err <= 0) {
1725 if (err != 0 && err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00001726 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1727 return ERR_PTR(err);
1728 }
1729
1730 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1731 if (IS_ERR(dst)) {
1732 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1733 return ERR_CAST(dst);
1734 }
1735
1736 xdst = (struct xfrm_dst *)dst;
1737 xdst->num_xfrms = err;
1738 if (num_pols > 1)
1739 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1740 else
1741 err = xfrm_dst_update_origin(dst, fl);
1742 if (unlikely(err)) {
1743 dst_free(dst);
1744 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1745 return ERR_PTR(err);
1746 }
1747
1748 xdst->num_pols = num_pols;
1749 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1750 xdst->policy_genid = atomic_read(&pols[0]->genid);
1751
1752 return xdst;
1753}
1754
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001755static void xfrm_policy_queue_process(unsigned long arg)
1756{
1757 int err = 0;
1758 struct sk_buff *skb;
1759 struct sock *sk;
1760 struct dst_entry *dst;
1761 struct net_device *dev;
1762 struct xfrm_policy *pol = (struct xfrm_policy *)arg;
1763 struct xfrm_policy_queue *pq = &pol->polq;
1764 struct flowi fl;
1765 struct sk_buff_head list;
1766
1767 spin_lock(&pq->hold_queue.lock);
1768 skb = skb_peek(&pq->hold_queue);
1769 dst = skb_dst(skb);
1770 sk = skb->sk;
1771 xfrm_decode_session(skb, &fl, dst->ops->family);
1772 spin_unlock(&pq->hold_queue.lock);
1773
1774 dst_hold(dst->path);
1775 dst = xfrm_lookup(xp_net(pol), dst->path, &fl,
1776 sk, 0);
1777 if (IS_ERR(dst))
1778 goto purge_queue;
1779
1780 if (dst->flags & DST_XFRM_QUEUE) {
1781 dst_release(dst);
1782
1783 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
1784 goto purge_queue;
1785
1786 pq->timeout = pq->timeout << 1;
1787 mod_timer(&pq->hold_timer, jiffies + pq->timeout);
1788 return;
1789 }
1790
1791 dst_release(dst);
1792
1793 __skb_queue_head_init(&list);
1794
1795 spin_lock(&pq->hold_queue.lock);
1796 pq->timeout = 0;
1797 skb_queue_splice_init(&pq->hold_queue, &list);
1798 spin_unlock(&pq->hold_queue.lock);
1799
1800 while (!skb_queue_empty(&list)) {
1801 skb = __skb_dequeue(&list);
1802
1803 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
1804 dst_hold(skb_dst(skb)->path);
1805 dst = xfrm_lookup(xp_net(pol), skb_dst(skb)->path,
1806 &fl, skb->sk, 0);
1807 if (IS_ERR(dst)) {
1808 dev_put(skb->dev);
1809 kfree_skb(skb);
1810 continue;
1811 }
1812
1813 nf_reset(skb);
1814 skb_dst_drop(skb);
1815 skb_dst_set(skb, dst);
1816
1817 dev = skb->dev;
1818 err = dst_output(skb);
1819 dev_put(dev);
1820 }
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);
1842 dev_hold(skb->dev);
1843
1844 spin_lock_bh(&pq->hold_queue.lock);
1845
1846 if (!pq->timeout)
1847 pq->timeout = XFRM_QUEUE_TMO_MIN;
1848
1849 sched_next = jiffies + pq->timeout;
1850
1851 if (del_timer(&pq->hold_timer)) {
1852 if (time_before(pq->hold_timer.expires, sched_next))
1853 sched_next = pq->hold_timer.expires;
1854 }
1855
1856 __skb_queue_tail(&pq->hold_queue, skb);
1857 mod_timer(&pq->hold_timer, sched_next);
1858
1859 spin_unlock_bh(&pq->hold_queue.lock);
1860
1861 return 0;
1862}
1863
1864static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
1865 struct dst_entry *dst,
1866 const struct flowi *fl,
1867 int num_xfrms,
1868 u16 family)
1869{
1870 int err;
1871 struct net_device *dev;
1872 struct dst_entry *dst1;
1873 struct xfrm_dst *xdst;
1874
1875 xdst = xfrm_alloc_dst(net, family);
1876 if (IS_ERR(xdst))
1877 return xdst;
1878
1879 if (net->xfrm.sysctl_larval_drop || num_xfrms <= 0 ||
1880 (fl->flowi_flags & FLOWI_FLAG_CAN_SLEEP))
1881 return xdst;
1882
1883 dst1 = &xdst->u.dst;
1884 dst_hold(dst);
1885 xdst->route = dst;
1886
1887 dst_copy_metrics(dst1, dst);
1888
1889 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
1890 dst1->flags |= DST_HOST | DST_XFRM_QUEUE;
1891 dst1->lastuse = jiffies;
1892
1893 dst1->input = dst_discard;
1894 dst1->output = xdst_queue_output;
1895
1896 dst_hold(dst);
1897 dst1->child = dst;
1898 dst1->path = dst;
1899
1900 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
1901
1902 err = -ENODEV;
1903 dev = dst->dev;
1904 if (!dev)
1905 goto free_dst;
1906
1907 err = xfrm_fill_dst(xdst, dev, fl);
1908 if (err)
1909 goto free_dst;
1910
1911out:
1912 return xdst;
1913
1914free_dst:
1915 dst_release(dst1);
1916 xdst = ERR_PTR(err);
1917 goto out;
1918}
1919
Timo Teräs80c802f2010-04-07 00:30:05 +00001920static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001921xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
Timo Teräs80c802f2010-04-07 00:30:05 +00001922 struct flow_cache_object *oldflo, void *ctx)
1923{
1924 struct dst_entry *dst_orig = (struct dst_entry *)ctx;
1925 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1926 struct xfrm_dst *xdst, *new_xdst;
1927 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
1928
1929 /* Check if the policies from old bundle are usable */
1930 xdst = NULL;
1931 if (oldflo) {
1932 xdst = container_of(oldflo, struct xfrm_dst, flo);
1933 num_pols = xdst->num_pols;
1934 num_xfrms = xdst->num_xfrms;
1935 pol_dead = 0;
1936 for (i = 0; i < num_pols; i++) {
1937 pols[i] = xdst->pols[i];
1938 pol_dead |= pols[i]->walk.dead;
1939 }
1940 if (pol_dead) {
1941 dst_free(&xdst->u.dst);
1942 xdst = NULL;
1943 num_pols = 0;
1944 num_xfrms = 0;
1945 oldflo = NULL;
1946 }
1947 }
1948
1949 /* Resolve policies to use if we couldn't get them from
1950 * previous cache entry */
1951 if (xdst == NULL) {
1952 num_pols = 1;
Baker Zhangb5fb82c2013-03-19 04:24:30 +00001953 pols[0] = __xfrm_policy_lookup(net, fl, family,
1954 flow_to_policy_dir(dir));
Timo Teräs80c802f2010-04-07 00:30:05 +00001955 err = xfrm_expand_policies(fl, family, pols,
1956 &num_pols, &num_xfrms);
1957 if (err < 0)
1958 goto inc_error;
1959 if (num_pols == 0)
1960 return NULL;
1961 if (num_xfrms <= 0)
1962 goto make_dummy_bundle;
1963 }
1964
1965 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family, dst_orig);
1966 if (IS_ERR(new_xdst)) {
1967 err = PTR_ERR(new_xdst);
1968 if (err != -EAGAIN)
1969 goto error;
1970 if (oldflo == NULL)
1971 goto make_dummy_bundle;
1972 dst_hold(&xdst->u.dst);
1973 return oldflo;
Timo Teräsd809ec82010-07-12 21:29:42 +00001974 } else if (new_xdst == NULL) {
1975 num_xfrms = 0;
1976 if (oldflo == NULL)
1977 goto make_dummy_bundle;
1978 xdst->num_xfrms = 0;
1979 dst_hold(&xdst->u.dst);
1980 return oldflo;
Timo Teräs80c802f2010-04-07 00:30:05 +00001981 }
1982
1983 /* Kill the previous bundle */
1984 if (xdst) {
1985 /* The policies were stolen for newly generated bundle */
1986 xdst->num_pols = 0;
1987 dst_free(&xdst->u.dst);
1988 }
1989
1990 /* Flow cache does not have reference, it dst_free()'s,
1991 * but we do need to return one reference for original caller */
1992 dst_hold(&new_xdst->u.dst);
1993 return &new_xdst->flo;
1994
1995make_dummy_bundle:
1996 /* We found policies, but there's no bundles to instantiate:
1997 * either because the policy blocks, has no transformations or
1998 * we could not build template (no xfrm_states).*/
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001999 xdst = xfrm_create_dummy_bundle(net, dst_orig, fl, num_xfrms, family);
Timo Teräs80c802f2010-04-07 00:30:05 +00002000 if (IS_ERR(xdst)) {
2001 xfrm_pols_put(pols, num_pols);
2002 return ERR_CAST(xdst);
2003 }
2004 xdst->num_pols = num_pols;
2005 xdst->num_xfrms = num_xfrms;
2006 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
2007
2008 dst_hold(&xdst->u.dst);
2009 return &xdst->flo;
2010
2011inc_error:
2012 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2013error:
2014 if (xdst != NULL)
2015 dst_free(&xdst->u.dst);
2016 else
2017 xfrm_pols_put(pols, num_pols);
2018 return ERR_PTR(err);
2019}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
David S. Miller2774c132011-03-01 14:59:04 -08002021static struct dst_entry *make_blackhole(struct net *net, u16 family,
2022 struct dst_entry *dst_orig)
2023{
2024 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2025 struct dst_entry *ret;
2026
2027 if (!afinfo) {
2028 dst_release(dst_orig);
Li RongQing433a1952012-09-17 22:40:10 +00002029 return ERR_PTR(-EINVAL);
David S. Miller2774c132011-03-01 14:59:04 -08002030 } else {
2031 ret = afinfo->blackhole_route(net, dst_orig);
2032 }
2033 xfrm_policy_put_afinfo(afinfo);
2034
2035 return ret;
2036}
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038/* Main function: finds/creates a bundle for given flow.
2039 *
2040 * At the moment we eat a raw IP route. Mostly to speed up lookups
2041 * on interfaces with disabled IPsec.
2042 */
David S. Miller452edd52011-03-02 13:27:41 -08002043struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
2044 const struct flowi *fl,
2045 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002047 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00002048 struct flow_cache_object *flo;
2049 struct xfrm_dst *xdst;
David S. Miller452edd52011-03-02 13:27:41 -08002050 struct dst_entry *dst, *route;
Timo Teräs80c802f2010-04-07 00:30:05 +00002051 u16 family = dst_orig->ops->family;
Trent Jaegerdf718372005-12-13 23:12:27 -08002052 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Changli Gao4b021622010-04-27 21:20:22 +00002053 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055restart:
Timo Teräs80c802f2010-04-07 00:30:05 +00002056 dst = NULL;
2057 xdst = NULL;
2058 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002059
Thomas Graff7944fb2007-08-25 13:46:55 -07002060 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002061 num_pols = 1;
2062 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
2063 err = xfrm_expand_policies(fl, family, pols,
2064 &num_pols, &num_xfrms);
2065 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08002066 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002067
2068 if (num_pols) {
2069 if (num_xfrms <= 0) {
2070 drop_pols = num_pols;
2071 goto no_transform;
2072 }
2073
2074 xdst = xfrm_resolve_and_create_bundle(
2075 pols, num_pols, fl,
2076 family, dst_orig);
2077 if (IS_ERR(xdst)) {
2078 xfrm_pols_put(pols, num_pols);
2079 err = PTR_ERR(xdst);
2080 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00002081 } else if (xdst == NULL) {
2082 num_xfrms = 0;
2083 drop_pols = num_pols;
2084 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00002085 }
2086
Steffen Klassertfbd50602011-03-15 21:12:49 +00002087 dst_hold(&xdst->u.dst);
2088
Timo Teräs80c802f2010-04-07 00:30:05 +00002089 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2090 xdst->u.dst.next = xfrm_policy_sk_bundles;
2091 xfrm_policy_sk_bundles = &xdst->u.dst;
2092 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2093
2094 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002095 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Timo Teräs80c802f2010-04-07 00:30:05 +00002098 if (xdst == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07002100 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08002101 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08002102 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Timo Teräs80c802f2010-04-07 00:30:05 +00002104 flo = flow_cache_lookup(net, fl, family, dir,
2105 xfrm_bundle_lookup, dst_orig);
2106 if (flo == NULL)
2107 goto nopol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002108 if (IS_ERR(flo)) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002109 err = PTR_ERR(flo);
Herbert Xu75b8c132007-12-11 04:38:08 -08002110 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08002111 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002112 xdst = container_of(flo, struct xfrm_dst, flo);
2113
2114 num_pols = xdst->num_pols;
2115 num_xfrms = xdst->num_xfrms;
2116 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy*) * num_pols);
2117 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119
Timo Teräs80c802f2010-04-07 00:30:05 +00002120 dst = &xdst->u.dst;
2121 if (route == NULL && num_xfrms > 0) {
2122 /* The only case when xfrm_bundle_lookup() returns a
2123 * bundle with null route, is when the template could
2124 * not be resolved. It means policies are there, but
2125 * bundle could not be created, since we don't yet
2126 * have the xfrm_state's. We need to wait for KM to
2127 * negotiate new SA's or bail out with error.*/
2128 if (net->xfrm.sysctl_larval_drop) {
2129 /* EREMOTE tells the caller to generate
2130 * a one-shot blackhole route. */
2131 dst_release(dst);
Timo Terasa1aa3482010-05-15 23:49:26 -07002132 xfrm_pols_put(pols, drop_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002133 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller2774c132011-03-01 14:59:04 -08002134
David S. Miller452edd52011-03-02 13:27:41 -08002135 return make_blackhole(net, family, dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002136 }
David S. Miller1d28f422011-03-12 00:29:39 -05002137 if (fl->flowi_flags & FLOWI_FLAG_CAN_SLEEP) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002138 DECLARE_WAITQUEUE(wait, current);
2139
2140 add_wait_queue(&net->xfrm.km_waitq, &wait);
2141 set_current_state(TASK_INTERRUPTIBLE);
2142 schedule();
2143 set_current_state(TASK_RUNNING);
2144 remove_wait_queue(&net->xfrm.km_waitq, &wait);
2145
2146 if (!signal_pending(current)) {
2147 dst_release(dst);
2148 goto restart;
2149 }
2150
2151 err = -ERESTART;
2152 } else
2153 err = -EAGAIN;
2154
2155 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
2156 goto error;
2157 }
2158
2159no_transform:
2160 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08002161 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Timo Teräs80c802f2010-04-07 00:30:05 +00002163 if ((flags & XFRM_LOOKUP_ICMP) &&
2164 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
2165 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08002166 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002167 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08002168
Timo Teräs80c802f2010-04-07 00:30:05 +00002169 for (i = 0; i < num_pols; i++)
2170 pols[i]->curlft.use_time = get_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08002171
Timo Teräs80c802f2010-04-07 00:30:05 +00002172 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002174 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07002175 err = -EPERM;
2176 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002177 } else if (num_xfrms > 0) {
2178 /* Flow transformed */
Timo Teräs80c802f2010-04-07 00:30:05 +00002179 dst_release(dst_orig);
2180 } else {
2181 /* Flow passes untransformed */
2182 dst_release(dst);
David S. Miller452edd52011-03-02 13:27:41 -08002183 dst = dst_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002185ok:
2186 xfrm_pols_put(pols, drop_pols);
Gao feng0c183372012-05-26 01:30:53 +00002187 if (dst && dst->xfrm &&
2188 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
2189 dst->flags |= DST_XFRM_TUNNEL;
David S. Miller452edd52011-03-02 13:27:41 -08002190 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Timo Teräs80c802f2010-04-07 00:30:05 +00002192nopol:
David S. Miller452edd52011-03-02 13:27:41 -08002193 if (!(flags & XFRM_LOOKUP_ICMP)) {
2194 dst = dst_orig;
Timo Teräs80c802f2010-04-07 00:30:05 +00002195 goto ok;
David S. Miller452edd52011-03-02 13:27:41 -08002196 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002197 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198error:
Timo Teräs80c802f2010-04-07 00:30:05 +00002199 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08002200dropdst:
2201 dst_release(dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002202 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08002203 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205EXPORT_SYMBOL(xfrm_lookup);
2206
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002207static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08002208xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002209{
2210 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002211
2212 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
2213 return 0;
2214 x = skb->sp->xvec[idx];
2215 if (!x->type->reject)
2216 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07002217 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002218}
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220/* When skb is transformed back to its "native" form, we have to
2221 * check policy restrictions. At the moment we make this in maximally
2222 * stupid way. Shame on me. :-) Of course, connected sockets must
2223 * have policy cached at them.
2224 */
2225
2226static inline int
David S. Miller7db454b2011-02-24 01:43:01 -05002227xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 unsigned short family)
2229{
2230 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08002231 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 return x->id.proto == tmpl->id.proto &&
2233 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
2234 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
2235 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07002236 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07002237 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002238 !(x->props.mode != XFRM_MODE_TRANSPORT &&
2239 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
2241
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002242/*
2243 * 0 or more than 0 is returned when validation is succeeded (either bypass
2244 * because of optional transport mode, or next index of the mathced secpath
2245 * state with the template.
2246 * -1 is returned when no matching template is found.
2247 * Otherwise "-2 - errored_index" is returned.
2248 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249static inline int
David S. Miller22cccb72011-02-24 01:43:33 -05002250xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 unsigned short family)
2252{
2253 int idx = start;
2254
2255 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002256 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 return start;
2258 } else
2259 start = -1;
2260 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002261 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002263 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
2264 if (start == -1)
2265 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 }
2269 return start;
2270}
2271
Herbert Xud5422ef2007-12-12 10:44:16 -08002272int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
2273 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002276 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 if (unlikely(afinfo == NULL))
2279 return -EAFNOSUPPORT;
2280
Herbert Xud5422ef2007-12-12 10:44:16 -08002281 afinfo->decode_session(skb, fl, reverse);
David S. Miller1d28f422011-03-12 00:29:39 -05002282 err = security_xfrm_decode_session(skb, &fl->flowi_secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002284 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285}
Herbert Xud5422ef2007-12-12 10:44:16 -08002286EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
David S. Miller9a7386e2011-02-24 01:44:12 -05002288static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
2290 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002291 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002292 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296
2297 return 0;
2298}
2299
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002300int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 unsigned short family)
2302{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002303 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002305 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2306 int npols = 0;
2307 int xfrm_nr;
2308 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08002309 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08002311 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002312 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Herbert Xud5422ef2007-12-12 10:44:16 -08002314 reverse = dir & ~XFRM_POLICY_MASK;
2315 dir &= XFRM_POLICY_MASK;
2316 fl_dir = policy_to_flow_dir(dir);
2317
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002318 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002319 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002321 }
2322
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08002323 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 /* First, check used SA against their selectors. */
2326 if (skb->sp) {
2327 int i;
2328
2329 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002330 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002331 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002332 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
2336 }
2337
2338 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002339 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002340 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002341 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002342 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002343 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002344 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002347 if (!pol) {
2348 struct flow_cache_object *flo;
2349
2350 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2351 xfrm_policy_lookup, NULL);
2352 if (IS_ERR_OR_NULL(flo))
2353 pol = ERR_CAST(flo);
2354 else
2355 pol = container_of(flo, struct xfrm_policy, flo);
2356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002358 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002359 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002360 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002361 }
James Morris134b0fc2006-10-05 15:42:27 -05002362
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002363 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002364 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002365 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002366 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002367 return 0;
2368 }
2369 return 1;
2370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
James Morris9d729f72007-03-04 16:12:44 -08002372 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002374 pols[0] = pol;
2375 npols ++;
2376#ifdef CONFIG_XFRM_SUB_POLICY
2377 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002378 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002379 &fl, family,
2380 XFRM_POLICY_IN);
2381 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002382 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002383 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002384 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002385 }
James Morris9d729f72007-03-04 16:12:44 -08002386 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002387 npols ++;
2388 }
2389 }
2390#endif
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 if (pol->action == XFRM_POLICY_ALLOW) {
2393 struct sec_path *sp;
2394 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002395 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002396 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002397 struct xfrm_tmpl **tpp = tp;
2398 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 int i, k;
2400
2401 if ((sp = skb->sp) == NULL)
2402 sp = &dummy;
2403
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002404 for (pi = 0; pi < npols; pi++) {
2405 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002406 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002407 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002408 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002409 }
2410 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002411 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002412 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002413 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002414 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2415 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2416 }
2417 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002418 if (npols > 1) {
2419 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2420 tpp = stp;
2421 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 /* For each tunnel xfrm, find the first matching tmpl.
2424 * For each tmpl before that, find corresponding xfrm.
2425 * Order is _important_. Later we will implement
2426 * some barriers, but at the moment barriers
2427 * are implied between each two transformations.
2428 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002429 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2430 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002431 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002432 if (k < -1)
2433 /* "-2 - errored_index" returned */
2434 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002435 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 }
2439
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002440 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002441 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002445 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return 1;
2447 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002448 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
2450reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002451 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002452reject_error:
2453 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return 0;
2455}
2456EXPORT_SYMBOL(__xfrm_policy_check);
2457
2458int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2459{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002460 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002462 struct dst_entry *dst;
Eric Dumazet73137142011-03-15 15:26:43 -07002463 int res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002465 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002466 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Eric Dumazetfafeeb62010-06-01 10:04:49 +00002470 skb_dst_force(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +00002471
David S. Miller452edd52011-03-02 13:27:41 -08002472 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, 0);
2473 if (IS_ERR(dst)) {
Eric Dumazet73137142011-03-15 15:26:43 -07002474 res = 0;
David S. Miller452edd52011-03-02 13:27:41 -08002475 dst = NULL;
2476 }
Eric Dumazetadf30902009-06-02 05:19:30 +00002477 skb_dst_set(skb, dst);
2478 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480EXPORT_SYMBOL(__xfrm_route_forward);
2481
David S. Millerd49c73c2006-08-13 18:55:53 -07002482/* Optimize later using cookies and generation ids. */
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2485{
David S. Millerd49c73c2006-08-13 18:55:53 -07002486 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
David S. Millerf5b0a872012-07-19 12:31:33 -07002487 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
2488 * get validated by dst_ops->check on every use. We do this
2489 * because when a normal route referenced by an XFRM dst is
2490 * obsoleted we do not go looking around for all parent
2491 * referencing XFRM dsts so that we can invalidate them. It
2492 * is just too much work. Instead we make the checks here on
2493 * every use. For example:
David S. Millerd49c73c2006-08-13 18:55:53 -07002494 *
2495 * XFRM dst A --> IPv4 dst X
2496 *
2497 * X is the "xdst->route" of A (X is also the "dst->path" of A
2498 * in this example). If X is marked obsolete, "A" will not
2499 * notice. That's what we are validating here via the
2500 * stale_bundle() check.
2501 *
2502 * When a policy's bundle is pruned, we dst_free() the XFRM
David S. Millerf5b0a872012-07-19 12:31:33 -07002503 * dst which causes it's ->obsolete field to be set to
2504 * DST_OBSOLETE_DEAD. If an XFRM dst has been pruned like
2505 * this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002506 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002507 if (dst->obsolete < 0 && !stale_bundle(dst))
2508 return dst;
2509
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 return NULL;
2511}
2512
2513static int stale_bundle(struct dst_entry *dst)
2514{
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002515 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
Herbert Xuaabc9762005-05-03 16:27:10 -07002518void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002521 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002522 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 dev_put(dev);
2524 }
2525}
Herbert Xuaabc9762005-05-03 16:27:10 -07002526EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528static void xfrm_link_failure(struct sk_buff *skb)
2529{
2530 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531}
2532
2533static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2534{
2535 if (dst) {
2536 if (dst->obsolete) {
2537 dst_release(dst);
2538 dst = NULL;
2539 }
2540 }
2541 return dst;
2542}
2543
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002544static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
Timo Teräs80c802f2010-04-07 00:30:05 +00002546 struct dst_entry *head, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Timo Teräs80c802f2010-04-07 00:30:05 +00002548 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2549 head = xfrm_policy_sk_bundles;
2550 xfrm_policy_sk_bundles = NULL;
2551 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2552
2553 while (head) {
2554 next = head->next;
2555 dst_free(head);
2556 head = next;
2557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
Paul Mooree4c17212013-05-29 07:36:25 +00002560void xfrm_garbage_collect(struct net *net)
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002561{
2562 flow_cache_flush();
2563 __xfrm_garbage_collect(net);
2564}
Paul Mooree4c17212013-05-29 07:36:25 +00002565EXPORT_SYMBOL(xfrm_garbage_collect);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002566
2567static void xfrm_garbage_collect_deferred(struct net *net)
2568{
2569 flow_cache_flush_deferred();
2570 __xfrm_garbage_collect(net);
2571}
2572
Herbert Xu25ee3282007-12-11 09:32:34 -08002573static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
2575 do {
2576 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2577 u32 pmtu, route_mtu_cached;
2578
2579 pmtu = dst_mtu(dst->child);
2580 xdst->child_mtu_cached = pmtu;
2581
2582 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2583
2584 route_mtu_cached = dst_mtu(xdst->route);
2585 xdst->route_mtu_cached = route_mtu_cached;
2586
2587 if (pmtu > route_mtu_cached)
2588 pmtu = route_mtu_cached;
2589
David S. Millerdefb3512010-12-08 21:16:57 -08002590 dst_metric_set(dst, RTAX_MTU, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 } while ((dst = dst->next));
2592}
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594/* Check that the bundle accepts the flow and its components are
2595 * still valid.
2596 */
2597
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002598static int xfrm_bundle_ok(struct xfrm_dst *first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
2600 struct dst_entry *dst = &first->u.dst;
2601 struct xfrm_dst *last;
2602 u32 mtu;
2603
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002604 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 (dst->dev && !netif_running(dst->dev)))
2606 return 0;
2607
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002608 if (dst->flags & DST_XFRM_QUEUE)
2609 return 1;
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 last = NULL;
2612
2613 do {
2614 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2617 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00002618 if (xdst->xfrm_genid != dst->xfrm->genid)
2619 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07002620 if (xdst->num_pols > 0 &&
2621 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07002622 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 mtu = dst_mtu(dst->child);
2625 if (xdst->child_mtu_cached != mtu) {
2626 last = xdst;
2627 xdst->child_mtu_cached = mtu;
2628 }
2629
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002630 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 return 0;
2632 mtu = dst_mtu(xdst->route);
2633 if (xdst->route_mtu_cached != mtu) {
2634 last = xdst;
2635 xdst->route_mtu_cached = mtu;
2636 }
2637
2638 dst = dst->child;
2639 } while (dst->xfrm);
2640
2641 if (likely(!last))
2642 return 1;
2643
2644 mtu = last->child_mtu_cached;
2645 for (;;) {
2646 dst = &last->u.dst;
2647
2648 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2649 if (mtu > last->route_mtu_cached)
2650 mtu = last->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08002651 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 if (last == first)
2654 break;
2655
Patrick McHardybd0bf072007-07-18 01:55:52 -07002656 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 last->child_mtu_cached = mtu;
2658 }
2659
2660 return 1;
2661}
2662
David S. Miller0dbaee32010-12-13 12:52:14 -08002663static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2664{
2665 return dst_metric_advmss(dst->path);
2666}
2667
Steffen Klassertebb762f2011-11-23 02:12:51 +00002668static unsigned int xfrm_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002669{
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002670 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
2671
2672 return mtu ? : dst_mtu(dst->path);
David S. Millerd33e4552010-12-14 13:01:14 -08002673}
2674
David S. Millerf894cbf2012-07-02 21:52:24 -07002675static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
2676 struct sk_buff *skb,
2677 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -07002678{
David S. Millerf894cbf2012-07-02 21:52:24 -07002679 return dst->path->ops->neigh_lookup(dst, skb, daddr);
David S. Millerd3aaeb32011-07-18 00:40:17 -07002680}
2681
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2683{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002684 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 int err = 0;
2686 if (unlikely(afinfo == NULL))
2687 return -EINVAL;
2688 if (unlikely(afinfo->family >= NPROTO))
2689 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002690 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2692 err = -ENOBUFS;
2693 else {
2694 struct dst_ops *dst_ops = afinfo->dst_ops;
2695 if (likely(dst_ops->kmem_cachep == NULL))
2696 dst_ops->kmem_cachep = xfrm_dst_cache;
2697 if (likely(dst_ops->check == NULL))
2698 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08002699 if (likely(dst_ops->default_advmss == NULL))
2700 dst_ops->default_advmss = xfrm_default_advmss;
Steffen Klassertebb762f2011-11-23 02:12:51 +00002701 if (likely(dst_ops->mtu == NULL))
2702 dst_ops->mtu = xfrm_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (likely(dst_ops->negative_advice == NULL))
2704 dst_ops->negative_advice = xfrm_negative_advice;
2705 if (likely(dst_ops->link_failure == NULL))
2706 dst_ops->link_failure = xfrm_link_failure;
David S. Millerd3aaeb32011-07-18 00:40:17 -07002707 if (likely(dst_ops->neigh_lookup == NULL))
2708 dst_ops->neigh_lookup = xfrm_neigh_lookup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 if (likely(afinfo->garbage_collect == NULL))
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002710 afinfo->garbage_collect = xfrm_garbage_collect_deferred;
Priyanka Jain418a99a2012-08-12 21:22:29 +00002711 rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002713 spin_unlock(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002714
2715 rtnl_lock();
2716 for_each_net(net) {
2717 struct dst_ops *xfrm_dst_ops;
2718
2719 switch (afinfo->family) {
2720 case AF_INET:
2721 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2722 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002723#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002724 case AF_INET6:
2725 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2726 break;
2727#endif
2728 default:
2729 BUG();
2730 }
2731 *xfrm_dst_ops = *afinfo->dst_ops;
2732 }
2733 rtnl_unlock();
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 return err;
2736}
2737EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2738
2739int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2740{
2741 int err = 0;
2742 if (unlikely(afinfo == NULL))
2743 return -EINVAL;
2744 if (unlikely(afinfo->family >= NPROTO))
2745 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002746 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2748 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2749 err = -EINVAL;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002750 else
2751 RCU_INIT_POINTER(xfrm_policy_afinfo[afinfo->family],
2752 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002754 spin_unlock(&xfrm_policy_afinfo_lock);
2755 if (!err) {
2756 struct dst_ops *dst_ops = afinfo->dst_ops;
2757
2758 synchronize_rcu();
2759
2760 dst_ops->kmem_cachep = NULL;
2761 dst_ops->check = NULL;
2762 dst_ops->negative_advice = NULL;
2763 dst_ops->link_failure = NULL;
2764 afinfo->garbage_collect = NULL;
2765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return err;
2767}
2768EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2769
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002770static void __net_init xfrm_dst_ops_init(struct net *net)
2771{
2772 struct xfrm_policy_afinfo *afinfo;
2773
Eric Dumazetef8531b2012-08-19 12:31:48 +02002774 rcu_read_lock();
2775 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002776 if (afinfo)
2777 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002778#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazetef8531b2012-08-19 12:31:48 +02002779 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET6]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002780 if (afinfo)
2781 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2782#endif
Priyanka Jain418a99a2012-08-12 21:22:29 +00002783 rcu_read_unlock();
Herbert Xu546be242006-05-27 23:03:58 -07002784}
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2787{
Jiri Pirko351638e2013-05-28 01:30:21 +00002788 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 switch (event) {
2791 case NETDEV_DOWN:
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002792 xfrm_garbage_collect(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 }
2794 return NOTIFY_DONE;
2795}
2796
2797static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002798 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799};
2800
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002801#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002802static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002803{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002804 int rv;
2805
Tejun Heo7d720c32010-02-16 15:20:26 +00002806 if (snmp_mib_init((void __percpu **)net->mib.xfrm_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00002807 sizeof(struct linux_xfrm_mib),
2808 __alignof__(struct linux_xfrm_mib)) < 0)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002809 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002810 rv = xfrm_proc_init(net);
2811 if (rv < 0)
Tejun Heo7d720c32010-02-16 15:20:26 +00002812 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002813 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002814}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002815
2816static void xfrm_statistics_fini(struct net *net)
2817{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002818 xfrm_proc_fini(net);
Tejun Heo7d720c32010-02-16 15:20:26 +00002819 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002820}
2821#else
2822static int __net_init xfrm_statistics_init(struct net *net)
2823{
2824 return 0;
2825}
2826
2827static void xfrm_statistics_fini(struct net *net)
2828{
2829}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002830#endif
2831
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002832static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833{
David S. Miller2518c7c2006-08-24 04:45:07 -07002834 unsigned int hmask, sz;
2835 int dir;
2836
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002837 if (net_eq(net, &init_net))
2838 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002840 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002841 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
David S. Miller2518c7c2006-08-24 04:45:07 -07002843 hmask = 8 - 1;
2844 sz = (hmask+1) * sizeof(struct hlist_head);
2845
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002846 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2847 if (!net->xfrm.policy_byidx)
2848 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002849 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002850
2851 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2852 struct xfrm_policy_hash *htab;
2853
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002854 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002855 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002856
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002857 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002858 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002859 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002860 goto out_bydst;
2861 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002862 }
2863
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002864 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002865 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002866 if (net_eq(net, &init_net))
2867 register_netdevice_notifier(&xfrm_dev_notifier);
2868 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002869
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002870out_bydst:
2871 for (dir--; dir >= 0; dir--) {
2872 struct xfrm_policy_hash *htab;
2873
2874 htab = &net->xfrm.policy_bydst[dir];
2875 xfrm_hash_free(htab->table, sz);
2876 }
2877 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002878out_byidx:
2879 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880}
2881
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002882static void xfrm_policy_fini(struct net *net)
2883{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002884 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002885 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002886 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002887
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002888 flush_work(&net->xfrm.policy_hash_work);
2889#ifdef CONFIG_XFRM_SUB_POLICY
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002890 audit_info.loginuid = INVALID_UID;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002891 audit_info.sessionid = -1;
2892 audit_info.secid = 0;
2893 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2894#endif
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002895 audit_info.loginuid = INVALID_UID;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002896 audit_info.sessionid = -1;
2897 audit_info.secid = 0;
2898 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002899
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002900 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002901
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002902 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002903 struct xfrm_policy_hash *htab;
2904
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002905 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002906
2907 htab = &net->xfrm.policy_bydst[dir];
Michal Kubecek5b653b22013-01-18 16:03:48 +01002908 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002909 WARN_ON(!hlist_empty(htab->table));
2910 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002911 }
2912
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002913 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002914 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2915 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002916}
2917
2918static int __net_init xfrm_net_init(struct net *net)
2919{
2920 int rv;
2921
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002922 rv = xfrm_statistics_init(net);
2923 if (rv < 0)
2924 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002925 rv = xfrm_state_init(net);
2926 if (rv < 0)
2927 goto out_state;
2928 rv = xfrm_policy_init(net);
2929 if (rv < 0)
2930 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002931 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002932 rv = xfrm_sysctl_init(net);
2933 if (rv < 0)
2934 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002935 return 0;
2936
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002937out_sysctl:
2938 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002939out_policy:
2940 xfrm_state_fini(net);
2941out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002942 xfrm_statistics_fini(net);
2943out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002944 return rv;
2945}
2946
2947static void __net_exit xfrm_net_exit(struct net *net)
2948{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002949 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002950 xfrm_policy_fini(net);
2951 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002952 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002953}
2954
2955static struct pernet_operations __net_initdata xfrm_net_ops = {
2956 .init = xfrm_net_init,
2957 .exit = xfrm_net_exit,
2958};
2959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960void __init xfrm_init(void)
2961{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002962 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 xfrm_input_init();
2964}
2965
Joy Lattenab5f5e82007-09-17 11:51:22 -07002966#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002967static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2968 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002969{
Paul Moore875179f2007-12-01 23:27:18 +11002970 struct xfrm_sec_ctx *ctx = xp->security;
2971 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002972
Paul Moore875179f2007-12-01 23:27:18 +11002973 if (ctx)
2974 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2975 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2976
2977 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002978 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002979 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002980 if (sel->prefixlen_s != 32)
2981 audit_log_format(audit_buf, " src_prefixlen=%d",
2982 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002983 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002984 if (sel->prefixlen_d != 32)
2985 audit_log_format(audit_buf, " dst_prefixlen=%d",
2986 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002987 break;
2988 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002989 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002990 if (sel->prefixlen_s != 128)
2991 audit_log_format(audit_buf, " src_prefixlen=%d",
2992 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002993 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002994 if (sel->prefixlen_d != 128)
2995 audit_log_format(audit_buf, " dst_prefixlen=%d",
2996 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002997 break;
2998 }
2999}
3000
Paul Moore68277ac2007-12-20 20:49:33 -08003001void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07003002 kuid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003003{
3004 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003005
Paul Mooreafeb14b2007-12-21 14:58:11 -08003006 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003007 if (audit_buf == NULL)
3008 return;
Eric Paris25323862008-04-18 10:09:25 -04003009 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003010 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003011 xfrm_audit_common_policyinfo(xp, audit_buf);
3012 audit_log_end(audit_buf);
3013}
3014EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
3015
Paul Moore68277ac2007-12-20 20:49:33 -08003016void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07003017 kuid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003018{
3019 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003020
Paul Mooreafeb14b2007-12-21 14:58:11 -08003021 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003022 if (audit_buf == NULL)
3023 return;
Eric Paris25323862008-04-18 10:09:25 -04003024 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003025 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003026 xfrm_audit_common_policyinfo(xp, audit_buf);
3027 audit_log_end(audit_buf);
3028}
3029EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
3030#endif
3031
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003032#ifdef CONFIG_XFRM_MIGRATE
David S. Millerbc9b35a2012-05-15 15:04:57 -04003033static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
3034 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003035{
3036 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
3037 if (sel_tgt->family == sel_cmp->family &&
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003038 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
3039 sel_cmp->family) &&
3040 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
3041 sel_cmp->family) &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003042 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
3043 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003044 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003045 }
3046 } else {
3047 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003048 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003049 }
3050 }
David S. Millerbc9b35a2012-05-15 15:04:57 -04003051 return false;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003052}
3053
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003054static struct xfrm_policy * xfrm_migrate_policy_find(const struct xfrm_selector *sel,
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003055 u8 dir, u8 type)
3056{
3057 struct xfrm_policy *pol, *ret = NULL;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003058 struct hlist_head *chain;
3059 u32 priority = ~0U;
3060
3061 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08003062 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Sasha Levinb67bfe02013-02-27 17:06:00 -08003063 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003064 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3065 pol->type == type) {
3066 ret = pol;
3067 priority = ret->priority;
3068 break;
3069 }
3070 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08003071 chain = &init_net.xfrm.policy_inexact[dir];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003072 hlist_for_each_entry(pol, chain, bydst) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003073 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3074 pol->type == type &&
3075 pol->priority < priority) {
3076 ret = pol;
3077 break;
3078 }
3079 }
3080
3081 if (ret)
3082 xfrm_pol_hold(ret);
3083
3084 read_unlock_bh(&xfrm_policy_lock);
3085
3086 return ret;
3087}
3088
David S. Millerdd701752011-02-24 00:21:08 -05003089static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003090{
3091 int match = 0;
3092
3093 if (t->mode == m->mode && t->id.proto == m->proto &&
3094 (m->reqid == 0 || t->reqid == m->reqid)) {
3095 switch (t->mode) {
3096 case XFRM_MODE_TUNNEL:
3097 case XFRM_MODE_BEET:
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003098 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
3099 m->old_family) &&
3100 xfrm_addr_equal(&t->saddr, &m->old_saddr,
3101 m->old_family)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003102 match = 1;
3103 }
3104 break;
3105 case XFRM_MODE_TRANSPORT:
3106 /* in case of transport mode, template does not store
3107 any IP addresses, hence we just compare mode and
3108 protocol */
3109 match = 1;
3110 break;
3111 default:
3112 break;
3113 }
3114 }
3115 return match;
3116}
3117
3118/* update endpoint address(es) of template(s) */
3119static int xfrm_policy_migrate(struct xfrm_policy *pol,
3120 struct xfrm_migrate *m, int num_migrate)
3121{
3122 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003123 int i, j, n = 0;
3124
3125 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07003126 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003127 /* target policy has been deleted */
3128 write_unlock_bh(&pol->lock);
3129 return -ENOENT;
3130 }
3131
3132 for (i = 0; i < pol->xfrm_nr; i++) {
3133 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
3134 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
3135 continue;
3136 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07003137 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
3138 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003139 continue;
3140 /* update endpoints */
3141 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
3142 sizeof(pol->xfrm_vec[i].id.daddr));
3143 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
3144 sizeof(pol->xfrm_vec[i].saddr));
3145 pol->xfrm_vec[i].encap_family = mp->new_family;
3146 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00003147 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003148 }
3149 }
3150
3151 write_unlock_bh(&pol->lock);
3152
3153 if (!n)
3154 return -ENODATA;
3155
3156 return 0;
3157}
3158
David S. Millerdd701752011-02-24 00:21:08 -05003159static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003160{
3161 int i, j;
3162
3163 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
3164 return -EINVAL;
3165
3166 for (i = 0; i < num_migrate; i++) {
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003167 if (xfrm_addr_equal(&m[i].old_daddr, &m[i].new_daddr,
3168 m[i].old_family) &&
3169 xfrm_addr_equal(&m[i].old_saddr, &m[i].new_saddr,
3170 m[i].old_family))
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003171 return -EINVAL;
3172 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
3173 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
3174 return -EINVAL;
3175
3176 /* check if there is any duplicated entry */
3177 for (j = i + 1; j < num_migrate; j++) {
3178 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
3179 sizeof(m[i].old_daddr)) &&
3180 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
3181 sizeof(m[i].old_saddr)) &&
3182 m[i].proto == m[j].proto &&
3183 m[i].mode == m[j].mode &&
3184 m[i].reqid == m[j].reqid &&
3185 m[i].old_family == m[j].old_family)
3186 return -EINVAL;
3187 }
3188 }
3189
3190 return 0;
3191}
3192
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003193int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003194 struct xfrm_migrate *m, int num_migrate,
3195 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003196{
3197 int i, err, nx_cur = 0, nx_new = 0;
3198 struct xfrm_policy *pol = NULL;
3199 struct xfrm_state *x, *xc;
3200 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
3201 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
3202 struct xfrm_migrate *mp;
3203
3204 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
3205 goto out;
3206
3207 /* Stage 1 - find policy */
3208 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
3209 err = -ENOENT;
3210 goto out;
3211 }
3212
3213 /* Stage 2 - find and update state(s) */
3214 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
3215 if ((x = xfrm_migrate_state_find(mp))) {
3216 x_cur[nx_cur] = x;
3217 nx_cur++;
3218 if ((xc = xfrm_state_migrate(x, mp))) {
3219 x_new[nx_new] = xc;
3220 nx_new++;
3221 } else {
3222 err = -ENODATA;
3223 goto restore_state;
3224 }
3225 }
3226 }
3227
3228 /* Stage 3 - update policy */
3229 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
3230 goto restore_state;
3231
3232 /* Stage 4 - delete old state(s) */
3233 if (nx_cur) {
3234 xfrm_states_put(x_cur, nx_cur);
3235 xfrm_states_delete(x_cur, nx_cur);
3236 }
3237
3238 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003239 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003240
3241 xfrm_pol_put(pol);
3242
3243 return 0;
3244out:
3245 return err;
3246
3247restore_state:
3248 if (pol)
3249 xfrm_pol_put(pol);
3250 if (nx_cur)
3251 xfrm_states_put(x_cur, nx_cur);
3252 if (nx_new)
3253 xfrm_states_delete(x_new, nx_new);
3254
3255 return err;
3256}
David S. Millere610e672007-02-08 13:29:15 -08003257EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003258#endif