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