blob: 1d300862dc04c3679db309a0908b065c5d87a3f3 [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
David S. Miller2518c7c2006-08-24 04:45:07 -0700324static inline unsigned int idx_hash(u32 index)
325{
Alexey Dobriyan8100bea2008-11-25 17:22:58 -0800326 return __idx_hash(index, init_net.xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700327}
328
David S. Miller2518c7c2006-08-24 04:45:07 -0700329static struct hlist_head *policy_hash_bysel(struct xfrm_selector *sel, unsigned short family, int dir)
330{
Alexey Dobriyana35f6c52008-11-25 17:23:48 -0800331 unsigned int hmask = init_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 Dobriyan8b18f8e2008-11-25 17:23:26 -0800335 &init_net.xfrm.policy_inexact[dir] :
Alexey Dobriyana35f6c52008-11-25 17:23:48 -0800336 init_net.xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700337}
338
339static struct hlist_head *policy_hash_direct(xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
340{
Alexey Dobriyana35f6c52008-11-25 17:23:48 -0800341 unsigned int hmask = init_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 Dobriyana35f6c52008-11-25 17:23:48 -0800344 return init_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. */
Arnaud Ebalard7a121222008-11-12 23:28:15 -0800511static u32 xfrm_gen_index(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 Dobriyan93b851c2008-11-25 17:22:35 -0800526 list = init_net.xfrm.policy_byidx + idx_hash(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{
David S. Miller2518c7c2006-08-24 04:45:07 -0700556 struct xfrm_policy *pol;
557 struct xfrm_policy *delpol;
558 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800559 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800560 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700563 chain = policy_hash_bysel(&policy->selector, policy->family, dir);
564 delpol = NULL;
565 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700566 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800567 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700568 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800569 xfrm_sec_ctx_match(pol->security, policy->security) &&
570 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (excl) {
572 write_unlock_bh(&xfrm_policy_lock);
573 return -EEXIST;
574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 delpol = pol;
576 if (policy->priority > pol->priority)
577 continue;
578 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800579 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 continue;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (delpol)
583 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700586 hlist_add_after(newpos, &policy->bydst);
587 else
588 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 xfrm_pol_hold(policy);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800590 init_net.xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700592 if (delpol) {
593 hlist_del(&delpol->bydst);
594 hlist_del(&delpol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700595 list_del(&delpol->walk.all);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800596 init_net.xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700597 }
Arnaud Ebalard7a121222008-11-12 23:28:15 -0800598 policy->index = delpol ? delpol->index : xfrm_gen_index(dir);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -0800599 hlist_add_head(&policy->byidx, init_net.xfrm.policy_byidx+idx_hash(policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800600 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 policy->curlft.use_time = 0;
602 if (!mod_timer(&policy->timer, jiffies + HZ))
603 xfrm_pol_hold(policy);
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -0800604 list_add(&policy->walk.all, &init_net.xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 write_unlock_bh(&xfrm_policy_lock);
606
David S. Miller9b78a822005-12-22 07:39:48 -0800607 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 xfrm_policy_kill(delpol);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800609 else if (xfrm_bydst_should_resize(&init_net, dir, NULL))
610 schedule_work(&init_net.xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800611
612 read_lock_bh(&xfrm_policy_lock);
613 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700614 entry = &policy->bydst;
615 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800616 struct dst_entry *dst;
617
618 write_lock(&policy->lock);
619 dst = policy->bundles;
620 if (dst) {
621 struct dst_entry *tail = dst;
622 while (tail->next)
623 tail = tail->next;
624 tail->next = gc_list;
625 gc_list = dst;
626
627 policy->bundles = NULL;
628 }
629 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
David S. Miller9b78a822005-12-22 07:39:48 -0800631 read_unlock_bh(&xfrm_policy_lock);
632
633 while (gc_list) {
634 struct dst_entry *dst = gc_list;
635
636 gc_list = dst->next;
637 dst_free(dst);
638 }
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return 0;
641}
642EXPORT_SYMBOL(xfrm_policy_insert);
643
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700644struct xfrm_policy *xfrm_policy_bysel_ctx(u8 type, int dir,
645 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800646 struct xfrm_sec_ctx *ctx, int delete,
647 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
David S. Miller2518c7c2006-08-24 04:45:07 -0700649 struct xfrm_policy *pol, *ret;
650 struct hlist_head *chain;
651 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Eric Parisef41aaa2007-03-07 15:37:58 -0800653 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700655 chain = policy_hash_bysel(sel, sel->family, dir);
656 ret = NULL;
657 hlist_for_each_entry(pol, entry, chain, bydst) {
658 if (pol->type == type &&
659 !selector_cmp(sel, &pol->selector) &&
660 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700662 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700663 *err = security_xfrm_policy_delete(
664 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800665 if (*err) {
666 write_unlock_bh(&xfrm_policy_lock);
667 return pol;
668 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700669 hlist_del(&pol->bydst);
670 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700671 list_del(&pol->walk.all);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800672 init_net.xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700673 }
674 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 break;
676 }
677 }
678 write_unlock_bh(&xfrm_policy_lock);
679
David S. Miller2518c7c2006-08-24 04:45:07 -0700680 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700682 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700684 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
Trent Jaegerdf718372005-12-13 23:12:27 -0800686EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Eric Parisef41aaa2007-03-07 15:37:58 -0800688struct xfrm_policy *xfrm_policy_byid(u8 type, int dir, u32 id, int delete,
689 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
David S. Miller2518c7c2006-08-24 04:45:07 -0700691 struct xfrm_policy *pol, *ret;
692 struct hlist_head *chain;
693 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Herbert Xub5505c62007-05-14 02:15:47 -0700695 *err = -ENOENT;
696 if (xfrm_policy_id2dir(id) != dir)
697 return NULL;
698
Eric Parisef41aaa2007-03-07 15:37:58 -0800699 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -0800701 chain = init_net.xfrm.policy_byidx + idx_hash(id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700702 ret = NULL;
703 hlist_for_each_entry(pol, entry, chain, byidx) {
704 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700706 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700707 *err = security_xfrm_policy_delete(
708 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800709 if (*err) {
710 write_unlock_bh(&xfrm_policy_lock);
711 return pol;
712 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700713 hlist_del(&pol->bydst);
714 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700715 list_del(&pol->walk.all);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800716 init_net.xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700717 }
718 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 break;
720 }
721 }
722 write_unlock_bh(&xfrm_policy_lock);
723
David S. Miller2518c7c2006-08-24 04:45:07 -0700724 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700726 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700728 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730EXPORT_SYMBOL(xfrm_policy_byid);
731
Joy Latten4aa2e622007-06-04 19:05:57 -0400732#ifdef CONFIG_SECURITY_NETWORK_XFRM
733static inline int
734xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Joy Latten4aa2e622007-06-04 19:05:57 -0400736 int dir, err = 0;
737
738 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
739 struct xfrm_policy *pol;
740 struct hlist_node *entry;
741 int i;
742
743 hlist_for_each_entry(pol, entry,
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -0800744 &init_net.xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400745 if (pol->type != type)
746 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700747 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400748 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700749 xfrm_audit_policy_delete(pol, 0,
750 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400751 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700752 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400753 return err;
754 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900755 }
Alexey Dobriyana35f6c52008-11-25 17:23:48 -0800756 for (i = init_net.xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400757 hlist_for_each_entry(pol, entry,
Alexey Dobriyana35f6c52008-11-25 17:23:48 -0800758 init_net.xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400759 bydst) {
760 if (pol->type != type)
761 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700762 err = security_xfrm_policy_delete(
763 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400764 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700765 xfrm_audit_policy_delete(pol, 0,
766 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400767 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700768 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400769 return err;
770 }
771 }
772 }
773 }
774 return err;
775}
776#else
777static inline int
778xfrm_policy_flush_secctx_check(u8 type, struct xfrm_audit *audit_info)
779{
780 return 0;
781}
782#endif
783
784int xfrm_policy_flush(u8 type, struct xfrm_audit *audit_info)
785{
786 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400789
790 err = xfrm_policy_flush_secctx_check(type, audit_info);
791 if (err)
792 goto out;
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700795 struct xfrm_policy *pol;
796 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700797 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700798
David S. Millerae8c0572006-10-03 16:00:26 -0700799 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700800 again1:
801 hlist_for_each_entry(pol, entry,
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -0800802 &init_net.xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700803 if (pol->type != type)
804 continue;
805 hlist_del(&pol->bydst);
806 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 write_unlock_bh(&xfrm_policy_lock);
808
Joy Lattenab5f5e82007-09-17 11:51:22 -0700809 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400810 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700811 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600812
David S. Miller2518c7c2006-08-24 04:45:07 -0700813 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700814 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700817 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700819
Alexey Dobriyana35f6c52008-11-25 17:23:48 -0800820 for (i = init_net.xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700821 again2:
822 hlist_for_each_entry(pol, entry,
Alexey Dobriyana35f6c52008-11-25 17:23:48 -0800823 init_net.xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700824 bydst) {
825 if (pol->type != type)
826 continue;
827 hlist_del(&pol->bydst);
828 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700829 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700830 write_unlock_bh(&xfrm_policy_lock);
831
Joy Lattenab5f5e82007-09-17 11:51:22 -0700832 xfrm_audit_policy_delete(pol, 1,
833 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400834 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700835 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700836 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700837 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700838
839 write_lock_bh(&xfrm_policy_lock);
840 goto again2;
841 }
842 }
843
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800844 init_net.xfrm.policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400847out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400849 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851EXPORT_SYMBOL(xfrm_policy_flush);
852
Timo Teras4c563f72008-02-28 21:31:08 -0800853int xfrm_policy_walk(struct xfrm_policy_walk *walk,
854 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 void *data)
856{
Herbert Xu12a169e2008-10-01 07:03:24 -0700857 struct xfrm_policy *pol;
858 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800859 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Timo Teras4c563f72008-02-28 21:31:08 -0800861 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
862 walk->type != XFRM_POLICY_TYPE_ANY)
863 return -EINVAL;
864
Herbert Xu12a169e2008-10-01 07:03:24 -0700865 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800866 return 0;
867
Herbert Xu12a169e2008-10-01 07:03:24 -0700868 write_lock_bh(&xfrm_policy_lock);
869 if (list_empty(&walk->walk.all))
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -0800870 x = list_first_entry(&init_net.xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700871 else
872 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -0800873 list_for_each_entry_from(x, &init_net.xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700874 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800875 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700876 pol = container_of(x, struct xfrm_policy, walk);
877 if (walk->type != XFRM_POLICY_TYPE_ANY &&
878 walk->type != pol->type)
879 continue;
880 error = func(pol, xfrm_policy_id2dir(pol->index),
881 walk->seq, data);
882 if (error) {
883 list_move_tail(&walk->walk.all, &x->all);
884 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800885 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700886 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700888 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800889 error = -ENOENT;
890 goto out;
891 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700892 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700894 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return error;
896}
897EXPORT_SYMBOL(xfrm_policy_walk);
898
Herbert Xu12a169e2008-10-01 07:03:24 -0700899void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
900{
901 INIT_LIST_HEAD(&walk->walk.all);
902 walk->walk.dead = 1;
903 walk->type = type;
904 walk->seq = 0;
905}
906EXPORT_SYMBOL(xfrm_policy_walk_init);
907
908void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
909{
910 if (list_empty(&walk->walk.all))
911 return;
912
913 write_lock_bh(&xfrm_policy_lock);
914 list_del(&walk->walk.all);
915 write_unlock_bh(&xfrm_policy_lock);
916}
917EXPORT_SYMBOL(xfrm_policy_walk_done);
918
James Morris134b0fc2006-10-05 15:42:27 -0500919/*
920 * Find policy to apply to this flow.
921 *
922 * Returns 0 if policy found, else an -errno.
923 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700924static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
925 u8 type, u16 family, int dir)
926{
927 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500928 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700929
930 if (pol->family != family ||
931 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500932 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700933
934 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500935 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700936 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
937 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700938
James Morris134b0fc2006-10-05 15:42:27 -0500939 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700940}
941
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700942static struct xfrm_policy *xfrm_policy_lookup_bytype(u8 type, struct flowi *fl,
943 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
James Morris134b0fc2006-10-05 15:42:27 -0500945 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700946 struct xfrm_policy *pol, *ret;
947 xfrm_address_t *daddr, *saddr;
948 struct hlist_node *entry;
949 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700950 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700951
952 daddr = xfrm_flowi_daddr(fl, family);
953 saddr = xfrm_flowi_saddr(fl, family);
954 if (unlikely(!daddr || !saddr))
955 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700958 chain = policy_hash_direct(daddr, saddr, family, dir);
959 ret = NULL;
960 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500961 err = xfrm_policy_match(pol, fl, type, family, dir);
962 if (err) {
963 if (err == -ESRCH)
964 continue;
965 else {
966 ret = ERR_PTR(err);
967 goto fail;
968 }
969 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700970 ret = pol;
971 priority = ret->priority;
972 break;
973 }
974 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -0800975 chain = &init_net.xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700976 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500977 err = xfrm_policy_match(pol, fl, type, family, dir);
978 if (err) {
979 if (err == -ESRCH)
980 continue;
981 else {
982 ret = ERR_PTR(err);
983 goto fail;
984 }
985 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700986 ret = pol;
987 break;
988 }
989 }
David S. Milleracba48e2006-08-25 15:46:46 -0700990 if (ret)
991 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500992fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700994
David S. Miller2518c7c2006-08-24 04:45:07 -0700995 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700996}
997
James Morris134b0fc2006-10-05 15:42:27 -0500998static int xfrm_policy_lookup(struct flowi *fl, u16 family, u8 dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700999 void **objp, atomic_t **obj_refp)
1000{
1001 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -05001002 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001003
1004#ifdef CONFIG_XFRM_SUB_POLICY
1005 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001006 if (IS_ERR(pol)) {
1007 err = PTR_ERR(pol);
1008 pol = NULL;
1009 }
1010 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001011 goto end;
1012#endif
1013 pol = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001014 if (IS_ERR(pol)) {
1015 err = PTR_ERR(pol);
1016 pol = NULL;
1017 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001018#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001019end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001020#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if ((*objp = (void *) pol) != NULL)
1022 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001023 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024}
1025
Trent Jaegerdf718372005-12-13 23:12:27 -08001026static inline int policy_to_flow_dir(int dir)
1027{
1028 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001029 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1030 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1031 return dir;
1032 switch (dir) {
1033 default:
1034 case XFRM_POLICY_IN:
1035 return FLOW_DIR_IN;
1036 case XFRM_POLICY_OUT:
1037 return FLOW_DIR_OUT;
1038 case XFRM_POLICY_FWD:
1039 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001040 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001041}
1042
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001043static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
1045 struct xfrm_policy *pol;
1046
1047 read_lock_bh(&xfrm_policy_lock);
1048 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001049 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001051 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001052
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001053 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001054 err = security_xfrm_policy_lookup(pol->security,
1055 fl->secid,
1056 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001057 if (!err)
1058 xfrm_pol_hold(pol);
1059 else if (err == -ESRCH)
1060 pol = NULL;
1061 else
1062 pol = ERR_PTR(err);
1063 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 pol = NULL;
1065 }
1066 read_unlock_bh(&xfrm_policy_lock);
1067 return pol;
1068}
1069
1070static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1071{
David S. Miller2518c7c2006-08-24 04:45:07 -07001072 struct hlist_head *chain = policy_hash_bysel(&pol->selector,
1073 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001074
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08001075 list_add(&pol->walk.all, &init_net.xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001076 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08001077 hlist_add_head(&pol->byidx, init_net.xfrm.policy_byidx+idx_hash(pol->index));
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08001078 init_net.xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001080
Alexey Dobriyan66caf622008-11-25 17:28:57 -08001081 if (xfrm_bydst_should_resize(&init_net, dir, NULL))
1082 schedule_work(&init_net.xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1086 int dir)
1087{
David S. Miller2518c7c2006-08-24 04:45:07 -07001088 if (hlist_unhashed(&pol->bydst))
1089 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
David S. Miller2518c7c2006-08-24 04:45:07 -07001091 hlist_del(&pol->bydst);
1092 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001093 list_del(&pol->walk.all);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08001094 init_net.xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001095
1096 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Herbert Xu4666faa2005-06-18 22:43:22 -07001099int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
1101 write_lock_bh(&xfrm_policy_lock);
1102 pol = __xfrm_policy_unlink(pol, dir);
1103 write_unlock_bh(&xfrm_policy_lock);
1104 if (pol) {
1105 if (dir < XFRM_POLICY_MAX)
1106 atomic_inc(&flow_cache_genid);
1107 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001108 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001110 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
David S. Millera70fcb02006-03-20 19:18:52 -08001112EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1115{
1116 struct xfrm_policy *old_pol;
1117
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001118#ifdef CONFIG_XFRM_SUB_POLICY
1119 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1120 return -EINVAL;
1121#endif
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 write_lock_bh(&xfrm_policy_lock);
1124 old_pol = sk->sk_policy[dir];
1125 sk->sk_policy[dir] = pol;
1126 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001127 pol->curlft.add_time = get_seconds();
Arnaud Ebalard7a121222008-11-12 23:28:15 -08001128 pol->index = xfrm_gen_index(XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1130 }
1131 if (old_pol)
1132 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1133 write_unlock_bh(&xfrm_policy_lock);
1134
1135 if (old_pol) {
1136 xfrm_policy_kill(old_pol);
1137 }
1138 return 0;
1139}
1140
1141static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1142{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001143 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (newp) {
1146 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001147 if (security_xfrm_policy_clone(old->security,
1148 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001149 kfree(newp);
1150 return NULL; /* ENOMEM */
1151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 newp->lft = old->lft;
1153 newp->curlft = old->curlft;
1154 newp->action = old->action;
1155 newp->flags = old->flags;
1156 newp->xfrm_nr = old->xfrm_nr;
1157 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001158 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 memcpy(newp->xfrm_vec, old->xfrm_vec,
1160 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1161 write_lock_bh(&xfrm_policy_lock);
1162 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1163 write_unlock_bh(&xfrm_policy_lock);
1164 xfrm_pol_put(newp);
1165 }
1166 return newp;
1167}
1168
1169int __xfrm_sk_clone_policy(struct sock *sk)
1170{
1171 struct xfrm_policy *p0 = sk->sk_policy[0],
1172 *p1 = sk->sk_policy[1];
1173
1174 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1175 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1176 return -ENOMEM;
1177 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1178 return -ENOMEM;
1179 return 0;
1180}
1181
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001182static int
1183xfrm_get_saddr(xfrm_address_t *local, xfrm_address_t *remote,
1184 unsigned short family)
1185{
1186 int err;
1187 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1188
1189 if (unlikely(afinfo == NULL))
1190 return -EINVAL;
1191 err = afinfo->get_saddr(local, remote);
1192 xfrm_policy_put_afinfo(afinfo);
1193 return err;
1194}
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196/* Resolve list of templates for the flow, given policy. */
1197
1198static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001199xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1200 struct xfrm_state **xfrm,
1201 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
1203 int nx;
1204 int i, error;
1205 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1206 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001207 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1210 struct xfrm_state *x;
1211 xfrm_address_t *remote = daddr;
1212 xfrm_address_t *local = saddr;
1213 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1214
Joakim Koskela48b8d782007-07-26 00:08:42 -07001215 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1216 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 remote = &tmpl->id.daddr;
1218 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001219 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001220 if (xfrm_addr_any(local, family)) {
1221 error = xfrm_get_saddr(&tmp, remote, family);
1222 if (error)
1223 goto fail;
1224 local = &tmp;
1225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
1227
1228 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1229
1230 if (x && x->km.state == XFRM_STATE_VALID) {
1231 xfrm[nx++] = x;
1232 daddr = remote;
1233 saddr = local;
1234 continue;
1235 }
1236 if (x) {
1237 error = (x->km.state == XFRM_STATE_ERROR ?
1238 -EINVAL : -EAGAIN);
1239 xfrm_state_put(x);
1240 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001241 else if (error == -ESRCH)
1242 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 if (!tmpl->optional)
1245 goto fail;
1246 }
1247 return nx;
1248
1249fail:
1250 for (nx--; nx>=0; nx--)
1251 xfrm_state_put(xfrm[nx]);
1252 return error;
1253}
1254
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001255static int
1256xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1257 struct xfrm_state **xfrm,
1258 unsigned short family)
1259{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001260 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1261 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001262 int cnx = 0;
1263 int error;
1264 int ret;
1265 int i;
1266
1267 for (i = 0; i < npols; i++) {
1268 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1269 error = -ENOBUFS;
1270 goto fail;
1271 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001272
1273 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001274 if (ret < 0) {
1275 error = ret;
1276 goto fail;
1277 } else
1278 cnx += ret;
1279 }
1280
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001281 /* found states are sorted for outbound processing */
1282 if (npols > 1)
1283 xfrm_state_sort(xfrm, tpp, cnx, family);
1284
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001285 return cnx;
1286
1287 fail:
1288 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001289 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001290 return error;
1291
1292}
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294/* Check that the bundle accepts the flow and its components are
1295 * still valid.
1296 */
1297
1298static struct dst_entry *
1299xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1300{
1301 struct dst_entry *x;
1302 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1303 if (unlikely(afinfo == NULL))
1304 return ERR_PTR(-EINVAL);
1305 x = afinfo->find_bundle(fl, policy);
1306 xfrm_policy_put_afinfo(afinfo);
1307 return x;
1308}
1309
Herbert Xu25ee3282007-12-11 09:32:34 -08001310static inline int xfrm_get_tos(struct flowi *fl, int family)
1311{
1312 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1313 int tos;
1314
1315 if (!afinfo)
1316 return -EINVAL;
1317
1318 tos = afinfo->get_tos(fl);
1319
1320 xfrm_policy_put_afinfo(afinfo);
1321
1322 return tos;
1323}
1324
1325static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1326{
1327 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1328 struct xfrm_dst *xdst;
1329
1330 if (!afinfo)
1331 return ERR_PTR(-EINVAL);
1332
1333 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1334
1335 xfrm_policy_put_afinfo(afinfo);
1336
1337 return xdst;
1338}
1339
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001340static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1341 int nfheader_len)
1342{
1343 struct xfrm_policy_afinfo *afinfo =
1344 xfrm_policy_get_afinfo(dst->ops->family);
1345 int err;
1346
1347 if (!afinfo)
1348 return -EINVAL;
1349
1350 err = afinfo->init_path(path, dst, nfheader_len);
1351
1352 xfrm_policy_put_afinfo(afinfo);
1353
1354 return err;
1355}
1356
Herbert Xu25ee3282007-12-11 09:32:34 -08001357static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1358{
1359 struct xfrm_policy_afinfo *afinfo =
1360 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1361 int err;
1362
1363 if (!afinfo)
1364 return -EINVAL;
1365
1366 err = afinfo->fill_dst(xdst, dev);
1367
1368 xfrm_policy_put_afinfo(afinfo);
1369
1370 return err;
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1374 * all the metrics... Shortly, bundle a bundle.
1375 */
1376
Herbert Xu25ee3282007-12-11 09:32:34 -08001377static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1378 struct xfrm_state **xfrm, int nx,
1379 struct flowi *fl,
1380 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Herbert Xu25ee3282007-12-11 09:32:34 -08001382 unsigned long now = jiffies;
1383 struct net_device *dev;
1384 struct dst_entry *dst_prev = NULL;
1385 struct dst_entry *dst0 = NULL;
1386 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001388 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001389 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001390 int trailer_len = 0;
1391 int tos;
1392 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001393 xfrm_address_t saddr, daddr;
1394
1395 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001396
1397 tos = xfrm_get_tos(fl, family);
1398 err = tos;
1399 if (tos < 0)
1400 goto put_states;
1401
1402 dst_hold(dst);
1403
1404 for (; i < nx; i++) {
1405 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1406 struct dst_entry *dst1 = &xdst->u.dst;
1407
1408 err = PTR_ERR(xdst);
1409 if (IS_ERR(xdst)) {
1410 dst_release(dst);
1411 goto put_states;
1412 }
1413
1414 if (!dst_prev)
1415 dst0 = dst1;
1416 else {
1417 dst_prev->child = dst_clone(dst1);
1418 dst1->flags |= DST_NOHASH;
1419 }
1420
1421 xdst->route = dst;
1422 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1423
1424 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1425 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001426 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1427 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001428 err = PTR_ERR(dst);
1429 if (IS_ERR(dst))
1430 goto put_states;
1431 } else
1432 dst_hold(dst);
1433
1434 dst1->xfrm = xfrm[i];
1435 xdst->genid = xfrm[i]->genid;
1436
1437 dst1->obsolete = -1;
1438 dst1->flags |= DST_HOST;
1439 dst1->lastuse = now;
1440
1441 dst1->input = dst_discard;
1442 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1443
1444 dst1->next = dst_prev;
1445 dst_prev = dst1;
1446
1447 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001448 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1449 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001450 trailer_len += xfrm[i]->props.trailer_len;
1451 }
1452
1453 dst_prev->child = dst;
1454 dst0->path = dst;
1455
1456 err = -ENODEV;
1457 dev = dst->dev;
1458 if (!dev)
1459 goto free_dst;
1460
1461 /* Copy neighbout for reachability confirmation */
1462 dst0->neighbour = neigh_clone(dst->neighbour);
1463
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001464 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001465 xfrm_init_pmtu(dst_prev);
1466
1467 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1468 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1469
1470 err = xfrm_fill_dst(xdst, dev);
1471 if (err)
1472 goto free_dst;
1473
1474 dst_prev->header_len = header_len;
1475 dst_prev->trailer_len = trailer_len;
1476 header_len -= xdst->u.dst.xfrm->props.header_len;
1477 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1478 }
1479
1480out:
1481 return dst0;
1482
1483put_states:
1484 for (; i < nx; i++)
1485 xfrm_state_put(xfrm[i]);
1486free_dst:
1487 if (dst0)
1488 dst_free(dst0);
1489 dst0 = ERR_PTR(err);
1490 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001493static int inline
1494xfrm_dst_alloc_copy(void **target, void *src, int size)
1495{
1496 if (!*target) {
1497 *target = kmalloc(size, GFP_ATOMIC);
1498 if (!*target)
1499 return -ENOMEM;
1500 }
1501 memcpy(*target, src, size);
1502 return 0;
1503}
1504
1505static int inline
1506xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1507{
1508#ifdef CONFIG_XFRM_SUB_POLICY
1509 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1510 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1511 sel, sizeof(*sel));
1512#else
1513 return 0;
1514#endif
1515}
1516
1517static int inline
1518xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1519{
1520#ifdef CONFIG_XFRM_SUB_POLICY
1521 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1522 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1523#else
1524 return 0;
1525#endif
1526}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528static int stale_bundle(struct dst_entry *dst);
1529
1530/* Main function: finds/creates a bundle for given flow.
1531 *
1532 * At the moment we eat a raw IP route. Mostly to speed up lookups
1533 * on interfaces with disabled IPsec.
1534 */
David S. Miller14e50e52007-05-24 18:17:54 -07001535int __xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1536 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
1538 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001539 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1540 int npols;
1541 int pol_dead;
1542 int xfrm_nr;
1543 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1545 struct dst_entry *dst, *dst_orig = *dst_p;
1546 int nx = 0;
1547 int err;
1548 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001549 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001550 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552restart:
1553 genid = atomic_read(&flow_cache_genid);
1554 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001555 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1556 pols[pi] = NULL;
1557 npols = 0;
1558 pol_dead = 0;
1559 xfrm_nr = 0;
1560
Thomas Graff7944fb2007-08-25 13:46:55 -07001561 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001562 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001563 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001564 if (IS_ERR(policy)) {
1565 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001566 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001567 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 if (!policy) {
1571 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001572 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08001573 !init_net.xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001574 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001576 policy = flow_cache_lookup(fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001577 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001578 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001579 if (IS_ERR(policy)) {
1580 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001581 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
1584
1585 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001586 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001588 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001589 pols[0] = policy;
1590 npols ++;
1591 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Herbert Xuaef21782007-12-13 09:30:59 -08001593 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001594 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1595 goto error;
1596
1597 policy->curlft.use_time = get_seconds();
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001600 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 case XFRM_POLICY_BLOCK:
1602 /* Prohibit the flow */
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001603 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07001604 err = -EPERM;
1605 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001608#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (policy->xfrm_nr == 0) {
1610 /* Flow passes not transformed. */
1611 xfrm_pol_put(policy);
1612 return 0;
1613 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001614#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
1616 /* Try to find matching bundle.
1617 *
1618 * LATER: help from flow cache. It is optional, this
1619 * is required only for output policy.
1620 */
1621 dst = xfrm_find_bundle(fl, policy, family);
1622 if (IS_ERR(dst)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001623 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye104411b2005-09-08 15:11:55 -07001624 err = PTR_ERR(dst);
1625 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
1628 if (dst)
1629 break;
1630
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001631#ifdef CONFIG_XFRM_SUB_POLICY
1632 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1633 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1634 fl, family,
1635 XFRM_POLICY_OUT);
1636 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001637 if (IS_ERR(pols[1])) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001638 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001639 err = PTR_ERR(pols[1]);
1640 goto error;
1641 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001642 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001643 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001644 err = -EPERM;
1645 goto error;
1646 }
1647 npols ++;
1648 xfrm_nr += pols[1]->xfrm_nr;
1649 }
1650 }
1651
1652 /*
1653 * Because neither flowi nor bundle information knows about
1654 * transformation template size. On more than one policy usage
1655 * we can realize whether all of them is bypass or not after
1656 * they are searched. See above not-transformed bypass
1657 * is surrounded by non-sub policy configuration, too.
1658 */
1659 if (xfrm_nr == 0) {
1660 /* Flow passes not transformed. */
1661 xfrm_pols_put(pols, npols);
1662 return 0;
1663 }
1664
1665#endif
1666 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 if (unlikely(nx<0)) {
1669 err = nx;
David S. Miller14e50e52007-05-24 18:17:54 -07001670 if (err == -EAGAIN && sysctl_xfrm_larval_drop) {
1671 /* EREMOTE tells the caller to generate
1672 * a one-shot blackhole route.
1673 */
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001674 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001675 xfrm_pol_put(policy);
1676 return -EREMOTE;
1677 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001678 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 DECLARE_WAITQUEUE(wait, current);
1680
Alexey Dobriyan50a30652008-11-25 17:21:01 -08001681 add_wait_queue(&init_net.xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 set_current_state(TASK_INTERRUPTIBLE);
1683 schedule();
1684 set_current_state(TASK_RUNNING);
Alexey Dobriyan50a30652008-11-25 17:21:01 -08001685 remove_wait_queue(&init_net.xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001687 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 if (nx == -EAGAIN && signal_pending(current)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001690 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 err = -ERESTART;
1692 goto error;
1693 }
1694 if (nx == -EAGAIN ||
1695 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001696 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 goto restart;
1698 }
1699 err = nx;
1700 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001701 if (err < 0) {
1702 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706 if (nx == 0) {
1707 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001708 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return 0;
1710 }
1711
Herbert Xu25ee3282007-12-11 09:32:34 -08001712 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1713 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001714 if (IS_ERR(dst)) {
1715 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001719 for (pi = 0; pi < npols; pi++) {
1720 read_lock_bh(&pols[pi]->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001721 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001722 read_unlock_bh(&pols[pi]->lock);
1723 }
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001726 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 /* Wow! While we worked on resolving, this
1728 * policy has gone. Retry. It is not paranoia,
1729 * we just cannot enlist new bundle to dead object.
1730 * We can't enlist stable bundles either.
1731 */
1732 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001733 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001734
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001735 if (pol_dead)
1736 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD);
1737 else
1738 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001739 err = -EHOSTUNREACH;
1740 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001742
1743 if (npols > 1)
1744 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1745 else
1746 err = xfrm_dst_update_origin(dst, fl);
1747 if (unlikely(err)) {
1748 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001749 dst_free(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001750 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001751 goto error;
1752 }
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 dst->next = policy->bundles;
1755 policy->bundles = dst;
1756 dst_hold(dst);
1757 write_unlock_bh(&policy->lock);
1758 }
1759 *dst_p = dst;
1760 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001761 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return 0;
1763
1764error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001765 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001766dropdst:
1767 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 *dst_p = NULL;
1769 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001770
1771nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001772 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001773 if (flags & XFRM_LOOKUP_ICMP)
1774 goto dropdst;
1775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
David S. Miller14e50e52007-05-24 18:17:54 -07001777EXPORT_SYMBOL(__xfrm_lookup);
1778
1779int xfrm_lookup(struct dst_entry **dst_p, struct flowi *fl,
1780 struct sock *sk, int flags)
1781{
1782 int err = __xfrm_lookup(dst_p, fl, sk, flags);
1783
1784 if (err == -EREMOTE) {
1785 dst_release(*dst_p);
1786 *dst_p = NULL;
1787 err = -EAGAIN;
1788 }
1789
1790 return err;
1791}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792EXPORT_SYMBOL(xfrm_lookup);
1793
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001794static inline int
1795xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1796{
1797 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001798
1799 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1800 return 0;
1801 x = skb->sp->xvec[idx];
1802 if (!x->type->reject)
1803 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001804 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001805}
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807/* When skb is transformed back to its "native" form, we have to
1808 * check policy restrictions. At the moment we make this in maximally
1809 * stupid way. Shame on me. :-) Of course, connected sockets must
1810 * have policy cached at them.
1811 */
1812
1813static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001814xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 unsigned short family)
1816{
1817 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001818 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return x->id.proto == tmpl->id.proto &&
1820 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1821 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1822 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001823 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001824 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001825 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1826 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001829/*
1830 * 0 or more than 0 is returned when validation is succeeded (either bypass
1831 * because of optional transport mode, or next index of the mathced secpath
1832 * state with the template.
1833 * -1 is returned when no matching template is found.
1834 * Otherwise "-2 - errored_index" is returned.
1835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836static inline int
1837xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1838 unsigned short family)
1839{
1840 int idx = start;
1841
1842 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001843 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return start;
1845 } else
1846 start = -1;
1847 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001848 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001850 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1851 if (start == -1)
1852 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856 return start;
1857}
1858
Herbert Xud5422ef2007-12-12 10:44:16 -08001859int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1860 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001863 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 if (unlikely(afinfo == NULL))
1866 return -EAFNOSUPPORT;
1867
Herbert Xud5422ef2007-12-12 10:44:16 -08001868 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001869 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001871 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
Herbert Xud5422ef2007-12-12 10:44:16 -08001873EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001875static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001878 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001879 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
1883
1884 return 0;
1885}
1886
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001887int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 unsigned short family)
1889{
1890 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001891 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1892 int npols = 0;
1893 int xfrm_nr;
1894 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001895 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001897 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001898 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Herbert Xud5422ef2007-12-12 10:44:16 -08001900 reverse = dir & ~XFRM_POLICY_MASK;
1901 dir &= XFRM_POLICY_MASK;
1902 fl_dir = policy_to_flow_dir(dir);
1903
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001904 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
1905 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001907 }
1908
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001909 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911 /* First, check used SA against their selectors. */
1912 if (skb->sp) {
1913 int i;
1914
1915 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001916 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001917 if (!xfrm_selector_match(&x->sel, &fl, family)) {
1918 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
1922 }
1923
1924 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001925 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001926 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001927 if (IS_ERR(pol)) {
1928 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001929 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001930 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 if (!pol)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001934 pol = flow_cache_lookup(&fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 xfrm_policy_lookup);
1936
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001937 if (IS_ERR(pol)) {
1938 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001939 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001940 }
James Morris134b0fc2006-10-05 15:42:27 -05001941
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001942 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001943 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001944 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001945 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001946 return 0;
1947 }
1948 return 1;
1949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
James Morris9d729f72007-03-04 16:12:44 -08001951 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001953 pols[0] = pol;
1954 npols ++;
1955#ifdef CONFIG_XFRM_SUB_POLICY
1956 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
1957 pols[1] = xfrm_policy_lookup_bytype(XFRM_POLICY_TYPE_MAIN,
1958 &fl, family,
1959 XFRM_POLICY_IN);
1960 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001961 if (IS_ERR(pols[1])) {
1962 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001963 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001964 }
James Morris9d729f72007-03-04 16:12:44 -08001965 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001966 npols ++;
1967 }
1968 }
1969#endif
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (pol->action == XFRM_POLICY_ALLOW) {
1972 struct sec_path *sp;
1973 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001974 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001975 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001976 struct xfrm_tmpl **tpp = tp;
1977 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 int i, k;
1979
1980 if ((sp = skb->sp) == NULL)
1981 sp = &dummy;
1982
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001983 for (pi = 0; pi < npols; pi++) {
1984 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001985 pols[pi]->action != XFRM_POLICY_ALLOW) {
1986 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001987 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001988 }
1989 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
1990 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001991 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001992 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001993 for (i = 0; i < pols[pi]->xfrm_nr; i++)
1994 tpp[ti++] = &pols[pi]->xfrm_vec[i];
1995 }
1996 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001997 if (npols > 1) {
1998 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
1999 tpp = stp;
2000 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 /* For each tunnel xfrm, find the first matching tmpl.
2003 * For each tmpl before that, find corresponding xfrm.
2004 * Order is _important_. Later we will implement
2005 * some barriers, but at the moment barriers
2006 * are implied between each two transformations.
2007 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002008 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2009 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002010 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002011 if (k < -1)
2012 /* "-2 - errored_index" returned */
2013 xerr_idx = -(2+k);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002014 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002019 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2020 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002024 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return 1;
2026 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002027 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002030 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002031reject_error:
2032 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return 0;
2034}
2035EXPORT_SYMBOL(__xfrm_policy_check);
2036
2037int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2038{
2039 struct flowi fl;
2040
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002041 if (xfrm_decode_session(skb, &fl, family) < 0) {
2042 /* XXX: we should have something like FWDHDRERROR here. */
2043 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 return xfrm_lookup(&skb->dst, &fl, NULL, 0) == 0;
2048}
2049EXPORT_SYMBOL(__xfrm_route_forward);
2050
David S. Millerd49c73c2006-08-13 18:55:53 -07002051/* Optimize later using cookies and generation ids. */
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2054{
David S. Millerd49c73c2006-08-13 18:55:53 -07002055 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2056 * to "-1" to force all XFRM destinations to get validated by
2057 * dst_ops->check on every use. We do this because when a
2058 * normal route referenced by an XFRM dst is obsoleted we do
2059 * not go looking around for all parent referencing XFRM dsts
2060 * so that we can invalidate them. It is just too much work.
2061 * Instead we make the checks here on every use. For example:
2062 *
2063 * XFRM dst A --> IPv4 dst X
2064 *
2065 * X is the "xdst->route" of A (X is also the "dst->path" of A
2066 * in this example). If X is marked obsolete, "A" will not
2067 * notice. That's what we are validating here via the
2068 * stale_bundle() check.
2069 *
2070 * When a policy's bundle is pruned, we dst_free() the XFRM
2071 * dst which causes it's ->obsolete field to be set to a
2072 * positive non-zero integer. If an XFRM dst has been pruned
2073 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002074 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002075 if (dst->obsolete < 0 && !stale_bundle(dst))
2076 return dst;
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return NULL;
2079}
2080
2081static int stale_bundle(struct dst_entry *dst)
2082{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002083 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
Herbert Xuaabc9762005-05-03 16:27:10 -07002086void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002089 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002090 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 dev_put(dev);
2092 }
2093}
Herbert Xuaabc9762005-05-03 16:27:10 -07002094EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096static void xfrm_link_failure(struct sk_buff *skb)
2097{
2098 /* Impossible. Such dst must be popped before reaches point of failure. */
2099 return;
2100}
2101
2102static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2103{
2104 if (dst) {
2105 if (dst->obsolete) {
2106 dst_release(dst);
2107 dst = NULL;
2108 }
2109 }
2110 return dst;
2111}
2112
David S. Miller2518c7c2006-08-24 04:45:07 -07002113static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2114{
2115 struct dst_entry *dst, **dstp;
2116
2117 write_lock(&pol->lock);
2118 dstp = &pol->bundles;
2119 while ((dst=*dstp) != NULL) {
2120 if (func(dst)) {
2121 *dstp = dst->next;
2122 dst->next = *gc_list_p;
2123 *gc_list_p = dst;
2124 } else {
2125 dstp = &dst->next;
2126 }
2127 }
2128 write_unlock(&pol->lock);
2129}
2130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131static void xfrm_prune_bundles(int (*func)(struct dst_entry *))
2132{
David S. Miller2518c7c2006-08-24 04:45:07 -07002133 struct dst_entry *gc_list = NULL;
2134 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002137 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2138 struct xfrm_policy *pol;
2139 struct hlist_node *entry;
2140 struct hlist_head *table;
2141 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002142
David S. Miller2518c7c2006-08-24 04:45:07 -07002143 hlist_for_each_entry(pol, entry,
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002144 &init_net.xfrm.policy_inexact[dir], bydst)
David S. Miller2518c7c2006-08-24 04:45:07 -07002145 prune_one_bundle(pol, func, &gc_list);
2146
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002147 table = init_net.xfrm.policy_bydst[dir].table;
2148 for (i = init_net.xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002149 hlist_for_each_entry(pol, entry, table + i, bydst)
2150 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
2152 }
2153 read_unlock_bh(&xfrm_policy_lock);
2154
2155 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002156 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 gc_list = dst->next;
2158 dst_free(dst);
2159 }
2160}
2161
2162static int unused_bundle(struct dst_entry *dst)
2163{
2164 return !atomic_read(&dst->__refcnt);
2165}
2166
2167static void __xfrm_garbage_collect(void)
2168{
2169 xfrm_prune_bundles(unused_bundle);
2170}
2171
David S. Miller1c095392006-08-24 03:30:28 -07002172static int xfrm_flush_bundles(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
2174 xfrm_prune_bundles(stale_bundle);
2175 return 0;
2176}
2177
Herbert Xu25ee3282007-12-11 09:32:34 -08002178static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 do {
2181 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2182 u32 pmtu, route_mtu_cached;
2183
2184 pmtu = dst_mtu(dst->child);
2185 xdst->child_mtu_cached = pmtu;
2186
2187 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2188
2189 route_mtu_cached = dst_mtu(xdst->route);
2190 xdst->route_mtu_cached = route_mtu_cached;
2191
2192 if (pmtu > route_mtu_cached)
2193 pmtu = route_mtu_cached;
2194
2195 dst->metrics[RTAX_MTU-1] = pmtu;
2196 } while ((dst = dst->next));
2197}
2198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199/* Check that the bundle accepts the flow and its components are
2200 * still valid.
2201 */
2202
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002203int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2204 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 struct dst_entry *dst = &first->u.dst;
2207 struct xfrm_dst *last;
2208 u32 mtu;
2209
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002210 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 (dst->dev && !netif_running(dst->dev)))
2212 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002213#ifdef CONFIG_XFRM_SUB_POLICY
2214 if (fl) {
2215 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2216 return 0;
2217 if (first->partner &&
2218 !xfrm_selector_match(first->partner, fl, family))
2219 return 0;
2220 }
2221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 last = NULL;
2224
2225 do {
2226 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2227
2228 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2229 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002230 if (fl && pol &&
2231 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2234 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002235 if (xdst->genid != dst->xfrm->genid)
2236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Herbert Xu1bfcb102007-10-17 21:31:50 -07002238 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002239 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002240 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2241 return 0;
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 mtu = dst_mtu(dst->child);
2244 if (xdst->child_mtu_cached != mtu) {
2245 last = xdst;
2246 xdst->child_mtu_cached = mtu;
2247 }
2248
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002249 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return 0;
2251 mtu = dst_mtu(xdst->route);
2252 if (xdst->route_mtu_cached != mtu) {
2253 last = xdst;
2254 xdst->route_mtu_cached = mtu;
2255 }
2256
2257 dst = dst->child;
2258 } while (dst->xfrm);
2259
2260 if (likely(!last))
2261 return 1;
2262
2263 mtu = last->child_mtu_cached;
2264 for (;;) {
2265 dst = &last->u.dst;
2266
2267 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2268 if (mtu > last->route_mtu_cached)
2269 mtu = last->route_mtu_cached;
2270 dst->metrics[RTAX_MTU-1] = mtu;
2271
2272 if (last == first)
2273 break;
2274
Patrick McHardybd0bf072007-07-18 01:55:52 -07002275 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 last->child_mtu_cached = mtu;
2277 }
2278
2279 return 1;
2280}
2281
2282EXPORT_SYMBOL(xfrm_bundle_ok);
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2285{
2286 int err = 0;
2287 if (unlikely(afinfo == NULL))
2288 return -EINVAL;
2289 if (unlikely(afinfo->family >= NPROTO))
2290 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002291 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2293 err = -ENOBUFS;
2294 else {
2295 struct dst_ops *dst_ops = afinfo->dst_ops;
2296 if (likely(dst_ops->kmem_cachep == NULL))
2297 dst_ops->kmem_cachep = xfrm_dst_cache;
2298 if (likely(dst_ops->check == NULL))
2299 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 if (likely(dst_ops->negative_advice == NULL))
2301 dst_ops->negative_advice = xfrm_negative_advice;
2302 if (likely(dst_ops->link_failure == NULL))
2303 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (likely(afinfo->garbage_collect == NULL))
2305 afinfo->garbage_collect = __xfrm_garbage_collect;
2306 xfrm_policy_afinfo[afinfo->family] = afinfo;
2307 }
Ingo Molnare959d812006-04-28 15:32:29 -07002308 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 return err;
2310}
2311EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2312
2313int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2314{
2315 int err = 0;
2316 if (unlikely(afinfo == NULL))
2317 return -EINVAL;
2318 if (unlikely(afinfo->family >= NPROTO))
2319 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002320 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2322 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2323 err = -EINVAL;
2324 else {
2325 struct dst_ops *dst_ops = afinfo->dst_ops;
2326 xfrm_policy_afinfo[afinfo->family] = NULL;
2327 dst_ops->kmem_cachep = NULL;
2328 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 dst_ops->negative_advice = NULL;
2330 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 afinfo->garbage_collect = NULL;
2332 }
2333 }
Ingo Molnare959d812006-04-28 15:32:29 -07002334 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 return err;
2336}
2337EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2338
2339static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2340{
2341 struct xfrm_policy_afinfo *afinfo;
2342 if (unlikely(family >= NPROTO))
2343 return NULL;
2344 read_lock(&xfrm_policy_afinfo_lock);
2345 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002346 if (unlikely(!afinfo))
2347 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 return afinfo;
2349}
2350
2351static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2352{
Herbert Xu546be242006-05-27 23:03:58 -07002353 read_unlock(&xfrm_policy_afinfo_lock);
2354}
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2357{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002358 struct net_device *dev = ptr;
2359
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07002360 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002361 return NOTIFY_DONE;
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 switch (event) {
2364 case NETDEV_DOWN:
2365 xfrm_flush_bundles();
2366 }
2367 return NOTIFY_DONE;
2368}
2369
2370static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002371 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372};
2373
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002374#ifdef CONFIG_XFRM_STATISTICS
2375static int __init xfrm_statistics_init(void)
2376{
2377 if (snmp_mib_init((void **)xfrm_statistics,
2378 sizeof(struct linux_xfrm_mib)) < 0)
2379 return -ENOMEM;
2380 return 0;
2381}
2382#endif
2383
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002384static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
David S. Miller2518c7c2006-08-24 04:45:07 -07002386 unsigned int hmask, sz;
2387 int dir;
2388
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002389 if (net_eq(net, &init_net))
2390 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002392 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002393 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
David S. Miller2518c7c2006-08-24 04:45:07 -07002395 hmask = 8 - 1;
2396 sz = (hmask+1) * sizeof(struct hlist_head);
2397
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002398 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2399 if (!net->xfrm.policy_byidx)
2400 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002401 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002402
2403 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2404 struct xfrm_policy_hash *htab;
2405
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002406 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002407 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002408
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002409 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002410 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002411 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002412 goto out_bydst;
2413 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002414 }
2415
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002416 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002417 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002418 if (net_eq(net, &init_net))
2419 register_netdevice_notifier(&xfrm_dev_notifier);
2420 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002421
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002422out_bydst:
2423 for (dir--; dir >= 0; dir--) {
2424 struct xfrm_policy_hash *htab;
2425
2426 htab = &net->xfrm.policy_bydst[dir];
2427 xfrm_hash_free(htab->table, sz);
2428 }
2429 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002430out_byidx:
2431 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002434static void xfrm_policy_fini(struct net *net)
2435{
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002436 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002437 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002438
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002439 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002440
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002441 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002442 struct xfrm_policy_hash *htab;
2443
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002444 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002445
2446 htab = &net->xfrm.policy_bydst[dir];
2447 sz = (htab->hmask + 1);
2448 WARN_ON(!hlist_empty(htab->table));
2449 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002450 }
2451
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002452 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002453 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2454 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002455}
2456
2457static int __net_init xfrm_net_init(struct net *net)
2458{
2459 int rv;
2460
2461 rv = xfrm_state_init(net);
2462 if (rv < 0)
2463 goto out_state;
2464 rv = xfrm_policy_init(net);
2465 if (rv < 0)
2466 goto out_policy;
2467 return 0;
2468
2469out_policy:
2470 xfrm_state_fini(net);
2471out_state:
2472 return rv;
2473}
2474
2475static void __net_exit xfrm_net_exit(struct net *net)
2476{
2477 xfrm_policy_fini(net);
2478 xfrm_state_fini(net);
2479}
2480
2481static struct pernet_operations __net_initdata xfrm_net_ops = {
2482 .init = xfrm_net_init,
2483 .exit = xfrm_net_exit,
2484};
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486void __init xfrm_init(void)
2487{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002488 register_pernet_subsys(&xfrm_net_ops);
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002489#ifdef CONFIG_XFRM_STATISTICS
2490 xfrm_statistics_init();
2491#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 xfrm_input_init();
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002493#ifdef CONFIG_XFRM_STATISTICS
2494 xfrm_proc_init();
2495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
Joy Lattenab5f5e82007-09-17 11:51:22 -07002498#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002499static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2500 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002501{
Paul Moore875179f2007-12-01 23:27:18 +11002502 struct xfrm_sec_ctx *ctx = xp->security;
2503 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002504
Paul Moore875179f2007-12-01 23:27:18 +11002505 if (ctx)
2506 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2507 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2508
2509 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002510 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002511 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002512 if (sel->prefixlen_s != 32)
2513 audit_log_format(audit_buf, " src_prefixlen=%d",
2514 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002515 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002516 if (sel->prefixlen_d != 32)
2517 audit_log_format(audit_buf, " dst_prefixlen=%d",
2518 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002519 break;
2520 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002521 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002522 if (sel->prefixlen_s != 128)
2523 audit_log_format(audit_buf, " src_prefixlen=%d",
2524 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002525 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002526 if (sel->prefixlen_d != 128)
2527 audit_log_format(audit_buf, " dst_prefixlen=%d",
2528 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002529 break;
2530 }
2531}
2532
Paul Moore68277ac2007-12-20 20:49:33 -08002533void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002534 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002535{
2536 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002537
Paul Mooreafeb14b2007-12-21 14:58:11 -08002538 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002539 if (audit_buf == NULL)
2540 return;
Eric Paris25323862008-04-18 10:09:25 -04002541 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002542 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002543 xfrm_audit_common_policyinfo(xp, audit_buf);
2544 audit_log_end(audit_buf);
2545}
2546EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2547
Paul Moore68277ac2007-12-20 20:49:33 -08002548void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002549 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002550{
2551 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002552
Paul Mooreafeb14b2007-12-21 14:58:11 -08002553 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002554 if (audit_buf == NULL)
2555 return;
Eric Paris25323862008-04-18 10:09:25 -04002556 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002557 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002558 xfrm_audit_common_policyinfo(xp, audit_buf);
2559 audit_log_end(audit_buf);
2560}
2561EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2562#endif
2563
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002564#ifdef CONFIG_XFRM_MIGRATE
2565static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2566 struct xfrm_selector *sel_tgt)
2567{
2568 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2569 if (sel_tgt->family == sel_cmp->family &&
2570 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002571 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002572 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2573 sel_cmp->family) == 0 &&
2574 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2575 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2576 return 1;
2577 }
2578 } else {
2579 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2580 return 1;
2581 }
2582 }
2583 return 0;
2584}
2585
2586static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2587 u8 dir, u8 type)
2588{
2589 struct xfrm_policy *pol, *ret = NULL;
2590 struct hlist_node *entry;
2591 struct hlist_head *chain;
2592 u32 priority = ~0U;
2593
2594 read_lock_bh(&xfrm_policy_lock);
2595 chain = policy_hash_direct(&sel->daddr, &sel->saddr, sel->family, dir);
2596 hlist_for_each_entry(pol, entry, chain, bydst) {
2597 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2598 pol->type == type) {
2599 ret = pol;
2600 priority = ret->priority;
2601 break;
2602 }
2603 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002604 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002605 hlist_for_each_entry(pol, entry, chain, bydst) {
2606 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2607 pol->type == type &&
2608 pol->priority < priority) {
2609 ret = pol;
2610 break;
2611 }
2612 }
2613
2614 if (ret)
2615 xfrm_pol_hold(ret);
2616
2617 read_unlock_bh(&xfrm_policy_lock);
2618
2619 return ret;
2620}
2621
2622static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2623{
2624 int match = 0;
2625
2626 if (t->mode == m->mode && t->id.proto == m->proto &&
2627 (m->reqid == 0 || t->reqid == m->reqid)) {
2628 switch (t->mode) {
2629 case XFRM_MODE_TUNNEL:
2630 case XFRM_MODE_BEET:
2631 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2632 m->old_family) == 0 &&
2633 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2634 m->old_family) == 0) {
2635 match = 1;
2636 }
2637 break;
2638 case XFRM_MODE_TRANSPORT:
2639 /* in case of transport mode, template does not store
2640 any IP addresses, hence we just compare mode and
2641 protocol */
2642 match = 1;
2643 break;
2644 default:
2645 break;
2646 }
2647 }
2648 return match;
2649}
2650
2651/* update endpoint address(es) of template(s) */
2652static int xfrm_policy_migrate(struct xfrm_policy *pol,
2653 struct xfrm_migrate *m, int num_migrate)
2654{
2655 struct xfrm_migrate *mp;
2656 struct dst_entry *dst;
2657 int i, j, n = 0;
2658
2659 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002660 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002661 /* target policy has been deleted */
2662 write_unlock_bh(&pol->lock);
2663 return -ENOENT;
2664 }
2665
2666 for (i = 0; i < pol->xfrm_nr; i++) {
2667 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2668 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2669 continue;
2670 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002671 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2672 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002673 continue;
2674 /* update endpoints */
2675 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2676 sizeof(pol->xfrm_vec[i].id.daddr));
2677 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2678 sizeof(pol->xfrm_vec[i].saddr));
2679 pol->xfrm_vec[i].encap_family = mp->new_family;
2680 /* flush bundles */
2681 while ((dst = pol->bundles) != NULL) {
2682 pol->bundles = dst->next;
2683 dst_free(dst);
2684 }
2685 }
2686 }
2687
2688 write_unlock_bh(&pol->lock);
2689
2690 if (!n)
2691 return -ENODATA;
2692
2693 return 0;
2694}
2695
2696static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2697{
2698 int i, j;
2699
2700 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2701 return -EINVAL;
2702
2703 for (i = 0; i < num_migrate; i++) {
2704 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2705 m[i].old_family) == 0) &&
2706 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2707 m[i].old_family) == 0))
2708 return -EINVAL;
2709 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2710 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2711 return -EINVAL;
2712
2713 /* check if there is any duplicated entry */
2714 for (j = i + 1; j < num_migrate; j++) {
2715 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2716 sizeof(m[i].old_daddr)) &&
2717 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2718 sizeof(m[i].old_saddr)) &&
2719 m[i].proto == m[j].proto &&
2720 m[i].mode == m[j].mode &&
2721 m[i].reqid == m[j].reqid &&
2722 m[i].old_family == m[j].old_family)
2723 return -EINVAL;
2724 }
2725 }
2726
2727 return 0;
2728}
2729
2730int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002731 struct xfrm_migrate *m, int num_migrate,
2732 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002733{
2734 int i, err, nx_cur = 0, nx_new = 0;
2735 struct xfrm_policy *pol = NULL;
2736 struct xfrm_state *x, *xc;
2737 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2738 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2739 struct xfrm_migrate *mp;
2740
2741 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2742 goto out;
2743
2744 /* Stage 1 - find policy */
2745 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2746 err = -ENOENT;
2747 goto out;
2748 }
2749
2750 /* Stage 2 - find and update state(s) */
2751 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2752 if ((x = xfrm_migrate_state_find(mp))) {
2753 x_cur[nx_cur] = x;
2754 nx_cur++;
2755 if ((xc = xfrm_state_migrate(x, mp))) {
2756 x_new[nx_new] = xc;
2757 nx_new++;
2758 } else {
2759 err = -ENODATA;
2760 goto restore_state;
2761 }
2762 }
2763 }
2764
2765 /* Stage 3 - update policy */
2766 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2767 goto restore_state;
2768
2769 /* Stage 4 - delete old state(s) */
2770 if (nx_cur) {
2771 xfrm_states_put(x_cur, nx_cur);
2772 xfrm_states_delete(x_cur, nx_cur);
2773 }
2774
2775 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002776 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002777
2778 xfrm_pol_put(pol);
2779
2780 return 0;
2781out:
2782 return err;
2783
2784restore_state:
2785 if (pol)
2786 xfrm_pol_put(pol);
2787 if (nx_cur)
2788 xfrm_states_put(x_cur, nx_cur);
2789 if (nx_new)
2790 xfrm_states_delete(x_new, nx_new);
2791
2792 return err;
2793}
David S. Millere610e672007-02-08 13:29:15 -08002794EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002795#endif