blob: 2a6e64652654a7b3a7baa64399e72ab8b6916f13 [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
40static DEFINE_RWLOCK(xfrm_policy_lock);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
43static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
44
Christoph Lametere18b8902006-12-06 20:33:20 -080045static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
David S. Miller2518c7c2006-08-24 04:45:07 -070047static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
49
50static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
51static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080052static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Wei Yongjun29fa0b32008-12-03 00:33:09 -080054static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
55 int dir);
56
Andrew Morton77681022006-11-08 22:46:26 -080057static inline int
58__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
59{
60 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
61 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
62 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
63 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
64 (fl->proto == sel->proto || !sel->proto) &&
65 (fl->oif == sel->ifindex || !sel->ifindex);
66}
67
68static inline int
69__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
70{
71 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
72 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
73 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
74 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
75 (fl->proto == sel->proto || !sel->proto) &&
76 (fl->oif == sel->ifindex || !sel->ifindex);
77}
78
79int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
80 unsigned short family)
81{
82 switch (family) {
83 case AF_INET:
84 return __xfrm4_selector_match(sel, fl);
85 case AF_INET6:
86 return __xfrm6_selector_match(sel, fl);
87 }
88 return 0;
89}
90
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -080091static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090092 xfrm_address_t *saddr,
93 xfrm_address_t *daddr,
94 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080096 struct xfrm_policy_afinfo *afinfo;
97 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Herbert Xu25ee3282007-12-11 09:32:34 -080099 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800101 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800103 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900106
107 return dst;
108}
109
110static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
111 xfrm_address_t *prev_saddr,
112 xfrm_address_t *prev_daddr,
113 int family)
114{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800115 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900116 xfrm_address_t *saddr = &x->props.saddr;
117 xfrm_address_t *daddr = &x->id.daddr;
118 struct dst_entry *dst;
119
120 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
121 saddr = x->coaddr;
122 daddr = prev_daddr;
123 }
124 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
125 saddr = prev_saddr;
126 daddr = x->coaddr;
127 }
128
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800129 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900130
131 if (!IS_ERR(dst)) {
132 if (prev_saddr != saddr)
133 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
134 if (prev_daddr != daddr)
135 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
136 }
137
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800138 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static inline unsigned long make_jiffies(long secs)
142{
143 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
144 return MAX_SCHEDULE_TIMEOUT-1;
145 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900146 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149static void xfrm_policy_timer(unsigned long data)
150{
151 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800152 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 long next = LONG_MAX;
154 int warn = 0;
155 int dir;
156
157 read_lock(&xp->lock);
158
Herbert Xu12a169e2008-10-01 07:03:24 -0700159 if (xp->walk.dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 goto out;
161
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700162 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 if (xp->lft.hard_add_expires_seconds) {
165 long tmo = xp->lft.hard_add_expires_seconds +
166 xp->curlft.add_time - now;
167 if (tmo <= 0)
168 goto expired;
169 if (tmo < next)
170 next = tmo;
171 }
172 if (xp->lft.hard_use_expires_seconds) {
173 long tmo = xp->lft.hard_use_expires_seconds +
174 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
175 if (tmo <= 0)
176 goto expired;
177 if (tmo < next)
178 next = tmo;
179 }
180 if (xp->lft.soft_add_expires_seconds) {
181 long tmo = xp->lft.soft_add_expires_seconds +
182 xp->curlft.add_time - now;
183 if (tmo <= 0) {
184 warn = 1;
185 tmo = XFRM_KM_TIMEOUT;
186 }
187 if (tmo < next)
188 next = tmo;
189 }
190 if (xp->lft.soft_use_expires_seconds) {
191 long tmo = xp->lft.soft_use_expires_seconds +
192 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
193 if (tmo <= 0) {
194 warn = 1;
195 tmo = XFRM_KM_TIMEOUT;
196 }
197 if (tmo < next)
198 next = tmo;
199 }
200
201 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800202 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (next != LONG_MAX &&
204 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
205 xfrm_pol_hold(xp);
206
207out:
208 read_unlock(&xp->lock);
209 xfrm_pol_put(xp);
210 return;
211
212expired:
213 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700214 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800215 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 xfrm_pol_put(xp);
217}
218
219
220/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
221 * SPD calls.
222 */
223
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800224struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct xfrm_policy *policy;
227
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700228 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800231 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700232 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700233 INIT_HLIST_NODE(&policy->bydst);
234 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700236 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800237 setup_timer(&policy->timer, xfrm_policy_timer,
238 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 return policy;
241}
242EXPORT_SYMBOL(xfrm_policy_alloc);
243
244/* Destroy xfrm_policy: descendant resources must be released to this moment. */
245
WANG Cong64c31b32008-01-07 22:34:29 -0800246void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Herbert Xu12a169e2008-10-01 07:03:24 -0700248 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Kris Katterjohn09a62662006-01-08 22:24:28 -0800250 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 if (del_timer(&policy->timer))
253 BUG();
254
Paul Moore03e1ad72008-04-12 19:07:52 -0700255 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 kfree(policy);
257}
WANG Cong64c31b32008-01-07 22:34:29 -0800258EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
261{
262 struct dst_entry *dst;
263
264 while ((dst = policy->bundles) != NULL) {
265 policy->bundles = dst->next;
266 dst_free(dst);
267 }
268
269 if (del_timer(&policy->timer))
270 atomic_dec(&policy->refcnt);
271
272 if (atomic_read(&policy->refcnt) > 1)
273 flow_cache_flush();
274
275 xfrm_pol_put(policy);
276}
277
David Howellsc4028952006-11-22 14:57:56 +0000278static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700281 struct hlist_node *entry, *tmp;
282 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700285 gc_list.first = xfrm_policy_gc_list.first;
286 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 spin_unlock_bh(&xfrm_policy_gc_lock);
288
David S. Miller2518c7c2006-08-24 04:45:07 -0700289 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
Alexey Dobriyanc9583962008-11-25 17:13:59 -0800292static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294/* Rule must be locked. Release descentant resources, announce
295 * entry dead. The rule must be unlinked from lists to the moment.
296 */
297
298static void xfrm_policy_kill(struct xfrm_policy *policy)
299{
300 int dead;
301
302 write_lock_bh(&policy->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700303 dead = policy->walk.dead;
304 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 write_unlock_bh(&policy->lock);
306
307 if (unlikely(dead)) {
308 WARN_ON(1);
309 return;
310 }
311
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800312 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700313 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800314 spin_unlock_bh(&xfrm_policy_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 schedule_work(&xfrm_policy_gc_work);
317}
318
David S. Miller2518c7c2006-08-24 04:45:07 -0700319static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
320
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800321static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700322{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800323 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700324}
325
Alexey Dobriyan11219942008-11-25 17:33:06 -0800326static struct hlist_head *policy_hash_bysel(struct net *net, struct xfrm_selector *sel, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700327{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800328 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700329 unsigned int hash = __sel_hash(sel, family, hmask);
330
331 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800332 &net->xfrm.policy_inexact[dir] :
333 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700334}
335
Alexey Dobriyan11219942008-11-25 17:33:06 -0800336static struct hlist_head *policy_hash_direct(struct net *net, xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700337{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800338 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700339 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
340
Alexey Dobriyan11219942008-11-25 17:33:06 -0800341 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700342}
343
David S. Miller2518c7c2006-08-24 04:45:07 -0700344static void xfrm_dst_hash_transfer(struct hlist_head *list,
345 struct hlist_head *ndsttable,
346 unsigned int nhashmask)
347{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800348 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700349 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800350 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700351
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800352redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700353 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
354 unsigned int h;
355
356 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
357 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800358 if (!entry0) {
359 hlist_del(entry);
360 hlist_add_head(&pol->bydst, ndsttable+h);
361 h0 = h;
362 } else {
363 if (h != h0)
364 continue;
365 hlist_del(entry);
366 hlist_add_after(entry0, &pol->bydst);
367 }
368 entry0 = entry;
369 }
370 if (!hlist_empty(list)) {
371 entry0 = NULL;
372 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700373 }
374}
375
376static void xfrm_idx_hash_transfer(struct hlist_head *list,
377 struct hlist_head *nidxtable,
378 unsigned int nhashmask)
379{
380 struct hlist_node *entry, *tmp;
381 struct xfrm_policy *pol;
382
383 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
384 unsigned int h;
385
386 h = __idx_hash(pol->index, nhashmask);
387 hlist_add_head(&pol->byidx, nidxtable+h);
388 }
389}
390
391static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
392{
393 return ((old_hmask + 1) << 1) - 1;
394}
395
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800396static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700397{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800398 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700399 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
400 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800401 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700402 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700403 int i;
404
405 if (!ndst)
406 return;
407
408 write_lock_bh(&xfrm_policy_lock);
409
410 for (i = hmask; i >= 0; i--)
411 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
412
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800413 net->xfrm.policy_bydst[dir].table = ndst;
414 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700415
416 write_unlock_bh(&xfrm_policy_lock);
417
David S. Miller44e36b42006-08-24 04:50:50 -0700418 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700419}
420
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800421static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700422{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800423 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700424 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
425 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800426 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700427 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700428 int i;
429
430 if (!nidx)
431 return;
432
433 write_lock_bh(&xfrm_policy_lock);
434
435 for (i = hmask; i >= 0; i--)
436 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
437
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800438 net->xfrm.policy_byidx = nidx;
439 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700440
441 write_unlock_bh(&xfrm_policy_lock);
442
David S. Miller44e36b42006-08-24 04:50:50 -0700443 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700444}
445
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800446static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700447{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800448 unsigned int cnt = net->xfrm.policy_count[dir];
449 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700450
451 if (total)
452 *total += cnt;
453
454 if ((hmask + 1) < xfrm_policy_hashmax &&
455 cnt > hmask)
456 return 1;
457
458 return 0;
459}
460
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800461static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700462{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800463 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700464
465 if ((hmask + 1) < xfrm_policy_hashmax &&
466 total > hmask)
467 return 1;
468
469 return 0;
470}
471
Alexey Dobriyane0710412010-01-23 13:37:10 +0000472void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700473{
474 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000475 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
476 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
477 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
478 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
479 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
480 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
481 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700482 si->spdhmcnt = xfrm_policy_hashmax;
483 read_unlock_bh(&xfrm_policy_lock);
484}
485EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700486
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700487static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800488static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700489{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800490 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700491 int dir, total;
492
493 mutex_lock(&hash_resize_mutex);
494
495 total = 0;
496 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800497 if (xfrm_bydst_should_resize(net, dir, &total))
498 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700499 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800500 if (xfrm_byidx_should_resize(net, total))
501 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700502
503 mutex_unlock(&hash_resize_mutex);
504}
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506/* Generate new index... KAME seems to generate them ordered by cost
507 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800508static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 static u32 idx_generator;
511
512 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700513 struct hlist_node *entry;
514 struct hlist_head *list;
515 struct xfrm_policy *p;
516 u32 idx;
517 int found;
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 idx = (idx_generator | dir);
520 idx_generator += 8;
521 if (idx == 0)
522 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800523 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700524 found = 0;
525 hlist_for_each_entry(p, entry, list, byidx) {
526 if (p->index == idx) {
527 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700531 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return idx;
533 }
534}
535
David S. Miller2518c7c2006-08-24 04:45:07 -0700536static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
537{
538 u32 *p1 = (u32 *) s1;
539 u32 *p2 = (u32 *) s2;
540 int len = sizeof(struct xfrm_selector) / sizeof(u32);
541 int i;
542
543 for (i = 0; i < len; i++) {
544 if (p1[i] != p2[i])
545 return 1;
546 }
547
548 return 0;
549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
552{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800553 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700554 struct xfrm_policy *pol;
555 struct xfrm_policy *delpol;
556 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800557 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800558 struct dst_entry *gc_list;
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000559 u32 mark = policy->mark.v & policy->mark.m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800562 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700563 delpol = NULL;
564 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700565 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800566 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700567 !selector_cmp(&pol->selector, &policy->selector) &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000568 (mark & pol->mark.m) == pol->mark.v &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800569 xfrm_sec_ctx_match(pol->security, policy->security) &&
570 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (excl) {
572 write_unlock_bh(&xfrm_policy_lock);
573 return -EEXIST;
574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 delpol = pol;
576 if (policy->priority > pol->priority)
577 continue;
578 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800579 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 continue;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (delpol)
583 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700586 hlist_add_after(newpos, &policy->bydst);
587 else
588 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800590 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 atomic_inc(&flow_cache_genid);
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800592 if (delpol)
593 __xfrm_policy_unlink(delpol, dir);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800594 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
595 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800596 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 policy->curlft.use_time = 0;
598 if (!mod_timer(&policy->timer, jiffies + HZ))
599 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800600 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 write_unlock_bh(&xfrm_policy_lock);
602
David S. Miller9b78a822005-12-22 07:39:48 -0800603 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800605 else if (xfrm_bydst_should_resize(net, dir, NULL))
606 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800607
608 read_lock_bh(&xfrm_policy_lock);
609 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700610 entry = &policy->bydst;
611 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800612 struct dst_entry *dst;
613
614 write_lock(&policy->lock);
615 dst = policy->bundles;
616 if (dst) {
617 struct dst_entry *tail = dst;
618 while (tail->next)
619 tail = tail->next;
620 tail->next = gc_list;
621 gc_list = dst;
622
623 policy->bundles = NULL;
624 }
625 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
David S. Miller9b78a822005-12-22 07:39:48 -0800627 read_unlock_bh(&xfrm_policy_lock);
628
629 while (gc_list) {
630 struct dst_entry *dst = gc_list;
631
632 gc_list = dst->next;
633 dst_free(dst);
634 }
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
637}
638EXPORT_SYMBOL(xfrm_policy_insert);
639
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000640struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u32 mark, u8 type,
641 int dir, struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800642 struct xfrm_sec_ctx *ctx, int delete,
643 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
David S. Miller2518c7c2006-08-24 04:45:07 -0700645 struct xfrm_policy *pol, *ret;
646 struct hlist_head *chain;
647 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Eric Parisef41aaa2007-03-07 15:37:58 -0800649 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800651 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700652 ret = NULL;
653 hlist_for_each_entry(pol, entry, chain, bydst) {
654 if (pol->type == type &&
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000655 (mark & pol->mark.m) == pol->mark.v &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700656 !selector_cmp(sel, &pol->selector) &&
657 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700659 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700660 *err = security_xfrm_policy_delete(
661 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800662 if (*err) {
663 write_unlock_bh(&xfrm_policy_lock);
664 return pol;
665 }
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800666 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700667 }
668 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
670 }
671 }
672 write_unlock_bh(&xfrm_policy_lock);
673
David S. Miller2518c7c2006-08-24 04:45:07 -0700674 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700676 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700678 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
Trent Jaegerdf718372005-12-13 23:12:27 -0800680EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Jamal Hadi Salim8ca2e932010-02-22 11:32:57 +0000682struct xfrm_policy *xfrm_policy_byid(struct net *net, u32 mark, u8 type,
683 int dir, u32 id, int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
David S. Miller2518c7c2006-08-24 04:45:07 -0700685 struct xfrm_policy *pol, *ret;
686 struct hlist_head *chain;
687 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Herbert Xub5505c62007-05-14 02:15:47 -0700689 *err = -ENOENT;
690 if (xfrm_policy_id2dir(id) != dir)
691 return NULL;
692
Eric Parisef41aaa2007-03-07 15:37:58 -0800693 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800695 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700696 ret = NULL;
697 hlist_for_each_entry(pol, entry, chain, byidx) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000698 if (pol->type == type && pol->index == id &&
699 (mark & pol->mark.m) == pol->mark.v) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700701 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700702 *err = security_xfrm_policy_delete(
703 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800704 if (*err) {
705 write_unlock_bh(&xfrm_policy_lock);
706 return pol;
707 }
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800708 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700709 }
710 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 break;
712 }
713 }
714 write_unlock_bh(&xfrm_policy_lock);
715
David S. Miller2518c7c2006-08-24 04:45:07 -0700716 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700718 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700720 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722EXPORT_SYMBOL(xfrm_policy_byid);
723
Joy Latten4aa2e622007-06-04 19:05:57 -0400724#ifdef CONFIG_SECURITY_NETWORK_XFRM
725static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800726xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Joy Latten4aa2e622007-06-04 19:05:57 -0400728 int dir, err = 0;
729
730 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
731 struct xfrm_policy *pol;
732 struct hlist_node *entry;
733 int i;
734
735 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800736 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400737 if (pol->type != type)
738 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700739 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400740 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700741 xfrm_audit_policy_delete(pol, 0,
742 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400743 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700744 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400745 return err;
746 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900747 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800748 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400749 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800750 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400751 bydst) {
752 if (pol->type != type)
753 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700754 err = security_xfrm_policy_delete(
755 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400756 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700757 xfrm_audit_policy_delete(pol, 0,
758 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400759 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700760 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400761 return err;
762 }
763 }
764 }
765 }
766 return err;
767}
768#else
769static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800770xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400771{
772 return 0;
773}
774#endif
775
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800776int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400777{
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000778 int dir, err = 0, cnt = 0;
779 struct xfrm_policy *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400782
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800783 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400784 if (err)
785 goto out;
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700788 struct xfrm_policy *pol;
789 struct hlist_node *entry;
Wei Yongjun29fa0b32008-12-03 00:33:09 -0800790 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700791
792 again1:
793 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800794 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700795 if (pol->type != type)
796 continue;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000797 dp = __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 write_unlock_bh(&xfrm_policy_lock);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000799 if (dp)
800 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Joy Lattenab5f5e82007-09-17 11:51:22 -0700802 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400803 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700804 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600805
David S. Miller2518c7c2006-08-24 04:45:07 -0700806 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700809 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700811
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800812 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700813 again2:
814 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800815 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700816 bydst) {
817 if (pol->type != type)
818 continue;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000819 dp = __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700820 write_unlock_bh(&xfrm_policy_lock);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000821 if (dp)
822 cnt++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700823
Joy Lattenab5f5e82007-09-17 11:51:22 -0700824 xfrm_audit_policy_delete(pol, 1,
825 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400826 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700827 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700828 xfrm_policy_kill(pol);
829
830 write_lock_bh(&xfrm_policy_lock);
831 goto again2;
832 }
833 }
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +0000836 if (!cnt)
837 err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400839out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400841 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843EXPORT_SYMBOL(xfrm_policy_flush);
844
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800845int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800846 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 void *data)
848{
Herbert Xu12a169e2008-10-01 07:03:24 -0700849 struct xfrm_policy *pol;
850 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800851 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Timo Teras4c563f72008-02-28 21:31:08 -0800853 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
854 walk->type != XFRM_POLICY_TYPE_ANY)
855 return -EINVAL;
856
Herbert Xu12a169e2008-10-01 07:03:24 -0700857 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800858 return 0;
859
Herbert Xu12a169e2008-10-01 07:03:24 -0700860 write_lock_bh(&xfrm_policy_lock);
861 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800862 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700863 else
864 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800865 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700866 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800867 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700868 pol = container_of(x, struct xfrm_policy, walk);
869 if (walk->type != XFRM_POLICY_TYPE_ANY &&
870 walk->type != pol->type)
871 continue;
872 error = func(pol, xfrm_policy_id2dir(pol->index),
873 walk->seq, data);
874 if (error) {
875 list_move_tail(&walk->walk.all, &x->all);
876 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800877 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700878 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700880 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800881 error = -ENOENT;
882 goto out;
883 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700884 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700886 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return error;
888}
889EXPORT_SYMBOL(xfrm_policy_walk);
890
Herbert Xu12a169e2008-10-01 07:03:24 -0700891void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
892{
893 INIT_LIST_HEAD(&walk->walk.all);
894 walk->walk.dead = 1;
895 walk->type = type;
896 walk->seq = 0;
897}
898EXPORT_SYMBOL(xfrm_policy_walk_init);
899
900void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
901{
902 if (list_empty(&walk->walk.all))
903 return;
904
905 write_lock_bh(&xfrm_policy_lock);
906 list_del(&walk->walk.all);
907 write_unlock_bh(&xfrm_policy_lock);
908}
909EXPORT_SYMBOL(xfrm_policy_walk_done);
910
James Morris134b0fc2006-10-05 15:42:27 -0500911/*
912 * Find policy to apply to this flow.
913 *
914 * Returns 0 if policy found, else an -errno.
915 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700916static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
917 u8 type, u16 family, int dir)
918{
919 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500920 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700921
922 if (pol->family != family ||
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +0000923 (fl->mark & pol->mark.m) != pol->mark.v ||
David S. Miller2518c7c2006-08-24 04:45:07 -0700924 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500925 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700926
927 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500928 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700929 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
930 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700931
James Morris134b0fc2006-10-05 15:42:27 -0500932 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700933}
934
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800935static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
936 struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700937 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
James Morris134b0fc2006-10-05 15:42:27 -0500939 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700940 struct xfrm_policy *pol, *ret;
941 xfrm_address_t *daddr, *saddr;
942 struct hlist_node *entry;
943 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700944 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700945
946 daddr = xfrm_flowi_daddr(fl, family);
947 saddr = xfrm_flowi_saddr(fl, family);
948 if (unlikely(!daddr || !saddr))
949 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800952 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700953 ret = NULL;
954 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500955 err = xfrm_policy_match(pol, fl, type, family, dir);
956 if (err) {
957 if (err == -ESRCH)
958 continue;
959 else {
960 ret = ERR_PTR(err);
961 goto fail;
962 }
963 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700964 ret = pol;
965 priority = ret->priority;
966 break;
967 }
968 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800969 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700970 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500971 err = xfrm_policy_match(pol, fl, type, family, dir);
972 if (err) {
973 if (err == -ESRCH)
974 continue;
975 else {
976 ret = ERR_PTR(err);
977 goto fail;
978 }
979 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700980 ret = pol;
981 break;
982 }
983 }
David S. Milleracba48e2006-08-25 15:46:46 -0700984 if (ret)
985 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500986fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700988
David S. Miller2518c7c2006-08-24 04:45:07 -0700989 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700990}
991
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800992static int xfrm_policy_lookup(struct net *net, struct flowi *fl, u16 family,
993 u8 dir, void **objp, atomic_t **obj_refp)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700994{
995 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -0500996 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700997
998#ifdef CONFIG_XFRM_SUB_POLICY
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800999 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001000 if (IS_ERR(pol)) {
1001 err = PTR_ERR(pol);
1002 pol = NULL;
1003 }
1004 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001005 goto end;
1006#endif
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001007 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001008 if (IS_ERR(pol)) {
1009 err = PTR_ERR(pol);
1010 pol = NULL;
1011 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001012#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001013end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001014#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if ((*objp = (void *) pol) != NULL)
1016 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001017 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Trent Jaegerdf718372005-12-13 23:12:27 -08001020static inline int policy_to_flow_dir(int dir)
1021{
1022 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001023 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1024 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1025 return dir;
1026 switch (dir) {
1027 default:
1028 case XFRM_POLICY_IN:
1029 return FLOW_DIR_IN;
1030 case XFRM_POLICY_OUT:
1031 return FLOW_DIR_OUT;
1032 case XFRM_POLICY_FWD:
1033 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001034 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001035}
1036
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001037static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
1039 struct xfrm_policy *pol;
1040
1041 read_lock_bh(&xfrm_policy_lock);
1042 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001043 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001045 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001046
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001047 if (match) {
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001048 if ((sk->sk_mark & pol->mark.m) != pol->mark.v) {
1049 pol = NULL;
1050 goto out;
1051 }
Paul Moore03e1ad72008-04-12 19:07:52 -07001052 err = security_xfrm_policy_lookup(pol->security,
1053 fl->secid,
1054 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001055 if (!err)
1056 xfrm_pol_hold(pol);
1057 else if (err == -ESRCH)
1058 pol = NULL;
1059 else
1060 pol = ERR_PTR(err);
1061 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 pol = NULL;
1063 }
Jamal Hadi Salim34f8d882010-02-22 11:32:58 +00001064out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 read_unlock_bh(&xfrm_policy_lock);
1066 return pol;
1067}
1068
1069static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1070{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001071 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001072 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001073 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001074
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001075 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001076 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001077 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001078 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001080
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001081 if (xfrm_bydst_should_resize(net, dir, NULL))
1082 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1086 int dir)
1087{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001088 struct net *net = xp_net(pol);
1089
David S. Miller2518c7c2006-08-24 04:45:07 -07001090 if (hlist_unhashed(&pol->bydst))
1091 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
David S. Miller2518c7c2006-08-24 04:45:07 -07001093 hlist_del(&pol->bydst);
1094 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001095 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001096 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001097
1098 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
Herbert Xu4666faa2005-06-18 22:43:22 -07001101int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
1103 write_lock_bh(&xfrm_policy_lock);
1104 pol = __xfrm_policy_unlink(pol, dir);
1105 write_unlock_bh(&xfrm_policy_lock);
1106 if (pol) {
1107 if (dir < XFRM_POLICY_MAX)
1108 atomic_inc(&flow_cache_genid);
1109 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001110 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001112 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
David S. Millera70fcb02006-03-20 19:18:52 -08001114EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1117{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001118 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 struct xfrm_policy *old_pol;
1120
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001121#ifdef CONFIG_XFRM_SUB_POLICY
1122 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1123 return -EINVAL;
1124#endif
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 write_lock_bh(&xfrm_policy_lock);
1127 old_pol = sk->sk_policy[dir];
1128 sk->sk_policy[dir] = pol;
1129 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001130 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001131 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1133 }
1134 if (old_pol)
1135 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1136 write_unlock_bh(&xfrm_policy_lock);
1137
1138 if (old_pol) {
1139 xfrm_policy_kill(old_pol);
1140 }
1141 return 0;
1142}
1143
1144static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1145{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001146 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if (newp) {
1149 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001150 if (security_xfrm_policy_clone(old->security,
1151 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001152 kfree(newp);
1153 return NULL; /* ENOMEM */
1154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 newp->lft = old->lft;
1156 newp->curlft = old->curlft;
1157 newp->action = old->action;
1158 newp->flags = old->flags;
1159 newp->xfrm_nr = old->xfrm_nr;
1160 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001161 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 memcpy(newp->xfrm_vec, old->xfrm_vec,
1163 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1164 write_lock_bh(&xfrm_policy_lock);
1165 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1166 write_unlock_bh(&xfrm_policy_lock);
1167 xfrm_pol_put(newp);
1168 }
1169 return newp;
1170}
1171
1172int __xfrm_sk_clone_policy(struct sock *sk)
1173{
1174 struct xfrm_policy *p0 = sk->sk_policy[0],
1175 *p1 = sk->sk_policy[1];
1176
1177 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1178 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1179 return -ENOMEM;
1180 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1181 return -ENOMEM;
1182 return 0;
1183}
1184
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001185static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001186xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001187 unsigned short family)
1188{
1189 int err;
1190 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1191
1192 if (unlikely(afinfo == NULL))
1193 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001194 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001195 xfrm_policy_put_afinfo(afinfo);
1196 return err;
1197}
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199/* Resolve list of templates for the flow, given policy. */
1200
1201static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001202xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1203 struct xfrm_state **xfrm,
1204 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001206 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 int nx;
1208 int i, error;
1209 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1210 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001211 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1214 struct xfrm_state *x;
1215 xfrm_address_t *remote = daddr;
1216 xfrm_address_t *local = saddr;
1217 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1218
Joakim Koskela48b8d782007-07-26 00:08:42 -07001219 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1220 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 remote = &tmpl->id.daddr;
1222 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001223 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001224 if (xfrm_addr_any(local, family)) {
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001225 error = xfrm_get_saddr(net, &tmp, remote, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001226 if (error)
1227 goto fail;
1228 local = &tmp;
1229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
1232 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1233
1234 if (x && x->km.state == XFRM_STATE_VALID) {
1235 xfrm[nx++] = x;
1236 daddr = remote;
1237 saddr = local;
1238 continue;
1239 }
1240 if (x) {
1241 error = (x->km.state == XFRM_STATE_ERROR ?
1242 -EINVAL : -EAGAIN);
1243 xfrm_state_put(x);
1244 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001245 else if (error == -ESRCH)
1246 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 if (!tmpl->optional)
1249 goto fail;
1250 }
1251 return nx;
1252
1253fail:
1254 for (nx--; nx>=0; nx--)
1255 xfrm_state_put(xfrm[nx]);
1256 return error;
1257}
1258
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001259static int
1260xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1261 struct xfrm_state **xfrm,
1262 unsigned short family)
1263{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001264 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1265 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001266 int cnx = 0;
1267 int error;
1268 int ret;
1269 int i;
1270
1271 for (i = 0; i < npols; i++) {
1272 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1273 error = -ENOBUFS;
1274 goto fail;
1275 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001276
1277 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001278 if (ret < 0) {
1279 error = ret;
1280 goto fail;
1281 } else
1282 cnx += ret;
1283 }
1284
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001285 /* found states are sorted for outbound processing */
1286 if (npols > 1)
1287 xfrm_state_sort(xfrm, tpp, cnx, family);
1288
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001289 return cnx;
1290
1291 fail:
1292 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001293 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001294 return error;
1295
1296}
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298/* Check that the bundle accepts the flow and its components are
1299 * still valid.
1300 */
1301
1302static struct dst_entry *
1303xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1304{
1305 struct dst_entry *x;
1306 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1307 if (unlikely(afinfo == NULL))
1308 return ERR_PTR(-EINVAL);
1309 x = afinfo->find_bundle(fl, policy);
1310 xfrm_policy_put_afinfo(afinfo);
1311 return x;
1312}
1313
Herbert Xu25ee3282007-12-11 09:32:34 -08001314static inline int xfrm_get_tos(struct flowi *fl, int family)
1315{
1316 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1317 int tos;
1318
1319 if (!afinfo)
1320 return -EINVAL;
1321
1322 tos = afinfo->get_tos(fl);
1323
1324 xfrm_policy_put_afinfo(afinfo);
1325
1326 return tos;
1327}
1328
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001329static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001330{
1331 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001332 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001333 struct xfrm_dst *xdst;
1334
1335 if (!afinfo)
1336 return ERR_PTR(-EINVAL);
1337
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001338 switch (family) {
1339 case AF_INET:
1340 dst_ops = &net->xfrm.xfrm4_dst_ops;
1341 break;
1342#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1343 case AF_INET6:
1344 dst_ops = &net->xfrm.xfrm6_dst_ops;
1345 break;
1346#endif
1347 default:
1348 BUG();
1349 }
1350 xdst = dst_alloc(dst_ops) ?: ERR_PTR(-ENOBUFS);
Herbert Xu25ee3282007-12-11 09:32:34 -08001351
1352 xfrm_policy_put_afinfo(afinfo);
1353
1354 return xdst;
1355}
1356
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001357static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1358 int nfheader_len)
1359{
1360 struct xfrm_policy_afinfo *afinfo =
1361 xfrm_policy_get_afinfo(dst->ops->family);
1362 int err;
1363
1364 if (!afinfo)
1365 return -EINVAL;
1366
1367 err = afinfo->init_path(path, dst, nfheader_len);
1368
1369 xfrm_policy_put_afinfo(afinfo);
1370
1371 return err;
1372}
1373
Herbert Xu25ee3282007-12-11 09:32:34 -08001374static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1375{
1376 struct xfrm_policy_afinfo *afinfo =
1377 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1378 int err;
1379
1380 if (!afinfo)
1381 return -EINVAL;
1382
1383 err = afinfo->fill_dst(xdst, dev);
1384
1385 xfrm_policy_put_afinfo(afinfo);
1386
1387 return err;
1388}
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1391 * all the metrics... Shortly, bundle a bundle.
1392 */
1393
Herbert Xu25ee3282007-12-11 09:32:34 -08001394static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1395 struct xfrm_state **xfrm, int nx,
1396 struct flowi *fl,
1397 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001399 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001400 unsigned long now = jiffies;
1401 struct net_device *dev;
1402 struct dst_entry *dst_prev = NULL;
1403 struct dst_entry *dst0 = NULL;
1404 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001406 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001407 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001408 int trailer_len = 0;
1409 int tos;
1410 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001411 xfrm_address_t saddr, daddr;
1412
1413 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001414
1415 tos = xfrm_get_tos(fl, family);
1416 err = tos;
1417 if (tos < 0)
1418 goto put_states;
1419
1420 dst_hold(dst);
1421
1422 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001423 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001424 struct dst_entry *dst1 = &xdst->u.dst;
1425
1426 err = PTR_ERR(xdst);
1427 if (IS_ERR(xdst)) {
1428 dst_release(dst);
1429 goto put_states;
1430 }
1431
1432 if (!dst_prev)
1433 dst0 = dst1;
1434 else {
1435 dst_prev->child = dst_clone(dst1);
1436 dst1->flags |= DST_NOHASH;
1437 }
1438
1439 xdst->route = dst;
1440 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1441
1442 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1443 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001444 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1445 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001446 err = PTR_ERR(dst);
1447 if (IS_ERR(dst))
1448 goto put_states;
1449 } else
1450 dst_hold(dst);
1451
1452 dst1->xfrm = xfrm[i];
1453 xdst->genid = xfrm[i]->genid;
1454
1455 dst1->obsolete = -1;
1456 dst1->flags |= DST_HOST;
1457 dst1->lastuse = now;
1458
1459 dst1->input = dst_discard;
1460 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1461
1462 dst1->next = dst_prev;
1463 dst_prev = dst1;
1464
1465 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001466 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1467 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001468 trailer_len += xfrm[i]->props.trailer_len;
1469 }
1470
1471 dst_prev->child = dst;
1472 dst0->path = dst;
1473
1474 err = -ENODEV;
1475 dev = dst->dev;
1476 if (!dev)
1477 goto free_dst;
1478
Ralf Baechle96c53402009-12-25 23:30:02 +00001479 /* Copy neighbour for reachability confirmation */
Herbert Xu25ee3282007-12-11 09:32:34 -08001480 dst0->neighbour = neigh_clone(dst->neighbour);
1481
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001482 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001483 xfrm_init_pmtu(dst_prev);
1484
1485 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1486 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1487
1488 err = xfrm_fill_dst(xdst, dev);
1489 if (err)
1490 goto free_dst;
1491
1492 dst_prev->header_len = header_len;
1493 dst_prev->trailer_len = trailer_len;
1494 header_len -= xdst->u.dst.xfrm->props.header_len;
1495 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1496 }
1497
1498out:
1499 return dst0;
1500
1501put_states:
1502 for (; i < nx; i++)
1503 xfrm_state_put(xfrm[i]);
1504free_dst:
1505 if (dst0)
1506 dst_free(dst0);
1507 dst0 = ERR_PTR(err);
1508 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001511static int inline
1512xfrm_dst_alloc_copy(void **target, void *src, int size)
1513{
1514 if (!*target) {
1515 *target = kmalloc(size, GFP_ATOMIC);
1516 if (!*target)
1517 return -ENOMEM;
1518 }
1519 memcpy(*target, src, size);
1520 return 0;
1521}
1522
1523static int inline
1524xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1525{
1526#ifdef CONFIG_XFRM_SUB_POLICY
1527 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1528 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1529 sel, sizeof(*sel));
1530#else
1531 return 0;
1532#endif
1533}
1534
1535static int inline
1536xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1537{
1538#ifdef CONFIG_XFRM_SUB_POLICY
1539 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1540 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1541#else
1542 return 0;
1543#endif
1544}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546static int stale_bundle(struct dst_entry *dst);
1547
1548/* Main function: finds/creates a bundle for given flow.
1549 *
1550 * At the moment we eat a raw IP route. Mostly to speed up lookups
1551 * on interfaces with disabled IPsec.
1552 */
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001553int __xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001554 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
1556 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001557 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1558 int npols;
1559 int pol_dead;
1560 int xfrm_nr;
1561 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1563 struct dst_entry *dst, *dst_orig = *dst_p;
1564 int nx = 0;
1565 int err;
1566 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001567 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001568 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570restart:
1571 genid = atomic_read(&flow_cache_genid);
1572 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001573 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1574 pols[pi] = NULL;
1575 npols = 0;
1576 pol_dead = 0;
1577 xfrm_nr = 0;
1578
Thomas Graff7944fb2007-08-25 13:46:55 -07001579 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001580 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001581 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001582 if (IS_ERR(policy)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001583 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001584 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001585 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 if (!policy) {
1589 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001590 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001591 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001592 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001594 policy = flow_cache_lookup(net, fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001595 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001596 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001597 if (IS_ERR(policy)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001598 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001599 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602
1603 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001604 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001606 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001607 pols[0] = policy;
1608 npols ++;
1609 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Herbert Xuaef21782007-12-13 09:30:59 -08001611 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001612 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1613 goto error;
1614
1615 policy->curlft.use_time = get_seconds();
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001618 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 case XFRM_POLICY_BLOCK:
1620 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001621 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye1044112005-09-08 15:11:55 -07001622 err = -EPERM;
1623 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001626#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (policy->xfrm_nr == 0) {
1628 /* Flow passes not transformed. */
1629 xfrm_pol_put(policy);
1630 return 0;
1631 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001632#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 /* Try to find matching bundle.
1635 *
1636 * LATER: help from flow cache. It is optional, this
1637 * is required only for output policy.
1638 */
1639 dst = xfrm_find_bundle(fl, policy, family);
1640 if (IS_ERR(dst)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001641 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye1044112005-09-08 15:11:55 -07001642 err = PTR_ERR(dst);
1643 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
1645
1646 if (dst)
1647 break;
1648
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001649#ifdef CONFIG_XFRM_SUB_POLICY
1650 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001651 pols[1] = xfrm_policy_lookup_bytype(net,
1652 XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001653 fl, family,
1654 XFRM_POLICY_OUT);
1655 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001656 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001657 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001658 err = PTR_ERR(pols[1]);
1659 goto error;
1660 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001661 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001662 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001663 err = -EPERM;
1664 goto error;
1665 }
1666 npols ++;
1667 xfrm_nr += pols[1]->xfrm_nr;
1668 }
1669 }
1670
1671 /*
1672 * Because neither flowi nor bundle information knows about
1673 * transformation template size. On more than one policy usage
1674 * we can realize whether all of them is bypass or not after
1675 * they are searched. See above not-transformed bypass
1676 * is surrounded by non-sub policy configuration, too.
1677 */
1678 if (xfrm_nr == 0) {
1679 /* Flow passes not transformed. */
1680 xfrm_pols_put(pols, npols);
1681 return 0;
1682 }
1683
1684#endif
1685 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 if (unlikely(nx<0)) {
1688 err = nx;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08001689 if (err == -EAGAIN && net->xfrm.sysctl_larval_drop) {
David S. Miller14e50e52007-05-24 18:17:54 -07001690 /* EREMOTE tells the caller to generate
1691 * a one-shot blackhole route.
1692 */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001693 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001694 xfrm_pol_put(policy);
1695 return -EREMOTE;
1696 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001697 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 DECLARE_WAITQUEUE(wait, current);
1699
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001700 add_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 set_current_state(TASK_INTERRUPTIBLE);
1702 schedule();
1703 set_current_state(TASK_RUNNING);
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001704 remove_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001706 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 if (nx == -EAGAIN && signal_pending(current)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001709 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 err = -ERESTART;
1711 goto error;
1712 }
1713 if (nx == -EAGAIN ||
1714 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001715 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 goto restart;
1717 }
1718 err = nx;
1719 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001720 if (err < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001721 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 }
1725 if (nx == 0) {
1726 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001727 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return 0;
1729 }
1730
Herbert Xu25ee3282007-12-11 09:32:34 -08001731 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1732 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001733 if (IS_ERR(dst)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001734 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001738 for (pi = 0; pi < npols; pi++) {
1739 read_lock_bh(&pols[pi]->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001740 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001741 read_unlock_bh(&pols[pi]->lock);
1742 }
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001745 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 /* Wow! While we worked on resolving, this
1747 * policy has gone. Retry. It is not paranoia,
1748 * we just cannot enlist new bundle to dead object.
1749 * We can't enlist stable bundles either.
1750 */
1751 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001752 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001753
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001754 if (pol_dead)
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001755 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLDEAD);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001756 else
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001757 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001758 err = -EHOSTUNREACH;
1759 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001761
1762 if (npols > 1)
1763 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1764 else
1765 err = xfrm_dst_update_origin(dst, fl);
1766 if (unlikely(err)) {
1767 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001768 dst_free(dst);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001769 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001770 goto error;
1771 }
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 dst->next = policy->bundles;
1774 policy->bundles = dst;
1775 dst_hold(dst);
1776 write_unlock_bh(&policy->lock);
1777 }
1778 *dst_p = dst;
1779 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001780 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 return 0;
1782
1783error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001784 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001785dropdst:
1786 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 *dst_p = NULL;
1788 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001789
1790nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001791 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001792 if (flags & XFRM_LOOKUP_ICMP)
1793 goto dropdst;
1794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
David S. Miller14e50e52007-05-24 18:17:54 -07001796EXPORT_SYMBOL(__xfrm_lookup);
1797
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001798int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001799 struct sock *sk, int flags)
1800{
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001801 int err = __xfrm_lookup(net, dst_p, fl, sk, flags);
David S. Miller14e50e52007-05-24 18:17:54 -07001802
1803 if (err == -EREMOTE) {
1804 dst_release(*dst_p);
1805 *dst_p = NULL;
1806 err = -EAGAIN;
1807 }
1808
1809 return err;
1810}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811EXPORT_SYMBOL(xfrm_lookup);
1812
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001813static inline int
1814xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1815{
1816 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001817
1818 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1819 return 0;
1820 x = skb->sp->xvec[idx];
1821 if (!x->type->reject)
1822 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001823 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001824}
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826/* When skb is transformed back to its "native" form, we have to
1827 * check policy restrictions. At the moment we make this in maximally
1828 * stupid way. Shame on me. :-) Of course, connected sockets must
1829 * have policy cached at them.
1830 */
1831
1832static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001833xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 unsigned short family)
1835{
1836 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001837 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return x->id.proto == tmpl->id.proto &&
1839 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1840 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1841 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001842 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001843 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001844 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1845 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001848/*
1849 * 0 or more than 0 is returned when validation is succeeded (either bypass
1850 * because of optional transport mode, or next index of the mathced secpath
1851 * state with the template.
1852 * -1 is returned when no matching template is found.
1853 * Otherwise "-2 - errored_index" is returned.
1854 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855static inline int
1856xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1857 unsigned short family)
1858{
1859 int idx = start;
1860
1861 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001862 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 return start;
1864 } else
1865 start = -1;
1866 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001867 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001869 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1870 if (start == -1)
1871 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875 return start;
1876}
1877
Herbert Xud5422ef2007-12-12 10:44:16 -08001878int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1879 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
1881 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001882 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 if (unlikely(afinfo == NULL))
1885 return -EAFNOSUPPORT;
1886
Herbert Xud5422ef2007-12-12 10:44:16 -08001887 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001888 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001890 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
Herbert Xud5422ef2007-12-12 10:44:16 -08001892EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001894static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001897 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001898 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 }
1902
1903 return 0;
1904}
1905
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001906int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 unsigned short family)
1908{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001909 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001911 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1912 int npols = 0;
1913 int xfrm_nr;
1914 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001915 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001917 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001918 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Herbert Xud5422ef2007-12-12 10:44:16 -08001920 reverse = dir & ~XFRM_POLICY_MASK;
1921 dir &= XFRM_POLICY_MASK;
1922 fl_dir = policy_to_flow_dir(dir);
1923
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001924 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001925 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001927 }
1928
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001929 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 /* First, check used SA against their selectors. */
1932 if (skb->sp) {
1933 int i;
1934
1935 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001936 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001937 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001938 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942 }
1943
1944 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001945 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001946 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001947 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001948 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001949 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001950 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 if (!pol)
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001954 pol = flow_cache_lookup(net, &fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 xfrm_policy_lookup);
1956
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001957 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001958 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001959 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001960 }
James Morris134b0fc2006-10-05 15:42:27 -05001961
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001962 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001963 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001964 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001965 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001966 return 0;
1967 }
1968 return 1;
1969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
James Morris9d729f72007-03-04 16:12:44 -08001971 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001973 pols[0] = pol;
1974 npols ++;
1975#ifdef CONFIG_XFRM_SUB_POLICY
1976 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001977 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001978 &fl, family,
1979 XFRM_POLICY_IN);
1980 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001981 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001982 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001983 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001984 }
James Morris9d729f72007-03-04 16:12:44 -08001985 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001986 npols ++;
1987 }
1988 }
1989#endif
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 if (pol->action == XFRM_POLICY_ALLOW) {
1992 struct sec_path *sp;
1993 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001994 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001995 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001996 struct xfrm_tmpl **tpp = tp;
1997 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 int i, k;
1999
2000 if ((sp = skb->sp) == NULL)
2001 sp = &dummy;
2002
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002003 for (pi = 0; pi < npols; pi++) {
2004 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002005 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002006 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002007 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002008 }
2009 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002010 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002011 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002012 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002013 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2014 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2015 }
2016 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002017 if (npols > 1) {
2018 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2019 tpp = stp;
2020 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 /* For each tunnel xfrm, find the first matching tmpl.
2023 * For each tmpl before that, find corresponding xfrm.
2024 * Order is _important_. Later we will implement
2025 * some barriers, but at the moment barriers
2026 * are implied between each two transformations.
2027 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002028 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2029 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002030 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002031 if (k < -1)
2032 /* "-2 - errored_index" returned */
2033 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002034 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002039 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002040 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002044 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return 1;
2046 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002047 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002050 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002051reject_error:
2052 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 return 0;
2054}
2055EXPORT_SYMBOL(__xfrm_policy_check);
2056
2057int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2058{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002059 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002061 struct dst_entry *dst;
2062 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002064 if (xfrm_decode_session(skb, &fl, family) < 0) {
jamal72032fd2010-02-18 03:35:07 +00002065 XFRM_INC_STATS(net, LINUX_MIB_XFRMFWDHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Eric Dumazetadf30902009-06-02 05:19:30 +00002069 dst = skb_dst(skb);
2070
2071 res = xfrm_lookup(net, &dst, &fl, NULL, 0) == 0;
2072 skb_dst_set(skb, dst);
2073 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075EXPORT_SYMBOL(__xfrm_route_forward);
2076
David S. Millerd49c73c2006-08-13 18:55:53 -07002077/* Optimize later using cookies and generation ids. */
2078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2080{
David S. Millerd49c73c2006-08-13 18:55:53 -07002081 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2082 * to "-1" to force all XFRM destinations to get validated by
2083 * dst_ops->check on every use. We do this because when a
2084 * normal route referenced by an XFRM dst is obsoleted we do
2085 * not go looking around for all parent referencing XFRM dsts
2086 * so that we can invalidate them. It is just too much work.
2087 * Instead we make the checks here on every use. For example:
2088 *
2089 * XFRM dst A --> IPv4 dst X
2090 *
2091 * X is the "xdst->route" of A (X is also the "dst->path" of A
2092 * in this example). If X is marked obsolete, "A" will not
2093 * notice. That's what we are validating here via the
2094 * stale_bundle() check.
2095 *
2096 * When a policy's bundle is pruned, we dst_free() the XFRM
2097 * dst which causes it's ->obsolete field to be set to a
2098 * positive non-zero integer. If an XFRM dst has been pruned
2099 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002100 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002101 if (dst->obsolete < 0 && !stale_bundle(dst))
2102 return dst;
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return NULL;
2105}
2106
2107static int stale_bundle(struct dst_entry *dst)
2108{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002109 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110}
2111
Herbert Xuaabc9762005-05-03 16:27:10 -07002112void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002115 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002116 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 dev_put(dev);
2118 }
2119}
Herbert Xuaabc9762005-05-03 16:27:10 -07002120EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122static void xfrm_link_failure(struct sk_buff *skb)
2123{
2124 /* Impossible. Such dst must be popped before reaches point of failure. */
2125 return;
2126}
2127
2128static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2129{
2130 if (dst) {
2131 if (dst->obsolete) {
2132 dst_release(dst);
2133 dst = NULL;
2134 }
2135 }
2136 return dst;
2137}
2138
David S. Miller2518c7c2006-08-24 04:45:07 -07002139static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2140{
2141 struct dst_entry *dst, **dstp;
2142
2143 write_lock(&pol->lock);
2144 dstp = &pol->bundles;
2145 while ((dst=*dstp) != NULL) {
2146 if (func(dst)) {
2147 *dstp = dst->next;
2148 dst->next = *gc_list_p;
2149 *gc_list_p = dst;
2150 } else {
2151 dstp = &dst->next;
2152 }
2153 }
2154 write_unlock(&pol->lock);
2155}
2156
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002157static void xfrm_prune_bundles(struct net *net, int (*func)(struct dst_entry *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
David S. Miller2518c7c2006-08-24 04:45:07 -07002159 struct dst_entry *gc_list = NULL;
2160 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002163 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2164 struct xfrm_policy *pol;
2165 struct hlist_node *entry;
2166 struct hlist_head *table;
2167 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002168
David S. Miller2518c7c2006-08-24 04:45:07 -07002169 hlist_for_each_entry(pol, entry,
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002170 &net->xfrm.policy_inexact[dir], bydst)
David S. Miller2518c7c2006-08-24 04:45:07 -07002171 prune_one_bundle(pol, func, &gc_list);
2172
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002173 table = net->xfrm.policy_bydst[dir].table;
2174 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002175 hlist_for_each_entry(pol, entry, table + i, bydst)
2176 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
2178 }
2179 read_unlock_bh(&xfrm_policy_lock);
2180
2181 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002182 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 gc_list = dst->next;
2184 dst_free(dst);
2185 }
2186}
2187
2188static int unused_bundle(struct dst_entry *dst)
2189{
2190 return !atomic_read(&dst->__refcnt);
2191}
2192
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002193static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002195 xfrm_prune_bundles(net, unused_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196}
2197
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002198static int xfrm_flush_bundles(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002200 xfrm_prune_bundles(net, stale_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 return 0;
2202}
2203
Herbert Xu25ee3282007-12-11 09:32:34 -08002204static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 do {
2207 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2208 u32 pmtu, route_mtu_cached;
2209
2210 pmtu = dst_mtu(dst->child);
2211 xdst->child_mtu_cached = pmtu;
2212
2213 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2214
2215 route_mtu_cached = dst_mtu(xdst->route);
2216 xdst->route_mtu_cached = route_mtu_cached;
2217
2218 if (pmtu > route_mtu_cached)
2219 pmtu = route_mtu_cached;
2220
2221 dst->metrics[RTAX_MTU-1] = pmtu;
2222 } while ((dst = dst->next));
2223}
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225/* Check that the bundle accepts the flow and its components are
2226 * still valid.
2227 */
2228
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002229int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2230 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 struct dst_entry *dst = &first->u.dst;
2233 struct xfrm_dst *last;
2234 u32 mtu;
2235
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002236 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 (dst->dev && !netif_running(dst->dev)))
2238 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002239#ifdef CONFIG_XFRM_SUB_POLICY
2240 if (fl) {
2241 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2242 return 0;
2243 if (first->partner &&
2244 !xfrm_selector_match(first->partner, fl, family))
2245 return 0;
2246 }
2247#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249 last = NULL;
2250
2251 do {
2252 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2253
2254 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2255 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002256 if (fl && pol &&
2257 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2260 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002261 if (xdst->genid != dst->xfrm->genid)
2262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Herbert Xu1bfcb102007-10-17 21:31:50 -07002264 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002265 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002266 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2267 return 0;
2268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 mtu = dst_mtu(dst->child);
2270 if (xdst->child_mtu_cached != mtu) {
2271 last = xdst;
2272 xdst->child_mtu_cached = mtu;
2273 }
2274
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002275 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 return 0;
2277 mtu = dst_mtu(xdst->route);
2278 if (xdst->route_mtu_cached != mtu) {
2279 last = xdst;
2280 xdst->route_mtu_cached = mtu;
2281 }
2282
2283 dst = dst->child;
2284 } while (dst->xfrm);
2285
2286 if (likely(!last))
2287 return 1;
2288
2289 mtu = last->child_mtu_cached;
2290 for (;;) {
2291 dst = &last->u.dst;
2292
2293 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2294 if (mtu > last->route_mtu_cached)
2295 mtu = last->route_mtu_cached;
2296 dst->metrics[RTAX_MTU-1] = mtu;
2297
2298 if (last == first)
2299 break;
2300
Patrick McHardybd0bf072007-07-18 01:55:52 -07002301 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 last->child_mtu_cached = mtu;
2303 }
2304
2305 return 1;
2306}
2307
2308EXPORT_SYMBOL(xfrm_bundle_ok);
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2311{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002312 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 int err = 0;
2314 if (unlikely(afinfo == NULL))
2315 return -EINVAL;
2316 if (unlikely(afinfo->family >= NPROTO))
2317 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002318 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2320 err = -ENOBUFS;
2321 else {
2322 struct dst_ops *dst_ops = afinfo->dst_ops;
2323 if (likely(dst_ops->kmem_cachep == NULL))
2324 dst_ops->kmem_cachep = xfrm_dst_cache;
2325 if (likely(dst_ops->check == NULL))
2326 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 if (likely(dst_ops->negative_advice == NULL))
2328 dst_ops->negative_advice = xfrm_negative_advice;
2329 if (likely(dst_ops->link_failure == NULL))
2330 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (likely(afinfo->garbage_collect == NULL))
2332 afinfo->garbage_collect = __xfrm_garbage_collect;
2333 xfrm_policy_afinfo[afinfo->family] = afinfo;
2334 }
Ingo Molnare959d812006-04-28 15:32:29 -07002335 write_unlock_bh(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002336
2337 rtnl_lock();
2338 for_each_net(net) {
2339 struct dst_ops *xfrm_dst_ops;
2340
2341 switch (afinfo->family) {
2342 case AF_INET:
2343 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2344 break;
2345#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2346 case AF_INET6:
2347 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2348 break;
2349#endif
2350 default:
2351 BUG();
2352 }
2353 *xfrm_dst_ops = *afinfo->dst_ops;
2354 }
2355 rtnl_unlock();
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return err;
2358}
2359EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2360
2361int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2362{
2363 int err = 0;
2364 if (unlikely(afinfo == NULL))
2365 return -EINVAL;
2366 if (unlikely(afinfo->family >= NPROTO))
2367 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002368 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2370 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2371 err = -EINVAL;
2372 else {
2373 struct dst_ops *dst_ops = afinfo->dst_ops;
2374 xfrm_policy_afinfo[afinfo->family] = NULL;
2375 dst_ops->kmem_cachep = NULL;
2376 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 dst_ops->negative_advice = NULL;
2378 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 afinfo->garbage_collect = NULL;
2380 }
2381 }
Ingo Molnare959d812006-04-28 15:32:29 -07002382 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 return err;
2384}
2385EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2386
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002387static void __net_init xfrm_dst_ops_init(struct net *net)
2388{
2389 struct xfrm_policy_afinfo *afinfo;
2390
2391 read_lock_bh(&xfrm_policy_afinfo_lock);
2392 afinfo = xfrm_policy_afinfo[AF_INET];
2393 if (afinfo)
2394 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
2395#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2396 afinfo = xfrm_policy_afinfo[AF_INET6];
2397 if (afinfo)
2398 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2399#endif
2400 read_unlock_bh(&xfrm_policy_afinfo_lock);
2401}
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2404{
2405 struct xfrm_policy_afinfo *afinfo;
2406 if (unlikely(family >= NPROTO))
2407 return NULL;
2408 read_lock(&xfrm_policy_afinfo_lock);
2409 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002410 if (unlikely(!afinfo))
2411 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 return afinfo;
2413}
2414
2415static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2416{
Herbert Xu546be242006-05-27 23:03:58 -07002417 read_unlock(&xfrm_policy_afinfo_lock);
2418}
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2421{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002422 struct net_device *dev = ptr;
2423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 switch (event) {
2425 case NETDEV_DOWN:
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002426 xfrm_flush_bundles(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 }
2428 return NOTIFY_DONE;
2429}
2430
2431static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002432 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433};
2434
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002435#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002436static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002437{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002438 int rv;
2439
Tejun Heo7d720c32010-02-16 15:20:26 +00002440 if (snmp_mib_init((void __percpu **)net->mib.xfrm_statistics,
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002441 sizeof(struct linux_xfrm_mib)) < 0)
2442 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002443 rv = xfrm_proc_init(net);
2444 if (rv < 0)
Tejun Heo7d720c32010-02-16 15:20:26 +00002445 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002446 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002447}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002448
2449static void xfrm_statistics_fini(struct net *net)
2450{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002451 xfrm_proc_fini(net);
Tejun Heo7d720c32010-02-16 15:20:26 +00002452 snmp_mib_free((void __percpu **)net->mib.xfrm_statistics);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002453}
2454#else
2455static int __net_init xfrm_statistics_init(struct net *net)
2456{
2457 return 0;
2458}
2459
2460static void xfrm_statistics_fini(struct net *net)
2461{
2462}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002463#endif
2464
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002465static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
David S. Miller2518c7c2006-08-24 04:45:07 -07002467 unsigned int hmask, sz;
2468 int dir;
2469
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002470 if (net_eq(net, &init_net))
2471 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002473 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002474 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
David S. Miller2518c7c2006-08-24 04:45:07 -07002476 hmask = 8 - 1;
2477 sz = (hmask+1) * sizeof(struct hlist_head);
2478
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002479 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2480 if (!net->xfrm.policy_byidx)
2481 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002482 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002483
2484 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2485 struct xfrm_policy_hash *htab;
2486
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002487 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002488 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002489
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002490 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002491 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002492 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002493 goto out_bydst;
2494 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002495 }
2496
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002497 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002498 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002499 if (net_eq(net, &init_net))
2500 register_netdevice_notifier(&xfrm_dev_notifier);
2501 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002502
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002503out_bydst:
2504 for (dir--; dir >= 0; dir--) {
2505 struct xfrm_policy_hash *htab;
2506
2507 htab = &net->xfrm.policy_bydst[dir];
2508 xfrm_hash_free(htab->table, sz);
2509 }
2510 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002511out_byidx:
2512 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513}
2514
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002515static void xfrm_policy_fini(struct net *net)
2516{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002517 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002518 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002519 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002520
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002521 flush_work(&net->xfrm.policy_hash_work);
2522#ifdef CONFIG_XFRM_SUB_POLICY
2523 audit_info.loginuid = -1;
2524 audit_info.sessionid = -1;
2525 audit_info.secid = 0;
2526 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2527#endif
2528 audit_info.loginuid = -1;
2529 audit_info.sessionid = -1;
2530 audit_info.secid = 0;
2531 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
2532 flush_work(&xfrm_policy_gc_work);
2533
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002534 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002535
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002536 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002537 struct xfrm_policy_hash *htab;
2538
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002539 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002540
2541 htab = &net->xfrm.policy_bydst[dir];
2542 sz = (htab->hmask + 1);
2543 WARN_ON(!hlist_empty(htab->table));
2544 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002545 }
2546
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002547 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002548 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2549 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002550}
2551
2552static int __net_init xfrm_net_init(struct net *net)
2553{
2554 int rv;
2555
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002556 rv = xfrm_statistics_init(net);
2557 if (rv < 0)
2558 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002559 rv = xfrm_state_init(net);
2560 if (rv < 0)
2561 goto out_state;
2562 rv = xfrm_policy_init(net);
2563 if (rv < 0)
2564 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002565 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002566 rv = xfrm_sysctl_init(net);
2567 if (rv < 0)
2568 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002569 return 0;
2570
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002571out_sysctl:
2572 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002573out_policy:
2574 xfrm_state_fini(net);
2575out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002576 xfrm_statistics_fini(net);
2577out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002578 return rv;
2579}
2580
2581static void __net_exit xfrm_net_exit(struct net *net)
2582{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002583 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002584 xfrm_policy_fini(net);
2585 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002586 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002587}
2588
2589static struct pernet_operations __net_initdata xfrm_net_ops = {
2590 .init = xfrm_net_init,
2591 .exit = xfrm_net_exit,
2592};
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594void __init xfrm_init(void)
2595{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002596 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 xfrm_input_init();
2598}
2599
Joy Lattenab5f5e82007-09-17 11:51:22 -07002600#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd2008-01-12 03:20:03 -08002601static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2602 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002603{
Paul Moore875179f2007-12-01 23:27:18 +11002604 struct xfrm_sec_ctx *ctx = xp->security;
2605 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002606
Paul Moore875179f2007-12-01 23:27:18 +11002607 if (ctx)
2608 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2609 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2610
2611 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002612 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002613 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002614 if (sel->prefixlen_s != 32)
2615 audit_log_format(audit_buf, " src_prefixlen=%d",
2616 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002617 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002618 if (sel->prefixlen_d != 32)
2619 audit_log_format(audit_buf, " dst_prefixlen=%d",
2620 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002621 break;
2622 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002623 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002624 if (sel->prefixlen_s != 128)
2625 audit_log_format(audit_buf, " src_prefixlen=%d",
2626 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002627 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002628 if (sel->prefixlen_d != 128)
2629 audit_log_format(audit_buf, " dst_prefixlen=%d",
2630 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002631 break;
2632 }
2633}
2634
Paul Moore68277ac2007-12-20 20:49:33 -08002635void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002636 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002637{
2638 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002639
Paul Mooreafeb14b2007-12-21 14:58:11 -08002640 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002641 if (audit_buf == NULL)
2642 return;
Eric Paris25323862008-04-18 10:09:25 -04002643 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002644 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002645 xfrm_audit_common_policyinfo(xp, audit_buf);
2646 audit_log_end(audit_buf);
2647}
2648EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2649
Paul Moore68277ac2007-12-20 20:49:33 -08002650void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002651 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002652{
2653 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002654
Paul Mooreafeb14b2007-12-21 14:58:11 -08002655 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002656 if (audit_buf == NULL)
2657 return;
Eric Paris25323862008-04-18 10:09:25 -04002658 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002659 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002660 xfrm_audit_common_policyinfo(xp, audit_buf);
2661 audit_log_end(audit_buf);
2662}
2663EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2664#endif
2665
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002666#ifdef CONFIG_XFRM_MIGRATE
2667static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2668 struct xfrm_selector *sel_tgt)
2669{
2670 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2671 if (sel_tgt->family == sel_cmp->family &&
2672 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002673 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002674 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2675 sel_cmp->family) == 0 &&
2676 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2677 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2678 return 1;
2679 }
2680 } else {
2681 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2682 return 1;
2683 }
2684 }
2685 return 0;
2686}
2687
2688static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2689 u8 dir, u8 type)
2690{
2691 struct xfrm_policy *pol, *ret = NULL;
2692 struct hlist_node *entry;
2693 struct hlist_head *chain;
2694 u32 priority = ~0U;
2695
2696 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08002697 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002698 hlist_for_each_entry(pol, entry, chain, bydst) {
2699 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2700 pol->type == type) {
2701 ret = pol;
2702 priority = ret->priority;
2703 break;
2704 }
2705 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002706 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002707 hlist_for_each_entry(pol, entry, chain, bydst) {
2708 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2709 pol->type == type &&
2710 pol->priority < priority) {
2711 ret = pol;
2712 break;
2713 }
2714 }
2715
2716 if (ret)
2717 xfrm_pol_hold(ret);
2718
2719 read_unlock_bh(&xfrm_policy_lock);
2720
2721 return ret;
2722}
2723
2724static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2725{
2726 int match = 0;
2727
2728 if (t->mode == m->mode && t->id.proto == m->proto &&
2729 (m->reqid == 0 || t->reqid == m->reqid)) {
2730 switch (t->mode) {
2731 case XFRM_MODE_TUNNEL:
2732 case XFRM_MODE_BEET:
2733 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2734 m->old_family) == 0 &&
2735 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2736 m->old_family) == 0) {
2737 match = 1;
2738 }
2739 break;
2740 case XFRM_MODE_TRANSPORT:
2741 /* in case of transport mode, template does not store
2742 any IP addresses, hence we just compare mode and
2743 protocol */
2744 match = 1;
2745 break;
2746 default:
2747 break;
2748 }
2749 }
2750 return match;
2751}
2752
2753/* update endpoint address(es) of template(s) */
2754static int xfrm_policy_migrate(struct xfrm_policy *pol,
2755 struct xfrm_migrate *m, int num_migrate)
2756{
2757 struct xfrm_migrate *mp;
2758 struct dst_entry *dst;
2759 int i, j, n = 0;
2760
2761 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002762 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002763 /* target policy has been deleted */
2764 write_unlock_bh(&pol->lock);
2765 return -ENOENT;
2766 }
2767
2768 for (i = 0; i < pol->xfrm_nr; i++) {
2769 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2770 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2771 continue;
2772 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002773 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2774 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002775 continue;
2776 /* update endpoints */
2777 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2778 sizeof(pol->xfrm_vec[i].id.daddr));
2779 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2780 sizeof(pol->xfrm_vec[i].saddr));
2781 pol->xfrm_vec[i].encap_family = mp->new_family;
2782 /* flush bundles */
2783 while ((dst = pol->bundles) != NULL) {
2784 pol->bundles = dst->next;
2785 dst_free(dst);
2786 }
2787 }
2788 }
2789
2790 write_unlock_bh(&pol->lock);
2791
2792 if (!n)
2793 return -ENODATA;
2794
2795 return 0;
2796}
2797
2798static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2799{
2800 int i, j;
2801
2802 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2803 return -EINVAL;
2804
2805 for (i = 0; i < num_migrate; i++) {
2806 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2807 m[i].old_family) == 0) &&
2808 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2809 m[i].old_family) == 0))
2810 return -EINVAL;
2811 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2812 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2813 return -EINVAL;
2814
2815 /* check if there is any duplicated entry */
2816 for (j = i + 1; j < num_migrate; j++) {
2817 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2818 sizeof(m[i].old_daddr)) &&
2819 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2820 sizeof(m[i].old_saddr)) &&
2821 m[i].proto == m[j].proto &&
2822 m[i].mode == m[j].mode &&
2823 m[i].reqid == m[j].reqid &&
2824 m[i].old_family == m[j].old_family)
2825 return -EINVAL;
2826 }
2827 }
2828
2829 return 0;
2830}
2831
2832int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002833 struct xfrm_migrate *m, int num_migrate,
2834 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002835{
2836 int i, err, nx_cur = 0, nx_new = 0;
2837 struct xfrm_policy *pol = NULL;
2838 struct xfrm_state *x, *xc;
2839 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2840 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2841 struct xfrm_migrate *mp;
2842
2843 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2844 goto out;
2845
2846 /* Stage 1 - find policy */
2847 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2848 err = -ENOENT;
2849 goto out;
2850 }
2851
2852 /* Stage 2 - find and update state(s) */
2853 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2854 if ((x = xfrm_migrate_state_find(mp))) {
2855 x_cur[nx_cur] = x;
2856 nx_cur++;
2857 if ((xc = xfrm_state_migrate(x, mp))) {
2858 x_new[nx_new] = xc;
2859 nx_new++;
2860 } else {
2861 err = -ENODATA;
2862 goto restore_state;
2863 }
2864 }
2865 }
2866
2867 /* Stage 3 - update policy */
2868 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2869 goto restore_state;
2870
2871 /* Stage 4 - delete old state(s) */
2872 if (nx_cur) {
2873 xfrm_states_put(x_cur, nx_cur);
2874 xfrm_states_delete(x_cur, nx_cur);
2875 }
2876
2877 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002878 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002879
2880 xfrm_pol_put(pol);
2881
2882 return 0;
2883out:
2884 return err;
2885
2886restore_state:
2887 if (pol)
2888 xfrm_pol_put(pol);
2889 if (nx_cur)
2890 xfrm_states_put(x_cur, nx_cur);
2891 if (nx_new)
2892 xfrm_states_delete(x_new, nx_new);
2893
2894 return err;
2895}
David S. Millere610e672007-02-08 13:29:15 -08002896EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002897#endif