xfrm_state.c 64.1 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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
14
 *
L
Linus Torvalds 已提交
15 16 17 18 19 20 21
 */

#include <linux/workqueue.h>
#include <net/xfrm.h>
#include <linux/pfkeyv2.h>
#include <linux/ipsec.h>
#include <linux/module.h>
22
#include <linux/cache.h>
P
Paul Moore 已提交
23
#include <linux/audit.h>
24
#include <linux/uaccess.h>
25
#include <linux/ktime.h>
26
#include <linux/slab.h>
27 28
#include <linux/interrupt.h>
#include <linux/kernel.h>
L
Linus Torvalds 已提交
29

30 31
#include <crypto/aead.h>

32 33
#include "xfrm_hash.h"

34 35 36
#define xfrm_state_deref_prot(table, net) \
	rcu_dereference_protected((table), lockdep_is_held(&(net)->xfrm.xfrm_state_lock))

37 38
static void xfrm_state_gc_task(struct work_struct *work);

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

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

46
static unsigned int xfrm_state_hashmax __read_mostly = 1 * 1024 * 1024;
47
static __read_mostly seqcount_t xfrm_state_hash_generation = SEQCNT_ZERO(xfrm_state_hash_generation);
48
static struct kmem_cache *xfrm_state_cache __ro_after_init;
49

50 51 52
static DECLARE_WORK(xfrm_state_gc_work, xfrm_state_gc_task);
static HLIST_HEAD(xfrm_state_gc_list);

53 54
static inline bool xfrm_state_hold_rcu(struct xfrm_state __rcu *x)
{
55
	return refcount_inc_not_zero(&x->refcnt);
56 57
}

58
static inline unsigned int xfrm_dst_hash(struct net *net,
59 60
					 const xfrm_address_t *daddr,
					 const xfrm_address_t *saddr,
61
					 u32 reqid,
62
					 unsigned short family)
63
{
64
	return __xfrm_dst_hash(daddr, saddr, reqid, family, net->xfrm.state_hmask);
65 66
}

67
static inline unsigned int xfrm_src_hash(struct net *net,
68 69
					 const xfrm_address_t *daddr,
					 const xfrm_address_t *saddr,
70
					 unsigned short family)
71
{
72
	return __xfrm_src_hash(daddr, saddr, family, net->xfrm.state_hmask);
73 74 75
}

static inline unsigned int
76 77
xfrm_spi_hash(struct net *net, const xfrm_address_t *daddr,
	      __be32 spi, u8 proto, unsigned short family)
78
{
79
	return __xfrm_spi_hash(daddr, spi, proto, family, net->xfrm.state_hmask);
80 81 82 83 84 85 86 87
}

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

91
	hlist_for_each_entry_safe(x, tmp, list, bydst) {
92 93
		unsigned int h;

94 95 96
		h = __xfrm_dst_hash(&x->id.daddr, &x->props.saddr,
				    x->props.reqid, x->props.family,
				    nhashmask);
97
		hlist_add_head_rcu(&x->bydst, ndsttable + h);
98

99 100
		h = __xfrm_src_hash(&x->id.daddr, &x->props.saddr,
				    x->props.family,
101
				    nhashmask);
102
		hlist_add_head_rcu(&x->bysrc, nsrctable + h);
103

104 105 106 107
		if (x->id.spi) {
			h = __xfrm_spi_hash(&x->id.daddr, x->id.spi,
					    x->id.proto, x->props.family,
					    nhashmask);
108
			hlist_add_head_rcu(&x->byspi, nspitable + h);
109
		}
110 111 112
	}
}

113
static unsigned long xfrm_hash_new_size(unsigned int state_hmask)
114
{
115
	return ((state_hmask + 1) << 1) * sizeof(struct hlist_head);
116 117
}

118
static void xfrm_hash_resize(struct work_struct *work)
119
{
120
	struct net *net = container_of(work, struct net, xfrm.state_hash_work);
121 122 123 124 125
	struct hlist_head *ndst, *nsrc, *nspi, *odst, *osrc, *ospi;
	unsigned long nsize, osize;
	unsigned int nhashmask, ohashmask;
	int i;

126
	nsize = xfrm_hash_new_size(net->xfrm.state_hmask);
127
	ndst = xfrm_hash_alloc(nsize);
128
	if (!ndst)
129
		return;
130
	nsrc = xfrm_hash_alloc(nsize);
131
	if (!nsrc) {
132
		xfrm_hash_free(ndst, nsize);
133
		return;
134
	}
135
	nspi = xfrm_hash_alloc(nsize);
136
	if (!nspi) {
137 138
		xfrm_hash_free(ndst, nsize);
		xfrm_hash_free(nsrc, nsize);
139
		return;
140 141
	}

F
Fan Du 已提交
142
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
143
	write_seqcount_begin(&xfrm_state_hash_generation);
144 145

	nhashmask = (nsize / sizeof(struct hlist_head)) - 1U;
146
	odst = xfrm_state_deref_prot(net->xfrm.state_bydst, net);
147
	for (i = net->xfrm.state_hmask; i >= 0; i--)
148
		xfrm_hash_transfer(odst + i, ndst, nsrc, nspi, nhashmask);
149

150 151
	osrc = xfrm_state_deref_prot(net->xfrm.state_bysrc, net);
	ospi = xfrm_state_deref_prot(net->xfrm.state_byspi, net);
152
	ohashmask = net->xfrm.state_hmask;
153

154 155 156
	rcu_assign_pointer(net->xfrm.state_bydst, ndst);
	rcu_assign_pointer(net->xfrm.state_bysrc, nsrc);
	rcu_assign_pointer(net->xfrm.state_byspi, nspi);
157
	net->xfrm.state_hmask = nhashmask;
158

159
	write_seqcount_end(&xfrm_state_hash_generation);
F
Fan Du 已提交
160
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
161 162

	osize = (ohashmask + 1) * sizeof(struct hlist_head);
163 164 165

	synchronize_rcu();

166 167 168
	xfrm_hash_free(odst, osize);
	xfrm_hash_free(osrc, osize);
	xfrm_hash_free(ospi, osize);
169 170
}

171 172
static DEFINE_SPINLOCK(xfrm_state_afinfo_lock);
static struct xfrm_state_afinfo __rcu *xfrm_state_afinfo[NPROTO];
L
Linus Torvalds 已提交
173 174 175

static DEFINE_SPINLOCK(xfrm_state_gc_lock);

176
int __xfrm_state_delete(struct xfrm_state *x);
L
Linus Torvalds 已提交
177

178
int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol);
179
static bool km_is_alive(const struct km_event *c);
180
void km_state_expired(struct xfrm_state *x, int hard, u32 portid);
L
Linus Torvalds 已提交
181

182
int xfrm_register_type(const struct xfrm_type *type, unsigned short family)
183
{
184
	struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
185 186
	int err = 0;

187
	if (!afinfo)
188
		return -EAFNOSUPPORT;
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222

#define X(afi, T, name) do {			\
		WARN_ON((afi)->type_ ## name);	\
		(afi)->type_ ## name = (T);	\
	} while (0)

	switch (type->proto) {
	case IPPROTO_COMP:
		X(afinfo, type, comp);
		break;
	case IPPROTO_AH:
		X(afinfo, type, ah);
		break;
	case IPPROTO_ESP:
		X(afinfo, type, esp);
		break;
	case IPPROTO_IPIP:
		X(afinfo, type, ipip);
		break;
	case IPPROTO_DSTOPTS:
		X(afinfo, type, dstopts);
		break;
	case IPPROTO_ROUTING:
		X(afinfo, type, routing);
		break;
	case IPPROTO_IPV6:
		X(afinfo, type, ipip6);
		break;
	default:
		WARN_ON(1);
		err = -EPROTONOSUPPORT;
		break;
	}
#undef X
223
	rcu_read_unlock();
224 225 226 227
	return err;
}
EXPORT_SYMBOL(xfrm_register_type);

228
void xfrm_unregister_type(const struct xfrm_type *type, unsigned short family)
229
{
230
	struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
231 232

	if (unlikely(afinfo == NULL))
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
		return;

#define X(afi, T, name) do {				\
		WARN_ON((afi)->type_ ## name != (T));	\
		(afi)->type_ ## name = NULL;		\
	} while (0)

	switch (type->proto) {
	case IPPROTO_COMP:
		X(afinfo, type, comp);
		break;
	case IPPROTO_AH:
		X(afinfo, type, ah);
		break;
	case IPPROTO_ESP:
		X(afinfo, type, esp);
		break;
	case IPPROTO_IPIP:
		X(afinfo, type, ipip);
		break;
	case IPPROTO_DSTOPTS:
		X(afinfo, type, dstopts);
		break;
	case IPPROTO_ROUTING:
		X(afinfo, type, routing);
		break;
	case IPPROTO_IPV6:
		X(afinfo, type, ipip6);
		break;
	default:
		WARN_ON(1);
		break;
	}
#undef X
267
	rcu_read_unlock();
268 269 270
}
EXPORT_SYMBOL(xfrm_unregister_type);

271
static const struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family)
272
{
273
	const struct xfrm_type *type = NULL;
274 275 276 277 278 279 280 281
	struct xfrm_state_afinfo *afinfo;
	int modload_attempted = 0;

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

282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
	switch (proto) {
	case IPPROTO_COMP:
		type = afinfo->type_comp;
		break;
	case IPPROTO_AH:
		type = afinfo->type_ah;
		break;
	case IPPROTO_ESP:
		type = afinfo->type_esp;
		break;
	case IPPROTO_IPIP:
		type = afinfo->type_ipip;
		break;
	case IPPROTO_DSTOPTS:
		type = afinfo->type_dstopts;
		break;
	case IPPROTO_ROUTING:
		type = afinfo->type_routing;
		break;
	case IPPROTO_IPV6:
		type = afinfo->type_ipip6;
		break;
	default:
		break;
	}

308 309
	if (unlikely(type && !try_module_get(type->owner)))
		type = NULL;
310 311 312

	rcu_read_unlock();

313 314 315 316 317 318 319 320 321
	if (!type && !modload_attempted) {
		request_module("xfrm-type-%d-%d", family, proto);
		modload_attempted = 1;
		goto retry;
	}

	return type;
}

322
static void xfrm_put_type(const struct xfrm_type *type)
323 324 325 326
{
	module_put(type->owner);
}

327 328 329 330 331 332 333 334
int xfrm_register_type_offload(const struct xfrm_type_offload *type,
			       unsigned short family)
{
	struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);
	int err = 0;

	if (unlikely(afinfo == NULL))
		return -EAFNOSUPPORT;
335 336 337 338 339 340 341 342 343 344 345 346

	switch (type->proto) {
	case IPPROTO_ESP:
		WARN_ON(afinfo->type_offload_esp);
		afinfo->type_offload_esp = type;
		break;
	default:
		WARN_ON(1);
		err = -EPROTONOSUPPORT;
		break;
	}

347 348 349 350 351
	rcu_read_unlock();
	return err;
}
EXPORT_SYMBOL(xfrm_register_type_offload);

352 353
void xfrm_unregister_type_offload(const struct xfrm_type_offload *type,
				  unsigned short family)
354 355 356 357
{
	struct xfrm_state_afinfo *afinfo = xfrm_state_get_afinfo(family);

	if (unlikely(afinfo == NULL))
358 359 360 361 362 363 364 365 366 367 368
		return;

	switch (type->proto) {
	case IPPROTO_ESP:
		WARN_ON(afinfo->type_offload_esp != type);
		afinfo->type_offload_esp = NULL;
		break;
	default:
		WARN_ON(1);
		break;
	}
369 370 371 372
	rcu_read_unlock();
}
EXPORT_SYMBOL(xfrm_unregister_type_offload);

373 374
static const struct xfrm_type_offload *
xfrm_get_type_offload(u8 proto, unsigned short family, bool try_load)
375
{
376
	const struct xfrm_type_offload *type = NULL;
377 378
	struct xfrm_state_afinfo *afinfo;

379
retry:
380 381 382 383
	afinfo = xfrm_state_get_afinfo(family);
	if (unlikely(afinfo == NULL))
		return NULL;

384 385 386 387 388 389 390 391
	switch (proto) {
	case IPPROTO_ESP:
		type = afinfo->type_offload_esp;
		break;
	default:
		break;
	}

392 393 394
	if ((type && !try_module_get(type->owner)))
		type = NULL;

395 396
	rcu_read_unlock();

397 398
	if (!type && try_load) {
		request_module("xfrm-offload-%d-%d", family, proto);
399
		try_load = false;
400 401 402
		goto retry;
	}

403 404 405 406 407 408 409 410
	return type;
}

static void xfrm_put_type_offload(const struct xfrm_type_offload *type)
{
	module_put(type->owner);
}

F
Florian Westphal 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
static const struct xfrm_mode xfrm4_mode_map[XFRM_MODE_MAX] = {
	[XFRM_MODE_BEET] = {
		.encap = XFRM_MODE_BEET,
		.flags = XFRM_MODE_FLAG_TUNNEL,
		.family = AF_INET,
	},
	[XFRM_MODE_TRANSPORT] = {
		.encap = XFRM_MODE_TRANSPORT,
		.family = AF_INET,
	},
	[XFRM_MODE_TUNNEL] = {
		.encap = XFRM_MODE_TUNNEL,
		.flags = XFRM_MODE_FLAG_TUNNEL,
		.family = AF_INET,
	},
};

static const struct xfrm_mode xfrm6_mode_map[XFRM_MODE_MAX] = {
	[XFRM_MODE_BEET] = {
		.encap = XFRM_MODE_BEET,
		.flags = XFRM_MODE_FLAG_TUNNEL,
		.family = AF_INET6,
	},
	[XFRM_MODE_ROUTEOPTIMIZATION] = {
		.encap = XFRM_MODE_ROUTEOPTIMIZATION,
		.family = AF_INET6,
	},
	[XFRM_MODE_TRANSPORT] = {
		.encap = XFRM_MODE_TRANSPORT,
		.family = AF_INET6,
	},
	[XFRM_MODE_TUNNEL] = {
		.encap = XFRM_MODE_TUNNEL,
		.flags = XFRM_MODE_FLAG_TUNNEL,
		.family = AF_INET6,
	},
};

static const struct xfrm_mode *xfrm_get_mode(unsigned int encap, int family)
{
	const struct xfrm_mode *mode;
452 453 454 455

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

F
Florian Westphal 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468
	switch (family) {
	case AF_INET:
		mode = &xfrm4_mode_map[encap];
		if (mode->family == family)
			return mode;
		break;
	case AF_INET6:
		mode = &xfrm6_mode_map[encap];
		if (mode->family == family)
			return mode;
		break;
	default:
		break;
469 470
	}

F
Florian Westphal 已提交
471
	return NULL;
472 473
}

474 475 476 477 478 479
void xfrm_state_free(struct xfrm_state *x)
{
	kmem_cache_free(xfrm_state_cache, x);
}
EXPORT_SYMBOL(xfrm_state_free);

480
static void ___xfrm_state_destroy(struct xfrm_state *x)
L
Linus Torvalds 已提交
481
{
482
	hrtimer_cancel(&x->mtimer);
483
	del_timer_sync(&x->rtimer);
484
	kfree(x->aead);
J
Jesper Juhl 已提交
485 486 487 488
	kfree(x->aalg);
	kfree(x->ealg);
	kfree(x->calg);
	kfree(x->encap);
489
	kfree(x->coaddr);
490 491
	kfree(x->replay_esn);
	kfree(x->preplay_esn);
492 493
	if (x->type_offload)
		xfrm_put_type_offload(x->type_offload);
L
Linus Torvalds 已提交
494 495 496 497
	if (x->type) {
		x->type->destructor(x);
		xfrm_put_type(x->type);
	}
498
	xfrm_dev_state_free(x);
499
	security_xfrm_state_free(x);
500
	xfrm_state_free(x);
L
Linus Torvalds 已提交
501 502
}

503
static void xfrm_state_gc_task(struct work_struct *work)
L
Linus Torvalds 已提交
504
{
H
Herbert Xu 已提交
505
	struct xfrm_state *x;
506
	struct hlist_node *tmp;
H
Herbert Xu 已提交
507
	struct hlist_head gc_list;
L
Linus Torvalds 已提交
508 509

	spin_lock_bh(&xfrm_state_gc_lock);
510
	hlist_move_list(&xfrm_state_gc_list, &gc_list);
L
Linus Torvalds 已提交
511 512
	spin_unlock_bh(&xfrm_state_gc_lock);

513 514
	synchronize_rcu();

515
	hlist_for_each_entry_safe(x, tmp, &gc_list, gclist)
516
		___xfrm_state_destroy(x);
L
Linus Torvalds 已提交
517 518
}

519
static enum hrtimer_restart xfrm_timer_handler(struct hrtimer *me)
L
Linus Torvalds 已提交
520
{
521 522
	struct xfrm_state *x = container_of(me, struct xfrm_state, mtimer);
	enum hrtimer_restart ret = HRTIMER_NORESTART;
523 524
	time64_t now = ktime_get_real_seconds();
	time64_t next = TIME64_MAX;
L
Linus Torvalds 已提交
525
	int warn = 0;
J
Joy Latten 已提交
526
	int err = 0;
L
Linus Torvalds 已提交
527 528 529 530 531 532 533 534 535

	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;
536 537 538 539
		if (tmo <= 0) {
			if (x->xflags & XFRM_SOFT_EXPIRE) {
				/* enter hard expire without soft expire first?!
				 * setting a new date could trigger this.
A
Alexander Alemayhu 已提交
540
				 * workaround: fix x->curflt.add_time by below:
541 542 543 544 545 546
				 */
				x->curlft.add_time = now - x->saved_tmo - 1;
				tmo = x->lft.hard_add_expires_seconds - x->saved_tmo;
			} else
				goto expired;
		}
L
Linus Torvalds 已提交
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
		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;
563
		if (tmo <= 0) {
L
Linus Torvalds 已提交
564
			warn = 1;
565 566
			x->xflags &= ~XFRM_SOFT_EXPIRE;
		} else if (tmo < next) {
L
Linus Torvalds 已提交
567
			next = tmo;
568 569 570
			x->xflags |= XFRM_SOFT_EXPIRE;
			x->saved_tmo = tmo;
		}
L
Linus Torvalds 已提交
571 572 573 574 575 576 577 578 579 580
	}
	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;
	}

581
	x->km.dying = warn;
L
Linus Torvalds 已提交
582
	if (warn)
583
		km_state_expired(x, 0, 0);
L
Linus Torvalds 已提交
584
resched:
585
	if (next != TIME64_MAX) {
586 587
		hrtimer_forward_now(&x->mtimer, ktime_set(next, 0));
		ret = HRTIMER_RESTART;
588
	}
589

L
Linus Torvalds 已提交
590 591 592
	goto out;

expired:
593
	if (x->km.state == XFRM_STATE_ACQ && x->id.spi == 0)
L
Linus Torvalds 已提交
594
		x->km.state = XFRM_STATE_EXPIRED;
J
Joy Latten 已提交
595 596

	err = __xfrm_state_delete(x);
597
	if (!err)
598
		km_state_expired(x, 1, 0);
L
Linus Torvalds 已提交
599

600
	xfrm_audit_state_delete(x, err ? 0 : 1, true);
J
Joy Latten 已提交
601

L
Linus Torvalds 已提交
602 603
out:
	spin_unlock(&x->lock);
604
	return ret;
L
Linus Torvalds 已提交
605 606
}

607
static void xfrm_replay_timer_handler(struct timer_list *t);
608

609
struct xfrm_state *xfrm_state_alloc(struct net *net)
L
Linus Torvalds 已提交
610 611 612
{
	struct xfrm_state *x;

613
	x = kmem_cache_alloc(xfrm_state_cache, GFP_ATOMIC | __GFP_ZERO);
L
Linus Torvalds 已提交
614 615

	if (x) {
616
		write_pnet(&x->xs_net, net);
617
		refcount_set(&x->refcnt, 1);
L
Linus Torvalds 已提交
618
		atomic_set(&x->tunnel_users, 0);
H
Herbert Xu 已提交
619
		INIT_LIST_HEAD(&x->km.all);
620 621 622
		INIT_HLIST_NODE(&x->bydst);
		INIT_HLIST_NODE(&x->bysrc);
		INIT_HLIST_NODE(&x->byspi);
623 624
		hrtimer_init(&x->mtimer, CLOCK_BOOTTIME, HRTIMER_MODE_ABS_SOFT);
		x->mtimer.function = xfrm_timer_handler;
625
		timer_setup(&x->rtimer, xfrm_replay_timer_handler, 0);
626
		x->curlft.add_time = ktime_get_real_seconds();
L
Linus Torvalds 已提交
627 628 629 630
		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;
631 632
		x->replay_maxage = 0;
		x->replay_maxdiff = 0;
L
Linus Torvalds 已提交
633 634 635 636 637 638
		spin_lock_init(&x->lock);
	}
	return x;
}
EXPORT_SYMBOL(xfrm_state_alloc);

639
void __xfrm_state_destroy(struct xfrm_state *x, bool sync)
L
Linus Torvalds 已提交
640
{
641
	WARN_ON(x->km.state != XFRM_STATE_DEAD);
L
Linus Torvalds 已提交
642

643 644 645 646 647 648 649 650 651
	if (sync) {
		synchronize_rcu();
		___xfrm_state_destroy(x);
	} else {
		spin_lock_bh(&xfrm_state_gc_lock);
		hlist_add_head(&x->gclist, &xfrm_state_gc_list);
		spin_unlock_bh(&xfrm_state_gc_lock);
		schedule_work(&xfrm_state_gc_work);
	}
L
Linus Torvalds 已提交
652 653 654
}
EXPORT_SYMBOL(__xfrm_state_destroy);

655
int __xfrm_state_delete(struct xfrm_state *x)
L
Linus Torvalds 已提交
656
{
657
	struct net *net = xs_net(x);
658 659
	int err = -ESRCH;

L
Linus Torvalds 已提交
660 661
	if (x->km.state != XFRM_STATE_DEAD) {
		x->km.state = XFRM_STATE_DEAD;
F
Fan Du 已提交
662
		spin_lock(&net->xfrm.xfrm_state_lock);
H
Herbert Xu 已提交
663
		list_del(&x->km.all);
664 665
		hlist_del_rcu(&x->bydst);
		hlist_del_rcu(&x->bysrc);
666
		if (x->id.spi)
667
			hlist_del_rcu(&x->byspi);
668
		net->xfrm.state_num--;
F
Fan Du 已提交
669
		spin_unlock(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
670

671 672
		xfrm_dev_state_delete(x);

L
Linus Torvalds 已提交
673 674 675 676
		/* 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.
		 */
677
		xfrm_state_put(x);
678
		err = 0;
L
Linus Torvalds 已提交
679
	}
680 681

	return err;
L
Linus Torvalds 已提交
682
}
683
EXPORT_SYMBOL(__xfrm_state_delete);
L
Linus Torvalds 已提交
684

685
int xfrm_state_delete(struct xfrm_state *x)
L
Linus Torvalds 已提交
686
{
687 688
	int err;

L
Linus Torvalds 已提交
689
	spin_lock_bh(&x->lock);
690
	err = __xfrm_state_delete(x);
L
Linus Torvalds 已提交
691
	spin_unlock_bh(&x->lock);
692 693

	return err;
L
Linus Torvalds 已提交
694 695 696
}
EXPORT_SYMBOL(xfrm_state_delete);

697 698
#ifdef CONFIG_SECURITY_NETWORK_XFRM
static inline int
699
xfrm_state_flush_secctx_check(struct net *net, u8 proto, bool task_valid)
L
Linus Torvalds 已提交
700
{
701 702
	int i, err = 0;

A
Alexey Dobriyan 已提交
703
	for (i = 0; i <= net->xfrm.state_hmask; i++) {
704 705
		struct xfrm_state *x;

706
		hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
707 708
			if (xfrm_id_proto_match(x->id.proto, proto) &&
			   (err = security_xfrm_state_delete(x)) != 0) {
709
				xfrm_audit_state_delete(x, 0, task_valid);
710 711 712 713 714 715 716
				return err;
			}
		}
	}

	return err;
}
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739

static inline int
xfrm_dev_state_flush_secctx_check(struct net *net, struct net_device *dev, bool task_valid)
{
	int i, err = 0;

	for (i = 0; i <= net->xfrm.state_hmask; i++) {
		struct xfrm_state *x;
		struct xfrm_state_offload *xso;

		hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
			xso = &x->xso;

			if (xso->dev == dev &&
			   (err = security_xfrm_state_delete(x)) != 0) {
				xfrm_audit_state_delete(x, 0, task_valid);
				return err;
			}
		}
	}

	return err;
}
740 741
#else
static inline int
742
xfrm_state_flush_secctx_check(struct net *net, u8 proto, bool task_valid)
743 744 745
{
	return 0;
}
746 747 748 749 750 751

static inline int
xfrm_dev_state_flush_secctx_check(struct net *net, struct net_device *dev, bool task_valid)
{
	return 0;
}
752 753
#endif

754
int xfrm_state_flush(struct net *net, u8 proto, bool task_valid, bool sync)
755
{
756
	int i, err = 0, cnt = 0;
L
Linus Torvalds 已提交
757

F
Fan Du 已提交
758
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
759
	err = xfrm_state_flush_secctx_check(net, proto, task_valid);
760 761 762
	if (err)
		goto out;

763
	err = -ESRCH;
A
Alexey Dobriyan 已提交
764
	for (i = 0; i <= net->xfrm.state_hmask; i++) {
765
		struct xfrm_state *x;
L
Linus Torvalds 已提交
766
restart:
767
		hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
L
Linus Torvalds 已提交
768
			if (!xfrm_state_kern(x) &&
769
			    xfrm_id_proto_match(x->id.proto, proto)) {
L
Linus Torvalds 已提交
770
				xfrm_state_hold(x);
F
Fan Du 已提交
771
				spin_unlock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
772

J
Joy Latten 已提交
773
				err = xfrm_state_delete(x);
J
Joy Latten 已提交
774
				xfrm_audit_state_delete(x, err ? 0 : 1,
775
							task_valid);
776 777 778 779
				if (sync)
					xfrm_state_put_sync(x);
				else
					xfrm_state_put(x);
780 781
				if (!err)
					cnt++;
L
Linus Torvalds 已提交
782

F
Fan Du 已提交
783
				spin_lock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
784 785 786 787
				goto restart;
			}
		}
	}
788 789
out:
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
790
	if (cnt)
791
		err = 0;
792

793
	return err;
L
Linus Torvalds 已提交
794 795 796
}
EXPORT_SYMBOL(xfrm_state_flush);

797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838
int xfrm_dev_state_flush(struct net *net, struct net_device *dev, bool task_valid)
{
	int i, err = 0, cnt = 0;

	spin_lock_bh(&net->xfrm.xfrm_state_lock);
	err = xfrm_dev_state_flush_secctx_check(net, dev, task_valid);
	if (err)
		goto out;

	err = -ESRCH;
	for (i = 0; i <= net->xfrm.state_hmask; i++) {
		struct xfrm_state *x;
		struct xfrm_state_offload *xso;
restart:
		hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
			xso = &x->xso;

			if (!xfrm_state_kern(x) && xso->dev == dev) {
				xfrm_state_hold(x);
				spin_unlock_bh(&net->xfrm.xfrm_state_lock);

				err = xfrm_state_delete(x);
				xfrm_audit_state_delete(x, err ? 0 : 1,
							task_valid);
				xfrm_state_put(x);
				if (!err)
					cnt++;

				spin_lock_bh(&net->xfrm.xfrm_state_lock);
				goto restart;
			}
		}
	}
	if (cnt)
		err = 0;

out:
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
	return err;
}
EXPORT_SYMBOL(xfrm_dev_state_flush);

839
void xfrm_sad_getinfo(struct net *net, struct xfrmk_sadinfo *si)
J
Jamal Hadi Salim 已提交
840
{
F
Fan Du 已提交
841
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
842
	si->sadcnt = net->xfrm.state_num;
843
	si->sadhcnt = net->xfrm.state_hmask + 1;
J
Jamal Hadi Salim 已提交
844
	si->sadhmcnt = xfrm_state_hashmax;
F
Fan Du 已提交
845
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
J
Jamal Hadi Salim 已提交
846 847 848
}
EXPORT_SYMBOL(xfrm_sad_getinfo);

849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
static void
__xfrm4_init_tempsel(struct xfrm_selector *sel, const struct flowi *fl)
{
	const struct flowi4 *fl4 = &fl->u.ip4;

	sel->daddr.a4 = fl4->daddr;
	sel->saddr.a4 = fl4->saddr;
	sel->dport = xfrm_flowi_dport(fl, &fl4->uli);
	sel->dport_mask = htons(0xffff);
	sel->sport = xfrm_flowi_sport(fl, &fl4->uli);
	sel->sport_mask = htons(0xffff);
	sel->family = AF_INET;
	sel->prefixlen_d = 32;
	sel->prefixlen_s = 32;
	sel->proto = fl4->flowi4_proto;
	sel->ifindex = fl4->flowi4_oif;
}

static void
__xfrm6_init_tempsel(struct xfrm_selector *sel, const struct flowi *fl)
{
	const struct flowi6 *fl6 = &fl->u.ip6;

	/* Initialize temporary selector matching only to current session. */
	*(struct in6_addr *)&sel->daddr = fl6->daddr;
	*(struct in6_addr *)&sel->saddr = fl6->saddr;
	sel->dport = xfrm_flowi_dport(fl, &fl6->uli);
	sel->dport_mask = htons(0xffff);
	sel->sport = xfrm_flowi_sport(fl, &fl6->uli);
	sel->sport_mask = htons(0xffff);
	sel->family = AF_INET6;
	sel->prefixlen_d = 128;
	sel->prefixlen_s = 128;
	sel->proto = fl6->flowi6_proto;
	sel->ifindex = fl6->flowi6_oif;
}

886
static void
887
xfrm_init_tempstate(struct xfrm_state *x, const struct flowi *fl,
888
		    const struct xfrm_tmpl *tmpl,
889
		    const xfrm_address_t *daddr, const xfrm_address_t *saddr,
890
		    unsigned short family)
L
Linus Torvalds 已提交
891
{
892 893 894 895 896 897 898 899 900
	switch (family) {
	case AF_INET:
		__xfrm4_init_tempsel(&x->sel, fl);
		break;
	case AF_INET6:
		__xfrm6_init_tempsel(&x->sel, fl);
		break;
	}

901
	x->id = tmpl->id;
902

903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
	switch (tmpl->encap_family) {
	case AF_INET:
		if (x->id.daddr.a4 == 0)
			x->id.daddr.a4 = daddr->a4;
		x->props.saddr = tmpl->saddr;
		if (x->props.saddr.a4 == 0)
			x->props.saddr.a4 = saddr->a4;
		break;
	case AF_INET6:
		if (ipv6_addr_any((struct in6_addr *)&x->id.daddr))
			memcpy(&x->id.daddr, daddr, sizeof(x->sel.daddr));
		memcpy(&x->props.saddr, &tmpl->saddr, sizeof(x->props.saddr));
		if (ipv6_addr_any((struct in6_addr *)&x->props.saddr))
			memcpy(&x->props.saddr, saddr, sizeof(x->props.saddr));
		break;
	}
919

920 921 922
	x->props.mode = tmpl->mode;
	x->props.reqid = tmpl->reqid;
	x->props.family = tmpl->encap_family;
L
Linus Torvalds 已提交
923 924
}

925 926 927 928
static struct xfrm_state *__xfrm_state_lookup(struct net *net, u32 mark,
					      const xfrm_address_t *daddr,
					      __be32 spi, u8 proto,
					      unsigned short family)
929
{
930
	unsigned int h = xfrm_spi_hash(net, daddr, spi, proto, family);
931 932
	struct xfrm_state *x;

933
	hlist_for_each_entry_rcu(x, net->xfrm.state_byspi + h, byspi) {
934 935
		if (x->props.family != family ||
		    x->id.spi       != spi ||
936
		    x->id.proto     != proto ||
937
		    !xfrm_addr_equal(&x->id.daddr, daddr, family))
938 939
			continue;

J
Jamal Hadi Salim 已提交
940 941
		if ((mark & x->mark.m) != x->mark.v)
			continue;
942 943
		if (!xfrm_state_hold_rcu(x))
			continue;
944 945 946 947 948 949
		return x;
	}

	return NULL;
}

950 951 952 953
static struct xfrm_state *__xfrm_state_lookup_byaddr(struct net *net, u32 mark,
						     const xfrm_address_t *daddr,
						     const xfrm_address_t *saddr,
						     u8 proto, unsigned short family)
954
{
955
	unsigned int h = xfrm_src_hash(net, daddr, saddr, family);
956 957
	struct xfrm_state *x;

958
	hlist_for_each_entry_rcu(x, net->xfrm.state_bysrc + h, bysrc) {
959
		if (x->props.family != family ||
960
		    x->id.proto     != proto ||
961 962
		    !xfrm_addr_equal(&x->id.daddr, daddr, family) ||
		    !xfrm_addr_equal(&x->props.saddr, saddr, family))
963 964
			continue;

J
Jamal Hadi Salim 已提交
965 966
		if ((mark & x->mark.m) != x->mark.v)
			continue;
967 968
		if (!xfrm_state_hold_rcu(x))
			continue;
969 970 971 972 973 974 975 976 977
		return x;
	}

	return NULL;
}

static inline struct xfrm_state *
__xfrm_state_locate(struct xfrm_state *x, int use_spi, int family)
{
978
	struct net *net = xs_net(x);
979
	u32 mark = x->mark.v & x->mark.m;
980

981
	if (use_spi)
982 983
		return __xfrm_state_lookup(net, mark, &x->id.daddr,
					   x->id.spi, x->id.proto, family);
984
	else
985 986
		return __xfrm_state_lookup_byaddr(net, mark,
						  &x->id.daddr,
987 988 989 990
						  &x->props.saddr,
						  x->id.proto, family);
}

991
static void xfrm_hash_grow_check(struct net *net, int have_hash_collision)
992 993
{
	if (have_hash_collision &&
994 995 996
	    (net->xfrm.state_hmask + 1) < xfrm_state_hashmax &&
	    net->xfrm.state_num > net->xfrm.state_hmask)
		schedule_work(&net->xfrm.state_hash_work);
997 998
}

999
static void xfrm_state_look_at(struct xfrm_policy *pol, struct xfrm_state *x,
1000
			       const struct flowi *fl, unsigned short family,
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
			       struct xfrm_state **best, int *acq_in_progress,
			       int *error)
{
	/* 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) {
		if ((x->sel.family &&
		     !xfrm_selector_match(&x->sel, fl, x->sel.family)) ||
		    !security_xfrm_state_pol_flow_match(x, pol, fl))
			return;

		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) {
		*acq_in_progress = 1;
	} else if (x->km.state == XFRM_STATE_ERROR ||
		   x->km.state == XFRM_STATE_EXPIRED) {
		if (xfrm_selector_match(&x->sel, fl, x->sel.family) &&
		    security_xfrm_state_pol_flow_match(x, pol, fl))
			*error = -ESRCH;
	}
}

L
Linus Torvalds 已提交
1036
struct xfrm_state *
1037
xfrm_state_find(const xfrm_address_t *daddr, const xfrm_address_t *saddr,
1038
		const struct flowi *fl, struct xfrm_tmpl *tmpl,
L
Linus Torvalds 已提交
1039
		struct xfrm_policy *pol, int *err,
1040
		unsigned short family, u32 if_id)
L
Linus Torvalds 已提交
1041
{
1042
	static xfrm_address_t saddr_wildcard = { };
1043
	struct net *net = xp_net(pol);
1044
	unsigned int h, h_wildcard;
1045
	struct xfrm_state *x, *x0, *to_put;
L
Linus Torvalds 已提交
1046 1047 1048
	int acquire_in_progress = 0;
	int error = 0;
	struct xfrm_state *best = NULL;
1049
	u32 mark = pol->mark.v & pol->mark.m;
1050
	unsigned short encap_family = tmpl->encap_family;
1051
	unsigned int sequence;
1052
	struct km_event c;
1053

1054 1055
	to_put = NULL;

1056 1057
	sequence = read_seqcount_begin(&xfrm_state_hash_generation);

1058
	rcu_read_lock();
1059
	h = xfrm_dst_hash(net, daddr, saddr, tmpl->reqid, encap_family);
1060
	hlist_for_each_entry_rcu(x, net->xfrm.state_bydst + h, bydst) {
1061
		if (x->props.family == encap_family &&
L
Linus Torvalds 已提交
1062
		    x->props.reqid == tmpl->reqid &&
J
Jamal Hadi Salim 已提交
1063
		    (mark & x->mark.m) == x->mark.v &&
1064
		    x->if_id == if_id &&
1065
		    !(x->props.flags & XFRM_STATE_WILDRECV) &&
1066
		    xfrm_state_addr_check(x, daddr, saddr, encap_family) &&
L
Linus Torvalds 已提交
1067 1068
		    tmpl->mode == x->props.mode &&
		    tmpl->id.proto == x->id.proto &&
1069
		    (tmpl->id.spi == x->id.spi || !tmpl->id.spi))
1070
			xfrm_state_look_at(pol, x, fl, encap_family,
1071 1072
					   &best, &acquire_in_progress, &error);
	}
1073
	if (best || acquire_in_progress)
1074 1075
		goto found;

1076
	h_wildcard = xfrm_dst_hash(net, daddr, &saddr_wildcard, tmpl->reqid, encap_family);
1077
	hlist_for_each_entry_rcu(x, net->xfrm.state_bydst + h_wildcard, bydst) {
1078
		if (x->props.family == encap_family &&
1079
		    x->props.reqid == tmpl->reqid &&
J
Jamal Hadi Salim 已提交
1080
		    (mark & x->mark.m) == x->mark.v &&
1081
		    x->if_id == if_id &&
1082
		    !(x->props.flags & XFRM_STATE_WILDRECV) &&
1083
		    xfrm_addr_equal(&x->id.daddr, daddr, encap_family) &&
1084 1085 1086
		    tmpl->mode == x->props.mode &&
		    tmpl->id.proto == x->id.proto &&
		    (tmpl->id.spi == x->id.spi || !tmpl->id.spi))
1087
			xfrm_state_look_at(pol, x, fl, encap_family,
1088
					   &best, &acquire_in_progress, &error);
L
Linus Torvalds 已提交
1089 1090
	}

1091
found:
L
Linus Torvalds 已提交
1092 1093
	x = best;
	if (!x && !error && !acquire_in_progress) {
1094
		if (tmpl->id.spi &&
1095
		    (x0 = __xfrm_state_lookup(net, mark, daddr, tmpl->id.spi,
1096
					      tmpl->id.proto, encap_family)) != NULL) {
1097
			to_put = x0;
L
Linus Torvalds 已提交
1098 1099 1100
			error = -EEXIST;
			goto out;
		}
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111

		c.net = net;
		/* If the KMs have no listeners (yet...), avoid allocating an SA
		 * for each and every packet - garbage collection might not
		 * handle the flood.
		 */
		if (!km_is_alive(&c)) {
			error = -ESRCH;
			goto out;
		}

1112
		x = xfrm_state_alloc(net);
L
Linus Torvalds 已提交
1113 1114 1115 1116
		if (x == NULL) {
			error = -ENOMEM;
			goto out;
		}
1117
		/* Initialize temporary state matching only
L
Linus Torvalds 已提交
1118
		 * to current session. */
1119
		xfrm_init_tempstate(x, fl, tmpl, daddr, saddr, family);
1120
		memcpy(&x->mark, &pol->mark, sizeof(x->mark));
1121
		x->if_id = if_id;
L
Linus Torvalds 已提交
1122

1123
		error = security_xfrm_state_alloc_acquire(x, pol->security, fl->flowi_secid);
1124 1125
		if (error) {
			x->km.state = XFRM_STATE_DEAD;
1126
			to_put = x;
1127 1128 1129 1130
			x = NULL;
			goto out;
		}

L
Linus Torvalds 已提交
1131
		if (km_query(x, tmpl, pol) == 0) {
1132
			spin_lock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
1133
			x->km.state = XFRM_STATE_ACQ;
1134
			list_add(&x->km.all, &net->xfrm.state_all);
1135
			hlist_add_head_rcu(&x->bydst, net->xfrm.state_bydst + h);
1136
			h = xfrm_src_hash(net, daddr, saddr, encap_family);
1137
			hlist_add_head_rcu(&x->bysrc, net->xfrm.state_bysrc + h);
L
Linus Torvalds 已提交
1138
			if (x->id.spi) {
1139
				h = xfrm_spi_hash(net, &x->id.daddr, x->id.spi, x->id.proto, encap_family);
1140
				hlist_add_head_rcu(&x->byspi, net->xfrm.state_byspi + h);
L
Linus Torvalds 已提交
1141
			}
A
Alexey Dobriyan 已提交
1142
			x->lft.hard_add_expires_seconds = net->xfrm.sysctl_acq_expires;
1143 1144 1145
			hrtimer_start(&x->mtimer,
				      ktime_set(net->xfrm.sysctl_acq_expires, 0),
				      HRTIMER_MODE_REL_SOFT);
1146 1147
			net->xfrm.state_num++;
			xfrm_hash_grow_check(net, x->bydst.next != NULL);
1148
			spin_unlock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
1149 1150
		} else {
			x->km.state = XFRM_STATE_DEAD;
1151
			to_put = x;
L
Linus Torvalds 已提交
1152 1153 1154 1155 1156
			x = NULL;
			error = -ESRCH;
		}
	}
out:
1157 1158 1159 1160 1161 1162
	if (x) {
		if (!xfrm_state_hold_rcu(x)) {
			*err = -EAGAIN;
			x = NULL;
		}
	} else {
L
Linus Torvalds 已提交
1163
		*err = acquire_in_progress ? -EAGAIN : error;
1164
	}
1165
	rcu_read_unlock();
1166 1167
	if (to_put)
		xfrm_state_put(to_put);
1168 1169 1170 1171 1172 1173 1174 1175 1176

	if (read_seqcount_retry(&xfrm_state_hash_generation, sequence)) {
		*err = -EAGAIN;
		if (x) {
			xfrm_state_put(x);
			x = NULL;
		}
	}

L
Linus Torvalds 已提交
1177 1178 1179
	return x;
}

1180
struct xfrm_state *
1181
xfrm_stateonly_find(struct net *net, u32 mark, u32 if_id,
1182
		    xfrm_address_t *daddr, xfrm_address_t *saddr,
1183 1184
		    unsigned short family, u8 mode, u8 proto, u32 reqid)
{
1185
	unsigned int h;
1186 1187
	struct xfrm_state *rx = NULL, *x = NULL;

1188
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1189
	h = xfrm_dst_hash(net, daddr, saddr, reqid, family);
1190
	hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1191 1192
		if (x->props.family == family &&
		    x->props.reqid == reqid &&
J
Jamal Hadi Salim 已提交
1193
		    (mark & x->mark.m) == x->mark.v &&
1194
		    x->if_id == if_id &&
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
		    !(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);
1207
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1208 1209 1210 1211 1212 1213


	return rx;
}
EXPORT_SYMBOL(xfrm_stateonly_find);

1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
struct xfrm_state *xfrm_state_lookup_byspi(struct net *net, __be32 spi,
					      unsigned short family)
{
	struct xfrm_state *x;
	struct xfrm_state_walk *w;

	spin_lock_bh(&net->xfrm.xfrm_state_lock);
	list_for_each_entry(w, &net->xfrm.state_all, all) {
		x = container_of(w, struct xfrm_state, km);
		if (x->props.family != family ||
			x->id.spi != spi)
			continue;

		xfrm_state_hold(x);
1228
		spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1229 1230 1231 1232 1233 1234 1235
		return x;
	}
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
	return NULL;
}
EXPORT_SYMBOL(xfrm_state_lookup_byspi);

L
Linus Torvalds 已提交
1236 1237
static void __xfrm_state_insert(struct xfrm_state *x)
{
1238
	struct net *net = xs_net(x);
1239
	unsigned int h;
L
Linus Torvalds 已提交
1240

1241
	list_add(&x->km.all, &net->xfrm.state_all);
1242

1243
	h = xfrm_dst_hash(net, &x->id.daddr, &x->props.saddr,
1244
			  x->props.reqid, x->props.family);
1245
	hlist_add_head_rcu(&x->bydst, net->xfrm.state_bydst + h);
L
Linus Torvalds 已提交
1246

1247
	h = xfrm_src_hash(net, &x->id.daddr, &x->props.saddr, x->props.family);
1248
	hlist_add_head_rcu(&x->bysrc, net->xfrm.state_bysrc + h);
L
Linus Torvalds 已提交
1249

1250
	if (x->id.spi) {
1251
		h = xfrm_spi_hash(net, &x->id.daddr, x->id.spi, x->id.proto,
1252 1253
				  x->props.family);

1254
		hlist_add_head_rcu(&x->byspi, net->xfrm.state_byspi + h);
1255 1256
	}

1257
	hrtimer_start(&x->mtimer, ktime_set(1, 0), HRTIMER_MODE_REL_SOFT);
1258 1259
	if (x->replay_maxage)
		mod_timer(&x->rtimer, jiffies + x->replay_maxage);
1260

1261
	net->xfrm.state_num++;
1262

1263
	xfrm_hash_grow_check(net, x->bydst.next != NULL);
L
Linus Torvalds 已提交
1264 1265
}

F
Fan Du 已提交
1266
/* net->xfrm.xfrm_state_lock is held */
1267 1268
static void __xfrm_state_bump_genids(struct xfrm_state *xnew)
{
1269
	struct net *net = xs_net(xnew);
1270 1271 1272 1273
	unsigned short family = xnew->props.family;
	u32 reqid = xnew->props.reqid;
	struct xfrm_state *x;
	unsigned int h;
J
Jamal Hadi Salim 已提交
1274
	u32 mark = xnew->mark.v & xnew->mark.m;
1275
	u32 if_id = xnew->if_id;
1276

1277
	h = xfrm_dst_hash(net, &xnew->id.daddr, &xnew->props.saddr, reqid, family);
1278
	hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1279 1280
		if (x->props.family	== family &&
		    x->props.reqid	== reqid &&
1281
		    x->if_id		== if_id &&
J
Jamal Hadi Salim 已提交
1282
		    (mark & x->mark.m) == x->mark.v &&
1283 1284
		    xfrm_addr_equal(&x->id.daddr, &xnew->id.daddr, family) &&
		    xfrm_addr_equal(&x->props.saddr, &xnew->props.saddr, family))
H
Herbert Xu 已提交
1285
			x->genid++;
1286 1287 1288
	}
}

L
Linus Torvalds 已提交
1289 1290
void xfrm_state_insert(struct xfrm_state *x)
{
F
Fan Du 已提交
1291 1292 1293
	struct net *net = xs_net(x);

	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1294
	__xfrm_state_bump_genids(x);
L
Linus Torvalds 已提交
1295
	__xfrm_state_insert(x);
F
Fan Du 已提交
1296
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
1297 1298 1299
}
EXPORT_SYMBOL(xfrm_state_insert);

F
Fan Du 已提交
1300
/* net->xfrm.xfrm_state_lock is held */
1301 1302
static struct xfrm_state *__find_acq_core(struct net *net,
					  const struct xfrm_mark *m,
1303
					  unsigned short family, u8 mode,
1304
					  u32 reqid, u32 if_id, u8 proto,
1305
					  const xfrm_address_t *daddr,
1306 1307
					  const xfrm_address_t *saddr,
					  int create)
1308
{
1309
	unsigned int h = xfrm_dst_hash(net, daddr, saddr, reqid, family);
1310
	struct xfrm_state *x;
J
Jamal Hadi Salim 已提交
1311
	u32 mark = m->v & m->m;
1312

1313
	hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1314 1315 1316 1317
		if (x->props.reqid  != reqid ||
		    x->props.mode   != mode ||
		    x->props.family != family ||
		    x->km.state     != XFRM_STATE_ACQ ||
1318
		    x->id.spi       != 0 ||
1319
		    x->id.proto	    != proto ||
J
Jamal Hadi Salim 已提交
1320
		    (mark & x->mark.m) != x->mark.v ||
1321 1322
		    !xfrm_addr_equal(&x->id.daddr, daddr, family) ||
		    !xfrm_addr_equal(&x->props.saddr, saddr, family))
1323 1324 1325 1326 1327 1328 1329 1330 1331
			continue;

		xfrm_state_hold(x);
		return x;
	}

	if (!create)
		return NULL;

1332
	x = xfrm_state_alloc(net);
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
	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:
J
Jiri Benc 已提交
1345 1346
			x->sel.daddr.in6 = daddr->in6;
			x->sel.saddr.in6 = saddr->in6;
1347 1348
			x->sel.prefixlen_d = 128;
			x->sel.prefixlen_s = 128;
J
Jiri Benc 已提交
1349 1350
			x->props.saddr.in6 = saddr->in6;
			x->id.daddr.in6 = daddr->in6;
1351
			break;
1352
		}
1353 1354 1355 1356 1357 1358

		x->km.state = XFRM_STATE_ACQ;
		x->id.proto = proto;
		x->props.family = family;
		x->props.mode = mode;
		x->props.reqid = reqid;
1359
		x->if_id = if_id;
1360 1361
		x->mark.v = m->v;
		x->mark.m = m->m;
A
Alexey Dobriyan 已提交
1362
		x->lft.hard_add_expires_seconds = net->xfrm.sysctl_acq_expires;
1363
		xfrm_state_hold(x);
1364 1365 1366
		hrtimer_start(&x->mtimer,
			      ktime_set(net->xfrm.sysctl_acq_expires, 0),
			      HRTIMER_MODE_REL_SOFT);
1367
		list_add(&x->km.all, &net->xfrm.state_all);
1368
		hlist_add_head_rcu(&x->bydst, net->xfrm.state_bydst + h);
1369
		h = xfrm_src_hash(net, daddr, saddr, family);
1370
		hlist_add_head_rcu(&x->bysrc, net->xfrm.state_bysrc + h);
1371

1372
		net->xfrm.state_num++;
1373

1374
		xfrm_hash_grow_check(net, x->bydst.next != NULL);
1375 1376 1377 1378 1379
	}

	return x;
}

1380
static struct xfrm_state *__xfrm_find_acq_byseq(struct net *net, u32 mark, u32 seq);
L
Linus Torvalds 已提交
1381 1382 1383

int xfrm_state_add(struct xfrm_state *x)
{
1384
	struct net *net = xs_net(x);
1385
	struct xfrm_state *x1, *to_put;
L
Linus Torvalds 已提交
1386 1387
	int family;
	int err;
1388
	u32 mark = x->mark.v & x->mark.m;
1389
	int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
L
Linus Torvalds 已提交
1390 1391 1392

	family = x->props.family;

1393 1394
	to_put = NULL;

F
Fan Du 已提交
1395
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
1396

1397
	x1 = __xfrm_state_locate(x, use_spi, family);
L
Linus Torvalds 已提交
1398
	if (x1) {
1399
		to_put = x1;
L
Linus Torvalds 已提交
1400 1401 1402 1403 1404
		x1 = NULL;
		err = -EEXIST;
		goto out;
	}

1405
	if (use_spi && x->km.seq) {
1406
		x1 = __xfrm_find_acq_byseq(net, mark, x->km.seq);
1407
		if (x1 && ((x1->id.proto != x->id.proto) ||
1408
		    !xfrm_addr_equal(&x1->id.daddr, &x->id.daddr, family))) {
1409
			to_put = x1;
L
Linus Torvalds 已提交
1410 1411 1412 1413
			x1 = NULL;
		}
	}

1414
	if (use_spi && !x1)
1415
		x1 = __find_acq_core(net, &x->mark, family, x->props.mode,
1416
				     x->props.reqid, x->if_id, x->id.proto,
1417
				     &x->id.daddr, &x->props.saddr, 0);
L
Linus Torvalds 已提交
1418

1419
	__xfrm_state_bump_genids(x);
L
Linus Torvalds 已提交
1420 1421 1422 1423
	__xfrm_state_insert(x);
	err = 0;

out:
F
Fan Du 已提交
1424
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
1425 1426 1427 1428 1429 1430

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

1431 1432 1433
	if (to_put)
		xfrm_state_put(to_put);

L
Linus Torvalds 已提交
1434 1435 1436 1437
	return err;
}
EXPORT_SYMBOL(xfrm_state_add);

1438
#ifdef CONFIG_XFRM_MIGRATE
1439 1440
static struct xfrm_state *xfrm_state_clone(struct xfrm_state *orig,
					   struct xfrm_encap_tmpl *encap)
1441
{
1442 1443
	struct net *net = xs_net(orig);
	struct xfrm_state *x = xfrm_state_alloc(net);
1444
	if (!x)
H
Herbert Xu 已提交
1445
		goto out;
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456

	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) {
1457
		x->aalg = xfrm_algo_auth_clone(orig->aalg);
1458 1459 1460 1461 1462
		if (!x->aalg)
			goto error;
	}
	x->props.aalgo = orig->props.aalgo;

1463 1464
	if (orig->aead) {
		x->aead = xfrm_algo_aead_clone(orig->aead);
1465
		x->geniv = orig->geniv;
1466 1467 1468
		if (!x->aead)
			goto error;
	}
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
	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;

1483 1484 1485 1486 1487 1488 1489 1490
	if (encap || orig->encap) {
		if (encap)
			x->encap = kmemdup(encap, sizeof(*x->encap),
					GFP_KERNEL);
		else
			x->encap = kmemdup(orig->encap, sizeof(*x->encap),
					GFP_KERNEL);

1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
		if (!x->encap)
			goto error;
	}

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

1502
	if (orig->replay_esn) {
1503
		if (xfrm_replay_clone(x, orig))
1504 1505 1506
			goto error;
	}

1507 1508
	memcpy(&x->mark, &orig->mark, sizeof(x->mark));

1509
	if (xfrm_init_state(x) < 0)
1510 1511 1512
		goto error;

	x->props.flags = orig->props.flags;
1513
	x->props.extra_flags = orig->props.extra_flags;
1514

1515
	x->if_id = orig->if_id;
1516 1517 1518
	x->tfcpad = orig->tfcpad;
	x->replay_maxdiff = orig->replay_maxdiff;
	x->replay_maxage = orig->replay_maxage;
1519 1520 1521
	x->curlft.add_time = orig->curlft.add_time;
	x->km.state = orig->km.state;
	x->km.seq = orig->km.seq;
1522 1523
	x->replay = orig->replay;
	x->preplay = orig->preplay;
1524 1525 1526 1527

	return x;

 error:
H
Herbert Xu 已提交
1528 1529
	xfrm_state_put(x);
out:
1530 1531 1532
	return NULL;
}

F
Fan Du 已提交
1533
struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *net)
1534 1535
{
	unsigned int h;
1536 1537 1538
	struct xfrm_state *x = NULL;

	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1539 1540

	if (m->reqid) {
F
Fan Du 已提交
1541
		h = xfrm_dst_hash(net, &m->old_daddr, &m->old_saddr,
1542
				  m->reqid, m->old_family);
F
Fan Du 已提交
1543
		hlist_for_each_entry(x, net->xfrm.state_bydst+h, bydst) {
1544 1545 1546 1547 1548
			if (x->props.mode != m->mode ||
			    x->id.proto != m->proto)
				continue;
			if (m->reqid && x->props.reqid != m->reqid)
				continue;
1549 1550 1551 1552
			if (!xfrm_addr_equal(&x->id.daddr, &m->old_daddr,
					     m->old_family) ||
			    !xfrm_addr_equal(&x->props.saddr, &m->old_saddr,
					     m->old_family))
1553 1554
				continue;
			xfrm_state_hold(x);
1555
			break;
1556 1557
		}
	} else {
F
Fan Du 已提交
1558
		h = xfrm_src_hash(net, &m->old_daddr, &m->old_saddr,
1559
				  m->old_family);
F
Fan Du 已提交
1560
		hlist_for_each_entry(x, net->xfrm.state_bysrc+h, bysrc) {
1561 1562 1563
			if (x->props.mode != m->mode ||
			    x->id.proto != m->proto)
				continue;
1564 1565 1566 1567
			if (!xfrm_addr_equal(&x->id.daddr, &m->old_daddr,
					     m->old_family) ||
			    !xfrm_addr_equal(&x->props.saddr, &m->old_saddr,
					     m->old_family))
1568 1569
				continue;
			xfrm_state_hold(x);
1570
			break;
1571 1572 1573
		}
	}

1574 1575 1576
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);

	return x;
1577 1578 1579
}
EXPORT_SYMBOL(xfrm_migrate_state_find);

1580
struct xfrm_state *xfrm_state_migrate(struct xfrm_state *x,
1581 1582
				      struct xfrm_migrate *m,
				      struct xfrm_encap_tmpl *encap)
1583 1584 1585
{
	struct xfrm_state *xc;

1586
	xc = xfrm_state_clone(x, encap);
1587 1588 1589 1590 1591 1592 1593
	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 */
1594
	if (xfrm_addr_equal(&x->id.daddr, &m->new_daddr, m->new_family)) {
1595 1596 1597 1598
		/* 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 {
1599
		if (xfrm_state_add(xc) < 0)
1600 1601 1602 1603 1604
			goto error;
	}

	return xc;
error:
T
Thomas Egerer 已提交
1605
	xfrm_state_put(xc);
1606 1607 1608 1609 1610
	return NULL;
}
EXPORT_SYMBOL(xfrm_state_migrate);
#endif

L
Linus Torvalds 已提交
1611 1612
int xfrm_state_update(struct xfrm_state *x)
{
1613
	struct xfrm_state *x1, *to_put;
L
Linus Torvalds 已提交
1614
	int err;
1615
	int use_spi = xfrm_id_proto_match(x->id.proto, IPSEC_PROTO_ANY);
F
Fan Du 已提交
1616
	struct net *net = xs_net(x);
L
Linus Torvalds 已提交
1617

1618 1619
	to_put = NULL;

F
Fan Du 已提交
1620
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1621
	x1 = __xfrm_state_locate(x, use_spi, x->props.family);
L
Linus Torvalds 已提交
1622 1623 1624 1625 1626 1627

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

	if (xfrm_state_kern(x1)) {
1628
		to_put = x1;
L
Linus Torvalds 已提交
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
		err = -EEXIST;
		goto out;
	}

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

out:
F
Fan Du 已提交
1640
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
1641

1642 1643 1644
	if (to_put)
		xfrm_state_put(to_put);

L
Linus Torvalds 已提交
1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656
	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)) {
1657 1658
		if (x->encap && x1->encap &&
		    x->encap->encap_type == x1->encap->encap_type)
L
Linus Torvalds 已提交
1659
			memcpy(x1->encap, x->encap, sizeof(*x1->encap));
1660 1661 1662
		else if (x->encap || x1->encap)
			goto fail;

1663 1664 1665 1666 1667
		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 已提交
1668 1669 1670
		memcpy(&x1->lft, &x->lft, sizeof(x1->lft));
		x1->km.dying = 0;

1671 1672
		hrtimer_start(&x1->mtimer, ktime_set(1, 0),
			      HRTIMER_MODE_REL_SOFT);
L
Linus Torvalds 已提交
1673 1674 1675
		if (x1->curlft.use_time)
			xfrm_state_check_expire(x1);

1676
		if (x->props.smark.m || x->props.smark.v || x->if_id) {
1677 1678
			spin_lock_bh(&net->xfrm.xfrm_state_lock);

1679 1680 1681 1682 1683
			if (x->props.smark.m || x->props.smark.v)
				x1->props.smark = x->props.smark;

			if (x->if_id)
				x1->if_id = x->if_id;
1684 1685 1686 1687 1688

			__xfrm_state_bump_genids(x1);
			spin_unlock_bh(&net->xfrm.xfrm_state_lock);
		}

L
Linus Torvalds 已提交
1689
		err = 0;
1690 1691
		x->km.state = XFRM_STATE_DEAD;
		__xfrm_state_put(x);
L
Linus Torvalds 已提交
1692
	}
1693 1694

fail:
L
Linus Torvalds 已提交
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
	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)
1706
		x->curlft.use_time = ktime_get_real_seconds();
L
Linus Torvalds 已提交
1707 1708 1709

	if (x->curlft.bytes >= x->lft.hard_byte_limit ||
	    x->curlft.packets >= x->lft.hard_packet_limit) {
1710
		x->km.state = XFRM_STATE_EXPIRED;
1711
		hrtimer_start(&x->mtimer, 0, HRTIMER_MODE_REL_SOFT);
L
Linus Torvalds 已提交
1712 1713 1714 1715 1716
		return -EINVAL;
	}

	if (!x->km.dying &&
	    (x->curlft.bytes >= x->lft.soft_byte_limit ||
1717 1718
	     x->curlft.packets >= x->lft.soft_packet_limit)) {
		x->km.dying = 1;
1719
		km_state_expired(x, 0, 0);
1720
	}
L
Linus Torvalds 已提交
1721 1722 1723 1724 1725
	return 0;
}
EXPORT_SYMBOL(xfrm_state_check_expire);

struct xfrm_state *
1726
xfrm_state_lookup(struct net *net, u32 mark, const xfrm_address_t *daddr, __be32 spi,
1727
		  u8 proto, unsigned short family)
L
Linus Torvalds 已提交
1728 1729 1730
{
	struct xfrm_state *x;

1731
	rcu_read_lock();
1732
	x = __xfrm_state_lookup(net, mark, daddr, spi, proto, family);
1733
	rcu_read_unlock();
L
Linus Torvalds 已提交
1734 1735 1736 1737 1738
	return x;
}
EXPORT_SYMBOL(xfrm_state_lookup);

struct xfrm_state *
1739
xfrm_state_lookup_byaddr(struct net *net, u32 mark,
1740
			 const xfrm_address_t *daddr, const xfrm_address_t *saddr,
1741 1742 1743 1744
			 u8 proto, unsigned short family)
{
	struct xfrm_state *x;

F
Fan Du 已提交
1745
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1746
	x = __xfrm_state_lookup_byaddr(net, mark, daddr, saddr, proto, family);
F
Fan Du 已提交
1747
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1748 1749 1750 1751 1752
	return x;
}
EXPORT_SYMBOL(xfrm_state_lookup_byaddr);

struct xfrm_state *
1753
xfrm_find_acq(struct net *net, const struct xfrm_mark *mark, u8 mode, u32 reqid,
1754
	      u32 if_id, u8 proto, const xfrm_address_t *daddr,
1755
	      const xfrm_address_t *saddr, int create, unsigned short family)
L
Linus Torvalds 已提交
1756 1757 1758
{
	struct xfrm_state *x;

F
Fan Du 已提交
1759
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1760
	x = __find_acq_core(net, mark, family, mode, reqid, if_id, proto, daddr, saddr, create);
F
Fan Du 已提交
1761
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1762

L
Linus Torvalds 已提交
1763 1764 1765 1766
	return x;
}
EXPORT_SYMBOL(xfrm_find_acq);

1767
#ifdef CONFIG_XFRM_SUB_POLICY
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864
#if IS_ENABLED(CONFIG_IPV6)
/* distribution counting sort function for xfrm_state and xfrm_tmpl */
static void
__xfrm6_sort(void **dst, void **src, int n,
	     int (*cmp)(const void *p), int maxclass)
{
	int count[XFRM_MAX_DEPTH] = { };
	int class[XFRM_MAX_DEPTH];
	int i;

	for (i = 0; i < n; i++) {
		int c = cmp(src[i]);

		class[i] = c;
		count[c]++;
	}

	for (i = 2; i < maxclass; i++)
		count[i] += count[i - 1];

	for (i = 0; i < n; i++) {
		dst[count[class[i] - 1]++] = src[i];
		src[i] = NULL;
	}
}

/* Rule for xfrm_state:
 *
 * rule 1: select IPsec transport except AH
 * rule 2: select MIPv6 RO or inbound trigger
 * rule 3: select IPsec transport AH
 * rule 4: select IPsec tunnel
 * rule 5: others
 */
static int __xfrm6_state_sort_cmp(const void *p)
{
	const struct xfrm_state *v = p;

	switch (v->props.mode) {
	case XFRM_MODE_TRANSPORT:
		if (v->id.proto != IPPROTO_AH)
			return 1;
		else
			return 3;
#if IS_ENABLED(CONFIG_IPV6_MIP6)
	case XFRM_MODE_ROUTEOPTIMIZATION:
	case XFRM_MODE_IN_TRIGGER:
		return 2;
#endif
	case XFRM_MODE_TUNNEL:
	case XFRM_MODE_BEET:
		return 4;
	}
	return 5;
}

/* Rule for xfrm_tmpl:
 *
 * rule 1: select IPsec transport
 * rule 2: select MIPv6 RO or inbound trigger
 * rule 3: select IPsec tunnel
 * rule 4: others
 */
static int __xfrm6_tmpl_sort_cmp(const void *p)
{
	const struct xfrm_tmpl *v = p;

	switch (v->mode) {
	case XFRM_MODE_TRANSPORT:
		return 1;
#if IS_ENABLED(CONFIG_IPV6_MIP6)
	case XFRM_MODE_ROUTEOPTIMIZATION:
	case XFRM_MODE_IN_TRIGGER:
		return 2;
#endif
	case XFRM_MODE_TUNNEL:
	case XFRM_MODE_BEET:
		return 3;
	}
	return 4;
}
#else
static inline int __xfrm6_state_sort_cmp(const void *p) { return 5; }
static inline int __xfrm6_tmpl_sort_cmp(const void *p) { return 4; }

static inline void
__xfrm6_sort(void **dst, void **src, int n,
	     int (*cmp)(const void *p), int maxclass)
{
	int i;

	for (i = 0; i < n; i++)
		dst[i] = src[i];
}
#endif /* CONFIG_IPV6 */

void
1865
xfrm_tmpl_sort(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n,
1866
	       unsigned short family)
1867
{
1868
	int i;
1869

1870 1871 1872
	if (family == AF_INET6)
		__xfrm6_sort((void **)dst, (void **)src, n,
			     __xfrm6_tmpl_sort_cmp, 5);
1873 1874 1875
	else
		for (i = 0; i < n; i++)
			dst[i] = src[i];
1876 1877
}

1878
void
1879 1880 1881
xfrm_state_sort(struct xfrm_state **dst, struct xfrm_state **src, int n,
		unsigned short family)
{
1882
	int i;
F
Fan Du 已提交
1883

1884 1885 1886
	if (family == AF_INET6)
		__xfrm6_sort((void **)dst, (void **)src, n,
			     __xfrm6_state_sort_cmp, 6);
1887 1888 1889
	else
		for (i = 0; i < n; i++)
			dst[i] = src[i];
1890 1891 1892
}
#endif

L
Linus Torvalds 已提交
1893 1894
/* Silly enough, but I'm lazy to build resolution list */

1895
static struct xfrm_state *__xfrm_find_acq_byseq(struct net *net, u32 mark, u32 seq)
L
Linus Torvalds 已提交
1896 1897 1898
{
	int i;

1899
	for (i = 0; i <= net->xfrm.state_hmask; i++) {
1900 1901
		struct xfrm_state *x;

1902
		hlist_for_each_entry(x, net->xfrm.state_bydst+i, bydst) {
1903
			if (x->km.seq == seq &&
J
Jamal Hadi Salim 已提交
1904
			    (mark & x->mark.m) == x->mark.v &&
1905
			    x->km.state == XFRM_STATE_ACQ) {
L
Linus Torvalds 已提交
1906 1907 1908 1909 1910 1911 1912 1913
				xfrm_state_hold(x);
				return x;
			}
		}
	}
	return NULL;
}

1914
struct xfrm_state *xfrm_find_acq_byseq(struct net *net, u32 mark, u32 seq)
L
Linus Torvalds 已提交
1915 1916 1917
{
	struct xfrm_state *x;

F
Fan Du 已提交
1918
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1919
	x = __xfrm_find_acq_byseq(net, mark, seq);
F
Fan Du 已提交
1920
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
1921 1922 1923 1924 1925 1926 1927
	return x;
}
EXPORT_SYMBOL(xfrm_find_acq_byseq);

u32 xfrm_get_acqseq(void)
{
	u32 res;
1928 1929 1930 1931 1932
	static atomic_t acqseq;

	do {
		res = atomic_inc_return(&acqseq);
	} while (!res);
L
Linus Torvalds 已提交
1933 1934 1935 1936 1937

	return res;
}
EXPORT_SYMBOL(xfrm_get_acqseq);

1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
int verify_spi_info(u8 proto, u32 min, u32 max)
{
	switch (proto) {
	case IPPROTO_AH:
	case IPPROTO_ESP:
		break;

	case IPPROTO_COMP:
		/* IPCOMP spi is 16-bits. */
		if (max >= 0x10000)
			return -EINVAL;
		break;

	default:
		return -EINVAL;
	}

	if (min > max)
		return -EINVAL;

	return 0;
}
EXPORT_SYMBOL(verify_spi_info);

1962
int xfrm_alloc_spi(struct xfrm_state *x, u32 low, u32 high)
L
Linus Torvalds 已提交
1963
{
1964
	struct net *net = xs_net(x);
1965
	unsigned int h;
L
Linus Torvalds 已提交
1966
	struct xfrm_state *x0;
1967 1968 1969
	int err = -ENOENT;
	__be32 minspi = htonl(low);
	__be32 maxspi = htonl(high);
1970
	u32 mark = x->mark.v & x->mark.m;
L
Linus Torvalds 已提交
1971

1972 1973 1974 1975 1976
	spin_lock_bh(&x->lock);
	if (x->km.state == XFRM_STATE_DEAD)
		goto unlock;

	err = 0;
L
Linus Torvalds 已提交
1977
	if (x->id.spi)
1978 1979 1980
		goto unlock;

	err = -ENOENT;
L
Linus Torvalds 已提交
1981 1982

	if (minspi == maxspi) {
1983
		x0 = xfrm_state_lookup(net, mark, &x->id.daddr, minspi, x->id.proto, x->props.family);
L
Linus Torvalds 已提交
1984 1985
		if (x0) {
			xfrm_state_put(x0);
1986
			goto unlock;
L
Linus Torvalds 已提交
1987 1988 1989 1990
		}
		x->id.spi = minspi;
	} else {
		u32 spi = 0;
1991
		for (h = 0; h < high-low+1; h++) {
1992
			spi = low + prandom_u32()%(high-low+1);
1993
			x0 = xfrm_state_lookup(net, mark, &x->id.daddr, htonl(spi), x->id.proto, x->props.family);
L
Linus Torvalds 已提交
1994 1995 1996 1997 1998 1999 2000 2001
			if (x0 == NULL) {
				x->id.spi = htonl(spi);
				break;
			}
			xfrm_state_put(x0);
		}
	}
	if (x->id.spi) {
F
Fan Du 已提交
2002
		spin_lock_bh(&net->xfrm.xfrm_state_lock);
2003
		h = xfrm_spi_hash(net, &x->id.daddr, x->id.spi, x->id.proto, x->props.family);
2004
		hlist_add_head_rcu(&x->byspi, net->xfrm.state_byspi + h);
F
Fan Du 已提交
2005
		spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2006 2007

		err = 0;
L
Linus Torvalds 已提交
2008
	}
2009 2010 2011 2012 2013

unlock:
	spin_unlock_bh(&x->lock);

	return err;
L
Linus Torvalds 已提交
2014 2015 2016
}
EXPORT_SYMBOL(xfrm_alloc_spi);

2017
static bool __xfrm_state_filter_match(struct xfrm_state *x,
2018
				      struct xfrm_address_filter *filter)
2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
{
	if (filter) {
		if ((filter->family == AF_INET ||
		     filter->family == AF_INET6) &&
		    x->props.family != filter->family)
			return false;

		return addr_match(&x->props.saddr, &filter->saddr,
				  filter->splen) &&
		       addr_match(&x->id.daddr, &filter->daddr,
				  filter->dplen);
	}
	return true;
}

2034
int xfrm_state_walk(struct net *net, struct xfrm_state_walk *walk,
2035
		    int (*func)(struct xfrm_state *, int, void*),
L
Linus Torvalds 已提交
2036 2037
		    void *data)
{
H
Herbert Xu 已提交
2038 2039
	struct xfrm_state *state;
	struct xfrm_state_walk *x;
L
Linus Torvalds 已提交
2040 2041
	int err = 0;

H
Herbert Xu 已提交
2042
	if (walk->seq != 0 && list_empty(&walk->all))
2043 2044
		return 0;

F
Fan Du 已提交
2045
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
H
Herbert Xu 已提交
2046
	if (list_empty(&walk->all))
2047
		x = list_first_entry(&net->xfrm.state_all, struct xfrm_state_walk, all);
H
Herbert Xu 已提交
2048
	else
2049
		x = list_first_entry(&walk->all, struct xfrm_state_walk, all);
2050
	list_for_each_entry_from(x, &net->xfrm.state_all, all) {
H
Herbert Xu 已提交
2051
		if (x->state == XFRM_STATE_DEAD)
2052
			continue;
H
Herbert Xu 已提交
2053 2054
		state = container_of(x, struct xfrm_state, km);
		if (!xfrm_id_proto_match(state->id.proto, walk->proto))
2055
			continue;
2056 2057
		if (!__xfrm_state_filter_match(state, walk->filter))
			continue;
H
Herbert Xu 已提交
2058 2059 2060 2061
		err = func(state, walk->seq, data);
		if (err) {
			list_move_tail(&walk->all, &x->all);
			goto out;
L
Linus Torvalds 已提交
2062
		}
H
Herbert Xu 已提交
2063
		walk->seq++;
L
Linus Torvalds 已提交
2064
	}
H
Herbert Xu 已提交
2065
	if (walk->seq == 0) {
L
Linus Torvalds 已提交
2066 2067 2068
		err = -ENOENT;
		goto out;
	}
H
Herbert Xu 已提交
2069
	list_del_init(&walk->all);
L
Linus Torvalds 已提交
2070
out:
F
Fan Du 已提交
2071
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
L
Linus Torvalds 已提交
2072 2073 2074 2075
	return err;
}
EXPORT_SYMBOL(xfrm_state_walk);

2076
void xfrm_state_walk_init(struct xfrm_state_walk *walk, u8 proto,
2077
			  struct xfrm_address_filter *filter)
H
Herbert Xu 已提交
2078
{
H
Herbert Xu 已提交
2079
	INIT_LIST_HEAD(&walk->all);
H
Herbert Xu 已提交
2080
	walk->proto = proto;
H
Herbert Xu 已提交
2081 2082
	walk->state = XFRM_STATE_DEAD;
	walk->seq = 0;
2083
	walk->filter = filter;
H
Herbert Xu 已提交
2084 2085 2086
}
EXPORT_SYMBOL(xfrm_state_walk_init);

F
Fan Du 已提交
2087
void xfrm_state_walk_done(struct xfrm_state_walk *walk, struct net *net)
2088
{
2089 2090
	kfree(walk->filter);

H
Herbert Xu 已提交
2091
	if (list_empty(&walk->all))
H
Herbert Xu 已提交
2092 2093
		return;

F
Fan Du 已提交
2094
	spin_lock_bh(&net->xfrm.xfrm_state_lock);
H
Herbert Xu 已提交
2095
	list_del(&walk->all);
F
Fan Du 已提交
2096
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
2097 2098 2099
}
EXPORT_SYMBOL(xfrm_state_walk_done);

2100
static void xfrm_replay_timer_handler(struct timer_list *t)
2101
{
2102
	struct xfrm_state *x = from_timer(x, t, rtimer);
2103 2104 2105

	spin_lock(&x->lock);

J
Jamal Hadi Salim 已提交
2106
	if (x->km.state == XFRM_STATE_VALID) {
2107
		if (xfrm_aevent_is_on(xs_net(x)))
2108
			x->repl->notify(x, XFRM_REPLAY_TIMEOUT);
J
Jamal Hadi Salim 已提交
2109 2110 2111
		else
			x->xflags |= XFRM_TIME_DEFER;
	}
2112 2113 2114 2115

	spin_unlock(&x->lock);
}

2116
static LIST_HEAD(xfrm_km_list);
L
Linus Torvalds 已提交
2117

2118
void km_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
L
Linus Torvalds 已提交
2119 2120 2121
{
	struct xfrm_mgr *km;

2122 2123
	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list)
2124 2125
		if (km->notify_policy)
			km->notify_policy(xp, dir, c);
2126
	rcu_read_unlock();
2127
}
L
Linus Torvalds 已提交
2128

2129
void km_state_notify(struct xfrm_state *x, const struct km_event *c)
2130 2131
{
	struct xfrm_mgr *km;
2132 2133
	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list)
2134 2135
		if (km->notify)
			km->notify(x, c);
2136
	rcu_read_unlock();
2137 2138 2139 2140 2141
}

EXPORT_SYMBOL(km_policy_notify);
EXPORT_SYMBOL(km_state_notify);

2142
void km_state_expired(struct xfrm_state *x, int hard, u32 portid)
2143 2144 2145
{
	struct km_event c;

2146
	c.data.hard = hard;
2147
	c.portid = portid;
2148
	c.event = XFRM_MSG_EXPIRE;
2149
	km_state_notify(x, &c);
L
Linus Torvalds 已提交
2150 2151
}

2152
EXPORT_SYMBOL(km_state_expired);
2153 2154 2155 2156
/*
 * We send to all registered managers regardless of failure
 * We are happy with one success
*/
2157
int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol)
L
Linus Torvalds 已提交
2158
{
2159
	int err = -EINVAL, acqret;
L
Linus Torvalds 已提交
2160 2161
	struct xfrm_mgr *km;

2162 2163
	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2164
		acqret = km->acquire(x, t, pol);
2165 2166
		if (!acqret)
			err = acqret;
L
Linus Torvalds 已提交
2167
	}
2168
	rcu_read_unlock();
L
Linus Torvalds 已提交
2169 2170
	return err;
}
2171
EXPORT_SYMBOL(km_query);
L
Linus Torvalds 已提交
2172

A
Al Viro 已提交
2173
int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport)
L
Linus Torvalds 已提交
2174 2175 2176 2177
{
	int err = -EINVAL;
	struct xfrm_mgr *km;

2178 2179
	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list) {
L
Linus Torvalds 已提交
2180 2181 2182 2183 2184
		if (km->new_mapping)
			err = km->new_mapping(x, ipaddr, sport);
		if (!err)
			break;
	}
2185
	rcu_read_unlock();
L
Linus Torvalds 已提交
2186 2187 2188 2189
	return err;
}
EXPORT_SYMBOL(km_new_mapping);

2190
void km_policy_expired(struct xfrm_policy *pol, int dir, int hard, u32 portid)
L
Linus Torvalds 已提交
2191
{
2192
	struct km_event c;
L
Linus Torvalds 已提交
2193

2194
	c.data.hard = hard;
2195
	c.portid = portid;
2196
	c.event = XFRM_MSG_POLEXPIRE;
2197
	km_policy_notify(pol, dir, &c);
L
Linus Torvalds 已提交
2198
}
2199
EXPORT_SYMBOL(km_policy_expired);
L
Linus Torvalds 已提交
2200

2201
#ifdef CONFIG_XFRM_MIGRATE
2202 2203
int km_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
	       const struct xfrm_migrate *m, int num_migrate,
2204 2205
	       const struct xfrm_kmaddress *k,
	       const struct xfrm_encap_tmpl *encap)
2206 2207 2208 2209 2210
{
	int err = -EINVAL;
	int ret;
	struct xfrm_mgr *km;

2211 2212
	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2213
		if (km->migrate) {
2214 2215
			ret = km->migrate(sel, dir, type, m, num_migrate, k,
					  encap);
2216 2217 2218 2219
			if (!ret)
				err = ret;
		}
	}
2220
	rcu_read_unlock();
2221 2222 2223
	return err;
}
EXPORT_SYMBOL(km_migrate);
2224
#endif
2225

2226
int km_report(struct net *net, u8 proto, struct xfrm_selector *sel, xfrm_address_t *addr)
2227 2228 2229 2230 2231
{
	int err = -EINVAL;
	int ret;
	struct xfrm_mgr *km;

2232 2233
	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2234
		if (km->report) {
2235
			ret = km->report(net, proto, sel, addr);
2236 2237 2238 2239
			if (!ret)
				err = ret;
		}
	}
2240
	rcu_read_unlock();
2241 2242 2243 2244
	return err;
}
EXPORT_SYMBOL(km_report);

2245
static bool km_is_alive(const struct km_event *c)
2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261
{
	struct xfrm_mgr *km;
	bool is_alive = false;

	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list) {
		if (km->is_alive && km->is_alive(c)) {
			is_alive = true;
			break;
		}
	}
	rcu_read_unlock();

	return is_alive;
}

L
Linus Torvalds 已提交
2262 2263 2264 2265 2266 2267 2268
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;

2269 2270 2271
	if (in_compat_syscall())
		return -EOPNOTSUPP;

2272 2273 2274 2275 2276 2277 2278
	if (!optval && !optlen) {
		xfrm_sk_policy_insert(sk, XFRM_POLICY_IN, NULL);
		xfrm_sk_policy_insert(sk, XFRM_POLICY_OUT, NULL);
		__sk_dst_reset(sk);
		return 0;
	}

L
Linus Torvalds 已提交
2279 2280 2281
	if (optlen <= 0 || optlen > PAGE_SIZE)
		return -EMSGSIZE;

G
Geliang Tang 已提交
2282 2283 2284
	data = memdup_user(optval, optlen);
	if (IS_ERR(data))
		return PTR_ERR(data);
L
Linus Torvalds 已提交
2285 2286

	err = -EINVAL;
2287 2288
	rcu_read_lock();
	list_for_each_entry_rcu(km, &xfrm_km_list, list) {
2289
		pol = km->compile_policy(sk, optname, data,
L
Linus Torvalds 已提交
2290 2291 2292 2293
					 optlen, &err);
		if (err >= 0)
			break;
	}
2294
	rcu_read_unlock();
L
Linus Torvalds 已提交
2295 2296 2297 2298

	if (err >= 0) {
		xfrm_sk_policy_insert(sk, err, pol);
		xfrm_pol_put(pol);
2299
		__sk_dst_reset(sk);
L
Linus Torvalds 已提交
2300 2301 2302 2303 2304 2305 2306 2307
		err = 0;
	}

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

2308 2309
static DEFINE_SPINLOCK(xfrm_km_lock);

L
Linus Torvalds 已提交
2310 2311
int xfrm_register_km(struct xfrm_mgr *km)
{
2312 2313 2314
	spin_lock_bh(&xfrm_km_lock);
	list_add_tail_rcu(&km->list, &xfrm_km_list);
	spin_unlock_bh(&xfrm_km_lock);
L
Linus Torvalds 已提交
2315 2316 2317 2318 2319 2320
	return 0;
}
EXPORT_SYMBOL(xfrm_register_km);

int xfrm_unregister_km(struct xfrm_mgr *km)
{
2321 2322 2323 2324
	spin_lock_bh(&xfrm_km_lock);
	list_del_rcu(&km->list);
	spin_unlock_bh(&xfrm_km_lock);
	synchronize_rcu();
L
Linus Torvalds 已提交
2325 2326 2327 2328 2329 2330 2331
	return 0;
}
EXPORT_SYMBOL(xfrm_unregister_km);

int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo)
{
	int err = 0;
2332 2333

	if (WARN_ON(afinfo->family >= NPROTO))
L
Linus Torvalds 已提交
2334
		return -EAFNOSUPPORT;
2335

2336
	spin_lock_bh(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
2337
	if (unlikely(xfrm_state_afinfo[afinfo->family] != NULL))
2338
		err = -EEXIST;
2339
	else
2340 2341
		rcu_assign_pointer(xfrm_state_afinfo[afinfo->family], afinfo);
	spin_unlock_bh(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
2342 2343 2344 2345 2346 2347
	return err;
}
EXPORT_SYMBOL(xfrm_state_register_afinfo);

int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo)
{
2348 2349 2350
	int err = 0, family = afinfo->family;

	if (WARN_ON(family >= NPROTO))
L
Linus Torvalds 已提交
2351
		return -EAFNOSUPPORT;
2352

2353
	spin_lock_bh(&xfrm_state_afinfo_lock);
L
Linus Torvalds 已提交
2354
	if (likely(xfrm_state_afinfo[afinfo->family] != NULL)) {
2355
		if (rcu_access_pointer(xfrm_state_afinfo[family]) != afinfo)
L
Linus Torvalds 已提交
2356
			err = -EINVAL;
2357
		else
2358
			RCU_INIT_POINTER(xfrm_state_afinfo[afinfo->family], NULL);
L
Linus Torvalds 已提交
2359
	}
2360 2361
	spin_unlock_bh(&xfrm_state_afinfo_lock);
	synchronize_rcu();
L
Linus Torvalds 已提交
2362 2363 2364 2365
	return err;
}
EXPORT_SYMBOL(xfrm_state_unregister_afinfo);

2366 2367 2368 2369 2370 2371 2372
struct xfrm_state_afinfo *xfrm_state_afinfo_get_rcu(unsigned int family)
{
	if (unlikely(family >= NPROTO))
		return NULL;

	return rcu_dereference(xfrm_state_afinfo[family]);
}
2373
EXPORT_SYMBOL_GPL(xfrm_state_afinfo_get_rcu);
2374

2375
struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family)
L
Linus Torvalds 已提交
2376 2377 2378 2379
{
	struct xfrm_state_afinfo *afinfo;
	if (unlikely(family >= NPROTO))
		return NULL;
2380 2381
	rcu_read_lock();
	afinfo = rcu_dereference(xfrm_state_afinfo[family]);
2382
	if (unlikely(!afinfo))
2383
		rcu_read_unlock();
L
Linus Torvalds 已提交
2384 2385 2386
	return afinfo;
}

2387 2388 2389 2390 2391 2392
void xfrm_flush_gc(void)
{
	flush_work(&xfrm_state_gc_work);
}
EXPORT_SYMBOL(xfrm_flush_gc);

L
Linus Torvalds 已提交
2393 2394 2395 2396 2397 2398 2399 2400 2401
/* 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);
2402
		xfrm_state_put_sync(t);
L
Linus Torvalds 已提交
2403 2404 2405 2406 2407
		x->tunnel = NULL;
	}
}
EXPORT_SYMBOL(xfrm_state_delete_tunnel);

2408
u32 xfrm_state_mtu(struct xfrm_state *x, int mtu)
L
Linus Torvalds 已提交
2409
{
2410
	const struct xfrm_type *type = READ_ONCE(x->type);
2411 2412 2413 2414 2415 2416 2417 2418 2419
	struct crypto_aead *aead;
	u32 blksize, net_adj = 0;

	if (x->km.state != XFRM_STATE_VALID ||
	    !type || type->proto != IPPROTO_ESP)
		return mtu - x->props.header_len;

	aead = x->data;
	blksize = ALIGN(crypto_aead_blocksize(aead), 4);
L
Linus Torvalds 已提交
2420

2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434
	switch (x->props.mode) {
	case XFRM_MODE_TRANSPORT:
	case XFRM_MODE_BEET:
		if (x->props.family == AF_INET)
			net_adj = sizeof(struct iphdr);
		else if (x->props.family == AF_INET6)
			net_adj = sizeof(struct ipv6hdr);
		break;
	case XFRM_MODE_TUNNEL:
		break;
	default:
		WARN_ON_ONCE(1);
		break;
	}
2435

2436 2437
	return ((mtu - x->props.header_len - crypto_aead_authsize(aead) -
		 net_adj) & ~(blksize - 1)) + net_adj - 2;
L
Linus Torvalds 已提交
2438
}
2439
EXPORT_SYMBOL_GPL(xfrm_state_mtu);
L
Linus Torvalds 已提交
2440

2441
int __xfrm_init_state(struct xfrm_state *x, bool init_replay, bool offload)
H
Herbert Xu 已提交
2442
{
2443 2444
	const struct xfrm_mode *inner_mode;
	const struct xfrm_mode *outer_mode;
2445
	int family = x->props.family;
H
Herbert Xu 已提交
2446 2447
	int err;

2448 2449 2450
	if (family == AF_INET &&
	    xs_net(x)->ipv4.sysctl_ip_no_pmtu_disc)
		x->props.flags |= XFRM_STATE_NOPMTUDISC;
2451 2452

	err = -EPROTONOSUPPORT;
2453

2454 2455 2456 2457 2458 2459
	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) &&
F
Florian Westphal 已提交
2460
		    family != x->sel.family)
2461 2462
			goto error;

2463
		x->inner_mode = *inner_mode;
2464
	} else {
F
Florian Westphal 已提交
2465
		const struct xfrm_mode *inner_mode_iaf;
2466
		int iafamily = AF_INET;
2467

2468
		inner_mode = xfrm_get_mode(x->props.mode, x->props.family);
2469 2470 2471
		if (inner_mode == NULL)
			goto error;

F
Florian Westphal 已提交
2472
		if (!(inner_mode->flags & XFRM_MODE_FLAG_TUNNEL))
2473
			goto error;
F
Florian Westphal 已提交
2474

2475
		x->inner_mode = *inner_mode;
2476

2477 2478
		if (x->props.family == AF_INET)
			iafamily = AF_INET6;
2479

2480 2481 2482
		inner_mode_iaf = xfrm_get_mode(x->props.mode, iafamily);
		if (inner_mode_iaf) {
			if (inner_mode_iaf->flags & XFRM_MODE_FLAG_TUNNEL)
2483
				x->inner_mode_iaf = *inner_mode_iaf;
2484 2485
		}
	}
2486

2487
	x->type = xfrm_get_type(x->id.proto, family);
H
Herbert Xu 已提交
2488 2489 2490
	if (x->type == NULL)
		goto error;

2491
	x->type_offload = xfrm_get_type_offload(x->id.proto, family, offload);
2492

H
Herbert Xu 已提交
2493 2494 2495 2496
	err = x->type->init_state(x);
	if (err)
		goto error;

2497 2498
	outer_mode = xfrm_get_mode(x->props.mode, family);
	if (!outer_mode) {
2499
		err = -EPROTONOSUPPORT;
2500
		goto error;
2501
	}
2502

2503
	x->outer_mode = *outer_mode;
2504 2505 2506 2507 2508 2509
	if (init_replay) {
		err = xfrm_init_replay(x);
		if (err)
			goto error;
	}

H
Herbert Xu 已提交
2510 2511 2512 2513
error:
	return err;
}

2514 2515 2516 2517
EXPORT_SYMBOL(__xfrm_init_state);

int xfrm_init_state(struct xfrm_state *x)
{
2518 2519 2520 2521 2522 2523 2524
	int err;

	err = __xfrm_init_state(x, true, false);
	if (!err)
		x->km.state = XFRM_STATE_VALID;

	return err;
2525 2526
}

H
Herbert Xu 已提交
2527
EXPORT_SYMBOL(xfrm_init_state);
2528

2529
int __net_init xfrm_state_init(struct net *net)
L
Linus Torvalds 已提交
2530
{
2531 2532
	unsigned int sz;

2533 2534 2535 2536
	if (net_eq(net, &init_net))
		xfrm_state_cache = KMEM_CACHE(xfrm_state,
					      SLAB_HWCACHE_ALIGN | SLAB_PANIC);

2537 2538
	INIT_LIST_HEAD(&net->xfrm.state_all);

2539 2540
	sz = sizeof(struct hlist_head) * 8;

2541 2542 2543
	net->xfrm.state_bydst = xfrm_hash_alloc(sz);
	if (!net->xfrm.state_bydst)
		goto out_bydst;
2544 2545 2546
	net->xfrm.state_bysrc = xfrm_hash_alloc(sz);
	if (!net->xfrm.state_bysrc)
		goto out_bysrc;
2547 2548 2549
	net->xfrm.state_byspi = xfrm_hash_alloc(sz);
	if (!net->xfrm.state_byspi)
		goto out_byspi;
2550
	net->xfrm.state_hmask = ((sz / sizeof(struct hlist_head)) - 1);
L
Linus Torvalds 已提交
2551

2552
	net->xfrm.state_num = 0;
2553
	INIT_WORK(&net->xfrm.state_hash_work, xfrm_hash_resize);
F
Fan Du 已提交
2554
	spin_lock_init(&net->xfrm.xfrm_state_lock);
2555
	return 0;
2556

2557 2558
out_byspi:
	xfrm_hash_free(net->xfrm.state_bysrc, sz);
2559 2560
out_bysrc:
	xfrm_hash_free(net->xfrm.state_bydst, sz);
2561 2562
out_bydst:
	return -ENOMEM;
2563 2564 2565 2566
}

void xfrm_state_fini(struct net *net)
{
2567 2568
	unsigned int sz;

2569
	flush_work(&net->xfrm.state_hash_work);
2570
	flush_work(&xfrm_state_gc_work);
C
Cong Wang 已提交
2571
	xfrm_state_flush(net, 0, false, true);
2572

2573
	WARN_ON(!list_empty(&net->xfrm.state_all));
2574

2575
	sz = (net->xfrm.state_hmask + 1) * sizeof(struct hlist_head);
2576 2577
	WARN_ON(!hlist_empty(net->xfrm.state_byspi));
	xfrm_hash_free(net->xfrm.state_byspi, sz);
2578 2579
	WARN_ON(!hlist_empty(net->xfrm.state_bysrc));
	xfrm_hash_free(net->xfrm.state_bysrc, sz);
2580 2581
	WARN_ON(!hlist_empty(net->xfrm.state_bydst));
	xfrm_hash_free(net->xfrm.state_bydst, sz);
L
Linus Torvalds 已提交
2582 2583
}

J
Joy Latten 已提交
2584
#ifdef CONFIG_AUDITSYSCALL
I
Ilpo Järvinen 已提交
2585 2586
static void xfrm_audit_helper_sainfo(struct xfrm_state *x,
				     struct audit_buffer *audit_buf)
J
Joy Latten 已提交
2587
{
P
Paul Moore 已提交
2588 2589 2590 2591
	struct xfrm_sec_ctx *ctx = x->security;
	u32 spi = ntohl(x->id.spi);

	if (ctx)
J
Joy Latten 已提交
2592
		audit_log_format(audit_buf, " sec_alg=%u sec_doi=%u sec_obj=%s",
P
Paul Moore 已提交
2593
				 ctx->ctx_alg, ctx->ctx_doi, ctx->ctx_str);
J
Joy Latten 已提交
2594

2595
	switch (x->props.family) {
J
Joy Latten 已提交
2596
	case AF_INET:
H
Harvey Harrison 已提交
2597 2598
		audit_log_format(audit_buf, " src=%pI4 dst=%pI4",
				 &x->props.saddr.a4, &x->id.daddr.a4);
J
Joy Latten 已提交
2599 2600
		break;
	case AF_INET6:
H
Harvey Harrison 已提交
2601
		audit_log_format(audit_buf, " src=%pI6 dst=%pI6",
2602
				 x->props.saddr.a6, x->id.daddr.a6);
J
Joy Latten 已提交
2603 2604
		break;
	}
P
Paul Moore 已提交
2605 2606

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

I
Ilpo Järvinen 已提交
2609 2610
static void xfrm_audit_helper_pktinfo(struct sk_buff *skb, u16 family,
				      struct audit_buffer *audit_buf)
P
Paul Moore 已提交
2611
{
2612 2613
	const struct iphdr *iph4;
	const struct ipv6hdr *iph6;
P
Paul Moore 已提交
2614 2615 2616 2617

	switch (family) {
	case AF_INET:
		iph4 = ip_hdr(skb);
H
Harvey Harrison 已提交
2618 2619
		audit_log_format(audit_buf, " src=%pI4 dst=%pI4",
				 &iph4->saddr, &iph4->daddr);
P
Paul Moore 已提交
2620 2621 2622 2623
		break;
	case AF_INET6:
		iph6 = ipv6_hdr(skb);
		audit_log_format(audit_buf,
H
Harvey Harrison 已提交
2624
				 " src=%pI6 dst=%pI6 flowlbl=0x%x%02x%02x",
2625
				 &iph6->saddr, &iph6->daddr,
P
Paul Moore 已提交
2626 2627 2628 2629 2630 2631 2632
				 iph6->flow_lbl[0] & 0x0f,
				 iph6->flow_lbl[1],
				 iph6->flow_lbl[2]);
		break;
	}
}

2633
void xfrm_audit_state_add(struct xfrm_state *x, int result, bool task_valid)
J
Joy Latten 已提交
2634 2635 2636
{
	struct audit_buffer *audit_buf;

P
Paul Moore 已提交
2637
	audit_buf = xfrm_audit_start("SAD-add");
J
Joy Latten 已提交
2638 2639
	if (audit_buf == NULL)
		return;
2640
	xfrm_audit_helper_usrinfo(task_valid, audit_buf);
P
Paul Moore 已提交
2641 2642
	xfrm_audit_helper_sainfo(x, audit_buf);
	audit_log_format(audit_buf, " res=%u", result);
J
Joy Latten 已提交
2643 2644 2645 2646
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_add);

2647
void xfrm_audit_state_delete(struct xfrm_state *x, int result, bool task_valid)
J
Joy Latten 已提交
2648 2649 2650
{
	struct audit_buffer *audit_buf;

P
Paul Moore 已提交
2651
	audit_buf = xfrm_audit_start("SAD-delete");
J
Joy Latten 已提交
2652 2653
	if (audit_buf == NULL)
		return;
2654
	xfrm_audit_helper_usrinfo(task_valid, audit_buf);
P
Paul Moore 已提交
2655 2656
	xfrm_audit_helper_sainfo(x, audit_buf);
	audit_log_format(audit_buf, " res=%u", result);
J
Joy Latten 已提交
2657 2658 2659
	audit_log_end(audit_buf);
}
EXPORT_SYMBOL_GPL(xfrm_audit_state_delete);
P
Paul Moore 已提交
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678

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);

2679
void xfrm_audit_state_replay(struct xfrm_state *x,
P
Paul Moore 已提交
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693
			     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);
}
2694
EXPORT_SYMBOL_GPL(xfrm_audit_state_replay);
P
Paul Moore 已提交
2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743

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 已提交
2744
#endif /* CONFIG_AUDITSYSCALL */