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 499
	if (x->xfrag.page)
		put_page(x->xfrag.page);
500
	xfrm_dev_state_free(x);
501
	security_xfrm_state_free(x);
502
	xfrm_state_free(x);
L
Linus Torvalds 已提交
503 504
}

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

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

515 516
	synchronize_rcu();

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

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

	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;
538 539 540 541
		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 已提交
542
				 * workaround: fix x->curflt.add_time by below:
543 544 545 546 547 548
				 */
				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 已提交
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
		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;
565
		if (tmo <= 0) {
L
Linus Torvalds 已提交
566
			warn = 1;
567 568
			x->xflags &= ~XFRM_SOFT_EXPIRE;
		} else if (tmo < next) {
L
Linus Torvalds 已提交
569
			next = tmo;
570 571 572
			x->xflags |= XFRM_SOFT_EXPIRE;
			x->saved_tmo = tmo;
		}
L
Linus Torvalds 已提交
573 574 575 576 577 578 579 580 581 582
	}
	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;
	}

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

L
Linus Torvalds 已提交
592 593 594
	goto out;

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

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

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

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

609
static void xfrm_replay_timer_handler(struct timer_list *t);
610

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

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

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

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

645 646 647 648 649 650 651 652 653
	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 已提交
654 655 656
}
EXPORT_SYMBOL(__xfrm_state_destroy);

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

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

673 674
		xfrm_dev_state_delete(x);

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

	return err;
L
Linus Torvalds 已提交
684
}
685
EXPORT_SYMBOL(__xfrm_state_delete);
L
Linus Torvalds 已提交
686

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

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

	return err;
L
Linus Torvalds 已提交
696 697 698
}
EXPORT_SYMBOL(xfrm_state_delete);

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

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

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

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

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;
}
742 743
#else
static inline int
744
xfrm_state_flush_secctx_check(struct net *net, u8 proto, bool task_valid)
745 746 747
{
	return 0;
}
748 749 750 751 752 753

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

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

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

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

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

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

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

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

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

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 886 887
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;
}

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

903
	x->id = tmpl->id;
904

905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
	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;
	}
921

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

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

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

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

	return NULL;
}

952 953 954 955
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)
956
{
957
	unsigned int h = xfrm_src_hash(net, daddr, saddr, family);
958 959
	struct xfrm_state *x;

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

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

	return NULL;
}

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

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

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

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

1056 1057
	to_put = NULL;

1058 1059
	sequence = read_seqcount_begin(&xfrm_state_hash_generation);

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

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

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

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

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

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

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

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

L
Linus Torvalds 已提交
1179 1180 1181
	return x;
}

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

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


	return rx;
}
EXPORT_SYMBOL(xfrm_stateonly_find);

1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
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);
1230
		spin_unlock_bh(&net->xfrm.xfrm_state_lock);
1231 1232 1233 1234 1235 1236 1237
		return x;
	}
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);
	return NULL;
}
EXPORT_SYMBOL(xfrm_state_lookup_byspi);

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

1243
	list_add(&x->km.all, &net->xfrm.state_all);
1244

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

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

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

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

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

1263
	net->xfrm.state_num++;
1264

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

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

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

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

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

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

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

		xfrm_state_hold(x);
		return x;
	}

	if (!create)
		return NULL;

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

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

1374
		net->xfrm.state_num++;
1375

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

	return x;
}

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

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

	family = x->props.family;

1395 1396
	to_put = NULL;

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

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

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

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

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

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

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

1433 1434 1435
	if (to_put)
		xfrm_state_put(to_put);

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

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

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

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

1485 1486 1487 1488 1489 1490 1491 1492
	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);

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

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

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

1509 1510
	memcpy(&x->mark, &orig->mark, sizeof(x->mark));

1511
	if (xfrm_init_state(x) < 0)
1512 1513 1514
		goto error;

	x->props.flags = orig->props.flags;
1515
	x->props.extra_flags = orig->props.extra_flags;
1516

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

	return x;

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

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

	spin_lock_bh(&net->xfrm.xfrm_state_lock);
1541 1542

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

1576 1577 1578
	spin_unlock_bh(&net->xfrm.xfrm_state_lock);

	return x;
1579 1580 1581
}
EXPORT_SYMBOL(xfrm_migrate_state_find);

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

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

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

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

1620 1621
	to_put = NULL;

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

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

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

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

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

1644 1645 1646
	if (to_put)
		xfrm_state_put(to_put);

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

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

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

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

1681 1682 1683 1684 1685
			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;
1686 1687 1688 1689 1690

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

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

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

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

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

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

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

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

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

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

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

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

1769
#ifdef CONFIG_XFRM_SUB_POLICY
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 1865 1866
#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
1867
xfrm_tmpl_sort(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n,
1868
	       unsigned short family)
1869
{
1870
	int i;
1871

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

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

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

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

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

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

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

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

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

u32 xfrm_get_acqseq(void)
{
	u32 res;
1930 1931 1932 1933 1934
	static atomic_t acqseq;

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

	return res;
}
EXPORT_SYMBOL(xfrm_get_acqseq);

1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963
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);

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

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

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

	err = -ENOENT;
L
Linus Torvalds 已提交
1983 1984

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

		err = 0;
L
Linus Torvalds 已提交
2010
	}
2011 2012 2013 2014 2015

unlock:
	spin_unlock_bh(&x->lock);

	return err;
L
Linus Torvalds 已提交
2016 2017 2018
}
EXPORT_SYMBOL(xfrm_alloc_spi);

2019
static bool __xfrm_state_filter_match(struct xfrm_state *x,
2020
				      struct xfrm_address_filter *filter)
2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035
{
	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;
}

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

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

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

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

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

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

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

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

	spin_lock(&x->lock);

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

	spin_unlock(&x->lock);
}

2118
static LIST_HEAD(xfrm_km_list);
L
Linus Torvalds 已提交
2119

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

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

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

EXPORT_SYMBOL(km_policy_notify);
EXPORT_SYMBOL(km_state_notify);

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

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

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

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

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

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

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

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

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

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

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

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

2247
static bool km_is_alive(const struct km_event *c)
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
{
	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 已提交
2264 2265 2266 2267 2268 2269 2270
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;

2271 2272 2273
	if (in_compat_syscall())
		return -EOPNOTSUPP;

2274 2275 2276 2277 2278 2279 2280
	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 已提交
2281 2282 2283
	if (optlen <= 0 || optlen > PAGE_SIZE)
		return -EMSGSIZE;

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

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

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

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

2310 2311
static DEFINE_SPINLOCK(xfrm_km_lock);

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

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

int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo)
{
	int err = 0;
2334 2335

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

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

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

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

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

2368 2369 2370 2371 2372 2373 2374
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]);
}
2375
EXPORT_SYMBOL_GPL(xfrm_state_afinfo_get_rcu);
2376

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

2389 2390 2391 2392 2393 2394
void xfrm_flush_gc(void)
{
	flush_work(&xfrm_state_gc_work);
}
EXPORT_SYMBOL(xfrm_flush_gc);

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

2410
u32 xfrm_state_mtu(struct xfrm_state *x, int mtu)
L
Linus Torvalds 已提交
2411
{
2412
	const struct xfrm_type *type = READ_ONCE(x->type);
2413 2414 2415 2416 2417 2418 2419 2420 2421
	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 已提交
2422

2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436
	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;
	}
2437

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

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

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

	err = -EPROTONOSUPPORT;
2455

2456 2457 2458 2459 2460 2461
	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 已提交
2462
		    family != x->sel.family)
2463 2464
			goto error;

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

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

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

2477
		x->inner_mode = *inner_mode;
2478

2479 2480
		if (x->props.family == AF_INET)
			iafamily = AF_INET6;
2481

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

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

2493
	x->type_offload = xfrm_get_type_offload(x->id.proto, family, offload);
2494

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

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

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

H
Herbert Xu 已提交
2512 2513 2514 2515
error:
	return err;
}

2516 2517 2518 2519
EXPORT_SYMBOL(__xfrm_init_state);

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

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

	return err;
2527 2528
}

H
Herbert Xu 已提交
2529
EXPORT_SYMBOL(xfrm_init_state);
2530

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

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

2539 2540
	INIT_LIST_HEAD(&net->xfrm.state_all);

2541 2542
	sz = sizeof(struct hlist_head) * 8;

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

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

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

void xfrm_state_fini(struct net *net)
{
2569 2570
	unsigned int sz;

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

2575
	WARN_ON(!list_empty(&net->xfrm.state_all));
2576

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

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

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

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

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

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

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

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

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

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

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

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

2681
void xfrm_audit_state_replay(struct xfrm_state *x,
P
Paul Moore 已提交
2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
			     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);
}
2696
EXPORT_SYMBOL_GPL(xfrm_audit_state_replay);
P
Paul Moore 已提交
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 2744 2745

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