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