blob: 3eccefae2c8a5549a2d392176088b7f543fcd97e [file] [log] [blame]
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * xfrm_policy.c
3 *
4 * Changes:
5 * Mitsuru KANDA @USAGI
6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
8 * IPv6 support
9 * Kazunori MIYAZAWA @USAGI
10 * YOSHIFUJI Hideaki
11 * Split up af-specific portion
12 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
Trent Jaegerdf718372005-12-13 23:12:27 -080013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Herbert Xu66cdb3c2007-11-13 21:37:28 -080016#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/kmod.h>
19#include <linux/list.h>
20#include <linux/spinlock.h>
21#include <linux/workqueue.h>
22#include <linux/notifier.h>
23#include <linux/netdevice.h>
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -080024#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
David S. Miller2518c7c2006-08-24 04:45:07 -070026#include <linux/cache.h>
Paul Moore68277ac2007-12-20 20:49:33 -080027#include <linux/audit.h>
Herbert Xu25ee3282007-12-11 09:32:34 -080028#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/xfrm.h>
30#include <net/ip.h>
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080031#ifdef CONFIG_XFRM_STATISTICS
32#include <net/snmp.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David S. Miller44e36b42006-08-24 04:50:50 -070035#include "xfrm_hash.h"
36
David S. Miller28faa972008-09-09 16:08:51 -070037int sysctl_xfrm_larval_drop __read_mostly = 1;
David S. Miller14e50e52007-05-24 18:17:54 -070038
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080039#ifdef CONFIG_XFRM_STATISTICS
40DEFINE_SNMP_STAT(struct linux_xfrm_mib, xfrm_statistics) __read_mostly;
41EXPORT_SYMBOL(xfrm_statistics);
42#endif
43
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080044DEFINE_MUTEX(xfrm_cfg_mutex);
45EXPORT_SYMBOL(xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47static DEFINE_RWLOCK(xfrm_policy_lock);
48
Herbert Xu12a169e2008-10-01 07:03:24 -070049static struct list_head xfrm_policy_all;
David S. Miller2518c7c2006-08-24 04:45:07 -070050unsigned int xfrm_policy_count[XFRM_POLICY_MAX*2];
51EXPORT_SYMBOL(xfrm_policy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
54static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
55
Christoph Lametere18b8902006-12-06 20:33:20 -080056static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
David S. Miller2518c7c2006-08-24 04:45:07 -070058static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
60
61static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
62static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080063static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Andrew Morton77681022006-11-08 22:46:26 -080065static inline int
66__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
67{
68 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
69 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
70 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
71 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
72 (fl->proto == sel->proto || !sel->proto) &&
73 (fl->oif == sel->ifindex || !sel->ifindex);
74}
75
76static inline int
77__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
78{
79 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
80 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
81 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
82 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
83 (fl->proto == sel->proto || !sel->proto) &&
84 (fl->oif == sel->ifindex || !sel->ifindex);
85}
86
87int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
88 unsigned short family)
89{
90 switch (family) {
91 case AF_INET:
92 return __xfrm4_selector_match(sel, fl);
93 case AF_INET6:
94 return __xfrm6_selector_match(sel, fl);
95 }
96 return 0;
97}
98
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090099static inline struct dst_entry *__xfrm_dst_lookup(int tos,
100 xfrm_address_t *saddr,
101 xfrm_address_t *daddr,
102 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800104 struct xfrm_policy_afinfo *afinfo;
105 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Herbert Xu25ee3282007-12-11 09:32:34 -0800107 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800109 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800111 dst = afinfo->dst_lookup(tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900114
115 return dst;
116}
117
118static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
119 xfrm_address_t *prev_saddr,
120 xfrm_address_t *prev_daddr,
121 int family)
122{
123 xfrm_address_t *saddr = &x->props.saddr;
124 xfrm_address_t *daddr = &x->id.daddr;
125 struct dst_entry *dst;
126
127 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
128 saddr = x->coaddr;
129 daddr = prev_daddr;
130 }
131 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
132 saddr = prev_saddr;
133 daddr = x->coaddr;
134 }
135
136 dst = __xfrm_dst_lookup(tos, saddr, daddr, family);
137
138 if (!IS_ERR(dst)) {
139 if (prev_saddr != saddr)
140 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
141 if (prev_daddr != daddr)
142 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
143 }
144
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800145 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static inline unsigned long make_jiffies(long secs)
149{
150 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
151 return MAX_SCHEDULE_TIMEOUT-1;
152 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900153 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156static void xfrm_policy_timer(unsigned long data)
157{
158 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800159 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 long next = LONG_MAX;
161 int warn = 0;
162 int dir;
163
164 read_lock(&xp->lock);
165
Herbert Xu12a169e2008-10-01 07:03:24 -0700166 if (xp->walk.dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 goto out;
168
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700169 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 if (xp->lft.hard_add_expires_seconds) {
172 long tmo = xp->lft.hard_add_expires_seconds +
173 xp->curlft.add_time - now;
174 if (tmo <= 0)
175 goto expired;
176 if (tmo < next)
177 next = tmo;
178 }
179 if (xp->lft.hard_use_expires_seconds) {
180 long tmo = xp->lft.hard_use_expires_seconds +
181 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
182 if (tmo <= 0)
183 goto expired;
184 if (tmo < next)
185 next = tmo;
186 }
187 if (xp->lft.soft_add_expires_seconds) {
188 long tmo = xp->lft.soft_add_expires_seconds +
189 xp->curlft.add_time - now;
190 if (tmo <= 0) {
191 warn = 1;
192 tmo = XFRM_KM_TIMEOUT;
193 }
194 if (tmo < next)
195 next = tmo;
196 }
197 if (xp->lft.soft_use_expires_seconds) {
198 long tmo = xp->lft.soft_use_expires_seconds +
199 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
200 if (tmo <= 0) {
201 warn = 1;
202 tmo = XFRM_KM_TIMEOUT;
203 }
204 if (tmo < next)
205 next = tmo;
206 }
207
208 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800209 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (next != LONG_MAX &&
211 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
212 xfrm_pol_hold(xp);
213
214out:
215 read_unlock(&xp->lock);
216 xfrm_pol_put(xp);
217 return;
218
219expired:
220 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700221 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800222 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 xfrm_pol_put(xp);
224}
225
226
227/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
228 * SPD calls.
229 */
230
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800231struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct xfrm_policy *policy;
234
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700235 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800238 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700239 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700240 INIT_HLIST_NODE(&policy->bydst);
241 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700243 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800244 setup_timer(&policy->timer, xfrm_policy_timer,
245 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247 return policy;
248}
249EXPORT_SYMBOL(xfrm_policy_alloc);
250
251/* Destroy xfrm_policy: descendant resources must be released to this moment. */
252
WANG Cong64c31b32008-01-07 22:34:29 -0800253void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Herbert Xu12a169e2008-10-01 07:03:24 -0700255 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Kris Katterjohn09a62662006-01-08 22:24:28 -0800257 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (del_timer(&policy->timer))
260 BUG();
261
Paul Moore03e1ad72008-04-12 19:07:52 -0700262 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 kfree(policy);
264}
WANG Cong64c31b32008-01-07 22:34:29 -0800265EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
268{
269 struct dst_entry *dst;
270
271 while ((dst = policy->bundles) != NULL) {
272 policy->bundles = dst->next;
273 dst_free(dst);
274 }
275
276 if (del_timer(&policy->timer))
277 atomic_dec(&policy->refcnt);
278
279 if (atomic_read(&policy->refcnt) > 1)
280 flow_cache_flush();
281
282 xfrm_pol_put(policy);
283}
284
David Howellsc4028952006-11-22 14:57:56 +0000285static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700288 struct hlist_node *entry, *tmp;
289 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700292 gc_list.first = xfrm_policy_gc_list.first;
293 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 spin_unlock_bh(&xfrm_policy_gc_lock);
295
David S. Miller2518c7c2006-08-24 04:45:07 -0700296 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
Alexey Dobriyanc9583962008-11-25 17:13:59 -0800299static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301/* Rule must be locked. Release descentant resources, announce
302 * entry dead. The rule must be unlinked from lists to the moment.
303 */
304
305static void xfrm_policy_kill(struct xfrm_policy *policy)
306{
307 int dead;
308
309 write_lock_bh(&policy->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700310 dead = policy->walk.dead;
311 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 write_unlock_bh(&policy->lock);
313
314 if (unlikely(dead)) {
315 WARN_ON(1);
316 return;
317 }
318
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800319 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700320 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800321 spin_unlock_bh(&xfrm_policy_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 schedule_work(&xfrm_policy_gc_work);
324}
325
David S. Miller2518c7c2006-08-24 04:45:07 -0700326struct xfrm_policy_hash {
327 struct hlist_head *table;
328 unsigned int hmask;
329};
330
331static struct hlist_head xfrm_policy_inexact[XFRM_POLICY_MAX*2];
332static struct xfrm_policy_hash xfrm_policy_bydst[XFRM_POLICY_MAX*2] __read_mostly;
333static struct hlist_head *xfrm_policy_byidx __read_mostly;
334static unsigned int xfrm_idx_hmask __read_mostly;
335static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
336
David S. Miller2518c7c2006-08-24 04:45:07 -0700337static inline unsigned int idx_hash(u32 index)
338{
339 return __idx_hash(index, xfrm_idx_hmask);
340}
341
David S. Miller2518c7c2006-08-24 04:45:07 -0700342static struct hlist_head *policy_hash_bysel(struct xfrm_selector *sel, unsigned short family, int dir)
343{
344 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
345 unsigned int hash = __sel_hash(sel, family, hmask);
346
347 return (hash == hmask + 1 ?
348 &xfrm_policy_inexact[dir] :
349 xfrm_policy_bydst[dir].table + hash);
350}
351
352static struct hlist_head *policy_hash_direct(xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
353{
354 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
355 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
356
357 return xfrm_policy_bydst[dir].table + hash;
358}
359
David S. Miller2518c7c2006-08-24 04:45:07 -0700360static void xfrm_dst_hash_transfer(struct hlist_head *list,
361 struct hlist_head *ndsttable,
362 unsigned int nhashmask)
363{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800364 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700365 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800366 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700367
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800368redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700369 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
370 unsigned int h;
371
372 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
373 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800374 if (!entry0) {
375 hlist_del(entry);
376 hlist_add_head(&pol->bydst, ndsttable+h);
377 h0 = h;
378 } else {
379 if (h != h0)
380 continue;
381 hlist_del(entry);
382 hlist_add_after(entry0, &pol->bydst);
383 }
384 entry0 = entry;
385 }
386 if (!hlist_empty(list)) {
387 entry0 = NULL;
388 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700389 }
390}
391
392static void xfrm_idx_hash_transfer(struct hlist_head *list,
393 struct hlist_head *nidxtable,
394 unsigned int nhashmask)
395{
396 struct hlist_node *entry, *tmp;
397 struct xfrm_policy *pol;
398
399 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
400 unsigned int h;
401
402 h = __idx_hash(pol->index, nhashmask);
403 hlist_add_head(&pol->byidx, nidxtable+h);
404 }
405}
406
407static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
408{
409 return ((old_hmask + 1) << 1) - 1;
410}
411
412static void xfrm_bydst_resize(int dir)
413{
414 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
415 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
416 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
417 struct hlist_head *odst = xfrm_policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700418 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700419 int i;
420
421 if (!ndst)
422 return;
423
424 write_lock_bh(&xfrm_policy_lock);
425
426 for (i = hmask; i >= 0; i--)
427 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
428
429 xfrm_policy_bydst[dir].table = ndst;
430 xfrm_policy_bydst[dir].hmask = nhashmask;
431
432 write_unlock_bh(&xfrm_policy_lock);
433
David S. Miller44e36b42006-08-24 04:50:50 -0700434 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700435}
436
437static void xfrm_byidx_resize(int total)
438{
439 unsigned int hmask = xfrm_idx_hmask;
440 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
441 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
442 struct hlist_head *oidx = xfrm_policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700443 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700444 int i;
445
446 if (!nidx)
447 return;
448
449 write_lock_bh(&xfrm_policy_lock);
450
451 for (i = hmask; i >= 0; i--)
452 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
453
454 xfrm_policy_byidx = nidx;
455 xfrm_idx_hmask = nhashmask;
456
457 write_unlock_bh(&xfrm_policy_lock);
458
David S. Miller44e36b42006-08-24 04:50:50 -0700459 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700460}
461
462static inline int xfrm_bydst_should_resize(int dir, int *total)
463{
464 unsigned int cnt = xfrm_policy_count[dir];
465 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
466
467 if (total)
468 *total += cnt;
469
470 if ((hmask + 1) < xfrm_policy_hashmax &&
471 cnt > hmask)
472 return 1;
473
474 return 0;
475}
476
477static inline int xfrm_byidx_should_resize(int total)
478{
479 unsigned int hmask = xfrm_idx_hmask;
480
481 if ((hmask + 1) < xfrm_policy_hashmax &&
482 total > hmask)
483 return 1;
484
485 return 0;
486}
487
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700488void xfrm_spd_getinfo(struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700489{
490 read_lock_bh(&xfrm_policy_lock);
491 si->incnt = xfrm_policy_count[XFRM_POLICY_IN];
492 si->outcnt = xfrm_policy_count[XFRM_POLICY_OUT];
493 si->fwdcnt = xfrm_policy_count[XFRM_POLICY_FWD];
494 si->inscnt = xfrm_policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
495 si->outscnt = xfrm_policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
496 si->fwdscnt = xfrm_policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
497 si->spdhcnt = xfrm_idx_hmask;
498 si->spdhmcnt = xfrm_policy_hashmax;
499 read_unlock_bh(&xfrm_policy_lock);
500}
501EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700502
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700503static DEFINE_MUTEX(hash_resize_mutex);
David Howellsc4028952006-11-22 14:57:56 +0000504static void xfrm_hash_resize(struct work_struct *__unused)
David S. Miller2518c7c2006-08-24 04:45:07 -0700505{
506 int dir, total;
507
508 mutex_lock(&hash_resize_mutex);
509
510 total = 0;
511 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
512 if (xfrm_bydst_should_resize(dir, &total))
513 xfrm_bydst_resize(dir);
514 }
515 if (xfrm_byidx_should_resize(total))
516 xfrm_byidx_resize(total);
517
518 mutex_unlock(&hash_resize_mutex);
519}
520
David Howellsc4028952006-11-22 14:57:56 +0000521static DECLARE_WORK(xfrm_hash_work, xfrm_hash_resize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/* Generate new index... KAME seems to generate them ordered by cost
524 * of an absolute inpredictability of ordering of rules. This will not pass. */
Arnaud Ebalard7a121222008-11-12 23:28:15 -0800525static u32 xfrm_gen_index(int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 static u32 idx_generator;
528
529 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700530 struct hlist_node *entry;
531 struct hlist_head *list;
532 struct xfrm_policy *p;
533 u32 idx;
534 int found;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 idx = (idx_generator | dir);
537 idx_generator += 8;
538 if (idx == 0)
539 idx = 8;
David S. Miller2518c7c2006-08-24 04:45:07 -0700540 list = xfrm_policy_byidx + idx_hash(idx);
541 found = 0;
542 hlist_for_each_entry(p, entry, list, byidx) {
543 if (p->index == idx) {
544 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700548 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return idx;
550 }
551}
552
David S. Miller2518c7c2006-08-24 04:45:07 -0700553static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
554{
555 u32 *p1 = (u32 *) s1;
556 u32 *p2 = (u32 *) s2;
557 int len = sizeof(struct xfrm_selector) / sizeof(u32);
558 int i;
559
560 for (i = 0; i < len; i++) {
561 if (p1[i] != p2[i])
562 return 1;
563 }
564
565 return 0;
566}
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
569{
David S. Miller2518c7c2006-08-24 04:45:07 -0700570 struct xfrm_policy *pol;
571 struct xfrm_policy *delpol;
572 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800573 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800574 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700577 chain = policy_hash_bysel(&policy->selector, policy->family, dir);
578 delpol = NULL;
579 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700580 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800581 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700582 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800583 xfrm_sec_ctx_match(pol->security, policy->security) &&
584 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (excl) {
586 write_unlock_bh(&xfrm_policy_lock);
587 return -EEXIST;
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 delpol = pol;
590 if (policy->priority > pol->priority)
591 continue;
592 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800593 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 continue;
595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (delpol)
597 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700600 hlist_add_after(newpos, &policy->bydst);
601 else
602 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 xfrm_pol_hold(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700604 xfrm_policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700606 if (delpol) {
607 hlist_del(&delpol->bydst);
608 hlist_del(&delpol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700609 list_del(&delpol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700610 xfrm_policy_count[dir]--;
611 }
Arnaud Ebalard7a121222008-11-12 23:28:15 -0800612 policy->index = delpol ? delpol->index : xfrm_gen_index(dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700613 hlist_add_head(&policy->byidx, xfrm_policy_byidx+idx_hash(policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800614 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 policy->curlft.use_time = 0;
616 if (!mod_timer(&policy->timer, jiffies + HZ))
617 xfrm_pol_hold(policy);
Herbert Xu12a169e2008-10-01 07:03:24 -0700618 list_add(&policy->walk.all, &xfrm_policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 write_unlock_bh(&xfrm_policy_lock);
620
David S. Miller9b78a822005-12-22 07:39:48 -0800621 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 xfrm_policy_kill(delpol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700623 else if (xfrm_bydst_should_resize(dir, NULL))
624 schedule_work(&xfrm_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800625
626 read_lock_bh(&xfrm_policy_lock);
627 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700628 entry = &policy->bydst;
629 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800630 struct dst_entry *dst;
631
632 write_lock(&policy->lock);
633 dst = policy->bundles;
634 if (dst) {
635 struct dst_entry *tail = dst;
636 while (tail->next)
637 tail = tail->next;
638 tail->next = gc_list;
639 gc_list = dst;
640
641 policy->bundles = NULL;
642 }
643 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
David S. Miller9b78a822005-12-22 07:39:48 -0800645 read_unlock_bh(&xfrm_policy_lock);
646
647 while (gc_list) {
648 struct dst_entry *dst = gc_list;
649
650 gc_list = dst->next;
651 dst_free(dst);
652 }
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return 0;
655}
656EXPORT_SYMBOL(xfrm_policy_insert);
657
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700658struct xfrm_policy *xfrm_policy_bysel_ctx(u8 type, int dir,
659 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800660 struct xfrm_sec_ctx *ctx, int delete,
661 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
David S. Miller2518c7c2006-08-24 04:45:07 -0700663 struct xfrm_policy *pol, *ret;
664 struct hlist_head *chain;
665 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Eric Parisef41aaa2007-03-07 15:37:58 -0800667 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700669 chain = policy_hash_bysel(sel, sel->family, dir);
670 ret = NULL;
671 hlist_for_each_entry(pol, entry, chain, bydst) {
672 if (pol->type == type &&
673 !selector_cmp(sel, &pol->selector) &&
674 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700676 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700677 *err = security_xfrm_policy_delete(
678 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800679 if (*err) {
680 write_unlock_bh(&xfrm_policy_lock);
681 return pol;
682 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700683 hlist_del(&pol->bydst);
684 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700685 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700686 xfrm_policy_count[dir]--;
687 }
688 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690 }
691 }
692 write_unlock_bh(&xfrm_policy_lock);
693
David S. Miller2518c7c2006-08-24 04:45:07 -0700694 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700696 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700698 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
Trent Jaegerdf718372005-12-13 23:12:27 -0800700EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Eric Parisef41aaa2007-03-07 15:37:58 -0800702struct xfrm_policy *xfrm_policy_byid(u8 type, int dir, u32 id, int delete,
703 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
David S. Miller2518c7c2006-08-24 04:45:07 -0700705 struct xfrm_policy *pol, *ret;
706 struct hlist_head *chain;
707 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Herbert Xub5505c62007-05-14 02:15:47 -0700709 *err = -ENOENT;
710 if (xfrm_policy_id2dir(id) != dir)
711 return NULL;
712
Eric Parisef41aaa2007-03-07 15:37:58 -0800713 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700715 chain = xfrm_policy_byidx + idx_hash(id);
716 ret = NULL;
717 hlist_for_each_entry(pol, entry, chain, byidx) {
718 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700720 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700721 *err = security_xfrm_policy_delete(
722 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800723 if (*err) {
724 write_unlock_bh(&xfrm_policy_lock);
725 return pol;
726 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700727 hlist_del(&pol->bydst);
728 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700729 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700730 xfrm_policy_count[dir]--;
731 }
732 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 break;
734 }
735 }
736 write_unlock_bh(&xfrm_policy_lock);
737
David S. Miller2518c7c2006-08-24 04:45:07 -0700738 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700740 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700742 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744EXPORT_SYMBOL(xfrm_policy_byid);
745
Joy Latten4aa2e622007-06-04 19:05:57 -0400746#ifdef CONFIG_SECURITY_NETWORK_XFRM
747static inline int
748xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Joy Latten4aa2e622007-06-04 19:05:57 -0400750 int dir, err = 0;
751
752 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
753 struct xfrm_policy *pol;
754 struct hlist_node *entry;
755 int i;
756
757 hlist_for_each_entry(pol, entry,
758 &xfrm_policy_inexact[dir], bydst) {
759 if (pol->type != type)
760 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700761 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400762 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700763 xfrm_audit_policy_delete(pol, 0,
764 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400765 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700766 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400767 return err;
768 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900769 }
Joy Latten4aa2e622007-06-04 19:05:57 -0400770 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
771 hlist_for_each_entry(pol, entry,
772 xfrm_policy_bydst[dir].table + i,
773 bydst) {
774 if (pol->type != type)
775 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700776 err = security_xfrm_policy_delete(
777 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400778 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700779 xfrm_audit_policy_delete(pol, 0,
780 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400781 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700782 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400783 return err;
784 }
785 }
786 }
787 }
788 return err;
789}
790#else
791static inline int
792xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
793{
794 return 0;
795}
796#endif
797
798int xfrm_policy_flush(u8 type, struct xfrm_audit *audit_info)
799{
800 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400803
804 err = xfrm_policy_flush_secctx_check(type, audit_info);
805 if (err)
806 goto out;
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700809 struct xfrm_policy *pol;
810 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700811 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700812
David S. Millerae8c0572006-10-03 16:00:26 -0700813 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700814 again1:
815 hlist_for_each_entry(pol, entry,
816 &xfrm_policy_inexact[dir], bydst) {
817 if (pol->type != type)
818 continue;
819 hlist_del(&pol->bydst);
820 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 write_unlock_bh(&xfrm_policy_lock);
822
Joy Lattenab5f5e82007-09-17 11:51:22 -0700823 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400824 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700825 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600826
David S. Miller2518c7c2006-08-24 04:45:07 -0700827 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700828 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700831 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700833
834 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
835 again2:
836 hlist_for_each_entry(pol, entry,
837 xfrm_policy_bydst[dir].table + i,
838 bydst) {
839 if (pol->type != type)
840 continue;
841 hlist_del(&pol->bydst);
842 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700843 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700844 write_unlock_bh(&xfrm_policy_lock);
845
Joy Lattenab5f5e82007-09-17 11:51:22 -0700846 xfrm_audit_policy_delete(pol, 1,
847 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400848 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700849 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700850 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700851 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700852
853 write_lock_bh(&xfrm_policy_lock);
854 goto again2;
855 }
856 }
857
David S. Millerae8c0572006-10-03 16:00:26 -0700858 xfrm_policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400861out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400863 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865EXPORT_SYMBOL(xfrm_policy_flush);
866
Timo Teras4c563f72008-02-28 21:31:08 -0800867int xfrm_policy_walk(struct xfrm_policy_walk *walk,
868 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 void *data)
870{
Herbert Xu12a169e2008-10-01 07:03:24 -0700871 struct xfrm_policy *pol;
872 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800873 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Timo Teras4c563f72008-02-28 21:31:08 -0800875 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
876 walk->type != XFRM_POLICY_TYPE_ANY)
877 return -EINVAL;
878
Herbert Xu12a169e2008-10-01 07:03:24 -0700879 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800880 return 0;
881
Herbert Xu12a169e2008-10-01 07:03:24 -0700882 write_lock_bh(&xfrm_policy_lock);
883 if (list_empty(&walk->walk.all))
884 x = list_first_entry(&xfrm_policy_all, struct xfrm_policy_walk_entry, all);
885 else
886 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
887 list_for_each_entry_from(x, &xfrm_policy_all, all) {
888 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800889 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700890 pol = container_of(x, struct xfrm_policy, walk);
891 if (walk->type != XFRM_POLICY_TYPE_ANY &&
892 walk->type != pol->type)
893 continue;
894 error = func(pol, xfrm_policy_id2dir(pol->index),
895 walk->seq, data);
896 if (error) {
897 list_move_tail(&walk->walk.all, &x->all);
898 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800899 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700900 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700902 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800903 error = -ENOENT;
904 goto out;
905 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700906 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700908 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return error;
910}
911EXPORT_SYMBOL(xfrm_policy_walk);
912
Herbert Xu12a169e2008-10-01 07:03:24 -0700913void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
914{
915 INIT_LIST_HEAD(&walk->walk.all);
916 walk->walk.dead = 1;
917 walk->type = type;
918 walk->seq = 0;
919}
920EXPORT_SYMBOL(xfrm_policy_walk_init);
921
922void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
923{
924 if (list_empty(&walk->walk.all))
925 return;
926
927 write_lock_bh(&xfrm_policy_lock);
928 list_del(&walk->walk.all);
929 write_unlock_bh(&xfrm_policy_lock);
930}
931EXPORT_SYMBOL(xfrm_policy_walk_done);
932
James Morris134b0fc2006-10-05 15:42:27 -0500933/*
934 * Find policy to apply to this flow.
935 *
936 * Returns 0 if policy found, else an -errno.
937 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700938static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
939 u8 type, u16 family, int dir)
940{
941 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500942 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700943
944 if (pol->family != family ||
945 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500946 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700947
948 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500949 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700950 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
951 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700952
James Morris134b0fc2006-10-05 15:42:27 -0500953 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700954}
955
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700956static struct xfrm_policy *xfrm_policy_lookup_bytype(u8 type, struct flowi *fl,
957 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
James Morris134b0fc2006-10-05 15:42:27 -0500959 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700960 struct xfrm_policy *pol, *ret;
961 xfrm_address_t *daddr, *saddr;
962 struct hlist_node *entry;
963 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700964 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700965
966 daddr = xfrm_flowi_daddr(fl, family);
967 saddr = xfrm_flowi_saddr(fl, family);
968 if (unlikely(!daddr || !saddr))
969 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700972 chain = policy_hash_direct(daddr, saddr, family, dir);
973 ret = NULL;
974 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500975 err = xfrm_policy_match(pol, fl, type, family, dir);
976 if (err) {
977 if (err == -ESRCH)
978 continue;
979 else {
980 ret = ERR_PTR(err);
981 goto fail;
982 }
983 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700984 ret = pol;
985 priority = ret->priority;
986 break;
987 }
988 }
989 chain = &xfrm_policy_inexact[dir];
990 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500991 err = xfrm_policy_match(pol, fl, type, family, dir);
992 if (err) {
993 if (err == -ESRCH)
994 continue;
995 else {
996 ret = ERR_PTR(err);
997 goto fail;
998 }
999 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -07001000 ret = pol;
1001 break;
1002 }
1003 }
David S. Milleracba48e2006-08-25 15:46:46 -07001004 if (ret)
1005 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -05001006fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001008
David S. Miller2518c7c2006-08-24 04:45:07 -07001009 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001010}
1011
James Morris134b0fc2006-10-05 15:42:27 -05001012static int xfrm_policy_lookup(struct flowi *fl, u16 family, u8 dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001013 void **objp, atomic_t **obj_refp)
1014{
1015 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -05001016 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001017
1018#ifdef CONFIG_XFRM_SUB_POLICY
1019 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001020 if (IS_ERR(pol)) {
1021 err = PTR_ERR(pol);
1022 pol = NULL;
1023 }
1024 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001025 goto end;
1026#endif
1027 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001028 if (IS_ERR(pol)) {
1029 err = PTR_ERR(pol);
1030 pol = NULL;
1031 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001032#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001033end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001034#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if ((*objp = (void *) pol) != NULL)
1036 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001037 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
Trent Jaegerdf718372005-12-13 23:12:27 -08001040static inline int policy_to_flow_dir(int dir)
1041{
1042 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001043 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1044 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1045 return dir;
1046 switch (dir) {
1047 default:
1048 case XFRM_POLICY_IN:
1049 return FLOW_DIR_IN;
1050 case XFRM_POLICY_OUT:
1051 return FLOW_DIR_OUT;
1052 case XFRM_POLICY_FWD:
1053 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001054 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001055}
1056
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001057static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 struct xfrm_policy *pol;
1060
1061 read_lock_bh(&xfrm_policy_lock);
1062 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001063 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001065 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001066
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001067 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001068 err = security_xfrm_policy_lookup(pol->security,
1069 fl->secid,
1070 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001071 if (!err)
1072 xfrm_pol_hold(pol);
1073 else if (err == -ESRCH)
1074 pol = NULL;
1075 else
1076 pol = ERR_PTR(err);
1077 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 pol = NULL;
1079 }
1080 read_unlock_bh(&xfrm_policy_lock);
1081 return pol;
1082}
1083
1084static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1085{
David S. Miller2518c7c2006-08-24 04:45:07 -07001086 struct hlist_head *chain = policy_hash_bysel(&pol->selector,
1087 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001088
Herbert Xu12a169e2008-10-01 07:03:24 -07001089 list_add(&pol->walk.all, &xfrm_policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001090 hlist_add_head(&pol->bydst, chain);
1091 hlist_add_head(&pol->byidx, xfrm_policy_byidx+idx_hash(pol->index));
1092 xfrm_policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001094
1095 if (xfrm_bydst_should_resize(dir, NULL))
1096 schedule_work(&xfrm_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
1099static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1100 int dir)
1101{
David S. Miller2518c7c2006-08-24 04:45:07 -07001102 if (hlist_unhashed(&pol->bydst))
1103 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
David S. Miller2518c7c2006-08-24 04:45:07 -07001105 hlist_del(&pol->bydst);
1106 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001107 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001108 xfrm_policy_count[dir]--;
1109
1110 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Herbert Xu4666faa2005-06-18 22:43:22 -07001113int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 write_lock_bh(&xfrm_policy_lock);
1116 pol = __xfrm_policy_unlink(pol, dir);
1117 write_unlock_bh(&xfrm_policy_lock);
1118 if (pol) {
1119 if (dir < XFRM_POLICY_MAX)
1120 atomic_inc(&flow_cache_genid);
1121 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001122 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001124 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
David S. Millera70fcb02006-03-20 19:18:52 -08001126EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1129{
1130 struct xfrm_policy *old_pol;
1131
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001132#ifdef CONFIG_XFRM_SUB_POLICY
1133 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1134 return -EINVAL;
1135#endif
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 write_lock_bh(&xfrm_policy_lock);
1138 old_pol = sk->sk_policy[dir];
1139 sk->sk_policy[dir] = pol;
1140 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001141 pol->curlft.add_time = get_seconds();
Arnaud Ebalard7a121222008-11-12 23:28:15 -08001142 pol->index = xfrm_gen_index(XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1144 }
1145 if (old_pol)
1146 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1147 write_unlock_bh(&xfrm_policy_lock);
1148
1149 if (old_pol) {
1150 xfrm_policy_kill(old_pol);
1151 }
1152 return 0;
1153}
1154
1155static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1156{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001157 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 if (newp) {
1160 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001161 if (security_xfrm_policy_clone(old->security,
1162 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001163 kfree(newp);
1164 return NULL; /* ENOMEM */
1165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 newp->lft = old->lft;
1167 newp->curlft = old->curlft;
1168 newp->action = old->action;
1169 newp->flags = old->flags;
1170 newp->xfrm_nr = old->xfrm_nr;
1171 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001172 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 memcpy(newp->xfrm_vec, old->xfrm_vec,
1174 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1175 write_lock_bh(&xfrm_policy_lock);
1176 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1177 write_unlock_bh(&xfrm_policy_lock);
1178 xfrm_pol_put(newp);
1179 }
1180 return newp;
1181}
1182
1183int __xfrm_sk_clone_policy(struct sock *sk)
1184{
1185 struct xfrm_policy *p0 = sk->sk_policy[0],
1186 *p1 = sk->sk_policy[1];
1187
1188 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1189 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1190 return -ENOMEM;
1191 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1192 return -ENOMEM;
1193 return 0;
1194}
1195
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001196static int
1197xfrm_get_saddr(xfrm_address_t *local, xfrm_address_t *remote,
1198 unsigned short family)
1199{
1200 int err;
1201 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1202
1203 if (unlikely(afinfo == NULL))
1204 return -EINVAL;
1205 err = afinfo->get_saddr(local, remote);
1206 xfrm_policy_put_afinfo(afinfo);
1207 return err;
1208}
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210/* Resolve list of templates for the flow, given policy. */
1211
1212static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001213xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1214 struct xfrm_state **xfrm,
1215 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 int nx;
1218 int i, error;
1219 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1220 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001221 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1224 struct xfrm_state *x;
1225 xfrm_address_t *remote = daddr;
1226 xfrm_address_t *local = saddr;
1227 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1228
Joakim Koskela48b8d782007-07-26 00:08:42 -07001229 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1230 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 remote = &tmpl->id.daddr;
1232 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001233 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001234 if (xfrm_addr_any(local, family)) {
1235 error = xfrm_get_saddr(&tmp, remote, family);
1236 if (error)
1237 goto fail;
1238 local = &tmp;
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241
1242 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1243
1244 if (x && x->km.state == XFRM_STATE_VALID) {
1245 xfrm[nx++] = x;
1246 daddr = remote;
1247 saddr = local;
1248 continue;
1249 }
1250 if (x) {
1251 error = (x->km.state == XFRM_STATE_ERROR ?
1252 -EINVAL : -EAGAIN);
1253 xfrm_state_put(x);
1254 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001255 else if (error == -ESRCH)
1256 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 if (!tmpl->optional)
1259 goto fail;
1260 }
1261 return nx;
1262
1263fail:
1264 for (nx--; nx>=0; nx--)
1265 xfrm_state_put(xfrm[nx]);
1266 return error;
1267}
1268
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001269static int
1270xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1271 struct xfrm_state **xfrm,
1272 unsigned short family)
1273{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001274 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1275 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001276 int cnx = 0;
1277 int error;
1278 int ret;
1279 int i;
1280
1281 for (i = 0; i < npols; i++) {
1282 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1283 error = -ENOBUFS;
1284 goto fail;
1285 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001286
1287 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001288 if (ret < 0) {
1289 error = ret;
1290 goto fail;
1291 } else
1292 cnx += ret;
1293 }
1294
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001295 /* found states are sorted for outbound processing */
1296 if (npols > 1)
1297 xfrm_state_sort(xfrm, tpp, cnx, family);
1298
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001299 return cnx;
1300
1301 fail:
1302 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001303 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001304 return error;
1305
1306}
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308/* Check that the bundle accepts the flow and its components are
1309 * still valid.
1310 */
1311
1312static struct dst_entry *
1313xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1314{
1315 struct dst_entry *x;
1316 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1317 if (unlikely(afinfo == NULL))
1318 return ERR_PTR(-EINVAL);
1319 x = afinfo->find_bundle(fl, policy);
1320 xfrm_policy_put_afinfo(afinfo);
1321 return x;
1322}
1323
Herbert Xu25ee3282007-12-11 09:32:34 -08001324static inline int xfrm_get_tos(struct flowi *fl, int family)
1325{
1326 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1327 int tos;
1328
1329 if (!afinfo)
1330 return -EINVAL;
1331
1332 tos = afinfo->get_tos(fl);
1333
1334 xfrm_policy_put_afinfo(afinfo);
1335
1336 return tos;
1337}
1338
1339static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1340{
1341 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1342 struct xfrm_dst *xdst;
1343
1344 if (!afinfo)
1345 return ERR_PTR(-EINVAL);
1346
1347 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1348
1349 xfrm_policy_put_afinfo(afinfo);
1350
1351 return xdst;
1352}
1353
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001354static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1355 int nfheader_len)
1356{
1357 struct xfrm_policy_afinfo *afinfo =
1358 xfrm_policy_get_afinfo(dst->ops->family);
1359 int err;
1360
1361 if (!afinfo)
1362 return -EINVAL;
1363
1364 err = afinfo->init_path(path, dst, nfheader_len);
1365
1366 xfrm_policy_put_afinfo(afinfo);
1367
1368 return err;
1369}
1370
Herbert Xu25ee3282007-12-11 09:32:34 -08001371static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1372{
1373 struct xfrm_policy_afinfo *afinfo =
1374 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1375 int err;
1376
1377 if (!afinfo)
1378 return -EINVAL;
1379
1380 err = afinfo->fill_dst(xdst, dev);
1381
1382 xfrm_policy_put_afinfo(afinfo);
1383
1384 return err;
1385}
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1388 * all the metrics... Shortly, bundle a bundle.
1389 */
1390
Herbert Xu25ee3282007-12-11 09:32:34 -08001391static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1392 struct xfrm_state **xfrm, int nx,
1393 struct flowi *fl,
1394 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Herbert Xu25ee3282007-12-11 09:32:34 -08001396 unsigned long now = jiffies;
1397 struct net_device *dev;
1398 struct dst_entry *dst_prev = NULL;
1399 struct dst_entry *dst0 = NULL;
1400 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001402 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001403 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001404 int trailer_len = 0;
1405 int tos;
1406 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001407 xfrm_address_t saddr, daddr;
1408
1409 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001410
1411 tos = xfrm_get_tos(fl, family);
1412 err = tos;
1413 if (tos < 0)
1414 goto put_states;
1415
1416 dst_hold(dst);
1417
1418 for (; i < nx; i++) {
1419 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1420 struct dst_entry *dst1 = &xdst->u.dst;
1421
1422 err = PTR_ERR(xdst);
1423 if (IS_ERR(xdst)) {
1424 dst_release(dst);
1425 goto put_states;
1426 }
1427
1428 if (!dst_prev)
1429 dst0 = dst1;
1430 else {
1431 dst_prev->child = dst_clone(dst1);
1432 dst1->flags |= DST_NOHASH;
1433 }
1434
1435 xdst->route = dst;
1436 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1437
1438 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1439 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001440 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1441 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001442 err = PTR_ERR(dst);
1443 if (IS_ERR(dst))
1444 goto put_states;
1445 } else
1446 dst_hold(dst);
1447
1448 dst1->xfrm = xfrm[i];
1449 xdst->genid = xfrm[i]->genid;
1450
1451 dst1->obsolete = -1;
1452 dst1->flags |= DST_HOST;
1453 dst1->lastuse = now;
1454
1455 dst1->input = dst_discard;
1456 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1457
1458 dst1->next = dst_prev;
1459 dst_prev = dst1;
1460
1461 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001462 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1463 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001464 trailer_len += xfrm[i]->props.trailer_len;
1465 }
1466
1467 dst_prev->child = dst;
1468 dst0->path = dst;
1469
1470 err = -ENODEV;
1471 dev = dst->dev;
1472 if (!dev)
1473 goto free_dst;
1474
1475 /* Copy neighbout for reachability confirmation */
1476 dst0->neighbour = neigh_clone(dst->neighbour);
1477
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001478 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001479 xfrm_init_pmtu(dst_prev);
1480
1481 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1482 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1483
1484 err = xfrm_fill_dst(xdst, dev);
1485 if (err)
1486 goto free_dst;
1487
1488 dst_prev->header_len = header_len;
1489 dst_prev->trailer_len = trailer_len;
1490 header_len -= xdst->u.dst.xfrm->props.header_len;
1491 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1492 }
1493
1494out:
1495 return dst0;
1496
1497put_states:
1498 for (; i < nx; i++)
1499 xfrm_state_put(xfrm[i]);
1500free_dst:
1501 if (dst0)
1502 dst_free(dst0);
1503 dst0 = ERR_PTR(err);
1504 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001507static int inline
1508xfrm_dst_alloc_copy(void **target, void *src, int size)
1509{
1510 if (!*target) {
1511 *target = kmalloc(size, GFP_ATOMIC);
1512 if (!*target)
1513 return -ENOMEM;
1514 }
1515 memcpy(*target, src, size);
1516 return 0;
1517}
1518
1519static int inline
1520xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1521{
1522#ifdef CONFIG_XFRM_SUB_POLICY
1523 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1524 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1525 sel, sizeof(*sel));
1526#else
1527 return 0;
1528#endif
1529}
1530
1531static int inline
1532xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1533{
1534#ifdef CONFIG_XFRM_SUB_POLICY
1535 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1536 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1537#else
1538 return 0;
1539#endif
1540}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542static int stale_bundle(struct dst_entry *dst);
1543
1544/* Main function: finds/creates a bundle for given flow.
1545 *
1546 * At the moment we eat a raw IP route. Mostly to speed up lookups
1547 * on interfaces with disabled IPsec.
1548 */
David S. Miller14e50e52007-05-24 18:17:54 -07001549int __xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1550 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
1552 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001553 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1554 int npols;
1555 int pol_dead;
1556 int xfrm_nr;
1557 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1559 struct dst_entry *dst, *dst_orig = *dst_p;
1560 int nx = 0;
1561 int err;
1562 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001563 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001564 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566restart:
1567 genid = atomic_read(&flow_cache_genid);
1568 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001569 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1570 pols[pi] = NULL;
1571 npols = 0;
1572 pol_dead = 0;
1573 xfrm_nr = 0;
1574
Thomas Graff7944fb2007-08-25 13:46:55 -07001575 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001576 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001577 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001578 if (IS_ERR(policy)) {
1579 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001580 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001581 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 if (!policy) {
1585 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001586 if ((dst_orig->flags & DST_NOXFRM) ||
1587 !xfrm_policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001588 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001590 policy = flow_cache_lookup(fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001591 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001592 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001593 if (IS_ERR(policy)) {
1594 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001595 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
1598
1599 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001600 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001602 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001603 pols[0] = policy;
1604 npols ++;
1605 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Herbert Xuaef21782007-12-13 09:30:59 -08001607 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001608 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1609 goto error;
1610
1611 policy->curlft.use_time = get_seconds();
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001614 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 case XFRM_POLICY_BLOCK:
1616 /* Prohibit the flow */
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001617 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye1044112005-09-08 15:11:55 -07001618 err = -EPERM;
1619 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001622#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (policy->xfrm_nr == 0) {
1624 /* Flow passes not transformed. */
1625 xfrm_pol_put(policy);
1626 return 0;
1627 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001628#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 /* Try to find matching bundle.
1631 *
1632 * LATER: help from flow cache. It is optional, this
1633 * is required only for output policy.
1634 */
1635 dst = xfrm_find_bundle(fl, policy, family);
1636 if (IS_ERR(dst)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001637 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye1044112005-09-08 15:11:55 -07001638 err = PTR_ERR(dst);
1639 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
1641
1642 if (dst)
1643 break;
1644
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001645#ifdef CONFIG_XFRM_SUB_POLICY
1646 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1647 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1648 fl, family,
1649 XFRM_POLICY_OUT);
1650 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001651 if (IS_ERR(pols[1])) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001652 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001653 err = PTR_ERR(pols[1]);
1654 goto error;
1655 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001656 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001657 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001658 err = -EPERM;
1659 goto error;
1660 }
1661 npols ++;
1662 xfrm_nr += pols[1]->xfrm_nr;
1663 }
1664 }
1665
1666 /*
1667 * Because neither flowi nor bundle information knows about
1668 * transformation template size. On more than one policy usage
1669 * we can realize whether all of them is bypass or not after
1670 * they are searched. See above not-transformed bypass
1671 * is surrounded by non-sub policy configuration, too.
1672 */
1673 if (xfrm_nr == 0) {
1674 /* Flow passes not transformed. */
1675 xfrm_pols_put(pols, npols);
1676 return 0;
1677 }
1678
1679#endif
1680 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 if (unlikely(nx<0)) {
1683 err = nx;
David S. Miller14e50e52007-05-24 18:17:54 -07001684 if (err == -EAGAIN && sysctl_xfrm_larval_drop) {
1685 /* EREMOTE tells the caller to generate
1686 * a one-shot blackhole route.
1687 */
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001688 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001689 xfrm_pol_put(policy);
1690 return -EREMOTE;
1691 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001692 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 DECLARE_WAITQUEUE(wait, current);
1694
Alexey Dobriyan50a30652008-11-25 17:21:01 -08001695 add_wait_queue(&init_net.xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 set_current_state(TASK_INTERRUPTIBLE);
1697 schedule();
1698 set_current_state(TASK_RUNNING);
Alexey Dobriyan50a30652008-11-25 17:21:01 -08001699 remove_wait_queue(&init_net.xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001701 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 if (nx == -EAGAIN && signal_pending(current)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001704 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 err = -ERESTART;
1706 goto error;
1707 }
1708 if (nx == -EAGAIN ||
1709 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001710 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 goto restart;
1712 }
1713 err = nx;
1714 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001715 if (err < 0) {
1716 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720 if (nx == 0) {
1721 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001722 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return 0;
1724 }
1725
Herbert Xu25ee3282007-12-11 09:32:34 -08001726 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1727 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001728 if (IS_ERR(dst)) {
1729 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001733 for (pi = 0; pi < npols; pi++) {
1734 read_lock_bh(&pols[pi]->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001735 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001736 read_unlock_bh(&pols[pi]->lock);
1737 }
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001740 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 /* Wow! While we worked on resolving, this
1742 * policy has gone. Retry. It is not paranoia,
1743 * we just cannot enlist new bundle to dead object.
1744 * We can't enlist stable bundles either.
1745 */
1746 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001747 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001748
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001749 if (pol_dead)
1750 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD);
1751 else
1752 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001753 err = -EHOSTUNREACH;
1754 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001756
1757 if (npols > 1)
1758 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1759 else
1760 err = xfrm_dst_update_origin(dst, fl);
1761 if (unlikely(err)) {
1762 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001763 dst_free(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001764 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001765 goto error;
1766 }
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 dst->next = policy->bundles;
1769 policy->bundles = dst;
1770 dst_hold(dst);
1771 write_unlock_bh(&policy->lock);
1772 }
1773 *dst_p = dst;
1774 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001775 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return 0;
1777
1778error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001779 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001780dropdst:
1781 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 *dst_p = NULL;
1783 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001784
1785nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001786 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001787 if (flags & XFRM_LOOKUP_ICMP)
1788 goto dropdst;
1789 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
David S. Miller14e50e52007-05-24 18:17:54 -07001791EXPORT_SYMBOL(__xfrm_lookup);
1792
1793int xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1794 struct sock *sk, int flags)
1795{
1796 int err = __xfrm_lookup(dst_p, fl, sk, flags);
1797
1798 if (err == -EREMOTE) {
1799 dst_release(*dst_p);
1800 *dst_p = NULL;
1801 err = -EAGAIN;
1802 }
1803
1804 return err;
1805}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806EXPORT_SYMBOL(xfrm_lookup);
1807
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001808static inline int
1809xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1810{
1811 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001812
1813 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1814 return 0;
1815 x = skb->sp->xvec[idx];
1816 if (!x->type->reject)
1817 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001818 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001819}
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821/* When skb is transformed back to its "native" form, we have to
1822 * check policy restrictions. At the moment we make this in maximally
1823 * stupid way. Shame on me. :-) Of course, connected sockets must
1824 * have policy cached at them.
1825 */
1826
1827static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001828xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 unsigned short family)
1830{
1831 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001832 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return x->id.proto == tmpl->id.proto &&
1834 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1835 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1836 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001837 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001838 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001839 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1840 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001843/*
1844 * 0 or more than 0 is returned when validation is succeeded (either bypass
1845 * because of optional transport mode, or next index of the mathced secpath
1846 * state with the template.
1847 * -1 is returned when no matching template is found.
1848 * Otherwise "-2 - errored_index" is returned.
1849 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850static inline int
1851xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1852 unsigned short family)
1853{
1854 int idx = start;
1855
1856 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001857 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return start;
1859 } else
1860 start = -1;
1861 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001862 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001864 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1865 if (start == -1)
1866 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870 return start;
1871}
1872
Herbert Xud5422ef2007-12-12 10:44:16 -08001873int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1874 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
1876 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001877 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 if (unlikely(afinfo == NULL))
1880 return -EAFNOSUPPORT;
1881
Herbert Xud5422ef2007-12-12 10:44:16 -08001882 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001883 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001885 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886}
Herbert Xud5422ef2007-12-12 10:44:16 -08001887EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001889static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
1891 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001892 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001893 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897
1898 return 0;
1899}
1900
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001901int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 unsigned short family)
1903{
1904 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001905 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1906 int npols = 0;
1907 int xfrm_nr;
1908 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001909 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001911 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001912 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Herbert Xud5422ef2007-12-12 10:44:16 -08001914 reverse = dir & ~XFRM_POLICY_MASK;
1915 dir &= XFRM_POLICY_MASK;
1916 fl_dir = policy_to_flow_dir(dir);
1917
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001918 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
1919 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001921 }
1922
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001923 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 /* First, check used SA against their selectors. */
1926 if (skb->sp) {
1927 int i;
1928
1929 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001930 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001931 if (!xfrm_selector_match(&x->sel, &fl, family)) {
1932 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 }
1937
1938 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001939 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001940 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001941 if (IS_ERR(pol)) {
1942 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001943 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001944 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 if (!pol)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001948 pol = flow_cache_lookup(&fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 xfrm_policy_lookup);
1950
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001951 if (IS_ERR(pol)) {
1952 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001953 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001954 }
James Morris134b0fc2006-10-05 15:42:27 -05001955
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001956 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001957 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001958 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001959 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001960 return 0;
1961 }
1962 return 1;
1963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
James Morris9d729f72007-03-04 16:12:44 -08001965 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001967 pols[0] = pol;
1968 npols ++;
1969#ifdef CONFIG_XFRM_SUB_POLICY
1970 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1971 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1972 &fl, family,
1973 XFRM_POLICY_IN);
1974 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001975 if (IS_ERR(pols[1])) {
1976 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001977 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001978 }
James Morris9d729f72007-03-04 16:12:44 -08001979 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001980 npols ++;
1981 }
1982 }
1983#endif
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (pol->action == XFRM_POLICY_ALLOW) {
1986 struct sec_path *sp;
1987 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001988 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001989 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001990 struct xfrm_tmpl **tpp = tp;
1991 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 int i, k;
1993
1994 if ((sp = skb->sp) == NULL)
1995 sp = &dummy;
1996
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001997 for (pi = 0; pi < npols; pi++) {
1998 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001999 pols[pi]->action != XFRM_POLICY_ALLOW) {
2000 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002001 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002002 }
2003 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
2004 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002005 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002006 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002007 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2008 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2009 }
2010 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002011 if (npols > 1) {
2012 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2013 tpp = stp;
2014 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /* For each tunnel xfrm, find the first matching tmpl.
2017 * For each tmpl before that, find corresponding xfrm.
2018 * Order is _important_. Later we will implement
2019 * some barriers, but at the moment barriers
2020 * are implied between each two transformations.
2021 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002022 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2023 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002024 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002025 if (k < -1)
2026 /* "-2 - errored_index" returned */
2027 xerr_idx = -(2+k);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002028 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
2032
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002033 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2034 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002038 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return 1;
2040 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002041 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002044 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002045reject_error:
2046 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return 0;
2048}
2049EXPORT_SYMBOL(__xfrm_policy_check);
2050
2051int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2052{
2053 struct flowi fl;
2054
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002055 if (xfrm_decode_session(skb, &fl, family) < 0) {
2056 /* XXX: we should have something like FWDHDRERROR here. */
2057 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 return xfrm_lookup(&skb->dst, &fl, NULL, 0) == 0;
2062}
2063EXPORT_SYMBOL(__xfrm_route_forward);
2064
David S. Millerd49c73c2006-08-13 18:55:53 -07002065/* Optimize later using cookies and generation ids. */
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2068{
David S. Millerd49c73c2006-08-13 18:55:53 -07002069 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2070 * to "-1" to force all XFRM destinations to get validated by
2071 * dst_ops->check on every use. We do this because when a
2072 * normal route referenced by an XFRM dst is obsoleted we do
2073 * not go looking around for all parent referencing XFRM dsts
2074 * so that we can invalidate them. It is just too much work.
2075 * Instead we make the checks here on every use. For example:
2076 *
2077 * XFRM dst A --> IPv4 dst X
2078 *
2079 * X is the "xdst->route" of A (X is also the "dst->path" of A
2080 * in this example). If X is marked obsolete, "A" will not
2081 * notice. That's what we are validating here via the
2082 * stale_bundle() check.
2083 *
2084 * When a policy's bundle is pruned, we dst_free() the XFRM
2085 * dst which causes it's ->obsolete field to be set to a
2086 * positive non-zero integer. If an XFRM dst has been pruned
2087 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002088 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002089 if (dst->obsolete < 0 && !stale_bundle(dst))
2090 return dst;
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 return NULL;
2093}
2094
2095static int stale_bundle(struct dst_entry *dst)
2096{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002097 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Herbert Xuaabc9762005-05-03 16:27:10 -07002100void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002103 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002104 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 dev_put(dev);
2106 }
2107}
Herbert Xuaabc9762005-05-03 16:27:10 -07002108EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110static void xfrm_link_failure(struct sk_buff *skb)
2111{
2112 /* Impossible. Such dst must be popped before reaches point of failure. */
2113 return;
2114}
2115
2116static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2117{
2118 if (dst) {
2119 if (dst->obsolete) {
2120 dst_release(dst);
2121 dst = NULL;
2122 }
2123 }
2124 return dst;
2125}
2126
David S. Miller2518c7c2006-08-24 04:45:07 -07002127static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2128{
2129 struct dst_entry *dst, **dstp;
2130
2131 write_lock(&pol->lock);
2132 dstp = &pol->bundles;
2133 while ((dst=*dstp) != NULL) {
2134 if (func(dst)) {
2135 *dstp = dst->next;
2136 dst->next = *gc_list_p;
2137 *gc_list_p = dst;
2138 } else {
2139 dstp = &dst->next;
2140 }
2141 }
2142 write_unlock(&pol->lock);
2143}
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
2146{
David S. Miller2518c7c2006-08-24 04:45:07 -07002147 struct dst_entry *gc_list = NULL;
2148 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002151 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2152 struct xfrm_policy *pol;
2153 struct hlist_node *entry;
2154 struct hlist_head *table;
2155 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002156
David S. Miller2518c7c2006-08-24 04:45:07 -07002157 hlist_for_each_entry(pol, entry,
2158 &xfrm_policy_inexact[dir], bydst)
2159 prune_one_bundle(pol, func, &gc_list);
2160
2161 table = xfrm_policy_bydst[dir].table;
2162 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
2163 hlist_for_each_entry(pol, entry, table + i, bydst)
2164 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
2166 }
2167 read_unlock_bh(&xfrm_policy_lock);
2168
2169 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002170 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 gc_list = dst->next;
2172 dst_free(dst);
2173 }
2174}
2175
2176static int unused_bundle(struct dst_entry *dst)
2177{
2178 return !atomic_read(&dst->__refcnt);
2179}
2180
2181static void __xfrm_garbage_collect(void)
2182{
2183 xfrm_prune_bundles(unused_bundle);
2184}
2185
David S. Miller1c095392006-08-24 03:30:28 -07002186static int xfrm_flush_bundles(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
2188 xfrm_prune_bundles(stale_bundle);
2189 return 0;
2190}
2191
Herbert Xu25ee3282007-12-11 09:32:34 -08002192static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 do {
2195 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2196 u32 pmtu, route_mtu_cached;
2197
2198 pmtu = dst_mtu(dst->child);
2199 xdst->child_mtu_cached = pmtu;
2200
2201 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2202
2203 route_mtu_cached = dst_mtu(xdst->route);
2204 xdst->route_mtu_cached = route_mtu_cached;
2205
2206 if (pmtu > route_mtu_cached)
2207 pmtu = route_mtu_cached;
2208
2209 dst->metrics[RTAX_MTU-1] = pmtu;
2210 } while ((dst = dst->next));
2211}
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213/* Check that the bundle accepts the flow and its components are
2214 * still valid.
2215 */
2216
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002217int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2218 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
2220 struct dst_entry *dst = &first->u.dst;
2221 struct xfrm_dst *last;
2222 u32 mtu;
2223
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002224 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 (dst->dev && !netif_running(dst->dev)))
2226 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002227#ifdef CONFIG_XFRM_SUB_POLICY
2228 if (fl) {
2229 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2230 return 0;
2231 if (first->partner &&
2232 !xfrm_selector_match(first->partner, fl, family))
2233 return 0;
2234 }
2235#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 last = NULL;
2238
2239 do {
2240 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2241
2242 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2243 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002244 if (fl && pol &&
2245 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2248 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002249 if (xdst->genid != dst->xfrm->genid)
2250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Herbert Xu1bfcb102007-10-17 21:31:50 -07002252 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002253 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002254 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2255 return 0;
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 mtu = dst_mtu(dst->child);
2258 if (xdst->child_mtu_cached != mtu) {
2259 last = xdst;
2260 xdst->child_mtu_cached = mtu;
2261 }
2262
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002263 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 return 0;
2265 mtu = dst_mtu(xdst->route);
2266 if (xdst->route_mtu_cached != mtu) {
2267 last = xdst;
2268 xdst->route_mtu_cached = mtu;
2269 }
2270
2271 dst = dst->child;
2272 } while (dst->xfrm);
2273
2274 if (likely(!last))
2275 return 1;
2276
2277 mtu = last->child_mtu_cached;
2278 for (;;) {
2279 dst = &last->u.dst;
2280
2281 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2282 if (mtu > last->route_mtu_cached)
2283 mtu = last->route_mtu_cached;
2284 dst->metrics[RTAX_MTU-1] = mtu;
2285
2286 if (last == first)
2287 break;
2288
Patrick McHardybd0bf072007-07-18 01:55:52 -07002289 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 last->child_mtu_cached = mtu;
2291 }
2292
2293 return 1;
2294}
2295
2296EXPORT_SYMBOL(xfrm_bundle_ok);
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2299{
2300 int err = 0;
2301 if (unlikely(afinfo == NULL))
2302 return -EINVAL;
2303 if (unlikely(afinfo->family >= NPROTO))
2304 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002305 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2307 err = -ENOBUFS;
2308 else {
2309 struct dst_ops *dst_ops = afinfo->dst_ops;
2310 if (likely(dst_ops->kmem_cachep == NULL))
2311 dst_ops->kmem_cachep = xfrm_dst_cache;
2312 if (likely(dst_ops->check == NULL))
2313 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 if (likely(dst_ops->negative_advice == NULL))
2315 dst_ops->negative_advice = xfrm_negative_advice;
2316 if (likely(dst_ops->link_failure == NULL))
2317 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 if (likely(afinfo->garbage_collect == NULL))
2319 afinfo->garbage_collect = __xfrm_garbage_collect;
2320 xfrm_policy_afinfo[afinfo->family] = afinfo;
2321 }
Ingo Molnare959d812006-04-28 15:32:29 -07002322 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 return err;
2324}
2325EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2326
2327int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2328{
2329 int err = 0;
2330 if (unlikely(afinfo == NULL))
2331 return -EINVAL;
2332 if (unlikely(afinfo->family >= NPROTO))
2333 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002334 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2336 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2337 err = -EINVAL;
2338 else {
2339 struct dst_ops *dst_ops = afinfo->dst_ops;
2340 xfrm_policy_afinfo[afinfo->family] = NULL;
2341 dst_ops->kmem_cachep = NULL;
2342 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 dst_ops->negative_advice = NULL;
2344 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 afinfo->garbage_collect = NULL;
2346 }
2347 }
Ingo Molnare959d812006-04-28 15:32:29 -07002348 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 return err;
2350}
2351EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2352
2353static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2354{
2355 struct xfrm_policy_afinfo *afinfo;
2356 if (unlikely(family >= NPROTO))
2357 return NULL;
2358 read_lock(&xfrm_policy_afinfo_lock);
2359 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002360 if (unlikely(!afinfo))
2361 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 return afinfo;
2363}
2364
2365static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2366{
Herbert Xu546be242006-05-27 23:03:58 -07002367 read_unlock(&xfrm_policy_afinfo_lock);
2368}
2369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2371{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002372 struct net_device *dev = ptr;
2373
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07002374 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002375 return NOTIFY_DONE;
2376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 switch (event) {
2378 case NETDEV_DOWN:
2379 xfrm_flush_bundles();
2380 }
2381 return NOTIFY_DONE;
2382}
2383
2384static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002385 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386};
2387
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002388#ifdef CONFIG_XFRM_STATISTICS
2389static int __init xfrm_statistics_init(void)
2390{
2391 if (snmp_mib_init((void **)xfrm_statistics,
2392 sizeof(struct linux_xfrm_mib)) < 0)
2393 return -ENOMEM;
2394 return 0;
2395}
2396#endif
2397
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002398static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
David S. Miller2518c7c2006-08-24 04:45:07 -07002400 unsigned int hmask, sz;
2401 int dir;
2402
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002403 if (net_eq(net, &init_net))
2404 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002406 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002407 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
David S. Miller2518c7c2006-08-24 04:45:07 -07002409 hmask = 8 - 1;
2410 sz = (hmask+1) * sizeof(struct hlist_head);
2411
David S. Miller44e36b42006-08-24 04:50:50 -07002412 xfrm_policy_byidx = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002413 xfrm_idx_hmask = hmask;
2414 if (!xfrm_policy_byidx)
2415 panic("XFRM: failed to allocate byidx hash\n");
2416
2417 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2418 struct xfrm_policy_hash *htab;
2419
2420 INIT_HLIST_HEAD(&xfrm_policy_inexact[dir]);
2421
2422 htab = &xfrm_policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002423 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002424 htab->hmask = hmask;
2425 if (!htab->table)
2426 panic("XFRM: failed to allocate bydst hash\n");
2427 }
2428
Herbert Xu12a169e2008-10-01 07:03:24 -07002429 INIT_LIST_HEAD(&xfrm_policy_all);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002430 if (net_eq(net, &init_net))
2431 register_netdevice_notifier(&xfrm_dev_notifier);
2432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002435static void xfrm_policy_fini(struct net *net)
2436{
2437}
2438
2439static int __net_init xfrm_net_init(struct net *net)
2440{
2441 int rv;
2442
2443 rv = xfrm_state_init(net);
2444 if (rv < 0)
2445 goto out_state;
2446 rv = xfrm_policy_init(net);
2447 if (rv < 0)
2448 goto out_policy;
2449 return 0;
2450
2451out_policy:
2452 xfrm_state_fini(net);
2453out_state:
2454 return rv;
2455}
2456
2457static void __net_exit xfrm_net_exit(struct net *net)
2458{
2459 xfrm_policy_fini(net);
2460 xfrm_state_fini(net);
2461}
2462
2463static struct pernet_operations __net_initdata xfrm_net_ops = {
2464 .init = xfrm_net_init,
2465 .exit = xfrm_net_exit,
2466};
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468void __init xfrm_init(void)
2469{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002470 register_pernet_subsys(&xfrm_net_ops);
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002471#ifdef CONFIG_XFRM_STATISTICS
2472 xfrm_statistics_init();
2473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 xfrm_input_init();
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002475#ifdef CONFIG_XFRM_STATISTICS
2476 xfrm_proc_init();
2477#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479
Joy Lattenab5f5e82007-09-17 11:51:22 -07002480#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd2008-01-12 03:20:03 -08002481static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2482 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002483{
Paul Moore875179f2007-12-01 23:27:18 +11002484 struct xfrm_sec_ctx *ctx = xp->security;
2485 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002486
Paul Moore875179f2007-12-01 23:27:18 +11002487 if (ctx)
2488 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2489 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2490
2491 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002492 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002493 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002494 if (sel->prefixlen_s != 32)
2495 audit_log_format(audit_buf, " src_prefixlen=%d",
2496 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002497 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002498 if (sel->prefixlen_d != 32)
2499 audit_log_format(audit_buf, " dst_prefixlen=%d",
2500 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002501 break;
2502 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002503 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002504 if (sel->prefixlen_s != 128)
2505 audit_log_format(audit_buf, " src_prefixlen=%d",
2506 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002507 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002508 if (sel->prefixlen_d != 128)
2509 audit_log_format(audit_buf, " dst_prefixlen=%d",
2510 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002511 break;
2512 }
2513}
2514
Paul Moore68277ac2007-12-20 20:49:33 -08002515void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002516 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002517{
2518 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002519
Paul Mooreafeb14b2007-12-21 14:58:11 -08002520 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002521 if (audit_buf == NULL)
2522 return;
Eric Paris25323862008-04-18 10:09:25 -04002523 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002524 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002525 xfrm_audit_common_policyinfo(xp, audit_buf);
2526 audit_log_end(audit_buf);
2527}
2528EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2529
Paul Moore68277ac2007-12-20 20:49:33 -08002530void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002531 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002532{
2533 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002534
Paul Mooreafeb14b2007-12-21 14:58:11 -08002535 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002536 if (audit_buf == NULL)
2537 return;
Eric Paris25323862008-04-18 10:09:25 -04002538 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002539 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002540 xfrm_audit_common_policyinfo(xp, audit_buf);
2541 audit_log_end(audit_buf);
2542}
2543EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2544#endif
2545
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002546#ifdef CONFIG_XFRM_MIGRATE
2547static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2548 struct xfrm_selector *sel_tgt)
2549{
2550 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2551 if (sel_tgt->family == sel_cmp->family &&
2552 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002553 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002554 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2555 sel_cmp->family) == 0 &&
2556 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2557 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2558 return 1;
2559 }
2560 } else {
2561 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2562 return 1;
2563 }
2564 }
2565 return 0;
2566}
2567
2568static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2569 u8 dir, u8 type)
2570{
2571 struct xfrm_policy *pol, *ret = NULL;
2572 struct hlist_node *entry;
2573 struct hlist_head *chain;
2574 u32 priority = ~0U;
2575
2576 read_lock_bh(&xfrm_policy_lock);
2577 chain = policy_hash_direct(&sel->daddr, &sel->saddr, sel->family, dir);
2578 hlist_for_each_entry(pol, entry, chain, bydst) {
2579 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2580 pol->type == type) {
2581 ret = pol;
2582 priority = ret->priority;
2583 break;
2584 }
2585 }
2586 chain = &xfrm_policy_inexact[dir];
2587 hlist_for_each_entry(pol, entry, chain, bydst) {
2588 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2589 pol->type == type &&
2590 pol->priority < priority) {
2591 ret = pol;
2592 break;
2593 }
2594 }
2595
2596 if (ret)
2597 xfrm_pol_hold(ret);
2598
2599 read_unlock_bh(&xfrm_policy_lock);
2600
2601 return ret;
2602}
2603
2604static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2605{
2606 int match = 0;
2607
2608 if (t->mode == m->mode && t->id.proto == m->proto &&
2609 (m->reqid == 0 || t->reqid == m->reqid)) {
2610 switch (t->mode) {
2611 case XFRM_MODE_TUNNEL:
2612 case XFRM_MODE_BEET:
2613 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2614 m->old_family) == 0 &&
2615 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2616 m->old_family) == 0) {
2617 match = 1;
2618 }
2619 break;
2620 case XFRM_MODE_TRANSPORT:
2621 /* in case of transport mode, template does not store
2622 any IP addresses, hence we just compare mode and
2623 protocol */
2624 match = 1;
2625 break;
2626 default:
2627 break;
2628 }
2629 }
2630 return match;
2631}
2632
2633/* update endpoint address(es) of template(s) */
2634static int xfrm_policy_migrate(struct xfrm_policy *pol,
2635 struct xfrm_migrate *m, int num_migrate)
2636{
2637 struct xfrm_migrate *mp;
2638 struct dst_entry *dst;
2639 int i, j, n = 0;
2640
2641 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002642 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002643 /* target policy has been deleted */
2644 write_unlock_bh(&pol->lock);
2645 return -ENOENT;
2646 }
2647
2648 for (i = 0; i < pol->xfrm_nr; i++) {
2649 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2650 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2651 continue;
2652 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002653 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2654 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002655 continue;
2656 /* update endpoints */
2657 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2658 sizeof(pol->xfrm_vec[i].id.daddr));
2659 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2660 sizeof(pol->xfrm_vec[i].saddr));
2661 pol->xfrm_vec[i].encap_family = mp->new_family;
2662 /* flush bundles */
2663 while ((dst = pol->bundles) != NULL) {
2664 pol->bundles = dst->next;
2665 dst_free(dst);
2666 }
2667 }
2668 }
2669
2670 write_unlock_bh(&pol->lock);
2671
2672 if (!n)
2673 return -ENODATA;
2674
2675 return 0;
2676}
2677
2678static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2679{
2680 int i, j;
2681
2682 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2683 return -EINVAL;
2684
2685 for (i = 0; i < num_migrate; i++) {
2686 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2687 m[i].old_family) == 0) &&
2688 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2689 m[i].old_family) == 0))
2690 return -EINVAL;
2691 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2692 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2693 return -EINVAL;
2694
2695 /* check if there is any duplicated entry */
2696 for (j = i + 1; j < num_migrate; j++) {
2697 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2698 sizeof(m[i].old_daddr)) &&
2699 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2700 sizeof(m[i].old_saddr)) &&
2701 m[i].proto == m[j].proto &&
2702 m[i].mode == m[j].mode &&
2703 m[i].reqid == m[j].reqid &&
2704 m[i].old_family == m[j].old_family)
2705 return -EINVAL;
2706 }
2707 }
2708
2709 return 0;
2710}
2711
2712int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002713 struct xfrm_migrate *m, int num_migrate,
2714 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002715{
2716 int i, err, nx_cur = 0, nx_new = 0;
2717 struct xfrm_policy *pol = NULL;
2718 struct xfrm_state *x, *xc;
2719 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2720 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2721 struct xfrm_migrate *mp;
2722
2723 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2724 goto out;
2725
2726 /* Stage 1 - find policy */
2727 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2728 err = -ENOENT;
2729 goto out;
2730 }
2731
2732 /* Stage 2 - find and update state(s) */
2733 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2734 if ((x = xfrm_migrate_state_find(mp))) {
2735 x_cur[nx_cur] = x;
2736 nx_cur++;
2737 if ((xc = xfrm_state_migrate(x, mp))) {
2738 x_new[nx_new] = xc;
2739 nx_new++;
2740 } else {
2741 err = -ENODATA;
2742 goto restore_state;
2743 }
2744 }
2745 }
2746
2747 /* Stage 3 - update policy */
2748 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2749 goto restore_state;
2750
2751 /* Stage 4 - delete old state(s) */
2752 if (nx_cur) {
2753 xfrm_states_put(x_cur, nx_cur);
2754 xfrm_states_delete(x_cur, nx_cur);
2755 }
2756
2757 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002758 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002759
2760 xfrm_pol_put(pol);
2761
2762 return 0;
2763out:
2764 return err;
2765
2766restore_state:
2767 if (pol)
2768 xfrm_pol_put(pol);
2769 if (nx_cur)
2770 xfrm_states_put(x_cur, nx_cur);
2771 if (nx_new)
2772 xfrm_states_delete(x_new, nx_new);
2773
2774 return err;
2775}
David S. Millere610e672007-02-08 13:29:15 -08002776EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002777#endif