| ... | @@ -13,6 +13,10 @@ const HandshakeType = tls.HandshakeType; | ... | @@ -13,6 +13,10 @@ const HandshakeType = tls.HandshakeType; |
| 13 | const CipherParams = tls.CipherParams; | 13 | const CipherParams = tls.CipherParams; |
| 14 | const max_ciphertext_len = tls.max_ciphertext_len; | 14 | const max_ciphertext_len = tls.max_ciphertext_len; |
| 15 | const hkdfExpandLabel = tls.hkdfExpandLabel; | 15 | const hkdfExpandLabel = tls.hkdfExpandLabel; |
| | 16 | const int2 = tls.int2; |
| | 17 | const int3 = tls.int3; |
| | 18 | const array = tls.array; |
| | 19 | const enum_array = tls.enum_array; |
| 16 | | 20 | |
| 17 | application_cipher: ApplicationCipher, | 21 | application_cipher: ApplicationCipher, |
| 18 | read_seq: u64, | 22 | read_seq: u64, |
| ... | @@ -25,6 +29,8 @@ eof: bool, | ... | @@ -25,6 +29,8 @@ eof: bool, |
| 25 | | 29 | |
| 26 | /// `host` is only borrowed during this function call. | 30 | /// `host` is only borrowed during this function call. |
| 27 | pub fn init(stream: net.Stream, host: []const u8) !Client { | 31 | pub fn init(stream: net.Stream, host: []const u8) !Client { |
| | 32 | const host_len = @intCast(u16, host.len); |
| | 33 | |
| 28 | const kp = crypto.dh.X25519.KeyPair.create(null) catch |err| switch (err) { | 34 | const kp = crypto.dh.X25519.KeyPair.create(null) catch |err| switch (err) { |
| 29 | // Only possible to happen if the private key is all zeroes. | 35 | // Only possible to happen if the private key is all zeroes. |
| 30 | error.IdentityElement => return error.InsufficientEntropy, | 36 | error.IdentityElement => return error.InsufficientEntropy, |
| ... | @@ -34,92 +40,70 @@ pub fn init(stream: net.Stream, host: []const u8) !Client { | ... | @@ -34,92 +40,70 @@ pub fn init(stream: net.Stream, host: []const u8) !Client { |
| 34 | var rand_buf: [32]u8 = undefined; | 40 | var rand_buf: [32]u8 = undefined; |
| 35 | crypto.random.bytes(&rand_buf); | 41 | crypto.random.bytes(&rand_buf); |
| 36 | | 42 | |
| 37 | const extensions_header = [_]u8{ | 43 | const extensions_payload = |
| 38 | // Extensions byte length | 44 | tls.extension(.supported_versions, [_]u8{ |
| 39 | undefined, undefined, | 45 | 0x02, // byte length of supported versions |
| 40 | | | |
| 41 | // Extension: supported_versions (only TLS 1.3) | | |
| 42 | 0, 43, // ExtensionType.supported_versions | | |
| 43 | 0x00, 0x05, // byte length of this extension payload | | |
| 44 | 0x04, // byte length of supported versions | | |
| 45 | 0x03, 0x04, // TLS 1.3 | 46 | 0x03, 0x04, // TLS 1.3 |
| 46 | 0x03, 0x03, // TLS 1.2 | 47 | }) ++ tls.extension(.signature_algorithms, enum_array(tls.SignatureScheme, &.{ |
| 47 | | 48 | .rsa_pkcs1_sha256, |
| 48 | // Extension: signature_algorithms | 49 | .rsa_pkcs1_sha384, |
| 49 | 0, 13, // ExtensionType.signature_algorithms | 50 | .rsa_pkcs1_sha512, |
| 50 | 0x00, 0x22, // byte length of this extension payload | 51 | .ecdsa_secp256r1_sha256, |
| 51 | 0x00, 0x20, // byte length of signature algorithms list | 52 | .ecdsa_secp384r1_sha384, |
| 52 | 0x04, 0x01, // rsa_pkcs1_sha256 | 53 | .ecdsa_secp521r1_sha512, |
| 53 | 0x05, 0x01, // rsa_pkcs1_sha384 | 54 | .rsa_pss_rsae_sha256, |
| 54 | 0x06, 0x01, // rsa_pkcs1_sha512 | 55 | .rsa_pss_rsae_sha384, |
| 55 | 0x04, 0x03, // ecdsa_secp256r1_sha256 | 56 | .rsa_pss_rsae_sha512, |
| 56 | 0x05, 0x03, // ecdsa_secp384r1_sha384 | 57 | .ed25519, |
| 57 | 0x06, 0x03, // ecdsa_secp521r1_sha512 | 58 | .ed448, |
| 58 | 0x08, 0x04, // rsa_pss_rsae_sha256 | 59 | .rsa_pss_pss_sha256, |
| 59 | 0x08, 0x05, // rsa_pss_rsae_sha384 | 60 | .rsa_pss_pss_sha384, |
| 60 | 0x08, 0x06, // rsa_pss_rsae_sha512 | 61 | .rsa_pss_pss_sha512, |
| 61 | 0x08, 0x07, // ed25519 | 62 | .rsa_pkcs1_sha1, |
| 62 | 0x08, 0x08, // ed448 | 63 | .ecdsa_sha1, |
| 63 | 0x08, 0x09, // rsa_pss_pss_sha256 | 64 | })) ++ tls.extension(.supported_groups, enum_array(tls.NamedGroup, &.{ |
| 64 | 0x08, 0x0a, // rsa_pss_pss_sha384 | 65 | //.secp256r1, |
| 65 | 0x08, 0x0b, // rsa_pss_pss_sha512 | 66 | .x25519, |
| 66 | 0x02, 0x01, // rsa_pkcs1_sha1 | 67 | })) ++ [_]u8{ |
| 67 | 0x02, 0x03, // ecdsa_sha1 | | |
| 68 | | | |
| 69 | // Extension: supported_groups | | |
| 70 | 0, 10, // ExtensionType.supported_groups | | |
| 71 | 0x00, 0x0c, // byte length of this extension payload | | |
| 72 | 0x00, 0x0a, // byte length of supported groups list | | |
| 73 | 0x00, 0x17, // secp256r1 | | |
| 74 | 0x00, 0x18, // secp384r1 | | |
| 75 | 0x00, 0x19, // secp521r1 | | |
| 76 | 0x00, 0x1D, // x25519 | | |
| 77 | 0x00, 0x1E, // x448 | | |
| 78 | | | |
| 79 | // Extension: key_share | 68 | // Extension: key_share |
| 80 | 0, 51, // ExtensionType.key_share | 69 | 0, 51, // ExtensionType.key_share |
| 81 | 0, 38, // byte length of this extension payload | 70 | 0, 38, // byte length of this extension payload |
| 82 | 0, 36, // byte length of client_shares | 71 | 0, 36, // byte length of client_shares |
| 83 | 0x00, 0x1D, // NamedGroup.x25519 | 72 | 0x00, 0x1D, // NamedGroup.x25519 |
| 84 | 0, 32, // byte length of key_exchange | 73 | 0, 32, // byte length of key_exchange |
| 85 | } ++ kp.public_key ++ [_]u8{ | 74 | } ++ kp.public_key ++ |
| 86 | | 75 | int2(@enumToInt(tls.ExtensionType.server_name)) ++ |
| 87 | // Extension: server_name | 76 | int2(host_len + 5) ++ // byte length of this extension payload |
| 88 | 0, 0, // ExtensionType.server_name | 77 | int2(host_len + 3) ++ // server_name_list byte count |
| 89 | undefined, undefined, // byte length of this extension payload | 78 | [1]u8{0x00} ++ // name_type |
| 90 | undefined, undefined, // server_name_list byte count | 79 | int2(host_len); |
| 91 | 0x00, // name_type | 80 | |
| 92 | undefined, undefined, // host name len | 81 | const extensions_header = |
| 93 | }; | 82 | int2(@intCast(u16, extensions_payload.len + host_len)) ++ |
| 94 | | 83 | extensions_payload; |
| 95 | var hello_header = [_]u8{ | 84 | |
| | 85 | const legacy_compression_methods = 0x0100; |
| | 86 | |
| | 87 | const client_hello = |
| | 88 | int2(@enumToInt(tls.ProtocolVersion.tls_1_2)) ++ |
| | 89 | rand_buf ++ |
| | 90 | [1]u8{0} ++ |
| | 91 | cipher_suites ++ |
| | 92 | int2(legacy_compression_methods) ++ |
| | 93 | extensions_header; |
| | 94 | |
| | 95 | const handshake = |
| | 96 | [_]u8{@enumToInt(HandshakeType.client_hello)} ++ |
| | 97 | int3(@intCast(u24, client_hello.len + host_len)) ++ |
| | 98 | client_hello; |
| | 99 | |
| | 100 | const hello_header = [_]u8{ |
| 96 | // Plaintext header | 101 | // Plaintext header |
| 97 | @enumToInt(ContentType.handshake), | 102 | @enumToInt(ContentType.handshake), |
| 98 | 0x03, 0x01, // legacy_record_version | 103 | 0x03, 0x01, // legacy_record_version |
| 99 | undefined, undefined, // Plaintext fragment length (u16) | 104 | } ++ |
| 100 | | 105 | int2(@intCast(u16, handshake.len + host_len)) ++ |
| 101 | // Handshake header | 106 | handshake; |
| 102 | @enumToInt(HandshakeType.client_hello), | | |
| 103 | undefined, undefined, undefined, // handshake length (u24) | | |
| 104 | | | |
| 105 | // ClientHello | | |
| 106 | 0x03, 0x03, // legacy_version | | |
| 107 | } ++ rand_buf ++ [1]u8{0} ++ | | |
| 108 | int2(cipher_suites.len) ++ cipher_suites ++ | | |
| 109 | [_]u8{ | | |
| 110 | 0x01, 0x00, // legacy_compression_methods | | |
| 111 | } ++ extensions_header; | | |
| 112 | | | |
| 113 | mem.writeIntBig(u16, hello_header[3..][0..2], @intCast(u16, hello_header.len - 5 + host.len)); | | |
| 114 | mem.writeIntBig(u24, hello_header[6..][0..3], @intCast(u24, hello_header.len - 9 + host.len)); | | |
| 115 | mem.writeIntBig( | | |
| 116 | u16, | | |
| 117 | hello_header[hello_header.len - extensions_header.len ..][0..2], | | |
| 118 | @intCast(u16, extensions_header.len - 2 + host.len), | | |
| 119 | ); | | |
| 120 | mem.writeIntBig(u16, hello_header[hello_header.len - 7 ..][0..2], @intCast(u16, 5 + host.len)); | | |
| 121 | mem.writeIntBig(u16, hello_header[hello_header.len - 5 ..][0..2], @intCast(u16, 3 + host.len)); | | |
| 122 | mem.writeIntBig(u16, hello_header[hello_header.len - 2 ..][0..2], @intCast(u16, 0 + host.len)); | | |
| 123 | | 107 | |
| 124 | { | 108 | { |
| 125 | var iovecs = [_]std.os.iovec_const{ | 109 | var iovecs = [_]std.os.iovec_const{ |
| ... | @@ -699,13 +683,6 @@ inline fn big(x: anytype) @TypeOf(x) { | ... | @@ -699,13 +683,6 @@ inline fn big(x: anytype) @TypeOf(x) { |
| 699 | }; | 683 | }; |
| 700 | } | 684 | } |
| 701 | | 685 | |
| 702 | inline fn int2(x: u16) [2]u8 { | | |
| 703 | return .{ | | |
| 704 | @truncate(u8, x >> 8), | | |
| 705 | @truncate(u8, x), | | |
| 706 | }; | | |
| 707 | } | | |
| 708 | | | |
| 709 | /// The priority order here is chosen based on what crypto algorithms Zig has | 686 | /// The priority order here is chosen based on what crypto algorithms Zig has |
| 710 | /// available in the standard library as well as what is faster. Following are | 687 | /// available in the standard library as well as what is faster. Following are |
| 711 | /// a few data points on the relative performance of these algorithms. | 688 | /// a few data points on the relative performance of these algorithms. |
| ... | @@ -727,9 +704,10 @@ inline fn int2(x: u16) [2]u8 { | ... | @@ -727,9 +704,10 @@ inline fn int2(x: u16) [2]u8 { |
| 727 | /// aegis-256: 461 MiB/s | 704 | /// aegis-256: 461 MiB/s |
| 728 | /// aes128-gcm: 138 MiB/s | 705 | /// aes128-gcm: 138 MiB/s |
| 729 | /// aes256-gcm: 120 MiB/s | 706 | /// aes256-gcm: 120 MiB/s |
| 730 | const cipher_suites = | 707 | const cipher_suites = enum_array(tls.CipherSuite, &.{ |
| 731 | int2(@enumToInt(tls.CipherSuite.AEGIS_128L_SHA256)) ++ | 708 | .AEGIS_128L_SHA256, |
| 732 | int2(@enumToInt(tls.CipherSuite.AEGIS_256_SHA384)) ++ | 709 | .AEGIS_256_SHA384, |
| 733 | int2(@enumToInt(tls.CipherSuite.AES_128_GCM_SHA256)) ++ | 710 | .AES_128_GCM_SHA256, |
| 734 | int2(@enumToInt(tls.CipherSuite.AES_256_GCM_SHA384)) ++ | 711 | .AES_256_GCM_SHA384, |
| 735 | int2(@enumToInt(tls.CipherSuite.CHACHA20_POLY1305_SHA256)); | 712 | .CHACHA20_POLY1305_SHA256, |
| | 713 | }); |