blob: 700cdd7564e46c5be97aa1c7803606ab46f23a6b [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
David S. Miller2518c7c2006-08-24 04:45:07 -070049unsigned int xfrm_policy_count[XFRM_POLICY_MAX*2];
50EXPORT_SYMBOL(xfrm_policy_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
53static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
54
Christoph Lametere18b8902006-12-06 20:33:20 -080055static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David S. Miller2518c7c2006-08-24 04:45:07 -070057static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
59
60static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
61static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080062static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Andrew Morton77681022006-11-08 22:46:26 -080064static inline int
65__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
66{
67 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
68 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
69 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
70 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
71 (fl->proto == sel->proto || !sel->proto) &&
72 (fl->oif == sel->ifindex || !sel->ifindex);
73}
74
75static inline int
76__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
77{
78 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
79 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
80 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
81 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
82 (fl->proto == sel->proto || !sel->proto) &&
83 (fl->oif == sel->ifindex || !sel->ifindex);
84}
85
86int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
87 unsigned short family)
88{
89 switch (family) {
90 case AF_INET:
91 return __xfrm4_selector_match(sel, fl);
92 case AF_INET6:
93 return __xfrm6_selector_match(sel, fl);
94 }
95 return 0;
96}
97
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090098static inline struct dst_entry *__xfrm_dst_lookup(int tos,
99 xfrm_address_t *saddr,
100 xfrm_address_t *daddr,
101 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800103 struct xfrm_policy_afinfo *afinfo;
104 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Herbert Xu25ee3282007-12-11 09:32:34 -0800106 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800108 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800110 dst = afinfo->dst_lookup(tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900113
114 return dst;
115}
116
117static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
118 xfrm_address_t *prev_saddr,
119 xfrm_address_t *prev_daddr,
120 int family)
121{
122 xfrm_address_t *saddr = &x->props.saddr;
123 xfrm_address_t *daddr = &x->id.daddr;
124 struct dst_entry *dst;
125
126 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
127 saddr = x->coaddr;
128 daddr = prev_daddr;
129 }
130 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
131 saddr = prev_saddr;
132 daddr = x->coaddr;
133 }
134
135 dst = __xfrm_dst_lookup(tos, saddr, daddr, family);
136
137 if (!IS_ERR(dst)) {
138 if (prev_saddr != saddr)
139 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
140 if (prev_daddr != daddr)
141 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
142 }
143
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800144 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static inline unsigned long make_jiffies(long secs)
148{
149 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
150 return MAX_SCHEDULE_TIMEOUT-1;
151 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900152 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155static void xfrm_policy_timer(unsigned long data)
156{
157 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800158 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 long next = LONG_MAX;
160 int warn = 0;
161 int dir;
162
163 read_lock(&xp->lock);
164
Herbert Xu12a169e2008-10-01 07:03:24 -0700165 if (xp->walk.dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 goto out;
167
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700168 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if (xp->lft.hard_add_expires_seconds) {
171 long tmo = xp->lft.hard_add_expires_seconds +
172 xp->curlft.add_time - now;
173 if (tmo <= 0)
174 goto expired;
175 if (tmo < next)
176 next = tmo;
177 }
178 if (xp->lft.hard_use_expires_seconds) {
179 long tmo = xp->lft.hard_use_expires_seconds +
180 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
181 if (tmo <= 0)
182 goto expired;
183 if (tmo < next)
184 next = tmo;
185 }
186 if (xp->lft.soft_add_expires_seconds) {
187 long tmo = xp->lft.soft_add_expires_seconds +
188 xp->curlft.add_time - now;
189 if (tmo <= 0) {
190 warn = 1;
191 tmo = XFRM_KM_TIMEOUT;
192 }
193 if (tmo < next)
194 next = tmo;
195 }
196 if (xp->lft.soft_use_expires_seconds) {
197 long tmo = xp->lft.soft_use_expires_seconds +
198 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
199 if (tmo <= 0) {
200 warn = 1;
201 tmo = XFRM_KM_TIMEOUT;
202 }
203 if (tmo < next)
204 next = tmo;
205 }
206
207 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800208 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (next != LONG_MAX &&
210 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
211 xfrm_pol_hold(xp);
212
213out:
214 read_unlock(&xp->lock);
215 xfrm_pol_put(xp);
216 return;
217
218expired:
219 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700220 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800221 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 xfrm_pol_put(xp);
223}
224
225
226/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
227 * SPD calls.
228 */
229
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800230struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct xfrm_policy *policy;
233
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700234 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800237 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700238 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700239 INIT_HLIST_NODE(&policy->bydst);
240 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700242 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800243 setup_timer(&policy->timer, xfrm_policy_timer,
244 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246 return policy;
247}
248EXPORT_SYMBOL(xfrm_policy_alloc);
249
250/* Destroy xfrm_policy: descendant resources must be released to this moment. */
251
WANG Cong64c31b32008-01-07 22:34:29 -0800252void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Herbert Xu12a169e2008-10-01 07:03:24 -0700254 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Kris Katterjohn09a62662006-01-08 22:24:28 -0800256 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 if (del_timer(&policy->timer))
259 BUG();
260
Paul Moore03e1ad72008-04-12 19:07:52 -0700261 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 kfree(policy);
263}
WANG Cong64c31b32008-01-07 22:34:29 -0800264EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
267{
268 struct dst_entry *dst;
269
270 while ((dst = policy->bundles) != NULL) {
271 policy->bundles = dst->next;
272 dst_free(dst);
273 }
274
275 if (del_timer(&policy->timer))
276 atomic_dec(&policy->refcnt);
277
278 if (atomic_read(&policy->refcnt) > 1)
279 flow_cache_flush();
280
281 xfrm_pol_put(policy);
282}
283
David Howellsc4028952006-11-22 14:57:56 +0000284static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700287 struct hlist_node *entry, *tmp;
288 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700291 gc_list.first = xfrm_policy_gc_list.first;
292 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 spin_unlock_bh(&xfrm_policy_gc_lock);
294
David S. Miller2518c7c2006-08-24 04:45:07 -0700295 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
Alexey Dobriyanc9583962008-11-25 17:13:59 -0800298static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300/* Rule must be locked. Release descentant resources, announce
301 * entry dead. The rule must be unlinked from lists to the moment.
302 */
303
304static void xfrm_policy_kill(struct xfrm_policy *policy)
305{
306 int dead;
307
308 write_lock_bh(&policy->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700309 dead = policy->walk.dead;
310 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 write_unlock_bh(&policy->lock);
312
313 if (unlikely(dead)) {
314 WARN_ON(1);
315 return;
316 }
317
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800318 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700319 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800320 spin_unlock_bh(&xfrm_policy_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 schedule_work(&xfrm_policy_gc_work);
323}
324
David S. Miller2518c7c2006-08-24 04:45:07 -0700325struct xfrm_policy_hash {
326 struct hlist_head *table;
327 unsigned int hmask;
328};
329
330static struct hlist_head xfrm_policy_inexact[XFRM_POLICY_MAX*2];
331static struct xfrm_policy_hash xfrm_policy_bydst[XFRM_POLICY_MAX*2] __read_mostly;
David S. Miller2518c7c2006-08-24 04:45:07 -0700332static unsigned int xfrm_idx_hmask __read_mostly;
333static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
334
David S. Miller2518c7c2006-08-24 04:45:07 -0700335static inline unsigned int idx_hash(u32 index)
336{
337 return __idx_hash(index, xfrm_idx_hmask);
338}
339
David S. Miller2518c7c2006-08-24 04:45:07 -0700340static struct hlist_head *policy_hash_bysel(struct xfrm_selector *sel, unsigned short family, int dir)
341{
342 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
343 unsigned int hash = __sel_hash(sel, family, hmask);
344
345 return (hash == hmask + 1 ?
346 &xfrm_policy_inexact[dir] :
347 xfrm_policy_bydst[dir].table + hash);
348}
349
350static struct hlist_head *policy_hash_direct(xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
351{
352 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
353 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
354
355 return xfrm_policy_bydst[dir].table + hash;
356}
357
David S. Miller2518c7c2006-08-24 04:45:07 -0700358static void xfrm_dst_hash_transfer(struct hlist_head *list,
359 struct hlist_head *ndsttable,
360 unsigned int nhashmask)
361{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800362 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700363 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800364 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700365
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800366redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700367 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
368 unsigned int h;
369
370 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
371 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800372 if (!entry0) {
373 hlist_del(entry);
374 hlist_add_head(&pol->bydst, ndsttable+h);
375 h0 = h;
376 } else {
377 if (h != h0)
378 continue;
379 hlist_del(entry);
380 hlist_add_after(entry0, &pol->bydst);
381 }
382 entry0 = entry;
383 }
384 if (!hlist_empty(list)) {
385 entry0 = NULL;
386 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700387 }
388}
389
390static void xfrm_idx_hash_transfer(struct hlist_head *list,
391 struct hlist_head *nidxtable,
392 unsigned int nhashmask)
393{
394 struct hlist_node *entry, *tmp;
395 struct xfrm_policy *pol;
396
397 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
398 unsigned int h;
399
400 h = __idx_hash(pol->index, nhashmask);
401 hlist_add_head(&pol->byidx, nidxtable+h);
402 }
403}
404
405static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
406{
407 return ((old_hmask + 1) << 1) - 1;
408}
409
410static void xfrm_bydst_resize(int dir)
411{
412 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
413 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
414 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
415 struct hlist_head *odst = xfrm_policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700416 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700417 int i;
418
419 if (!ndst)
420 return;
421
422 write_lock_bh(&xfrm_policy_lock);
423
424 for (i = hmask; i >= 0; i--)
425 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
426
427 xfrm_policy_bydst[dir].table = ndst;
428 xfrm_policy_bydst[dir].hmask = nhashmask;
429
430 write_unlock_bh(&xfrm_policy_lock);
431
David S. Miller44e36b42006-08-24 04:50:50 -0700432 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700433}
434
435static void xfrm_byidx_resize(int total)
436{
437 unsigned int hmask = xfrm_idx_hmask;
438 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
439 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -0800440 struct hlist_head *oidx = init_net.xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700441 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700442 int i;
443
444 if (!nidx)
445 return;
446
447 write_lock_bh(&xfrm_policy_lock);
448
449 for (i = hmask; i >= 0; i--)
450 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
451
Alexey Dobriyan93b851c2008-11-25 17:22:35 -0800452 init_net.xfrm.policy_byidx = nidx;
David S. Miller2518c7c2006-08-24 04:45:07 -0700453 xfrm_idx_hmask = nhashmask;
454
455 write_unlock_bh(&xfrm_policy_lock);
456
David S. Miller44e36b42006-08-24 04:50:50 -0700457 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700458}
459
460static inline int xfrm_bydst_should_resize(int dir, int *total)
461{
462 unsigned int cnt = xfrm_policy_count[dir];
463 unsigned int hmask = xfrm_policy_bydst[dir].hmask;
464
465 if (total)
466 *total += cnt;
467
468 if ((hmask + 1) < xfrm_policy_hashmax &&
469 cnt > hmask)
470 return 1;
471
472 return 0;
473}
474
475static inline int xfrm_byidx_should_resize(int total)
476{
477 unsigned int hmask = xfrm_idx_hmask;
478
479 if ((hmask + 1) < xfrm_policy_hashmax &&
480 total > hmask)
481 return 1;
482
483 return 0;
484}
485
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700486void xfrm_spd_getinfo(struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700487{
488 read_lock_bh(&xfrm_policy_lock);
489 si->incnt = xfrm_policy_count[XFRM_POLICY_IN];
490 si->outcnt = xfrm_policy_count[XFRM_POLICY_OUT];
491 si->fwdcnt = xfrm_policy_count[XFRM_POLICY_FWD];
492 si->inscnt = xfrm_policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
493 si->outscnt = xfrm_policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
494 si->fwdscnt = xfrm_policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
495 si->spdhcnt = xfrm_idx_hmask;
496 si->spdhmcnt = xfrm_policy_hashmax;
497 read_unlock_bh(&xfrm_policy_lock);
498}
499EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700500
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700501static DEFINE_MUTEX(hash_resize_mutex);
David Howellsc4028952006-11-22 14:57:56 +0000502static void xfrm_hash_resize(struct work_struct *__unused)
David S. Miller2518c7c2006-08-24 04:45:07 -0700503{
504 int dir, total;
505
506 mutex_lock(&hash_resize_mutex);
507
508 total = 0;
509 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
510 if (xfrm_bydst_should_resize(dir, &total))
511 xfrm_bydst_resize(dir);
512 }
513 if (xfrm_byidx_should_resize(total))
514 xfrm_byidx_resize(total);
515
516 mutex_unlock(&hash_resize_mutex);
517}
518
David Howellsc4028952006-11-22 14:57:56 +0000519static DECLARE_WORK(xfrm_hash_work, xfrm_hash_resize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/* Generate new index... KAME seems to generate them ordered by cost
522 * of an absolute inpredictability of ordering of rules. This will not pass. */
Arnaud Ebalard7a121222008-11-12 23:28:15 -0800523static u32 xfrm_gen_index(int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 static u32 idx_generator;
526
527 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700528 struct hlist_node *entry;
529 struct hlist_head *list;
530 struct xfrm_policy *p;
531 u32 idx;
532 int found;
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 idx = (idx_generator | dir);
535 idx_generator += 8;
536 if (idx == 0)
537 idx = 8;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -0800538 list = init_net.xfrm.policy_byidx + idx_hash(idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700539 found = 0;
540 hlist_for_each_entry(p, entry, list, byidx) {
541 if (p->index == idx) {
542 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700546 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return idx;
548 }
549}
550
David S. Miller2518c7c2006-08-24 04:45:07 -0700551static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
552{
553 u32 *p1 = (u32 *) s1;
554 u32 *p2 = (u32 *) s2;
555 int len = sizeof(struct xfrm_selector) / sizeof(u32);
556 int i;
557
558 for (i = 0; i < len; i++) {
559 if (p1[i] != p2[i])
560 return 1;
561 }
562
563 return 0;
564}
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
567{
David S. Miller2518c7c2006-08-24 04:45:07 -0700568 struct xfrm_policy *pol;
569 struct xfrm_policy *delpol;
570 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800571 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800572 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700575 chain = policy_hash_bysel(&policy->selector, policy->family, dir);
576 delpol = NULL;
577 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700578 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800579 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700580 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800581 xfrm_sec_ctx_match(pol->security, policy->security) &&
582 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (excl) {
584 write_unlock_bh(&xfrm_policy_lock);
585 return -EEXIST;
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 delpol = pol;
588 if (policy->priority > pol->priority)
589 continue;
590 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800591 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 continue;
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (delpol)
595 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700598 hlist_add_after(newpos, &policy->bydst);
599 else
600 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 xfrm_pol_hold(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700602 xfrm_policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700604 if (delpol) {
605 hlist_del(&delpol->bydst);
606 hlist_del(&delpol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700607 list_del(&delpol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700608 xfrm_policy_count[dir]--;
609 }
Arnaud Ebalard7a121222008-11-12 23:28:15 -0800610 policy->index = delpol ? delpol->index : xfrm_gen_index(dir);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -0800611 hlist_add_head(&policy->byidx, init_net.xfrm.policy_byidx+idx_hash(policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800612 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 policy->curlft.use_time = 0;
614 if (!mod_timer(&policy->timer, jiffies + HZ))
615 xfrm_pol_hold(policy);
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -0800616 list_add(&policy->walk.all, &init_net.xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 write_unlock_bh(&xfrm_policy_lock);
618
David S. Miller9b78a822005-12-22 07:39:48 -0800619 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 xfrm_policy_kill(delpol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700621 else if (xfrm_bydst_should_resize(dir, NULL))
622 schedule_work(&xfrm_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800623
624 read_lock_bh(&xfrm_policy_lock);
625 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700626 entry = &policy->bydst;
627 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800628 struct dst_entry *dst;
629
630 write_lock(&policy->lock);
631 dst = policy->bundles;
632 if (dst) {
633 struct dst_entry *tail = dst;
634 while (tail->next)
635 tail = tail->next;
636 tail->next = gc_list;
637 gc_list = dst;
638
639 policy->bundles = NULL;
640 }
641 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
David S. Miller9b78a822005-12-22 07:39:48 -0800643 read_unlock_bh(&xfrm_policy_lock);
644
645 while (gc_list) {
646 struct dst_entry *dst = gc_list;
647
648 gc_list = dst->next;
649 dst_free(dst);
650 }
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return 0;
653}
654EXPORT_SYMBOL(xfrm_policy_insert);
655
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700656struct xfrm_policy *xfrm_policy_bysel_ctx(u8 type, int dir,
657 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800658 struct xfrm_sec_ctx *ctx, int delete,
659 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
David S. Miller2518c7c2006-08-24 04:45:07 -0700661 struct xfrm_policy *pol, *ret;
662 struct hlist_head *chain;
663 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Eric Parisef41aaa2007-03-07 15:37:58 -0800665 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700667 chain = policy_hash_bysel(sel, sel->family, dir);
668 ret = NULL;
669 hlist_for_each_entry(pol, entry, chain, bydst) {
670 if (pol->type == type &&
671 !selector_cmp(sel, &pol->selector) &&
672 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700674 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700675 *err = security_xfrm_policy_delete(
676 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800677 if (*err) {
678 write_unlock_bh(&xfrm_policy_lock);
679 return pol;
680 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700681 hlist_del(&pol->bydst);
682 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700683 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700684 xfrm_policy_count[dir]--;
685 }
686 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 break;
688 }
689 }
690 write_unlock_bh(&xfrm_policy_lock);
691
David S. Miller2518c7c2006-08-24 04:45:07 -0700692 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700694 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700696 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
Trent Jaegerdf718372005-12-13 23:12:27 -0800698EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Eric Parisef41aaa2007-03-07 15:37:58 -0800700struct xfrm_policy *xfrm_policy_byid(u8 type, int dir, u32 id, int delete,
701 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
David S. Miller2518c7c2006-08-24 04:45:07 -0700703 struct xfrm_policy *pol, *ret;
704 struct hlist_head *chain;
705 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Herbert Xub5505c62007-05-14 02:15:47 -0700707 *err = -ENOENT;
708 if (xfrm_policy_id2dir(id) != dir)
709 return NULL;
710
Eric Parisef41aaa2007-03-07 15:37:58 -0800711 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -0800713 chain = init_net.xfrm.policy_byidx + idx_hash(id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700714 ret = NULL;
715 hlist_for_each_entry(pol, entry, chain, byidx) {
716 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700718 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700719 *err = security_xfrm_policy_delete(
720 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800721 if (*err) {
722 write_unlock_bh(&xfrm_policy_lock);
723 return pol;
724 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700725 hlist_del(&pol->bydst);
726 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700727 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700728 xfrm_policy_count[dir]--;
729 }
730 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 break;
732 }
733 }
734 write_unlock_bh(&xfrm_policy_lock);
735
David S. Miller2518c7c2006-08-24 04:45:07 -0700736 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700738 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700740 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742EXPORT_SYMBOL(xfrm_policy_byid);
743
Joy Latten4aa2e622007-06-04 19:05:57 -0400744#ifdef CONFIG_SECURITY_NETWORK_XFRM
745static inline int
746xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Joy Latten4aa2e622007-06-04 19:05:57 -0400748 int dir, err = 0;
749
750 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
751 struct xfrm_policy *pol;
752 struct hlist_node *entry;
753 int i;
754
755 hlist_for_each_entry(pol, entry,
756 &xfrm_policy_inexact[dir], bydst) {
757 if (pol->type != type)
758 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700759 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400760 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700761 xfrm_audit_policy_delete(pol, 0,
762 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400763 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700764 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400765 return err;
766 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900767 }
Joy Latten4aa2e622007-06-04 19:05:57 -0400768 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
769 hlist_for_each_entry(pol, entry,
770 xfrm_policy_bydst[dir].table + i,
771 bydst) {
772 if (pol->type != type)
773 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700774 err = security_xfrm_policy_delete(
775 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400776 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700777 xfrm_audit_policy_delete(pol, 0,
778 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400779 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700780 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400781 return err;
782 }
783 }
784 }
785 }
786 return err;
787}
788#else
789static inline int
790xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
791{
792 return 0;
793}
794#endif
795
796int xfrm_policy_flush(u8 type, struct xfrm_audit *audit_info)
797{
798 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400801
802 err = xfrm_policy_flush_secctx_check(type, audit_info);
803 if (err)
804 goto out;
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700807 struct xfrm_policy *pol;
808 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700809 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700810
David S. Millerae8c0572006-10-03 16:00:26 -0700811 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700812 again1:
813 hlist_for_each_entry(pol, entry,
814 &xfrm_policy_inexact[dir], bydst) {
815 if (pol->type != type)
816 continue;
817 hlist_del(&pol->bydst);
818 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 write_unlock_bh(&xfrm_policy_lock);
820
Joy Lattenab5f5e82007-09-17 11:51:22 -0700821 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400822 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700823 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600824
David S. Miller2518c7c2006-08-24 04:45:07 -0700825 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700826 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700829 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700831
832 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
833 again2:
834 hlist_for_each_entry(pol, entry,
835 xfrm_policy_bydst[dir].table + i,
836 bydst) {
837 if (pol->type != type)
838 continue;
839 hlist_del(&pol->bydst);
840 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700841 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700842 write_unlock_bh(&xfrm_policy_lock);
843
Joy Lattenab5f5e82007-09-17 11:51:22 -0700844 xfrm_audit_policy_delete(pol, 1,
845 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400846 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700847 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700848 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700849 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700850
851 write_lock_bh(&xfrm_policy_lock);
852 goto again2;
853 }
854 }
855
David S. Millerae8c0572006-10-03 16:00:26 -0700856 xfrm_policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400859out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400861 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863EXPORT_SYMBOL(xfrm_policy_flush);
864
Timo Teras4c563f72008-02-28 21:31:08 -0800865int xfrm_policy_walk(struct xfrm_policy_walk *walk,
866 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 void *data)
868{
Herbert Xu12a169e2008-10-01 07:03:24 -0700869 struct xfrm_policy *pol;
870 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800871 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Timo Teras4c563f72008-02-28 21:31:08 -0800873 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
874 walk->type != XFRM_POLICY_TYPE_ANY)
875 return -EINVAL;
876
Herbert Xu12a169e2008-10-01 07:03:24 -0700877 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800878 return 0;
879
Herbert Xu12a169e2008-10-01 07:03:24 -0700880 write_lock_bh(&xfrm_policy_lock);
881 if (list_empty(&walk->walk.all))
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -0800882 x = list_first_entry(&init_net.xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700883 else
884 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -0800885 list_for_each_entry_from(x, &init_net.xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700886 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800887 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700888 pol = container_of(x, struct xfrm_policy, walk);
889 if (walk->type != XFRM_POLICY_TYPE_ANY &&
890 walk->type != pol->type)
891 continue;
892 error = func(pol, xfrm_policy_id2dir(pol->index),
893 walk->seq, data);
894 if (error) {
895 list_move_tail(&walk->walk.all, &x->all);
896 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800897 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700898 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700900 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800901 error = -ENOENT;
902 goto out;
903 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700904 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700906 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return error;
908}
909EXPORT_SYMBOL(xfrm_policy_walk);
910
Herbert Xu12a169e2008-10-01 07:03:24 -0700911void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
912{
913 INIT_LIST_HEAD(&walk->walk.all);
914 walk->walk.dead = 1;
915 walk->type = type;
916 walk->seq = 0;
917}
918EXPORT_SYMBOL(xfrm_policy_walk_init);
919
920void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
921{
922 if (list_empty(&walk->walk.all))
923 return;
924
925 write_lock_bh(&xfrm_policy_lock);
926 list_del(&walk->walk.all);
927 write_unlock_bh(&xfrm_policy_lock);
928}
929EXPORT_SYMBOL(xfrm_policy_walk_done);
930
James Morris134b0fc2006-10-05 15:42:27 -0500931/*
932 * Find policy to apply to this flow.
933 *
934 * Returns 0 if policy found, else an -errno.
935 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700936static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
937 u8 type, u16 family, int dir)
938{
939 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500940 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700941
942 if (pol->family != family ||
943 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500944 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700945
946 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500947 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700948 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
949 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700950
James Morris134b0fc2006-10-05 15:42:27 -0500951 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700952}
953
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700954static struct xfrm_policy *xfrm_policy_lookup_bytype(u8 type, struct flowi *fl,
955 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
James Morris134b0fc2006-10-05 15:42:27 -0500957 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700958 struct xfrm_policy *pol, *ret;
959 xfrm_address_t *daddr, *saddr;
960 struct hlist_node *entry;
961 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700962 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700963
964 daddr = xfrm_flowi_daddr(fl, family);
965 saddr = xfrm_flowi_saddr(fl, family);
966 if (unlikely(!daddr || !saddr))
967 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700970 chain = policy_hash_direct(daddr, saddr, family, dir);
971 ret = NULL;
972 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500973 err = xfrm_policy_match(pol, fl, type, family, dir);
974 if (err) {
975 if (err == -ESRCH)
976 continue;
977 else {
978 ret = ERR_PTR(err);
979 goto fail;
980 }
981 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700982 ret = pol;
983 priority = ret->priority;
984 break;
985 }
986 }
987 chain = &xfrm_policy_inexact[dir];
988 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500989 err = xfrm_policy_match(pol, fl, type, family, dir);
990 if (err) {
991 if (err == -ESRCH)
992 continue;
993 else {
994 ret = ERR_PTR(err);
995 goto fail;
996 }
997 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700998 ret = pol;
999 break;
1000 }
1001 }
David S. Milleracba48e2006-08-25 15:46:46 -07001002 if (ret)
1003 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -05001004fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001006
David S. Miller2518c7c2006-08-24 04:45:07 -07001007 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001008}
1009
James Morris134b0fc2006-10-05 15:42:27 -05001010static int xfrm_policy_lookup(struct flowi *fl, u16 family, u8 dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001011 void **objp, atomic_t **obj_refp)
1012{
1013 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -05001014 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001015
1016#ifdef CONFIG_XFRM_SUB_POLICY
1017 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001018 if (IS_ERR(pol)) {
1019 err = PTR_ERR(pol);
1020 pol = NULL;
1021 }
1022 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001023 goto end;
1024#endif
1025 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001026 if (IS_ERR(pol)) {
1027 err = PTR_ERR(pol);
1028 pol = NULL;
1029 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001030#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001031end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001032#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if ((*objp = (void *) pol) != NULL)
1034 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001035 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
Trent Jaegerdf718372005-12-13 23:12:27 -08001038static inline int policy_to_flow_dir(int dir)
1039{
1040 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001041 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1042 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1043 return dir;
1044 switch (dir) {
1045 default:
1046 case XFRM_POLICY_IN:
1047 return FLOW_DIR_IN;
1048 case XFRM_POLICY_OUT:
1049 return FLOW_DIR_OUT;
1050 case XFRM_POLICY_FWD:
1051 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001052 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001053}
1054
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001055static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 struct xfrm_policy *pol;
1058
1059 read_lock_bh(&xfrm_policy_lock);
1060 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001061 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001063 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001064
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001065 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001066 err = security_xfrm_policy_lookup(pol->security,
1067 fl->secid,
1068 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001069 if (!err)
1070 xfrm_pol_hold(pol);
1071 else if (err == -ESRCH)
1072 pol = NULL;
1073 else
1074 pol = ERR_PTR(err);
1075 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 pol = NULL;
1077 }
1078 read_unlock_bh(&xfrm_policy_lock);
1079 return pol;
1080}
1081
1082static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1083{
David S. Miller2518c7c2006-08-24 04:45:07 -07001084 struct hlist_head *chain = policy_hash_bysel(&pol->selector,
1085 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001086
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08001087 list_add(&pol->walk.all, &init_net.xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001088 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08001089 hlist_add_head(&pol->byidx, init_net.xfrm.policy_byidx+idx_hash(pol->index));
David S. Miller2518c7c2006-08-24 04:45:07 -07001090 xfrm_policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001092
1093 if (xfrm_bydst_should_resize(dir, NULL))
1094 schedule_work(&xfrm_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
1097static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1098 int dir)
1099{
David S. Miller2518c7c2006-08-24 04:45:07 -07001100 if (hlist_unhashed(&pol->bydst))
1101 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
David S. Miller2518c7c2006-08-24 04:45:07 -07001103 hlist_del(&pol->bydst);
1104 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001105 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001106 xfrm_policy_count[dir]--;
1107
1108 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
Herbert Xu4666faa2005-06-18 22:43:22 -07001111int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 write_lock_bh(&xfrm_policy_lock);
1114 pol = __xfrm_policy_unlink(pol, dir);
1115 write_unlock_bh(&xfrm_policy_lock);
1116 if (pol) {
1117 if (dir < XFRM_POLICY_MAX)
1118 atomic_inc(&flow_cache_genid);
1119 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001122 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
David S. Millera70fcb02006-03-20 19:18:52 -08001124EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1127{
1128 struct xfrm_policy *old_pol;
1129
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001130#ifdef CONFIG_XFRM_SUB_POLICY
1131 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1132 return -EINVAL;
1133#endif
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 write_lock_bh(&xfrm_policy_lock);
1136 old_pol = sk->sk_policy[dir];
1137 sk->sk_policy[dir] = pol;
1138 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001139 pol->curlft.add_time = get_seconds();
Arnaud Ebalard7a121222008-11-12 23:28:15 -08001140 pol->index = xfrm_gen_index(XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1142 }
1143 if (old_pol)
1144 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1145 write_unlock_bh(&xfrm_policy_lock);
1146
1147 if (old_pol) {
1148 xfrm_policy_kill(old_pol);
1149 }
1150 return 0;
1151}
1152
1153static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1154{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001155 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 if (newp) {
1158 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001159 if (security_xfrm_policy_clone(old->security,
1160 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001161 kfree(newp);
1162 return NULL; /* ENOMEM */
1163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 newp->lft = old->lft;
1165 newp->curlft = old->curlft;
1166 newp->action = old->action;
1167 newp->flags = old->flags;
1168 newp->xfrm_nr = old->xfrm_nr;
1169 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001170 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 memcpy(newp->xfrm_vec, old->xfrm_vec,
1172 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1173 write_lock_bh(&xfrm_policy_lock);
1174 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1175 write_unlock_bh(&xfrm_policy_lock);
1176 xfrm_pol_put(newp);
1177 }
1178 return newp;
1179}
1180
1181int __xfrm_sk_clone_policy(struct sock *sk)
1182{
1183 struct xfrm_policy *p0 = sk->sk_policy[0],
1184 *p1 = sk->sk_policy[1];
1185
1186 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1187 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1188 return -ENOMEM;
1189 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1190 return -ENOMEM;
1191 return 0;
1192}
1193
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001194static int
1195xfrm_get_saddr(xfrm_address_t *local, xfrm_address_t *remote,
1196 unsigned short family)
1197{
1198 int err;
1199 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1200
1201 if (unlikely(afinfo == NULL))
1202 return -EINVAL;
1203 err = afinfo->get_saddr(local, remote);
1204 xfrm_policy_put_afinfo(afinfo);
1205 return err;
1206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208/* Resolve list of templates for the flow, given policy. */
1209
1210static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001211xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1212 struct xfrm_state **xfrm,
1213 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
1215 int nx;
1216 int i, error;
1217 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1218 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001219 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1222 struct xfrm_state *x;
1223 xfrm_address_t *remote = daddr;
1224 xfrm_address_t *local = saddr;
1225 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1226
Joakim Koskela48b8d782007-07-26 00:08:42 -07001227 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1228 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 remote = &tmpl->id.daddr;
1230 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001231 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001232 if (xfrm_addr_any(local, family)) {
1233 error = xfrm_get_saddr(&tmp, remote, family);
1234 if (error)
1235 goto fail;
1236 local = &tmp;
1237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
1240 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1241
1242 if (x && x->km.state == XFRM_STATE_VALID) {
1243 xfrm[nx++] = x;
1244 daddr = remote;
1245 saddr = local;
1246 continue;
1247 }
1248 if (x) {
1249 error = (x->km.state == XFRM_STATE_ERROR ?
1250 -EINVAL : -EAGAIN);
1251 xfrm_state_put(x);
1252 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001253 else if (error == -ESRCH)
1254 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 if (!tmpl->optional)
1257 goto fail;
1258 }
1259 return nx;
1260
1261fail:
1262 for (nx--; nx>=0; nx--)
1263 xfrm_state_put(xfrm[nx]);
1264 return error;
1265}
1266
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001267static int
1268xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1269 struct xfrm_state **xfrm,
1270 unsigned short family)
1271{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001272 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1273 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001274 int cnx = 0;
1275 int error;
1276 int ret;
1277 int i;
1278
1279 for (i = 0; i < npols; i++) {
1280 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1281 error = -ENOBUFS;
1282 goto fail;
1283 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001284
1285 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001286 if (ret < 0) {
1287 error = ret;
1288 goto fail;
1289 } else
1290 cnx += ret;
1291 }
1292
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001293 /* found states are sorted for outbound processing */
1294 if (npols > 1)
1295 xfrm_state_sort(xfrm, tpp, cnx, family);
1296
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001297 return cnx;
1298
1299 fail:
1300 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001301 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001302 return error;
1303
1304}
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306/* Check that the bundle accepts the flow and its components are
1307 * still valid.
1308 */
1309
1310static struct dst_entry *
1311xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1312{
1313 struct dst_entry *x;
1314 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1315 if (unlikely(afinfo == NULL))
1316 return ERR_PTR(-EINVAL);
1317 x = afinfo->find_bundle(fl, policy);
1318 xfrm_policy_put_afinfo(afinfo);
1319 return x;
1320}
1321
Herbert Xu25ee3282007-12-11 09:32:34 -08001322static inline int xfrm_get_tos(struct flowi *fl, int family)
1323{
1324 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1325 int tos;
1326
1327 if (!afinfo)
1328 return -EINVAL;
1329
1330 tos = afinfo->get_tos(fl);
1331
1332 xfrm_policy_put_afinfo(afinfo);
1333
1334 return tos;
1335}
1336
1337static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1338{
1339 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1340 struct xfrm_dst *xdst;
1341
1342 if (!afinfo)
1343 return ERR_PTR(-EINVAL);
1344
1345 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1346
1347 xfrm_policy_put_afinfo(afinfo);
1348
1349 return xdst;
1350}
1351
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001352static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1353 int nfheader_len)
1354{
1355 struct xfrm_policy_afinfo *afinfo =
1356 xfrm_policy_get_afinfo(dst->ops->family);
1357 int err;
1358
1359 if (!afinfo)
1360 return -EINVAL;
1361
1362 err = afinfo->init_path(path, dst, nfheader_len);
1363
1364 xfrm_policy_put_afinfo(afinfo);
1365
1366 return err;
1367}
1368
Herbert Xu25ee3282007-12-11 09:32:34 -08001369static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1370{
1371 struct xfrm_policy_afinfo *afinfo =
1372 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1373 int err;
1374
1375 if (!afinfo)
1376 return -EINVAL;
1377
1378 err = afinfo->fill_dst(xdst, dev);
1379
1380 xfrm_policy_put_afinfo(afinfo);
1381
1382 return err;
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1386 * all the metrics... Shortly, bundle a bundle.
1387 */
1388
Herbert Xu25ee3282007-12-11 09:32:34 -08001389static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1390 struct xfrm_state **xfrm, int nx,
1391 struct flowi *fl,
1392 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Herbert Xu25ee3282007-12-11 09:32:34 -08001394 unsigned long now = jiffies;
1395 struct net_device *dev;
1396 struct dst_entry *dst_prev = NULL;
1397 struct dst_entry *dst0 = NULL;
1398 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001400 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001401 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001402 int trailer_len = 0;
1403 int tos;
1404 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001405 xfrm_address_t saddr, daddr;
1406
1407 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001408
1409 tos = xfrm_get_tos(fl, family);
1410 err = tos;
1411 if (tos < 0)
1412 goto put_states;
1413
1414 dst_hold(dst);
1415
1416 for (; i < nx; i++) {
1417 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1418 struct dst_entry *dst1 = &xdst->u.dst;
1419
1420 err = PTR_ERR(xdst);
1421 if (IS_ERR(xdst)) {
1422 dst_release(dst);
1423 goto put_states;
1424 }
1425
1426 if (!dst_prev)
1427 dst0 = dst1;
1428 else {
1429 dst_prev->child = dst_clone(dst1);
1430 dst1->flags |= DST_NOHASH;
1431 }
1432
1433 xdst->route = dst;
1434 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1435
1436 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1437 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001438 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1439 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001440 err = PTR_ERR(dst);
1441 if (IS_ERR(dst))
1442 goto put_states;
1443 } else
1444 dst_hold(dst);
1445
1446 dst1->xfrm = xfrm[i];
1447 xdst->genid = xfrm[i]->genid;
1448
1449 dst1->obsolete = -1;
1450 dst1->flags |= DST_HOST;
1451 dst1->lastuse = now;
1452
1453 dst1->input = dst_discard;
1454 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1455
1456 dst1->next = dst_prev;
1457 dst_prev = dst1;
1458
1459 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001460 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1461 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001462 trailer_len += xfrm[i]->props.trailer_len;
1463 }
1464
1465 dst_prev->child = dst;
1466 dst0->path = dst;
1467
1468 err = -ENODEV;
1469 dev = dst->dev;
1470 if (!dev)
1471 goto free_dst;
1472
1473 /* Copy neighbout for reachability confirmation */
1474 dst0->neighbour = neigh_clone(dst->neighbour);
1475
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001476 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001477 xfrm_init_pmtu(dst_prev);
1478
1479 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1480 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1481
1482 err = xfrm_fill_dst(xdst, dev);
1483 if (err)
1484 goto free_dst;
1485
1486 dst_prev->header_len = header_len;
1487 dst_prev->trailer_len = trailer_len;
1488 header_len -= xdst->u.dst.xfrm->props.header_len;
1489 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1490 }
1491
1492out:
1493 return dst0;
1494
1495put_states:
1496 for (; i < nx; i++)
1497 xfrm_state_put(xfrm[i]);
1498free_dst:
1499 if (dst0)
1500 dst_free(dst0);
1501 dst0 = ERR_PTR(err);
1502 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001505static int inline
1506xfrm_dst_alloc_copy(void **target, void *src, int size)
1507{
1508 if (!*target) {
1509 *target = kmalloc(size, GFP_ATOMIC);
1510 if (!*target)
1511 return -ENOMEM;
1512 }
1513 memcpy(*target, src, size);
1514 return 0;
1515}
1516
1517static int inline
1518xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1519{
1520#ifdef CONFIG_XFRM_SUB_POLICY
1521 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1522 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1523 sel, sizeof(*sel));
1524#else
1525 return 0;
1526#endif
1527}
1528
1529static int inline
1530xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1531{
1532#ifdef CONFIG_XFRM_SUB_POLICY
1533 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1534 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1535#else
1536 return 0;
1537#endif
1538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540static int stale_bundle(struct dst_entry *dst);
1541
1542/* Main function: finds/creates a bundle for given flow.
1543 *
1544 * At the moment we eat a raw IP route. Mostly to speed up lookups
1545 * on interfaces with disabled IPsec.
1546 */
David S. Miller14e50e52007-05-24 18:17:54 -07001547int __xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1548 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001551 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1552 int npols;
1553 int pol_dead;
1554 int xfrm_nr;
1555 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1557 struct dst_entry *dst, *dst_orig = *dst_p;
1558 int nx = 0;
1559 int err;
1560 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001561 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001562 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564restart:
1565 genid = atomic_read(&flow_cache_genid);
1566 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001567 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1568 pols[pi] = NULL;
1569 npols = 0;
1570 pol_dead = 0;
1571 xfrm_nr = 0;
1572
Thomas Graff7944fb2007-08-25 13:46:55 -07001573 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001574 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001575 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001576 if (IS_ERR(policy)) {
1577 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001578 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001579 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 if (!policy) {
1583 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001584 if ((dst_orig->flags & DST_NOXFRM) ||
1585 !xfrm_policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001586 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001588 policy = flow_cache_lookup(fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001589 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001590 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001591 if (IS_ERR(policy)) {
1592 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001593 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
1596
1597 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001598 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001600 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001601 pols[0] = policy;
1602 npols ++;
1603 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Herbert Xuaef21782007-12-13 09:30:59 -08001605 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001606 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1607 goto error;
1608
1609 policy->curlft.use_time = get_seconds();
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001612 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 case XFRM_POLICY_BLOCK:
1614 /* Prohibit the flow */
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001615 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07001616 err = -EPERM;
1617 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001620#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (policy->xfrm_nr == 0) {
1622 /* Flow passes not transformed. */
1623 xfrm_pol_put(policy);
1624 return 0;
1625 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001626#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 /* Try to find matching bundle.
1629 *
1630 * LATER: help from flow cache. It is optional, this
1631 * is required only for output policy.
1632 */
1633 dst = xfrm_find_bundle(fl, policy, family);
1634 if (IS_ERR(dst)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001635 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye104411b2005-09-08 15:11:55 -07001636 err = PTR_ERR(dst);
1637 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
1640 if (dst)
1641 break;
1642
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001643#ifdef CONFIG_XFRM_SUB_POLICY
1644 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1645 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1646 fl, family,
1647 XFRM_POLICY_OUT);
1648 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001649 if (IS_ERR(pols[1])) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001650 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001651 err = PTR_ERR(pols[1]);
1652 goto error;
1653 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001654 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001655 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001656 err = -EPERM;
1657 goto error;
1658 }
1659 npols ++;
1660 xfrm_nr += pols[1]->xfrm_nr;
1661 }
1662 }
1663
1664 /*
1665 * Because neither flowi nor bundle information knows about
1666 * transformation template size. On more than one policy usage
1667 * we can realize whether all of them is bypass or not after
1668 * they are searched. See above not-transformed bypass
1669 * is surrounded by non-sub policy configuration, too.
1670 */
1671 if (xfrm_nr == 0) {
1672 /* Flow passes not transformed. */
1673 xfrm_pols_put(pols, npols);
1674 return 0;
1675 }
1676
1677#endif
1678 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 if (unlikely(nx<0)) {
1681 err = nx;
David S. Miller14e50e52007-05-24 18:17:54 -07001682 if (err == -EAGAIN && sysctl_xfrm_larval_drop) {
1683 /* EREMOTE tells the caller to generate
1684 * a one-shot blackhole route.
1685 */
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001686 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001687 xfrm_pol_put(policy);
1688 return -EREMOTE;
1689 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001690 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 DECLARE_WAITQUEUE(wait, current);
1692
Alexey Dobriyan50a30652008-11-25 17:21:01 -08001693 add_wait_queue(&init_net.xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 set_current_state(TASK_INTERRUPTIBLE);
1695 schedule();
1696 set_current_state(TASK_RUNNING);
Alexey Dobriyan50a30652008-11-25 17:21:01 -08001697 remove_wait_queue(&init_net.xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001699 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 if (nx == -EAGAIN && signal_pending(current)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001702 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 err = -ERESTART;
1704 goto error;
1705 }
1706 if (nx == -EAGAIN ||
1707 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001708 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 goto restart;
1710 }
1711 err = nx;
1712 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001713 if (err < 0) {
1714 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718 if (nx == 0) {
1719 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001720 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return 0;
1722 }
1723
Herbert Xu25ee3282007-12-11 09:32:34 -08001724 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1725 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001726 if (IS_ERR(dst)) {
1727 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001731 for (pi = 0; pi < npols; pi++) {
1732 read_lock_bh(&pols[pi]->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001733 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001734 read_unlock_bh(&pols[pi]->lock);
1735 }
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001738 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 /* Wow! While we worked on resolving, this
1740 * policy has gone. Retry. It is not paranoia,
1741 * we just cannot enlist new bundle to dead object.
1742 * We can't enlist stable bundles either.
1743 */
1744 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001745 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001746
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001747 if (pol_dead)
1748 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD);
1749 else
1750 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001751 err = -EHOSTUNREACH;
1752 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001754
1755 if (npols > 1)
1756 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1757 else
1758 err = xfrm_dst_update_origin(dst, fl);
1759 if (unlikely(err)) {
1760 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001761 dst_free(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001762 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001763 goto error;
1764 }
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 dst->next = policy->bundles;
1767 policy->bundles = dst;
1768 dst_hold(dst);
1769 write_unlock_bh(&policy->lock);
1770 }
1771 *dst_p = dst;
1772 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001773 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return 0;
1775
1776error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001777 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001778dropdst:
1779 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 *dst_p = NULL;
1781 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001782
1783nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001784 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001785 if (flags & XFRM_LOOKUP_ICMP)
1786 goto dropdst;
1787 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788}
David S. Miller14e50e52007-05-24 18:17:54 -07001789EXPORT_SYMBOL(__xfrm_lookup);
1790
1791int xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1792 struct sock *sk, int flags)
1793{
1794 int err = __xfrm_lookup(dst_p, fl, sk, flags);
1795
1796 if (err == -EREMOTE) {
1797 dst_release(*dst_p);
1798 *dst_p = NULL;
1799 err = -EAGAIN;
1800 }
1801
1802 return err;
1803}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804EXPORT_SYMBOL(xfrm_lookup);
1805
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001806static inline int
1807xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1808{
1809 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001810
1811 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1812 return 0;
1813 x = skb->sp->xvec[idx];
1814 if (!x->type->reject)
1815 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001816 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001817}
1818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819/* When skb is transformed back to its "native" form, we have to
1820 * check policy restrictions. At the moment we make this in maximally
1821 * stupid way. Shame on me. :-) Of course, connected sockets must
1822 * have policy cached at them.
1823 */
1824
1825static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001826xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 unsigned short family)
1828{
1829 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001830 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return x->id.proto == tmpl->id.proto &&
1832 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1833 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1834 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001835 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001836 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001837 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1838 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001841/*
1842 * 0 or more than 0 is returned when validation is succeeded (either bypass
1843 * because of optional transport mode, or next index of the mathced secpath
1844 * state with the template.
1845 * -1 is returned when no matching template is found.
1846 * Otherwise "-2 - errored_index" is returned.
1847 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848static inline int
1849xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1850 unsigned short family)
1851{
1852 int idx = start;
1853
1854 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001855 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 return start;
1857 } else
1858 start = -1;
1859 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001860 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001862 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1863 if (start == -1)
1864 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868 return start;
1869}
1870
Herbert Xud5422ef2007-12-12 10:44:16 -08001871int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1872 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
1874 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001875 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 if (unlikely(afinfo == NULL))
1878 return -EAFNOSUPPORT;
1879
Herbert Xud5422ef2007-12-12 10:44:16 -08001880 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001881 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001883 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}
Herbert Xud5422ef2007-12-12 10:44:16 -08001885EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001887static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001890 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001891 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895
1896 return 0;
1897}
1898
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001899int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 unsigned short family)
1901{
1902 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001903 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1904 int npols = 0;
1905 int xfrm_nr;
1906 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001907 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001909 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001910 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Herbert Xud5422ef2007-12-12 10:44:16 -08001912 reverse = dir & ~XFRM_POLICY_MASK;
1913 dir &= XFRM_POLICY_MASK;
1914 fl_dir = policy_to_flow_dir(dir);
1915
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001916 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
1917 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001919 }
1920
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001921 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /* First, check used SA against their selectors. */
1924 if (skb->sp) {
1925 int i;
1926
1927 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001928 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001929 if (!xfrm_selector_match(&x->sel, &fl, family)) {
1930 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934 }
1935
1936 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001937 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001938 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001939 if (IS_ERR(pol)) {
1940 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001941 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001942 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 if (!pol)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001946 pol = flow_cache_lookup(&fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 xfrm_policy_lookup);
1948
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001949 if (IS_ERR(pol)) {
1950 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001951 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001952 }
James Morris134b0fc2006-10-05 15:42:27 -05001953
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001954 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001955 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001956 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001957 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001958 return 0;
1959 }
1960 return 1;
1961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
James Morris9d729f72007-03-04 16:12:44 -08001963 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001965 pols[0] = pol;
1966 npols ++;
1967#ifdef CONFIG_XFRM_SUB_POLICY
1968 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1969 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1970 &fl, family,
1971 XFRM_POLICY_IN);
1972 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001973 if (IS_ERR(pols[1])) {
1974 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001975 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001976 }
James Morris9d729f72007-03-04 16:12:44 -08001977 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001978 npols ++;
1979 }
1980 }
1981#endif
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 if (pol->action == XFRM_POLICY_ALLOW) {
1984 struct sec_path *sp;
1985 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001986 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001987 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001988 struct xfrm_tmpl **tpp = tp;
1989 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 int i, k;
1991
1992 if ((sp = skb->sp) == NULL)
1993 sp = &dummy;
1994
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001995 for (pi = 0; pi < npols; pi++) {
1996 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001997 pols[pi]->action != XFRM_POLICY_ALLOW) {
1998 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001999 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002000 }
2001 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
2002 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002003 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002004 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002005 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2006 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2007 }
2008 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002009 if (npols > 1) {
2010 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2011 tpp = stp;
2012 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 /* For each tunnel xfrm, find the first matching tmpl.
2015 * For each tmpl before that, find corresponding xfrm.
2016 * Order is _important_. Later we will implement
2017 * some barriers, but at the moment barriers
2018 * are implied between each two transformations.
2019 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002020 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2021 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002022 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002023 if (k < -1)
2024 /* "-2 - errored_index" returned */
2025 xerr_idx = -(2+k);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002026 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002031 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2032 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002036 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 return 1;
2038 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002039 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002042 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002043reject_error:
2044 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return 0;
2046}
2047EXPORT_SYMBOL(__xfrm_policy_check);
2048
2049int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2050{
2051 struct flowi fl;
2052
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002053 if (xfrm_decode_session(skb, &fl, family) < 0) {
2054 /* XXX: we should have something like FWDHDRERROR here. */
2055 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059 return xfrm_lookup(&skb->dst, &fl, NULL, 0) == 0;
2060}
2061EXPORT_SYMBOL(__xfrm_route_forward);
2062
David S. Millerd49c73c2006-08-13 18:55:53 -07002063/* Optimize later using cookies and generation ids. */
2064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2066{
David S. Millerd49c73c2006-08-13 18:55:53 -07002067 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2068 * to "-1" to force all XFRM destinations to get validated by
2069 * dst_ops->check on every use. We do this because when a
2070 * normal route referenced by an XFRM dst is obsoleted we do
2071 * not go looking around for all parent referencing XFRM dsts
2072 * so that we can invalidate them. It is just too much work.
2073 * Instead we make the checks here on every use. For example:
2074 *
2075 * XFRM dst A --> IPv4 dst X
2076 *
2077 * X is the "xdst->route" of A (X is also the "dst->path" of A
2078 * in this example). If X is marked obsolete, "A" will not
2079 * notice. That's what we are validating here via the
2080 * stale_bundle() check.
2081 *
2082 * When a policy's bundle is pruned, we dst_free() the XFRM
2083 * dst which causes it's ->obsolete field to be set to a
2084 * positive non-zero integer. If an XFRM dst has been pruned
2085 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002086 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002087 if (dst->obsolete < 0 && !stale_bundle(dst))
2088 return dst;
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 return NULL;
2091}
2092
2093static int stale_bundle(struct dst_entry *dst)
2094{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002095 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
Herbert Xuaabc9762005-05-03 16:27:10 -07002098void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002101 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002102 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 dev_put(dev);
2104 }
2105}
Herbert Xuaabc9762005-05-03 16:27:10 -07002106EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108static void xfrm_link_failure(struct sk_buff *skb)
2109{
2110 /* Impossible. Such dst must be popped before reaches point of failure. */
2111 return;
2112}
2113
2114static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2115{
2116 if (dst) {
2117 if (dst->obsolete) {
2118 dst_release(dst);
2119 dst = NULL;
2120 }
2121 }
2122 return dst;
2123}
2124
David S. Miller2518c7c2006-08-24 04:45:07 -07002125static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2126{
2127 struct dst_entry *dst, **dstp;
2128
2129 write_lock(&pol->lock);
2130 dstp = &pol->bundles;
2131 while ((dst=*dstp) != NULL) {
2132 if (func(dst)) {
2133 *dstp = dst->next;
2134 dst->next = *gc_list_p;
2135 *gc_list_p = dst;
2136 } else {
2137 dstp = &dst->next;
2138 }
2139 }
2140 write_unlock(&pol->lock);
2141}
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
2144{
David S. Miller2518c7c2006-08-24 04:45:07 -07002145 struct dst_entry *gc_list = NULL;
2146 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002149 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2150 struct xfrm_policy *pol;
2151 struct hlist_node *entry;
2152 struct hlist_head *table;
2153 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002154
David S. Miller2518c7c2006-08-24 04:45:07 -07002155 hlist_for_each_entry(pol, entry,
2156 &xfrm_policy_inexact[dir], bydst)
2157 prune_one_bundle(pol, func, &gc_list);
2158
2159 table = xfrm_policy_bydst[dir].table;
2160 for (i = xfrm_policy_bydst[dir].hmask; i >= 0; i--) {
2161 hlist_for_each_entry(pol, entry, table + i, bydst)
2162 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 }
2164 }
2165 read_unlock_bh(&xfrm_policy_lock);
2166
2167 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002168 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 gc_list = dst->next;
2170 dst_free(dst);
2171 }
2172}
2173
2174static int unused_bundle(struct dst_entry *dst)
2175{
2176 return !atomic_read(&dst->__refcnt);
2177}
2178
2179static void __xfrm_garbage_collect(void)
2180{
2181 xfrm_prune_bundles(unused_bundle);
2182}
2183
David S. Miller1c095392006-08-24 03:30:28 -07002184static int xfrm_flush_bundles(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
2186 xfrm_prune_bundles(stale_bundle);
2187 return 0;
2188}
2189
Herbert Xu25ee3282007-12-11 09:32:34 -08002190static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
2192 do {
2193 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2194 u32 pmtu, route_mtu_cached;
2195
2196 pmtu = dst_mtu(dst->child);
2197 xdst->child_mtu_cached = pmtu;
2198
2199 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2200
2201 route_mtu_cached = dst_mtu(xdst->route);
2202 xdst->route_mtu_cached = route_mtu_cached;
2203
2204 if (pmtu > route_mtu_cached)
2205 pmtu = route_mtu_cached;
2206
2207 dst->metrics[RTAX_MTU-1] = pmtu;
2208 } while ((dst = dst->next));
2209}
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211/* Check that the bundle accepts the flow and its components are
2212 * still valid.
2213 */
2214
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002215int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2216 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
2218 struct dst_entry *dst = &first->u.dst;
2219 struct xfrm_dst *last;
2220 u32 mtu;
2221
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002222 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 (dst->dev && !netif_running(dst->dev)))
2224 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002225#ifdef CONFIG_XFRM_SUB_POLICY
2226 if (fl) {
2227 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2228 return 0;
2229 if (first->partner &&
2230 !xfrm_selector_match(first->partner, fl, family))
2231 return 0;
2232 }
2233#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 last = NULL;
2236
2237 do {
2238 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2239
2240 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2241 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002242 if (fl && pol &&
2243 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002244 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2246 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002247 if (xdst->genid != dst->xfrm->genid)
2248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Herbert Xu1bfcb102007-10-17 21:31:50 -07002250 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002251 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002252 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2253 return 0;
2254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 mtu = dst_mtu(dst->child);
2256 if (xdst->child_mtu_cached != mtu) {
2257 last = xdst;
2258 xdst->child_mtu_cached = mtu;
2259 }
2260
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002261 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 return 0;
2263 mtu = dst_mtu(xdst->route);
2264 if (xdst->route_mtu_cached != mtu) {
2265 last = xdst;
2266 xdst->route_mtu_cached = mtu;
2267 }
2268
2269 dst = dst->child;
2270 } while (dst->xfrm);
2271
2272 if (likely(!last))
2273 return 1;
2274
2275 mtu = last->child_mtu_cached;
2276 for (;;) {
2277 dst = &last->u.dst;
2278
2279 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2280 if (mtu > last->route_mtu_cached)
2281 mtu = last->route_mtu_cached;
2282 dst->metrics[RTAX_MTU-1] = mtu;
2283
2284 if (last == first)
2285 break;
2286
Patrick McHardybd0bf072007-07-18 01:55:52 -07002287 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 last->child_mtu_cached = mtu;
2289 }
2290
2291 return 1;
2292}
2293
2294EXPORT_SYMBOL(xfrm_bundle_ok);
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2297{
2298 int err = 0;
2299 if (unlikely(afinfo == NULL))
2300 return -EINVAL;
2301 if (unlikely(afinfo->family >= NPROTO))
2302 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002303 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2305 err = -ENOBUFS;
2306 else {
2307 struct dst_ops *dst_ops = afinfo->dst_ops;
2308 if (likely(dst_ops->kmem_cachep == NULL))
2309 dst_ops->kmem_cachep = xfrm_dst_cache;
2310 if (likely(dst_ops->check == NULL))
2311 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (likely(dst_ops->negative_advice == NULL))
2313 dst_ops->negative_advice = xfrm_negative_advice;
2314 if (likely(dst_ops->link_failure == NULL))
2315 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (likely(afinfo->garbage_collect == NULL))
2317 afinfo->garbage_collect = __xfrm_garbage_collect;
2318 xfrm_policy_afinfo[afinfo->family] = afinfo;
2319 }
Ingo Molnare959d812006-04-28 15:32:29 -07002320 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 return err;
2322}
2323EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2324
2325int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2326{
2327 int err = 0;
2328 if (unlikely(afinfo == NULL))
2329 return -EINVAL;
2330 if (unlikely(afinfo->family >= NPROTO))
2331 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002332 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2334 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2335 err = -EINVAL;
2336 else {
2337 struct dst_ops *dst_ops = afinfo->dst_ops;
2338 xfrm_policy_afinfo[afinfo->family] = NULL;
2339 dst_ops->kmem_cachep = NULL;
2340 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 dst_ops->negative_advice = NULL;
2342 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 afinfo->garbage_collect = NULL;
2344 }
2345 }
Ingo Molnare959d812006-04-28 15:32:29 -07002346 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 return err;
2348}
2349EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2350
2351static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2352{
2353 struct xfrm_policy_afinfo *afinfo;
2354 if (unlikely(family >= NPROTO))
2355 return NULL;
2356 read_lock(&xfrm_policy_afinfo_lock);
2357 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002358 if (unlikely(!afinfo))
2359 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 return afinfo;
2361}
2362
2363static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2364{
Herbert Xu546be242006-05-27 23:03:58 -07002365 read_unlock(&xfrm_policy_afinfo_lock);
2366}
2367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2369{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002370 struct net_device *dev = ptr;
2371
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07002372 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002373 return NOTIFY_DONE;
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 switch (event) {
2376 case NETDEV_DOWN:
2377 xfrm_flush_bundles();
2378 }
2379 return NOTIFY_DONE;
2380}
2381
2382static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002383 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384};
2385
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002386#ifdef CONFIG_XFRM_STATISTICS
2387static int __init xfrm_statistics_init(void)
2388{
2389 if (snmp_mib_init((void **)xfrm_statistics,
2390 sizeof(struct linux_xfrm_mib)) < 0)
2391 return -ENOMEM;
2392 return 0;
2393}
2394#endif
2395
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002396static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397{
David S. Miller2518c7c2006-08-24 04:45:07 -07002398 unsigned int hmask, sz;
2399 int dir;
2400
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002401 if (net_eq(net, &init_net))
2402 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002404 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002405 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
David S. Miller2518c7c2006-08-24 04:45:07 -07002407 hmask = 8 - 1;
2408 sz = (hmask+1) * sizeof(struct hlist_head);
2409
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002410 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2411 if (!net->xfrm.policy_byidx)
2412 goto out_byidx;
David S. Miller2518c7c2006-08-24 04:45:07 -07002413 xfrm_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002414
2415 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2416 struct xfrm_policy_hash *htab;
2417
2418 INIT_HLIST_HEAD(&xfrm_policy_inexact[dir]);
2419
2420 htab = &xfrm_policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002421 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002422 htab->hmask = hmask;
2423 if (!htab->table)
2424 panic("XFRM: failed to allocate bydst hash\n");
2425 }
2426
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002427 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002428 if (net_eq(net, &init_net))
2429 register_netdevice_notifier(&xfrm_dev_notifier);
2430 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002431
2432out_byidx:
2433 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
2435
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002436static void xfrm_policy_fini(struct net *net)
2437{
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002438 unsigned int sz;
2439
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002440 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002441
2442 sz = (xfrm_idx_hmask + 1) * sizeof(struct hlist_head);
2443 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2444 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002445}
2446
2447static int __net_init xfrm_net_init(struct net *net)
2448{
2449 int rv;
2450
2451 rv = xfrm_state_init(net);
2452 if (rv < 0)
2453 goto out_state;
2454 rv = xfrm_policy_init(net);
2455 if (rv < 0)
2456 goto out_policy;
2457 return 0;
2458
2459out_policy:
2460 xfrm_state_fini(net);
2461out_state:
2462 return rv;
2463}
2464
2465static void __net_exit xfrm_net_exit(struct net *net)
2466{
2467 xfrm_policy_fini(net);
2468 xfrm_state_fini(net);
2469}
2470
2471static struct pernet_operations __net_initdata xfrm_net_ops = {
2472 .init = xfrm_net_init,
2473 .exit = xfrm_net_exit,
2474};
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476void __init xfrm_init(void)
2477{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002478 register_pernet_subsys(&xfrm_net_ops);
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002479#ifdef CONFIG_XFRM_STATISTICS
2480 xfrm_statistics_init();
2481#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 xfrm_input_init();
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002483#ifdef CONFIG_XFRM_STATISTICS
2484 xfrm_proc_init();
2485#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
Joy Lattenab5f5e82007-09-17 11:51:22 -07002488#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002489static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2490 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002491{
Paul Moore875179f2007-12-01 23:27:18 +11002492 struct xfrm_sec_ctx *ctx = xp->security;
2493 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002494
Paul Moore875179f2007-12-01 23:27:18 +11002495 if (ctx)
2496 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2497 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2498
2499 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002500 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002501 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002502 if (sel->prefixlen_s != 32)
2503 audit_log_format(audit_buf, " src_prefixlen=%d",
2504 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002505 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002506 if (sel->prefixlen_d != 32)
2507 audit_log_format(audit_buf, " dst_prefixlen=%d",
2508 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002509 break;
2510 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002511 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002512 if (sel->prefixlen_s != 128)
2513 audit_log_format(audit_buf, " src_prefixlen=%d",
2514 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002515 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002516 if (sel->prefixlen_d != 128)
2517 audit_log_format(audit_buf, " dst_prefixlen=%d",
2518 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002519 break;
2520 }
2521}
2522
Paul Moore68277ac2007-12-20 20:49:33 -08002523void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002524 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002525{
2526 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002527
Paul Mooreafeb14b2007-12-21 14:58:11 -08002528 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002529 if (audit_buf == NULL)
2530 return;
Eric Paris25323862008-04-18 10:09:25 -04002531 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002532 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002533 xfrm_audit_common_policyinfo(xp, audit_buf);
2534 audit_log_end(audit_buf);
2535}
2536EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2537
Paul Moore68277ac2007-12-20 20:49:33 -08002538void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002539 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002540{
2541 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002542
Paul Mooreafeb14b2007-12-21 14:58:11 -08002543 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002544 if (audit_buf == NULL)
2545 return;
Eric Paris25323862008-04-18 10:09:25 -04002546 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002547 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002548 xfrm_audit_common_policyinfo(xp, audit_buf);
2549 audit_log_end(audit_buf);
2550}
2551EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2552#endif
2553
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002554#ifdef CONFIG_XFRM_MIGRATE
2555static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2556 struct xfrm_selector *sel_tgt)
2557{
2558 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2559 if (sel_tgt->family == sel_cmp->family &&
2560 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002561 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002562 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2563 sel_cmp->family) == 0 &&
2564 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2565 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2566 return 1;
2567 }
2568 } else {
2569 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2570 return 1;
2571 }
2572 }
2573 return 0;
2574}
2575
2576static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2577 u8 dir, u8 type)
2578{
2579 struct xfrm_policy *pol, *ret = NULL;
2580 struct hlist_node *entry;
2581 struct hlist_head *chain;
2582 u32 priority = ~0U;
2583
2584 read_lock_bh(&xfrm_policy_lock);
2585 chain = policy_hash_direct(&sel->daddr, &sel->saddr, sel->family, dir);
2586 hlist_for_each_entry(pol, entry, chain, bydst) {
2587 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2588 pol->type == type) {
2589 ret = pol;
2590 priority = ret->priority;
2591 break;
2592 }
2593 }
2594 chain = &xfrm_policy_inexact[dir];
2595 hlist_for_each_entry(pol, entry, chain, bydst) {
2596 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2597 pol->type == type &&
2598 pol->priority < priority) {
2599 ret = pol;
2600 break;
2601 }
2602 }
2603
2604 if (ret)
2605 xfrm_pol_hold(ret);
2606
2607 read_unlock_bh(&xfrm_policy_lock);
2608
2609 return ret;
2610}
2611
2612static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2613{
2614 int match = 0;
2615
2616 if (t->mode == m->mode && t->id.proto == m->proto &&
2617 (m->reqid == 0 || t->reqid == m->reqid)) {
2618 switch (t->mode) {
2619 case XFRM_MODE_TUNNEL:
2620 case XFRM_MODE_BEET:
2621 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2622 m->old_family) == 0 &&
2623 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2624 m->old_family) == 0) {
2625 match = 1;
2626 }
2627 break;
2628 case XFRM_MODE_TRANSPORT:
2629 /* in case of transport mode, template does not store
2630 any IP addresses, hence we just compare mode and
2631 protocol */
2632 match = 1;
2633 break;
2634 default:
2635 break;
2636 }
2637 }
2638 return match;
2639}
2640
2641/* update endpoint address(es) of template(s) */
2642static int xfrm_policy_migrate(struct xfrm_policy *pol,
2643 struct xfrm_migrate *m, int num_migrate)
2644{
2645 struct xfrm_migrate *mp;
2646 struct dst_entry *dst;
2647 int i, j, n = 0;
2648
2649 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002650 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002651 /* target policy has been deleted */
2652 write_unlock_bh(&pol->lock);
2653 return -ENOENT;
2654 }
2655
2656 for (i = 0; i < pol->xfrm_nr; i++) {
2657 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2658 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2659 continue;
2660 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002661 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2662 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002663 continue;
2664 /* update endpoints */
2665 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2666 sizeof(pol->xfrm_vec[i].id.daddr));
2667 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2668 sizeof(pol->xfrm_vec[i].saddr));
2669 pol->xfrm_vec[i].encap_family = mp->new_family;
2670 /* flush bundles */
2671 while ((dst = pol->bundles) != NULL) {
2672 pol->bundles = dst->next;
2673 dst_free(dst);
2674 }
2675 }
2676 }
2677
2678 write_unlock_bh(&pol->lock);
2679
2680 if (!n)
2681 return -ENODATA;
2682
2683 return 0;
2684}
2685
2686static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2687{
2688 int i, j;
2689
2690 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2691 return -EINVAL;
2692
2693 for (i = 0; i < num_migrate; i++) {
2694 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2695 m[i].old_family) == 0) &&
2696 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2697 m[i].old_family) == 0))
2698 return -EINVAL;
2699 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2700 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2701 return -EINVAL;
2702
2703 /* check if there is any duplicated entry */
2704 for (j = i + 1; j < num_migrate; j++) {
2705 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2706 sizeof(m[i].old_daddr)) &&
2707 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2708 sizeof(m[i].old_saddr)) &&
2709 m[i].proto == m[j].proto &&
2710 m[i].mode == m[j].mode &&
2711 m[i].reqid == m[j].reqid &&
2712 m[i].old_family == m[j].old_family)
2713 return -EINVAL;
2714 }
2715 }
2716
2717 return 0;
2718}
2719
2720int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002721 struct xfrm_migrate *m, int num_migrate,
2722 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002723{
2724 int i, err, nx_cur = 0, nx_new = 0;
2725 struct xfrm_policy *pol = NULL;
2726 struct xfrm_state *x, *xc;
2727 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2728 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2729 struct xfrm_migrate *mp;
2730
2731 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2732 goto out;
2733
2734 /* Stage 1 - find policy */
2735 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2736 err = -ENOENT;
2737 goto out;
2738 }
2739
2740 /* Stage 2 - find and update state(s) */
2741 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2742 if ((x = xfrm_migrate_state_find(mp))) {
2743 x_cur[nx_cur] = x;
2744 nx_cur++;
2745 if ((xc = xfrm_state_migrate(x, mp))) {
2746 x_new[nx_new] = xc;
2747 nx_new++;
2748 } else {
2749 err = -ENODATA;
2750 goto restore_state;
2751 }
2752 }
2753 }
2754
2755 /* Stage 3 - update policy */
2756 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2757 goto restore_state;
2758
2759 /* Stage 4 - delete old state(s) */
2760 if (nx_cur) {
2761 xfrm_states_put(x_cur, nx_cur);
2762 xfrm_states_delete(x_cur, nx_cur);
2763 }
2764
2765 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002766 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002767
2768 xfrm_pol_put(pol);
2769
2770 return 0;
2771out:
2772 return err;
2773
2774restore_state:
2775 if (pol)
2776 xfrm_pol_put(pol);
2777 if (nx_cur)
2778 xfrm_states_put(x_cur, nx_cur);
2779 if (nx_new)
2780 xfrm_states_delete(x_new, nx_new);
2781
2782 return err;
2783}
David S. Millere610e672007-02-08 13:29:15 -08002784EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002785#endif