blob: 3a4221a71b098fee51ad7ce103786469dee9c782 [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);
stephen hemminger1c4c40c2010-10-15 05:14:19 +000053static int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *xdst,
David S. Miller47209ab2011-02-22 18:29:20 -080054 const struct flowi *fl, int family);
stephen hemminger1c4c40c2010-10-15 05:14:19 +000055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Wei Yongjun29fa0b302008-12-03 00:33:09 -080057static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
58 int dir);
59
Andrew Morton77681022006-11-08 22:46:26 -080060static inline int
David S. Miller200ce962011-02-24 00:12:25 -050061__xfrm4_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080062{
63 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
64 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
65 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
66 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
67 (fl->proto == sel->proto || !sel->proto) &&
68 (fl->oif == sel->ifindex || !sel->ifindex);
69}
70
71static inline int
David S. Miller200ce962011-02-24 00:12:25 -050072__xfrm6_selector_match(const struct xfrm_selector *sel, const struct flowi *fl)
Andrew Morton77681022006-11-08 22:46:26 -080073{
74 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
75 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
76 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
77 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
78 (fl->proto == sel->proto || !sel->proto) &&
79 (fl->oif == sel->ifindex || !sel->ifindex);
80}
81
David S. Miller200ce962011-02-24 00:12:25 -050082int xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl,
David S. Millere1ad2ab2011-02-22 18:07:39 -080083 unsigned short family)
Andrew Morton77681022006-11-08 22:46:26 -080084{
85 switch (family) {
86 case AF_INET:
87 return __xfrm4_selector_match(sel, fl);
88 case AF_INET6:
89 return __xfrm6_selector_match(sel, fl);
90 }
91 return 0;
92}
93
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -080094static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
David S. Miller6418c4e2011-02-24 00:16:53 -050095 const xfrm_address_t *saddr,
96 const xfrm_address_t *daddr,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090097 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080099 struct xfrm_policy_afinfo *afinfo;
100 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Herbert Xu25ee3282007-12-11 09:32:34 -0800102 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800104 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800106 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900109
110 return dst;
111}
112
113static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
114 xfrm_address_t *prev_saddr,
115 xfrm_address_t *prev_daddr,
116 int family)
117{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800118 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900119 xfrm_address_t *saddr = &x->props.saddr;
120 xfrm_address_t *daddr = &x->id.daddr;
121 struct dst_entry *dst;
122
123 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
124 saddr = x->coaddr;
125 daddr = prev_daddr;
126 }
127 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
128 saddr = prev_saddr;
129 daddr = x->coaddr;
130 }
131
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800132 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900133
134 if (!IS_ERR(dst)) {
135 if (prev_saddr != saddr)
136 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
137 if (prev_daddr != daddr)
138 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
139 }
140
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800141 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static inline unsigned long make_jiffies(long secs)
145{
146 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
147 return MAX_SCHEDULE_TIMEOUT-1;
148 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900149 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152static void xfrm_policy_timer(unsigned long data)
153{
154 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800155 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 long next = LONG_MAX;
157 int warn = 0;
158 int dir;
159
160 read_lock(&xp->lock);
161
Timo Teräsea2dea92010-03-31 00:17:05 +0000162 if (unlikely(xp->walk.dead))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 goto out;
164
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700165 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 if (xp->lft.hard_add_expires_seconds) {
168 long tmo = xp->lft.hard_add_expires_seconds +
169 xp->curlft.add_time - now;
170 if (tmo <= 0)
171 goto expired;
172 if (tmo < next)
173 next = tmo;
174 }
175 if (xp->lft.hard_use_expires_seconds) {
176 long tmo = xp->lft.hard_use_expires_seconds +
177 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
178 if (tmo <= 0)
179 goto expired;
180 if (tmo < next)
181 next = tmo;
182 }
183 if (xp->lft.soft_add_expires_seconds) {
184 long tmo = xp->lft.soft_add_expires_seconds +
185 xp->curlft.add_time - now;
186 if (tmo <= 0) {
187 warn = 1;
188 tmo = XFRM_KM_TIMEOUT;
189 }
190 if (tmo < next)
191 next = tmo;
192 }
193 if (xp->lft.soft_use_expires_seconds) {
194 long tmo = xp->lft.soft_use_expires_seconds +
195 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
196 if (tmo <= 0) {
197 warn = 1;
198 tmo = XFRM_KM_TIMEOUT;
199 }
200 if (tmo < next)
201 next = tmo;
202 }
203
204 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800205 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (next != LONG_MAX &&
207 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
208 xfrm_pol_hold(xp);
209
210out:
211 read_unlock(&xp->lock);
212 xfrm_pol_put(xp);
213 return;
214
215expired:
216 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700217 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800218 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 xfrm_pol_put(xp);
220}
221
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000222static struct flow_cache_object *xfrm_policy_flo_get(struct flow_cache_object *flo)
223{
224 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
225
226 if (unlikely(pol->walk.dead))
227 flo = NULL;
228 else
229 xfrm_pol_hold(pol);
230
231 return flo;
232}
233
234static int xfrm_policy_flo_check(struct flow_cache_object *flo)
235{
236 struct xfrm_policy *pol = container_of(flo, struct xfrm_policy, flo);
237
238 return !pol->walk.dead;
239}
240
241static void xfrm_policy_flo_delete(struct flow_cache_object *flo)
242{
243 xfrm_pol_put(container_of(flo, struct xfrm_policy, flo));
244}
245
246static const struct flow_cache_ops xfrm_policy_fc_ops = {
247 .get = xfrm_policy_flo_get,
248 .check = xfrm_policy_flo_check,
249 .delete = xfrm_policy_flo_delete,
250};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
253 * SPD calls.
254 */
255
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800256struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct xfrm_policy *policy;
259
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700260 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800263 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700264 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700265 INIT_HLIST_NODE(&policy->bydst);
266 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700268 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800269 setup_timer(&policy->timer, xfrm_policy_timer,
270 (unsigned long)policy);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000271 policy->flo.ops = &xfrm_policy_fc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273 return policy;
274}
275EXPORT_SYMBOL(xfrm_policy_alloc);
276
277/* Destroy xfrm_policy: descendant resources must be released to this moment. */
278
WANG Cong64c31b32008-01-07 22:34:29 -0800279void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Herbert Xu12a169e2008-10-01 07:03:24 -0700281 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (del_timer(&policy->timer))
284 BUG();
285
Paul Moore03e1ad72008-04-12 19:07:52 -0700286 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 kfree(policy);
288}
WANG Cong64c31b32008-01-07 22:34:29 -0800289EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/* Rule must be locked. Release descentant resources, announce
292 * entry dead. The rule must be unlinked from lists to the moment.
293 */
294
295static void xfrm_policy_kill(struct xfrm_policy *policy)
296{
Herbert Xu12a169e2008-10-01 07:03:24 -0700297 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Timo Teräs285ead12010-04-07 00:30:06 +0000299 atomic_inc(&policy->genid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Timo Teräs285ead12010-04-07 00:30:06 +0000301 if (del_timer(&policy->timer))
302 xfrm_pol_put(policy);
303
304 xfrm_pol_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
David S. Miller2518c7c2006-08-24 04:45:07 -0700307static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
308
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800309static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700310{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800311 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700312}
313
David S. Miller5f803b52011-02-24 00:33:19 -0500314static struct hlist_head *policy_hash_bysel(struct net *net,
315 const struct xfrm_selector *sel,
316 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700317{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800318 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700319 unsigned int hash = __sel_hash(sel, family, hmask);
320
321 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800322 &net->xfrm.policy_inexact[dir] :
323 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700324}
325
David S. Miller5f803b52011-02-24 00:33:19 -0500326static struct hlist_head *policy_hash_direct(struct net *net,
327 const xfrm_address_t *daddr,
328 const xfrm_address_t *saddr,
329 unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700330{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800331 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700332 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
333
Alexey Dobriyan11219942008-11-25 17:33:06 -0800334 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700335}
336
David S. Miller2518c7c2006-08-24 04:45:07 -0700337static void xfrm_dst_hash_transfer(struct hlist_head *list,
338 struct hlist_head *ndsttable,
339 unsigned int nhashmask)
340{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800341 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700342 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800343 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700344
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800345redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700346 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
347 unsigned int h;
348
349 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
350 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800351 if (!entry0) {
352 hlist_del(entry);
353 hlist_add_head(&pol->bydst, ndsttable+h);
354 h0 = h;
355 } else {
356 if (h != h0)
357 continue;
358 hlist_del(entry);
359 hlist_add_after(entry0, &pol->bydst);
360 }
361 entry0 = entry;
362 }
363 if (!hlist_empty(list)) {
364 entry0 = NULL;
365 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700366 }
367}
368
369static void xfrm_idx_hash_transfer(struct hlist_head *list,
370 struct hlist_head *nidxtable,
371 unsigned int nhashmask)
372{
373 struct hlist_node *entry, *tmp;
374 struct xfrm_policy *pol;
375
376 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
377 unsigned int h;
378
379 h = __idx_hash(pol->index, nhashmask);
380 hlist_add_head(&pol->byidx, nidxtable+h);
381 }
382}
383
384static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
385{
386 return ((old_hmask + 1) << 1) - 1;
387}
388
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800389static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700390{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800391 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700392 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
393 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800394 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700395 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700396 int i;
397
398 if (!ndst)
399 return;
400
401 write_lock_bh(&xfrm_policy_lock);
402
403 for (i = hmask; i >= 0; i--)
404 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
405
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800406 net->xfrm.policy_bydst[dir].table = ndst;
407 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700408
409 write_unlock_bh(&xfrm_policy_lock);
410
David S. Miller44e36b42006-08-24 04:50:50 -0700411 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700412}
413
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800414static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700415{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800416 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700417 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
418 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800419 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700420 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700421 int i;
422
423 if (!nidx)
424 return;
425
426 write_lock_bh(&xfrm_policy_lock);
427
428 for (i = hmask; i >= 0; i--)
429 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
430
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800431 net->xfrm.policy_byidx = nidx;
432 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700433
434 write_unlock_bh(&xfrm_policy_lock);
435
David S. Miller44e36b42006-08-24 04:50:50 -0700436 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700437}
438
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800439static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700440{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800441 unsigned int cnt = net->xfrm.policy_count[dir];
442 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700443
444 if (total)
445 *total += cnt;
446
447 if ((hmask + 1) < xfrm_policy_hashmax &&
448 cnt > hmask)
449 return 1;
450
451 return 0;
452}
453
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800454static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700455{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800456 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700457
458 if ((hmask + 1) < xfrm_policy_hashmax &&
459 total > hmask)
460 return 1;
461
462 return 0;
463}
464
Alexey Dobriyane0710412010-01-23 13:37:10 +0000465void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700466{
467 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000468 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
469 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
470 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
471 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
472 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
473 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
474 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700475 si->spdhmcnt = xfrm_policy_hashmax;
476 read_unlock_bh(&xfrm_policy_lock);
477}
478EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700479
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700480static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800481static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700482{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800483 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700484 int dir, total;
485
486 mutex_lock(&hash_resize_mutex);
487
488 total = 0;
489 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800490 if (xfrm_bydst_should_resize(net, dir, &total))
491 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700492 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800493 if (xfrm_byidx_should_resize(net, total))
494 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700495
496 mutex_unlock(&hash_resize_mutex);
497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/* Generate new index... KAME seems to generate them ordered by cost
500 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800501static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 static u32 idx_generator;
504
505 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700506 struct hlist_node *entry;
507 struct hlist_head *list;
508 struct xfrm_policy *p;
509 u32 idx;
510 int found;
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 idx = (idx_generator | dir);
513 idx_generator += 8;
514 if (idx == 0)
515 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800516 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700517 found = 0;
518 hlist_for_each_entry(p, entry, list, byidx) {
519 if (p->index == idx) {
520 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700524 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return idx;
526 }
527}
528
David S. Miller2518c7c2006-08-24 04:45:07 -0700529static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
530{
531 u32 *p1 = (u32 *) s1;
532 u32 *p2 = (u32 *) s2;
533 int len = sizeof(struct xfrm_selector) / sizeof(u32);
534 int i;
535
536 for (i = 0; i < len; i++) {
537 if (p1[i] != p2[i])
538 return 1;
539 }
540
541 return 0;
542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
545{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800546 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700547 struct xfrm_policy *pol;
548 struct xfrm_policy *delpol;
549 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800550 struct hlist_node *entry, *newpos;
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000551 u32 mark = policy->mark.v & policy->mark.m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800554 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700555 delpol = NULL;
556 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700557 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800558 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700559 !selector_cmp(&pol->selector, &policy->selector) &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000560 (mark & pol->mark.m) == pol->mark.v &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800561 xfrm_sec_ctx_match(pol->security, policy->security) &&
562 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (excl) {
564 write_unlock_bh(&xfrm_policy_lock);
565 return -EEXIST;
566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 delpol = pol;
568 if (policy->priority > pol->priority)
569 continue;
570 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800571 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 continue;
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (delpol)
575 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700578 hlist_add_after(newpos, &policy->bydst);
579 else
580 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800582 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 atomic_inc(&flow_cache_genid);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800584 if (delpol)
585 __xfrm_policy_unlink(delpol, dir);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800586 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
587 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800588 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 policy->curlft.use_time = 0;
590 if (!mod_timer(&policy->timer, jiffies + HZ))
591 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800592 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 write_unlock_bh(&xfrm_policy_lock);
594
David S. Miller9b78a822005-12-22 07:39:48 -0800595 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800597 else if (xfrm_bydst_should_resize(net, dir, NULL))
598 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return 0;
601}
602EXPORT_SYMBOL(xfrm_policy_insert);
603
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000604struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
605 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800606 struct xfrm_sec_ctx *ctx, int delete,
607 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
David S. Miller2518c7c2006-08-24 04:45:07 -0700609 struct xfrm_policy *pol, *ret;
610 struct hlist_head *chain;
611 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Eric Parisef41aaa2007-03-07 15:37:58 -0800613 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800615 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700616 ret = NULL;
617 hlist_for_each_entry(pol, entry, chain, bydst) {
618 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000619 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700620 !selector_cmp(sel, &pol->selector) &&
621 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700623 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700624 *err = security_xfrm_policy_delete(
625 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800626 if (*err) {
627 write_unlock_bh(&xfrm_policy_lock);
628 return pol;
629 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800630 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700631 }
632 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 break;
634 }
635 }
636 write_unlock_bh(&xfrm_policy_lock);
637
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000638 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700639 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700640 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
Trent Jaegerdf718372005-12-13 23:12:27 -0800642EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000644struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
645 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
David S. Miller2518c7c2006-08-24 04:45:07 -0700647 struct xfrm_policy *pol, *ret;
648 struct hlist_head *chain;
649 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Herbert Xub5505c62007-05-14 02:15:47 -0700651 *err = -ENOENT;
652 if (xfrm_policy_id2dir(id) != dir)
653 return NULL;
654
Eric Parisef41aaa2007-03-07 15:37:58 -0800655 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800657 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700658 ret = NULL;
659 hlist_for_each_entry(pol, entry, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000660 if (pol->type == type && pol->index == id &&
661 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700663 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700664 *err = security_xfrm_policy_delete(
665 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800666 if (*err) {
667 write_unlock_bh(&xfrm_policy_lock);
668 return pol;
669 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800670 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700671 }
672 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
674 }
675 }
676 write_unlock_bh(&xfrm_policy_lock);
677
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000678 if (ret && delete)
David S. Miller2518c7c2006-08-24 04:45:07 -0700679 xfrm_policy_kill(ret);
David S. Miller2518c7c2006-08-24 04:45:07 -0700680 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682EXPORT_SYMBOL(xfrm_policy_byid);
683
Joy Latten4aa2e622007-06-04 19:05:57 -0400684#ifdef CONFIG_SECURITY_NETWORK_XFRM
685static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800686xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Joy Latten4aa2e622007-06-04 19:05:57 -0400688 int dir, err = 0;
689
690 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
691 struct xfrm_policy *pol;
692 struct hlist_node *entry;
693 int i;
694
695 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800696 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400697 if (pol->type != type)
698 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700699 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400700 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700701 xfrm_audit_policy_delete(pol, 0,
702 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400703 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700704 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400705 return err;
706 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900707 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800708 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400709 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800710 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400711 bydst) {
712 if (pol->type != type)
713 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700714 err = security_xfrm_policy_delete(
715 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400716 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700717 xfrm_audit_policy_delete(pol, 0,
718 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400719 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700720 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400721 return err;
722 }
723 }
724 }
725 }
726 return err;
727}
728#else
729static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800730xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400731{
732 return 0;
733}
734#endif
735
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800736int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400737{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000738 int dir, err = 0, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400741
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800742 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400743 if (err)
744 goto out;
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700747 struct xfrm_policy *pol;
748 struct hlist_node *entry;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800749 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700750
751 again1:
752 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800753 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700754 if (pol->type != type)
755 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000756 __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000758 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Joy Lattenab5f5e82007-09-17 11:51:22 -0700760 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400761 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700762 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600763
David S. Miller2518c7c2006-08-24 04:45:07 -0700764 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700767 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700769
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800770 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700771 again2:
772 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800773 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700774 bydst) {
775 if (pol->type != type)
776 continue;
Timo Teräsea2dea92010-03-31 00:17:05 +0000777 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700778 write_unlock_bh(&xfrm_policy_lock);
Timo Teräsea2dea92010-03-31 00:17:05 +0000779 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700780
Joy Lattenab5f5e82007-09-17 11:51:22 -0700781 xfrm_audit_policy_delete(pol, 1,
782 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400783 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700784 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700785 xfrm_policy_kill(pol);
786
787 write_lock_bh(&xfrm_policy_lock);
788 goto again2;
789 }
790 }
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000793 if (!cnt)
794 err = -ESRCH;
Joy Latten4aa2e622007-06-04 19:05:57 -0400795out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400797 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799EXPORT_SYMBOL(xfrm_policy_flush);
800
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800801int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800802 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 void *data)
804{
Herbert Xu12a169e2008-10-01 07:03:24 -0700805 struct xfrm_policy *pol;
806 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800807 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Timo Teras4c563f72008-02-28 21:31:08 -0800809 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
810 walk->type != XFRM_POLICY_TYPE_ANY)
811 return -EINVAL;
812
Herbert Xu12a169e2008-10-01 07:03:24 -0700813 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800814 return 0;
815
Herbert Xu12a169e2008-10-01 07:03:24 -0700816 write_lock_bh(&xfrm_policy_lock);
817 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800818 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700819 else
820 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800821 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700822 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800823 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700824 pol = container_of(x, struct xfrm_policy, walk);
825 if (walk->type != XFRM_POLICY_TYPE_ANY &&
826 walk->type != pol->type)
827 continue;
828 error = func(pol, xfrm_policy_id2dir(pol->index),
829 walk->seq, data);
830 if (error) {
831 list_move_tail(&walk->walk.all, &x->all);
832 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800833 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700834 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700836 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800837 error = -ENOENT;
838 goto out;
839 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700840 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700842 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return error;
844}
845EXPORT_SYMBOL(xfrm_policy_walk);
846
Herbert Xu12a169e2008-10-01 07:03:24 -0700847void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
848{
849 INIT_LIST_HEAD(&walk->walk.all);
850 walk->walk.dead = 1;
851 walk->type = type;
852 walk->seq = 0;
853}
854EXPORT_SYMBOL(xfrm_policy_walk_init);
855
856void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
857{
858 if (list_empty(&walk->walk.all))
859 return;
860
861 write_lock_bh(&xfrm_policy_lock);
862 list_del(&walk->walk.all);
863 write_unlock_bh(&xfrm_policy_lock);
864}
865EXPORT_SYMBOL(xfrm_policy_walk_done);
866
James Morris134b0fc2006-10-05 15:42:27 -0500867/*
868 * Find policy to apply to this flow.
869 *
870 * Returns 0 if policy found, else an -errno.
871 */
David S. Millerf299d552011-02-24 01:23:30 -0500872static int xfrm_policy_match(const struct xfrm_policy *pol,
873 const struct flowi *fl,
David S. Miller2518c7c2006-08-24 04:45:07 -0700874 u8 type, u16 family, int dir)
875{
David S. Millerf299d552011-02-24 01:23:30 -0500876 const struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500877 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700878
879 if (pol->family != family ||
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000880 (fl->mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -0700881 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500882 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700883
884 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500885 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700886 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
887 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700888
James Morris134b0fc2006-10-05 15:42:27 -0500889 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700890}
891
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800892static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
David S. Miller062cdb42011-02-22 18:31:08 -0800893 const struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700894 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
James Morris134b0fc2006-10-05 15:42:27 -0500896 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700897 struct xfrm_policy *pol, *ret;
David S. Miller0b597e72011-02-24 01:22:48 -0500898 const xfrm_address_t *daddr, *saddr;
David S. Miller2518c7c2006-08-24 04:45:07 -0700899 struct hlist_node *entry;
900 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700901 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700902
903 daddr = xfrm_flowi_daddr(fl, family);
904 saddr = xfrm_flowi_saddr(fl, family);
905 if (unlikely(!daddr || !saddr))
906 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800909 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700910 ret = NULL;
911 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500912 err = xfrm_policy_match(pol, fl, type, family, dir);
913 if (err) {
914 if (err == -ESRCH)
915 continue;
916 else {
917 ret = ERR_PTR(err);
918 goto fail;
919 }
920 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700921 ret = pol;
922 priority = ret->priority;
923 break;
924 }
925 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800926 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700927 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500928 err = xfrm_policy_match(pol, fl, type, family, dir);
929 if (err) {
930 if (err == -ESRCH)
931 continue;
932 else {
933 ret = ERR_PTR(err);
934 goto fail;
935 }
936 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700937 ret = pol;
938 break;
939 }
940 }
David S. Milleracba48e2006-08-25 15:46:46 -0700941 if (ret)
942 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500943fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700945
David S. Miller2518c7c2006-08-24 04:45:07 -0700946 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700947}
948
Timo Teräs80c802f2010-04-07 00:30:05 +0000949static struct xfrm_policy *
David S. Miller73ff93c2011-02-22 18:33:42 -0800950__xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir)
Timo Teräs80c802f2010-04-07 00:30:05 +0000951{
952#ifdef CONFIG_XFRM_SUB_POLICY
953 struct xfrm_policy *pol;
954
955 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
956 if (pol != NULL)
957 return pol;
958#endif
959 return xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
960}
961
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000962static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -0800963xfrm_policy_lookup(struct net *net, const struct flowi *fl, u16 family,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000964 u8 dir, struct flow_cache_object *old_obj, void *ctx)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700965{
966 struct xfrm_policy *pol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000967
968 if (old_obj)
969 xfrm_pol_put(container_of(old_obj, struct xfrm_policy, flo));
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700970
Timo Teräs80c802f2010-04-07 00:30:05 +0000971 pol = __xfrm_policy_lookup(net, fl, family, dir);
972 if (IS_ERR_OR_NULL(pol))
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000973 return ERR_CAST(pol);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000974
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000975 /* Resolver returns two references:
976 * one for cache and one for caller of flow_cache_lookup() */
977 xfrm_pol_hold(pol);
978
979 return &pol->flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
Trent Jaegerdf718372005-12-13 23:12:27 -0800982static inline int policy_to_flow_dir(int dir)
983{
984 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900985 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
986 XFRM_POLICY_FWD == FLOW_DIR_FWD)
987 return dir;
988 switch (dir) {
989 default:
990 case XFRM_POLICY_IN:
991 return FLOW_DIR_IN;
992 case XFRM_POLICY_OUT:
993 return FLOW_DIR_OUT;
994 case XFRM_POLICY_FWD:
995 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700996 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800997}
998
David S. Millerdee9f4b2011-02-22 18:44:31 -0800999static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir,
1000 const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
1002 struct xfrm_policy *pol;
1003
1004 read_lock_bh(&xfrm_policy_lock);
1005 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001006 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001008 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001009
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001010 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001011 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1012 pol = NULL;
1013 goto out;
1014 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001015 err = security_xfrm_policy_lookup(pol->security,
1016 fl->secid,
1017 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001018 if (!err)
1019 xfrm_pol_hold(pol);
1020 else if (err == -ESRCH)
1021 pol = NULL;
1022 else
1023 pol = ERR_PTR(err);
1024 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 pol = NULL;
1026 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001027out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 read_unlock_bh(&xfrm_policy_lock);
1029 return pol;
1030}
1031
1032static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1033{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001034 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001035 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001036 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001037
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001038 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001039 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001040 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001041 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001043
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001044 if (xfrm_bydst_should_resize(net, dir, NULL))
1045 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1049 int dir)
1050{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001051 struct net *net = xp_net(pol);
1052
David S. Miller2518c7c2006-08-24 04:45:07 -07001053 if (hlist_unhashed(&pol->bydst))
1054 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
David S. Miller2518c7c2006-08-24 04:45:07 -07001056 hlist_del(&pol->bydst);
1057 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001058 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001059 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001060
1061 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
Herbert Xu4666faa2005-06-18 22:43:22 -07001064int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 write_lock_bh(&xfrm_policy_lock);
1067 pol = __xfrm_policy_unlink(pol, dir);
1068 write_unlock_bh(&xfrm_policy_lock);
1069 if (pol) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001071 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001073 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
David S. Millera70fcb02006-03-20 19:18:52 -08001075EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1078{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001079 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 struct xfrm_policy *old_pol;
1081
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001082#ifdef CONFIG_XFRM_SUB_POLICY
1083 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1084 return -EINVAL;
1085#endif
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 write_lock_bh(&xfrm_policy_lock);
1088 old_pol = sk->sk_policy[dir];
1089 sk->sk_policy[dir] = pol;
1090 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001091 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001092 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1094 }
1095 if (old_pol)
Timo Teräsea2dea92010-03-31 00:17:05 +00001096 /* Unlinking succeeds always. This is the only function
1097 * allowed to delete or replace socket policy.
1098 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1100 write_unlock_bh(&xfrm_policy_lock);
1101
1102 if (old_pol) {
1103 xfrm_policy_kill(old_pol);
1104 }
1105 return 0;
1106}
1107
David S. Millerd3e40a92011-02-24 01:25:41 -05001108static struct xfrm_policy *clone_policy(const struct xfrm_policy *old, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001110 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 if (newp) {
1113 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001114 if (security_xfrm_policy_clone(old->security,
1115 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001116 kfree(newp);
1117 return NULL; /* ENOMEM */
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 newp->lft = old->lft;
1120 newp->curlft = old->curlft;
Jamal Hadi Salimfb977e22010-02-23 15:09:53 -08001121 newp->mark = old->mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 newp->action = old->action;
1123 newp->flags = old->flags;
1124 newp->xfrm_nr = old->xfrm_nr;
1125 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001126 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 memcpy(newp->xfrm_vec, old->xfrm_vec,
1128 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1129 write_lock_bh(&xfrm_policy_lock);
1130 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1131 write_unlock_bh(&xfrm_policy_lock);
1132 xfrm_pol_put(newp);
1133 }
1134 return newp;
1135}
1136
1137int __xfrm_sk_clone_policy(struct sock *sk)
1138{
1139 struct xfrm_policy *p0 = sk->sk_policy[0],
1140 *p1 = sk->sk_policy[1];
1141
1142 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1143 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1144 return -ENOMEM;
1145 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1146 return -ENOMEM;
1147 return 0;
1148}
1149
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001150static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001151xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001152 unsigned short family)
1153{
1154 int err;
1155 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1156
1157 if (unlikely(afinfo == NULL))
1158 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001159 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001160 xfrm_policy_put_afinfo(afinfo);
1161 return err;
1162}
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164/* Resolve list of templates for the flow, given policy. */
1165
1166static int
David S. Millera6c2e612011-02-22 18:35:39 -08001167xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
1168 struct xfrm_state **xfrm, unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001170 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 int nx;
1172 int i, error;
1173 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1174 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001175 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1178 struct xfrm_state *x;
1179 xfrm_address_t *remote = daddr;
1180 xfrm_address_t *local = saddr;
1181 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1182
Joakim Koskela48b8d782007-07-26 00:08:42 -07001183 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1184 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 remote = &tmpl->id.daddr;
1186 local = &tmpl->saddr;
Thomas Egerer8444cf72010-09-20 11:11:38 -07001187 if (xfrm_addr_any(local, tmpl->encap_family)) {
1188 error = xfrm_get_saddr(net, &tmp, remote, tmpl->encap_family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001189 if (error)
1190 goto fail;
1191 local = &tmp;
1192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194
1195 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1196
1197 if (x && x->km.state == XFRM_STATE_VALID) {
1198 xfrm[nx++] = x;
1199 daddr = remote;
1200 saddr = local;
1201 continue;
1202 }
1203 if (x) {
1204 error = (x->km.state == XFRM_STATE_ERROR ?
1205 -EINVAL : -EAGAIN);
1206 xfrm_state_put(x);
1207 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001208 else if (error == -ESRCH)
1209 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if (!tmpl->optional)
1212 goto fail;
1213 }
1214 return nx;
1215
1216fail:
1217 for (nx--; nx>=0; nx--)
1218 xfrm_state_put(xfrm[nx]);
1219 return error;
1220}
1221
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001222static int
David S. Millera6c2e612011-02-22 18:35:39 -08001223xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
1224 struct xfrm_state **xfrm, unsigned short family)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001225{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001226 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1227 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001228 int cnx = 0;
1229 int error;
1230 int ret;
1231 int i;
1232
1233 for (i = 0; i < npols; i++) {
1234 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1235 error = -ENOBUFS;
1236 goto fail;
1237 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001238
1239 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001240 if (ret < 0) {
1241 error = ret;
1242 goto fail;
1243 } else
1244 cnx += ret;
1245 }
1246
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001247 /* found states are sorted for outbound processing */
1248 if (npols > 1)
1249 xfrm_state_sort(xfrm, tpp, cnx, family);
1250
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001251 return cnx;
1252
1253 fail:
1254 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001255 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001256 return error;
1257
1258}
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260/* Check that the bundle accepts the flow and its components are
1261 * still valid.
1262 */
1263
David S. Miller05d84022011-02-22 17:47:10 -08001264static inline int xfrm_get_tos(const struct flowi *fl, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001265{
1266 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1267 int tos;
1268
1269 if (!afinfo)
1270 return -EINVAL;
1271
1272 tos = afinfo->get_tos(fl);
1273
1274 xfrm_policy_put_afinfo(afinfo);
1275
1276 return tos;
1277}
1278
Timo Teräs80c802f2010-04-07 00:30:05 +00001279static struct flow_cache_object *xfrm_bundle_flo_get(struct flow_cache_object *flo)
1280{
1281 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1282 struct dst_entry *dst = &xdst->u.dst;
1283
1284 if (xdst->route == NULL) {
1285 /* Dummy bundle - if it has xfrms we were not
1286 * able to build bundle as template resolution failed.
1287 * It means we need to try again resolving. */
1288 if (xdst->num_xfrms > 0)
1289 return NULL;
1290 } else {
1291 /* Real bundle */
1292 if (stale_bundle(dst))
1293 return NULL;
1294 }
1295
1296 dst_hold(dst);
1297 return flo;
1298}
1299
1300static int xfrm_bundle_flo_check(struct flow_cache_object *flo)
1301{
1302 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1303 struct dst_entry *dst = &xdst->u.dst;
1304
1305 if (!xdst->route)
1306 return 0;
1307 if (stale_bundle(dst))
1308 return 0;
1309
1310 return 1;
1311}
1312
1313static void xfrm_bundle_flo_delete(struct flow_cache_object *flo)
1314{
1315 struct xfrm_dst *xdst = container_of(flo, struct xfrm_dst, flo);
1316 struct dst_entry *dst = &xdst->u.dst;
1317
1318 dst_free(dst);
1319}
1320
1321static const struct flow_cache_ops xfrm_bundle_fc_ops = {
1322 .get = xfrm_bundle_flo_get,
1323 .check = xfrm_bundle_flo_check,
1324 .delete = xfrm_bundle_flo_delete,
1325};
1326
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001327static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001328{
1329 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001330 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001331 struct xfrm_dst *xdst;
1332
1333 if (!afinfo)
1334 return ERR_PTR(-EINVAL);
1335
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001336 switch (family) {
1337 case AF_INET:
1338 dst_ops = &net->xfrm.xfrm4_dst_ops;
1339 break;
1340#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1341 case AF_INET6:
1342 dst_ops = &net->xfrm.xfrm6_dst_ops;
1343 break;
1344#endif
1345 default:
1346 BUG();
1347 }
David S. Millerda935c62011-02-19 19:17:35 -08001348 xdst = dst_alloc(dst_ops, 0);
Herbert Xu25ee3282007-12-11 09:32:34 -08001349 xfrm_policy_put_afinfo(afinfo);
1350
Hiroaki SHIMODA0b150932011-02-10 23:08:33 -08001351 if (likely(xdst))
1352 xdst->flo.ops = &xfrm_bundle_fc_ops;
1353 else
1354 xdst = ERR_PTR(-ENOBUFS);
Timo Teräs80c802f2010-04-07 00:30:05 +00001355
Herbert Xu25ee3282007-12-11 09:32:34 -08001356 return xdst;
1357}
1358
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001359static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1360 int nfheader_len)
1361{
1362 struct xfrm_policy_afinfo *afinfo =
1363 xfrm_policy_get_afinfo(dst->ops->family);
1364 int err;
1365
1366 if (!afinfo)
1367 return -EINVAL;
1368
1369 err = afinfo->init_path(path, dst, nfheader_len);
1370
1371 xfrm_policy_put_afinfo(afinfo);
1372
1373 return err;
1374}
1375
Herbert Xu87c1e122010-03-02 02:51:56 +00001376static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -08001377 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -08001378{
1379 struct xfrm_policy_afinfo *afinfo =
1380 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1381 int err;
1382
1383 if (!afinfo)
1384 return -EINVAL;
1385
Herbert Xu87c1e122010-03-02 02:51:56 +00001386 err = afinfo->fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001387
1388 xfrm_policy_put_afinfo(afinfo);
1389
1390 return err;
1391}
1392
Timo Teräs80c802f2010-04-07 00:30:05 +00001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1395 * all the metrics... Shortly, bundle a bundle.
1396 */
1397
Herbert Xu25ee3282007-12-11 09:32:34 -08001398static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1399 struct xfrm_state **xfrm, int nx,
David S. Miller98313ad2011-02-22 18:36:50 -08001400 const struct flowi *fl,
Herbert Xu25ee3282007-12-11 09:32:34 -08001401 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001403 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001404 unsigned long now = jiffies;
1405 struct net_device *dev;
1406 struct dst_entry *dst_prev = NULL;
1407 struct dst_entry *dst0 = NULL;
1408 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001410 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001411 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001412 int trailer_len = 0;
1413 int tos;
1414 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001415 xfrm_address_t saddr, daddr;
1416
1417 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001418
1419 tos = xfrm_get_tos(fl, family);
1420 err = tos;
1421 if (tos < 0)
1422 goto put_states;
1423
1424 dst_hold(dst);
1425
1426 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001427 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001428 struct dst_entry *dst1 = &xdst->u.dst;
1429
1430 err = PTR_ERR(xdst);
1431 if (IS_ERR(xdst)) {
1432 dst_release(dst);
1433 goto put_states;
1434 }
1435
1436 if (!dst_prev)
1437 dst0 = dst1;
1438 else {
1439 dst_prev->child = dst_clone(dst1);
1440 dst1->flags |= DST_NOHASH;
1441 }
1442
1443 xdst->route = dst;
David S. Millerdefb3512010-12-08 21:16:57 -08001444 dst_copy_metrics(dst1, dst);
Herbert Xu25ee3282007-12-11 09:32:34 -08001445
1446 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1447 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001448 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1449 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001450 err = PTR_ERR(dst);
1451 if (IS_ERR(dst))
1452 goto put_states;
1453 } else
1454 dst_hold(dst);
1455
1456 dst1->xfrm = xfrm[i];
Timo Teräs80c802f2010-04-07 00:30:05 +00001457 xdst->xfrm_genid = xfrm[i]->genid;
Herbert Xu25ee3282007-12-11 09:32:34 -08001458
1459 dst1->obsolete = -1;
1460 dst1->flags |= DST_HOST;
1461 dst1->lastuse = now;
1462
1463 dst1->input = dst_discard;
1464 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1465
1466 dst1->next = dst_prev;
1467 dst_prev = dst1;
1468
1469 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001470 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1471 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001472 trailer_len += xfrm[i]->props.trailer_len;
1473 }
1474
1475 dst_prev->child = dst;
1476 dst0->path = dst;
1477
1478 err = -ENODEV;
1479 dev = dst->dev;
1480 if (!dev)
1481 goto free_dst;
1482
Ralf Baechle96c53402009-12-25 23:30:02 +00001483 /* Copy neighbour for reachability confirmation */
Herbert Xu25ee3282007-12-11 09:32:34 -08001484 dst0->neighbour = neigh_clone(dst->neighbour);
1485
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001486 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001487 xfrm_init_pmtu(dst_prev);
1488
1489 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1490 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1491
Herbert Xu87c1e122010-03-02 02:51:56 +00001492 err = xfrm_fill_dst(xdst, dev, fl);
Herbert Xu25ee3282007-12-11 09:32:34 -08001493 if (err)
1494 goto free_dst;
1495
1496 dst_prev->header_len = header_len;
1497 dst_prev->trailer_len = trailer_len;
1498 header_len -= xdst->u.dst.xfrm->props.header_len;
1499 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1500 }
1501
1502out:
1503 return dst0;
1504
1505put_states:
1506 for (; i < nx; i++)
1507 xfrm_state_put(xfrm[i]);
1508free_dst:
1509 if (dst0)
1510 dst_free(dst0);
1511 dst0 = ERR_PTR(err);
1512 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001515static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001516xfrm_dst_alloc_copy(void **target, const void *src, int size)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001517{
1518 if (!*target) {
1519 *target = kmalloc(size, GFP_ATOMIC);
1520 if (!*target)
1521 return -ENOMEM;
1522 }
1523 memcpy(*target, src, size);
1524 return 0;
1525}
1526
1527static int inline
David S. Miller1786b382011-02-24 01:32:54 -05001528xfrm_dst_update_parent(struct dst_entry *dst, const struct xfrm_selector *sel)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001529{
1530#ifdef CONFIG_XFRM_SUB_POLICY
1531 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1532 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1533 sel, sizeof(*sel));
1534#else
1535 return 0;
1536#endif
1537}
1538
1539static int inline
David S. Miller3f0e18f2011-02-22 18:38:14 -08001540xfrm_dst_update_origin(struct dst_entry *dst, const struct flowi *fl)
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001541{
1542#ifdef CONFIG_XFRM_SUB_POLICY
1543 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1544 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1545#else
1546 return 0;
1547#endif
1548}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
David S. Miller73ff93c2011-02-22 18:33:42 -08001550static int xfrm_expand_policies(const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001551 struct xfrm_policy **pols,
1552 int *num_pols, int *num_xfrms)
1553{
1554 int i;
1555
1556 if (*num_pols == 0 || !pols[0]) {
1557 *num_pols = 0;
1558 *num_xfrms = 0;
1559 return 0;
1560 }
1561 if (IS_ERR(pols[0]))
1562 return PTR_ERR(pols[0]);
1563
1564 *num_xfrms = pols[0]->xfrm_nr;
1565
1566#ifdef CONFIG_XFRM_SUB_POLICY
1567 if (pols[0] && pols[0]->action == XFRM_POLICY_ALLOW &&
1568 pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1569 pols[1] = xfrm_policy_lookup_bytype(xp_net(pols[0]),
1570 XFRM_POLICY_TYPE_MAIN,
1571 fl, family,
1572 XFRM_POLICY_OUT);
1573 if (pols[1]) {
1574 if (IS_ERR(pols[1])) {
1575 xfrm_pols_put(pols, *num_pols);
1576 return PTR_ERR(pols[1]);
1577 }
1578 (*num_pols) ++;
1579 (*num_xfrms) += pols[1]->xfrm_nr;
1580 }
1581 }
1582#endif
1583 for (i = 0; i < *num_pols; i++) {
1584 if (pols[i]->action != XFRM_POLICY_ALLOW) {
1585 *num_xfrms = -1;
1586 break;
1587 }
1588 }
1589
1590 return 0;
1591
1592}
1593
1594static struct xfrm_dst *
1595xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
David S. Miller4ca2e682011-02-22 18:38:51 -08001596 const struct flowi *fl, u16 family,
Timo Teräs80c802f2010-04-07 00:30:05 +00001597 struct dst_entry *dst_orig)
1598{
1599 struct net *net = xp_net(pols[0]);
1600 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1601 struct dst_entry *dst;
1602 struct xfrm_dst *xdst;
1603 int err;
1604
1605 /* Try to instantiate a bundle */
1606 err = xfrm_tmpl_resolve(pols, num_pols, fl, xfrm, family);
Timo Teräsd809ec82010-07-12 21:29:42 +00001607 if (err <= 0) {
1608 if (err != 0 && err != -EAGAIN)
Timo Teräs80c802f2010-04-07 00:30:05 +00001609 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1610 return ERR_PTR(err);
1611 }
1612
1613 dst = xfrm_bundle_create(pols[0], xfrm, err, fl, dst_orig);
1614 if (IS_ERR(dst)) {
1615 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1616 return ERR_CAST(dst);
1617 }
1618
1619 xdst = (struct xfrm_dst *)dst;
1620 xdst->num_xfrms = err;
1621 if (num_pols > 1)
1622 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1623 else
1624 err = xfrm_dst_update_origin(dst, fl);
1625 if (unlikely(err)) {
1626 dst_free(dst);
1627 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
1628 return ERR_PTR(err);
1629 }
1630
1631 xdst->num_pols = num_pols;
1632 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1633 xdst->policy_genid = atomic_read(&pols[0]->genid);
1634
1635 return xdst;
1636}
1637
1638static struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -08001639xfrm_bundle_lookup(struct net *net, const struct flowi *fl, u16 family, u8 dir,
Timo Teräs80c802f2010-04-07 00:30:05 +00001640 struct flow_cache_object *oldflo, void *ctx)
1641{
1642 struct dst_entry *dst_orig = (struct dst_entry *)ctx;
1643 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1644 struct xfrm_dst *xdst, *new_xdst;
1645 int num_pols = 0, num_xfrms = 0, i, err, pol_dead;
1646
1647 /* Check if the policies from old bundle are usable */
1648 xdst = NULL;
1649 if (oldflo) {
1650 xdst = container_of(oldflo, struct xfrm_dst, flo);
1651 num_pols = xdst->num_pols;
1652 num_xfrms = xdst->num_xfrms;
1653 pol_dead = 0;
1654 for (i = 0; i < num_pols; i++) {
1655 pols[i] = xdst->pols[i];
1656 pol_dead |= pols[i]->walk.dead;
1657 }
1658 if (pol_dead) {
1659 dst_free(&xdst->u.dst);
1660 xdst = NULL;
1661 num_pols = 0;
1662 num_xfrms = 0;
1663 oldflo = NULL;
1664 }
1665 }
1666
1667 /* Resolve policies to use if we couldn't get them from
1668 * previous cache entry */
1669 if (xdst == NULL) {
1670 num_pols = 1;
1671 pols[0] = __xfrm_policy_lookup(net, fl, family, dir);
1672 err = xfrm_expand_policies(fl, family, pols,
1673 &num_pols, &num_xfrms);
1674 if (err < 0)
1675 goto inc_error;
1676 if (num_pols == 0)
1677 return NULL;
1678 if (num_xfrms <= 0)
1679 goto make_dummy_bundle;
1680 }
1681
1682 new_xdst = xfrm_resolve_and_create_bundle(pols, num_pols, fl, family, dst_orig);
1683 if (IS_ERR(new_xdst)) {
1684 err = PTR_ERR(new_xdst);
1685 if (err != -EAGAIN)
1686 goto error;
1687 if (oldflo == NULL)
1688 goto make_dummy_bundle;
1689 dst_hold(&xdst->u.dst);
1690 return oldflo;
Timo Teräsd809ec82010-07-12 21:29:42 +00001691 } else if (new_xdst == NULL) {
1692 num_xfrms = 0;
1693 if (oldflo == NULL)
1694 goto make_dummy_bundle;
1695 xdst->num_xfrms = 0;
1696 dst_hold(&xdst->u.dst);
1697 return oldflo;
Timo Teräs80c802f2010-04-07 00:30:05 +00001698 }
1699
1700 /* Kill the previous bundle */
1701 if (xdst) {
1702 /* The policies were stolen for newly generated bundle */
1703 xdst->num_pols = 0;
1704 dst_free(&xdst->u.dst);
1705 }
1706
1707 /* Flow cache does not have reference, it dst_free()'s,
1708 * but we do need to return one reference for original caller */
1709 dst_hold(&new_xdst->u.dst);
1710 return &new_xdst->flo;
1711
1712make_dummy_bundle:
1713 /* We found policies, but there's no bundles to instantiate:
1714 * either because the policy blocks, has no transformations or
1715 * we could not build template (no xfrm_states).*/
1716 xdst = xfrm_alloc_dst(net, family);
1717 if (IS_ERR(xdst)) {
1718 xfrm_pols_put(pols, num_pols);
1719 return ERR_CAST(xdst);
1720 }
1721 xdst->num_pols = num_pols;
1722 xdst->num_xfrms = num_xfrms;
1723 memcpy(xdst->pols, pols, sizeof(struct xfrm_policy*) * num_pols);
1724
1725 dst_hold(&xdst->u.dst);
1726 return &xdst->flo;
1727
1728inc_error:
1729 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
1730error:
1731 if (xdst != NULL)
1732 dst_free(&xdst->u.dst);
1733 else
1734 xfrm_pols_put(pols, num_pols);
1735 return ERR_PTR(err);
1736}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738/* Main function: finds/creates a bundle for given flow.
1739 *
1740 * At the moment we eat a raw IP route. Mostly to speed up lookups
1741 * on interfaces with disabled IPsec.
1742 */
David S. Millerdee9f4b2011-02-22 18:44:31 -08001743int __xfrm_lookup(struct net *net, struct dst_entry **dst_p,
1744 const struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001745 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001747 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
Timo Teräs80c802f2010-04-07 00:30:05 +00001748 struct flow_cache_object *flo;
1749 struct xfrm_dst *xdst;
1750 struct dst_entry *dst, *dst_orig = *dst_p, *route;
1751 u16 family = dst_orig->ops->family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001752 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Changli Gao4b021622010-04-27 21:20:22 +00001753 int i, err, num_pols, num_xfrms = 0, drop_pols = 0;
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755restart:
Timo Teräs80c802f2010-04-07 00:30:05 +00001756 dst = NULL;
1757 xdst = NULL;
1758 route = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001759
Thomas Graff7944fb2007-08-25 13:46:55 -07001760 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Timo Teräs80c802f2010-04-07 00:30:05 +00001761 num_pols = 1;
1762 pols[0] = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
1763 err = xfrm_expand_policies(fl, family, pols,
1764 &num_pols, &num_xfrms);
1765 if (err < 0)
Herbert Xu75b8c132007-12-11 04:38:08 -08001766 goto dropdst;
Timo Teräs80c802f2010-04-07 00:30:05 +00001767
1768 if (num_pols) {
1769 if (num_xfrms <= 0) {
1770 drop_pols = num_pols;
1771 goto no_transform;
1772 }
1773
1774 xdst = xfrm_resolve_and_create_bundle(
1775 pols, num_pols, fl,
1776 family, dst_orig);
1777 if (IS_ERR(xdst)) {
1778 xfrm_pols_put(pols, num_pols);
1779 err = PTR_ERR(xdst);
1780 goto dropdst;
Timo Teräsd809ec82010-07-12 21:29:42 +00001781 } else if (xdst == NULL) {
1782 num_xfrms = 0;
1783 drop_pols = num_pols;
1784 goto no_transform;
Timo Teräs80c802f2010-04-07 00:30:05 +00001785 }
1786
1787 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
1788 xdst->u.dst.next = xfrm_policy_sk_bundles;
1789 xfrm_policy_sk_bundles = &xdst->u.dst;
1790 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
1791
1792 route = xdst->route;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001793 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Timo Teräs80c802f2010-04-07 00:30:05 +00001796 if (xdst == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001798 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001799 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001800 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Timo Teräs80c802f2010-04-07 00:30:05 +00001802 flo = flow_cache_lookup(net, fl, family, dir,
1803 xfrm_bundle_lookup, dst_orig);
1804 if (flo == NULL)
1805 goto nopol;
Timo Teräsfe1a5f02010-04-07 00:30:04 +00001806 if (IS_ERR(flo)) {
Timo Teräs80c802f2010-04-07 00:30:05 +00001807 err = PTR_ERR(flo);
Herbert Xu75b8c132007-12-11 04:38:08 -08001808 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001809 }
Timo Teräs80c802f2010-04-07 00:30:05 +00001810 xdst = container_of(flo, struct xfrm_dst, flo);
1811
1812 num_pols = xdst->num_pols;
1813 num_xfrms = xdst->num_xfrms;
1814 memcpy(pols, xdst->pols, sizeof(struct xfrm_policy*) * num_pols);
1815 route = xdst->route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 }
1817
Timo Teräs80c802f2010-04-07 00:30:05 +00001818 dst = &xdst->u.dst;
1819 if (route == NULL && num_xfrms > 0) {
1820 /* The only case when xfrm_bundle_lookup() returns a
1821 * bundle with null route, is when the template could
1822 * not be resolved. It means policies are there, but
1823 * bundle could not be created, since we don't yet
1824 * have the xfrm_state's. We need to wait for KM to
1825 * negotiate new SA's or bail out with error.*/
1826 if (net->xfrm.sysctl_larval_drop) {
1827 /* EREMOTE tells the caller to generate
1828 * a one-shot blackhole route. */
1829 dst_release(dst);
Timo Terasa1aa3482010-05-15 23:49:26 -07001830 xfrm_pols_put(pols, drop_pols);
Timo Teräs80c802f2010-04-07 00:30:05 +00001831 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
1832 return -EREMOTE;
1833 }
1834 if (flags & XFRM_LOOKUP_WAIT) {
1835 DECLARE_WAITQUEUE(wait, current);
1836
1837 add_wait_queue(&net->xfrm.km_waitq, &wait);
1838 set_current_state(TASK_INTERRUPTIBLE);
1839 schedule();
1840 set_current_state(TASK_RUNNING);
1841 remove_wait_queue(&net->xfrm.km_waitq, &wait);
1842
1843 if (!signal_pending(current)) {
1844 dst_release(dst);
1845 goto restart;
1846 }
1847
1848 err = -ERESTART;
1849 } else
1850 err = -EAGAIN;
1851
1852 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
1853 goto error;
1854 }
1855
1856no_transform:
1857 if (num_pols == 0)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001858 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Timo Teräs80c802f2010-04-07 00:30:05 +00001860 if ((flags & XFRM_LOOKUP_ICMP) &&
1861 !(pols[0]->flags & XFRM_POLICY_ICMP)) {
1862 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001863 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00001864 }
Herbert Xu8b7817f2007-12-12 10:44:43 -08001865
Timo Teräs80c802f2010-04-07 00:30:05 +00001866 for (i = 0; i < num_pols; i++)
1867 pols[i]->curlft.use_time = get_seconds();
Herbert Xu8b7817f2007-12-12 10:44:43 -08001868
Timo Teräs80c802f2010-04-07 00:30:05 +00001869 if (num_xfrms < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001871 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07001872 err = -EPERM;
1873 goto error;
Timo Teräs80c802f2010-04-07 00:30:05 +00001874 } else if (num_xfrms > 0) {
1875 /* Flow transformed */
1876 *dst_p = dst;
1877 dst_release(dst_orig);
1878 } else {
1879 /* Flow passes untransformed */
1880 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
Timo Teräs80c802f2010-04-07 00:30:05 +00001882ok:
1883 xfrm_pols_put(pols, drop_pols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 return 0;
1885
Timo Teräs80c802f2010-04-07 00:30:05 +00001886nopol:
1887 if (!(flags & XFRM_LOOKUP_ICMP))
1888 goto ok;
1889 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890error:
Timo Teräs80c802f2010-04-07 00:30:05 +00001891 dst_release(dst);
Herbert Xu75b8c132007-12-11 04:38:08 -08001892dropdst:
1893 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 *dst_p = NULL;
Timo Teräs80c802f2010-04-07 00:30:05 +00001895 xfrm_pols_put(pols, drop_pols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 return err;
1897}
David S. Miller14e50e52007-05-24 18:17:54 -07001898EXPORT_SYMBOL(__xfrm_lookup);
1899
David S. Millerdee9f4b2011-02-22 18:44:31 -08001900int xfrm_lookup(struct net *net, struct dst_entry **dst_p,
1901 const struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001902 struct sock *sk, int flags)
1903{
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001904 int err = __xfrm_lookup(net, dst_p, fl, sk, flags);
David S. Miller14e50e52007-05-24 18:17:54 -07001905
1906 if (err == -EREMOTE) {
1907 dst_release(*dst_p);
1908 *dst_p = NULL;
1909 err = -EAGAIN;
1910 }
1911
1912 return err;
1913}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914EXPORT_SYMBOL(xfrm_lookup);
1915
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001916static inline int
David S. Miller8f029de2011-02-22 17:59:59 -08001917xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001918{
1919 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001920
1921 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1922 return 0;
1923 x = skb->sp->xvec[idx];
1924 if (!x->type->reject)
1925 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001926 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001927}
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929/* When skb is transformed back to its "native" form, we have to
1930 * check policy restrictions. At the moment we make this in maximally
1931 * stupid way. Shame on me. :-) Of course, connected sockets must
1932 * have policy cached at them.
1933 */
1934
1935static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001936xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 unsigned short family)
1938{
1939 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001940 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 return x->id.proto == tmpl->id.proto &&
1942 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1943 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1944 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001945 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001946 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001947 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1948 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949}
1950
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001951/*
1952 * 0 or more than 0 is returned when validation is succeeded (either bypass
1953 * because of optional transport mode, or next index of the mathced secpath
1954 * state with the template.
1955 * -1 is returned when no matching template is found.
1956 * Otherwise "-2 - errored_index" is returned.
1957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958static inline int
1959xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1960 unsigned short family)
1961{
1962 int idx = start;
1963
1964 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001965 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return start;
1967 } else
1968 start = -1;
1969 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001970 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001972 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1973 if (start == -1)
1974 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978 return start;
1979}
1980
Herbert Xud5422ef2007-12-12 10:44:16 -08001981int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1982 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001985 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 if (unlikely(afinfo == NULL))
1988 return -EAFNOSUPPORT;
1989
Herbert Xud5422ef2007-12-12 10:44:16 -08001990 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001991 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001993 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
Herbert Xud5422ef2007-12-12 10:44:16 -08001995EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001997static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
1999 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002000 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002001 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
2005
2006 return 0;
2007}
2008
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002009int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 unsigned short family)
2011{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002012 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002014 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
2015 int npols = 0;
2016 int xfrm_nr;
2017 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08002018 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08002020 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002021 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Herbert Xud5422ef2007-12-12 10:44:16 -08002023 reverse = dir & ~XFRM_POLICY_MASK;
2024 dir &= XFRM_POLICY_MASK;
2025 fl_dir = policy_to_flow_dir(dir);
2026
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002027 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002028 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002030 }
2031
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08002032 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /* First, check used SA against their selectors. */
2035 if (skb->sp) {
2036 int i;
2037
2038 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08002039 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002040 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002041 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
2045 }
2046
2047 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002048 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002049 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002050 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002051 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002052 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002053 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05002054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Timo Teräsfe1a5f02010-04-07 00:30:04 +00002056 if (!pol) {
2057 struct flow_cache_object *flo;
2058
2059 flo = flow_cache_lookup(net, &fl, family, fl_dir,
2060 xfrm_policy_lookup, NULL);
2061 if (IS_ERR_OR_NULL(flo))
2062 pol = ERR_CAST(flo);
2063 else
2064 pol = container_of(flo, struct xfrm_policy, flo);
2065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002067 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002068 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002069 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002070 }
James Morris134b0fc2006-10-05 15:42:27 -05002071
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002072 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002073 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002074 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002075 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002076 return 0;
2077 }
2078 return 1;
2079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
James Morris9d729f72007-03-04 16:12:44 -08002081 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002083 pols[0] = pol;
2084 npols ++;
2085#ifdef CONFIG_XFRM_SUB_POLICY
2086 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08002087 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002088 &fl, family,
2089 XFRM_POLICY_IN);
2090 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002091 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002092 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05002093 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002094 }
James Morris9d729f72007-03-04 16:12:44 -08002095 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002096 npols ++;
2097 }
2098 }
2099#endif
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 if (pol->action == XFRM_POLICY_ALLOW) {
2102 struct sec_path *sp;
2103 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002104 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002105 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002106 struct xfrm_tmpl **tpp = tp;
2107 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 int i, k;
2109
2110 if ((sp = skb->sp) == NULL)
2111 sp = &dummy;
2112
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002113 for (pi = 0; pi < npols; pi++) {
2114 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002115 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002116 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002117 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002118 }
2119 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002120 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002121 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002122 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002123 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2124 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2125 }
2126 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002127 if (npols > 1) {
2128 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2129 tpp = stp;
2130 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 /* For each tunnel xfrm, find the first matching tmpl.
2133 * For each tmpl before that, find corresponding xfrm.
2134 * Order is _important_. Later we will implement
2135 * some barriers, but at the moment barriers
2136 * are implied between each two transformations.
2137 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002138 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2139 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002140 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002141 if (k < -1)
2142 /* "-2 - errored_index" returned */
2143 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002144 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002149 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002150 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002154 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 return 1;
2156 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002157 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002160 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002161reject_error:
2162 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return 0;
2164}
2165EXPORT_SYMBOL(__xfrm_policy_check);
2166
2167int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2168{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002169 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002171 struct dst_entry *dst;
2172 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002174 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002175 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Eric Dumazetfafeeb62010-06-01 10:04:49 +00002179 skb_dst_force(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +00002180 dst = skb_dst(skb);
2181
2182 res = xfrm_lookup(net, &dst, &fl, NULL, 0) == 0;
2183 skb_dst_set(skb, dst);
2184 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
2186EXPORT_SYMBOL(__xfrm_route_forward);
2187
David S. Millerd49c73c2006-08-13 18:55:53 -07002188/* Optimize later using cookies and generation ids. */
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2191{
David S. Millerd49c73c2006-08-13 18:55:53 -07002192 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2193 * to "-1" to force all XFRM destinations to get validated by
2194 * dst_ops->check on every use. We do this because when a
2195 * normal route referenced by an XFRM dst is obsoleted we do
2196 * not go looking around for all parent referencing XFRM dsts
2197 * so that we can invalidate them. It is just too much work.
2198 * Instead we make the checks here on every use. For example:
2199 *
2200 * XFRM dst A --> IPv4 dst X
2201 *
2202 * X is the "xdst->route" of A (X is also the "dst->path" of A
2203 * in this example). If X is marked obsolete, "A" will not
2204 * notice. That's what we are validating here via the
2205 * stale_bundle() check.
2206 *
2207 * When a policy's bundle is pruned, we dst_free() the XFRM
2208 * dst which causes it's ->obsolete field to be set to a
2209 * positive non-zero integer. If an XFRM dst has been pruned
2210 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002211 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002212 if (dst->obsolete < 0 && !stale_bundle(dst))
2213 return dst;
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 return NULL;
2216}
2217
2218static int stale_bundle(struct dst_entry *dst)
2219{
David S. Miller47209ab2011-02-22 18:29:20 -08002220 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221}
2222
Herbert Xuaabc9762005-05-03 16:27:10 -07002223void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002226 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002227 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 dev_put(dev);
2229 }
2230}
Herbert Xuaabc9762005-05-03 16:27:10 -07002231EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233static void xfrm_link_failure(struct sk_buff *skb)
2234{
2235 /* Impossible. Such dst must be popped before reaches point of failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
2238static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2239{
2240 if (dst) {
2241 if (dst->obsolete) {
2242 dst_release(dst);
2243 dst = NULL;
2244 }
2245 }
2246 return dst;
2247}
2248
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002249static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
Timo Teräs80c802f2010-04-07 00:30:05 +00002251 struct dst_entry *head, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Timo Teräs80c802f2010-04-07 00:30:05 +00002253 flow_cache_flush();
2254
2255 spin_lock_bh(&xfrm_policy_sk_bundle_lock);
2256 head = xfrm_policy_sk_bundles;
2257 xfrm_policy_sk_bundles = NULL;
2258 spin_unlock_bh(&xfrm_policy_sk_bundle_lock);
2259
2260 while (head) {
2261 next = head->next;
2262 dst_free(head);
2263 head = next;
2264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
Herbert Xu25ee3282007-12-11 09:32:34 -08002267static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
2269 do {
2270 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2271 u32 pmtu, route_mtu_cached;
2272
2273 pmtu = dst_mtu(dst->child);
2274 xdst->child_mtu_cached = pmtu;
2275
2276 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2277
2278 route_mtu_cached = dst_mtu(xdst->route);
2279 xdst->route_mtu_cached = route_mtu_cached;
2280
2281 if (pmtu > route_mtu_cached)
2282 pmtu = route_mtu_cached;
2283
David S. Millerdefb3512010-12-08 21:16:57 -08002284 dst_metric_set(dst, RTAX_MTU, pmtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 } while ((dst = dst->next));
2286}
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288/* Check that the bundle accepts the flow and its components are
2289 * still valid.
2290 */
2291
stephen hemminger1c4c40c2010-10-15 05:14:19 +00002292static int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
David S. Miller47209ab2011-02-22 18:29:20 -08002293 const struct flowi *fl, int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294{
2295 struct dst_entry *dst = &first->u.dst;
2296 struct xfrm_dst *last;
2297 u32 mtu;
2298
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002299 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 (dst->dev && !netif_running(dst->dev)))
2301 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002302#ifdef CONFIG_XFRM_SUB_POLICY
2303 if (fl) {
2304 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2305 return 0;
2306 if (first->partner &&
2307 !xfrm_selector_match(first->partner, fl, family))
2308 return 0;
2309 }
2310#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 last = NULL;
2313
2314 do {
2315 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2316
2317 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2318 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002319 if (fl && pol &&
2320 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2323 return 0;
Timo Teräs80c802f2010-04-07 00:30:05 +00002324 if (xdst->xfrm_genid != dst->xfrm->genid)
2325 return 0;
Timo Teräsb1312c82010-06-24 14:35:00 -07002326 if (xdst->num_pols > 0 &&
2327 xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
David S. Miller9d4a7062006-08-24 03:18:09 -07002328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 mtu = dst_mtu(dst->child);
2331 if (xdst->child_mtu_cached != mtu) {
2332 last = xdst;
2333 xdst->child_mtu_cached = mtu;
2334 }
2335
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002336 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return 0;
2338 mtu = dst_mtu(xdst->route);
2339 if (xdst->route_mtu_cached != mtu) {
2340 last = xdst;
2341 xdst->route_mtu_cached = mtu;
2342 }
2343
2344 dst = dst->child;
2345 } while (dst->xfrm);
2346
2347 if (likely(!last))
2348 return 1;
2349
2350 mtu = last->child_mtu_cached;
2351 for (;;) {
2352 dst = &last->u.dst;
2353
2354 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2355 if (mtu > last->route_mtu_cached)
2356 mtu = last->route_mtu_cached;
David S. Millerdefb3512010-12-08 21:16:57 -08002357 dst_metric_set(dst, RTAX_MTU, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 if (last == first)
2360 break;
2361
Patrick McHardybd0bf072007-07-18 01:55:52 -07002362 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 last->child_mtu_cached = mtu;
2364 }
2365
2366 return 1;
2367}
2368
David S. Miller0dbaee32010-12-13 12:52:14 -08002369static unsigned int xfrm_default_advmss(const struct dst_entry *dst)
2370{
2371 return dst_metric_advmss(dst->path);
2372}
2373
David S. Millerd33e4552010-12-14 13:01:14 -08002374static unsigned int xfrm_default_mtu(const struct dst_entry *dst)
2375{
2376 return dst_mtu(dst->path);
2377}
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2380{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002381 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 int err = 0;
2383 if (unlikely(afinfo == NULL))
2384 return -EINVAL;
2385 if (unlikely(afinfo->family >= NPROTO))
2386 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002387 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2389 err = -ENOBUFS;
2390 else {
2391 struct dst_ops *dst_ops = afinfo->dst_ops;
2392 if (likely(dst_ops->kmem_cachep == NULL))
2393 dst_ops->kmem_cachep = xfrm_dst_cache;
2394 if (likely(dst_ops->check == NULL))
2395 dst_ops->check = xfrm_dst_check;
David S. Miller0dbaee32010-12-13 12:52:14 -08002396 if (likely(dst_ops->default_advmss == NULL))
2397 dst_ops->default_advmss = xfrm_default_advmss;
David S. Millerd33e4552010-12-14 13:01:14 -08002398 if (likely(dst_ops->default_mtu == NULL))
2399 dst_ops->default_mtu = xfrm_default_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 if (likely(dst_ops->negative_advice == NULL))
2401 dst_ops->negative_advice = xfrm_negative_advice;
2402 if (likely(dst_ops->link_failure == NULL))
2403 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 if (likely(afinfo->garbage_collect == NULL))
2405 afinfo->garbage_collect = __xfrm_garbage_collect;
2406 xfrm_policy_afinfo[afinfo->family] = afinfo;
2407 }
Ingo Molnare959d812006-04-28 15:32:29 -07002408 write_unlock_bh(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002409
2410 rtnl_lock();
2411 for_each_net(net) {
2412 struct dst_ops *xfrm_dst_ops;
2413
2414 switch (afinfo->family) {
2415 case AF_INET:
2416 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2417 break;
2418#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2419 case AF_INET6:
2420 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2421 break;
2422#endif
2423 default:
2424 BUG();
2425 }
2426 *xfrm_dst_ops = *afinfo->dst_ops;
2427 }
2428 rtnl_unlock();
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 return err;
2431}
2432EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2433
2434int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2435{
2436 int err = 0;
2437 if (unlikely(afinfo == NULL))
2438 return -EINVAL;
2439 if (unlikely(afinfo->family >= NPROTO))
2440 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002441 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2443 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2444 err = -EINVAL;
2445 else {
2446 struct dst_ops *dst_ops = afinfo->dst_ops;
2447 xfrm_policy_afinfo[afinfo->family] = NULL;
2448 dst_ops->kmem_cachep = NULL;
2449 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 dst_ops->negative_advice = NULL;
2451 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 afinfo->garbage_collect = NULL;
2453 }
2454 }
Ingo Molnare959d812006-04-28 15:32:29 -07002455 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return err;
2457}
2458EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2459
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002460static void __net_init xfrm_dst_ops_init(struct net *net)
2461{
2462 struct xfrm_policy_afinfo *afinfo;
2463
2464 read_lock_bh(&xfrm_policy_afinfo_lock);
2465 afinfo = xfrm_policy_afinfo[AF_INET];
2466 if (afinfo)
2467 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
2468#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2469 afinfo = xfrm_policy_afinfo[AF_INET6];
2470 if (afinfo)
2471 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2472#endif
2473 read_unlock_bh(&xfrm_policy_afinfo_lock);
2474}
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2477{
2478 struct xfrm_policy_afinfo *afinfo;
2479 if (unlikely(family >= NPROTO))
2480 return NULL;
2481 read_lock(&xfrm_policy_afinfo_lock);
2482 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002483 if (unlikely(!afinfo))
2484 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 return afinfo;
2486}
2487
2488static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2489{
Herbert Xu546be242006-05-27 23:03:58 -07002490 read_unlock(&xfrm_policy_afinfo_lock);
2491}
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2494{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002495 struct net_device *dev = ptr;
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 switch (event) {
2498 case NETDEV_DOWN:
Timo Teräs80c802f2010-04-07 00:30:05 +00002499 __xfrm_garbage_collect(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 }
2501 return NOTIFY_DONE;
2502}
2503
2504static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002505 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506};
2507
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002508#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002509static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002510{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002511 int rv;
2512
Tejun Heo7d720c32010-02-16 15:20:26 +00002513 if (snmp_mib_init((void __percpu **)net->mib.xfrm_statistics,
Eric Dumazet1823e4c82010-06-22 20:58:41 +00002514 sizeof(struct linux_xfrm_mib),
2515 __alignof__(struct linux_xfrm_mib)) < 0)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002516 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002517 rv = xfrm_proc_init(net);
2518 if (rv < 0)
Tejun Heo7d720c32010-02-16 15:20:26 +00002519 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002520 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002521}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002522
2523static void xfrm_statistics_fini(struct net *net)
2524{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002525 xfrm_proc_fini(net);
Tejun Heo7d720c32010-02-16 15:20:26 +00002526 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002527}
2528#else
2529static int __net_init xfrm_statistics_init(struct net *net)
2530{
2531 return 0;
2532}
2533
2534static void xfrm_statistics_fini(struct net *net)
2535{
2536}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002537#endif
2538
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002539static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540{
David S. Miller2518c7c2006-08-24 04:45:07 -07002541 unsigned int hmask, sz;
2542 int dir;
2543
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002544 if (net_eq(net, &init_net))
2545 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002547 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002548 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
David S. Miller2518c7c2006-08-24 04:45:07 -07002550 hmask = 8 - 1;
2551 sz = (hmask+1) * sizeof(struct hlist_head);
2552
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002553 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2554 if (!net->xfrm.policy_byidx)
2555 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002556 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002557
2558 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2559 struct xfrm_policy_hash *htab;
2560
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002561 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002562 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002563
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002564 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002565 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002566 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002567 goto out_bydst;
2568 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002569 }
2570
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002571 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002572 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002573 if (net_eq(net, &init_net))
2574 register_netdevice_notifier(&xfrm_dev_notifier);
2575 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002576
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002577out_bydst:
2578 for (dir--; dir >= 0; dir--) {
2579 struct xfrm_policy_hash *htab;
2580
2581 htab = &net->xfrm.policy_bydst[dir];
2582 xfrm_hash_free(htab->table, sz);
2583 }
2584 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002585out_byidx:
2586 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587}
2588
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002589static void xfrm_policy_fini(struct net *net)
2590{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002591 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002592 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002593 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002594
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002595 flush_work(&net->xfrm.policy_hash_work);
2596#ifdef CONFIG_XFRM_SUB_POLICY
2597 audit_info.loginuid = -1;
2598 audit_info.sessionid = -1;
2599 audit_info.secid = 0;
2600 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2601#endif
2602 audit_info.loginuid = -1;
2603 audit_info.sessionid = -1;
2604 audit_info.secid = 0;
2605 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002606
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002607 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002608
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002609 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002610 struct xfrm_policy_hash *htab;
2611
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002612 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002613
2614 htab = &net->xfrm.policy_bydst[dir];
2615 sz = (htab->hmask + 1);
2616 WARN_ON(!hlist_empty(htab->table));
2617 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002618 }
2619
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002620 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002621 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2622 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002623}
2624
2625static int __net_init xfrm_net_init(struct net *net)
2626{
2627 int rv;
2628
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002629 rv = xfrm_statistics_init(net);
2630 if (rv < 0)
2631 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002632 rv = xfrm_state_init(net);
2633 if (rv < 0)
2634 goto out_state;
2635 rv = xfrm_policy_init(net);
2636 if (rv < 0)
2637 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002638 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002639 rv = xfrm_sysctl_init(net);
2640 if (rv < 0)
2641 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002642 return 0;
2643
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002644out_sysctl:
2645 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002646out_policy:
2647 xfrm_state_fini(net);
2648out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002649 xfrm_statistics_fini(net);
2650out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002651 return rv;
2652}
2653
2654static void __net_exit xfrm_net_exit(struct net *net)
2655{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002656 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002657 xfrm_policy_fini(net);
2658 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002659 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002660}
2661
2662static struct pernet_operations __net_initdata xfrm_net_ops = {
2663 .init = xfrm_net_init,
2664 .exit = xfrm_net_exit,
2665};
2666
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667void __init xfrm_init(void)
2668{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002669 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 xfrm_input_init();
2671}
2672
Joy Lattenab5f5e82007-09-17 11:51:22 -07002673#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002674static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2675 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002676{
Paul Moore875179f2007-12-01 23:27:18 +11002677 struct xfrm_sec_ctx *ctx = xp->security;
2678 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002679
Paul Moore875179f2007-12-01 23:27:18 +11002680 if (ctx)
2681 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2682 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2683
2684 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002685 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002686 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002687 if (sel->prefixlen_s != 32)
2688 audit_log_format(audit_buf, " src_prefixlen=%d",
2689 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002690 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002691 if (sel->prefixlen_d != 32)
2692 audit_log_format(audit_buf, " dst_prefixlen=%d",
2693 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002694 break;
2695 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002696 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002697 if (sel->prefixlen_s != 128)
2698 audit_log_format(audit_buf, " src_prefixlen=%d",
2699 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002700 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002701 if (sel->prefixlen_d != 128)
2702 audit_log_format(audit_buf, " dst_prefixlen=%d",
2703 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002704 break;
2705 }
2706}
2707
Paul Moore68277ac2007-12-20 20:49:33 -08002708void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002709 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002710{
2711 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002712
Paul Mooreafeb14b2007-12-21 14:58:11 -08002713 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002714 if (audit_buf == NULL)
2715 return;
Eric Paris25323862008-04-18 10:09:25 -04002716 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002717 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002718 xfrm_audit_common_policyinfo(xp, audit_buf);
2719 audit_log_end(audit_buf);
2720}
2721EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2722
Paul Moore68277ac2007-12-20 20:49:33 -08002723void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002724 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002725{
2726 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002727
Paul Mooreafeb14b2007-12-21 14:58:11 -08002728 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002729 if (audit_buf == NULL)
2730 return;
Eric Paris25323862008-04-18 10:09:25 -04002731 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002732 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002733 xfrm_audit_common_policyinfo(xp, audit_buf);
2734 audit_log_end(audit_buf);
2735}
2736EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2737#endif
2738
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002739#ifdef CONFIG_XFRM_MIGRATE
David S. Millerb4b7c0b2011-02-24 00:35:06 -05002740static int xfrm_migrate_selector_match(const struct xfrm_selector *sel_cmp,
2741 const struct xfrm_selector *sel_tgt)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002742{
2743 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2744 if (sel_tgt->family == sel_cmp->family &&
2745 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002746 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002747 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2748 sel_cmp->family) == 0 &&
2749 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2750 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2751 return 1;
2752 }
2753 } else {
2754 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2755 return 1;
2756 }
2757 }
2758 return 0;
2759}
2760
David S. Millerb4b7c0b2011-02-24 00:35:06 -05002761static struct xfrm_policy * xfrm_migrate_policy_find(const struct xfrm_selector *sel,
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002762 u8 dir, u8 type)
2763{
2764 struct xfrm_policy *pol, *ret = NULL;
2765 struct hlist_node *entry;
2766 struct hlist_head *chain;
2767 u32 priority = ~0U;
2768
2769 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08002770 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002771 hlist_for_each_entry(pol, entry, chain, bydst) {
2772 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2773 pol->type == type) {
2774 ret = pol;
2775 priority = ret->priority;
2776 break;
2777 }
2778 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002779 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002780 hlist_for_each_entry(pol, entry, chain, bydst) {
2781 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2782 pol->type == type &&
2783 pol->priority < priority) {
2784 ret = pol;
2785 break;
2786 }
2787 }
2788
2789 if (ret)
2790 xfrm_pol_hold(ret);
2791
2792 read_unlock_bh(&xfrm_policy_lock);
2793
2794 return ret;
2795}
2796
David S. Millerdd701752011-02-24 00:21:08 -05002797static int migrate_tmpl_match(const struct xfrm_migrate *m, const struct xfrm_tmpl *t)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002798{
2799 int match = 0;
2800
2801 if (t->mode == m->mode && t->id.proto == m->proto &&
2802 (m->reqid == 0 || t->reqid == m->reqid)) {
2803 switch (t->mode) {
2804 case XFRM_MODE_TUNNEL:
2805 case XFRM_MODE_BEET:
2806 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2807 m->old_family) == 0 &&
2808 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2809 m->old_family) == 0) {
2810 match = 1;
2811 }
2812 break;
2813 case XFRM_MODE_TRANSPORT:
2814 /* in case of transport mode, template does not store
2815 any IP addresses, hence we just compare mode and
2816 protocol */
2817 match = 1;
2818 break;
2819 default:
2820 break;
2821 }
2822 }
2823 return match;
2824}
2825
2826/* update endpoint address(es) of template(s) */
2827static int xfrm_policy_migrate(struct xfrm_policy *pol,
2828 struct xfrm_migrate *m, int num_migrate)
2829{
2830 struct xfrm_migrate *mp;
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002831 int i, j, n = 0;
2832
2833 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002834 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002835 /* target policy has been deleted */
2836 write_unlock_bh(&pol->lock);
2837 return -ENOENT;
2838 }
2839
2840 for (i = 0; i < pol->xfrm_nr; i++) {
2841 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2842 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2843 continue;
2844 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002845 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2846 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002847 continue;
2848 /* update endpoints */
2849 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2850 sizeof(pol->xfrm_vec[i].id.daddr));
2851 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2852 sizeof(pol->xfrm_vec[i].saddr));
2853 pol->xfrm_vec[i].encap_family = mp->new_family;
2854 /* flush bundles */
Timo Teräs80c802f2010-04-07 00:30:05 +00002855 atomic_inc(&pol->genid);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002856 }
2857 }
2858
2859 write_unlock_bh(&pol->lock);
2860
2861 if (!n)
2862 return -ENODATA;
2863
2864 return 0;
2865}
2866
David S. Millerdd701752011-02-24 00:21:08 -05002867static int xfrm_migrate_check(const struct xfrm_migrate *m, int num_migrate)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002868{
2869 int i, j;
2870
2871 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2872 return -EINVAL;
2873
2874 for (i = 0; i < num_migrate; i++) {
2875 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2876 m[i].old_family) == 0) &&
2877 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2878 m[i].old_family) == 0))
2879 return -EINVAL;
2880 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2881 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2882 return -EINVAL;
2883
2884 /* check if there is any duplicated entry */
2885 for (j = i + 1; j < num_migrate; j++) {
2886 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2887 sizeof(m[i].old_daddr)) &&
2888 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2889 sizeof(m[i].old_saddr)) &&
2890 m[i].proto == m[j].proto &&
2891 m[i].mode == m[j].mode &&
2892 m[i].reqid == m[j].reqid &&
2893 m[i].old_family == m[j].old_family)
2894 return -EINVAL;
2895 }
2896 }
2897
2898 return 0;
2899}
2900
David S. Millerb4b7c0b2011-02-24 00:35:06 -05002901int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002902 struct xfrm_migrate *m, int num_migrate,
2903 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002904{
2905 int i, err, nx_cur = 0, nx_new = 0;
2906 struct xfrm_policy *pol = NULL;
2907 struct xfrm_state *x, *xc;
2908 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2909 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2910 struct xfrm_migrate *mp;
2911
2912 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2913 goto out;
2914
2915 /* Stage 1 - find policy */
2916 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2917 err = -ENOENT;
2918 goto out;
2919 }
2920
2921 /* Stage 2 - find and update state(s) */
2922 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2923 if ((x = xfrm_migrate_state_find(mp))) {
2924 x_cur[nx_cur] = x;
2925 nx_cur++;
2926 if ((xc = xfrm_state_migrate(x, mp))) {
2927 x_new[nx_new] = xc;
2928 nx_new++;
2929 } else {
2930 err = -ENODATA;
2931 goto restore_state;
2932 }
2933 }
2934 }
2935
2936 /* Stage 3 - update policy */
2937 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2938 goto restore_state;
2939
2940 /* Stage 4 - delete old state(s) */
2941 if (nx_cur) {
2942 xfrm_states_put(x_cur, nx_cur);
2943 xfrm_states_delete(x_cur, nx_cur);
2944 }
2945
2946 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002947 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002948
2949 xfrm_pol_put(pol);
2950
2951 return 0;
2952out:
2953 return err;
2954
2955restore_state:
2956 if (pol)
2957 xfrm_pol_put(pol);
2958 if (nx_cur)
2959 xfrm_states_put(x_cur, nx_cur);
2960 if (nx_new)
2961 xfrm_states_delete(x_new, nx_new);
2962
2963 return err;
2964}
David S. Millere610e672007-02-08 13:29:15 -08002965EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002966#endif