xfrm_state.c 52.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * xfrm_state.c
 *
 * Changes:
 *	Mitsuru KANDA @USAGI
 * 	Kazunori MIYAZAWA @USAGI
 * 	Kunihiro Ishiguro <kunihiro@ipinfusion.com>
 * 		IPv6 support
 * 	YOSHIFUJI Hideaki @USAGI
 * 		Split up af-specific functions
 *	Derek Atkins <derek@ihtfp.com>
 *		Add UDP Encapsulation
13
 *
L
Linus Torvalds 已提交
14 15 16 17 18 19 20
 */

#include <linux/workqueue.h>
#include <net/xfrm.h>
#include <linux/pfkeyv2.h>
#include <linux/ipsec.h>
#include <linux/module.h>
21
#include <linux/cache.h>
P
Paul Moore 已提交
22
#include <linux/audit.h>
23
#include <asm/uaccess.h>
L
Linus Torvalds 已提交
24

25 26
#include "xfrm_hash.h"

27 28 29
struct sock *xfrm_nl;
EXPORT_SYMBOL(xfrm_nl);

30
u32 sysctl_xfrm_aevent_etime __read_mostly = XFRM_AE_ETIME;
31 32
EXPORT_SYMBOL(sysctl_xfrm_aevent_etime);

33
u32 sysctl_xfrm_aevent_rseqth __read_mostly = XFRM_AE_SEQT_SIZE;
34 35
EXPORT_SYMBOL(sysctl_xfrm_aevent_rseqth);

36 37
u32 sysctl_xfrm_acq_expires __read_mostly = 30;

L
Linus Torvalds 已提交
38 39 40
/* Each xfrm_state may be linked to two tables:

   1. Hash table by (spi,daddr,ah/esp) to find SA by SPI. (input,ctl)
41
   2. Hash table by (daddr,family,reqid) to find what SAs exist for given
L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49 50 51 52
      destination/tunnel endpoint. (output)
 */

static DEFINE_SPINLOCK(xfrm_state_lock);

/* Hash table to find appropriate SA towards given target (endpoint
 * of tunnel or destination of transport mode) allowed by selector.
 *
 * Main use is finding SA after policy selected tunnel or transport mode.
 * Also, it can be used by ah/esp icmp error handler to find offending SA.
 */
53
static LIST_HEAD(xfrm_state_all);
54 55 56 57 58 59
static struct hlist_head *xfrm_state_bydst __read_mostly;
static struct hlist_head *xfrm_state_bysrc __read_mostly;
static struct hlist_head *xfrm_state_byspi __read_mostly;
static unsigned int xfrm_state_hmask __read_mostly;
static unsigned int xfrm_state_hashmax __read_mostly = 1 * 1024 * 1024;
static unsigned int xfrm_state_num;
60
static unsigned int xfrm_state_genid;
61

62 63 64 65 66
/* Counter indicating ongoing walk, protected by xfrm_state_lock. */
static unsigned long xfrm_state_walk_ongoing;
/* Counter indicating walk completion, protected by xfrm_cfg_mutex. */
static unsigned long xfrm_state_walk_completed;

67 68 69
static struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family);
static void xfrm_state_put_afinfo(struct xfrm_state_afinfo *afinfo);

P
Paul Moore 已提交
70 71 72 73 74 75 76
#ifdef CONFIG_AUDITSYSCALL
static void xfrm_audit_state_replay(struct xfrm_state *x,
				    struct sk_buff *skb, __be32 net_seq);
#else
#define xfrm_audit_state_replay(x, s, sq)	do { ; } while (0)
#endif /* CONFIG_AUDITSYSCALL */

77 78 79
static inline unsigned int xfrm_dst_hash(xfrm_address_t *daddr,
					 xfrm_address_t *saddr,
					 u32 reqid,
80
					 unsigned short family)
81
{
82
	return __xfrm_dst_hash(daddr, saddr, reqid, family, xfrm_state_hmask);
83 84
}

85 86
static inline unsigned int xfrm_src_hash(xfrm_address_t *daddr,
					 xfrm_address_t *saddr,
87
					 unsigned short family)
88
{
89
	return __xfrm_src_hash(daddr, saddr, family, xfrm_state_hmask);
90 91 92
}

static inline unsigned int
A
Al Viro 已提交
93
xfrm_spi_hash(xfrm_address_t *daddr, __be32 spi, u8 proto, unsigned short family)
94
{
95
	return __xfrm_spi_hash(daddr, spi, proto, family, xfrm_state_hmask);
96 97 98 99 100 101 102 103 104 105 106 107 108 109
}

static void xfrm_hash_transfer(struct hlist_head *list,
			       struct hlist_head *ndsttable,
			       struct hlist_head *nsrctable,
			       struct hlist_head *nspitable,
			       unsigned int nhashmask)
{
	struct hlist_node *entry, *tmp;
	struct xfrm_state *x;

	hlist_for_each_entry_safe(x, entry, tmp, list, bydst) {
		unsigned int h;

110 111 112
		h = __xfrm_dst_hash(&x->id.daddr, &x->props.saddr,
				    x->props.reqid, x->props.family,
				    nhashmask);
113 114
		hlist_add_head(&x->bydst, ndsttable+h);

115 116
		h = __xfrm_src_hash(&x->id.daddr, &x->props.saddr,
				    x->props.family,
117 118 119
				    nhashmask);
		hlist_add_head(&x->bysrc, nsrctable+h);

120 121 122 123 124 125
		if (x->id.spi) {
			h = __xfrm_spi_hash(&x->id.daddr, x->id.spi,
					    x->id.proto, x->props.family,
					    nhashmask);
			hlist_add_head(&x->byspi, nspitable+h);
		}
126 127 128 129 130 131 132 133 134 135 136
	}
}

static unsigned long xfrm_hash_new_size(void)
{
	return ((xfrm_state_hmask + 1) << 1) *
		sizeof(struct hlist_head);
}

static DEFINE_MUTEX(hash_resize_mutex);

D
David Howells 已提交
137
static void xfrm_hash_resize(struct work_struct *__unused)
138 139 140 141 142 143 144 145 146
{
	struct hlist_head *ndst, *nsrc, *nspi, *odst, *osrc, *ospi;
	unsigned long nsize, osize;
	unsigned int nhashmask, ohashmask;
	int i;

	mutex_lock(&hash_resize_mutex);

	nsize = xfrm_hash_new_size();
147
	ndst = xfrm_hash_alloc(nsize);
148 149
	if (!ndst)
		goto out_unlock;
150
	nsrc = xfrm_hash_alloc(nsize);
151
	if (!nsrc) {
152
		xfrm_hash_free(ndst, nsize);
153 154
		goto out_unlock;
	}
155
	nspi = xfrm_hash_alloc(nsize);
156
	if (!nspi) {
157 158
		xfrm_hash_free(ndst, nsize);
		xfrm_hash_free(nsrc, nsize);
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
		goto out_unlock;
	}

	spin_lock_bh(&xfrm_state_lock);

	nhashmask = (nsize / sizeof(struct hlist_head)) - 1U;
	for (i = xfrm_state_hmask; i >= 0; i--)
		xfrm_hash_transfer(xfrm_state_bydst+i, ndst, nsrc, nspi,
				   nhashmask);

	odst = xfrm_state_bydst;
	osrc = xfrm_state_bysrc;
	ospi = xfrm_state_byspi;
	ohashmask = xfrm_state_hmask;

	xfrm_state_bydst = ndst;
	xfrm_state_bysrc = nsrc;
	xfrm_state_byspi = nspi;
	xfrm_state_hmask = nhashmask;

	spin_unlock_bh(&xfrm_state_lock);

	osize = (ohashmask + 1) * sizeof(struct hlist_head);
182 183 184
	xfrm_hash_free(odst, osize);
	xfrm_hash_free(osrc, osize);
	xfrm_hash_free(ospi, osize);
185 186 187 188 189

out_unlock:
	mutex_unlock(&hash_resize_mutex);
}

D
David Howells 已提交
190
static DECLARE_WORK(xfrm_hash_work, xfrm_hash_resize);
191

L
Linus Torvalds 已提交
192 193 194 195 196 197 198
DECLARE_WAIT_QUEUE_HEAD(km_waitq);
EXPORT_SYMBOL(km_waitq);

static DEFINE_RWLOCK(xfrm_state_afinfo_lock);
static struct xfrm_state_afinfo *xfrm_state_afinfo[NPROTO];

static struct work_struct xfrm_state_gc_work;
199 200
static LIST_HEAD(xfrm_state_gc_leftovers);
static LIST_HEAD(xfrm_state_gc_list);
L
Linus Torvalds 已提交
201 202
static DEFINE_SPINLOCK(xfrm_state_gc_lock);

203
int __xfrm_state_delete(struct xfrm_state *x);
L
Linus Torvalds 已提交
204

205
int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol);
206
void km_state_expired(struct xfrm_state *x, int hard, u32 pid);
L
Linus Torvalds 已提交
207

208 209 210 211 212 213 214 215 216 217 218 219 220
static struct xfrm_state_afinfo *xfrm_state_lock_afinfo(unsigned int family)
{
	struct xfrm_state_afinfo *afinfo;
	if (unlikely(family >= NPROTO))
		return NULL;
	write_lock_bh(&xfrm_state_afinfo_lock);
	afinfo = xfrm_state_afinfo[family];
	if (unlikely(!afinfo))
		write_unlock_bh(&xfrm_state_afinfo_lock);
	return afinfo;
}

static void xfrm_state_unlock_afinfo(struct xfrm_state_afinfo *afinfo)
221
	__releases(xfrm_state_afinfo_lock)
222 223 224 225
{
	write_unlock_bh(&xfrm_state_afinfo_lock);
}

226
int xfrm_register_type(const struct xfrm_type *type, unsigned short family)
227 228
{
	struct xfrm_state_afinfo *afinfo = xfrm_state_lock_afinfo(family);
229
	const struct xfrm_type **typemap;
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
	int err = 0;

	if (unlikely(afinfo == NULL))
		return -EAFNOSUPPORT;
	typemap = afinfo->type_map;

	if (likely(typemap[type->proto] == NULL))
		typemap[type->proto] = type;
	else
		err = -EEXIST;
	xfrm_state_unlock_afinfo(afinfo);
	return err;
}
EXPORT_SYMBOL(xfrm_register_type);

245
int xfrm_unregister_type(const struct xfrm_type *type, unsigned short family)
246 247
{
	struct xfrm_state_afinfo *afinfo = xfrm_state_lock_afinfo(family);
248
	const struct xfrm_type **typemap;
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
	int err = 0;

	if (unlikely(afinfo == NULL))
		return -EAFNOSUPPORT;
	typemap = afinfo->type_map;

	if (unlikely(typemap[type->proto] != type))
		err = -ENOENT;
	else
		typemap[type->proto] = NULL;
	xfrm_state_unlock_afinfo(afinfo);
	return err;
}
EXPORT_SYMBOL(xfrm_unregister_type);

264
static const struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family)
265 266
{
	struct xfrm_state_afinfo *afinfo;
267 268
	const struct xfrm_type **typemap;
	const struct xfrm_type *type;
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
	int modload_attempted = 0;

retry:
	afinfo = xfrm_state_get_afinfo(family);
	if (unlikely(afinfo == NULL))
		return NULL;
	typemap = afinfo->type_map;

	type = typemap[proto];
	if (unlikely(type && !try_module_get(type->owner)))
		type = NULL;
	if (!type && !modload_attempted) {
		xfrm_state_put_afinfo(afinfo);
		request_module("xfrm-type-%d-%d", family, proto);
		modload_attempted = 1;
		goto retry;
	}

	xfrm_state_put_afinfo(afinfo);
	return type;
}

291
static void xfrm_put_type(const struct xfrm_type *type)
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
{
	module_put(type->owner);
}

int xfrm_register_mode(struct xfrm_mode *mode, int family)
{
	struct xfrm_state_afinfo *afinfo;
	struct xfrm_mode **modemap;
	int err;

	if (unlikely(mode->encap >= XFRM_MODE_MAX))
		return -EINVAL;

	afinfo = xfrm_state_lock_afinfo(family);
	if (unlikely(afinfo == NULL))
		return -EAFNOSUPPORT;

	err = -EEXIST;
	modemap = afinfo->mode_map;
311 312
	if (modemap[mode->encap])
		goto out;
313

314 315 316 317 318 319 320 321 322
	err = -ENOENT;
	if (!try_module_get(afinfo->owner))
		goto out;

	mode->afinfo = afinfo;
	modemap[mode->encap] = mode;
	err = 0;

out:
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
	xfrm_state_unlock_afinfo(afinfo);
	return err;
}
EXPORT_SYMBOL(xfrm_register_mode);

int xfrm_unregister_mode(struct xfrm_mode *mode, int family)
{
	struct xfrm_state_afinfo *afinfo;
	struct xfrm_mode **modemap;
	int err;

	if (unlikely(mode->encap >= XFRM_MODE_MAX))
		return -EINVAL;

	afinfo = xfrm_state_lock_afinfo(family);
	if (unlikely(afinfo == NULL))
		return -EAFNOSUPPORT;

	err = -ENOENT;
	modemap = afinfo->mode_map;
	if (likely(modemap[mode->encap] == mode)) {
		modemap[mode->encap] = NULL;
345
		module_put(mode->afinfo->owner);
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
		err = 0;
	}

	xfrm_state_unlock_afinfo(afinfo);
	return err;
}
EXPORT_SYMBOL(xfrm_unregister_mode);

static struct xfrm_mode *xfrm_get_mode(unsigned int encap, int family)
{
	struct xfrm_state_afinfo *afinfo;
	struct xfrm_mode *mode;
	int modload_attempted = 0;

	if (unlikely(encap >= XFRM_MODE_MAX))
		return NULL;

retry:
	afinfo = xfrm_state_get_afinfo(family);
	if (unlikely(afinfo == NULL))
		return NULL;

	mode = afinfo->mode_map[encap];
	if (unlikely(mode && !try_module_get(mode->owner)))
		mode = NULL;
	if (!mode && !modload_attempted) {
		xfrm_state_put_afinfo(afinfo);
		request_module("xfrm-mode-%d-%d", family, encap);
		modload_attempted = 1;
		goto retry;
	}

	xfrm_state_put_afinfo(afinfo);
	return mode;
}

static void xfrm_put_mode(struct xfrm_mode *mode)
{
	module_put(mode->owner);
}

L
Linus Torvalds 已提交
387 388
static void xfrm_state_gc_destroy(struct xfrm_state *x)
{
389 390
	del_timer_sync(&x->timer);
	del_timer_sync(&x->rtimer);
J
Jesper Juhl 已提交
391 392 393 394
	kfree(x->aalg);
	kfree(x->ealg);
	kfree(x->calg);
	kfree(x->encap);
395
	kfree(x->coaddr);
396 397
	if (x->inner_mode)
		xfrm_put_mode(x->inner_mode);
398 399
	if (x->inner_mode_iaf)
		xfrm_put_mode(x->inner_mode_iaf);
400 401
	if (x->outer_mode)
		xfrm_put_mode(x->outer_mode);
L
Linus Torvalds 已提交
402 403 404 405
	if (x->type) {
		x->type->destructor(x);
		xfrm_put_type(x->type);
	}
406
	security_xfrm_state_free(x);
L
Linus Torvalds 已提交
407 408 409
	kfree(x);
}

D
David Howells 已提交
410
static void xfrm_state_gc_task(struct work_struct *data)
L
Linus Torvalds 已提交
411
{
412 413
	struct xfrm_state *x, *tmp;
	unsigned long completed;
L
Linus Torvalds 已提交
414

415
	mutex_lock(&xfrm_cfg_mutex);
L
Linus Torvalds 已提交
416
	spin_lock_bh(&xfrm_state_gc_lock);
417
	list_splice_tail_init(&xfrm_state_gc_list, &xfrm_state_gc_leftovers);
L
Linus Torvalds 已提交
418 419
	spin_unlock_bh(&xfrm_state_gc_lock);

420 421 422 423 424 425
	completed = xfrm_state_walk_completed;
	mutex_unlock(&xfrm_cfg_mutex);

	list_for_each_entry_safe(x, tmp, &xfrm_state_gc_leftovers, gclist) {
		if ((long)(x->lastused - completed) > 0)
			break;
426
		list_del(&x->gclist);
L
Linus Torvalds 已提交
427
		xfrm_state_gc_destroy(x);
428
	}
429

L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437
	wake_up(&km_waitq);
}

static inline unsigned long make_jiffies(long secs)
{
	if (secs >= (MAX_SCHEDULE_TIMEOUT-1)/HZ)
		return MAX_SCHEDULE_TIMEOUT-1;
	else
438
		return secs*HZ;
L
Linus Torvalds 已提交
439 440 441 442 443
}

static void xfrm_timer_handler(unsigned long data)
{
	struct xfrm_state *x = (struct xfrm_state*)data;
444
	unsigned long now = get_seconds();
L
Linus Torvalds 已提交
445 446
	long next = LONG_MAX;
	int warn = 0;
J
Joy Latten 已提交
447
	int err = 0;
L
Linus Torvalds 已提交
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488

	spin_lock(&x->lock);
	if (x->km.state == XFRM_STATE_DEAD)
		goto out;
	if (x->km.state == XFRM_STATE_EXPIRED)
		goto expired;
	if (x->lft.hard_add_expires_seconds) {
		long tmo = x->lft.hard_add_expires_seconds +
			x->curlft.add_time - now;
		if (tmo <= 0)
			goto expired;
		if (tmo < next)
			next = tmo;
	}
	if (x->lft.hard_use_expires_seconds) {
		long tmo = x->lft.hard_use_expires_seconds +
			(x->curlft.use_time ? : now) - now;
		if (tmo <= 0)
			goto expired;
		if (tmo < next)
			next = tmo;
	}
	if (x->km.dying)
		goto resched;
	if (x->lft.soft_add_expires_seconds) {
		long tmo = x->lft.soft_add_expires_seconds +
			x->curlft.add_time - now;
		if (tmo <= 0)
			warn = 1;
		else if (tmo < next)
			next = tmo;
	}
	if (x->lft.soft_use_expires_seconds) {
		long tmo = x->lft.soft_use_expires_seconds +
			(x->curlft.use_time ? : now) - now;
		if (tmo <= 0)
			warn = 1;
		else if (tmo < next)
			next = tmo;
	}

489
	x->km.dying = warn;
L
Linus Torvalds 已提交
490
	if (warn)
491
		km_state_expired(x, 0, 0);
L
Linus Torvalds 已提交
492
resched:
493 494 495
	if (next != LONG_MAX)
		mod_timer(&x->timer, jiffies + make_jiffies(next));

L
Linus Torvalds 已提交
496 497 498 499 500 501 502 503 504
	goto out;

expired:
	if (x->km.state == XFRM_STATE_ACQ && x->id.spi == 0) {
		x->km.state = XFRM_STATE_EXPIRED;
		wake_up(&km_waitq);
		next = 2;
		goto resched;
	}
J
Joy Latten 已提交
505 506 507

	err = __xfrm_state_delete(x);
	if (!err && x->id.spi)
508
		km_state_expired(x, 1, 0);
L
Linus Torvalds 已提交
509

J
Joy Latten 已提交
510
	xfrm_audit_state_delete(x, err ? 0 : 1,
511 512
				audit_get_loginuid(current),
				audit_get_sessionid(current), 0);
J
Joy Latten 已提交
513

L
Linus Torvalds 已提交
514 515 516 517
out:
	spin_unlock(&x->lock);
}

518 519
static void xfrm_replay_timer_handler(unsigned long data);

L
Linus Torvalds 已提交
520 521 522 523
struct xfrm_state *xfrm_state_alloc(void)
{
	struct xfrm_state *x;

524
	x = kzalloc(sizeof(struct xfrm_state), GFP_ATOMIC);
L
Linus Torvalds 已提交
525 526 527 528

	if (x) {
		atomic_set(&x->refcnt, 1);
		atomic_set(&x->tunnel_users, 0);
529
		INIT_LIST_HEAD(&x->all);
530 531 532
		INIT_HLIST_NODE(&x->bydst);
		INIT_HLIST_NODE(&x->bysrc);
		INIT_HLIST_NODE(&x->byspi);
533 534 535
		setup_timer(&x->timer, xfrm_timer_handler, (unsigned long)x);
		setup_timer(&x->rtimer, xfrm_replay_timer_handler,
				(unsigned long)x);
536
		x->curlft.add_time = get_seconds();
L
Linus Torvalds 已提交
537 538 539 540
		x->lft.soft_byte_limit = XFRM_INF;
		x->lft.soft_packet_limit = XFRM_INF;
		x->lft.hard_byte_limit = XFRM_INF;
		x->lft.hard_packet_limit = XFRM_INF;
541 542
		x->replay_maxage = 0;
		x->replay_maxdiff = 0;
543 544
		x->inner_mode = NULL;
		x->inner_mode_iaf = NULL;
L
Linus Torvalds 已提交
545 546 547 548 549 550 551 552
		spin_lock_init(&x->lock);
	}
	return x;
}
EXPORT_SYMBOL(xfrm_state_alloc);

void __xfrm_state_destroy(struct xfrm_state *x)
{
553
	WARN_ON(x->km.state != XFRM_STATE_DEAD);
L
Linus Torvalds 已提交
554 555

	spin_lock_bh(&xfrm_state_gc_lock);
556
	list_add_tail(&x->gclist, &xfrm_state_gc_list);
L
Linus Torvalds 已提交
557 558 559 560 561
	spin_unlock_bh(&xfrm_state_gc_lock);
	schedule_work(&xfrm_state_gc_work);
}
EXPORT_SYMBOL(__xfrm_state_destroy);

562
int __xfrm_state_delete(struct xfrm_state *x)
L
Linus Torvalds 已提交
563
{
564 565
	int err = -ESRCH;

L
Linus Torvalds 已提交
566 567 568
	if (x->km.state != XFRM_STATE_DEAD) {
		x->km.state = XFRM_STATE_DEAD;
		spin_lock(&xfrm_state_lock);
569 570
		x->lastused = xfrm_state_walk_ongoing;
		list_del_rcu(&x->all);
571 572
		hlist_del(&x->bydst);
		hlist_del(&x->bysrc);
573
		if (x->id.spi)
574
			hlist_del(&x->byspi);
575
		xfrm_state_num--;
L
Linus Torvalds 已提交
576 577 578 579 580 581
		spin_unlock(&xfrm_state_lock);

		/* All xfrm_state objects are created by xfrm_state_alloc.
		 * The xfrm_state_alloc call gives a reference, and that
		 * is what we are dropping here.
		 */
582
		xfrm_state_put(x);
583
		err = 0;
L
Linus Torvalds 已提交
584
	}
585 586

	return err;
L
Linus Torvalds 已提交
587
}
588
EXPORT_SYMBOL(__xfrm_state_delete);
L
Linus Torvalds 已提交
589

590
int xfrm_state_delete(struct xfrm_state *x)
L
Linus Torvalds 已提交
591
{
592 593
	int err;

L
Linus Torvalds 已提交
594
	spin_lock_bh(&x->lock);
595
	err = __xfrm_state_delete(x);
L
Linus Torvalds 已提交
596
	spin_unlock_bh(&x->lock);
597 598

	return err;
L
Linus Torvalds 已提交
599 600 601
}
EXPORT_SYMBOL(xfrm_state_delete);

602 603 604
#ifdef CONFIG_SECURITY_NETWORK_XFRM
static inline int
xfrm_state_flush_secctx_check(u8 proto, struct xfrm_audit *audit_info)
L
Linus Torvalds 已提交
605
{
606 607 608 609 610 611 612 613 614
	int i, err = 0;

	for (i = 0; i <= xfrm_state_hmask; i++) {
		struct hlist_node *entry;
		struct xfrm_state *x;

		hlist_for_each_entry(x, entry, xfrm_state_bydst+i, bydst) {
			if (xfrm_id_proto_match(x->id.proto, proto) &&
			   (err = security_xfrm_state_delete(x)) != 0) {
J
Joy Latten 已提交
615 616
				xfrm_audit_state_delete(x, 0,
							audit_info->loginuid,
617
							audit_info->sessionid,
J
Joy Latten 已提交
618
							audit_info->secid);
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
				return err;
			}
		}
	}

	return err;
}
#else
static inline int
xfrm_state_flush_secctx_check(u8 proto, struct xfrm_audit *audit_info)
{
	return 0;
}
#endif

int xfrm_state_flush(u8 proto, struct xfrm_audit *audit_info)
{
	int i, err = 0;
L
Linus Torvalds 已提交
637 638

	spin_lock_bh(&xfrm_state_lock);
639 640 641 642
	err = xfrm_state_flush_secctx_check(proto, audit_info);
	if (err)
		goto out;

643
	for (i = 0; i <= xfrm_state_hmask; i++) {
644 645
		struct hlist_node *entry;
		struct xfrm_state *x;
L
Linus Torvalds 已提交
646
restart:
647
		hlist_for_each_entry(x, entry, xfrm_state_bydst+i, bydst) {
L
Linus Torvalds 已提交
648
			if (!xfrm_state_kern(x) &&
649
			    xfrm_id_proto_match(x->id.proto, proto)) {
L
Linus Torvalds 已提交
650 651 652
				xfrm_state_hold(x);
				spin_unlock_bh(&xfrm_state_lock);

J
Joy Latten 已提交
653
				err = xfrm_state_delete(x);
J
Joy Latten 已提交
654 655
				xfrm_audit_state_delete(x, err ? 0 : 1,
							audit_info->loginuid,
656
							audit_info->sessionid,
J
Joy Latten 已提交
657
							audit_info->secid);
L
Linus Torvalds 已提交
658 659 660 661 662 663 664
				xfrm_state_put(x);

				spin_lock_bh(&xfrm_state_lock);
				goto restart;
			}
		}
	}
665 666 667
	err = 0;

out:
L
Linus Torvalds 已提交
668 669
	spin_unlock_bh(&xfrm_state_lock);
	wake_up(&km_waitq);
670
	return err;
L
Linus Torvalds 已提交
671 672 673
}
EXPORT_SYMBOL(xfrm_state_flush);

674
void xfrm_sad_getinfo(struct xfrmk_sadinfo *si)
J
Jamal Hadi Salim 已提交
675 676 677 678 679 680 681 682 683
{
	spin_lock_bh(&xfrm_state_lock);
	si->sadcnt = xfrm_state_num;
	si->sadhcnt = xfrm_state_hmask;
	si->sadhmcnt = xfrm_state_hashmax;
	spin_unlock_bh(&xfrm_state_lock);
}
EXPORT_SYMBOL(xfrm_sad_getinfo);

L
Linus Torvalds 已提交
684 685 686 687 688 689 690 691 692 693 694 695 696 697
static int
xfrm_init_tempsel(struct xfrm_state *x, struct flowi *fl,
		  struct xfrm_tmpl *tmpl,
		  xfrm_address_t *daddr, xfrm_address_t *saddr,
		  unsigned short family)
{
	struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
	if (!afinfo)
		return -1;
	afinfo->init_tempsel(x, fl, tmpl, daddr, saddr);
	xfrm_state_put_afinfo(afinfo);
	return 0;
}

698
static struct xfrm_state *__xfrm_state_lookup(xfrm_address_t *daddr, __be32 spi, u8 proto, unsigned short family)
699 700 701
{
	unsigned int h = xfrm_spi_hash(daddr, spi, proto, family);
	struct xfrm_state *x;
702
	struct hlist_node *entry;
703

704
	hlist_for_each_entry(x, entry, xfrm_state_byspi+h, byspi) {
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
		if (x->props.family != family ||
		    x->id.spi       != spi ||
		    x->id.proto     != proto)
			continue;

		switch (family) {
		case AF_INET:
			if (x->id.daddr.a4 != daddr->a4)
				continue;
			break;
		case AF_INET6:
			if (!ipv6_addr_equal((struct in6_addr *)daddr,
					     (struct in6_addr *)
					     x->id.daddr.a6))
				continue;
			break;
721
		}
722 723 724 725 726 727 728 729 730 731

		xfrm_state_hold(x);
		return x;
	}

	return NULL;
}

static struct xfrm_state *__xfrm_state_lookup_byaddr(xfrm_address_t *daddr, xfrm_address_t *saddr, u8 proto, unsigned short family)
{
732
	unsigned int h = xfrm_src_hash(daddr, saddr, family);
733
	struct xfrm_state *x;
734
	struct hlist_node *entry;
735

736
	hlist_for_each_entry(x, entry, xfrm_state_bysrc+h, bysrc) {
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
		if (x->props.family != family ||
		    x->id.proto     != proto)
			continue;

		switch (family) {
		case AF_INET:
			if (x->id.daddr.a4 != daddr->a4 ||
			    x->props.saddr.a4 != saddr->a4)
				continue;
			break;
		case AF_INET6:
			if (!ipv6_addr_equal((struct in6_addr *)daddr,
					     (struct in6_addr *)
					     x->id.daddr.a6) ||
			    !ipv6_addr_equal((struct in6_addr *)saddr,
					     (struct in6_addr *)
					     x->props.saddr.a6))
				continue;
			break;
756
		}
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776

		xfrm_state_hold(x);
		return x;
	}

	return NULL;
}

static inline struct xfrm_state *
__xfrm_state_locate(struct xfrm_state *x, int use_spi, int family)
{
	if (use_spi)
		return __xfrm_state_lookup(&x->id.daddr, x->id.spi,
					   x->id.proto, family);
	else
		return __xfrm_state_lookup_byaddr(&x->id.daddr,
						  &x->props.saddr,
						  x->id.proto, family);
}

777 778 779 780 781 782 783 784
static void xfrm_hash_grow_check(int have_hash_collision)
{
	if (have_hash_collision &&
	    (xfrm_state_hmask + 1) < xfrm_state_hashmax &&
	    xfrm_state_num > xfrm_state_hmask)
		schedule_work(&xfrm_hash_work);
}

L
Linus Torvalds 已提交
785
struct xfrm_state *
786
xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
L
Linus Torvalds 已提交
787 788 789 790
		struct flowi *fl, struct xfrm_tmpl *tmpl,
		struct xfrm_policy *pol, int *err,
		unsigned short family)
{
791
	unsigned int h;
792
	struct hlist_node *entry;
793
	struct xfrm_state *x, *x0, *to_put;
L
Linus Torvalds 已提交
794 795 796
	int acquire_in_progress = 0;
	int error = 0;
	struct xfrm_state *best = NULL;
797

798 799
	to_put = NULL;

L
Linus Torvalds 已提交
800
	spin_lock_bh(&xfrm_state_lock);
801
	h = xfrm_dst_hash(daddr, saddr, tmpl->reqid, family);
802
	hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
L
Linus Torvalds 已提交
803 804
		if (x->props.family == family &&
		    x->props.reqid == tmpl->reqid &&
805
		    !(x->props.flags & XFRM_STATE_WILDRECV) &&
L
Linus Torvalds 已提交
806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
		    xfrm_state_addr_check(x, daddr, saddr, family) &&
		    tmpl->mode == x->props.mode &&
		    tmpl->id.proto == x->id.proto &&
		    (tmpl->id.spi == x->id.spi || !tmpl->id.spi)) {
			/* Resolution logic:
			   1. There is a valid state with matching selector.
			      Done.
			   2. Valid state with inappropriate selector. Skip.

			   Entering area of "sysdeps".

			   3. If state is not valid, selector is temporary,
			      it selects only session which triggered
			      previous resolution. Key manager will do
			      something to install a state with proper
			      selector.
			 */
			if (x->km.state == XFRM_STATE_VALID) {
824
				if ((x->sel.family && !xfrm_selector_match(&x->sel, fl, x->sel.family)) ||
825
				    !security_xfrm_state_pol_flow_match(x, pol, fl))
L
Linus Torvalds 已提交
826 827 828 829 830 831 832 833 834 835
					continue;
				if (!best ||
				    best->km.dying > x->km.dying ||
				    (best->km.dying == x->km.dying &&
				     best->curlft.add_time < x->curlft.add_time))
					best = x;
			} else if (x->km.state == XFRM_STATE_ACQ) {
				acquire_in_progress = 1;
			} else if (x->km.state == XFRM_STATE_ERROR ||
				   x->km.state == XFRM_STATE_EXPIRED) {
836
				if (xfrm_selector_match(&x->sel, fl, x->sel.family) &&
837
				    security_xfrm_state_pol_flow_match(x, pol, fl))
L
Linus Torvalds 已提交
838 839 840 841 842 843 844
					error = -ESRCH;
			}
		}
	}

	x = best;
	if (!x && !error && !acquire_in_progress) {
845
		if (tmpl->id.spi &&
846 847
		    (x0 = __xfrm_state_lookup(daddr, tmpl->id.spi,
					      tmpl->id.proto, family)) != NULL) {
848
			to_put = x0;
L
Linus Torvalds 已提交
849 850 851 852 853 854 855 856 857 858 859 860
			error = -EEXIST;
			goto out;
		}
		x = xfrm_state_alloc();
		if (x == NULL) {
			error = -ENOMEM;
			goto out;
		}
		/* Initialize temporary selector matching only
		 * to current session. */
		xfrm_init_tempsel(x, fl, tmpl, daddr, saddr, family);

861 862 863
		error = security_xfrm_state_alloc_acquire(x, pol->security, fl->secid);
		if (error) {
			x->km.state = XFRM_STATE_DEAD;
864
			to_put = x;
865 866 867 868
			x = NULL;
			goto out;
		}

L
Linus Torvalds 已提交
869 870
		if (km_query(x, tmpl, pol) == 0) {
			x->km.state = XFRM_STATE_ACQ;
871
			list_add_tail(&x->all, &xfrm_state_all);
872
			hlist_add_head(&x->bydst, xfrm_state_bydst+h);
873
			h = xfrm_src_hash(daddr, saddr, family);
874
			hlist_add_head(&x->bysrc, xfrm_state_bysrc+h);
L
Linus Torvalds 已提交
875 876
			if (x->id.spi) {
				h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto, family);
877
				hlist_add_head(&x->byspi, xfrm_state_byspi+h);
L
Linus Torvalds 已提交
878
			}
879 880
			x->lft.hard_add_expires_seconds = sysctl_xfrm_acq_expires;
			x->timer.expires = jiffies + sysctl_xfrm_acq_expires*HZ;
L
Linus Torvalds 已提交
881
			add_timer(&x->timer);
882 883
			xfrm_state_num++;
			xfrm_hash_grow_check(x->bydst.next != NULL);
L
Linus Torvalds 已提交
884 885
		} else {
			x->km.state = XFRM_STATE_DEAD;
886
			to_put = x;
L
Linus Torvalds 已提交
887 888 889 890 891 892 893 894 895 896
			x = NULL;
			error = -ESRCH;
		}
	}
out:
	if (x)
		xfrm_state_hold(x);
	else
		*err = acquire_in_progress ? -EAGAIN : error;
	spin_unlock_bh(&xfrm_state_lock);
897 898
	if (to_put)
		xfrm_state_put(to_put);
L
Linus Torvalds 已提交
899 900 901
	return x;
}

902 903 904 905
struct xfrm_state *
xfrm_stateonly_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
		    unsigned short family, u8 mode, u8 proto, u32 reqid)
{
906
	unsigned int h;
907 908 909 910
	struct xfrm_state *rx = NULL, *x = NULL;
	struct hlist_node *entry;

	spin_lock(&xfrm_state_lock);
911
	h = xfrm_dst_hash(daddr, saddr, reqid, family);
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
	hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
		if (x->props.family == family &&
		    x->props.reqid == reqid &&
		    !(x->props.flags & XFRM_STATE_WILDRECV) &&
		    xfrm_state_addr_check(x, daddr, saddr, family) &&
		    mode == x->props.mode &&
		    proto == x->id.proto &&
		    x->km.state == XFRM_STATE_VALID) {
			rx = x;
			break;
		}
	}

	if (rx)
		xfrm_state_hold(rx);
	spin_unlock(&xfrm_state_lock);


	return rx;
}
EXPORT_SYMBOL(xfrm_stateonly_find);

L
Linus Torvalds 已提交
934 935
static void __xfrm_state_insert(struct xfrm_state *x)
{
936
	unsigned int h;
L
Linus Torvalds 已提交
937

938 939
	x->genid = ++xfrm_state_genid;

940 941
	list_add_tail(&x->all, &xfrm_state_all);

942 943
	h = xfrm_dst_hash(&x->id.daddr, &x->props.saddr,
			  x->props.reqid, x->props.family);
944
	hlist_add_head(&x->bydst, xfrm_state_bydst+h);
L
Linus Torvalds 已提交
945

946
	h = xfrm_src_hash(&x->id.daddr, &x->props.saddr, x->props.family);
947
	hlist_add_head(&x->bysrc, xfrm_state_bysrc+h);
L
Linus Torvalds 已提交
948

949
	if (x->id.spi) {
950 951 952
		h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto,
				  x->props.family);

953
		hlist_add_head(&x->byspi, xfrm_state_byspi+h);
954 955
	}

956 957 958
	mod_timer(&x->timer, jiffies + HZ);
	if (x->replay_maxage)
		mod_timer(&x->rtimer, jiffies + x->replay_maxage);
959

L
Linus Torvalds 已提交
960
	wake_up(&km_waitq);
961 962 963

	xfrm_state_num++;

964
	xfrm_hash_grow_check(x->bydst.next != NULL);
L
Linus Torvalds 已提交
965 966
}

967 968 969 970 971 972 973 974 975
/* xfrm_state_lock is held */
static void __xfrm_state_bump_genids(struct xfrm_state *xnew)
{
	unsigned short family = xnew->props.family;
	u32 reqid = xnew->props.reqid;
	struct xfrm_state *x;
	struct hlist_node *entry;
	unsigned int h;

976
	h = xfrm_dst_hash(&xnew->id.daddr, &xnew->props.saddr, reqid, family);
977 978 979
	hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
		if (x->props.family	== family &&
		    x->props.reqid	== reqid &&
980 981
		    !xfrm_addr_cmp(&x->id.daddr, &xnew->id.daddr, family) &&
		    !xfrm_addr_cmp(&x->props.saddr, &xnew->props.saddr, family))
982 983 984 985
			x->genid = xfrm_state_genid;
	}
}

L
Linus Torvalds 已提交
986 987 988
void xfrm_state_insert(struct xfrm_state *x)
{
	spin_lock_bh(&xfrm_state_lock);
989
	__xfrm_state_bump_genids(x);
L
Linus Torvalds 已提交
990 991 992 993 994
	__xfrm_state_insert(x);
	spin_unlock_bh(&xfrm_state_lock);
}
EXPORT_SYMBOL(xfrm_state_insert);

995 996 997
/* xfrm_state_lock is held */
static struct xfrm_state *__find_acq_core(unsigned short family, u8 mode, u32 reqid, u8 proto, xfrm_address_t *daddr, xfrm_address_t *saddr, int create)
{
998
	unsigned int h = xfrm_dst_hash(daddr, saddr, reqid, family);
999
	struct hlist_node *entry;
1000 1001
	struct xfrm_state *x;

1002
	hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
1003 1004 1005 1006
		if (x->props.reqid  != reqid ||
		    x->props.mode   != mode ||
		    x->props.family != family ||
		    x->km.state     != XFRM_STATE_ACQ ||
1007 1008
		    x->id.spi       != 0 ||
		    x->id.proto	    != proto)
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
			continue;

		switch (family) {
		case AF_INET:
			if (x->id.daddr.a4    != daddr->a4 ||
			    x->props.saddr.a4 != saddr->a4)
				continue;
			break;
		case AF_INET6:
			if (!ipv6_addr_equal((struct in6_addr *)x->id.daddr.a6,
					     (struct in6_addr *)daddr) ||
			    !ipv6_addr_equal((struct in6_addr *)
					     x->props.saddr.a6,
					     (struct in6_addr *)saddr))
				continue;
			break;
1025
		}
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057

		xfrm_state_hold(x);
		return x;
	}

	if (!create)
		return NULL;

	x = xfrm_state_alloc();
	if (likely(x)) {
		switch (family) {
		case AF_INET:
			x->sel.daddr.a4 = daddr->a4;
			x->sel.saddr.a4 = saddr->a4;
			x->sel.prefixlen_d = 32;
			x->sel.prefixlen_s = 32;
			x->props.saddr.a4 = saddr->a4;
			x->id.daddr.a4 = daddr->a4;
			break;

		case AF_INET6:
			ipv6_addr_copy((struct in6_addr *)x->sel.daddr.a6,
				       (struct in6_addr *)daddr);
			ipv6_addr_copy((struct in6_addr *)x->sel.saddr.a6,
				       (struct in6_addr *)saddr);
			x->sel.prefixlen_d = 128;
			x->sel.prefixlen_s = 128;
			ipv6_addr_copy((struct in6_addr *)x->props.saddr.a6,
				       (struct in6_addr *)saddr);
			ipv6_addr_copy((struct in6_addr *)x->id.daddr.a6,
				       (struct in6_addr *)daddr);
			break;
1058
		}
1059 1060 1061 1062 1063 1064

		x->km.state = XFRM_STATE_ACQ;
		x->id.proto = proto;
		x->props.family = family;
		x->props.mode = mode;
		x->props.reqid = reqid;
1065
		x->lft.hard_add_expires_seconds = sysctl_xfrm_acq_expires;
1066
		xfrm_state_hold(x);
1067
		x->timer.expires = jiffies + sysctl_xfrm_acq_expires*HZ;
1068
		add_timer(&x->timer);
1069
		list_add_tail(&x->all, &xfrm_state_all);
1070
		hlist_add_head(&x->bydst, xfrm_state_bydst+h);
1071
		h = xfrm_src_hash(daddr, saddr, family);
1072
		hlist_add_head(&x->bysrc, xfrm_state_bysrc+h);
1073 1074 1075 1076

		xfrm_state_num++;

		xfrm_hash_grow_check(x->bydst.next != NULL);
1077 1078 1079 1080 1081
	}

	return x;
}

L
Linus Torvalds 已提交
1082 1083 1084 1085
static struct xfrm_state *__xfrm_find_acq_byseq(u32 seq);

int xfrm_state_add(struct xfrm_state *x)
{
1086
	struct xfrm_state *x1, *to_put;
L
Linus Torvalds 已提交
1087 1088
	int family;
	int err;
1089
	int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
L
Linus Torvalds 已提交
1090 1091 1092

	family = x->props.family;

1093 1094
	to_put = NULL;

L
Linus Torvalds 已提交
1095 1096
	spin_lock_bh(&xfrm_state_lock);

1097
	x1 = __xfrm_state_locate(x, use_spi, family);
L
Linus Torvalds 已提交
1098
	if (x1) {
1099
		to_put = x1;
L
Linus Torvalds 已提交
1100 1101 1102 1103 1104
		x1 = NULL;
		err = -EEXIST;
		goto out;
	}

1105
	if (use_spi && x->km.seq) {
L
Linus Torvalds 已提交
1106
		x1 = __xfrm_find_acq_byseq(x->km.seq);
1107 1108
		if (x1 && ((x1->id.proto != x->id.proto) ||
		    xfrm_addr_cmp(&x1->id.daddr, &x->id.daddr, family))) {
1109
			to_put = x1;
L
Linus Torvalds 已提交
1110 1111 1112 1113
			x1 = NULL;
		}
	}

1114
	if (use_spi && !x1)
1115 1116 1117
		x1 = __find_acq_core(family, x->props.mode, x->props.reqid,
				     x->id.proto,
				     &x->id.daddr, &x->props.saddr, 0);
L
Linus Torvalds 已提交
1118

1119
	__xfrm_state_bump_genids(x);
L
Linus Torvalds 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
	__xfrm_state_insert(x);
	err = 0;

out:
	spin_unlock_bh(&xfrm_state_lock);

	if (x1) {
		xfrm_state_delete(x1);
		xfrm_state_put(x1);
	}

1131 1132 1133
	if (to_put)
		xfrm_state_put(to_put);

L
Linus Torvalds 已提交
1134 1135 1136 1137
	return err;
}
EXPORT_SYMBOL(xfrm_state_add);

1138
#ifdef CONFIG_XFRM_MIGRATE
1139
static struct xfrm_state *xfrm_state_clone(struct xfrm_state *orig, int *errp)
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
{
	int err = -ENOMEM;
	struct xfrm_state *x = xfrm_state_alloc();
	if (!x)
		goto error;

	memcpy(&x->id, &orig->id, sizeof(x->id));
	memcpy(&x->sel, &orig->sel, sizeof(x->sel));
	memcpy(&x->lft, &orig->lft, sizeof(x->lft));
	x->props.mode = orig->props.mode;
	x->props.replay_window = orig->props.replay_window;
	x->props.reqid = orig->props.reqid;
	x->props.family = orig->props.family;
	x->props.saddr = orig->props.saddr;

	if (orig->aalg) {
		x->aalg = xfrm_algo_clone(orig->aalg);
		if (!x->aalg)
			goto error;
	}
	x->props.aalgo = orig->props.aalgo;

	if (orig->ealg) {
		x->ealg = xfrm_algo_clone(orig->ealg);
		if (!x->ealg)
			goto error;
	}
	x->props.ealgo = orig->props.ealgo;

	if (orig->calg) {
		x->calg = xfrm_algo_clone(orig->calg);
		if (!x->calg)
			goto error;
	}
	x->props.calgo = orig->props.calgo;

1176
	if (orig->encap) {
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
		x->encap = kmemdup(orig->encap, sizeof(*x->encap), GFP_KERNEL);
		if (!x->encap)
			goto error;
	}

	if (orig->coaddr) {
		x->coaddr = kmemdup(orig->coaddr, sizeof(*x->coaddr),
				    GFP_KERNEL);
		if (!x->coaddr)
			goto error;
	}

	err = xfrm_init_state(x);
	if (err)
		goto error;

	x->props.flags = orig->props.flags;

	x->curlft.add_time = orig->curlft.add_time;
	x->km.state = orig->km.state;
	x->km.seq = orig->km.seq;

	return x;

 error:
	if (errp)
		*errp = err;
	if (x) {
		kfree(x->aalg);
		kfree(x->ealg);
		kfree(x->calg);
		kfree(x->encap);
		kfree(x->coaddr);
	}
	kfree(x);
	return NULL;
}

/* xfrm_state_lock is held */
struct xfrm_state * xfrm_migrate_state_find(struct xfrm_migrate *m)
{
	unsigned int h;
	struct xfrm_state *x;
	struct hlist_node *entry;

	if (m->reqid) {
		h = xfrm_dst_hash(&m->old_daddr, &m->old_saddr,
				  m->reqid, m->old_family);
		hlist_for_each_entry(x, entry, xfrm_state_bydst+h, bydst) {
			if (x->props.mode != m->mode ||
			    x->id.proto != m->proto)
				continue;
			if (m->reqid && x->props.reqid != m->reqid)
				continue;
			if (xfrm_addr_cmp(&x->id.daddr, &m->old_daddr,
					  m->old_family) ||
			    xfrm_addr_cmp(&x->props.saddr, &m->old_saddr,
					  m->old_family))
				continue;
			xfrm_state_hold(x);
			return x;
		}
	} else {
		h = xfrm_src_hash(&m->old_daddr, &m->old_saddr,
				  m->old_family);
		hlist_for_each_entry(x, entry, xfrm_state_bysrc+h, bysrc) {
			if (x->props.mode != m->mode ||
			    x->id.proto != m->proto)
				continue;
			if (xfrm_addr_cmp(&x->id.daddr, &m->old_daddr,
					  m->old_family) ||
			    xfrm_addr_cmp(&x->props.saddr, &m->old_saddr,
					  m->old_family))
				continue;
			xfrm_state_hold(x);
			return x;
		}
	}

1256
	return NULL;
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
}
EXPORT_SYMBOL(xfrm_migrate_state_find);

struct xfrm_state * xfrm_state_migrate(struct xfrm_state *x,
				       struct xfrm_migrate *m)
{
	struct xfrm_state *xc;
	int err;

	xc = xfrm_state_clone(x, &err);
	if (!xc)
		return NULL;

	memcpy(&xc->id.daddr, &m->new_daddr, sizeof(xc->id.daddr));
	memcpy(&xc->props.saddr, &m->new_saddr, sizeof(xc->props.saddr));

	/* add state */
	if (!xfrm_addr_cmp(&x->id.daddr, &m->new_daddr, m->new_family)) {
		/* a care is needed when the destination address of the
		   state is to be updated as it is a part of triplet */
		xfrm_state_insert(xc);
	} else {
		if ((err = xfrm_state_add(xc)) < 0)
			goto error;
	}

	return xc;
error:
	kfree(xc);
	return NULL;
}
EXPORT_SYMBOL(xfrm_state_migrate);
#endif

L
Linus Torvalds 已提交
1291 1292
int xfrm_state_update(struct xfrm_state *x)
{
1293
	struct xfrm_state *x1, *to_put;
L
Linus Torvalds 已提交
1294
	int err;
1295
	int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
L
Linus Torvalds 已提交
1296

1297 1298
	to_put = NULL;

L
Linus Torvalds 已提交
1299
	spin_lock_bh(&xfrm_state_lock);
1300
	x1 = __xfrm_state_locate(x, use_spi, x->props.family);
L
Linus Torvalds 已提交
1301 1302 1303 1304 1305 1306

	err = -ESRCH;
	if (!x1)
		goto out;

	if (xfrm_state_kern(x1)) {
1307
		to_put = x1;
L
Linus Torvalds 已提交
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
		err = -EEXIST;
		goto out;
	}

	if (x1->km.state == XFRM_STATE_ACQ) {
		__xfrm_state_insert(x);
		x = NULL;
	}
	err = 0;

out:
	spin_unlock_bh(&xfrm_state_lock);

1321 1322 1323
	if (to_put)
		xfrm_state_put(to_put);

L
Linus Torvalds 已提交
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
	if (err)
		return err;

	if (!x) {
		xfrm_state_delete(x1);
		xfrm_state_put(x1);
		return 0;
	}

	err = -EINVAL;
	spin_lock_bh(&x1->lock);
	if (likely(x1->km.state == XFRM_STATE_VALID)) {
		if (x->encap && x1->encap)
			memcpy(x1->encap, x->encap, sizeof(*x1->encap));
1338 1339 1340 1341 1342
		if (x->coaddr && x1->coaddr) {
			memcpy(x1->coaddr, x->coaddr, sizeof(*x1->coaddr));
		}
		if (!use_spi && memcmp(&x1->sel, &x->sel, sizeof(x1->sel)))
			memcpy(&x1->sel, &x->sel, sizeof(x1->sel));
L
Linus Torvalds 已提交
1343 1344 1345
		memcpy(&x1->lft, &x->lft, sizeof(x1->lft));
		x1->km.dying = 0;

1346
		mod_timer(&x1->timer, jiffies + HZ);
L
Linus Torvalds 已提交
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
		if (x1->curlft.use_time)
			xfrm_state_check_expire(x1);

		err = 0;
	}
	spin_unlock_bh(&x1->lock);

	xfrm_state_put(x1);

	return err;
}
EXPORT_SYMBOL(xfrm_state_update);

int xfrm_state_check_expire(struct xfrm_state *x)
{
	if (!x->curlft.use_time)
1363
		x->curlft.use_time = get_seconds();
L
Linus Torvalds 已提交
1364 1365 1366 1367 1368 1369

	if (x->km.state != XFRM_STATE_VALID)
		return -EINVAL;

	if (x->curlft.bytes >= x->lft.hard_byte_limit ||
	    x->curlft.packets >= x->lft.hard_packet_limit) {
1370
		x->km.state = XFRM_STATE_EXPIRED;
1371
		mod_timer(&x->timer, jiffies);
L
Linus Torvalds 已提交
1372 1373 1374 1375 1376
		return -EINVAL;
	}

	if (!x->km.dying &&
	    (x->curlft.bytes >= x->lft.soft_byte_limit ||
1377 1378
	     x->curlft.packets >= x->lft.soft_packet_limit)) {
		x->km.dying = 1;
1379
		km_state_expired(x, 0, 0);
1380
	}
L
Linus Torvalds 已提交
1381 1382 1383 1384 1385
	return 0;
}
EXPORT_SYMBOL(xfrm_state_check_expire);

struct xfrm_state *
1386
xfrm_state_lookup(xfrm_address_t *daddr, __be32 spi, u8 proto,
L
Linus Torvalds 已提交
1387 1388 1389 1390 1391
		  unsigned short family)
{
	struct xfrm_state *x;

	spin_lock_bh(&xfrm_state_lock);
1392
	x = __xfrm_state_lookup(daddr, spi, proto, family);
L
Linus Torvalds 已提交
1393 1394 1395 1396 1397 1398
	spin_unlock_bh(&xfrm_state_lock);
	return x;
}
EXPORT_SYMBOL(xfrm_state_lookup);

struct xfrm_state *
1399 1400 1401 1402 1403 1404
xfrm_state_lookup_byaddr(xfrm_address_t *daddr, xfrm_address_t *saddr,
			 u8 proto, unsigned short family)
{
	struct xfrm_state *x;

	spin_lock_bh(&xfrm_state_lock);
1405
	x = __xfrm_state_lookup_byaddr(daddr, saddr, proto, family);
1406 1407 1408 1409 1410 1411
	spin_unlock_bh(&xfrm_state_lock);
	return x;
}
EXPORT_SYMBOL(xfrm_state_lookup_byaddr);

struct xfrm_state *
1412 1413
xfrm_find_acq(u8 mode, u32 reqid, u8 proto,
	      xfrm_address_t *daddr, xfrm_address_t *saddr,
L
Linus Torvalds 已提交
1414 1415 1416 1417 1418
	      int create, unsigned short family)
{
	struct xfrm_state *x;

	spin_lock_bh(&xfrm_state_lock);
1419
	x = __find_acq_core(family, mode, reqid, proto, daddr, saddr, create);
L
Linus Torvalds 已提交
1420
	spin_unlock_bh(&xfrm_state_lock);
1421

L
Linus Torvalds 已提交
1422 1423 1424 1425
	return x;
}
EXPORT_SYMBOL(xfrm_find_acq);

1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
#ifdef CONFIG_XFRM_SUB_POLICY
int
xfrm_tmpl_sort(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n,
	       unsigned short family)
{
	int err = 0;
	struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
	if (!afinfo)
		return -EAFNOSUPPORT;

	spin_lock_bh(&xfrm_state_lock);
	if (afinfo->tmpl_sort)
		err = afinfo->tmpl_sort(dst, src, n);
	spin_unlock_bh(&xfrm_state_lock);
	xfrm_state_put_afinfo(afinfo);
	return err;
}
EXPORT_SYMBOL(xfrm_tmpl_sort);

int
xfrm_state_sort(struct xfrm_state **dst, struct xfrm_state **src, int n,
		unsigned short family)
{
	int err = 0;
	struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
	if (!afinfo)
		return -EAFNOSUPPORT;

	spin_lock_bh(&xfrm_state_lock);
	if (afinfo->state_sort)
		err = afinfo->state_sort(dst, src, n);
	spin_unlock_bh(&xfrm_state_lock);
	xfrm_state_put_afinfo(afinfo);
	return err;
}
EXPORT_SYMBOL(xfrm_state_sort);
#endif

L
Linus Torvalds 已提交
1464 1465 1466 1467 1468 1469
/* Silly enough, but I'm lazy to build resolution list */

static struct xfrm_state *__xfrm_find_acq_byseq(u32 seq)
{
	int i;

1470
	for (i = 0; i <= xfrm_state_hmask; i++) {
1471 1472 1473 1474 1475 1476
		struct hlist_node *entry;
		struct xfrm_state *x;

		hlist_for_each_entry(x, entry, xfrm_state_bydst+i, bydst) {
			if (x->km.seq == seq &&
			    x->km.state == XFRM_STATE_ACQ) {
L
Linus Torvalds 已提交
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
				xfrm_state_hold(x);
				return x;
			}
		}
	}
	return NULL;
}

struct xfrm_state *xfrm_find_acq_byseq(u32 seq)
{
	struct xfrm_state *x;

	spin_lock_bh(&xfrm_state_lock);
	x = __xfrm_find_acq_byseq(seq);
	spin_unlock_bh(&xfrm_state_lock);
	return x;
}
EXPORT_SYMBOL(xfrm_find_acq_byseq);

u32 xfrm_get_acqseq(void)
{
	u32 res;
	static u32 acqseq;
	static DEFINE_SPINLOCK(acqseq_lock);

	spin_lock_bh(&acqseq_lock);
	res = (++acqseq ? : ++acqseq);
	spin_unlock_bh(&acqseq_lock);
	return res;
}
EXPORT_SYMBOL(xfrm_get_acqseq);

1509
int xfrm_alloc_spi(struct xfrm_state *x, u32 low, u32 high)
L
Linus Torvalds 已提交
1510
{
1511
	unsigned int h;
L
Linus Torvalds 已提交
1512
	struct xfrm_state *x0;
1513 1514 1515
	int err = -ENOENT;
	__be32 minspi = htonl(low);
	__be32 maxspi = htonl(high);
L
Linus Torvalds 已提交
1516

1517 1518 1519 1520 1521
	spin_lock_bh(&x->lock);
	if (x->km.state == XFRM_STATE_DEAD)
		goto unlock;

	err = 0;
L
Linus Torvalds 已提交
1522
	if (x->id.spi)
1523 1524 1525
		goto unlock;

	err = -ENOENT;
L
Linus Torvalds 已提交
1526 1527 1528 1529 1530

	if (minspi == maxspi) {
		x0 = xfrm_state_lookup(&x->id.daddr, minspi, x->id.proto, x->props.family);
		if (x0) {
			xfrm_state_put(x0);
1531
			goto unlock;
L
Linus Torvalds 已提交
1532 1533 1534 1535
		}
		x->id.spi = minspi;
	} else {
		u32 spi = 0;
A
Al Viro 已提交
1536 1537
		for (h=0; h<high-low+1; h++) {
			spi = low + net_random()%(high-low+1);
L
Linus Torvalds 已提交
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
			x0 = xfrm_state_lookup(&x->id.daddr, htonl(spi), x->id.proto, x->props.family);
			if (x0 == NULL) {
				x->id.spi = htonl(spi);
				break;
			}
			xfrm_state_put(x0);
		}
	}
	if (x->id.spi) {
		spin_lock_bh(&xfrm_state_lock);
		h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto, x->props.family);
1549
		hlist_add_head(&x->byspi, xfrm_state_byspi+h);
L
Linus Torvalds 已提交
1550
		spin_unlock_bh(&xfrm_state_lock);
1551 1552

		err = 0;
L
Linus Torvalds 已提交
1553
	}
1554 1555 1556 1557 1558

unlock:
	spin_unlock_bh(&x->lock);

	return err;
L
Linus Torvalds 已提交
1559 1560 1561
}
EXPORT_SYMBOL(xfrm_alloc_spi);

1562 1563
int xfrm_state_walk(struct xfrm_state_walk *walk,
		    int (*func)(struct xfrm_state *, int, void*),
L
Linus Torvalds 已提交
1564 1565
		    void *data)
{
1566
	struct xfrm_state *old, *x, *last = NULL;
L
Linus Torvalds 已提交
1567 1568
	int err = 0;

1569 1570 1571 1572 1573
	if (walk->state == NULL && walk->count != 0)
		return 0;

	old = x = walk->state;
	walk->state = NULL;
L
Linus Torvalds 已提交
1574
	spin_lock_bh(&xfrm_state_lock);
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
	if (x == NULL)
		x = list_first_entry(&xfrm_state_all, struct xfrm_state, all);
	list_for_each_entry_from(x, &xfrm_state_all, all) {
		if (x->km.state == XFRM_STATE_DEAD)
			continue;
		if (!xfrm_id_proto_match(x->id.proto, walk->proto))
			continue;
		if (last) {
			err = func(last, walk->count, data);
			if (err) {
				xfrm_state_hold(last);
				walk->state = last;
1587
				xfrm_state_walk_ongoing++;
1588
				goto out;
J
Jamal Hadi Salim 已提交
1589
			}
L
Linus Torvalds 已提交
1590
		}
1591 1592
		last = x;
		walk->count++;
L
Linus Torvalds 已提交
1593
	}
1594
	if (walk->count == 0) {
L
Linus Torvalds 已提交
1595 1596 1597
		err = -ENOENT;
		goto out;
	}
1598 1599
	if (last)
		err = func(last, 0, data);
L
Linus Torvalds 已提交
1600 1601
out:
	spin_unlock_bh(&xfrm_state_lock);
1602
	if (old != NULL) {
1603
		xfrm_state_put(old);
1604 1605 1606 1607
		xfrm_state_walk_completed++;
		if (!list_empty(&xfrm_state_gc_leftovers))
			schedule_work(&xfrm_state_gc_work);
	}
L
Linus Torvalds 已提交
1608 1609 1610 1611
	return err;
}
EXPORT_SYMBOL(xfrm_state_walk);

1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
void xfrm_state_walk_done(struct xfrm_state_walk *walk)
{
	if (walk->state != NULL) {
		xfrm_state_put(walk->state);
		walk->state = NULL;
		xfrm_state_walk_completed++;
		if (!list_empty(&xfrm_state_gc_leftovers))
			schedule_work(&xfrm_state_gc_work);
	}
}
EXPORT_SYMBOL(xfrm_state_walk_done);

1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641

void xfrm_replay_notify(struct xfrm_state *x, int event)
{
	struct km_event c;
	/* we send notify messages in case
	 *  1. we updated on of the sequence numbers, and the seqno difference
	 *     is at least x->replay_maxdiff, in this case we also update the
	 *     timeout of our timer function
	 *  2. if x->replay_maxage has elapsed since last update,
	 *     and there were changes
	 *
	 *  The state structure must be locked!
	 */

	switch (event) {
	case XFRM_REPLAY_UPDATE:
		if (x->replay_maxdiff &&
		    (x->replay.seq - x->preplay.seq < x->replay_maxdiff) &&
J
Jamal Hadi Salim 已提交
1642 1643 1644 1645 1646 1647
		    (x->replay.oseq - x->preplay.oseq < x->replay_maxdiff)) {
			if (x->xflags & XFRM_TIME_DEFER)
				event = XFRM_REPLAY_TIMEOUT;
			else
				return;
		}
1648 1649 1650 1651 1652 1653

		break;

	case XFRM_REPLAY_TIMEOUT:
		if ((x->replay.seq == x->preplay.seq) &&
		    (x->replay.bitmap == x->preplay.bitmap) &&
J
Jamal Hadi Salim 已提交
1654 1655
		    (x->replay.oseq == x->preplay.oseq)) {
			x->xflags |= XFRM_TIME_DEFER;
1656
			return;
J
Jamal Hadi Salim 已提交
1657
		}
1658 1659 1660 1661 1662 1663 1664 1665 1666 1667

		break;
	}

	memcpy(&x->preplay, &x->replay, sizeof(struct xfrm_replay_state));
	c.event = XFRM_MSG_NEWAE;
	c.data.aevent = event;
	km_state_notify(x, &c);

	if (x->replay_maxage &&
1668
	    !mod_timer(&x->rtimer, jiffies + x->replay_maxage))
J
Jamal Hadi Salim 已提交
1669
		x->xflags &= ~XFRM_TIME_DEFER;
1670 1671 1672 1673 1674 1675 1676 1677
}

static void xfrm_replay_timer_handler(unsigned long data)
{
	struct xfrm_state *x = (struct xfrm_state*)data;

	spin_lock(&x->lock);

J
Jamal Hadi Salim 已提交
1678 1679 1680 1681 1682 1683
	if (x->km.state == XFRM_STATE_VALID) {
		if (xfrm_aevent_is_on())
			xfrm_replay_notify(x, XFRM_REPLAY_TIMEOUT);
		else
			x->xflags |= XFRM_TIME_DEFER;
	}
1684 1685 1686 1687

	spin_unlock(&x->lock);
}

P
Paul Moore 已提交
1688 1689
int xfrm_replay_check(struct xfrm_state *x,
		      struct sk_buff *skb, __be32 net_seq)
L
Linus Torvalds 已提交
1690 1691
{
	u32 diff;
1692
	u32 seq = ntohl(net_seq);
L
Linus Torvalds 已提交
1693 1694

	if (unlikely(seq == 0))
P
Paul Moore 已提交
1695
		goto err;
L
Linus Torvalds 已提交
1696 1697 1698 1699 1700

	if (likely(seq > x->replay.seq))
		return 0;

	diff = x->replay.seq - seq;
1701 1702
	if (diff >= min_t(unsigned int, x->props.replay_window,
			  sizeof(x->replay.bitmap) * 8)) {
L
Linus Torvalds 已提交
1703
		x->stats.replay_window++;
P
Paul Moore 已提交
1704
		goto err;
L
Linus Torvalds 已提交
1705 1706 1707 1708
	}

	if (x->replay.bitmap & (1U << diff)) {
		x->stats.replay++;
P
Paul Moore 已提交
1709
		goto err;
L
Linus Torvalds 已提交
1710 1711
	}
	return 0;
P
Paul Moore 已提交
1712 1713 1714 1715

err:
	xfrm_audit_state_replay(x, skb, net_seq);
	return -EINVAL;
L
Linus Torvalds 已提交
1716 1717
}

1718
void xfrm_replay_advance(struct xfrm_state *x, __be32 net_seq)
L
Linus Torvalds 已提交
1719 1720
{
	u32 diff;
1721
	u32 seq = ntohl(net_seq);
L
Linus Torvalds 已提交
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733

	if (seq > x->replay.seq) {
		diff = seq - x->replay.seq;
		if (diff < x->props.replay_window)
			x->replay.bitmap = ((x->replay.bitmap) << diff) | 1;
		else
			x->replay.bitmap = 1;
		x->replay.seq = seq;
	} else {
		diff = x->replay.seq - seq;
		x->replay.bitmap |= (1U << diff);
	}
1734 1735 1736

	if (xfrm_aevent_is_on())
		xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
L
Linus Torvalds 已提交
1737 1738
}

1739
static LIST_HEAD(xfrm_km_list);
L
Linus Torvalds 已提交
1740 1741
static DEFINE_RWLOCK(xfrm_km_lock);

1742
void km_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
L
Linus Torvalds 已提交
1743 1744 1745
{
	struct xfrm_mgr *km;

1746 1747 1748 1749 1750 1751
	read_lock(&xfrm_km_lock);
	list_for_each_entry(km, &xfrm_km_list, list)
		if (km->notify_policy)
			km->notify_policy(xp, dir, c);
	read_unlock(&xfrm_km_lock);
}
L
Linus Torvalds 已提交
1752

1753 1754 1755
void km_state_notify(struct xfrm_state *x, struct km_event *c)
{
	struct xfrm_mgr *km;
L
Linus Torvalds 已提交
1756 1757
	read_lock(&xfrm_km_lock);
	list_for_each_entry(km, &xfrm_km_list, list)
1758 1759
		if (km->notify)
			km->notify(x, c);
L
Linus Torvalds 已提交
1760
	read_unlock(&xfrm_km_lock);
1761 1762 1763 1764 1765
}

EXPORT_SYMBOL(km_policy_notify);
EXPORT_SYMBOL(km_state_notify);

1766
void km_state_expired(struct xfrm_state *x, int hard, u32 pid)
1767 1768 1769
{
	struct km_event c;

1770
	c.data.hard = hard;
1771
	c.pid = pid;
1772
	c.event = XFRM_MSG_EXPIRE;
1773
	km_state_notify(x, &c);
L
Linus Torvalds 已提交
1774 1775 1776 1777 1778

	if (hard)
		wake_up(&km_waitq);
}

1779
EXPORT_SYMBOL(km_state_expired);
1780 1781 1782 1783
/*
 * We send to all registered managers regardless of failure
 * We are happy with one success
*/
1784
int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol)
L
Linus Torvalds 已提交
1785
{
1786
	int err = -EINVAL, acqret;
L
Linus Torvalds 已提交
1787 1788 1789 1790
	struct xfrm_mgr *km;

	read_lock(&xfrm_km_lock);
	list_for_each_entry(km, &xfrm_km_list, list) {
1791 1792 1793
		acqret = km->acquire(x, t, pol, XFRM_POLICY_OUT);
		if (!acqret)
			err = acqret;
L
Linus Torvalds 已提交
1794 1795 1796 1797
	}
	read_unlock(&xfrm_km_lock);
	return err;
}
1798
EXPORT_SYMBOL(km_query);
L
Linus Torvalds 已提交
1799

A
Al Viro 已提交
1800
int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport)
L
Linus Torvalds 已提交
1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
{
	int err = -EINVAL;
	struct xfrm_mgr *km;

	read_lock(&xfrm_km_lock);
	list_for_each_entry(km, &xfrm_km_list, list) {
		if (km->new_mapping)
			err = km->new_mapping(x, ipaddr, sport);
		if (!err)
			break;
	}
	read_unlock(&xfrm_km_lock);
	return err;
}
EXPORT_SYMBOL(km_new_mapping);

1817
void km_policy_expired(struct xfrm_policy *pol, int dir, int hard, u32 pid)
L
Linus Torvalds 已提交
1818
{
1819
	struct km_event c;
L
Linus Torvalds 已提交
1820

1821
	c.data.hard = hard;
1822
	c.pid = pid;
1823
	c.event = XFRM_MSG_POLEXPIRE;
1824
	km_policy_notify(pol, dir, &c);
L
Linus Torvalds 已提交
1825 1826 1827 1828

	if (hard)
		wake_up(&km_waitq);
}
1829
EXPORT_SYMBOL(km_policy_expired);
L
Linus Torvalds 已提交
1830

1831
#ifdef CONFIG_XFRM_MIGRATE
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
int km_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
	       struct xfrm_migrate *m, int num_migrate)
{
	int err = -EINVAL;
	int ret;
	struct xfrm_mgr *km;

	read_lock(&xfrm_km_lock);
	list_for_each_entry(km, &xfrm_km_list, list) {
		if (km->migrate) {
			ret = km->migrate(sel, dir, type, m, num_migrate);
			if (!ret)
				err = ret;
		}
	}
	read_unlock(&xfrm_km_lock);
	return err;
}
EXPORT_SYMBOL(km_migrate);
1851
#endif
1852

1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871
int km_report(u8 proto, struct xfrm_selector *sel, xfrm_address_t *addr)
{
	int err = -EINVAL;
	int ret;
	struct xfrm_mgr *km;

	read_lock(&xfrm_km_lock);
	list_for_each_entry(km, &xfrm_km_list, list) {
		if (km->report) {
			ret = km->report(proto, sel, addr);
			if (!ret)
				err = ret;
		}
	}
	read_unlock(&xfrm_km_lock);
	return err;
}
EXPORT_SYMBOL(km_report);

L
Linus Torvalds 已提交
1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
int xfrm_user_policy(struct sock *sk, int optname, u8 __user *optval, int optlen)
{
	int err;
	u8 *data;
	struct xfrm_mgr *km;
	struct xfrm_policy *pol = NULL;

	if (optlen <= 0 || optlen > PAGE_SIZE)
		return -EMSGSIZE;

	data = kmalloc(optlen, GFP_KERNEL);
	if (!data)
		return -ENOMEM;

	err = -EFAULT;
	if (copy_from_user(data, optval, optlen))
		goto out;

	err = -EINVAL;
	read_lock(&xfrm_km_lock);
	list_for_each_entry(km, &xfrm_km_list, list) {
1893
		pol = km->compile_policy(sk, optname, data,
L
Linus Torvalds 已提交
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
					 optlen, &err);
		if (err >= 0)
			break;
	}
	read_unlock(&xfrm_km_lock);

	if (err >= 0) {
		xfrm_sk_policy_insert(sk, err, pol);
		xfrm_pol_put(pol);
		err = 0;
	}

out:
	kfree(data);
	return err;
}
EXPORT_SYMBOL(xfrm_user_policy);

int xfrm_register_km(struct xfrm_mgr *km)
{
	write_lock_bh(&xfrm_km_lock);
	list_add_tail(&km->list, &xfrm_km_list);
	write_unlock_bh(&xfrm_km_lock);
	return 0;
}
EXPORT_SYMBOL(xfrm_register_km);

int xfrm_unregister_km(struct xfrm_mgr *km)
{
	write_lock_bh(&xfrm_km_lock);
	list_del(&km->list);
	write_unlock_bh(&xfrm_km_lock);
	return 0;
}
EXPORT_SYMBOL(xfrm_unregister_km);

int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo)
{
	int err = 0;
	if (unlikely(afinfo == NULL))
		return -EINVAL;
	if (unlikely(afinfo->family >= NPROTO))
		return -EAFNOSUPPORT;
1937
	write_lock_bh(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
1938 1939
	if (unlikely(xfrm_state_afinfo[afinfo->family] != NULL))
		err = -ENOBUFS;
1940
	else
L
Linus Torvalds 已提交
1941
		xfrm_state_afinfo[afinfo->family] = afinfo;
1942
	write_unlock_bh(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
	return err;
}
EXPORT_SYMBOL(xfrm_state_register_afinfo);

int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo)
{
	int err = 0;
	if (unlikely(afinfo == NULL))
		return -EINVAL;
	if (unlikely(afinfo->family >= NPROTO))
		return -EAFNOSUPPORT;
1954
	write_lock_bh(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
1955 1956 1957
	if (likely(xfrm_state_afinfo[afinfo->family] != NULL)) {
		if (unlikely(xfrm_state_afinfo[afinfo->family] != afinfo))
			err = -EINVAL;
1958
		else
L
Linus Torvalds 已提交
1959 1960
			xfrm_state_afinfo[afinfo->family] = NULL;
	}
1961
	write_unlock_bh(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
1962 1963 1964 1965
	return err;
}
EXPORT_SYMBOL(xfrm_state_unregister_afinfo);

1966
static struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family)
L
Linus Torvalds 已提交
1967 1968 1969 1970 1971 1972
{
	struct xfrm_state_afinfo *afinfo;
	if (unlikely(family >= NPROTO))
		return NULL;
	read_lock(&xfrm_state_afinfo_lock);
	afinfo = xfrm_state_afinfo[family];
1973 1974
	if (unlikely(!afinfo))
		read_unlock(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
1975 1976 1977
	return afinfo;
}

1978
static void xfrm_state_put_afinfo(struct xfrm_state_afinfo *afinfo)
1979
	__releases(xfrm_state_afinfo_lock)
L
Linus Torvalds 已提交
1980
{
1981
	read_unlock(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
}

/* Temporarily located here until net/xfrm/xfrm_tunnel.c is created */
void xfrm_state_delete_tunnel(struct xfrm_state *x)
{
	if (x->tunnel) {
		struct xfrm_state *t = x->tunnel;

		if (atomic_read(&t->tunnel_users) == 2)
			xfrm_state_delete(t);
		atomic_dec(&t->tunnel_users);
		xfrm_state_put(t);
		x->tunnel = NULL;
	}
}
EXPORT_SYMBOL(xfrm_state_delete_tunnel);

int xfrm_state_mtu(struct xfrm_state *x, int mtu)
{
2001
	int res;
L
Linus Torvalds 已提交
2002

2003 2004 2005 2006 2007
	spin_lock_bh(&x->lock);
	if (x->km.state == XFRM_STATE_VALID &&
	    x->type && x->type->get_mtu)
		res = x->type->get_mtu(x, mtu);
	else
2008
		res = mtu - x->props.header_len;
2009
	spin_unlock_bh(&x->lock);
L
Linus Torvalds 已提交
2010 2011 2012
	return res;
}

H
Herbert Xu 已提交
2013 2014
int xfrm_init_state(struct xfrm_state *x)
{
2015
	struct xfrm_state_afinfo *afinfo;
2016
	struct xfrm_mode *inner_mode;
2017
	int family = x->props.family;
H
Herbert Xu 已提交
2018 2019
	int err;

2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034
	err = -EAFNOSUPPORT;
	afinfo = xfrm_state_get_afinfo(family);
	if (!afinfo)
		goto error;

	err = 0;
	if (afinfo->init_flags)
		err = afinfo->init_flags(x);

	xfrm_state_put_afinfo(afinfo);

	if (err)
		goto error;

	err = -EPROTONOSUPPORT;
2035

2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076
	if (x->sel.family != AF_UNSPEC) {
		inner_mode = xfrm_get_mode(x->props.mode, x->sel.family);
		if (inner_mode == NULL)
			goto error;

		if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
		    family != x->sel.family) {
			xfrm_put_mode(inner_mode);
			goto error;
		}

		x->inner_mode = inner_mode;
	} else {
		struct xfrm_mode *inner_mode_iaf;

		inner_mode = xfrm_get_mode(x->props.mode, AF_INET);
		if (inner_mode == NULL)
			goto error;

		if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL)) {
			xfrm_put_mode(inner_mode);
			goto error;
		}

		inner_mode_iaf = xfrm_get_mode(x->props.mode, AF_INET6);
		if (inner_mode_iaf == NULL)
			goto error;

		if (!(inner_mode_iaf->flags & XFRM_MODE_FLAG_TUNNEL)) {
			xfrm_put_mode(inner_mode_iaf);
			goto error;
		}

		if (x->props.family == AF_INET) {
			x->inner_mode = inner_mode;
			x->inner_mode_iaf = inner_mode_iaf;
		} else {
			x->inner_mode = inner_mode_iaf;
			x->inner_mode_iaf = inner_mode;
		}
	}
2077

2078
	x->type = xfrm_get_type(x->id.proto, family);
H
Herbert Xu 已提交
2079 2080 2081 2082 2083 2084 2085
	if (x->type == NULL)
		goto error;

	err = x->type->init_state(x);
	if (err)
		goto error;

2086 2087
	x->outer_mode = xfrm_get_mode(x->props.mode, family);
	if (x->outer_mode == NULL)
2088 2089
		goto error;

H
Herbert Xu 已提交
2090 2091 2092 2093 2094 2095 2096
	x->km.state = XFRM_STATE_VALID;

error:
	return err;
}

EXPORT_SYMBOL(xfrm_init_state);
2097

L
Linus Torvalds 已提交
2098 2099
void __init xfrm_state_init(void)
{
2100 2101 2102 2103
	unsigned int sz;

	sz = sizeof(struct hlist_head) * 8;

2104 2105 2106
	xfrm_state_bydst = xfrm_hash_alloc(sz);
	xfrm_state_bysrc = xfrm_hash_alloc(sz);
	xfrm_state_byspi = xfrm_hash_alloc(sz);
2107 2108 2109
	if (!xfrm_state_bydst || !xfrm_state_bysrc || !xfrm_state_byspi)
		panic("XFRM: Cannot allocate bydst/bysrc/byspi hashes.");
	xfrm_state_hmask = ((sz / sizeof(struct hlist_head)) - 1);
L
Linus Torvalds 已提交
2110

D
David Howells 已提交
2111
	INIT_WORK(&xfrm_state_gc_work, xfrm_state_gc_task);
L
Linus Torvalds 已提交
2112 2113
}

J
Joy Latten 已提交
2114
#ifdef CONFIG_AUDITSYSCALL
I
Ilpo Järvinen 已提交
2115 2116
static void xfrm_audit_helper_sainfo(struct xfrm_state *x,
				     struct audit_buffer *audit_buf)
J
Joy Latten 已提交
2117
{
P
Paul Moore 已提交
2118 2119 2120 2121
	struct xfrm_sec_ctx *ctx = x->security;
	u32 spi = ntohl(x->id.spi);

	if (ctx)
J
Joy Latten 已提交
2122
		audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
P
Paul Moore 已提交
2123
				 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
J
Joy Latten 已提交
2124 2125 2126

	switch(x->props.family) {
	case AF_INET:
P
Paul Moore 已提交
2127 2128
		audit_log_format(audit_buf,
				 " src=" NIPQUAD_FMT " dst=" NIPQUAD_FMT,
J
Joy Latten 已提交
2129 2130 2131 2132
				 NIPQUAD(x->props.saddr.a4),
				 NIPQUAD(x->id.daddr.a4));
		break;
	case AF_INET6:
P
Paul Moore 已提交
2133 2134 2135 2136
		audit_log_format(audit_buf,
				 " src=" NIP6_FMT " dst=" NIP6_FMT,
				 NIP6(*(struct in6_addr *)x->props.saddr.a6),
				 NIP6(*(struct in6_addr *)x->id.daddr.a6));
J
Joy Latten 已提交
2137 2138
		break;
	}
P
Paul Moore 已提交
2139 2140

	audit_log_format(audit_buf, " spi=%u(0x%x)", spi, spi);
J
Joy Latten 已提交
2141 2142
}

I
Ilpo Järvinen 已提交
2143 2144
static void xfrm_audit_helper_pktinfo(struct sk_buff *skb, u16 family,
				      struct audit_buffer *audit_buf)
P
Paul Moore 已提交
2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160
{
	struct iphdr *iph4;
	struct ipv6hdr *iph6;

	switch (family) {
	case AF_INET:
		iph4 = ip_hdr(skb);
		audit_log_format(audit_buf,
				 " src=" NIPQUAD_FMT " dst=" NIPQUAD_FMT,
				 NIPQUAD(iph4->saddr),
				 NIPQUAD(iph4->daddr));
		break;
	case AF_INET6:
		iph6 = ipv6_hdr(skb);
		audit_log_format(audit_buf,
				 " src=" NIP6_FMT " dst=" NIP6_FMT
2161
				 " flowlbl=0x%x%02x%02x",
P
Paul Moore 已提交
2162 2163 2164 2165 2166 2167 2168 2169 2170
				 NIP6(iph6->saddr),
				 NIP6(iph6->daddr),
				 iph6->flow_lbl[0] & 0x0f,
				 iph6->flow_lbl[1],
				 iph6->flow_lbl[2]);
		break;
	}
}

P
Paul Moore 已提交
2171
void xfrm_audit_state_add(struct xfrm_state *x, int result,
2172
			  uid_t auid, u32 sessionid, u32 secid)
J
Joy Latten 已提交
2173 2174 2175
{
	struct audit_buffer *audit_buf;

P
Paul Moore 已提交
2176
	audit_buf = xfrm_audit_start("SAD-add");
J
Joy Latten 已提交
2177 2178
	if (audit_buf == NULL)
		return;
2179
	xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
P
Paul Moore 已提交
2180 2181
	xfrm_audit_helper_sainfo(x, audit_buf);
	audit_log_format(audit_buf, " res=%u", result);
J
Joy Latten 已提交
2182 2183 2184 2185
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_add);

P
Paul Moore 已提交
2186
void xfrm_audit_state_delete(struct xfrm_state *x, int result,
2187
			     uid_t auid, u32 sessionid, u32 secid)
J
Joy Latten 已提交
2188 2189 2190
{
	struct audit_buffer *audit_buf;

P
Paul Moore 已提交
2191
	audit_buf = xfrm_audit_start("SAD-delete");
J
Joy Latten 已提交
2192 2193
	if (audit_buf == NULL)
		return;
2194
	xfrm_audit_helper_usrinfo(auid, sessionid, secid, audit_buf);
P
Paul Moore 已提交
2195 2196
	xfrm_audit_helper_sainfo(x, audit_buf);
	audit_log_format(audit_buf, " res=%u", result);
J
Joy Latten 已提交
2197 2198 2199
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_delete);
P
Paul Moore 已提交
2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282

void xfrm_audit_state_replay_overflow(struct xfrm_state *x,
				      struct sk_buff *skb)
{
	struct audit_buffer *audit_buf;
	u32 spi;

	audit_buf = xfrm_audit_start("SA-replay-overflow");
	if (audit_buf == NULL)
		return;
	xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
	/* don't record the sequence number because it's inherent in this kind
	 * of audit message */
	spi = ntohl(x->id.spi);
	audit_log_format(audit_buf, " spi=%u(0x%x)", spi, spi);
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_replay_overflow);

static void xfrm_audit_state_replay(struct xfrm_state *x,
			     struct sk_buff *skb, __be32 net_seq)
{
	struct audit_buffer *audit_buf;
	u32 spi;

	audit_buf = xfrm_audit_start("SA-replayed-pkt");
	if (audit_buf == NULL)
		return;
	xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
	spi = ntohl(x->id.spi);
	audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
			 spi, spi, ntohl(net_seq));
	audit_log_end(audit_buf);
}

void xfrm_audit_state_notfound_simple(struct sk_buff *skb, u16 family)
{
	struct audit_buffer *audit_buf;

	audit_buf = xfrm_audit_start("SA-notfound");
	if (audit_buf == NULL)
		return;
	xfrm_audit_helper_pktinfo(skb, family, audit_buf);
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_notfound_simple);

void xfrm_audit_state_notfound(struct sk_buff *skb, u16 family,
			       __be32 net_spi, __be32 net_seq)
{
	struct audit_buffer *audit_buf;
	u32 spi;

	audit_buf = xfrm_audit_start("SA-notfound");
	if (audit_buf == NULL)
		return;
	xfrm_audit_helper_pktinfo(skb, family, audit_buf);
	spi = ntohl(net_spi);
	audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
			 spi, spi, ntohl(net_seq));
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_notfound);

void xfrm_audit_state_icvfail(struct xfrm_state *x,
			      struct sk_buff *skb, u8 proto)
{
	struct audit_buffer *audit_buf;
	__be32 net_spi;
	__be32 net_seq;

	audit_buf = xfrm_audit_start("SA-icv-failure");
	if (audit_buf == NULL)
		return;
	xfrm_audit_helper_pktinfo(skb, x->props.family, audit_buf);
	if (xfrm_parse_spi(skb, proto, &net_spi, &net_seq) == 0) {
		u32 spi = ntohl(net_spi);
		audit_log_format(audit_buf, " spi=%u(0x%x) seqno=%u",
				 spi, spi, ntohl(net_seq));
	}
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_icvfail);
J
Joy Latten 已提交
2283
#endif /* CONFIG_AUDITSYSCALL */