blob: 15d73e47cc2c6ee2241453362f8b2b5af715bb9f [file] [log] [blame]
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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
Trent Jaegerdf718372005-12-13 23:12:27 -080013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Herbert Xu66cdb3c2007-11-13 21:37:28 -080016#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#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>
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -080024#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
David S. Miller2518c7c2006-08-24 04:45:07 -070026#include <linux/cache.h>
Paul Moore68277ac2007-12-20 20:49:33 -080027#include <linux/audit.h>
Herbert Xu25ee3282007-12-11 09:32:34 -080028#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/xfrm.h>
30#include <net/ip.h>
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080031#ifdef CONFIG_XFRM_STATISTICS
32#include <net/snmp.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David S. Miller44e36b42006-08-24 04:50:50 -070035#include "xfrm_hash.h"
36
David S. Milleraad0e0b2007-05-25 00:42:49 -070037int sysctl_xfrm_larval_drop __read_mostly;
David S. Miller14e50e52007-05-24 18:17:54 -070038
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080039#ifdef CONFIG_XFRM_STATISTICS
40DEFINE_SNMP_STAT(struct linux_xfrm_mib, xfrm_statistics) __read_mostly;
41EXPORT_SYMBOL(xfrm_statistics);
42#endif
43
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080044DEFINE_MUTEX(xfrm_cfg_mutex);
45EXPORT_SYMBOL(xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47static DEFINE_RWLOCK(xfrm_policy_lock);
48
Timo Teras4c563f72008-02-28 21:31:08 -080049static struct list_head xfrm_policy_bytype[XFRM_POLICY_TYPE_MAX];
David S. Miller2518c7c2006-08-24 04:45:07 -070050unsigned int xfrm_policy_count[XFRM_POLICY_MAX*2];
51EXPORT_SYMBOL(xfrm_policy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
54static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
55
Christoph Lametere18b8902006-12-06 20:33:20 -080056static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static struct work_struct xfrm_policy_gc_work;
David S. Miller2518c7c2006-08-24 04:45:07 -070059static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static 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);
Herbert Xu25ee3282007-12-11 09:32:34 -080064static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Andrew Morton77681022006-11-08 22:46:26 -080066static 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
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900100static inline struct dst_entry *__xfrm_dst_lookup(int tos,
101 xfrm_address_t *saddr,
102 xfrm_address_t *daddr,
103 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800105 struct xfrm_policy_afinfo *afinfo;
106 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Herbert Xu25ee3282007-12-11 09:32:34 -0800108 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800110 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800112 dst = afinfo->dst_lookup(tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900115
116 return dst;
117}
118
119static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
120 xfrm_address_t *prev_saddr,
121 xfrm_address_t *prev_daddr,
122 int family)
123{
124 xfrm_address_t *saddr = &x->props.saddr;
125 xfrm_address_t *daddr = &x->id.daddr;
126 struct dst_entry *dst;
127
128 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
129 saddr = x->coaddr;
130 daddr = prev_daddr;
131 }
132 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
133 saddr = prev_saddr;
134 daddr = x->coaddr;
135 }
136
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 }
145
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800146 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static inline unsigned long make_jiffies(long secs)
150{
151 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
152 return MAX_SCHEDULE_TIMEOUT-1;
153 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900154 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157static void xfrm_policy_timer(unsigned long data)
158{
159 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800160 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 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
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700170 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
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)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800210 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 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);
Herbert Xu4666faa2005-06-18 22:43:22 -0700222 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800223 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 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
Al Virodd0fc662005-10-07 07:46:04 +0100232struct xfrm_policy *xfrm_policy_alloc(gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct xfrm_policy *policy;
235
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700236 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 if (policy) {
Timo Teras4c563f72008-02-28 21:31:08 -0800239 INIT_LIST_HEAD(&policy->bytype);
David S. Miller2518c7c2006-08-24 04:45:07 -0700240 INIT_HLIST_NODE(&policy->bydst);
241 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700243 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800244 setup_timer(&policy->timer, xfrm_policy_timer,
245 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247 return policy;
248}
249EXPORT_SYMBOL(xfrm_policy_alloc);
250
251/* Destroy xfrm_policy: descendant resources must be released to this moment. */
252
WANG Cong64c31b32008-01-07 22:34:29 -0800253void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Kris Katterjohn09a62662006-01-08 22:24:28 -0800255 BUG_ON(!policy->dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Kris Katterjohn09a62662006-01-08 22:24:28 -0800257 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (del_timer(&policy->timer))
260 BUG();
261
Timo Teras4c563f72008-02-28 21:31:08 -0800262 write_lock_bh(&xfrm_policy_lock);
263 list_del(&policy->bytype);
264 write_unlock_bh(&xfrm_policy_lock);
265
Trent Jaegerdf718372005-12-13 23:12:27 -0800266 security_xfrm_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 kfree(policy);
268}
WANG Cong64c31b32008-01-07 22:34:29 -0800269EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
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
David Howellsc4028952006-11-22 14:57:56 +0000289static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700292 struct hlist_node *entry, *tmp;
293 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700296 gc_list.first = xfrm_policy_gc_list.first;
297 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 spin_unlock_bh(&xfrm_policy_gc_lock);
299
David S. Miller2518c7c2006-08-24 04:45:07 -0700300 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
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);
David S. Miller2518c7c2006-08-24 04:45:07 -0700323 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 spin_unlock(&xfrm_policy_gc_lock);
325
326 schedule_work(&xfrm_policy_gc_work);
327}
328
David S. Miller2518c7c2006-08-24 04:45:07 -0700329struct 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
David S. Miller2518c7c2006-08-24 04:45:07 -0700340static inline unsigned int idx_hash(u32 index)
341{
342 return __idx_hash(index, xfrm_idx_hmask);
343}
344
David S. Miller2518c7c2006-08-24 04:45:07 -0700345static 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
David S. Miller2518c7c2006-08-24 04:45:07 -0700363static void xfrm_dst_hash_transfer(struct hlist_head *list,
364 struct hlist_head *ndsttable,
365 unsigned int nhashmask)
366{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800367 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700368 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800369 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700370
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800371redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700372 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);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800377 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;
David S. Miller2518c7c2006-08-24 04:45:07 -0700392 }
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;
David S. Miller44e36b42006-08-24 04:50:50 -0700421 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700422 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
David S. Miller44e36b42006-08-24 04:50:50 -0700437 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700438}
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;
David S. Miller44e36b42006-08-24 04:50:50 -0700446 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700447 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
David S. Miller44e36b42006-08-24 04:50:50 -0700462 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700463}
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
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700491void xfrm_spd_getinfo(struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700492{
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);
David S. Miller2518c7c2006-08-24 04:45:07 -0700505
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700506static DEFINE_MUTEX(hash_resize_mutex);
David Howellsc4028952006-11-22 14:57:56 +0000507static void xfrm_hash_resize(struct work_struct *__unused)
David S. Miller2518c7c2006-08-24 04:45:07 -0700508{
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
David Howellsc4028952006-11-22 14:57:56 +0000524static DECLARE_WORK(xfrm_hash_work, xfrm_hash_resize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/* Generate new index... KAME seems to generate them ordered by cost
527 * of an absolute inpredictability of ordering of rules. This will not pass. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700528static u32 xfrm_gen_index(u8 type, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 static u32 idx_generator;
531
532 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700533 struct hlist_node *entry;
534 struct hlist_head *list;
535 struct xfrm_policy *p;
536 u32 idx;
537 int found;
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 idx = (idx_generator | dir);
540 idx_generator += 8;
541 if (idx == 0)
542 idx = 8;
David S. Miller2518c7c2006-08-24 04:45:07 -0700543 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700551 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return idx;
553 }
554}
555
David S. Miller2518c7c2006-08-24 04:45:07 -0700556static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
572{
David S. Miller2518c7c2006-08-24 04:45:07 -0700573 struct xfrm_policy *pol;
574 struct xfrm_policy *delpol;
575 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800576 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800577 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700580 chain = policy_hash_bysel(&policy->selector, policy->family, dir);
581 delpol = NULL;
582 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700583 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800584 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700585 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800586 xfrm_sec_ctx_match(pol->security, policy->security) &&
587 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (excl) {
589 write_unlock_bh(&xfrm_policy_lock);
590 return -EEXIST;
591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 delpol = pol;
593 if (policy->priority > pol->priority)
594 continue;
595 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800596 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 continue;
598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (delpol)
600 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700603 hlist_add_after(newpos, &policy->bydst);
604 else
605 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 xfrm_pol_hold(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700607 xfrm_policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700609 if (delpol) {
610 hlist_del(&delpol->bydst);
611 hlist_del(&delpol->byidx);
612 xfrm_policy_count[dir]--;
613 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700614 policy->index = delpol ? delpol->index : xfrm_gen_index(policy->type, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700615 hlist_add_head(&policy->byidx, xfrm_policy_byidx+idx_hash(policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800616 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 policy->curlft.use_time = 0;
618 if (!mod_timer(&policy->timer, jiffies + HZ))
619 xfrm_pol_hold(policy);
Timo Teras4c563f72008-02-28 21:31:08 -0800620 list_add_tail(&policy->bytype, &xfrm_policy_bytype[policy->type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 write_unlock_bh(&xfrm_policy_lock);
622
David S. Miller9b78a822005-12-22 07:39:48 -0800623 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 xfrm_policy_kill(delpol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700625 else if (xfrm_bydst_should_resize(dir, NULL))
626 schedule_work(&xfrm_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800627
628 read_lock_bh(&xfrm_policy_lock);
629 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700630 entry = &policy->bydst;
631 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800632 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
David S. Miller9b78a822005-12-22 07:39:48 -0800647 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return 0;
657}
658EXPORT_SYMBOL(xfrm_policy_insert);
659
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700660struct xfrm_policy *xfrm_policy_bysel_ctx(u8 type, int dir,
661 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800662 struct xfrm_sec_ctx *ctx, int delete,
663 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
David S. Miller2518c7c2006-08-24 04:45:07 -0700665 struct xfrm_policy *pol, *ret;
666 struct hlist_head *chain;
667 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Eric Parisef41aaa2007-03-07 15:37:58 -0800669 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700671 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)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700678 if (delete) {
Eric Parisef41aaa2007-03-07 15:37:58 -0800679 *err = security_xfrm_policy_delete(pol);
680 if (*err) {
681 write_unlock_bh(&xfrm_policy_lock);
682 return pol;
683 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700684 hlist_del(&pol->bydst);
685 hlist_del(&pol->byidx);
686 xfrm_policy_count[dir]--;
687 }
688 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690 }
691 }
692 write_unlock_bh(&xfrm_policy_lock);
693
David S. Miller2518c7c2006-08-24 04:45:07 -0700694 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700696 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700698 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
Trent Jaegerdf718372005-12-13 23:12:27 -0800700EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Eric Parisef41aaa2007-03-07 15:37:58 -0800702struct xfrm_policy *xfrm_policy_byid(u8 type, int dir, u32 id, int delete,
703 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
David S. Miller2518c7c2006-08-24 04:45:07 -0700705 struct xfrm_policy *pol, *ret;
706 struct hlist_head *chain;
707 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Herbert Xub5505c62007-05-14 02:15:47 -0700709 *err = -ENOENT;
710 if (xfrm_policy_id2dir(id) != dir)
711 return NULL;
712
Eric Parisef41aaa2007-03-07 15:37:58 -0800713 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700715 chain = xfrm_policy_byidx + idx_hash(id);
716 ret = NULL;
717 hlist_for_each_entry(pol, entry, chain, byidx) {
718 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700720 if (delete) {
Eric Parisef41aaa2007-03-07 15:37:58 -0800721 *err = security_xfrm_policy_delete(pol);
722 if (*err) {
723 write_unlock_bh(&xfrm_policy_lock);
724 return pol;
725 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700726 hlist_del(&pol->bydst);
727 hlist_del(&pol->byidx);
728 xfrm_policy_count[dir]--;
729 }
730 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 break;
732 }
733 }
734 write_unlock_bh(&xfrm_policy_lock);
735
David S. Miller2518c7c2006-08-24 04:45:07 -0700736 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700738 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700740 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742EXPORT_SYMBOL(xfrm_policy_byid);
743
Joy Latten4aa2e622007-06-04 19:05:57 -0400744#ifdef CONFIG_SECURITY_NETWORK_XFRM
745static inline int
746xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Joy Latten4aa2e622007-06-04 19:05:57 -0400748 int dir, err = 0;
749
750 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
751 struct xfrm_policy *pol;
752 struct hlist_node *entry;
753 int i;
754
755 hlist_for_each_entry(pol, entry,
756 &xfrm_policy_inexact[dir], bydst) {
757 if (pol->type != type)
758 continue;
759 err = security_xfrm_policy_delete(pol);
760 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700761 xfrm_audit_policy_delete(pol, 0,
762 audit_info->loginuid,
763 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400764 return err;
765 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900766 }
Joy Latten4aa2e622007-06-04 19:05:57 -0400767 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
768 hlist_for_each_entry(pol, entry,
769 xfrm_policy_bydst[dir].table + i,
770 bydst) {
771 if (pol->type != type)
772 continue;
773 err = security_xfrm_policy_delete(pol);
774 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700775 xfrm_audit_policy_delete(pol, 0,
776 audit_info->loginuid,
777 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400778 return err;
779 }
780 }
781 }
782 }
783 return err;
784}
785#else
786static inline int
787xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
788{
789 return 0;
790}
791#endif
792
793int xfrm_policy_flush(u8 type, struct xfrm_audit *audit_info)
794{
795 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400798
799 err = xfrm_policy_flush_secctx_check(type, audit_info);
800 if (err)
801 goto out;
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700804 struct xfrm_policy *pol;
805 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700806 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700807
David S. Millerae8c0572006-10-03 16:00:26 -0700808 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700809 again1:
810 hlist_for_each_entry(pol, entry,
811 &xfrm_policy_inexact[dir], bydst) {
812 if (pol->type != type)
813 continue;
814 hlist_del(&pol->bydst);
815 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 write_unlock_bh(&xfrm_policy_lock);
817
Joy Lattenab5f5e82007-09-17 11:51:22 -0700818 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
819 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600820
David S. Miller2518c7c2006-08-24 04:45:07 -0700821 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700822 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700825 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700827
828 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
829 again2:
830 hlist_for_each_entry(pol, entry,
831 xfrm_policy_bydst[dir].table + i,
832 bydst) {
833 if (pol->type != type)
834 continue;
835 hlist_del(&pol->bydst);
836 hlist_del(&pol->byidx);
837 write_unlock_bh(&xfrm_policy_lock);
838
Joy Lattenab5f5e82007-09-17 11:51:22 -0700839 xfrm_audit_policy_delete(pol, 1,
840 audit_info->loginuid,
841 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700842 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700843 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700844
845 write_lock_bh(&xfrm_policy_lock);
846 goto again2;
847 }
848 }
849
David S. Millerae8c0572006-10-03 16:00:26 -0700850 xfrm_policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400853out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400855 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857EXPORT_SYMBOL(xfrm_policy_flush);
858
Timo Teras4c563f72008-02-28 21:31:08 -0800859int xfrm_policy_walk(struct xfrm_policy_walk *walk,
860 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 void *data)
862{
Timo Teras4c563f72008-02-28 21:31:08 -0800863 struct xfrm_policy *old, *pol, *last = NULL;
864 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Timo Teras4c563f72008-02-28 21:31:08 -0800866 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
867 walk->type != XFRM_POLICY_TYPE_ANY)
868 return -EINVAL;
869
870 if (walk->policy == NULL && walk->count != 0)
871 return 0;
872
873 old = pol = walk->policy;
874 walk->policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 read_lock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Timo Teras4c563f72008-02-28 21:31:08 -0800877 for (; walk->cur_type < XFRM_POLICY_TYPE_MAX; walk->cur_type++) {
878 if (walk->type != walk->cur_type &&
879 walk->type != XFRM_POLICY_TYPE_ANY)
880 continue;
David S. Miller2518c7c2006-08-24 04:45:07 -0700881
Timo Teras4c563f72008-02-28 21:31:08 -0800882 if (pol == NULL) {
883 pol = list_first_entry(&xfrm_policy_bytype[walk->cur_type],
884 struct xfrm_policy, bytype);
885 }
886 list_for_each_entry_from(pol, &xfrm_policy_bytype[walk->cur_type], bytype) {
887 if (pol->dead)
David S. Miller2518c7c2006-08-24 04:45:07 -0700888 continue;
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800889 if (last) {
Timo Teras4c563f72008-02-28 21:31:08 -0800890 error = func(last, xfrm_policy_id2dir(last->index),
891 walk->count, data);
892 if (error) {
893 xfrm_pol_hold(last);
894 walk->policy = last;
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800895 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800896 }
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800897 }
898 last = pol;
Timo Teras4c563f72008-02-28 21:31:08 -0800899 walk->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Timo Teras4c563f72008-02-28 21:31:08 -0800901 pol = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
Timo Teras4c563f72008-02-28 21:31:08 -0800903 if (walk->count == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800904 error = -ENOENT;
905 goto out;
906 }
Timo Teras4c563f72008-02-28 21:31:08 -0800907 if (last)
908 error = func(last, xfrm_policy_id2dir(last->index), 0, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909out:
910 read_unlock_bh(&xfrm_policy_lock);
Timo Teras4c563f72008-02-28 21:31:08 -0800911 if (old != NULL)
912 xfrm_pol_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return error;
914}
915EXPORT_SYMBOL(xfrm_policy_walk);
916
James Morris134b0fc2006-10-05 15:42:27 -0500917/*
918 * Find policy to apply to this flow.
919 *
920 * Returns 0 if policy found, else an -errno.
921 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700922static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
923 u8 type, u16 family, int dir)
924{
925 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500926 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700927
928 if (pol->family != family ||
929 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500930 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700931
932 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500933 if (match)
934 ret = security_xfrm_policy_lookup(pol, fl->secid, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700935
James Morris134b0fc2006-10-05 15:42:27 -0500936 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700937}
938
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700939static struct xfrm_policy *xfrm_policy_lookup_bytype(u8 type, struct flowi *fl,
940 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
James Morris134b0fc2006-10-05 15:42:27 -0500942 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700943 struct xfrm_policy *pol, *ret;
944 xfrm_address_t *daddr, *saddr;
945 struct hlist_node *entry;
946 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700947 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700948
949 daddr = xfrm_flowi_daddr(fl, family);
950 saddr = xfrm_flowi_saddr(fl, family);
951 if (unlikely(!daddr || !saddr))
952 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700955 chain = policy_hash_direct(daddr, saddr, family, dir);
956 ret = NULL;
957 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500958 err = xfrm_policy_match(pol, fl, type, family, dir);
959 if (err) {
960 if (err == -ESRCH)
961 continue;
962 else {
963 ret = ERR_PTR(err);
964 goto fail;
965 }
966 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700967 ret = pol;
968 priority = ret->priority;
969 break;
970 }
971 }
972 chain = &xfrm_policy_inexact[dir];
973 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500974 err = xfrm_policy_match(pol, fl, type, family, dir);
975 if (err) {
976 if (err == -ESRCH)
977 continue;
978 else {
979 ret = ERR_PTR(err);
980 goto fail;
981 }
982 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700983 ret = pol;
984 break;
985 }
986 }
David S. Milleracba48e2006-08-25 15:46:46 -0700987 if (ret)
988 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500989fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700991
David S. Miller2518c7c2006-08-24 04:45:07 -0700992 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700993}
994
James Morris134b0fc2006-10-05 15:42:27 -0500995static int xfrm_policy_lookup(struct flowi *fl, u16 family, u8 dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700996 void **objp, atomic_t **obj_refp)
997{
998 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -0500999 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001000
1001#ifdef CONFIG_XFRM_SUB_POLICY
1002 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001003 if (IS_ERR(pol)) {
1004 err = PTR_ERR(pol);
1005 pol = NULL;
1006 }
1007 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001008 goto end;
1009#endif
1010 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001011 if (IS_ERR(pol)) {
1012 err = PTR_ERR(pol);
1013 pol = NULL;
1014 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001015#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001016end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001017#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if ((*objp = (void *) pol) != NULL)
1019 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001020 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Trent Jaegerdf718372005-12-13 23:12:27 -08001023static inline int policy_to_flow_dir(int dir)
1024{
1025 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001026 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1027 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1028 return dir;
1029 switch (dir) {
1030 default:
1031 case XFRM_POLICY_IN:
1032 return FLOW_DIR_IN;
1033 case XFRM_POLICY_OUT:
1034 return FLOW_DIR_OUT;
1035 case XFRM_POLICY_FWD:
1036 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001037 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001038}
1039
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001040static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 struct xfrm_policy *pol;
1043
1044 read_lock_bh(&xfrm_policy_lock);
1045 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001046 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001048 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001049
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001050 if (match) {
1051 err = security_xfrm_policy_lookup(pol, fl->secid,
1052 policy_to_flow_dir(dir));
1053 if (!err)
1054 xfrm_pol_hold(pol);
1055 else if (err == -ESRCH)
1056 pol = NULL;
1057 else
1058 pol = ERR_PTR(err);
1059 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 pol = NULL;
1061 }
1062 read_unlock_bh(&xfrm_policy_lock);
1063 return pol;
1064}
1065
1066static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1067{
David S. Miller2518c7c2006-08-24 04:45:07 -07001068 struct hlist_head *chain = policy_hash_bysel(&pol->selector,
1069 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001070
David S. Miller2518c7c2006-08-24 04:45:07 -07001071 hlist_add_head(&pol->bydst, chain);
1072 hlist_add_head(&pol->byidx, xfrm_policy_byidx+idx_hash(pol->index));
1073 xfrm_policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001075
1076 if (xfrm_bydst_should_resize(dir, NULL))
1077 schedule_work(&xfrm_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
1080static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1081 int dir)
1082{
David S. Miller2518c7c2006-08-24 04:45:07 -07001083 if (hlist_unhashed(&pol->bydst))
1084 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
David S. Miller2518c7c2006-08-24 04:45:07 -07001086 hlist_del(&pol->bydst);
1087 hlist_del(&pol->byidx);
1088 xfrm_policy_count[dir]--;
1089
1090 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
Herbert Xu4666faa2005-06-18 22:43:22 -07001093int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 write_lock_bh(&xfrm_policy_lock);
1096 pol = __xfrm_policy_unlink(pol, dir);
1097 write_unlock_bh(&xfrm_policy_lock);
1098 if (pol) {
1099 if (dir < XFRM_POLICY_MAX)
1100 atomic_inc(&flow_cache_genid);
1101 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001102 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001104 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
David S. Millera70fcb02006-03-20 19:18:52 -08001106EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1109{
1110 struct xfrm_policy *old_pol;
1111
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001112#ifdef CONFIG_XFRM_SUB_POLICY
1113 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1114 return -EINVAL;
1115#endif
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 write_lock_bh(&xfrm_policy_lock);
1118 old_pol = sk->sk_policy[dir];
1119 sk->sk_policy[dir] = pol;
1120 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001121 pol->curlft.add_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001122 pol->index = xfrm_gen_index(pol->type, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1124 }
1125 if (old_pol)
1126 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1127 write_unlock_bh(&xfrm_policy_lock);
1128
1129 if (old_pol) {
1130 xfrm_policy_kill(old_pol);
1131 }
1132 return 0;
1133}
1134
1135static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1136{
1137 struct xfrm_policy *newp = xfrm_policy_alloc(GFP_ATOMIC);
1138
1139 if (newp) {
1140 newp->selector = old->selector;
Trent Jaegerdf718372005-12-13 23:12:27 -08001141 if (security_xfrm_policy_clone(old, newp)) {
1142 kfree(newp);
1143 return NULL; /* ENOMEM */
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 newp->lft = old->lft;
1146 newp->curlft = old->curlft;
1147 newp->action = old->action;
1148 newp->flags = old->flags;
1149 newp->xfrm_nr = old->xfrm_nr;
1150 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001151 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 memcpy(newp->xfrm_vec, old->xfrm_vec,
1153 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1154 write_lock_bh(&xfrm_policy_lock);
1155 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1156 write_unlock_bh(&xfrm_policy_lock);
1157 xfrm_pol_put(newp);
1158 }
1159 return newp;
1160}
1161
1162int __xfrm_sk_clone_policy(struct sock *sk)
1163{
1164 struct xfrm_policy *p0 = sk->sk_policy[0],
1165 *p1 = sk->sk_policy[1];
1166
1167 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1168 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1169 return -ENOMEM;
1170 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1171 return -ENOMEM;
1172 return 0;
1173}
1174
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001175static int
1176xfrm_get_saddr(xfrm_address_t *local, xfrm_address_t *remote,
1177 unsigned short family)
1178{
1179 int err;
1180 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1181
1182 if (unlikely(afinfo == NULL))
1183 return -EINVAL;
1184 err = afinfo->get_saddr(local, remote);
1185 xfrm_policy_put_afinfo(afinfo);
1186 return err;
1187}
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189/* Resolve list of templates for the flow, given policy. */
1190
1191static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001192xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1193 struct xfrm_state **xfrm,
1194 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 int nx;
1197 int i, error;
1198 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1199 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001200 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1203 struct xfrm_state *x;
1204 xfrm_address_t *remote = daddr;
1205 xfrm_address_t *local = saddr;
1206 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1207
Joakim Koskela48b8d782007-07-26 00:08:42 -07001208 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1209 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 remote = &tmpl->id.daddr;
1211 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001212 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001213 if (xfrm_addr_any(local, family)) {
1214 error = xfrm_get_saddr(&tmp, remote, family);
1215 if (error)
1216 goto fail;
1217 local = &tmp;
1218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220
1221 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1222
1223 if (x && x->km.state == XFRM_STATE_VALID) {
1224 xfrm[nx++] = x;
1225 daddr = remote;
1226 saddr = local;
1227 continue;
1228 }
1229 if (x) {
1230 error = (x->km.state == XFRM_STATE_ERROR ?
1231 -EINVAL : -EAGAIN);
1232 xfrm_state_put(x);
1233 }
1234
1235 if (!tmpl->optional)
1236 goto fail;
1237 }
1238 return nx;
1239
1240fail:
1241 for (nx--; nx>=0; nx--)
1242 xfrm_state_put(xfrm[nx]);
1243 return error;
1244}
1245
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001246static int
1247xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1248 struct xfrm_state **xfrm,
1249 unsigned short family)
1250{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001251 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1252 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001253 int cnx = 0;
1254 int error;
1255 int ret;
1256 int i;
1257
1258 for (i = 0; i < npols; i++) {
1259 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1260 error = -ENOBUFS;
1261 goto fail;
1262 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001263
1264 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001265 if (ret < 0) {
1266 error = ret;
1267 goto fail;
1268 } else
1269 cnx += ret;
1270 }
1271
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001272 /* found states are sorted for outbound processing */
1273 if (npols > 1)
1274 xfrm_state_sort(xfrm, tpp, cnx, family);
1275
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001276 return cnx;
1277
1278 fail:
1279 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001280 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001281 return error;
1282
1283}
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285/* Check that the bundle accepts the flow and its components are
1286 * still valid.
1287 */
1288
1289static struct dst_entry *
1290xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1291{
1292 struct dst_entry *x;
1293 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1294 if (unlikely(afinfo == NULL))
1295 return ERR_PTR(-EINVAL);
1296 x = afinfo->find_bundle(fl, policy);
1297 xfrm_policy_put_afinfo(afinfo);
1298 return x;
1299}
1300
Herbert Xu25ee3282007-12-11 09:32:34 -08001301static inline int xfrm_get_tos(struct flowi *fl, int family)
1302{
1303 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1304 int tos;
1305
1306 if (!afinfo)
1307 return -EINVAL;
1308
1309 tos = afinfo->get_tos(fl);
1310
1311 xfrm_policy_put_afinfo(afinfo);
1312
1313 return tos;
1314}
1315
1316static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1317{
1318 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1319 struct xfrm_dst *xdst;
1320
1321 if (!afinfo)
1322 return ERR_PTR(-EINVAL);
1323
1324 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1325
1326 xfrm_policy_put_afinfo(afinfo);
1327
1328 return xdst;
1329}
1330
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001331static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1332 int nfheader_len)
1333{
1334 struct xfrm_policy_afinfo *afinfo =
1335 xfrm_policy_get_afinfo(dst->ops->family);
1336 int err;
1337
1338 if (!afinfo)
1339 return -EINVAL;
1340
1341 err = afinfo->init_path(path, dst, nfheader_len);
1342
1343 xfrm_policy_put_afinfo(afinfo);
1344
1345 return err;
1346}
1347
Herbert Xu25ee3282007-12-11 09:32:34 -08001348static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1349{
1350 struct xfrm_policy_afinfo *afinfo =
1351 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1352 int err;
1353
1354 if (!afinfo)
1355 return -EINVAL;
1356
1357 err = afinfo->fill_dst(xdst, dev);
1358
1359 xfrm_policy_put_afinfo(afinfo);
1360
1361 return err;
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1365 * all the metrics... Shortly, bundle a bundle.
1366 */
1367
Herbert Xu25ee3282007-12-11 09:32:34 -08001368static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1369 struct xfrm_state **xfrm, int nx,
1370 struct flowi *fl,
1371 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Herbert Xu25ee3282007-12-11 09:32:34 -08001373 unsigned long now = jiffies;
1374 struct net_device *dev;
1375 struct dst_entry *dst_prev = NULL;
1376 struct dst_entry *dst0 = NULL;
1377 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001379 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001380 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001381 int trailer_len = 0;
1382 int tos;
1383 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001384 xfrm_address_t saddr, daddr;
1385
1386 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001387
1388 tos = xfrm_get_tos(fl, family);
1389 err = tos;
1390 if (tos < 0)
1391 goto put_states;
1392
1393 dst_hold(dst);
1394
1395 for (; i < nx; i++) {
1396 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1397 struct dst_entry *dst1 = &xdst->u.dst;
1398
1399 err = PTR_ERR(xdst);
1400 if (IS_ERR(xdst)) {
1401 dst_release(dst);
1402 goto put_states;
1403 }
1404
1405 if (!dst_prev)
1406 dst0 = dst1;
1407 else {
1408 dst_prev->child = dst_clone(dst1);
1409 dst1->flags |= DST_NOHASH;
1410 }
1411
1412 xdst->route = dst;
1413 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1414
1415 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1416 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001417 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1418 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001419 err = PTR_ERR(dst);
1420 if (IS_ERR(dst))
1421 goto put_states;
1422 } else
1423 dst_hold(dst);
1424
1425 dst1->xfrm = xfrm[i];
1426 xdst->genid = xfrm[i]->genid;
1427
1428 dst1->obsolete = -1;
1429 dst1->flags |= DST_HOST;
1430 dst1->lastuse = now;
1431
1432 dst1->input = dst_discard;
1433 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1434
1435 dst1->next = dst_prev;
1436 dst_prev = dst1;
1437
1438 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001439 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1440 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001441 trailer_len += xfrm[i]->props.trailer_len;
1442 }
1443
1444 dst_prev->child = dst;
1445 dst0->path = dst;
1446
1447 err = -ENODEV;
1448 dev = dst->dev;
1449 if (!dev)
1450 goto free_dst;
1451
1452 /* Copy neighbout for reachability confirmation */
1453 dst0->neighbour = neigh_clone(dst->neighbour);
1454
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001455 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001456 xfrm_init_pmtu(dst_prev);
1457
1458 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1459 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1460
1461 err = xfrm_fill_dst(xdst, dev);
1462 if (err)
1463 goto free_dst;
1464
1465 dst_prev->header_len = header_len;
1466 dst_prev->trailer_len = trailer_len;
1467 header_len -= xdst->u.dst.xfrm->props.header_len;
1468 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1469 }
1470
1471out:
1472 return dst0;
1473
1474put_states:
1475 for (; i < nx; i++)
1476 xfrm_state_put(xfrm[i]);
1477free_dst:
1478 if (dst0)
1479 dst_free(dst0);
1480 dst0 = ERR_PTR(err);
1481 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001484static int inline
1485xfrm_dst_alloc_copy(void **target, void *src, int size)
1486{
1487 if (!*target) {
1488 *target = kmalloc(size, GFP_ATOMIC);
1489 if (!*target)
1490 return -ENOMEM;
1491 }
1492 memcpy(*target, src, size);
1493 return 0;
1494}
1495
1496static int inline
1497xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1498{
1499#ifdef CONFIG_XFRM_SUB_POLICY
1500 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1501 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1502 sel, sizeof(*sel));
1503#else
1504 return 0;
1505#endif
1506}
1507
1508static int inline
1509xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1510{
1511#ifdef CONFIG_XFRM_SUB_POLICY
1512 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1513 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1514#else
1515 return 0;
1516#endif
1517}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519static int stale_bundle(struct dst_entry *dst);
1520
1521/* Main function: finds/creates a bundle for given flow.
1522 *
1523 * At the moment we eat a raw IP route. Mostly to speed up lookups
1524 * on interfaces with disabled IPsec.
1525 */
David S. Miller14e50e52007-05-24 18:17:54 -07001526int __xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1527 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001530 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1531 int npols;
1532 int pol_dead;
1533 int xfrm_nr;
1534 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1536 struct dst_entry *dst, *dst_orig = *dst_p;
1537 int nx = 0;
1538 int err;
1539 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001540 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001541 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543restart:
1544 genid = atomic_read(&flow_cache_genid);
1545 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001546 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1547 pols[pi] = NULL;
1548 npols = 0;
1549 pol_dead = 0;
1550 xfrm_nr = 0;
1551
Thomas Graff7944fb2007-08-25 13:46:55 -07001552 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001553 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001554 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001555 if (IS_ERR(policy)) {
1556 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001557 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001558 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 if (!policy) {
1562 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001563 if ((dst_orig->flags & DST_NOXFRM) ||
1564 !xfrm_policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001565 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001567 policy = flow_cache_lookup(fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001568 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001569 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001570 if (IS_ERR(policy)) {
1571 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001572 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575
1576 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001577 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001579 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001580 pols[0] = policy;
1581 npols ++;
1582 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Herbert Xuaef21782007-12-13 09:30:59 -08001584 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001585 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1586 goto error;
1587
1588 policy->curlft.use_time = get_seconds();
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001591 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 case XFRM_POLICY_BLOCK:
1593 /* Prohibit the flow */
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001594 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye1044112005-09-08 15:11:55 -07001595 err = -EPERM;
1596 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001599#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (policy->xfrm_nr == 0) {
1601 /* Flow passes not transformed. */
1602 xfrm_pol_put(policy);
1603 return 0;
1604 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 /* Try to find matching bundle.
1608 *
1609 * LATER: help from flow cache. It is optional, this
1610 * is required only for output policy.
1611 */
1612 dst = xfrm_find_bundle(fl, policy, family);
1613 if (IS_ERR(dst)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001614 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye1044112005-09-08 15:11:55 -07001615 err = PTR_ERR(dst);
1616 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
1618
1619 if (dst)
1620 break;
1621
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001622#ifdef CONFIG_XFRM_SUB_POLICY
1623 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1624 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1625 fl, family,
1626 XFRM_POLICY_OUT);
1627 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001628 if (IS_ERR(pols[1])) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001629 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001630 err = PTR_ERR(pols[1]);
1631 goto error;
1632 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001633 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001634 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001635 err = -EPERM;
1636 goto error;
1637 }
1638 npols ++;
1639 xfrm_nr += pols[1]->xfrm_nr;
1640 }
1641 }
1642
1643 /*
1644 * Because neither flowi nor bundle information knows about
1645 * transformation template size. On more than one policy usage
1646 * we can realize whether all of them is bypass or not after
1647 * they are searched. See above not-transformed bypass
1648 * is surrounded by non-sub policy configuration, too.
1649 */
1650 if (xfrm_nr == 0) {
1651 /* Flow passes not transformed. */
1652 xfrm_pols_put(pols, npols);
1653 return 0;
1654 }
1655
1656#endif
1657 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 if (unlikely(nx<0)) {
1660 err = nx;
David S. Miller14e50e52007-05-24 18:17:54 -07001661 if (err == -EAGAIN && sysctl_xfrm_larval_drop) {
1662 /* EREMOTE tells the caller to generate
1663 * a one-shot blackhole route.
1664 */
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001665 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001666 xfrm_pol_put(policy);
1667 return -EREMOTE;
1668 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001669 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 DECLARE_WAITQUEUE(wait, current);
1671
1672 add_wait_queue(&km_waitq, &wait);
1673 set_current_state(TASK_INTERRUPTIBLE);
1674 schedule();
1675 set_current_state(TASK_RUNNING);
1676 remove_wait_queue(&km_waitq, &wait);
1677
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001678 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 if (nx == -EAGAIN && signal_pending(current)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001681 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 err = -ERESTART;
1683 goto error;
1684 }
1685 if (nx == -EAGAIN ||
1686 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001687 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 goto restart;
1689 }
1690 err = nx;
1691 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001692 if (err < 0) {
1693 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 }
1697 if (nx == 0) {
1698 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001699 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return 0;
1701 }
1702
Herbert Xu25ee3282007-12-11 09:32:34 -08001703 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1704 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001705 if (IS_ERR(dst)) {
1706 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001710 for (pi = 0; pi < npols; pi++) {
1711 read_lock_bh(&pols[pi]->lock);
1712 pol_dead |= pols[pi]->dead;
1713 read_unlock_bh(&pols[pi]->lock);
1714 }
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001717 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 /* Wow! While we worked on resolving, this
1719 * policy has gone. Retry. It is not paranoia,
1720 * we just cannot enlist new bundle to dead object.
1721 * We can't enlist stable bundles either.
1722 */
1723 write_unlock_bh(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (dst)
1725 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001726
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001727 if (pol_dead)
1728 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD);
1729 else
1730 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001731 err = -EHOSTUNREACH;
1732 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001734
1735 if (npols > 1)
1736 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1737 else
1738 err = xfrm_dst_update_origin(dst, fl);
1739 if (unlikely(err)) {
1740 write_unlock_bh(&policy->lock);
1741 if (dst)
1742 dst_free(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001743 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001744 goto error;
1745 }
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 dst->next = policy->bundles;
1748 policy->bundles = dst;
1749 dst_hold(dst);
1750 write_unlock_bh(&policy->lock);
1751 }
1752 *dst_p = dst;
1753 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001754 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return 0;
1756
1757error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001758 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001759dropdst:
1760 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 *dst_p = NULL;
1762 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001763
1764nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001765 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001766 if (flags & XFRM_LOOKUP_ICMP)
1767 goto dropdst;
1768 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
David S. Miller14e50e52007-05-24 18:17:54 -07001770EXPORT_SYMBOL(__xfrm_lookup);
1771
1772int xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1773 struct sock *sk, int flags)
1774{
1775 int err = __xfrm_lookup(dst_p, fl, sk, flags);
1776
1777 if (err == -EREMOTE) {
1778 dst_release(*dst_p);
1779 *dst_p = NULL;
1780 err = -EAGAIN;
1781 }
1782
1783 return err;
1784}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785EXPORT_SYMBOL(xfrm_lookup);
1786
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001787static inline int
1788xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1789{
1790 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001791
1792 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1793 return 0;
1794 x = skb->sp->xvec[idx];
1795 if (!x->type->reject)
1796 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001797 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001798}
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800/* When skb is transformed back to its "native" form, we have to
1801 * check policy restrictions. At the moment we make this in maximally
1802 * stupid way. Shame on me. :-) Of course, connected sockets must
1803 * have policy cached at them.
1804 */
1805
1806static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001807xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 unsigned short family)
1809{
1810 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001811 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return x->id.proto == tmpl->id.proto &&
1813 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1814 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1815 x->props.mode == tmpl->mode &&
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001816 ((tmpl->aalgos & (1<<x->props.aalgo)) ||
1817 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001818 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1819 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
1821
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001822/*
1823 * 0 or more than 0 is returned when validation is succeeded (either bypass
1824 * because of optional transport mode, or next index of the mathced secpath
1825 * state with the template.
1826 * -1 is returned when no matching template is found.
1827 * Otherwise "-2 - errored_index" is returned.
1828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829static inline int
1830xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1831 unsigned short family)
1832{
1833 int idx = start;
1834
1835 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001836 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return start;
1838 } else
1839 start = -1;
1840 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001841 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001843 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1844 if (start == -1)
1845 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849 return start;
1850}
1851
Herbert Xud5422ef2007-12-12 10:44:16 -08001852int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1853 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
1855 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001856 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 if (unlikely(afinfo == NULL))
1859 return -EAFNOSUPPORT;
1860
Herbert Xud5422ef2007-12-12 10:44:16 -08001861 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001862 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001864 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
Herbert Xud5422ef2007-12-12 10:44:16 -08001866EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001868static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
1870 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001871 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001872 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876
1877 return 0;
1878}
1879
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001880int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 unsigned short family)
1882{
1883 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001884 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1885 int npols = 0;
1886 int xfrm_nr;
1887 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001888 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001890 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001891 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Herbert Xud5422ef2007-12-12 10:44:16 -08001893 reverse = dir & ~XFRM_POLICY_MASK;
1894 dir &= XFRM_POLICY_MASK;
1895 fl_dir = policy_to_flow_dir(dir);
1896
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001897 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
1898 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001900 }
1901
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001902 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 /* First, check used SA against their selectors. */
1905 if (skb->sp) {
1906 int i;
1907
1908 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001909 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001910 if (!xfrm_selector_match(&x->sel, &fl, family)) {
1911 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915 }
1916
1917 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001918 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001919 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001920 if (IS_ERR(pol)) {
1921 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001922 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001923 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 if (!pol)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001927 pol = flow_cache_lookup(&fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 xfrm_policy_lookup);
1929
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001930 if (IS_ERR(pol)) {
1931 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001932 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001933 }
James Morris134b0fc2006-10-05 15:42:27 -05001934
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001935 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001936 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001937 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001938 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001939 return 0;
1940 }
1941 return 1;
1942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
James Morris9d729f72007-03-04 16:12:44 -08001944 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001946 pols[0] = pol;
1947 npols ++;
1948#ifdef CONFIG_XFRM_SUB_POLICY
1949 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1950 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1951 &fl, family,
1952 XFRM_POLICY_IN);
1953 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001954 if (IS_ERR(pols[1])) {
1955 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001956 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001957 }
James Morris9d729f72007-03-04 16:12:44 -08001958 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001959 npols ++;
1960 }
1961 }
1962#endif
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if (pol->action == XFRM_POLICY_ALLOW) {
1965 struct sec_path *sp;
1966 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001967 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001968 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001969 struct xfrm_tmpl **tpp = tp;
1970 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 int i, k;
1972
1973 if ((sp = skb->sp) == NULL)
1974 sp = &dummy;
1975
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001976 for (pi = 0; pi < npols; pi++) {
1977 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001978 pols[pi]->action != XFRM_POLICY_ALLOW) {
1979 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001980 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001981 }
1982 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
1983 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001984 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001985 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001986 for (i = 0; i < pols[pi]->xfrm_nr; i++)
1987 tpp[ti++] = &pols[pi]->xfrm_vec[i];
1988 }
1989 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001990 if (npols > 1) {
1991 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
1992 tpp = stp;
1993 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 /* For each tunnel xfrm, find the first matching tmpl.
1996 * For each tmpl before that, find corresponding xfrm.
1997 * Order is _important_. Later we will implement
1998 * some barriers, but at the moment barriers
1999 * are implied between each two transformations.
2000 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002001 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2002 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002003 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002004 if (k < -1)
2005 /* "-2 - errored_index" returned */
2006 xerr_idx = -(2+k);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002007 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
2011
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002012 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2013 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002017 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return 1;
2019 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002020 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002023 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002024reject_error:
2025 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return 0;
2027}
2028EXPORT_SYMBOL(__xfrm_policy_check);
2029
2030int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2031{
2032 struct flowi fl;
2033
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002034 if (xfrm_decode_session(skb, &fl, family) < 0) {
2035 /* XXX: we should have something like FWDHDRERROR here. */
2036 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 return xfrm_lookup(&skb->dst, &fl, NULL, 0) == 0;
2041}
2042EXPORT_SYMBOL(__xfrm_route_forward);
2043
David S. Millerd49c73c2006-08-13 18:55:53 -07002044/* Optimize later using cookies and generation ids. */
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2047{
David S. Millerd49c73c2006-08-13 18:55:53 -07002048 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2049 * to "-1" to force all XFRM destinations to get validated by
2050 * dst_ops->check on every use. We do this because when a
2051 * normal route referenced by an XFRM dst is obsoleted we do
2052 * not go looking around for all parent referencing XFRM dsts
2053 * so that we can invalidate them. It is just too much work.
2054 * Instead we make the checks here on every use. For example:
2055 *
2056 * XFRM dst A --> IPv4 dst X
2057 *
2058 * X is the "xdst->route" of A (X is also the "dst->path" of A
2059 * in this example). If X is marked obsolete, "A" will not
2060 * notice. That's what we are validating here via the
2061 * stale_bundle() check.
2062 *
2063 * When a policy's bundle is pruned, we dst_free() the XFRM
2064 * dst which causes it's ->obsolete field to be set to a
2065 * positive non-zero integer. If an XFRM dst has been pruned
2066 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002067 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002068 if (dst->obsolete < 0 && !stale_bundle(dst))
2069 return dst;
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return NULL;
2072}
2073
2074static int stale_bundle(struct dst_entry *dst)
2075{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002076 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
Herbert Xuaabc9762005-05-03 16:27:10 -07002079void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002082 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002083 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 dev_put(dev);
2085 }
2086}
Herbert Xuaabc9762005-05-03 16:27:10 -07002087EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089static void xfrm_link_failure(struct sk_buff *skb)
2090{
2091 /* Impossible. Such dst must be popped before reaches point of failure. */
2092 return;
2093}
2094
2095static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2096{
2097 if (dst) {
2098 if (dst->obsolete) {
2099 dst_release(dst);
2100 dst = NULL;
2101 }
2102 }
2103 return dst;
2104}
2105
David S. Miller2518c7c2006-08-24 04:45:07 -07002106static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2107{
2108 struct dst_entry *dst, **dstp;
2109
2110 write_lock(&pol->lock);
2111 dstp = &pol->bundles;
2112 while ((dst=*dstp) != NULL) {
2113 if (func(dst)) {
2114 *dstp = dst->next;
2115 dst->next = *gc_list_p;
2116 *gc_list_p = dst;
2117 } else {
2118 dstp = &dst->next;
2119 }
2120 }
2121 write_unlock(&pol->lock);
2122}
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
2125{
David S. Miller2518c7c2006-08-24 04:45:07 -07002126 struct dst_entry *gc_list = NULL;
2127 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002130 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2131 struct xfrm_policy *pol;
2132 struct hlist_node *entry;
2133 struct hlist_head *table;
2134 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002135
David S. Miller2518c7c2006-08-24 04:45:07 -07002136 hlist_for_each_entry(pol, entry,
2137 &xfrm_policy_inexact[dir], bydst)
2138 prune_one_bundle(pol, func, &gc_list);
2139
2140 table = xfrm_policy_bydst[dir].table;
2141 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
2142 hlist_for_each_entry(pol, entry, table + i, bydst)
2143 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145 }
2146 read_unlock_bh(&xfrm_policy_lock);
2147
2148 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002149 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 gc_list = dst->next;
2151 dst_free(dst);
2152 }
2153}
2154
2155static int unused_bundle(struct dst_entry *dst)
2156{
2157 return !atomic_read(&dst->__refcnt);
2158}
2159
2160static void __xfrm_garbage_collect(void)
2161{
2162 xfrm_prune_bundles(unused_bundle);
2163}
2164
David S. Miller1c095392006-08-24 03:30:28 -07002165static int xfrm_flush_bundles(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 xfrm_prune_bundles(stale_bundle);
2168 return 0;
2169}
2170
Herbert Xu25ee3282007-12-11 09:32:34 -08002171static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
2173 do {
2174 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2175 u32 pmtu, route_mtu_cached;
2176
2177 pmtu = dst_mtu(dst->child);
2178 xdst->child_mtu_cached = pmtu;
2179
2180 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2181
2182 route_mtu_cached = dst_mtu(xdst->route);
2183 xdst->route_mtu_cached = route_mtu_cached;
2184
2185 if (pmtu > route_mtu_cached)
2186 pmtu = route_mtu_cached;
2187
2188 dst->metrics[RTAX_MTU-1] = pmtu;
2189 } while ((dst = dst->next));
2190}
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192/* Check that the bundle accepts the flow and its components are
2193 * still valid.
2194 */
2195
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002196int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2197 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
2199 struct dst_entry *dst = &first->u.dst;
2200 struct xfrm_dst *last;
2201 u32 mtu;
2202
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002203 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 (dst->dev && !netif_running(dst->dev)))
2205 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002206#ifdef CONFIG_XFRM_SUB_POLICY
2207 if (fl) {
2208 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2209 return 0;
2210 if (first->partner &&
2211 !xfrm_selector_match(first->partner, fl, family))
2212 return 0;
2213 }
2214#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 last = NULL;
2217
2218 do {
2219 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2220
2221 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2222 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002223 if (fl && pol &&
2224 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2227 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002228 if (xdst->genid != dst->xfrm->genid)
2229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Herbert Xu1bfcb102007-10-17 21:31:50 -07002231 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002232 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002233 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2234 return 0;
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 mtu = dst_mtu(dst->child);
2237 if (xdst->child_mtu_cached != mtu) {
2238 last = xdst;
2239 xdst->child_mtu_cached = mtu;
2240 }
2241
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002242 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return 0;
2244 mtu = dst_mtu(xdst->route);
2245 if (xdst->route_mtu_cached != mtu) {
2246 last = xdst;
2247 xdst->route_mtu_cached = mtu;
2248 }
2249
2250 dst = dst->child;
2251 } while (dst->xfrm);
2252
2253 if (likely(!last))
2254 return 1;
2255
2256 mtu = last->child_mtu_cached;
2257 for (;;) {
2258 dst = &last->u.dst;
2259
2260 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2261 if (mtu > last->route_mtu_cached)
2262 mtu = last->route_mtu_cached;
2263 dst->metrics[RTAX_MTU-1] = mtu;
2264
2265 if (last == first)
2266 break;
2267
Patrick McHardybd0bf072007-07-18 01:55:52 -07002268 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 last->child_mtu_cached = mtu;
2270 }
2271
2272 return 1;
2273}
2274
2275EXPORT_SYMBOL(xfrm_bundle_ok);
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2278{
2279 int err = 0;
2280 if (unlikely(afinfo == NULL))
2281 return -EINVAL;
2282 if (unlikely(afinfo->family >= NPROTO))
2283 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002284 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2286 err = -ENOBUFS;
2287 else {
2288 struct dst_ops *dst_ops = afinfo->dst_ops;
2289 if (likely(dst_ops->kmem_cachep == NULL))
2290 dst_ops->kmem_cachep = xfrm_dst_cache;
2291 if (likely(dst_ops->check == NULL))
2292 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 if (likely(dst_ops->negative_advice == NULL))
2294 dst_ops->negative_advice = xfrm_negative_advice;
2295 if (likely(dst_ops->link_failure == NULL))
2296 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (likely(afinfo->garbage_collect == NULL))
2298 afinfo->garbage_collect = __xfrm_garbage_collect;
2299 xfrm_policy_afinfo[afinfo->family] = afinfo;
2300 }
Ingo Molnare959d812006-04-28 15:32:29 -07002301 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 return err;
2303}
2304EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2305
2306int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2307{
2308 int err = 0;
2309 if (unlikely(afinfo == NULL))
2310 return -EINVAL;
2311 if (unlikely(afinfo->family >= NPROTO))
2312 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002313 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2315 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2316 err = -EINVAL;
2317 else {
2318 struct dst_ops *dst_ops = afinfo->dst_ops;
2319 xfrm_policy_afinfo[afinfo->family] = NULL;
2320 dst_ops->kmem_cachep = NULL;
2321 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 dst_ops->negative_advice = NULL;
2323 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 afinfo->garbage_collect = NULL;
2325 }
2326 }
Ingo Molnare959d812006-04-28 15:32:29 -07002327 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 return err;
2329}
2330EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2331
2332static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2333{
2334 struct xfrm_policy_afinfo *afinfo;
2335 if (unlikely(family >= NPROTO))
2336 return NULL;
2337 read_lock(&xfrm_policy_afinfo_lock);
2338 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002339 if (unlikely(!afinfo))
2340 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return afinfo;
2342}
2343
2344static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2345{
Herbert Xu546be242006-05-27 23:03:58 -07002346 read_unlock(&xfrm_policy_afinfo_lock);
2347}
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2350{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002351 struct net_device *dev = ptr;
2352
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002353 if (dev_net(dev) != &init_net)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002354 return NOTIFY_DONE;
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 switch (event) {
2357 case NETDEV_DOWN:
2358 xfrm_flush_bundles();
2359 }
2360 return NOTIFY_DONE;
2361}
2362
2363static struct notifier_block xfrm_dev_notifier = {
2364 xfrm_dev_event,
2365 NULL,
2366 0
2367};
2368
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002369#ifdef CONFIG_XFRM_STATISTICS
2370static int __init xfrm_statistics_init(void)
2371{
2372 if (snmp_mib_init((void **)xfrm_statistics,
2373 sizeof(struct linux_xfrm_mib)) < 0)
2374 return -ENOMEM;
2375 return 0;
2376}
2377#endif
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379static void __init xfrm_policy_init(void)
2380{
David S. Miller2518c7c2006-08-24 04:45:07 -07002381 unsigned int hmask, sz;
2382 int dir;
2383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
2385 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002386 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002387 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
David S. Miller2518c7c2006-08-24 04:45:07 -07002389 hmask = 8 - 1;
2390 sz = (hmask+1) * sizeof(struct hlist_head);
2391
David S. Miller44e36b42006-08-24 04:50:50 -07002392 xfrm_policy_byidx = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002393 xfrm_idx_hmask = hmask;
2394 if (!xfrm_policy_byidx)
2395 panic("XFRM: failed to allocate byidx hash\n");
2396
2397 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2398 struct xfrm_policy_hash *htab;
2399
2400 INIT_HLIST_HEAD(&xfrm_policy_inexact[dir]);
2401
2402 htab = &xfrm_policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002403 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002404 htab->hmask = hmask;
2405 if (!htab->table)
2406 panic("XFRM: failed to allocate bydst hash\n");
2407 }
2408
Timo Teras4c563f72008-02-28 21:31:08 -08002409 for (dir = 0; dir < XFRM_POLICY_TYPE_MAX; dir++)
2410 INIT_LIST_HEAD(&xfrm_policy_bytype[dir]);
2411
David Howellsc4028952006-11-22 14:57:56 +00002412 INIT_WORK(&xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 register_netdevice_notifier(&xfrm_dev_notifier);
2414}
2415
2416void __init xfrm_init(void)
2417{
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002418#ifdef CONFIG_XFRM_STATISTICS
2419 xfrm_statistics_init();
2420#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 xfrm_state_init();
2422 xfrm_policy_init();
2423 xfrm_input_init();
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002424#ifdef CONFIG_XFRM_STATISTICS
2425 xfrm_proc_init();
2426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
Joy Lattenab5f5e82007-09-17 11:51:22 -07002429#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd2008-01-12 03:20:03 -08002430static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2431 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002432{
Paul Moore875179f2007-12-01 23:27:18 +11002433 struct xfrm_sec_ctx *ctx = xp->security;
2434 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002435
Paul Moore875179f2007-12-01 23:27:18 +11002436 if (ctx)
2437 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2438 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2439
2440 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002441 case AF_INET:
Paul Moore875179f2007-12-01 23:27:18 +11002442 audit_log_format(audit_buf, " src=" NIPQUAD_FMT,
2443 NIPQUAD(sel->saddr.a4));
2444 if (sel->prefixlen_s != 32)
2445 audit_log_format(audit_buf, " src_prefixlen=%d",
2446 sel->prefixlen_s);
2447 audit_log_format(audit_buf, " dst=" NIPQUAD_FMT,
2448 NIPQUAD(sel->daddr.a4));
2449 if (sel->prefixlen_d != 32)
2450 audit_log_format(audit_buf, " dst_prefixlen=%d",
2451 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002452 break;
2453 case AF_INET6:
Paul Moore875179f2007-12-01 23:27:18 +11002454 audit_log_format(audit_buf, " src=" NIP6_FMT,
2455 NIP6(*(struct in6_addr *)sel->saddr.a6));
2456 if (sel->prefixlen_s != 128)
2457 audit_log_format(audit_buf, " src_prefixlen=%d",
2458 sel->prefixlen_s);
2459 audit_log_format(audit_buf, " dst=" NIP6_FMT,
2460 NIP6(*(struct in6_addr *)sel->daddr.a6));
2461 if (sel->prefixlen_d != 128)
2462 audit_log_format(audit_buf, " dst_prefixlen=%d",
2463 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002464 break;
2465 }
2466}
2467
Paul Moore68277ac2007-12-20 20:49:33 -08002468void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
2469 u32 auid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002470{
2471 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002472
Paul Mooreafeb14b2007-12-21 14:58:11 -08002473 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002474 if (audit_buf == NULL)
2475 return;
Paul Mooreafeb14b2007-12-21 14:58:11 -08002476 xfrm_audit_helper_usrinfo(auid, secid, audit_buf);
2477 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002478 xfrm_audit_common_policyinfo(xp, audit_buf);
2479 audit_log_end(audit_buf);
2480}
2481EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2482
Paul Moore68277ac2007-12-20 20:49:33 -08002483void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
2484 u32 auid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002485{
2486 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002487
Paul Mooreafeb14b2007-12-21 14:58:11 -08002488 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002489 if (audit_buf == NULL)
2490 return;
Paul Mooreafeb14b2007-12-21 14:58:11 -08002491 xfrm_audit_helper_usrinfo(auid, secid, audit_buf);
2492 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002493 xfrm_audit_common_policyinfo(xp, audit_buf);
2494 audit_log_end(audit_buf);
2495}
2496EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2497#endif
2498
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002499#ifdef CONFIG_XFRM_MIGRATE
2500static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2501 struct xfrm_selector *sel_tgt)
2502{
2503 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2504 if (sel_tgt->family == sel_cmp->family &&
2505 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002506 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002507 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2508 sel_cmp->family) == 0 &&
2509 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2510 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2511 return 1;
2512 }
2513 } else {
2514 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2515 return 1;
2516 }
2517 }
2518 return 0;
2519}
2520
2521static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2522 u8 dir, u8 type)
2523{
2524 struct xfrm_policy *pol, *ret = NULL;
2525 struct hlist_node *entry;
2526 struct hlist_head *chain;
2527 u32 priority = ~0U;
2528
2529 read_lock_bh(&xfrm_policy_lock);
2530 chain = policy_hash_direct(&sel->daddr, &sel->saddr, sel->family, dir);
2531 hlist_for_each_entry(pol, entry, chain, bydst) {
2532 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2533 pol->type == type) {
2534 ret = pol;
2535 priority = ret->priority;
2536 break;
2537 }
2538 }
2539 chain = &xfrm_policy_inexact[dir];
2540 hlist_for_each_entry(pol, entry, chain, bydst) {
2541 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2542 pol->type == type &&
2543 pol->priority < priority) {
2544 ret = pol;
2545 break;
2546 }
2547 }
2548
2549 if (ret)
2550 xfrm_pol_hold(ret);
2551
2552 read_unlock_bh(&xfrm_policy_lock);
2553
2554 return ret;
2555}
2556
2557static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2558{
2559 int match = 0;
2560
2561 if (t->mode == m->mode && t->id.proto == m->proto &&
2562 (m->reqid == 0 || t->reqid == m->reqid)) {
2563 switch (t->mode) {
2564 case XFRM_MODE_TUNNEL:
2565 case XFRM_MODE_BEET:
2566 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2567 m->old_family) == 0 &&
2568 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2569 m->old_family) == 0) {
2570 match = 1;
2571 }
2572 break;
2573 case XFRM_MODE_TRANSPORT:
2574 /* in case of transport mode, template does not store
2575 any IP addresses, hence we just compare mode and
2576 protocol */
2577 match = 1;
2578 break;
2579 default:
2580 break;
2581 }
2582 }
2583 return match;
2584}
2585
2586/* update endpoint address(es) of template(s) */
2587static int xfrm_policy_migrate(struct xfrm_policy *pol,
2588 struct xfrm_migrate *m, int num_migrate)
2589{
2590 struct xfrm_migrate *mp;
2591 struct dst_entry *dst;
2592 int i, j, n = 0;
2593
2594 write_lock_bh(&pol->lock);
2595 if (unlikely(pol->dead)) {
2596 /* target policy has been deleted */
2597 write_unlock_bh(&pol->lock);
2598 return -ENOENT;
2599 }
2600
2601 for (i = 0; i < pol->xfrm_nr; i++) {
2602 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2603 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2604 continue;
2605 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002606 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2607 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002608 continue;
2609 /* update endpoints */
2610 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2611 sizeof(pol->xfrm_vec[i].id.daddr));
2612 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2613 sizeof(pol->xfrm_vec[i].saddr));
2614 pol->xfrm_vec[i].encap_family = mp->new_family;
2615 /* flush bundles */
2616 while ((dst = pol->bundles) != NULL) {
2617 pol->bundles = dst->next;
2618 dst_free(dst);
2619 }
2620 }
2621 }
2622
2623 write_unlock_bh(&pol->lock);
2624
2625 if (!n)
2626 return -ENODATA;
2627
2628 return 0;
2629}
2630
2631static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2632{
2633 int i, j;
2634
2635 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2636 return -EINVAL;
2637
2638 for (i = 0; i < num_migrate; i++) {
2639 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2640 m[i].old_family) == 0) &&
2641 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2642 m[i].old_family) == 0))
2643 return -EINVAL;
2644 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2645 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2646 return -EINVAL;
2647
2648 /* check if there is any duplicated entry */
2649 for (j = i + 1; j < num_migrate; j++) {
2650 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2651 sizeof(m[i].old_daddr)) &&
2652 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2653 sizeof(m[i].old_saddr)) &&
2654 m[i].proto == m[j].proto &&
2655 m[i].mode == m[j].mode &&
2656 m[i].reqid == m[j].reqid &&
2657 m[i].old_family == m[j].old_family)
2658 return -EINVAL;
2659 }
2660 }
2661
2662 return 0;
2663}
2664
2665int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
2666 struct xfrm_migrate *m, int num_migrate)
2667{
2668 int i, err, nx_cur = 0, nx_new = 0;
2669 struct xfrm_policy *pol = NULL;
2670 struct xfrm_state *x, *xc;
2671 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2672 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2673 struct xfrm_migrate *mp;
2674
2675 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2676 goto out;
2677
2678 /* Stage 1 - find policy */
2679 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2680 err = -ENOENT;
2681 goto out;
2682 }
2683
2684 /* Stage 2 - find and update state(s) */
2685 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2686 if ((x = xfrm_migrate_state_find(mp))) {
2687 x_cur[nx_cur] = x;
2688 nx_cur++;
2689 if ((xc = xfrm_state_migrate(x, mp))) {
2690 x_new[nx_new] = xc;
2691 nx_new++;
2692 } else {
2693 err = -ENODATA;
2694 goto restore_state;
2695 }
2696 }
2697 }
2698
2699 /* Stage 3 - update policy */
2700 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2701 goto restore_state;
2702
2703 /* Stage 4 - delete old state(s) */
2704 if (nx_cur) {
2705 xfrm_states_put(x_cur, nx_cur);
2706 xfrm_states_delete(x_cur, nx_cur);
2707 }
2708
2709 /* Stage 5 - announce */
2710 km_migrate(sel, dir, type, m, num_migrate);
2711
2712 xfrm_pol_put(pol);
2713
2714 return 0;
2715out:
2716 return err;
2717
2718restore_state:
2719 if (pol)
2720 xfrm_pol_put(pol);
2721 if (nx_cur)
2722 xfrm_states_put(x_cur, nx_cur);
2723 if (nx_new)
2724 xfrm_states_delete(x_new, nx_new);
2725
2726 return err;
2727}
David S. Millere610e672007-02-08 13:29:15 -08002728EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002729#endif