blob: 0ecb16a9a8831b9c145a3db4d2e142331061d776 [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
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080037DEFINE_MUTEX(xfrm_cfg_mutex);
38EXPORT_SYMBOL(xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40static DEFINE_RWLOCK(xfrm_policy_lock);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
43static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
44
Christoph Lametere18b8902006-12-06 20:33:20 -080045static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
David S. Miller2518c7c2006-08-24 04:45:07 -070047static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
49
50static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
51static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080052static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Wei Yongjun29fa0b302008-12-03 00:33:09 -080054static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
55 int dir);
56
Andrew Morton77681022006-11-08 22:46:26 -080057static inline int
58__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
59{
60 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
61 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
62 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
63 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
64 (fl->proto == sel->proto || !sel->proto) &&
65 (fl->oif == sel->ifindex || !sel->ifindex);
66}
67
68static inline int
69__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
70{
71 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
72 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
73 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
74 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
75 (fl->proto == sel->proto || !sel->proto) &&
76 (fl->oif == sel->ifindex || !sel->ifindex);
77}
78
79int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
80 unsigned short family)
81{
82 switch (family) {
83 case AF_INET:
84 return __xfrm4_selector_match(sel, fl);
85 case AF_INET6:
86 return __xfrm6_selector_match(sel, fl);
87 }
88 return 0;
89}
90
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -080091static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090092 xfrm_address_t *saddr,
93 xfrm_address_t *daddr,
94 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080096 struct xfrm_policy_afinfo *afinfo;
97 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Herbert Xu25ee3282007-12-11 09:32:34 -080099 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800101 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800103 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900106
107 return dst;
108}
109
110static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
111 xfrm_address_t *prev_saddr,
112 xfrm_address_t *prev_daddr,
113 int family)
114{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800115 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900116 xfrm_address_t *saddr = &x->props.saddr;
117 xfrm_address_t *daddr = &x->id.daddr;
118 struct dst_entry *dst;
119
120 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
121 saddr = x->coaddr;
122 daddr = prev_daddr;
123 }
124 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
125 saddr = prev_saddr;
126 daddr = x->coaddr;
127 }
128
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800129 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900130
131 if (!IS_ERR(dst)) {
132 if (prev_saddr != saddr)
133 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
134 if (prev_daddr != daddr)
135 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
136 }
137
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800138 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static inline unsigned long make_jiffies(long secs)
142{
143 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
144 return MAX_SCHEDULE_TIMEOUT-1;
145 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900146 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149static void xfrm_policy_timer(unsigned long data)
150{
151 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800152 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 long next = LONG_MAX;
154 int warn = 0;
155 int dir;
156
157 read_lock(&xp->lock);
158
Herbert Xu12a169e2008-10-01 07:03:24 -0700159 if (xp->walk.dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 goto out;
161
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700162 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 if (xp->lft.hard_add_expires_seconds) {
165 long tmo = xp->lft.hard_add_expires_seconds +
166 xp->curlft.add_time - now;
167 if (tmo <= 0)
168 goto expired;
169 if (tmo < next)
170 next = tmo;
171 }
172 if (xp->lft.hard_use_expires_seconds) {
173 long tmo = xp->lft.hard_use_expires_seconds +
174 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
175 if (tmo <= 0)
176 goto expired;
177 if (tmo < next)
178 next = tmo;
179 }
180 if (xp->lft.soft_add_expires_seconds) {
181 long tmo = xp->lft.soft_add_expires_seconds +
182 xp->curlft.add_time - now;
183 if (tmo <= 0) {
184 warn = 1;
185 tmo = XFRM_KM_TIMEOUT;
186 }
187 if (tmo < next)
188 next = tmo;
189 }
190 if (xp->lft.soft_use_expires_seconds) {
191 long tmo = xp->lft.soft_use_expires_seconds +
192 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
193 if (tmo <= 0) {
194 warn = 1;
195 tmo = XFRM_KM_TIMEOUT;
196 }
197 if (tmo < next)
198 next = tmo;
199 }
200
201 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800202 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (next != LONG_MAX &&
204 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
205 xfrm_pol_hold(xp);
206
207out:
208 read_unlock(&xp->lock);
209 xfrm_pol_put(xp);
210 return;
211
212expired:
213 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700214 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800215 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 xfrm_pol_put(xp);
217}
218
219
220/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
221 * SPD calls.
222 */
223
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800224struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct xfrm_policy *policy;
227
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700228 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800231 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700232 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700233 INIT_HLIST_NODE(&policy->bydst);
234 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700236 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800237 setup_timer(&policy->timer, xfrm_policy_timer,
238 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 return policy;
241}
242EXPORT_SYMBOL(xfrm_policy_alloc);
243
244/* Destroy xfrm_policy: descendant resources must be released to this moment. */
245
WANG Cong64c31b32008-01-07 22:34:29 -0800246void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Herbert Xu12a169e2008-10-01 07:03:24 -0700248 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Kris Katterjohn09a62662006-01-08 22:24:28 -0800250 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 if (del_timer(&policy->timer))
253 BUG();
254
Paul Moore03e1ad72008-04-12 19:07:52 -0700255 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 kfree(policy);
257}
WANG Cong64c31b32008-01-07 22:34:29 -0800258EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
261{
262 struct dst_entry *dst;
263
264 while ((dst = policy->bundles) != NULL) {
265 policy->bundles = dst->next;
266 dst_free(dst);
267 }
268
269 if (del_timer(&policy->timer))
270 atomic_dec(&policy->refcnt);
271
272 if (atomic_read(&policy->refcnt) > 1)
273 flow_cache_flush();
274
275 xfrm_pol_put(policy);
276}
277
David Howellsc4028952006-11-22 14:57:56 +0000278static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700281 struct hlist_node *entry, *tmp;
282 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700285 gc_list.first = xfrm_policy_gc_list.first;
286 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 spin_unlock_bh(&xfrm_policy_gc_lock);
288
David S. Miller2518c7c2006-08-24 04:45:07 -0700289 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
Alexey Dobriyanc9583962008-11-25 17:13:59 -0800292static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294/* Rule must be locked. Release descentant resources, announce
295 * entry dead. The rule must be unlinked from lists to the moment.
296 */
297
298static void xfrm_policy_kill(struct xfrm_policy *policy)
299{
300 int dead;
301
302 write_lock_bh(&policy->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700303 dead = policy->walk.dead;
304 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 write_unlock_bh(&policy->lock);
306
307 if (unlikely(dead)) {
308 WARN_ON(1);
309 return;
310 }
311
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800312 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700313 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800314 spin_unlock_bh(&xfrm_policy_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 schedule_work(&xfrm_policy_gc_work);
317}
318
David S. Miller2518c7c2006-08-24 04:45:07 -0700319static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
320
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800321static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700322{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800323 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700324}
325
Alexey Dobriyan11219942008-11-25 17:33:06 -0800326static struct hlist_head *policy_hash_bysel(struct net *net, struct xfrm_selector *sel, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700327{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800328 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700329 unsigned int hash = __sel_hash(sel, family, hmask);
330
331 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800332 &net->xfrm.policy_inexact[dir] :
333 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700334}
335
Alexey Dobriyan11219942008-11-25 17:33:06 -0800336static struct hlist_head *policy_hash_direct(struct net *net, xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700337{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800338 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700339 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
340
Alexey Dobriyan11219942008-11-25 17:33:06 -0800341 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700342}
343
David S. Miller2518c7c2006-08-24 04:45:07 -0700344static void xfrm_dst_hash_transfer(struct hlist_head *list,
345 struct hlist_head *ndsttable,
346 unsigned int nhashmask)
347{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800348 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700349 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800350 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700351
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800352redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700353 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
354 unsigned int h;
355
356 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
357 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800358 if (!entry0) {
359 hlist_del(entry);
360 hlist_add_head(&pol->bydst, ndsttable+h);
361 h0 = h;
362 } else {
363 if (h != h0)
364 continue;
365 hlist_del(entry);
366 hlist_add_after(entry0, &pol->bydst);
367 }
368 entry0 = entry;
369 }
370 if (!hlist_empty(list)) {
371 entry0 = NULL;
372 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700373 }
374}
375
376static void xfrm_idx_hash_transfer(struct hlist_head *list,
377 struct hlist_head *nidxtable,
378 unsigned int nhashmask)
379{
380 struct hlist_node *entry, *tmp;
381 struct xfrm_policy *pol;
382
383 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
384 unsigned int h;
385
386 h = __idx_hash(pol->index, nhashmask);
387 hlist_add_head(&pol->byidx, nidxtable+h);
388 }
389}
390
391static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
392{
393 return ((old_hmask + 1) << 1) - 1;
394}
395
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800396static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700397{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800398 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700399 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
400 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800401 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700402 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700403 int i;
404
405 if (!ndst)
406 return;
407
408 write_lock_bh(&xfrm_policy_lock);
409
410 for (i = hmask; i >= 0; i--)
411 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
412
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800413 net->xfrm.policy_bydst[dir].table = ndst;
414 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700415
416 write_unlock_bh(&xfrm_policy_lock);
417
David S. Miller44e36b42006-08-24 04:50:50 -0700418 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700419}
420
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800421static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700422{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800423 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700424 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
425 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800426 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700427 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700428 int i;
429
430 if (!nidx)
431 return;
432
433 write_lock_bh(&xfrm_policy_lock);
434
435 for (i = hmask; i >= 0; i--)
436 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
437
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800438 net->xfrm.policy_byidx = nidx;
439 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700440
441 write_unlock_bh(&xfrm_policy_lock);
442
David S. Miller44e36b42006-08-24 04:50:50 -0700443 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700444}
445
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800446static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700447{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800448 unsigned int cnt = net->xfrm.policy_count[dir];
449 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700450
451 if (total)
452 *total += cnt;
453
454 if ((hmask + 1) < xfrm_policy_hashmax &&
455 cnt > hmask)
456 return 1;
457
458 return 0;
459}
460
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800461static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700462{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800463 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700464
465 if ((hmask + 1) < xfrm_policy_hashmax &&
466 total > hmask)
467 return 1;
468
469 return 0;
470}
471
Alexey Dobriyane0710412010-01-23 13:37:10 +0000472void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700473{
474 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyane0710412010-01-23 13:37:10 +0000475 si->incnt = net->xfrm.policy_count[XFRM_POLICY_IN];
476 si->outcnt = net->xfrm.policy_count[XFRM_POLICY_OUT];
477 si->fwdcnt = net->xfrm.policy_count[XFRM_POLICY_FWD];
478 si->inscnt = net->xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
479 si->outscnt = net->xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
480 si->fwdscnt = net->xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
481 si->spdhcnt = net->xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700482 si->spdhmcnt = xfrm_policy_hashmax;
483 read_unlock_bh(&xfrm_policy_lock);
484}
485EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700486
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700487static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800488static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700489{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800490 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700491 int dir, total;
492
493 mutex_lock(&hash_resize_mutex);
494
495 total = 0;
496 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800497 if (xfrm_bydst_should_resize(net, dir, &total))
498 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700499 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800500 if (xfrm_byidx_should_resize(net, total))
501 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700502
503 mutex_unlock(&hash_resize_mutex);
504}
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506/* Generate new index... KAME seems to generate them ordered by cost
507 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800508static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 static u32 idx_generator;
511
512 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700513 struct hlist_node *entry;
514 struct hlist_head *list;
515 struct xfrm_policy *p;
516 u32 idx;
517 int found;
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 idx = (idx_generator | dir);
520 idx_generator += 8;
521 if (idx == 0)
522 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800523 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700524 found = 0;
525 hlist_for_each_entry(p, entry, list, byidx) {
526 if (p->index == idx) {
527 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700531 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return idx;
533 }
534}
535
David S. Miller2518c7c2006-08-24 04:45:07 -0700536static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
537{
538 u32 *p1 = (u32 *) s1;
539 u32 *p2 = (u32 *) s2;
540 int len = sizeof(struct xfrm_selector) / sizeof(u32);
541 int i;
542
543 for (i = 0; i < len; i++) {
544 if (p1[i] != p2[i])
545 return 1;
546 }
547
548 return 0;
549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
552{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800553 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700554 struct xfrm_policy *pol;
555 struct xfrm_policy *delpol;
556 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800557 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800558 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800561 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700562 delpol = NULL;
563 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700564 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800565 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700566 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800567 xfrm_sec_ctx_match(pol->security, policy->security) &&
568 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (excl) {
570 write_unlock_bh(&xfrm_policy_lock);
571 return -EEXIST;
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 delpol = pol;
574 if (policy->priority > pol->priority)
575 continue;
576 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800577 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 continue;
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (delpol)
581 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700584 hlist_add_after(newpos, &policy->bydst);
585 else
586 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800588 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 atomic_inc(&flow_cache_genid);
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800590 if (delpol)
591 __xfrm_policy_unlink(delpol, dir);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800592 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
593 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800594 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 policy->curlft.use_time = 0;
596 if (!mod_timer(&policy->timer, jiffies + HZ))
597 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800598 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 write_unlock_bh(&xfrm_policy_lock);
600
David S. Miller9b78a822005-12-22 07:39:48 -0800601 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800603 else if (xfrm_bydst_should_resize(net, dir, NULL))
604 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800605
606 read_lock_bh(&xfrm_policy_lock);
607 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700608 entry = &policy->bydst;
609 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800610 struct dst_entry *dst;
611
612 write_lock(&policy->lock);
613 dst = policy->bundles;
614 if (dst) {
615 struct dst_entry *tail = dst;
616 while (tail->next)
617 tail = tail->next;
618 tail->next = gc_list;
619 gc_list = dst;
620
621 policy->bundles = NULL;
622 }
623 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
David S. Miller9b78a822005-12-22 07:39:48 -0800625 read_unlock_bh(&xfrm_policy_lock);
626
627 while (gc_list) {
628 struct dst_entry *dst = gc_list;
629
630 gc_list = dst->next;
631 dst_free(dst);
632 }
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return 0;
635}
636EXPORT_SYMBOL(xfrm_policy_insert);
637
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800638struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u8 type, int dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700639 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800640 struct xfrm_sec_ctx *ctx, int delete,
641 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
David S. Miller2518c7c2006-08-24 04:45:07 -0700643 struct xfrm_policy *pol, *ret;
644 struct hlist_head *chain;
645 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Eric Parisef41aaa2007-03-07 15:37:58 -0800647 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800649 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700650 ret = NULL;
651 hlist_for_each_entry(pol, entry, chain, bydst) {
652 if (pol->type == type &&
653 !selector_cmp(sel, &pol->selector) &&
654 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700656 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700657 *err = security_xfrm_policy_delete(
658 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800659 if (*err) {
660 write_unlock_bh(&xfrm_policy_lock);
661 return pol;
662 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800663 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700664 }
665 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 break;
667 }
668 }
669 write_unlock_bh(&xfrm_policy_lock);
670
David S. Miller2518c7c2006-08-24 04:45:07 -0700671 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700673 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700675 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
Trent Jaegerdf718372005-12-13 23:12:27 -0800677EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800679struct xfrm_policy *xfrm_policy_byid(struct net *net, u8 type, int dir, u32 id,
680 int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
David S. Miller2518c7c2006-08-24 04:45:07 -0700682 struct xfrm_policy *pol, *ret;
683 struct hlist_head *chain;
684 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Herbert Xub5505c62007-05-14 02:15:47 -0700686 *err = -ENOENT;
687 if (xfrm_policy_id2dir(id) != dir)
688 return NULL;
689
Eric Parisef41aaa2007-03-07 15:37:58 -0800690 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800692 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700693 ret = NULL;
694 hlist_for_each_entry(pol, entry, chain, byidx) {
695 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700697 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700698 *err = security_xfrm_policy_delete(
699 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800700 if (*err) {
701 write_unlock_bh(&xfrm_policy_lock);
702 return pol;
703 }
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800704 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700705 }
706 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 break;
708 }
709 }
710 write_unlock_bh(&xfrm_policy_lock);
711
David S. Miller2518c7c2006-08-24 04:45:07 -0700712 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700714 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700716 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718EXPORT_SYMBOL(xfrm_policy_byid);
719
Joy Latten4aa2e622007-06-04 19:05:57 -0400720#ifdef CONFIG_SECURITY_NETWORK_XFRM
721static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800722xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Joy Latten4aa2e622007-06-04 19:05:57 -0400724 int dir, err = 0;
725
726 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
727 struct xfrm_policy *pol;
728 struct hlist_node *entry;
729 int i;
730
731 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800732 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400733 if (pol->type != type)
734 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700735 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400736 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700737 xfrm_audit_policy_delete(pol, 0,
738 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400739 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700740 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400741 return err;
742 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900743 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800744 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400745 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800746 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400747 bydst) {
748 if (pol->type != type)
749 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700750 err = security_xfrm_policy_delete(
751 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400752 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700753 xfrm_audit_policy_delete(pol, 0,
754 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400755 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700756 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400757 return err;
758 }
759 }
760 }
761 }
762 return err;
763}
764#else
765static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800766xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400767{
768 return 0;
769}
770#endif
771
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800772int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400773{
774 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400777
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800778 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400779 if (err)
780 goto out;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700783 struct xfrm_policy *pol;
784 struct hlist_node *entry;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800785 int i;
David S. Miller2518c7c2006-08-24 04:45:07 -0700786
787 again1:
788 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800789 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700790 if (pol->type != type)
791 continue;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800792 __xfrm_policy_unlink(pol, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 write_unlock_bh(&xfrm_policy_lock);
794
Joy Lattenab5f5e82007-09-17 11:51:22 -0700795 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400796 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700797 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600798
David S. Miller2518c7c2006-08-24 04:45:07 -0700799 xfrm_policy_kill(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700802 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700804
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800805 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700806 again2:
807 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800808 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700809 bydst) {
810 if (pol->type != type)
811 continue;
Wei Yongjun29fa0b302008-12-03 00:33:09 -0800812 __xfrm_policy_unlink(pol, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700813 write_unlock_bh(&xfrm_policy_lock);
814
Joy Lattenab5f5e82007-09-17 11:51:22 -0700815 xfrm_audit_policy_delete(pol, 1,
816 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400817 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700818 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700819 xfrm_policy_kill(pol);
820
821 write_lock_bh(&xfrm_policy_lock);
822 goto again2;
823 }
824 }
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400828out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400830 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832EXPORT_SYMBOL(xfrm_policy_flush);
833
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800834int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800835 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 void *data)
837{
Herbert Xu12a169e2008-10-01 07:03:24 -0700838 struct xfrm_policy *pol;
839 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800840 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Timo Teras4c563f72008-02-28 21:31:08 -0800842 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
843 walk->type != XFRM_POLICY_TYPE_ANY)
844 return -EINVAL;
845
Herbert Xu12a169e2008-10-01 07:03:24 -0700846 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800847 return 0;
848
Herbert Xu12a169e2008-10-01 07:03:24 -0700849 write_lock_bh(&xfrm_policy_lock);
850 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800851 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700852 else
853 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800854 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700855 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800856 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700857 pol = container_of(x, struct xfrm_policy, walk);
858 if (walk->type != XFRM_POLICY_TYPE_ANY &&
859 walk->type != pol->type)
860 continue;
861 error = func(pol, xfrm_policy_id2dir(pol->index),
862 walk->seq, data);
863 if (error) {
864 list_move_tail(&walk->walk.all, &x->all);
865 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800866 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700867 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700869 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800870 error = -ENOENT;
871 goto out;
872 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700873 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700875 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return error;
877}
878EXPORT_SYMBOL(xfrm_policy_walk);
879
Herbert Xu12a169e2008-10-01 07:03:24 -0700880void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
881{
882 INIT_LIST_HEAD(&walk->walk.all);
883 walk->walk.dead = 1;
884 walk->type = type;
885 walk->seq = 0;
886}
887EXPORT_SYMBOL(xfrm_policy_walk_init);
888
889void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
890{
891 if (list_empty(&walk->walk.all))
892 return;
893
894 write_lock_bh(&xfrm_policy_lock);
895 list_del(&walk->walk.all);
896 write_unlock_bh(&xfrm_policy_lock);
897}
898EXPORT_SYMBOL(xfrm_policy_walk_done);
899
James Morris134b0fc2006-10-05 15:42:27 -0500900/*
901 * Find policy to apply to this flow.
902 *
903 * Returns 0 if policy found, else an -errno.
904 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700905static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
906 u8 type, u16 family, int dir)
907{
908 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500909 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700910
911 if (pol->family != family ||
912 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500913 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700914
915 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500916 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700917 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
918 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700919
James Morris134b0fc2006-10-05 15:42:27 -0500920 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700921}
922
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800923static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
924 struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700925 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
James Morris134b0fc2006-10-05 15:42:27 -0500927 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700928 struct xfrm_policy *pol, *ret;
929 xfrm_address_t *daddr, *saddr;
930 struct hlist_node *entry;
931 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700932 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700933
934 daddr = xfrm_flowi_daddr(fl, family);
935 saddr = xfrm_flowi_saddr(fl, family);
936 if (unlikely(!daddr || !saddr))
937 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800940 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700941 ret = NULL;
942 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500943 err = xfrm_policy_match(pol, fl, type, family, dir);
944 if (err) {
945 if (err == -ESRCH)
946 continue;
947 else {
948 ret = ERR_PTR(err);
949 goto fail;
950 }
951 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700952 ret = pol;
953 priority = ret->priority;
954 break;
955 }
956 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800957 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700958 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500959 err = xfrm_policy_match(pol, fl, type, family, dir);
960 if (err) {
961 if (err == -ESRCH)
962 continue;
963 else {
964 ret = ERR_PTR(err);
965 goto fail;
966 }
967 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700968 ret = pol;
969 break;
970 }
971 }
David S. Milleracba48e2006-08-25 15:46:46 -0700972 if (ret)
973 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500974fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700976
David S. Miller2518c7c2006-08-24 04:45:07 -0700977 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700978}
979
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800980static int xfrm_policy_lookup(struct net *net, struct flowi *fl, u16 family,
981 u8 dir, void **objp, atomic_t **obj_refp)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700982{
983 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -0500984 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700985
986#ifdef CONFIG_XFRM_SUB_POLICY
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800987 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -0500988 if (IS_ERR(pol)) {
989 err = PTR_ERR(pol);
990 pol = NULL;
991 }
992 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700993 goto end;
994#endif
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800995 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -0500996 if (IS_ERR(pol)) {
997 err = PTR_ERR(pol);
998 pol = NULL;
999 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001000#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001001end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001002#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if ((*objp = (void *) pol) != NULL)
1004 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001005 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Trent Jaegerdf718372005-12-13 23:12:27 -08001008static inline int policy_to_flow_dir(int dir)
1009{
1010 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001011 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1012 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1013 return dir;
1014 switch (dir) {
1015 default:
1016 case XFRM_POLICY_IN:
1017 return FLOW_DIR_IN;
1018 case XFRM_POLICY_OUT:
1019 return FLOW_DIR_OUT;
1020 case XFRM_POLICY_FWD:
1021 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001022 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001023}
1024
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001025static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct xfrm_policy *pol;
1028
1029 read_lock_bh(&xfrm_policy_lock);
1030 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001031 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001033 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001034
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001035 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001036 err = security_xfrm_policy_lookup(pol->security,
1037 fl->secid,
1038 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001039 if (!err)
1040 xfrm_pol_hold(pol);
1041 else if (err == -ESRCH)
1042 pol = NULL;
1043 else
1044 pol = ERR_PTR(err);
1045 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 pol = NULL;
1047 }
1048 read_unlock_bh(&xfrm_policy_lock);
1049 return pol;
1050}
1051
1052static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1053{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001054 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001055 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001056 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001057
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001058 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001059 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001060 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001061 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001063
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001064 if (xfrm_bydst_should_resize(net, dir, NULL))
1065 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
1068static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1069 int dir)
1070{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001071 struct net *net = xp_net(pol);
1072
David S. Miller2518c7c2006-08-24 04:45:07 -07001073 if (hlist_unhashed(&pol->bydst))
1074 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
David S. Miller2518c7c2006-08-24 04:45:07 -07001076 hlist_del(&pol->bydst);
1077 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001078 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001079 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001080
1081 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
Herbert Xu4666faa2005-06-18 22:43:22 -07001084int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 write_lock_bh(&xfrm_policy_lock);
1087 pol = __xfrm_policy_unlink(pol, dir);
1088 write_unlock_bh(&xfrm_policy_lock);
1089 if (pol) {
1090 if (dir < XFRM_POLICY_MAX)
1091 atomic_inc(&flow_cache_genid);
1092 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001095 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
David S. Millera70fcb02006-03-20 19:18:52 -08001097EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1100{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001101 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 struct xfrm_policy *old_pol;
1103
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001104#ifdef CONFIG_XFRM_SUB_POLICY
1105 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1106 return -EINVAL;
1107#endif
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 write_lock_bh(&xfrm_policy_lock);
1110 old_pol = sk->sk_policy[dir];
1111 sk->sk_policy[dir] = pol;
1112 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001113 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001114 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1116 }
1117 if (old_pol)
1118 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1119 write_unlock_bh(&xfrm_policy_lock);
1120
1121 if (old_pol) {
1122 xfrm_policy_kill(old_pol);
1123 }
1124 return 0;
1125}
1126
1127static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1128{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001129 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 if (newp) {
1132 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001133 if (security_xfrm_policy_clone(old->security,
1134 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001135 kfree(newp);
1136 return NULL; /* ENOMEM */
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 newp->lft = old->lft;
1139 newp->curlft = old->curlft;
1140 newp->action = old->action;
1141 newp->flags = old->flags;
1142 newp->xfrm_nr = old->xfrm_nr;
1143 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001144 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 memcpy(newp->xfrm_vec, old->xfrm_vec,
1146 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1147 write_lock_bh(&xfrm_policy_lock);
1148 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1149 write_unlock_bh(&xfrm_policy_lock);
1150 xfrm_pol_put(newp);
1151 }
1152 return newp;
1153}
1154
1155int __xfrm_sk_clone_policy(struct sock *sk)
1156{
1157 struct xfrm_policy *p0 = sk->sk_policy[0],
1158 *p1 = sk->sk_policy[1];
1159
1160 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1161 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1162 return -ENOMEM;
1163 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1164 return -ENOMEM;
1165 return 0;
1166}
1167
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001168static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001169xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001170 unsigned short family)
1171{
1172 int err;
1173 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1174
1175 if (unlikely(afinfo == NULL))
1176 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001177 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001178 xfrm_policy_put_afinfo(afinfo);
1179 return err;
1180}
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182/* Resolve list of templates for the flow, given policy. */
1183
1184static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001185xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1186 struct xfrm_state **xfrm,
1187 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001189 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 int nx;
1191 int i, error;
1192 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1193 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001194 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1197 struct xfrm_state *x;
1198 xfrm_address_t *remote = daddr;
1199 xfrm_address_t *local = saddr;
1200 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1201
Joakim Koskela48b8d782007-07-26 00:08:42 -07001202 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1203 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 remote = &tmpl->id.daddr;
1205 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001206 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001207 if (xfrm_addr_any(local, family)) {
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001208 error = xfrm_get_saddr(net, &tmp, remote, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001209 if (error)
1210 goto fail;
1211 local = &tmp;
1212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214
1215 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1216
1217 if (x && x->km.state == XFRM_STATE_VALID) {
1218 xfrm[nx++] = x;
1219 daddr = remote;
1220 saddr = local;
1221 continue;
1222 }
1223 if (x) {
1224 error = (x->km.state == XFRM_STATE_ERROR ?
1225 -EINVAL : -EAGAIN);
1226 xfrm_state_put(x);
1227 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001228 else if (error == -ESRCH)
1229 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (!tmpl->optional)
1232 goto fail;
1233 }
1234 return nx;
1235
1236fail:
1237 for (nx--; nx>=0; nx--)
1238 xfrm_state_put(xfrm[nx]);
1239 return error;
1240}
1241
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001242static int
1243xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1244 struct xfrm_state **xfrm,
1245 unsigned short family)
1246{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001247 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1248 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001249 int cnx = 0;
1250 int error;
1251 int ret;
1252 int i;
1253
1254 for (i = 0; i < npols; i++) {
1255 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1256 error = -ENOBUFS;
1257 goto fail;
1258 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001259
1260 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001261 if (ret < 0) {
1262 error = ret;
1263 goto fail;
1264 } else
1265 cnx += ret;
1266 }
1267
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001268 /* found states are sorted for outbound processing */
1269 if (npols > 1)
1270 xfrm_state_sort(xfrm, tpp, cnx, family);
1271
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001272 return cnx;
1273
1274 fail:
1275 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001276 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001277 return error;
1278
1279}
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281/* Check that the bundle accepts the flow and its components are
1282 * still valid.
1283 */
1284
1285static struct dst_entry *
1286xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1287{
1288 struct dst_entry *x;
1289 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1290 if (unlikely(afinfo == NULL))
1291 return ERR_PTR(-EINVAL);
1292 x = afinfo->find_bundle(fl, policy);
1293 xfrm_policy_put_afinfo(afinfo);
1294 return x;
1295}
1296
Herbert Xu25ee3282007-12-11 09:32:34 -08001297static inline int xfrm_get_tos(struct flowi *fl, int family)
1298{
1299 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1300 int tos;
1301
1302 if (!afinfo)
1303 return -EINVAL;
1304
1305 tos = afinfo->get_tos(fl);
1306
1307 xfrm_policy_put_afinfo(afinfo);
1308
1309 return tos;
1310}
1311
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001312static inline struct xfrm_dst *xfrm_alloc_dst(struct net *net, int family)
Herbert Xu25ee3282007-12-11 09:32:34 -08001313{
1314 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001315 struct dst_ops *dst_ops;
Herbert Xu25ee3282007-12-11 09:32:34 -08001316 struct xfrm_dst *xdst;
1317
1318 if (!afinfo)
1319 return ERR_PTR(-EINVAL);
1320
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001321 switch (family) {
1322 case AF_INET:
1323 dst_ops = &net->xfrm.xfrm4_dst_ops;
1324 break;
1325#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1326 case AF_INET6:
1327 dst_ops = &net->xfrm.xfrm6_dst_ops;
1328 break;
1329#endif
1330 default:
1331 BUG();
1332 }
1333 xdst = dst_alloc(dst_ops) ?: ERR_PTR(-ENOBUFS);
Herbert Xu25ee3282007-12-11 09:32:34 -08001334
1335 xfrm_policy_put_afinfo(afinfo);
1336
1337 return xdst;
1338}
1339
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001340static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1341 int nfheader_len)
1342{
1343 struct xfrm_policy_afinfo *afinfo =
1344 xfrm_policy_get_afinfo(dst->ops->family);
1345 int err;
1346
1347 if (!afinfo)
1348 return -EINVAL;
1349
1350 err = afinfo->init_path(path, dst, nfheader_len);
1351
1352 xfrm_policy_put_afinfo(afinfo);
1353
1354 return err;
1355}
1356
Herbert Xu25ee3282007-12-11 09:32:34 -08001357static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1358{
1359 struct xfrm_policy_afinfo *afinfo =
1360 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1361 int err;
1362
1363 if (!afinfo)
1364 return -EINVAL;
1365
1366 err = afinfo->fill_dst(xdst, dev);
1367
1368 xfrm_policy_put_afinfo(afinfo);
1369
1370 return err;
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1374 * all the metrics... Shortly, bundle a bundle.
1375 */
1376
Herbert Xu25ee3282007-12-11 09:32:34 -08001377static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1378 struct xfrm_state **xfrm, int nx,
1379 struct flowi *fl,
1380 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001382 struct net *net = xp_net(policy);
Herbert Xu25ee3282007-12-11 09:32:34 -08001383 unsigned long now = jiffies;
1384 struct net_device *dev;
1385 struct dst_entry *dst_prev = NULL;
1386 struct dst_entry *dst0 = NULL;
1387 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001389 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001390 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001391 int trailer_len = 0;
1392 int tos;
1393 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001394 xfrm_address_t saddr, daddr;
1395
1396 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001397
1398 tos = xfrm_get_tos(fl, family);
1399 err = tos;
1400 if (tos < 0)
1401 goto put_states;
1402
1403 dst_hold(dst);
1404
1405 for (; i < nx; i++) {
Alexey Dobriyand7c75442010-01-24 22:47:53 -08001406 struct xfrm_dst *xdst = xfrm_alloc_dst(net, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001407 struct dst_entry *dst1 = &xdst->u.dst;
1408
1409 err = PTR_ERR(xdst);
1410 if (IS_ERR(xdst)) {
1411 dst_release(dst);
1412 goto put_states;
1413 }
1414
1415 if (!dst_prev)
1416 dst0 = dst1;
1417 else {
1418 dst_prev->child = dst_clone(dst1);
1419 dst1->flags |= DST_NOHASH;
1420 }
1421
1422 xdst->route = dst;
1423 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1424
1425 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1426 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001427 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1428 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001429 err = PTR_ERR(dst);
1430 if (IS_ERR(dst))
1431 goto put_states;
1432 } else
1433 dst_hold(dst);
1434
1435 dst1->xfrm = xfrm[i];
1436 xdst->genid = xfrm[i]->genid;
1437
1438 dst1->obsolete = -1;
1439 dst1->flags |= DST_HOST;
1440 dst1->lastuse = now;
1441
1442 dst1->input = dst_discard;
1443 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1444
1445 dst1->next = dst_prev;
1446 dst_prev = dst1;
1447
1448 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001449 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1450 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001451 trailer_len += xfrm[i]->props.trailer_len;
1452 }
1453
1454 dst_prev->child = dst;
1455 dst0->path = dst;
1456
1457 err = -ENODEV;
1458 dev = dst->dev;
1459 if (!dev)
1460 goto free_dst;
1461
Ralf Baechle96c53402009-12-25 23:30:02 +00001462 /* Copy neighbour for reachability confirmation */
Herbert Xu25ee3282007-12-11 09:32:34 -08001463 dst0->neighbour = neigh_clone(dst->neighbour);
1464
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001465 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001466 xfrm_init_pmtu(dst_prev);
1467
1468 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1469 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1470
1471 err = xfrm_fill_dst(xdst, dev);
1472 if (err)
1473 goto free_dst;
1474
1475 dst_prev->header_len = header_len;
1476 dst_prev->trailer_len = trailer_len;
1477 header_len -= xdst->u.dst.xfrm->props.header_len;
1478 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1479 }
1480
1481out:
1482 return dst0;
1483
1484put_states:
1485 for (; i < nx; i++)
1486 xfrm_state_put(xfrm[i]);
1487free_dst:
1488 if (dst0)
1489 dst_free(dst0);
1490 dst0 = ERR_PTR(err);
1491 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001494static int inline
1495xfrm_dst_alloc_copy(void **target, void *src, int size)
1496{
1497 if (!*target) {
1498 *target = kmalloc(size, GFP_ATOMIC);
1499 if (!*target)
1500 return -ENOMEM;
1501 }
1502 memcpy(*target, src, size);
1503 return 0;
1504}
1505
1506static int inline
1507xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1508{
1509#ifdef CONFIG_XFRM_SUB_POLICY
1510 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1511 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1512 sel, sizeof(*sel));
1513#else
1514 return 0;
1515#endif
1516}
1517
1518static int inline
1519xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1520{
1521#ifdef CONFIG_XFRM_SUB_POLICY
1522 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1523 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1524#else
1525 return 0;
1526#endif
1527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529static int stale_bundle(struct dst_entry *dst);
1530
1531/* Main function: finds/creates a bundle for given flow.
1532 *
1533 * At the moment we eat a raw IP route. Mostly to speed up lookups
1534 * on interfaces with disabled IPsec.
1535 */
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001536int __xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001537 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001540 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1541 int npols;
1542 int pol_dead;
1543 int xfrm_nr;
1544 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1546 struct dst_entry *dst, *dst_orig = *dst_p;
1547 int nx = 0;
1548 int err;
1549 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001550 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001551 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553restart:
1554 genid = atomic_read(&flow_cache_genid);
1555 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001556 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1557 pols[pi] = NULL;
1558 npols = 0;
1559 pol_dead = 0;
1560 xfrm_nr = 0;
1561
Thomas Graff7944fb2007-08-25 13:46:55 -07001562 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001563 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001564 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001565 if (IS_ERR(policy)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001566 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001567 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001568 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 if (!policy) {
1572 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001573 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001574 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001575 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001577 policy = flow_cache_lookup(net, fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001578 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001579 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001580 if (IS_ERR(policy)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001581 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001582 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
1585
1586 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001587 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001589 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001590 pols[0] = policy;
1591 npols ++;
1592 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Herbert Xuaef21782007-12-13 09:30:59 -08001594 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001595 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1596 goto error;
1597
1598 policy->curlft.use_time = get_seconds();
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001601 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 case XFRM_POLICY_BLOCK:
1603 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001604 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07001605 err = -EPERM;
1606 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001609#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (policy->xfrm_nr == 0) {
1611 /* Flow passes not transformed. */
1612 xfrm_pol_put(policy);
1613 return 0;
1614 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001615#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 /* Try to find matching bundle.
1618 *
1619 * LATER: help from flow cache. It is optional, this
1620 * is required only for output policy.
1621 */
1622 dst = xfrm_find_bundle(fl, policy, family);
1623 if (IS_ERR(dst)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001624 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye104411b2005-09-08 15:11:55 -07001625 err = PTR_ERR(dst);
1626 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
1628
1629 if (dst)
1630 break;
1631
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001632#ifdef CONFIG_XFRM_SUB_POLICY
1633 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001634 pols[1] = xfrm_policy_lookup_bytype(net,
1635 XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001636 fl, family,
1637 XFRM_POLICY_OUT);
1638 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001639 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001640 XFRM_INC_STATS(net, 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) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001645 XFRM_INC_STATS(net, 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;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08001672 if (err == -EAGAIN && net->xfrm.sysctl_larval_drop) {
David S. Miller14e50e52007-05-24 18:17:54 -07001673 /* EREMOTE tells the caller to generate
1674 * a one-shot blackhole route.
1675 */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001676 XFRM_INC_STATS(net, 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
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001683 add_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 set_current_state(TASK_INTERRUPTIBLE);
1685 schedule();
1686 set_current_state(TASK_RUNNING);
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001687 remove_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
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)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001692 XFRM_INC_STATS(net, 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) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001704 XFRM_INC_STATS(net, 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)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001717 XFRM_INC_STATS(net, 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);
Herbert Xu12a169e2008-10-01 07:03:24 -07001723 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001724 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)
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001738 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLDEAD);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001739 else
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001740 XFRM_INC_STATS(net, 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);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001752 XFRM_INC_STATS(net, 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
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001781int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001782 struct sock *sk, int flags)
1783{
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001784 int err = __xfrm_lookup(net, dst_p, fl, sk, flags);
David S. Miller14e50e52007-05-24 18:17:54 -07001785
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{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001892 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001894 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1895 int npols = 0;
1896 int xfrm_nr;
1897 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001898 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001900 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001901 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Herbert Xud5422ef2007-12-12 10:44:16 -08001903 reverse = dir & ~XFRM_POLICY_MASK;
1904 dir &= XFRM_POLICY_MASK;
1905 fl_dir = policy_to_flow_dir(dir);
1906
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001907 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001908 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001910 }
1911
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001912 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 /* First, check used SA against their selectors. */
1915 if (skb->sp) {
1916 int i;
1917
1918 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001919 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001920 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001921 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
1925 }
1926
1927 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001928 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001929 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001930 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001931 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001932 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001933 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 if (!pol)
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001937 pol = flow_cache_lookup(net, &fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 xfrm_policy_lookup);
1939
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001940 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001941 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001942 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001943 }
James Morris134b0fc2006-10-05 15:42:27 -05001944
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001945 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001946 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001947 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001948 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001949 return 0;
1950 }
1951 return 1;
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
James Morris9d729f72007-03-04 16:12:44 -08001954 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001956 pols[0] = pol;
1957 npols ++;
1958#ifdef CONFIG_XFRM_SUB_POLICY
1959 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001960 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001961 &fl, family,
1962 XFRM_POLICY_IN);
1963 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001964 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001965 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001966 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001967 }
James Morris9d729f72007-03-04 16:12:44 -08001968 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001969 npols ++;
1970 }
1971 }
1972#endif
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (pol->action == XFRM_POLICY_ALLOW) {
1975 struct sec_path *sp;
1976 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001977 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001978 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001979 struct xfrm_tmpl **tpp = tp;
1980 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 int i, k;
1982
1983 if ((sp = skb->sp) == NULL)
1984 sp = &dummy;
1985
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001986 for (pi = 0; pi < npols; pi++) {
1987 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001988 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001989 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001990 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001991 }
1992 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001993 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001994 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001995 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001996 for (i = 0; i < pols[pi]->xfrm_nr; i++)
1997 tpp[ti++] = &pols[pi]->xfrm_vec[i];
1998 }
1999 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002000 if (npols > 1) {
2001 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2002 tpp = stp;
2003 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 /* For each tunnel xfrm, find the first matching tmpl.
2006 * For each tmpl before that, find corresponding xfrm.
2007 * Order is _important_. Later we will implement
2008 * some barriers, but at the moment barriers
2009 * are implied between each two transformations.
2010 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002011 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2012 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002013 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002014 if (k < -1)
2015 /* "-2 - errored_index" returned */
2016 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002017 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002022 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002023 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002027 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return 1;
2029 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002030 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002033 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002034reject_error:
2035 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 return 0;
2037}
2038EXPORT_SYMBOL(__xfrm_policy_check);
2039
2040int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2041{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002042 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct flowi fl;
Eric Dumazetadf30902009-06-02 05:19:30 +00002044 struct dst_entry *dst;
2045 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002047 if (xfrm_decode_session(skb, &fl, family) < 0) {
2048 /* XXX: we should have something like FWDHDRERROR here. */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002049 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Eric Dumazetadf30902009-06-02 05:19:30 +00002053 dst = skb_dst(skb);
2054
2055 res = xfrm_lookup(net, &dst, &fl, NULL, 0) == 0;
2056 skb_dst_set(skb, dst);
2057 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059EXPORT_SYMBOL(__xfrm_route_forward);
2060
David S. Millerd49c73c2006-08-13 18:55:53 -07002061/* Optimize later using cookies and generation ids. */
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2064{
David S. Millerd49c73c2006-08-13 18:55:53 -07002065 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2066 * to "-1" to force all XFRM destinations to get validated by
2067 * dst_ops->check on every use. We do this because when a
2068 * normal route referenced by an XFRM dst is obsoleted we do
2069 * not go looking around for all parent referencing XFRM dsts
2070 * so that we can invalidate them. It is just too much work.
2071 * Instead we make the checks here on every use. For example:
2072 *
2073 * XFRM dst A --> IPv4 dst X
2074 *
2075 * X is the "xdst->route" of A (X is also the "dst->path" of A
2076 * in this example). If X is marked obsolete, "A" will not
2077 * notice. That's what we are validating here via the
2078 * stale_bundle() check.
2079 *
2080 * When a policy's bundle is pruned, we dst_free() the XFRM
2081 * dst which causes it's ->obsolete field to be set to a
2082 * positive non-zero integer. If an XFRM dst has been pruned
2083 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002084 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002085 if (dst->obsolete < 0 && !stale_bundle(dst))
2086 return dst;
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return NULL;
2089}
2090
2091static int stale_bundle(struct dst_entry *dst)
2092{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002093 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Herbert Xuaabc9762005-05-03 16:27:10 -07002096void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002099 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002100 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 dev_put(dev);
2102 }
2103}
Herbert Xuaabc9762005-05-03 16:27:10 -07002104EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106static void xfrm_link_failure(struct sk_buff *skb)
2107{
2108 /* Impossible. Such dst must be popped before reaches point of failure. */
2109 return;
2110}
2111
2112static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2113{
2114 if (dst) {
2115 if (dst->obsolete) {
2116 dst_release(dst);
2117 dst = NULL;
2118 }
2119 }
2120 return dst;
2121}
2122
David S. Miller2518c7c2006-08-24 04:45:07 -07002123static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2124{
2125 struct dst_entry *dst, **dstp;
2126
2127 write_lock(&pol->lock);
2128 dstp = &pol->bundles;
2129 while ((dst=*dstp) != NULL) {
2130 if (func(dst)) {
2131 *dstp = dst->next;
2132 dst->next = *gc_list_p;
2133 *gc_list_p = dst;
2134 } else {
2135 dstp = &dst->next;
2136 }
2137 }
2138 write_unlock(&pol->lock);
2139}
2140
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002141static void xfrm_prune_bundles(struct net *net, int (*func)(struct dst_entry *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
David S. Miller2518c7c2006-08-24 04:45:07 -07002143 struct dst_entry *gc_list = NULL;
2144 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
2146 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002147 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2148 struct xfrm_policy *pol;
2149 struct hlist_node *entry;
2150 struct hlist_head *table;
2151 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002152
David S. Miller2518c7c2006-08-24 04:45:07 -07002153 hlist_for_each_entry(pol, entry,
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002154 &net->xfrm.policy_inexact[dir], bydst)
David S. Miller2518c7c2006-08-24 04:45:07 -07002155 prune_one_bundle(pol, func, &gc_list);
2156
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002157 table = net->xfrm.policy_bydst[dir].table;
2158 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002159 hlist_for_each_entry(pol, entry, table + i, bydst)
2160 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162 }
2163 read_unlock_bh(&xfrm_policy_lock);
2164
2165 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002166 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 gc_list = dst->next;
2168 dst_free(dst);
2169 }
2170}
2171
2172static int unused_bundle(struct dst_entry *dst)
2173{
2174 return !atomic_read(&dst->__refcnt);
2175}
2176
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002177static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002179 xfrm_prune_bundles(net, unused_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
2181
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002182static int xfrm_flush_bundles(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002184 xfrm_prune_bundles(net, stale_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return 0;
2186}
2187
Herbert Xu25ee3282007-12-11 09:32:34 -08002188static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
2190 do {
2191 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2192 u32 pmtu, route_mtu_cached;
2193
2194 pmtu = dst_mtu(dst->child);
2195 xdst->child_mtu_cached = pmtu;
2196
2197 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2198
2199 route_mtu_cached = dst_mtu(xdst->route);
2200 xdst->route_mtu_cached = route_mtu_cached;
2201
2202 if (pmtu > route_mtu_cached)
2203 pmtu = route_mtu_cached;
2204
2205 dst->metrics[RTAX_MTU-1] = pmtu;
2206 } while ((dst = dst->next));
2207}
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209/* Check that the bundle accepts the flow and its components are
2210 * still valid.
2211 */
2212
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002213int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2214 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 struct dst_entry *dst = &first->u.dst;
2217 struct xfrm_dst *last;
2218 u32 mtu;
2219
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002220 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 (dst->dev && !netif_running(dst->dev)))
2222 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002223#ifdef CONFIG_XFRM_SUB_POLICY
2224 if (fl) {
2225 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2226 return 0;
2227 if (first->partner &&
2228 !xfrm_selector_match(first->partner, fl, family))
2229 return 0;
2230 }
2231#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 last = NULL;
2234
2235 do {
2236 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2237
2238 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2239 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002240 if (fl && pol &&
2241 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002242 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2244 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002245 if (xdst->genid != dst->xfrm->genid)
2246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Herbert Xu1bfcb102007-10-17 21:31:50 -07002248 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002249 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002250 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2251 return 0;
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 mtu = dst_mtu(dst->child);
2254 if (xdst->child_mtu_cached != mtu) {
2255 last = xdst;
2256 xdst->child_mtu_cached = mtu;
2257 }
2258
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002259 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 return 0;
2261 mtu = dst_mtu(xdst->route);
2262 if (xdst->route_mtu_cached != mtu) {
2263 last = xdst;
2264 xdst->route_mtu_cached = mtu;
2265 }
2266
2267 dst = dst->child;
2268 } while (dst->xfrm);
2269
2270 if (likely(!last))
2271 return 1;
2272
2273 mtu = last->child_mtu_cached;
2274 for (;;) {
2275 dst = &last->u.dst;
2276
2277 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2278 if (mtu > last->route_mtu_cached)
2279 mtu = last->route_mtu_cached;
2280 dst->metrics[RTAX_MTU-1] = mtu;
2281
2282 if (last == first)
2283 break;
2284
Patrick McHardybd0bf072007-07-18 01:55:52 -07002285 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 last->child_mtu_cached = mtu;
2287 }
2288
2289 return 1;
2290}
2291
2292EXPORT_SYMBOL(xfrm_bundle_ok);
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2295{
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002296 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 int err = 0;
2298 if (unlikely(afinfo == NULL))
2299 return -EINVAL;
2300 if (unlikely(afinfo->family >= NPROTO))
2301 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002302 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2304 err = -ENOBUFS;
2305 else {
2306 struct dst_ops *dst_ops = afinfo->dst_ops;
2307 if (likely(dst_ops->kmem_cachep == NULL))
2308 dst_ops->kmem_cachep = xfrm_dst_cache;
2309 if (likely(dst_ops->check == NULL))
2310 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (likely(dst_ops->negative_advice == NULL))
2312 dst_ops->negative_advice = xfrm_negative_advice;
2313 if (likely(dst_ops->link_failure == NULL))
2314 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 if (likely(afinfo->garbage_collect == NULL))
2316 afinfo->garbage_collect = __xfrm_garbage_collect;
2317 xfrm_policy_afinfo[afinfo->family] = afinfo;
2318 }
Ingo Molnare959d812006-04-28 15:32:29 -07002319 write_unlock_bh(&xfrm_policy_afinfo_lock);
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002320
2321 rtnl_lock();
2322 for_each_net(net) {
2323 struct dst_ops *xfrm_dst_ops;
2324
2325 switch (afinfo->family) {
2326 case AF_INET:
2327 xfrm_dst_ops = &net->xfrm.xfrm4_dst_ops;
2328 break;
2329#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2330 case AF_INET6:
2331 xfrm_dst_ops = &net->xfrm.xfrm6_dst_ops;
2332 break;
2333#endif
2334 default:
2335 BUG();
2336 }
2337 *xfrm_dst_ops = *afinfo->dst_ops;
2338 }
2339 rtnl_unlock();
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return err;
2342}
2343EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2344
2345int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2346{
2347 int err = 0;
2348 if (unlikely(afinfo == NULL))
2349 return -EINVAL;
2350 if (unlikely(afinfo->family >= NPROTO))
2351 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002352 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2354 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2355 err = -EINVAL;
2356 else {
2357 struct dst_ops *dst_ops = afinfo->dst_ops;
2358 xfrm_policy_afinfo[afinfo->family] = NULL;
2359 dst_ops->kmem_cachep = NULL;
2360 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 dst_ops->negative_advice = NULL;
2362 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 afinfo->garbage_collect = NULL;
2364 }
2365 }
Ingo Molnare959d812006-04-28 15:32:29 -07002366 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 return err;
2368}
2369EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2370
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002371static void __net_init xfrm_dst_ops_init(struct net *net)
2372{
2373 struct xfrm_policy_afinfo *afinfo;
2374
2375 read_lock_bh(&xfrm_policy_afinfo_lock);
2376 afinfo = xfrm_policy_afinfo[AF_INET];
2377 if (afinfo)
2378 net->xfrm.xfrm4_dst_ops = *afinfo->dst_ops;
2379#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2380 afinfo = xfrm_policy_afinfo[AF_INET6];
2381 if (afinfo)
2382 net->xfrm.xfrm6_dst_ops = *afinfo->dst_ops;
2383#endif
2384 read_unlock_bh(&xfrm_policy_afinfo_lock);
2385}
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2388{
2389 struct xfrm_policy_afinfo *afinfo;
2390 if (unlikely(family >= NPROTO))
2391 return NULL;
2392 read_lock(&xfrm_policy_afinfo_lock);
2393 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002394 if (unlikely(!afinfo))
2395 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 return afinfo;
2397}
2398
2399static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2400{
Herbert Xu546be242006-05-27 23:03:58 -07002401 read_unlock(&xfrm_policy_afinfo_lock);
2402}
2403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2405{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002406 struct net_device *dev = ptr;
2407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 switch (event) {
2409 case NETDEV_DOWN:
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002410 xfrm_flush_bundles(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
2412 return NOTIFY_DONE;
2413}
2414
2415static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002416 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417};
2418
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002419#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002420static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002421{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002422 int rv;
2423
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002424 if (snmp_mib_init((void **)net->mib.xfrm_statistics,
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002425 sizeof(struct linux_xfrm_mib)) < 0)
2426 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002427 rv = xfrm_proc_init(net);
2428 if (rv < 0)
2429 snmp_mib_free((void **)net->mib.xfrm_statistics);
2430 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002431}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002432
2433static void xfrm_statistics_fini(struct net *net)
2434{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002435 xfrm_proc_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002436 snmp_mib_free((void **)net->mib.xfrm_statistics);
2437}
2438#else
2439static int __net_init xfrm_statistics_init(struct net *net)
2440{
2441 return 0;
2442}
2443
2444static void xfrm_statistics_fini(struct net *net)
2445{
2446}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002447#endif
2448
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002449static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
David S. Miller2518c7c2006-08-24 04:45:07 -07002451 unsigned int hmask, sz;
2452 int dir;
2453
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002454 if (net_eq(net, &init_net))
2455 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002457 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002458 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
David S. Miller2518c7c2006-08-24 04:45:07 -07002460 hmask = 8 - 1;
2461 sz = (hmask+1) * sizeof(struct hlist_head);
2462
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002463 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2464 if (!net->xfrm.policy_byidx)
2465 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002466 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002467
2468 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2469 struct xfrm_policy_hash *htab;
2470
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002471 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002472 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002473
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002474 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002475 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002476 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002477 goto out_bydst;
2478 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002479 }
2480
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002481 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002482 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002483 if (net_eq(net, &init_net))
2484 register_netdevice_notifier(&xfrm_dev_notifier);
2485 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002486
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002487out_bydst:
2488 for (dir--; dir >= 0; dir--) {
2489 struct xfrm_policy_hash *htab;
2490
2491 htab = &net->xfrm.policy_bydst[dir];
2492 xfrm_hash_free(htab->table, sz);
2493 }
2494 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002495out_byidx:
2496 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497}
2498
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002499static void xfrm_policy_fini(struct net *net)
2500{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002501 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002502 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002503 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002504
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002505 flush_work(&net->xfrm.policy_hash_work);
2506#ifdef CONFIG_XFRM_SUB_POLICY
2507 audit_info.loginuid = -1;
2508 audit_info.sessionid = -1;
2509 audit_info.secid = 0;
2510 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2511#endif
2512 audit_info.loginuid = -1;
2513 audit_info.sessionid = -1;
2514 audit_info.secid = 0;
2515 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
2516 flush_work(&xfrm_policy_gc_work);
2517
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002518 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002519
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002520 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002521 struct xfrm_policy_hash *htab;
2522
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002523 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002524
2525 htab = &net->xfrm.policy_bydst[dir];
2526 sz = (htab->hmask + 1);
2527 WARN_ON(!hlist_empty(htab->table));
2528 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002529 }
2530
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002531 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002532 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2533 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002534}
2535
2536static int __net_init xfrm_net_init(struct net *net)
2537{
2538 int rv;
2539
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002540 rv = xfrm_statistics_init(net);
2541 if (rv < 0)
2542 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002543 rv = xfrm_state_init(net);
2544 if (rv < 0)
2545 goto out_state;
2546 rv = xfrm_policy_init(net);
2547 if (rv < 0)
2548 goto out_policy;
Alexey Dobriyand7c75442010-01-24 22:47:53 -08002549 xfrm_dst_ops_init(net);
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002550 rv = xfrm_sysctl_init(net);
2551 if (rv < 0)
2552 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002553 return 0;
2554
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002555out_sysctl:
2556 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002557out_policy:
2558 xfrm_state_fini(net);
2559out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002560 xfrm_statistics_fini(net);
2561out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002562 return rv;
2563}
2564
2565static void __net_exit xfrm_net_exit(struct net *net)
2566{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002567 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002568 xfrm_policy_fini(net);
2569 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002570 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002571}
2572
2573static struct pernet_operations __net_initdata xfrm_net_ops = {
2574 .init = xfrm_net_init,
2575 .exit = xfrm_net_exit,
2576};
2577
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578void __init xfrm_init(void)
2579{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002580 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 xfrm_input_init();
2582}
2583
Joy Lattenab5f5e82007-09-17 11:51:22 -07002584#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002585static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2586 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002587{
Paul Moore875179f2007-12-01 23:27:18 +11002588 struct xfrm_sec_ctx *ctx = xp->security;
2589 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002590
Paul Moore875179f2007-12-01 23:27:18 +11002591 if (ctx)
2592 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2593 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2594
2595 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002596 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002597 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002598 if (sel->prefixlen_s != 32)
2599 audit_log_format(audit_buf, " src_prefixlen=%d",
2600 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002601 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002602 if (sel->prefixlen_d != 32)
2603 audit_log_format(audit_buf, " dst_prefixlen=%d",
2604 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002605 break;
2606 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002607 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002608 if (sel->prefixlen_s != 128)
2609 audit_log_format(audit_buf, " src_prefixlen=%d",
2610 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002611 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002612 if (sel->prefixlen_d != 128)
2613 audit_log_format(audit_buf, " dst_prefixlen=%d",
2614 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002615 break;
2616 }
2617}
2618
Paul Moore68277ac2007-12-20 20:49:33 -08002619void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002620 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002621{
2622 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002623
Paul Mooreafeb14b2007-12-21 14:58:11 -08002624 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002625 if (audit_buf == NULL)
2626 return;
Eric Paris25323862008-04-18 10:09:25 -04002627 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002628 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002629 xfrm_audit_common_policyinfo(xp, audit_buf);
2630 audit_log_end(audit_buf);
2631}
2632EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2633
Paul Moore68277ac2007-12-20 20:49:33 -08002634void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002635 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002636{
2637 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002638
Paul Mooreafeb14b2007-12-21 14:58:11 -08002639 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002640 if (audit_buf == NULL)
2641 return;
Eric Paris25323862008-04-18 10:09:25 -04002642 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002643 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002644 xfrm_audit_common_policyinfo(xp, audit_buf);
2645 audit_log_end(audit_buf);
2646}
2647EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2648#endif
2649
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002650#ifdef CONFIG_XFRM_MIGRATE
2651static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2652 struct xfrm_selector *sel_tgt)
2653{
2654 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2655 if (sel_tgt->family == sel_cmp->family &&
2656 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002657 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002658 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2659 sel_cmp->family) == 0 &&
2660 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2661 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2662 return 1;
2663 }
2664 } else {
2665 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2666 return 1;
2667 }
2668 }
2669 return 0;
2670}
2671
2672static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2673 u8 dir, u8 type)
2674{
2675 struct xfrm_policy *pol, *ret = NULL;
2676 struct hlist_node *entry;
2677 struct hlist_head *chain;
2678 u32 priority = ~0U;
2679
2680 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08002681 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002682 hlist_for_each_entry(pol, entry, chain, bydst) {
2683 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2684 pol->type == type) {
2685 ret = pol;
2686 priority = ret->priority;
2687 break;
2688 }
2689 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002690 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002691 hlist_for_each_entry(pol, entry, chain, bydst) {
2692 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2693 pol->type == type &&
2694 pol->priority < priority) {
2695 ret = pol;
2696 break;
2697 }
2698 }
2699
2700 if (ret)
2701 xfrm_pol_hold(ret);
2702
2703 read_unlock_bh(&xfrm_policy_lock);
2704
2705 return ret;
2706}
2707
2708static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2709{
2710 int match = 0;
2711
2712 if (t->mode == m->mode && t->id.proto == m->proto &&
2713 (m->reqid == 0 || t->reqid == m->reqid)) {
2714 switch (t->mode) {
2715 case XFRM_MODE_TUNNEL:
2716 case XFRM_MODE_BEET:
2717 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2718 m->old_family) == 0 &&
2719 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2720 m->old_family) == 0) {
2721 match = 1;
2722 }
2723 break;
2724 case XFRM_MODE_TRANSPORT:
2725 /* in case of transport mode, template does not store
2726 any IP addresses, hence we just compare mode and
2727 protocol */
2728 match = 1;
2729 break;
2730 default:
2731 break;
2732 }
2733 }
2734 return match;
2735}
2736
2737/* update endpoint address(es) of template(s) */
2738static int xfrm_policy_migrate(struct xfrm_policy *pol,
2739 struct xfrm_migrate *m, int num_migrate)
2740{
2741 struct xfrm_migrate *mp;
2742 struct dst_entry *dst;
2743 int i, j, n = 0;
2744
2745 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002746 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002747 /* target policy has been deleted */
2748 write_unlock_bh(&pol->lock);
2749 return -ENOENT;
2750 }
2751
2752 for (i = 0; i < pol->xfrm_nr; i++) {
2753 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2754 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2755 continue;
2756 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002757 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2758 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002759 continue;
2760 /* update endpoints */
2761 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2762 sizeof(pol->xfrm_vec[i].id.daddr));
2763 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2764 sizeof(pol->xfrm_vec[i].saddr));
2765 pol->xfrm_vec[i].encap_family = mp->new_family;
2766 /* flush bundles */
2767 while ((dst = pol->bundles) != NULL) {
2768 pol->bundles = dst->next;
2769 dst_free(dst);
2770 }
2771 }
2772 }
2773
2774 write_unlock_bh(&pol->lock);
2775
2776 if (!n)
2777 return -ENODATA;
2778
2779 return 0;
2780}
2781
2782static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2783{
2784 int i, j;
2785
2786 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2787 return -EINVAL;
2788
2789 for (i = 0; i < num_migrate; i++) {
2790 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2791 m[i].old_family) == 0) &&
2792 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2793 m[i].old_family) == 0))
2794 return -EINVAL;
2795 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2796 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2797 return -EINVAL;
2798
2799 /* check if there is any duplicated entry */
2800 for (j = i + 1; j < num_migrate; j++) {
2801 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2802 sizeof(m[i].old_daddr)) &&
2803 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2804 sizeof(m[i].old_saddr)) &&
2805 m[i].proto == m[j].proto &&
2806 m[i].mode == m[j].mode &&
2807 m[i].reqid == m[j].reqid &&
2808 m[i].old_family == m[j].old_family)
2809 return -EINVAL;
2810 }
2811 }
2812
2813 return 0;
2814}
2815
2816int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002817 struct xfrm_migrate *m, int num_migrate,
2818 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002819{
2820 int i, err, nx_cur = 0, nx_new = 0;
2821 struct xfrm_policy *pol = NULL;
2822 struct xfrm_state *x, *xc;
2823 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2824 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2825 struct xfrm_migrate *mp;
2826
2827 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2828 goto out;
2829
2830 /* Stage 1 - find policy */
2831 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2832 err = -ENOENT;
2833 goto out;
2834 }
2835
2836 /* Stage 2 - find and update state(s) */
2837 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2838 if ((x = xfrm_migrate_state_find(mp))) {
2839 x_cur[nx_cur] = x;
2840 nx_cur++;
2841 if ((xc = xfrm_state_migrate(x, mp))) {
2842 x_new[nx_new] = xc;
2843 nx_new++;
2844 } else {
2845 err = -ENODATA;
2846 goto restore_state;
2847 }
2848 }
2849 }
2850
2851 /* Stage 3 - update policy */
2852 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2853 goto restore_state;
2854
2855 /* Stage 4 - delete old state(s) */
2856 if (nx_cur) {
2857 xfrm_states_put(x_cur, nx_cur);
2858 xfrm_states_delete(x_cur, nx_cur);
2859 }
2860
2861 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002862 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002863
2864 xfrm_pol_put(pol);
2865
2866 return 0;
2867out:
2868 return err;
2869
2870restore_state:
2871 if (pol)
2872 xfrm_pol_put(pol);
2873 if (nx_cur)
2874 xfrm_states_put(x_cur, nx_cur);
2875 if (nx_new)
2876 xfrm_states_delete(x_new, nx_new);
2877
2878 return err;
2879}
David S. Millere610e672007-02-08 13:29:15 -08002880EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002881#endif