tls_main.c 17.3 KB
Newer Older
D
Dave Watson 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/*
 * Copyright (c) 2016-2017, Mellanox Technologies. All rights reserved.
 * Copyright (c) 2016-2017, Dave Watson <davejwatson@fb.com>. All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include <linux/module.h>

#include <net/tcp.h>
#include <net/inet_common.h>
#include <linux/highmem.h>
#include <linux/netdevice.h>
#include <linux/sched/signal.h>
A
Atul Gupta 已提交
41
#include <linux/inetdevice.h>
D
Dave Watson 已提交
42 43 44 45 46 47

#include <net/tls.h>

MODULE_AUTHOR("Mellanox Technologies");
MODULE_DESCRIPTION("Transport Layer Security Support");
MODULE_LICENSE("Dual BSD/GPL");
48
MODULE_ALIAS_TCP_ULP("tls");
D
Dave Watson 已提交
49

50 51 52 53 54
enum {
	TLSV4,
	TLSV6,
	TLS_NUM_PROTS,
};
55

56 57
static struct proto *saved_tcpv6_prot;
static DEFINE_MUTEX(tcpv6_prot_mutex);
58 59
static struct proto *saved_tcpv4_prot;
static DEFINE_MUTEX(tcpv4_prot_mutex);
A
Atul Gupta 已提交
60 61
static LIST_HEAD(device_list);
static DEFINE_MUTEX(device_mutex);
B
Boris Pismenny 已提交
62
static struct proto tls_prots[TLS_NUM_PROTS][TLS_NUM_CONFIG][TLS_NUM_CONFIG];
D
Dave Watson 已提交
63
static struct proto_ops tls_sw_proto_ops;
64

B
Boris Pismenny 已提交
65
static void update_sk_prot(struct sock *sk, struct tls_context *ctx)
66
{
67 68
	int ip_ver = sk->sk_family == AF_INET6 ? TLSV6 : TLSV4;

B
Boris Pismenny 已提交
69
	sk->sk_prot = &tls_prots[ip_ver][ctx->tx_conf][ctx->rx_conf];
70
}
D
Dave Watson 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

int wait_on_pending_writer(struct sock *sk, long *timeo)
{
	int rc = 0;
	DEFINE_WAIT_FUNC(wait, woken_wake_function);

	add_wait_queue(sk_sleep(sk), &wait);
	while (1) {
		if (!*timeo) {
			rc = -EAGAIN;
			break;
		}

		if (signal_pending(current)) {
			rc = sock_intr_errno(*timeo);
			break;
		}

		if (sk_wait_event(sk, timeo, !sk->sk_write_pending, &wait))
			break;
	}
	remove_wait_queue(sk_sleep(sk), &wait);
	return rc;
}

int tls_push_sg(struct sock *sk,
		struct tls_context *ctx,
		struct scatterlist *sg,
		u16 first_offset,
		int flags)
{
	int sendpage_flags = flags | MSG_SENDPAGE_NOTLAST;
	int ret = 0;
	struct page *p;
	size_t size;
	int offset = first_offset;

	size = sg->length - offset;
	offset += sg->offset;

111
	ctx->in_tcp_sendpages = true;
D
Dave Watson 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
	while (1) {
		if (sg_is_last(sg))
			sendpage_flags = flags;

		/* is sending application-limited? */
		tcp_rate_check_app_limited(sk);
		p = sg_page(sg);
retry:
		ret = do_tcp_sendpages(sk, p, offset, size, sendpage_flags);

		if (ret != size) {
			if (ret > 0) {
				offset += ret;
				size -= ret;
				goto retry;
			}

			offset -= sg->offset;
			ctx->partially_sent_offset = offset;
			ctx->partially_sent_record = (void *)sg;
132
			ctx->in_tcp_sendpages = false;
D
Dave Watson 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145
			return ret;
		}

		put_page(p);
		sk_mem_uncharge(sk, sg->length);
		sg = sg_next(sg);
		if (!sg)
			break;

		offset = sg->offset;
		size = sg->length;
	}

146 147
	ctx->in_tcp_sendpages = false;
	ctx->sk_write_space(sk);
D
Dave Watson 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196

	return 0;
}

static int tls_handle_open_record(struct sock *sk, int flags)
{
	struct tls_context *ctx = tls_get_ctx(sk);

	if (tls_is_pending_open_record(ctx))
		return ctx->push_pending_record(sk, flags);

	return 0;
}

int tls_proccess_cmsg(struct sock *sk, struct msghdr *msg,
		      unsigned char *record_type)
{
	struct cmsghdr *cmsg;
	int rc = -EINVAL;

	for_each_cmsghdr(cmsg, msg) {
		if (!CMSG_OK(msg, cmsg))
			return -EINVAL;
		if (cmsg->cmsg_level != SOL_TLS)
			continue;

		switch (cmsg->cmsg_type) {
		case TLS_SET_RECORD_TYPE:
			if (cmsg->cmsg_len < CMSG_LEN(sizeof(*record_type)))
				return -EINVAL;

			if (msg->msg_flags & MSG_MORE)
				return -EINVAL;

			rc = tls_handle_open_record(sk, msg->msg_flags);
			if (rc)
				return rc;

			*record_type = *(unsigned char *)CMSG_DATA(cmsg);
			rc = 0;
			break;
		default:
			return -EINVAL;
		}
	}

	return rc;
}

197 198
int tls_push_partial_record(struct sock *sk, struct tls_context *ctx,
			    int flags)
D
Dave Watson 已提交
199 200 201 202 203 204 205 206 207 208 209
{
	struct scatterlist *sg;
	u16 offset;

	sg = ctx->partially_sent_record;
	offset = ctx->partially_sent_offset;

	ctx->partially_sent_record = NULL;
	return tls_push_sg(sk, ctx, sg, offset, flags);
}

210 211 212 213 214 215 216
int tls_push_pending_closed_record(struct sock *sk,
				   struct tls_context *tls_ctx,
				   int flags, long *timeo)
{
	struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx);

	if (tls_is_partially_sent_record(tls_ctx) ||
217
	    !list_empty(&ctx->tx_list))
218 219 220 221 222
		return tls_tx_records(sk, flags);
	else
		return tls_ctx->push_pending_record(sk, flags);
}

D
Dave Watson 已提交
223 224 225
static void tls_write_space(struct sock *sk)
{
	struct tls_context *ctx = tls_get_ctx(sk);
226
	struct tls_sw_context_tx *tx_ctx = tls_sw_ctx_tx(ctx);
D
Dave Watson 已提交
227

228 229 230 231 232 233
	/* If in_tcp_sendpages call lower protocol write space handler
	 * to ensure we wake up any waiting operations there. For example
	 * if do_tcp_sendpages where to call sk_wait_event.
	 */
	if (ctx->in_tcp_sendpages) {
		ctx->sk_write_space(sk);
234
		return;
235
	}
236

237
	/* Schedule the transmission if tx list is ready */
238
	if (is_tx_ready(tx_ctx) && !sk->sk_write_pending) {
239 240 241
		/* Schedule the transmission */
		if (!test_and_set_bit(BIT_TX_SCHEDULED, &tx_ctx->tx_bitmask))
			schedule_delayed_work(&tx_ctx->tx_work.work, 0);
D
Dave Watson 已提交
242 243 244 245 246
	}

	ctx->sk_write_space(sk);
}

247 248 249 250 251 252 253 254 255 256
static void tls_ctx_free(struct tls_context *ctx)
{
	if (!ctx)
		return;

	memzero_explicit(&ctx->crypto_send, sizeof(ctx->crypto_send));
	memzero_explicit(&ctx->crypto_recv, sizeof(ctx->crypto_recv));
	kfree(ctx);
}

D
Dave Watson 已提交
257 258 259 260 261
static void tls_sk_proto_close(struct sock *sk, long timeout)
{
	struct tls_context *ctx = tls_get_ctx(sk);
	long timeo = sock_sndtimeo(sk, 0);
	void (*sk_proto_close)(struct sock *sk, long timeout);
262
	bool free_ctx = false;
D
Dave Watson 已提交
263 264

	lock_sock(sk);
265 266
	sk_proto_close = ctx->sk_proto_close;

267 268
	if ((ctx->tx_conf == TLS_HW_RECORD && ctx->rx_conf == TLS_HW_RECORD) ||
	    (ctx->tx_conf == TLS_BASE && ctx->rx_conf == TLS_BASE)) {
269
		free_ctx = true;
270 271
		goto skip_tx_cleanup;
	}
D
Dave Watson 已提交
272 273 274 275

	if (!tls_complete_pending_work(sk, ctx, 0, &timeo))
		tls_handle_open_record(sk, 0);

B
Boris Pismenny 已提交
276 277 278 279 280 281
	/* We need these for tls_sw_fallback handling of other packets */
	if (ctx->tx_conf == TLS_SW) {
		kfree(ctx->tx.rec_seq);
		kfree(ctx->tx.iv);
		tls_sw_free_resources_tx(sk);
	}
D
Dave Watson 已提交
282

B
Boris Pismenny 已提交
283 284 285 286
	if (ctx->rx_conf == TLS_SW) {
		kfree(ctx->rx.rec_seq);
		kfree(ctx->rx.iv);
		tls_sw_free_resources_rx(sk);
D
Dave Watson 已提交
287
	}
D
Dave Watson 已提交
288

289
#ifdef CONFIG_TLS_DEVICE
290 291 292 293
	if (ctx->rx_conf == TLS_HW)
		tls_device_offload_cleanup_rx(sk);

	if (ctx->tx_conf != TLS_HW && ctx->rx_conf != TLS_HW) {
294 295 296
#else
	{
#endif
297
		tls_ctx_free(ctx);
298 299 300
		ctx = NULL;
	}

301
skip_tx_cleanup:
D
Dave Watson 已提交
302 303
	release_sock(sk);
	sk_proto_close(sk, timeout);
A
Atul Gupta 已提交
304 305 306
	/* free ctx for TLS_HW_RECORD, used by tcp_set_state
	 * for sk->sk_prot->unhash [tls_hw_unhash]
	 */
307
	if (free_ctx)
308
		tls_ctx_free(ctx);
D
Dave Watson 已提交
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
}

static int do_tls_getsockopt_tx(struct sock *sk, char __user *optval,
				int __user *optlen)
{
	int rc = 0;
	struct tls_context *ctx = tls_get_ctx(sk);
	struct tls_crypto_info *crypto_info;
	int len;

	if (get_user(len, optlen))
		return -EFAULT;

	if (!optval || (len < sizeof(*crypto_info))) {
		rc = -EINVAL;
		goto out;
	}

	if (!ctx) {
		rc = -EBUSY;
		goto out;
	}

	/* get user crypto info */
333
	crypto_info = &ctx->crypto_send.info;
D
Dave Watson 已提交
334 335 336 337 338 339

	if (!TLS_CRYPTO_INFO_READY(crypto_info)) {
		rc = -EBUSY;
		goto out;
	}

340
	if (len == sizeof(*crypto_info)) {
341 342
		if (copy_to_user(optval, crypto_info, sizeof(*crypto_info)))
			rc = -EFAULT;
D
Dave Watson 已提交
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
		goto out;
	}

	switch (crypto_info->cipher_type) {
	case TLS_CIPHER_AES_GCM_128: {
		struct tls12_crypto_info_aes_gcm_128 *
		  crypto_info_aes_gcm_128 =
		  container_of(crypto_info,
			       struct tls12_crypto_info_aes_gcm_128,
			       info);

		if (len != sizeof(*crypto_info_aes_gcm_128)) {
			rc = -EINVAL;
			goto out;
		}
		lock_sock(sk);
359
		memcpy(crypto_info_aes_gcm_128->iv,
360
		       ctx->tx.iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE,
D
Dave Watson 已提交
361
		       TLS_CIPHER_AES_GCM_128_IV_SIZE);
362
		memcpy(crypto_info_aes_gcm_128->rec_seq, ctx->tx.rec_seq,
363
		       TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
D
Dave Watson 已提交
364
		release_sock(sk);
365 366 367 368
		if (copy_to_user(optval,
				 crypto_info_aes_gcm_128,
				 sizeof(*crypto_info_aes_gcm_128)))
			rc = -EFAULT;
D
Dave Watson 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
		break;
	}
	default:
		rc = -EINVAL;
	}

out:
	return rc;
}

static int do_tls_getsockopt(struct sock *sk, int optname,
			     char __user *optval, int __user *optlen)
{
	int rc = 0;

	switch (optname) {
	case TLS_TX:
		rc = do_tls_getsockopt_tx(sk, optval, optlen);
		break;
	default:
		rc = -ENOPROTOOPT;
		break;
	}
	return rc;
}

static int tls_getsockopt(struct sock *sk, int level, int optname,
			  char __user *optval, int __user *optlen)
{
	struct tls_context *ctx = tls_get_ctx(sk);

	if (level != SOL_TLS)
		return ctx->getsockopt(sk, level, optname, optval, optlen);

	return do_tls_getsockopt(sk, optname, optval, optlen);
}

D
Dave Watson 已提交
406 407
static int do_tls_setsockopt_conf(struct sock *sk, char __user *optval,
				  unsigned int optlen, int tx)
D
Dave Watson 已提交
408
{
409
	struct tls_crypto_info *crypto_info;
D
Dave Watson 已提交
410 411
	struct tls_context *ctx = tls_get_ctx(sk);
	int rc = 0;
D
Dave Watson 已提交
412
	int conf;
D
Dave Watson 已提交
413 414 415 416 417 418

	if (!optval || (optlen < sizeof(*crypto_info))) {
		rc = -EINVAL;
		goto out;
	}

D
Dave Watson 已提交
419
	if (tx)
420
		crypto_info = &ctx->crypto_send.info;
D
Dave Watson 已提交
421
	else
422
		crypto_info = &ctx->crypto_recv.info;
D
Dave Watson 已提交
423

424
	/* Currently we don't support set crypto info more than one time */
425 426
	if (TLS_CRYPTO_INFO_READY(crypto_info)) {
		rc = -EBUSY;
427
		goto out;
428
	}
429 430

	rc = copy_from_user(crypto_info, optval, sizeof(*crypto_info));
D
Dave Watson 已提交
431 432
	if (rc) {
		rc = -EFAULT;
433
		goto err_crypto_info;
D
Dave Watson 已提交
434 435 436
	}

	/* check version */
437
	if (crypto_info->version != TLS_1_2_VERSION) {
D
Dave Watson 已提交
438
		rc = -ENOTSUPP;
439
		goto err_crypto_info;
D
Dave Watson 已提交
440 441
	}

442
	switch (crypto_info->cipher_type) {
D
Dave Watson 已提交
443 444 445
	case TLS_CIPHER_AES_GCM_128: {
		if (optlen != sizeof(struct tls12_crypto_info_aes_gcm_128)) {
			rc = -EINVAL;
446
			goto err_crypto_info;
D
Dave Watson 已提交
447
		}
448 449
		rc = copy_from_user(crypto_info + 1, optval + sizeof(*crypto_info),
				    optlen - sizeof(*crypto_info));
D
Dave Watson 已提交
450 451 452 453 454 455 456 457
		if (rc) {
			rc = -EFAULT;
			goto err_crypto_info;
		}
		break;
	}
	default:
		rc = -EINVAL;
458
		goto err_crypto_info;
D
Dave Watson 已提交
459 460
	}

D
Dave Watson 已提交
461
	if (tx) {
462 463 464 465 466 467 468 469 470 471
#ifdef CONFIG_TLS_DEVICE
		rc = tls_set_device_offload(sk, ctx);
		conf = TLS_HW;
		if (rc) {
#else
		{
#endif
			rc = tls_set_sw_offload(sk, ctx, 1);
			conf = TLS_SW;
		}
D
Dave Watson 已提交
472
	} else {
473 474 475 476 477 478 479 480 481 482
#ifdef CONFIG_TLS_DEVICE
		rc = tls_set_device_offload_rx(sk, ctx);
		conf = TLS_HW;
		if (rc) {
#else
		{
#endif
			rc = tls_set_sw_offload(sk, ctx, 0);
			conf = TLS_SW;
		}
D
Dave Watson 已提交
483 484
	}

D
Dave Watson 已提交
485 486 487
	if (rc)
		goto err_crypto_info;

B
Boris Pismenny 已提交
488 489 490 491
	if (tx)
		ctx->tx_conf = conf;
	else
		ctx->rx_conf = conf;
492
	update_sk_prot(sk, ctx);
D
Dave Watson 已提交
493 494 495 496 497 498
	if (tx) {
		ctx->sk_write_space = sk->sk_write_space;
		sk->sk_write_space = tls_write_space;
	} else {
		sk->sk_socket->ops = &tls_sw_proto_ops;
	}
D
Dave Watson 已提交
499 500 501
	goto out;

err_crypto_info:
502
	memzero_explicit(crypto_info, sizeof(union tls_crypto_context));
D
Dave Watson 已提交
503 504 505 506 507 508 509 510 511 512 513
out:
	return rc;
}

static int do_tls_setsockopt(struct sock *sk, int optname,
			     char __user *optval, unsigned int optlen)
{
	int rc = 0;

	switch (optname) {
	case TLS_TX:
D
Dave Watson 已提交
514
	case TLS_RX:
D
Dave Watson 已提交
515
		lock_sock(sk);
D
Dave Watson 已提交
516 517
		rc = do_tls_setsockopt_conf(sk, optval, optlen,
					    optname == TLS_TX);
D
Dave Watson 已提交
518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
		release_sock(sk);
		break;
	default:
		rc = -ENOPROTOOPT;
		break;
	}
	return rc;
}

static int tls_setsockopt(struct sock *sk, int level, int optname,
			  char __user *optval, unsigned int optlen)
{
	struct tls_context *ctx = tls_get_ctx(sk);

	if (level != SOL_TLS)
		return ctx->setsockopt(sk, level, optname, optval, optlen);

	return do_tls_setsockopt(sk, optname, optval, optlen);
}

A
Atul Gupta 已提交
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
static struct tls_context *create_ctx(struct sock *sk)
{
	struct inet_connection_sock *icsk = inet_csk(sk);
	struct tls_context *ctx;

	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
	if (!ctx)
		return NULL;

	icsk->icsk_ulp_data = ctx;
	return ctx;
}

static int tls_hw_prot(struct sock *sk)
{
	struct tls_context *ctx;
	struct tls_device *dev;
	int rc = 0;

	mutex_lock(&device_mutex);
	list_for_each_entry(dev, &device_list, dev_list) {
		if (dev->feature && dev->feature(dev)) {
			ctx = create_ctx(sk);
			if (!ctx)
				goto out;

			ctx->hash = sk->sk_prot->hash;
			ctx->unhash = sk->sk_prot->unhash;
			ctx->sk_proto_close = sk->sk_prot->close;
B
Boris Pismenny 已提交
567 568
			ctx->rx_conf = TLS_HW_RECORD;
			ctx->tx_conf = TLS_HW_RECORD;
A
Atul Gupta 已提交
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
			update_sk_prot(sk, ctx);
			rc = 1;
			break;
		}
	}
out:
	mutex_unlock(&device_mutex);
	return rc;
}

static void tls_hw_unhash(struct sock *sk)
{
	struct tls_context *ctx = tls_get_ctx(sk);
	struct tls_device *dev;

	mutex_lock(&device_mutex);
	list_for_each_entry(dev, &device_list, dev_list) {
		if (dev->unhash)
			dev->unhash(dev, sk);
	}
	mutex_unlock(&device_mutex);
	ctx->unhash(sk);
}

static int tls_hw_hash(struct sock *sk)
{
	struct tls_context *ctx = tls_get_ctx(sk);
	struct tls_device *dev;
	int err;

	err = ctx->hash(sk);
	mutex_lock(&device_mutex);
	list_for_each_entry(dev, &device_list, dev_list) {
		if (dev->hash)
			err |= dev->hash(dev, sk);
	}
	mutex_unlock(&device_mutex);

	if (err)
		tls_hw_unhash(sk);
	return err;
}

B
Boris Pismenny 已提交
612 613
static void build_protos(struct proto prot[TLS_NUM_CONFIG][TLS_NUM_CONFIG],
			 struct proto *base)
614
{
B
Boris Pismenny 已提交
615 616 617 618 619 620 621 622 623 624
	prot[TLS_BASE][TLS_BASE] = *base;
	prot[TLS_BASE][TLS_BASE].setsockopt	= tls_setsockopt;
	prot[TLS_BASE][TLS_BASE].getsockopt	= tls_getsockopt;
	prot[TLS_BASE][TLS_BASE].close		= tls_sk_proto_close;

	prot[TLS_SW][TLS_BASE] = prot[TLS_BASE][TLS_BASE];
	prot[TLS_SW][TLS_BASE].sendmsg		= tls_sw_sendmsg;
	prot[TLS_SW][TLS_BASE].sendpage		= tls_sw_sendpage;

	prot[TLS_BASE][TLS_SW] = prot[TLS_BASE][TLS_BASE];
625 626 627
	prot[TLS_BASE][TLS_SW].recvmsg		  = tls_sw_recvmsg;
	prot[TLS_BASE][TLS_SW].stream_memory_read = tls_sw_stream_read;
	prot[TLS_BASE][TLS_SW].close		  = tls_sk_proto_close;
B
Boris Pismenny 已提交
628 629

	prot[TLS_SW][TLS_SW] = prot[TLS_SW][TLS_BASE];
630 631 632
	prot[TLS_SW][TLS_SW].recvmsg		= tls_sw_recvmsg;
	prot[TLS_SW][TLS_SW].stream_memory_read	= tls_sw_stream_read;
	prot[TLS_SW][TLS_SW].close		= tls_sk_proto_close;
B
Boris Pismenny 已提交
633

634 635 636 637 638 639 640 641
#ifdef CONFIG_TLS_DEVICE
	prot[TLS_HW][TLS_BASE] = prot[TLS_BASE][TLS_BASE];
	prot[TLS_HW][TLS_BASE].sendmsg		= tls_device_sendmsg;
	prot[TLS_HW][TLS_BASE].sendpage		= tls_device_sendpage;

	prot[TLS_HW][TLS_SW] = prot[TLS_BASE][TLS_SW];
	prot[TLS_HW][TLS_SW].sendmsg		= tls_device_sendmsg;
	prot[TLS_HW][TLS_SW].sendpage		= tls_device_sendpage;
642 643 644 645 646 647

	prot[TLS_BASE][TLS_HW] = prot[TLS_BASE][TLS_SW];

	prot[TLS_SW][TLS_HW] = prot[TLS_SW][TLS_SW];

	prot[TLS_HW][TLS_HW] = prot[TLS_HW][TLS_SW];
648 649
#endif

B
Boris Pismenny 已提交
650 651 652 653
	prot[TLS_HW_RECORD][TLS_HW_RECORD] = *base;
	prot[TLS_HW_RECORD][TLS_HW_RECORD].hash		= tls_hw_hash;
	prot[TLS_HW_RECORD][TLS_HW_RECORD].unhash	= tls_hw_unhash;
	prot[TLS_HW_RECORD][TLS_HW_RECORD].close	= tls_sk_proto_close;
654 655
}

D
Dave Watson 已提交
656 657
static int tls_init(struct sock *sk)
{
658
	int ip_ver = sk->sk_family == AF_INET6 ? TLSV6 : TLSV4;
D
Dave Watson 已提交
659 660 661
	struct tls_context *ctx;
	int rc = 0;

A
Atul Gupta 已提交
662 663 664
	if (tls_hw_prot(sk))
		goto out;

665 666 667 668 669 670 671 672 673
	/* The TLS ulp is currently supported only for TCP sockets
	 * in ESTABLISHED state.
	 * Supporting sockets in LISTEN state will require us
	 * to modify the accept implementation to clone rather then
	 * share the ulp context.
	 */
	if (sk->sk_state != TCP_ESTABLISHED)
		return -ENOTSUPP;

D
Dave Watson 已提交
674
	/* allocate tls context */
A
Atul Gupta 已提交
675
	ctx = create_ctx(sk);
D
Dave Watson 已提交
676 677 678 679 680 681
	if (!ctx) {
		rc = -ENOMEM;
		goto out;
	}
	ctx->setsockopt = sk->sk_prot->setsockopt;
	ctx->getsockopt = sk->sk_prot->getsockopt;
682
	ctx->sk_proto_close = sk->sk_prot->close;
683

684
	/* Build IPv6 TLS whenever the address of tcpv6	_prot changes */
685 686 687 688 689 690 691 692 693 694
	if (ip_ver == TLSV6 &&
	    unlikely(sk->sk_prot != smp_load_acquire(&saved_tcpv6_prot))) {
		mutex_lock(&tcpv6_prot_mutex);
		if (likely(sk->sk_prot != saved_tcpv6_prot)) {
			build_protos(tls_prots[TLSV6], sk->sk_prot);
			smp_store_release(&saved_tcpv6_prot, sk->sk_prot);
		}
		mutex_unlock(&tcpv6_prot_mutex);
	}

695 696 697 698 699 700 701 702 703 704
	if (ip_ver == TLSV4 &&
	    unlikely(sk->sk_prot != smp_load_acquire(&saved_tcpv4_prot))) {
		mutex_lock(&tcpv4_prot_mutex);
		if (likely(sk->sk_prot != saved_tcpv4_prot)) {
			build_protos(tls_prots[TLSV4], sk->sk_prot);
			smp_store_release(&saved_tcpv4_prot, sk->sk_prot);
		}
		mutex_unlock(&tcpv4_prot_mutex);
	}

B
Boris Pismenny 已提交
705 706
	ctx->tx_conf = TLS_BASE;
	ctx->rx_conf = TLS_BASE;
707
	update_sk_prot(sk, ctx);
D
Dave Watson 已提交
708 709 710 711
out:
	return rc;
}

A
Atul Gupta 已提交
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
void tls_register_device(struct tls_device *device)
{
	mutex_lock(&device_mutex);
	list_add_tail(&device->dev_list, &device_list);
	mutex_unlock(&device_mutex);
}
EXPORT_SYMBOL(tls_register_device);

void tls_unregister_device(struct tls_device *device)
{
	mutex_lock(&device_mutex);
	list_del(&device->dev_list);
	mutex_unlock(&device_mutex);
}
EXPORT_SYMBOL(tls_unregister_device);

D
Dave Watson 已提交
728 729 730 731 732 733 734 735
static struct tcp_ulp_ops tcp_tls_ulp_ops __read_mostly = {
	.name			= "tls",
	.owner			= THIS_MODULE,
	.init			= tls_init,
};

static int __init tls_register(void)
{
D
Dave Watson 已提交
736 737 738
	tls_sw_proto_ops = inet_stream_ops;
	tls_sw_proto_ops.splice_read = tls_sw_splice_read;

739 740 741
#ifdef CONFIG_TLS_DEVICE
	tls_device_init();
#endif
D
Dave Watson 已提交
742 743 744 745 746 747 748 749
	tcp_register_ulp(&tcp_tls_ulp_ops);

	return 0;
}

static void __exit tls_unregister(void)
{
	tcp_unregister_ulp(&tcp_tls_ulp_ops);
750 751 752
#ifdef CONFIG_TLS_DEVICE
	tls_device_cleanup();
#endif
D
Dave Watson 已提交
753 754 755 756
}

module_init(tls_register);
module_exit(tls_unregister);