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