blob: 7c7bb54f22657500ed9722fdf13bf30ef2801d21 [file] [log] [blame]
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * xfrm_policy.c
3 *
4 * Changes:
5 * Mitsuru KANDA @USAGI
6 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
8 * IPv6 support
9 * Kazunori MIYAZAWA @USAGI
10 * YOSHIFUJI Hideaki
11 * Split up af-specific portion
12 * Derek Atkins <derek@ihtfp.com> Add the post_input processor
Trent Jaegerdf718372005-12-13 23:12:27 -080013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Herbert Xu66cdb3c2007-11-13 21:37:28 -080016#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/slab.h>
18#include <linux/kmod.h>
19#include <linux/list.h>
20#include <linux/spinlock.h>
21#include <linux/workqueue.h>
22#include <linux/notifier.h>
23#include <linux/netdevice.h>
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -080024#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
David S. Miller2518c7c2006-08-24 04:45:07 -070026#include <linux/cache.h>
Paul Moore68277ac2007-12-20 20:49:33 -080027#include <linux/audit.h>
Herbert Xu25ee3282007-12-11 09:32:34 -080028#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/xfrm.h>
30#include <net/ip.h>
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080031#ifdef CONFIG_XFRM_STATISTICS
32#include <net/snmp.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David S. Miller44e36b42006-08-24 04:50:50 -070035#include "xfrm_hash.h"
36
David S. Miller28faa972008-09-09 16:08:51 -070037int sysctl_xfrm_larval_drop __read_mostly = 1;
David S. Miller14e50e52007-05-24 18:17:54 -070038
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -080039#ifdef CONFIG_XFRM_STATISTICS
40DEFINE_SNMP_STAT(struct linux_xfrm_mib, xfrm_statistics) __read_mostly;
41EXPORT_SYMBOL(xfrm_statistics);
42#endif
43
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080044DEFINE_MUTEX(xfrm_cfg_mutex);
45EXPORT_SYMBOL(xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47static DEFINE_RWLOCK(xfrm_policy_lock);
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static DEFINE_RWLOCK(xfrm_policy_afinfo_lock);
50static struct xfrm_policy_afinfo *xfrm_policy_afinfo[NPROTO];
51
Christoph Lametere18b8902006-12-06 20:33:20 -080052static struct kmem_cache *xfrm_dst_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
David S. Miller2518c7c2006-08-24 04:45:07 -070054static HLIST_HEAD(xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static DEFINE_SPINLOCK(xfrm_policy_gc_lock);
56
57static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family);
58static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
Herbert Xu25ee3282007-12-11 09:32:34 -080059static void xfrm_init_pmtu(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Andrew Morton77681022006-11-08 22:46:26 -080061static inline int
62__xfrm4_selector_match(struct xfrm_selector *sel, struct flowi *fl)
63{
64 return addr_match(&fl->fl4_dst, &sel->daddr, sel->prefixlen_d) &&
65 addr_match(&fl->fl4_src, &sel->saddr, sel->prefixlen_s) &&
66 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
67 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
68 (fl->proto == sel->proto || !sel->proto) &&
69 (fl->oif == sel->ifindex || !sel->ifindex);
70}
71
72static inline int
73__xfrm6_selector_match(struct xfrm_selector *sel, struct flowi *fl)
74{
75 return addr_match(&fl->fl6_dst, &sel->daddr, sel->prefixlen_d) &&
76 addr_match(&fl->fl6_src, &sel->saddr, sel->prefixlen_s) &&
77 !((xfrm_flowi_dport(fl) ^ sel->dport) & sel->dport_mask) &&
78 !((xfrm_flowi_sport(fl) ^ sel->sport) & sel->sport_mask) &&
79 (fl->proto == sel->proto || !sel->proto) &&
80 (fl->oif == sel->ifindex || !sel->ifindex);
81}
82
83int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl,
84 unsigned short family)
85{
86 switch (family) {
87 case AF_INET:
88 return __xfrm4_selector_match(sel, fl);
89 case AF_INET6:
90 return __xfrm6_selector_match(sel, fl);
91 }
92 return 0;
93}
94
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -080095static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos,
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +090096 xfrm_address_t *saddr,
97 xfrm_address_t *daddr,
98 int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800100 struct xfrm_policy_afinfo *afinfo;
101 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Herbert Xu25ee3282007-12-11 09:32:34 -0800103 afinfo = xfrm_policy_get_afinfo(family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (unlikely(afinfo == NULL))
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800105 return ERR_PTR(-EAFNOSUPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800107 dst = afinfo->dst_lookup(net, tos, saddr, daddr);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 xfrm_policy_put_afinfo(afinfo);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900110
111 return dst;
112}
113
114static inline struct dst_entry *xfrm_dst_lookup(struct xfrm_state *x, int tos,
115 xfrm_address_t *prev_saddr,
116 xfrm_address_t *prev_daddr,
117 int family)
118{
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800119 struct net *net = xs_net(x);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900120 xfrm_address_t *saddr = &x->props.saddr;
121 xfrm_address_t *daddr = &x->id.daddr;
122 struct dst_entry *dst;
123
124 if (x->type->flags & XFRM_TYPE_LOCAL_COADDR) {
125 saddr = x->coaddr;
126 daddr = prev_daddr;
127 }
128 if (x->type->flags & XFRM_TYPE_REMOTE_COADDR) {
129 saddr = prev_saddr;
130 daddr = x->coaddr;
131 }
132
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -0800133 dst = __xfrm_dst_lookup(net, tos, saddr, daddr, family);
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +0900134
135 if (!IS_ERR(dst)) {
136 if (prev_saddr != saddr)
137 memcpy(prev_saddr, saddr, sizeof(*prev_saddr));
138 if (prev_daddr != daddr)
139 memcpy(prev_daddr, daddr, sizeof(*prev_daddr));
140 }
141
Herbert Xu66cdb3c2007-11-13 21:37:28 -0800142 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static inline unsigned long make_jiffies(long secs)
146{
147 if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
148 return MAX_SCHEDULE_TIMEOUT-1;
149 else
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +0900150 return secs*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153static void xfrm_policy_timer(unsigned long data)
154{
155 struct xfrm_policy *xp = (struct xfrm_policy*)data;
James Morris9d729f72007-03-04 16:12:44 -0800156 unsigned long now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 long next = LONG_MAX;
158 int warn = 0;
159 int dir;
160
161 read_lock(&xp->lock);
162
Herbert Xu12a169e2008-10-01 07:03:24 -0700163 if (xp->walk.dead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 goto out;
165
Herbert Xu77d8d7a2005-10-05 12:15:12 -0700166 dir = xfrm_policy_id2dir(xp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 if (xp->lft.hard_add_expires_seconds) {
169 long tmo = xp->lft.hard_add_expires_seconds +
170 xp->curlft.add_time - now;
171 if (tmo <= 0)
172 goto expired;
173 if (tmo < next)
174 next = tmo;
175 }
176 if (xp->lft.hard_use_expires_seconds) {
177 long tmo = xp->lft.hard_use_expires_seconds +
178 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
179 if (tmo <= 0)
180 goto expired;
181 if (tmo < next)
182 next = tmo;
183 }
184 if (xp->lft.soft_add_expires_seconds) {
185 long tmo = xp->lft.soft_add_expires_seconds +
186 xp->curlft.add_time - now;
187 if (tmo <= 0) {
188 warn = 1;
189 tmo = XFRM_KM_TIMEOUT;
190 }
191 if (tmo < next)
192 next = tmo;
193 }
194 if (xp->lft.soft_use_expires_seconds) {
195 long tmo = xp->lft.soft_use_expires_seconds +
196 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
197 if (tmo <= 0) {
198 warn = 1;
199 tmo = XFRM_KM_TIMEOUT;
200 }
201 if (tmo < next)
202 next = tmo;
203 }
204
205 if (warn)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800206 km_policy_expired(xp, dir, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (next != LONG_MAX &&
208 !mod_timer(&xp->timer, jiffies + make_jiffies(next)))
209 xfrm_pol_hold(xp);
210
211out:
212 read_unlock(&xp->lock);
213 xfrm_pol_put(xp);
214 return;
215
216expired:
217 read_unlock(&xp->lock);
Herbert Xu4666faa2005-06-18 22:43:22 -0700218 if (!xfrm_policy_delete(xp, dir))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -0800219 km_policy_expired(xp, dir, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 xfrm_pol_put(xp);
221}
222
223
224/* Allocate xfrm_policy. Not used here, it is supposed to be used by pfkeyv2
225 * SPD calls.
226 */
227
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800228struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 struct xfrm_policy *policy;
231
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700232 policy = kzalloc(sizeof(struct xfrm_policy), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (policy) {
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -0800235 write_pnet(&policy->xp_net, net);
Herbert Xu12a169e2008-10-01 07:03:24 -0700236 INIT_LIST_HEAD(&policy->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700237 INIT_HLIST_NODE(&policy->bydst);
238 INIT_HLIST_NODE(&policy->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 rwlock_init(&policy->lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700240 atomic_set(&policy->refcnt, 1);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800241 setup_timer(&policy->timer, xfrm_policy_timer,
242 (unsigned long)policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244 return policy;
245}
246EXPORT_SYMBOL(xfrm_policy_alloc);
247
248/* Destroy xfrm_policy: descendant resources must be released to this moment. */
249
WANG Cong64c31b32008-01-07 22:34:29 -0800250void xfrm_policy_destroy(struct xfrm_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Herbert Xu12a169e2008-10-01 07:03:24 -0700252 BUG_ON(!policy->walk.dead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Kris Katterjohn09a62662006-01-08 22:24:28 -0800254 BUG_ON(policy->bundles);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 if (del_timer(&policy->timer))
257 BUG();
258
Paul Moore03e1ad72008-04-12 19:07:52 -0700259 security_xfrm_policy_free(policy->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 kfree(policy);
261}
WANG Cong64c31b32008-01-07 22:34:29 -0800262EXPORT_SYMBOL(xfrm_policy_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264static void xfrm_policy_gc_kill(struct xfrm_policy *policy)
265{
266 struct dst_entry *dst;
267
268 while ((dst = policy->bundles) != NULL) {
269 policy->bundles = dst->next;
270 dst_free(dst);
271 }
272
273 if (del_timer(&policy->timer))
274 atomic_dec(&policy->refcnt);
275
276 if (atomic_read(&policy->refcnt) > 1)
277 flow_cache_flush();
278
279 xfrm_pol_put(policy);
280}
281
David Howellsc4028952006-11-22 14:57:56 +0000282static void xfrm_policy_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct xfrm_policy *policy;
David S. Miller2518c7c2006-08-24 04:45:07 -0700285 struct hlist_node *entry, *tmp;
286 struct hlist_head gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700289 gc_list.first = xfrm_policy_gc_list.first;
290 INIT_HLIST_HEAD(&xfrm_policy_gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 spin_unlock_bh(&xfrm_policy_gc_lock);
292
David S. Miller2518c7c2006-08-24 04:45:07 -0700293 hlist_for_each_entry_safe(policy, entry, tmp, &gc_list, bydst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 xfrm_policy_gc_kill(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
Alexey Dobriyanc9583962008-11-25 17:13:59 -0800296static DECLARE_WORK(xfrm_policy_gc_work, xfrm_policy_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298/* Rule must be locked. Release descentant resources, announce
299 * entry dead. The rule must be unlinked from lists to the moment.
300 */
301
302static void xfrm_policy_kill(struct xfrm_policy *policy)
303{
304 int dead;
305
306 write_lock_bh(&policy->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -0700307 dead = policy->walk.dead;
308 policy->walk.dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 write_unlock_bh(&policy->lock);
310
311 if (unlikely(dead)) {
312 WARN_ON(1);
313 return;
314 }
315
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800316 spin_lock_bh(&xfrm_policy_gc_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700317 hlist_add_head(&policy->bydst, &xfrm_policy_gc_list);
Alexey Dobriyanbbb770e2008-11-03 19:11:29 -0800318 spin_unlock_bh(&xfrm_policy_gc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 schedule_work(&xfrm_policy_gc_work);
321}
322
David S. Miller2518c7c2006-08-24 04:45:07 -0700323static unsigned int xfrm_policy_hashmax __read_mostly = 1 * 1024 * 1024;
324
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800325static inline unsigned int idx_hash(struct net *net, u32 index)
David S. Miller2518c7c2006-08-24 04:45:07 -0700326{
Alexey Dobriyane92303f2008-11-25 17:32:41 -0800327 return __idx_hash(index, net->xfrm.policy_idx_hmask);
David S. Miller2518c7c2006-08-24 04:45:07 -0700328}
329
Alexey Dobriyan11219942008-11-25 17:33:06 -0800330static 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 -0700331{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800332 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700333 unsigned int hash = __sel_hash(sel, family, hmask);
334
335 return (hash == hmask + 1 ?
Alexey Dobriyan11219942008-11-25 17:33:06 -0800336 &net->xfrm.policy_inexact[dir] :
337 net->xfrm.policy_bydst[dir].table + hash);
David S. Miller2518c7c2006-08-24 04:45:07 -0700338}
339
Alexey Dobriyan11219942008-11-25 17:33:06 -0800340static 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 -0700341{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800342 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700343 unsigned int hash = __addr_hash(daddr, saddr, family, hmask);
344
Alexey Dobriyan11219942008-11-25 17:33:06 -0800345 return net->xfrm.policy_bydst[dir].table + hash;
David S. Miller2518c7c2006-08-24 04:45:07 -0700346}
347
David S. Miller2518c7c2006-08-24 04:45:07 -0700348static void xfrm_dst_hash_transfer(struct hlist_head *list,
349 struct hlist_head *ndsttable,
350 unsigned int nhashmask)
351{
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800352 struct hlist_node *entry, *tmp, *entry0 = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700353 struct xfrm_policy *pol;
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800354 unsigned int h0 = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700355
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800356redo:
David S. Miller2518c7c2006-08-24 04:45:07 -0700357 hlist_for_each_entry_safe(pol, entry, tmp, list, bydst) {
358 unsigned int h;
359
360 h = __addr_hash(&pol->selector.daddr, &pol->selector.saddr,
361 pol->family, nhashmask);
YOSHIFUJI Hideakib7911602008-02-17 23:29:30 -0800362 if (!entry0) {
363 hlist_del(entry);
364 hlist_add_head(&pol->bydst, ndsttable+h);
365 h0 = h;
366 } else {
367 if (h != h0)
368 continue;
369 hlist_del(entry);
370 hlist_add_after(entry0, &pol->bydst);
371 }
372 entry0 = entry;
373 }
374 if (!hlist_empty(list)) {
375 entry0 = NULL;
376 goto redo;
David S. Miller2518c7c2006-08-24 04:45:07 -0700377 }
378}
379
380static void xfrm_idx_hash_transfer(struct hlist_head *list,
381 struct hlist_head *nidxtable,
382 unsigned int nhashmask)
383{
384 struct hlist_node *entry, *tmp;
385 struct xfrm_policy *pol;
386
387 hlist_for_each_entry_safe(pol, entry, tmp, list, byidx) {
388 unsigned int h;
389
390 h = __idx_hash(pol->index, nhashmask);
391 hlist_add_head(&pol->byidx, nidxtable+h);
392 }
393}
394
395static unsigned long xfrm_new_hash_mask(unsigned int old_hmask)
396{
397 return ((old_hmask + 1) << 1) - 1;
398}
399
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800400static void xfrm_bydst_resize(struct net *net, int dir)
David S. Miller2518c7c2006-08-24 04:45:07 -0700401{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800402 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700403 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
404 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800405 struct hlist_head *odst = net->xfrm.policy_bydst[dir].table;
David S. Miller44e36b42006-08-24 04:50:50 -0700406 struct hlist_head *ndst = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700407 int i;
408
409 if (!ndst)
410 return;
411
412 write_lock_bh(&xfrm_policy_lock);
413
414 for (i = hmask; i >= 0; i--)
415 xfrm_dst_hash_transfer(odst + i, ndst, nhashmask);
416
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800417 net->xfrm.policy_bydst[dir].table = ndst;
418 net->xfrm.policy_bydst[dir].hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700419
420 write_unlock_bh(&xfrm_policy_lock);
421
David S. Miller44e36b42006-08-24 04:50:50 -0700422 xfrm_hash_free(odst, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700423}
424
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800425static void xfrm_byidx_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700426{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800427 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700428 unsigned int nhashmask = xfrm_new_hash_mask(hmask);
429 unsigned int nsize = (nhashmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800430 struct hlist_head *oidx = net->xfrm.policy_byidx;
David S. Miller44e36b42006-08-24 04:50:50 -0700431 struct hlist_head *nidx = xfrm_hash_alloc(nsize);
David S. Miller2518c7c2006-08-24 04:45:07 -0700432 int i;
433
434 if (!nidx)
435 return;
436
437 write_lock_bh(&xfrm_policy_lock);
438
439 for (i = hmask; i >= 0; i--)
440 xfrm_idx_hash_transfer(oidx + i, nidx, nhashmask);
441
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800442 net->xfrm.policy_byidx = nidx;
443 net->xfrm.policy_idx_hmask = nhashmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700444
445 write_unlock_bh(&xfrm_policy_lock);
446
David S. Miller44e36b42006-08-24 04:50:50 -0700447 xfrm_hash_free(oidx, (hmask + 1) * sizeof(struct hlist_head));
David S. Miller2518c7c2006-08-24 04:45:07 -0700448}
449
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800450static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700451{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800452 unsigned int cnt = net->xfrm.policy_count[dir];
453 unsigned int hmask = net->xfrm.policy_bydst[dir].hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700454
455 if (total)
456 *total += cnt;
457
458 if ((hmask + 1) < xfrm_policy_hashmax &&
459 cnt > hmask)
460 return 1;
461
462 return 0;
463}
464
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800465static inline int xfrm_byidx_should_resize(struct net *net, int total)
David S. Miller2518c7c2006-08-24 04:45:07 -0700466{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800467 unsigned int hmask = net->xfrm.policy_idx_hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -0700468
469 if ((hmask + 1) < xfrm_policy_hashmax &&
470 total > hmask)
471 return 1;
472
473 return 0;
474}
475
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700476void xfrm_spd_getinfo(struct xfrmk_spdinfo *si)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700477{
478 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyandc2caba2008-11-25 17:24:15 -0800479 si->incnt = init_net.xfrm.policy_count[XFRM_POLICY_IN];
480 si->outcnt = init_net.xfrm.policy_count[XFRM_POLICY_OUT];
481 si->fwdcnt = init_net.xfrm.policy_count[XFRM_POLICY_FWD];
482 si->inscnt = init_net.xfrm.policy_count[XFRM_POLICY_IN+XFRM_POLICY_MAX];
483 si->outscnt = init_net.xfrm.policy_count[XFRM_POLICY_OUT+XFRM_POLICY_MAX];
484 si->fwdscnt = init_net.xfrm.policy_count[XFRM_POLICY_FWD+XFRM_POLICY_MAX];
Alexey Dobriyan8100bea2008-11-25 17:22:58 -0800485 si->spdhcnt = init_net.xfrm.policy_idx_hmask;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700486 si->spdhmcnt = xfrm_policy_hashmax;
487 read_unlock_bh(&xfrm_policy_lock);
488}
489EXPORT_SYMBOL(xfrm_spd_getinfo);
David S. Miller2518c7c2006-08-24 04:45:07 -0700490
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700491static DEFINE_MUTEX(hash_resize_mutex);
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800492static void xfrm_hash_resize(struct work_struct *work)
David S. Miller2518c7c2006-08-24 04:45:07 -0700493{
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800494 struct net *net = container_of(work, struct net, xfrm.policy_hash_work);
David S. Miller2518c7c2006-08-24 04:45:07 -0700495 int dir, total;
496
497 mutex_lock(&hash_resize_mutex);
498
499 total = 0;
500 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800501 if (xfrm_bydst_should_resize(net, dir, &total))
502 xfrm_bydst_resize(net, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700503 }
Alexey Dobriyan66caf622008-11-25 17:28:57 -0800504 if (xfrm_byidx_should_resize(net, total))
505 xfrm_byidx_resize(net, total);
David S. Miller2518c7c2006-08-24 04:45:07 -0700506
507 mutex_unlock(&hash_resize_mutex);
508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/* Generate new index... KAME seems to generate them ordered by cost
511 * of an absolute inpredictability of ordering of rules. This will not pass. */
Alexey Dobriyan11219942008-11-25 17:33:06 -0800512static u32 xfrm_gen_index(struct net *net, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 static u32 idx_generator;
515
516 for (;;) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700517 struct hlist_node *entry;
518 struct hlist_head *list;
519 struct xfrm_policy *p;
520 u32 idx;
521 int found;
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 idx = (idx_generator | dir);
524 idx_generator += 8;
525 if (idx == 0)
526 idx = 8;
Alexey Dobriyan11219942008-11-25 17:33:06 -0800527 list = net->xfrm.policy_byidx + idx_hash(net, idx);
David S. Miller2518c7c2006-08-24 04:45:07 -0700528 found = 0;
529 hlist_for_each_entry(p, entry, list, byidx) {
530 if (p->index == idx) {
531 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 break;
David S. Miller2518c7c2006-08-24 04:45:07 -0700533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700535 if (!found)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return idx;
537 }
538}
539
David S. Miller2518c7c2006-08-24 04:45:07 -0700540static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2)
541{
542 u32 *p1 = (u32 *) s1;
543 u32 *p2 = (u32 *) s2;
544 int len = sizeof(struct xfrm_selector) / sizeof(u32);
545 int i;
546
547 for (i = 0; i < len; i++) {
548 if (p1[i] != p2[i])
549 return 1;
550 }
551
552 return 0;
553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
556{
Alexey Dobriyan11219942008-11-25 17:33:06 -0800557 struct net *net = xp_net(policy);
David S. Miller2518c7c2006-08-24 04:45:07 -0700558 struct xfrm_policy *pol;
559 struct xfrm_policy *delpol;
560 struct hlist_head *chain;
Herbert Xua6c7ab52007-01-16 16:52:02 -0800561 struct hlist_node *entry, *newpos;
David S. Miller9b78a822005-12-22 07:39:48 -0800562 struct dst_entry *gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800565 chain = policy_hash_bysel(net, &policy->selector, policy->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700566 delpol = NULL;
567 newpos = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700568 hlist_for_each_entry(pol, entry, chain, bydst) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800569 if (pol->type == policy->type &&
David S. Miller2518c7c2006-08-24 04:45:07 -0700570 !selector_cmp(&pol->selector, &policy->selector) &&
Herbert Xua6c7ab52007-01-16 16:52:02 -0800571 xfrm_sec_ctx_match(pol->security, policy->security) &&
572 !WARN_ON(delpol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (excl) {
574 write_unlock_bh(&xfrm_policy_lock);
575 return -EEXIST;
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 delpol = pol;
578 if (policy->priority > pol->priority)
579 continue;
580 } else if (policy->priority >= pol->priority) {
Herbert Xua6c7ab52007-01-16 16:52:02 -0800581 newpos = &pol->bydst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 continue;
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (delpol)
585 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587 if (newpos)
David S. Miller2518c7c2006-08-24 04:45:07 -0700588 hlist_add_after(newpos, &policy->bydst);
589 else
590 hlist_add_head(&policy->bydst, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800592 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700594 if (delpol) {
595 hlist_del(&delpol->bydst);
596 hlist_del(&delpol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700597 list_del(&delpol->walk.all);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800598 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700599 }
Alexey Dobriyan11219942008-11-25 17:33:06 -0800600 policy->index = delpol ? delpol->index : xfrm_gen_index(net, dir);
601 hlist_add_head(&policy->byidx, net->xfrm.policy_byidx+idx_hash(net, policy->index));
James Morris9d729f72007-03-04 16:12:44 -0800602 policy->curlft.add_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 policy->curlft.use_time = 0;
604 if (!mod_timer(&policy->timer, jiffies + HZ))
605 xfrm_pol_hold(policy);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800606 list_add(&policy->walk.all, &net->xfrm.policy_all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 write_unlock_bh(&xfrm_policy_lock);
608
David S. Miller9b78a822005-12-22 07:39:48 -0800609 if (delpol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 xfrm_policy_kill(delpol);
Alexey Dobriyan11219942008-11-25 17:33:06 -0800611 else if (xfrm_bydst_should_resize(net, dir, NULL))
612 schedule_work(&net->xfrm.policy_hash_work);
David S. Miller9b78a822005-12-22 07:39:48 -0800613
614 read_lock_bh(&xfrm_policy_lock);
615 gc_list = NULL;
David S. Miller2518c7c2006-08-24 04:45:07 -0700616 entry = &policy->bydst;
617 hlist_for_each_entry_continue(policy, entry, bydst) {
David S. Miller9b78a822005-12-22 07:39:48 -0800618 struct dst_entry *dst;
619
620 write_lock(&policy->lock);
621 dst = policy->bundles;
622 if (dst) {
623 struct dst_entry *tail = dst;
624 while (tail->next)
625 tail = tail->next;
626 tail->next = gc_list;
627 gc_list = dst;
628
629 policy->bundles = NULL;
630 }
631 write_unlock(&policy->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
David S. Miller9b78a822005-12-22 07:39:48 -0800633 read_unlock_bh(&xfrm_policy_lock);
634
635 while (gc_list) {
636 struct dst_entry *dst = gc_list;
637
638 gc_list = dst->next;
639 dst_free(dst);
640 }
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
643}
644EXPORT_SYMBOL(xfrm_policy_insert);
645
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800646struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, u8 type, int dir,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700647 struct xfrm_selector *sel,
Eric Parisef41aaa2007-03-07 15:37:58 -0800648 struct xfrm_sec_ctx *ctx, int delete,
649 int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
David S. Miller2518c7c2006-08-24 04:45:07 -0700651 struct xfrm_policy *pol, *ret;
652 struct hlist_head *chain;
653 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Eric Parisef41aaa2007-03-07 15:37:58 -0800655 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800657 chain = policy_hash_bysel(net, sel, sel->family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700658 ret = NULL;
659 hlist_for_each_entry(pol, entry, chain, bydst) {
660 if (pol->type == type &&
661 !selector_cmp(sel, &pol->selector) &&
662 xfrm_sec_ctx_match(ctx, pol->security)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700664 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700665 *err = security_xfrm_policy_delete(
666 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800667 if (*err) {
668 write_unlock_bh(&xfrm_policy_lock);
669 return pol;
670 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700671 hlist_del(&pol->bydst);
672 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700673 list_del(&pol->walk.all);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800674 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700675 }
676 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
678 }
679 }
680 write_unlock_bh(&xfrm_policy_lock);
681
David S. Miller2518c7c2006-08-24 04:45:07 -0700682 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700684 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700686 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
Trent Jaegerdf718372005-12-13 23:12:27 -0800688EXPORT_SYMBOL(xfrm_policy_bysel_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800690struct xfrm_policy *xfrm_policy_byid(struct net *net, u8 type, int dir, u32 id,
691 int delete, int *err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
David S. Miller2518c7c2006-08-24 04:45:07 -0700693 struct xfrm_policy *pol, *ret;
694 struct hlist_head *chain;
695 struct hlist_node *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Herbert Xub5505c62007-05-14 02:15:47 -0700697 *err = -ENOENT;
698 if (xfrm_policy_id2dir(id) != dir)
699 return NULL;
700
Eric Parisef41aaa2007-03-07 15:37:58 -0800701 *err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 write_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800703 chain = net->xfrm.policy_byidx + idx_hash(net, id);
David S. Miller2518c7c2006-08-24 04:45:07 -0700704 ret = NULL;
705 hlist_for_each_entry(pol, entry, chain, byidx) {
706 if (pol->type == type && pol->index == id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -0700708 if (delete) {
Paul Moore03e1ad72008-04-12 19:07:52 -0700709 *err = security_xfrm_policy_delete(
710 pol->security);
Eric Parisef41aaa2007-03-07 15:37:58 -0800711 if (*err) {
712 write_unlock_bh(&xfrm_policy_lock);
713 return pol;
714 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700715 hlist_del(&pol->bydst);
716 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700717 list_del(&pol->walk.all);
Alexey Dobriyan8d1211a2008-11-25 17:34:20 -0800718 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -0700719 }
720 ret = pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
722 }
723 }
724 write_unlock_bh(&xfrm_policy_lock);
725
David S. Miller2518c7c2006-08-24 04:45:07 -0700726 if (ret && delete) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 atomic_inc(&flow_cache_genid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700728 xfrm_policy_kill(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700730 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732EXPORT_SYMBOL(xfrm_policy_byid);
733
Joy Latten4aa2e622007-06-04 19:05:57 -0400734#ifdef CONFIG_SECURITY_NETWORK_XFRM
735static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800736xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Joy Latten4aa2e622007-06-04 19:05:57 -0400738 int dir, err = 0;
739
740 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
741 struct xfrm_policy *pol;
742 struct hlist_node *entry;
743 int i;
744
745 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800746 &net->xfrm.policy_inexact[dir], bydst) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400747 if (pol->type != type)
748 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700749 err = security_xfrm_policy_delete(pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400750 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700751 xfrm_audit_policy_delete(pol, 0,
752 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400753 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700754 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400755 return err;
756 }
YOSHIFUJI Hideaki7dc12d62007-07-19 10:45:15 +0900757 }
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800758 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
Joy Latten4aa2e622007-06-04 19:05:57 -0400759 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800760 net->xfrm.policy_bydst[dir].table + i,
Joy Latten4aa2e622007-06-04 19:05:57 -0400761 bydst) {
762 if (pol->type != type)
763 continue;
Paul Moore03e1ad72008-04-12 19:07:52 -0700764 err = security_xfrm_policy_delete(
765 pol->security);
Joy Latten4aa2e622007-06-04 19:05:57 -0400766 if (err) {
Joy Lattenab5f5e82007-09-17 11:51:22 -0700767 xfrm_audit_policy_delete(pol, 0,
768 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400769 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700770 audit_info->secid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400771 return err;
772 }
773 }
774 }
775 }
776 return err;
777}
778#else
779static inline int
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800780xfrm_policy_flush_secctx_check(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400781{
782 return 0;
783}
784#endif
785
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800786int xfrm_policy_flush(struct net *net, u8 type, struct xfrm_audit *audit_info)
Joy Latten4aa2e622007-06-04 19:05:57 -0400787{
788 int dir, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 write_lock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400791
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800792 err = xfrm_policy_flush_secctx_check(net, type, audit_info);
Joy Latten4aa2e622007-06-04 19:05:57 -0400793 if (err)
794 goto out;
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 for (dir = 0; dir < XFRM_POLICY_MAX; dir++) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700797 struct xfrm_policy *pol;
798 struct hlist_node *entry;
David S. Millerae8c0572006-10-03 16:00:26 -0700799 int i, killed;
David S. Miller2518c7c2006-08-24 04:45:07 -0700800
David S. Millerae8c0572006-10-03 16:00:26 -0700801 killed = 0;
David S. Miller2518c7c2006-08-24 04:45:07 -0700802 again1:
803 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800804 &net->xfrm.policy_inexact[dir], bydst) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700805 if (pol->type != type)
806 continue;
807 hlist_del(&pol->bydst);
808 hlist_del(&pol->byidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 write_unlock_bh(&xfrm_policy_lock);
810
Joy Lattenab5f5e82007-09-17 11:51:22 -0700811 xfrm_audit_policy_delete(pol, 1, audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400812 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700813 audit_info->secid);
Joy Latten161a09e2006-11-27 13:11:54 -0600814
David S. Miller2518c7c2006-08-24 04:45:07 -0700815 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700816 killed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 write_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -0700819 goto again1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
David S. Miller2518c7c2006-08-24 04:45:07 -0700821
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800822 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700823 again2:
824 hlist_for_each_entry(pol, entry,
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800825 net->xfrm.policy_bydst[dir].table + i,
David S. Miller2518c7c2006-08-24 04:45:07 -0700826 bydst) {
827 if (pol->type != type)
828 continue;
829 hlist_del(&pol->bydst);
830 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -0700831 list_del(&pol->walk.all);
David S. Miller2518c7c2006-08-24 04:45:07 -0700832 write_unlock_bh(&xfrm_policy_lock);
833
Joy Lattenab5f5e82007-09-17 11:51:22 -0700834 xfrm_audit_policy_delete(pol, 1,
835 audit_info->loginuid,
Eric Paris25323862008-04-18 10:09:25 -0400836 audit_info->sessionid,
Joy Lattenab5f5e82007-09-17 11:51:22 -0700837 audit_info->secid);
David S. Miller2518c7c2006-08-24 04:45:07 -0700838 xfrm_policy_kill(pol);
David S. Millerae8c0572006-10-03 16:00:26 -0700839 killed++;
David S. Miller2518c7c2006-08-24 04:45:07 -0700840
841 write_lock_bh(&xfrm_policy_lock);
842 goto again2;
843 }
844 }
845
Alexey Dobriyan33ffbbd2008-11-25 17:33:32 -0800846 net->xfrm.policy_count[dir] -= killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 atomic_inc(&flow_cache_genid);
Joy Latten4aa2e622007-06-04 19:05:57 -0400849out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 write_unlock_bh(&xfrm_policy_lock);
Joy Latten4aa2e622007-06-04 19:05:57 -0400851 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853EXPORT_SYMBOL(xfrm_policy_flush);
854
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800855int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
Timo Teras4c563f72008-02-28 21:31:08 -0800856 int (*func)(struct xfrm_policy *, int, int, void*),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 void *data)
858{
Herbert Xu12a169e2008-10-01 07:03:24 -0700859 struct xfrm_policy *pol;
860 struct xfrm_policy_walk_entry *x;
Timo Teras4c563f72008-02-28 21:31:08 -0800861 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Timo Teras4c563f72008-02-28 21:31:08 -0800863 if (walk->type >= XFRM_POLICY_TYPE_MAX &&
864 walk->type != XFRM_POLICY_TYPE_ANY)
865 return -EINVAL;
866
Herbert Xu12a169e2008-10-01 07:03:24 -0700867 if (list_empty(&walk->walk.all) && walk->seq != 0)
Timo Teras4c563f72008-02-28 21:31:08 -0800868 return 0;
869
Herbert Xu12a169e2008-10-01 07:03:24 -0700870 write_lock_bh(&xfrm_policy_lock);
871 if (list_empty(&walk->walk.all))
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800872 x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
Herbert Xu12a169e2008-10-01 07:03:24 -0700873 else
874 x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
Alexey Dobriyancdcbca72008-11-25 17:34:49 -0800875 list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
Herbert Xu12a169e2008-10-01 07:03:24 -0700876 if (x->dead)
Timo Teras4c563f72008-02-28 21:31:08 -0800877 continue;
Herbert Xu12a169e2008-10-01 07:03:24 -0700878 pol = container_of(x, struct xfrm_policy, walk);
879 if (walk->type != XFRM_POLICY_TYPE_ANY &&
880 walk->type != pol->type)
881 continue;
882 error = func(pol, xfrm_policy_id2dir(pol->index),
883 walk->seq, data);
884 if (error) {
885 list_move_tail(&walk->walk.all, &x->all);
886 goto out;
Timo Teras4c563f72008-02-28 21:31:08 -0800887 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700888 walk->seq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700890 if (walk->seq == 0) {
Jamal Hadi Salimbaf5d742006-12-04 20:02:37 -0800891 error = -ENOENT;
892 goto out;
893 }
Herbert Xu12a169e2008-10-01 07:03:24 -0700894 list_del_init(&walk->walk.all);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895out:
Herbert Xu12a169e2008-10-01 07:03:24 -0700896 write_unlock_bh(&xfrm_policy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return error;
898}
899EXPORT_SYMBOL(xfrm_policy_walk);
900
Herbert Xu12a169e2008-10-01 07:03:24 -0700901void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type)
902{
903 INIT_LIST_HEAD(&walk->walk.all);
904 walk->walk.dead = 1;
905 walk->type = type;
906 walk->seq = 0;
907}
908EXPORT_SYMBOL(xfrm_policy_walk_init);
909
910void xfrm_policy_walk_done(struct xfrm_policy_walk *walk)
911{
912 if (list_empty(&walk->walk.all))
913 return;
914
915 write_lock_bh(&xfrm_policy_lock);
916 list_del(&walk->walk.all);
917 write_unlock_bh(&xfrm_policy_lock);
918}
919EXPORT_SYMBOL(xfrm_policy_walk_done);
920
James Morris134b0fc2006-10-05 15:42:27 -0500921/*
922 * Find policy to apply to this flow.
923 *
924 * Returns 0 if policy found, else an -errno.
925 */
David S. Miller2518c7c2006-08-24 04:45:07 -0700926static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl,
927 u8 type, u16 family, int dir)
928{
929 struct xfrm_selector *sel = &pol->selector;
James Morris134b0fc2006-10-05 15:42:27 -0500930 int match, ret = -ESRCH;
David S. Miller2518c7c2006-08-24 04:45:07 -0700931
932 if (pol->family != family ||
933 pol->type != type)
James Morris134b0fc2006-10-05 15:42:27 -0500934 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700935
936 match = xfrm_selector_match(sel, fl, family);
James Morris134b0fc2006-10-05 15:42:27 -0500937 if (match)
Paul Moore03e1ad72008-04-12 19:07:52 -0700938 ret = security_xfrm_policy_lookup(pol->security, fl->secid,
939 dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700940
James Morris134b0fc2006-10-05 15:42:27 -0500941 return ret;
David S. Miller2518c7c2006-08-24 04:45:07 -0700942}
943
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800944static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type,
945 struct flowi *fl,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700946 u16 family, u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
James Morris134b0fc2006-10-05 15:42:27 -0500948 int err;
David S. Miller2518c7c2006-08-24 04:45:07 -0700949 struct xfrm_policy *pol, *ret;
950 xfrm_address_t *daddr, *saddr;
951 struct hlist_node *entry;
952 struct hlist_head *chain;
David S. Milleracba48e2006-08-25 15:46:46 -0700953 u32 priority = ~0U;
David S. Miller2518c7c2006-08-24 04:45:07 -0700954
955 daddr = xfrm_flowi_daddr(fl, family);
956 saddr = xfrm_flowi_saddr(fl, family);
957 if (unlikely(!daddr || !saddr))
958 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800961 chain = policy_hash_direct(net, daddr, saddr, family, dir);
David S. Miller2518c7c2006-08-24 04:45:07 -0700962 ret = NULL;
963 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500964 err = xfrm_policy_match(pol, fl, type, family, dir);
965 if (err) {
966 if (err == -ESRCH)
967 continue;
968 else {
969 ret = ERR_PTR(err);
970 goto fail;
971 }
972 } else {
David S. Milleracba48e2006-08-25 15:46:46 -0700973 ret = pol;
974 priority = ret->priority;
975 break;
976 }
977 }
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800978 chain = &net->xfrm.policy_inexact[dir];
David S. Milleracba48e2006-08-25 15:46:46 -0700979 hlist_for_each_entry(pol, entry, chain, bydst) {
James Morris134b0fc2006-10-05 15:42:27 -0500980 err = xfrm_policy_match(pol, fl, type, family, dir);
981 if (err) {
982 if (err == -ESRCH)
983 continue;
984 else {
985 ret = ERR_PTR(err);
986 goto fail;
987 }
988 } else if (pol->priority < priority) {
David S. Miller2518c7c2006-08-24 04:45:07 -0700989 ret = pol;
990 break;
991 }
992 }
David S. Milleracba48e2006-08-25 15:46:46 -0700993 if (ret)
994 xfrm_pol_hold(ret);
James Morris134b0fc2006-10-05 15:42:27 -0500995fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 read_unlock_bh(&xfrm_policy_lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700997
David S. Miller2518c7c2006-08-24 04:45:07 -0700998 return ret;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -0700999}
1000
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001001static int xfrm_policy_lookup(struct net *net, struct flowi *fl, u16 family,
1002 u8 dir, void **objp, atomic_t **obj_refp)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001003{
1004 struct xfrm_policy *pol;
James Morris134b0fc2006-10-05 15:42:27 -05001005 int err = 0;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001006
1007#ifdef CONFIG_XFRM_SUB_POLICY
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001008 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_SUB, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001009 if (IS_ERR(pol)) {
1010 err = PTR_ERR(pol);
1011 pol = NULL;
1012 }
1013 if (pol || err)
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001014 goto end;
1015#endif
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001016 pol = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN, fl, family, dir);
James Morris134b0fc2006-10-05 15:42:27 -05001017 if (IS_ERR(pol)) {
1018 err = PTR_ERR(pol);
1019 pol = NULL;
1020 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001021#ifdef CONFIG_XFRM_SUB_POLICY
David S. Miller2518c7c2006-08-24 04:45:07 -07001022end:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if ((*objp = (void *) pol) != NULL)
1025 *obj_refp = &pol->refcnt;
James Morris134b0fc2006-10-05 15:42:27 -05001026 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Trent Jaegerdf718372005-12-13 23:12:27 -08001029static inline int policy_to_flow_dir(int dir)
1030{
1031 if (XFRM_POLICY_IN == FLOW_DIR_IN &&
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001032 XFRM_POLICY_OUT == FLOW_DIR_OUT &&
1033 XFRM_POLICY_FWD == FLOW_DIR_FWD)
1034 return dir;
1035 switch (dir) {
1036 default:
1037 case XFRM_POLICY_IN:
1038 return FLOW_DIR_IN;
1039 case XFRM_POLICY_OUT:
1040 return FLOW_DIR_OUT;
1041 case XFRM_POLICY_FWD:
1042 return FLOW_DIR_FWD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001043 }
Trent Jaegerdf718372005-12-13 23:12:27 -08001044}
1045
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001046static struct xfrm_policy *xfrm_sk_policy_lookup(struct sock *sk, int dir, struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 struct xfrm_policy *pol;
1049
1050 read_lock_bh(&xfrm_policy_lock);
1051 if ((pol = sk->sk_policy[dir]) != NULL) {
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001052 int match = xfrm_selector_match(&pol->selector, fl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 sk->sk_family);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001054 int err = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001055
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001056 if (match) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001057 err = security_xfrm_policy_lookup(pol->security,
1058 fl->secid,
1059 policy_to_flow_dir(dir));
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001060 if (!err)
1061 xfrm_pol_hold(pol);
1062 else if (err == -ESRCH)
1063 pol = NULL;
1064 else
1065 pol = ERR_PTR(err);
1066 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 pol = NULL;
1068 }
1069 read_unlock_bh(&xfrm_policy_lock);
1070 return pol;
1071}
1072
1073static void __xfrm_policy_link(struct xfrm_policy *pol, int dir)
1074{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001075 struct net *net = xp_net(pol);
Alexey Dobriyan11219942008-11-25 17:33:06 -08001076 struct hlist_head *chain = policy_hash_bysel(net, &pol->selector,
David S. Miller2518c7c2006-08-24 04:45:07 -07001077 pol->family, dir);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001078
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001079 list_add(&pol->walk.all, &net->xfrm.policy_all);
David S. Miller2518c7c2006-08-24 04:45:07 -07001080 hlist_add_head(&pol->bydst, chain);
Alexey Dobriyane92303f2008-11-25 17:32:41 -08001081 hlist_add_head(&pol->byidx, net->xfrm.policy_byidx+idx_hash(net, pol->index));
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001082 net->xfrm.policy_count[dir]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 xfrm_pol_hold(pol);
David S. Miller2518c7c2006-08-24 04:45:07 -07001084
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001085 if (xfrm_bydst_should_resize(net, dir, NULL))
1086 schedule_work(&net->xfrm.policy_hash_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
1090 int dir)
1091{
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001092 struct net *net = xp_net(pol);
1093
David S. Miller2518c7c2006-08-24 04:45:07 -07001094 if (hlist_unhashed(&pol->bydst))
1095 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
David S. Miller2518c7c2006-08-24 04:45:07 -07001097 hlist_del(&pol->bydst);
1098 hlist_del(&pol->byidx);
Herbert Xu12a169e2008-10-01 07:03:24 -07001099 list_del(&pol->walk.all);
Alexey Dobriyan98806f72008-11-25 17:29:47 -08001100 net->xfrm.policy_count[dir]--;
David S. Miller2518c7c2006-08-24 04:45:07 -07001101
1102 return pol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
Herbert Xu4666faa2005-06-18 22:43:22 -07001105int xfrm_policy_delete(struct xfrm_policy *pol, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 write_lock_bh(&xfrm_policy_lock);
1108 pol = __xfrm_policy_unlink(pol, dir);
1109 write_unlock_bh(&xfrm_policy_lock);
1110 if (pol) {
1111 if (dir < XFRM_POLICY_MAX)
1112 atomic_inc(&flow_cache_genid);
1113 xfrm_policy_kill(pol);
Herbert Xu4666faa2005-06-18 22:43:22 -07001114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Herbert Xu4666faa2005-06-18 22:43:22 -07001116 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
David S. Millera70fcb02006-03-20 19:18:52 -08001118EXPORT_SYMBOL(xfrm_policy_delete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol)
1121{
Alexey Dobriyan11219942008-11-25 17:33:06 -08001122 struct net *net = xp_net(pol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 struct xfrm_policy *old_pol;
1124
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001125#ifdef CONFIG_XFRM_SUB_POLICY
1126 if (pol && pol->type != XFRM_POLICY_TYPE_MAIN)
1127 return -EINVAL;
1128#endif
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 write_lock_bh(&xfrm_policy_lock);
1131 old_pol = sk->sk_policy[dir];
1132 sk->sk_policy[dir] = pol;
1133 if (pol) {
James Morris9d729f72007-03-04 16:12:44 -08001134 pol->curlft.add_time = get_seconds();
Alexey Dobriyan11219942008-11-25 17:33:06 -08001135 pol->index = xfrm_gen_index(net, XFRM_POLICY_MAX+dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 __xfrm_policy_link(pol, XFRM_POLICY_MAX+dir);
1137 }
1138 if (old_pol)
1139 __xfrm_policy_unlink(old_pol, XFRM_POLICY_MAX+dir);
1140 write_unlock_bh(&xfrm_policy_lock);
1141
1142 if (old_pol) {
1143 xfrm_policy_kill(old_pol);
1144 }
1145 return 0;
1146}
1147
1148static struct xfrm_policy *clone_policy(struct xfrm_policy *old, int dir)
1149{
Alexey Dobriyan0331b1f2008-11-25 17:21:45 -08001150 struct xfrm_policy *newp = xfrm_policy_alloc(xp_net(old), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 if (newp) {
1153 newp->selector = old->selector;
Paul Moore03e1ad72008-04-12 19:07:52 -07001154 if (security_xfrm_policy_clone(old->security,
1155 &newp->security)) {
Trent Jaegerdf718372005-12-13 23:12:27 -08001156 kfree(newp);
1157 return NULL; /* ENOMEM */
1158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 newp->lft = old->lft;
1160 newp->curlft = old->curlft;
1161 newp->action = old->action;
1162 newp->flags = old->flags;
1163 newp->xfrm_nr = old->xfrm_nr;
1164 newp->index = old->index;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001165 newp->type = old->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 memcpy(newp->xfrm_vec, old->xfrm_vec,
1167 newp->xfrm_nr*sizeof(struct xfrm_tmpl));
1168 write_lock_bh(&xfrm_policy_lock);
1169 __xfrm_policy_link(newp, XFRM_POLICY_MAX+dir);
1170 write_unlock_bh(&xfrm_policy_lock);
1171 xfrm_pol_put(newp);
1172 }
1173 return newp;
1174}
1175
1176int __xfrm_sk_clone_policy(struct sock *sk)
1177{
1178 struct xfrm_policy *p0 = sk->sk_policy[0],
1179 *p1 = sk->sk_policy[1];
1180
1181 sk->sk_policy[0] = sk->sk_policy[1] = NULL;
1182 if (p0 && (sk->sk_policy[0] = clone_policy(p0, 0)) == NULL)
1183 return -ENOMEM;
1184 if (p1 && (sk->sk_policy[1] = clone_policy(p1, 1)) == NULL)
1185 return -ENOMEM;
1186 return 0;
1187}
1188
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001189static int
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001190xfrm_get_saddr(struct net *net, xfrm_address_t *local, xfrm_address_t *remote,
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001191 unsigned short family)
1192{
1193 int err;
1194 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1195
1196 if (unlikely(afinfo == NULL))
1197 return -EINVAL;
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001198 err = afinfo->get_saddr(net, local, remote);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001199 xfrm_policy_put_afinfo(afinfo);
1200 return err;
1201}
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203/* Resolve list of templates for the flow, given policy. */
1204
1205static int
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001206xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1207 struct xfrm_state **xfrm,
1208 unsigned short family)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001210 struct net *net = xp_net(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 int nx;
1212 int i, error;
1213 xfrm_address_t *daddr = xfrm_flowi_daddr(fl, family);
1214 xfrm_address_t *saddr = xfrm_flowi_saddr(fl, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001215 xfrm_address_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 for (nx=0, i = 0; i < policy->xfrm_nr; i++) {
1218 struct xfrm_state *x;
1219 xfrm_address_t *remote = daddr;
1220 xfrm_address_t *local = saddr;
1221 struct xfrm_tmpl *tmpl = &policy->xfrm_vec[i];
1222
Joakim Koskela48b8d782007-07-26 00:08:42 -07001223 if (tmpl->mode == XFRM_MODE_TUNNEL ||
1224 tmpl->mode == XFRM_MODE_BEET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 remote = &tmpl->id.daddr;
1226 local = &tmpl->saddr;
Miika Komu76b3f052006-11-30 16:40:43 -08001227 family = tmpl->encap_family;
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001228 if (xfrm_addr_any(local, family)) {
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -08001229 error = xfrm_get_saddr(net, &tmp, remote, family);
Patrick McHardya1e59ab2006-09-19 12:57:34 -07001230 if (error)
1231 goto fail;
1232 local = &tmp;
1233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
1236 x = xfrm_state_find(remote, local, fl, tmpl, policy, &error, family);
1237
1238 if (x && x->km.state == XFRM_STATE_VALID) {
1239 xfrm[nx++] = x;
1240 daddr = remote;
1241 saddr = local;
1242 continue;
1243 }
1244 if (x) {
1245 error = (x->km.state == XFRM_STATE_ERROR ?
1246 -EINVAL : -EAGAIN);
1247 xfrm_state_put(x);
1248 }
fernando@oss.ntt.coa43222662008-10-23 04:27:19 +00001249 else if (error == -ESRCH)
1250 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 if (!tmpl->optional)
1253 goto fail;
1254 }
1255 return nx;
1256
1257fail:
1258 for (nx--; nx>=0; nx--)
1259 xfrm_state_put(xfrm[nx]);
1260 return error;
1261}
1262
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001263static int
1264xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1265 struct xfrm_state **xfrm,
1266 unsigned short family)
1267{
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001268 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1269 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001270 int cnx = 0;
1271 int error;
1272 int ret;
1273 int i;
1274
1275 for (i = 0; i < npols; i++) {
1276 if (cnx + pols[i]->xfrm_nr >= XFRM_MAX_DEPTH) {
1277 error = -ENOBUFS;
1278 goto fail;
1279 }
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001280
1281 ret = xfrm_tmpl_resolve_one(pols[i], fl, &tpp[cnx], family);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001282 if (ret < 0) {
1283 error = ret;
1284 goto fail;
1285 } else
1286 cnx += ret;
1287 }
1288
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001289 /* found states are sorted for outbound processing */
1290 if (npols > 1)
1291 xfrm_state_sort(xfrm, tpp, cnx, family);
1292
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001293 return cnx;
1294
1295 fail:
1296 for (cnx--; cnx>=0; cnx--)
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001297 xfrm_state_put(tpp[cnx]);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001298 return error;
1299
1300}
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/* Check that the bundle accepts the flow and its components are
1303 * still valid.
1304 */
1305
1306static struct dst_entry *
1307xfrm_find_bundle(struct flowi *fl, struct xfrm_policy *policy, unsigned short family)
1308{
1309 struct dst_entry *x;
1310 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1311 if (unlikely(afinfo == NULL))
1312 return ERR_PTR(-EINVAL);
1313 x = afinfo->find_bundle(fl, policy);
1314 xfrm_policy_put_afinfo(afinfo);
1315 return x;
1316}
1317
Herbert Xu25ee3282007-12-11 09:32:34 -08001318static inline int xfrm_get_tos(struct flowi *fl, int family)
1319{
1320 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1321 int tos;
1322
1323 if (!afinfo)
1324 return -EINVAL;
1325
1326 tos = afinfo->get_tos(fl);
1327
1328 xfrm_policy_put_afinfo(afinfo);
1329
1330 return tos;
1331}
1332
1333static inline struct xfrm_dst *xfrm_alloc_dst(int family)
1334{
1335 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
1336 struct xfrm_dst *xdst;
1337
1338 if (!afinfo)
1339 return ERR_PTR(-EINVAL);
1340
1341 xdst = dst_alloc(afinfo->dst_ops) ?: ERR_PTR(-ENOBUFS);
1342
1343 xfrm_policy_put_afinfo(afinfo);
1344
1345 return xdst;
1346}
1347
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001348static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
1349 int nfheader_len)
1350{
1351 struct xfrm_policy_afinfo *afinfo =
1352 xfrm_policy_get_afinfo(dst->ops->family);
1353 int err;
1354
1355 if (!afinfo)
1356 return -EINVAL;
1357
1358 err = afinfo->init_path(path, dst, nfheader_len);
1359
1360 xfrm_policy_put_afinfo(afinfo);
1361
1362 return err;
1363}
1364
Herbert Xu25ee3282007-12-11 09:32:34 -08001365static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev)
1366{
1367 struct xfrm_policy_afinfo *afinfo =
1368 xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
1369 int err;
1370
1371 if (!afinfo)
1372 return -EINVAL;
1373
1374 err = afinfo->fill_dst(xdst, dev);
1375
1376 xfrm_policy_put_afinfo(afinfo);
1377
1378 return err;
1379}
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381/* Allocate chain of dst_entry's, attach known xfrm's, calculate
1382 * all the metrics... Shortly, bundle a bundle.
1383 */
1384
Herbert Xu25ee3282007-12-11 09:32:34 -08001385static struct dst_entry *xfrm_bundle_create(struct xfrm_policy *policy,
1386 struct xfrm_state **xfrm, int nx,
1387 struct flowi *fl,
1388 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Herbert Xu25ee3282007-12-11 09:32:34 -08001390 unsigned long now = jiffies;
1391 struct net_device *dev;
1392 struct dst_entry *dst_prev = NULL;
1393 struct dst_entry *dst0 = NULL;
1394 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 int err;
Herbert Xu25ee3282007-12-11 09:32:34 -08001396 int header_len = 0;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001397 int nfheader_len = 0;
Herbert Xu25ee3282007-12-11 09:32:34 -08001398 int trailer_len = 0;
1399 int tos;
1400 int family = policy->selector.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001401 xfrm_address_t saddr, daddr;
1402
1403 xfrm_flowi_addr_get(fl, &saddr, &daddr, family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001404
1405 tos = xfrm_get_tos(fl, family);
1406 err = tos;
1407 if (tos < 0)
1408 goto put_states;
1409
1410 dst_hold(dst);
1411
1412 for (; i < nx; i++) {
1413 struct xfrm_dst *xdst = xfrm_alloc_dst(family);
1414 struct dst_entry *dst1 = &xdst->u.dst;
1415
1416 err = PTR_ERR(xdst);
1417 if (IS_ERR(xdst)) {
1418 dst_release(dst);
1419 goto put_states;
1420 }
1421
1422 if (!dst_prev)
1423 dst0 = dst1;
1424 else {
1425 dst_prev->child = dst_clone(dst1);
1426 dst1->flags |= DST_NOHASH;
1427 }
1428
1429 xdst->route = dst;
1430 memcpy(&dst1->metrics, &dst->metrics, sizeof(dst->metrics));
1431
1432 if (xfrm[i]->props.mode != XFRM_MODE_TRANSPORT) {
1433 family = xfrm[i]->props.family;
YOSHIFUJI Hideaki9bb182a2008-02-22 14:48:22 +09001434 dst = xfrm_dst_lookup(xfrm[i], tos, &saddr, &daddr,
1435 family);
Herbert Xu25ee3282007-12-11 09:32:34 -08001436 err = PTR_ERR(dst);
1437 if (IS_ERR(dst))
1438 goto put_states;
1439 } else
1440 dst_hold(dst);
1441
1442 dst1->xfrm = xfrm[i];
1443 xdst->genid = xfrm[i]->genid;
1444
1445 dst1->obsolete = -1;
1446 dst1->flags |= DST_HOST;
1447 dst1->lastuse = now;
1448
1449 dst1->input = dst_discard;
1450 dst1->output = xfrm[i]->outer_mode->afinfo->output;
1451
1452 dst1->next = dst_prev;
1453 dst_prev = dst1;
1454
1455 header_len += xfrm[i]->props.header_len;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001456 if (xfrm[i]->type->flags & XFRM_TYPE_NON_FRAGMENT)
1457 nfheader_len += xfrm[i]->props.header_len;
Herbert Xu25ee3282007-12-11 09:32:34 -08001458 trailer_len += xfrm[i]->props.trailer_len;
1459 }
1460
1461 dst_prev->child = dst;
1462 dst0->path = dst;
1463
1464 err = -ENODEV;
1465 dev = dst->dev;
1466 if (!dev)
1467 goto free_dst;
1468
1469 /* Copy neighbout for reachability confirmation */
1470 dst0->neighbour = neigh_clone(dst->neighbour);
1471
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -08001472 xfrm_init_path((struct xfrm_dst *)dst0, dst, nfheader_len);
Herbert Xu25ee3282007-12-11 09:32:34 -08001473 xfrm_init_pmtu(dst_prev);
1474
1475 for (dst_prev = dst0; dst_prev != dst; dst_prev = dst_prev->child) {
1476 struct xfrm_dst *xdst = (struct xfrm_dst *)dst_prev;
1477
1478 err = xfrm_fill_dst(xdst, dev);
1479 if (err)
1480 goto free_dst;
1481
1482 dst_prev->header_len = header_len;
1483 dst_prev->trailer_len = trailer_len;
1484 header_len -= xdst->u.dst.xfrm->props.header_len;
1485 trailer_len -= xdst->u.dst.xfrm->props.trailer_len;
1486 }
1487
1488out:
1489 return dst0;
1490
1491put_states:
1492 for (; i < nx; i++)
1493 xfrm_state_put(xfrm[i]);
1494free_dst:
1495 if (dst0)
1496 dst_free(dst0);
1497 dst0 = ERR_PTR(err);
1498 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001501static int inline
1502xfrm_dst_alloc_copy(void **target, void *src, int size)
1503{
1504 if (!*target) {
1505 *target = kmalloc(size, GFP_ATOMIC);
1506 if (!*target)
1507 return -ENOMEM;
1508 }
1509 memcpy(*target, src, size);
1510 return 0;
1511}
1512
1513static int inline
1514xfrm_dst_update_parent(struct dst_entry *dst, struct xfrm_selector *sel)
1515{
1516#ifdef CONFIG_XFRM_SUB_POLICY
1517 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1518 return xfrm_dst_alloc_copy((void **)&(xdst->partner),
1519 sel, sizeof(*sel));
1520#else
1521 return 0;
1522#endif
1523}
1524
1525static int inline
1526xfrm_dst_update_origin(struct dst_entry *dst, struct flowi *fl)
1527{
1528#ifdef CONFIG_XFRM_SUB_POLICY
1529 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
1530 return xfrm_dst_alloc_copy((void **)&(xdst->origin), fl, sizeof(*fl));
1531#else
1532 return 0;
1533#endif
1534}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536static int stale_bundle(struct dst_entry *dst);
1537
1538/* Main function: finds/creates a bundle for given flow.
1539 *
1540 * At the moment we eat a raw IP route. Mostly to speed up lookups
1541 * on interfaces with disabled IPsec.
1542 */
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001543int __xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001544 struct sock *sk, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
1546 struct xfrm_policy *policy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001547 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1548 int npols;
1549 int pol_dead;
1550 int xfrm_nr;
1551 int pi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 struct xfrm_state *xfrm[XFRM_MAX_DEPTH];
1553 struct dst_entry *dst, *dst_orig = *dst_p;
1554 int nx = 0;
1555 int err;
1556 u32 genid;
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001557 u16 family;
Trent Jaegerdf718372005-12-13 23:12:27 -08001558 u8 dir = policy_to_flow_dir(XFRM_POLICY_OUT);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560restart:
1561 genid = atomic_read(&flow_cache_genid);
1562 policy = NULL;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001563 for (pi = 0; pi < ARRAY_SIZE(pols); pi++)
1564 pols[pi] = NULL;
1565 npols = 0;
1566 pol_dead = 0;
1567 xfrm_nr = 0;
1568
Thomas Graff7944fb2007-08-25 13:46:55 -07001569 if (sk && sk->sk_policy[XFRM_POLICY_OUT]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001570 policy = xfrm_sk_policy_lookup(sk, XFRM_POLICY_OUT, fl);
Herbert Xu75b8c132007-12-11 04:38:08 -08001571 err = PTR_ERR(policy);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001572 if (IS_ERR(policy)) {
1573 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001574 goto dropdst;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001575 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 if (!policy) {
1579 /* To accelerate a bit... */
David S. Miller2518c7c2006-08-24 04:45:07 -07001580 if ((dst_orig->flags & DST_NOXFRM) ||
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001581 !net->xfrm.policy_count[XFRM_POLICY_OUT])
Herbert Xu8b7817f2007-12-12 10:44:43 -08001582 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001584 policy = flow_cache_lookup(net, fl, dst_orig->ops->family,
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001585 dir, xfrm_policy_lookup);
Herbert Xu75b8c132007-12-11 04:38:08 -08001586 err = PTR_ERR(policy);
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001587 if (IS_ERR(policy)) {
1588 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
Herbert Xu75b8c132007-12-11 04:38:08 -08001589 goto dropdst;
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
1593 if (!policy)
Herbert Xu8b7817f2007-12-12 10:44:43 -08001594 goto nopol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Patrick McHardy42cf93c2006-02-21 13:37:35 -08001596 family = dst_orig->ops->family;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001597 pols[0] = policy;
1598 npols ++;
1599 xfrm_nr += pols[0]->xfrm_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Herbert Xuaef21782007-12-13 09:30:59 -08001601 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001602 if ((flags & XFRM_LOOKUP_ICMP) && !(policy->flags & XFRM_POLICY_ICMP))
1603 goto error;
1604
1605 policy->curlft.use_time = get_seconds();
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 switch (policy->action) {
Herbert Xu5e5234f2007-11-30 00:50:31 +11001608 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 case XFRM_POLICY_BLOCK:
1610 /* Prohibit the flow */
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001611 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Patrick McHardye104411b2005-09-08 15:11:55 -07001612 err = -EPERM;
1613 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 case XFRM_POLICY_ALLOW:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001616#ifndef CONFIG_XFRM_SUB_POLICY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (policy->xfrm_nr == 0) {
1618 /* Flow passes not transformed. */
1619 xfrm_pol_put(policy);
1620 return 0;
1621 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001622#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 /* Try to find matching bundle.
1625 *
1626 * LATER: help from flow cache. It is optional, this
1627 * is required only for output policy.
1628 */
1629 dst = xfrm_find_bundle(fl, policy, family);
1630 if (IS_ERR(dst)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001631 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Patrick McHardye104411b2005-09-08 15:11:55 -07001632 err = PTR_ERR(dst);
1633 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
1635
1636 if (dst)
1637 break;
1638
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001639#ifdef CONFIG_XFRM_SUB_POLICY
1640 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001641 pols[1] = xfrm_policy_lookup_bytype(net,
1642 XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001643 fl, family,
1644 XFRM_POLICY_OUT);
1645 if (pols[1]) {
James Morris134b0fc2006-10-05 15:42:27 -05001646 if (IS_ERR(pols[1])) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001647 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001648 err = PTR_ERR(pols[1]);
1649 goto error;
1650 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001651 if (pols[1]->action == XFRM_POLICY_BLOCK) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001652 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001653 err = -EPERM;
1654 goto error;
1655 }
1656 npols ++;
1657 xfrm_nr += pols[1]->xfrm_nr;
1658 }
1659 }
1660
1661 /*
1662 * Because neither flowi nor bundle information knows about
1663 * transformation template size. On more than one policy usage
1664 * we can realize whether all of them is bypass or not after
1665 * they are searched. See above not-transformed bypass
1666 * is surrounded by non-sub policy configuration, too.
1667 */
1668 if (xfrm_nr == 0) {
1669 /* Flow passes not transformed. */
1670 xfrm_pols_put(pols, npols);
1671 return 0;
1672 }
1673
1674#endif
1675 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 if (unlikely(nx<0)) {
1678 err = nx;
David S. Miller14e50e52007-05-24 18:17:54 -07001679 if (err == -EAGAIN && sysctl_xfrm_larval_drop) {
1680 /* EREMOTE tells the caller to generate
1681 * a one-shot blackhole route.
1682 */
Masahide NAKAMURAd66e37a2008-01-07 21:46:15 -08001683 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
David S. Miller14e50e52007-05-24 18:17:54 -07001684 xfrm_pol_put(policy);
1685 return -EREMOTE;
1686 }
Herbert Xu815f4e52007-12-12 10:36:59 -08001687 if (err == -EAGAIN && (flags & XFRM_LOOKUP_WAIT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 DECLARE_WAITQUEUE(wait, current);
1689
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001690 add_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 set_current_state(TASK_INTERRUPTIBLE);
1692 schedule();
1693 set_current_state(TASK_RUNNING);
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001694 remove_wait_queue(&net->xfrm.km_waitq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001696 nx = xfrm_tmpl_resolve(pols, npols, fl, xfrm, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 if (nx == -EAGAIN && signal_pending(current)) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001699 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 err = -ERESTART;
1701 goto error;
1702 }
1703 if (nx == -EAGAIN ||
1704 genid != atomic_read(&flow_cache_genid)) {
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001705 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 goto restart;
1707 }
1708 err = nx;
1709 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001710 if (err < 0) {
1711 XFRM_INC_STATS(LINUX_MIB_XFRMOUTNOSTATES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
1715 if (nx == 0) {
1716 /* Flow passes not transformed. */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001717 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return 0;
1719 }
1720
Herbert Xu25ee3282007-12-11 09:32:34 -08001721 dst = xfrm_bundle_create(policy, xfrm, nx, fl, dst_orig);
1722 err = PTR_ERR(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001723 if (IS_ERR(dst)) {
1724 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLEGENERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 goto error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001728 for (pi = 0; pi < npols; pi++) {
1729 read_lock_bh(&pols[pi]->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07001730 pol_dead |= pols[pi]->walk.dead;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001731 read_unlock_bh(&pols[pi]->lock);
1732 }
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 write_lock_bh(&policy->lock);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001735 if (unlikely(pol_dead || stale_bundle(dst))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 /* Wow! While we worked on resolving, this
1737 * policy has gone. Retry. It is not paranoia,
1738 * we just cannot enlist new bundle to dead object.
1739 * We can't enlist stable bundles either.
1740 */
1741 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001742 dst_free(dst);
Herbert Xu00de6512006-02-13 16:01:27 -08001743
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001744 if (pol_dead)
1745 XFRM_INC_STATS(LINUX_MIB_XFRMOUTPOLDEAD);
1746 else
1747 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Herbert Xu00de6512006-02-13 16:01:27 -08001748 err = -EHOSTUNREACH;
1749 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001751
1752 if (npols > 1)
1753 err = xfrm_dst_update_parent(dst, &pols[1]->selector);
1754 else
1755 err = xfrm_dst_update_origin(dst, fl);
1756 if (unlikely(err)) {
1757 write_unlock_bh(&policy->lock);
Julien Brunel9d7d7402008-09-02 17:24:28 -07001758 dst_free(dst);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001759 XFRM_INC_STATS(LINUX_MIB_XFRMOUTBUNDLECHECKERROR);
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07001760 goto error;
1761 }
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 dst->next = policy->bundles;
1764 policy->bundles = dst;
1765 dst_hold(dst);
1766 write_unlock_bh(&policy->lock);
1767 }
1768 *dst_p = dst;
1769 dst_release(dst_orig);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001770 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 return 0;
1772
1773error:
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001774 xfrm_pols_put(pols, npols);
Herbert Xu75b8c132007-12-11 04:38:08 -08001775dropdst:
1776 dst_release(dst_orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 *dst_p = NULL;
1778 return err;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001779
1780nopol:
Herbert Xuaef21782007-12-13 09:30:59 -08001781 err = -ENOENT;
Herbert Xu8b7817f2007-12-12 10:44:43 -08001782 if (flags & XFRM_LOOKUP_ICMP)
1783 goto dropdst;
1784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
David S. Miller14e50e52007-05-24 18:17:54 -07001786EXPORT_SYMBOL(__xfrm_lookup);
1787
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001788int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
David S. Miller14e50e52007-05-24 18:17:54 -07001789 struct sock *sk, int flags)
1790{
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001791 int err = __xfrm_lookup(net, dst_p, fl, sk, flags);
David S. Miller14e50e52007-05-24 18:17:54 -07001792
1793 if (err == -EREMOTE) {
1794 dst_release(*dst_p);
1795 *dst_p = NULL;
1796 err = -EAGAIN;
1797 }
1798
1799 return err;
1800}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801EXPORT_SYMBOL(xfrm_lookup);
1802
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001803static inline int
1804xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl)
1805{
1806 struct xfrm_state *x;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001807
1808 if (!skb->sp || idx < 0 || idx >= skb->sp->len)
1809 return 0;
1810 x = skb->sp->xvec[idx];
1811 if (!x->type->reject)
1812 return 0;
Herbert Xu1ecafed2007-10-09 13:24:07 -07001813 return x->type->reject(x, skb, fl);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001814}
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816/* When skb is transformed back to its "native" form, we have to
1817 * check policy restrictions. At the moment we make this in maximally
1818 * stupid way. Shame on me. :-) Of course, connected sockets must
1819 * have policy cached at them.
1820 */
1821
1822static inline int
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001823xfrm_state_ok(struct xfrm_tmpl *tmpl, struct xfrm_state *x,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 unsigned short family)
1825{
1826 if (xfrm_state_kern(x))
Kazunori MIYAZAWA928ba412007-02-13 12:57:16 -08001827 return tmpl->optional && !xfrm_state_addr_cmp(tmpl, x, tmpl->encap_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return x->id.proto == tmpl->id.proto &&
1829 (x->id.spi == tmpl->id.spi || !tmpl->id.spi) &&
1830 (x->props.reqid == tmpl->reqid || !tmpl->reqid) &&
1831 x->props.mode == tmpl->mode &&
Herbert Xuc5d18e92008-04-22 00:46:42 -07001832 (tmpl->allalgs || (tmpl->aalgos & (1<<x->props.aalgo)) ||
Masahide NAKAMURAf3bd4842006-08-23 18:00:48 -07001833 !(xfrm_id_proto_match(tmpl->id.proto, IPSEC_PROTO_ANY))) &&
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001834 !(x->props.mode != XFRM_MODE_TRANSPORT &&
1835 xfrm_state_addr_cmp(tmpl, x, family));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001838/*
1839 * 0 or more than 0 is returned when validation is succeeded (either bypass
1840 * because of optional transport mode, or next index of the mathced secpath
1841 * state with the template.
1842 * -1 is returned when no matching template is found.
1843 * Otherwise "-2 - errored_index" is returned.
1844 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845static inline int
1846xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start,
1847 unsigned short family)
1848{
1849 int idx = start;
1850
1851 if (tmpl->optional) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -07001852 if (tmpl->mode == XFRM_MODE_TRANSPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return start;
1854 } else
1855 start = -1;
1856 for (; idx < sp->len; idx++) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001857 if (xfrm_state_ok(tmpl, sp->xvec[idx], family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return ++idx;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001859 if (sp->xvec[idx]->props.mode != XFRM_MODE_TRANSPORT) {
1860 if (start == -1)
1861 start = -2-idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 break;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
1865 return start;
1866}
1867
Herbert Xud5422ef2007-12-12 10:44:16 -08001868int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl,
1869 unsigned int family, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001872 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 if (unlikely(afinfo == NULL))
1875 return -EAFNOSUPPORT;
1876
Herbert Xud5422ef2007-12-12 10:44:16 -08001877 afinfo->decode_session(skb, fl, reverse);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001878 err = security_xfrm_decode_session(skb, &fl->secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 xfrm_policy_put_afinfo(afinfo);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001880 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
Herbert Xud5422ef2007-12-12 10:44:16 -08001882EXPORT_SYMBOL(__xfrm_decode_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001884static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
1886 for (; k < sp->len; k++) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001887 if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001888 *idxp = k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return 1;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892
1893 return 0;
1894}
1895
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001896int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 unsigned short family)
1898{
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001899 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 struct xfrm_policy *pol;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001901 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX];
1902 int npols = 0;
1903 int xfrm_nr;
1904 int pi;
Herbert Xud5422ef2007-12-12 10:44:16 -08001905 int reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 struct flowi fl;
Herbert Xud5422ef2007-12-12 10:44:16 -08001907 u8 fl_dir;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001908 int xerr_idx = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Herbert Xud5422ef2007-12-12 10:44:16 -08001910 reverse = dir & ~XFRM_POLICY_MASK;
1911 dir &= XFRM_POLICY_MASK;
1912 fl_dir = policy_to_flow_dir(dir);
1913
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001914 if (__xfrm_decode_session(skb, &fl, family, reverse) < 0) {
1915 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001917 }
1918
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -08001919 nf_nat_decode_session(skb, &fl, family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 /* First, check used SA against their selectors. */
1922 if (skb->sp) {
1923 int i;
1924
1925 for (i=skb->sp->len-1; i>=0; i--) {
Herbert Xudbe5b4a2006-04-01 00:54:16 -08001926 struct xfrm_state *x = skb->sp->xvec[i];
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001927 if (!xfrm_selector_match(&x->sel, &fl, family)) {
1928 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932 }
1933
1934 pol = NULL;
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001935 if (sk && sk->sk_policy[dir]) {
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001936 pol = xfrm_sk_policy_lookup(sk, dir, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001937 if (IS_ERR(pol)) {
1938 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001939 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001940 }
Venkat Yekkirala3bccfbc2006-10-05 15:42:35 -05001941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 if (!pol)
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001944 pol = flow_cache_lookup(net, &fl, family, fl_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 xfrm_policy_lookup);
1946
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001947 if (IS_ERR(pol)) {
1948 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001949 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001950 }
James Morris134b0fc2006-10-05 15:42:27 -05001951
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001952 if (!pol) {
James Morrisd1d9fac2006-09-01 00:32:12 -07001953 if (skb->sp && secpath_has_nontransport(skb->sp, 0, &xerr_idx)) {
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001954 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001955 XFRM_INC_STATS(LINUX_MIB_XFRMINNOPOLS);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07001956 return 0;
1957 }
1958 return 1;
1959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
James Morris9d729f72007-03-04 16:12:44 -08001961 pol->curlft.use_time = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001963 pols[0] = pol;
1964 npols ++;
1965#ifdef CONFIG_XFRM_SUB_POLICY
1966 if (pols[0]->type != XFRM_POLICY_TYPE_MAIN) {
Alexey Dobriyanf6e1e252008-11-25 17:35:44 -08001967 pols[1] = xfrm_policy_lookup_bytype(net, XFRM_POLICY_TYPE_MAIN,
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001968 &fl, family,
1969 XFRM_POLICY_IN);
1970 if (pols[1]) {
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001971 if (IS_ERR(pols[1])) {
1972 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLERROR);
James Morris134b0fc2006-10-05 15:42:27 -05001973 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001974 }
James Morris9d729f72007-03-04 16:12:44 -08001975 pols[1]->curlft.use_time = get_seconds();
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001976 npols ++;
1977 }
1978 }
1979#endif
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 if (pol->action == XFRM_POLICY_ALLOW) {
1982 struct sec_path *sp;
1983 static struct sec_path dummy;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001984 struct xfrm_tmpl *tp[XFRM_MAX_DEPTH];
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07001985 struct xfrm_tmpl *stp[XFRM_MAX_DEPTH];
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001986 struct xfrm_tmpl **tpp = tp;
1987 int ti = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 int i, k;
1989
1990 if ((sp = skb->sp) == NULL)
1991 sp = &dummy;
1992
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001993 for (pi = 0; pi < npols; pi++) {
1994 if (pols[pi] != pol &&
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001995 pols[pi]->action != XFRM_POLICY_ALLOW) {
1996 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07001997 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08001998 }
1999 if (ti + pols[pi]->xfrm_nr >= XFRM_MAX_DEPTH) {
2000 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002001 goto reject_error;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002002 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002003 for (i = 0; i < pols[pi]->xfrm_nr; i++)
2004 tpp[ti++] = &pols[pi]->xfrm_vec[i];
2005 }
2006 xfrm_nr = ti;
Masahide NAKAMURA41a49cc2006-08-23 22:48:31 -07002007 if (npols > 1) {
2008 xfrm_tmpl_sort(stp, tpp, xfrm_nr, family);
2009 tpp = stp;
2010 }
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* For each tunnel xfrm, find the first matching tmpl.
2013 * For each tmpl before that, find corresponding xfrm.
2014 * Order is _important_. Later we will implement
2015 * some barriers, but at the moment barriers
2016 * are implied between each two transformations.
2017 */
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002018 for (i = xfrm_nr-1, k = 0; i >= 0; i--) {
2019 k = xfrm_policy_ok(tpp[i], sp, k, family);
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002020 if (k < 0) {
James Morrisd1d9fac2006-09-01 00:32:12 -07002021 if (k < -1)
2022 /* "-2 - errored_index" returned */
2023 xerr_idx = -(2+k);
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002024 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 goto reject;
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
2028
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002029 if (secpath_has_nontransport(sp, k, &xerr_idx)) {
2030 XFRM_INC_STATS(LINUX_MIB_XFRMINTMPLMISMATCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 goto reject;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002034 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return 1;
2036 }
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002037 XFRM_INC_STATS(LINUX_MIB_XFRMINPOLBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039reject:
Masahide NAKAMURAdf0ba922006-08-23 20:41:00 -07002040 xfrm_secpath_reject(xerr_idx, skb, &fl);
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002041reject_error:
2042 xfrm_pols_put(pols, npols);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return 0;
2044}
2045EXPORT_SYMBOL(__xfrm_policy_check);
2046
2047int __xfrm_route_forward(struct sk_buff *skb, unsigned short family)
2048{
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002049 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 struct flowi fl;
2051
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002052 if (xfrm_decode_session(skb, &fl, family) < 0) {
2053 /* XXX: we should have something like FWDHDRERROR here. */
2054 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 return 0;
Masahide NAKAMURA0aa64772007-12-20 20:43:36 -08002056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Alexey Dobriyan99a66652008-11-25 17:36:13 -08002058 return xfrm_lookup(net, &skb->dst, &fl, NULL, 0) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
2060EXPORT_SYMBOL(__xfrm_route_forward);
2061
David S. Millerd49c73c2006-08-13 18:55:53 -07002062/* Optimize later using cookies and generation ids. */
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
2065{
David S. Millerd49c73c2006-08-13 18:55:53 -07002066 /* Code (such as __xfrm4_bundle_create()) sets dst->obsolete
2067 * to "-1" to force all XFRM destinations to get validated by
2068 * dst_ops->check on every use. We do this because when a
2069 * normal route referenced by an XFRM dst is obsoleted we do
2070 * not go looking around for all parent referencing XFRM dsts
2071 * so that we can invalidate them. It is just too much work.
2072 * Instead we make the checks here on every use. For example:
2073 *
2074 * XFRM dst A --> IPv4 dst X
2075 *
2076 * X is the "xdst->route" of A (X is also the "dst->path" of A
2077 * in this example). If X is marked obsolete, "A" will not
2078 * notice. That's what we are validating here via the
2079 * stale_bundle() check.
2080 *
2081 * When a policy's bundle is pruned, we dst_free() the XFRM
2082 * dst which causes it's ->obsolete field to be set to a
2083 * positive non-zero integer. If an XFRM dst has been pruned
2084 * like this, we want to force a new route lookup.
David S. Miller399c1802005-12-19 14:23:23 -08002085 */
David S. Millerd49c73c2006-08-13 18:55:53 -07002086 if (dst->obsolete < 0 && !stale_bundle(dst))
2087 return dst;
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return NULL;
2090}
2091
2092static int stale_bundle(struct dst_entry *dst)
2093{
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002094 return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
Herbert Xuaabc9762005-05-03 16:27:10 -07002097void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 while ((dst = dst->child) && dst->xfrm && dst->dev == dev) {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002100 dst->dev = dev_net(dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -07002101 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 dev_put(dev);
2103 }
2104}
Herbert Xuaabc9762005-05-03 16:27:10 -07002105EXPORT_SYMBOL(xfrm_dst_ifdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107static void xfrm_link_failure(struct sk_buff *skb)
2108{
2109 /* Impossible. Such dst must be popped before reaches point of failure. */
2110 return;
2111}
2112
2113static struct dst_entry *xfrm_negative_advice(struct dst_entry *dst)
2114{
2115 if (dst) {
2116 if (dst->obsolete) {
2117 dst_release(dst);
2118 dst = NULL;
2119 }
2120 }
2121 return dst;
2122}
2123
David S. Miller2518c7c2006-08-24 04:45:07 -07002124static void prune_one_bundle(struct xfrm_policy *pol, int (*func)(struct dst_entry *), struct dst_entry **gc_list_p)
2125{
2126 struct dst_entry *dst, **dstp;
2127
2128 write_lock(&pol->lock);
2129 dstp = &pol->bundles;
2130 while ((dst=*dstp) != NULL) {
2131 if (func(dst)) {
2132 *dstp = dst->next;
2133 dst->next = *gc_list_p;
2134 *gc_list_p = dst;
2135 } else {
2136 dstp = &dst->next;
2137 }
2138 }
2139 write_unlock(&pol->lock);
2140}
2141
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002142static void xfrm_prune_bundles(struct net *net, int (*func)(struct dst_entry *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
David S. Miller2518c7c2006-08-24 04:45:07 -07002144 struct dst_entry *gc_list = NULL;
2145 int dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
2147 read_lock_bh(&xfrm_policy_lock);
David S. Miller2518c7c2006-08-24 04:45:07 -07002148 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2149 struct xfrm_policy *pol;
2150 struct hlist_node *entry;
2151 struct hlist_head *table;
2152 int i;
Masahide NAKAMURA4e81bb82006-08-23 22:43:30 -07002153
David S. Miller2518c7c2006-08-24 04:45:07 -07002154 hlist_for_each_entry(pol, entry,
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002155 &net->xfrm.policy_inexact[dir], bydst)
David S. Miller2518c7c2006-08-24 04:45:07 -07002156 prune_one_bundle(pol, func, &gc_list);
2157
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002158 table = net->xfrm.policy_bydst[dir].table;
2159 for (i = net->xfrm.policy_bydst[dir].hmask; i >= 0; i--) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002160 hlist_for_each_entry(pol, entry, table + i, bydst)
2161 prune_one_bundle(pol, func, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
2163 }
2164 read_unlock_bh(&xfrm_policy_lock);
2165
2166 while (gc_list) {
David S. Miller2518c7c2006-08-24 04:45:07 -07002167 struct dst_entry *dst = gc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 gc_list = dst->next;
2169 dst_free(dst);
2170 }
2171}
2172
2173static int unused_bundle(struct dst_entry *dst)
2174{
2175 return !atomic_read(&dst->__refcnt);
2176}
2177
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002178static void __xfrm_garbage_collect(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Alexey Dobriyanddcfd792008-11-25 17:37:23 -08002180 xfrm_prune_bundles(net, unused_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002183static int xfrm_flush_bundles(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002185 xfrm_prune_bundles(net, stale_bundle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 return 0;
2187}
2188
Herbert Xu25ee3282007-12-11 09:32:34 -08002189static void xfrm_init_pmtu(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
2191 do {
2192 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2193 u32 pmtu, route_mtu_cached;
2194
2195 pmtu = dst_mtu(dst->child);
2196 xdst->child_mtu_cached = pmtu;
2197
2198 pmtu = xfrm_state_mtu(dst->xfrm, pmtu);
2199
2200 route_mtu_cached = dst_mtu(xdst->route);
2201 xdst->route_mtu_cached = route_mtu_cached;
2202
2203 if (pmtu > route_mtu_cached)
2204 pmtu = route_mtu_cached;
2205
2206 dst->metrics[RTAX_MTU-1] = pmtu;
2207 } while ((dst = dst->next));
2208}
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210/* Check that the bundle accepts the flow and its components are
2211 * still valid.
2212 */
2213
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05002214int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
2215 struct flowi *fl, int family, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
2217 struct dst_entry *dst = &first->u.dst;
2218 struct xfrm_dst *last;
2219 u32 mtu;
2220
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002221 if (!dst_check(dst->path, ((struct xfrm_dst *)dst)->path_cookie) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 (dst->dev && !netif_running(dst->dev)))
2223 return 0;
Masahide NAKAMURA157bfc22007-04-30 00:33:35 -07002224#ifdef CONFIG_XFRM_SUB_POLICY
2225 if (fl) {
2226 if (first->origin && !flow_cache_uli_match(first->origin, fl))
2227 return 0;
2228 if (first->partner &&
2229 !xfrm_selector_match(first->partner, fl, family))
2230 return 0;
2231 }
2232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 last = NULL;
2235
2236 do {
2237 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
2238
2239 if (fl && !xfrm_selector_match(&dst->xfrm->sel, fl, family))
2240 return 0;
Venkat Yekkirala67f83cb2006-11-08 17:04:26 -06002241 if (fl && pol &&
2242 !security_xfrm_state_pol_flow_match(dst->xfrm, pol, fl))
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 if (dst->xfrm->km.state != XFRM_STATE_VALID)
2245 return 0;
David S. Miller9d4a7062006-08-24 03:18:09 -07002246 if (xdst->genid != dst->xfrm->genid)
2247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Herbert Xu1bfcb102007-10-17 21:31:50 -07002249 if (strict && fl &&
Herbert Xu13996372007-10-17 21:35:51 -07002250 !(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
Masahide NAKAMURAe53820d2006-08-23 19:12:01 -07002251 !xfrm_state_addr_flow_check(dst->xfrm, fl, family))
2252 return 0;
2253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 mtu = dst_mtu(dst->child);
2255 if (xdst->child_mtu_cached != mtu) {
2256 last = xdst;
2257 xdst->child_mtu_cached = mtu;
2258 }
2259
Hideaki YOSHIFUJI92d63de2005-05-26 12:58:04 -07002260 if (!dst_check(xdst->route, xdst->route_cookie))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return 0;
2262 mtu = dst_mtu(xdst->route);
2263 if (xdst->route_mtu_cached != mtu) {
2264 last = xdst;
2265 xdst->route_mtu_cached = mtu;
2266 }
2267
2268 dst = dst->child;
2269 } while (dst->xfrm);
2270
2271 if (likely(!last))
2272 return 1;
2273
2274 mtu = last->child_mtu_cached;
2275 for (;;) {
2276 dst = &last->u.dst;
2277
2278 mtu = xfrm_state_mtu(dst->xfrm, mtu);
2279 if (mtu > last->route_mtu_cached)
2280 mtu = last->route_mtu_cached;
2281 dst->metrics[RTAX_MTU-1] = mtu;
2282
2283 if (last == first)
2284 break;
2285
Patrick McHardybd0bf072007-07-18 01:55:52 -07002286 last = (struct xfrm_dst *)last->u.dst.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 last->child_mtu_cached = mtu;
2288 }
2289
2290 return 1;
2291}
2292
2293EXPORT_SYMBOL(xfrm_bundle_ok);
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
2296{
2297 int err = 0;
2298 if (unlikely(afinfo == NULL))
2299 return -EINVAL;
2300 if (unlikely(afinfo->family >= NPROTO))
2301 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002302 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 if (unlikely(xfrm_policy_afinfo[afinfo->family] != NULL))
2304 err = -ENOBUFS;
2305 else {
2306 struct dst_ops *dst_ops = afinfo->dst_ops;
2307 if (likely(dst_ops->kmem_cachep == NULL))
2308 dst_ops->kmem_cachep = xfrm_dst_cache;
2309 if (likely(dst_ops->check == NULL))
2310 dst_ops->check = xfrm_dst_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (likely(dst_ops->negative_advice == NULL))
2312 dst_ops->negative_advice = xfrm_negative_advice;
2313 if (likely(dst_ops->link_failure == NULL))
2314 dst_ops->link_failure = xfrm_link_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 if (likely(afinfo->garbage_collect == NULL))
2316 afinfo->garbage_collect = __xfrm_garbage_collect;
2317 xfrm_policy_afinfo[afinfo->family] = afinfo;
2318 }
Ingo Molnare959d812006-04-28 15:32:29 -07002319 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return err;
2321}
2322EXPORT_SYMBOL(xfrm_policy_register_afinfo);
2323
2324int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
2325{
2326 int err = 0;
2327 if (unlikely(afinfo == NULL))
2328 return -EINVAL;
2329 if (unlikely(afinfo->family >= NPROTO))
2330 return -EAFNOSUPPORT;
Ingo Molnare959d812006-04-28 15:32:29 -07002331 write_lock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (likely(xfrm_policy_afinfo[afinfo->family] != NULL)) {
2333 if (unlikely(xfrm_policy_afinfo[afinfo->family] != afinfo))
2334 err = -EINVAL;
2335 else {
2336 struct dst_ops *dst_ops = afinfo->dst_ops;
2337 xfrm_policy_afinfo[afinfo->family] = NULL;
2338 dst_ops->kmem_cachep = NULL;
2339 dst_ops->check = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 dst_ops->negative_advice = NULL;
2341 dst_ops->link_failure = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 afinfo->garbage_collect = NULL;
2343 }
2344 }
Ingo Molnare959d812006-04-28 15:32:29 -07002345 write_unlock_bh(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 return err;
2347}
2348EXPORT_SYMBOL(xfrm_policy_unregister_afinfo);
2349
2350static struct xfrm_policy_afinfo *xfrm_policy_get_afinfo(unsigned short family)
2351{
2352 struct xfrm_policy_afinfo *afinfo;
2353 if (unlikely(family >= NPROTO))
2354 return NULL;
2355 read_lock(&xfrm_policy_afinfo_lock);
2356 afinfo = xfrm_policy_afinfo[family];
Herbert Xu546be242006-05-27 23:03:58 -07002357 if (unlikely(!afinfo))
2358 read_unlock(&xfrm_policy_afinfo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 return afinfo;
2360}
2361
2362static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo)
2363{
Herbert Xu546be242006-05-27 23:03:58 -07002364 read_unlock(&xfrm_policy_afinfo_lock);
2365}
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
2368{
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002369 struct net_device *dev = ptr;
2370
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 switch (event) {
2372 case NETDEV_DOWN:
Alexey Dobriyan3dd0b492008-11-25 17:36:51 -08002373 xfrm_flush_bundles(dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 }
2375 return NOTIFY_DONE;
2376}
2377
2378static struct notifier_block xfrm_dev_notifier = {
Alexey Dobriyand5917a32008-10-31 00:41:59 -07002379 .notifier_call = xfrm_dev_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380};
2381
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002382#ifdef CONFIG_XFRM_STATISTICS
2383static int __init xfrm_statistics_init(void)
2384{
2385 if (snmp_mib_init((void **)xfrm_statistics,
2386 sizeof(struct linux_xfrm_mib)) < 0)
2387 return -ENOMEM;
2388 return 0;
2389}
2390#endif
2391
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002392static int __net_init xfrm_policy_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393{
David S. Miller2518c7c2006-08-24 04:45:07 -07002394 unsigned int hmask, sz;
2395 int dir;
2396
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002397 if (net_eq(net, &init_net))
2398 xfrm_dst_cache = kmem_cache_create("xfrm_dst_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 sizeof(struct xfrm_dst),
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002400 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002401 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
David S. Miller2518c7c2006-08-24 04:45:07 -07002403 hmask = 8 - 1;
2404 sz = (hmask+1) * sizeof(struct hlist_head);
2405
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002406 net->xfrm.policy_byidx = xfrm_hash_alloc(sz);
2407 if (!net->xfrm.policy_byidx)
2408 goto out_byidx;
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002409 net->xfrm.policy_idx_hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002410
2411 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
2412 struct xfrm_policy_hash *htab;
2413
Alexey Dobriyandc2caba2008-11-25 17:24:15 -08002414 net->xfrm.policy_count[dir] = 0;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002415 INIT_HLIST_HEAD(&net->xfrm.policy_inexact[dir]);
David S. Miller2518c7c2006-08-24 04:45:07 -07002416
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002417 htab = &net->xfrm.policy_bydst[dir];
David S. Miller44e36b42006-08-24 04:50:50 -07002418 htab->table = xfrm_hash_alloc(sz);
David S. Miller2518c7c2006-08-24 04:45:07 -07002419 if (!htab->table)
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002420 goto out_bydst;
2421 htab->hmask = hmask;
David S. Miller2518c7c2006-08-24 04:45:07 -07002422 }
2423
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002424 INIT_LIST_HEAD(&net->xfrm.policy_all);
Alexey Dobriyan66caf622008-11-25 17:28:57 -08002425 INIT_WORK(&net->xfrm.policy_hash_work, xfrm_hash_resize);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002426 if (net_eq(net, &init_net))
2427 register_netdevice_notifier(&xfrm_dev_notifier);
2428 return 0;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002429
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002430out_bydst:
2431 for (dir--; dir >= 0; dir--) {
2432 struct xfrm_policy_hash *htab;
2433
2434 htab = &net->xfrm.policy_bydst[dir];
2435 xfrm_hash_free(htab->table, sz);
2436 }
2437 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002438out_byidx:
2439 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440}
2441
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002442static void xfrm_policy_fini(struct net *net)
2443{
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002444 unsigned int sz;
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002445 int dir;
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002446
Alexey Dobriyanadfcf0b2008-11-25 17:22:11 -08002447 WARN_ON(!list_empty(&net->xfrm.policy_all));
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002448
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002449 for (dir = 0; dir < XFRM_POLICY_MAX * 2; dir++) {
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002450 struct xfrm_policy_hash *htab;
2451
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002452 WARN_ON(!hlist_empty(&net->xfrm.policy_inexact[dir]));
Alexey Dobriyana35f6c52008-11-25 17:23:48 -08002453
2454 htab = &net->xfrm.policy_bydst[dir];
2455 sz = (htab->hmask + 1);
2456 WARN_ON(!hlist_empty(htab->table));
2457 xfrm_hash_free(htab->table, sz);
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002458 }
2459
Alexey Dobriyan8100bea2008-11-25 17:22:58 -08002460 sz = (net->xfrm.policy_idx_hmask + 1) * sizeof(struct hlist_head);
Alexey Dobriyan93b851c2008-11-25 17:22:35 -08002461 WARN_ON(!hlist_empty(net->xfrm.policy_byidx));
2462 xfrm_hash_free(net->xfrm.policy_byidx, sz);
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002463}
2464
2465static int __net_init xfrm_net_init(struct net *net)
2466{
2467 int rv;
2468
2469 rv = xfrm_state_init(net);
2470 if (rv < 0)
2471 goto out_state;
2472 rv = xfrm_policy_init(net);
2473 if (rv < 0)
2474 goto out_policy;
2475 return 0;
2476
2477out_policy:
2478 xfrm_state_fini(net);
2479out_state:
2480 return rv;
2481}
2482
2483static void __net_exit xfrm_net_exit(struct net *net)
2484{
2485 xfrm_policy_fini(net);
2486 xfrm_state_fini(net);
2487}
2488
2489static struct pernet_operations __net_initdata xfrm_net_ops = {
2490 .init = xfrm_net_init,
2491 .exit = xfrm_net_exit,
2492};
2493
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494void __init xfrm_init(void)
2495{
Alexey Dobriyand62ddc22008-11-25 17:14:31 -08002496 register_pernet_subsys(&xfrm_net_ops);
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002497#ifdef CONFIG_XFRM_STATISTICS
2498 xfrm_statistics_init();
2499#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 xfrm_input_init();
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -08002501#ifdef CONFIG_XFRM_STATISTICS
2502 xfrm_proc_init();
2503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Joy Lattenab5f5e82007-09-17 11:51:22 -07002506#ifdef CONFIG_AUDITSYSCALL
Ilpo Järvinen1486cbd72008-01-12 03:20:03 -08002507static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
2508 struct audit_buffer *audit_buf)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002509{
Paul Moore875179f2007-12-01 23:27:18 +11002510 struct xfrm_sec_ctx *ctx = xp->security;
2511 struct xfrm_selector *sel = &xp->selector;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002512
Paul Moore875179f2007-12-01 23:27:18 +11002513 if (ctx)
2514 audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
2515 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
2516
2517 switch(sel->family) {
Joy Lattenab5f5e82007-09-17 11:51:22 -07002518 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -07002519 audit_log_format(audit_buf, " src=%pI4", &sel->saddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002520 if (sel->prefixlen_s != 32)
2521 audit_log_format(audit_buf, " src_prefixlen=%d",
2522 sel->prefixlen_s);
Harvey Harrison21454aa2008-10-31 00:54:56 -07002523 audit_log_format(audit_buf, " dst=%pI4", &sel->daddr.a4);
Paul Moore875179f2007-12-01 23:27:18 +11002524 if (sel->prefixlen_d != 32)
2525 audit_log_format(audit_buf, " dst_prefixlen=%d",
2526 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002527 break;
2528 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002529 audit_log_format(audit_buf, " src=%pI6", sel->saddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002530 if (sel->prefixlen_s != 128)
2531 audit_log_format(audit_buf, " src_prefixlen=%d",
2532 sel->prefixlen_s);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07002533 audit_log_format(audit_buf, " dst=%pI6", sel->daddr.a6);
Paul Moore875179f2007-12-01 23:27:18 +11002534 if (sel->prefixlen_d != 128)
2535 audit_log_format(audit_buf, " dst_prefixlen=%d",
2536 sel->prefixlen_d);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002537 break;
2538 }
2539}
2540
Paul Moore68277ac2007-12-20 20:49:33 -08002541void xfrm_audit_policy_add(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002542 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002543{
2544 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002545
Paul Mooreafeb14b2007-12-21 14:58:11 -08002546 audit_buf = xfrm_audit_start("SPD-add");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002547 if (audit_buf == NULL)
2548 return;
Eric Paris25323862008-04-18 10:09:25 -04002549 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002550 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002551 xfrm_audit_common_policyinfo(xp, audit_buf);
2552 audit_log_end(audit_buf);
2553}
2554EXPORT_SYMBOL_GPL(xfrm_audit_policy_add);
2555
Paul Moore68277ac2007-12-20 20:49:33 -08002556void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result,
Eric Paris25323862008-04-18 10:09:25 -04002557 uid_t auid, u32 sessionid, u32 secid)
Joy Lattenab5f5e82007-09-17 11:51:22 -07002558{
2559 struct audit_buffer *audit_buf;
Joy Lattenab5f5e82007-09-17 11:51:22 -07002560
Paul Mooreafeb14b2007-12-21 14:58:11 -08002561 audit_buf = xfrm_audit_start("SPD-delete");
Joy Lattenab5f5e82007-09-17 11:51:22 -07002562 if (audit_buf == NULL)
2563 return;
Eric Paris25323862008-04-18 10:09:25 -04002564 xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
Paul Mooreafeb14b2007-12-21 14:58:11 -08002565 audit_log_format(audit_buf, " res=%u", result);
Joy Lattenab5f5e82007-09-17 11:51:22 -07002566 xfrm_audit_common_policyinfo(xp, audit_buf);
2567 audit_log_end(audit_buf);
2568}
2569EXPORT_SYMBOL_GPL(xfrm_audit_policy_delete);
2570#endif
2571
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002572#ifdef CONFIG_XFRM_MIGRATE
2573static int xfrm_migrate_selector_match(struct xfrm_selector *sel_cmp,
2574 struct xfrm_selector *sel_tgt)
2575{
2576 if (sel_cmp->proto == IPSEC_ULPROTO_ANY) {
2577 if (sel_tgt->family == sel_cmp->family &&
2578 xfrm_addr_cmp(&sel_tgt->daddr, &sel_cmp->daddr,
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09002579 sel_cmp->family) == 0 &&
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002580 xfrm_addr_cmp(&sel_tgt->saddr, &sel_cmp->saddr,
2581 sel_cmp->family) == 0 &&
2582 sel_tgt->prefixlen_d == sel_cmp->prefixlen_d &&
2583 sel_tgt->prefixlen_s == sel_cmp->prefixlen_s) {
2584 return 1;
2585 }
2586 } else {
2587 if (memcmp(sel_tgt, sel_cmp, sizeof(*sel_tgt)) == 0) {
2588 return 1;
2589 }
2590 }
2591 return 0;
2592}
2593
2594static struct xfrm_policy * xfrm_migrate_policy_find(struct xfrm_selector *sel,
2595 u8 dir, u8 type)
2596{
2597 struct xfrm_policy *pol, *ret = NULL;
2598 struct hlist_node *entry;
2599 struct hlist_head *chain;
2600 u32 priority = ~0U;
2601
2602 read_lock_bh(&xfrm_policy_lock);
Alexey Dobriyan11219942008-11-25 17:33:06 -08002603 chain = policy_hash_direct(&init_net, &sel->daddr, &sel->saddr, sel->family, dir);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002604 hlist_for_each_entry(pol, entry, chain, bydst) {
2605 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2606 pol->type == type) {
2607 ret = pol;
2608 priority = ret->priority;
2609 break;
2610 }
2611 }
Alexey Dobriyan8b18f8e2008-11-25 17:23:26 -08002612 chain = &init_net.xfrm.policy_inexact[dir];
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002613 hlist_for_each_entry(pol, entry, chain, bydst) {
2614 if (xfrm_migrate_selector_match(sel, &pol->selector) &&
2615 pol->type == type &&
2616 pol->priority < priority) {
2617 ret = pol;
2618 break;
2619 }
2620 }
2621
2622 if (ret)
2623 xfrm_pol_hold(ret);
2624
2625 read_unlock_bh(&xfrm_policy_lock);
2626
2627 return ret;
2628}
2629
2630static int migrate_tmpl_match(struct xfrm_migrate *m, struct xfrm_tmpl *t)
2631{
2632 int match = 0;
2633
2634 if (t->mode == m->mode && t->id.proto == m->proto &&
2635 (m->reqid == 0 || t->reqid == m->reqid)) {
2636 switch (t->mode) {
2637 case XFRM_MODE_TUNNEL:
2638 case XFRM_MODE_BEET:
2639 if (xfrm_addr_cmp(&t->id.daddr, &m->old_daddr,
2640 m->old_family) == 0 &&
2641 xfrm_addr_cmp(&t->saddr, &m->old_saddr,
2642 m->old_family) == 0) {
2643 match = 1;
2644 }
2645 break;
2646 case XFRM_MODE_TRANSPORT:
2647 /* in case of transport mode, template does not store
2648 any IP addresses, hence we just compare mode and
2649 protocol */
2650 match = 1;
2651 break;
2652 default:
2653 break;
2654 }
2655 }
2656 return match;
2657}
2658
2659/* update endpoint address(es) of template(s) */
2660static int xfrm_policy_migrate(struct xfrm_policy *pol,
2661 struct xfrm_migrate *m, int num_migrate)
2662{
2663 struct xfrm_migrate *mp;
2664 struct dst_entry *dst;
2665 int i, j, n = 0;
2666
2667 write_lock_bh(&pol->lock);
Herbert Xu12a169e2008-10-01 07:03:24 -07002668 if (unlikely(pol->walk.dead)) {
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002669 /* target policy has been deleted */
2670 write_unlock_bh(&pol->lock);
2671 return -ENOENT;
2672 }
2673
2674 for (i = 0; i < pol->xfrm_nr; i++) {
2675 for (j = 0, mp = m; j < num_migrate; j++, mp++) {
2676 if (!migrate_tmpl_match(mp, &pol->xfrm_vec[i]))
2677 continue;
2678 n++;
Herbert Xu1bfcb102007-10-17 21:31:50 -07002679 if (pol->xfrm_vec[i].mode != XFRM_MODE_TUNNEL &&
2680 pol->xfrm_vec[i].mode != XFRM_MODE_BEET)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002681 continue;
2682 /* update endpoints */
2683 memcpy(&pol->xfrm_vec[i].id.daddr, &mp->new_daddr,
2684 sizeof(pol->xfrm_vec[i].id.daddr));
2685 memcpy(&pol->xfrm_vec[i].saddr, &mp->new_saddr,
2686 sizeof(pol->xfrm_vec[i].saddr));
2687 pol->xfrm_vec[i].encap_family = mp->new_family;
2688 /* flush bundles */
2689 while ((dst = pol->bundles) != NULL) {
2690 pol->bundles = dst->next;
2691 dst_free(dst);
2692 }
2693 }
2694 }
2695
2696 write_unlock_bh(&pol->lock);
2697
2698 if (!n)
2699 return -ENODATA;
2700
2701 return 0;
2702}
2703
2704static int xfrm_migrate_check(struct xfrm_migrate *m, int num_migrate)
2705{
2706 int i, j;
2707
2708 if (num_migrate < 1 || num_migrate > XFRM_MAX_DEPTH)
2709 return -EINVAL;
2710
2711 for (i = 0; i < num_migrate; i++) {
2712 if ((xfrm_addr_cmp(&m[i].old_daddr, &m[i].new_daddr,
2713 m[i].old_family) == 0) &&
2714 (xfrm_addr_cmp(&m[i].old_saddr, &m[i].new_saddr,
2715 m[i].old_family) == 0))
2716 return -EINVAL;
2717 if (xfrm_addr_any(&m[i].new_daddr, m[i].new_family) ||
2718 xfrm_addr_any(&m[i].new_saddr, m[i].new_family))
2719 return -EINVAL;
2720
2721 /* check if there is any duplicated entry */
2722 for (j = i + 1; j < num_migrate; j++) {
2723 if (!memcmp(&m[i].old_daddr, &m[j].old_daddr,
2724 sizeof(m[i].old_daddr)) &&
2725 !memcmp(&m[i].old_saddr, &m[j].old_saddr,
2726 sizeof(m[i].old_saddr)) &&
2727 m[i].proto == m[j].proto &&
2728 m[i].mode == m[j].mode &&
2729 m[i].reqid == m[j].reqid &&
2730 m[i].old_family == m[j].old_family)
2731 return -EINVAL;
2732 }
2733 }
2734
2735 return 0;
2736}
2737
2738int xfrm_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002739 struct xfrm_migrate *m, int num_migrate,
2740 struct xfrm_kmaddress *k)
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002741{
2742 int i, err, nx_cur = 0, nx_new = 0;
2743 struct xfrm_policy *pol = NULL;
2744 struct xfrm_state *x, *xc;
2745 struct xfrm_state *x_cur[XFRM_MAX_DEPTH];
2746 struct xfrm_state *x_new[XFRM_MAX_DEPTH];
2747 struct xfrm_migrate *mp;
2748
2749 if ((err = xfrm_migrate_check(m, num_migrate)) < 0)
2750 goto out;
2751
2752 /* Stage 1 - find policy */
2753 if ((pol = xfrm_migrate_policy_find(sel, dir, type)) == NULL) {
2754 err = -ENOENT;
2755 goto out;
2756 }
2757
2758 /* Stage 2 - find and update state(s) */
2759 for (i = 0, mp = m; i < num_migrate; i++, mp++) {
2760 if ((x = xfrm_migrate_state_find(mp))) {
2761 x_cur[nx_cur] = x;
2762 nx_cur++;
2763 if ((xc = xfrm_state_migrate(x, mp))) {
2764 x_new[nx_new] = xc;
2765 nx_new++;
2766 } else {
2767 err = -ENODATA;
2768 goto restore_state;
2769 }
2770 }
2771 }
2772
2773 /* Stage 3 - update policy */
2774 if ((err = xfrm_policy_migrate(pol, m, num_migrate)) < 0)
2775 goto restore_state;
2776
2777 /* Stage 4 - delete old state(s) */
2778 if (nx_cur) {
2779 xfrm_states_put(x_cur, nx_cur);
2780 xfrm_states_delete(x_cur, nx_cur);
2781 }
2782
2783 /* Stage 5 - announce */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002784 km_migrate(sel, dir, type, m, num_migrate, k);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002785
2786 xfrm_pol_put(pol);
2787
2788 return 0;
2789out:
2790 return err;
2791
2792restore_state:
2793 if (pol)
2794 xfrm_pol_put(pol);
2795 if (nx_cur)
2796 xfrm_states_put(x_cur, nx_cur);
2797 if (nx_new)
2798 xfrm_states_delete(x_new, nx_new);
2799
2800 return err;
2801}
David S. Millere610e672007-02-08 13:29:15 -08002802EXPORT_SYMBOL(xfrm_migrate);
Shinta Sugimoto80c9aba2007-02-08 13:11:42 -08002803#endif