blob: 7c88a25c7af52e5ba5b329a32ee8aeac6a0a13ac [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
50static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
51
Christoph Lametere18b8902006-12-06 20:33:20 -080052static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
David S. Miller2518c7c2006-08-24 04:45:07 -070054static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
56
57static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
58static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080059static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Andrew Morton77681022006-11-08 22:46:26 -080061static inline int
62__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
63{
64 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
65 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
66 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
67 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
68 (fl->proto == sel->proto || !sel->proto) &&
69 (fl->oif == sel->ifindex || !sel->ifindex);
70}
71
72static inline int
73__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
74{
75 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
76 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
77 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
78 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
79 (fl->proto == sel->proto || !sel->proto) &&
80 (fl->oif == sel->ifindex || !sel->ifindex);
81}
82
83int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
84 unsigned short family)
85{
86 switch (family) {
87 case AF_INET:
88 return __xfrm4_selector_match(sel, fl);
89 case AF_INET6:
90 return __xfrm6_selector_match(sel, fl);
91 }
92 return 0;
93}
94
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090095static inline struct dst_entry *__xfrm_dst_lookup(int tos,
96 xfrm_address_t *saddr,
97 xfrm_address_t *daddr,
98 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800100 struct xfrm_policy_afinfo *afinfo;
101 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Herbert Xu25ee3282007-12-11 09:32:34 -0800103 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800105 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800107 dst = afinfo->dst_lookup(tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900110
111 return dst;
112}
113
114static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
115 xfrm_address_t *prev_saddr,
116 xfrm_address_t *prev_daddr,
117 int family)
118{
119 xfrm_address_t *saddr = &x->props.saddr;
120 xfrm_address_t *daddr = &x->id.daddr;
121 struct dst_entry *dst;
122
123 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
124 saddr = x->coaddr;
125 daddr = prev_daddr;
126 }
127 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
128 saddr = prev_saddr;
129 daddr = x->coaddr;
130 }
131
132 dst = __xfrm_dst_lookup(tos, saddr, daddr, family);
133
134 if (!IS_ERR(dst)) {
135 if (prev_saddr != saddr)
136 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
137 if (prev_daddr != daddr)
138 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
139 }
140
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800141 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static inline unsigned long make_jiffies(long secs)
145{
146 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
147 return MAX_SCHEDULE_TIMEOUT-1;
148 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900149 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152static void xfrm_policy_timer(unsigned long data)
153{
154 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800155 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 long next = LONG_MAX;
157 int warn = 0;
158 int dir;
159
160 read_lock(&xp->lock);
161
Herbert Xu12a169e2008-10-01 07:03:24 -0700162 if (xp->walk.dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 goto out;
164
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700165 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 if (xp->lft.hard_add_expires_seconds) {
168 long tmo = xp->lft.hard_add_expires_seconds +
169 xp->curlft.add_time - now;
170 if (tmo <= 0)
171 goto expired;
172 if (tmo < next)
173 next = tmo;
174 }
175 if (xp->lft.hard_use_expires_seconds) {
176 long tmo = xp->lft.hard_use_expires_seconds +
177 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
178 if (tmo <= 0)
179 goto expired;
180 if (tmo < next)
181 next = tmo;
182 }
183 if (xp->lft.soft_add_expires_seconds) {
184 long tmo = xp->lft.soft_add_expires_seconds +
185 xp->curlft.add_time - now;
186 if (tmo <= 0) {
187 warn = 1;
188 tmo = XFRM_KM_TIMEOUT;
189 }
190 if (tmo < next)
191 next = tmo;
192 }
193 if (xp->lft.soft_use_expires_seconds) {
194 long tmo = xp->lft.soft_use_expires_seconds +
195 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
196 if (tmo <= 0) {
197 warn = 1;
198 tmo = XFRM_KM_TIMEOUT;
199 }
200 if (tmo < next)
201 next = tmo;
202 }
203
204 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800205 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (next != LONG_MAX &&
207 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
208 xfrm_pol_hold(xp);
209
210out:
211 read_unlock(&xp->lock);
212 xfrm_pol_put(xp);
213 return;
214
215expired:
216 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700217 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800218 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 xfrm_pol_put(xp);
220}
221
222
223/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
224 * SPD calls.
225 */
226
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800227struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 struct xfrm_policy *policy;
230
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700231 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800234 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700235 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700236 INIT_HLIST_NODE(&policy->bydst);
237 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700239 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800240 setup_timer(&policy->timer, xfrm_policy_timer,
241 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243 return policy;
244}
245EXPORT_SYMBOL(xfrm_policy_alloc);
246
247/* Destroy xfrm_policy: descendant resources must be released to this moment. */
248
WANG Cong64c31b32008-01-07 22:34:29 -0800249void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Herbert Xu12a169e2008-10-01 07:03:24 -0700251 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Kris Katterjohn09a62662006-01-08 22:24:28 -0800253 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (del_timer(&policy->timer))
256 BUG();
257
Paul Moore03e1ad72008-04-12 19:07:52 -0700258 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 kfree(policy);
260}
WANG Cong64c31b32008-01-07 22:34:29 -0800261EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
264{
265 struct dst_entry *dst;
266
267 while ((dst = policy->bundles) != NULL) {
268 policy->bundles = dst->next;
269 dst_free(dst);
270 }
271
272 if (del_timer(&policy->timer))
273 atomic_dec(&policy->refcnt);
274
275 if (atomic_read(&policy->refcnt) > 1)
276 flow_cache_flush();
277
278 xfrm_pol_put(policy);
279}
280
David Howellsc4028952006-11-22 14:57:56 +0000281static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700284 struct hlist_node *entry, *tmp;
285 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700288 gc_list.first = xfrm_policy_gc_list.first;
289 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 spin_unlock_bh(&xfrm_policy_gc_lock);
291
David S. Miller2518c7c2006-08-24 04:45:07 -0700292 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
Alexey Dobriyanc9583962008-11-25 17:13:59 -0800295static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297/* Rule must be locked. Release descentant resources, announce
298 * entry dead. The rule must be unlinked from lists to the moment.
299 */
300
301static void xfrm_policy_kill(struct xfrm_policy *policy)
302{
303 int dead;
304
305 write_lock_bh(&policy->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700306 dead = policy->walk.dead;
307 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 write_unlock_bh(&policy->lock);
309
310 if (unlikely(dead)) {
311 WARN_ON(1);
312 return;
313 }
314
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800315 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700316 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800317 spin_unlock_bh(&xfrm_policy_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 schedule_work(&xfrm_policy_gc_work);
320}
321
David S. Miller2518c7c2006-08-24 04:45:07 -0700322static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
323
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800324static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700325{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800326 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700327}
328
Alexey Dobriyan11219942008-11-25 17:33:06 -0800329static struct hlist_head *policy_hash_bysel(struct net *net, struct xfrm_selector *sel, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700330{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800331 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700332 unsigned int hash = __sel_hash(sel, family, hmask);
333
334 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800335 &net->xfrm.policy_inexact[dir] :
336 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700337}
338
Alexey Dobriyan11219942008-11-25 17:33:06 -0800339static struct hlist_head *policy_hash_direct(struct net *net, xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700340{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800341 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700342 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
343
Alexey Dobriyan11219942008-11-25 17:33:06 -0800344 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700345}
346
David S. Miller2518c7c2006-08-24 04:45:07 -0700347static void xfrm_dst_hash_transfer(struct hlist_head *list,
348 struct hlist_head *ndsttable,
349 unsigned int nhashmask)
350{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800351 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700352 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800353 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700354
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800355redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700356 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
357 unsigned int h;
358
359 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
360 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800361 if (!entry0) {
362 hlist_del(entry);
363 hlist_add_head(&pol->bydst, ndsttable+h);
364 h0 = h;
365 } else {
366 if (h != h0)
367 continue;
368 hlist_del(entry);
369 hlist_add_after(entry0, &pol->bydst);
370 }
371 entry0 = entry;
372 }
373 if (!hlist_empty(list)) {
374 entry0 = NULL;
375 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700376 }
377}
378
379static void xfrm_idx_hash_transfer(struct hlist_head *list,
380 struct hlist_head *nidxtable,
381 unsigned int nhashmask)
382{
383 struct hlist_node *entry, *tmp;
384 struct xfrm_policy *pol;
385
386 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
387 unsigned int h;
388
389 h = __idx_hash(pol->index, nhashmask);
390 hlist_add_head(&pol->byidx, nidxtable+h);
391 }
392}
393
394static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
395{
396 return ((old_hmask + 1) << 1) - 1;
397}
398
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800399static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700400{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800401 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700402 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
403 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800404 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700405 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700406 int i;
407
408 if (!ndst)
409 return;
410
411 write_lock_bh(&xfrm_policy_lock);
412
413 for (i = hmask; i >= 0; i--)
414 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
415
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800416 net->xfrm.policy_bydst[dir].table = ndst;
417 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700418
419 write_unlock_bh(&xfrm_policy_lock);
420
David S. Miller44e36b42006-08-24 04:50:50 -0700421 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700422}
423
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800424static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700425{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800426 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700427 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
428 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800429 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700430 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700431 int i;
432
433 if (!nidx)
434 return;
435
436 write_lock_bh(&xfrm_policy_lock);
437
438 for (i = hmask; i >= 0; i--)
439 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
440
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800441 net->xfrm.policy_byidx = nidx;
442 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700443
444 write_unlock_bh(&xfrm_policy_lock);
445
David S. Miller44e36b42006-08-24 04:50:50 -0700446 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700447}
448
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800449static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700450{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800451 unsigned int cnt = net->xfrm.policy_count[dir];
452 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700453
454 if (total)
455 *total += cnt;
456
457 if ((hmask + 1) < xfrm_policy_hashmax &&
458 cnt > hmask)
459 return 1;
460
461 return 0;
462}
463
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800464static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700465{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800466 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700467
468 if ((hmask + 1) < xfrm_policy_hashmax &&
469 total > hmask)
470 return 1;
471
472 return 0;
473}
474
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700475void xfrm_spd_getinfo(struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700476{
477 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800478 si->incnt = init_net.xfrm.policy_count[XFRM_POLICY_IN];
479 si->outcnt = init_net.xfrm.policy_count[XFRM_POLICY_OUT];
480 si->fwdcnt = init_net.xfrm.policy_count[XFRM_POLICY_FWD];
481 si->inscnt = init_net.xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
482 si->outscnt = init_net.xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
483 si->fwdscnt = init_net.xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
Alexey Dobriyan8100bea2008-11-25 17:22:58 -0800484 si->spdhcnt = init_net.xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700485 si->spdhmcnt = xfrm_policy_hashmax;
486 read_unlock_bh(&xfrm_policy_lock);
487}
488EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700489
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700490static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800491static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700492{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800493 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700494 int dir, total;
495
496 mutex_lock(&hash_resize_mutex);
497
498 total = 0;
499 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800500 if (xfrm_bydst_should_resize(net, dir, &total))
501 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700502 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800503 if (xfrm_byidx_should_resize(net, total))
504 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700505
506 mutex_unlock(&hash_resize_mutex);
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/* Generate new index... KAME seems to generate them ordered by cost
510 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800511static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 static u32 idx_generator;
514
515 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700516 struct hlist_node *entry;
517 struct hlist_head *list;
518 struct xfrm_policy *p;
519 u32 idx;
520 int found;
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 idx = (idx_generator | dir);
523 idx_generator += 8;
524 if (idx == 0)
525 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800526 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700527 found = 0;
528 hlist_for_each_entry(p, entry, list, byidx) {
529 if (p->index == idx) {
530 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700534 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return idx;
536 }
537}
538
David S. Miller2518c7c2006-08-24 04:45:07 -0700539static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
540{
541 u32 *p1 = (u32 *) s1;
542 u32 *p2 = (u32 *) s2;
543 int len = sizeof(struct xfrm_selector) / sizeof(u32);
544 int i;
545
546 for (i = 0; i < len; i++) {
547 if (p1[i] != p2[i])
548 return 1;
549 }
550
551 return 0;
552}
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
555{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800556 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700557 struct xfrm_policy *pol;
558 struct xfrm_policy *delpol;
559 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800560 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800561 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800564 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700565 delpol = NULL;
566 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700567 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800568 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700569 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800570 xfrm_sec_ctx_match(pol->security, policy->security) &&
571 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (excl) {
573 write_unlock_bh(&xfrm_policy_lock);
574 return -EEXIST;
575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 delpol = pol;
577 if (policy->priority > pol->priority)
578 continue;
579 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800580 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 continue;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (delpol)
584 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700587 hlist_add_after(newpos, &policy->bydst);
588 else
589 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800591 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700593 if (delpol) {
594 hlist_del(&delpol->bydst);
595 hlist_del(&delpol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700596 list_del(&delpol->walk.all);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800597 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700598 }
Alexey Dobriyan11219942008-11-25 17:33:06 -0800599 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
600 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800601 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 policy->curlft.use_time = 0;
603 if (!mod_timer(&policy->timer, jiffies + HZ))
604 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800605 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 write_unlock_bh(&xfrm_policy_lock);
607
David S. Miller9b78a822005-12-22 07:39:48 -0800608 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800610 else if (xfrm_bydst_should_resize(net, dir, NULL))
611 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800612
613 read_lock_bh(&xfrm_policy_lock);
614 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700615 entry = &policy->bydst;
616 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800617 struct dst_entry *dst;
618
619 write_lock(&policy->lock);
620 dst = policy->bundles;
621 if (dst) {
622 struct dst_entry *tail = dst;
623 while (tail->next)
624 tail = tail->next;
625 tail->next = gc_list;
626 gc_list = dst;
627
628 policy->bundles = NULL;
629 }
630 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
David S. Miller9b78a822005-12-22 07:39:48 -0800632 read_unlock_bh(&xfrm_policy_lock);
633
634 while (gc_list) {
635 struct dst_entry *dst = gc_list;
636
637 gc_list = dst->next;
638 dst_free(dst);
639 }
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return 0;
642}
643EXPORT_SYMBOL(xfrm_policy_insert);
644
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800645struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u8 type, int dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700646 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800647 struct xfrm_sec_ctx *ctx, int delete,
648 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
David S. Miller2518c7c2006-08-24 04:45:07 -0700650 struct xfrm_policy *pol, *ret;
651 struct hlist_head *chain;
652 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Eric Parisef41aaa2007-03-07 15:37:58 -0800654 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800656 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700657 ret = NULL;
658 hlist_for_each_entry(pol, entry, chain, bydst) {
659 if (pol->type == type &&
660 !selector_cmp(sel, &pol->selector) &&
661 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700663 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700664 *err = security_xfrm_policy_delete(
665 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800666 if (*err) {
667 write_unlock_bh(&xfrm_policy_lock);
668 return pol;
669 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700670 hlist_del(&pol->bydst);
671 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700672 list_del(&pol->walk.all);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800673 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700674 }
675 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 break;
677 }
678 }
679 write_unlock_bh(&xfrm_policy_lock);
680
David S. Miller2518c7c2006-08-24 04:45:07 -0700681 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700683 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700685 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
Trent Jaegerdf718372005-12-13 23:12:27 -0800687EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800689struct xfrm_policy *xfrm_policy_byid(struct net *net, u8 type, int dir, u32 id,
690 int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
David S. Miller2518c7c2006-08-24 04:45:07 -0700692 struct xfrm_policy *pol, *ret;
693 struct hlist_head *chain;
694 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Herbert Xub5505c62007-05-14 02:15:47 -0700696 *err = -ENOENT;
697 if (xfrm_policy_id2dir(id) != dir)
698 return NULL;
699
Eric Parisef41aaa2007-03-07 15:37:58 -0800700 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800702 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700703 ret = NULL;
704 hlist_for_each_entry(pol, entry, chain, byidx) {
705 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700707 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700708 *err = security_xfrm_policy_delete(
709 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800710 if (*err) {
711 write_unlock_bh(&xfrm_policy_lock);
712 return pol;
713 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700714 hlist_del(&pol->bydst);
715 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700716 list_del(&pol->walk.all);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800717 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700718 }
719 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 break;
721 }
722 }
723 write_unlock_bh(&xfrm_policy_lock);
724
David S. Miller2518c7c2006-08-24 04:45:07 -0700725 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700727 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700729 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731EXPORT_SYMBOL(xfrm_policy_byid);
732
Joy Latten4aa2e622007-06-04 19:05:57 -0400733#ifdef CONFIG_SECURITY_NETWORK_XFRM
734static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800735xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Joy Latten4aa2e622007-06-04 19:05:57 -0400737 int dir, err = 0;
738
739 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
740 struct xfrm_policy *pol;
741 struct hlist_node *entry;
742 int i;
743
744 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800745 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400746 if (pol->type != type)
747 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700748 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400749 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700750 xfrm_audit_policy_delete(pol, 0,
751 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400752 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700753 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400754 return err;
755 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900756 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800757 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400758 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800759 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400760 bydst) {
761 if (pol->type != type)
762 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700763 err = security_xfrm_policy_delete(
764 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400765 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700766 xfrm_audit_policy_delete(pol, 0,
767 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400768 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700769 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400770 return err;
771 }
772 }
773 }
774 }
775 return err;
776}
777#else
778static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800779xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400780{
781 return 0;
782}
783#endif
784
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800785int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400786{
787 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400790
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800791 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400792 if (err)
793 goto out;
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700796 struct xfrm_policy *pol;
797 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700798 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700799
David S. Millerae8c0572006-10-03 16:00:26 -0700800 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700801 again1:
802 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800803 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700804 if (pol->type != type)
805 continue;
806 hlist_del(&pol->bydst);
807 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 write_unlock_bh(&xfrm_policy_lock);
809
Joy Lattenab5f5e82007-09-17 11:51:22 -0700810 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400811 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700812 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600813
David S. Miller2518c7c2006-08-24 04:45:07 -0700814 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700815 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700818 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700820
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800821 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700822 again2:
823 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800824 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700825 bydst) {
826 if (pol->type != type)
827 continue;
828 hlist_del(&pol->bydst);
829 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700830 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700831 write_unlock_bh(&xfrm_policy_lock);
832
Joy Lattenab5f5e82007-09-17 11:51:22 -0700833 xfrm_audit_policy_delete(pol, 1,
834 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400835 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700836 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700837 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700838 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700839
840 write_lock_bh(&xfrm_policy_lock);
841 goto again2;
842 }
843 }
844
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800845 net->xfrm.policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400848out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400850 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852EXPORT_SYMBOL(xfrm_policy_flush);
853
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800854int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800855 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 void *data)
857{
Herbert Xu12a169e2008-10-01 07:03:24 -0700858 struct xfrm_policy *pol;
859 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800860 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Timo Teras4c563f72008-02-28 21:31:08 -0800862 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
863 walk->type != XFRM_POLICY_TYPE_ANY)
864 return -EINVAL;
865
Herbert Xu12a169e2008-10-01 07:03:24 -0700866 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800867 return 0;
868
Herbert Xu12a169e2008-10-01 07:03:24 -0700869 write_lock_bh(&xfrm_policy_lock);
870 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800871 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700872 else
873 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800874 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700875 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800876 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700877 pol = container_of(x, struct xfrm_policy, walk);
878 if (walk->type != XFRM_POLICY_TYPE_ANY &&
879 walk->type != pol->type)
880 continue;
881 error = func(pol, xfrm_policy_id2dir(pol->index),
882 walk->seq, data);
883 if (error) {
884 list_move_tail(&walk->walk.all, &x->all);
885 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800886 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700887 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700889 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800890 error = -ENOENT;
891 goto out;
892 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700893 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700895 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return error;
897}
898EXPORT_SYMBOL(xfrm_policy_walk);
899
Herbert Xu12a169e2008-10-01 07:03:24 -0700900void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
901{
902 INIT_LIST_HEAD(&walk->walk.all);
903 walk->walk.dead = 1;
904 walk->type = type;
905 walk->seq = 0;
906}
907EXPORT_SYMBOL(xfrm_policy_walk_init);
908
909void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
910{
911 if (list_empty(&walk->walk.all))
912 return;
913
914 write_lock_bh(&xfrm_policy_lock);
915 list_del(&walk->walk.all);
916 write_unlock_bh(&xfrm_policy_lock);
917}
918EXPORT_SYMBOL(xfrm_policy_walk_done);
919
James Morris134b0fc2006-10-05 15:42:27 -0500920/*
921 * Find policy to apply to this flow.
922 *
923 * Returns 0 if policy found, else an -errno.
924 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700925static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
926 u8 type, u16 family, int dir)
927{
928 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500929 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700930
931 if (pol->family != family ||
932 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500933 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700934
935 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500936 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700937 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
938 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700939
James Morris134b0fc2006-10-05 15:42:27 -0500940 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700941}
942
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800943static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
944 struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700945 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
James Morris134b0fc2006-10-05 15:42:27 -0500947 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700948 struct xfrm_policy *pol, *ret;
949 xfrm_address_t *daddr, *saddr;
950 struct hlist_node *entry;
951 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700952 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700953
954 daddr = xfrm_flowi_daddr(fl, family);
955 saddr = xfrm_flowi_saddr(fl, family);
956 if (unlikely(!daddr || !saddr))
957 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800960 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700961 ret = NULL;
962 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500963 err = xfrm_policy_match(pol, fl, type, family, dir);
964 if (err) {
965 if (err == -ESRCH)
966 continue;
967 else {
968 ret = ERR_PTR(err);
969 goto fail;
970 }
971 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700972 ret = pol;
973 priority = ret->priority;
974 break;
975 }
976 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800977 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700978 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500979 err = xfrm_policy_match(pol, fl, type, family, dir);
980 if (err) {
981 if (err == -ESRCH)
982 continue;
983 else {
984 ret = ERR_PTR(err);
985 goto fail;
986 }
987 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700988 ret = pol;
989 break;
990 }
991 }
David S. Milleracba48e2006-08-25 15:46:46 -0700992 if (ret)
993 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500994fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700996
David S. Miller2518c7c2006-08-24 04:45:07 -0700997 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700998}
999
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001000static int xfrm_policy_lookup(struct net *net, struct flowi *fl, u16 family,
1001 u8 dir, void **objp, atomic_t **obj_refp)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001002{
1003 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -05001004 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001005
1006#ifdef CONFIG_XFRM_SUB_POLICY
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001007 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001008 if (IS_ERR(pol)) {
1009 err = PTR_ERR(pol);
1010 pol = NULL;
1011 }
1012 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001013 goto end;
1014#endif
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001015 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001016 if (IS_ERR(pol)) {
1017 err = PTR_ERR(pol);
1018 pol = NULL;
1019 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001020#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001021end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if ((*objp = (void *) pol) != NULL)
1024 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001025 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Trent Jaegerdf718372005-12-13 23:12:27 -08001028static inline int policy_to_flow_dir(int dir)
1029{
1030 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001031 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1032 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1033 return dir;
1034 switch (dir) {
1035 default:
1036 case XFRM_POLICY_IN:
1037 return FLOW_DIR_IN;
1038 case XFRM_POLICY_OUT:
1039 return FLOW_DIR_OUT;
1040 case XFRM_POLICY_FWD:
1041 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001042 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001043}
1044
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001045static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 struct xfrm_policy *pol;
1048
1049 read_lock_bh(&xfrm_policy_lock);
1050 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001051 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001053 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001054
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001055 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001056 err = security_xfrm_policy_lookup(pol->security,
1057 fl->secid,
1058 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001059 if (!err)
1060 xfrm_pol_hold(pol);
1061 else if (err == -ESRCH)
1062 pol = NULL;
1063 else
1064 pol = ERR_PTR(err);
1065 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 pol = NULL;
1067 }
1068 read_unlock_bh(&xfrm_policy_lock);
1069 return pol;
1070}
1071
1072static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1073{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001074 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001075 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001076 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001077
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001078 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001079 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001080 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001081 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001083
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001084 if (xfrm_bydst_should_resize(net, dir, NULL))
1085 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
1088static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1089 int dir)
1090{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001091 struct net *net = xp_net(pol);
1092
David S. Miller2518c7c2006-08-24 04:45:07 -07001093 if (hlist_unhashed(&pol->bydst))
1094 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
David S. Miller2518c7c2006-08-24 04:45:07 -07001096 hlist_del(&pol->bydst);
1097 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001098 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001099 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001100
1101 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
Herbert Xu4666faa2005-06-18 22:43:22 -07001104int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
1106 write_lock_bh(&xfrm_policy_lock);
1107 pol = __xfrm_policy_unlink(pol, dir);
1108 write_unlock_bh(&xfrm_policy_lock);
1109 if (pol) {
1110 if (dir < XFRM_POLICY_MAX)
1111 atomic_inc(&flow_cache_genid);
1112 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001115 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
David S. Millera70fcb02006-03-20 19:18:52 -08001117EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1120{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001121 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 struct xfrm_policy *old_pol;
1123
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001124#ifdef CONFIG_XFRM_SUB_POLICY
1125 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1126 return -EINVAL;
1127#endif
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 write_lock_bh(&xfrm_policy_lock);
1130 old_pol = sk->sk_policy[dir];
1131 sk->sk_policy[dir] = pol;
1132 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001133 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001134 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1136 }
1137 if (old_pol)
1138 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1139 write_unlock_bh(&xfrm_policy_lock);
1140
1141 if (old_pol) {
1142 xfrm_policy_kill(old_pol);
1143 }
1144 return 0;
1145}
1146
1147static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1148{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001149 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 if (newp) {
1152 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001153 if (security_xfrm_policy_clone(old->security,
1154 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001155 kfree(newp);
1156 return NULL; /* ENOMEM */
1157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 newp->lft = old->lft;
1159 newp->curlft = old->curlft;
1160 newp->action = old->action;
1161 newp->flags = old->flags;
1162 newp->xfrm_nr = old->xfrm_nr;
1163 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001164 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 memcpy(newp->xfrm_vec, old->xfrm_vec,
1166 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1167 write_lock_bh(&xfrm_policy_lock);
1168 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1169 write_unlock_bh(&xfrm_policy_lock);
1170 xfrm_pol_put(newp);
1171 }
1172 return newp;
1173}
1174
1175int __xfrm_sk_clone_policy(struct sock *sk)
1176{
1177 struct xfrm_policy *p0 = sk->sk_policy[0],
1178 *p1 = sk->sk_policy[1];
1179
1180 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1181 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1182 return -ENOMEM;
1183 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1184 return -ENOMEM;
1185 return 0;
1186}
1187
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001188static int
1189xfrm_get_saddr(xfrm_address_t *local, xfrm_address_t *remote,
1190 unsigned short family)
1191{
1192 int err;
1193 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1194
1195 if (unlikely(afinfo == NULL))
1196 return -EINVAL;
1197 err = afinfo->get_saddr(local, remote);
1198 xfrm_policy_put_afinfo(afinfo);
1199 return err;
1200}
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202/* Resolve list of templates for the flow, given policy. */
1203
1204static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001205xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1206 struct xfrm_state **xfrm,
1207 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 int nx;
1210 int i, error;
1211 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1212 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001213 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1216 struct xfrm_state *x;
1217 xfrm_address_t *remote = daddr;
1218 xfrm_address_t *local = saddr;
1219 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1220
Joakim Koskela48b8d782007-07-26 00:08:42 -07001221 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1222 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 remote = &tmpl->id.daddr;
1224 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001225 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001226 if (xfrm_addr_any(local, family)) {
1227 error = xfrm_get_saddr(&tmp, remote, family);
1228 if (error)
1229 goto fail;
1230 local = &tmp;
1231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233
1234 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1235
1236 if (x && x->km.state == XFRM_STATE_VALID) {
1237 xfrm[nx++] = x;
1238 daddr = remote;
1239 saddr = local;
1240 continue;
1241 }
1242 if (x) {
1243 error = (x->km.state == XFRM_STATE_ERROR ?
1244 -EINVAL : -EAGAIN);
1245 xfrm_state_put(x);
1246 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001247 else if (error == -ESRCH)
1248 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 if (!tmpl->optional)
1251 goto fail;
1252 }
1253 return nx;
1254
1255fail:
1256 for (nx--; nx>=0; nx--)
1257 xfrm_state_put(xfrm[nx]);
1258 return error;
1259}
1260
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001261static int
1262xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1263 struct xfrm_state **xfrm,
1264 unsigned short family)
1265{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001266 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1267 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001268 int cnx = 0;
1269 int error;
1270 int ret;
1271 int i;
1272
1273 for (i = 0; i < npols; i++) {
1274 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1275 error = -ENOBUFS;
1276 goto fail;
1277 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001278
1279 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001280 if (ret < 0) {
1281 error = ret;
1282 goto fail;
1283 } else
1284 cnx += ret;
1285 }
1286
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001287 /* found states are sorted for outbound processing */
1288 if (npols > 1)
1289 xfrm_state_sort(xfrm, tpp, cnx, family);
1290
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001291 return cnx;
1292
1293 fail:
1294 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001295 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001296 return error;
1297
1298}
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300/* Check that the bundle accepts the flow and its components are
1301 * still valid.
1302 */
1303
1304static struct dst_entry *
1305xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1306{
1307 struct dst_entry *x;
1308 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1309 if (unlikely(afinfo == NULL))
1310 return ERR_PTR(-EINVAL);
1311 x = afinfo->find_bundle(fl, policy);
1312 xfrm_policy_put_afinfo(afinfo);
1313 return x;
1314}
1315
Herbert Xu25ee3282007-12-11 09:32:34 -08001316static inline int xfrm_get_tos(struct flowi *fl, int family)
1317{
1318 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1319 int tos;
1320
1321 if (!afinfo)
1322 return -EINVAL;
1323
1324 tos = afinfo->get_tos(fl);
1325
1326 xfrm_policy_put_afinfo(afinfo);
1327
1328 return tos;
1329}
1330
1331static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1332{
1333 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1334 struct xfrm_dst *xdst;
1335
1336 if (!afinfo)
1337 return ERR_PTR(-EINVAL);
1338
1339 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1340
1341 xfrm_policy_put_afinfo(afinfo);
1342
1343 return xdst;
1344}
1345
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001346static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1347 int nfheader_len)
1348{
1349 struct xfrm_policy_afinfo *afinfo =
1350 xfrm_policy_get_afinfo(dst->ops->family);
1351 int err;
1352
1353 if (!afinfo)
1354 return -EINVAL;
1355
1356 err = afinfo->init_path(path, dst, nfheader_len);
1357
1358 xfrm_policy_put_afinfo(afinfo);
1359
1360 return err;
1361}
1362
Herbert Xu25ee3282007-12-11 09:32:34 -08001363static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1364{
1365 struct xfrm_policy_afinfo *afinfo =
1366 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1367 int err;
1368
1369 if (!afinfo)
1370 return -EINVAL;
1371
1372 err = afinfo->fill_dst(xdst, dev);
1373
1374 xfrm_policy_put_afinfo(afinfo);
1375
1376 return err;
1377}
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1380 * all the metrics... Shortly, bundle a bundle.
1381 */
1382
Herbert Xu25ee3282007-12-11 09:32:34 -08001383static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1384 struct xfrm_state **xfrm, int nx,
1385 struct flowi *fl,
1386 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Herbert Xu25ee3282007-12-11 09:32:34 -08001388 unsigned long now = jiffies;
1389 struct net_device *dev;
1390 struct dst_entry *dst_prev = NULL;
1391 struct dst_entry *dst0 = NULL;
1392 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001394 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001395 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001396 int trailer_len = 0;
1397 int tos;
1398 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001399 xfrm_address_t saddr, daddr;
1400
1401 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001402
1403 tos = xfrm_get_tos(fl, family);
1404 err = tos;
1405 if (tos < 0)
1406 goto put_states;
1407
1408 dst_hold(dst);
1409
1410 for (; i < nx; i++) {
1411 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1412 struct dst_entry *dst1 = &xdst->u.dst;
1413
1414 err = PTR_ERR(xdst);
1415 if (IS_ERR(xdst)) {
1416 dst_release(dst);
1417 goto put_states;
1418 }
1419
1420 if (!dst_prev)
1421 dst0 = dst1;
1422 else {
1423 dst_prev->child = dst_clone(dst1);
1424 dst1->flags |= DST_NOHASH;
1425 }
1426
1427 xdst->route = dst;
1428 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1429
1430 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1431 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001432 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1433 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001434 err = PTR_ERR(dst);
1435 if (IS_ERR(dst))
1436 goto put_states;
1437 } else
1438 dst_hold(dst);
1439
1440 dst1->xfrm = xfrm[i];
1441 xdst->genid = xfrm[i]->genid;
1442
1443 dst1->obsolete = -1;
1444 dst1->flags |= DST_HOST;
1445 dst1->lastuse = now;
1446
1447 dst1->input = dst_discard;
1448 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1449
1450 dst1->next = dst_prev;
1451 dst_prev = dst1;
1452
1453 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001454 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1455 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001456 trailer_len += xfrm[i]->props.trailer_len;
1457 }
1458
1459 dst_prev->child = dst;
1460 dst0->path = dst;
1461
1462 err = -ENODEV;
1463 dev = dst->dev;
1464 if (!dev)
1465 goto free_dst;
1466
1467 /* Copy neighbout for reachability confirmation */
1468 dst0->neighbour = neigh_clone(dst->neighbour);
1469
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001470 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001471 xfrm_init_pmtu(dst_prev);
1472
1473 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1474 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1475
1476 err = xfrm_fill_dst(xdst, dev);
1477 if (err)
1478 goto free_dst;
1479
1480 dst_prev->header_len = header_len;
1481 dst_prev->trailer_len = trailer_len;
1482 header_len -= xdst->u.dst.xfrm->props.header_len;
1483 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1484 }
1485
1486out:
1487 return dst0;
1488
1489put_states:
1490 for (; i < nx; i++)
1491 xfrm_state_put(xfrm[i]);
1492free_dst:
1493 if (dst0)
1494 dst_free(dst0);
1495 dst0 = ERR_PTR(err);
1496 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001499static int inline
1500xfrm_dst_alloc_copy(void **target, void *src, int size)
1501{
1502 if (!*target) {
1503 *target = kmalloc(size, GFP_ATOMIC);
1504 if (!*target)
1505 return -ENOMEM;
1506 }
1507 memcpy(*target, src, size);
1508 return 0;
1509}
1510
1511static int inline
1512xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1513{
1514#ifdef CONFIG_XFRM_SUB_POLICY
1515 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1516 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1517 sel, sizeof(*sel));
1518#else
1519 return 0;
1520#endif
1521}
1522
1523static int inline
1524xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1525{
1526#ifdef CONFIG_XFRM_SUB_POLICY
1527 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1528 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1529#else
1530 return 0;
1531#endif
1532}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534static int stale_bundle(struct dst_entry *dst);
1535
1536/* Main function: finds/creates a bundle for given flow.
1537 *
1538 * At the moment we eat a raw IP route. Mostly to speed up lookups
1539 * on interfaces with disabled IPsec.
1540 */
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001541int __xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001542 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001545 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1546 int npols;
1547 int pol_dead;
1548 int xfrm_nr;
1549 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1551 struct dst_entry *dst, *dst_orig = *dst_p;
1552 int nx = 0;
1553 int err;
1554 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001555 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001556 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558restart:
1559 genid = atomic_read(&flow_cache_genid);
1560 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001561 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1562 pols[pi] = NULL;
1563 npols = 0;
1564 pol_dead = 0;
1565 xfrm_nr = 0;
1566
Thomas Graff7944fb2007-08-25 13:46:55 -07001567 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001568 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001569 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001570 if (IS_ERR(policy)) {
1571 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001572 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001573 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 if (!policy) {
1577 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001578 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001579 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001580 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001582 policy = flow_cache_lookup(net, fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001583 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001584 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001585 if (IS_ERR(policy)) {
1586 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001587 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
1590
1591 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001592 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001594 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001595 pols[0] = policy;
1596 npols ++;
1597 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Herbert Xuaef21782007-12-13 09:30:59 -08001599 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001600 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1601 goto error;
1602
1603 policy->curlft.use_time = get_seconds();
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001606 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 case XFRM_POLICY_BLOCK:
1608 /* Prohibit the flow */
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001609 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye1044112005-09-08 15:11:55 -07001610 err = -EPERM;
1611 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001614#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (policy->xfrm_nr == 0) {
1616 /* Flow passes not transformed. */
1617 xfrm_pol_put(policy);
1618 return 0;
1619 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622 /* Try to find matching bundle.
1623 *
1624 * LATER: help from flow cache. It is optional, this
1625 * is required only for output policy.
1626 */
1627 dst = xfrm_find_bundle(fl, policy, family);
1628 if (IS_ERR(dst)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001629 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye1044112005-09-08 15:11:55 -07001630 err = PTR_ERR(dst);
1631 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
1633
1634 if (dst)
1635 break;
1636
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001637#ifdef CONFIG_XFRM_SUB_POLICY
1638 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001639 pols[1] = xfrm_policy_lookup_bytype(net,
1640 XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001641 fl, family,
1642 XFRM_POLICY_OUT);
1643 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001644 if (IS_ERR(pols[1])) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001645 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001646 err = PTR_ERR(pols[1]);
1647 goto error;
1648 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001649 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001650 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001651 err = -EPERM;
1652 goto error;
1653 }
1654 npols ++;
1655 xfrm_nr += pols[1]->xfrm_nr;
1656 }
1657 }
1658
1659 /*
1660 * Because neither flowi nor bundle information knows about
1661 * transformation template size. On more than one policy usage
1662 * we can realize whether all of them is bypass or not after
1663 * they are searched. See above not-transformed bypass
1664 * is surrounded by non-sub policy configuration, too.
1665 */
1666 if (xfrm_nr == 0) {
1667 /* Flow passes not transformed. */
1668 xfrm_pols_put(pols, npols);
1669 return 0;
1670 }
1671
1672#endif
1673 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 if (unlikely(nx<0)) {
1676 err = nx;
David S. Miller14e50e52007-05-24 18:17:54 -07001677 if (err == -EAGAIN && sysctl_xfrm_larval_drop) {
1678 /* EREMOTE tells the caller to generate
1679 * a one-shot blackhole route.
1680 */
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001681 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001682 xfrm_pol_put(policy);
1683 return -EREMOTE;
1684 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001685 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 DECLARE_WAITQUEUE(wait, current);
1687
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001688 add_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 set_current_state(TASK_INTERRUPTIBLE);
1690 schedule();
1691 set_current_state(TASK_RUNNING);
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001692 remove_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001694 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 if (nx == -EAGAIN && signal_pending(current)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001697 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 err = -ERESTART;
1699 goto error;
1700 }
1701 if (nx == -EAGAIN ||
1702 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001703 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 goto restart;
1705 }
1706 err = nx;
1707 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001708 if (err < 0) {
1709 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 }
1713 if (nx == 0) {
1714 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001715 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return 0;
1717 }
1718
Herbert Xu25ee3282007-12-11 09:32:34 -08001719 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1720 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001721 if (IS_ERR(dst)) {
1722 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001726 for (pi = 0; pi < npols; pi++) {
1727 read_lock_bh(&pols[pi]->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001728 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001729 read_unlock_bh(&pols[pi]->lock);
1730 }
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001733 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /* Wow! While we worked on resolving, this
1735 * policy has gone. Retry. It is not paranoia,
1736 * we just cannot enlist new bundle to dead object.
1737 * We can't enlist stable bundles either.
1738 */
1739 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001740 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001741
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001742 if (pol_dead)
1743 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD);
1744 else
1745 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001746 err = -EHOSTUNREACH;
1747 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001749
1750 if (npols > 1)
1751 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1752 else
1753 err = xfrm_dst_update_origin(dst, fl);
1754 if (unlikely(err)) {
1755 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001756 dst_free(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001757 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001758 goto error;
1759 }
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 dst->next = policy->bundles;
1762 policy->bundles = dst;
1763 dst_hold(dst);
1764 write_unlock_bh(&policy->lock);
1765 }
1766 *dst_p = dst;
1767 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001768 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return 0;
1770
1771error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001772 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001773dropdst:
1774 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 *dst_p = NULL;
1776 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001777
1778nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001779 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001780 if (flags & XFRM_LOOKUP_ICMP)
1781 goto dropdst;
1782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
David S. Miller14e50e52007-05-24 18:17:54 -07001784EXPORT_SYMBOL(__xfrm_lookup);
1785
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001786int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001787 struct sock *sk, int flags)
1788{
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001789 int err = __xfrm_lookup(net, dst_p, fl, sk, flags);
David S. Miller14e50e52007-05-24 18:17:54 -07001790
1791 if (err == -EREMOTE) {
1792 dst_release(*dst_p);
1793 *dst_p = NULL;
1794 err = -EAGAIN;
1795 }
1796
1797 return err;
1798}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799EXPORT_SYMBOL(xfrm_lookup);
1800
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001801static inline int
1802xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1803{
1804 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001805
1806 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1807 return 0;
1808 x = skb->sp->xvec[idx];
1809 if (!x->type->reject)
1810 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001811 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001812}
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814/* When skb is transformed back to its "native" form, we have to
1815 * check policy restrictions. At the moment we make this in maximally
1816 * stupid way. Shame on me. :-) Of course, connected sockets must
1817 * have policy cached at them.
1818 */
1819
1820static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001821xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 unsigned short family)
1823{
1824 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001825 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return x->id.proto == tmpl->id.proto &&
1827 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1828 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1829 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001830 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001831 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001832 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1833 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001836/*
1837 * 0 or more than 0 is returned when validation is succeeded (either bypass
1838 * because of optional transport mode, or next index of the mathced secpath
1839 * state with the template.
1840 * -1 is returned when no matching template is found.
1841 * Otherwise "-2 - errored_index" is returned.
1842 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843static inline int
1844xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1845 unsigned short family)
1846{
1847 int idx = start;
1848
1849 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001850 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return start;
1852 } else
1853 start = -1;
1854 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001855 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001857 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1858 if (start == -1)
1859 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863 return start;
1864}
1865
Herbert Xud5422ef2007-12-12 10:44:16 -08001866int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1867 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
1869 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001870 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 if (unlikely(afinfo == NULL))
1873 return -EAFNOSUPPORT;
1874
Herbert Xud5422ef2007-12-12 10:44:16 -08001875 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001876 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001878 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
Herbert Xud5422ef2007-12-12 10:44:16 -08001880EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001882static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
1884 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001885 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001886 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 }
1890
1891 return 0;
1892}
1893
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001894int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 unsigned short family)
1896{
1897 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001898 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1899 int npols = 0;
1900 int xfrm_nr;
1901 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001902 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001904 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001905 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Herbert Xud5422ef2007-12-12 10:44:16 -08001907 reverse = dir & ~XFRM_POLICY_MASK;
1908 dir &= XFRM_POLICY_MASK;
1909 fl_dir = policy_to_flow_dir(dir);
1910
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001911 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
1912 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001914 }
1915
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001916 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 /* First, check used SA against their selectors. */
1919 if (skb->sp) {
1920 int i;
1921
1922 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001923 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001924 if (!xfrm_selector_match(&x->sel, &fl, family)) {
1925 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
1929 }
1930
1931 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001932 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001933 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001934 if (IS_ERR(pol)) {
1935 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001936 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001937 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 if (!pol)
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001941 pol = flow_cache_lookup(&init_net, &fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 xfrm_policy_lookup);
1943
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001944 if (IS_ERR(pol)) {
1945 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001946 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001947 }
James Morris134b0fc2006-10-05 15:42:27 -05001948
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001949 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001950 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001951 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001952 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001953 return 0;
1954 }
1955 return 1;
1956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
James Morris9d729f72007-03-04 16:12:44 -08001958 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001960 pols[0] = pol;
1961 npols ++;
1962#ifdef CONFIG_XFRM_SUB_POLICY
1963 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001964 pols[1] = xfrm_policy_lookup_bytype(&init_net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001965 &fl, family,
1966 XFRM_POLICY_IN);
1967 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001968 if (IS_ERR(pols[1])) {
1969 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001970 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001971 }
James Morris9d729f72007-03-04 16:12:44 -08001972 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001973 npols ++;
1974 }
1975 }
1976#endif
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (pol->action == XFRM_POLICY_ALLOW) {
1979 struct sec_path *sp;
1980 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001981 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001982 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001983 struct xfrm_tmpl **tpp = tp;
1984 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 int i, k;
1986
1987 if ((sp = skb->sp) == NULL)
1988 sp = &dummy;
1989
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001990 for (pi = 0; pi < npols; pi++) {
1991 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001992 pols[pi]->action != XFRM_POLICY_ALLOW) {
1993 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001994 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001995 }
1996 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
1997 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001998 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001999 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002000 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2001 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2002 }
2003 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002004 if (npols > 1) {
2005 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2006 tpp = stp;
2007 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /* For each tunnel xfrm, find the first matching tmpl.
2010 * For each tmpl before that, find corresponding xfrm.
2011 * Order is _important_. Later we will implement
2012 * some barriers, but at the moment barriers
2013 * are implied between each two transformations.
2014 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002015 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2016 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002017 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002018 if (k < -1)
2019 /* "-2 - errored_index" returned */
2020 xerr_idx = -(2+k);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002021 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
2025
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002026 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2027 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002031 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return 1;
2033 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002034 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002037 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002038reject_error:
2039 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return 0;
2041}
2042EXPORT_SYMBOL(__xfrm_policy_check);
2043
2044int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2045{
2046 struct flowi fl;
2047
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002048 if (xfrm_decode_session(skb, &fl, family) < 0) {
2049 /* XXX: we should have something like FWDHDRERROR here. */
2050 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Alexey Dobriyan52479b62008-11-25 17:35:18 -08002054 return xfrm_lookup(&init_net, &skb->dst, &fl, NULL, 0) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056EXPORT_SYMBOL(__xfrm_route_forward);
2057
David S. Millerd49c73c2006-08-13 18:55:53 -07002058/* Optimize later using cookies and generation ids. */
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2061{
David S. Millerd49c73c2006-08-13 18:55:53 -07002062 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2063 * to "-1" to force all XFRM destinations to get validated by
2064 * dst_ops->check on every use. We do this because when a
2065 * normal route referenced by an XFRM dst is obsoleted we do
2066 * not go looking around for all parent referencing XFRM dsts
2067 * so that we can invalidate them. It is just too much work.
2068 * Instead we make the checks here on every use. For example:
2069 *
2070 * XFRM dst A --> IPv4 dst X
2071 *
2072 * X is the "xdst->route" of A (X is also the "dst->path" of A
2073 * in this example). If X is marked obsolete, "A" will not
2074 * notice. That's what we are validating here via the
2075 * stale_bundle() check.
2076 *
2077 * When a policy's bundle is pruned, we dst_free() the XFRM
2078 * dst which causes it's ->obsolete field to be set to a
2079 * positive non-zero integer. If an XFRM dst has been pruned
2080 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002081 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002082 if (dst->obsolete < 0 && !stale_bundle(dst))
2083 return dst;
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 return NULL;
2086}
2087
2088static int stale_bundle(struct dst_entry *dst)
2089{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002090 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Herbert Xuaabc9762005-05-03 16:27:10 -07002093void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002096 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002097 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 dev_put(dev);
2099 }
2100}
Herbert Xuaabc9762005-05-03 16:27:10 -07002101EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103static void xfrm_link_failure(struct sk_buff *skb)
2104{
2105 /* Impossible. Such dst must be popped before reaches point of failure. */
2106 return;
2107}
2108
2109static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2110{
2111 if (dst) {
2112 if (dst->obsolete) {
2113 dst_release(dst);
2114 dst = NULL;
2115 }
2116 }
2117 return dst;
2118}
2119
David S. Miller2518c7c2006-08-24 04:45:07 -07002120static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2121{
2122 struct dst_entry *dst, **dstp;
2123
2124 write_lock(&pol->lock);
2125 dstp = &pol->bundles;
2126 while ((dst=*dstp) != NULL) {
2127 if (func(dst)) {
2128 *dstp = dst->next;
2129 dst->next = *gc_list_p;
2130 *gc_list_p = dst;
2131 } else {
2132 dstp = &dst->next;
2133 }
2134 }
2135 write_unlock(&pol->lock);
2136}
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
2139{
David S. Miller2518c7c2006-08-24 04:45:07 -07002140 struct dst_entry *gc_list = NULL;
2141 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002144 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2145 struct xfrm_policy *pol;
2146 struct hlist_node *entry;
2147 struct hlist_head *table;
2148 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002149
David S. Miller2518c7c2006-08-24 04:45:07 -07002150 hlist_for_each_entry(pol, entry,
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002151 &init_net.xfrm.policy_inexact[dir], bydst)
David S. Miller2518c7c2006-08-24 04:45:07 -07002152 prune_one_bundle(pol, func, &gc_list);
2153
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002154 table = init_net.xfrm.policy_bydst[dir].table;
2155 for (i = init_net.xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002156 hlist_for_each_entry(pol, entry, table + i, bydst)
2157 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 }
2159 }
2160 read_unlock_bh(&xfrm_policy_lock);
2161
2162 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002163 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 gc_list = dst->next;
2165 dst_free(dst);
2166 }
2167}
2168
2169static int unused_bundle(struct dst_entry *dst)
2170{
2171 return !atomic_read(&dst->__refcnt);
2172}
2173
2174static void __xfrm_garbage_collect(void)
2175{
2176 xfrm_prune_bundles(unused_bundle);
2177}
2178
David S. Miller1c095392006-08-24 03:30:28 -07002179static int xfrm_flush_bundles(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
2181 xfrm_prune_bundles(stale_bundle);
2182 return 0;
2183}
2184
Herbert Xu25ee3282007-12-11 09:32:34 -08002185static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
2187 do {
2188 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2189 u32 pmtu, route_mtu_cached;
2190
2191 pmtu = dst_mtu(dst->child);
2192 xdst->child_mtu_cached = pmtu;
2193
2194 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2195
2196 route_mtu_cached = dst_mtu(xdst->route);
2197 xdst->route_mtu_cached = route_mtu_cached;
2198
2199 if (pmtu > route_mtu_cached)
2200 pmtu = route_mtu_cached;
2201
2202 dst->metrics[RTAX_MTU-1] = pmtu;
2203 } while ((dst = dst->next));
2204}
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206/* Check that the bundle accepts the flow and its components are
2207 * still valid.
2208 */
2209
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002210int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2211 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
2213 struct dst_entry *dst = &first->u.dst;
2214 struct xfrm_dst *last;
2215 u32 mtu;
2216
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002217 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 (dst->dev && !netif_running(dst->dev)))
2219 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002220#ifdef CONFIG_XFRM_SUB_POLICY
2221 if (fl) {
2222 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2223 return 0;
2224 if (first->partner &&
2225 !xfrm_selector_match(first->partner, fl, family))
2226 return 0;
2227 }
2228#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 last = NULL;
2231
2232 do {
2233 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2234
2235 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2236 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002237 if (fl && pol &&
2238 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2241 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002242 if (xdst->genid != dst->xfrm->genid)
2243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Herbert Xu1bfcb102007-10-17 21:31:50 -07002245 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002246 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002247 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2248 return 0;
2249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 mtu = dst_mtu(dst->child);
2251 if (xdst->child_mtu_cached != mtu) {
2252 last = xdst;
2253 xdst->child_mtu_cached = mtu;
2254 }
2255
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002256 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 return 0;
2258 mtu = dst_mtu(xdst->route);
2259 if (xdst->route_mtu_cached != mtu) {
2260 last = xdst;
2261 xdst->route_mtu_cached = mtu;
2262 }
2263
2264 dst = dst->child;
2265 } while (dst->xfrm);
2266
2267 if (likely(!last))
2268 return 1;
2269
2270 mtu = last->child_mtu_cached;
2271 for (;;) {
2272 dst = &last->u.dst;
2273
2274 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2275 if (mtu > last->route_mtu_cached)
2276 mtu = last->route_mtu_cached;
2277 dst->metrics[RTAX_MTU-1] = mtu;
2278
2279 if (last == first)
2280 break;
2281
Patrick McHardybd0bf072007-07-18 01:55:52 -07002282 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 last->child_mtu_cached = mtu;
2284 }
2285
2286 return 1;
2287}
2288
2289EXPORT_SYMBOL(xfrm_bundle_ok);
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2292{
2293 int err = 0;
2294 if (unlikely(afinfo == NULL))
2295 return -EINVAL;
2296 if (unlikely(afinfo->family >= NPROTO))
2297 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002298 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2300 err = -ENOBUFS;
2301 else {
2302 struct dst_ops *dst_ops = afinfo->dst_ops;
2303 if (likely(dst_ops->kmem_cachep == NULL))
2304 dst_ops->kmem_cachep = xfrm_dst_cache;
2305 if (likely(dst_ops->check == NULL))
2306 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 if (likely(dst_ops->negative_advice == NULL))
2308 dst_ops->negative_advice = xfrm_negative_advice;
2309 if (likely(dst_ops->link_failure == NULL))
2310 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (likely(afinfo->garbage_collect == NULL))
2312 afinfo->garbage_collect = __xfrm_garbage_collect;
2313 xfrm_policy_afinfo[afinfo->family] = afinfo;
2314 }
Ingo Molnare959d812006-04-28 15:32:29 -07002315 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 return err;
2317}
2318EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2319
2320int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2321{
2322 int err = 0;
2323 if (unlikely(afinfo == NULL))
2324 return -EINVAL;
2325 if (unlikely(afinfo->family >= NPROTO))
2326 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002327 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2329 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2330 err = -EINVAL;
2331 else {
2332 struct dst_ops *dst_ops = afinfo->dst_ops;
2333 xfrm_policy_afinfo[afinfo->family] = NULL;
2334 dst_ops->kmem_cachep = NULL;
2335 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 dst_ops->negative_advice = NULL;
2337 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 afinfo->garbage_collect = NULL;
2339 }
2340 }
Ingo Molnare959d812006-04-28 15:32:29 -07002341 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 return err;
2343}
2344EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2345
2346static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2347{
2348 struct xfrm_policy_afinfo *afinfo;
2349 if (unlikely(family >= NPROTO))
2350 return NULL;
2351 read_lock(&xfrm_policy_afinfo_lock);
2352 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002353 if (unlikely(!afinfo))
2354 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 return afinfo;
2356}
2357
2358static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2359{
Herbert Xu546be242006-05-27 23:03:58 -07002360 read_unlock(&xfrm_policy_afinfo_lock);
2361}
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2364{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002365 struct net_device *dev = ptr;
2366
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07002367 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002368 return NOTIFY_DONE;
2369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 switch (event) {
2371 case NETDEV_DOWN:
2372 xfrm_flush_bundles();
2373 }
2374 return NOTIFY_DONE;
2375}
2376
2377static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002378 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379};
2380
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002381#ifdef CONFIG_XFRM_STATISTICS
2382static int __init xfrm_statistics_init(void)
2383{
2384 if (snmp_mib_init((void **)xfrm_statistics,
2385 sizeof(struct linux_xfrm_mib)) < 0)
2386 return -ENOMEM;
2387 return 0;
2388}
2389#endif
2390
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002391static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
David S. Miller2518c7c2006-08-24 04:45:07 -07002393 unsigned int hmask, sz;
2394 int dir;
2395
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002396 if (net_eq(net, &init_net))
2397 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002399 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002400 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
David S. Miller2518c7c2006-08-24 04:45:07 -07002402 hmask = 8 - 1;
2403 sz = (hmask+1) * sizeof(struct hlist_head);
2404
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002405 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2406 if (!net->xfrm.policy_byidx)
2407 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002408 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002409
2410 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2411 struct xfrm_policy_hash *htab;
2412
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002413 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002414 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002415
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002416 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002417 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002418 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002419 goto out_bydst;
2420 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002421 }
2422
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002423 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002424 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002425 if (net_eq(net, &init_net))
2426 register_netdevice_notifier(&xfrm_dev_notifier);
2427 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002428
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002429out_bydst:
2430 for (dir--; dir >= 0; dir--) {
2431 struct xfrm_policy_hash *htab;
2432
2433 htab = &net->xfrm.policy_bydst[dir];
2434 xfrm_hash_free(htab->table, sz);
2435 }
2436 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002437out_byidx:
2438 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439}
2440
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002441static void xfrm_policy_fini(struct net *net)
2442{
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002443 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002444 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002445
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002446 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002447
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002448 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002449 struct xfrm_policy_hash *htab;
2450
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002451 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002452
2453 htab = &net->xfrm.policy_bydst[dir];
2454 sz = (htab->hmask + 1);
2455 WARN_ON(!hlist_empty(htab->table));
2456 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002457 }
2458
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002459 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002460 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2461 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002462}
2463
2464static int __net_init xfrm_net_init(struct net *net)
2465{
2466 int rv;
2467
2468 rv = xfrm_state_init(net);
2469 if (rv < 0)
2470 goto out_state;
2471 rv = xfrm_policy_init(net);
2472 if (rv < 0)
2473 goto out_policy;
2474 return 0;
2475
2476out_policy:
2477 xfrm_state_fini(net);
2478out_state:
2479 return rv;
2480}
2481
2482static void __net_exit xfrm_net_exit(struct net *net)
2483{
2484 xfrm_policy_fini(net);
2485 xfrm_state_fini(net);
2486}
2487
2488static struct pernet_operations __net_initdata xfrm_net_ops = {
2489 .init = xfrm_net_init,
2490 .exit = xfrm_net_exit,
2491};
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493void __init xfrm_init(void)
2494{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002495 register_pernet_subsys(&xfrm_net_ops);
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002496#ifdef CONFIG_XFRM_STATISTICS
2497 xfrm_statistics_init();
2498#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 xfrm_input_init();
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002500#ifdef CONFIG_XFRM_STATISTICS
2501 xfrm_proc_init();
2502#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503}
2504
Joy Lattenab5f5e82007-09-17 11:51:22 -07002505#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd2008-01-12 03:20:03 -08002506static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2507 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002508{
Paul Moore875179f2007-12-01 23:27:18 +11002509 struct xfrm_sec_ctx *ctx = xp->security;
2510 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002511
Paul Moore875179f2007-12-01 23:27:18 +11002512 if (ctx)
2513 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2514 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2515
2516 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002517 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002518 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002519 if (sel->prefixlen_s != 32)
2520 audit_log_format(audit_buf, " src_prefixlen=%d",
2521 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002522 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002523 if (sel->prefixlen_d != 32)
2524 audit_log_format(audit_buf, " dst_prefixlen=%d",
2525 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002526 break;
2527 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002528 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002529 if (sel->prefixlen_s != 128)
2530 audit_log_format(audit_buf, " src_prefixlen=%d",
2531 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002532 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002533 if (sel->prefixlen_d != 128)
2534 audit_log_format(audit_buf, " dst_prefixlen=%d",
2535 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002536 break;
2537 }
2538}
2539
Paul Moore68277ac2007-12-20 20:49:33 -08002540void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002541 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002542{
2543 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002544
Paul Mooreafeb14b2007-12-21 14:58:11 -08002545 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002546 if (audit_buf == NULL)
2547 return;
Eric Paris25323862008-04-18 10:09:25 -04002548 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002549 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002550 xfrm_audit_common_policyinfo(xp, audit_buf);
2551 audit_log_end(audit_buf);
2552}
2553EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2554
Paul Moore68277ac2007-12-20 20:49:33 -08002555void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002556 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002557{
2558 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002559
Paul Mooreafeb14b2007-12-21 14:58:11 -08002560 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002561 if (audit_buf == NULL)
2562 return;
Eric Paris25323862008-04-18 10:09:25 -04002563 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002564 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002565 xfrm_audit_common_policyinfo(xp, audit_buf);
2566 audit_log_end(audit_buf);
2567}
2568EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2569#endif
2570
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002571#ifdef CONFIG_XFRM_MIGRATE
2572static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2573 struct xfrm_selector *sel_tgt)
2574{
2575 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2576 if (sel_tgt->family == sel_cmp->family &&
2577 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002578 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002579 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2580 sel_cmp->family) == 0 &&
2581 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2582 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2583 return 1;
2584 }
2585 } else {
2586 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2587 return 1;
2588 }
2589 }
2590 return 0;
2591}
2592
2593static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2594 u8 dir, u8 type)
2595{
2596 struct xfrm_policy *pol, *ret = NULL;
2597 struct hlist_node *entry;
2598 struct hlist_head *chain;
2599 u32 priority = ~0U;
2600
2601 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08002602 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002603 hlist_for_each_entry(pol, entry, chain, bydst) {
2604 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2605 pol->type == type) {
2606 ret = pol;
2607 priority = ret->priority;
2608 break;
2609 }
2610 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002611 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002612 hlist_for_each_entry(pol, entry, chain, bydst) {
2613 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2614 pol->type == type &&
2615 pol->priority < priority) {
2616 ret = pol;
2617 break;
2618 }
2619 }
2620
2621 if (ret)
2622 xfrm_pol_hold(ret);
2623
2624 read_unlock_bh(&xfrm_policy_lock);
2625
2626 return ret;
2627}
2628
2629static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2630{
2631 int match = 0;
2632
2633 if (t->mode == m->mode && t->id.proto == m->proto &&
2634 (m->reqid == 0 || t->reqid == m->reqid)) {
2635 switch (t->mode) {
2636 case XFRM_MODE_TUNNEL:
2637 case XFRM_MODE_BEET:
2638 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2639 m->old_family) == 0 &&
2640 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2641 m->old_family) == 0) {
2642 match = 1;
2643 }
2644 break;
2645 case XFRM_MODE_TRANSPORT:
2646 /* in case of transport mode, template does not store
2647 any IP addresses, hence we just compare mode and
2648 protocol */
2649 match = 1;
2650 break;
2651 default:
2652 break;
2653 }
2654 }
2655 return match;
2656}
2657
2658/* update endpoint address(es) of template(s) */
2659static int xfrm_policy_migrate(struct xfrm_policy *pol,
2660 struct xfrm_migrate *m, int num_migrate)
2661{
2662 struct xfrm_migrate *mp;
2663 struct dst_entry *dst;
2664 int i, j, n = 0;
2665
2666 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002667 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002668 /* target policy has been deleted */
2669 write_unlock_bh(&pol->lock);
2670 return -ENOENT;
2671 }
2672
2673 for (i = 0; i < pol->xfrm_nr; i++) {
2674 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2675 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2676 continue;
2677 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002678 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2679 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002680 continue;
2681 /* update endpoints */
2682 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2683 sizeof(pol->xfrm_vec[i].id.daddr));
2684 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2685 sizeof(pol->xfrm_vec[i].saddr));
2686 pol->xfrm_vec[i].encap_family = mp->new_family;
2687 /* flush bundles */
2688 while ((dst = pol->bundles) != NULL) {
2689 pol->bundles = dst->next;
2690 dst_free(dst);
2691 }
2692 }
2693 }
2694
2695 write_unlock_bh(&pol->lock);
2696
2697 if (!n)
2698 return -ENODATA;
2699
2700 return 0;
2701}
2702
2703static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2704{
2705 int i, j;
2706
2707 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2708 return -EINVAL;
2709
2710 for (i = 0; i < num_migrate; i++) {
2711 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2712 m[i].old_family) == 0) &&
2713 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2714 m[i].old_family) == 0))
2715 return -EINVAL;
2716 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2717 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2718 return -EINVAL;
2719
2720 /* check if there is any duplicated entry */
2721 for (j = i + 1; j < num_migrate; j++) {
2722 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2723 sizeof(m[i].old_daddr)) &&
2724 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2725 sizeof(m[i].old_saddr)) &&
2726 m[i].proto == m[j].proto &&
2727 m[i].mode == m[j].mode &&
2728 m[i].reqid == m[j].reqid &&
2729 m[i].old_family == m[j].old_family)
2730 return -EINVAL;
2731 }
2732 }
2733
2734 return 0;
2735}
2736
2737int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002738 struct xfrm_migrate *m, int num_migrate,
2739 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002740{
2741 int i, err, nx_cur = 0, nx_new = 0;
2742 struct xfrm_policy *pol = NULL;
2743 struct xfrm_state *x, *xc;
2744 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2745 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2746 struct xfrm_migrate *mp;
2747
2748 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2749 goto out;
2750
2751 /* Stage 1 - find policy */
2752 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2753 err = -ENOENT;
2754 goto out;
2755 }
2756
2757 /* Stage 2 - find and update state(s) */
2758 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2759 if ((x = xfrm_migrate_state_find(mp))) {
2760 x_cur[nx_cur] = x;
2761 nx_cur++;
2762 if ((xc = xfrm_state_migrate(x, mp))) {
2763 x_new[nx_new] = xc;
2764 nx_new++;
2765 } else {
2766 err = -ENODATA;
2767 goto restore_state;
2768 }
2769 }
2770 }
2771
2772 /* Stage 3 - update policy */
2773 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2774 goto restore_state;
2775
2776 /* Stage 4 - delete old state(s) */
2777 if (nx_cur) {
2778 xfrm_states_put(x_cur, nx_cur);
2779 xfrm_states_delete(x_cur, nx_cur);
2780 }
2781
2782 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002783 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002784
2785 xfrm_pol_put(pol);
2786
2787 return 0;
2788out:
2789 return err;
2790
2791restore_state:
2792 if (pol)
2793 xfrm_pol_put(pol);
2794 if (nx_cur)
2795 xfrm_states_put(x_cur, nx_cur);
2796 if (nx_new)
2797 xfrm_states_delete(x_new, nx_new);
2798
2799 return err;
2800}
David S. Millere610e672007-02-08 13:29:15 -08002801EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002802#endif