blob: b90f45e8bdbb139923d998cabcb47e347b3f6df9 [file] [log] [blame]
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001/*
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002 * Copyright (C) 2017 Denys Vlasenko
Denys Vlasenko11d00962017-01-15 00:12:42 +01003 *
4 * Licensed under GPLv2, see file LICENSE in this source tree.
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01005 */
6//config:config TLS
Denys Vlasenko9a647c32017-01-23 01:08:16 +01007//config: bool #No description makes it a hidden option
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01008//config: default n
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01009//Note:
10//Config.src also defines FEATURE_TLS_SHA1 option
Denys Vlasenkoceff6b02017-01-14 12:49:32 +010011
Denys Vlasenkoceff6b02017-01-14 12:49:32 +010012//kbuild:lib-$(CONFIG_TLS) += tls.o
Denys Vlasenko11d00962017-01-15 00:12:42 +010013//kbuild:lib-$(CONFIG_TLS) += tls_pstm.o
14//kbuild:lib-$(CONFIG_TLS) += tls_pstm_montgomery_reduce.o
15//kbuild:lib-$(CONFIG_TLS) += tls_pstm_mul_comba.o
16//kbuild:lib-$(CONFIG_TLS) += tls_pstm_sqr_comba.o
Denys Vlasenkob7e9ae62017-01-18 17:20:27 +010017//kbuild:lib-$(CONFIG_TLS) += tls_aes.o
Denys Vlasenko83e5c622018-11-23 17:21:38 +010018//kbuild:lib-$(CONFIG_TLS) += tls_aesgcm.o
Denys Vlasenkobddb6542018-11-13 02:16:24 +010019//kbuild:lib-$(CONFIG_TLS) += tls_rsa.o
20//kbuild:lib-$(CONFIG_TLS) += tls_fe.o
Denys Vlasenkoceff6b02017-01-14 12:49:32 +010021
Denys Vlasenko11d00962017-01-15 00:12:42 +010022#include "tls.h"
Denys Vlasenkoceff6b02017-01-14 12:49:32 +010023
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +010024// works against "openssl s_server -cipher NULL"
25// and against wolfssl-3.9.10-stable/examples/server/server.c:
26#define ALLOW_RSA_NULL_SHA256 0 // for testing (does everything except encrypting)
27
Denys Vlasenko83e5c622018-11-23 17:21:38 +010028//Tested against kernel.org:
Denys Vlasenko49ecee02017-01-24 16:00:54 +010029//#define CIPHER_ID TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA // ok, recvs SERVER_KEY_EXCHANGE *** matrixssl uses this on my box
30//#define CIPHER_ID TLS_RSA_WITH_AES_256_CBC_SHA256 // ok, no SERVER_KEY_EXCHANGE
31//#define CIPHER_ID TLS_DH_anon_WITH_AES_256_CBC_SHA // SSL_ALERT_HANDSHAKE_FAILURE
32//^^^^^^^^^^^^^^^^^^^^^^^ (tested b/c this one doesn't req server certs... no luck, server refuses it)
33//#define CIPHER_ID TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 // SSL_ALERT_HANDSHAKE_FAILURE
34//#define CIPHER_ID TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 // SSL_ALERT_HANDSHAKE_FAILURE
35//#define CIPHER_ID TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 // ok, recvs SERVER_KEY_EXCHANGE
36//#define CIPHER_ID TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
37//#define CIPHER_ID TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
38//#define CIPHER_ID TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 // SSL_ALERT_HANDSHAKE_FAILURE
39//#define CIPHER_ID TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
40//#define CIPHER_ID TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 // SSL_ALERT_HANDSHAKE_FAILURE
41//#define CIPHER_ID TLS_RSA_WITH_AES_256_GCM_SHA384 // ok, no SERVER_KEY_EXCHANGE
Denys Vlasenko83e5c622018-11-23 17:21:38 +010042//#define CIPHER_ID TLS_RSA_WITH_AES_128_GCM_SHA256 // ok, no SERVER_KEY_EXCHANGE
Denys Vlasenko49ecee02017-01-24 16:00:54 +010043
Denys Vlasenko49ecee02017-01-24 16:00:54 +010044// works against wolfssl-3.9.10-stable/examples/server/server.c
45// works for kernel.org
46// does not work for cdn.kernel.org (e.g. downloading an actual tarball, not a web page)
47// getting alert 40 "handshake failure" at once
48// with GNU Wget 1.18, they agree on TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (0xC02F) cipher
Denys Vlasenko2eb04292018-11-26 16:39:19 +010049// fail: openssl s_client -connect cdn.kernel.org:443 -debug -tls1_2 -cipher AES256-SHA256
50// fail: openssl s_client -connect cdn.kernel.org:443 -debug -tls1_2 -cipher AES256-GCM-SHA384
51// fail: openssl s_client -connect cdn.kernel.org:443 -debug -tls1_2 -cipher AES128-SHA256
52// ok: openssl s_client -connect cdn.kernel.org:443 -debug -tls1_2 -cipher AES128-GCM-SHA256
53// ok: openssl s_client -connect cdn.kernel.org:443 -debug -tls1_2 -cipher AES128-SHA
Denys Vlasenko49ecee02017-01-24 16:00:54 +010054// (TLS_RSA_WITH_AES_128_CBC_SHA - in TLS 1.2 it's mandated to be always supported)
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +010055//#define CIPHER_ID1 TLS_RSA_WITH_AES_256_CBC_SHA256 //0x003D
Denys Vlasenko89193f92017-01-24 18:08:07 +010056// Works with "wget https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.9.5.tar.xz"
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +010057//#define CIPHER_ID2 TLS_RSA_WITH_AES_128_CBC_SHA //0x002F
Denys Vlasenko49ecee02017-01-24 16:00:54 +010058
Denys Vlasenkod2923b32018-11-24 21:26:20 +010059// bug #11456:
Denys Vlasenko83e5c622018-11-23 17:21:38 +010060// ftp.openbsd.org only supports ECDHE-RSA-AESnnn-GCM-SHAnnn or ECDHE-RSA-CHACHA20-POLY1305
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +010061//#define CIPHER_ID3 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 //0xC02F
Denys Vlasenkoab3c5e42018-11-25 00:53:19 +010062// host is.gd accepts only ECDHE-ECDSA-foo (the simplest which works: ECDHE-ECDSA-AES128-SHA 0xC009)
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +010063//#define CIPHER_ID4 TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA //0xC009
Denys Vlasenko83e5c622018-11-23 17:21:38 +010064
Denys Vlasenko49ecee02017-01-24 16:00:54 +010065
Denys Vlasenko89193f92017-01-24 18:08:07 +010066#define TLS_DEBUG 0
67#define TLS_DEBUG_HASH 0
68#define TLS_DEBUG_DER 0
69#define TLS_DEBUG_FIXED_SECRETS 0
Denys Vlasenkob5bf1912017-01-23 16:12:17 +010070#if 0
71# define dump_raw_out(...) dump_hex(__VA_ARGS__)
72#else
73# define dump_raw_out(...) ((void)0)
74#endif
75#if 0
76# define dump_raw_in(...) dump_hex(__VA_ARGS__)
77#else
78# define dump_raw_in(...) ((void)0)
79#endif
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +010080
81#if TLS_DEBUG
Denys Vlasenkoceff6b02017-01-14 12:49:32 +010082# define dbg(...) fprintf(stderr, __VA_ARGS__)
83#else
84# define dbg(...) ((void)0)
85#endif
86
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +010087#if TLS_DEBUG_DER
88# define dbg_der(...) fprintf(stderr, __VA_ARGS__)
89#else
90# define dbg_der(...) ((void)0)
91#endif
92
Denys Vlasenkoa33b0082018-11-25 14:28:32 +010093
94//TLS 1.2
95#define TLS_MAJ 3
96#define TLS_MIN 3
97
Denys Vlasenko98066662018-02-06 13:33:00 +010098#define RECORD_TYPE_CHANGE_CIPHER_SPEC 20 /* 0x14 */
99#define RECORD_TYPE_ALERT 21 /* 0x15 */
100#define RECORD_TYPE_HANDSHAKE 22 /* 0x16 */
101#define RECORD_TYPE_APPLICATION_DATA 23 /* 0x17 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100102
Denys Vlasenko98066662018-02-06 13:33:00 +0100103#define HANDSHAKE_HELLO_REQUEST 0 /* 0x00 */
104#define HANDSHAKE_CLIENT_HELLO 1 /* 0x01 */
105#define HANDSHAKE_SERVER_HELLO 2 /* 0x02 */
106#define HANDSHAKE_HELLO_VERIFY_REQUEST 3 /* 0x03 */
107#define HANDSHAKE_NEW_SESSION_TICKET 4 /* 0x04 */
108#define HANDSHAKE_CERTIFICATE 11 /* 0x0b */
109#define HANDSHAKE_SERVER_KEY_EXCHANGE 12 /* 0x0c */
110#define HANDSHAKE_CERTIFICATE_REQUEST 13 /* 0x0d */
111#define HANDSHAKE_SERVER_HELLO_DONE 14 /* 0x0e */
112#define HANDSHAKE_CERTIFICATE_VERIFY 15 /* 0x0f */
113#define HANDSHAKE_CLIENT_KEY_EXCHANGE 16 /* 0x10 */
114#define HANDSHAKE_FINISHED 20 /* 0x14 */
Denys Vlasenko11d00962017-01-15 00:12:42 +0100115
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100116#define TLS_EMPTY_RENEGOTIATION_INFO_SCSV 0x00FF /* not a real cipher id... */
117
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100118#define SSL_NULL_WITH_NULL_NULL 0x0000
119#define SSL_RSA_WITH_NULL_MD5 0x0001
120#define SSL_RSA_WITH_NULL_SHA 0x0002
121#define SSL_RSA_WITH_RC4_128_MD5 0x0004
122#define SSL_RSA_WITH_RC4_128_SHA 0x0005
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100123#define TLS_RSA_WITH_IDEA_CBC_SHA 0x0007 /* 7 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100124#define SSL_RSA_WITH_3DES_EDE_CBC_SHA 0x000A /* 10 */
125
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100126#define SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA 0x0016 /* 22 */
127#define SSL_DH_anon_WITH_RC4_128_MD5 0x0018 /* 24 */
128#define SSL_DH_anon_WITH_3DES_EDE_CBC_SHA 0x001B /* 27 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100129#define TLS_RSA_WITH_AES_128_CBC_SHA 0x002F /*SSLv3 Kx=RSA Au=RSA Enc=AES(128) Mac=SHA1 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100130#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA 0x0033 /* 51 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100131#define TLS_DH_anon_WITH_AES_128_CBC_SHA 0x0034 /* 52 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100132#define TLS_RSA_WITH_AES_256_CBC_SHA 0x0035 /* 53 */
133#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA 0x0039 /* 57 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100134#define TLS_DH_anon_WITH_AES_256_CBC_SHA 0x003A /* 58 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100135#define TLS_RSA_WITH_NULL_SHA256 0x003B /* 59 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100136#define TLS_RSA_WITH_AES_128_CBC_SHA256 0x003C /* 60 */
137#define TLS_RSA_WITH_AES_256_CBC_SHA256 0x003D /* 61 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100138#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 0x0067 /* 103 */
139#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 0x006B /* 107 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100140#define TLS_PSK_WITH_AES_128_CBC_SHA 0x008C /* 140 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100141#define TLS_PSK_WITH_AES_256_CBC_SHA 0x008D /* 141 */
142#define TLS_DHE_PSK_WITH_AES_128_CBC_SHA 0x0090 /* 144 */
143#define TLS_DHE_PSK_WITH_AES_256_CBC_SHA 0x0091 /* 145 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100144#define TLS_RSA_WITH_SEED_CBC_SHA 0x0096 /* 150 */
Denys Vlasenko330d7f52018-11-25 17:27:48 +0100145#define TLS_RSA_WITH_AES_128_GCM_SHA256 0x009C /*TLSv1.2 Kx=RSA Au=RSA Enc=AESGCM(128) Mac=AEAD */
146#define TLS_RSA_WITH_AES_256_GCM_SHA384 0x009D /*TLSv1.2 Kx=RSA Au=RSA Enc=AESGCM(256) Mac=AEAD */
147#define TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 0x009E /*TLSv1.2 Kx=DH Au=RSA Enc=AESGCM(128) Mac=AEAD */
148#define TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 0x009F /*TLSv1.2 Kx=DH Au=RSA Enc=AESGCM(256) Mac=AEAD */
Denys Vlasenko8a46c742018-11-26 17:33:17 +0100149#define TLS_DH_anon_WITH_AES_128_GCM_SHA256 0x00A6 /* RFC 5288 */
150#define TLS_DH_anon_WITH_AES_256_GCM_SHA384 0x00A7 /* RFC 5288 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100151#define TLS_PSK_WITH_AES_128_CBC_SHA256 0x00AE /* 174 */
152#define TLS_PSK_WITH_AES_256_CBC_SHA384 0x00AF /* 175 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100153#define TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA 0xC004 /* 49156 */
154#define TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA 0xC005 /* 49157 */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100155#define TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 0xC009 /*TLSv1 Kx=ECDH Au=ECDSA Enc=AES(128) Mac=SHA1 */
156#define TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA 0xC00A /*TLSv1 Kx=ECDH Au=ECDSA Enc=AES(256) Mac=SHA1 */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100157#define TLS_ECDH_RSA_WITH_AES_128_CBC_SHA 0xC00E /* 49166 */
158#define TLS_ECDH_RSA_WITH_AES_256_CBC_SHA 0xC00F /* 49167 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100159#define TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA 0xC012 /* 49170 */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100160#define TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA 0xC013 /*TLSv1 Kx=ECDH Au=RSA Enc=AES(128) Mac=SHA1 */
161#define TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA 0xC014 /*TLSv1 Kx=ECDH Au=RSA Enc=AES(256) Mac=SHA1 */
Denys Vlasenko8a46c742018-11-26 17:33:17 +0100162#define TLS_ECDH_anon_WITH_AES_128_CBC_SHA 0xC018 /* RFC 4492 */
163#define TLS_ECDH_anon_WITH_AES_256_CBC_SHA 0xC019 /* RFC 4492 */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100164#define TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 0xC023 /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(128) Mac=SHA256 */
165#define TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 0xC024 /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AES(256) Mac=SHA384 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100166#define TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 0xC025 /* 49189 */
167#define TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 0xC026 /* 49190 */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100168#define TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 0xC027 /*TLSv1.2 Kx=ECDH Au=RSA Enc=AES(128) Mac=SHA256 */
169#define TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 0xC028 /*TLSv1.2 Kx=ECDH Au=RSA Enc=AES(256) Mac=SHA384 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100170#define TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 0xC029 /* 49193 */
171#define TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 0xC02A /* 49194 */
Denys Vlasenko7a18b952017-01-23 16:37:04 +0100172/* RFC 5288 "AES Galois Counter Mode (GCM) Cipher Suites for TLS" */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100173#define TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 0xC02B /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(128) Mac=AEAD */
174#define TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 0xC02C /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESGCM(256) Mac=AEAD */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100175#define TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 0xC02D /* 49197 */
176#define TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 0xC02E /* 49198 */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100177#define TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 0xC02F /*TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(128) Mac=AEAD */
178#define TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 0xC030 /*TLSv1.2 Kx=ECDH Au=RSA Enc=AESGCM(256) Mac=AEAD */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100179#define TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 0xC031 /* 49201 */
180#define TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 0xC032 /* 49202 */
Denys Vlasenkodffc8ff2018-11-27 10:35:10 +0100181#define TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA 0xC035
182#define TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA 0xC036
183#define TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 0xC037
184#define TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 0xC038
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100185
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100186/* From http://wiki.mozilla.org/Security/Server_Side_TLS */
187/* and 'openssl ciphers -V -stdname' */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100188#define TLS_RSA_WITH_AES_128_CCM 0xC09C /*TLSv1.2 Kx=RSA Au=RSA Enc=AESCCM(128) Mac=AEAD */
189#define TLS_RSA_WITH_AES_256_CCM 0xC09D /*TLSv1.2 Kx=RSA Au=RSA Enc=AESCCM(256) Mac=AEAD */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100190#define TLS_DHE_RSA_WITH_AES_128_CCM 0xC09E /*TLSv1.2 Kx=DH Au=RSA Enc=AESCCM(128) Mac=AEAD */
Denys Vlasenko5df3b122018-11-04 21:25:41 +0100191#define TLS_DHE_RSA_WITH_AES_256_CCM 0xC09F /*TLSv1.2 Kx=DH Au=RSA Enc=AESCCM(256) Mac=AEAD */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100192#define TLS_RSA_WITH_AES_128_CCM_8 0xC0A0 /*TLSv1.2 Kx=RSA Au=RSA Enc=AESCCM8(128) Mac=AEAD */
193#define TLS_RSA_WITH_AES_256_CCM_8 0xC0A1 /*TLSv1.2 Kx=RSA Au=RSA Enc=AESCCM8(256) Mac=AEAD */
194#define TLS_DHE_RSA_WITH_AES_128_CCM_8 0xC0A2 /*TLSv1.2 Kx=DH Au=RSA Enc=AESCCM8(128) Mac=AEAD */
195#define TLS_DHE_RSA_WITH_AES_256_CCM_8 0xC0A3 /*TLSv1.2 Kx=DH Au=RSA Enc=AESCCM8(256) Mac=AEAD */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100196#define TLS_ECDHE_ECDSA_WITH_AES_128_CCM 0xC0AC /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESCCM(128) Mac=AEAD */
197#define TLS_ECDHE_ECDSA_WITH_AES_256_CCM 0xC0AD /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESCCM(256) Mac=AEAD */
198#define TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 0xC0AE /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESCCM8(128) Mac=AEAD */
199#define TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 0xC0AF /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=AESCCM8(256) Mac=AEAD */
Denys Vlasenkoa33b0082018-11-25 14:28:32 +0100200#define TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 0xCCA8 /*TLSv1.2 Kx=ECDH Au=RSA Enc=CHACHA20/POLY1305(256) Mac=AEAD */
201#define TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 0xCCA9 /*TLSv1.2 Kx=ECDH Au=ECDSA Enc=CHACHA20/POLY1305(256) Mac=AEAD */
202#define TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 0xCCAA /*TLSv1.2 Kx=DH Au=RSA Enc=CHACHA20/POLY1305(256) Mac=AEAD */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100203
Denys Vlasenkob29d0452018-11-04 21:18:29 +0100204#define TLS_AES_128_GCM_SHA256 0x1301 /*TLSv1.3 Kx=any Au=any Enc=AESGCM(128) Mac=AEAD */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100205#define TLS_AES_256_GCM_SHA384 0x1302 /*TLSv1.3 Kx=any Au=any Enc=AESGCM(256) Mac=AEAD */
206#define TLS_CHACHA20_POLY1305_SHA256 0x1303 /*TLSv1.3 Kx=any Au=any Enc=CHACHA20/POLY1305(256) Mac=AEAD */
Denys Vlasenko9b0ce4d2018-11-04 20:53:54 +0100207#define TLS_AES_128_CCM_SHA256 0x1304 /*TLSv1.3 Kx=any Au=any Enc=AESCCM(128) Mac=AEAD */
208
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100209/* Might go to libbb.h */
210#define TLS_MAX_CRYPTBLOCK_SIZE 16
211#define TLS_MAX_OUTBUF (1 << 14)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100212
Denys Vlasenko9a6897a2017-01-16 23:26:33 +0100213enum {
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100214 SHA_INSIZE = 64,
215 SHA1_OUTSIZE = 20,
216 SHA256_OUTSIZE = 32,
217
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100218 AES128_KEYSIZE = 16,
219 AES256_KEYSIZE = 32,
220
Denys Vlasenko38972a82017-01-20 19:11:14 +0100221 RSA_PREMASTER_SIZE = 48,
222
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +0100223 RECHDR_LEN = 5,
224
Denys Vlasenko38972a82017-01-20 19:11:14 +0100225 /* 8 = 3+5. 3 extra bytes result in record data being 32-bit aligned */
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100226 OUTBUF_PFX = 8 + AES_BLOCK_SIZE, /* header + IV */
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100227 OUTBUF_SFX = TLS_MAX_MAC_SIZE + TLS_MAX_CRYPTBLOCK_SIZE, /* MAC + padding */
Denys Vlasenko39161392017-01-20 20:27:06 +0100228
Denys Vlasenkod4681c72018-11-26 10:33:23 +0100229 // RFC 5246:
Denys Vlasenko39161392017-01-20 20:27:06 +0100230 // | 6.2.1. Fragmentation
231 // | The record layer fragments information blocks into TLSPlaintext
232 // | records carrying data in chunks of 2^14 bytes or less. Client
233 // | message boundaries are not preserved in the record layer (i.e.,
234 // | multiple client messages of the same ContentType MAY be coalesced
235 // | into a single TLSPlaintext record, or a single message MAY be
236 // | fragmented across several records)
237 // |...
238 // | length
239 // | The length (in bytes) of the following TLSPlaintext.fragment.
240 // | The length MUST NOT exceed 2^14.
241 // |...
242 // | 6.2.2. Record Compression and Decompression
243 // |...
244 // | Compression must be lossless and may not increase the content length
245 // | by more than 1024 bytes. If the decompression function encounters a
246 // | TLSCompressed.fragment that would decompress to a length in excess of
247 // | 2^14 bytes, it MUST report a fatal decompression failure error.
248 // |...
249 // | length
250 // | The length (in bytes) of the following TLSCompressed.fragment.
251 // | The length MUST NOT exceed 2^14 + 1024.
252 // |...
253 // | 6.2.3. Record Payload Protection
254 // | The encryption and MAC functions translate a TLSCompressed
255 // | structure into a TLSCiphertext. The decryption functions reverse
256 // | the process. The MAC of the record also includes a sequence
257 // | number so that missing, extra, or repeated messages are
258 // | detectable.
259 // |...
260 // | length
261 // | The length (in bytes) of the following TLSCiphertext.fragment.
262 // | The length MUST NOT exceed 2^14 + 2048.
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100263 MAX_INBUF = RECHDR_LEN + (1 << 14) + 2048,
Denys Vlasenkoa33b0082018-11-25 14:28:32 +0100264
265 /* Bits for tls->flags */
266 NEED_EC_KEY = 1 << 0,
267 GOT_CERT_RSA_KEY_ALG = 1 << 1,
268 GOT_CERT_ECDSA_KEY_ALG = 1 << 2, // so far unused
269 GOT_EC_KEY = 1 << 3,
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +0100270 ENCRYPTION_AESGCM = 1 << 4, // else AES-SHA (or NULL-SHA if ALLOW_RSA_NULL_SHA256=1)
Denys Vlasenkoeb53d012018-11-25 14:45:55 +0100271 ENCRYPT_ON_WRITE = 1 << 5,
Denys Vlasenko9a6897a2017-01-16 23:26:33 +0100272};
273
Denys Vlasenkob1003f72017-01-14 13:57:16 +0100274struct record_hdr {
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100275 uint8_t type;
276 uint8_t proto_maj, proto_min;
277 uint8_t len16_hi, len16_lo;
278};
279
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100280struct tls_handshake_data {
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100281 /* In bbox, md5/sha1/sha256 ctx's are the same structure */
282 md5sha_ctx_t handshake_hash_ctx;
283
Denys Vlasenko7a18b952017-01-23 16:37:04 +0100284 uint8_t client_and_server_rand32[2 * 32];
285 uint8_t master_secret[48];
Denys Vlasenkobddb6542018-11-13 02:16:24 +0100286
Denys Vlasenkodd2577f2017-01-20 22:48:41 +0100287//TODO: store just the DER key here, parse/use/delete it when sending client key
288//this way it will stay key type agnostic here.
Denys Vlasenko11d00962017-01-15 00:12:42 +0100289 psRsaKey_t server_rsa_pub_key;
Denys Vlasenkobddb6542018-11-13 02:16:24 +0100290 uint8_t ecc_pub_key32[32];
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100291
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100292/* HANDSHAKE HASH: */
293 //unsigned saved_client_hello_size;
294 //uint8_t saved_client_hello[1];
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100295};
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100296
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +0100297
298static unsigned get24be(const uint8_t *p)
299{
300 return 0x100*(0x100*p[0] + p[1]) + p[2];
301}
302
303#if TLS_DEBUG
Denys Vlasenkoeb53d012018-11-25 14:45:55 +0100304/* Nondestructively see the current hash value */
Denys Vlasenko838b88c2018-11-25 18:52:47 +0100305# if TLS_DEBUG_HASH
Denys Vlasenkoeb53d012018-11-25 14:45:55 +0100306static unsigned sha_peek(md5sha_ctx_t *ctx, void *buffer)
307{
308 md5sha_ctx_t ctx_copy = *ctx; /* struct copy */
309 return sha_end(&ctx_copy, buffer);
310}
Denys Vlasenko838b88c2018-11-25 18:52:47 +0100311# endif
Denys Vlasenkoeb53d012018-11-25 14:45:55 +0100312
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +0100313static void dump_hex(const char *fmt, const void *vp, int len)
314{
315 char hexbuf[32 * 1024 + 4];
316 const uint8_t *p = vp;
317
318 bin2hex(hexbuf, (void*)p, len)[0] = '\0';
319 dbg(fmt, hexbuf);
320}
321
322static void dump_tls_record(const void *vp, int len)
323{
324 const uint8_t *p = vp;
325
326 while (len > 0) {
327 unsigned xhdr_len;
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +0100328 if (len < RECHDR_LEN) {
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +0100329 dump_hex("< |%s|\n", p, len);
330 return;
331 }
332 xhdr_len = 0x100*p[3] + p[4];
333 dbg("< hdr_type:%u ver:%u.%u len:%u", p[0], p[1], p[2], xhdr_len);
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +0100334 p += RECHDR_LEN;
335 len -= RECHDR_LEN;
336 if (len >= 4 && p[-RECHDR_LEN] == RECORD_TYPE_HANDSHAKE) {
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +0100337 unsigned len24 = get24be(p + 1);
338 dbg(" type:%u len24:%u", p[0], len24);
339 }
340 if (xhdr_len > len)
341 xhdr_len = len;
342 dump_hex(" |%s|\n", p, xhdr_len);
343 p += xhdr_len;
344 len -= xhdr_len;
345 }
346}
Denys Vlasenko38972a82017-01-20 19:11:14 +0100347#else
348# define dump_hex(...) ((void)0)
349# define dump_tls_record(...) ((void)0)
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +0100350#endif
351
Denys Vlasenko624066f2018-11-23 19:24:57 +0100352void FAST_FUNC tls_get_random(void *buf, unsigned len)
Denys Vlasenko11d00962017-01-15 00:12:42 +0100353{
354 if (len != open_read_close("/dev/urandom", buf, len))
355 xfunc_die();
356}
357
Denys Vlasenko941440c2018-11-24 13:51:46 +0100358static void xorbuf3(void *dst, const void *src1, const void *src2, unsigned count)
359{
360 uint8_t *d = dst;
361 const uint8_t *s1 = src1;
362 const uint8_t* s2 = src2;
363 while (count--)
364 *d++ = *s1++ ^ *s2++;
365}
366
367void FAST_FUNC xorbuf(void *dst, const void *src, unsigned count)
368{
369 xorbuf3(dst, dst, src, count);
370}
371
Denys Vlasenko03569bc2018-11-24 14:08:29 +0100372void FAST_FUNC xorbuf_aligned_AES_BLOCK_SIZE(void *dst, const void *src)
373{
374 unsigned long *d = dst;
375 const unsigned long *s = src;
376 d[0] ^= s[0];
377#if ULONG_MAX <= 0xffffffffffffffff
378 d[1] ^= s[1];
379 #if ULONG_MAX == 0xffffffff
380 d[2] ^= s[2];
381 d[3] ^= s[3];
382 #endif
383#endif
384}
385
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100386#if !TLS_DEBUG_HASH
387# define hash_handshake(tls, fmt, buffer, len) \
388 hash_handshake(tls, buffer, len)
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +0100389#endif
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100390static void hash_handshake(tls_state_t *tls, const char *fmt, const void *buffer, unsigned len)
391{
392 md5sha_hash(&tls->hsd->handshake_hash_ctx, buffer, len);
393#if TLS_DEBUG_HASH
394 {
395 uint8_t h[TLS_MAX_MAC_SIZE];
396 dump_hex(fmt, buffer, len);
397 dbg(" (%u bytes) ", (int)len);
398 len = sha_peek(&tls->hsd->handshake_hash_ctx, h);
Denys Vlasenko71fa5b02018-12-10 16:14:58 +0100399 if (ENABLE_FEATURE_TLS_SHA1 && len == SHA1_OUTSIZE)
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100400 dump_hex("sha1:%s\n", h, len);
401 else
402 if (len == SHA256_OUTSIZE)
403 dump_hex("sha256:%s\n", h, len);
404 else
405 dump_hex("sha???:%s\n", h, len);
406 }
407#endif
408}
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +0100409
Denys Vlasenko63bfe0e2018-12-10 16:43:53 +0100410#if !ENABLE_FEATURE_TLS_SHA1
411# define TLS_MAC_SIZE(tls) SHA256_OUTSIZE
412#else
413# define TLS_MAC_SIZE(tls) (tls)->MAC_size
414#endif
415
Denys Vlasenkod4681c72018-11-26 10:33:23 +0100416// RFC 2104:
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100417// HMAC(key, text) based on a hash H (say, sha256) is:
418// ipad = [0x36 x INSIZE]
419// opad = [0x5c x INSIZE]
420// HMAC(key, text) = H((key XOR opad) + H((key XOR ipad) + text))
421//
422// H(key XOR opad) and H(key XOR ipad) can be precomputed
423// if we often need HMAC hmac with the same key.
424//
425// text is often given in disjoint pieces.
Denys Vlasenko89193f92017-01-24 18:08:07 +0100426typedef struct hmac_precomputed {
427 md5sha_ctx_t hashed_key_xor_ipad;
428 md5sha_ctx_t hashed_key_xor_opad;
429} hmac_precomputed_t;
430
Denys Vlasenko636c3b62017-04-03 17:43:44 +0200431typedef void md5sha_begin_func(md5sha_ctx_t *ctx) FAST_FUNC;
Denys Vlasenko71fa5b02018-12-10 16:14:58 +0100432#if !ENABLE_FEATURE_TLS_SHA1
433#define hmac_begin(pre,key,key_size,begin) \
434 hmac_begin(pre,key,key_size)
435#define begin sha256_begin
436#endif
Denys Vlasenko636c3b62017-04-03 17:43:44 +0200437static void hmac_begin(hmac_precomputed_t *pre, uint8_t *key, unsigned key_size, md5sha_begin_func *begin)
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100438{
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100439 uint8_t key_xor_ipad[SHA_INSIZE];
440 uint8_t key_xor_opad[SHA_INSIZE];
Denys Vlasenkod4681c72018-11-26 10:33:23 +0100441// uint8_t tempkey[SHA1_OUTSIZE < SHA256_OUTSIZE ? SHA256_OUTSIZE : SHA1_OUTSIZE];
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100442 unsigned i;
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100443
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100444 // "The authentication key can be of any length up to INSIZE, the
445 // block length of the hash function. Applications that use keys longer
446 // than INSIZE bytes will first hash the key using H and then use the
447 // resultant OUTSIZE byte string as the actual key to HMAC."
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100448 if (key_size > SHA_INSIZE) {
Denys Vlasenkod4681c72018-11-26 10:33:23 +0100449 bb_error_msg_and_die("HMAC key>64"); //does not happen (yet?)
450// md5sha_ctx_t ctx;
451// begin(&ctx);
452// md5sha_hash(&ctx, key, key_size);
453// key_size = sha_end(&ctx, tempkey);
454// //key = tempkey; - right? RIGHT? why does it work without this?
455// // because SHA_INSIZE is 64, but hmac() is always called with
456// // key_size = tls->MAC_size = SHA1/256_OUTSIZE (20 or 32),
457// // and prf_hmac_sha256() -> hmac_sha256() key sizes are:
458// // - RSA_PREMASTER_SIZE is 48
459// // - CURVE25519_KEYSIZE is 32
460// // - master_secret[] is 48
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100461 }
462
463 for (i = 0; i < key_size; i++) {
464 key_xor_ipad[i] = key[i] ^ 0x36;
465 key_xor_opad[i] = key[i] ^ 0x5c;
466 }
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100467 for (; i < SHA_INSIZE; i++) {
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100468 key_xor_ipad[i] = 0x36;
469 key_xor_opad[i] = 0x5c;
470 }
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100471
Denys Vlasenko636c3b62017-04-03 17:43:44 +0200472 begin(&pre->hashed_key_xor_ipad);
473 begin(&pre->hashed_key_xor_opad);
Denys Vlasenko89193f92017-01-24 18:08:07 +0100474 md5sha_hash(&pre->hashed_key_xor_ipad, key_xor_ipad, SHA_INSIZE);
475 md5sha_hash(&pre->hashed_key_xor_opad, key_xor_opad, SHA_INSIZE);
476}
Denys Vlasenko71fa5b02018-12-10 16:14:58 +0100477#undef begin
Denys Vlasenko89193f92017-01-24 18:08:07 +0100478
Denys Vlasenkod9f6c3b2018-11-26 15:55:41 +0100479static unsigned hmac_sha_precomputed_v(
480 hmac_precomputed_t *pre,
481 uint8_t *out,
482 va_list va)
483{
484 uint8_t *text;
485 unsigned len;
486
487 /* pre->hashed_key_xor_ipad contains unclosed "H((key XOR ipad) +" state */
488 /* pre->hashed_key_xor_opad contains unclosed "H((key XOR opad) +" state */
489
490 /* calculate out = H((key XOR ipad) + text) */
491 while ((text = va_arg(va, uint8_t*)) != NULL) {
492 unsigned text_size = va_arg(va, unsigned);
493 md5sha_hash(&pre->hashed_key_xor_ipad, text, text_size);
494 }
495 len = sha_end(&pre->hashed_key_xor_ipad, out);
496
497 /* out = H((key XOR opad) + out) */
498 md5sha_hash(&pre->hashed_key_xor_opad, out, len);
499 return sha_end(&pre->hashed_key_xor_opad, out);
500}
501
502static unsigned hmac_sha_precomputed(hmac_precomputed_t *pre_init, uint8_t *out, ...)
503{
504 hmac_precomputed_t pre;
505 va_list va;
506 unsigned len;
507
508 va_start(va, out);
509 pre = *pre_init; /* struct copy */
510 len = hmac_sha_precomputed_v(&pre, out, va);
511 va_end(va);
512 return len;
513}
514
Denys Vlasenko71fa5b02018-12-10 16:14:58 +0100515#if !ENABLE_FEATURE_TLS_SHA1
516#define hmac(tls,out,key,key_size,...) \
517 hmac(out,key,key_size, __VA_ARGS__)
518#endif
Denys Vlasenko89193f92017-01-24 18:08:07 +0100519static unsigned hmac(tls_state_t *tls, uint8_t *out, uint8_t *key, unsigned key_size, ...)
520{
521 hmac_precomputed_t pre;
522 va_list va;
523 unsigned len;
524
525 va_start(va, key_size);
526
Denys Vlasenko636c3b62017-04-03 17:43:44 +0200527 hmac_begin(&pre, key, key_size,
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +0100528 (ENABLE_FEATURE_TLS_SHA1 && tls->MAC_size == SHA1_OUTSIZE)
529 ? sha1_begin
530 : sha256_begin
Denys Vlasenko636c3b62017-04-03 17:43:44 +0200531 );
Denys Vlasenko89193f92017-01-24 18:08:07 +0100532 len = hmac_sha_precomputed_v(&pre, out, va);
533
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100534 va_end(va);
Denys Vlasenko89193f92017-01-24 18:08:07 +0100535 return len;
536}
537
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100538// RFC 5246:
539// 5. HMAC and the Pseudorandom Function
540//...
541// In this section, we define one PRF, based on HMAC. This PRF with the
542// SHA-256 hash function is used for all cipher suites defined in this
543// document and in TLS documents published prior to this document when
544// TLS 1.2 is negotiated.
Denys Vlasenko89193f92017-01-24 18:08:07 +0100545// ^^^^^^^^^^^^^ IMPORTANT!
Denys Vlasenkod4681c72018-11-26 10:33:23 +0100546// PRF uses sha256 regardless of cipher for all ciphers
547// defined by RFC 5246. It's not sha1 for AES_128_CBC_SHA!
548// However, for _SHA384 ciphers, it's sha384. See RFC 5288,5289.
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100549//...
550// P_hash(secret, seed) = HMAC_hash(secret, A(1) + seed) +
551// HMAC_hash(secret, A(2) + seed) +
552// HMAC_hash(secret, A(3) + seed) + ...
553// where + indicates concatenation.
554// A() is defined as:
555// A(0) = seed
556// A(1) = HMAC_hash(secret, A(0)) = HMAC_hash(secret, seed)
557// A(i) = HMAC_hash(secret, A(i-1))
558// P_hash can be iterated as many times as necessary to produce the
559// required quantity of data. For example, if P_SHA256 is being used to
560// create 80 bytes of data, it will have to be iterated three times
561// (through A(3)), creating 96 bytes of output data; the last 16 bytes
562// of the final iteration will then be discarded, leaving 80 bytes of
563// output data.
564//
565// TLS's PRF is created by applying P_hash to the secret as:
566//
567// PRF(secret, label, seed) = P_<hash>(secret, label + seed)
568//
569// The label is an ASCII string.
Denys Vlasenkod4681c72018-11-26 10:33:23 +0100570//
571// RFC 5288:
572// For cipher suites ending with _SHA256, the PRF is the TLS PRF
573// with SHA-256 as the hash function.
574// For cipher suites ending with _SHA384, the PRF is the TLS PRF
575// with SHA-384 as the hash function.
Denys Vlasenko89193f92017-01-24 18:08:07 +0100576static void prf_hmac_sha256(/*tls_state_t *tls,*/
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100577 uint8_t *outbuf, unsigned outbuf_size,
578 uint8_t *secret, unsigned secret_size,
579 const char *label,
580 uint8_t *seed, unsigned seed_size)
581{
Denys Vlasenkod9f6c3b2018-11-26 15:55:41 +0100582 hmac_precomputed_t pre;
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100583 uint8_t a[TLS_MAX_MAC_SIZE];
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100584 uint8_t *out_p = outbuf;
585 unsigned label_size = strlen(label);
Denys Vlasenko229d3c42017-04-03 21:53:29 +0200586 unsigned MAC_size = SHA256_OUTSIZE;
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100587
588 /* In P_hash() calculation, "seed" is "label + seed": */
589#define SEED label, label_size, seed, seed_size
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100590#define A a, MAC_size
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100591
Denys Vlasenkod9f6c3b2018-11-26 15:55:41 +0100592 hmac_begin(&pre, secret, secret_size, sha256_begin);
593
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100594 /* A(1) = HMAC_hash(secret, seed) */
Denys Vlasenkod9f6c3b2018-11-26 15:55:41 +0100595 hmac_sha_precomputed(&pre, a, SEED, NULL);
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100596
Denys Vlasenko229d3c42017-04-03 21:53:29 +0200597 for (;;) {
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100598 /* HMAC_hash(secret, A(1) + seed) */
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100599 if (outbuf_size <= MAC_size) {
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100600 /* Last, possibly incomplete, block */
601 /* (use a[] as temp buffer) */
Denys Vlasenkod9f6c3b2018-11-26 15:55:41 +0100602 hmac_sha_precomputed(&pre, a, A, SEED, NULL);
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100603 memcpy(out_p, a, outbuf_size);
604 return;
605 }
606 /* Not last block. Store directly to result buffer */
Denys Vlasenkod9f6c3b2018-11-26 15:55:41 +0100607 hmac_sha_precomputed(&pre, out_p, A, SEED, NULL);
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100608 out_p += MAC_size;
609 outbuf_size -= MAC_size;
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100610 /* A(2) = HMAC_hash(secret, A(1)) */
Denys Vlasenkod9f6c3b2018-11-26 15:55:41 +0100611 hmac_sha_precomputed(&pre, a, A, NULL);
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100612 }
613#undef A
614#undef SECRET
615#undef SEED
616}
617
Denys Vlasenkob5bf1912017-01-23 16:12:17 +0100618static void bad_record_die(tls_state_t *tls, const char *expected, int len)
619{
Denys Vlasenko1500b3a2017-01-24 17:06:10 +0100620 bb_error_msg("got bad TLS record (len:%d) while expecting %s", len, expected);
Denys Vlasenkob5bf1912017-01-23 16:12:17 +0100621 if (len > 0) {
622 uint8_t *p = tls->inbuf;
Denys Vlasenko98066662018-02-06 13:33:00 +0100623 if (len > 99)
624 len = 99; /* don't flood, a few lines should be enough */
625 do {
Denys Vlasenkob5bf1912017-01-23 16:12:17 +0100626 fprintf(stderr, " %02x", *p++);
Denys Vlasenko1500b3a2017-01-24 17:06:10 +0100627 len--;
Denys Vlasenko98066662018-02-06 13:33:00 +0100628 } while (len != 0);
Denys Vlasenkob5bf1912017-01-23 16:12:17 +0100629 fputc('\n', stderr);
630 }
631 xfunc_die();
632}
633
Denys Vlasenko1500b3a2017-01-24 17:06:10 +0100634static void tls_error_die(tls_state_t *tls, int line)
Denys Vlasenko936e83e2017-01-16 04:25:01 +0100635{
Denys Vlasenko39161392017-01-20 20:27:06 +0100636 dump_tls_record(tls->inbuf, tls->ofs_to_buffered + tls->buffered_size);
Denys Vlasenko1500b3a2017-01-24 17:06:10 +0100637 bb_error_msg_and_die("tls error at line %d cipher:%04x", line, tls->cipher_id);
Denys Vlasenko38972a82017-01-20 19:11:14 +0100638}
Denys Vlasenko1500b3a2017-01-24 17:06:10 +0100639#define tls_error_die(tls) tls_error_die(tls, __LINE__)
Denys Vlasenko38972a82017-01-20 19:11:14 +0100640
Denys Vlasenko39161392017-01-20 20:27:06 +0100641#if 0 //UNUSED
642static void tls_free_inbuf(tls_state_t *tls)
643{
644 if (tls->buffered_size == 0) {
645 free(tls->inbuf);
646 tls->inbuf_size = 0;
647 tls->inbuf = NULL;
648 }
649}
650#endif
651
Denys Vlasenko38972a82017-01-20 19:11:14 +0100652static void tls_free_outbuf(tls_state_t *tls)
653{
654 free(tls->outbuf);
655 tls->outbuf_size = 0;
656 tls->outbuf = NULL;
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100657}
658
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100659static void *tls_get_outbuf(tls_state_t *tls, int len)
660{
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100661 if (len > TLS_MAX_OUTBUF)
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100662 xfunc_die();
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100663 len += OUTBUF_PFX + OUTBUF_SFX;
664 if (tls->outbuf_size < len) {
665 tls->outbuf_size = len;
666 tls->outbuf = xrealloc(tls->outbuf, len);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100667 }
668 return tls->outbuf + OUTBUF_PFX;
669}
670
Denys Vlasenkod5a04052018-11-13 11:58:53 +0100671static void *tls_get_zeroed_outbuf(tls_state_t *tls, int len)
672{
673 void *record = tls_get_outbuf(tls, len);
674 memset(record, 0, len);
675 return record;
676}
677
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100678static void xwrite_encrypted_and_hmac_signed(tls_state_t *tls, unsigned size, unsigned type)
Denys Vlasenkofe0588d2017-01-17 17:04:24 +0100679{
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100680 uint8_t *buf = tls->outbuf + OUTBUF_PFX;
681 struct record_hdr *xhdr;
Denys Vlasenkoe7863f32017-01-20 17:59:25 +0100682 uint8_t padding_length;
Denys Vlasenko9a6897a2017-01-16 23:26:33 +0100683
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +0100684 xhdr = (void*)(buf - RECHDR_LEN);
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +0100685 if (!ALLOW_RSA_NULL_SHA256 /* if "no encryption" can't be selected */
Denys Vlasenko5d561ef2017-04-04 01:41:15 +0200686 || tls->cipher_id != TLS_RSA_WITH_NULL_SHA256 /* or if it wasn't selected */
687 ) {
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100688 xhdr = (void*)(buf - RECHDR_LEN - AES_BLOCK_SIZE); /* place for IV */
Denys Vlasenko5d561ef2017-04-04 01:41:15 +0200689 }
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +0100690
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100691 xhdr->type = type;
692 xhdr->proto_maj = TLS_MAJ;
693 xhdr->proto_min = TLS_MIN;
Denys Vlasenko54b927d2017-01-20 21:19:38 +0100694 /* fake unencrypted record len for MAC calculation */
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100695 xhdr->len16_hi = size >> 8;
696 xhdr->len16_lo = size & 0xff;
697
698 /* Calculate MAC signature */
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100699 hmac(tls, buf + size, /* result */
Denys Vlasenko63bfe0e2018-12-10 16:43:53 +0100700 tls->client_write_MAC_key, TLS_MAC_SIZE(tls),
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100701 &tls->write_seq64_be, sizeof(tls->write_seq64_be),
702 xhdr, RECHDR_LEN,
703 buf, size,
704 NULL
705 );
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +0100706 tls->write_seq64_be = SWAP_BE64(1 + SWAP_BE64(tls->write_seq64_be));
Denys Vlasenko9a6897a2017-01-16 23:26:33 +0100707
Denys Vlasenko63bfe0e2018-12-10 16:43:53 +0100708 size += TLS_MAC_SIZE(tls);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100709
Denys Vlasenkod4681c72018-11-26 10:33:23 +0100710 // RFC 5246:
Denys Vlasenkoe7863f32017-01-20 17:59:25 +0100711 // 6.2.3.1. Null or Standard Stream Cipher
712 //
713 // Stream ciphers (including BulkCipherAlgorithm.null; see Appendix A.6)
714 // convert TLSCompressed.fragment structures to and from stream
715 // TLSCiphertext.fragment structures.
716 //
717 // stream-ciphered struct {
718 // opaque content[TLSCompressed.length];
719 // opaque MAC[SecurityParameters.mac_length];
720 // } GenericStreamCipher;
721 //
722 // The MAC is generated as:
723 // MAC(MAC_write_key, seq_num +
724 // TLSCompressed.type +
725 // TLSCompressed.version +
726 // TLSCompressed.length +
727 // TLSCompressed.fragment);
728 // where "+" denotes concatenation.
729 // seq_num
730 // The sequence number for this record.
731 // MAC
732 // The MAC algorithm specified by SecurityParameters.mac_algorithm.
733 //
734 // Note that the MAC is computed before encryption. The stream cipher
735 // encrypts the entire block, including the MAC.
736 //...
737 // Appendix C. Cipher Suite Definitions
738 //...
739 // MAC Algorithm mac_length mac_key_length
740 // -------- ----------- ---------- --------------
741 // SHA HMAC-SHA1 20 20
742 // SHA256 HMAC-SHA256 32 32
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +0100743 if (ALLOW_RSA_NULL_SHA256
Denys Vlasenko5d561ef2017-04-04 01:41:15 +0200744 && tls->cipher_id == TLS_RSA_WITH_NULL_SHA256
745 ) {
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100746 /* No encryption, only signing */
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100747 xhdr->len16_hi = size >> 8;
748 xhdr->len16_lo = size & 0xff;
Denys Vlasenkoe7863f32017-01-20 17:59:25 +0100749 dump_raw_out(">> %s\n", xhdr, RECHDR_LEN + size);
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100750 xwrite(tls->ofd, xhdr, RECHDR_LEN + size);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100751 dbg("wrote %u bytes (NULL crypt, SHA256 hash)\n", size);
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100752 return;
753 }
754
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100755 // 6.2.3.2. CBC Block Cipher
756 // For block ciphers (such as 3DES or AES), the encryption and MAC
757 // functions convert TLSCompressed.fragment structures to and from block
758 // TLSCiphertext.fragment structures.
759 // struct {
760 // opaque IV[SecurityParameters.record_iv_length];
761 // block-ciphered struct {
762 // opaque content[TLSCompressed.length];
763 // opaque MAC[SecurityParameters.mac_length];
764 // uint8 padding[GenericBlockCipher.padding_length];
765 // uint8 padding_length;
766 // };
767 // } GenericBlockCipher;
768 //...
769 // IV
770 // The Initialization Vector (IV) SHOULD be chosen at random, and
771 // MUST be unpredictable. Note that in versions of TLS prior to 1.1,
772 // there was no IV field (...). For block ciphers, the IV length is
773 // of length SecurityParameters.record_iv_length, which is equal to the
774 // SecurityParameters.block_size.
775 // padding
776 // Padding that is added to force the length of the plaintext to be
777 // an integral multiple of the block cipher's block length.
778 // padding_length
779 // The padding length MUST be such that the total size of the
780 // GenericBlockCipher structure is a multiple of the cipher's block
781 // length. Legal values range from zero to 255, inclusive.
782 //...
783 // Appendix C. Cipher Suite Definitions
784 //...
785 // Key IV Block
786 // Cipher Type Material Size Size
787 // ------------ ------ -------- ---- -----
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100788 // AES_128_CBC Block 16 16 16
789 // AES_256_CBC Block 32 16 16
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100790
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100791 tls_get_random(buf - AES_BLOCK_SIZE, AES_BLOCK_SIZE); /* IV */
Denys Vlasenko98066662018-02-06 13:33:00 +0100792 dbg("before crypt: 5 hdr + %u data + %u hash bytes\n",
Denys Vlasenko63bfe0e2018-12-10 16:43:53 +0100793 size - TLS_MAC_SIZE(tls), TLS_MAC_SIZE(tls));
Denys Vlasenko98066662018-02-06 13:33:00 +0100794
795 /* Fill IV and padding in outbuf */
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100796 // RFC is talking nonsense:
Denys Vlasenko7a18b952017-01-23 16:37:04 +0100797 // "Padding that is added to force the length of the plaintext to be
798 // an integral multiple of the block cipher's block length."
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100799 // WRONG. _padding+padding_length_, not just _padding_,
800 // pads the data.
801 // IOW: padding_length is the last byte of padding[] array,
802 // contrary to what RFC depicts.
803 //
804 // What actually happens is that there is always padding.
805 // If you need one byte to reach BLOCKSIZE, this byte is 0x00.
806 // If you need two bytes, they are both 0x01.
807 // If you need three, they are 0x02,0x02,0x02. And so on.
808 // If you need no bytes to reach BLOCKSIZE, you have to pad a full
809 // BLOCKSIZE with bytes of value (BLOCKSIZE-1).
810 // It's ok to have more than minimum padding, but we do minimum.
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100811 padding_length = (~size) & (AES_BLOCK_SIZE - 1);
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100812 do {
Denys Vlasenko54b927d2017-01-20 21:19:38 +0100813 buf[size++] = padding_length; /* padding */
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100814 } while ((size & (AES_BLOCK_SIZE - 1)) != 0);
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100815
816 /* Encrypt content+MAC+padding in place */
Denys Vlasenkoc31b54f2017-02-04 16:23:49 +0100817 aes_cbc_encrypt(
Denys Vlasenkod2923b32018-11-24 21:26:20 +0100818 &tls->aes_encrypt, /* selects 128/256 */
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100819 buf - AES_BLOCK_SIZE, /* IV */
Denys Vlasenkoc31b54f2017-02-04 16:23:49 +0100820 buf, size, /* plaintext */
821 buf /* ciphertext */
822 );
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100823
824 /* Write out */
825 dbg("writing 5 + %u IV + %u encrypted bytes, padding_length:0x%02x\n",
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100826 AES_BLOCK_SIZE, size, padding_length);
827 size += AES_BLOCK_SIZE; /* + IV */
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +0100828 xhdr->len16_hi = size >> 8;
829 xhdr->len16_lo = size & 0xff;
Denys Vlasenkoe7863f32017-01-20 17:59:25 +0100830 dump_raw_out(">> %s\n", xhdr, RECHDR_LEN + size);
Denys Vlasenko9a647c32017-01-23 01:08:16 +0100831 xwrite(tls->ofd, xhdr, RECHDR_LEN + size);
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +0100832 dbg("wrote %u bytes\n", (int)RECHDR_LEN + size);
Denys Vlasenkoceff6b02017-01-14 12:49:32 +0100833}
834
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100835/* Example how GCM encryption combines nonce, aad, input and generates
836 * "header | exp_nonce | encrypted output | tag":
837 * nonce:0d 6a 26 31 00 00 00 00 00 00 00 01 (implicit 4 bytes (derived from master secret), then explicit 8 bytes)
838 * aad: 00 00 00 00 00 00 00 01 17 03 03 00 1c
839 * in: 47 45 54 20 2f 69 6e 64 65 78 2e 68 74 6d 6c 20 48 54 54 50 2f 31 2e 30 0d 0a 0d 0a "GET /index.html HTTP/1.0\r\n\r\n" (0x1c bytes)
840 * out: f7 8a b2 8f 78 0e f6 d5 76 17 2e b5 6d 46 59 56 8b 46 9f 0b d9 2c 35 28 13 66 19 be
841 * tag: c2 86 ce 4a 50 4a d0 aa 50 b3 76 5c 49 2a 3f 33
842 * sent: 17 03 03 00 34|00 00 00 00 00 00 00 01|f7 8a b2 8f 78 0e f6 d5 76 17 2e b5 6d 46 59 56 8b 46 9f 0b d9 2c 35 28 13 66 19 be|c2 86 ce 4a 50 4a d0 aa 50 b3 76 5c 49 2a 3f 33
843 * .............................................^^ buf points here
844 */
845static void xwrite_encrypted_aesgcm(tls_state_t *tls, unsigned size, unsigned type)
846{
Denys Vlasenkoecc90902018-11-23 18:31:26 +0100847#define COUNTER(v) (*(uint32_t*)(v + 12))
848
Denys Vlasenko03569bc2018-11-24 14:08:29 +0100849 uint8_t aad[13 + 3] ALIGNED_long; /* +3 creates [16] buffer, simplifying GHASH() */
850 uint8_t nonce[12 + 4] ALIGNED_long; /* +4 creates space for AES block counter */
851 uint8_t scratch[AES_BLOCK_SIZE] ALIGNED_long; //[16]
852 uint8_t authtag[AES_BLOCK_SIZE] ALIGNED_long; //[16]
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100853 uint8_t *buf;
854 struct record_hdr *xhdr;
855 unsigned remaining;
856 unsigned cnt;
Denys Vlasenko219c9d42018-11-23 18:48:20 +0100857 uint64_t t64;
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100858
859 buf = tls->outbuf + OUTBUF_PFX; /* see above for the byte it points to */
860 dump_hex("xwrite_encrypted_aesgcm plaintext:%s\n", buf, size);
861
862 xhdr = (void*)(buf - 8 - RECHDR_LEN);
863 xhdr->type = type; /* do it here so that "type" param no longer used */
864
865 aad[8] = type;
866 aad[9] = TLS_MAJ;
867 aad[10] = TLS_MIN;
868 aad[11] = size >> 8;
Denys Vlasenkoecc90902018-11-23 18:31:26 +0100869 /* set aad[12], and clear aad[13..15] */
870 COUNTER(aad) = SWAP_LE32(size & 0xff);
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100871
Denys Vlasenko219c9d42018-11-23 18:48:20 +0100872 memcpy(nonce, tls->client_write_IV, 4);
873 t64 = tls->write_seq64_be;
874 move_to_unaligned64(nonce + 4, t64);
875 move_to_unaligned64(aad, t64);
876 move_to_unaligned64(buf - 8, t64);
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100877 /* seq64 is not used later in this func, can increment here */
Denys Vlasenko219c9d42018-11-23 18:48:20 +0100878 tls->write_seq64_be = SWAP_BE64(1 + SWAP_BE64(t64));
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100879
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100880 cnt = 1;
881 remaining = size;
882 while (remaining != 0) {
883 unsigned n;
884
885 cnt++;
886 COUNTER(nonce) = htonl(cnt); /* yes, first cnt here is 2 (!) */
887 aes_encrypt_one_block(&tls->aes_encrypt, nonce, scratch);
888 n = remaining > AES_BLOCK_SIZE ? AES_BLOCK_SIZE : remaining;
889 xorbuf(buf, scratch, n);
890 buf += n;
891 remaining -= n;
892 }
893
Denys Vlasenkoecc90902018-11-23 18:31:26 +0100894 aesgcm_GHASH(tls->H, aad, /*sizeof(aad),*/ tls->outbuf + OUTBUF_PFX, size, authtag /*, sizeof(authtag)*/);
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100895 COUNTER(nonce) = htonl(1);
896 aes_encrypt_one_block(&tls->aes_encrypt, nonce, scratch);
Denys Vlasenko03569bc2018-11-24 14:08:29 +0100897 xorbuf_aligned_AES_BLOCK_SIZE(authtag, scratch);
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100898
899 memcpy(buf, authtag, sizeof(authtag));
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100900
901 /* Write out */
902 xhdr = (void*)(tls->outbuf + OUTBUF_PFX - 8 - RECHDR_LEN);
903 size += 8 + sizeof(authtag);
904 /*xhdr->type = type; - already is */
905 xhdr->proto_maj = TLS_MAJ;
906 xhdr->proto_min = TLS_MIN;
907 xhdr->len16_hi = size >> 8;
908 xhdr->len16_lo = size & 0xff;
909 size += RECHDR_LEN;
910 dump_raw_out(">> %s\n", xhdr, size);
911 xwrite(tls->ofd, xhdr, size);
912 dbg("wrote %u bytes\n", size);
Denys Vlasenkobe5ca422018-11-25 14:03:59 +0100913#undef COUNTER
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100914}
915
916static void xwrite_encrypted(tls_state_t *tls, unsigned size, unsigned type)
917{
918 if (!(tls->flags & ENCRYPTION_AESGCM)) {
919 xwrite_encrypted_and_hmac_signed(tls, size, type);
920 return;
921 }
922 xwrite_encrypted_aesgcm(tls, size, type);
923}
924
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100925static void xwrite_handshake_record(tls_state_t *tls, unsigned size)
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100926{
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100927 uint8_t *buf = tls->outbuf + OUTBUF_PFX;
928 struct record_hdr *xhdr = (void*)(buf - RECHDR_LEN);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100929
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100930 xhdr->type = RECORD_TYPE_HANDSHAKE;
931 xhdr->proto_maj = TLS_MAJ;
932 xhdr->proto_min = TLS_MIN;
933 xhdr->len16_hi = size >> 8;
934 xhdr->len16_lo = size & 0xff;
935 dump_raw_out(">> %s\n", xhdr, RECHDR_LEN + size);
936 xwrite(tls->ofd, xhdr, RECHDR_LEN + size);
937 dbg("wrote %u bytes\n", (int)RECHDR_LEN + size);
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100938}
939
940static void xwrite_and_update_handshake_hash(tls_state_t *tls, unsigned size)
941{
Denys Vlasenkoeb53d012018-11-25 14:45:55 +0100942 if (!(tls->flags & ENCRYPT_ON_WRITE)) {
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100943 uint8_t *buf;
944
945 xwrite_handshake_record(tls, size);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100946 /* Handshake hash does not include record headers */
Denys Vlasenko49ecee02017-01-24 16:00:54 +0100947 buf = tls->outbuf + OUTBUF_PFX;
948 hash_handshake(tls, ">> hash:%s", buf, size);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +0100949 return;
950 }
951 xwrite_encrypted(tls, size, RECORD_TYPE_HANDSHAKE);
952}
953
Denys Vlasenko38972a82017-01-20 19:11:14 +0100954static int tls_has_buffered_record(tls_state_t *tls)
955{
Denys Vlasenko39161392017-01-20 20:27:06 +0100956 int buffered = tls->buffered_size;
Denys Vlasenko38972a82017-01-20 19:11:14 +0100957 struct record_hdr *xhdr;
958 int rec_size;
959
960 if (buffered < RECHDR_LEN)
961 return 0;
Denys Vlasenko39161392017-01-20 20:27:06 +0100962 xhdr = (void*)(tls->inbuf + tls->ofs_to_buffered);
Denys Vlasenko38972a82017-01-20 19:11:14 +0100963 rec_size = RECHDR_LEN + (0x100 * xhdr->len16_hi + xhdr->len16_lo);
964 if (buffered < rec_size)
965 return 0;
966 return rec_size;
967}
968
Denys Vlasenkob5bf1912017-01-23 16:12:17 +0100969static const char *alert_text(int code)
970{
971 switch (code) {
972 case 20: return "bad MAC";
973 case 50: return "decode error";
974 case 51: return "decrypt error";
975 case 40: return "handshake failure";
976 case 112: return "unrecognized name";
977 }
978 return itoa(code);
979}
980
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100981static void tls_aesgcm_decrypt(tls_state_t *tls, uint8_t *buf, int size)
982{
Denys Vlasenkoecc90902018-11-23 18:31:26 +0100983#define COUNTER(v) (*(uint32_t*)(v + 12))
984
Denys Vlasenko03569bc2018-11-24 14:08:29 +0100985 //uint8_t aad[13 + 3] ALIGNED_long; /* +3 creates [16] buffer, simplifying GHASH() */
986 uint8_t nonce[12 + 4] ALIGNED_long; /* +4 creates space for AES block counter */
987 uint8_t scratch[AES_BLOCK_SIZE] ALIGNED_long; //[16]
988 //uint8_t authtag[AES_BLOCK_SIZE] ALIGNED_long; //[16]
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100989 unsigned remaining;
990 unsigned cnt;
991
Denys Vlasenko219c9d42018-11-23 18:48:20 +0100992 //memcpy(aad, buf, 8);
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100993 //aad[8] = type;
994 //aad[9] = TLS_MAJ;
995 //aad[10] = TLS_MIN;
996 //aad[11] = size >> 8;
Denys Vlasenkoecc90902018-11-23 18:31:26 +0100997 ///* set aad[12], and clear aad[13..15] */
998 //COUNTER(aad) = SWAP_LE32(size & 0xff);
Denys Vlasenko83e5c622018-11-23 17:21:38 +0100999
1000 memcpy(nonce, tls->server_write_IV, 4);
1001 memcpy(nonce + 4, buf, 8);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001002
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001003 cnt = 1;
1004 remaining = size;
1005 while (remaining != 0) {
1006 unsigned n;
1007
1008 cnt++;
1009 COUNTER(nonce) = htonl(cnt); /* yes, first cnt here is 2 (!) */
1010 aes_encrypt_one_block(&tls->aes_decrypt, nonce, scratch);
1011 n = remaining > AES_BLOCK_SIZE ? AES_BLOCK_SIZE : remaining;
Denys Vlasenko941440c2018-11-24 13:51:46 +01001012 xorbuf3(buf, scratch, buf + 8, n);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001013 buf += n;
1014 remaining -= n;
1015 }
1016
Denys Vlasenko941440c2018-11-24 13:51:46 +01001017 //aesgcm_GHASH(tls->H, aad, tls->inbuf + RECHDR_LEN, size, authtag);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001018 //COUNTER(nonce) = htonl(1);
1019 //aes_encrypt_one_block(&tls->aes_encrypt, nonce, scratch);
Denys Vlasenko03569bc2018-11-24 14:08:29 +01001020 //xorbuf_aligned_AES_BLOCK_SIZE(authtag, scratch);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001021
1022 //memcmp(buf, authtag, sizeof(authtag)) || DIE("HASH DOES NOT MATCH!");
1023#undef COUNTER
1024}
1025
Denys Vlasenko98066662018-02-06 13:33:00 +01001026static int tls_xread_record(tls_state_t *tls, const char *expected)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001027{
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001028 struct record_hdr *xhdr;
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01001029 int sz;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001030 int total;
1031 int target;
1032
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001033 again:
Denys Vlasenko39161392017-01-20 20:27:06 +01001034 dbg("ofs_to_buffered:%u buffered_size:%u\n", tls->ofs_to_buffered, tls->buffered_size);
1035 total = tls->buffered_size;
Denys Vlasenkoe7863f32017-01-20 17:59:25 +01001036 if (total != 0) {
Denys Vlasenko39161392017-01-20 20:27:06 +01001037 memmove(tls->inbuf, tls->inbuf + tls->ofs_to_buffered, total);
1038 //dbg("<< remaining at %d [%d] ", tls->ofs_to_buffered, total);
Denys Vlasenkoe7863f32017-01-20 17:59:25 +01001039 //dump_raw_in("<< %s\n", tls->inbuf, total);
1040 }
1041 errno = 0;
Denys Vlasenko39161392017-01-20 20:27:06 +01001042 target = MAX_INBUF;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001043 for (;;) {
Denys Vlasenko39161392017-01-20 20:27:06 +01001044 int rem;
1045
1046 if (total >= RECHDR_LEN && target == MAX_INBUF) {
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001047 xhdr = (void*)tls->inbuf;
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001048 target = RECHDR_LEN + (0x100 * xhdr->len16_hi + xhdr->len16_lo);
Denys Vlasenko98066662018-02-06 13:33:00 +01001049
1050 if (target > MAX_INBUF /* malformed input (too long) */
1051 || xhdr->proto_maj != TLS_MAJ
1052 || xhdr->proto_min != TLS_MIN
1053 ) {
1054 sz = total < target ? total : target;
Denys Vlasenko98066662018-02-06 13:33:00 +01001055 bad_record_die(tls, expected, sz);
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001056 }
Denys Vlasenkoe7863f32017-01-20 17:59:25 +01001057 dbg("xhdr type:%d ver:%d.%d len:%d\n",
1058 xhdr->type, xhdr->proto_maj, xhdr->proto_min,
1059 0x100 * xhdr->len16_hi + xhdr->len16_lo
1060 );
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001061 }
1062 /* if total >= target, we have a full packet (and possibly more)... */
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001063 if (total - target >= 0)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001064 break;
Denys Vlasenko39161392017-01-20 20:27:06 +01001065 /* input buffer is grown only as needed */
1066 rem = tls->inbuf_size - total;
1067 if (rem == 0) {
1068 tls->inbuf_size += MAX_INBUF / 8;
1069 if (tls->inbuf_size > MAX_INBUF)
1070 tls->inbuf_size = MAX_INBUF;
1071 dbg("inbuf_size:%d\n", tls->inbuf_size);
1072 rem = tls->inbuf_size - total;
1073 tls->inbuf = xrealloc(tls->inbuf, tls->inbuf_size);
1074 }
Denys Vlasenko9a647c32017-01-23 01:08:16 +01001075 sz = safe_read(tls->ifd, tls->inbuf + total, rem);
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001076 if (sz <= 0) {
1077 if (sz == 0 && total == 0) {
1078 /* "Abrupt" EOF, no TLS shutdown (seen from kernel.org) */
1079 dbg("EOF (without TLS shutdown) from peer\n");
Denys Vlasenko39161392017-01-20 20:27:06 +01001080 tls->buffered_size = 0;
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001081 goto end;
1082 }
1083 bb_perror_msg_and_die("short read, have only %d", total);
1084 }
Denys Vlasenkoe7863f32017-01-20 17:59:25 +01001085 dump_raw_in("<< %s\n", tls->inbuf + total, sz);
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01001086 total += sz;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001087 }
Denys Vlasenko39161392017-01-20 20:27:06 +01001088 tls->buffered_size = total - target;
1089 tls->ofs_to_buffered = target;
1090 //dbg("<< stashing at %d [%d] ", tls->ofs_to_buffered, tls->buffered_size);
1091 //dump_hex("<< %s\n", tls->inbuf + tls->ofs_to_buffered, tls->buffered_size);
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001092
1093 sz = target - RECHDR_LEN;
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01001094
1095 /* Needs to be decrypted? */
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001096 if (tls->min_encrypted_len_on_read != 0) {
1097 if (sz < (int)tls->min_encrypted_len_on_read)
1098 bb_error_msg_and_die("bad encrypted len:%u", sz);
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01001099
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001100 if (tls->flags & ENCRYPTION_AESGCM) {
1101 /* AESGCM */
1102 uint8_t *p = tls->inbuf + RECHDR_LEN;
1103
1104 sz -= 8 + AES_BLOCK_SIZE; /* we will overwrite nonce, drop hash */
1105 tls_aesgcm_decrypt(tls, p, sz);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001106 dbg("encrypted size:%u\n", sz);
1107 } else
Denys Vlasenko63bfe0e2018-12-10 16:43:53 +01001108 if (tls->min_encrypted_len_on_read > TLS_MAC_SIZE(tls)) {
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001109 /* AES+SHA */
1110 uint8_t *p = tls->inbuf + RECHDR_LEN;
1111 int padding_len;
1112
1113 if (sz & (AES_BLOCK_SIZE-1))
1114 bb_error_msg_and_die("bad encrypted len:%u", sz);
1115
1116 /* Decrypt content+MAC+padding, moving it over IV in the process */
1117 sz -= AES_BLOCK_SIZE; /* we will overwrite IV now */
1118 aes_cbc_decrypt(
Denys Vlasenko5e4236d2018-11-23 18:02:44 +01001119 &tls->aes_decrypt, /* selects 128/256 */
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001120 p, /* IV */
1121 p + AES_BLOCK_SIZE, sz, /* ciphertext */
1122 p /* plaintext */
1123 );
1124 padding_len = p[sz - 1];
1125 dbg("encrypted size:%u type:0x%02x padding_length:0x%02x\n", sz, p[0], padding_len);
1126 padding_len++;
Denys Vlasenko63bfe0e2018-12-10 16:43:53 +01001127 sz -= TLS_MAC_SIZE(tls) + padding_len; /* drop MAC and padding */
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001128 } else {
1129 /* if nonzero, then it's TLS_RSA_WITH_NULL_SHA256: drop MAC */
1130 /* else: no encryption yet on input, subtract zero = NOP */
1131 sz -= tls->min_encrypted_len_on_read;
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01001132 }
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01001133 }
Denys Vlasenko0af52652017-01-20 21:23:10 +01001134 if (sz < 0)
1135 bb_error_msg_and_die("encrypted data too short");
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01001136
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001137 //dump_hex("<< %s\n", tls->inbuf, RECHDR_LEN + sz);
1138
1139 xhdr = (void*)tls->inbuf;
1140 if (xhdr->type == RECORD_TYPE_ALERT && sz >= 2) {
1141 uint8_t *p = tls->inbuf + RECHDR_LEN;
1142 dbg("ALERT size:%d level:%d description:%d\n", sz, p[0], p[1]);
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001143 if (p[0] == 2) { /* fatal */
1144 bb_error_msg_and_die("TLS %s from peer (alert code %d): %s",
1145 "error",
1146 p[1], alert_text(p[1])
1147 );
1148 }
Denys Vlasenko54b927d2017-01-20 21:19:38 +01001149 if (p[0] == 1) { /* warning */
1150 if (p[1] == 0) { /* "close_notify" warning: it's EOF */
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001151 dbg("EOF (TLS encoded) from peer\n");
1152 sz = 0;
1153 goto end;
1154 }
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001155//This possibly needs to be cached and shown only if
1156//a fatal alert follows
1157// bb_error_msg("TLS %s from peer (alert code %d): %s",
1158// "warning",
1159// p[1], alert_text(p[1])
1160// );
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001161 /* discard it, get next record */
1162 goto again;
1163 }
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001164 /* p[0] not 1 or 2: not defined in protocol */
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001165 sz = 0;
1166 goto end;
1167 }
1168
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01001169 /* RFC 5246 is not saying it explicitly, but sha256 hash
Denys Vlasenkofe0588d2017-01-17 17:04:24 +01001170 * in our FINISHED record must include data of incoming packets too!
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01001171 */
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001172 if (tls->inbuf[0] == RECORD_TYPE_HANDSHAKE
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001173/* HANDSHAKE HASH: */
1174 // && do_we_know_which_hash_to_use /* server_hello() might not know it in the future! */
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001175 ) {
1176 hash_handshake(tls, "<< hash:%s", tls->inbuf + RECHDR_LEN, sz);
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01001177 }
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001178 end:
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01001179 dbg("got block len:%u\n", sz);
1180 return sz;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001181}
1182
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001183static void binary_to_pstm(pstm_int *pstm_n, uint8_t *bin_ptr, unsigned len)
1184{
1185 pstm_init_for_read_unsigned_bin(/*pool:*/ NULL, pstm_n, len);
1186 pstm_read_unsigned_bin(pstm_n, bin_ptr, len);
1187 //return bin_ptr + len;
1188}
1189
Denys Vlasenkofe0588d2017-01-17 17:04:24 +01001190/*
1191 * DER parsing routines
1192 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001193static unsigned get_der_len(uint8_t **bodyp, uint8_t *der, uint8_t *end)
1194{
Denys Vlasenko2a17d1f2017-01-14 22:38:25 +01001195 unsigned len, len1;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001196
1197 if (end - der < 2)
1198 xfunc_die();
1199// if ((der[0] & 0x1f) == 0x1f) /* not single-byte item code? */
1200// xfunc_die();
1201
1202 len = der[1]; /* maybe it's short len */
1203 if (len >= 0x80) {
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001204 /* no, it's long */
Denys Vlasenko2a17d1f2017-01-14 22:38:25 +01001205
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001206 if (len == 0x80 || end - der < (int)(len - 0x7e)) {
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001207 /* 0x80 is "0 bytes of len", invalid DER: must use short len if can */
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001208 /* need 3 or 4 bytes for 81, 82 */
1209 xfunc_die();
1210 }
1211
1212 len1 = der[2]; /* if (len == 0x81) it's "ii 81 xx", fetch xx */
1213 if (len > 0x82) {
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001214 /* >0x82 is "3+ bytes of len", should not happen realistically */
1215 xfunc_die();
1216 }
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001217 if (len == 0x82) { /* it's "ii 82 xx yy" */
1218 len1 = 0x100*len1 + der[3];
1219 der += 1; /* skip [yy] */
1220 }
Denys Vlasenko2a17d1f2017-01-14 22:38:25 +01001221 der += 1; /* skip [xx] */
1222 len = len1;
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001223// if (len < 0x80)
1224// xfunc_die(); /* invalid DER: must use short len if can */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001225 }
Denys Vlasenko2a17d1f2017-01-14 22:38:25 +01001226 der += 2; /* skip [code]+[1byte] */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001227
Denys Vlasenko2a17d1f2017-01-14 22:38:25 +01001228 if (end - der < (int)len)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001229 xfunc_die();
1230 *bodyp = der;
1231
1232 return len;
1233}
1234
1235static uint8_t *enter_der_item(uint8_t *der, uint8_t **endp)
1236{
1237 uint8_t *new_der;
1238 unsigned len = get_der_len(&new_der, der, *endp);
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +01001239 dbg_der("entered der @%p:0x%02x len:%u inner_byte @%p:0x%02x\n", der, der[0], len, new_der, new_der[0]);
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001240 /* Move "end" position to cover only this item */
1241 *endp = new_der + len;
1242 return new_der;
1243}
1244
1245static uint8_t *skip_der_item(uint8_t *der, uint8_t *end)
1246{
1247 uint8_t *new_der;
1248 unsigned len = get_der_len(&new_der, der, end);
1249 /* Skip body */
1250 new_der += len;
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +01001251 dbg_der("skipped der 0x%02x, next byte 0x%02x\n", der[0], new_der[0]);
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001252 return new_der;
1253}
1254
Denys Vlasenko11d00962017-01-15 00:12:42 +01001255static void der_binary_to_pstm(pstm_int *pstm_n, uint8_t *der, uint8_t *end)
1256{
Denys Vlasenkof78ad092017-01-15 00:18:22 +01001257 uint8_t *bin_ptr;
1258 unsigned len = get_der_len(&bin_ptr, der, end);
Denys Vlasenko11d00962017-01-15 00:12:42 +01001259
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +01001260 dbg_der("binary bytes:%u, first:0x%02x\n", len, bin_ptr[0]);
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001261 binary_to_pstm(pstm_n, bin_ptr, len);
Denys Vlasenko11d00962017-01-15 00:12:42 +01001262}
1263
1264static void find_key_in_der_cert(tls_state_t *tls, uint8_t *der, int len)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001265{
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001266/* Certificate is a DER-encoded data structure. Each DER element has a length,
1267 * which makes it easy to skip over large compound elements of any complexity
1268 * without parsing them. Example: partial decode of kernel.org certificate:
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001269 * SEQ 0x05ac/1452 bytes (Certificate): 308205ac
1270 * SEQ 0x0494/1172 bytes (tbsCertificate): 30820494
1271 * [ASN_CONTEXT_SPECIFIC | ASN_CONSTRUCTED | 0] 3 bytes: a003
1272 * INTEGER (version): 0201 02
1273 * INTEGER 0x11 bytes (serialNumber): 0211 00 9f85bf664b0cddafca508679501b2be4
1274 * //^^^^^^note: matrixSSL also allows [ASN_CONTEXT_SPECIFIC | ASN_PRIMITIVE | 2] = 0x82 type
1275 * SEQ 0x0d bytes (signatureAlgo): 300d
1276 * OID 9 bytes: 0609 2a864886f70d01010b (OID_SHA256_RSA_SIG 42.134.72.134.247.13.1.1.11)
1277 * NULL: 0500
1278 * SEQ 0x5f bytes (issuer): 305f
1279 * SET 11 bytes: 310b
1280 * SEQ 9 bytes: 3009
1281 * OID 3 bytes: 0603 550406
1282 * Printable string "FR": 1302 4652
1283 * SET 14 bytes: 310e
1284 * SEQ 12 bytes: 300c
1285 * OID 3 bytes: 0603 550408
1286 * Printable string "Paris": 1305 5061726973
1287 * SET 14 bytes: 310e
1288 * SEQ 12 bytes: 300c
1289 * OID 3 bytes: 0603 550407
1290 * Printable string "Paris": 1305 5061726973
1291 * SET 14 bytes: 310e
1292 * SEQ 12 bytes: 300c
1293 * OID 3 bytes: 0603 55040a
1294 * Printable string "Gandi": 1305 47616e6469
1295 * SET 32 bytes: 3120
1296 * SEQ 30 bytes: 301e
1297 * OID 3 bytes: 0603 550403
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001298 * Printable string "Gandi Standard SSL CA 2": 1317 47616e6469205374616e646172642053534c2043412032
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001299 * SEQ 30 bytes (validity): 301e
1300 * TIME "161011000000Z": 170d 3136313031313030303030305a
1301 * TIME "191011235959Z": 170d 3139313031313233353935395a
1302 * SEQ 0x5b/91 bytes (subject): 305b //I did not decode this
1303 * 3121301f060355040b1318446f6d61696e20436f
1304 * 6e74726f6c2056616c6964617465643121301f06
1305 * 0355040b1318506f73697469766553534c204d75
1306 * 6c74692d446f6d61696e31133011060355040313
1307 * 0a6b65726e656c2e6f7267
1308 * SEQ 0x01a2/418 bytes (subjectPublicKeyInfo): 308201a2
1309 * SEQ 13 bytes (algorithm): 300d
1310 * OID 9 bytes: 0609 2a864886f70d010101 (OID_RSA_KEY_ALG 42.134.72.134.247.13.1.1.1)
1311 * NULL: 0500
1312 * BITSTRING 0x018f/399 bytes (publicKey): 0382018f
1313 * ????: 00
1314 * //after the zero byte, it appears key itself uses DER encoding:
1315 * SEQ 0x018a/394 bytes: 3082018a
1316 * INTEGER 0x0181/385 bytes (modulus): 02820181
1317 * 00b1ab2fc727a3bef76780c9349bf3
1318 * ...24 more blocks of 15 bytes each...
1319 * 90e895291c6bc8693b65
1320 * INTEGER 3 bytes (exponent): 0203 010001
1321 * [ASN_CONTEXT_SPECIFIC | ASN_CONSTRUCTED | 0x3] 0x01e5 bytes (X509v3 extensions): a38201e5
1322 * SEQ 0x01e1 bytes: 308201e1
1323 * ...
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001324 * Certificate is a sequence of three elements:
1325 * tbsCertificate (SEQ)
1326 * signatureAlgorithm (AlgorithmIdentifier)
1327 * signatureValue (BIT STRING)
1328 *
1329 * In turn, tbsCertificate is a sequence of:
1330 * version
1331 * serialNumber
1332 * signatureAlgo (AlgorithmIdentifier)
1333 * issuer (Name, has complex structure)
1334 * validity (Validity, SEQ of two Times)
1335 * subject (Name)
1336 * subjectPublicKeyInfo (SEQ)
1337 * ...
1338 *
1339 * subjectPublicKeyInfo is a sequence of:
1340 * algorithm (AlgorithmIdentifier)
1341 * publicKey (BIT STRING)
1342 *
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001343 * We need Certificate.tbsCertificate.subjectPublicKeyInfo.publicKey
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001344 *
1345 * Example of an ECDSA key:
1346 * SEQ 0x59 bytes (subjectPublicKeyInfo): 3059
1347 * SEQ 0x13 bytes (algorithm): 3013
1348 * OID 7 bytes: 0607 2a8648ce3d0201 (OID_ECDSA_KEY_ALG 42.134.72.206.61.2.1)
1349 * OID 8 bytes: 0608 2a8648ce3d030107 (OID_EC_prime256v1 42.134.72.206.61.3.1.7)
1350 * BITSTRING 0x42 bytes (publicKey): 0342
1351 * 0004 53af f65e 50cc 7959 7e29 0171 c75c
1352 * 7335 e07d f45b 9750 b797 3a38 aebb 2ac6
1353 * 8329 2748 e77e 41cb d482 2ce6 05ec a058
1354 * f3ab d561 2f4c d845 9ad3 7252 e3de bd3b
1355 * 9012
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001356 */
1357 uint8_t *end = der + len;
1358
1359 /* enter "Certificate" item: [der, end) will be only Cert */
1360 der = enter_der_item(der, &end);
1361
1362 /* enter "tbsCertificate" item: [der, end) will be only tbsCert */
1363 der = enter_der_item(der, &end);
1364
Ivan Abrea5cb4f902018-06-24 20:04:57 +02001365 /*
1366 * Skip version field only if it is present. For a v1 certificate, the
1367 * version field won't be present since v1 is the default value for the
1368 * version field and fields with default values should be omitted (see
1369 * RFC 5280 sections 4.1 and 4.1.2.1). If the version field is present
1370 * it will have a tag class of 2 (context-specific), bit 6 as 1
1371 * (constructed), and a tag number of 0 (see ITU-T X.690 sections 8.1.2
1372 * and 8.14).
1373 */
Denys Vlasenko084bac42018-11-05 00:18:18 +01001374 /* bits 7-6: 10 */
1375 /* bit 5: 1 */
1376 /* bits 4-0: 00000 */
1377 if (der[0] == 0xa0)
Ivan Abrea5cb4f902018-06-24 20:04:57 +02001378 der = skip_der_item(der, end); /* version */
Ivan Abrea5cb4f902018-06-24 20:04:57 +02001379
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001380 /* skip up to subjectPublicKeyInfo */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001381 der = skip_der_item(der, end); /* serialNumber */
1382 der = skip_der_item(der, end); /* signatureAlgo */
1383 der = skip_der_item(der, end); /* issuer */
1384 der = skip_der_item(der, end); /* validity */
1385 der = skip_der_item(der, end); /* subject */
1386
Denys Vlasenko11d00962017-01-15 00:12:42 +01001387 /* enter subjectPublicKeyInfo */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001388 der = enter_der_item(der, &end);
Denys Vlasenko11d00962017-01-15 00:12:42 +01001389 { /* check subjectPublicKeyInfo.algorithm */
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001390 static const uint8_t OID_RSA_KEY_ALG[] = {
Denys Vlasenko11d00962017-01-15 00:12:42 +01001391 0x30,0x0d, // SEQ 13 bytes
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001392 0x06,0x09, 0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,0x01,0x01, //OID_RSA_KEY_ALG 42.134.72.134.247.13.1.1.1
Denys Vlasenko11d00962017-01-15 00:12:42 +01001393 //0x05,0x00, // NULL
1394 };
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001395 static const uint8_t OID_ECDSA_KEY_ALG[] = {
1396 0x30,0x13, // SEQ 0x13 bytes
1397 0x06,0x07, 0x2a,0x86,0x48,0xce,0x3d,0x02,0x01, //OID_ECDSA_KEY_ALG 42.134.72.206.61.2.1
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001398 //allow any curve code for now...
1399 // 0x06,0x08, 0x2a,0x86,0x48,0xce,0x3d,0x03,0x01,0x07, //OID_EC_prime256v1 42.134.72.206.61.3.1.7
1400 //RFC 3279:
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001401 //42.134.72.206.61.3 is ellipticCurve
1402 //42.134.72.206.61.3.0 is c-TwoCurve
1403 //42.134.72.206.61.3.1 is primeCurve
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001404 //42.134.72.206.61.3.1.7 is curve_secp256r1
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001405 };
1406 if (memcmp(der, OID_RSA_KEY_ALG, sizeof(OID_RSA_KEY_ALG)) == 0) {
1407 dbg("RSA key\n");
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001408 tls->flags |= GOT_CERT_RSA_KEY_ALG;
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001409 } else
1410 if (memcmp(der, OID_ECDSA_KEY_ALG, sizeof(OID_ECDSA_KEY_ALG)) == 0) {
1411 dbg("ECDSA key\n");
Denys Vlasenkoa33b0082018-11-25 14:28:32 +01001412 //UNUSED: tls->flags |= GOT_CERT_ECDSA_KEY_ALG;
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001413 } else
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001414 bb_error_msg_and_die("not RSA or ECDSA cert");
Denys Vlasenko11d00962017-01-15 00:12:42 +01001415 }
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001416
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001417 if (tls->flags & GOT_CERT_RSA_KEY_ALG) {
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001418 /* parse RSA key: */
1419 //based on getAsnRsaPubKey(), pkcs1ParsePrivBin() is also of note
1420 /* skip subjectPublicKeyInfo.algorithm */
1421 der = skip_der_item(der, end);
1422 /* enter subjectPublicKeyInfo.publicKey */
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001423 //die_if_not_this_der_type(der, end, 0x03); /* must be BITSTRING */
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001424 der = enter_der_item(der, &end);
1425
1426 dbg("key bytes:%u, first:0x%02x\n", (int)(end - der), der[0]);
1427 if (end - der < 14)
1428 xfunc_die();
1429 /* example format:
1430 * ignore bits: 00
1431 * SEQ 0x018a/394 bytes: 3082018a
1432 * INTEGER 0x0181/385 bytes (modulus): 02820181 XX...XXX
1433 * INTEGER 3 bytes (exponent): 0203 010001
1434 */
1435 if (*der != 0) /* "ignore bits", should be 0 */
1436 xfunc_die();
1437 der++;
1438 der = enter_der_item(der, &end); /* enter SEQ */
1439 /* memset(tls->hsd->server_rsa_pub_key, 0, sizeof(tls->hsd->server_rsa_pub_key)); - already is */
1440 der_binary_to_pstm(&tls->hsd->server_rsa_pub_key.N, der, end); /* modulus */
1441 der = skip_der_item(der, end);
1442 der_binary_to_pstm(&tls->hsd->server_rsa_pub_key.e, der, end); /* exponent */
1443 tls->hsd->server_rsa_pub_key.size = pstm_unsigned_bin_size(&tls->hsd->server_rsa_pub_key.N);
1444 dbg("server_rsa_pub_key.size:%d\n", tls->hsd->server_rsa_pub_key.size);
1445 }
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001446 /* else: ECDSA key. It is not used for generating encryption keys,
1447 * it is used only to sign the EC public key (which comes in ServerKey message).
1448 * Since we do not verify cert validity, verifying signature on EC public key
1449 * wouldn't add any security. Thus, we do nothing here.
1450 */
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001451}
1452
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001453/*
1454 * TLS Handshake routines
1455 */
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001456static int tls_xread_handshake_block(tls_state_t *tls, int min_len)
Denys Vlasenkofe0588d2017-01-17 17:04:24 +01001457{
1458 struct record_hdr *xhdr;
Denys Vlasenko98066662018-02-06 13:33:00 +01001459 int len = tls_xread_record(tls, "handshake record");
Denys Vlasenkofe0588d2017-01-17 17:04:24 +01001460
1461 xhdr = (void*)tls->inbuf;
1462 if (len < min_len
1463 || xhdr->type != RECORD_TYPE_HANDSHAKE
Denys Vlasenkofe0588d2017-01-17 17:04:24 +01001464 ) {
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001465 bad_record_die(tls, "handshake record", len);
Denys Vlasenkofe0588d2017-01-17 17:04:24 +01001466 }
1467 dbg("got HANDSHAKE\n");
1468 return len;
1469}
1470
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001471static ALWAYS_INLINE void fill_handshake_record_hdr(void *buf, unsigned type, unsigned len)
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01001472{
1473 struct handshake_hdr {
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01001474 uint8_t type;
1475 uint8_t len24_hi, len24_mid, len24_lo;
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001476 } *h = buf;
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01001477
1478 len -= 4;
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001479 h->type = type;
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01001480 h->len24_hi = len >> 16;
1481 h->len24_mid = len >> 8;
1482 h->len24_lo = len & 0xff;
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01001483}
1484
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001485static void send_client_hello_and_alloc_hsd(tls_state_t *tls, const char *sni)
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001486{
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001487#define NUM_CIPHERS (7 + 6 * ENABLE_FEATURE_TLS_SHA1 + ALLOW_RSA_NULL_SHA256)
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001488 static const uint8_t ciphers[] = {
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001489 0x00,2 + NUM_CIPHERS*2, //len16_be
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001490 0x00,0xFF, //not a cipher - TLS_EMPTY_RENEGOTIATION_INFO_SCSV
1491 /* ^^^^^^ RFC 5746 Renegotiation Indication Extension - some servers will refuse to work with us otherwise */
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001492#if ENABLE_FEATURE_TLS_SHA1
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001493 0xC0,0x09, // 1 TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA - ok: wget https://is.gd/
1494 0xC0,0x0A, // 2 TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA - ok: wget https://is.gd/
1495 0xC0,0x13, // 3 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - ok: openssl s_server ... -cipher ECDHE-RSA-AES128-SHA
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001496 0xC0,0x14, // 4 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA - ok: openssl s_server ... -cipher ECDHE-RSA-AES256-SHA (might fail with older openssl)
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001497 // 0xC0,0x18, // TLS_ECDH_anon_WITH_AES_128_CBC_SHA
1498 // 0xC0,0x19, // TLS_ECDH_anon_WITH_AES_256_CBC_SHA
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001499#endif
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001500 0xC0,0x23, // 5 TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 - ok: wget https://is.gd/
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001501 // 0xC0,0x24, // TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 - can't do SHA384 yet
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001502 0xC0,0x27, // 6 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 - ok: openssl s_server ... -cipher ECDHE-RSA-AES128-SHA256
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001503 // 0xC0,0x28, // TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 - can't do SHA384 yet
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001504 0xC0,0x2B, // 7 TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 - ok: wget https://is.gd/
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001505 // 0xC0,0x2C, // TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 - wget https://is.gd/: "TLS error from peer (alert code 20): bad MAC"
Denys Vlasenkod4681c72018-11-26 10:33:23 +01001506//TODO: GCM_SHA384 ciphers can be supported, only need sha384-based PRF?
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001507 0xC0,0x2F, // 8 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 - ok: openssl s_server ... -cipher ECDHE-RSA-AES128-GCM-SHA256
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001508 // 0xC0,0x30, // TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 - openssl s_server ... -cipher ECDHE-RSA-AES256-GCM-SHA384: "decryption failed or bad record mac"
1509 //possibly these too:
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001510#if ENABLE_FEATURE_TLS_SHA1
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001511 // 0xC0,0x35, // TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
1512 // 0xC0,0x36, // TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001513#endif
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001514 // 0xC0,0x37, // TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
1515 // 0xC0,0x38, // TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 - can't do SHA384 yet
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001516#if ENABLE_FEATURE_TLS_SHA1
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001517 0x00,0x2F, // 9 TLS_RSA_WITH_AES_128_CBC_SHA - ok: openssl s_server ... -cipher AES128-SHA
1518 0x00,0x35, //10 TLS_RSA_WITH_AES_256_CBC_SHA - ok: openssl s_server ... -cipher AES256-SHA
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001519#endif
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001520 0x00,0x3C, //11 TLS_RSA_WITH_AES_128_CBC_SHA256 - ok: openssl s_server ... -cipher AES128-SHA256
1521 0x00,0x3D, //12 TLS_RSA_WITH_AES_256_CBC_SHA256 - ok: openssl s_server ... -cipher AES256-SHA256
1522 0x00,0x9C, //13 TLS_RSA_WITH_AES_128_GCM_SHA256 - ok: openssl s_server ... -cipher AES128-GCM-SHA256
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001523 // 0x00,0x9D, // TLS_RSA_WITH_AES_256_GCM_SHA384 - openssl s_server ... -cipher AES256-GCM-SHA384: "decryption failed or bad record mac"
1524#if ALLOW_RSA_NULL_SHA256
1525 0x00,0x3B, // TLS_RSA_WITH_NULL_SHA256
1526#endif
1527 0x01,0x00, //not a cipher - comprtypes_len, comprtype
1528 };
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001529 static const uint8_t supported_groups[] = {
1530 0x00,0x0a, //extension_type: "supported_groups"
1531 0x00,0x04, //ext len
1532 0x00,0x02, //list len
Denys Vlasenkod4681c72018-11-26 10:33:23 +01001533 0x00,0x1d, //curve_x25519 (RFC 7748)
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001534 //0x00,0x17, //curve_secp256r1
1535 //0x00,0x18, //curve_secp384r1
1536 //0x00,0x19, //curve_secp521r1
1537 };
1538 //static const uint8_t signature_algorithms[] = {
1539 // 000d
1540 // 0020
1541 // 001e
1542 // 0601 0602 0603 0501 0502 0503 0401 0402 0403 0301 0302 0303 0201 0202 0203
1543 //};
1544
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001545 struct client_hello {
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001546 uint8_t type;
1547 uint8_t len24_hi, len24_mid, len24_lo;
1548 uint8_t proto_maj, proto_min;
1549 uint8_t rand32[32];
1550 uint8_t session_id_len;
1551 /* uint8_t session_id[]; */
1552 uint8_t cipherid_len16_hi, cipherid_len16_lo;
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001553 uint8_t cipherid[2 + NUM_CIPHERS*2]; /* actually variable */
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001554 uint8_t comprtypes_len;
1555 uint8_t comprtypes[1]; /* actually variable */
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001556 /* Extensions (SNI shown):
1557 * hi,lo // len of all extensions
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001558 * 00,00 // extension_type: "Server Name"
1559 * 00,0e // list len (there can be more than one SNI)
1560 * 00,0c // len of 1st Server Name Indication
1561 * 00 // name type: host_name
1562 * 00,09 // name len
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001563 * "localhost" // name
1564 */
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001565// GNU Wget 1.18 to cdn.kernel.org sends these extensions:
1566// 0055
1567// 0005 0005 0100000000 - status_request
1568// 0000 0013 0011 00 000e 63646e 2e 6b65726e656c 2e 6f7267 - server_name
1569// ff01 0001 00 - renegotiation_info
1570// 0023 0000 - session_ticket
1571// 000a 0008 0006001700180019 - supported_groups
1572// 000b 0002 0100 - ec_point_formats
Denys Vlasenko98066662018-02-06 13:33:00 +01001573// 000d 0016 0014 0401 0403 0501 0503 0601 0603 0301 0303 0201 0203 - signature_algorithms
1574// wolfssl library sends this option, RFC 7627 (closes a security weakness, some servers may require it. TODO?):
1575// 0017 0000 - extended master secret
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001576 };
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001577 struct client_hello *record;
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001578 uint8_t *ptr;
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001579 int len;
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001580 int ext_len;
1581 int sni_len = sni ? strnlen(sni, 127 - 5) : 0;
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001582
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001583 ext_len = 0;
1584 /* is.gd responds with "handshake failure" to our hello if there's no supported_groups element */
1585 ext_len += sizeof(supported_groups);
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001586 if (sni_len)
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001587 ext_len += 9 + sni_len;
1588
1589 /* +2 is for "len of all extensions" 2-byte field */
1590 len = sizeof(*record) + 2 + ext_len;
Denys Vlasenkod5a04052018-11-13 11:58:53 +01001591 record = tls_get_zeroed_outbuf(tls, len);
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001592
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001593 fill_handshake_record_hdr(record, HANDSHAKE_CLIENT_HELLO, len);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001594 record->proto_maj = TLS_MAJ; /* the "requested" version of the protocol, */
1595 record->proto_min = TLS_MIN; /* can be higher than one in record headers */
1596 tls_get_random(record->rand32, sizeof(record->rand32));
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01001597 if (TLS_DEBUG_FIXED_SECRETS)
1598 memset(record->rand32, 0x11, sizeof(record->rand32));
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001599 /* record->session_id_len = 0; - already is */
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001600
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001601 BUILD_BUG_ON(sizeof(ciphers) != 2 + 2 + NUM_CIPHERS*2 + 2);
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001602 memcpy(&record->cipherid_len16_hi, ciphers, sizeof(ciphers));
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001603
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001604 ptr = (void*)(record + 1);
1605 *ptr++ = ext_len >> 8;
1606 *ptr++ = ext_len;
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001607 if (sni_len) {
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001608 //ptr[0] = 0; //
1609 //ptr[1] = 0; //extension_type
1610 //ptr[2] = 0; //
1611 ptr[3] = sni_len + 5; //list len
1612 //ptr[4] = 0; //
1613 ptr[5] = sni_len + 3; //len of 1st SNI
1614 //ptr[6] = 0; //name type
1615 //ptr[7] = 0; //
1616 ptr[8] = sni_len; //name len
1617 ptr = mempcpy(&ptr[9], sni, sni_len);
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001618 }
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001619 memcpy(ptr, supported_groups, sizeof(supported_groups));
Denys Vlasenko19e695e2017-01-20 14:27:58 +01001620
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001621 tls->hsd = xzalloc(sizeof(*tls->hsd));
1622 /* HANDSHAKE HASH: ^^^ + len if need to save saved_client_hello */
1623 memcpy(tls->hsd->client_and_server_rand32, record->rand32, sizeof(record->rand32));
1624/* HANDSHAKE HASH:
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001625 tls->hsd->saved_client_hello_size = len;
1626 memcpy(tls->hsd->saved_client_hello, record, len);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001627 */
1628 dbg(">> CLIENT_HELLO\n");
1629 /* Can hash immediately only if we know which MAC hash to use.
1630 * So far we do know: it's sha256:
1631 */
1632 sha256_begin(&tls->hsd->handshake_hash_ctx);
1633 xwrite_and_update_handshake_hash(tls, len);
1634 /* if this would become infeasible: save tls->hsd->saved_client_hello,
1635 * use "xwrite_handshake_record(tls, len)" here,
1636 * and hash saved_client_hello later.
1637 */
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001638}
1639
1640static void get_server_hello(tls_state_t *tls)
1641{
1642 struct server_hello {
1643 struct record_hdr xhdr;
1644 uint8_t type;
1645 uint8_t len24_hi, len24_mid, len24_lo;
1646 uint8_t proto_maj, proto_min;
1647 uint8_t rand32[32]; /* first 4 bytes are unix time in BE format */
1648 uint8_t session_id_len;
1649 uint8_t session_id[32];
1650 uint8_t cipherid_hi, cipherid_lo;
1651 uint8_t comprtype;
1652 /* extensions may follow, but only those which client offered in its Hello */
1653 };
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001654
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001655 struct server_hello *hp;
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001656 uint8_t *cipherid;
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001657 uint8_t cipherid1;
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001658 int len, len24;
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001659
Denys Vlasenko5b05d9d2017-02-03 18:19:59 +01001660 len = tls_xread_handshake_block(tls, 74 - 32);
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001661
1662 hp = (void*)tls->inbuf;
1663 // 74 bytes:
1664 // 02 000046 03|03 58|78|cf|c1 50|a5|49|ee|7e|29|48|71|fe|97|fa|e8|2d|19|87|72|90|84|9d|37|a3|f0|cb|6f|5f|e3|3c|2f |20 |d8|1a|78|96|52|d6|91|01|24|b3|d6|5b|b7|d0|6c|b3|e1|78|4e|3c|95|de|74|a0|ba|eb|a7|3a|ff|bd|a2|bf |00|9c |00|
1665 //SvHl len=70 maj.min unixtime^^^ 28randbytes^^^^^^^^^^^^^^^^^^^^^^^^^^^^_^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^_^^^ slen sid32bytes^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cipSel comprSel
1666 if (hp->type != HANDSHAKE_SERVER_HELLO
1667 || hp->len24_hi != 0
1668 || hp->len24_mid != 0
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001669 /* hp->len24_lo checked later */
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001670 || hp->proto_maj != TLS_MAJ
1671 || hp->proto_min != TLS_MIN
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001672 ) {
Denys Vlasenkob5bf1912017-01-23 16:12:17 +01001673 bad_record_die(tls, "'server hello'", len);
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001674 }
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001675
1676 cipherid = &hp->cipherid_hi;
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001677 len24 = hp->len24_lo;
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001678 if (hp->session_id_len != 32) {
1679 if (hp->session_id_len != 0)
Denys Vlasenko5b05d9d2017-02-03 18:19:59 +01001680 bad_record_die(tls, "'server hello'", len);
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001681
1682 // session_id_len == 0: no session id
1683 // "The server
1684 // may return an empty session_id to indicate that the session will
1685 // not be cached and therefore cannot be resumed."
1686 cipherid -= 32;
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001687 len24 += 32; /* what len would be if session id would be present */
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01001688 }
1689
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001690 if (len24 < 70)
Denys Vlasenko5b05d9d2017-02-03 18:19:59 +01001691 bad_record_die(tls, "'server hello'", len);
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01001692 dbg("<< SERVER_HELLO\n");
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001693
Denys Vlasenko9a647c32017-01-23 01:08:16 +01001694 memcpy(tls->hsd->client_and_server_rand32 + 32, hp->rand32, sizeof(hp->rand32));
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001695
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001696 /* Set up encryption params based on selected cipher */
1697#if 0
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001698#if ENABLE_FEATURE_TLS_SHA1
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001699 0xC0,0x09, // 1 TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA - ok: wget https://is.gd/
1700 0xC0,0x0A, // 2 TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA - ok: wget https://is.gd/
1701 0xC0,0x13, // 3 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - ok: openssl s_server ... -cipher ECDHE-RSA-AES128-SHA
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001702 0xC0,0x14, // 4 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA - ok: openssl s_server ... -cipher ECDHE-RSA-AES256-SHA (might fail with older openssl)
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001703 // 0xC0,0x18, // TLS_ECDH_anon_WITH_AES_128_CBC_SHA
1704 // 0xC0,0x19, // TLS_ECDH_anon_WITH_AES_256_CBC_SHA
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001705#endif
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001706 0xC0,0x23, // 5 TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 - ok: wget https://is.gd/
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001707 // 0xC0,0x24, // TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 - can't do SHA384 yet
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001708 0xC0,0x27, // 6 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 - ok: openssl s_server ... -cipher ECDHE-RSA-AES128-SHA256
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001709 // 0xC0,0x28, // TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 - can't do SHA384 yet
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001710 0xC0,0x2B, // 7 TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 - ok: wget https://is.gd/
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001711 // 0xC0,0x2C, // TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 - wget https://is.gd/: "TLS error from peer (alert code 20): bad MAC"
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001712//TODO: GCM_SHA384 ciphers can be supported, only need sha384-based PRF?
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001713 0xC0,0x2F, // 8 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 - ok: openssl s_server ... -cipher ECDHE-RSA-AES128-GCM-SHA256
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001714 // 0xC0,0x30, // TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 - openssl s_server ... -cipher ECDHE-RSA-AES256-GCM-SHA384: "decryption failed or bad record mac"
1715 //possibly these too:
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001716#if ENABLE_FEATURE_TLS_SHA1
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001717 // 0xC0,0x35, // TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
1718 // 0xC0,0x36, // TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001719#endif
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001720 // 0xC0,0x37, // TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
1721 // 0xC0,0x38, // TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 - can't do SHA384 yet
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001722#if ENABLE_FEATURE_TLS_SHA1
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001723 0x00,0x2F, // 9 TLS_RSA_WITH_AES_128_CBC_SHA - ok: openssl s_server ... -cipher AES128-SHA
1724 0x00,0x35, //10 TLS_RSA_WITH_AES_256_CBC_SHA - ok: openssl s_server ... -cipher AES256-SHA
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001725#endif
Denys Vlasenko2eb04292018-11-26 16:39:19 +01001726 0x00,0x3C, //11 TLS_RSA_WITH_AES_128_CBC_SHA256 - ok: openssl s_server ... -cipher AES128-SHA256
1727 0x00,0x3D, //12 TLS_RSA_WITH_AES_256_CBC_SHA256 - ok: openssl s_server ... -cipher AES256-SHA256
1728 0x00,0x9C, //13 TLS_RSA_WITH_AES_128_GCM_SHA256 - ok: openssl s_server ... -cipher AES128-GCM-SHA256
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001729 // 0x00,0x9D, // TLS_RSA_WITH_AES_256_GCM_SHA384 - openssl s_server ... -cipher AES256-GCM-SHA384: "decryption failed or bad record mac"
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001730#if ALLOW_RSA_NULL_SHA256
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001731 0x00,0x3B, // TLS_RSA_WITH_NULL_SHA256
1732#endif
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001733#endif
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001734 cipherid1 = cipherid[1];
Denys Vlasenko60f78402018-11-26 16:30:22 +01001735 tls->cipher_id = 0x100 * cipherid[0] + cipherid1;
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001736 tls->key_size = AES256_KEYSIZE;
1737 tls->MAC_size = SHA256_OUTSIZE;
1738 /*tls->IV_size = 0; - already is */
1739 if (cipherid[0] == 0xC0) {
1740 /* All C0xx are ECDHE */
1741 tls->flags |= NEED_EC_KEY;
1742 if (cipherid1 & 1) {
1743 /* Odd numbered C0xx use AES128 (even ones use AES256) */
1744 tls->key_size = AES128_KEYSIZE;
1745 }
Denys Vlasenko3a4d5a72018-12-10 19:19:38 +01001746 if (ENABLE_FEATURE_TLS_SHA1 && cipherid1 <= 0x19) {
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001747 tls->MAC_size = SHA1_OUTSIZE;
1748 } else
1749 if (cipherid1 >= 0x2B && cipherid1 <= 0x30) {
1750 /* C02B,2C,2F,30 are AES-GCM */
1751 tls->flags |= ENCRYPTION_AESGCM;
1752 tls->MAC_size = 0;
1753 tls->IV_size = 4;
1754 }
1755 } else {
1756 /* All 00xx are RSA */
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001757 if ((ENABLE_FEATURE_TLS_SHA1 && cipherid1 == 0x2F)
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001758 || cipherid1 == 0x3C
1759 || cipherid1 == 0x9C
1760 ) {
1761 tls->key_size = AES128_KEYSIZE;
1762 }
Denys Vlasenko71fa5b02018-12-10 16:14:58 +01001763 if (ENABLE_FEATURE_TLS_SHA1 && cipherid1 <= 0x35) {
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001764 tls->MAC_size = SHA1_OUTSIZE;
1765 } else
Denys Vlasenko60f78402018-11-26 16:30:22 +01001766 if (cipherid1 == 0x9C /*|| cipherid1 == 0x9D*/) {
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001767 /* 009C,9D are AES-GCM */
1768 tls->flags |= ENCRYPTION_AESGCM;
1769 tls->MAC_size = 0;
1770 tls->IV_size = 4;
1771 }
1772 }
Denys Vlasenko60f78402018-11-26 16:30:22 +01001773 dbg("server chose cipher %04x\n", tls->cipher_id);
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01001774 dbg("key_size:%u MAC_size:%u IV_size:%u\n", tls->key_size, tls->MAC_size, tls->IV_size);
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001775
Denys Vlasenko89193f92017-01-24 18:08:07 +01001776 /* Handshake hash eventually destined to FINISHED record
1777 * is sha256 regardless of cipher
1778 * (at least for all ciphers defined by RFC5246).
1779 * It's not sha1 for AES_128_CBC_SHA - only MAC is sha1, not this hash.
1780 */
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001781/* HANDSHAKE HASH:
Denys Vlasenko89193f92017-01-24 18:08:07 +01001782 sha256_begin(&tls->hsd->handshake_hash_ctx);
Denys Vlasenko49ecee02017-01-24 16:00:54 +01001783 hash_handshake(tls, ">> client hello hash:%s",
1784 tls->hsd->saved_client_hello, tls->hsd->saved_client_hello_size
1785 );
1786 hash_handshake(tls, "<< server hello hash:%s",
1787 tls->inbuf + RECHDR_LEN, len
1788 );
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001789 */
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01001790}
1791
1792static void get_server_cert(tls_state_t *tls)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001793{
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001794 struct record_hdr *xhdr;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001795 uint8_t *certbuf;
1796 int len, len1;
1797
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01001798 len = tls_xread_handshake_block(tls, 10);
Denys Vlasenkoc5540d62017-01-15 02:17:03 +01001799
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001800 xhdr = (void*)tls->inbuf;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001801 certbuf = (void*)(xhdr + 1);
1802 if (certbuf[0] != HANDSHAKE_CERTIFICATE)
Denys Vlasenko98066662018-02-06 13:33:00 +01001803 bad_record_die(tls, "certificate", len);
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01001804 dbg("<< CERTIFICATE\n");
Denys Vlasenkob1003f72017-01-14 13:57:16 +01001805 // 4392 bytes:
1806 // 0b 00|11|24 00|11|21 00|05|b0 30|82|05|ac|30|82|04|94|a0|03|02|01|02|02|11|00|9f|85|bf|66|4b|0c|dd|af|ca|50|86|79|50|1b|2b|e4|30|0d...
1807 //Cert len=4388 ChainLen CertLen^ DER encoded X509 starts here. openssl x509 -in FILE -inform DER -noout -text
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001808 len1 = get24be(certbuf + 1);
1809 if (len1 > len - 4) tls_error_die(tls);
1810 len = len1;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001811 len1 = get24be(certbuf + 4);
1812 if (len1 > len - 3) tls_error_die(tls);
1813 len = len1;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01001814 len1 = get24be(certbuf + 7);
1815 if (len1 > len - 3) tls_error_die(tls);
1816 len = len1;
1817
1818 if (len)
Denys Vlasenko11d00962017-01-15 00:12:42 +01001819 find_key_in_der_cert(tls, certbuf + 10, len);
1820}
1821
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001822/* On input, len is known to be >= 4.
1823 * The record is known to be SERVER_KEY_EXCHANGE.
1824 */
1825static void process_server_key(tls_state_t *tls, int len)
1826{
1827 struct record_hdr *xhdr;
1828 uint8_t *keybuf;
1829 int len1;
1830 uint32_t t32;
1831
1832 xhdr = (void*)tls->inbuf;
1833 keybuf = (void*)(xhdr + 1);
1834//seen from is.gd: it selects curve_x25519:
Denys Vlasenko4e46b982018-11-18 19:50:24 +01001835// 0c 00006e //SERVER_KEY_EXCHANGE, len
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001836// 03 //curve_type: named curve
1837// 001d //curve_x25519
1838//server-chosen EC point, and then signed_params
Denys Vlasenko4e46b982018-11-18 19:50:24 +01001839// (RFC 8422: "A hash of the params, with the signature
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001840// appropriate to that hash applied. The private key corresponding
1841// to the certified public key in the server's Certificate message is
1842// used for signing.")
1843//follow. Format unclear/guessed:
1844// 20 //eccPubKeyLen
1845// 25511923d73b70dd2f60e66ba2f3fda31a9c25170963c7a3a972e481dbb2835d //eccPubKey (32bytes)
1846// 0203 //hashSigAlg: 2:SHA1 (4:SHA256 5:SHA384 6:SHA512), 3:ECDSA (1:RSA)
1847// 0046 //len (16bit)
1848// 30 44 //SEQ, len
1849// 02 20 //INTEGER, len
1850// 2e18e7c2a9badd0a70cd3059a6ab114539b9f5163568911147386cd77ed7c412 //32bytes
1851//this item ^^^^^ is sometimes 33 bytes (with all container sizes also +1)
1852// 02 20 //INTEGER, len
1853// 64523d6216cb94c43c9b20e377d8c52c55be6703fd6730a155930c705eaf3af6 //32bytes
1854//same about this item ^^^^^
Denys Vlasenko4e46b982018-11-18 19:50:24 +01001855
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001856//seen from ftp.openbsd.org
Denys Vlasenko4e46b982018-11-18 19:50:24 +01001857//(which only accepts ECDHE-RSA-AESnnn-GCM-SHAnnn and ECDHE-RSA-CHACHA20-POLY1305 ciphers):
1858// 0c 000228 //SERVER_KEY_EXCHANGE, len
1859// 03 //curve_type: named curve
1860// 001d //curve_x25519
1861// 20 //eccPubKeyLen
1862// eef7a15c43b71a4c7eaa48a39369399cc4332e569ec90a83274cc92596705c1a //eccPubKey
1863// 0401 //hashSigAlg: 4:SHA256, 1:RSA
1864// 0200 //len
1865// //0x200 bytes follow
1866
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001867 /* Get and verify length */
1868 len1 = get24be(keybuf + 1);
1869 if (len1 > len - 4) tls_error_die(tls);
1870 len = len1;
1871 if (len < (1+2+1+32)) tls_error_die(tls);
1872 keybuf += 4;
1873
1874 /* So far we only support curve_x25519 */
1875 move_from_unaligned32(t32, keybuf);
1876 if (t32 != htonl(0x03001d20))
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001877 bb_error_msg_and_die("elliptic curve is not x25519");
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001878
1879 memcpy(tls->hsd->ecc_pub_key32, keybuf + 4, 32);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001880 tls->flags |= GOT_EC_KEY;
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001881 dbg("got eccPubKey\n");
1882}
1883
Denys Vlasenko1500b3a2017-01-24 17:06:10 +01001884static void send_empty_client_cert(tls_state_t *tls)
1885{
1886 struct client_empty_cert {
1887 uint8_t type;
1888 uint8_t len24_hi, len24_mid, len24_lo;
1889 uint8_t cert_chain_len24_hi, cert_chain_len24_mid, cert_chain_len24_lo;
1890 };
1891 struct client_empty_cert *record;
1892
Denys Vlasenkod5a04052018-11-13 11:58:53 +01001893 record = tls_get_zeroed_outbuf(tls, sizeof(*record));
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001894 //fill_handshake_record_hdr(record, HANDSHAKE_CERTIFICATE, sizeof(*record));
1895 //record->cert_chain_len24_hi = 0;
1896 //record->cert_chain_len24_mid = 0;
1897 //record->cert_chain_len24_lo = 0;
Denys Vlasenkode7b5bb2018-11-13 11:44:32 +01001898 // same as above:
Denys Vlasenkod5a04052018-11-13 11:58:53 +01001899 record->type = HANDSHAKE_CERTIFICATE;
1900 record->len24_lo = 3;
Denys Vlasenko1500b3a2017-01-24 17:06:10 +01001901
1902 dbg(">> CERTIFICATE\n");
1903 xwrite_and_update_handshake_hash(tls, sizeof(*record));
1904}
1905
Denys Vlasenko11d00962017-01-15 00:12:42 +01001906static void send_client_key_exchange(tls_state_t *tls)
1907{
Denys Vlasenko11d00962017-01-15 00:12:42 +01001908 struct client_key_exchange {
Denys Vlasenko11d00962017-01-15 00:12:42 +01001909 uint8_t type;
1910 uint8_t len24_hi, len24_mid, len24_lo;
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001911 uint8_t key[2 + 4 * 1024]; // size??
Denys Vlasenko11d00962017-01-15 00:12:42 +01001912 };
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001913//FIXME: better size estimate
Denys Vlasenkod5a04052018-11-13 11:58:53 +01001914 struct client_key_exchange *record = tls_get_zeroed_outbuf(tls, sizeof(*record));
Denys Vlasenko38972a82017-01-20 19:11:14 +01001915 uint8_t rsa_premaster[RSA_PREMASTER_SIZE];
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001916 uint8_t x25519_premaster[CURVE25519_KEYSIZE];
1917 uint8_t *premaster;
1918 int premaster_size;
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01001919 int len;
Denys Vlasenko11d00962017-01-15 00:12:42 +01001920
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001921 if (!(tls->flags & NEED_EC_KEY)) {
1922 /* RSA */
1923 if (!(tls->flags & GOT_CERT_RSA_KEY_ALG))
1924 bb_error_msg("server cert is not RSA");
1925
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001926 tls_get_random(rsa_premaster, sizeof(rsa_premaster));
1927 if (TLS_DEBUG_FIXED_SECRETS)
1928 memset(rsa_premaster, 0x44, sizeof(rsa_premaster));
1929 // RFC 5246
1930 // "Note: The version number in the PreMasterSecret is the version
1931 // offered by the client in the ClientHello.client_version, not the
1932 // version negotiated for the connection."
1933 rsa_premaster[0] = TLS_MAJ;
1934 rsa_premaster[1] = TLS_MIN;
1935 dump_hex("premaster:%s\n", rsa_premaster, sizeof(rsa_premaster));
1936 len = psRsaEncryptPub(/*pool:*/ NULL,
1937 /* psRsaKey_t* */ &tls->hsd->server_rsa_pub_key,
1938 rsa_premaster, /*inlen:*/ sizeof(rsa_premaster),
1939 record->key + 2, sizeof(record->key) - 2,
1940 data_param_ignored
1941 );
1942 /* keylen16 exists for RSA (in TLS, not in SSL), but not for some other key types */
1943 record->key[0] = len >> 8;
1944 record->key[1] = len & 0xff;
1945 len += 2;
1946 premaster = rsa_premaster;
1947 premaster_size = sizeof(rsa_premaster);
1948 } else {
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001949 /* ECDHE */
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001950 static const uint8_t basepoint9[CURVE25519_KEYSIZE] = {9};
1951 uint8_t privkey[CURVE25519_KEYSIZE]; //[32]
1952
Denys Vlasenko83e5c622018-11-23 17:21:38 +01001953 if (!(tls->flags & GOT_EC_KEY))
1954 bb_error_msg("server did not provide EC key");
1955
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001956 /* Generate random private key, see RFC 7748 */
1957 tls_get_random(privkey, sizeof(privkey));
1958 privkey[0] &= 0xf8;
1959 privkey[CURVE25519_KEYSIZE-1] = ((privkey[CURVE25519_KEYSIZE-1] & 0x7f) | 0x40);
1960
1961 /* Compute public key */
1962 curve25519(record->key + 1, privkey, basepoint9);
1963
1964 /* Compute premaster using peer's public key */
1965 dbg("computing x25519_premaster\n");
1966 curve25519(x25519_premaster, privkey, tls->hsd->ecc_pub_key32);
1967
1968 len = CURVE25519_KEYSIZE;
1969 record->key[0] = len;
1970 len++;
1971 premaster = x25519_premaster;
1972 premaster_size = sizeof(x25519_premaster);
1973 }
1974
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001975 record->type = HANDSHAKE_CLIENT_KEY_EXCHANGE;
Denys Vlasenkod5a04052018-11-13 11:58:53 +01001976 /* record->len24_hi = 0; - already is */
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001977 record->len24_mid = len >> 8;
1978 record->len24_lo = len & 0xff;
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01001979 len += 4;
Denys Vlasenko11d00962017-01-15 00:12:42 +01001980
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +01001981 dbg(">> CLIENT_KEY_EXCHANGE\n");
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01001982 xwrite_and_update_handshake_hash(tls, len);
Denys Vlasenko936e83e2017-01-16 04:25:01 +01001983
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01001984 // RFC 5246
1985 // For all key exchange methods, the same algorithm is used to convert
1986 // the pre_master_secret into the master_secret. The pre_master_secret
1987 // should be deleted from memory once the master_secret has been
1988 // computed.
1989 // master_secret = PRF(pre_master_secret, "master secret",
1990 // ClientHello.random + ServerHello.random)
1991 // [0..47];
1992 // The master secret is always exactly 48 bytes in length. The length
1993 // of the premaster secret will vary depending on key exchange method.
Denys Vlasenko89193f92017-01-24 18:08:07 +01001994 prf_hmac_sha256(/*tls,*/
Denys Vlasenko9a647c32017-01-23 01:08:16 +01001995 tls->hsd->master_secret, sizeof(tls->hsd->master_secret),
Denys Vlasenkobddb6542018-11-13 02:16:24 +01001996 premaster, premaster_size,
Denys Vlasenko936e83e2017-01-16 04:25:01 +01001997 "master secret",
Denys Vlasenko9a647c32017-01-23 01:08:16 +01001998 tls->hsd->client_and_server_rand32, sizeof(tls->hsd->client_and_server_rand32)
Denys Vlasenko936e83e2017-01-16 04:25:01 +01001999 );
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002000 dump_hex("master secret:%s\n", tls->hsd->master_secret, sizeof(tls->hsd->master_secret));
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01002001
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002002 // RFC 5246
2003 // 6.3. Key Calculation
2004 //
2005 // The Record Protocol requires an algorithm to generate keys required
2006 // by the current connection state (see Appendix A.6) from the security
2007 // parameters provided by the handshake protocol.
2008 //
2009 // The master secret is expanded into a sequence of secure bytes, which
2010 // is then split to a client write MAC key, a server write MAC key, a
2011 // client write encryption key, and a server write encryption key. Each
2012 // of these is generated from the byte sequence in that order. Unused
2013 // values are empty. Some AEAD ciphers may additionally require a
2014 // client write IV and a server write IV (see Section 6.2.3.3).
2015 //
2016 // When keys and MAC keys are generated, the master secret is used as an
2017 // entropy source.
2018 //
2019 // To generate the key material, compute
2020 //
2021 // key_block = PRF(SecurityParameters.master_secret,
2022 // "key expansion",
2023 // SecurityParameters.server_random +
2024 // SecurityParameters.client_random);
2025 //
2026 // until enough output has been generated. Then, the key_block is
2027 // partitioned as follows:
2028 //
2029 // client_write_MAC_key[SecurityParameters.mac_key_length]
2030 // server_write_MAC_key[SecurityParameters.mac_key_length]
2031 // client_write_key[SecurityParameters.enc_key_length]
2032 // server_write_key[SecurityParameters.enc_key_length]
2033 // client_write_IV[SecurityParameters.fixed_iv_length]
2034 // server_write_IV[SecurityParameters.fixed_iv_length]
2035 {
2036 uint8_t tmp64[64];
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +01002037
2038 /* make "server_rand32 + client_rand32" */
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002039 memcpy(&tmp64[0] , &tls->hsd->client_and_server_rand32[32], 32);
2040 memcpy(&tmp64[32], &tls->hsd->client_and_server_rand32[0] , 32);
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01002041
Denys Vlasenko89193f92017-01-24 18:08:07 +01002042 prf_hmac_sha256(/*tls,*/
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002043 tls->client_write_MAC_key, 2 * (tls->MAC_size + tls->key_size + tls->IV_size),
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +01002044 // also fills:
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002045 // server_write_MAC_key[]
2046 // client_write_key[]
2047 // server_write_key[]
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002048 // client_write_IV[]
2049 // server_write_IV[]
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002050 tls->hsd->master_secret, sizeof(tls->hsd->master_secret),
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002051 "key expansion",
2052 tmp64, 64
2053 );
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002054 tls->client_write_key = tls->client_write_MAC_key + (2 * tls->MAC_size);
2055 tls->server_write_key = tls->client_write_key + tls->key_size;
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002056 tls->client_write_IV = tls->server_write_key + tls->key_size;
2057 tls->server_write_IV = tls->client_write_IV + tls->IV_size;
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002058 dump_hex("client_write_MAC_key:%s\n",
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002059 tls->client_write_MAC_key, tls->MAC_size
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002060 );
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +01002061 dump_hex("client_write_key:%s\n",
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002062 tls->client_write_key, tls->key_size
Denys Vlasenkob5dfc3d2017-01-18 20:37:24 +01002063 );
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002064 dump_hex("client_write_IV:%s\n",
2065 tls->client_write_IV, tls->IV_size
2066 );
Denys Vlasenko5e4236d2018-11-23 18:02:44 +01002067
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002068 aes_setkey(&tls->aes_decrypt, tls->server_write_key, tls->key_size);
Denys Vlasenko5e4236d2018-11-23 18:02:44 +01002069 aes_setkey(&tls->aes_encrypt, tls->client_write_key, tls->key_size);
2070 {
2071 uint8_t iv[AES_BLOCK_SIZE];
2072 memset(iv, 0, AES_BLOCK_SIZE);
2073 aes_encrypt_one_block(&tls->aes_encrypt, iv, tls->H);
2074 }
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002075 }
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002076}
2077
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002078static const uint8_t rec_CHANGE_CIPHER_SPEC[] = {
2079 RECORD_TYPE_CHANGE_CIPHER_SPEC, TLS_MAJ, TLS_MIN, 00, 01,
2080 01
2081};
2082
Denys Vlasenkoc5540d62017-01-15 02:17:03 +01002083static void send_change_cipher_spec(tls_state_t *tls)
2084{
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002085 dbg(">> CHANGE_CIPHER_SPEC\n");
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002086 xwrite(tls->ofd, rec_CHANGE_CIPHER_SPEC, sizeof(rec_CHANGE_CIPHER_SPEC));
Denys Vlasenkoc5540d62017-01-15 02:17:03 +01002087}
2088
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01002089// 7.4.9. Finished
2090// A Finished message is always sent immediately after a change
2091// cipher spec message to verify that the key exchange and
2092// authentication processes were successful. It is essential that a
2093// change cipher spec message be received between the other handshake
2094// messages and the Finished message.
2095//...
2096// The Finished message is the first one protected with the just
2097// negotiated algorithms, keys, and secrets. Recipients of Finished
2098// messages MUST verify that the contents are correct. Once a side
2099// has sent its Finished message and received and validated the
2100// Finished message from its peer, it may begin to send and receive
2101// application data over the connection.
2102//...
2103// struct {
2104// opaque verify_data[verify_data_length];
2105// } Finished;
2106//
2107// verify_data
2108// PRF(master_secret, finished_label, Hash(handshake_messages))
2109// [0..verify_data_length-1];
2110//
2111// finished_label
2112// For Finished messages sent by the client, the string
2113// "client finished". For Finished messages sent by the server,
2114// the string "server finished".
2115//
2116// Hash denotes a Hash of the handshake messages. For the PRF
2117// defined in Section 5, the Hash MUST be the Hash used as the basis
2118// for the PRF. Any cipher suite which defines a different PRF MUST
2119// also define the Hash to use in the Finished computation.
2120//
2121// In previous versions of TLS, the verify_data was always 12 octets
2122// long. In the current version of TLS, it depends on the cipher
2123// suite. Any cipher suite which does not explicitly specify
2124// verify_data_length has a verify_data_length equal to 12. This
2125// includes all existing cipher suites.
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002126static void send_client_finished(tls_state_t *tls)
2127{
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +01002128 struct finished {
Denys Vlasenko936e83e2017-01-16 04:25:01 +01002129 uint8_t type;
2130 uint8_t len24_hi, len24_mid, len24_lo;
2131 uint8_t prf_result[12];
2132 };
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002133 struct finished *record = tls_get_outbuf(tls, sizeof(*record));
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002134 uint8_t handshake_hash[TLS_MAX_MAC_SIZE];
2135 unsigned len;
Denys Vlasenko936e83e2017-01-16 04:25:01 +01002136
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002137 fill_handshake_record_hdr(record, HANDSHAKE_FINISHED, sizeof(*record));
Denys Vlasenko936e83e2017-01-16 04:25:01 +01002138
Denys Vlasenkoeb53d012018-11-25 14:45:55 +01002139 len = sha_end(&tls->hsd->handshake_hash_ctx, handshake_hash);
2140
Denys Vlasenko89193f92017-01-24 18:08:07 +01002141 prf_hmac_sha256(/*tls,*/
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002142 record->prf_result, sizeof(record->prf_result),
2143 tls->hsd->master_secret, sizeof(tls->hsd->master_secret),
2144 "client finished",
2145 handshake_hash, len
Denys Vlasenko936e83e2017-01-16 04:25:01 +01002146 );
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002147 dump_hex("from secret: %s\n", tls->hsd->master_secret, sizeof(tls->hsd->master_secret));
Denys Vlasenkoe2cb3b92017-01-17 16:53:36 +01002148 dump_hex("from labelSeed: %s", "client finished", sizeof("client finished")-1);
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +01002149 dump_hex("%s\n", handshake_hash, sizeof(handshake_hash));
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002150 dump_hex("=> digest: %s\n", record->prf_result, sizeof(record->prf_result));
Denys Vlasenko9a6897a2017-01-16 23:26:33 +01002151
Denys Vlasenkoc8ba23b2017-01-18 06:45:50 +01002152 dbg(">> FINISHED\n");
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002153 xwrite_encrypted(tls, sizeof(*record), RECORD_TYPE_HANDSHAKE);
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01002154}
2155
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002156void FAST_FUNC tls_handshake(tls_state_t *tls, const char *sni)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002157{
2158 // Client RFC 5246 Server
2159 // (*) - optional messages, not always sent
2160 //
2161 // ClientHello ------->
2162 // ServerHello
2163 // Certificate*
2164 // ServerKeyExchange*
2165 // CertificateRequest*
2166 // <------- ServerHelloDone
2167 // Certificate*
2168 // ClientKeyExchange
2169 // CertificateVerify*
2170 // [ChangeCipherSpec]
2171 // Finished ------->
2172 // [ChangeCipherSpec]
2173 // <------- Finished
2174 // Application Data <------> Application Data
2175 int len;
Denys Vlasenko98066662018-02-06 13:33:00 +01002176 int got_cert_req;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002177
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002178 send_client_hello_and_alloc_hsd(tls, sni);
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01002179 get_server_hello(tls);
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002180
Denys Vlasenko38972a82017-01-20 19:11:14 +01002181 // RFC 5246
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002182 // The server MUST send a Certificate message whenever the agreed-
2183 // upon key exchange method uses certificates for authentication
2184 // (this includes all key exchange methods defined in this document
2185 // except DH_anon). This message will always immediately follow the
2186 // ServerHello message.
2187 //
2188 // IOW: in practice, Certificate *always* follows.
2189 // (for example, kernel.org does not even accept DH_anon cipher id)
Denys Vlasenko3f8ecd92017-01-15 14:16:51 +01002190 get_server_cert(tls);
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002191
Denys Vlasenkodd2577f2017-01-20 22:48:41 +01002192 len = tls_xread_handshake_block(tls, 4);
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01002193 if (tls->inbuf[RECHDR_LEN] == HANDSHAKE_SERVER_KEY_EXCHANGE) {
Denys Vlasenkob1003f72017-01-14 13:57:16 +01002194 // 459 bytes:
2195 // 0c 00|01|c7 03|00|17|41|04|87|94|2e|2f|68|d0|c9|f4|97|a8|2d|ef|ed|67|ea|c6|f3|b3|56|47|5d|27|b6|bd|ee|70|25|30|5e|b0|8e|f6|21|5a...
2196 //SvKey len=455^
Denys Vlasenko11d00962017-01-15 00:12:42 +01002197 // with TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA: 461 bytes:
2198 // 0c 00|01|c9 03|00|17|41|04|cd|9b|b4|29|1f|f6|b0|c2|84|82|7f|29|6a|47|4e|ec|87|0b|c1|9c|69|e1|f8|c6|d0|53|e9|27|90|a5|c8|02|15|75...
Denys Vlasenkobddb6542018-11-13 02:16:24 +01002199 //
2200 // RFC 8422 5.4. Server Key Exchange
2201 // This message is sent when using the ECDHE_ECDSA, ECDHE_RSA, and
2202 // ECDH_anon key exchange algorithms.
2203 // This message is used to convey the server's ephemeral ECDH public key
2204 // (and the corresponding elliptic curve domain parameters) to the
2205 // client.
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01002206 dbg("<< SERVER_KEY_EXCHANGE len:%u\n", len);
Denys Vlasenkobddb6542018-11-13 02:16:24 +01002207 dump_raw_in("<< %s\n", tls->inbuf, RECHDR_LEN + len);
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002208 if (tls->flags & NEED_EC_KEY)
Denys Vlasenkobddb6542018-11-13 02:16:24 +01002209 process_server_key(tls, len);
2210
2211 // read next handshake block
Denys Vlasenko1500b3a2017-01-24 17:06:10 +01002212 len = tls_xread_handshake_block(tls, 4);
Denys Vlasenkoc5540d62017-01-15 02:17:03 +01002213 }
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01002214
Denys Vlasenko98066662018-02-06 13:33:00 +01002215 got_cert_req = (tls->inbuf[RECHDR_LEN] == HANDSHAKE_CERTIFICATE_REQUEST);
2216 if (got_cert_req) {
Denys Vlasenko1500b3a2017-01-24 17:06:10 +01002217 dbg("<< CERTIFICATE_REQUEST\n");
2218 // RFC 5246: "If no suitable certificate is available,
2219 // the client MUST send a certificate message containing no
2220 // certificates. That is, the certificate_list structure has a
2221 // length of zero. ...
2222 // Client certificates are sent using the Certificate structure
2223 // defined in Section 7.4.2."
2224 // (i.e. the same format as server certs)
Denys Vlasenko98066662018-02-06 13:33:00 +01002225
2226 /*send_empty_client_cert(tls); - WRONG (breaks handshake hash calc) */
2227 /* need to hash _all_ server replies first, up to ServerHelloDone */
Denys Vlasenko1500b3a2017-01-24 17:06:10 +01002228 len = tls_xread_handshake_block(tls, 4);
2229 }
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01002230
Denys Vlasenko1500b3a2017-01-24 17:06:10 +01002231 if (tls->inbuf[RECHDR_LEN] != HANDSHAKE_SERVER_HELLO_DONE) {
2232 bad_record_die(tls, "'server hello done'", len);
2233 }
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002234 // 0e 000000 (len:0)
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01002235 dbg("<< SERVER_HELLO_DONE\n");
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002236
Denys Vlasenko98066662018-02-06 13:33:00 +01002237 if (got_cert_req)
2238 send_empty_client_cert(tls);
2239
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002240 send_client_key_exchange(tls);
2241
2242 send_change_cipher_spec(tls);
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01002243 /* from now on we should send encrypted */
2244 /* tls->write_seq64_be = 0; - already is */
Denys Vlasenkoeb53d012018-11-25 14:45:55 +01002245 tls->flags |= ENCRYPT_ON_WRITE;
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002246
2247 send_client_finished(tls);
2248
2249 /* Get CHANGE_CIPHER_SPEC */
Denys Vlasenko98066662018-02-06 13:33:00 +01002250 len = tls_xread_record(tls, "switch to encrypted traffic");
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002251 if (len != 1 || memcmp(tls->inbuf, rec_CHANGE_CIPHER_SPEC, 6) != 0)
Denys Vlasenko1500b3a2017-01-24 17:06:10 +01002252 bad_record_die(tls, "switch to encrypted traffic", len);
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01002253 dbg("<< CHANGE_CIPHER_SPEC\n");
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002254
Denys Vlasenkoca7cdd42018-11-26 00:17:10 +01002255 if (ALLOW_RSA_NULL_SHA256
Denys Vlasenko5d561ef2017-04-04 01:41:15 +02002256 && tls->cipher_id == TLS_RSA_WITH_NULL_SHA256
2257 ) {
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002258 tls->min_encrypted_len_on_read = tls->MAC_size;
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002259 } else
2260 if (!(tls->flags & ENCRYPTION_AESGCM)) {
Denys Vlasenko63bfe0e2018-12-10 16:43:53 +01002261 unsigned mac_blocks = (unsigned)(TLS_MAC_SIZE(tls) + AES_BLOCK_SIZE-1) / AES_BLOCK_SIZE;
Denys Vlasenko89193f92017-01-24 18:08:07 +01002262 /* all incoming packets now should be encrypted and have
2263 * at least IV + (MAC padded to blocksize):
2264 */
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002265 tls->min_encrypted_len_on_read = AES_BLOCK_SIZE + (mac_blocks * AES_BLOCK_SIZE);
2266 } else {
2267 tls->min_encrypted_len_on_read = 8 + AES_BLOCK_SIZE;
Denys Vlasenko89193f92017-01-24 18:08:07 +01002268 }
Denys Vlasenko83e5c622018-11-23 17:21:38 +01002269 dbg("min_encrypted_len_on_read: %u\n", tls->min_encrypted_len_on_read);
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002270
2271 /* Get (encrypted) FINISHED from the server */
Denys Vlasenko98066662018-02-06 13:33:00 +01002272 len = tls_xread_record(tls, "'server finished'");
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01002273 if (len < 4 || tls->inbuf[RECHDR_LEN] != HANDSHAKE_FINISHED)
Denys Vlasenko98066662018-02-06 13:33:00 +01002274 bad_record_die(tls, "'server finished'", len);
Denys Vlasenko5d1662e2017-01-17 18:17:27 +01002275 dbg("<< FINISHED\n");
Denys Vlasenkoe69d78c2017-01-17 17:24:11 +01002276 /* application data can be sent/received */
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002277
2278 /* free handshake data */
Denys Vlasenkoa6192f32018-11-25 16:17:26 +01002279 psRsaKey_clear(&tls->hsd->server_rsa_pub_key);
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002280// if (PARANOIA)
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002281// memset(tls->hsd, 0, tls->hsd->hsd_size);
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002282 free(tls->hsd);
2283 tls->hsd = NULL;
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002284}
2285
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002286static void tls_xwrite(tls_state_t *tls, int len)
2287{
2288 dbg(">> DATA\n");
2289 xwrite_encrypted(tls, len, RECORD_TYPE_APPLICATION_DATA);
2290}
2291
Denys Vlasenko936e83e2017-01-16 04:25:01 +01002292// To run a test server using openssl:
Denys Vlasenko936e83e2017-01-16 04:25:01 +01002293// openssl req -x509 -newkey rsa:$((4096/4*3)) -keyout key.pem -out server.pem -nodes -days 99999 -subj '/CN=localhost'
Denys Vlasenko2eb04292018-11-26 16:39:19 +01002294// openssl s_server -key key.pem -cert server.pem -debug -tls1_2
Denys Vlasenkocccf8e72017-01-19 00:20:45 +01002295//
2296// Unencryped SHA256 example:
2297// openssl req -x509 -newkey rsa:$((4096/4*3)) -keyout key.pem -out server.pem -nodes -days 99999 -subj '/CN=localhost'
Denys Vlasenko2eb04292018-11-26 16:39:19 +01002298// openssl s_server -key key.pem -cert server.pem -debug -tls1_2 -cipher NULL
2299// openssl s_client -connect 127.0.0.1:4433 -debug -tls1_2 -cipher NULL-SHA256
Denys Vlasenko936e83e2017-01-16 04:25:01 +01002300
Denys Vlasenko403f2992018-02-06 15:15:08 +01002301void FAST_FUNC tls_run_copy_loop(tls_state_t *tls, unsigned flags)
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002302{
Denys Vlasenko38972a82017-01-20 19:11:14 +01002303 int inbuf_size;
2304 const int INBUF_STEP = 4 * 1024;
Denys Vlasenko0ec4d082017-02-16 16:27:39 +01002305 struct pollfd pfds[2];
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002306
Denys Vlasenko0ec4d082017-02-16 16:27:39 +01002307 pfds[0].fd = STDIN_FILENO;
2308 pfds[0].events = POLLIN;
2309 pfds[1].fd = tls->ifd;
2310 pfds[1].events = POLLIN;
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002311
Denys Vlasenko38972a82017-01-20 19:11:14 +01002312 inbuf_size = INBUF_STEP;
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002313 for (;;) {
2314 int nread;
2315
Denys Vlasenko0ec4d082017-02-16 16:27:39 +01002316 if (safe_poll(pfds, 2, -1) < 0)
2317 bb_perror_msg_and_die("poll");
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002318
Denys Vlasenko0ec4d082017-02-16 16:27:39 +01002319 if (pfds[0].revents) {
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01002320 void *buf;
2321
2322 dbg("STDIN HAS DATA\n");
Denys Vlasenko38972a82017-01-20 19:11:14 +01002323 buf = tls_get_outbuf(tls, inbuf_size);
2324 nread = safe_read(STDIN_FILENO, buf, inbuf_size);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002325 if (nread < 1) {
Denys Vlasenko38972a82017-01-20 19:11:14 +01002326 /* We'd want to do this: */
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002327 /* Close outgoing half-connection so they get EOF,
Denys Vlasenko38972a82017-01-20 19:11:14 +01002328 * but leave incoming alone so we can see response
2329 */
Denys Vlasenko9a647c32017-01-23 01:08:16 +01002330 //shutdown(tls->ofd, SHUT_WR);
Denys Vlasenko38972a82017-01-20 19:11:14 +01002331 /* But TLS has no way to encode this,
2332 * doubt it's ok to do it "raw"
2333 */
Denys Vlasenko0ec4d082017-02-16 16:27:39 +01002334 pfds[0].fd = -1;
Denys Vlasenko39161392017-01-20 20:27:06 +01002335 tls_free_outbuf(tls); /* mem usage optimization */
Denys Vlasenko403f2992018-02-06 15:15:08 +01002336 if (flags & TLSLOOP_EXIT_ON_LOCAL_EOF)
2337 break;
Denys Vlasenko38972a82017-01-20 19:11:14 +01002338 } else {
2339 if (nread == inbuf_size) {
2340 /* TLS has per record overhead, if input comes fast,
2341 * read, encrypt and send bigger chunks
2342 */
2343 inbuf_size += INBUF_STEP;
Denys Vlasenko49ecee02017-01-24 16:00:54 +01002344 if (inbuf_size > TLS_MAX_OUTBUF)
2345 inbuf_size = TLS_MAX_OUTBUF;
Denys Vlasenko38972a82017-01-20 19:11:14 +01002346 }
2347 tls_xwrite(tls, nread);
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002348 }
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002349 }
Denys Vlasenko0ec4d082017-02-16 16:27:39 +01002350 if (pfds[1].revents) {
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01002351 dbg("NETWORK HAS DATA\n");
Denys Vlasenko38972a82017-01-20 19:11:14 +01002352 read_record:
Denys Vlasenko98066662018-02-06 13:33:00 +01002353 nread = tls_xread_record(tls, "encrypted data");
Denys Vlasenko38972a82017-01-20 19:11:14 +01002354 if (nread < 1) {
2355 /* TLS protocol has no real concept of one-sided shutdowns:
2356 * if we get "TLS EOF" from the peer, writes will fail too
2357 */
Denys Vlasenko0ec4d082017-02-16 16:27:39 +01002358 //pfds[1].fd = -1;
Denys Vlasenko38972a82017-01-20 19:11:14 +01002359 //close(STDOUT_FILENO);
Denys Vlasenko39161392017-01-20 20:27:06 +01002360 //tls_free_inbuf(tls); /* mem usage optimization */
Denys Vlasenko38972a82017-01-20 19:11:14 +01002361 //continue;
2362 break;
2363 }
2364 if (tls->inbuf[0] != RECORD_TYPE_APPLICATION_DATA)
Denys Vlasenko98066662018-02-06 13:33:00 +01002365 bad_record_die(tls, "encrypted data", nread);
Denys Vlasenkoa0aae9f2017-01-20 14:12:10 +01002366 xwrite(STDOUT_FILENO, tls->inbuf + RECHDR_LEN, nread);
Denys Vlasenko38972a82017-01-20 19:11:14 +01002367 /* We may already have a complete next record buffered,
2368 * can process it without network reads (and possible blocking)
2369 */
2370 if (tls_has_buffered_record(tls))
2371 goto read_record;
Denys Vlasenkoabbf17a2017-01-20 03:15:09 +01002372 }
2373 }
Denys Vlasenkoceff6b02017-01-14 12:49:32 +01002374}