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