summaryrefslogtreecommitdiff
path: root/kexc25519s.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-11-04 22:59:27 +1100
committerDamien Miller <djm@mindrot.org>2013-11-04 22:59:27 +1100
commit094003f5454a9f5a607674b2739824a7e91835f4 (patch)
treec2608e0c90d2ec9c483a4d21e4279317947bd015 /kexc25519s.c
parentca67a7eaf8766499ba67801d0be8cdaa550b9a50 (diff)
- (djm) [kexc25519.c kexc25519c.c kexc25519s.c] Import missed files from
KEX/curve25519 change
Diffstat (limited to 'kexc25519s.c')
-rw-r--r--kexc25519s.c123
1 files changed, 123 insertions, 0 deletions
diff --git a/kexc25519s.c b/kexc25519s.c
new file mode 100644
index 000000000..784841b82
--- /dev/null
+++ b/kexc25519s.c
@@ -0,0 +1,123 @@
1/* $OpenBSD: kexc25519s.c,v 1.2 2013/11/02 22:02:14 markus Exp $ */
2/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * Copyright (c) 2010 Damien Miller. All rights reserved.
5 * Copyright (c) 2013 Aris Adamantiadis. All rights reserved.
6 *
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "includes.h"
28
29#include <sys/types.h>
30#include <string.h>
31#include <signal.h>
32
33#include "xmalloc.h"
34#include "buffer.h"
35#include "key.h"
36#include "cipher.h"
37#include "kex.h"
38#include "log.h"
39#include "packet.h"
40#include "ssh2.h"
41
42void
43kexc25519_server(Kex *kex)
44{
45 BIGNUM *shared_secret;
46 Key *server_host_private, *server_host_public;
47 u_char *server_host_key_blob = NULL, *signature = NULL;
48 u_char server_key[CURVE25519_SIZE];
49 u_char *client_pubkey = NULL;
50 u_char server_pubkey[CURVE25519_SIZE];
51 u_char *hash;
52 u_int slen, sbloblen, hashlen;
53
54 /* generate private key */
55 kexc25519_keygen(server_key, server_pubkey);
56#ifdef DEBUG_KEXECDH
57 dump_digest("server private key:", server_key, sizeof(server_key));
58#endif
59
60 if (kex->load_host_public_key == NULL ||
61 kex->load_host_private_key == NULL)
62 fatal("Cannot load hostkey");
63 server_host_public = kex->load_host_public_key(kex->hostkey_type);
64 if (server_host_public == NULL)
65 fatal("Unsupported hostkey type %d", kex->hostkey_type);
66 server_host_private = kex->load_host_private_key(kex->hostkey_type);
67
68 debug("expecting SSH2_MSG_KEX_ECDH_INIT");
69 packet_read_expect(SSH2_MSG_KEX_ECDH_INIT);
70 client_pubkey = packet_get_string(&slen);
71 if (slen != CURVE25519_SIZE)
72 fatal("Incorrect size for server Curve25519 pubkey: %d", slen);
73 packet_check_eom();
74
75#ifdef DEBUG_KEXECDH
76 dump_digest("client public key:", client_pubkey, CURVE25519_SIZE);
77#endif
78
79 shared_secret = kexc25519_shared_key(server_key, client_pubkey);
80
81 /* calc H */
82 key_to_blob(server_host_public, &server_host_key_blob, &sbloblen);
83 kex_c25519_hash(
84 kex->evp_md,
85 kex->client_version_string,
86 kex->server_version_string,
87 buffer_ptr(&kex->peer), buffer_len(&kex->peer),
88 buffer_ptr(&kex->my), buffer_len(&kex->my),
89 server_host_key_blob, sbloblen,
90 client_pubkey,
91 server_pubkey,
92 shared_secret,
93 &hash, &hashlen
94 );
95
96 /* save session id := H */
97 if (kex->session_id == NULL) {
98 kex->session_id_len = hashlen;
99 kex->session_id = xmalloc(kex->session_id_len);
100 memcpy(kex->session_id, hash, kex->session_id_len);
101 }
102
103 /* sign H */
104 kex->sign(server_host_private, server_host_public, &signature, &slen,
105 hash, hashlen);
106
107 /* destroy_sensitive_data(); */
108
109 /* send server hostkey, ECDH pubkey 'Q_S' and signed H */
110 packet_start(SSH2_MSG_KEX_ECDH_REPLY);
111 packet_put_string(server_host_key_blob, sbloblen);
112 packet_put_string(server_pubkey, sizeof(server_pubkey));
113 packet_put_string(signature, slen);
114 packet_send();
115
116 free(signature);
117 free(server_host_key_blob);
118 /* have keys, free server key */
119 free(client_pubkey);
120 kex_derive_keys(kex, hash, hashlen, shared_secret);
121 BN_clear_free(shared_secret);
122 kex_finish(kex);
123}