summaryrefslogtreecommitdiffstats
path: root/lib/libssl/tls13_server.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2019-11-17 06:35:30 +0000
committerjsing <jsing@openbsd.org>2019-11-17 06:35:30 +0000
commit8630be8620c03e6ca68c645367d7f98e89c059e7 (patch)
tree71be28befdd227b0a8ee35c709e58183b509b311 /lib/libssl/tls13_server.c
parenttls13_connect() should be static. (diff)
downloadwireguard-openbsd-8630be8620c03e6ca68c645367d7f98e89c059e7.tar.xz
wireguard-openbsd-8630be8620c03e6ca68c645367d7f98e89c059e7.zip
Add the initial framework for the TLSv1.3 server.
ok beck@
Diffstat (limited to 'lib/libssl/tls13_server.c')
-rw-r--r--lib/libssl/tls13_server.c79
1 files changed, 79 insertions, 0 deletions
diff --git a/lib/libssl/tls13_server.c b/lib/libssl/tls13_server.c
new file mode 100644
index 00000000000..8d484fcb459
--- /dev/null
+++ b/lib/libssl/tls13_server.c
@@ -0,0 +1,79 @@
+/* $OpenBSD: tls13_server.c,v 1.1 2019/11/17 06:35:30 jsing Exp $ */
+/*
+ * Copyright (c) 2019 Joel Sing <jsing@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "ssl_locl.h"
+
+#include "tls13_handshake.h"
+#include "tls13_internal.h"
+
+static int
+tls13_accept(struct tls13_ctx *ctx)
+{
+ if (ctx->mode != TLS13_HS_SERVER)
+ return TLS13_IO_FAILURE;
+
+ return tls13_handshake_perform(ctx);
+}
+
+static int
+tls13_server_init(struct tls13_ctx *ctx)
+{
+ SSL *s = ctx->ssl;
+
+ if (!ssl_supported_version_range(s, &ctx->hs->min_version,
+ &ctx->hs->max_version)) {
+ SSLerror(s, SSL_R_NO_PROTOCOLS_AVAILABLE);
+ return 0;
+ }
+
+ /* XXX implement. */
+
+ return 1;
+}
+
+int
+tls13_legacy_accept(SSL *ssl)
+{
+ struct tls13_ctx *ctx = ssl->internal->tls13;
+ int ret;
+
+ if (ctx == NULL) {
+ if ((ctx = tls13_ctx_new(TLS13_HS_SERVER)) == NULL) {
+ SSLerror(ssl, ERR_R_INTERNAL_ERROR); /* XXX */
+ return -1;
+ }
+ ssl->internal->tls13 = ctx;
+ ctx->ssl = ssl;
+ ctx->hs = &S3I(ssl)->hs_tls13;
+
+ if (!tls13_server_init(ctx)) {
+ if (ERR_peek_error() == 0)
+ SSLerror(ssl, ERR_R_INTERNAL_ERROR); /* XXX */
+ return -1;
+ }
+ }
+
+ S3I(ssl)->hs.state = SSL_ST_ACCEPT;
+
+ ret = tls13_accept(ctx);
+ if (ret == TLS13_IO_USE_LEGACY)
+ return ssl->method->internal->ssl_accept(ssl);
+ if (ret == TLS13_IO_SUCCESS)
+ S3I(ssl)->hs.state = SSL_ST_OK;
+
+ return tls13_legacy_return_code(ssl, ret);
+}