blob: 5b47180986f8124f96e657330139c43862f95300 [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äsea2dea9d2010-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{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800382 struct hlist_node *entry, *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:
David S. Miller2518c7c2006-08-24 04:45:07 -0700387 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
388 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) {
393 hlist_del(entry);
394 hlist_add_head(&pol->bydst, ndsttable+h);
395 h0 = h;
396 } else {
397 if (h != h0)
398 continue;
399 hlist_del(entry);
400 hlist_add_after(entry0, &pol->bydst);
401 }
402 entry0 = entry;
403 }
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{
414 struct hlist_node *entry, *tmp;
415 struct xfrm_policy *pol;
416
417 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
418 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_node *entry;
548 struct hlist_head *list;
549 struct xfrm_policy *p;
550 u32 idx;
551 int found;
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 idx = (idx_generator | dir);
554 idx_generator += 8;
555 if (idx == 0)
556 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800557 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700558 found = 0;
559 hlist_for_each_entry(p, entry, list, byidx) {
560 if (p->index == idx) {
561 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700565 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return idx;
567 }
568}
569
David S. Miller2518c7c2006-08-24 04:45:07 -0700570static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
571{
572 u32 *p1 = (u32 *) s1;
573 u32 *p2 = (u32 *) s2;
574 int len = sizeof(struct xfrm_selector) / sizeof(u32);
575 int i;
576
577 for (i = 0; i < len; i++) {
578 if (p1[i] != p2[i])
579 return 1;
580 }
581
582 return 0;
583}
584
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100585static void xfrm_policy_requeue(struct xfrm_policy *old,
586 struct xfrm_policy *new)
587{
588 struct xfrm_policy_queue *pq = &old->polq;
589 struct sk_buff_head list;
590
591 __skb_queue_head_init(&list);
592
593 spin_lock_bh(&pq->hold_queue.lock);
594 skb_queue_splice_init(&pq->hold_queue, &list);
595 del_timer(&pq->hold_timer);
596 spin_unlock_bh(&pq->hold_queue.lock);
597
598 if (skb_queue_empty(&list))
599 return;
600
601 pq = &new->polq;
602
603 spin_lock_bh(&pq->hold_queue.lock);
604 skb_queue_splice(&list, &pq->hold_queue);
605 pq->timeout = XFRM_QUEUE_TMO_MIN;
606 mod_timer(&pq->hold_timer, jiffies);
607 spin_unlock_bh(&pq->hold_queue.lock);
608}
609
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100610static bool xfrm_policy_mark_match(struct xfrm_policy *policy,
611 struct xfrm_policy *pol)
612{
613 u32 mark = policy->mark.v & policy->mark.m;
614
615 if (policy->mark.v == pol->mark.v && policy->mark.m == pol->mark.m)
616 return true;
617
618 if ((mark & pol->mark.m) == pol->mark.v &&
619 policy->priority == pol->priority)
620 return true;
621
622 return false;
623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
626{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800627 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700628 struct xfrm_policy *pol;
629 struct xfrm_policy *delpol;
630 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800631 struct hlist_node *entry, *newpos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800634 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700635 delpol = NULL;
636 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700637 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800638 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700639 !selector_cmp(&pol->selector, &policy->selector) &&
Steffen Klassert7cb8a932013-02-11 07:02:36 +0100640 xfrm_policy_mark_match(policy, pol) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800641 xfrm_sec_ctx_match(pol->security, policy->security) &&
642 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (excl) {
644 write_unlock_bh(&xfrm_policy_lock);
645 return -EEXIST;
646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 delpol = pol;
648 if (policy->priority > pol->priority)
649 continue;
650 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800651 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 continue;
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (delpol)
655 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700658 hlist_add_after(newpos, &policy->bydst);
659 else
660 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800662 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 atomic_inc(&flow_cache_genid);
Nicolas Dichtelee8372d2012-09-10 22:09:45 +0000664 rt_genid_bump(net);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100665 if (delpol) {
666 xfrm_policy_requeue(delpol, policy);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800667 __xfrm_policy_unlink(delpol, dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +0100668 }
Alexey Dobriyan11219942008-11-25 17:33:06 -0800669 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
670 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800671 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 policy->curlft.use_time = 0;
673 if (!mod_timer(&policy->timer, jiffies + HZ))
674 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800675 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 write_unlock_bh(&xfrm_policy_lock);
677
David S. Miller9b78a822005-12-22 07:39:48 -0800678 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800680 else if (xfrm_bydst_should_resize(net, dir, NULL))
681 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return 0;
684}
685EXPORT_SYMBOL(xfrm_policy_insert);
686
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000687struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
688 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800689 struct xfrm_sec_ctx *ctx, int delete,
690 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
David S. Miller2518c7c2006-08-24 04:45:07 -0700692 struct xfrm_policy *pol, *ret;
693 struct hlist_head *chain;
694 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Eric Parisef41aaa2007-03-07 15:37:58 -0800696 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800698 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700699 ret = NULL;
700 hlist_for_each_entry(pol, entry, chain, bydst) {
701 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000702 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700703 !selector_cmp(sel, &pol->selector) &&
704 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700706 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700707 *err = security_xfrm_policy_delete(
708 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800709 if (*err) {
710 write_unlock_bh(&xfrm_policy_lock);
711 return pol;
712 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800713 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700714 }
715 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 break;
717 }
718 }
719 write_unlock_bh(&xfrm_policy_lock);
720
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000721 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700722 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700723 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
Trent Jaegerdf718372005-12-13 23:12:27 -0800725EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000727struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
728 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
David S. Miller2518c7c2006-08-24 04:45:07 -0700730 struct xfrm_policy *pol, *ret;
731 struct hlist_head *chain;
732 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Herbert Xub5505c62007-05-14 02:15:47 -0700734 *err = -ENOENT;
735 if (xfrm_policy_id2dir(id) != dir)
736 return NULL;
737
Eric Parisef41aaa2007-03-07 15:37:58 -0800738 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800740 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700741 ret = NULL;
742 hlist_for_each_entry(pol, entry, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000743 if (pol->type == type && pol->index == id &&
744 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700746 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700747 *err = security_xfrm_policy_delete(
748 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800749 if (*err) {
750 write_unlock_bh(&xfrm_policy_lock);
751 return pol;
752 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800753 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700754 }
755 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 break;
757 }
758 }
759 write_unlock_bh(&xfrm_policy_lock);
760
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000761 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700762 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700763 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765EXPORT_SYMBOL(xfrm_policy_byid);
766
Joy Latten4aa2e622007-06-04 19:05:57 -0400767#ifdef CONFIG_SECURITY_NETWORK_XFRM
768static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800769xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Joy Latten4aa2e622007-06-04 19:05:57 -0400771 int dir, err = 0;
772
773 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
774 struct xfrm_policy *pol;
775 struct hlist_node *entry;
776 int i;
777
778 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800779 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400780 if (pol->type != type)
781 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700782 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400783 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700784 xfrm_audit_policy_delete(pol, 0,
785 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400786 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700787 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400788 return err;
789 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900790 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800791 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400792 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800793 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400794 bydst) {
795 if (pol->type != type)
796 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700797 err = security_xfrm_policy_delete(
798 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400799 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700800 xfrm_audit_policy_delete(pol, 0,
801 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400802 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700803 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400804 return err;
805 }
806 }
807 }
808 }
809 return err;
810}
811#else
812static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800813xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400814{
815 return 0;
816}
817#endif
818
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800819int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400820{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000821 int dir, err = 0, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400824
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800825 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400826 if (err)
827 goto out;
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700830 struct xfrm_policy *pol;
831 struct hlist_node *entry;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800832 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700833
834 again1:
835 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800836 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700837 if (pol->type != type)
838 continue;
Timo Teräsea2dea9d2010-03-31 00:17:05 +0000839 __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea9d2010-03-31 00:17:05 +0000841 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Joy Lattenab5f5e82007-09-17 11:51:22 -0700843 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400844 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700845 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600846
David S. Miller2518c7c2006-08-24 04:45:07 -0700847 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700850 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700852
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800853 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700854 again2:
855 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800856 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700857 bydst) {
858 if (pol->type != type)
859 continue;
Timo Teräsea2dea9d2010-03-31 00:17:05 +0000860 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700861 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea9d2010-03-31 00:17:05 +0000862 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700863
Joy Lattenab5f5e82007-09-17 11:51:22 -0700864 xfrm_audit_policy_delete(pol, 1,
865 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400866 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700867 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700868 xfrm_policy_kill(pol);
869
870 write_lock_bh(&xfrm_policy_lock);
871 goto again2;
872 }
873 }
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000876 if (!cnt)
877 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -0400878out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400880 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882EXPORT_SYMBOL(xfrm_policy_flush);
883
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800884int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800885 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 void *data)
887{
Herbert Xu12a169e2008-10-01 07:03:24 -0700888 struct xfrm_policy *pol;
889 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800890 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Timo Teras4c563f72008-02-28 21:31:08 -0800892 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
893 walk->type != XFRM_POLICY_TYPE_ANY)
894 return -EINVAL;
895
Herbert Xu12a169e2008-10-01 07:03:24 -0700896 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800897 return 0;
898
Herbert Xu12a169e2008-10-01 07:03:24 -0700899 write_lock_bh(&xfrm_policy_lock);
900 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800901 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700902 else
903 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800904 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700905 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800906 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700907 pol = container_of(x, struct xfrm_policy, walk);
908 if (walk->type != XFRM_POLICY_TYPE_ANY &&
909 walk->type != pol->type)
910 continue;
911 error = func(pol, xfrm_policy_id2dir(pol->index),
912 walk->seq, data);
913 if (error) {
914 list_move_tail(&walk->walk.all, &x->all);
915 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800916 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700917 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700919 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800920 error = -ENOENT;
921 goto out;
922 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700923 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700925 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return error;
927}
928EXPORT_SYMBOL(xfrm_policy_walk);
929
Herbert Xu12a169e2008-10-01 07:03:24 -0700930void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
931{
932 INIT_LIST_HEAD(&walk->walk.all);
933 walk->walk.dead = 1;
934 walk->type = type;
935 walk->seq = 0;
936}
937EXPORT_SYMBOL(xfrm_policy_walk_init);
938
939void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
940{
941 if (list_empty(&walk->walk.all))
942 return;
943
944 write_lock_bh(&xfrm_policy_lock);
945 list_del(&walk->walk.all);
946 write_unlock_bh(&xfrm_policy_lock);
947}
948EXPORT_SYMBOL(xfrm_policy_walk_done);
949
James Morris134b0fc2006-10-05 15:42:27 -0500950/*
951 * Find policy to apply to this flow.
952 *
953 * Returns 0 if policy found, else an -errno.
954 */
David S. Millerf299d552011-02-24 01:23:30 -0500955static int xfrm_policy_match(const struct xfrm_policy *pol,
956 const struct flowi *fl,
David S. Miller2518c7c2006-08-24 04:45:07 -0700957 u8 type, u16 family, int dir)
958{
David S. Millerf299d552011-02-24 01:23:30 -0500959 const struct xfrm_selector *sel = &pol->selector;
David S. Millerbc9b35a2012-05-15 15:04:57 -0400960 int ret = -ESRCH;
961 bool match;
David S. Miller2518c7c2006-08-24 04:45:07 -0700962
963 if (pol->family != family ||
David S. Miller1d28f422011-03-12 00:29:39 -0500964 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -0700965 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500966 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700967
968 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500969 if (match)
David S. Miller1d28f422011-03-12 00:29:39 -0500970 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -0700971 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700972
James Morris134b0fc2006-10-05 15:42:27 -0500973 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700974}
975
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800976static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -0800977 const struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700978 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
James Morris134b0fc2006-10-05 15:42:27 -0500980 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700981 struct xfrm_policy *pol, *ret;
David S. Miller0b597e72011-02-24 01:22:48 -0500982 const xfrm_address_t *daddr, *saddr;
David S. Miller2518c7c2006-08-24 04:45:07 -0700983 struct hlist_node *entry;
984 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700985 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700986
987 daddr = xfrm_flowi_daddr(fl, family);
988 saddr = xfrm_flowi_saddr(fl, family);
989 if (unlikely(!daddr || !saddr))
990 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800993 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700994 ret = NULL;
995 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500996 err = xfrm_policy_match(pol, fl, type, family, dir);
997 if (err) {
998 if (err == -ESRCH)
999 continue;
1000 else {
1001 ret = ERR_PTR(err);
1002 goto fail;
1003 }
1004 } else {
David S. Milleracba48e2006-08-25 15:46:46 -07001005 ret = pol;
1006 priority = ret->priority;
1007 break;
1008 }
1009 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001010 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -07001011 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -05001012 err = xfrm_policy_match(pol, fl, type, family, dir);
1013 if (err) {
1014 if (err == -ESRCH)
1015 continue;
1016 else {
1017 ret = ERR_PTR(err);
1018 goto fail;
1019 }
1020 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001021 ret = pol;
1022 break;
1023 }
1024 }
David S. Milleracba48e2006-08-25 15:46:46 -07001025 if (ret)
1026 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -05001027fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001029
David S. Miller2518c7c2006-08-24 04:45:07 -07001030 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001031}
1032
Timo Teräs80c802f2010-04-07 00:30:05 +00001033static struct xfrm_policy *
David S. Miller73ff93c2011-02-22 18:33:42 -08001034__xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
Timo Teräs80c802f2010-04-07 00:30:05 +00001035{
1036#ifdef CONFIG_XFRM_SUB_POLICY
1037 struct xfrm_policy *pol;
1038
1039 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
1040 if (pol != NULL)
1041 return pol;
1042#endif
1043 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
1044}
1045
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001046static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001047xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001048 u8 dir, struct flow_cache_object *old_obj, void *ctx)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001049{
1050 struct xfrm_policy *pol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001051
1052 if (old_obj)
1053 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001054
Timo Teräs80c802f2010-04-07 00:30:05 +00001055 pol = __xfrm_policy_lookup(net, fl, family, dir);
1056 if (IS_ERR_OR_NULL(pol))
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001057 return ERR_CAST(pol);
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001058
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001059 /* Resolver returns two references:
1060 * one for cache and one for caller of flow_cache_lookup() */
1061 xfrm_pol_hold(pol);
1062
1063 return &pol->flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Trent Jaegerdf718372005-12-13 23:12:27 -08001066static inline int policy_to_flow_dir(int dir)
1067{
1068 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001069 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1070 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1071 return dir;
1072 switch (dir) {
1073 default:
1074 case XFRM_POLICY_IN:
1075 return FLOW_DIR_IN;
1076 case XFRM_POLICY_OUT:
1077 return FLOW_DIR_OUT;
1078 case XFRM_POLICY_FWD:
1079 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001080 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001081}
1082
David S. Millerdee9f4b2011-02-22 18:44:31 -08001083static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
1084 const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 struct xfrm_policy *pol;
1087
1088 read_lock_bh(&xfrm_policy_lock);
1089 if ((pol = sk->sk_policy[dir]) != NULL) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04001090 bool match = xfrm_selector_match(&pol->selector, fl,
1091 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001092 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001093
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001094 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001095 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1096 pol = NULL;
1097 goto out;
1098 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001099 err = security_xfrm_policy_lookup(pol->security,
David S. Miller1d28f422011-03-12 00:29:39 -05001100 fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001101 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001102 if (!err)
1103 xfrm_pol_hold(pol);
1104 else if (err == -ESRCH)
1105 pol = NULL;
1106 else
1107 pol = ERR_PTR(err);
1108 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 pol = NULL;
1110 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001111out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 read_unlock_bh(&xfrm_policy_lock);
1113 return pol;
1114}
1115
1116static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1117{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001118 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001119 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001120 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001121
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001122 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001123 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001124 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001125 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001127
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001128 if (xfrm_bydst_should_resize(net, dir, NULL))
1129 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1133 int dir)
1134{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001135 struct net *net = xp_net(pol);
1136
David S. Miller2518c7c2006-08-24 04:45:07 -07001137 if (hlist_unhashed(&pol->bydst))
1138 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
David S. Miller2518c7c2006-08-24 04:45:07 -07001140 hlist_del(&pol->bydst);
1141 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001142 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001143 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001144
1145 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Herbert Xu4666faa2005-06-18 22:43:22 -07001148int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 write_lock_bh(&xfrm_policy_lock);
1151 pol = __xfrm_policy_unlink(pol, dir);
1152 write_unlock_bh(&xfrm_policy_lock);
1153 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001157 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
David S. Millera70fcb02006-03-20 19:18:52 -08001159EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1162{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001163 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 struct xfrm_policy *old_pol;
1165
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001166#ifdef CONFIG_XFRM_SUB_POLICY
1167 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1168 return -EINVAL;
1169#endif
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 write_lock_bh(&xfrm_policy_lock);
1172 old_pol = sk->sk_policy[dir];
1173 sk->sk_policy[dir] = pol;
1174 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001175 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001176 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1178 }
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001179 if (old_pol) {
1180 if (pol)
1181 xfrm_policy_requeue(old_pol, pol);
1182
Timo Teräsea2dea9d2010-03-31 00:17:05 +00001183 /* Unlinking succeeds always. This is the only function
1184 * allowed to delete or replace socket policy.
1185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 write_unlock_bh(&xfrm_policy_lock);
1189
1190 if (old_pol) {
1191 xfrm_policy_kill(old_pol);
1192 }
1193 return 0;
1194}
1195
David S. Millerd3e40a92011-02-24 01:25:41 -05001196static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001198 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 if (newp) {
1201 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001202 if (security_xfrm_policy_clone(old->security,
1203 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001204 kfree(newp);
1205 return NULL; /* ENOMEM */
1206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 newp->lft = old->lft;
1208 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08001209 newp->mark = old->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 newp->action = old->action;
1211 newp->flags = old->flags;
1212 newp->xfrm_nr = old->xfrm_nr;
1213 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001214 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 memcpy(newp->xfrm_vec, old->xfrm_vec,
1216 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1217 write_lock_bh(&xfrm_policy_lock);
1218 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1219 write_unlock_bh(&xfrm_policy_lock);
1220 xfrm_pol_put(newp);
1221 }
1222 return newp;
1223}
1224
1225int __xfrm_sk_clone_policy(struct sock *sk)
1226{
1227 struct xfrm_policy *p0 = sk->sk_policy[0],
1228 *p1 = sk->sk_policy[1];
1229
1230 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1231 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1232 return -ENOMEM;
1233 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1234 return -ENOMEM;
1235 return 0;
1236}
1237
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001238static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001239xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001240 unsigned short family)
1241{
1242 int err;
1243 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1244
1245 if (unlikely(afinfo == NULL))
1246 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001247 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001248 xfrm_policy_put_afinfo(afinfo);
1249 return err;
1250}
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252/* Resolve list of templates for the flow, given policy. */
1253
1254static int
David S. Millera6c2e612011-02-22 18:35:39 -08001255xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1256 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001258 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 int nx;
1260 int i, error;
1261 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1262 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001263 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1266 struct xfrm_state *x;
1267 xfrm_address_t *remote = daddr;
1268 xfrm_address_t *local = saddr;
1269 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1270
Joakim Koskela48b8d782007-07-26 00:08:42 -07001271 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1272 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 remote = &tmpl->id.daddr;
1274 local = &tmpl->saddr;
Thomas Egerer8444cf72010-09-20 11:11:38 -07001275 if (xfrm_addr_any(local, tmpl->encap_family)) {
1276 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001277 if (error)
1278 goto fail;
1279 local = &tmp;
1280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282
1283 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1284
1285 if (x && x->km.state == XFRM_STATE_VALID) {
1286 xfrm[nx++] = x;
1287 daddr = remote;
1288 saddr = local;
1289 continue;
1290 }
1291 if (x) {
1292 error = (x->km.state == XFRM_STATE_ERROR ?
1293 -EINVAL : -EAGAIN);
1294 xfrm_state_put(x);
1295 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001296 else if (error == -ESRCH)
1297 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 if (!tmpl->optional)
1300 goto fail;
1301 }
1302 return nx;
1303
1304fail:
1305 for (nx--; nx>=0; nx--)
1306 xfrm_state_put(xfrm[nx]);
1307 return error;
1308}
1309
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001310static int
David S. Millera6c2e612011-02-22 18:35:39 -08001311xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1312 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001313{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001314 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1315 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001316 int cnx = 0;
1317 int error;
1318 int ret;
1319 int i;
1320
1321 for (i = 0; i < npols; i++) {
1322 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1323 error = -ENOBUFS;
1324 goto fail;
1325 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001326
1327 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001328 if (ret < 0) {
1329 error = ret;
1330 goto fail;
1331 } else
1332 cnx += ret;
1333 }
1334
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001335 /* found states are sorted for outbound processing */
1336 if (npols > 1)
1337 xfrm_state_sort(xfrm, tpp, cnx, family);
1338
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001339 return cnx;
1340
1341 fail:
1342 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001343 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001344 return error;
1345
1346}
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348/* Check that the bundle accepts the flow and its components are
1349 * still valid.
1350 */
1351
David S. Miller05d84022011-02-22 17:47:10 -08001352static inline int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001353{
1354 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1355 int tos;
1356
1357 if (!afinfo)
1358 return -EINVAL;
1359
1360 tos = afinfo->get_tos(fl);
1361
1362 xfrm_policy_put_afinfo(afinfo);
1363
1364 return tos;
1365}
1366
Timo Teräs80c802f2010-04-07 00:30:05 +00001367static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1368{
1369 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1370 struct dst_entry *dst = &xdst->u.dst;
1371
1372 if (xdst->route == NULL) {
1373 /* Dummy bundle - if it has xfrms we were not
1374 * able to build bundle as template resolution failed.
1375 * It means we need to try again resolving. */
1376 if (xdst->num_xfrms > 0)
1377 return NULL;
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001378 } else if (dst->flags & DST_XFRM_QUEUE) {
1379 return NULL;
Timo Teräs80c802f2010-04-07 00:30:05 +00001380 } else {
1381 /* Real bundle */
1382 if (stale_bundle(dst))
1383 return NULL;
1384 }
1385
1386 dst_hold(dst);
1387 return flo;
1388}
1389
1390static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1391{
1392 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1393 struct dst_entry *dst = &xdst->u.dst;
1394
1395 if (!xdst->route)
1396 return 0;
1397 if (stale_bundle(dst))
1398 return 0;
1399
1400 return 1;
1401}
1402
1403static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1404{
1405 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1406 struct dst_entry *dst = &xdst->u.dst;
1407
1408 dst_free(dst);
1409}
1410
1411static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1412 .get = xfrm_bundle_flo_get,
1413 .check = xfrm_bundle_flo_check,
1414 .delete = xfrm_bundle_flo_delete,
1415};
1416
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001417static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001418{
1419 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001420 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001421 struct xfrm_dst *xdst;
1422
1423 if (!afinfo)
1424 return ERR_PTR(-EINVAL);
1425
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001426 switch (family) {
1427 case AF_INET:
1428 dst_ops = &net->xfrm.xfrm4_dst_ops;
1429 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001430#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001431 case AF_INET6:
1432 dst_ops = &net->xfrm.xfrm6_dst_ops;
1433 break;
1434#endif
1435 default:
1436 BUG();
1437 }
David S. Millerf5b0a872012-07-19 12:31:33 -07001438 xdst = dst_alloc(dst_ops, NULL, 0, DST_OBSOLETE_NONE, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08001439
Madalin Bucurd4cae562011-09-26 07:04:36 +00001440 if (likely(xdst)) {
Steffen Klassert141e3692012-07-05 23:39:34 +00001441 struct dst_entry *dst = &xdst->u.dst;
1442
1443 memset(dst + 1, 0, sizeof(*xdst) - sizeof(*dst));
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001444 xdst->flo.ops = &xfrm_bundle_fc_ops;
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -07001445 if (afinfo->init_dst)
1446 afinfo->init_dst(net, xdst);
Madalin Bucurd4cae562011-09-26 07:04:36 +00001447 } else
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001448 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00001449
Madalin Bucurd4cae562011-09-26 07:04:36 +00001450 xfrm_policy_put_afinfo(afinfo);
1451
Herbert Xu25ee3282007-12-11 09:32:34 -08001452 return xdst;
1453}
1454
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001455static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1456 int nfheader_len)
1457{
1458 struct xfrm_policy_afinfo *afinfo =
1459 xfrm_policy_get_afinfo(dst->ops->family);
1460 int err;
1461
1462 if (!afinfo)
1463 return -EINVAL;
1464
1465 err = afinfo->init_path(path, dst, nfheader_len);
1466
1467 xfrm_policy_put_afinfo(afinfo);
1468
1469 return err;
1470}
1471
Herbert Xu87c1e122010-03-02 02:51:56 +00001472static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08001473 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08001474{
1475 struct xfrm_policy_afinfo *afinfo =
1476 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1477 int err;
1478
1479 if (!afinfo)
1480 return -EINVAL;
1481
Herbert Xu87c1e122010-03-02 02:51:56 +00001482 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001483
1484 xfrm_policy_put_afinfo(afinfo);
1485
1486 return err;
1487}
1488
Timo Teräs80c802f2010-04-07 00:30:05 +00001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1491 * all the metrics... Shortly, bundle a bundle.
1492 */
1493
Herbert Xu25ee3282007-12-11 09:32:34 -08001494static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1495 struct xfrm_state **xfrm, int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08001496 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08001497 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001499 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001500 unsigned long now = jiffies;
1501 struct net_device *dev;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001502 struct xfrm_mode *inner_mode;
Herbert Xu25ee3282007-12-11 09:32:34 -08001503 struct dst_entry *dst_prev = NULL;
1504 struct dst_entry *dst0 = NULL;
1505 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001507 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001508 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001509 int trailer_len = 0;
1510 int tos;
1511 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001512 xfrm_address_t saddr, daddr;
1513
1514 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001515
1516 tos = xfrm_get_tos(fl, family);
1517 err = tos;
1518 if (tos < 0)
1519 goto put_states;
1520
1521 dst_hold(dst);
1522
1523 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001524 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001525 struct dst_entry *dst1 = &xdst->u.dst;
1526
1527 err = PTR_ERR(xdst);
1528 if (IS_ERR(xdst)) {
1529 dst_release(dst);
1530 goto put_states;
1531 }
1532
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001533 if (xfrm[i]->sel.family == AF_UNSPEC) {
1534 inner_mode = xfrm_ip2inner_mode(xfrm[i],
1535 xfrm_af2proto(family));
1536 if (!inner_mode) {
1537 err = -EAFNOSUPPORT;
1538 dst_release(dst);
1539 goto put_states;
1540 }
1541 } else
1542 inner_mode = xfrm[i]->inner_mode;
1543
Herbert Xu25ee3282007-12-11 09:32:34 -08001544 if (!dst_prev)
1545 dst0 = dst1;
1546 else {
1547 dst_prev->child = dst_clone(dst1);
1548 dst1->flags |= DST_NOHASH;
1549 }
1550
1551 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08001552 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08001553
1554 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1555 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001556 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1557 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001558 err = PTR_ERR(dst);
1559 if (IS_ERR(dst))
1560 goto put_states;
1561 } else
1562 dst_hold(dst);
1563
1564 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00001565 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08001566
David S. Millerf5b0a872012-07-19 12:31:33 -07001567 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
Herbert Xu25ee3282007-12-11 09:32:34 -08001568 dst1->flags |= DST_HOST;
1569 dst1->lastuse = now;
1570
1571 dst1->input = dst_discard;
Steffen Klassert43a4dea2011-05-09 19:36:38 +00001572 dst1->output = inner_mode->afinfo->output;
Herbert Xu25ee3282007-12-11 09:32:34 -08001573
1574 dst1->next = dst_prev;
1575 dst_prev = dst1;
1576
1577 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001578 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1579 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001580 trailer_len += xfrm[i]->props.trailer_len;
1581 }
1582
1583 dst_prev->child = dst;
1584 dst0->path = dst;
1585
1586 err = -ENODEV;
1587 dev = dst->dev;
1588 if (!dev)
1589 goto free_dst;
1590
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001591 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001592 xfrm_init_pmtu(dst_prev);
1593
1594 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1595 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1596
Herbert Xu87c1e122010-03-02 02:51:56 +00001597 err = xfrm_fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001598 if (err)
1599 goto free_dst;
1600
1601 dst_prev->header_len = header_len;
1602 dst_prev->trailer_len = trailer_len;
1603 header_len -= xdst->u.dst.xfrm->props.header_len;
1604 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1605 }
1606
1607out:
1608 return dst0;
1609
1610put_states:
1611 for (; i < nx; i++)
1612 xfrm_state_put(xfrm[i]);
1613free_dst:
1614 if (dst0)
1615 dst_free(dst0);
1616 dst0 = ERR_PTR(err);
1617 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001620static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001621xfrm_dst_alloc_copy(void **target, const void *src, int size)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001622{
1623 if (!*target) {
1624 *target = kmalloc(size, GFP_ATOMIC);
1625 if (!*target)
1626 return -ENOMEM;
1627 }
1628 memcpy(*target, src, size);
1629 return 0;
1630}
1631
1632static int inline
David S. Miller1786b382011-02-24 01:32:54 -05001633xfrm_dst_update_parent(struct dst_entry *dst, const struct xfrm_selector *sel)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001634{
1635#ifdef CONFIG_XFRM_SUB_POLICY
1636 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1637 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1638 sel, sizeof(*sel));
1639#else
1640 return 0;
1641#endif
1642}
1643
1644static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001645xfrm_dst_update_origin(struct dst_entry *dst, const struct flowi *fl)
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->origin), fl, sizeof(*fl));
1650#else
1651 return 0;
1652#endif
1653}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
David S. Miller73ff93c2011-02-22 18:33:42 -08001655static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001656 struct xfrm_policy **pols,
1657 int *num_pols, int *num_xfrms)
1658{
1659 int i;
1660
1661 if (*num_pols == 0 || !pols[0]) {
1662 *num_pols = 0;
1663 *num_xfrms = 0;
1664 return 0;
1665 }
1666 if (IS_ERR(pols[0]))
1667 return PTR_ERR(pols[0]);
1668
1669 *num_xfrms = pols[0]->xfrm_nr;
1670
1671#ifdef CONFIG_XFRM_SUB_POLICY
1672 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1673 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1674 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1675 XFRM_POLICY_TYPE_MAIN,
1676 fl, family,
1677 XFRM_POLICY_OUT);
1678 if (pols[1]) {
1679 if (IS_ERR(pols[1])) {
1680 xfrm_pols_put(pols, *num_pols);
1681 return PTR_ERR(pols[1]);
1682 }
1683 (*num_pols) ++;
1684 (*num_xfrms) += pols[1]->xfrm_nr;
1685 }
1686 }
1687#endif
1688 for (i = 0; i < *num_pols; i++) {
1689 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1690 *num_xfrms = -1;
1691 break;
1692 }
1693 }
1694
1695 return 0;
1696
1697}
1698
1699static struct xfrm_dst *
1700xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08001701 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001702 struct dst_entry *dst_orig)
1703{
1704 struct net *net = xp_net(pols[0]);
1705 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1706 struct dst_entry *dst;
1707 struct xfrm_dst *xdst;
1708 int err;
1709
1710 /* Try to instantiate a bundle */
1711 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00001712 if (err <= 0) {
1713 if (err != 0 && err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00001714 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1715 return ERR_PTR(err);
1716 }
1717
1718 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1719 if (IS_ERR(dst)) {
1720 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1721 return ERR_CAST(dst);
1722 }
1723
1724 xdst = (struct xfrm_dst *)dst;
1725 xdst->num_xfrms = err;
1726 if (num_pols > 1)
1727 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1728 else
1729 err = xfrm_dst_update_origin(dst, fl);
1730 if (unlikely(err)) {
1731 dst_free(dst);
1732 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1733 return ERR_PTR(err);
1734 }
1735
1736 xdst->num_pols = num_pols;
1737 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1738 xdst->policy_genid = atomic_read(&pols[0]->genid);
1739
1740 return xdst;
1741}
1742
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001743static void xfrm_policy_queue_process(unsigned long arg)
1744{
1745 int err = 0;
1746 struct sk_buff *skb;
1747 struct sock *sk;
1748 struct dst_entry *dst;
1749 struct net_device *dev;
1750 struct xfrm_policy *pol = (struct xfrm_policy *)arg;
1751 struct xfrm_policy_queue *pq = &pol->polq;
1752 struct flowi fl;
1753 struct sk_buff_head list;
1754
1755 spin_lock(&pq->hold_queue.lock);
1756 skb = skb_peek(&pq->hold_queue);
1757 dst = skb_dst(skb);
1758 sk = skb->sk;
1759 xfrm_decode_session(skb, &fl, dst->ops->family);
1760 spin_unlock(&pq->hold_queue.lock);
1761
1762 dst_hold(dst->path);
1763 dst = xfrm_lookup(xp_net(pol), dst->path, &fl,
1764 sk, 0);
1765 if (IS_ERR(dst))
1766 goto purge_queue;
1767
1768 if (dst->flags & DST_XFRM_QUEUE) {
1769 dst_release(dst);
1770
1771 if (pq->timeout >= XFRM_QUEUE_TMO_MAX)
1772 goto purge_queue;
1773
1774 pq->timeout = pq->timeout << 1;
1775 mod_timer(&pq->hold_timer, jiffies + pq->timeout);
1776 return;
1777 }
1778
1779 dst_release(dst);
1780
1781 __skb_queue_head_init(&list);
1782
1783 spin_lock(&pq->hold_queue.lock);
1784 pq->timeout = 0;
1785 skb_queue_splice_init(&pq->hold_queue, &list);
1786 spin_unlock(&pq->hold_queue.lock);
1787
1788 while (!skb_queue_empty(&list)) {
1789 skb = __skb_dequeue(&list);
1790
1791 xfrm_decode_session(skb, &fl, skb_dst(skb)->ops->family);
1792 dst_hold(skb_dst(skb)->path);
1793 dst = xfrm_lookup(xp_net(pol), skb_dst(skb)->path,
1794 &fl, skb->sk, 0);
1795 if (IS_ERR(dst)) {
1796 dev_put(skb->dev);
1797 kfree_skb(skb);
1798 continue;
1799 }
1800
1801 nf_reset(skb);
1802 skb_dst_drop(skb);
1803 skb_dst_set(skb, dst);
1804
1805 dev = skb->dev;
1806 err = dst_output(skb);
1807 dev_put(dev);
1808 }
1809
1810 return;
1811
1812purge_queue:
1813 pq->timeout = 0;
1814 xfrm_queue_purge(&pq->hold_queue);
1815}
1816
1817static int xdst_queue_output(struct sk_buff *skb)
1818{
1819 unsigned long sched_next;
1820 struct dst_entry *dst = skb_dst(skb);
1821 struct xfrm_dst *xdst = (struct xfrm_dst *) dst;
1822 struct xfrm_policy_queue *pq = &xdst->pols[0]->polq;
1823
1824 if (pq->hold_queue.qlen > XFRM_MAX_QUEUE_LEN) {
1825 kfree_skb(skb);
1826 return -EAGAIN;
1827 }
1828
1829 skb_dst_force(skb);
1830 dev_hold(skb->dev);
1831
1832 spin_lock_bh(&pq->hold_queue.lock);
1833
1834 if (!pq->timeout)
1835 pq->timeout = XFRM_QUEUE_TMO_MIN;
1836
1837 sched_next = jiffies + pq->timeout;
1838
1839 if (del_timer(&pq->hold_timer)) {
1840 if (time_before(pq->hold_timer.expires, sched_next))
1841 sched_next = pq->hold_timer.expires;
1842 }
1843
1844 __skb_queue_tail(&pq->hold_queue, skb);
1845 mod_timer(&pq->hold_timer, sched_next);
1846
1847 spin_unlock_bh(&pq->hold_queue.lock);
1848
1849 return 0;
1850}
1851
1852static struct xfrm_dst *xfrm_create_dummy_bundle(struct net *net,
1853 struct dst_entry *dst,
1854 const struct flowi *fl,
1855 int num_xfrms,
1856 u16 family)
1857{
1858 int err;
1859 struct net_device *dev;
1860 struct dst_entry *dst1;
1861 struct xfrm_dst *xdst;
1862
1863 xdst = xfrm_alloc_dst(net, family);
1864 if (IS_ERR(xdst))
1865 return xdst;
1866
1867 if (net->xfrm.sysctl_larval_drop || num_xfrms <= 0 ||
1868 (fl->flowi_flags & FLOWI_FLAG_CAN_SLEEP))
1869 return xdst;
1870
1871 dst1 = &xdst->u.dst;
1872 dst_hold(dst);
1873 xdst->route = dst;
1874
1875 dst_copy_metrics(dst1, dst);
1876
1877 dst1->obsolete = DST_OBSOLETE_FORCE_CHK;
1878 dst1->flags |= DST_HOST | DST_XFRM_QUEUE;
1879 dst1->lastuse = jiffies;
1880
1881 dst1->input = dst_discard;
1882 dst1->output = xdst_queue_output;
1883
1884 dst_hold(dst);
1885 dst1->child = dst;
1886 dst1->path = dst;
1887
1888 xfrm_init_path((struct xfrm_dst *)dst1, dst, 0);
1889
1890 err = -ENODEV;
1891 dev = dst->dev;
1892 if (!dev)
1893 goto free_dst;
1894
1895 err = xfrm_fill_dst(xdst, dev, fl);
1896 if (err)
1897 goto free_dst;
1898
1899out:
1900 return xdst;
1901
1902free_dst:
1903 dst_release(dst1);
1904 xdst = ERR_PTR(err);
1905 goto out;
1906}
1907
Timo Teräs80c802f2010-04-07 00:30:05 +00001908static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001909xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
Timo Teräs80c802f2010-04-07 00:30:05 +00001910 struct flow_cache_object *oldflo, void *ctx)
1911{
1912 struct dst_entry *dst_orig = (struct dst_entry *)ctx;
1913 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1914 struct xfrm_dst *xdst, *new_xdst;
1915 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
1916
1917 /* Check if the policies from old bundle are usable */
1918 xdst = NULL;
1919 if (oldflo) {
1920 xdst = container_of(oldflo, struct xfrm_dst, flo);
1921 num_pols = xdst->num_pols;
1922 num_xfrms = xdst->num_xfrms;
1923 pol_dead = 0;
1924 for (i = 0; i < num_pols; i++) {
1925 pols[i] = xdst->pols[i];
1926 pol_dead |= pols[i]->walk.dead;
1927 }
1928 if (pol_dead) {
1929 dst_free(&xdst->u.dst);
1930 xdst = NULL;
1931 num_pols = 0;
1932 num_xfrms = 0;
1933 oldflo = NULL;
1934 }
1935 }
1936
1937 /* Resolve policies to use if we couldn't get them from
1938 * previous cache entry */
1939 if (xdst == NULL) {
1940 num_pols = 1;
1941 pols[0] = __xfrm_policy_lookup(net, fl, family, dir);
1942 err = xfrm_expand_policies(fl, family, pols,
1943 &num_pols, &num_xfrms);
1944 if (err < 0)
1945 goto inc_error;
1946 if (num_pols == 0)
1947 return NULL;
1948 if (num_xfrms <= 0)
1949 goto make_dummy_bundle;
1950 }
1951
1952 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family, dst_orig);
1953 if (IS_ERR(new_xdst)) {
1954 err = PTR_ERR(new_xdst);
1955 if (err != -EAGAIN)
1956 goto error;
1957 if (oldflo == NULL)
1958 goto make_dummy_bundle;
1959 dst_hold(&xdst->u.dst);
1960 return oldflo;
Timo Teräsd809ec82010-07-12 21:29:42 +00001961 } else if (new_xdst == NULL) {
1962 num_xfrms = 0;
1963 if (oldflo == NULL)
1964 goto make_dummy_bundle;
1965 xdst->num_xfrms = 0;
1966 dst_hold(&xdst->u.dst);
1967 return oldflo;
Timo Teräs80c802f2010-04-07 00:30:05 +00001968 }
1969
1970 /* Kill the previous bundle */
1971 if (xdst) {
1972 /* The policies were stolen for newly generated bundle */
1973 xdst->num_pols = 0;
1974 dst_free(&xdst->u.dst);
1975 }
1976
1977 /* Flow cache does not have reference, it dst_free()'s,
1978 * but we do need to return one reference for original caller */
1979 dst_hold(&new_xdst->u.dst);
1980 return &new_xdst->flo;
1981
1982make_dummy_bundle:
1983 /* We found policies, but there's no bundles to instantiate:
1984 * either because the policy blocks, has no transformations or
1985 * we could not build template (no xfrm_states).*/
Steffen Klasserta0073fe2013-02-05 12:52:55 +01001986 xdst = xfrm_create_dummy_bundle(net, dst_orig, fl, num_xfrms, family);
Timo Teräs80c802f2010-04-07 00:30:05 +00001987 if (IS_ERR(xdst)) {
1988 xfrm_pols_put(pols, num_pols);
1989 return ERR_CAST(xdst);
1990 }
1991 xdst->num_pols = num_pols;
1992 xdst->num_xfrms = num_xfrms;
1993 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1994
1995 dst_hold(&xdst->u.dst);
1996 return &xdst->flo;
1997
1998inc_error:
1999 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
2000error:
2001 if (xdst != NULL)
2002 dst_free(&xdst->u.dst);
2003 else
2004 xfrm_pols_put(pols, num_pols);
2005 return ERR_PTR(err);
2006}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
David S. Miller2774c132011-03-01 14:59:04 -08002008static struct dst_entry *make_blackhole(struct net *net, u16 family,
2009 struct dst_entry *dst_orig)
2010{
2011 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
2012 struct dst_entry *ret;
2013
2014 if (!afinfo) {
2015 dst_release(dst_orig);
Li RongQing433a1952012-09-17 22:40:10 +00002016 return ERR_PTR(-EINVAL);
David S. Miller2774c132011-03-01 14:59:04 -08002017 } else {
2018 ret = afinfo->blackhole_route(net, dst_orig);
2019 }
2020 xfrm_policy_put_afinfo(afinfo);
2021
2022 return ret;
2023}
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025/* Main function: finds/creates a bundle for given flow.
2026 *
2027 * At the moment we eat a raw IP route. Mostly to speed up lookups
2028 * on interfaces with disabled IPsec.
2029 */
David S. Miller452edd52011-03-02 13:27:41 -08002030struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
2031 const struct flowi *fl,
2032 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002034 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00002035 struct flow_cache_object *flo;
2036 struct xfrm_dst *xdst;
David S. Miller452edd52011-03-02 13:27:41 -08002037 struct dst_entry *dst, *route;
Timo Teräs80c802f2010-04-07 00:30:05 +00002038 u16 family = dst_orig->ops->family;
Trent Jaegerdf718372005-12-13 23:12:27 -08002039 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Changli Gao4b021622010-04-27 21:20:22 +00002040 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042restart:
Timo Teräs80c802f2010-04-07 00:30:05 +00002043 dst = NULL;
2044 xdst = NULL;
2045 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002046
Thomas Graff7944fb2007-08-25 13:46:55 -07002047 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002048 num_pols = 1;
2049 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
2050 err = xfrm_expand_policies(fl, family, pols,
2051 &num_pols, &num_xfrms);
2052 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08002053 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00002054
2055 if (num_pols) {
2056 if (num_xfrms <= 0) {
2057 drop_pols = num_pols;
2058 goto no_transform;
2059 }
2060
2061 xdst = xfrm_resolve_and_create_bundle(
2062 pols, num_pols, fl,
2063 family, dst_orig);
2064 if (IS_ERR(xdst)) {
2065 xfrm_pols_put(pols, num_pols);
2066 err = PTR_ERR(xdst);
2067 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00002068 } else if (xdst == NULL) {
2069 num_xfrms = 0;
2070 drop_pols = num_pols;
2071 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00002072 }
2073
Steffen Klassertfbd50602011-03-15 21:12:49 +00002074 dst_hold(&xdst->u.dst);
2075
Timo Teräs80c802f2010-04-07 00:30:05 +00002076 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2077 xdst->u.dst.next = xfrm_policy_sk_bundles;
2078 xfrm_policy_sk_bundles = &xdst->u.dst;
2079 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2080
2081 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002082 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Timo Teräs80c802f2010-04-07 00:30:05 +00002085 if (xdst == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07002087 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08002088 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08002089 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Timo Teräs80c802f2010-04-07 00:30:05 +00002091 flo = flow_cache_lookup(net, fl, family, dir,
2092 xfrm_bundle_lookup, dst_orig);
2093 if (flo == NULL)
2094 goto nopol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002095 if (IS_ERR(flo)) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002096 err = PTR_ERR(flo);
Herbert Xu75b8c132007-12-11 04:38:08 -08002097 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08002098 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002099 xdst = container_of(flo, struct xfrm_dst, flo);
2100
2101 num_pols = xdst->num_pols;
2102 num_xfrms = xdst->num_xfrms;
2103 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy*) * num_pols);
2104 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106
Timo Teräs80c802f2010-04-07 00:30:05 +00002107 dst = &xdst->u.dst;
2108 if (route == NULL && num_xfrms > 0) {
2109 /* The only case when xfrm_bundle_lookup() returns a
2110 * bundle with null route, is when the template could
2111 * not be resolved. It means policies are there, but
2112 * bundle could not be created, since we don't yet
2113 * have the xfrm_state's. We need to wait for KM to
2114 * negotiate new SA's or bail out with error.*/
2115 if (net->xfrm.sysctl_larval_drop) {
2116 /* EREMOTE tells the caller to generate
2117 * a one-shot blackhole route. */
2118 dst_release(dst);
Timo Terasa1aa3482010-05-15 23:49:26 -07002119 xfrm_pols_put(pols, drop_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00002120 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller2774c132011-03-01 14:59:04 -08002121
David S. Miller452edd52011-03-02 13:27:41 -08002122 return make_blackhole(net, family, dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002123 }
David S. Miller1d28f422011-03-12 00:29:39 -05002124 if (fl->flowi_flags & FLOWI_FLAG_CAN_SLEEP) {
Timo Teräs80c802f2010-04-07 00:30:05 +00002125 DECLARE_WAITQUEUE(wait, current);
2126
2127 add_wait_queue(&net->xfrm.km_waitq, &wait);
2128 set_current_state(TASK_INTERRUPTIBLE);
2129 schedule();
2130 set_current_state(TASK_RUNNING);
2131 remove_wait_queue(&net->xfrm.km_waitq, &wait);
2132
2133 if (!signal_pending(current)) {
2134 dst_release(dst);
2135 goto restart;
2136 }
2137
2138 err = -ERESTART;
2139 } else
2140 err = -EAGAIN;
2141
2142 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
2143 goto error;
2144 }
2145
2146no_transform:
2147 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08002148 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Timo Teräs80c802f2010-04-07 00:30:05 +00002150 if ((flags & XFRM_LOOKUP_ICMP) &&
2151 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
2152 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08002153 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002154 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08002155
Timo Teräs80c802f2010-04-07 00:30:05 +00002156 for (i = 0; i < num_pols; i++)
2157 pols[i]->curlft.use_time = get_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08002158
Timo Teräs80c802f2010-04-07 00:30:05 +00002159 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002161 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07002162 err = -EPERM;
2163 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00002164 } else if (num_xfrms > 0) {
2165 /* Flow transformed */
Timo Teräs80c802f2010-04-07 00:30:05 +00002166 dst_release(dst_orig);
2167 } else {
2168 /* Flow passes untransformed */
2169 dst_release(dst);
David S. Miller452edd52011-03-02 13:27:41 -08002170 dst = dst_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002172ok:
2173 xfrm_pols_put(pols, drop_pols);
Gao feng0c183372012-05-26 01:30:53 +00002174 if (dst && dst->xfrm &&
2175 dst->xfrm->props.mode == XFRM_MODE_TUNNEL)
2176 dst->flags |= DST_XFRM_TUNNEL;
David S. Miller452edd52011-03-02 13:27:41 -08002177 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Timo Teräs80c802f2010-04-07 00:30:05 +00002179nopol:
David S. Miller452edd52011-03-02 13:27:41 -08002180 if (!(flags & XFRM_LOOKUP_ICMP)) {
2181 dst = dst_orig;
Timo Teräs80c802f2010-04-07 00:30:05 +00002182 goto ok;
David S. Miller452edd52011-03-02 13:27:41 -08002183 }
Timo Teräs80c802f2010-04-07 00:30:05 +00002184 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185error:
Timo Teräs80c802f2010-04-07 00:30:05 +00002186 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08002187dropdst:
2188 dst_release(dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00002189 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08002190 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192EXPORT_SYMBOL(xfrm_lookup);
2193
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002194static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08002195xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002196{
2197 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002198
2199 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
2200 return 0;
2201 x = skb->sp->xvec[idx];
2202 if (!x->type->reject)
2203 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07002204 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002205}
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207/* When skb is transformed back to its "native" form, we have to
2208 * check policy restrictions. At the moment we make this in maximally
2209 * stupid way. Shame on me. :-) Of course, connected sockets must
2210 * have policy cached at them.
2211 */
2212
2213static inline int
David S. Miller7db454b2011-02-24 01:43:01 -05002214xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 unsigned short family)
2216{
2217 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08002218 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 return x->id.proto == tmpl->id.proto &&
2220 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
2221 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
2222 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07002223 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07002224 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002225 !(x->props.mode != XFRM_MODE_TRANSPORT &&
2226 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002229/*
2230 * 0 or more than 0 is returned when validation is succeeded (either bypass
2231 * because of optional transport mode, or next index of the mathced secpath
2232 * state with the template.
2233 * -1 is returned when no matching template is found.
2234 * Otherwise "-2 - errored_index" is returned.
2235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236static inline int
David S. Miller22cccb72011-02-24 01:43:33 -05002237xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 unsigned short family)
2239{
2240 int idx = start;
2241
2242 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07002243 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 return start;
2245 } else
2246 start = -1;
2247 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002248 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002250 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
2251 if (start == -1)
2252 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
2256 return start;
2257}
2258
Herbert Xud5422ef2007-12-12 10:44:16 -08002259int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
2260 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261{
2262 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002263 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 if (unlikely(afinfo == NULL))
2266 return -EAFNOSUPPORT;
2267
Herbert Xud5422ef2007-12-12 10:44:16 -08002268 afinfo->decode_session(skb, fl, reverse);
David S. Miller1d28f422011-03-12 00:29:39 -05002269 err = security_xfrm_decode_session(skb, &fl->flowi_secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002271 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
Herbert Xud5422ef2007-12-12 10:44:16 -08002273EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
David S. Miller9a7386e2011-02-24 01:44:12 -05002275static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002278 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002279 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
2283
2284 return 0;
2285}
2286
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002287int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 unsigned short family)
2289{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002290 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002292 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2293 int npols = 0;
2294 int xfrm_nr;
2295 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08002296 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08002298 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002299 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Herbert Xud5422ef2007-12-12 10:44:16 -08002301 reverse = dir & ~XFRM_POLICY_MASK;
2302 dir &= XFRM_POLICY_MASK;
2303 fl_dir = policy_to_flow_dir(dir);
2304
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002305 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002306 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002308 }
2309
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08002310 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 /* First, check used SA against their selectors. */
2313 if (skb->sp) {
2314 int i;
2315
2316 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002317 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002318 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002319 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 }
2323 }
2324
2325 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002326 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002327 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002328 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002329 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002330 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002331 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002334 if (!pol) {
2335 struct flow_cache_object *flo;
2336
2337 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2338 xfrm_policy_lookup, NULL);
2339 if (IS_ERR_OR_NULL(flo))
2340 pol = ERR_CAST(flo);
2341 else
2342 pol = container_of(flo, struct xfrm_policy, flo);
2343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002345 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002346 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002347 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002348 }
James Morris134b0fc2006-10-05 15:42:27 -05002349
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002350 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002351 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002352 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002353 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002354 return 0;
2355 }
2356 return 1;
2357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
James Morris9d729f72007-03-04 16:12:44 -08002359 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002361 pols[0] = pol;
2362 npols ++;
2363#ifdef CONFIG_XFRM_SUB_POLICY
2364 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002365 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002366 &fl, family,
2367 XFRM_POLICY_IN);
2368 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002369 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002370 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002371 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002372 }
James Morris9d729f72007-03-04 16:12:44 -08002373 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002374 npols ++;
2375 }
2376 }
2377#endif
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 if (pol->action == XFRM_POLICY_ALLOW) {
2380 struct sec_path *sp;
2381 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002382 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002383 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002384 struct xfrm_tmpl **tpp = tp;
2385 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 int i, k;
2387
2388 if ((sp = skb->sp) == NULL)
2389 sp = &dummy;
2390
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002391 for (pi = 0; pi < npols; pi++) {
2392 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002393 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002394 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002395 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002396 }
2397 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002398 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002399 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002400 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002401 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2402 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2403 }
2404 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002405 if (npols > 1) {
2406 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2407 tpp = stp;
2408 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 /* For each tunnel xfrm, find the first matching tmpl.
2411 * For each tmpl before that, find corresponding xfrm.
2412 * Order is _important_. Later we will implement
2413 * some barriers, but at the moment barriers
2414 * are implied between each two transformations.
2415 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002416 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2417 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002418 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002419 if (k < -1)
2420 /* "-2 - errored_index" returned */
2421 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002422 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
2426
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002427 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002428 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002432 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 return 1;
2434 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002435 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002438 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002439reject_error:
2440 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 return 0;
2442}
2443EXPORT_SYMBOL(__xfrm_policy_check);
2444
2445int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2446{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002447 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002449 struct dst_entry *dst;
Eric Dumazet73137142011-03-15 15:26:43 -07002450 int res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002452 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002453 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Eric Dumazetfafeeb62010-06-01 10:04:49 +00002457 skb_dst_force(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +00002458
David S. Miller452edd52011-03-02 13:27:41 -08002459 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, 0);
2460 if (IS_ERR(dst)) {
Eric Dumazet73137142011-03-15 15:26:43 -07002461 res = 0;
David S. Miller452edd52011-03-02 13:27:41 -08002462 dst = NULL;
2463 }
Eric Dumazetadf30902009-06-02 05:19:30 +00002464 skb_dst_set(skb, dst);
2465 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467EXPORT_SYMBOL(__xfrm_route_forward);
2468
David S. Millerd49c73c2006-08-13 18:55:53 -07002469/* Optimize later using cookies and generation ids. */
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2472{
David S. Millerd49c73c2006-08-13 18:55:53 -07002473 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
David S. Millerf5b0a872012-07-19 12:31:33 -07002474 * to DST_OBSOLETE_FORCE_CHK to force all XFRM destinations to
2475 * get validated by dst_ops->check on every use. We do this
2476 * because when a normal route referenced by an XFRM dst is
2477 * obsoleted we do not go looking around for all parent
2478 * referencing XFRM dsts so that we can invalidate them. It
2479 * is just too much work. Instead we make the checks here on
2480 * every use. For example:
David S. Millerd49c73c2006-08-13 18:55:53 -07002481 *
2482 * XFRM dst A --> IPv4 dst X
2483 *
2484 * X is the "xdst->route" of A (X is also the "dst->path" of A
2485 * in this example). If X is marked obsolete, "A" will not
2486 * notice. That's what we are validating here via the
2487 * stale_bundle() check.
2488 *
2489 * When a policy's bundle is pruned, we dst_free() the XFRM
David S. Millerf5b0a872012-07-19 12:31:33 -07002490 * dst which causes it's ->obsolete field to be set to
2491 * DST_OBSOLETE_DEAD. If an XFRM dst has been pruned like
2492 * this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002493 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002494 if (dst->obsolete < 0 && !stale_bundle(dst))
2495 return dst;
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 return NULL;
2498}
2499
2500static int stale_bundle(struct dst_entry *dst)
2501{
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002502 return !xfrm_bundle_ok((struct xfrm_dst *)dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503}
2504
Herbert Xuaabc9762005-05-03 16:27:10 -07002505void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002508 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002509 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 dev_put(dev);
2511 }
2512}
Herbert Xuaabc9762005-05-03 16:27:10 -07002513EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515static void xfrm_link_failure(struct sk_buff *skb)
2516{
2517 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518}
2519
2520static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2521{
2522 if (dst) {
2523 if (dst->obsolete) {
2524 dst_release(dst);
2525 dst = NULL;
2526 }
2527 }
2528 return dst;
2529}
2530
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002531static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Timo Teräs80c802f2010-04-07 00:30:05 +00002533 struct dst_entry *head, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Timo Teräs80c802f2010-04-07 00:30:05 +00002535 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2536 head = xfrm_policy_sk_bundles;
2537 xfrm_policy_sk_bundles = NULL;
2538 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2539
2540 while (head) {
2541 next = head->next;
2542 dst_free(head);
2543 head = next;
2544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
2546
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002547static void xfrm_garbage_collect(struct net *net)
2548{
2549 flow_cache_flush();
2550 __xfrm_garbage_collect(net);
2551}
2552
2553static void xfrm_garbage_collect_deferred(struct net *net)
2554{
2555 flow_cache_flush_deferred();
2556 __xfrm_garbage_collect(net);
2557}
2558
Herbert Xu25ee3282007-12-11 09:32:34 -08002559static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
2561 do {
2562 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2563 u32 pmtu, route_mtu_cached;
2564
2565 pmtu = dst_mtu(dst->child);
2566 xdst->child_mtu_cached = pmtu;
2567
2568 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2569
2570 route_mtu_cached = dst_mtu(xdst->route);
2571 xdst->route_mtu_cached = route_mtu_cached;
2572
2573 if (pmtu > route_mtu_cached)
2574 pmtu = route_mtu_cached;
2575
David S. Millerdefb3512010-12-08 21:16:57 -08002576 dst_metric_set(dst, RTAX_MTU, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 } while ((dst = dst->next));
2578}
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580/* Check that the bundle accepts the flow and its components are
2581 * still valid.
2582 */
2583
Steffen Klassert12fdb4d2011-06-29 23:18:20 +00002584static int xfrm_bundle_ok(struct xfrm_dst *first)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
2586 struct dst_entry *dst = &first->u.dst;
2587 struct xfrm_dst *last;
2588 u32 mtu;
2589
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002590 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 (dst->dev && !netif_running(dst->dev)))
2592 return 0;
2593
Steffen Klasserta0073fe2013-02-05 12:52:55 +01002594 if (dst->flags & DST_XFRM_QUEUE)
2595 return 1;
2596
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 last = NULL;
2598
2599 do {
2600 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2603 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00002604 if (xdst->xfrm_genid != dst->xfrm->genid)
2605 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07002606 if (xdst->num_pols > 0 &&
2607 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07002608 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 mtu = dst_mtu(dst->child);
2611 if (xdst->child_mtu_cached != mtu) {
2612 last = xdst;
2613 xdst->child_mtu_cached = mtu;
2614 }
2615
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002616 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 return 0;
2618 mtu = dst_mtu(xdst->route);
2619 if (xdst->route_mtu_cached != mtu) {
2620 last = xdst;
2621 xdst->route_mtu_cached = mtu;
2622 }
2623
2624 dst = dst->child;
2625 } while (dst->xfrm);
2626
2627 if (likely(!last))
2628 return 1;
2629
2630 mtu = last->child_mtu_cached;
2631 for (;;) {
2632 dst = &last->u.dst;
2633
2634 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2635 if (mtu > last->route_mtu_cached)
2636 mtu = last->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08002637 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 if (last == first)
2640 break;
2641
Patrick McHardybd0bf072007-07-18 01:55:52 -07002642 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 last->child_mtu_cached = mtu;
2644 }
2645
2646 return 1;
2647}
2648
David S. Miller0dbaee32010-12-13 12:52:14 -08002649static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2650{
2651 return dst_metric_advmss(dst->path);
2652}
2653
Steffen Klassertebb762f2011-11-23 02:12:51 +00002654static unsigned int xfrm_mtu(const struct dst_entry *dst)
David S. Millerd33e4552010-12-14 13:01:14 -08002655{
Steffen Klassert618f9bc2011-11-23 02:13:31 +00002656 unsigned int mtu = dst_metric_raw(dst, RTAX_MTU);
2657
2658 return mtu ? : dst_mtu(dst->path);
David S. Millerd33e4552010-12-14 13:01:14 -08002659}
2660
David S. Millerf894cbf2012-07-02 21:52:24 -07002661static struct neighbour *xfrm_neigh_lookup(const struct dst_entry *dst,
2662 struct sk_buff *skb,
2663 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -07002664{
David S. Millerf894cbf2012-07-02 21:52:24 -07002665 return dst->path->ops->neigh_lookup(dst, skb, daddr);
David S. Millerd3aaeb32011-07-18 00:40:17 -07002666}
2667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2669{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002670 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 int err = 0;
2672 if (unlikely(afinfo == NULL))
2673 return -EINVAL;
2674 if (unlikely(afinfo->family >= NPROTO))
2675 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002676 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2678 err = -ENOBUFS;
2679 else {
2680 struct dst_ops *dst_ops = afinfo->dst_ops;
2681 if (likely(dst_ops->kmem_cachep == NULL))
2682 dst_ops->kmem_cachep = xfrm_dst_cache;
2683 if (likely(dst_ops->check == NULL))
2684 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08002685 if (likely(dst_ops->default_advmss == NULL))
2686 dst_ops->default_advmss = xfrm_default_advmss;
Steffen Klassertebb762f2011-11-23 02:12:51 +00002687 if (likely(dst_ops->mtu == NULL))
2688 dst_ops->mtu = xfrm_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 if (likely(dst_ops->negative_advice == NULL))
2690 dst_ops->negative_advice = xfrm_negative_advice;
2691 if (likely(dst_ops->link_failure == NULL))
2692 dst_ops->link_failure = xfrm_link_failure;
David S. Millerd3aaeb32011-07-18 00:40:17 -07002693 if (likely(dst_ops->neigh_lookup == NULL))
2694 dst_ops->neigh_lookup = xfrm_neigh_lookup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 if (likely(afinfo->garbage_collect == NULL))
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002696 afinfo->garbage_collect = xfrm_garbage_collect_deferred;
Priyanka Jain418a99a2012-08-12 21:22:29 +00002697 rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002699 spin_unlock(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002700
2701 rtnl_lock();
2702 for_each_net(net) {
2703 struct dst_ops *xfrm_dst_ops;
2704
2705 switch (afinfo->family) {
2706 case AF_INET:
2707 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2708 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002709#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002710 case AF_INET6:
2711 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2712 break;
2713#endif
2714 default:
2715 BUG();
2716 }
2717 *xfrm_dst_ops = *afinfo->dst_ops;
2718 }
2719 rtnl_unlock();
2720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 return err;
2722}
2723EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2724
2725int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2726{
2727 int err = 0;
2728 if (unlikely(afinfo == NULL))
2729 return -EINVAL;
2730 if (unlikely(afinfo->family >= NPROTO))
2731 return -EAFNOSUPPORT;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002732 spin_lock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2734 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2735 err = -EINVAL;
Eric Dumazetef8531b2012-08-19 12:31:48 +02002736 else
2737 RCU_INIT_POINTER(xfrm_policy_afinfo[afinfo->family],
2738 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 }
Eric Dumazetef8531b2012-08-19 12:31:48 +02002740 spin_unlock(&xfrm_policy_afinfo_lock);
2741 if (!err) {
2742 struct dst_ops *dst_ops = afinfo->dst_ops;
2743
2744 synchronize_rcu();
2745
2746 dst_ops->kmem_cachep = NULL;
2747 dst_ops->check = NULL;
2748 dst_ops->negative_advice = NULL;
2749 dst_ops->link_failure = NULL;
2750 afinfo->garbage_collect = NULL;
2751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 return err;
2753}
2754EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2755
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002756static void __net_init xfrm_dst_ops_init(struct net *net)
2757{
2758 struct xfrm_policy_afinfo *afinfo;
2759
Eric Dumazetef8531b2012-08-19 12:31:48 +02002760 rcu_read_lock();
2761 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002762 if (afinfo)
2763 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002764#if IS_ENABLED(CONFIG_IPV6)
Eric Dumazetef8531b2012-08-19 12:31:48 +02002765 afinfo = rcu_dereference(xfrm_policy_afinfo[AF_INET6]);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002766 if (afinfo)
2767 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2768#endif
Priyanka Jain418a99a2012-08-12 21:22:29 +00002769 rcu_read_unlock();
Herbert Xu546be242006-05-27 23:03:58 -07002770}
2771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2773{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002774 struct net_device *dev = ptr;
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 switch (event) {
2777 case NETDEV_DOWN:
Steffen Klassertc0ed1c12011-12-21 16:48:08 -05002778 xfrm_garbage_collect(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 }
2780 return NOTIFY_DONE;
2781}
2782
2783static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002784 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785};
2786
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002787#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002788static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002789{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002790 int rv;
2791
Tejun Heo7d720c32010-02-16 15:20:26 +00002792 if (snmp_mib_init((void __percpu **)net->mib.xfrm_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00002793 sizeof(struct linux_xfrm_mib),
2794 __alignof__(struct linux_xfrm_mib)) < 0)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002795 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002796 rv = xfrm_proc_init(net);
2797 if (rv < 0)
Tejun Heo7d720c32010-02-16 15:20:26 +00002798 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002799 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002800}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002801
2802static void xfrm_statistics_fini(struct net *net)
2803{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002804 xfrm_proc_fini(net);
Tejun Heo7d720c32010-02-16 15:20:26 +00002805 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002806}
2807#else
2808static int __net_init xfrm_statistics_init(struct net *net)
2809{
2810 return 0;
2811}
2812
2813static void xfrm_statistics_fini(struct net *net)
2814{
2815}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002816#endif
2817
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002818static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819{
David S. Miller2518c7c2006-08-24 04:45:07 -07002820 unsigned int hmask, sz;
2821 int dir;
2822
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002823 if (net_eq(net, &init_net))
2824 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002826 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002827 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
David S. Miller2518c7c2006-08-24 04:45:07 -07002829 hmask = 8 - 1;
2830 sz = (hmask+1) * sizeof(struct hlist_head);
2831
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002832 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2833 if (!net->xfrm.policy_byidx)
2834 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002835 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002836
2837 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2838 struct xfrm_policy_hash *htab;
2839
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002840 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002841 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002842
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002843 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002844 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002845 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002846 goto out_bydst;
2847 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002848 }
2849
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002850 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002851 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002852 if (net_eq(net, &init_net))
2853 register_netdevice_notifier(&xfrm_dev_notifier);
2854 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002855
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002856out_bydst:
2857 for (dir--; dir >= 0; dir--) {
2858 struct xfrm_policy_hash *htab;
2859
2860 htab = &net->xfrm.policy_bydst[dir];
2861 xfrm_hash_free(htab->table, sz);
2862 }
2863 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002864out_byidx:
2865 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866}
2867
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002868static void xfrm_policy_fini(struct net *net)
2869{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002870 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002871 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002872 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002873
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002874 flush_work(&net->xfrm.policy_hash_work);
2875#ifdef CONFIG_XFRM_SUB_POLICY
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002876 audit_info.loginuid = INVALID_UID;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002877 audit_info.sessionid = -1;
2878 audit_info.secid = 0;
2879 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2880#endif
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002881 audit_info.loginuid = INVALID_UID;
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002882 audit_info.sessionid = -1;
2883 audit_info.secid = 0;
2884 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002885
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002886 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002887
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002888 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002889 struct xfrm_policy_hash *htab;
2890
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002891 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002892
2893 htab = &net->xfrm.policy_bydst[dir];
Michal Kubecek5b653b22013-01-18 16:03:48 +01002894 sz = (htab->hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002895 WARN_ON(!hlist_empty(htab->table));
2896 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002897 }
2898
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002899 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002900 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2901 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002902}
2903
2904static int __net_init xfrm_net_init(struct net *net)
2905{
2906 int rv;
2907
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002908 rv = xfrm_statistics_init(net);
2909 if (rv < 0)
2910 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002911 rv = xfrm_state_init(net);
2912 if (rv < 0)
2913 goto out_state;
2914 rv = xfrm_policy_init(net);
2915 if (rv < 0)
2916 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002917 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002918 rv = xfrm_sysctl_init(net);
2919 if (rv < 0)
2920 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002921 return 0;
2922
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002923out_sysctl:
2924 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002925out_policy:
2926 xfrm_state_fini(net);
2927out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002928 xfrm_statistics_fini(net);
2929out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002930 return rv;
2931}
2932
2933static void __net_exit xfrm_net_exit(struct net *net)
2934{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002935 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002936 xfrm_policy_fini(net);
2937 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002938 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002939}
2940
2941static struct pernet_operations __net_initdata xfrm_net_ops = {
2942 .init = xfrm_net_init,
2943 .exit = xfrm_net_exit,
2944};
2945
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946void __init xfrm_init(void)
2947{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002948 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 xfrm_input_init();
2950}
2951
Joy Lattenab5f5e82007-09-17 11:51:22 -07002952#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002953static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2954 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002955{
Paul Moore875179f2007-12-01 23:27:18 +11002956 struct xfrm_sec_ctx *ctx = xp->security;
2957 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002958
Paul Moore875179f2007-12-01 23:27:18 +11002959 if (ctx)
2960 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2961 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2962
2963 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002964 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002965 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002966 if (sel->prefixlen_s != 32)
2967 audit_log_format(audit_buf, " src_prefixlen=%d",
2968 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002969 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002970 if (sel->prefixlen_d != 32)
2971 audit_log_format(audit_buf, " dst_prefixlen=%d",
2972 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002973 break;
2974 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002975 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002976 if (sel->prefixlen_s != 128)
2977 audit_log_format(audit_buf, " src_prefixlen=%d",
2978 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002979 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002980 if (sel->prefixlen_d != 128)
2981 audit_log_format(audit_buf, " dst_prefixlen=%d",
2982 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002983 break;
2984 }
2985}
2986
Paul Moore68277ac2007-12-20 20:49:33 -08002987void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002988 kuid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002989{
2990 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002991
Paul Mooreafeb14b2007-12-21 14:58:11 -08002992 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002993 if (audit_buf == NULL)
2994 return;
Eric Paris25323862008-04-18 10:09:25 -04002995 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002996 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002997 xfrm_audit_common_policyinfo(xp, audit_buf);
2998 audit_log_end(audit_buf);
2999}
3000EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
3001
Paul Moore68277ac2007-12-20 20:49:33 -08003002void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07003003 kuid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07003004{
3005 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07003006
Paul Mooreafeb14b2007-12-21 14:58:11 -08003007 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07003008 if (audit_buf == NULL)
3009 return;
Eric Paris25323862008-04-18 10:09:25 -04003010 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08003011 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07003012 xfrm_audit_common_policyinfo(xp, audit_buf);
3013 audit_log_end(audit_buf);
3014}
3015EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
3016#endif
3017
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003018#ifdef CONFIG_XFRM_MIGRATE
David S. Millerbc9b35a2012-05-15 15:04:57 -04003019static bool xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
3020 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003021{
3022 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
3023 if (sel_tgt->family == sel_cmp->family &&
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003024 xfrm_addr_equal(&sel_tgt->daddr, &sel_cmp->daddr,
3025 sel_cmp->family) &&
3026 xfrm_addr_equal(&sel_tgt->saddr, &sel_cmp->saddr,
3027 sel_cmp->family) &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003028 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
3029 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003030 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003031 }
3032 } else {
3033 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
David S. Millerbc9b35a2012-05-15 15:04:57 -04003034 return true;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003035 }
3036 }
David S. Millerbc9b35a2012-05-15 15:04:57 -04003037 return false;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003038}
3039
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003040static struct xfrm_policy * xfrm_migrate_policy_find(const struct xfrm_selector *sel,
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003041 u8 dir, u8 type)
3042{
3043 struct xfrm_policy *pol, *ret = NULL;
3044 struct hlist_node *entry;
3045 struct hlist_head *chain;
3046 u32 priority = ~0U;
3047
3048 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08003049 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003050 hlist_for_each_entry(pol, entry, chain, bydst) {
3051 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3052 pol->type == type) {
3053 ret = pol;
3054 priority = ret->priority;
3055 break;
3056 }
3057 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08003058 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003059 hlist_for_each_entry(pol, entry, chain, bydst) {
3060 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
3061 pol->type == type &&
3062 pol->priority < priority) {
3063 ret = pol;
3064 break;
3065 }
3066 }
3067
3068 if (ret)
3069 xfrm_pol_hold(ret);
3070
3071 read_unlock_bh(&xfrm_policy_lock);
3072
3073 return ret;
3074}
3075
David S. Millerdd701752011-02-24 00:21:08 -05003076static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003077{
3078 int match = 0;
3079
3080 if (t->mode == m->mode && t->id.proto == m->proto &&
3081 (m->reqid == 0 || t->reqid == m->reqid)) {
3082 switch (t->mode) {
3083 case XFRM_MODE_TUNNEL:
3084 case XFRM_MODE_BEET:
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003085 if (xfrm_addr_equal(&t->id.daddr, &m->old_daddr,
3086 m->old_family) &&
3087 xfrm_addr_equal(&t->saddr, &m->old_saddr,
3088 m->old_family)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003089 match = 1;
3090 }
3091 break;
3092 case XFRM_MODE_TRANSPORT:
3093 /* in case of transport mode, template does not store
3094 any IP addresses, hence we just compare mode and
3095 protocol */
3096 match = 1;
3097 break;
3098 default:
3099 break;
3100 }
3101 }
3102 return match;
3103}
3104
3105/* update endpoint address(es) of template(s) */
3106static int xfrm_policy_migrate(struct xfrm_policy *pol,
3107 struct xfrm_migrate *m, int num_migrate)
3108{
3109 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003110 int i, j, n = 0;
3111
3112 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07003113 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003114 /* target policy has been deleted */
3115 write_unlock_bh(&pol->lock);
3116 return -ENOENT;
3117 }
3118
3119 for (i = 0; i < pol->xfrm_nr; i++) {
3120 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
3121 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
3122 continue;
3123 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07003124 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
3125 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003126 continue;
3127 /* update endpoints */
3128 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
3129 sizeof(pol->xfrm_vec[i].id.daddr));
3130 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
3131 sizeof(pol->xfrm_vec[i].saddr));
3132 pol->xfrm_vec[i].encap_family = mp->new_family;
3133 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00003134 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003135 }
3136 }
3137
3138 write_unlock_bh(&pol->lock);
3139
3140 if (!n)
3141 return -ENODATA;
3142
3143 return 0;
3144}
3145
David S. Millerdd701752011-02-24 00:21:08 -05003146static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003147{
3148 int i, j;
3149
3150 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
3151 return -EINVAL;
3152
3153 for (i = 0; i < num_migrate; i++) {
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00003154 if (xfrm_addr_equal(&m[i].old_daddr, &m[i].new_daddr,
3155 m[i].old_family) &&
3156 xfrm_addr_equal(&m[i].old_saddr, &m[i].new_saddr,
3157 m[i].old_family))
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003158 return -EINVAL;
3159 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
3160 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
3161 return -EINVAL;
3162
3163 /* check if there is any duplicated entry */
3164 for (j = i + 1; j < num_migrate; j++) {
3165 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
3166 sizeof(m[i].old_daddr)) &&
3167 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
3168 sizeof(m[i].old_saddr)) &&
3169 m[i].proto == m[j].proto &&
3170 m[i].mode == m[j].mode &&
3171 m[i].reqid == m[j].reqid &&
3172 m[i].old_family == m[j].old_family)
3173 return -EINVAL;
3174 }
3175 }
3176
3177 return 0;
3178}
3179
David S. Millerb4b7c0b2011-02-24 00:35:06 -05003180int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003181 struct xfrm_migrate *m, int num_migrate,
3182 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003183{
3184 int i, err, nx_cur = 0, nx_new = 0;
3185 struct xfrm_policy *pol = NULL;
3186 struct xfrm_state *x, *xc;
3187 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
3188 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
3189 struct xfrm_migrate *mp;
3190
3191 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
3192 goto out;
3193
3194 /* Stage 1 - find policy */
3195 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
3196 err = -ENOENT;
3197 goto out;
3198 }
3199
3200 /* Stage 2 - find and update state(s) */
3201 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
3202 if ((x = xfrm_migrate_state_find(mp))) {
3203 x_cur[nx_cur] = x;
3204 nx_cur++;
3205 if ((xc = xfrm_state_migrate(x, mp))) {
3206 x_new[nx_new] = xc;
3207 nx_new++;
3208 } else {
3209 err = -ENODATA;
3210 goto restore_state;
3211 }
3212 }
3213 }
3214
3215 /* Stage 3 - update policy */
3216 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
3217 goto restore_state;
3218
3219 /* Stage 4 - delete old state(s) */
3220 if (nx_cur) {
3221 xfrm_states_put(x_cur, nx_cur);
3222 xfrm_states_delete(x_cur, nx_cur);
3223 }
3224
3225 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07003226 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003227
3228 xfrm_pol_put(pol);
3229
3230 return 0;
3231out:
3232 return err;
3233
3234restore_state:
3235 if (pol)
3236 xfrm_pol_put(pol);
3237 if (nx_cur)
3238 xfrm_states_put(x_cur, nx_cur);
3239 if (nx_new)
3240 xfrm_states_delete(x_new, nx_new);
3241
3242 return err;
3243}
David S. Millere610e672007-02-08 13:29:15 -08003244EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08003245#endif