blob: b7754b1b73a459fee91885c36d74d1d38b3fc9da [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
Paul Moore03e1ad72008-04-12 19:07:52 -0700266 security_xfrm_policy_free(policy->security);
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) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700679 *err = security_xfrm_policy_delete(
680 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800681 if (*err) {
682 write_unlock_bh(&xfrm_policy_lock);
683 return pol;
684 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700685 hlist_del(&pol->bydst);
686 hlist_del(&pol->byidx);
687 xfrm_policy_count[dir]--;
688 }
689 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 break;
691 }
692 }
693 write_unlock_bh(&xfrm_policy_lock);
694
David S. Miller2518c7c2006-08-24 04:45:07 -0700695 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700697 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700699 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
Trent Jaegerdf718372005-12-13 23:12:27 -0800701EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Eric Parisef41aaa2007-03-07 15:37:58 -0800703struct xfrm_policy *xfrm_policy_byid(u8 type, int dir, u32 id, int delete,
704 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
David S. Miller2518c7c2006-08-24 04:45:07 -0700706 struct xfrm_policy *pol, *ret;
707 struct hlist_head *chain;
708 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Herbert Xub5505c62007-05-14 02:15:47 -0700710 *err = -ENOENT;
711 if (xfrm_policy_id2dir(id) != dir)
712 return NULL;
713
Eric Parisef41aaa2007-03-07 15:37:58 -0800714 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700716 chain = xfrm_policy_byidx + idx_hash(id);
717 ret = NULL;
718 hlist_for_each_entry(pol, entry, chain, byidx) {
719 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700721 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700722 *err = security_xfrm_policy_delete(
723 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800724 if (*err) {
725 write_unlock_bh(&xfrm_policy_lock);
726 return pol;
727 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700728 hlist_del(&pol->bydst);
729 hlist_del(&pol->byidx);
730 xfrm_policy_count[dir]--;
731 }
732 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
734 }
735 }
736 write_unlock_bh(&xfrm_policy_lock);
737
David S. Miller2518c7c2006-08-24 04:45:07 -0700738 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700740 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700742 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744EXPORT_SYMBOL(xfrm_policy_byid);
745
Joy Latten4aa2e622007-06-04 19:05:57 -0400746#ifdef CONFIG_SECURITY_NETWORK_XFRM
747static inline int
748xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Joy Latten4aa2e622007-06-04 19:05:57 -0400750 int dir, err = 0;
751
752 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
753 struct xfrm_policy *pol;
754 struct hlist_node *entry;
755 int i;
756
757 hlist_for_each_entry(pol, entry,
758 &xfrm_policy_inexact[dir], bydst) {
759 if (pol->type != type)
760 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700761 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400762 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700763 xfrm_audit_policy_delete(pol, 0,
764 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400765 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700766 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400767 return err;
768 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900769 }
Joy Latten4aa2e622007-06-04 19:05:57 -0400770 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
771 hlist_for_each_entry(pol, entry,
772 xfrm_policy_bydst[dir].table + i,
773 bydst) {
774 if (pol->type != type)
775 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700776 err = security_xfrm_policy_delete(
777 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400778 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700779 xfrm_audit_policy_delete(pol, 0,
780 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400781 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700782 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400783 return err;
784 }
785 }
786 }
787 }
788 return err;
789}
790#else
791static inline int
792xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
793{
794 return 0;
795}
796#endif
797
798int xfrm_policy_flush(u8 type, struct xfrm_audit *audit_info)
799{
800 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400803
804 err = xfrm_policy_flush_secctx_check(type, audit_info);
805 if (err)
806 goto out;
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700809 struct xfrm_policy *pol;
810 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700811 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700812
David S. Millerae8c0572006-10-03 16:00:26 -0700813 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700814 again1:
815 hlist_for_each_entry(pol, entry,
816 &xfrm_policy_inexact[dir], bydst) {
817 if (pol->type != type)
818 continue;
819 hlist_del(&pol->bydst);
820 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 write_unlock_bh(&xfrm_policy_lock);
822
Joy Lattenab5f5e82007-09-17 11:51:22 -0700823 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400824 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700825 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600826
David S. Miller2518c7c2006-08-24 04:45:07 -0700827 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700828 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700831 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700833
834 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
835 again2:
836 hlist_for_each_entry(pol, entry,
837 xfrm_policy_bydst[dir].table + i,
838 bydst) {
839 if (pol->type != type)
840 continue;
841 hlist_del(&pol->bydst);
842 hlist_del(&pol->byidx);
843 write_unlock_bh(&xfrm_policy_lock);
844
Joy Lattenab5f5e82007-09-17 11:51:22 -0700845 xfrm_audit_policy_delete(pol, 1,
846 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400847 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700848 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700849 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700850 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700851
852 write_lock_bh(&xfrm_policy_lock);
853 goto again2;
854 }
855 }
856
David S. Millerae8c0572006-10-03 16:00:26 -0700857 xfrm_policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400860out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400862 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864EXPORT_SYMBOL(xfrm_policy_flush);
865
Timo Teras4c563f72008-02-28 21:31:08 -0800866int xfrm_policy_walk(struct xfrm_policy_walk *walk,
867 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 void *data)
869{
Timo Teras4c563f72008-02-28 21:31:08 -0800870 struct xfrm_policy *old, *pol, *last = NULL;
871 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Timo Teras4c563f72008-02-28 21:31:08 -0800873 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
874 walk->type != XFRM_POLICY_TYPE_ANY)
875 return -EINVAL;
876
877 if (walk->policy == NULL && walk->count != 0)
878 return 0;
879
880 old = pol = walk->policy;
881 walk->policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 read_lock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Timo Teras4c563f72008-02-28 21:31:08 -0800884 for (; walk->cur_type < XFRM_POLICY_TYPE_MAX; walk->cur_type++) {
885 if (walk->type != walk->cur_type &&
886 walk->type != XFRM_POLICY_TYPE_ANY)
887 continue;
David S. Miller2518c7c2006-08-24 04:45:07 -0700888
Timo Teras4c563f72008-02-28 21:31:08 -0800889 if (pol == NULL) {
890 pol = list_first_entry(&xfrm_policy_bytype[walk->cur_type],
891 struct xfrm_policy, bytype);
892 }
893 list_for_each_entry_from(pol, &xfrm_policy_bytype[walk->cur_type], bytype) {
894 if (pol->dead)
David S. Miller2518c7c2006-08-24 04:45:07 -0700895 continue;
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800896 if (last) {
Timo Teras4c563f72008-02-28 21:31:08 -0800897 error = func(last, xfrm_policy_id2dir(last->index),
898 walk->count, data);
899 if (error) {
900 xfrm_pol_hold(last);
901 walk->policy = last;
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800902 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800903 }
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800904 }
905 last = pol;
Timo Teras4c563f72008-02-28 21:31:08 -0800906 walk->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
Timo Teras4c563f72008-02-28 21:31:08 -0800908 pol = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
Timo Teras4c563f72008-02-28 21:31:08 -0800910 if (walk->count == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800911 error = -ENOENT;
912 goto out;
913 }
Timo Teras4c563f72008-02-28 21:31:08 -0800914 if (last)
915 error = func(last, xfrm_policy_id2dir(last->index), 0, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916out:
917 read_unlock_bh(&xfrm_policy_lock);
Timo Teras4c563f72008-02-28 21:31:08 -0800918 if (old != NULL)
919 xfrm_pol_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return error;
921}
922EXPORT_SYMBOL(xfrm_policy_walk);
923
James Morris134b0fc2006-10-05 15:42:27 -0500924/*
925 * Find policy to apply to this flow.
926 *
927 * Returns 0 if policy found, else an -errno.
928 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700929static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
930 u8 type, u16 family, int dir)
931{
932 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500933 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700934
935 if (pol->family != family ||
936 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500937 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700938
939 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500940 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700941 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
942 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700943
James Morris134b0fc2006-10-05 15:42:27 -0500944 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700945}
946
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700947static struct xfrm_policy *xfrm_policy_lookup_bytype(u8 type, struct flowi *fl,
948 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
James Morris134b0fc2006-10-05 15:42:27 -0500950 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700951 struct xfrm_policy *pol, *ret;
952 xfrm_address_t *daddr, *saddr;
953 struct hlist_node *entry;
954 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700955 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700956
957 daddr = xfrm_flowi_daddr(fl, family);
958 saddr = xfrm_flowi_saddr(fl, family);
959 if (unlikely(!daddr || !saddr))
960 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700963 chain = policy_hash_direct(daddr, saddr, family, dir);
964 ret = NULL;
965 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500966 err = xfrm_policy_match(pol, fl, type, family, dir);
967 if (err) {
968 if (err == -ESRCH)
969 continue;
970 else {
971 ret = ERR_PTR(err);
972 goto fail;
973 }
974 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700975 ret = pol;
976 priority = ret->priority;
977 break;
978 }
979 }
980 chain = &xfrm_policy_inexact[dir];
981 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500982 err = xfrm_policy_match(pol, fl, type, family, dir);
983 if (err) {
984 if (err == -ESRCH)
985 continue;
986 else {
987 ret = ERR_PTR(err);
988 goto fail;
989 }
990 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700991 ret = pol;
992 break;
993 }
994 }
David S. Milleracba48e2006-08-25 15:46:46 -0700995 if (ret)
996 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500997fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700999
David S. Miller2518c7c2006-08-24 04:45:07 -07001000 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001001}
1002
James Morris134b0fc2006-10-05 15:42:27 -05001003static int xfrm_policy_lookup(struct flowi *fl, u16 family, u8 dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001004 void **objp, atomic_t **obj_refp)
1005{
1006 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -05001007 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001008
1009#ifdef CONFIG_XFRM_SUB_POLICY
1010 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001011 if (IS_ERR(pol)) {
1012 err = PTR_ERR(pol);
1013 pol = NULL;
1014 }
1015 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001016 goto end;
1017#endif
1018 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001019 if (IS_ERR(pol)) {
1020 err = PTR_ERR(pol);
1021 pol = NULL;
1022 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001023#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001024end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if ((*objp = (void *) pol) != NULL)
1027 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001028 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Trent Jaegerdf718372005-12-13 23:12:27 -08001031static inline int policy_to_flow_dir(int dir)
1032{
1033 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001034 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1035 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1036 return dir;
1037 switch (dir) {
1038 default:
1039 case XFRM_POLICY_IN:
1040 return FLOW_DIR_IN;
1041 case XFRM_POLICY_OUT:
1042 return FLOW_DIR_OUT;
1043 case XFRM_POLICY_FWD:
1044 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001045 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001046}
1047
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001048static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 struct xfrm_policy *pol;
1051
1052 read_lock_bh(&xfrm_policy_lock);
1053 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001054 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001056 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001057
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001058 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001059 err = security_xfrm_policy_lookup(pol->security,
1060 fl->secid,
1061 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001062 if (!err)
1063 xfrm_pol_hold(pol);
1064 else if (err == -ESRCH)
1065 pol = NULL;
1066 else
1067 pol = ERR_PTR(err);
1068 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 pol = NULL;
1070 }
1071 read_unlock_bh(&xfrm_policy_lock);
1072 return pol;
1073}
1074
1075static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1076{
David S. Miller2518c7c2006-08-24 04:45:07 -07001077 struct hlist_head *chain = policy_hash_bysel(&pol->selector,
1078 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001079
Herbert Xu225f4002008-09-09 05:23:37 -07001080 list_add_tail(&pol->bytype, &xfrm_policy_bytype[pol->type]);
David S. Miller2518c7c2006-08-24 04:45:07 -07001081 hlist_add_head(&pol->bydst, chain);
1082 hlist_add_head(&pol->byidx, xfrm_policy_byidx+idx_hash(pol->index));
1083 xfrm_policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001085
1086 if (xfrm_bydst_should_resize(dir, NULL))
1087 schedule_work(&xfrm_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1091 int dir)
1092{
David S. Miller2518c7c2006-08-24 04:45:07 -07001093 if (hlist_unhashed(&pol->bydst))
1094 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
David S. Miller2518c7c2006-08-24 04:45:07 -07001096 hlist_del(&pol->bydst);
1097 hlist_del(&pol->byidx);
1098 xfrm_policy_count[dir]--;
1099
1100 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
Herbert Xu4666faa2005-06-18 22:43:22 -07001103int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
1105 write_lock_bh(&xfrm_policy_lock);
1106 pol = __xfrm_policy_unlink(pol, dir);
1107 write_unlock_bh(&xfrm_policy_lock);
1108 if (pol) {
1109 if (dir < XFRM_POLICY_MAX)
1110 atomic_inc(&flow_cache_genid);
1111 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001114 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
David S. Millera70fcb02006-03-20 19:18:52 -08001116EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1119{
1120 struct xfrm_policy *old_pol;
1121
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001122#ifdef CONFIG_XFRM_SUB_POLICY
1123 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1124 return -EINVAL;
1125#endif
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 write_lock_bh(&xfrm_policy_lock);
1128 old_pol = sk->sk_policy[dir];
1129 sk->sk_policy[dir] = pol;
1130 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001131 pol->curlft.add_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001132 pol->index = xfrm_gen_index(pol->type, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1134 }
1135 if (old_pol)
1136 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1137 write_unlock_bh(&xfrm_policy_lock);
1138
1139 if (old_pol) {
1140 xfrm_policy_kill(old_pol);
1141 }
1142 return 0;
1143}
1144
1145static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1146{
1147 struct xfrm_policy *newp = xfrm_policy_alloc(GFP_ATOMIC);
1148
1149 if (newp) {
1150 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001151 if (security_xfrm_policy_clone(old->security,
1152 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001153 kfree(newp);
1154 return NULL; /* ENOMEM */
1155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 newp->lft = old->lft;
1157 newp->curlft = old->curlft;
1158 newp->action = old->action;
1159 newp->flags = old->flags;
1160 newp->xfrm_nr = old->xfrm_nr;
1161 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001162 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 memcpy(newp->xfrm_vec, old->xfrm_vec,
1164 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1165 write_lock_bh(&xfrm_policy_lock);
1166 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1167 write_unlock_bh(&xfrm_policy_lock);
1168 xfrm_pol_put(newp);
1169 }
1170 return newp;
1171}
1172
1173int __xfrm_sk_clone_policy(struct sock *sk)
1174{
1175 struct xfrm_policy *p0 = sk->sk_policy[0],
1176 *p1 = sk->sk_policy[1];
1177
1178 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1179 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1180 return -ENOMEM;
1181 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1182 return -ENOMEM;
1183 return 0;
1184}
1185
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001186static int
1187xfrm_get_saddr(xfrm_address_t *local, xfrm_address_t *remote,
1188 unsigned short family)
1189{
1190 int err;
1191 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1192
1193 if (unlikely(afinfo == NULL))
1194 return -EINVAL;
1195 err = afinfo->get_saddr(local, remote);
1196 xfrm_policy_put_afinfo(afinfo);
1197 return err;
1198}
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200/* Resolve list of templates for the flow, given policy. */
1201
1202static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001203xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1204 struct xfrm_state **xfrm,
1205 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
1207 int nx;
1208 int i, error;
1209 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1210 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001211 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1214 struct xfrm_state *x;
1215 xfrm_address_t *remote = daddr;
1216 xfrm_address_t *local = saddr;
1217 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1218
Joakim Koskela48b8d782007-07-26 00:08:42 -07001219 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1220 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 remote = &tmpl->id.daddr;
1222 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001223 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001224 if (xfrm_addr_any(local, family)) {
1225 error = xfrm_get_saddr(&tmp, remote, family);
1226 if (error)
1227 goto fail;
1228 local = &tmp;
1229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231
1232 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1233
1234 if (x && x->km.state == XFRM_STATE_VALID) {
1235 xfrm[nx++] = x;
1236 daddr = remote;
1237 saddr = local;
1238 continue;
1239 }
1240 if (x) {
1241 error = (x->km.state == XFRM_STATE_ERROR ?
1242 -EINVAL : -EAGAIN);
1243 xfrm_state_put(x);
1244 }
1245
1246 if (!tmpl->optional)
1247 goto fail;
1248 }
1249 return nx;
1250
1251fail:
1252 for (nx--; nx>=0; nx--)
1253 xfrm_state_put(xfrm[nx]);
1254 return error;
1255}
1256
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001257static int
1258xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1259 struct xfrm_state **xfrm,
1260 unsigned short family)
1261{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001262 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1263 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001264 int cnx = 0;
1265 int error;
1266 int ret;
1267 int i;
1268
1269 for (i = 0; i < npols; i++) {
1270 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1271 error = -ENOBUFS;
1272 goto fail;
1273 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001274
1275 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001276 if (ret < 0) {
1277 error = ret;
1278 goto fail;
1279 } else
1280 cnx += ret;
1281 }
1282
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001283 /* found states are sorted for outbound processing */
1284 if (npols > 1)
1285 xfrm_state_sort(xfrm, tpp, cnx, family);
1286
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001287 return cnx;
1288
1289 fail:
1290 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001291 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001292 return error;
1293
1294}
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296/* Check that the bundle accepts the flow and its components are
1297 * still valid.
1298 */
1299
1300static struct dst_entry *
1301xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1302{
1303 struct dst_entry *x;
1304 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1305 if (unlikely(afinfo == NULL))
1306 return ERR_PTR(-EINVAL);
1307 x = afinfo->find_bundle(fl, policy);
1308 xfrm_policy_put_afinfo(afinfo);
1309 return x;
1310}
1311
Herbert Xu25ee3282007-12-11 09:32:34 -08001312static inline int xfrm_get_tos(struct flowi *fl, int family)
1313{
1314 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1315 int tos;
1316
1317 if (!afinfo)
1318 return -EINVAL;
1319
1320 tos = afinfo->get_tos(fl);
1321
1322 xfrm_policy_put_afinfo(afinfo);
1323
1324 return tos;
1325}
1326
1327static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1328{
1329 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1330 struct xfrm_dst *xdst;
1331
1332 if (!afinfo)
1333 return ERR_PTR(-EINVAL);
1334
1335 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1336
1337 xfrm_policy_put_afinfo(afinfo);
1338
1339 return xdst;
1340}
1341
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001342static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1343 int nfheader_len)
1344{
1345 struct xfrm_policy_afinfo *afinfo =
1346 xfrm_policy_get_afinfo(dst->ops->family);
1347 int err;
1348
1349 if (!afinfo)
1350 return -EINVAL;
1351
1352 err = afinfo->init_path(path, dst, nfheader_len);
1353
1354 xfrm_policy_put_afinfo(afinfo);
1355
1356 return err;
1357}
1358
Herbert Xu25ee3282007-12-11 09:32:34 -08001359static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1360{
1361 struct xfrm_policy_afinfo *afinfo =
1362 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1363 int err;
1364
1365 if (!afinfo)
1366 return -EINVAL;
1367
1368 err = afinfo->fill_dst(xdst, dev);
1369
1370 xfrm_policy_put_afinfo(afinfo);
1371
1372 return err;
1373}
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1376 * all the metrics... Shortly, bundle a bundle.
1377 */
1378
Herbert Xu25ee3282007-12-11 09:32:34 -08001379static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1380 struct xfrm_state **xfrm, int nx,
1381 struct flowi *fl,
1382 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Herbert Xu25ee3282007-12-11 09:32:34 -08001384 unsigned long now = jiffies;
1385 struct net_device *dev;
1386 struct dst_entry *dst_prev = NULL;
1387 struct dst_entry *dst0 = NULL;
1388 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001390 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001391 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001392 int trailer_len = 0;
1393 int tos;
1394 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001395 xfrm_address_t saddr, daddr;
1396
1397 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001398
1399 tos = xfrm_get_tos(fl, family);
1400 err = tos;
1401 if (tos < 0)
1402 goto put_states;
1403
1404 dst_hold(dst);
1405
1406 for (; i < nx; i++) {
1407 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1408 struct dst_entry *dst1 = &xdst->u.dst;
1409
1410 err = PTR_ERR(xdst);
1411 if (IS_ERR(xdst)) {
1412 dst_release(dst);
1413 goto put_states;
1414 }
1415
1416 if (!dst_prev)
1417 dst0 = dst1;
1418 else {
1419 dst_prev->child = dst_clone(dst1);
1420 dst1->flags |= DST_NOHASH;
1421 }
1422
1423 xdst->route = dst;
1424 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1425
1426 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1427 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001428 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1429 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001430 err = PTR_ERR(dst);
1431 if (IS_ERR(dst))
1432 goto put_states;
1433 } else
1434 dst_hold(dst);
1435
1436 dst1->xfrm = xfrm[i];
1437 xdst->genid = xfrm[i]->genid;
1438
1439 dst1->obsolete = -1;
1440 dst1->flags |= DST_HOST;
1441 dst1->lastuse = now;
1442
1443 dst1->input = dst_discard;
1444 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1445
1446 dst1->next = dst_prev;
1447 dst_prev = dst1;
1448
1449 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001450 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1451 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001452 trailer_len += xfrm[i]->props.trailer_len;
1453 }
1454
1455 dst_prev->child = dst;
1456 dst0->path = dst;
1457
1458 err = -ENODEV;
1459 dev = dst->dev;
1460 if (!dev)
1461 goto free_dst;
1462
1463 /* Copy neighbout for reachability confirmation */
1464 dst0->neighbour = neigh_clone(dst->neighbour);
1465
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001466 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001467 xfrm_init_pmtu(dst_prev);
1468
1469 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1470 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1471
1472 err = xfrm_fill_dst(xdst, dev);
1473 if (err)
1474 goto free_dst;
1475
1476 dst_prev->header_len = header_len;
1477 dst_prev->trailer_len = trailer_len;
1478 header_len -= xdst->u.dst.xfrm->props.header_len;
1479 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1480 }
1481
1482out:
1483 return dst0;
1484
1485put_states:
1486 for (; i < nx; i++)
1487 xfrm_state_put(xfrm[i]);
1488free_dst:
1489 if (dst0)
1490 dst_free(dst0);
1491 dst0 = ERR_PTR(err);
1492 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001495static int inline
1496xfrm_dst_alloc_copy(void **target, void *src, int size)
1497{
1498 if (!*target) {
1499 *target = kmalloc(size, GFP_ATOMIC);
1500 if (!*target)
1501 return -ENOMEM;
1502 }
1503 memcpy(*target, src, size);
1504 return 0;
1505}
1506
1507static int inline
1508xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1509{
1510#ifdef CONFIG_XFRM_SUB_POLICY
1511 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1512 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1513 sel, sizeof(*sel));
1514#else
1515 return 0;
1516#endif
1517}
1518
1519static int inline
1520xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1521{
1522#ifdef CONFIG_XFRM_SUB_POLICY
1523 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1524 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1525#else
1526 return 0;
1527#endif
1528}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530static int stale_bundle(struct dst_entry *dst);
1531
1532/* Main function: finds/creates a bundle for given flow.
1533 *
1534 * At the moment we eat a raw IP route. Mostly to speed up lookups
1535 * on interfaces with disabled IPsec.
1536 */
David S. Miller14e50e52007-05-24 18:17:54 -07001537int __xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1538 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001541 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1542 int npols;
1543 int pol_dead;
1544 int xfrm_nr;
1545 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1547 struct dst_entry *dst, *dst_orig = *dst_p;
1548 int nx = 0;
1549 int err;
1550 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001551 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001552 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554restart:
1555 genid = atomic_read(&flow_cache_genid);
1556 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001557 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1558 pols[pi] = NULL;
1559 npols = 0;
1560 pol_dead = 0;
1561 xfrm_nr = 0;
1562
Thomas Graff7944fb2007-08-25 13:46:55 -07001563 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001564 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001565 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001566 if (IS_ERR(policy)) {
1567 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001568 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001569 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 if (!policy) {
1573 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001574 if ((dst_orig->flags & DST_NOXFRM) ||
1575 !xfrm_policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001576 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001578 policy = flow_cache_lookup(fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001579 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001580 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001581 if (IS_ERR(policy)) {
1582 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001583 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586
1587 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001588 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001590 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001591 pols[0] = policy;
1592 npols ++;
1593 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Herbert Xuaef21782007-12-13 09:30:59 -08001595 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001596 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1597 goto error;
1598
1599 policy->curlft.use_time = get_seconds();
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001602 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 case XFRM_POLICY_BLOCK:
1604 /* Prohibit the flow */
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001605 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye1044112005-09-08 15:11:55 -07001606 err = -EPERM;
1607 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001610#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (policy->xfrm_nr == 0) {
1612 /* Flow passes not transformed. */
1613 xfrm_pol_put(policy);
1614 return 0;
1615 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001616#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 /* Try to find matching bundle.
1619 *
1620 * LATER: help from flow cache. It is optional, this
1621 * is required only for output policy.
1622 */
1623 dst = xfrm_find_bundle(fl, policy, family);
1624 if (IS_ERR(dst)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001625 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye1044112005-09-08 15:11:55 -07001626 err = PTR_ERR(dst);
1627 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629
1630 if (dst)
1631 break;
1632
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001633#ifdef CONFIG_XFRM_SUB_POLICY
1634 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1635 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1636 fl, family,
1637 XFRM_POLICY_OUT);
1638 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001639 if (IS_ERR(pols[1])) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001640 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001641 err = PTR_ERR(pols[1]);
1642 goto error;
1643 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001644 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001645 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001646 err = -EPERM;
1647 goto error;
1648 }
1649 npols ++;
1650 xfrm_nr += pols[1]->xfrm_nr;
1651 }
1652 }
1653
1654 /*
1655 * Because neither flowi nor bundle information knows about
1656 * transformation template size. On more than one policy usage
1657 * we can realize whether all of them is bypass or not after
1658 * they are searched. See above not-transformed bypass
1659 * is surrounded by non-sub policy configuration, too.
1660 */
1661 if (xfrm_nr == 0) {
1662 /* Flow passes not transformed. */
1663 xfrm_pols_put(pols, npols);
1664 return 0;
1665 }
1666
1667#endif
1668 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 if (unlikely(nx<0)) {
1671 err = nx;
David S. Miller14e50e52007-05-24 18:17:54 -07001672 if (err == -EAGAIN && sysctl_xfrm_larval_drop) {
1673 /* EREMOTE tells the caller to generate
1674 * a one-shot blackhole route.
1675 */
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001676 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001677 xfrm_pol_put(policy);
1678 return -EREMOTE;
1679 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001680 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 DECLARE_WAITQUEUE(wait, current);
1682
1683 add_wait_queue(&km_waitq, &wait);
1684 set_current_state(TASK_INTERRUPTIBLE);
1685 schedule();
1686 set_current_state(TASK_RUNNING);
1687 remove_wait_queue(&km_waitq, &wait);
1688
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001689 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 if (nx == -EAGAIN && signal_pending(current)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001692 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 err = -ERESTART;
1694 goto error;
1695 }
1696 if (nx == -EAGAIN ||
1697 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001698 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 goto restart;
1700 }
1701 err = nx;
1702 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001703 if (err < 0) {
1704 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
1708 if (nx == 0) {
1709 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001710 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 return 0;
1712 }
1713
Herbert Xu25ee3282007-12-11 09:32:34 -08001714 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1715 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001716 if (IS_ERR(dst)) {
1717 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001721 for (pi = 0; pi < npols; pi++) {
1722 read_lock_bh(&pols[pi]->lock);
1723 pol_dead |= pols[pi]->dead;
1724 read_unlock_bh(&pols[pi]->lock);
1725 }
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001728 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 /* Wow! While we worked on resolving, this
1730 * policy has gone. Retry. It is not paranoia,
1731 * we just cannot enlist new bundle to dead object.
1732 * We can't enlist stable bundles either.
1733 */
1734 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001735 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001736
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001737 if (pol_dead)
1738 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD);
1739 else
1740 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001741 err = -EHOSTUNREACH;
1742 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001744
1745 if (npols > 1)
1746 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1747 else
1748 err = xfrm_dst_update_origin(dst, fl);
1749 if (unlikely(err)) {
1750 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001751 dst_free(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001752 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001753 goto error;
1754 }
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 dst->next = policy->bundles;
1757 policy->bundles = dst;
1758 dst_hold(dst);
1759 write_unlock_bh(&policy->lock);
1760 }
1761 *dst_p = dst;
1762 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001763 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return 0;
1765
1766error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001767 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001768dropdst:
1769 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 *dst_p = NULL;
1771 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001772
1773nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001774 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001775 if (flags & XFRM_LOOKUP_ICMP)
1776 goto dropdst;
1777 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
David S. Miller14e50e52007-05-24 18:17:54 -07001779EXPORT_SYMBOL(__xfrm_lookup);
1780
1781int xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1782 struct sock *sk, int flags)
1783{
1784 int err = __xfrm_lookup(dst_p, fl, sk, flags);
1785
1786 if (err == -EREMOTE) {
1787 dst_release(*dst_p);
1788 *dst_p = NULL;
1789 err = -EAGAIN;
1790 }
1791
1792 return err;
1793}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794EXPORT_SYMBOL(xfrm_lookup);
1795
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001796static inline int
1797xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1798{
1799 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001800
1801 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1802 return 0;
1803 x = skb->sp->xvec[idx];
1804 if (!x->type->reject)
1805 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001806 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001807}
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809/* When skb is transformed back to its "native" form, we have to
1810 * check policy restrictions. At the moment we make this in maximally
1811 * stupid way. Shame on me. :-) Of course, connected sockets must
1812 * have policy cached at them.
1813 */
1814
1815static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001816xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 unsigned short family)
1818{
1819 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001820 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return x->id.proto == tmpl->id.proto &&
1822 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1823 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1824 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001825 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001826 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001827 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1828 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001831/*
1832 * 0 or more than 0 is returned when validation is succeeded (either bypass
1833 * because of optional transport mode, or next index of the mathced secpath
1834 * state with the template.
1835 * -1 is returned when no matching template is found.
1836 * Otherwise "-2 - errored_index" is returned.
1837 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838static inline int
1839xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1840 unsigned short family)
1841{
1842 int idx = start;
1843
1844 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001845 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return start;
1847 } else
1848 start = -1;
1849 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001850 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001852 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1853 if (start == -1)
1854 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858 return start;
1859}
1860
Herbert Xud5422ef2007-12-12 10:44:16 -08001861int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1862 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001865 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 if (unlikely(afinfo == NULL))
1868 return -EAFNOSUPPORT;
1869
Herbert Xud5422ef2007-12-12 10:44:16 -08001870 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001871 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001873 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
Herbert Xud5422ef2007-12-12 10:44:16 -08001875EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001877static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001880 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001881 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885
1886 return 0;
1887}
1888
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001889int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 unsigned short family)
1891{
1892 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001893 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1894 int npols = 0;
1895 int xfrm_nr;
1896 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001897 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001899 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001900 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Herbert Xud5422ef2007-12-12 10:44:16 -08001902 reverse = dir & ~XFRM_POLICY_MASK;
1903 dir &= XFRM_POLICY_MASK;
1904 fl_dir = policy_to_flow_dir(dir);
1905
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001906 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
1907 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001909 }
1910
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001911 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 /* First, check used SA against their selectors. */
1914 if (skb->sp) {
1915 int i;
1916
1917 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001918 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001919 if (!xfrm_selector_match(&x->sel, &fl, family)) {
1920 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924 }
1925
1926 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001927 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001928 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001929 if (IS_ERR(pol)) {
1930 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001931 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001932 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 if (!pol)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001936 pol = flow_cache_lookup(&fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 xfrm_policy_lookup);
1938
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001939 if (IS_ERR(pol)) {
1940 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001941 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001942 }
James Morris134b0fc2006-10-05 15:42:27 -05001943
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001944 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001945 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001946 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001947 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001948 return 0;
1949 }
1950 return 1;
1951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
James Morris9d729f72007-03-04 16:12:44 -08001953 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001955 pols[0] = pol;
1956 npols ++;
1957#ifdef CONFIG_XFRM_SUB_POLICY
1958 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1959 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1960 &fl, family,
1961 XFRM_POLICY_IN);
1962 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001963 if (IS_ERR(pols[1])) {
1964 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001965 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001966 }
James Morris9d729f72007-03-04 16:12:44 -08001967 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001968 npols ++;
1969 }
1970 }
1971#endif
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 if (pol->action == XFRM_POLICY_ALLOW) {
1974 struct sec_path *sp;
1975 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001976 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001977 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001978 struct xfrm_tmpl **tpp = tp;
1979 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 int i, k;
1981
1982 if ((sp = skb->sp) == NULL)
1983 sp = &dummy;
1984
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001985 for (pi = 0; pi < npols; pi++) {
1986 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001987 pols[pi]->action != XFRM_POLICY_ALLOW) {
1988 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001989 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001990 }
1991 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
1992 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001993 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001994 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001995 for (i = 0; i < pols[pi]->xfrm_nr; i++)
1996 tpp[ti++] = &pols[pi]->xfrm_vec[i];
1997 }
1998 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001999 if (npols > 1) {
2000 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2001 tpp = stp;
2002 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 /* For each tunnel xfrm, find the first matching tmpl.
2005 * For each tmpl before that, find corresponding xfrm.
2006 * Order is _important_. Later we will implement
2007 * some barriers, but at the moment barriers
2008 * are implied between each two transformations.
2009 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002010 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2011 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002012 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002013 if (k < -1)
2014 /* "-2 - errored_index" returned */
2015 xerr_idx = -(2+k);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002016 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002021 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2022 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002026 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return 1;
2028 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002029 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002032 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002033reject_error:
2034 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return 0;
2036}
2037EXPORT_SYMBOL(__xfrm_policy_check);
2038
2039int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2040{
2041 struct flowi fl;
2042
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002043 if (xfrm_decode_session(skb, &fl, family) < 0) {
2044 /* XXX: we should have something like FWDHDRERROR here. */
2045 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049 return xfrm_lookup(&skb->dst, &fl, NULL, 0) == 0;
2050}
2051EXPORT_SYMBOL(__xfrm_route_forward);
2052
David S. Millerd49c73c2006-08-13 18:55:53 -07002053/* Optimize later using cookies and generation ids. */
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2056{
David S. Millerd49c73c2006-08-13 18:55:53 -07002057 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2058 * to "-1" to force all XFRM destinations to get validated by
2059 * dst_ops->check on every use. We do this because when a
2060 * normal route referenced by an XFRM dst is obsoleted we do
2061 * not go looking around for all parent referencing XFRM dsts
2062 * so that we can invalidate them. It is just too much work.
2063 * Instead we make the checks here on every use. For example:
2064 *
2065 * XFRM dst A --> IPv4 dst X
2066 *
2067 * X is the "xdst->route" of A (X is also the "dst->path" of A
2068 * in this example). If X is marked obsolete, "A" will not
2069 * notice. That's what we are validating here via the
2070 * stale_bundle() check.
2071 *
2072 * When a policy's bundle is pruned, we dst_free() the XFRM
2073 * dst which causes it's ->obsolete field to be set to a
2074 * positive non-zero integer. If an XFRM dst has been pruned
2075 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002076 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002077 if (dst->obsolete < 0 && !stale_bundle(dst))
2078 return dst;
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 return NULL;
2081}
2082
2083static int stale_bundle(struct dst_entry *dst)
2084{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002085 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Herbert Xuaabc9762005-05-03 16:27:10 -07002088void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002091 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002092 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 dev_put(dev);
2094 }
2095}
Herbert Xuaabc9762005-05-03 16:27:10 -07002096EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098static void xfrm_link_failure(struct sk_buff *skb)
2099{
2100 /* Impossible. Such dst must be popped before reaches point of failure. */
2101 return;
2102}
2103
2104static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2105{
2106 if (dst) {
2107 if (dst->obsolete) {
2108 dst_release(dst);
2109 dst = NULL;
2110 }
2111 }
2112 return dst;
2113}
2114
David S. Miller2518c7c2006-08-24 04:45:07 -07002115static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2116{
2117 struct dst_entry *dst, **dstp;
2118
2119 write_lock(&pol->lock);
2120 dstp = &pol->bundles;
2121 while ((dst=*dstp) != NULL) {
2122 if (func(dst)) {
2123 *dstp = dst->next;
2124 dst->next = *gc_list_p;
2125 *gc_list_p = dst;
2126 } else {
2127 dstp = &dst->next;
2128 }
2129 }
2130 write_unlock(&pol->lock);
2131}
2132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
2134{
David S. Miller2518c7c2006-08-24 04:45:07 -07002135 struct dst_entry *gc_list = NULL;
2136 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002139 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2140 struct xfrm_policy *pol;
2141 struct hlist_node *entry;
2142 struct hlist_head *table;
2143 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002144
David S. Miller2518c7c2006-08-24 04:45:07 -07002145 hlist_for_each_entry(pol, entry,
2146 &xfrm_policy_inexact[dir], bydst)
2147 prune_one_bundle(pol, func, &gc_list);
2148
2149 table = xfrm_policy_bydst[dir].table;
2150 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
2151 hlist_for_each_entry(pol, entry, table + i, bydst)
2152 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 }
2154 }
2155 read_unlock_bh(&xfrm_policy_lock);
2156
2157 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002158 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 gc_list = dst->next;
2160 dst_free(dst);
2161 }
2162}
2163
2164static int unused_bundle(struct dst_entry *dst)
2165{
2166 return !atomic_read(&dst->__refcnt);
2167}
2168
2169static void __xfrm_garbage_collect(void)
2170{
2171 xfrm_prune_bundles(unused_bundle);
2172}
2173
David S. Miller1c095392006-08-24 03:30:28 -07002174static int xfrm_flush_bundles(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
2176 xfrm_prune_bundles(stale_bundle);
2177 return 0;
2178}
2179
Herbert Xu25ee3282007-12-11 09:32:34 -08002180static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 do {
2183 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2184 u32 pmtu, route_mtu_cached;
2185
2186 pmtu = dst_mtu(dst->child);
2187 xdst->child_mtu_cached = pmtu;
2188
2189 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2190
2191 route_mtu_cached = dst_mtu(xdst->route);
2192 xdst->route_mtu_cached = route_mtu_cached;
2193
2194 if (pmtu > route_mtu_cached)
2195 pmtu = route_mtu_cached;
2196
2197 dst->metrics[RTAX_MTU-1] = pmtu;
2198 } while ((dst = dst->next));
2199}
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201/* Check that the bundle accepts the flow and its components are
2202 * still valid.
2203 */
2204
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002205int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2206 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
2208 struct dst_entry *dst = &first->u.dst;
2209 struct xfrm_dst *last;
2210 u32 mtu;
2211
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002212 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 (dst->dev && !netif_running(dst->dev)))
2214 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002215#ifdef CONFIG_XFRM_SUB_POLICY
2216 if (fl) {
2217 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2218 return 0;
2219 if (first->partner &&
2220 !xfrm_selector_match(first->partner, fl, family))
2221 return 0;
2222 }
2223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 last = NULL;
2226
2227 do {
2228 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2229
2230 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2231 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002232 if (fl && pol &&
2233 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2236 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002237 if (xdst->genid != dst->xfrm->genid)
2238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Herbert Xu1bfcb102007-10-17 21:31:50 -07002240 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002241 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002242 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2243 return 0;
2244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 mtu = dst_mtu(dst->child);
2246 if (xdst->child_mtu_cached != mtu) {
2247 last = xdst;
2248 xdst->child_mtu_cached = mtu;
2249 }
2250
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002251 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return 0;
2253 mtu = dst_mtu(xdst->route);
2254 if (xdst->route_mtu_cached != mtu) {
2255 last = xdst;
2256 xdst->route_mtu_cached = mtu;
2257 }
2258
2259 dst = dst->child;
2260 } while (dst->xfrm);
2261
2262 if (likely(!last))
2263 return 1;
2264
2265 mtu = last->child_mtu_cached;
2266 for (;;) {
2267 dst = &last->u.dst;
2268
2269 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2270 if (mtu > last->route_mtu_cached)
2271 mtu = last->route_mtu_cached;
2272 dst->metrics[RTAX_MTU-1] = mtu;
2273
2274 if (last == first)
2275 break;
2276
Patrick McHardybd0bf072007-07-18 01:55:52 -07002277 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 last->child_mtu_cached = mtu;
2279 }
2280
2281 return 1;
2282}
2283
2284EXPORT_SYMBOL(xfrm_bundle_ok);
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2287{
2288 int err = 0;
2289 if (unlikely(afinfo == NULL))
2290 return -EINVAL;
2291 if (unlikely(afinfo->family >= NPROTO))
2292 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002293 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2295 err = -ENOBUFS;
2296 else {
2297 struct dst_ops *dst_ops = afinfo->dst_ops;
2298 if (likely(dst_ops->kmem_cachep == NULL))
2299 dst_ops->kmem_cachep = xfrm_dst_cache;
2300 if (likely(dst_ops->check == NULL))
2301 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 if (likely(dst_ops->negative_advice == NULL))
2303 dst_ops->negative_advice = xfrm_negative_advice;
2304 if (likely(dst_ops->link_failure == NULL))
2305 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (likely(afinfo->garbage_collect == NULL))
2307 afinfo->garbage_collect = __xfrm_garbage_collect;
2308 xfrm_policy_afinfo[afinfo->family] = afinfo;
2309 }
Ingo Molnare959d812006-04-28 15:32:29 -07002310 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 return err;
2312}
2313EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2314
2315int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2316{
2317 int err = 0;
2318 if (unlikely(afinfo == NULL))
2319 return -EINVAL;
2320 if (unlikely(afinfo->family >= NPROTO))
2321 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002322 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2324 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2325 err = -EINVAL;
2326 else {
2327 struct dst_ops *dst_ops = afinfo->dst_ops;
2328 xfrm_policy_afinfo[afinfo->family] = NULL;
2329 dst_ops->kmem_cachep = NULL;
2330 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 dst_ops->negative_advice = NULL;
2332 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 afinfo->garbage_collect = NULL;
2334 }
2335 }
Ingo Molnare959d812006-04-28 15:32:29 -07002336 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return err;
2338}
2339EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2340
2341static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2342{
2343 struct xfrm_policy_afinfo *afinfo;
2344 if (unlikely(family >= NPROTO))
2345 return NULL;
2346 read_lock(&xfrm_policy_afinfo_lock);
2347 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002348 if (unlikely(!afinfo))
2349 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 return afinfo;
2351}
2352
2353static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2354{
Herbert Xu546be242006-05-27 23:03:58 -07002355 read_unlock(&xfrm_policy_afinfo_lock);
2356}
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2359{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002360 struct net_device *dev = ptr;
2361
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07002362 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002363 return NOTIFY_DONE;
2364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 switch (event) {
2366 case NETDEV_DOWN:
2367 xfrm_flush_bundles();
2368 }
2369 return NOTIFY_DONE;
2370}
2371
2372static struct notifier_block xfrm_dev_notifier = {
2373 xfrm_dev_event,
2374 NULL,
2375 0
2376};
2377
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002378#ifdef CONFIG_XFRM_STATISTICS
2379static int __init xfrm_statistics_init(void)
2380{
2381 if (snmp_mib_init((void **)xfrm_statistics,
2382 sizeof(struct linux_xfrm_mib)) < 0)
2383 return -ENOMEM;
2384 return 0;
2385}
2386#endif
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388static void __init xfrm_policy_init(void)
2389{
David S. Miller2518c7c2006-08-24 04:45:07 -07002390 unsigned int hmask, sz;
2391 int dir;
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
2394 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002395 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002396 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
David S. Miller2518c7c2006-08-24 04:45:07 -07002398 hmask = 8 - 1;
2399 sz = (hmask+1) * sizeof(struct hlist_head);
2400
David S. Miller44e36b42006-08-24 04:50:50 -07002401 xfrm_policy_byidx = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002402 xfrm_idx_hmask = hmask;
2403 if (!xfrm_policy_byidx)
2404 panic("XFRM: failed to allocate byidx hash\n");
2405
2406 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2407 struct xfrm_policy_hash *htab;
2408
2409 INIT_HLIST_HEAD(&xfrm_policy_inexact[dir]);
2410
2411 htab = &xfrm_policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002412 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002413 htab->hmask = hmask;
2414 if (!htab->table)
2415 panic("XFRM: failed to allocate bydst hash\n");
2416 }
2417
Timo Teras4c563f72008-02-28 21:31:08 -08002418 for (dir = 0; dir < XFRM_POLICY_TYPE_MAX; dir++)
2419 INIT_LIST_HEAD(&xfrm_policy_bytype[dir]);
2420
David Howellsc4028952006-11-22 14:57:56 +00002421 INIT_WORK(&xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 register_netdevice_notifier(&xfrm_dev_notifier);
2423}
2424
2425void __init xfrm_init(void)
2426{
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002427#ifdef CONFIG_XFRM_STATISTICS
2428 xfrm_statistics_init();
2429#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 xfrm_state_init();
2431 xfrm_policy_init();
2432 xfrm_input_init();
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002433#ifdef CONFIG_XFRM_STATISTICS
2434 xfrm_proc_init();
2435#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
Joy Lattenab5f5e82007-09-17 11:51:22 -07002438#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd2008-01-12 03:20:03 -08002439static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2440 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002441{
Paul Moore875179f2007-12-01 23:27:18 +11002442 struct xfrm_sec_ctx *ctx = xp->security;
2443 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002444
Paul Moore875179f2007-12-01 23:27:18 +11002445 if (ctx)
2446 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2447 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2448
2449 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002450 case AF_INET:
Paul Moore875179f2007-12-01 23:27:18 +11002451 audit_log_format(audit_buf, " src=" NIPQUAD_FMT,
2452 NIPQUAD(sel->saddr.a4));
2453 if (sel->prefixlen_s != 32)
2454 audit_log_format(audit_buf, " src_prefixlen=%d",
2455 sel->prefixlen_s);
2456 audit_log_format(audit_buf, " dst=" NIPQUAD_FMT,
2457 NIPQUAD(sel->daddr.a4));
2458 if (sel->prefixlen_d != 32)
2459 audit_log_format(audit_buf, " dst_prefixlen=%d",
2460 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002461 break;
2462 case AF_INET6:
Paul Moore875179f2007-12-01 23:27:18 +11002463 audit_log_format(audit_buf, " src=" NIP6_FMT,
2464 NIP6(*(struct in6_addr *)sel->saddr.a6));
2465 if (sel->prefixlen_s != 128)
2466 audit_log_format(audit_buf, " src_prefixlen=%d",
2467 sel->prefixlen_s);
2468 audit_log_format(audit_buf, " dst=" NIP6_FMT,
2469 NIP6(*(struct in6_addr *)sel->daddr.a6));
2470 if (sel->prefixlen_d != 128)
2471 audit_log_format(audit_buf, " dst_prefixlen=%d",
2472 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002473 break;
2474 }
2475}
2476
Paul Moore68277ac2007-12-20 20:49:33 -08002477void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002478 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002479{
2480 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002481
Paul Mooreafeb14b2007-12-21 14:58:11 -08002482 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002483 if (audit_buf == NULL)
2484 return;
Eric Paris25323862008-04-18 10:09:25 -04002485 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002486 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002487 xfrm_audit_common_policyinfo(xp, audit_buf);
2488 audit_log_end(audit_buf);
2489}
2490EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2491
Paul Moore68277ac2007-12-20 20:49:33 -08002492void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002493 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002494{
2495 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002496
Paul Mooreafeb14b2007-12-21 14:58:11 -08002497 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002498 if (audit_buf == NULL)
2499 return;
Eric Paris25323862008-04-18 10:09:25 -04002500 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002501 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002502 xfrm_audit_common_policyinfo(xp, audit_buf);
2503 audit_log_end(audit_buf);
2504}
2505EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2506#endif
2507
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002508#ifdef CONFIG_XFRM_MIGRATE
2509static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2510 struct xfrm_selector *sel_tgt)
2511{
2512 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2513 if (sel_tgt->family == sel_cmp->family &&
2514 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002515 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002516 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2517 sel_cmp->family) == 0 &&
2518 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2519 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2520 return 1;
2521 }
2522 } else {
2523 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2524 return 1;
2525 }
2526 }
2527 return 0;
2528}
2529
2530static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2531 u8 dir, u8 type)
2532{
2533 struct xfrm_policy *pol, *ret = NULL;
2534 struct hlist_node *entry;
2535 struct hlist_head *chain;
2536 u32 priority = ~0U;
2537
2538 read_lock_bh(&xfrm_policy_lock);
2539 chain = policy_hash_direct(&sel->daddr, &sel->saddr, sel->family, dir);
2540 hlist_for_each_entry(pol, entry, chain, bydst) {
2541 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2542 pol->type == type) {
2543 ret = pol;
2544 priority = ret->priority;
2545 break;
2546 }
2547 }
2548 chain = &xfrm_policy_inexact[dir];
2549 hlist_for_each_entry(pol, entry, chain, bydst) {
2550 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2551 pol->type == type &&
2552 pol->priority < priority) {
2553 ret = pol;
2554 break;
2555 }
2556 }
2557
2558 if (ret)
2559 xfrm_pol_hold(ret);
2560
2561 read_unlock_bh(&xfrm_policy_lock);
2562
2563 return ret;
2564}
2565
2566static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2567{
2568 int match = 0;
2569
2570 if (t->mode == m->mode && t->id.proto == m->proto &&
2571 (m->reqid == 0 || t->reqid == m->reqid)) {
2572 switch (t->mode) {
2573 case XFRM_MODE_TUNNEL:
2574 case XFRM_MODE_BEET:
2575 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2576 m->old_family) == 0 &&
2577 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2578 m->old_family) == 0) {
2579 match = 1;
2580 }
2581 break;
2582 case XFRM_MODE_TRANSPORT:
2583 /* in case of transport mode, template does not store
2584 any IP addresses, hence we just compare mode and
2585 protocol */
2586 match = 1;
2587 break;
2588 default:
2589 break;
2590 }
2591 }
2592 return match;
2593}
2594
2595/* update endpoint address(es) of template(s) */
2596static int xfrm_policy_migrate(struct xfrm_policy *pol,
2597 struct xfrm_migrate *m, int num_migrate)
2598{
2599 struct xfrm_migrate *mp;
2600 struct dst_entry *dst;
2601 int i, j, n = 0;
2602
2603 write_lock_bh(&pol->lock);
2604 if (unlikely(pol->dead)) {
2605 /* target policy has been deleted */
2606 write_unlock_bh(&pol->lock);
2607 return -ENOENT;
2608 }
2609
2610 for (i = 0; i < pol->xfrm_nr; i++) {
2611 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2612 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2613 continue;
2614 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002615 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2616 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002617 continue;
2618 /* update endpoints */
2619 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2620 sizeof(pol->xfrm_vec[i].id.daddr));
2621 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2622 sizeof(pol->xfrm_vec[i].saddr));
2623 pol->xfrm_vec[i].encap_family = mp->new_family;
2624 /* flush bundles */
2625 while ((dst = pol->bundles) != NULL) {
2626 pol->bundles = dst->next;
2627 dst_free(dst);
2628 }
2629 }
2630 }
2631
2632 write_unlock_bh(&pol->lock);
2633
2634 if (!n)
2635 return -ENODATA;
2636
2637 return 0;
2638}
2639
2640static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2641{
2642 int i, j;
2643
2644 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2645 return -EINVAL;
2646
2647 for (i = 0; i < num_migrate; i++) {
2648 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2649 m[i].old_family) == 0) &&
2650 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2651 m[i].old_family) == 0))
2652 return -EINVAL;
2653 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2654 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2655 return -EINVAL;
2656
2657 /* check if there is any duplicated entry */
2658 for (j = i + 1; j < num_migrate; j++) {
2659 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2660 sizeof(m[i].old_daddr)) &&
2661 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2662 sizeof(m[i].old_saddr)) &&
2663 m[i].proto == m[j].proto &&
2664 m[i].mode == m[j].mode &&
2665 m[i].reqid == m[j].reqid &&
2666 m[i].old_family == m[j].old_family)
2667 return -EINVAL;
2668 }
2669 }
2670
2671 return 0;
2672}
2673
2674int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
2675 struct xfrm_migrate *m, int num_migrate)
2676{
2677 int i, err, nx_cur = 0, nx_new = 0;
2678 struct xfrm_policy *pol = NULL;
2679 struct xfrm_state *x, *xc;
2680 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2681 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2682 struct xfrm_migrate *mp;
2683
2684 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2685 goto out;
2686
2687 /* Stage 1 - find policy */
2688 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2689 err = -ENOENT;
2690 goto out;
2691 }
2692
2693 /* Stage 2 - find and update state(s) */
2694 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2695 if ((x = xfrm_migrate_state_find(mp))) {
2696 x_cur[nx_cur] = x;
2697 nx_cur++;
2698 if ((xc = xfrm_state_migrate(x, mp))) {
2699 x_new[nx_new] = xc;
2700 nx_new++;
2701 } else {
2702 err = -ENODATA;
2703 goto restore_state;
2704 }
2705 }
2706 }
2707
2708 /* Stage 3 - update policy */
2709 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2710 goto restore_state;
2711
2712 /* Stage 4 - delete old state(s) */
2713 if (nx_cur) {
2714 xfrm_states_put(x_cur, nx_cur);
2715 xfrm_states_delete(x_cur, nx_cur);
2716 }
2717
2718 /* Stage 5 - announce */
2719 km_migrate(sel, dir, type, m, num_migrate);
2720
2721 xfrm_pol_put(pol);
2722
2723 return 0;
2724out:
2725 return err;
2726
2727restore_state:
2728 if (pol)
2729 xfrm_pol_put(pol);
2730 if (nx_cur)
2731 xfrm_states_put(x_cur, nx_cur);
2732 if (nx_new)
2733 xfrm_states_delete(x_new, nx_new);
2734
2735 return err;
2736}
David S. Millere610e672007-02-08 13:29:15 -08002737EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002738#endif