blob: 393cc65dbfa4a00b641fcdbbae513c0f9a1bd866 [file] [log] [blame]
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * xfrm_policy.c
3 *
4 * Changes:
5 * Mitsuru KANDA @USAGI
6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
8 * IPv6 support
9 * Kazunori MIYAZAWA @USAGI
10 * YOSHIFUJI Hideaki
11 * Split up af-specific portion
12 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
Trent Jaegerdf718372005-12-13 23:12:27 -080013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Herbert Xu66cdb3c2007-11-13 21:37:28 -080016#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/kmod.h>
19#include <linux/list.h>
20#include <linux/spinlock.h>
21#include <linux/workqueue.h>
22#include <linux/notifier.h>
23#include <linux/netdevice.h>
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -080024#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
David S. Miller2518c7c2006-08-24 04:45:07 -070026#include <linux/cache.h>
Paul Moore68277ac2007-12-20 20:49:33 -080027#include <linux/audit.h>
Herbert Xu25ee3282007-12-11 09:32:34 -080028#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/xfrm.h>
30#include <net/ip.h>
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080031#ifdef CONFIG_XFRM_STATISTICS
32#include <net/snmp.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David S. Miller44e36b42006-08-24 04:50:50 -070035#include "xfrm_hash.h"
36
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080037DEFINE_MUTEX(xfrm_cfg_mutex);
38EXPORT_SYMBOL(xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40static DEFINE_RWLOCK(xfrm_policy_lock);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
43static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
44
Christoph Lametere18b8902006-12-06 20:33:20 -080045static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
David S. Miller2518c7c2006-08-24 04:45:07 -070047static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
49
50static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
51static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080052static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Andrew Morton77681022006-11-08 22:46:26 -080054static inline int
55__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
56{
57 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
58 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
59 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
60 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
61 (fl->proto == sel->proto || !sel->proto) &&
62 (fl->oif == sel->ifindex || !sel->ifindex);
63}
64
65static inline int
66__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
67{
68 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
69 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
70 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
71 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
72 (fl->proto == sel->proto || !sel->proto) &&
73 (fl->oif == sel->ifindex || !sel->ifindex);
74}
75
76int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
77 unsigned short family)
78{
79 switch (family) {
80 case AF_INET:
81 return __xfrm4_selector_match(sel, fl);
82 case AF_INET6:
83 return __xfrm6_selector_match(sel, fl);
84 }
85 return 0;
86}
87
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -080088static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090089 xfrm_address_t *saddr,
90 xfrm_address_t *daddr,
91 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080093 struct xfrm_policy_afinfo *afinfo;
94 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Herbert Xu25ee3282007-12-11 09:32:34 -080096 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -080098 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800100 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900103
104 return dst;
105}
106
107static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
108 xfrm_address_t *prev_saddr,
109 xfrm_address_t *prev_daddr,
110 int family)
111{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800112 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900113 xfrm_address_t *saddr = &x->props.saddr;
114 xfrm_address_t *daddr = &x->id.daddr;
115 struct dst_entry *dst;
116
117 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
118 saddr = x->coaddr;
119 daddr = prev_daddr;
120 }
121 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
122 saddr = prev_saddr;
123 daddr = x->coaddr;
124 }
125
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800126 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900127
128 if (!IS_ERR(dst)) {
129 if (prev_saddr != saddr)
130 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
131 if (prev_daddr != daddr)
132 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
133 }
134
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800135 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static inline unsigned long make_jiffies(long secs)
139{
140 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
141 return MAX_SCHEDULE_TIMEOUT-1;
142 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900143 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146static void xfrm_policy_timer(unsigned long data)
147{
148 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800149 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 long next = LONG_MAX;
151 int warn = 0;
152 int dir;
153
154 read_lock(&xp->lock);
155
Herbert Xu12a169e2008-10-01 07:03:24 -0700156 if (xp->walk.dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 goto out;
158
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700159 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 if (xp->lft.hard_add_expires_seconds) {
162 long tmo = xp->lft.hard_add_expires_seconds +
163 xp->curlft.add_time - now;
164 if (tmo <= 0)
165 goto expired;
166 if (tmo < next)
167 next = tmo;
168 }
169 if (xp->lft.hard_use_expires_seconds) {
170 long tmo = xp->lft.hard_use_expires_seconds +
171 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
172 if (tmo <= 0)
173 goto expired;
174 if (tmo < next)
175 next = tmo;
176 }
177 if (xp->lft.soft_add_expires_seconds) {
178 long tmo = xp->lft.soft_add_expires_seconds +
179 xp->curlft.add_time - now;
180 if (tmo <= 0) {
181 warn = 1;
182 tmo = XFRM_KM_TIMEOUT;
183 }
184 if (tmo < next)
185 next = tmo;
186 }
187 if (xp->lft.soft_use_expires_seconds) {
188 long tmo = xp->lft.soft_use_expires_seconds +
189 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
190 if (tmo <= 0) {
191 warn = 1;
192 tmo = XFRM_KM_TIMEOUT;
193 }
194 if (tmo < next)
195 next = tmo;
196 }
197
198 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800199 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (next != LONG_MAX &&
201 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
202 xfrm_pol_hold(xp);
203
204out:
205 read_unlock(&xp->lock);
206 xfrm_pol_put(xp);
207 return;
208
209expired:
210 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700211 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800212 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 xfrm_pol_put(xp);
214}
215
216
217/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
218 * SPD calls.
219 */
220
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800221struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct xfrm_policy *policy;
224
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700225 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800228 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700229 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700230 INIT_HLIST_NODE(&policy->bydst);
231 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700233 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800234 setup_timer(&policy->timer, xfrm_policy_timer,
235 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 return policy;
238}
239EXPORT_SYMBOL(xfrm_policy_alloc);
240
241/* Destroy xfrm_policy: descendant resources must be released to this moment. */
242
WANG Cong64c31b32008-01-07 22:34:29 -0800243void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Herbert Xu12a169e2008-10-01 07:03:24 -0700245 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Kris Katterjohn09a62662006-01-08 22:24:28 -0800247 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (del_timer(&policy->timer))
250 BUG();
251
Paul Moore03e1ad72008-04-12 19:07:52 -0700252 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 kfree(policy);
254}
WANG Cong64c31b32008-01-07 22:34:29 -0800255EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
258{
259 struct dst_entry *dst;
260
261 while ((dst = policy->bundles) != NULL) {
262 policy->bundles = dst->next;
263 dst_free(dst);
264 }
265
266 if (del_timer(&policy->timer))
267 atomic_dec(&policy->refcnt);
268
269 if (atomic_read(&policy->refcnt) > 1)
270 flow_cache_flush();
271
272 xfrm_pol_put(policy);
273}
274
David Howellsc4028952006-11-22 14:57:56 +0000275static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700278 struct hlist_node *entry, *tmp;
279 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700282 gc_list.first = xfrm_policy_gc_list.first;
283 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 spin_unlock_bh(&xfrm_policy_gc_lock);
285
David S. Miller2518c7c2006-08-24 04:45:07 -0700286 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
Alexey Dobriyanc9583962008-11-25 17:13:59 -0800289static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291/* Rule must be locked. Release descentant resources, announce
292 * entry dead. The rule must be unlinked from lists to the moment.
293 */
294
295static void xfrm_policy_kill(struct xfrm_policy *policy)
296{
297 int dead;
298
299 write_lock_bh(&policy->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700300 dead = policy->walk.dead;
301 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 write_unlock_bh(&policy->lock);
303
304 if (unlikely(dead)) {
305 WARN_ON(1);
306 return;
307 }
308
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800309 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700310 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800311 spin_unlock_bh(&xfrm_policy_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 schedule_work(&xfrm_policy_gc_work);
314}
315
David S. Miller2518c7c2006-08-24 04:45:07 -0700316static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
317
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800318static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700319{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800320 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700321}
322
Alexey Dobriyan11219942008-11-25 17:33:06 -0800323static struct hlist_head *policy_hash_bysel(struct net *net, struct xfrm_selector *sel, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700324{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800325 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700326 unsigned int hash = __sel_hash(sel, family, hmask);
327
328 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800329 &net->xfrm.policy_inexact[dir] :
330 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700331}
332
Alexey Dobriyan11219942008-11-25 17:33:06 -0800333static struct hlist_head *policy_hash_direct(struct net *net, xfrm_address_t *daddr, xfrm_address_t *saddr, unsigned short family, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700334{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800335 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700336 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
337
Alexey Dobriyan11219942008-11-25 17:33:06 -0800338 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700339}
340
David S. Miller2518c7c2006-08-24 04:45:07 -0700341static void xfrm_dst_hash_transfer(struct hlist_head *list,
342 struct hlist_head *ndsttable,
343 unsigned int nhashmask)
344{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800345 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700346 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800347 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700348
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800349redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700350 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
351 unsigned int h;
352
353 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
354 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800355 if (!entry0) {
356 hlist_del(entry);
357 hlist_add_head(&pol->bydst, ndsttable+h);
358 h0 = h;
359 } else {
360 if (h != h0)
361 continue;
362 hlist_del(entry);
363 hlist_add_after(entry0, &pol->bydst);
364 }
365 entry0 = entry;
366 }
367 if (!hlist_empty(list)) {
368 entry0 = NULL;
369 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700370 }
371}
372
373static void xfrm_idx_hash_transfer(struct hlist_head *list,
374 struct hlist_head *nidxtable,
375 unsigned int nhashmask)
376{
377 struct hlist_node *entry, *tmp;
378 struct xfrm_policy *pol;
379
380 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
381 unsigned int h;
382
383 h = __idx_hash(pol->index, nhashmask);
384 hlist_add_head(&pol->byidx, nidxtable+h);
385 }
386}
387
388static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
389{
390 return ((old_hmask + 1) << 1) - 1;
391}
392
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800393static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700394{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800395 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700396 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
397 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800398 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700399 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700400 int i;
401
402 if (!ndst)
403 return;
404
405 write_lock_bh(&xfrm_policy_lock);
406
407 for (i = hmask; i >= 0; i--)
408 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
409
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800410 net->xfrm.policy_bydst[dir].table = ndst;
411 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700412
413 write_unlock_bh(&xfrm_policy_lock);
414
David S. Miller44e36b42006-08-24 04:50:50 -0700415 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700416}
417
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800418static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700419{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800420 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700421 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
422 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800423 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700424 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700425 int i;
426
427 if (!nidx)
428 return;
429
430 write_lock_bh(&xfrm_policy_lock);
431
432 for (i = hmask; i >= 0; i--)
433 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
434
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800435 net->xfrm.policy_byidx = nidx;
436 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700437
438 write_unlock_bh(&xfrm_policy_lock);
439
David S. Miller44e36b42006-08-24 04:50:50 -0700440 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700441}
442
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800443static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700444{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800445 unsigned int cnt = net->xfrm.policy_count[dir];
446 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700447
448 if (total)
449 *total += cnt;
450
451 if ((hmask + 1) < xfrm_policy_hashmax &&
452 cnt > hmask)
453 return 1;
454
455 return 0;
456}
457
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800458static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700459{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800460 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700461
462 if ((hmask + 1) < xfrm_policy_hashmax &&
463 total > hmask)
464 return 1;
465
466 return 0;
467}
468
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700469void xfrm_spd_getinfo(struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700470{
471 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800472 si->incnt = init_net.xfrm.policy_count[XFRM_POLICY_IN];
473 si->outcnt = init_net.xfrm.policy_count[XFRM_POLICY_OUT];
474 si->fwdcnt = init_net.xfrm.policy_count[XFRM_POLICY_FWD];
475 si->inscnt = init_net.xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
476 si->outscnt = init_net.xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
477 si->fwdscnt = init_net.xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
Alexey Dobriyan8100bea2008-11-25 17:22:58 -0800478 si->spdhcnt = init_net.xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700479 si->spdhmcnt = xfrm_policy_hashmax;
480 read_unlock_bh(&xfrm_policy_lock);
481}
482EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700483
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700484static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800485static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700486{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800487 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700488 int dir, total;
489
490 mutex_lock(&hash_resize_mutex);
491
492 total = 0;
493 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800494 if (xfrm_bydst_should_resize(net, dir, &total))
495 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700496 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800497 if (xfrm_byidx_should_resize(net, total))
498 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700499
500 mutex_unlock(&hash_resize_mutex);
501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/* Generate new index... KAME seems to generate them ordered by cost
504 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800505static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 static u32 idx_generator;
508
509 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700510 struct hlist_node *entry;
511 struct hlist_head *list;
512 struct xfrm_policy *p;
513 u32 idx;
514 int found;
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 idx = (idx_generator | dir);
517 idx_generator += 8;
518 if (idx == 0)
519 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800520 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700521 found = 0;
522 hlist_for_each_entry(p, entry, list, byidx) {
523 if (p->index == idx) {
524 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700528 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return idx;
530 }
531}
532
David S. Miller2518c7c2006-08-24 04:45:07 -0700533static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
534{
535 u32 *p1 = (u32 *) s1;
536 u32 *p2 = (u32 *) s2;
537 int len = sizeof(struct xfrm_selector) / sizeof(u32);
538 int i;
539
540 for (i = 0; i < len; i++) {
541 if (p1[i] != p2[i])
542 return 1;
543 }
544
545 return 0;
546}
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
549{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800550 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700551 struct xfrm_policy *pol;
552 struct xfrm_policy *delpol;
553 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800554 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800555 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800558 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700559 delpol = NULL;
560 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700561 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800562 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700563 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800564 xfrm_sec_ctx_match(pol->security, policy->security) &&
565 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (excl) {
567 write_unlock_bh(&xfrm_policy_lock);
568 return -EEXIST;
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 delpol = pol;
571 if (policy->priority > pol->priority)
572 continue;
573 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800574 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 continue;
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (delpol)
578 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700581 hlist_add_after(newpos, &policy->bydst);
582 else
583 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800585 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700587 if (delpol) {
588 hlist_del(&delpol->bydst);
589 hlist_del(&delpol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700590 list_del(&delpol->walk.all);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800591 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700592 }
Alexey Dobriyan11219942008-11-25 17:33:06 -0800593 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
594 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800595 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 policy->curlft.use_time = 0;
597 if (!mod_timer(&policy->timer, jiffies + HZ))
598 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800599 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 write_unlock_bh(&xfrm_policy_lock);
601
David S. Miller9b78a822005-12-22 07:39:48 -0800602 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800604 else if (xfrm_bydst_should_resize(net, dir, NULL))
605 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800606
607 read_lock_bh(&xfrm_policy_lock);
608 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700609 entry = &policy->bydst;
610 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800611 struct dst_entry *dst;
612
613 write_lock(&policy->lock);
614 dst = policy->bundles;
615 if (dst) {
616 struct dst_entry *tail = dst;
617 while (tail->next)
618 tail = tail->next;
619 tail->next = gc_list;
620 gc_list = dst;
621
622 policy->bundles = NULL;
623 }
624 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
David S. Miller9b78a822005-12-22 07:39:48 -0800626 read_unlock_bh(&xfrm_policy_lock);
627
628 while (gc_list) {
629 struct dst_entry *dst = gc_list;
630
631 gc_list = dst->next;
632 dst_free(dst);
633 }
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 0;
636}
637EXPORT_SYMBOL(xfrm_policy_insert);
638
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800639struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u8 type, int dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700640 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800641 struct xfrm_sec_ctx *ctx, int delete,
642 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
David S. Miller2518c7c2006-08-24 04:45:07 -0700644 struct xfrm_policy *pol, *ret;
645 struct hlist_head *chain;
646 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Eric Parisef41aaa2007-03-07 15:37:58 -0800648 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800650 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700651 ret = NULL;
652 hlist_for_each_entry(pol, entry, chain, bydst) {
653 if (pol->type == type &&
654 !selector_cmp(sel, &pol->selector) &&
655 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700657 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700658 *err = security_xfrm_policy_delete(
659 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800660 if (*err) {
661 write_unlock_bh(&xfrm_policy_lock);
662 return pol;
663 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700664 hlist_del(&pol->bydst);
665 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700666 list_del(&pol->walk.all);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800667 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700668 }
669 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 break;
671 }
672 }
673 write_unlock_bh(&xfrm_policy_lock);
674
David S. Miller2518c7c2006-08-24 04:45:07 -0700675 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700677 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700679 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
Trent Jaegerdf718372005-12-13 23:12:27 -0800681EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800683struct xfrm_policy *xfrm_policy_byid(struct net *net, u8 type, int dir, u32 id,
684 int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
David S. Miller2518c7c2006-08-24 04:45:07 -0700686 struct xfrm_policy *pol, *ret;
687 struct hlist_head *chain;
688 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Herbert Xub5505c62007-05-14 02:15:47 -0700690 *err = -ENOENT;
691 if (xfrm_policy_id2dir(id) != dir)
692 return NULL;
693
Eric Parisef41aaa2007-03-07 15:37:58 -0800694 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800696 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700697 ret = NULL;
698 hlist_for_each_entry(pol, entry, chain, byidx) {
699 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700701 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700702 *err = security_xfrm_policy_delete(
703 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800704 if (*err) {
705 write_unlock_bh(&xfrm_policy_lock);
706 return pol;
707 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700708 hlist_del(&pol->bydst);
709 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700710 list_del(&pol->walk.all);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800711 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700712 }
713 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
715 }
716 }
717 write_unlock_bh(&xfrm_policy_lock);
718
David S. Miller2518c7c2006-08-24 04:45:07 -0700719 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700721 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700723 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725EXPORT_SYMBOL(xfrm_policy_byid);
726
Joy Latten4aa2e622007-06-04 19:05:57 -0400727#ifdef CONFIG_SECURITY_NETWORK_XFRM
728static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800729xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Joy Latten4aa2e622007-06-04 19:05:57 -0400731 int dir, err = 0;
732
733 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
734 struct xfrm_policy *pol;
735 struct hlist_node *entry;
736 int i;
737
738 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800739 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400740 if (pol->type != type)
741 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700742 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400743 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700744 xfrm_audit_policy_delete(pol, 0,
745 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400746 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700747 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400748 return err;
749 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900750 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800751 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400752 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800753 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400754 bydst) {
755 if (pol->type != type)
756 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700757 err = security_xfrm_policy_delete(
758 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400759 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700760 xfrm_audit_policy_delete(pol, 0,
761 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400762 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700763 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400764 return err;
765 }
766 }
767 }
768 }
769 return err;
770}
771#else
772static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800773xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400774{
775 return 0;
776}
777#endif
778
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800779int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400780{
781 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400784
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800785 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400786 if (err)
787 goto out;
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700790 struct xfrm_policy *pol;
791 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700792 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700793
David S. Millerae8c0572006-10-03 16:00:26 -0700794 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700795 again1:
796 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800797 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700798 if (pol->type != type)
799 continue;
800 hlist_del(&pol->bydst);
801 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 write_unlock_bh(&xfrm_policy_lock);
803
Joy Lattenab5f5e82007-09-17 11:51:22 -0700804 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400805 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700806 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600807
David S. Miller2518c7c2006-08-24 04:45:07 -0700808 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700809 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700812 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700814
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800815 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700816 again2:
817 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800818 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700819 bydst) {
820 if (pol->type != type)
821 continue;
822 hlist_del(&pol->bydst);
823 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700824 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700825 write_unlock_bh(&xfrm_policy_lock);
826
Joy Lattenab5f5e82007-09-17 11:51:22 -0700827 xfrm_audit_policy_delete(pol, 1,
828 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400829 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700830 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700831 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700832 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700833
834 write_lock_bh(&xfrm_policy_lock);
835 goto again2;
836 }
837 }
838
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800839 net->xfrm.policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400842out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400844 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846EXPORT_SYMBOL(xfrm_policy_flush);
847
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800848int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800849 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 void *data)
851{
Herbert Xu12a169e2008-10-01 07:03:24 -0700852 struct xfrm_policy *pol;
853 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800854 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Timo Teras4c563f72008-02-28 21:31:08 -0800856 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
857 walk->type != XFRM_POLICY_TYPE_ANY)
858 return -EINVAL;
859
Herbert Xu12a169e2008-10-01 07:03:24 -0700860 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800861 return 0;
862
Herbert Xu12a169e2008-10-01 07:03:24 -0700863 write_lock_bh(&xfrm_policy_lock);
864 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800865 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700866 else
867 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800868 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700869 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800870 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700871 pol = container_of(x, struct xfrm_policy, walk);
872 if (walk->type != XFRM_POLICY_TYPE_ANY &&
873 walk->type != pol->type)
874 continue;
875 error = func(pol, xfrm_policy_id2dir(pol->index),
876 walk->seq, data);
877 if (error) {
878 list_move_tail(&walk->walk.all, &x->all);
879 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800880 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700881 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700883 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800884 error = -ENOENT;
885 goto out;
886 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700887 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700889 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return error;
891}
892EXPORT_SYMBOL(xfrm_policy_walk);
893
Herbert Xu12a169e2008-10-01 07:03:24 -0700894void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
895{
896 INIT_LIST_HEAD(&walk->walk.all);
897 walk->walk.dead = 1;
898 walk->type = type;
899 walk->seq = 0;
900}
901EXPORT_SYMBOL(xfrm_policy_walk_init);
902
903void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
904{
905 if (list_empty(&walk->walk.all))
906 return;
907
908 write_lock_bh(&xfrm_policy_lock);
909 list_del(&walk->walk.all);
910 write_unlock_bh(&xfrm_policy_lock);
911}
912EXPORT_SYMBOL(xfrm_policy_walk_done);
913
James Morris134b0fc2006-10-05 15:42:27 -0500914/*
915 * Find policy to apply to this flow.
916 *
917 * Returns 0 if policy found, else an -errno.
918 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700919static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
920 u8 type, u16 family, int dir)
921{
922 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500923 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700924
925 if (pol->family != family ||
926 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500927 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700928
929 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500930 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700931 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
932 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700933
James Morris134b0fc2006-10-05 15:42:27 -0500934 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700935}
936
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800937static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
938 struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700939 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
James Morris134b0fc2006-10-05 15:42:27 -0500941 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700942 struct xfrm_policy *pol, *ret;
943 xfrm_address_t *daddr, *saddr;
944 struct hlist_node *entry;
945 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700946 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700947
948 daddr = xfrm_flowi_daddr(fl, family);
949 saddr = xfrm_flowi_saddr(fl, family);
950 if (unlikely(!daddr || !saddr))
951 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800954 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700955 ret = NULL;
956 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500957 err = xfrm_policy_match(pol, fl, type, family, dir);
958 if (err) {
959 if (err == -ESRCH)
960 continue;
961 else {
962 ret = ERR_PTR(err);
963 goto fail;
964 }
965 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700966 ret = pol;
967 priority = ret->priority;
968 break;
969 }
970 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800971 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700972 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500973 err = xfrm_policy_match(pol, fl, type, family, dir);
974 if (err) {
975 if (err == -ESRCH)
976 continue;
977 else {
978 ret = ERR_PTR(err);
979 goto fail;
980 }
981 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700982 ret = pol;
983 break;
984 }
985 }
David S. Milleracba48e2006-08-25 15:46:46 -0700986 if (ret)
987 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500988fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700990
David S. Miller2518c7c2006-08-24 04:45:07 -0700991 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700992}
993
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800994static int xfrm_policy_lookup(struct net *net, struct flowi *fl, u16 family,
995 u8 dir, void **objp, atomic_t **obj_refp)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700996{
997 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -0500998 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700999
1000#ifdef CONFIG_XFRM_SUB_POLICY
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001001 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001002 if (IS_ERR(pol)) {
1003 err = PTR_ERR(pol);
1004 pol = NULL;
1005 }
1006 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001007 goto end;
1008#endif
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001009 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001010 if (IS_ERR(pol)) {
1011 err = PTR_ERR(pol);
1012 pol = NULL;
1013 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001014#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001015end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001016#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if ((*objp = (void *) pol) != NULL)
1018 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001019 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Trent Jaegerdf718372005-12-13 23:12:27 -08001022static inline int policy_to_flow_dir(int dir)
1023{
1024 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001025 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1026 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1027 return dir;
1028 switch (dir) {
1029 default:
1030 case XFRM_POLICY_IN:
1031 return FLOW_DIR_IN;
1032 case XFRM_POLICY_OUT:
1033 return FLOW_DIR_OUT;
1034 case XFRM_POLICY_FWD:
1035 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001036 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001037}
1038
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001039static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 struct xfrm_policy *pol;
1042
1043 read_lock_bh(&xfrm_policy_lock);
1044 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001045 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001047 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001048
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001049 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001050 err = security_xfrm_policy_lookup(pol->security,
1051 fl->secid,
1052 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001053 if (!err)
1054 xfrm_pol_hold(pol);
1055 else if (err == -ESRCH)
1056 pol = NULL;
1057 else
1058 pol = ERR_PTR(err);
1059 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 pol = NULL;
1061 }
1062 read_unlock_bh(&xfrm_policy_lock);
1063 return pol;
1064}
1065
1066static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1067{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001068 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001069 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001070 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001071
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001072 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001073 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001074 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001075 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001077
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001078 if (xfrm_bydst_should_resize(net, dir, NULL))
1079 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1083 int dir)
1084{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001085 struct net *net = xp_net(pol);
1086
David S. Miller2518c7c2006-08-24 04:45:07 -07001087 if (hlist_unhashed(&pol->bydst))
1088 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
David S. Miller2518c7c2006-08-24 04:45:07 -07001090 hlist_del(&pol->bydst);
1091 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001092 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001093 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001094
1095 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Herbert Xu4666faa2005-06-18 22:43:22 -07001098int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 write_lock_bh(&xfrm_policy_lock);
1101 pol = __xfrm_policy_unlink(pol, dir);
1102 write_unlock_bh(&xfrm_policy_lock);
1103 if (pol) {
1104 if (dir < XFRM_POLICY_MAX)
1105 atomic_inc(&flow_cache_genid);
1106 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001107 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001109 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
David S. Millera70fcb02006-03-20 19:18:52 -08001111EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1114{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001115 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 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();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001128 pol->index = xfrm_gen_index(net, 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
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001183xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001184 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;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001191 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001192 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{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001203 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 int nx;
1205 int i, error;
1206 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1207 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001208 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1211 struct xfrm_state *x;
1212 xfrm_address_t *remote = daddr;
1213 xfrm_address_t *local = saddr;
1214 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1215
Joakim Koskela48b8d782007-07-26 00:08:42 -07001216 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1217 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 remote = &tmpl->id.daddr;
1219 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001220 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001221 if (xfrm_addr_any(local, family)) {
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001222 error = xfrm_get_saddr(net, &tmp, remote, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001223 if (error)
1224 goto fail;
1225 local = &tmp;
1226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
1229 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1230
1231 if (x && x->km.state == XFRM_STATE_VALID) {
1232 xfrm[nx++] = x;
1233 daddr = remote;
1234 saddr = local;
1235 continue;
1236 }
1237 if (x) {
1238 error = (x->km.state == XFRM_STATE_ERROR ?
1239 -EINVAL : -EAGAIN);
1240 xfrm_state_put(x);
1241 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001242 else if (error == -ESRCH)
1243 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 if (!tmpl->optional)
1246 goto fail;
1247 }
1248 return nx;
1249
1250fail:
1251 for (nx--; nx>=0; nx--)
1252 xfrm_state_put(xfrm[nx]);
1253 return error;
1254}
1255
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001256static int
1257xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1258 struct xfrm_state **xfrm,
1259 unsigned short family)
1260{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001261 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1262 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001263 int cnx = 0;
1264 int error;
1265 int ret;
1266 int i;
1267
1268 for (i = 0; i < npols; i++) {
1269 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1270 error = -ENOBUFS;
1271 goto fail;
1272 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001273
1274 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001275 if (ret < 0) {
1276 error = ret;
1277 goto fail;
1278 } else
1279 cnx += ret;
1280 }
1281
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001282 /* found states are sorted for outbound processing */
1283 if (npols > 1)
1284 xfrm_state_sort(xfrm, tpp, cnx, family);
1285
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001286 return cnx;
1287
1288 fail:
1289 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001290 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001291 return error;
1292
1293}
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295/* Check that the bundle accepts the flow and its components are
1296 * still valid.
1297 */
1298
1299static struct dst_entry *
1300xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1301{
1302 struct dst_entry *x;
1303 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1304 if (unlikely(afinfo == NULL))
1305 return ERR_PTR(-EINVAL);
1306 x = afinfo->find_bundle(fl, policy);
1307 xfrm_policy_put_afinfo(afinfo);
1308 return x;
1309}
1310
Herbert Xu25ee3282007-12-11 09:32:34 -08001311static inline int xfrm_get_tos(struct flowi *fl, int family)
1312{
1313 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1314 int tos;
1315
1316 if (!afinfo)
1317 return -EINVAL;
1318
1319 tos = afinfo->get_tos(fl);
1320
1321 xfrm_policy_put_afinfo(afinfo);
1322
1323 return tos;
1324}
1325
1326static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1327{
1328 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1329 struct xfrm_dst *xdst;
1330
1331 if (!afinfo)
1332 return ERR_PTR(-EINVAL);
1333
1334 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1335
1336 xfrm_policy_put_afinfo(afinfo);
1337
1338 return xdst;
1339}
1340
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001341static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1342 int nfheader_len)
1343{
1344 struct xfrm_policy_afinfo *afinfo =
1345 xfrm_policy_get_afinfo(dst->ops->family);
1346 int err;
1347
1348 if (!afinfo)
1349 return -EINVAL;
1350
1351 err = afinfo->init_path(path, dst, nfheader_len);
1352
1353 xfrm_policy_put_afinfo(afinfo);
1354
1355 return err;
1356}
1357
Herbert Xu25ee3282007-12-11 09:32:34 -08001358static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1359{
1360 struct xfrm_policy_afinfo *afinfo =
1361 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1362 int err;
1363
1364 if (!afinfo)
1365 return -EINVAL;
1366
1367 err = afinfo->fill_dst(xdst, dev);
1368
1369 xfrm_policy_put_afinfo(afinfo);
1370
1371 return err;
1372}
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1375 * all the metrics... Shortly, bundle a bundle.
1376 */
1377
Herbert Xu25ee3282007-12-11 09:32:34 -08001378static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1379 struct xfrm_state **xfrm, int nx,
1380 struct flowi *fl,
1381 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Herbert Xu25ee3282007-12-11 09:32:34 -08001383 unsigned long now = jiffies;
1384 struct net_device *dev;
1385 struct dst_entry *dst_prev = NULL;
1386 struct dst_entry *dst0 = NULL;
1387 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001389 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001390 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001391 int trailer_len = 0;
1392 int tos;
1393 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001394 xfrm_address_t saddr, daddr;
1395
1396 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001397
1398 tos = xfrm_get_tos(fl, family);
1399 err = tos;
1400 if (tos < 0)
1401 goto put_states;
1402
1403 dst_hold(dst);
1404
1405 for (; i < nx; i++) {
1406 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1407 struct dst_entry *dst1 = &xdst->u.dst;
1408
1409 err = PTR_ERR(xdst);
1410 if (IS_ERR(xdst)) {
1411 dst_release(dst);
1412 goto put_states;
1413 }
1414
1415 if (!dst_prev)
1416 dst0 = dst1;
1417 else {
1418 dst_prev->child = dst_clone(dst1);
1419 dst1->flags |= DST_NOHASH;
1420 }
1421
1422 xdst->route = dst;
1423 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1424
1425 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1426 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001427 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1428 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001429 err = PTR_ERR(dst);
1430 if (IS_ERR(dst))
1431 goto put_states;
1432 } else
1433 dst_hold(dst);
1434
1435 dst1->xfrm = xfrm[i];
1436 xdst->genid = xfrm[i]->genid;
1437
1438 dst1->obsolete = -1;
1439 dst1->flags |= DST_HOST;
1440 dst1->lastuse = now;
1441
1442 dst1->input = dst_discard;
1443 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1444
1445 dst1->next = dst_prev;
1446 dst_prev = dst1;
1447
1448 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001449 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1450 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001451 trailer_len += xfrm[i]->props.trailer_len;
1452 }
1453
1454 dst_prev->child = dst;
1455 dst0->path = dst;
1456
1457 err = -ENODEV;
1458 dev = dst->dev;
1459 if (!dev)
1460 goto free_dst;
1461
1462 /* Copy neighbout for reachability confirmation */
1463 dst0->neighbour = neigh_clone(dst->neighbour);
1464
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001465 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001466 xfrm_init_pmtu(dst_prev);
1467
1468 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1469 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1470
1471 err = xfrm_fill_dst(xdst, dev);
1472 if (err)
1473 goto free_dst;
1474
1475 dst_prev->header_len = header_len;
1476 dst_prev->trailer_len = trailer_len;
1477 header_len -= xdst->u.dst.xfrm->props.header_len;
1478 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1479 }
1480
1481out:
1482 return dst0;
1483
1484put_states:
1485 for (; i < nx; i++)
1486 xfrm_state_put(xfrm[i]);
1487free_dst:
1488 if (dst0)
1489 dst_free(dst0);
1490 dst0 = ERR_PTR(err);
1491 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001494static int inline
1495xfrm_dst_alloc_copy(void **target, void *src, int size)
1496{
1497 if (!*target) {
1498 *target = kmalloc(size, GFP_ATOMIC);
1499 if (!*target)
1500 return -ENOMEM;
1501 }
1502 memcpy(*target, src, size);
1503 return 0;
1504}
1505
1506static int inline
1507xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1508{
1509#ifdef CONFIG_XFRM_SUB_POLICY
1510 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1511 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1512 sel, sizeof(*sel));
1513#else
1514 return 0;
1515#endif
1516}
1517
1518static int inline
1519xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1520{
1521#ifdef CONFIG_XFRM_SUB_POLICY
1522 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1523 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1524#else
1525 return 0;
1526#endif
1527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529static int stale_bundle(struct dst_entry *dst);
1530
1531/* Main function: finds/creates a bundle for given flow.
1532 *
1533 * At the moment we eat a raw IP route. Mostly to speed up lookups
1534 * on interfaces with disabled IPsec.
1535 */
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001536int __xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001537 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001540 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1541 int npols;
1542 int pol_dead;
1543 int xfrm_nr;
1544 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1546 struct dst_entry *dst, *dst_orig = *dst_p;
1547 int nx = 0;
1548 int err;
1549 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001550 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001551 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553restart:
1554 genid = atomic_read(&flow_cache_genid);
1555 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001556 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1557 pols[pi] = NULL;
1558 npols = 0;
1559 pol_dead = 0;
1560 xfrm_nr = 0;
1561
Thomas Graff7944fb2007-08-25 13:46:55 -07001562 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001563 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001564 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001565 if (IS_ERR(policy)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001566 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001567 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001568 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 if (!policy) {
1572 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001573 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001574 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001575 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001577 policy = flow_cache_lookup(net, fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001578 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001579 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001580 if (IS_ERR(policy)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001581 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001582 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
1585
1586 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001587 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001589 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001590 pols[0] = policy;
1591 npols ++;
1592 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Herbert Xuaef21782007-12-13 09:30:59 -08001594 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001595 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1596 goto error;
1597
1598 policy->curlft.use_time = get_seconds();
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001601 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 case XFRM_POLICY_BLOCK:
1603 /* Prohibit the flow */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001604 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07001605 err = -EPERM;
1606 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001609#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (policy->xfrm_nr == 0) {
1611 /* Flow passes not transformed. */
1612 xfrm_pol_put(policy);
1613 return 0;
1614 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001615#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 /* Try to find matching bundle.
1618 *
1619 * LATER: help from flow cache. It is optional, this
1620 * is required only for output policy.
1621 */
1622 dst = xfrm_find_bundle(fl, policy, family);
1623 if (IS_ERR(dst)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001624 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye104411b2005-09-08 15:11:55 -07001625 err = PTR_ERR(dst);
1626 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
1628
1629 if (dst)
1630 break;
1631
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001632#ifdef CONFIG_XFRM_SUB_POLICY
1633 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001634 pols[1] = xfrm_policy_lookup_bytype(net,
1635 XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001636 fl, family,
1637 XFRM_POLICY_OUT);
1638 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001639 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001640 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001641 err = PTR_ERR(pols[1]);
1642 goto error;
1643 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001644 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001645 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001646 err = -EPERM;
1647 goto error;
1648 }
1649 npols ++;
1650 xfrm_nr += pols[1]->xfrm_nr;
1651 }
1652 }
1653
1654 /*
1655 * Because neither flowi nor bundle information knows about
1656 * transformation template size. On more than one policy usage
1657 * we can realize whether all of them is bypass or not after
1658 * they are searched. See above not-transformed bypass
1659 * is surrounded by non-sub policy configuration, too.
1660 */
1661 if (xfrm_nr == 0) {
1662 /* Flow passes not transformed. */
1663 xfrm_pols_put(pols, npols);
1664 return 0;
1665 }
1666
1667#endif
1668 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 if (unlikely(nx<0)) {
1671 err = nx;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08001672 if (err == -EAGAIN && net->xfrm.sysctl_larval_drop) {
David S. Miller14e50e52007-05-24 18:17:54 -07001673 /* EREMOTE tells the caller to generate
1674 * a one-shot blackhole route.
1675 */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001676 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001677 xfrm_pol_put(policy);
1678 return -EREMOTE;
1679 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001680 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 DECLARE_WAITQUEUE(wait, current);
1682
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001683 add_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 set_current_state(TASK_INTERRUPTIBLE);
1685 schedule();
1686 set_current_state(TASK_RUNNING);
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001687 remove_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001689 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 if (nx == -EAGAIN && signal_pending(current)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001692 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 err = -ERESTART;
1694 goto error;
1695 }
1696 if (nx == -EAGAIN ||
1697 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001698 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 goto restart;
1700 }
1701 err = nx;
1702 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001703 if (err < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001704 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
1708 if (nx == 0) {
1709 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001710 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 return 0;
1712 }
1713
Herbert Xu25ee3282007-12-11 09:32:34 -08001714 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1715 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001716 if (IS_ERR(dst)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001717 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001721 for (pi = 0; pi < npols; pi++) {
1722 read_lock_bh(&pols[pi]->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001723 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001724 read_unlock_bh(&pols[pi]->lock);
1725 }
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001728 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 /* Wow! While we worked on resolving, this
1730 * policy has gone. Retry. It is not paranoia,
1731 * we just cannot enlist new bundle to dead object.
1732 * We can't enlist stable bundles either.
1733 */
1734 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001735 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001736
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001737 if (pol_dead)
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001738 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTPOLDEAD);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001739 else
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001740 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001741 err = -EHOSTUNREACH;
1742 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001744
1745 if (npols > 1)
1746 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1747 else
1748 err = xfrm_dst_update_origin(dst, fl);
1749 if (unlikely(err)) {
1750 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001751 dst_free(dst);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001752 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001753 goto error;
1754 }
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 dst->next = policy->bundles;
1757 policy->bundles = dst;
1758 dst_hold(dst);
1759 write_unlock_bh(&policy->lock);
1760 }
1761 *dst_p = dst;
1762 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001763 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return 0;
1765
1766error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001767 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001768dropdst:
1769 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 *dst_p = NULL;
1771 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001772
1773nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001774 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001775 if (flags & XFRM_LOOKUP_ICMP)
1776 goto dropdst;
1777 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
David S. Miller14e50e52007-05-24 18:17:54 -07001779EXPORT_SYMBOL(__xfrm_lookup);
1780
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001781int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001782 struct sock *sk, int flags)
1783{
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001784 int err = __xfrm_lookup(net, dst_p, fl, sk, flags);
David S. Miller14e50e52007-05-24 18:17:54 -07001785
1786 if (err == -EREMOTE) {
1787 dst_release(*dst_p);
1788 *dst_p = NULL;
1789 err = -EAGAIN;
1790 }
1791
1792 return err;
1793}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794EXPORT_SYMBOL(xfrm_lookup);
1795
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001796static inline int
1797xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1798{
1799 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001800
1801 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1802 return 0;
1803 x = skb->sp->xvec[idx];
1804 if (!x->type->reject)
1805 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001806 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001807}
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809/* When skb is transformed back to its "native" form, we have to
1810 * check policy restrictions. At the moment we make this in maximally
1811 * stupid way. Shame on me. :-) Of course, connected sockets must
1812 * have policy cached at them.
1813 */
1814
1815static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001816xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 unsigned short family)
1818{
1819 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001820 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return x->id.proto == tmpl->id.proto &&
1822 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1823 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1824 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001825 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001826 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001827 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1828 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001831/*
1832 * 0 or more than 0 is returned when validation is succeeded (either bypass
1833 * because of optional transport mode, or next index of the mathced secpath
1834 * state with the template.
1835 * -1 is returned when no matching template is found.
1836 * Otherwise "-2 - errored_index" is returned.
1837 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838static inline int
1839xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1840 unsigned short family)
1841{
1842 int idx = start;
1843
1844 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001845 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return start;
1847 } else
1848 start = -1;
1849 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001850 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001852 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1853 if (start == -1)
1854 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858 return start;
1859}
1860
Herbert Xud5422ef2007-12-12 10:44:16 -08001861int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1862 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001865 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 if (unlikely(afinfo == NULL))
1868 return -EAFNOSUPPORT;
1869
Herbert Xud5422ef2007-12-12 10:44:16 -08001870 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001871 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001873 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
Herbert Xud5422ef2007-12-12 10:44:16 -08001875EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001877static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001880 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001881 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885
1886 return 0;
1887}
1888
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001889int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 unsigned short family)
1891{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001892 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001894 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1895 int npols = 0;
1896 int xfrm_nr;
1897 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001898 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001900 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001901 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Herbert Xud5422ef2007-12-12 10:44:16 -08001903 reverse = dir & ~XFRM_POLICY_MASK;
1904 dir &= XFRM_POLICY_MASK;
1905 fl_dir = policy_to_flow_dir(dir);
1906
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001907 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001908 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001910 }
1911
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001912 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 /* First, check used SA against their selectors. */
1915 if (skb->sp) {
1916 int i;
1917
1918 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001919 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001920 if (!xfrm_selector_match(&x->sel, &fl, family)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001921 XFRM_INC_STATS(net, LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
1925 }
1926
1927 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001928 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001929 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001930 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001931 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001932 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001933 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 if (!pol)
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001937 pol = flow_cache_lookup(net, &fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 xfrm_policy_lookup);
1939
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001940 if (IS_ERR(pol)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001941 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001942 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001943 }
James Morris134b0fc2006-10-05 15:42:27 -05001944
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001945 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001946 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001947 xfrm_secpath_reject(xerr_idx, skb, &fl);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001948 XFRM_INC_STATS(net, LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001949 return 0;
1950 }
1951 return 1;
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
James Morris9d729f72007-03-04 16:12:44 -08001954 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001956 pols[0] = pol;
1957 npols ++;
1958#ifdef CONFIG_XFRM_SUB_POLICY
1959 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001960 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001961 &fl, family,
1962 XFRM_POLICY_IN);
1963 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001964 if (IS_ERR(pols[1])) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001965 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001966 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001967 }
James Morris9d729f72007-03-04 16:12:44 -08001968 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001969 npols ++;
1970 }
1971 }
1972#endif
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (pol->action == XFRM_POLICY_ALLOW) {
1975 struct sec_path *sp;
1976 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001977 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001978 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001979 struct xfrm_tmpl **tpp = tp;
1980 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 int i, k;
1982
1983 if ((sp = skb->sp) == NULL)
1984 sp = &dummy;
1985
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001986 for (pi = 0; pi < npols; pi++) {
1987 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001988 pols[pi]->action != XFRM_POLICY_ALLOW) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001989 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001990 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001991 }
1992 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08001993 XFRM_INC_STATS(net, LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001994 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001995 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001996 for (i = 0; i < pols[pi]->xfrm_nr; i++)
1997 tpp[ti++] = &pols[pi]->xfrm_vec[i];
1998 }
1999 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002000 if (npols > 1) {
2001 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2002 tpp = stp;
2003 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 /* For each tunnel xfrm, find the first matching tmpl.
2006 * For each tmpl before that, find corresponding xfrm.
2007 * Order is _important_. Later we will implement
2008 * some barriers, but at the moment barriers
2009 * are implied between each two transformations.
2010 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002011 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2012 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002013 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002014 if (k < -1)
2015 /* "-2 - errored_index" returned */
2016 xerr_idx = -(2+k);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002017 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002022 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002023 XFRM_INC_STATS(net, LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002027 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return 1;
2029 }
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002030 XFRM_INC_STATS(net, LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002033 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002034reject_error:
2035 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 return 0;
2037}
2038EXPORT_SYMBOL(__xfrm_policy_check);
2039
2040int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2041{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002042 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct flowi fl;
2044
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002045 if (xfrm_decode_session(skb, &fl, family) < 0) {
2046 /* XXX: we should have something like FWDHDRERROR here. */
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002047 XFRM_INC_STATS(net, LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002051 return xfrm_lookup(net, &skb->dst, &fl, NULL, 0) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053EXPORT_SYMBOL(__xfrm_route_forward);
2054
David S. Millerd49c73c2006-08-13 18:55:53 -07002055/* Optimize later using cookies and generation ids. */
2056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2058{
David S. Millerd49c73c2006-08-13 18:55:53 -07002059 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2060 * to "-1" to force all XFRM destinations to get validated by
2061 * dst_ops->check on every use. We do this because when a
2062 * normal route referenced by an XFRM dst is obsoleted we do
2063 * not go looking around for all parent referencing XFRM dsts
2064 * so that we can invalidate them. It is just too much work.
2065 * Instead we make the checks here on every use. For example:
2066 *
2067 * XFRM dst A --> IPv4 dst X
2068 *
2069 * X is the "xdst->route" of A (X is also the "dst->path" of A
2070 * in this example). If X is marked obsolete, "A" will not
2071 * notice. That's what we are validating here via the
2072 * stale_bundle() check.
2073 *
2074 * When a policy's bundle is pruned, we dst_free() the XFRM
2075 * dst which causes it's ->obsolete field to be set to a
2076 * positive non-zero integer. If an XFRM dst has been pruned
2077 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002078 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002079 if (dst->obsolete < 0 && !stale_bundle(dst))
2080 return dst;
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return NULL;
2083}
2084
2085static int stale_bundle(struct dst_entry *dst)
2086{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002087 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
2089
Herbert Xuaabc9762005-05-03 16:27:10 -07002090void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002093 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002094 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 dev_put(dev);
2096 }
2097}
Herbert Xuaabc9762005-05-03 16:27:10 -07002098EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100static void xfrm_link_failure(struct sk_buff *skb)
2101{
2102 /* Impossible. Such dst must be popped before reaches point of failure. */
2103 return;
2104}
2105
2106static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2107{
2108 if (dst) {
2109 if (dst->obsolete) {
2110 dst_release(dst);
2111 dst = NULL;
2112 }
2113 }
2114 return dst;
2115}
2116
David S. Miller2518c7c2006-08-24 04:45:07 -07002117static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2118{
2119 struct dst_entry *dst, **dstp;
2120
2121 write_lock(&pol->lock);
2122 dstp = &pol->bundles;
2123 while ((dst=*dstp) != NULL) {
2124 if (func(dst)) {
2125 *dstp = dst->next;
2126 dst->next = *gc_list_p;
2127 *gc_list_p = dst;
2128 } else {
2129 dstp = &dst->next;
2130 }
2131 }
2132 write_unlock(&pol->lock);
2133}
2134
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002135static void xfrm_prune_bundles(struct net *net, int (*func)(struct dst_entry *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
David S. Miller2518c7c2006-08-24 04:45:07 -07002137 struct dst_entry *gc_list = NULL;
2138 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002141 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2142 struct xfrm_policy *pol;
2143 struct hlist_node *entry;
2144 struct hlist_head *table;
2145 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002146
David S. Miller2518c7c2006-08-24 04:45:07 -07002147 hlist_for_each_entry(pol, entry,
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002148 &net->xfrm.policy_inexact[dir], bydst)
David S. Miller2518c7c2006-08-24 04:45:07 -07002149 prune_one_bundle(pol, func, &gc_list);
2150
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002151 table = net->xfrm.policy_bydst[dir].table;
2152 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002153 hlist_for_each_entry(pol, entry, table + i, bydst)
2154 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
2156 }
2157 read_unlock_bh(&xfrm_policy_lock);
2158
2159 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002160 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 gc_list = dst->next;
2162 dst_free(dst);
2163 }
2164}
2165
2166static int unused_bundle(struct dst_entry *dst)
2167{
2168 return !atomic_read(&dst->__refcnt);
2169}
2170
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002171static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002173 xfrm_prune_bundles(net, unused_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002176static int xfrm_flush_bundles(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002178 xfrm_prune_bundles(net, stale_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return 0;
2180}
2181
Herbert Xu25ee3282007-12-11 09:32:34 -08002182static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 do {
2185 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2186 u32 pmtu, route_mtu_cached;
2187
2188 pmtu = dst_mtu(dst->child);
2189 xdst->child_mtu_cached = pmtu;
2190
2191 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2192
2193 route_mtu_cached = dst_mtu(xdst->route);
2194 xdst->route_mtu_cached = route_mtu_cached;
2195
2196 if (pmtu > route_mtu_cached)
2197 pmtu = route_mtu_cached;
2198
2199 dst->metrics[RTAX_MTU-1] = pmtu;
2200 } while ((dst = dst->next));
2201}
2202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203/* Check that the bundle accepts the flow and its components are
2204 * still valid.
2205 */
2206
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002207int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2208 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210 struct dst_entry *dst = &first->u.dst;
2211 struct xfrm_dst *last;
2212 u32 mtu;
2213
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002214 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 (dst->dev && !netif_running(dst->dev)))
2216 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002217#ifdef CONFIG_XFRM_SUB_POLICY
2218 if (fl) {
2219 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2220 return 0;
2221 if (first->partner &&
2222 !xfrm_selector_match(first->partner, fl, family))
2223 return 0;
2224 }
2225#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 last = NULL;
2228
2229 do {
2230 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2231
2232 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2233 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002234 if (fl && pol &&
2235 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2238 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002239 if (xdst->genid != dst->xfrm->genid)
2240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Herbert Xu1bfcb102007-10-17 21:31:50 -07002242 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002243 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002244 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2245 return 0;
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 mtu = dst_mtu(dst->child);
2248 if (xdst->child_mtu_cached != mtu) {
2249 last = xdst;
2250 xdst->child_mtu_cached = mtu;
2251 }
2252
Hideaki YOSHIFUJI92d63dec2005-05-26 12:58:04 -07002253 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return 0;
2255 mtu = dst_mtu(xdst->route);
2256 if (xdst->route_mtu_cached != mtu) {
2257 last = xdst;
2258 xdst->route_mtu_cached = mtu;
2259 }
2260
2261 dst = dst->child;
2262 } while (dst->xfrm);
2263
2264 if (likely(!last))
2265 return 1;
2266
2267 mtu = last->child_mtu_cached;
2268 for (;;) {
2269 dst = &last->u.dst;
2270
2271 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2272 if (mtu > last->route_mtu_cached)
2273 mtu = last->route_mtu_cached;
2274 dst->metrics[RTAX_MTU-1] = mtu;
2275
2276 if (last == first)
2277 break;
2278
Patrick McHardybd0bf072007-07-18 01:55:52 -07002279 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 last->child_mtu_cached = mtu;
2281 }
2282
2283 return 1;
2284}
2285
2286EXPORT_SYMBOL(xfrm_bundle_ok);
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2289{
2290 int err = 0;
2291 if (unlikely(afinfo == NULL))
2292 return -EINVAL;
2293 if (unlikely(afinfo->family >= NPROTO))
2294 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002295 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2297 err = -ENOBUFS;
2298 else {
2299 struct dst_ops *dst_ops = afinfo->dst_ops;
2300 if (likely(dst_ops->kmem_cachep == NULL))
2301 dst_ops->kmem_cachep = xfrm_dst_cache;
2302 if (likely(dst_ops->check == NULL))
2303 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (likely(dst_ops->negative_advice == NULL))
2305 dst_ops->negative_advice = xfrm_negative_advice;
2306 if (likely(dst_ops->link_failure == NULL))
2307 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 if (likely(afinfo->garbage_collect == NULL))
2309 afinfo->garbage_collect = __xfrm_garbage_collect;
2310 xfrm_policy_afinfo[afinfo->family] = afinfo;
2311 }
Ingo Molnare959d812006-04-28 15:32:29 -07002312 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 return err;
2314}
2315EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2316
2317int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2318{
2319 int err = 0;
2320 if (unlikely(afinfo == NULL))
2321 return -EINVAL;
2322 if (unlikely(afinfo->family >= NPROTO))
2323 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002324 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2326 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2327 err = -EINVAL;
2328 else {
2329 struct dst_ops *dst_ops = afinfo->dst_ops;
2330 xfrm_policy_afinfo[afinfo->family] = NULL;
2331 dst_ops->kmem_cachep = NULL;
2332 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 dst_ops->negative_advice = NULL;
2334 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 afinfo->garbage_collect = NULL;
2336 }
2337 }
Ingo Molnare959d812006-04-28 15:32:29 -07002338 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return err;
2340}
2341EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2342
2343static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2344{
2345 struct xfrm_policy_afinfo *afinfo;
2346 if (unlikely(family >= NPROTO))
2347 return NULL;
2348 read_lock(&xfrm_policy_afinfo_lock);
2349 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002350 if (unlikely(!afinfo))
2351 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return afinfo;
2353}
2354
2355static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2356{
Herbert Xu546be242006-05-27 23:03:58 -07002357 read_unlock(&xfrm_policy_afinfo_lock);
2358}
2359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2361{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002362 struct net_device *dev = ptr;
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 switch (event) {
2365 case NETDEV_DOWN:
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002366 xfrm_flush_bundles(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
2368 return NOTIFY_DONE;
2369}
2370
2371static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002372 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373};
2374
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002375#ifdef CONFIG_XFRM_STATISTICS
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002376static int __net_init xfrm_statistics_init(struct net *net)
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002377{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002378 int rv;
2379
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002380 if (snmp_mib_init((void **)net->mib.xfrm_statistics,
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002381 sizeof(struct linux_xfrm_mib)) < 0)
2382 return -ENOMEM;
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002383 rv = xfrm_proc_init(net);
2384 if (rv < 0)
2385 snmp_mib_free((void **)net->mib.xfrm_statistics);
2386 return rv;
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002387}
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002388
2389static void xfrm_statistics_fini(struct net *net)
2390{
Alexey Dobriyanc68cd1a2008-11-25 18:00:14 -08002391 xfrm_proc_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002392 snmp_mib_free((void **)net->mib.xfrm_statistics);
2393}
2394#else
2395static int __net_init xfrm_statistics_init(struct net *net)
2396{
2397 return 0;
2398}
2399
2400static void xfrm_statistics_fini(struct net *net)
2401{
2402}
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002403#endif
2404
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002405static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
David S. Miller2518c7c2006-08-24 04:45:07 -07002407 unsigned int hmask, sz;
2408 int dir;
2409
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002410 if (net_eq(net, &init_net))
2411 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002413 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002414 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
David S. Miller2518c7c2006-08-24 04:45:07 -07002416 hmask = 8 - 1;
2417 sz = (hmask+1) * sizeof(struct hlist_head);
2418
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002419 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2420 if (!net->xfrm.policy_byidx)
2421 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002422 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002423
2424 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2425 struct xfrm_policy_hash *htab;
2426
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002427 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002428 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002429
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002430 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002431 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002432 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002433 goto out_bydst;
2434 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002435 }
2436
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002437 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002438 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002439 if (net_eq(net, &init_net))
2440 register_netdevice_notifier(&xfrm_dev_notifier);
2441 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002442
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002443out_bydst:
2444 for (dir--; dir >= 0; dir--) {
2445 struct xfrm_policy_hash *htab;
2446
2447 htab = &net->xfrm.policy_bydst[dir];
2448 xfrm_hash_free(htab->table, sz);
2449 }
2450 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002451out_byidx:
2452 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453}
2454
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002455static void xfrm_policy_fini(struct net *net)
2456{
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002457 struct xfrm_audit audit_info;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002458 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002459 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002460
Alexey Dobriyan7c2776e2008-11-25 17:57:44 -08002461 flush_work(&net->xfrm.policy_hash_work);
2462#ifdef CONFIG_XFRM_SUB_POLICY
2463 audit_info.loginuid = -1;
2464 audit_info.sessionid = -1;
2465 audit_info.secid = 0;
2466 xfrm_policy_flush(net, XFRM_POLICY_TYPE_SUB, &audit_info);
2467#endif
2468 audit_info.loginuid = -1;
2469 audit_info.sessionid = -1;
2470 audit_info.secid = 0;
2471 xfrm_policy_flush(net, XFRM_POLICY_TYPE_MAIN, &audit_info);
2472 flush_work(&xfrm_policy_gc_work);
2473
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002474 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002475
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002476 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002477 struct xfrm_policy_hash *htab;
2478
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002479 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002480
2481 htab = &net->xfrm.policy_bydst[dir];
2482 sz = (htab->hmask + 1);
2483 WARN_ON(!hlist_empty(htab->table));
2484 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002485 }
2486
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002487 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002488 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2489 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002490}
2491
2492static int __net_init xfrm_net_init(struct net *net)
2493{
2494 int rv;
2495
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002496 rv = xfrm_statistics_init(net);
2497 if (rv < 0)
2498 goto out_statistics;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002499 rv = xfrm_state_init(net);
2500 if (rv < 0)
2501 goto out_state;
2502 rv = xfrm_policy_init(net);
2503 if (rv < 0)
2504 goto out_policy;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002505 rv = xfrm_sysctl_init(net);
2506 if (rv < 0)
2507 goto out_sysctl;
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002508 return 0;
2509
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002510out_sysctl:
2511 xfrm_policy_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002512out_policy:
2513 xfrm_state_fini(net);
2514out_state:
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002515 xfrm_statistics_fini(net);
2516out_statistics:
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002517 return rv;
2518}
2519
2520static void __net_exit xfrm_net_exit(struct net *net)
2521{
Alexey Dobriyanb27aead2008-11-25 18:00:48 -08002522 xfrm_sysctl_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002523 xfrm_policy_fini(net);
2524 xfrm_state_fini(net);
Alexey Dobriyan59c99402008-11-25 17:59:52 -08002525 xfrm_statistics_fini(net);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002526}
2527
2528static struct pernet_operations __net_initdata xfrm_net_ops = {
2529 .init = xfrm_net_init,
2530 .exit = xfrm_net_exit,
2531};
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533void __init xfrm_init(void)
2534{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002535 register_pernet_subsys(&xfrm_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 xfrm_input_init();
2537}
2538
Joy Lattenab5f5e82007-09-17 11:51:22 -07002539#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002540static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2541 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002542{
Paul Moore875179f2007-12-01 23:27:18 +11002543 struct xfrm_sec_ctx *ctx = xp->security;
2544 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002545
Paul Moore875179f2007-12-01 23:27:18 +11002546 if (ctx)
2547 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2548 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2549
2550 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002551 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002552 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002553 if (sel->prefixlen_s != 32)
2554 audit_log_format(audit_buf, " src_prefixlen=%d",
2555 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002556 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002557 if (sel->prefixlen_d != 32)
2558 audit_log_format(audit_buf, " dst_prefixlen=%d",
2559 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002560 break;
2561 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002562 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002563 if (sel->prefixlen_s != 128)
2564 audit_log_format(audit_buf, " src_prefixlen=%d",
2565 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002566 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002567 if (sel->prefixlen_d != 128)
2568 audit_log_format(audit_buf, " dst_prefixlen=%d",
2569 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002570 break;
2571 }
2572}
2573
Paul Moore68277ac2007-12-20 20:49:33 -08002574void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002575 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002576{
2577 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002578
Paul Mooreafeb14b2007-12-21 14:58:11 -08002579 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002580 if (audit_buf == NULL)
2581 return;
Eric Paris25323862008-04-18 10:09:25 -04002582 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002583 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002584 xfrm_audit_common_policyinfo(xp, audit_buf);
2585 audit_log_end(audit_buf);
2586}
2587EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2588
Paul Moore68277ac2007-12-20 20:49:33 -08002589void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002590 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002591{
2592 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002593
Paul Mooreafeb14b2007-12-21 14:58:11 -08002594 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002595 if (audit_buf == NULL)
2596 return;
Eric Paris25323862008-04-18 10:09:25 -04002597 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002598 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002599 xfrm_audit_common_policyinfo(xp, audit_buf);
2600 audit_log_end(audit_buf);
2601}
2602EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2603#endif
2604
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002605#ifdef CONFIG_XFRM_MIGRATE
2606static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2607 struct xfrm_selector *sel_tgt)
2608{
2609 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2610 if (sel_tgt->family == sel_cmp->family &&
2611 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002612 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002613 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2614 sel_cmp->family) == 0 &&
2615 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2616 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2617 return 1;
2618 }
2619 } else {
2620 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2621 return 1;
2622 }
2623 }
2624 return 0;
2625}
2626
2627static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2628 u8 dir, u8 type)
2629{
2630 struct xfrm_policy *pol, *ret = NULL;
2631 struct hlist_node *entry;
2632 struct hlist_head *chain;
2633 u32 priority = ~0U;
2634
2635 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08002636 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002637 hlist_for_each_entry(pol, entry, chain, bydst) {
2638 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2639 pol->type == type) {
2640 ret = pol;
2641 priority = ret->priority;
2642 break;
2643 }
2644 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002645 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002646 hlist_for_each_entry(pol, entry, chain, bydst) {
2647 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2648 pol->type == type &&
2649 pol->priority < priority) {
2650 ret = pol;
2651 break;
2652 }
2653 }
2654
2655 if (ret)
2656 xfrm_pol_hold(ret);
2657
2658 read_unlock_bh(&xfrm_policy_lock);
2659
2660 return ret;
2661}
2662
2663static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2664{
2665 int match = 0;
2666
2667 if (t->mode == m->mode && t->id.proto == m->proto &&
2668 (m->reqid == 0 || t->reqid == m->reqid)) {
2669 switch (t->mode) {
2670 case XFRM_MODE_TUNNEL:
2671 case XFRM_MODE_BEET:
2672 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2673 m->old_family) == 0 &&
2674 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2675 m->old_family) == 0) {
2676 match = 1;
2677 }
2678 break;
2679 case XFRM_MODE_TRANSPORT:
2680 /* in case of transport mode, template does not store
2681 any IP addresses, hence we just compare mode and
2682 protocol */
2683 match = 1;
2684 break;
2685 default:
2686 break;
2687 }
2688 }
2689 return match;
2690}
2691
2692/* update endpoint address(es) of template(s) */
2693static int xfrm_policy_migrate(struct xfrm_policy *pol,
2694 struct xfrm_migrate *m, int num_migrate)
2695{
2696 struct xfrm_migrate *mp;
2697 struct dst_entry *dst;
2698 int i, j, n = 0;
2699
2700 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002701 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002702 /* target policy has been deleted */
2703 write_unlock_bh(&pol->lock);
2704 return -ENOENT;
2705 }
2706
2707 for (i = 0; i < pol->xfrm_nr; i++) {
2708 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2709 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2710 continue;
2711 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002712 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2713 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002714 continue;
2715 /* update endpoints */
2716 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2717 sizeof(pol->xfrm_vec[i].id.daddr));
2718 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2719 sizeof(pol->xfrm_vec[i].saddr));
2720 pol->xfrm_vec[i].encap_family = mp->new_family;
2721 /* flush bundles */
2722 while ((dst = pol->bundles) != NULL) {
2723 pol->bundles = dst->next;
2724 dst_free(dst);
2725 }
2726 }
2727 }
2728
2729 write_unlock_bh(&pol->lock);
2730
2731 if (!n)
2732 return -ENODATA;
2733
2734 return 0;
2735}
2736
2737static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2738{
2739 int i, j;
2740
2741 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2742 return -EINVAL;
2743
2744 for (i = 0; i < num_migrate; i++) {
2745 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2746 m[i].old_family) == 0) &&
2747 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2748 m[i].old_family) == 0))
2749 return -EINVAL;
2750 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2751 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2752 return -EINVAL;
2753
2754 /* check if there is any duplicated entry */
2755 for (j = i + 1; j < num_migrate; j++) {
2756 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2757 sizeof(m[i].old_daddr)) &&
2758 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2759 sizeof(m[i].old_saddr)) &&
2760 m[i].proto == m[j].proto &&
2761 m[i].mode == m[j].mode &&
2762 m[i].reqid == m[j].reqid &&
2763 m[i].old_family == m[j].old_family)
2764 return -EINVAL;
2765 }
2766 }
2767
2768 return 0;
2769}
2770
2771int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002772 struct xfrm_migrate *m, int num_migrate,
2773 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002774{
2775 int i, err, nx_cur = 0, nx_new = 0;
2776 struct xfrm_policy *pol = NULL;
2777 struct xfrm_state *x, *xc;
2778 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2779 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2780 struct xfrm_migrate *mp;
2781
2782 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2783 goto out;
2784
2785 /* Stage 1 - find policy */
2786 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2787 err = -ENOENT;
2788 goto out;
2789 }
2790
2791 /* Stage 2 - find and update state(s) */
2792 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2793 if ((x = xfrm_migrate_state_find(mp))) {
2794 x_cur[nx_cur] = x;
2795 nx_cur++;
2796 if ((xc = xfrm_state_migrate(x, mp))) {
2797 x_new[nx_new] = xc;
2798 nx_new++;
2799 } else {
2800 err = -ENODATA;
2801 goto restore_state;
2802 }
2803 }
2804 }
2805
2806 /* Stage 3 - update policy */
2807 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2808 goto restore_state;
2809
2810 /* Stage 4 - delete old state(s) */
2811 if (nx_cur) {
2812 xfrm_states_put(x_cur, nx_cur);
2813 xfrm_states_delete(x_cur, nx_cur);
2814 }
2815
2816 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002817 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002818
2819 xfrm_pol_put(pol);
2820
2821 return 0;
2822out:
2823 return err;
2824
2825restore_state:
2826 if (pol)
2827 xfrm_pol_put(pol);
2828 if (nx_cur)
2829 xfrm_states_put(x_cur, nx_cur);
2830 if (nx_new)
2831 xfrm_states_delete(x_new, nx_new);
2832
2833 return err;
2834}
David S. Millere610e672007-02-08 13:29:15 -08002835EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002836#endif