blob: dd6243f9d933fd74c8a08916e80df347261763f5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/xfrm.h>
30#include <net/ip.h>
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080031#ifdef CONFIG_XFRM_STATISTICS
32#include <net/snmp.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David S. Miller44e36b42006-08-24 04:50:50 -070035#include "xfrm_hash.h"
36
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080037DEFINE_MUTEX(xfrm_cfg_mutex);
38EXPORT_SYMBOL(xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Timo Teräs80c802f2010-04-07 00:30:05 +000040static DEFINE_SPINLOCK(xfrm_policy_sk_bundle_lock);
41static struct dst_entry *xfrm_policy_sk_bundles;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static DEFINE_RWLOCK(xfrm_policy_lock);
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
45static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
46
Christoph Lametere18b8902006-12-06 20:33:20 -080047static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
50static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080051static void xfrm_init_pmtu(struct dst_entry *dst);
Timo Teräs80c802f2010-04-07 00:30:05 +000052static int stale_bundle(struct dst_entry *dst);
David S. Millerca116922011-03-11 15:59:31 -050053static int xfrm_bundle_ok(struct xfrm_dst *xdst, int family);
stephen hemminger1c4c40c2010-10-15 05:14:19 +000054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Wei Yongjun29fa0b32008-12-03 00:33:09 -080056static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
57 int dir);
58
Andrew Morton77681022006-11-08 22:46:26 -080059static inline int
David S. Miller200ce962011-02-24 00:12:25 -050060__xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080061{
62 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
63 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
64 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
65 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
David S. Miller1d28f422011-03-12 00:29:39 -050066 (fl->flowi_proto == sel->proto || !sel->proto) &&
67 (fl->flowi_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080068}
69
70static inline int
David S. Miller200ce962011-02-24 00:12:25 -050071__xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080072{
73 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
74 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
75 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
76 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
David S. Miller1d28f422011-03-12 00:29:39 -050077 (fl->flowi_proto == sel->proto || !sel->proto) &&
78 (fl->flowi_oif == sel->ifindex || !sel->ifindex);
Andrew Morton77681022006-11-08 22:46:26 -080079}
80
David S. Miller200ce962011-02-24 00:12:25 -050081int xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
David S. Millere1ad2ab2011-02-22 18:07:39 -080082 unsigned short family)
Andrew Morton77681022006-11-08 22:46:26 -080083{
84 switch (family) {
85 case AF_INET:
86 return __xfrm4_selector_match(sel, fl);
87 case AF_INET6:
88 return __xfrm6_selector_match(sel, fl);
89 }
90 return 0;
91}
92
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -080093static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
David S. Miller6418c4e2011-02-24 00:16:53 -050094 const xfrm_address_t *saddr,
95 const xfrm_address_t *daddr,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090096 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080098 struct xfrm_policy_afinfo *afinfo;
99 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Herbert Xu25ee3282007-12-11 09:32:34 -0800101 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800103 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800105 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900108
109 return dst;
110}
111
112static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
113 xfrm_address_t *prev_saddr,
114 xfrm_address_t *prev_daddr,
115 int family)
116{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800117 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900118 xfrm_address_t *saddr = &x->props.saddr;
119 xfrm_address_t *daddr = &x->id.daddr;
120 struct dst_entry *dst;
121
122 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
123 saddr = x->coaddr;
124 daddr = prev_daddr;
125 }
126 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
127 saddr = prev_saddr;
128 daddr = x->coaddr;
129 }
130
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800131 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900132
133 if (!IS_ERR(dst)) {
134 if (prev_saddr != saddr)
135 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
136 if (prev_daddr != daddr)
137 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
138 }
139
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800140 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static inline unsigned long make_jiffies(long secs)
144{
145 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
146 return MAX_SCHEDULE_TIMEOUT-1;
147 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900148 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151static void xfrm_policy_timer(unsigned long data)
152{
153 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800154 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 long next = LONG_MAX;
156 int warn = 0;
157 int dir;
158
159 read_lock(&xp->lock);
160
Timo Teräsea2dea92010-03-31 00:17:05 +0000161 if (unlikely(xp->walk.dead))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 goto out;
163
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700164 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 if (xp->lft.hard_add_expires_seconds) {
167 long tmo = xp->lft.hard_add_expires_seconds +
168 xp->curlft.add_time - now;
169 if (tmo <= 0)
170 goto expired;
171 if (tmo < next)
172 next = tmo;
173 }
174 if (xp->lft.hard_use_expires_seconds) {
175 long tmo = xp->lft.hard_use_expires_seconds +
176 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
177 if (tmo <= 0)
178 goto expired;
179 if (tmo < next)
180 next = tmo;
181 }
182 if (xp->lft.soft_add_expires_seconds) {
183 long tmo = xp->lft.soft_add_expires_seconds +
184 xp->curlft.add_time - now;
185 if (tmo <= 0) {
186 warn = 1;
187 tmo = XFRM_KM_TIMEOUT;
188 }
189 if (tmo < next)
190 next = tmo;
191 }
192 if (xp->lft.soft_use_expires_seconds) {
193 long tmo = xp->lft.soft_use_expires_seconds +
194 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
195 if (tmo <= 0) {
196 warn = 1;
197 tmo = XFRM_KM_TIMEOUT;
198 }
199 if (tmo < next)
200 next = tmo;
201 }
202
203 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800204 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (next != LONG_MAX &&
206 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
207 xfrm_pol_hold(xp);
208
209out:
210 read_unlock(&xp->lock);
211 xfrm_pol_put(xp);
212 return;
213
214expired:
215 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700216 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800217 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 xfrm_pol_put(xp);
219}
220
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000221static struct flow_cache_object *xfrm_policy_flo_get(struct flow_cache_object *flo)
222{
223 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
224
225 if (unlikely(pol->walk.dead))
226 flo = NULL;
227 else
228 xfrm_pol_hold(pol);
229
230 return flo;
231}
232
233static int xfrm_policy_flo_check(struct flow_cache_object *flo)
234{
235 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
236
237 return !pol->walk.dead;
238}
239
240static void xfrm_policy_flo_delete(struct flow_cache_object *flo)
241{
242 xfrm_pol_put(container_of(flo, struct xfrm_policy, flo));
243}
244
245static const struct flow_cache_ops xfrm_policy_fc_ops = {
246 .get = xfrm_policy_flo_get,
247 .check = xfrm_policy_flo_check,
248 .delete = xfrm_policy_flo_delete,
249};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
252 * SPD calls.
253 */
254
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800255struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct xfrm_policy *policy;
258
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700259 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800262 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700263 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700264 INIT_HLIST_NODE(&policy->bydst);
265 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700267 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800268 setup_timer(&policy->timer, xfrm_policy_timer,
269 (unsigned long)policy);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000270 policy->flo.ops = &xfrm_policy_fc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272 return policy;
273}
274EXPORT_SYMBOL(xfrm_policy_alloc);
275
276/* Destroy xfrm_policy: descendant resources must be released to this moment. */
277
WANG Cong64c31b32008-01-07 22:34:29 -0800278void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Herbert Xu12a169e2008-10-01 07:03:24 -0700280 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (del_timer(&policy->timer))
283 BUG();
284
Paul Moore03e1ad72008-04-12 19:07:52 -0700285 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 kfree(policy);
287}
WANG Cong64c31b32008-01-07 22:34:29 -0800288EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/* Rule must be locked. Release descentant resources, announce
291 * entry dead. The rule must be unlinked from lists to the moment.
292 */
293
294static void xfrm_policy_kill(struct xfrm_policy *policy)
295{
Herbert Xu12a169e2008-10-01 07:03:24 -0700296 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Timo Teräs285ead12010-04-07 00:30:06 +0000298 atomic_inc(&policy->genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Timo Teräs285ead12010-04-07 00:30:06 +0000300 if (del_timer(&policy->timer))
301 xfrm_pol_put(policy);
302
303 xfrm_pol_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
David S. Miller2518c7c2006-08-24 04:45:07 -0700306static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
307
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800308static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700309{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800310 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700311}
312
David S. Miller5f803b52011-02-24 00:33:19 -0500313static struct hlist_head *policy_hash_bysel(struct net *net,
314 const struct xfrm_selector *sel,
315 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700316{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800317 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700318 unsigned int hash = __sel_hash(sel, family, hmask);
319
320 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800321 &net->xfrm.policy_inexact[dir] :
322 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700323}
324
David S. Miller5f803b52011-02-24 00:33:19 -0500325static struct hlist_head *policy_hash_direct(struct net *net,
326 const xfrm_address_t *daddr,
327 const xfrm_address_t *saddr,
328 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700329{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800330 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700331 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
332
Alexey Dobriyan11219942008-11-25 17:33:06 -0800333 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700334}
335
David S. Miller2518c7c2006-08-24 04:45:07 -0700336static void xfrm_dst_hash_transfer(struct hlist_head *list,
337 struct hlist_head *ndsttable,
338 unsigned int nhashmask)
339{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800340 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700341 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800342 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700343
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800344redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700345 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
346 unsigned int h;
347
348 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
349 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800350 if (!entry0) {
351 hlist_del(entry);
352 hlist_add_head(&pol->bydst, ndsttable+h);
353 h0 = h;
354 } else {
355 if (h != h0)
356 continue;
357 hlist_del(entry);
358 hlist_add_after(entry0, &pol->bydst);
359 }
360 entry0 = entry;
361 }
362 if (!hlist_empty(list)) {
363 entry0 = NULL;
364 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700365 }
366}
367
368static void xfrm_idx_hash_transfer(struct hlist_head *list,
369 struct hlist_head *nidxtable,
370 unsigned int nhashmask)
371{
372 struct hlist_node *entry, *tmp;
373 struct xfrm_policy *pol;
374
375 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
376 unsigned int h;
377
378 h = __idx_hash(pol->index, nhashmask);
379 hlist_add_head(&pol->byidx, nidxtable+h);
380 }
381}
382
383static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
384{
385 return ((old_hmask + 1) << 1) - 1;
386}
387
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800388static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700389{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800390 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700391 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
392 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800393 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700394 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700395 int i;
396
397 if (!ndst)
398 return;
399
400 write_lock_bh(&xfrm_policy_lock);
401
402 for (i = hmask; i >= 0; i--)
403 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
404
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800405 net->xfrm.policy_bydst[dir].table = ndst;
406 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700407
408 write_unlock_bh(&xfrm_policy_lock);
409
David S. Miller44e36b42006-08-24 04:50:50 -0700410 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700411}
412
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800413static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700414{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800415 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700416 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
417 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800418 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700419 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700420 int i;
421
422 if (!nidx)
423 return;
424
425 write_lock_bh(&xfrm_policy_lock);
426
427 for (i = hmask; i >= 0; i--)
428 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
429
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800430 net->xfrm.policy_byidx = nidx;
431 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700432
433 write_unlock_bh(&xfrm_policy_lock);
434
David S. Miller44e36b42006-08-24 04:50:50 -0700435 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700436}
437
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800438static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700439{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800440 unsigned int cnt = net->xfrm.policy_count[dir];
441 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700442
443 if (total)
444 *total += cnt;
445
446 if ((hmask + 1) < xfrm_policy_hashmax &&
447 cnt > hmask)
448 return 1;
449
450 return 0;
451}
452
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800453static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700454{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800455 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700456
457 if ((hmask + 1) < xfrm_policy_hashmax &&
458 total > hmask)
459 return 1;
460
461 return 0;
462}
463
Alexey Dobriyane0710412010-01-23 13:37:10 +0000464void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700465{
466 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000467 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
468 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
469 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
470 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
471 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
472 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
473 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700474 si->spdhmcnt = xfrm_policy_hashmax;
475 read_unlock_bh(&xfrm_policy_lock);
476}
477EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700478
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700479static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800480static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700481{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800482 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700483 int dir, total;
484
485 mutex_lock(&hash_resize_mutex);
486
487 total = 0;
488 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800489 if (xfrm_bydst_should_resize(net, dir, &total))
490 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700491 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800492 if (xfrm_byidx_should_resize(net, total))
493 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700494
495 mutex_unlock(&hash_resize_mutex);
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/* Generate new index... KAME seems to generate them ordered by cost
499 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800500static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 static u32 idx_generator;
503
504 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700505 struct hlist_node *entry;
506 struct hlist_head *list;
507 struct xfrm_policy *p;
508 u32 idx;
509 int found;
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 idx = (idx_generator | dir);
512 idx_generator += 8;
513 if (idx == 0)
514 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800515 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700516 found = 0;
517 hlist_for_each_entry(p, entry, list, byidx) {
518 if (p->index == idx) {
519 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700523 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return idx;
525 }
526}
527
David S. Miller2518c7c2006-08-24 04:45:07 -0700528static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
529{
530 u32 *p1 = (u32 *) s1;
531 u32 *p2 = (u32 *) s2;
532 int len = sizeof(struct xfrm_selector) / sizeof(u32);
533 int i;
534
535 for (i = 0; i < len; i++) {
536 if (p1[i] != p2[i])
537 return 1;
538 }
539
540 return 0;
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
544{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800545 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700546 struct xfrm_policy *pol;
547 struct xfrm_policy *delpol;
548 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800549 struct hlist_node *entry, *newpos;
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000550 u32 mark = policy->mark.v & policy->mark.m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800553 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700554 delpol = NULL;
555 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700556 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800557 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700558 !selector_cmp(&pol->selector, &policy->selector) &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000559 (mark & pol->mark.m) == pol->mark.v &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800560 xfrm_sec_ctx_match(pol->security, policy->security) &&
561 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (excl) {
563 write_unlock_bh(&xfrm_policy_lock);
564 return -EEXIST;
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 delpol = pol;
567 if (policy->priority > pol->priority)
568 continue;
569 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800570 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 continue;
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (delpol)
574 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700577 hlist_add_after(newpos, &policy->bydst);
578 else
579 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800581 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 atomic_inc(&flow_cache_genid);
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800583 if (delpol)
584 __xfrm_policy_unlink(delpol, dir);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800585 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
586 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800587 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 policy->curlft.use_time = 0;
589 if (!mod_timer(&policy->timer, jiffies + HZ))
590 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800591 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 write_unlock_bh(&xfrm_policy_lock);
593
David S. Miller9b78a822005-12-22 07:39:48 -0800594 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800596 else if (xfrm_bydst_should_resize(net, dir, NULL))
597 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return 0;
600}
601EXPORT_SYMBOL(xfrm_policy_insert);
602
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000603struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
604 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800605 struct xfrm_sec_ctx *ctx, int delete,
606 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
David S. Miller2518c7c2006-08-24 04:45:07 -0700608 struct xfrm_policy *pol, *ret;
609 struct hlist_head *chain;
610 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Eric Parisef41aaa2007-03-07 15:37:58 -0800612 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800614 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700615 ret = NULL;
616 hlist_for_each_entry(pol, entry, chain, bydst) {
617 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000618 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700619 !selector_cmp(sel, &pol->selector) &&
620 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700622 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700623 *err = security_xfrm_policy_delete(
624 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800625 if (*err) {
626 write_unlock_bh(&xfrm_policy_lock);
627 return pol;
628 }
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800629 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700630 }
631 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 break;
633 }
634 }
635 write_unlock_bh(&xfrm_policy_lock);
636
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000637 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700638 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700639 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
Trent Jaegerdf718372005-12-13 23:12:27 -0800641EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000643struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
644 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
David S. Miller2518c7c2006-08-24 04:45:07 -0700646 struct xfrm_policy *pol, *ret;
647 struct hlist_head *chain;
648 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Herbert Xub5505c62007-05-14 02:15:47 -0700650 *err = -ENOENT;
651 if (xfrm_policy_id2dir(id) != dir)
652 return NULL;
653
Eric Parisef41aaa2007-03-07 15:37:58 -0800654 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800656 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700657 ret = NULL;
658 hlist_for_each_entry(pol, entry, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000659 if (pol->type == type && pol->index == id &&
660 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700662 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700663 *err = security_xfrm_policy_delete(
664 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800665 if (*err) {
666 write_unlock_bh(&xfrm_policy_lock);
667 return pol;
668 }
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800669 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700670 }
671 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 break;
673 }
674 }
675 write_unlock_bh(&xfrm_policy_lock);
676
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000677 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700678 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700679 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681EXPORT_SYMBOL(xfrm_policy_byid);
682
Joy Latten4aa2e622007-06-04 19:05:57 -0400683#ifdef CONFIG_SECURITY_NETWORK_XFRM
684static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800685xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Joy Latten4aa2e622007-06-04 19:05:57 -0400687 int dir, err = 0;
688
689 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
690 struct xfrm_policy *pol;
691 struct hlist_node *entry;
692 int i;
693
694 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800695 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400696 if (pol->type != type)
697 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700698 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400699 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700700 xfrm_audit_policy_delete(pol, 0,
701 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400702 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700703 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400704 return err;
705 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900706 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800707 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400708 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800709 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400710 bydst) {
711 if (pol->type != type)
712 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700713 err = security_xfrm_policy_delete(
714 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400715 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700716 xfrm_audit_policy_delete(pol, 0,
717 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400718 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700719 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400720 return err;
721 }
722 }
723 }
724 }
725 return err;
726}
727#else
728static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800729xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400730{
731 return 0;
732}
733#endif
734
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800735int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400736{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000737 int dir, err = 0, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400740
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800741 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400742 if (err)
743 goto out;
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700746 struct xfrm_policy *pol;
747 struct hlist_node *entry;
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800748 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700749
750 again1:
751 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800752 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700753 if (pol->type != type)
754 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000755 __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000757 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Joy Lattenab5f5e82007-09-17 11:51:22 -0700759 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400760 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700761 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600762
David S. Miller2518c7c2006-08-24 04:45:07 -0700763 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700766 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700768
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800769 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700770 again2:
771 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800772 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700773 bydst) {
774 if (pol->type != type)
775 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000776 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700777 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000778 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700779
Joy Lattenab5f5e82007-09-17 11:51:22 -0700780 xfrm_audit_policy_delete(pol, 1,
781 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400782 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700783 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700784 xfrm_policy_kill(pol);
785
786 write_lock_bh(&xfrm_policy_lock);
787 goto again2;
788 }
789 }
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000792 if (!cnt)
793 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -0400794out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400796 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798EXPORT_SYMBOL(xfrm_policy_flush);
799
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800800int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800801 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 void *data)
803{
Herbert Xu12a169e2008-10-01 07:03:24 -0700804 struct xfrm_policy *pol;
805 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800806 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Timo Teras4c563f72008-02-28 21:31:08 -0800808 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
809 walk->type != XFRM_POLICY_TYPE_ANY)
810 return -EINVAL;
811
Herbert Xu12a169e2008-10-01 07:03:24 -0700812 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800813 return 0;
814
Herbert Xu12a169e2008-10-01 07:03:24 -0700815 write_lock_bh(&xfrm_policy_lock);
816 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800817 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700818 else
819 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800820 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700821 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800822 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700823 pol = container_of(x, struct xfrm_policy, walk);
824 if (walk->type != XFRM_POLICY_TYPE_ANY &&
825 walk->type != pol->type)
826 continue;
827 error = func(pol, xfrm_policy_id2dir(pol->index),
828 walk->seq, data);
829 if (error) {
830 list_move_tail(&walk->walk.all, &x->all);
831 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800832 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700833 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700835 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800836 error = -ENOENT;
837 goto out;
838 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700839 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700841 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return error;
843}
844EXPORT_SYMBOL(xfrm_policy_walk);
845
Herbert Xu12a169e2008-10-01 07:03:24 -0700846void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
847{
848 INIT_LIST_HEAD(&walk->walk.all);
849 walk->walk.dead = 1;
850 walk->type = type;
851 walk->seq = 0;
852}
853EXPORT_SYMBOL(xfrm_policy_walk_init);
854
855void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
856{
857 if (list_empty(&walk->walk.all))
858 return;
859
860 write_lock_bh(&xfrm_policy_lock);
861 list_del(&walk->walk.all);
862 write_unlock_bh(&xfrm_policy_lock);
863}
864EXPORT_SYMBOL(xfrm_policy_walk_done);
865
James Morris134b0fc2006-10-05 15:42:27 -0500866/*
867 * Find policy to apply to this flow.
868 *
869 * Returns 0 if policy found, else an -errno.
870 */
David S. Millerf299d552011-02-24 01:23:30 -0500871static int xfrm_policy_match(const struct xfrm_policy *pol,
872 const struct flowi *fl,
David S. Miller2518c7c2006-08-24 04:45:07 -0700873 u8 type, u16 family, int dir)
874{
David S. Millerf299d552011-02-24 01:23:30 -0500875 const struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500876 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700877
878 if (pol->family != family ||
David S. Miller1d28f422011-03-12 00:29:39 -0500879 (fl->flowi_mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -0700880 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500881 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700882
883 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500884 if (match)
David S. Miller1d28f422011-03-12 00:29:39 -0500885 ret = security_xfrm_policy_lookup(pol->security, fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -0700886 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700887
James Morris134b0fc2006-10-05 15:42:27 -0500888 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700889}
890
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800891static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -0800892 const struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700893 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
James Morris134b0fc2006-10-05 15:42:27 -0500895 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700896 struct xfrm_policy *pol, *ret;
David S. Miller0b597e72011-02-24 01:22:48 -0500897 const xfrm_address_t *daddr, *saddr;
David S. Miller2518c7c2006-08-24 04:45:07 -0700898 struct hlist_node *entry;
899 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700900 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700901
902 daddr = xfrm_flowi_daddr(fl, family);
903 saddr = xfrm_flowi_saddr(fl, family);
904 if (unlikely(!daddr || !saddr))
905 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800908 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700909 ret = NULL;
910 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500911 err = xfrm_policy_match(pol, fl, type, family, dir);
912 if (err) {
913 if (err == -ESRCH)
914 continue;
915 else {
916 ret = ERR_PTR(err);
917 goto fail;
918 }
919 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700920 ret = pol;
921 priority = ret->priority;
922 break;
923 }
924 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800925 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700926 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500927 err = xfrm_policy_match(pol, fl, type, family, dir);
928 if (err) {
929 if (err == -ESRCH)
930 continue;
931 else {
932 ret = ERR_PTR(err);
933 goto fail;
934 }
935 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700936 ret = pol;
937 break;
938 }
939 }
David S. Milleracba48e2006-08-25 15:46:46 -0700940 if (ret)
941 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500942fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700944
David S. Miller2518c7c2006-08-24 04:45:07 -0700945 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700946}
947
Timo Teräs80c802f2010-04-07 00:30:05 +0000948static struct xfrm_policy *
David S. Miller73ff93c2011-02-22 18:33:42 -0800949__xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
Timo Teräs80c802f2010-04-07 00:30:05 +0000950{
951#ifdef CONFIG_XFRM_SUB_POLICY
952 struct xfrm_policy *pol;
953
954 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
955 if (pol != NULL)
956 return pol;
957#endif
958 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
959}
960
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000961static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -0800962xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000963 u8 dir, struct flow_cache_object *old_obj, void *ctx)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700964{
965 struct xfrm_policy *pol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000966
967 if (old_obj)
968 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700969
Timo Teräs80c802f2010-04-07 00:30:05 +0000970 pol = __xfrm_policy_lookup(net, fl, family, dir);
971 if (IS_ERR_OR_NULL(pol))
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000972 return ERR_CAST(pol);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000973
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000974 /* Resolver returns two references:
975 * one for cache and one for caller of flow_cache_lookup() */
976 xfrm_pol_hold(pol);
977
978 return &pol->flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Trent Jaegerdf718372005-12-13 23:12:27 -0800981static inline int policy_to_flow_dir(int dir)
982{
983 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900984 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
985 XFRM_POLICY_FWD == FLOW_DIR_FWD)
986 return dir;
987 switch (dir) {
988 default:
989 case XFRM_POLICY_IN:
990 return FLOW_DIR_IN;
991 case XFRM_POLICY_OUT:
992 return FLOW_DIR_OUT;
993 case XFRM_POLICY_FWD:
994 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700995 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800996}
997
David S. Millerdee9f4b2011-02-22 18:44:31 -0800998static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
999 const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 struct xfrm_policy *pol;
1002
1003 read_lock_bh(&xfrm_policy_lock);
1004 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001005 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001007 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001008
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001009 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001010 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1011 pol = NULL;
1012 goto out;
1013 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001014 err = security_xfrm_policy_lookup(pol->security,
David S. Miller1d28f422011-03-12 00:29:39 -05001015 fl->flowi_secid,
Paul Moore03e1ad72008-04-12 19:07:52 -07001016 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001017 if (!err)
1018 xfrm_pol_hold(pol);
1019 else if (err == -ESRCH)
1020 pol = NULL;
1021 else
1022 pol = ERR_PTR(err);
1023 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 pol = NULL;
1025 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001026out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 read_unlock_bh(&xfrm_policy_lock);
1028 return pol;
1029}
1030
1031static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1032{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001033 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001034 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001035 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001036
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001037 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001038 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001039 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001040 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001042
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001043 if (xfrm_bydst_should_resize(net, dir, NULL))
1044 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1048 int dir)
1049{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001050 struct net *net = xp_net(pol);
1051
David S. Miller2518c7c2006-08-24 04:45:07 -07001052 if (hlist_unhashed(&pol->bydst))
1053 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
David S. Miller2518c7c2006-08-24 04:45:07 -07001055 hlist_del(&pol->bydst);
1056 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001057 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001058 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001059
1060 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
Herbert Xu4666faa2005-06-18 22:43:22 -07001063int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
1065 write_lock_bh(&xfrm_policy_lock);
1066 pol = __xfrm_policy_unlink(pol, dir);
1067 write_unlock_bh(&xfrm_policy_lock);
1068 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001072 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
David S. Millera70fcb02006-03-20 19:18:52 -08001074EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1077{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001078 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 struct xfrm_policy *old_pol;
1080
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001081#ifdef CONFIG_XFRM_SUB_POLICY
1082 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1083 return -EINVAL;
1084#endif
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 write_lock_bh(&xfrm_policy_lock);
1087 old_pol = sk->sk_policy[dir];
1088 sk->sk_policy[dir] = pol;
1089 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001090 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001091 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1093 }
1094 if (old_pol)
Timo Teräsea2dea92010-03-31 00:17:05 +00001095 /* Unlinking succeeds always. This is the only function
1096 * allowed to delete or replace socket policy.
1097 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1099 write_unlock_bh(&xfrm_policy_lock);
1100
1101 if (old_pol) {
1102 xfrm_policy_kill(old_pol);
1103 }
1104 return 0;
1105}
1106
David S. Millerd3e40a92011-02-24 01:25:41 -05001107static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001109 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 if (newp) {
1112 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001113 if (security_xfrm_policy_clone(old->security,
1114 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001115 kfree(newp);
1116 return NULL; /* ENOMEM */
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 newp->lft = old->lft;
1119 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08001120 newp->mark = old->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 newp->action = old->action;
1122 newp->flags = old->flags;
1123 newp->xfrm_nr = old->xfrm_nr;
1124 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001125 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 memcpy(newp->xfrm_vec, old->xfrm_vec,
1127 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1128 write_lock_bh(&xfrm_policy_lock);
1129 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1130 write_unlock_bh(&xfrm_policy_lock);
1131 xfrm_pol_put(newp);
1132 }
1133 return newp;
1134}
1135
1136int __xfrm_sk_clone_policy(struct sock *sk)
1137{
1138 struct xfrm_policy *p0 = sk->sk_policy[0],
1139 *p1 = sk->sk_policy[1];
1140
1141 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1142 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1143 return -ENOMEM;
1144 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1145 return -ENOMEM;
1146 return 0;
1147}
1148
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001149static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001150xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001151 unsigned short family)
1152{
1153 int err;
1154 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1155
1156 if (unlikely(afinfo == NULL))
1157 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001158 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001159 xfrm_policy_put_afinfo(afinfo);
1160 return err;
1161}
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163/* Resolve list of templates for the flow, given policy. */
1164
1165static int
David S. Millera6c2e612011-02-22 18:35:39 -08001166xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1167 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001169 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int nx;
1171 int i, error;
1172 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1173 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001174 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1177 struct xfrm_state *x;
1178 xfrm_address_t *remote = daddr;
1179 xfrm_address_t *local = saddr;
1180 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1181
Joakim Koskela48b8d782007-07-26 00:08:42 -07001182 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1183 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 remote = &tmpl->id.daddr;
1185 local = &tmpl->saddr;
Thomas Egerer8444cf72010-09-20 11:11:38 -07001186 if (xfrm_addr_any(local, tmpl->encap_family)) {
1187 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001188 if (error)
1189 goto fail;
1190 local = &tmp;
1191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193
1194 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1195
1196 if (x && x->km.state == XFRM_STATE_VALID) {
1197 xfrm[nx++] = x;
1198 daddr = remote;
1199 saddr = local;
1200 continue;
1201 }
1202 if (x) {
1203 error = (x->km.state == XFRM_STATE_ERROR ?
1204 -EINVAL : -EAGAIN);
1205 xfrm_state_put(x);
1206 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001207 else if (error == -ESRCH)
1208 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 if (!tmpl->optional)
1211 goto fail;
1212 }
1213 return nx;
1214
1215fail:
1216 for (nx--; nx>=0; nx--)
1217 xfrm_state_put(xfrm[nx]);
1218 return error;
1219}
1220
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001221static int
David S. Millera6c2e612011-02-22 18:35:39 -08001222xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1223 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001224{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001225 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1226 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001227 int cnx = 0;
1228 int error;
1229 int ret;
1230 int i;
1231
1232 for (i = 0; i < npols; i++) {
1233 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1234 error = -ENOBUFS;
1235 goto fail;
1236 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001237
1238 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001239 if (ret < 0) {
1240 error = ret;
1241 goto fail;
1242 } else
1243 cnx += ret;
1244 }
1245
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001246 /* found states are sorted for outbound processing */
1247 if (npols > 1)
1248 xfrm_state_sort(xfrm, tpp, cnx, family);
1249
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001250 return cnx;
1251
1252 fail:
1253 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001254 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001255 return error;
1256
1257}
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259/* Check that the bundle accepts the flow and its components are
1260 * still valid.
1261 */
1262
David S. Miller05d84022011-02-22 17:47:10 -08001263static inline int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001264{
1265 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1266 int tos;
1267
1268 if (!afinfo)
1269 return -EINVAL;
1270
1271 tos = afinfo->get_tos(fl);
1272
1273 xfrm_policy_put_afinfo(afinfo);
1274
1275 return tos;
1276}
1277
Timo Teräs80c802f2010-04-07 00:30:05 +00001278static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1279{
1280 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1281 struct dst_entry *dst = &xdst->u.dst;
1282
1283 if (xdst->route == NULL) {
1284 /* Dummy bundle - if it has xfrms we were not
1285 * able to build bundle as template resolution failed.
1286 * It means we need to try again resolving. */
1287 if (xdst->num_xfrms > 0)
1288 return NULL;
1289 } else {
1290 /* Real bundle */
1291 if (stale_bundle(dst))
1292 return NULL;
1293 }
1294
1295 dst_hold(dst);
1296 return flo;
1297}
1298
1299static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1300{
1301 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1302 struct dst_entry *dst = &xdst->u.dst;
1303
1304 if (!xdst->route)
1305 return 0;
1306 if (stale_bundle(dst))
1307 return 0;
1308
1309 return 1;
1310}
1311
1312static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1313{
1314 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1315 struct dst_entry *dst = &xdst->u.dst;
1316
1317 dst_free(dst);
1318}
1319
1320static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1321 .get = xfrm_bundle_flo_get,
1322 .check = xfrm_bundle_flo_check,
1323 .delete = xfrm_bundle_flo_delete,
1324};
1325
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001326static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001327{
1328 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001329 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001330 struct xfrm_dst *xdst;
1331
1332 if (!afinfo)
1333 return ERR_PTR(-EINVAL);
1334
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001335 switch (family) {
1336 case AF_INET:
1337 dst_ops = &net->xfrm.xfrm4_dst_ops;
1338 break;
1339#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1340 case AF_INET6:
1341 dst_ops = &net->xfrm.xfrm6_dst_ops;
1342 break;
1343#endif
1344 default:
1345 BUG();
1346 }
David S. Millerda935c62011-02-19 19:17:35 -08001347 xdst = dst_alloc(dst_ops, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08001348 xfrm_policy_put_afinfo(afinfo);
1349
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001350 if (likely(xdst))
1351 xdst->flo.ops = &xfrm_bundle_fc_ops;
1352 else
1353 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00001354
Herbert Xu25ee3282007-12-11 09:32:34 -08001355 return xdst;
1356}
1357
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001358static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1359 int nfheader_len)
1360{
1361 struct xfrm_policy_afinfo *afinfo =
1362 xfrm_policy_get_afinfo(dst->ops->family);
1363 int err;
1364
1365 if (!afinfo)
1366 return -EINVAL;
1367
1368 err = afinfo->init_path(path, dst, nfheader_len);
1369
1370 xfrm_policy_put_afinfo(afinfo);
1371
1372 return err;
1373}
1374
Herbert Xu87c1e122010-03-02 02:51:56 +00001375static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08001376 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08001377{
1378 struct xfrm_policy_afinfo *afinfo =
1379 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1380 int err;
1381
1382 if (!afinfo)
1383 return -EINVAL;
1384
Herbert Xu87c1e122010-03-02 02:51:56 +00001385 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001386
1387 xfrm_policy_put_afinfo(afinfo);
1388
1389 return err;
1390}
1391
Timo Teräs80c802f2010-04-07 00:30:05 +00001392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1394 * all the metrics... Shortly, bundle a bundle.
1395 */
1396
Herbert Xu25ee3282007-12-11 09:32:34 -08001397static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1398 struct xfrm_state **xfrm, int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08001399 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08001400 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001402 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001403 unsigned long now = jiffies;
1404 struct net_device *dev;
1405 struct dst_entry *dst_prev = NULL;
1406 struct dst_entry *dst0 = NULL;
1407 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001409 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001410 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001411 int trailer_len = 0;
1412 int tos;
1413 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001414 xfrm_address_t saddr, daddr;
1415
1416 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001417
1418 tos = xfrm_get_tos(fl, family);
1419 err = tos;
1420 if (tos < 0)
1421 goto put_states;
1422
1423 dst_hold(dst);
1424
1425 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001426 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001427 struct dst_entry *dst1 = &xdst->u.dst;
1428
1429 err = PTR_ERR(xdst);
1430 if (IS_ERR(xdst)) {
1431 dst_release(dst);
1432 goto put_states;
1433 }
1434
1435 if (!dst_prev)
1436 dst0 = dst1;
1437 else {
1438 dst_prev->child = dst_clone(dst1);
1439 dst1->flags |= DST_NOHASH;
1440 }
1441
1442 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08001443 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08001444
1445 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1446 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001447 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1448 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001449 err = PTR_ERR(dst);
1450 if (IS_ERR(dst))
1451 goto put_states;
1452 } else
1453 dst_hold(dst);
1454
1455 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00001456 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08001457
1458 dst1->obsolete = -1;
1459 dst1->flags |= DST_HOST;
1460 dst1->lastuse = now;
1461
1462 dst1->input = dst_discard;
1463 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1464
1465 dst1->next = dst_prev;
1466 dst_prev = dst1;
1467
1468 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001469 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1470 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001471 trailer_len += xfrm[i]->props.trailer_len;
1472 }
1473
1474 dst_prev->child = dst;
1475 dst0->path = dst;
1476
1477 err = -ENODEV;
1478 dev = dst->dev;
1479 if (!dev)
1480 goto free_dst;
1481
Ralf Baechle96c53402009-12-25 23:30:02 +00001482 /* Copy neighbour for reachability confirmation */
Herbert Xu25ee3282007-12-11 09:32:34 -08001483 dst0->neighbour = neigh_clone(dst->neighbour);
1484
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001485 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001486 xfrm_init_pmtu(dst_prev);
1487
1488 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1489 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1490
Herbert Xu87c1e122010-03-02 02:51:56 +00001491 err = xfrm_fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001492 if (err)
1493 goto free_dst;
1494
1495 dst_prev->header_len = header_len;
1496 dst_prev->trailer_len = trailer_len;
1497 header_len -= xdst->u.dst.xfrm->props.header_len;
1498 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1499 }
1500
1501out:
1502 return dst0;
1503
1504put_states:
1505 for (; i < nx; i++)
1506 xfrm_state_put(xfrm[i]);
1507free_dst:
1508 if (dst0)
1509 dst_free(dst0);
1510 dst0 = ERR_PTR(err);
1511 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001514static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001515xfrm_dst_alloc_copy(void **target, const void *src, int size)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001516{
1517 if (!*target) {
1518 *target = kmalloc(size, GFP_ATOMIC);
1519 if (!*target)
1520 return -ENOMEM;
1521 }
1522 memcpy(*target, src, size);
1523 return 0;
1524}
1525
1526static int inline
David S. Miller1786b382011-02-24 01:32:54 -05001527xfrm_dst_update_parent(struct dst_entry *dst, const struct xfrm_selector *sel)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001528{
1529#ifdef CONFIG_XFRM_SUB_POLICY
1530 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1531 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1532 sel, sizeof(*sel));
1533#else
1534 return 0;
1535#endif
1536}
1537
1538static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001539xfrm_dst_update_origin(struct dst_entry *dst, const struct flowi *fl)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001540{
1541#ifdef CONFIG_XFRM_SUB_POLICY
1542 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1543 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1544#else
1545 return 0;
1546#endif
1547}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
David S. Miller73ff93c2011-02-22 18:33:42 -08001549static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001550 struct xfrm_policy **pols,
1551 int *num_pols, int *num_xfrms)
1552{
1553 int i;
1554
1555 if (*num_pols == 0 || !pols[0]) {
1556 *num_pols = 0;
1557 *num_xfrms = 0;
1558 return 0;
1559 }
1560 if (IS_ERR(pols[0]))
1561 return PTR_ERR(pols[0]);
1562
1563 *num_xfrms = pols[0]->xfrm_nr;
1564
1565#ifdef CONFIG_XFRM_SUB_POLICY
1566 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1567 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1568 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1569 XFRM_POLICY_TYPE_MAIN,
1570 fl, family,
1571 XFRM_POLICY_OUT);
1572 if (pols[1]) {
1573 if (IS_ERR(pols[1])) {
1574 xfrm_pols_put(pols, *num_pols);
1575 return PTR_ERR(pols[1]);
1576 }
1577 (*num_pols) ++;
1578 (*num_xfrms) += pols[1]->xfrm_nr;
1579 }
1580 }
1581#endif
1582 for (i = 0; i < *num_pols; i++) {
1583 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1584 *num_xfrms = -1;
1585 break;
1586 }
1587 }
1588
1589 return 0;
1590
1591}
1592
1593static struct xfrm_dst *
1594xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08001595 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001596 struct dst_entry *dst_orig)
1597{
1598 struct net *net = xp_net(pols[0]);
1599 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1600 struct dst_entry *dst;
1601 struct xfrm_dst *xdst;
1602 int err;
1603
1604 /* Try to instantiate a bundle */
1605 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00001606 if (err <= 0) {
1607 if (err != 0 && err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00001608 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1609 return ERR_PTR(err);
1610 }
1611
1612 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1613 if (IS_ERR(dst)) {
1614 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1615 return ERR_CAST(dst);
1616 }
1617
1618 xdst = (struct xfrm_dst *)dst;
1619 xdst->num_xfrms = err;
1620 if (num_pols > 1)
1621 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1622 else
1623 err = xfrm_dst_update_origin(dst, fl);
1624 if (unlikely(err)) {
1625 dst_free(dst);
1626 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1627 return ERR_PTR(err);
1628 }
1629
1630 xdst->num_pols = num_pols;
1631 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1632 xdst->policy_genid = atomic_read(&pols[0]->genid);
1633
1634 return xdst;
1635}
1636
1637static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001638xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
Timo Teräs80c802f2010-04-07 00:30:05 +00001639 struct flow_cache_object *oldflo, void *ctx)
1640{
1641 struct dst_entry *dst_orig = (struct dst_entry *)ctx;
1642 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1643 struct xfrm_dst *xdst, *new_xdst;
1644 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
1645
1646 /* Check if the policies from old bundle are usable */
1647 xdst = NULL;
1648 if (oldflo) {
1649 xdst = container_of(oldflo, struct xfrm_dst, flo);
1650 num_pols = xdst->num_pols;
1651 num_xfrms = xdst->num_xfrms;
1652 pol_dead = 0;
1653 for (i = 0; i < num_pols; i++) {
1654 pols[i] = xdst->pols[i];
1655 pol_dead |= pols[i]->walk.dead;
1656 }
1657 if (pol_dead) {
1658 dst_free(&xdst->u.dst);
1659 xdst = NULL;
1660 num_pols = 0;
1661 num_xfrms = 0;
1662 oldflo = NULL;
1663 }
1664 }
1665
1666 /* Resolve policies to use if we couldn't get them from
1667 * previous cache entry */
1668 if (xdst == NULL) {
1669 num_pols = 1;
1670 pols[0] = __xfrm_policy_lookup(net, fl, family, dir);
1671 err = xfrm_expand_policies(fl, family, pols,
1672 &num_pols, &num_xfrms);
1673 if (err < 0)
1674 goto inc_error;
1675 if (num_pols == 0)
1676 return NULL;
1677 if (num_xfrms <= 0)
1678 goto make_dummy_bundle;
1679 }
1680
1681 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family, dst_orig);
1682 if (IS_ERR(new_xdst)) {
1683 err = PTR_ERR(new_xdst);
1684 if (err != -EAGAIN)
1685 goto error;
1686 if (oldflo == NULL)
1687 goto make_dummy_bundle;
1688 dst_hold(&xdst->u.dst);
1689 return oldflo;
Timo Teräsd809ec82010-07-12 21:29:42 +00001690 } else if (new_xdst == NULL) {
1691 num_xfrms = 0;
1692 if (oldflo == NULL)
1693 goto make_dummy_bundle;
1694 xdst->num_xfrms = 0;
1695 dst_hold(&xdst->u.dst);
1696 return oldflo;
Timo Teräs80c802f2010-04-07 00:30:05 +00001697 }
1698
1699 /* Kill the previous bundle */
1700 if (xdst) {
1701 /* The policies were stolen for newly generated bundle */
1702 xdst->num_pols = 0;
1703 dst_free(&xdst->u.dst);
1704 }
1705
1706 /* Flow cache does not have reference, it dst_free()'s,
1707 * but we do need to return one reference for original caller */
1708 dst_hold(&new_xdst->u.dst);
1709 return &new_xdst->flo;
1710
1711make_dummy_bundle:
1712 /* We found policies, but there's no bundles to instantiate:
1713 * either because the policy blocks, has no transformations or
1714 * we could not build template (no xfrm_states).*/
1715 xdst = xfrm_alloc_dst(net, family);
1716 if (IS_ERR(xdst)) {
1717 xfrm_pols_put(pols, num_pols);
1718 return ERR_CAST(xdst);
1719 }
1720 xdst->num_pols = num_pols;
1721 xdst->num_xfrms = num_xfrms;
1722 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1723
1724 dst_hold(&xdst->u.dst);
1725 return &xdst->flo;
1726
1727inc_error:
1728 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1729error:
1730 if (xdst != NULL)
1731 dst_free(&xdst->u.dst);
1732 else
1733 xfrm_pols_put(pols, num_pols);
1734 return ERR_PTR(err);
1735}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
David S. Miller2774c132011-03-01 14:59:04 -08001737static struct dst_entry *make_blackhole(struct net *net, u16 family,
1738 struct dst_entry *dst_orig)
1739{
1740 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1741 struct dst_entry *ret;
1742
1743 if (!afinfo) {
1744 dst_release(dst_orig);
1745 ret = ERR_PTR(-EINVAL);
1746 } else {
1747 ret = afinfo->blackhole_route(net, dst_orig);
1748 }
1749 xfrm_policy_put_afinfo(afinfo);
1750
1751 return ret;
1752}
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754/* Main function: finds/creates a bundle for given flow.
1755 *
1756 * At the moment we eat a raw IP route. Mostly to speed up lookups
1757 * on interfaces with disabled IPsec.
1758 */
David S. Miller452edd52011-03-02 13:27:41 -08001759struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
1760 const struct flowi *fl,
1761 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001763 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00001764 struct flow_cache_object *flo;
1765 struct xfrm_dst *xdst;
David S. Miller452edd52011-03-02 13:27:41 -08001766 struct dst_entry *dst, *route;
Timo Teräs80c802f2010-04-07 00:30:05 +00001767 u16 family = dst_orig->ops->family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001768 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Changli Gao4b021622010-04-27 21:20:22 +00001769 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771restart:
Timo Teräs80c802f2010-04-07 00:30:05 +00001772 dst = NULL;
1773 xdst = NULL;
1774 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001775
Thomas Graff7944fb2007-08-25 13:46:55 -07001776 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00001777 num_pols = 1;
1778 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
1779 err = xfrm_expand_policies(fl, family, pols,
1780 &num_pols, &num_xfrms);
1781 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08001782 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00001783
1784 if (num_pols) {
1785 if (num_xfrms <= 0) {
1786 drop_pols = num_pols;
1787 goto no_transform;
1788 }
1789
1790 xdst = xfrm_resolve_and_create_bundle(
1791 pols, num_pols, fl,
1792 family, dst_orig);
1793 if (IS_ERR(xdst)) {
1794 xfrm_pols_put(pols, num_pols);
1795 err = PTR_ERR(xdst);
1796 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00001797 } else if (xdst == NULL) {
1798 num_xfrms = 0;
1799 drop_pols = num_pols;
1800 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00001801 }
1802
1803 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
1804 xdst->u.dst.next = xfrm_policy_sk_bundles;
1805 xfrm_policy_sk_bundles = &xdst->u.dst;
1806 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
1807
1808 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001809 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Timo Teräs80c802f2010-04-07 00:30:05 +00001812 if (xdst == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001814 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001815 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001816 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Timo Teräs80c802f2010-04-07 00:30:05 +00001818 flo = flow_cache_lookup(net, fl, family, dir,
1819 xfrm_bundle_lookup, dst_orig);
1820 if (flo == NULL)
1821 goto nopol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001822 if (IS_ERR(flo)) {
Timo Teräs80c802f2010-04-07 00:30:05 +00001823 err = PTR_ERR(flo);
Herbert Xu75b8c132007-12-11 04:38:08 -08001824 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001825 }
Timo Teräs80c802f2010-04-07 00:30:05 +00001826 xdst = container_of(flo, struct xfrm_dst, flo);
1827
1828 num_pols = xdst->num_pols;
1829 num_xfrms = xdst->num_xfrms;
1830 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy*) * num_pols);
1831 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
1833
Timo Teräs80c802f2010-04-07 00:30:05 +00001834 dst = &xdst->u.dst;
1835 if (route == NULL && num_xfrms > 0) {
1836 /* The only case when xfrm_bundle_lookup() returns a
1837 * bundle with null route, is when the template could
1838 * not be resolved. It means policies are there, but
1839 * bundle could not be created, since we don't yet
1840 * have the xfrm_state's. We need to wait for KM to
1841 * negotiate new SA's or bail out with error.*/
1842 if (net->xfrm.sysctl_larval_drop) {
1843 /* EREMOTE tells the caller to generate
1844 * a one-shot blackhole route. */
1845 dst_release(dst);
Timo Terasa1aa3482010-05-15 23:49:26 -07001846 xfrm_pols_put(pols, drop_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00001847 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller2774c132011-03-01 14:59:04 -08001848
David S. Miller452edd52011-03-02 13:27:41 -08001849 return make_blackhole(net, family, dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00001850 }
David S. Miller1d28f422011-03-12 00:29:39 -05001851 if (fl->flowi_flags & FLOWI_FLAG_CAN_SLEEP) {
Timo Teräs80c802f2010-04-07 00:30:05 +00001852 DECLARE_WAITQUEUE(wait, current);
1853
1854 add_wait_queue(&net->xfrm.km_waitq, &wait);
1855 set_current_state(TASK_INTERRUPTIBLE);
1856 schedule();
1857 set_current_state(TASK_RUNNING);
1858 remove_wait_queue(&net->xfrm.km_waitq, &wait);
1859
1860 if (!signal_pending(current)) {
1861 dst_release(dst);
1862 goto restart;
1863 }
1864
1865 err = -ERESTART;
1866 } else
1867 err = -EAGAIN;
1868
1869 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
1870 goto error;
1871 }
1872
1873no_transform:
1874 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001875 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Timo Teräs80c802f2010-04-07 00:30:05 +00001877 if ((flags & XFRM_LOOKUP_ICMP) &&
1878 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
1879 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001880 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00001881 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08001882
Timo Teräs80c802f2010-04-07 00:30:05 +00001883 for (i = 0; i < num_pols; i++)
1884 pols[i]->curlft.use_time = get_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08001885
Timo Teräs80c802f2010-04-07 00:30:05 +00001886 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001888 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye1044112005-09-08 15:11:55 -07001889 err = -EPERM;
1890 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00001891 } else if (num_xfrms > 0) {
1892 /* Flow transformed */
Timo Teräs80c802f2010-04-07 00:30:05 +00001893 dst_release(dst_orig);
1894 } else {
1895 /* Flow passes untransformed */
1896 dst_release(dst);
David S. Miller452edd52011-03-02 13:27:41 -08001897 dst = dst_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
Timo Teräs80c802f2010-04-07 00:30:05 +00001899ok:
1900 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08001901 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Timo Teräs80c802f2010-04-07 00:30:05 +00001903nopol:
David S. Miller452edd52011-03-02 13:27:41 -08001904 if (!(flags & XFRM_LOOKUP_ICMP)) {
1905 dst = dst_orig;
Timo Teräs80c802f2010-04-07 00:30:05 +00001906 goto ok;
David S. Miller452edd52011-03-02 13:27:41 -08001907 }
Timo Teräs80c802f2010-04-07 00:30:05 +00001908 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909error:
Timo Teräs80c802f2010-04-07 00:30:05 +00001910 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08001911dropdst:
1912 dst_release(dst_orig);
Timo Teräs80c802f2010-04-07 00:30:05 +00001913 xfrm_pols_put(pols, drop_pols);
David S. Miller452edd52011-03-02 13:27:41 -08001914 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916EXPORT_SYMBOL(xfrm_lookup);
1917
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001918static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08001919xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001920{
1921 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001922
1923 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1924 return 0;
1925 x = skb->sp->xvec[idx];
1926 if (!x->type->reject)
1927 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001928 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001929}
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931/* When skb is transformed back to its "native" form, we have to
1932 * check policy restrictions. At the moment we make this in maximally
1933 * stupid way. Shame on me. :-) Of course, connected sockets must
1934 * have policy cached at them.
1935 */
1936
1937static inline int
David S. Miller7db454b2011-02-24 01:43:01 -05001938xfrm_state_ok(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 unsigned short family)
1940{
1941 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001942 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return x->id.proto == tmpl->id.proto &&
1944 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1945 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1946 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001947 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001948 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001949 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1950 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001953/*
1954 * 0 or more than 0 is returned when validation is succeeded (either bypass
1955 * because of optional transport mode, or next index of the mathced secpath
1956 * state with the template.
1957 * -1 is returned when no matching template is found.
1958 * Otherwise "-2 - errored_index" is returned.
1959 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960static inline int
David S. Miller22cccb72011-02-24 01:43:33 -05001961xfrm_policy_ok(const struct xfrm_tmpl *tmpl, const struct sec_path *sp, int start,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 unsigned short family)
1963{
1964 int idx = start;
1965
1966 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001967 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return start;
1969 } else
1970 start = -1;
1971 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001972 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001974 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1975 if (start == -1)
1976 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980 return start;
1981}
1982
Herbert Xud5422ef2007-12-12 10:44:16 -08001983int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1984 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001987 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 if (unlikely(afinfo == NULL))
1990 return -EAFNOSUPPORT;
1991
Herbert Xud5422ef2007-12-12 10:44:16 -08001992 afinfo->decode_session(skb, fl, reverse);
David S. Miller1d28f422011-03-12 00:29:39 -05001993 err = security_xfrm_decode_session(skb, &fl->flowi_secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001995 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
Herbert Xud5422ef2007-12-12 10:44:16 -08001997EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
David S. Miller9a7386ec2011-02-24 01:44:12 -05001999static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002002 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002003 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
2008 return 0;
2009}
2010
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002011int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 unsigned short family)
2013{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002014 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002016 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2017 int npols = 0;
2018 int xfrm_nr;
2019 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08002020 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08002022 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002023 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Herbert Xud5422ef2007-12-12 10:44:16 -08002025 reverse = dir & ~XFRM_POLICY_MASK;
2026 dir &= XFRM_POLICY_MASK;
2027 fl_dir = policy_to_flow_dir(dir);
2028
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002029 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002030 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002032 }
2033
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08002034 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 /* First, check used SA against their selectors. */
2037 if (skb->sp) {
2038 int i;
2039
2040 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002041 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002042 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002043 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
2047 }
2048
2049 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002050 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002051 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002052 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002053 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002054 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002055 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002058 if (!pol) {
2059 struct flow_cache_object *flo;
2060
2061 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2062 xfrm_policy_lookup, NULL);
2063 if (IS_ERR_OR_NULL(flo))
2064 pol = ERR_CAST(flo);
2065 else
2066 pol = container_of(flo, struct xfrm_policy, flo);
2067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002069 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002070 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002071 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002072 }
James Morris134b0fc2006-10-05 15:42:27 -05002073
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002074 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002075 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002076 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002077 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002078 return 0;
2079 }
2080 return 1;
2081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
James Morris9d729f72007-03-04 16:12:44 -08002083 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002085 pols[0] = pol;
2086 npols ++;
2087#ifdef CONFIG_XFRM_SUB_POLICY
2088 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002089 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002090 &fl, family,
2091 XFRM_POLICY_IN);
2092 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002093 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002094 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002095 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002096 }
James Morris9d729f72007-03-04 16:12:44 -08002097 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002098 npols ++;
2099 }
2100 }
2101#endif
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (pol->action == XFRM_POLICY_ALLOW) {
2104 struct sec_path *sp;
2105 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002106 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002107 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002108 struct xfrm_tmpl **tpp = tp;
2109 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 int i, k;
2111
2112 if ((sp = skb->sp) == NULL)
2113 sp = &dummy;
2114
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002115 for (pi = 0; pi < npols; pi++) {
2116 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002117 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002118 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002119 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002120 }
2121 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002122 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002123 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002124 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002125 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2126 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2127 }
2128 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002129 if (npols > 1) {
2130 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2131 tpp = stp;
2132 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 /* For each tunnel xfrm, find the first matching tmpl.
2135 * For each tmpl before that, find corresponding xfrm.
2136 * Order is _important_. Later we will implement
2137 * some barriers, but at the moment barriers
2138 * are implied between each two transformations.
2139 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002140 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2141 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002142 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002143 if (k < -1)
2144 /* "-2 - errored_index" returned */
2145 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002146 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002151 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002152 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002156 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 return 1;
2158 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002159 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002162 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002163reject_error:
2164 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 return 0;
2166}
2167EXPORT_SYMBOL(__xfrm_policy_check);
2168
2169int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2170{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002171 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002173 struct dst_entry *dst;
David S. Miller452edd52011-03-02 13:27:41 -08002174 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002176 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002177 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Eric Dumazetfafeeb62010-06-01 10:04:49 +00002181 skb_dst_force(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +00002182
David S. Miller452edd52011-03-02 13:27:41 -08002183 dst = xfrm_lookup(net, skb_dst(skb), &fl, NULL, 0);
2184 if (IS_ERR(dst)) {
2185 res = 1;
2186 dst = NULL;
2187 }
Eric Dumazetadf30902009-06-02 05:19:30 +00002188 skb_dst_set(skb, dst);
2189 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191EXPORT_SYMBOL(__xfrm_route_forward);
2192
David S. Millerd49c73c2006-08-13 18:55:53 -07002193/* Optimize later using cookies and generation ids. */
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2196{
David S. Millerd49c73c2006-08-13 18:55:53 -07002197 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2198 * to "-1" to force all XFRM destinations to get validated by
2199 * dst_ops->check on every use. We do this because when a
2200 * normal route referenced by an XFRM dst is obsoleted we do
2201 * not go looking around for all parent referencing XFRM dsts
2202 * so that we can invalidate them. It is just too much work.
2203 * Instead we make the checks here on every use. For example:
2204 *
2205 * XFRM dst A --> IPv4 dst X
2206 *
2207 * X is the "xdst->route" of A (X is also the "dst->path" of A
2208 * in this example). If X is marked obsolete, "A" will not
2209 * notice. That's what we are validating here via the
2210 * stale_bundle() check.
2211 *
2212 * When a policy's bundle is pruned, we dst_free() the XFRM
2213 * dst which causes it's ->obsolete field to be set to a
2214 * positive non-zero integer. If an XFRM dst has been pruned
2215 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002216 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002217 if (dst->obsolete < 0 && !stale_bundle(dst))
2218 return dst;
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return NULL;
2221}
2222
2223static int stale_bundle(struct dst_entry *dst)
2224{
David S. Millerca116922011-03-11 15:59:31 -05002225 return !xfrm_bundle_ok((struct xfrm_dst *)dst, AF_UNSPEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
2227
Herbert Xuaabc9762005-05-03 16:27:10 -07002228void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002231 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002232 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 dev_put(dev);
2234 }
2235}
Herbert Xuaabc9762005-05-03 16:27:10 -07002236EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238static void xfrm_link_failure(struct sk_buff *skb)
2239{
2240 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241}
2242
2243static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2244{
2245 if (dst) {
2246 if (dst->obsolete) {
2247 dst_release(dst);
2248 dst = NULL;
2249 }
2250 }
2251 return dst;
2252}
2253
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002254static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
Timo Teräs80c802f2010-04-07 00:30:05 +00002256 struct dst_entry *head, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Timo Teräs80c802f2010-04-07 00:30:05 +00002258 flow_cache_flush();
2259
2260 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2261 head = xfrm_policy_sk_bundles;
2262 xfrm_policy_sk_bundles = NULL;
2263 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2264
2265 while (head) {
2266 next = head->next;
2267 dst_free(head);
2268 head = next;
2269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
Herbert Xu25ee3282007-12-11 09:32:34 -08002272static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 do {
2275 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2276 u32 pmtu, route_mtu_cached;
2277
2278 pmtu = dst_mtu(dst->child);
2279 xdst->child_mtu_cached = pmtu;
2280
2281 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2282
2283 route_mtu_cached = dst_mtu(xdst->route);
2284 xdst->route_mtu_cached = route_mtu_cached;
2285
2286 if (pmtu > route_mtu_cached)
2287 pmtu = route_mtu_cached;
2288
David S. Millerdefb3512010-12-08 21:16:57 -08002289 dst_metric_set(dst, RTAX_MTU, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 } while ((dst = dst->next));
2291}
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293/* Check that the bundle accepts the flow and its components are
2294 * still valid.
2295 */
2296
David S. Millerca116922011-03-11 15:59:31 -05002297static int xfrm_bundle_ok(struct xfrm_dst *first, int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
2299 struct dst_entry *dst = &first->u.dst;
2300 struct xfrm_dst *last;
2301 u32 mtu;
2302
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002303 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 (dst->dev && !netif_running(dst->dev)))
2305 return 0;
2306
2307 last = NULL;
2308
2309 do {
2310 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2313 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00002314 if (xdst->xfrm_genid != dst->xfrm->genid)
2315 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07002316 if (xdst->num_pols > 0 &&
2317 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07002318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
2320 mtu = dst_mtu(dst->child);
2321 if (xdst->child_mtu_cached != mtu) {
2322 last = xdst;
2323 xdst->child_mtu_cached = mtu;
2324 }
2325
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002326 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 return 0;
2328 mtu = dst_mtu(xdst->route);
2329 if (xdst->route_mtu_cached != mtu) {
2330 last = xdst;
2331 xdst->route_mtu_cached = mtu;
2332 }
2333
2334 dst = dst->child;
2335 } while (dst->xfrm);
2336
2337 if (likely(!last))
2338 return 1;
2339
2340 mtu = last->child_mtu_cached;
2341 for (;;) {
2342 dst = &last->u.dst;
2343
2344 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2345 if (mtu > last->route_mtu_cached)
2346 mtu = last->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08002347 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
2349 if (last == first)
2350 break;
2351
Patrick McHardybd0bf072007-07-18 01:55:52 -07002352 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 last->child_mtu_cached = mtu;
2354 }
2355
2356 return 1;
2357}
2358
David S. Miller0dbaee32010-12-13 12:52:14 -08002359static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2360{
2361 return dst_metric_advmss(dst->path);
2362}
2363
David S. Millerd33e4552010-12-14 13:01:14 -08002364static unsigned int xfrm_default_mtu(const struct dst_entry *dst)
2365{
2366 return dst_mtu(dst->path);
2367}
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2370{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002371 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 int err = 0;
2373 if (unlikely(afinfo == NULL))
2374 return -EINVAL;
2375 if (unlikely(afinfo->family >= NPROTO))
2376 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002377 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2379 err = -ENOBUFS;
2380 else {
2381 struct dst_ops *dst_ops = afinfo->dst_ops;
2382 if (likely(dst_ops->kmem_cachep == NULL))
2383 dst_ops->kmem_cachep = xfrm_dst_cache;
2384 if (likely(dst_ops->check == NULL))
2385 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08002386 if (likely(dst_ops->default_advmss == NULL))
2387 dst_ops->default_advmss = xfrm_default_advmss;
David S. Millerd33e4552010-12-14 13:01:14 -08002388 if (likely(dst_ops->default_mtu == NULL))
2389 dst_ops->default_mtu = xfrm_default_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 if (likely(dst_ops->negative_advice == NULL))
2391 dst_ops->negative_advice = xfrm_negative_advice;
2392 if (likely(dst_ops->link_failure == NULL))
2393 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 if (likely(afinfo->garbage_collect == NULL))
2395 afinfo->garbage_collect = __xfrm_garbage_collect;
2396 xfrm_policy_afinfo[afinfo->family] = afinfo;
2397 }
Ingo Molnare959d812006-04-28 15:32:29 -07002398 write_unlock_bh(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002399
2400 rtnl_lock();
2401 for_each_net(net) {
2402 struct dst_ops *xfrm_dst_ops;
2403
2404 switch (afinfo->family) {
2405 case AF_INET:
2406 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2407 break;
2408#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2409 case AF_INET6:
2410 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2411 break;
2412#endif
2413 default:
2414 BUG();
2415 }
2416 *xfrm_dst_ops = *afinfo->dst_ops;
2417 }
2418 rtnl_unlock();
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 return err;
2421}
2422EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2423
2424int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2425{
2426 int err = 0;
2427 if (unlikely(afinfo == NULL))
2428 return -EINVAL;
2429 if (unlikely(afinfo->family >= NPROTO))
2430 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002431 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2433 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2434 err = -EINVAL;
2435 else {
2436 struct dst_ops *dst_ops = afinfo->dst_ops;
2437 xfrm_policy_afinfo[afinfo->family] = NULL;
2438 dst_ops->kmem_cachep = NULL;
2439 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 dst_ops->negative_advice = NULL;
2441 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 afinfo->garbage_collect = NULL;
2443 }
2444 }
Ingo Molnare959d812006-04-28 15:32:29 -07002445 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return err;
2447}
2448EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2449
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002450static void __net_init xfrm_dst_ops_init(struct net *net)
2451{
2452 struct xfrm_policy_afinfo *afinfo;
2453
2454 read_lock_bh(&xfrm_policy_afinfo_lock);
2455 afinfo = xfrm_policy_afinfo[AF_INET];
2456 if (afinfo)
2457 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
2458#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2459 afinfo = xfrm_policy_afinfo[AF_INET6];
2460 if (afinfo)
2461 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2462#endif
2463 read_unlock_bh(&xfrm_policy_afinfo_lock);
2464}
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2467{
2468 struct xfrm_policy_afinfo *afinfo;
2469 if (unlikely(family >= NPROTO))
2470 return NULL;
2471 read_lock(&xfrm_policy_afinfo_lock);
2472 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002473 if (unlikely(!afinfo))
2474 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 return afinfo;
2476}
2477
2478static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2479{
Herbert Xu546be242006-05-27 23:03:58 -07002480 read_unlock(&xfrm_policy_afinfo_lock);
2481}
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2484{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002485 struct net_device *dev = ptr;
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 switch (event) {
2488 case NETDEV_DOWN:
Timo Teräs80c802f2010-04-07 00:30:05 +00002489 __xfrm_garbage_collect(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 }
2491 return NOTIFY_DONE;
2492}
2493
2494static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002495 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496};
2497
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002498#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002499static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002500{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002501 int rv;
2502
Tejun Heo7d720c32010-02-16 15:20:26 +00002503 if (snmp_mib_init((void __percpu **)net->mib.xfrm_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00002504 sizeof(struct linux_xfrm_mib),
2505 __alignof__(struct linux_xfrm_mib)) < 0)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002506 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002507 rv = xfrm_proc_init(net);
2508 if (rv < 0)
Tejun Heo7d720c32010-02-16 15:20:26 +00002509 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002510 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002511}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002512
2513static void xfrm_statistics_fini(struct net *net)
2514{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002515 xfrm_proc_fini(net);
Tejun Heo7d720c32010-02-16 15:20:26 +00002516 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002517}
2518#else
2519static int __net_init xfrm_statistics_init(struct net *net)
2520{
2521 return 0;
2522}
2523
2524static void xfrm_statistics_fini(struct net *net)
2525{
2526}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002527#endif
2528
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002529static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
David S. Miller2518c7c2006-08-24 04:45:07 -07002531 unsigned int hmask, sz;
2532 int dir;
2533
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002534 if (net_eq(net, &init_net))
2535 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002537 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002538 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
David S. Miller2518c7c2006-08-24 04:45:07 -07002540 hmask = 8 - 1;
2541 sz = (hmask+1) * sizeof(struct hlist_head);
2542
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002543 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2544 if (!net->xfrm.policy_byidx)
2545 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002546 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002547
2548 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2549 struct xfrm_policy_hash *htab;
2550
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002551 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002552 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002553
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002554 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002555 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002556 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002557 goto out_bydst;
2558 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002559 }
2560
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002561 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002562 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002563 if (net_eq(net, &init_net))
2564 register_netdevice_notifier(&xfrm_dev_notifier);
2565 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002566
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002567out_bydst:
2568 for (dir--; dir >= 0; dir--) {
2569 struct xfrm_policy_hash *htab;
2570
2571 htab = &net->xfrm.policy_bydst[dir];
2572 xfrm_hash_free(htab->table, sz);
2573 }
2574 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002575out_byidx:
2576 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002579static void xfrm_policy_fini(struct net *net)
2580{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002581 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002582 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002583 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002584
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002585 flush_work(&net->xfrm.policy_hash_work);
2586#ifdef CONFIG_XFRM_SUB_POLICY
2587 audit_info.loginuid = -1;
2588 audit_info.sessionid = -1;
2589 audit_info.secid = 0;
2590 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2591#endif
2592 audit_info.loginuid = -1;
2593 audit_info.sessionid = -1;
2594 audit_info.secid = 0;
2595 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002596
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002597 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002598
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002599 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002600 struct xfrm_policy_hash *htab;
2601
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002602 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002603
2604 htab = &net->xfrm.policy_bydst[dir];
2605 sz = (htab->hmask + 1);
2606 WARN_ON(!hlist_empty(htab->table));
2607 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002608 }
2609
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002610 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002611 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2612 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002613}
2614
2615static int __net_init xfrm_net_init(struct net *net)
2616{
2617 int rv;
2618
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002619 rv = xfrm_statistics_init(net);
2620 if (rv < 0)
2621 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002622 rv = xfrm_state_init(net);
2623 if (rv < 0)
2624 goto out_state;
2625 rv = xfrm_policy_init(net);
2626 if (rv < 0)
2627 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002628 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002629 rv = xfrm_sysctl_init(net);
2630 if (rv < 0)
2631 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002632 return 0;
2633
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002634out_sysctl:
2635 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002636out_policy:
2637 xfrm_state_fini(net);
2638out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002639 xfrm_statistics_fini(net);
2640out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002641 return rv;
2642}
2643
2644static void __net_exit xfrm_net_exit(struct net *net)
2645{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002646 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002647 xfrm_policy_fini(net);
2648 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002649 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002650}
2651
2652static struct pernet_operations __net_initdata xfrm_net_ops = {
2653 .init = xfrm_net_init,
2654 .exit = xfrm_net_exit,
2655};
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657void __init xfrm_init(void)
2658{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002659 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 xfrm_input_init();
2661}
2662
Joy Lattenab5f5e82007-09-17 11:51:22 -07002663#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd2008-01-12 03:20:03 -08002664static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2665 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002666{
Paul Moore875179f2007-12-01 23:27:18 +11002667 struct xfrm_sec_ctx *ctx = xp->security;
2668 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002669
Paul Moore875179f2007-12-01 23:27:18 +11002670 if (ctx)
2671 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2672 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2673
2674 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002675 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002676 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002677 if (sel->prefixlen_s != 32)
2678 audit_log_format(audit_buf, " src_prefixlen=%d",
2679 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002680 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002681 if (sel->prefixlen_d != 32)
2682 audit_log_format(audit_buf, " dst_prefixlen=%d",
2683 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002684 break;
2685 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002686 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002687 if (sel->prefixlen_s != 128)
2688 audit_log_format(audit_buf, " src_prefixlen=%d",
2689 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002690 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002691 if (sel->prefixlen_d != 128)
2692 audit_log_format(audit_buf, " dst_prefixlen=%d",
2693 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002694 break;
2695 }
2696}
2697
Paul Moore68277ac2007-12-20 20:49:33 -08002698void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002699 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002700{
2701 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002702
Paul Mooreafeb14b2007-12-21 14:58:11 -08002703 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002704 if (audit_buf == NULL)
2705 return;
Eric Paris25323862008-04-18 10:09:25 -04002706 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002707 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002708 xfrm_audit_common_policyinfo(xp, audit_buf);
2709 audit_log_end(audit_buf);
2710}
2711EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2712
Paul Moore68277ac2007-12-20 20:49:33 -08002713void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002714 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002715{
2716 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002717
Paul Mooreafeb14b2007-12-21 14:58:11 -08002718 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002719 if (audit_buf == NULL)
2720 return;
Eric Paris25323862008-04-18 10:09:25 -04002721 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002722 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002723 xfrm_audit_common_policyinfo(xp, audit_buf);
2724 audit_log_end(audit_buf);
2725}
2726EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2727#endif
2728
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002729#ifdef CONFIG_XFRM_MIGRATE
David S. Millerb4b7c0b2011-02-24 00:35:06 -05002730static int xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
2731 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002732{
2733 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2734 if (sel_tgt->family == sel_cmp->family &&
2735 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002736 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002737 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2738 sel_cmp->family) == 0 &&
2739 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2740 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2741 return 1;
2742 }
2743 } else {
2744 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2745 return 1;
2746 }
2747 }
2748 return 0;
2749}
2750
David S. Millerb4b7c0b2011-02-24 00:35:06 -05002751static struct xfrm_policy * xfrm_migrate_policy_find(const struct xfrm_selector *sel,
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002752 u8 dir, u8 type)
2753{
2754 struct xfrm_policy *pol, *ret = NULL;
2755 struct hlist_node *entry;
2756 struct hlist_head *chain;
2757 u32 priority = ~0U;
2758
2759 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08002760 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002761 hlist_for_each_entry(pol, entry, chain, bydst) {
2762 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2763 pol->type == type) {
2764 ret = pol;
2765 priority = ret->priority;
2766 break;
2767 }
2768 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002769 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002770 hlist_for_each_entry(pol, entry, chain, bydst) {
2771 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2772 pol->type == type &&
2773 pol->priority < priority) {
2774 ret = pol;
2775 break;
2776 }
2777 }
2778
2779 if (ret)
2780 xfrm_pol_hold(ret);
2781
2782 read_unlock_bh(&xfrm_policy_lock);
2783
2784 return ret;
2785}
2786
David S. Millerdd701752011-02-24 00:21:08 -05002787static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002788{
2789 int match = 0;
2790
2791 if (t->mode == m->mode && t->id.proto == m->proto &&
2792 (m->reqid == 0 || t->reqid == m->reqid)) {
2793 switch (t->mode) {
2794 case XFRM_MODE_TUNNEL:
2795 case XFRM_MODE_BEET:
2796 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2797 m->old_family) == 0 &&
2798 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2799 m->old_family) == 0) {
2800 match = 1;
2801 }
2802 break;
2803 case XFRM_MODE_TRANSPORT:
2804 /* in case of transport mode, template does not store
2805 any IP addresses, hence we just compare mode and
2806 protocol */
2807 match = 1;
2808 break;
2809 default:
2810 break;
2811 }
2812 }
2813 return match;
2814}
2815
2816/* update endpoint address(es) of template(s) */
2817static int xfrm_policy_migrate(struct xfrm_policy *pol,
2818 struct xfrm_migrate *m, int num_migrate)
2819{
2820 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002821 int i, j, n = 0;
2822
2823 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002824 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002825 /* target policy has been deleted */
2826 write_unlock_bh(&pol->lock);
2827 return -ENOENT;
2828 }
2829
2830 for (i = 0; i < pol->xfrm_nr; i++) {
2831 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2832 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2833 continue;
2834 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002835 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2836 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002837 continue;
2838 /* update endpoints */
2839 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2840 sizeof(pol->xfrm_vec[i].id.daddr));
2841 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2842 sizeof(pol->xfrm_vec[i].saddr));
2843 pol->xfrm_vec[i].encap_family = mp->new_family;
2844 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00002845 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002846 }
2847 }
2848
2849 write_unlock_bh(&pol->lock);
2850
2851 if (!n)
2852 return -ENODATA;
2853
2854 return 0;
2855}
2856
David S. Millerdd701752011-02-24 00:21:08 -05002857static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002858{
2859 int i, j;
2860
2861 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2862 return -EINVAL;
2863
2864 for (i = 0; i < num_migrate; i++) {
2865 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2866 m[i].old_family) == 0) &&
2867 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2868 m[i].old_family) == 0))
2869 return -EINVAL;
2870 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2871 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2872 return -EINVAL;
2873
2874 /* check if there is any duplicated entry */
2875 for (j = i + 1; j < num_migrate; j++) {
2876 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2877 sizeof(m[i].old_daddr)) &&
2878 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2879 sizeof(m[i].old_saddr)) &&
2880 m[i].proto == m[j].proto &&
2881 m[i].mode == m[j].mode &&
2882 m[i].reqid == m[j].reqid &&
2883 m[i].old_family == m[j].old_family)
2884 return -EINVAL;
2885 }
2886 }
2887
2888 return 0;
2889}
2890
David S. Millerb4b7c0b2011-02-24 00:35:06 -05002891int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002892 struct xfrm_migrate *m, int num_migrate,
2893 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002894{
2895 int i, err, nx_cur = 0, nx_new = 0;
2896 struct xfrm_policy *pol = NULL;
2897 struct xfrm_state *x, *xc;
2898 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2899 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2900 struct xfrm_migrate *mp;
2901
2902 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2903 goto out;
2904
2905 /* Stage 1 - find policy */
2906 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2907 err = -ENOENT;
2908 goto out;
2909 }
2910
2911 /* Stage 2 - find and update state(s) */
2912 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2913 if ((x = xfrm_migrate_state_find(mp))) {
2914 x_cur[nx_cur] = x;
2915 nx_cur++;
2916 if ((xc = xfrm_state_migrate(x, mp))) {
2917 x_new[nx_new] = xc;
2918 nx_new++;
2919 } else {
2920 err = -ENODATA;
2921 goto restore_state;
2922 }
2923 }
2924 }
2925
2926 /* Stage 3 - update policy */
2927 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2928 goto restore_state;
2929
2930 /* Stage 4 - delete old state(s) */
2931 if (nx_cur) {
2932 xfrm_states_put(x_cur, nx_cur);
2933 xfrm_states_delete(x_cur, nx_cur);
2934 }
2935
2936 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002937 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002938
2939 xfrm_pol_put(pol);
2940
2941 return 0;
2942out:
2943 return err;
2944
2945restore_state:
2946 if (pol)
2947 xfrm_pol_put(pol);
2948 if (nx_cur)
2949 xfrm_states_put(x_cur, nx_cur);
2950 if (nx_new)
2951 xfrm_states_delete(x_new, nx_new);
2952
2953 return err;
2954}
David S. Millere610e672007-02-08 13:29:15 -08002955EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002956#endif