Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[deliverable/linux.git] / net / xfrm / xfrm_policy.c
CommitLineData
a716c119 1/*
1da177e4
LT
2 * 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
df71837d 13 *
1da177e4
LT
14 */
15
66cdb3ca 16#include <linux/err.h>
1da177e4
LT
17#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>
eb9c7ebe 24#include <linux/netfilter.h>
1da177e4 25#include <linux/module.h>
2518c7c2 26#include <linux/cache.h>
68277acc 27#include <linux/audit.h>
25ee3286 28#include <net/dst.h>
1da177e4
LT
29#include <net/xfrm.h>
30#include <net/ip.h>
558f82ef
MN
31#ifdef CONFIG_XFRM_STATISTICS
32#include <net/snmp.h>
33#endif
1da177e4 34
44e36b42
DM
35#include "xfrm_hash.h"
36
4a3e2f71
AV
37DEFINE_MUTEX(xfrm_cfg_mutex);
38EXPORT_SYMBOL(xfrm_cfg_mutex);
1da177e4
LT
39
40static DEFINE_RWLOCK(xfrm_policy_lock);
41
1da177e4
LT
42static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
43static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
44
e18b890b 45static struct kmem_cache *xfrm_dst_cache __read_mostly;
1da177e4 46
2518c7c2 47static HLIST_HEAD(xfrm_policy_gc_list);
1da177e4
LT
48static 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);
25ee3286 52static void xfrm_init_pmtu(struct dst_entry *dst);
1da177e4 53
29fa0b30
WY
54static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
55 int dir);
56
77681021
AM
57static 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
c5b3cf46 91static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
9bb182a7
YH
92 xfrm_address_t *saddr,
93 xfrm_address_t *daddr,
94 int family)
95{
96 struct xfrm_policy_afinfo *afinfo;
97 struct dst_entry *dst;
98
99 afinfo = xfrm_policy_get_afinfo(family);
100 if (unlikely(afinfo == NULL))
101 return ERR_PTR(-EAFNOSUPPORT);
102
c5b3cf46 103 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
9bb182a7
YH
104
105 xfrm_policy_put_afinfo(afinfo);
106
107 return dst;
108}
109
25ee3286 110static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
9bb182a7
YH
111 xfrm_address_t *prev_saddr,
112 xfrm_address_t *prev_daddr,
25ee3286 113 int family)
1da177e4 114{
c5b3cf46 115 struct net *net = xs_net(x);
66cdb3ca
HX
116 xfrm_address_t *saddr = &x->props.saddr;
117 xfrm_address_t *daddr = &x->id.daddr;
66cdb3ca
HX
118 struct dst_entry *dst;
119
9bb182a7 120 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
66cdb3ca 121 saddr = x->coaddr;
9bb182a7
YH
122 daddr = prev_daddr;
123 }
124 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
125 saddr = prev_saddr;
66cdb3ca 126 daddr = x->coaddr;
9bb182a7 127 }
1da177e4 128
c5b3cf46 129 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
9bb182a7
YH
130
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 }
1da177e4 137
66cdb3ca 138 return dst;
1da177e4 139}
1da177e4 140
1da177e4
LT
141static inline unsigned long make_jiffies(long secs)
142{
143 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
144 return MAX_SCHEDULE_TIMEOUT-1;
145 else
a716c119 146 return secs*HZ;
1da177e4
LT
147}
148
149static void xfrm_policy_timer(unsigned long data)
150{
151 struct xfrm_policy *xp = (struct xfrm_policy*)data;
9d729f72 152 unsigned long now = get_seconds();
1da177e4
LT
153 long next = LONG_MAX;
154 int warn = 0;
155 int dir;
156
157 read_lock(&xp->lock);
158
12a169e7 159 if (xp->walk.dead)
1da177e4
LT
160 goto out;
161
77d8d7a6 162 dir = xfrm_policy_id2dir(xp->index);
1da177e4
LT
163
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)
6c5c8ca7 202 km_policy_expired(xp, dir, 0, 0);
1da177e4
LT
203 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);
4666faab 214 if (!xfrm_policy_delete(xp, dir))
6c5c8ca7 215 km_policy_expired(xp, dir, 1, 0);
1da177e4
LT
216 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
0331b1f3 224struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
1da177e4
LT
225{
226 struct xfrm_policy *policy;
227
0da974f4 228 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
1da177e4
LT
229
230 if (policy) {
0331b1f3 231 write_pnet(&policy->xp_net, net);
12a169e7 232 INIT_LIST_HEAD(&policy->walk.all);
2518c7c2
DM
233 INIT_HLIST_NODE(&policy->bydst);
234 INIT_HLIST_NODE(&policy->byidx);
1da177e4 235 rwlock_init(&policy->lock);
2518c7c2 236 atomic_set(&policy->refcnt, 1);
b24b8a24
PE
237 setup_timer(&policy->timer, xfrm_policy_timer,
238 (unsigned long)policy);
1da177e4
LT
239 }
240 return policy;
241}
242EXPORT_SYMBOL(xfrm_policy_alloc);
243
244/* Destroy xfrm_policy: descendant resources must be released to this moment. */
245
64c31b3f 246void xfrm_policy_destroy(struct xfrm_policy *policy)
1da177e4 247{
12a169e7 248 BUG_ON(!policy->walk.dead);
1da177e4 249
09a62660 250 BUG_ON(policy->bundles);
1da177e4
LT
251
252 if (del_timer(&policy->timer))
253 BUG();
254
03e1ad7b 255 security_xfrm_policy_free(policy->security);
1da177e4
LT
256 kfree(policy);
257}
64c31b3f 258EXPORT_SYMBOL(xfrm_policy_destroy);
1da177e4
LT
259
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
c4028958 278static void xfrm_policy_gc_task(struct work_struct *work)
1da177e4
LT
279{
280 struct xfrm_policy *policy;
2518c7c2
DM
281 struct hlist_node *entry, *tmp;
282 struct hlist_head gc_list;
1da177e4
LT
283
284 spin_lock_bh(&xfrm_policy_gc_lock);
2518c7c2
DM
285 gc_list.first = xfrm_policy_gc_list.first;
286 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
1da177e4
LT
287 spin_unlock_bh(&xfrm_policy_gc_lock);
288
2518c7c2 289 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
1da177e4 290 xfrm_policy_gc_kill(policy);
1da177e4 291}
c9583969 292static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
1da177e4
LT
293
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);
12a169e7
HX
303 dead = policy->walk.dead;
304 policy->walk.dead = 1;
1da177e4
LT
305 write_unlock_bh(&policy->lock);
306
307 if (unlikely(dead)) {
308 WARN_ON(1);
309 return;
310 }
311
bbb770e7 312 spin_lock_bh(&xfrm_policy_gc_lock);
2518c7c2 313 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
bbb770e7 314 spin_unlock_bh(&xfrm_policy_gc_lock);
1da177e4
LT
315
316 schedule_work(&xfrm_policy_gc_work);
317}
318
2518c7c2
DM
319static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
320
e92303f8 321static inline unsigned int idx_hash(struct net *net, u32 index)
2518c7c2 322{
e92303f8 323 return __idx_hash(index, net->xfrm.policy_idx_hmask);
2518c7c2
DM
324}
325
1121994c 326static struct hlist_head *policy_hash_bysel(struct net *net, struct xfrm_selector *sel, unsigned short family, int dir)
2518c7c2 327{
1121994c 328 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
2518c7c2
DM
329 unsigned int hash = __sel_hash(sel, family, hmask);
330
331 return (hash == hmask + 1 ?
1121994c
AD
332 &net->xfrm.policy_inexact[dir] :
333 net->xfrm.policy_bydst[dir].table + hash);
2518c7c2
DM
334}
335
1121994c 336static struct hlist_head *policy_hash_direct(struct net *net, xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
2518c7c2 337{
1121994c 338 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
2518c7c2
DM
339 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
340
1121994c 341 return net->xfrm.policy_bydst[dir].table + hash;
2518c7c2
DM
342}
343
2518c7c2
DM
344static void xfrm_dst_hash_transfer(struct hlist_head *list,
345 struct hlist_head *ndsttable,
346 unsigned int nhashmask)
347{
b791160b 348 struct hlist_node *entry, *tmp, *entry0 = NULL;
2518c7c2 349 struct xfrm_policy *pol;
b791160b 350 unsigned int h0 = 0;
2518c7c2 351
b791160b 352redo:
2518c7c2
DM
353 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);
b791160b
YH
358 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;
2518c7c2
DM
373 }
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
66caf628 396static void xfrm_bydst_resize(struct net *net, int dir)
2518c7c2 397{
66caf628 398 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
2518c7c2
DM
399 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
400 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
66caf628 401 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
44e36b42 402 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
2518c7c2
DM
403 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
66caf628
AD
413 net->xfrm.policy_bydst[dir].table = ndst;
414 net->xfrm.policy_bydst[dir].hmask = nhashmask;
2518c7c2
DM
415
416 write_unlock_bh(&xfrm_policy_lock);
417
44e36b42 418 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
2518c7c2
DM
419}
420
66caf628 421static void xfrm_byidx_resize(struct net *net, int total)
2518c7c2 422{
66caf628 423 unsigned int hmask = net->xfrm.policy_idx_hmask;
2518c7c2
DM
424 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
425 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
66caf628 426 struct hlist_head *oidx = net->xfrm.policy_byidx;
44e36b42 427 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
2518c7c2
DM
428 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
66caf628
AD
438 net->xfrm.policy_byidx = nidx;
439 net->xfrm.policy_idx_hmask = nhashmask;
2518c7c2
DM
440
441 write_unlock_bh(&xfrm_policy_lock);
442
44e36b42 443 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
2518c7c2
DM
444}
445
66caf628 446static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
2518c7c2 447{
66caf628
AD
448 unsigned int cnt = net->xfrm.policy_count[dir];
449 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
2518c7c2
DM
450
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
66caf628 461static inline int xfrm_byidx_should_resize(struct net *net, int total)
2518c7c2 462{
66caf628 463 unsigned int hmask = net->xfrm.policy_idx_hmask;
2518c7c2
DM
464
465 if ((hmask + 1) < xfrm_policy_hashmax &&
466 total > hmask)
467 return 1;
468
469 return 0;
470}
471
e071041b 472void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
ecfd6b18
JHS
473{
474 read_lock_bh(&xfrm_policy_lock);
e071041b
AD
475 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;
ecfd6b18
JHS
482 si->spdhmcnt = xfrm_policy_hashmax;
483 read_unlock_bh(&xfrm_policy_lock);
484}
485EXPORT_SYMBOL(xfrm_spd_getinfo);
2518c7c2 486
ecfd6b18 487static DEFINE_MUTEX(hash_resize_mutex);
66caf628 488static void xfrm_hash_resize(struct work_struct *work)
2518c7c2 489{
66caf628 490 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
2518c7c2
DM
491 int dir, total;
492
493 mutex_lock(&hash_resize_mutex);
494
495 total = 0;
496 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
66caf628
AD
497 if (xfrm_bydst_should_resize(net, dir, &total))
498 xfrm_bydst_resize(net, dir);
2518c7c2 499 }
66caf628
AD
500 if (xfrm_byidx_should_resize(net, total))
501 xfrm_byidx_resize(net, total);
2518c7c2
DM
502
503 mutex_unlock(&hash_resize_mutex);
504}
505
1da177e4
LT
506/* Generate new index... KAME seems to generate them ordered by cost
507 * of an absolute inpredictability of ordering of rules. This will not pass. */
1121994c 508static u32 xfrm_gen_index(struct net *net, int dir)
1da177e4 509{
1da177e4
LT
510 static u32 idx_generator;
511
512 for (;;) {
2518c7c2
DM
513 struct hlist_node *entry;
514 struct hlist_head *list;
515 struct xfrm_policy *p;
516 u32 idx;
517 int found;
518
1da177e4
LT
519 idx = (idx_generator | dir);
520 idx_generator += 8;
521 if (idx == 0)
522 idx = 8;
1121994c 523 list = net->xfrm.policy_byidx + idx_hash(net, idx);
2518c7c2
DM
524 found = 0;
525 hlist_for_each_entry(p, entry, list, byidx) {
526 if (p->index == idx) {
527 found = 1;
1da177e4 528 break;
2518c7c2 529 }
1da177e4 530 }
2518c7c2 531 if (!found)
1da177e4
LT
532 return idx;
533 }
534}
535
2518c7c2
DM
536static 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
1da177e4
LT
551int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
552{
1121994c 553 struct net *net = xp_net(policy);
2518c7c2
DM
554 struct xfrm_policy *pol;
555 struct xfrm_policy *delpol;
556 struct hlist_head *chain;
a6c7ab55 557 struct hlist_node *entry, *newpos;
9b78a82c 558 struct dst_entry *gc_list;
1da177e4
LT
559
560 write_lock_bh(&xfrm_policy_lock);
1121994c 561 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
2518c7c2
DM
562 delpol = NULL;
563 newpos = NULL;
2518c7c2 564 hlist_for_each_entry(pol, entry, chain, bydst) {
a6c7ab55 565 if (pol->type == policy->type &&
2518c7c2 566 !selector_cmp(&pol->selector, &policy->selector) &&
a6c7ab55
HX
567 xfrm_sec_ctx_match(pol->security, policy->security) &&
568 !WARN_ON(delpol)) {
1da177e4
LT
569 if (excl) {
570 write_unlock_bh(&xfrm_policy_lock);
571 return -EEXIST;
572 }
1da177e4
LT
573 delpol = pol;
574 if (policy->priority > pol->priority)
575 continue;
576 } else if (policy->priority >= pol->priority) {
a6c7ab55 577 newpos = &pol->bydst;
1da177e4
LT
578 continue;
579 }
1da177e4
LT
580 if (delpol)
581 break;
1da177e4
LT
582 }
583 if (newpos)
2518c7c2
DM
584 hlist_add_after(newpos, &policy->bydst);
585 else
586 hlist_add_head(&policy->bydst, chain);
1da177e4 587 xfrm_pol_hold(policy);
1121994c 588 net->xfrm.policy_count[dir]++;
1da177e4 589 atomic_inc(&flow_cache_genid);
29fa0b30
WY
590 if (delpol)
591 __xfrm_policy_unlink(delpol, dir);
1121994c
AD
592 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
593 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
9d729f72 594 policy->curlft.add_time = get_seconds();
1da177e4
LT
595 policy->curlft.use_time = 0;
596 if (!mod_timer(&policy->timer, jiffies + HZ))
597 xfrm_pol_hold(policy);
1121994c 598 list_add(&policy->walk.all, &net->xfrm.policy_all);
1da177e4
LT
599 write_unlock_bh(&xfrm_policy_lock);
600
9b78a82c 601 if (delpol)
1da177e4 602 xfrm_policy_kill(delpol);
1121994c
AD
603 else if (xfrm_bydst_should_resize(net, dir, NULL))
604 schedule_work(&net->xfrm.policy_hash_work);
9b78a82c
DM
605
606 read_lock_bh(&xfrm_policy_lock);
607 gc_list = NULL;
2518c7c2
DM
608 entry = &policy->bydst;
609 hlist_for_each_entry_continue(policy, entry, bydst) {
9b78a82c
DM
610 struct dst_entry *dst;
611
612 write_lock(&policy->lock);
613 dst = policy->bundles;
614 if (dst) {
615 struct dst_entry *tail = dst;
616 while (tail->next)
617 tail = tail->next;
618 tail->next = gc_list;
619 gc_list = dst;
620
621 policy->bundles = NULL;
622 }
623 write_unlock(&policy->lock);
1da177e4 624 }
9b78a82c
DM
625 read_unlock_bh(&xfrm_policy_lock);
626
627 while (gc_list) {
628 struct dst_entry *dst = gc_list;
629
630 gc_list = dst->next;
631 dst_free(dst);
632 }
633
1da177e4
LT
634 return 0;
635}
636EXPORT_SYMBOL(xfrm_policy_insert);
637
8d1211a6 638struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u8 type, int dir,
4e81bb83 639 struct xfrm_selector *sel,
ef41aaa0
EP
640 struct xfrm_sec_ctx *ctx, int delete,
641 int *err)
1da177e4 642{
2518c7c2
DM
643 struct xfrm_policy *pol, *ret;
644 struct hlist_head *chain;
645 struct hlist_node *entry;
1da177e4 646
ef41aaa0 647 *err = 0;
1da177e4 648 write_lock_bh(&xfrm_policy_lock);
8d1211a6 649 chain = policy_hash_bysel(net, sel, sel->family, dir);
2518c7c2
DM
650 ret = NULL;
651 hlist_for_each_entry(pol, entry, chain, bydst) {
652 if (pol->type == type &&
653 !selector_cmp(sel, &pol->selector) &&
654 xfrm_sec_ctx_match(ctx, pol->security)) {
1da177e4 655 xfrm_pol_hold(pol);
2518c7c2 656 if (delete) {
03e1ad7b
PM
657 *err = security_xfrm_policy_delete(
658 pol->security);
ef41aaa0
EP
659 if (*err) {
660 write_unlock_bh(&xfrm_policy_lock);
661 return pol;
662 }
29fa0b30 663 __xfrm_policy_unlink(pol, dir);
2518c7c2
DM
664 }
665 ret = pol;
1da177e4
LT
666 break;
667 }
668 }
669 write_unlock_bh(&xfrm_policy_lock);
670
2518c7c2 671 if (ret && delete) {
1da177e4 672 atomic_inc(&flow_cache_genid);
2518c7c2 673 xfrm_policy_kill(ret);
1da177e4 674 }
2518c7c2 675 return ret;
1da177e4 676}
df71837d 677EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
1da177e4 678
8d1211a6
AD
679struct xfrm_policy *xfrm_policy_byid(struct net *net, u8 type, int dir, u32 id,
680 int delete, int *err)
1da177e4 681{
2518c7c2
DM
682 struct xfrm_policy *pol, *ret;
683 struct hlist_head *chain;
684 struct hlist_node *entry;
1da177e4 685
b5505c6e
HX
686 *err = -ENOENT;
687 if (xfrm_policy_id2dir(id) != dir)
688 return NULL;
689
ef41aaa0 690 *err = 0;
1da177e4 691 write_lock_bh(&xfrm_policy_lock);
8d1211a6 692 chain = net->xfrm.policy_byidx + idx_hash(net, id);
2518c7c2
DM
693 ret = NULL;
694 hlist_for_each_entry(pol, entry, chain, byidx) {
695 if (pol->type == type && pol->index == id) {
1da177e4 696 xfrm_pol_hold(pol);
2518c7c2 697 if (delete) {
03e1ad7b
PM
698 *err = security_xfrm_policy_delete(
699 pol->security);
ef41aaa0
EP
700 if (*err) {
701 write_unlock_bh(&xfrm_policy_lock);
702 return pol;
703 }
29fa0b30 704 __xfrm_policy_unlink(pol, dir);
2518c7c2
DM
705 }
706 ret = pol;
1da177e4
LT
707 break;
708 }
709 }
710 write_unlock_bh(&xfrm_policy_lock);
711
2518c7c2 712 if (ret && delete) {
1da177e4 713 atomic_inc(&flow_cache_genid);
2518c7c2 714 xfrm_policy_kill(ret);
1da177e4 715 }
2518c7c2 716 return ret;
1da177e4
LT
717}
718EXPORT_SYMBOL(xfrm_policy_byid);
719
4aa2e62c
JL
720#ifdef CONFIG_SECURITY_NETWORK_XFRM
721static inline int
33ffbbd5 722xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
1da177e4 723{
4aa2e62c
JL
724 int dir, err = 0;
725
726 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
727 struct xfrm_policy *pol;
728 struct hlist_node *entry;
729 int i;
730
731 hlist_for_each_entry(pol, entry,
33ffbbd5 732 &net->xfrm.policy_inexact[dir], bydst) {
4aa2e62c
JL
733 if (pol->type != type)
734 continue;
03e1ad7b 735 err = security_xfrm_policy_delete(pol->security);
4aa2e62c 736 if (err) {
ab5f5e8b
JL
737 xfrm_audit_policy_delete(pol, 0,
738 audit_info->loginuid,
2532386f 739 audit_info->sessionid,
ab5f5e8b 740 audit_info->secid);
4aa2e62c
JL
741 return err;
742 }
7dc12d6d 743 }
33ffbbd5 744 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
4aa2e62c 745 hlist_for_each_entry(pol, entry,
33ffbbd5 746 net->xfrm.policy_bydst[dir].table + i,
4aa2e62c
JL
747 bydst) {
748 if (pol->type != type)
749 continue;
03e1ad7b
PM
750 err = security_xfrm_policy_delete(
751 pol->security);
4aa2e62c 752 if (err) {
ab5f5e8b
JL
753 xfrm_audit_policy_delete(pol, 0,
754 audit_info->loginuid,
2532386f 755 audit_info->sessionid,
ab5f5e8b 756 audit_info->secid);
4aa2e62c
JL
757 return err;
758 }
759 }
760 }
761 }
762 return err;
763}
764#else
765static inline int
33ffbbd5 766xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
4aa2e62c
JL
767{
768 return 0;
769}
770#endif
771
33ffbbd5 772int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
4aa2e62c 773{
0dca3a84 774 int dir, err = 0, cnt = 0;
775 struct xfrm_policy *dp;
1da177e4
LT
776
777 write_lock_bh(&xfrm_policy_lock);
4aa2e62c 778
33ffbbd5 779 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
4aa2e62c
JL
780 if (err)
781 goto out;
782
1da177e4 783 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
2518c7c2
DM
784 struct xfrm_policy *pol;
785 struct hlist_node *entry;
29fa0b30 786 int i;
2518c7c2
DM
787
788 again1:
789 hlist_for_each_entry(pol, entry,
33ffbbd5 790 &net->xfrm.policy_inexact[dir], bydst) {
2518c7c2
DM
791 if (pol->type != type)
792 continue;
0dca3a84 793 dp = __xfrm_policy_unlink(pol, dir);
1da177e4 794 write_unlock_bh(&xfrm_policy_lock);
0dca3a84 795 if (dp)
796 cnt++;
1da177e4 797
ab5f5e8b 798 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
2532386f 799 audit_info->sessionid,
ab5f5e8b 800 audit_info->secid);
161a09e7 801
2518c7c2 802 xfrm_policy_kill(pol);
1da177e4
LT
803
804 write_lock_bh(&xfrm_policy_lock);
2518c7c2
DM
805 goto again1;
806 }
807
33ffbbd5 808 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
2518c7c2
DM
809 again2:
810 hlist_for_each_entry(pol, entry,
33ffbbd5 811 net->xfrm.policy_bydst[dir].table + i,
2518c7c2
DM
812 bydst) {
813 if (pol->type != type)
814 continue;
0dca3a84 815 dp = __xfrm_policy_unlink(pol, dir);
2518c7c2 816 write_unlock_bh(&xfrm_policy_lock);
0dca3a84 817 if (dp)
818 cnt++;
2518c7c2 819
ab5f5e8b
JL
820 xfrm_audit_policy_delete(pol, 1,
821 audit_info->loginuid,
2532386f 822 audit_info->sessionid,
ab5f5e8b 823 audit_info->secid);
2518c7c2
DM
824 xfrm_policy_kill(pol);
825
826 write_lock_bh(&xfrm_policy_lock);
827 goto again2;
828 }
1da177e4 829 }
2518c7c2 830
1da177e4 831 }
0dca3a84 832 if (!cnt)
833 err = -ESRCH;
1da177e4 834 atomic_inc(&flow_cache_genid);
4aa2e62c 835out:
1da177e4 836 write_unlock_bh(&xfrm_policy_lock);
4aa2e62c 837 return err;
1da177e4
LT
838}
839EXPORT_SYMBOL(xfrm_policy_flush);
840
cdcbca7c 841int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
4c563f76 842 int (*func)(struct xfrm_policy *, int, int, void*),
1da177e4
LT
843 void *data)
844{
12a169e7
HX
845 struct xfrm_policy *pol;
846 struct xfrm_policy_walk_entry *x;
4c563f76
TT
847 int error = 0;
848
849 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
850 walk->type != XFRM_POLICY_TYPE_ANY)
851 return -EINVAL;
1da177e4 852
12a169e7 853 if (list_empty(&walk->walk.all) && walk->seq != 0)
4c563f76
TT
854 return 0;
855
12a169e7
HX
856 write_lock_bh(&xfrm_policy_lock);
857 if (list_empty(&walk->walk.all))
cdcbca7c 858 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
12a169e7
HX
859 else
860 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
cdcbca7c 861 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
12a169e7 862 if (x->dead)
4c563f76 863 continue;
12a169e7
HX
864 pol = container_of(x, struct xfrm_policy, walk);
865 if (walk->type != XFRM_POLICY_TYPE_ANY &&
866 walk->type != pol->type)
867 continue;
868 error = func(pol, xfrm_policy_id2dir(pol->index),
869 walk->seq, data);
870 if (error) {
871 list_move_tail(&walk->walk.all, &x->all);
872 goto out;
2518c7c2 873 }
12a169e7 874 walk->seq++;
1da177e4 875 }
12a169e7 876 if (walk->seq == 0) {
baf5d743
JHS
877 error = -ENOENT;
878 goto out;
879 }
12a169e7 880 list_del_init(&walk->walk.all);
1da177e4 881out:
12a169e7 882 write_unlock_bh(&xfrm_policy_lock);
1da177e4
LT
883 return error;
884}
885EXPORT_SYMBOL(xfrm_policy_walk);
886
12a169e7
HX
887void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
888{
889 INIT_LIST_HEAD(&walk->walk.all);
890 walk->walk.dead = 1;
891 walk->type = type;
892 walk->seq = 0;
893}
894EXPORT_SYMBOL(xfrm_policy_walk_init);
895
896void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
897{
898 if (list_empty(&walk->walk.all))
899 return;
900
901 write_lock_bh(&xfrm_policy_lock);
902 list_del(&walk->walk.all);
903 write_unlock_bh(&xfrm_policy_lock);
904}
905EXPORT_SYMBOL(xfrm_policy_walk_done);
906
134b0fc5
JM
907/*
908 * Find policy to apply to this flow.
909 *
910 * Returns 0 if policy found, else an -errno.
911 */
2518c7c2
DM
912static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
913 u8 type, u16 family, int dir)
1da177e4 914{
2518c7c2 915 struct xfrm_selector *sel = &pol->selector;
134b0fc5 916 int match, ret = -ESRCH;
1da177e4 917
2518c7c2
DM
918 if (pol->family != family ||
919 pol->type != type)
134b0fc5 920 return ret;
1da177e4 921
2518c7c2 922 match = xfrm_selector_match(sel, fl, family);
134b0fc5 923 if (match)
03e1ad7b
PM
924 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
925 dir);
2518c7c2 926
134b0fc5 927 return ret;
2518c7c2 928}
1da177e4 929
52479b62
AD
930static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
931 struct flowi *fl,
2518c7c2
DM
932 u16 family, u8 dir)
933{
134b0fc5 934 int err;
2518c7c2
DM
935 struct xfrm_policy *pol, *ret;
936 xfrm_address_t *daddr, *saddr;
937 struct hlist_node *entry;
938 struct hlist_head *chain;
acba48e1 939 u32 priority = ~0U;
df71837d 940
2518c7c2
DM
941 daddr = xfrm_flowi_daddr(fl, family);
942 saddr = xfrm_flowi_saddr(fl, family);
943 if (unlikely(!daddr || !saddr))
944 return NULL;
945
946 read_lock_bh(&xfrm_policy_lock);
52479b62 947 chain = policy_hash_direct(net, daddr, saddr, family, dir);
2518c7c2
DM
948 ret = NULL;
949 hlist_for_each_entry(pol, entry, chain, bydst) {
134b0fc5
JM
950 err = xfrm_policy_match(pol, fl, type, family, dir);
951 if (err) {
952 if (err == -ESRCH)
953 continue;
954 else {
955 ret = ERR_PTR(err);
956 goto fail;
957 }
958 } else {
2518c7c2 959 ret = pol;
acba48e1 960 priority = ret->priority;
2518c7c2
DM
961 break;
962 }
963 }
52479b62 964 chain = &net->xfrm.policy_inexact[dir];
acba48e1 965 hlist_for_each_entry(pol, entry, chain, bydst) {
134b0fc5
JM
966 err = xfrm_policy_match(pol, fl, type, family, dir);
967 if (err) {
968 if (err == -ESRCH)
969 continue;
970 else {
971 ret = ERR_PTR(err);
972 goto fail;
973 }
974 } else if (pol->priority < priority) {
acba48e1
DM
975 ret = pol;
976 break;
1da177e4
LT
977 }
978 }
acba48e1
DM
979 if (ret)
980 xfrm_pol_hold(ret);
134b0fc5 981fail:
1da177e4 982 read_unlock_bh(&xfrm_policy_lock);
4e81bb83 983
2518c7c2 984 return ret;
4e81bb83
MN
985}
986
52479b62
AD
987static int xfrm_policy_lookup(struct net *net, struct flowi *fl, u16 family,
988 u8 dir, void **objp, atomic_t **obj_refp)
4e81bb83
MN
989{
990 struct xfrm_policy *pol;
134b0fc5 991 int err = 0;
4e81bb83
MN
992
993#ifdef CONFIG_XFRM_SUB_POLICY
52479b62 994 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
134b0fc5
JM
995 if (IS_ERR(pol)) {
996 err = PTR_ERR(pol);
997 pol = NULL;
998 }
999 if (pol || err)
4e81bb83
MN
1000 goto end;
1001#endif
52479b62 1002 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
134b0fc5
JM
1003 if (IS_ERR(pol)) {
1004 err = PTR_ERR(pol);
1005 pol = NULL;
1006 }
4e81bb83 1007#ifdef CONFIG_XFRM_SUB_POLICY
2518c7c2 1008end:
4e81bb83 1009#endif
1da177e4
LT
1010 if ((*objp = (void *) pol) != NULL)
1011 *obj_refp = &pol->refcnt;
134b0fc5 1012 return err;
1da177e4
LT
1013}
1014
df71837d
TJ
1015static inline int policy_to_flow_dir(int dir)
1016{
1017 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
a716c119
YH
1018 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1019 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1020 return dir;
1021 switch (dir) {
1022 default:
1023 case XFRM_POLICY_IN:
1024 return FLOW_DIR_IN;
1025 case XFRM_POLICY_OUT:
1026 return FLOW_DIR_OUT;
1027 case XFRM_POLICY_FWD:
1028 return FLOW_DIR_FWD;
3ff50b79 1029 }
df71837d
TJ
1030}
1031
e0d1caa7 1032static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
1da177e4
LT
1033{
1034 struct xfrm_policy *pol;
1035
1036 read_lock_bh(&xfrm_policy_lock);
1037 if ((pol = sk->sk_policy[dir]) != NULL) {
a716c119 1038 int match = xfrm_selector_match(&pol->selector, fl,
1da177e4 1039 sk->sk_family);
a716c119 1040 int err = 0;
df71837d 1041
3bccfbc7 1042 if (match) {
03e1ad7b
PM
1043 err = security_xfrm_policy_lookup(pol->security,
1044 fl->secid,
1045 policy_to_flow_dir(dir));
3bccfbc7
VY
1046 if (!err)
1047 xfrm_pol_hold(pol);
1048 else if (err == -ESRCH)
1049 pol = NULL;
1050 else
1051 pol = ERR_PTR(err);
1052 } else
1da177e4
LT
1053 pol = NULL;
1054 }
1055 read_unlock_bh(&xfrm_policy_lock);
1056 return pol;
1057}
1058
1059static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1060{
98806f75 1061 struct net *net = xp_net(pol);
1121994c 1062 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
2518c7c2 1063 pol->family, dir);
4e81bb83 1064
98806f75 1065 list_add(&pol->walk.all, &net->xfrm.policy_all);
2518c7c2 1066 hlist_add_head(&pol->bydst, chain);
e92303f8 1067 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
98806f75 1068 net->xfrm.policy_count[dir]++;
1da177e4 1069 xfrm_pol_hold(pol);
2518c7c2 1070
98806f75
AD
1071 if (xfrm_bydst_should_resize(net, dir, NULL))
1072 schedule_work(&net->xfrm.policy_hash_work);
1da177e4
LT
1073}
1074
1075static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1076 int dir)
1077{
98806f75
AD
1078 struct net *net = xp_net(pol);
1079
2518c7c2
DM
1080 if (hlist_unhashed(&pol->bydst))
1081 return NULL;
1da177e4 1082
2518c7c2
DM
1083 hlist_del(&pol->bydst);
1084 hlist_del(&pol->byidx);
12a169e7 1085 list_del(&pol->walk.all);
98806f75 1086 net->xfrm.policy_count[dir]--;
2518c7c2
DM
1087
1088 return pol;
1da177e4
LT
1089}
1090
4666faab 1091int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
1da177e4
LT
1092{
1093 write_lock_bh(&xfrm_policy_lock);
1094 pol = __xfrm_policy_unlink(pol, dir);
1095 write_unlock_bh(&xfrm_policy_lock);
1096 if (pol) {
1097 if (dir < XFRM_POLICY_MAX)
1098 atomic_inc(&flow_cache_genid);
1099 xfrm_policy_kill(pol);
4666faab 1100 return 0;
1da177e4 1101 }
4666faab 1102 return -ENOENT;
1da177e4 1103}
a70fcb0b 1104EXPORT_SYMBOL(xfrm_policy_delete);
1da177e4
LT
1105
1106int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1107{
1121994c 1108 struct net *net = xp_net(pol);
1da177e4
LT
1109 struct xfrm_policy *old_pol;
1110
4e81bb83
MN
1111#ifdef CONFIG_XFRM_SUB_POLICY
1112 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1113 return -EINVAL;
1114#endif
1115
1da177e4
LT
1116 write_lock_bh(&xfrm_policy_lock);
1117 old_pol = sk->sk_policy[dir];
1118 sk->sk_policy[dir] = pol;
1119 if (pol) {
9d729f72 1120 pol->curlft.add_time = get_seconds();
1121994c 1121 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
1da177e4
LT
1122 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1123 }
1124 if (old_pol)
1125 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1126 write_unlock_bh(&xfrm_policy_lock);
1127
1128 if (old_pol) {
1129 xfrm_policy_kill(old_pol);
1130 }
1131 return 0;
1132}
1133
1134static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1135{
0331b1f3 1136 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
1da177e4
LT
1137
1138 if (newp) {
1139 newp->selector = old->selector;
03e1ad7b
PM
1140 if (security_xfrm_policy_clone(old->security,
1141 &newp->security)) {
df71837d
TJ
1142 kfree(newp);
1143 return NULL; /* ENOMEM */
1144 }
1da177e4
LT
1145 newp->lft = old->lft;
1146 newp->curlft = old->curlft;
1147 newp->action = old->action;
1148 newp->flags = old->flags;
1149 newp->xfrm_nr = old->xfrm_nr;
1150 newp->index = old->index;
4e81bb83 1151 newp->type = old->type;
1da177e4
LT
1152 memcpy(newp->xfrm_vec, old->xfrm_vec,
1153 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1154 write_lock_bh(&xfrm_policy_lock);
1155 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1156 write_unlock_bh(&xfrm_policy_lock);
1157 xfrm_pol_put(newp);
1158 }
1159 return newp;
1160}
1161
1162int __xfrm_sk_clone_policy(struct sock *sk)
1163{
1164 struct xfrm_policy *p0 = sk->sk_policy[0],
1165 *p1 = sk->sk_policy[1];
1166
1167 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1168 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1169 return -ENOMEM;
1170 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1171 return -ENOMEM;
1172 return 0;
1173}
1174
a1e59abf 1175static int
fbda33b2 1176xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
a1e59abf
PM
1177 unsigned short family)
1178{
1179 int err;
1180 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1181
1182 if (unlikely(afinfo == NULL))
1183 return -EINVAL;
fbda33b2 1184 err = afinfo->get_saddr(net, local, remote);
a1e59abf
PM
1185 xfrm_policy_put_afinfo(afinfo);
1186 return err;
1187}
1188
1da177e4
LT
1189/* Resolve list of templates for the flow, given policy. */
1190
1191static int
4e81bb83
MN
1192xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1193 struct xfrm_state **xfrm,
1194 unsigned short family)
1da177e4 1195{
fbda33b2 1196 struct net *net = xp_net(policy);
1da177e4
LT
1197 int nx;
1198 int i, error;
1199 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1200 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
a1e59abf 1201 xfrm_address_t tmp;
1da177e4
LT
1202
1203 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1204 struct xfrm_state *x;
1205 xfrm_address_t *remote = daddr;
1206 xfrm_address_t *local = saddr;
1207 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1208
48b8d783
JK
1209 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1210 tmpl->mode == XFRM_MODE_BEET) {
1da177e4
LT
1211 remote = &tmpl->id.daddr;
1212 local = &tmpl->saddr;
76b3f055 1213 family = tmpl->encap_family;
a1e59abf 1214 if (xfrm_addr_any(local, family)) {
fbda33b2 1215 error = xfrm_get_saddr(net, &tmp, remote, family);
a1e59abf
PM
1216 if (error)
1217 goto fail;
1218 local = &tmp;
1219 }
1da177e4
LT
1220 }
1221
1222 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1223
1224 if (x && x->km.state == XFRM_STATE_VALID) {
1225 xfrm[nx++] = x;
1226 daddr = remote;
1227 saddr = local;
1228 continue;
1229 }
1230 if (x) {
1231 error = (x->km.state == XFRM_STATE_ERROR ?
1232 -EINVAL : -EAGAIN);
1233 xfrm_state_put(x);
1234 }
a4322266 1235 else if (error == -ESRCH)
1236 error = -EAGAIN;
1da177e4
LT
1237
1238 if (!tmpl->optional)
1239 goto fail;
1240 }
1241 return nx;
1242
1243fail:
1244 for (nx--; nx>=0; nx--)
1245 xfrm_state_put(xfrm[nx]);
1246 return error;
1247}
1248
4e81bb83
MN
1249static int
1250xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1251 struct xfrm_state **xfrm,
1252 unsigned short family)
1253{
41a49cc3
MN
1254 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1255 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
4e81bb83
MN
1256 int cnx = 0;
1257 int error;
1258 int ret;
1259 int i;
1260
1261 for (i = 0; i < npols; i++) {
1262 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1263 error = -ENOBUFS;
1264 goto fail;
1265 }
41a49cc3
MN
1266
1267 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
4e81bb83
MN
1268 if (ret < 0) {
1269 error = ret;
1270 goto fail;
1271 } else
1272 cnx += ret;
1273 }
1274
41a49cc3
MN
1275 /* found states are sorted for outbound processing */
1276 if (npols > 1)
1277 xfrm_state_sort(xfrm, tpp, cnx, family);
1278
4e81bb83
MN
1279 return cnx;
1280
1281 fail:
1282 for (cnx--; cnx>=0; cnx--)
41a49cc3 1283 xfrm_state_put(tpp[cnx]);
4e81bb83
MN
1284 return error;
1285
1286}
1287
1da177e4
LT
1288/* Check that the bundle accepts the flow and its components are
1289 * still valid.
1290 */
1291
1292static struct dst_entry *
1293xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1294{
1295 struct dst_entry *x;
1296 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1297 if (unlikely(afinfo == NULL))
1298 return ERR_PTR(-EINVAL);
1299 x = afinfo->find_bundle(fl, policy);
1300 xfrm_policy_put_afinfo(afinfo);
1301 return x;
1302}
1303
25ee3286
HX
1304static inline int xfrm_get_tos(struct flowi *fl, int family)
1305{
1306 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1307 int tos;
1da177e4 1308
25ee3286
HX
1309 if (!afinfo)
1310 return -EINVAL;
1311
1312 tos = afinfo->get_tos(fl);
1313
1314 xfrm_policy_put_afinfo(afinfo);
1315
1316 return tos;
1317}
1318
d7c7544c 1319static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
1da177e4 1320{
1da177e4 1321 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
d7c7544c 1322 struct dst_ops *dst_ops;
25ee3286
HX
1323 struct xfrm_dst *xdst;
1324
1325 if (!afinfo)
1326 return ERR_PTR(-EINVAL);
1327
d7c7544c
AD
1328 switch (family) {
1329 case AF_INET:
1330 dst_ops = &net->xfrm.xfrm4_dst_ops;
1331 break;
1332#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1333 case AF_INET6:
1334 dst_ops = &net->xfrm.xfrm6_dst_ops;
1335 break;
1336#endif
1337 default:
1338 BUG();
1339 }
1340 xdst = dst_alloc(dst_ops) ?: ERR_PTR(-ENOBUFS);
25ee3286
HX
1341
1342 xfrm_policy_put_afinfo(afinfo);
1343
1344 return xdst;
1345}
1346
a1b05140
MN
1347static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1348 int nfheader_len)
1349{
1350 struct xfrm_policy_afinfo *afinfo =
1351 xfrm_policy_get_afinfo(dst->ops->family);
1352 int err;
1353
1354 if (!afinfo)
1355 return -EINVAL;
1356
1357 err = afinfo->init_path(path, dst, nfheader_len);
1358
1359 xfrm_policy_put_afinfo(afinfo);
1360
1361 return err;
1362}
1363
25ee3286
HX
1364static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1365{
1366 struct xfrm_policy_afinfo *afinfo =
1367 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1368 int err;
1369
1370 if (!afinfo)
1da177e4 1371 return -EINVAL;
25ee3286
HX
1372
1373 err = afinfo->fill_dst(xdst, dev);
1374
1da177e4 1375 xfrm_policy_put_afinfo(afinfo);
25ee3286 1376
1da177e4
LT
1377 return err;
1378}
1379
25ee3286
HX
1380/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1381 * all the metrics... Shortly, bundle a bundle.
1382 */
1383
1384static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1385 struct xfrm_state **xfrm, int nx,
1386 struct flowi *fl,
1387 struct dst_entry *dst)
1388{
d7c7544c 1389 struct net *net = xp_net(policy);
25ee3286
HX
1390 unsigned long now = jiffies;
1391 struct net_device *dev;
1392 struct dst_entry *dst_prev = NULL;
1393 struct dst_entry *dst0 = NULL;
1394 int i = 0;
1395 int err;
1396 int header_len = 0;
a1b05140 1397 int nfheader_len = 0;
25ee3286
HX
1398 int trailer_len = 0;
1399 int tos;
1400 int family = policy->selector.family;
9bb182a7
YH
1401 xfrm_address_t saddr, daddr;
1402
1403 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
25ee3286
HX
1404
1405 tos = xfrm_get_tos(fl, family);
1406 err = tos;
1407 if (tos < 0)
1408 goto put_states;
1409
1410 dst_hold(dst);
1411
1412 for (; i < nx; i++) {
d7c7544c 1413 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
25ee3286
HX
1414 struct dst_entry *dst1 = &xdst->u.dst;
1415
1416 err = PTR_ERR(xdst);
1417 if (IS_ERR(xdst)) {
1418 dst_release(dst);
1419 goto put_states;
1420 }
1421
1422 if (!dst_prev)
1423 dst0 = dst1;
1424 else {
1425 dst_prev->child = dst_clone(dst1);
1426 dst1->flags |= DST_NOHASH;
1427 }
1428
1429 xdst->route = dst;
1430 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1431
1432 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1433 family = xfrm[i]->props.family;
9bb182a7
YH
1434 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1435 family);
25ee3286
HX
1436 err = PTR_ERR(dst);
1437 if (IS_ERR(dst))
1438 goto put_states;
1439 } else
1440 dst_hold(dst);
1441
1442 dst1->xfrm = xfrm[i];
1443 xdst->genid = xfrm[i]->genid;
1444
1445 dst1->obsolete = -1;
1446 dst1->flags |= DST_HOST;
1447 dst1->lastuse = now;
1448
1449 dst1->input = dst_discard;
1450 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1451
1452 dst1->next = dst_prev;
1453 dst_prev = dst1;
1454
1455 header_len += xfrm[i]->props.header_len;
a1b05140
MN
1456 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1457 nfheader_len += xfrm[i]->props.header_len;
25ee3286
HX
1458 trailer_len += xfrm[i]->props.trailer_len;
1459 }
1460
1461 dst_prev->child = dst;
1462 dst0->path = dst;
1463
1464 err = -ENODEV;
1465 dev = dst->dev;
1466 if (!dev)
1467 goto free_dst;
1468
96c53401 1469 /* Copy neighbour for reachability confirmation */
25ee3286
HX
1470 dst0->neighbour = neigh_clone(dst->neighbour);
1471
a1b05140 1472 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
25ee3286
HX
1473 xfrm_init_pmtu(dst_prev);
1474
1475 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1476 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1477
1478 err = xfrm_fill_dst(xdst, dev);
1479 if (err)
1480 goto free_dst;
1481
1482 dst_prev->header_len = header_len;
1483 dst_prev->trailer_len = trailer_len;
1484 header_len -= xdst->u.dst.xfrm->props.header_len;
1485 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1486 }
1487
1488out:
1489 return dst0;
1490
1491put_states:
1492 for (; i < nx; i++)
1493 xfrm_state_put(xfrm[i]);
1494free_dst:
1495 if (dst0)
1496 dst_free(dst0);
1497 dst0 = ERR_PTR(err);
1498 goto out;
1499}
1500
157bfc25
MN
1501static int inline
1502xfrm_dst_alloc_copy(void **target, void *src, int size)
1503{
1504 if (!*target) {
1505 *target = kmalloc(size, GFP_ATOMIC);
1506 if (!*target)
1507 return -ENOMEM;
1508 }
1509 memcpy(*target, src, size);
1510 return 0;
1511}
1512
1513static int inline
1514xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1515{
1516#ifdef CONFIG_XFRM_SUB_POLICY
1517 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1518 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1519 sel, sizeof(*sel));
1520#else
1521 return 0;
1522#endif
1523}
1524
1525static int inline
1526xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1527{
1528#ifdef CONFIG_XFRM_SUB_POLICY
1529 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1530 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1531#else
1532 return 0;
1533#endif
1534}
1da177e4
LT
1535
1536static int stale_bundle(struct dst_entry *dst);
1537
1538/* Main function: finds/creates a bundle for given flow.
1539 *
1540 * At the moment we eat a raw IP route. Mostly to speed up lookups
1541 * on interfaces with disabled IPsec.
1542 */
52479b62 1543int __xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
14e50e57 1544 struct sock *sk, int flags)
1da177e4
LT
1545{
1546 struct xfrm_policy *policy;
4e81bb83
MN
1547 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1548 int npols;
1549 int pol_dead;
1550 int xfrm_nr;
1551 int pi;
1da177e4
LT
1552 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1553 struct dst_entry *dst, *dst_orig = *dst_p;
1554 int nx = 0;
1555 int err;
1556 u32 genid;
42cf93cd 1557 u16 family;
df71837d 1558 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
e0d1caa7 1559
1da177e4
LT
1560restart:
1561 genid = atomic_read(&flow_cache_genid);
1562 policy = NULL;
4e81bb83
MN
1563 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1564 pols[pi] = NULL;
1565 npols = 0;
1566 pol_dead = 0;
1567 xfrm_nr = 0;
1568
f7944fb1 1569 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
e0d1caa7 1570 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
75b8c133 1571 err = PTR_ERR(policy);
0aa64774 1572 if (IS_ERR(policy)) {
59c9940e 1573 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
75b8c133 1574 goto dropdst;
0aa64774 1575 }
3bccfbc7 1576 }
1da177e4
LT
1577
1578 if (!policy) {
1579 /* To accelerate a bit... */
2518c7c2 1580 if ((dst_orig->flags & DST_NOXFRM) ||
52479b62 1581 !net->xfrm.policy_count[XFRM_POLICY_OUT])
8b7817f3 1582 goto nopol;
1da177e4 1583
52479b62 1584 policy = flow_cache_lookup(net, fl, dst_orig->ops->family,
42cf93cd 1585 dir, xfrm_policy_lookup);
75b8c133 1586 err = PTR_ERR(policy);
d66e37a9 1587 if (IS_ERR(policy)) {
59c9940e 1588 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
75b8c133 1589 goto dropdst;
d66e37a9 1590 }
1da177e4
LT
1591 }
1592
1593 if (!policy)
8b7817f3 1594 goto nopol;
1da177e4 1595
42cf93cd 1596 family = dst_orig->ops->family;
4e81bb83
MN
1597 pols[0] = policy;
1598 npols ++;
1599 xfrm_nr += pols[0]->xfrm_nr;
1da177e4 1600
aef21785 1601 err = -ENOENT;
8b7817f3
HX
1602 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1603 goto error;
1604
1605 policy->curlft.use_time = get_seconds();
1606
1da177e4 1607 switch (policy->action) {
5e5234ff 1608 default:
1da177e4
LT
1609 case XFRM_POLICY_BLOCK:
1610 /* Prohibit the flow */
59c9940e 1611 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
e104411b
PM
1612 err = -EPERM;
1613 goto error;
1da177e4
LT
1614
1615 case XFRM_POLICY_ALLOW:
4e81bb83 1616#ifndef CONFIG_XFRM_SUB_POLICY
1da177e4
LT
1617 if (policy->xfrm_nr == 0) {
1618 /* Flow passes not transformed. */
1619 xfrm_pol_put(policy);
1620 return 0;
1621 }
4e81bb83 1622#endif
1da177e4
LT
1623
1624 /* Try to find matching bundle.
1625 *
1626 * LATER: help from flow cache. It is optional, this
1627 * is required only for output policy.
1628 */
1629 dst = xfrm_find_bundle(fl, policy, family);
1630 if (IS_ERR(dst)) {
59c9940e 1631 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
e104411b
PM
1632 err = PTR_ERR(dst);
1633 goto error;
1da177e4
LT
1634 }
1635
1636 if (dst)
1637 break;
1638
4e81bb83
MN
1639#ifdef CONFIG_XFRM_SUB_POLICY
1640 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
52479b62
AD
1641 pols[1] = xfrm_policy_lookup_bytype(net,
1642 XFRM_POLICY_TYPE_MAIN,
4e81bb83
MN
1643 fl, family,
1644 XFRM_POLICY_OUT);
1645 if (pols[1]) {
134b0fc5 1646 if (IS_ERR(pols[1])) {
59c9940e 1647 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
134b0fc5
JM
1648 err = PTR_ERR(pols[1]);
1649 goto error;
1650 }
4e81bb83 1651 if (pols[1]->action == XFRM_POLICY_BLOCK) {
59c9940e 1652 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
4e81bb83
MN
1653 err = -EPERM;
1654 goto error;
1655 }
1656 npols ++;
1657 xfrm_nr += pols[1]->xfrm_nr;
1658 }
1659 }
1660
1661 /*
1662 * Because neither flowi nor bundle information knows about
1663 * transformation template size. On more than one policy usage
1664 * we can realize whether all of them is bypass or not after
1665 * they are searched. See above not-transformed bypass
1666 * is surrounded by non-sub policy configuration, too.
1667 */
1668 if (xfrm_nr == 0) {
1669 /* Flow passes not transformed. */
1670 xfrm_pols_put(pols, npols);
1671 return 0;
1672 }
1673
1674#endif
1675 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
1da177e4
LT
1676
1677 if (unlikely(nx<0)) {
1678 err = nx;
b27aeadb 1679 if (err == -EAGAIN && net->xfrm.sysctl_larval_drop) {
14e50e57
DM
1680 /* EREMOTE tells the caller to generate
1681 * a one-shot blackhole route.
1682 */
59c9940e 1683 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
14e50e57
DM
1684 xfrm_pol_put(policy);
1685 return -EREMOTE;
1686 }
815f4e57 1687 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
1da177e4
LT
1688 DECLARE_WAITQUEUE(wait, current);
1689
52479b62 1690 add_wait_queue(&net->xfrm.km_waitq, &wait);
1da177e4
LT
1691 set_current_state(TASK_INTERRUPTIBLE);
1692 schedule();
1693 set_current_state(TASK_RUNNING);
52479b62 1694 remove_wait_queue(&net->xfrm.km_waitq, &wait);
1da177e4 1695
4e81bb83 1696 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
1da177e4
LT
1697
1698 if (nx == -EAGAIN && signal_pending(current)) {
59c9940e 1699 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
1da177e4
LT
1700 err = -ERESTART;
1701 goto error;
1702 }
1703 if (nx == -EAGAIN ||
1704 genid != atomic_read(&flow_cache_genid)) {
4e81bb83 1705 xfrm_pols_put(pols, npols);
1da177e4
LT
1706 goto restart;
1707 }
1708 err = nx;
1709 }
0aa64774 1710 if (err < 0) {
59c9940e 1711 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
1da177e4 1712 goto error;
0aa64774 1713 }
1da177e4
LT
1714 }
1715 if (nx == 0) {
1716 /* Flow passes not transformed. */
4e81bb83 1717 xfrm_pols_put(pols, npols);
1da177e4
LT
1718 return 0;
1719 }
1720
25ee3286
HX
1721 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1722 err = PTR_ERR(dst);
0aa64774 1723 if (IS_ERR(dst)) {
59c9940e 1724 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
1da177e4 1725 goto error;
0aa64774 1726 }
1da177e4 1727
4e81bb83
MN
1728 for (pi = 0; pi < npols; pi++) {
1729 read_lock_bh(&pols[pi]->lock);
12a169e7 1730 pol_dead |= pols[pi]->walk.dead;
4e81bb83
MN
1731 read_unlock_bh(&pols[pi]->lock);
1732 }
1733
1da177e4 1734 write_lock_bh(&policy->lock);
4e81bb83 1735 if (unlikely(pol_dead || stale_bundle(dst))) {
1da177e4
LT
1736 /* Wow! While we worked on resolving, this
1737 * policy has gone. Retry. It is not paranoia,
1738 * we just cannot enlist new bundle to dead object.
1739 * We can't enlist stable bundles either.
1740 */
1741 write_unlock_bh(&policy->lock);
9d7d7402 1742 dst_free(dst);
00de651d 1743
0aa64774 1744 if (pol_dead)
59c9940e 1745 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLDEAD);
0aa64774 1746 else
59c9940e 1747 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
00de651d
HX
1748 err = -EHOSTUNREACH;
1749 goto error;
1da177e4 1750 }
157bfc25
MN
1751
1752 if (npols > 1)
1753 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1754 else
1755 err = xfrm_dst_update_origin(dst, fl);
1756 if (unlikely(err)) {
1757 write_unlock_bh(&policy->lock);
9d7d7402 1758 dst_free(dst);
59c9940e 1759 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
157bfc25
MN
1760 goto error;
1761 }
1762
1da177e4
LT
1763 dst->next = policy->bundles;
1764 policy->bundles = dst;
1765 dst_hold(dst);
1766 write_unlock_bh(&policy->lock);
1767 }
1768 *dst_p = dst;
1769 dst_release(dst_orig);
a716c119 1770 xfrm_pols_put(pols, npols);
1da177e4
LT
1771 return 0;
1772
1773error:
4e81bb83 1774 xfrm_pols_put(pols, npols);
75b8c133
HX
1775dropdst:
1776 dst_release(dst_orig);
1da177e4
LT
1777 *dst_p = NULL;
1778 return err;
8b7817f3
HX
1779
1780nopol:
aef21785 1781 err = -ENOENT;
8b7817f3
HX
1782 if (flags & XFRM_LOOKUP_ICMP)
1783 goto dropdst;
1784 return 0;
1da177e4 1785}
14e50e57
DM
1786EXPORT_SYMBOL(__xfrm_lookup);
1787
52479b62 1788int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
14e50e57
DM
1789 struct sock *sk, int flags)
1790{
52479b62 1791 int err = __xfrm_lookup(net, dst_p, fl, sk, flags);
14e50e57
DM
1792
1793 if (err == -EREMOTE) {
1794 dst_release(*dst_p);
1795 *dst_p = NULL;
1796 err = -EAGAIN;
1797 }
1798
1799 return err;
1800}
1da177e4
LT
1801EXPORT_SYMBOL(xfrm_lookup);
1802
df0ba92a
MN
1803static inline int
1804xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1805{
1806 struct xfrm_state *x;
df0ba92a
MN
1807
1808 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1809 return 0;
1810 x = skb->sp->xvec[idx];
1811 if (!x->type->reject)
1812 return 0;
1ecafede 1813 return x->type->reject(x, skb, fl);
df0ba92a
MN
1814}
1815
1da177e4
LT
1816/* When skb is transformed back to its "native" form, we have to
1817 * check policy restrictions. At the moment we make this in maximally
1818 * stupid way. Shame on me. :-) Of course, connected sockets must
1819 * have policy cached at them.
1820 */
1821
1822static inline int
a716c119 1823xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
1da177e4
LT
1824 unsigned short family)
1825{
1826 if (xfrm_state_kern(x))
928ba416 1827 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
1da177e4
LT
1828 return x->id.proto == tmpl->id.proto &&
1829 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1830 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1831 x->props.mode == tmpl->mode &&
c5d18e98 1832 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
f3bd4840 1833 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
7e49e6de
MN
1834 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1835 xfrm_state_addr_cmp(tmpl, x, family));
1da177e4
LT
1836}
1837
df0ba92a
MN
1838/*
1839 * 0 or more than 0 is returned when validation is succeeded (either bypass
1840 * because of optional transport mode, or next index of the mathced secpath
1841 * state with the template.
1842 * -1 is returned when no matching template is found.
1843 * Otherwise "-2 - errored_index" is returned.
1844 */
1da177e4
LT
1845static inline int
1846xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1847 unsigned short family)
1848{
1849 int idx = start;
1850
1851 if (tmpl->optional) {
7e49e6de 1852 if (tmpl->mode == XFRM_MODE_TRANSPORT)
1da177e4
LT
1853 return start;
1854 } else
1855 start = -1;
1856 for (; idx < sp->len; idx++) {
dbe5b4aa 1857 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
1da177e4 1858 return ++idx;
df0ba92a
MN
1859 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1860 if (start == -1)
1861 start = -2-idx;
1da177e4 1862 break;
df0ba92a 1863 }
1da177e4
LT
1864 }
1865 return start;
1866}
1867
d5422efe
HX
1868int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1869 unsigned int family, int reverse)
1da177e4
LT
1870{
1871 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
e0d1caa7 1872 int err;
1da177e4
LT
1873
1874 if (unlikely(afinfo == NULL))
1875 return -EAFNOSUPPORT;
1876
d5422efe 1877 afinfo->decode_session(skb, fl, reverse);
beb8d13b 1878 err = security_xfrm_decode_session(skb, &fl->secid);
1da177e4 1879 xfrm_policy_put_afinfo(afinfo);
e0d1caa7 1880 return err;
1da177e4 1881}
d5422efe 1882EXPORT_SYMBOL(__xfrm_decode_session);
1da177e4 1883
df0ba92a 1884static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
1da177e4
LT
1885{
1886 for (; k < sp->len; k++) {
df0ba92a 1887 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
d1d9facf 1888 *idxp = k;
1da177e4 1889 return 1;
df0ba92a 1890 }
1da177e4
LT
1891 }
1892
1893 return 0;
1894}
1895
a716c119 1896int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
1da177e4
LT
1897 unsigned short family)
1898{
f6e1e25d 1899 struct net *net = dev_net(skb->dev);
1da177e4 1900 struct xfrm_policy *pol;
4e81bb83
MN
1901 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1902 int npols = 0;
1903 int xfrm_nr;
1904 int pi;
d5422efe 1905 int reverse;
1da177e4 1906 struct flowi fl;
d5422efe 1907 u8 fl_dir;
df0ba92a 1908 int xerr_idx = -1;
1da177e4 1909
d5422efe
HX
1910 reverse = dir & ~XFRM_POLICY_MASK;
1911 dir &= XFRM_POLICY_MASK;
1912 fl_dir = policy_to_flow_dir(dir);
1913
0aa64774 1914 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
59c9940e 1915 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
1da177e4 1916 return 0;
0aa64774
MN
1917 }
1918
eb9c7ebe 1919 nf_nat_decode_session(skb, &fl, family);
1da177e4
LT
1920
1921 /* First, check used SA against their selectors. */
1922 if (skb->sp) {
1923 int i;
1924
1925 for (i=skb->sp->len-1; i>=0; i--) {
dbe5b4aa 1926 struct xfrm_state *x = skb->sp->xvec[i];
0aa64774 1927 if (!xfrm_selector_match(&x->sel, &fl, family)) {
59c9940e 1928 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
1da177e4 1929 return 0;
0aa64774 1930 }
1da177e4
LT
1931 }
1932 }
1933
1934 pol = NULL;
3bccfbc7 1935 if (sk && sk->sk_policy[dir]) {
e0d1caa7 1936 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
0aa64774 1937 if (IS_ERR(pol)) {
59c9940e 1938 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
3bccfbc7 1939 return 0;
0aa64774 1940 }
3bccfbc7 1941 }
1da177e4
LT
1942
1943 if (!pol)
f6e1e25d 1944 pol = flow_cache_lookup(net, &fl, family, fl_dir,
1da177e4
LT
1945 xfrm_policy_lookup);
1946
0aa64774 1947 if (IS_ERR(pol)) {
59c9940e 1948 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
134b0fc5 1949 return 0;
0aa64774 1950 }
134b0fc5 1951
df0ba92a 1952 if (!pol) {
d1d9facf 1953 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
df0ba92a 1954 xfrm_secpath_reject(xerr_idx, skb, &fl);
59c9940e 1955 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
df0ba92a
MN
1956 return 0;
1957 }
1958 return 1;
1959 }
1da177e4 1960
9d729f72 1961 pol->curlft.use_time = get_seconds();
1da177e4 1962
4e81bb83
MN
1963 pols[0] = pol;
1964 npols ++;
1965#ifdef CONFIG_XFRM_SUB_POLICY
1966 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
f6e1e25d 1967 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
4e81bb83
MN
1968 &fl, family,
1969 XFRM_POLICY_IN);
1970 if (pols[1]) {
0aa64774 1971 if (IS_ERR(pols[1])) {
59c9940e 1972 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
134b0fc5 1973 return 0;
0aa64774 1974 }
9d729f72 1975 pols[1]->curlft.use_time = get_seconds();
4e81bb83
MN
1976 npols ++;
1977 }
1978 }
1979#endif
1980
1da177e4
LT
1981 if (pol->action == XFRM_POLICY_ALLOW) {
1982 struct sec_path *sp;
1983 static struct sec_path dummy;
4e81bb83 1984 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
41a49cc3 1985 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
4e81bb83
MN
1986 struct xfrm_tmpl **tpp = tp;
1987 int ti = 0;
1da177e4
LT
1988 int i, k;
1989
1990 if ((sp = skb->sp) == NULL)
1991 sp = &dummy;
1992
4e81bb83
MN
1993 for (pi = 0; pi < npols; pi++) {
1994 if (pols[pi] != pol &&
0aa64774 1995 pols[pi]->action != XFRM_POLICY_ALLOW) {
59c9940e 1996 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
4e81bb83 1997 goto reject;
0aa64774
MN
1998 }
1999 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
59c9940e 2000 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
4e81bb83 2001 goto reject_error;
0aa64774 2002 }
4e81bb83
MN
2003 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2004 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2005 }
2006 xfrm_nr = ti;
41a49cc3
MN
2007 if (npols > 1) {
2008 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2009 tpp = stp;
2010 }
4e81bb83 2011
1da177e4
LT
2012 /* For each tunnel xfrm, find the first matching tmpl.
2013 * For each tmpl before that, find corresponding xfrm.
2014 * Order is _important_. Later we will implement
2015 * some barriers, but at the moment barriers
2016 * are implied between each two transformations.
2017 */
4e81bb83
MN
2018 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2019 k = xfrm_policy_ok(tpp[i], sp, k, family);
df0ba92a 2020 if (k < 0) {
d1d9facf
JM
2021 if (k < -1)
2022 /* "-2 - errored_index" returned */
2023 xerr_idx = -(2+k);
59c9940e 2024 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
1da177e4 2025 goto reject;
df0ba92a 2026 }
1da177e4
LT
2027 }
2028
0aa64774 2029 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
59c9940e 2030 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
1da177e4 2031 goto reject;
0aa64774 2032 }
1da177e4 2033
4e81bb83 2034 xfrm_pols_put(pols, npols);
1da177e4
LT
2035 return 1;
2036 }
59c9940e 2037 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
1da177e4
LT
2038
2039reject:
df0ba92a 2040 xfrm_secpath_reject(xerr_idx, skb, &fl);
4e81bb83
MN
2041reject_error:
2042 xfrm_pols_put(pols, npols);
1da177e4
LT
2043 return 0;
2044}
2045EXPORT_SYMBOL(__xfrm_policy_check);
2046
2047int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2048{
99a66657 2049 struct net *net = dev_net(skb->dev);
1da177e4 2050 struct flowi fl;
adf30907
ED
2051 struct dst_entry *dst;
2052 int res;
1da177e4 2053
0aa64774
MN
2054 if (xfrm_decode_session(skb, &fl, family) < 0) {
2055 /* XXX: we should have something like FWDHDRERROR here. */
59c9940e 2056 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
1da177e4 2057 return 0;
0aa64774 2058 }
1da177e4 2059
adf30907
ED
2060 dst = skb_dst(skb);
2061
2062 res = xfrm_lookup(net, &dst, &fl, NULL, 0) == 0;
2063 skb_dst_set(skb, dst);
2064 return res;
1da177e4
LT
2065}
2066EXPORT_SYMBOL(__xfrm_route_forward);
2067
d49c73c7
DM
2068/* Optimize later using cookies and generation ids. */
2069
1da177e4
LT
2070static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2071{
d49c73c7
DM
2072 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2073 * to "-1" to force all XFRM destinations to get validated by
2074 * dst_ops->check on every use. We do this because when a
2075 * normal route referenced by an XFRM dst is obsoleted we do
2076 * not go looking around for all parent referencing XFRM dsts
2077 * so that we can invalidate them. It is just too much work.
2078 * Instead we make the checks here on every use. For example:
2079 *
2080 * XFRM dst A --> IPv4 dst X
2081 *
2082 * X is the "xdst->route" of A (X is also the "dst->path" of A
2083 * in this example). If X is marked obsolete, "A" will not
2084 * notice. That's what we are validating here via the
2085 * stale_bundle() check.
2086 *
2087 * When a policy's bundle is pruned, we dst_free() the XFRM
2088 * dst which causes it's ->obsolete field to be set to a
2089 * positive non-zero integer. If an XFRM dst has been pruned
2090 * like this, we want to force a new route lookup.
399c180a 2091 */
d49c73c7
DM
2092 if (dst->obsolete < 0 && !stale_bundle(dst))
2093 return dst;
2094
1da177e4
LT
2095 return NULL;
2096}
2097
2098static int stale_bundle(struct dst_entry *dst)
2099{
5b368e61 2100 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
1da177e4
LT
2101}
2102
aabc9761 2103void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
1da177e4 2104{
1da177e4 2105 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
c346dca1 2106 dst->dev = dev_net(dev)->loopback_dev;
de3cb747 2107 dev_hold(dst->dev);
1da177e4
LT
2108 dev_put(dev);
2109 }
2110}
aabc9761 2111EXPORT_SYMBOL(xfrm_dst_ifdown);
1da177e4
LT
2112
2113static void xfrm_link_failure(struct sk_buff *skb)
2114{
2115 /* Impossible. Such dst must be popped before reaches point of failure. */
2116 return;
2117}
2118
2119static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2120{
2121 if (dst) {
2122 if (dst->obsolete) {
2123 dst_release(dst);
2124 dst = NULL;
2125 }
2126 }
2127 return dst;
2128}
2129
2518c7c2
DM
2130static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2131{
2132 struct dst_entry *dst, **dstp;
2133
2134 write_lock(&pol->lock);
2135 dstp = &pol->bundles;
2136 while ((dst=*dstp) != NULL) {
2137 if (func(dst)) {
2138 *dstp = dst->next;
2139 dst->next = *gc_list_p;
2140 *gc_list_p = dst;
2141 } else {
2142 dstp = &dst->next;
2143 }
2144 }
2145 write_unlock(&pol->lock);
2146}
2147
3dd0b499 2148static void xfrm_prune_bundles(struct net *net, int (*func)(struct dst_entry *))
1da177e4 2149{
2518c7c2
DM
2150 struct dst_entry *gc_list = NULL;
2151 int dir;
1da177e4
LT
2152
2153 read_lock_bh(&xfrm_policy_lock);
2518c7c2
DM
2154 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2155 struct xfrm_policy *pol;
2156 struct hlist_node *entry;
2157 struct hlist_head *table;
2158 int i;
4e81bb83 2159
2518c7c2 2160 hlist_for_each_entry(pol, entry,
3dd0b499 2161 &net->xfrm.policy_inexact[dir], bydst)
2518c7c2
DM
2162 prune_one_bundle(pol, func, &gc_list);
2163
3dd0b499
AD
2164 table = net->xfrm.policy_bydst[dir].table;
2165 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
2518c7c2
DM
2166 hlist_for_each_entry(pol, entry, table + i, bydst)
2167 prune_one_bundle(pol, func, &gc_list);
1da177e4
LT
2168 }
2169 }
2170 read_unlock_bh(&xfrm_policy_lock);
2171
2172 while (gc_list) {
2518c7c2 2173 struct dst_entry *dst = gc_list;
1da177e4
LT
2174 gc_list = dst->next;
2175 dst_free(dst);
2176 }
2177}
2178
2179static int unused_bundle(struct dst_entry *dst)
2180{
2181 return !atomic_read(&dst->__refcnt);
2182}
2183
ddcfd796 2184static void __xfrm_garbage_collect(struct net *net)
1da177e4 2185{
ddcfd796 2186 xfrm_prune_bundles(net, unused_bundle);
1da177e4
LT
2187}
2188
3dd0b499 2189static int xfrm_flush_bundles(struct net *net)
1da177e4 2190{
3dd0b499 2191 xfrm_prune_bundles(net, stale_bundle);
1da177e4
LT
2192 return 0;
2193}
2194
25ee3286 2195static void xfrm_init_pmtu(struct dst_entry *dst)
1da177e4
LT
2196{
2197 do {
2198 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2199 u32 pmtu, route_mtu_cached;
2200
2201 pmtu = dst_mtu(dst->child);
2202 xdst->child_mtu_cached = pmtu;
2203
2204 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2205
2206 route_mtu_cached = dst_mtu(xdst->route);
2207 xdst->route_mtu_cached = route_mtu_cached;
2208
2209 if (pmtu > route_mtu_cached)
2210 pmtu = route_mtu_cached;
2211
2212 dst->metrics[RTAX_MTU-1] = pmtu;
2213 } while ((dst = dst->next));
2214}
2215
1da177e4
LT
2216/* Check that the bundle accepts the flow and its components are
2217 * still valid.
2218 */
2219
5b368e61
VY
2220int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2221 struct flowi *fl, int family, int strict)
1da177e4
LT
2222{
2223 struct dst_entry *dst = &first->u.dst;
2224 struct xfrm_dst *last;
2225 u32 mtu;
2226
92d63dec 2227 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
1da177e4
LT
2228 (dst->dev && !netif_running(dst->dev)))
2229 return 0;
157bfc25
MN
2230#ifdef CONFIG_XFRM_SUB_POLICY
2231 if (fl) {
2232 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2233 return 0;
2234 if (first->partner &&
2235 !xfrm_selector_match(first->partner, fl, family))
2236 return 0;
2237 }
2238#endif
1da177e4
LT
2239
2240 last = NULL;
2241
2242 do {
2243 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2244
2245 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2246 return 0;
67f83cbf
VY
2247 if (fl && pol &&
2248 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
e0d1caa7 2249 return 0;
1da177e4
LT
2250 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2251 return 0;
9d4a706d
DM
2252 if (xdst->genid != dst->xfrm->genid)
2253 return 0;
e53820de 2254
1bfcb10f 2255 if (strict && fl &&
13996378 2256 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
e53820de
MN
2257 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2258 return 0;
1da177e4
LT
2259
2260 mtu = dst_mtu(dst->child);
2261 if (xdst->child_mtu_cached != mtu) {
2262 last = xdst;
2263 xdst->child_mtu_cached = mtu;
2264 }
2265
92d63dec 2266 if (!dst_check(xdst->route, xdst->route_cookie))
1da177e4
LT
2267 return 0;
2268 mtu = dst_mtu(xdst->route);
2269 if (xdst->route_mtu_cached != mtu) {
2270 last = xdst;
2271 xdst->route_mtu_cached = mtu;
2272 }
2273
2274 dst = dst->child;
2275 } while (dst->xfrm);
2276
2277 if (likely(!last))
2278 return 1;
2279
2280 mtu = last->child_mtu_cached;
2281 for (;;) {
2282 dst = &last->u.dst;
2283
2284 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2285 if (mtu > last->route_mtu_cached)
2286 mtu = last->route_mtu_cached;
2287 dst->metrics[RTAX_MTU-1] = mtu;
2288
2289 if (last == first)
2290 break;
2291
bd0bf076 2292 last = (struct xfrm_dst *)last->u.dst.next;
1da177e4
LT
2293 last->child_mtu_cached = mtu;
2294 }
2295
2296 return 1;
2297}
2298
2299EXPORT_SYMBOL(xfrm_bundle_ok);
2300
1da177e4
LT
2301int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2302{
d7c7544c 2303 struct net *net;
1da177e4
LT
2304 int err = 0;
2305 if (unlikely(afinfo == NULL))
2306 return -EINVAL;
2307 if (unlikely(afinfo->family >= NPROTO))
2308 return -EAFNOSUPPORT;
e959d812 2309 write_lock_bh(&xfrm_policy_afinfo_lock);
1da177e4
LT
2310 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2311 err = -ENOBUFS;
2312 else {
2313 struct dst_ops *dst_ops = afinfo->dst_ops;
2314 if (likely(dst_ops->kmem_cachep == NULL))
2315 dst_ops->kmem_cachep = xfrm_dst_cache;
2316 if (likely(dst_ops->check == NULL))
2317 dst_ops->check = xfrm_dst_check;
1da177e4
LT
2318 if (likely(dst_ops->negative_advice == NULL))
2319 dst_ops->negative_advice = xfrm_negative_advice;
2320 if (likely(dst_ops->link_failure == NULL))
2321 dst_ops->link_failure = xfrm_link_failure;
1da177e4
LT
2322 if (likely(afinfo->garbage_collect == NULL))
2323 afinfo->garbage_collect = __xfrm_garbage_collect;
2324 xfrm_policy_afinfo[afinfo->family] = afinfo;
2325 }
e959d812 2326 write_unlock_bh(&xfrm_policy_afinfo_lock);
d7c7544c
AD
2327
2328 rtnl_lock();
2329 for_each_net(net) {
2330 struct dst_ops *xfrm_dst_ops;
2331
2332 switch (afinfo->family) {
2333 case AF_INET:
2334 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2335 break;
2336#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2337 case AF_INET6:
2338 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2339 break;
2340#endif
2341 default:
2342 BUG();
2343 }
2344 *xfrm_dst_ops = *afinfo->dst_ops;
2345 }
2346 rtnl_unlock();
2347
1da177e4
LT
2348 return err;
2349}
2350EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2351
2352int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2353{
2354 int err = 0;
2355 if (unlikely(afinfo == NULL))
2356 return -EINVAL;
2357 if (unlikely(afinfo->family >= NPROTO))
2358 return -EAFNOSUPPORT;
e959d812 2359 write_lock_bh(&xfrm_policy_afinfo_lock);
1da177e4
LT
2360 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2361 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2362 err = -EINVAL;
2363 else {
2364 struct dst_ops *dst_ops = afinfo->dst_ops;
2365 xfrm_policy_afinfo[afinfo->family] = NULL;
2366 dst_ops->kmem_cachep = NULL;
2367 dst_ops->check = NULL;
1da177e4
LT
2368 dst_ops->negative_advice = NULL;
2369 dst_ops->link_failure = NULL;
1da177e4
LT
2370 afinfo->garbage_collect = NULL;
2371 }
2372 }
e959d812 2373 write_unlock_bh(&xfrm_policy_afinfo_lock);
1da177e4
LT
2374 return err;
2375}
2376EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2377
d7c7544c
AD
2378static void __net_init xfrm_dst_ops_init(struct net *net)
2379{
2380 struct xfrm_policy_afinfo *afinfo;
2381
2382 read_lock_bh(&xfrm_policy_afinfo_lock);
2383 afinfo = xfrm_policy_afinfo[AF_INET];
2384 if (afinfo)
2385 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
2386#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2387 afinfo = xfrm_policy_afinfo[AF_INET6];
2388 if (afinfo)
2389 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2390#endif
2391 read_unlock_bh(&xfrm_policy_afinfo_lock);
2392}
2393
1da177e4
LT
2394static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2395{
2396 struct xfrm_policy_afinfo *afinfo;
2397 if (unlikely(family >= NPROTO))
2398 return NULL;
2399 read_lock(&xfrm_policy_afinfo_lock);
2400 afinfo = xfrm_policy_afinfo[family];
546be240
HX
2401 if (unlikely(!afinfo))
2402 read_unlock(&xfrm_policy_afinfo_lock);
1da177e4
LT
2403 return afinfo;
2404}
2405
2406static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2407{
546be240
HX
2408 read_unlock(&xfrm_policy_afinfo_lock);
2409}
2410
1da177e4
LT
2411static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2412{
e9dc8653
EB
2413 struct net_device *dev = ptr;
2414
1da177e4
LT
2415 switch (event) {
2416 case NETDEV_DOWN:
3dd0b499 2417 xfrm_flush_bundles(dev_net(dev));
1da177e4
LT
2418 }
2419 return NOTIFY_DONE;
2420}
2421
2422static struct notifier_block xfrm_dev_notifier = {
d5917a35 2423 .notifier_call = xfrm_dev_event,
1da177e4
LT
2424};
2425
558f82ef 2426#ifdef CONFIG_XFRM_STATISTICS
59c9940e 2427static int __net_init xfrm_statistics_init(struct net *net)
558f82ef 2428{
c68cd1a0
AD
2429 int rv;
2430
59c9940e 2431 if (snmp_mib_init((void **)net->mib.xfrm_statistics,
558f82ef
MN
2432 sizeof(struct linux_xfrm_mib)) < 0)
2433 return -ENOMEM;
c68cd1a0
AD
2434 rv = xfrm_proc_init(net);
2435 if (rv < 0)
2436 snmp_mib_free((void **)net->mib.xfrm_statistics);
2437 return rv;
558f82ef 2438}
59c9940e
AD
2439
2440static void xfrm_statistics_fini(struct net *net)
2441{
c68cd1a0 2442 xfrm_proc_fini(net);
59c9940e
AD
2443 snmp_mib_free((void **)net->mib.xfrm_statistics);
2444}
2445#else
2446static int __net_init xfrm_statistics_init(struct net *net)
2447{
2448 return 0;
2449}
2450
2451static void xfrm_statistics_fini(struct net *net)
2452{
2453}
558f82ef
MN
2454#endif
2455
d62ddc21 2456static int __net_init xfrm_policy_init(struct net *net)
1da177e4 2457{
2518c7c2
DM
2458 unsigned int hmask, sz;
2459 int dir;
2460
d62ddc21
AD
2461 if (net_eq(net, &init_net))
2462 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
1da177e4 2463 sizeof(struct xfrm_dst),
e5d679f3 2464 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
20c2df83 2465 NULL);
1da177e4 2466
2518c7c2
DM
2467 hmask = 8 - 1;
2468 sz = (hmask+1) * sizeof(struct hlist_head);
2469
93b851c1
AD
2470 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2471 if (!net->xfrm.policy_byidx)
2472 goto out_byidx;
8100bea7 2473 net->xfrm.policy_idx_hmask = hmask;
2518c7c2
DM
2474
2475 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2476 struct xfrm_policy_hash *htab;
2477
dc2caba7 2478 net->xfrm.policy_count[dir] = 0;
8b18f8ea 2479 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
2518c7c2 2480
a35f6c5d 2481 htab = &net->xfrm.policy_bydst[dir];
44e36b42 2482 htab->table = xfrm_hash_alloc(sz);
2518c7c2 2483 if (!htab->table)
a35f6c5d
AD
2484 goto out_bydst;
2485 htab->hmask = hmask;
2518c7c2
DM
2486 }
2487
adfcf0b2 2488 INIT_LIST_HEAD(&net->xfrm.policy_all);
66caf628 2489 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
d62ddc21
AD
2490 if (net_eq(net, &init_net))
2491 register_netdevice_notifier(&xfrm_dev_notifier);
2492 return 0;
93b851c1 2493
a35f6c5d
AD
2494out_bydst:
2495 for (dir--; dir >= 0; dir--) {
2496 struct xfrm_policy_hash *htab;
2497
2498 htab = &net->xfrm.policy_bydst[dir];
2499 xfrm_hash_free(htab->table, sz);
2500 }
2501 xfrm_hash_free(net->xfrm.policy_byidx, sz);
93b851c1
AD
2502out_byidx:
2503 return -ENOMEM;
d62ddc21
AD
2504}
2505
2506static void xfrm_policy_fini(struct net *net)
2507{
7c2776ee 2508 struct xfrm_audit audit_info;
93b851c1 2509 unsigned int sz;
8b18f8ea 2510 int dir;
93b851c1 2511
7c2776ee
AD
2512 flush_work(&net->xfrm.policy_hash_work);
2513#ifdef CONFIG_XFRM_SUB_POLICY
2514 audit_info.loginuid = -1;
2515 audit_info.sessionid = -1;
2516 audit_info.secid = 0;
2517 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2518#endif
2519 audit_info.loginuid = -1;
2520 audit_info.sessionid = -1;
2521 audit_info.secid = 0;
2522 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
2523 flush_work(&xfrm_policy_gc_work);
2524
adfcf0b2 2525 WARN_ON(!list_empty(&net->xfrm.policy_all));
93b851c1 2526
8b18f8ea 2527 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
a35f6c5d
AD
2528 struct xfrm_policy_hash *htab;
2529
8b18f8ea 2530 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
a35f6c5d
AD
2531
2532 htab = &net->xfrm.policy_bydst[dir];
2533 sz = (htab->hmask + 1);
2534 WARN_ON(!hlist_empty(htab->table));
2535 xfrm_hash_free(htab->table, sz);
8b18f8ea
AD
2536 }
2537
8100bea7 2538 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
93b851c1
AD
2539 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2540 xfrm_hash_free(net->xfrm.policy_byidx, sz);
1da177e4
LT
2541}
2542
d62ddc21
AD
2543static int __net_init xfrm_net_init(struct net *net)
2544{
2545 int rv;
2546
59c9940e
AD
2547 rv = xfrm_statistics_init(net);
2548 if (rv < 0)
2549 goto out_statistics;
d62ddc21
AD
2550 rv = xfrm_state_init(net);
2551 if (rv < 0)
2552 goto out_state;
2553 rv = xfrm_policy_init(net);
2554 if (rv < 0)
2555 goto out_policy;
d7c7544c 2556 xfrm_dst_ops_init(net);
b27aeadb
AD
2557 rv = xfrm_sysctl_init(net);
2558 if (rv < 0)
2559 goto out_sysctl;
d62ddc21
AD
2560 return 0;
2561
b27aeadb
AD
2562out_sysctl:
2563 xfrm_policy_fini(net);
d62ddc21
AD
2564out_policy:
2565 xfrm_state_fini(net);
2566out_state:
59c9940e
AD
2567 xfrm_statistics_fini(net);
2568out_statistics:
d62ddc21
AD
2569 return rv;
2570}
2571
2572static void __net_exit xfrm_net_exit(struct net *net)
2573{
b27aeadb 2574 xfrm_sysctl_fini(net);
d62ddc21
AD
2575 xfrm_policy_fini(net);
2576 xfrm_state_fini(net);
59c9940e 2577 xfrm_statistics_fini(net);
d62ddc21
AD
2578}
2579
2580static struct pernet_operations __net_initdata xfrm_net_ops = {
2581 .init = xfrm_net_init,
2582 .exit = xfrm_net_exit,
2583};
2584
1da177e4
LT
2585void __init xfrm_init(void)
2586{
d62ddc21 2587 register_pernet_subsys(&xfrm_net_ops);
1da177e4
LT
2588 xfrm_input_init();
2589}
2590
ab5f5e8b 2591#ifdef CONFIG_AUDITSYSCALL
1486cbd7
IJ
2592static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2593 struct audit_buffer *audit_buf)
ab5f5e8b 2594{
875179fa
PM
2595 struct xfrm_sec_ctx *ctx = xp->security;
2596 struct xfrm_selector *sel = &xp->selector;
2597
2598 if (ctx)
ab5f5e8b 2599 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
875179fa 2600 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
ab5f5e8b 2601
875179fa 2602 switch(sel->family) {
ab5f5e8b 2603 case AF_INET:
21454aaa 2604 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
875179fa
PM
2605 if (sel->prefixlen_s != 32)
2606 audit_log_format(audit_buf, " src_prefixlen=%d",
2607 sel->prefixlen_s);
21454aaa 2608 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
875179fa
PM
2609 if (sel->prefixlen_d != 32)
2610 audit_log_format(audit_buf, " dst_prefixlen=%d",
2611 sel->prefixlen_d);
ab5f5e8b
JL
2612 break;
2613 case AF_INET6:
5b095d98 2614 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
875179fa
PM
2615 if (sel->prefixlen_s != 128)
2616 audit_log_format(audit_buf, " src_prefixlen=%d",
2617 sel->prefixlen_s);
5b095d98 2618 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
875179fa
PM
2619 if (sel->prefixlen_d != 128)
2620 audit_log_format(audit_buf, " dst_prefixlen=%d",
2621 sel->prefixlen_d);
ab5f5e8b
JL
2622 break;
2623 }
2624}
2625
68277acc 2626void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
2532386f 2627 uid_t auid, u32 sessionid, u32 secid)
ab5f5e8b
JL
2628{
2629 struct audit_buffer *audit_buf;
ab5f5e8b 2630
afeb14b4 2631 audit_buf = xfrm_audit_start("SPD-add");
ab5f5e8b
JL
2632 if (audit_buf == NULL)
2633 return;
2532386f 2634 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
afeb14b4 2635 audit_log_format(audit_buf, " res=%u", result);
ab5f5e8b
JL
2636 xfrm_audit_common_policyinfo(xp, audit_buf);
2637 audit_log_end(audit_buf);
2638}
2639EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2640
68277acc 2641void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
2532386f 2642 uid_t auid, u32 sessionid, u32 secid)
ab5f5e8b
JL
2643{
2644 struct audit_buffer *audit_buf;
ab5f5e8b 2645
afeb14b4 2646 audit_buf = xfrm_audit_start("SPD-delete");
ab5f5e8b
JL
2647 if (audit_buf == NULL)
2648 return;
2532386f 2649 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
afeb14b4 2650 audit_log_format(audit_buf, " res=%u", result);
ab5f5e8b
JL
2651 xfrm_audit_common_policyinfo(xp, audit_buf);
2652 audit_log_end(audit_buf);
2653}
2654EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2655#endif
2656
80c9abaa
SS
2657#ifdef CONFIG_XFRM_MIGRATE
2658static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2659 struct xfrm_selector *sel_tgt)
2660{
2661 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2662 if (sel_tgt->family == sel_cmp->family &&
2663 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
a716c119 2664 sel_cmp->family) == 0 &&
80c9abaa
SS
2665 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2666 sel_cmp->family) == 0 &&
2667 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2668 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2669 return 1;
2670 }
2671 } else {
2672 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2673 return 1;
2674 }
2675 }
2676 return 0;
2677}
2678
2679static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2680 u8 dir, u8 type)
2681{
2682 struct xfrm_policy *pol, *ret = NULL;
2683 struct hlist_node *entry;
2684 struct hlist_head *chain;
2685 u32 priority = ~0U;
2686
2687 read_lock_bh(&xfrm_policy_lock);
1121994c 2688 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
80c9abaa
SS
2689 hlist_for_each_entry(pol, entry, chain, bydst) {
2690 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2691 pol->type == type) {
2692 ret = pol;
2693 priority = ret->priority;
2694 break;
2695 }
2696 }
8b18f8ea 2697 chain = &init_net.xfrm.policy_inexact[dir];
80c9abaa
SS
2698 hlist_for_each_entry(pol, entry, chain, bydst) {
2699 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2700 pol->type == type &&
2701 pol->priority < priority) {
2702 ret = pol;
2703 break;
2704 }
2705 }
2706
2707 if (ret)
2708 xfrm_pol_hold(ret);
2709
2710 read_unlock_bh(&xfrm_policy_lock);
2711
2712 return ret;
2713}
2714
2715static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2716{
2717 int match = 0;
2718
2719 if (t->mode == m->mode && t->id.proto == m->proto &&
2720 (m->reqid == 0 || t->reqid == m->reqid)) {
2721 switch (t->mode) {
2722 case XFRM_MODE_TUNNEL:
2723 case XFRM_MODE_BEET:
2724 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2725 m->old_family) == 0 &&
2726 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2727 m->old_family) == 0) {
2728 match = 1;
2729 }
2730 break;
2731 case XFRM_MODE_TRANSPORT:
2732 /* in case of transport mode, template does not store
2733 any IP addresses, hence we just compare mode and
2734 protocol */
2735 match = 1;
2736 break;
2737 default:
2738 break;
2739 }
2740 }
2741 return match;
2742}
2743
2744/* update endpoint address(es) of template(s) */
2745static int xfrm_policy_migrate(struct xfrm_policy *pol,
2746 struct xfrm_migrate *m, int num_migrate)
2747{
2748 struct xfrm_migrate *mp;
2749 struct dst_entry *dst;
2750 int i, j, n = 0;
2751
2752 write_lock_bh(&pol->lock);
12a169e7 2753 if (unlikely(pol->walk.dead)) {
80c9abaa
SS
2754 /* target policy has been deleted */
2755 write_unlock_bh(&pol->lock);
2756 return -ENOENT;
2757 }
2758
2759 for (i = 0; i < pol->xfrm_nr; i++) {
2760 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2761 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2762 continue;
2763 n++;
1bfcb10f
HX
2764 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2765 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
80c9abaa
SS
2766 continue;
2767 /* update endpoints */
2768 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2769 sizeof(pol->xfrm_vec[i].id.daddr));
2770 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2771 sizeof(pol->xfrm_vec[i].saddr));
2772 pol->xfrm_vec[i].encap_family = mp->new_family;
2773 /* flush bundles */
2774 while ((dst = pol->bundles) != NULL) {
2775 pol->bundles = dst->next;
2776 dst_free(dst);
2777 }
2778 }
2779 }
2780
2781 write_unlock_bh(&pol->lock);
2782
2783 if (!n)
2784 return -ENODATA;
2785
2786 return 0;
2787}
2788
2789static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2790{
2791 int i, j;
2792
2793 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2794 return -EINVAL;
2795
2796 for (i = 0; i < num_migrate; i++) {
2797 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2798 m[i].old_family) == 0) &&
2799 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2800 m[i].old_family) == 0))
2801 return -EINVAL;
2802 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2803 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2804 return -EINVAL;
2805
2806 /* check if there is any duplicated entry */
2807 for (j = i + 1; j < num_migrate; j++) {
2808 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2809 sizeof(m[i].old_daddr)) &&
2810 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2811 sizeof(m[i].old_saddr)) &&
2812 m[i].proto == m[j].proto &&
2813 m[i].mode == m[j].mode &&
2814 m[i].reqid == m[j].reqid &&
2815 m[i].old_family == m[j].old_family)
2816 return -EINVAL;
2817 }
2818 }
2819
2820 return 0;
2821}
2822
2823int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
13c1d189
AE
2824 struct xfrm_migrate *m, int num_migrate,
2825 struct xfrm_kmaddress *k)
80c9abaa
SS
2826{
2827 int i, err, nx_cur = 0, nx_new = 0;
2828 struct xfrm_policy *pol = NULL;
2829 struct xfrm_state *x, *xc;
2830 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2831 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2832 struct xfrm_migrate *mp;
2833
2834 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2835 goto out;
2836
2837 /* Stage 1 - find policy */
2838 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2839 err = -ENOENT;
2840 goto out;
2841 }
2842
2843 /* Stage 2 - find and update state(s) */
2844 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2845 if ((x = xfrm_migrate_state_find(mp))) {
2846 x_cur[nx_cur] = x;
2847 nx_cur++;
2848 if ((xc = xfrm_state_migrate(x, mp))) {
2849 x_new[nx_new] = xc;
2850 nx_new++;
2851 } else {
2852 err = -ENODATA;
2853 goto restore_state;
2854 }
2855 }
2856 }
2857
2858 /* Stage 3 - update policy */
2859 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2860 goto restore_state;
2861
2862 /* Stage 4 - delete old state(s) */
2863 if (nx_cur) {
2864 xfrm_states_put(x_cur, nx_cur);
2865 xfrm_states_delete(x_cur, nx_cur);
2866 }
2867
2868 /* Stage 5 - announce */
13c1d189 2869 km_migrate(sel, dir, type, m, num_migrate, k);
80c9abaa
SS
2870
2871 xfrm_pol_put(pol);
2872
2873 return 0;
2874out:
2875 return err;
2876
2877restore_state:
2878 if (pol)
2879 xfrm_pol_put(pol);
2880 if (nx_cur)
2881 xfrm_states_put(x_cur, nx_cur);
2882 if (nx_new)
2883 xfrm_states_delete(x_new, nx_new);
2884
2885 return err;
2886}
e610e679 2887EXPORT_SYMBOL(xfrm_migrate);
80c9abaa 2888#endif
This page took 0.732431 seconds and 5 git commands to generate.