blob: f13d766d7247b28422ec378b314e386a4be4251e [file] [log] [blame]
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00001/* $OpenBSD: kexc25519.c,v 1.17 2019/01/21 10:40:11 djm Exp $ */
Damien Miller094003f2013-11-04 22:59:27 +11002/*
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +00003 * Copyright (c) 2019 Markus Friedl. All rights reserved.
Damien Miller094003f2013-11-04 22:59:27 +11004 * Copyright (c) 2010 Damien Miller. All rights reserved.
5 * Copyright (c) 2013 Aris Adamantiadis. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "includes.h"
29
30#include <sys/types.h>
31
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +000032#include <stdio.h>
Damien Miller094003f2013-11-04 22:59:27 +110033#include <string.h>
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +000034#include <signal.h>
Damien Miller094003f2013-11-04 22:59:27 +110035
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000036#include "sshkey.h"
Damien Miller094003f2013-11-04 22:59:27 +110037#include "kex.h"
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +000038#include "sshbuf.h"
Damien Millerb3051d02014-01-10 10:58:53 +110039#include "digest.h"
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000040#include "ssherr.h"
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +000041#include "ssh2.h"
Damien Miller094003f2013-11-04 22:59:27 +110042
43extern int crypto_scalarmult_curve25519(u_char a[CURVE25519_SIZE],
44 const u_char b[CURVE25519_SIZE], const u_char c[CURVE25519_SIZE])
Damien Miller686c7d92014-05-15 14:37:03 +100045 __attribute__((__bounded__(__minbytes__, 1, CURVE25519_SIZE)))
46 __attribute__((__bounded__(__minbytes__, 2, CURVE25519_SIZE)))
47 __attribute__((__bounded__(__minbytes__, 3, CURVE25519_SIZE)));
Damien Miller094003f2013-11-04 22:59:27 +110048
49void
50kexc25519_keygen(u_char key[CURVE25519_SIZE], u_char pub[CURVE25519_SIZE])
51{
52 static const u_char basepoint[CURVE25519_SIZE] = {9};
53
54 arc4random_buf(key, CURVE25519_SIZE);
55 crypto_scalarmult_curve25519(pub, key, basepoint);
56}
57
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000058int
djm@openbsd.orgdfd59162019-01-21 10:20:12 +000059kexc25519_shared_key_ext(const u_char key[CURVE25519_SIZE],
60 const u_char pub[CURVE25519_SIZE], struct sshbuf *out, int raw)
Damien Miller094003f2013-11-04 22:59:27 +110061{
62 u_char shared_key[CURVE25519_SIZE];
djm@openbsd.orgf3ebaff2019-01-21 09:49:37 +000063 u_char zero[CURVE25519_SIZE];
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000064 int r;
Damien Miller094003f2013-11-04 22:59:27 +110065
djm@openbsd.orgf3ebaff2019-01-21 09:49:37 +000066 crypto_scalarmult_curve25519(shared_key, key, pub);
67
68 /* Check for all-zero shared secret */
69 explicit_bzero(zero, CURVE25519_SIZE);
70 if (timingsafe_bcmp(zero, shared_key, CURVE25519_SIZE) == 0)
djm@openbsd.orgf9b78852015-03-26 07:00:04 +000071 return SSH_ERR_KEY_INVALID_EC_VALUE;
72
Damien Miller094003f2013-11-04 22:59:27 +110073#ifdef DEBUG_KEXECDH
74 dump_digest("shared secret", shared_key, CURVE25519_SIZE);
75#endif
djm@openbsd.orgdfd59162019-01-21 10:20:12 +000076 if (raw)
77 r = sshbuf_put(out, shared_key, CURVE25519_SIZE);
78 else
79 r = sshbuf_put_bignum2_bytes(out, shared_key, CURVE25519_SIZE);
Damien Miller1d2c4562014-02-04 11:18:20 +110080 explicit_bzero(shared_key, CURVE25519_SIZE);
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000081 return r;
Damien Miller094003f2013-11-04 22:59:27 +110082}
83
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000084int
djm@openbsd.orgdfd59162019-01-21 10:20:12 +000085kexc25519_shared_key(const u_char key[CURVE25519_SIZE],
86 const u_char pub[CURVE25519_SIZE], struct sshbuf *out)
87{
88 return kexc25519_shared_key_ext(key, pub, out, 0);
89}
90
91int
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +000092kex_c25519_keypair(struct kex *kex)
93{
94 struct sshbuf *buf = NULL;
95 u_char *cp = NULL;
96 int r;
97
98 if ((buf = sshbuf_new()) == NULL)
99 return SSH_ERR_ALLOC_FAIL;
100 if ((r = sshbuf_reserve(buf, CURVE25519_SIZE, &cp)) != 0)
101 goto out;
102 kexc25519_keygen(kex->c25519_client_key, cp);
103#ifdef DEBUG_KEXECDH
104 dump_digest("client public key c25519:", cp, CURVE25519_SIZE);
105#endif
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +0000106 kex->client_pub = buf;
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000107 buf = NULL;
108 out:
109 sshbuf_free(buf);
110 return r;
111}
112
113int
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000114kex_c25519_enc(struct kex *kex, const struct sshbuf *client_blob,
115 struct sshbuf **server_blobp, struct sshbuf **shared_secretp)
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000116{
117 struct sshbuf *server_blob = NULL;
118 struct sshbuf *buf = NULL;
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000119 const u_char *client_pub;
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000120 u_char *server_pub;
121 u_char server_key[CURVE25519_SIZE];
122 int r;
123
124 *server_blobp = NULL;
125 *shared_secretp = NULL;
126
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000127 if (sshbuf_len(client_blob) != CURVE25519_SIZE) {
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000128 r = SSH_ERR_SIGNATURE_INVALID;
129 goto out;
130 }
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000131 client_pub = sshbuf_ptr(client_blob);
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000132#ifdef DEBUG_KEXECDH
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000133 dump_digest("client public key 25519:", client_pub, CURVE25519_SIZE);
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000134#endif
135 /* allocate space for encrypted KEM key and ECDH pub key */
136 if ((server_blob = sshbuf_new()) == NULL) {
137 r = SSH_ERR_ALLOC_FAIL;
138 goto out;
139 }
140 if ((r = sshbuf_reserve(server_blob, CURVE25519_SIZE, &server_pub)) != 0)
141 goto out;
142 kexc25519_keygen(server_key, server_pub);
143 /* allocate shared secret */
144 if ((buf = sshbuf_new()) == NULL) {
145 r = SSH_ERR_ALLOC_FAIL;
146 goto out;
147 }
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000148 if ((r = kexc25519_shared_key_ext(server_key, client_pub, buf, 0)) < 0)
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000149 goto out;
150#ifdef DEBUG_KEXECDH
151 dump_digest("server public key 25519:", server_pub, CURVE25519_SIZE);
152 dump_digest("encoded shared secret:", sshbuf_ptr(buf), sshbuf_len(buf));
153#endif
154 *server_blobp = server_blob;
155 *shared_secretp = buf;
156 server_blob = NULL;
157 buf = NULL;
158 out:
159 explicit_bzero(server_key, sizeof(server_key));
160 sshbuf_free(server_blob);
161 sshbuf_free(buf);
162 return r;
163}
164
165int
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000166kex_c25519_dec(struct kex *kex, const struct sshbuf *server_blob,
167 struct sshbuf **shared_secretp)
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000168{
169 struct sshbuf *buf = NULL;
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000170 const u_char *server_pub;
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000171 int r;
172
173 *shared_secretp = NULL;
174
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000175 if (sshbuf_len(server_blob) != CURVE25519_SIZE) {
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000176 r = SSH_ERR_SIGNATURE_INVALID;
177 goto out;
178 }
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000179 server_pub = sshbuf_ptr(server_blob);
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000180#ifdef DEBUG_KEXECDH
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000181 dump_digest("server public key c25519:", server_pub, CURVE25519_SIZE);
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000182#endif
183 /* shared secret */
184 if ((buf = sshbuf_new()) == NULL) {
185 r = SSH_ERR_ALLOC_FAIL;
186 goto out;
187 }
djm@openbsd.org71e67ff2019-01-21 10:35:09 +0000188 if ((r = kexc25519_shared_key_ext(kex->c25519_client_key, server_pub,
djm@openbsd.org2f6a9dd2019-01-21 10:24:09 +0000189 buf, 0)) < 0)
190 goto out;
191#ifdef DEBUG_KEXECDH
192 dump_digest("encoded shared secret:", sshbuf_ptr(buf), sshbuf_len(buf));
193#endif
194 *shared_secretp = buf;
195 buf = NULL;
196 out:
197 sshbuf_free(buf);
198 return r;
199}