std.crypto.tls: implement the rest of the cipher suites

Also:
 * Use KeyPair.create() function
 * Don't bother with CCM
This commit is contained in:
Andrew Kelley 2022-12-16 18:06:00 -07:00
parent 93ab8be8d8
commit 942b5b468f
3 changed files with 85 additions and 131 deletions

View File

@ -211,17 +211,20 @@ pub const NamedGroup = enum(u16) {
}; };
pub const CipherSuite = enum(u16) { pub const CipherSuite = enum(u16) {
TLS_AES_128_GCM_SHA256 = 0x1301, AES_128_GCM_SHA256 = 0x1301,
TLS_AES_256_GCM_SHA384 = 0x1302, AES_256_GCM_SHA384 = 0x1302,
TLS_CHACHA20_POLY1305_SHA256 = 0x1303, CHACHA20_POLY1305_SHA256 = 0x1303,
TLS_AES_128_CCM_SHA256 = 0x1304, AES_128_CCM_SHA256 = 0x1304,
TLS_AES_128_CCM_8_SHA256 = 0x1305, AES_128_CCM_8_SHA256 = 0x1305,
AEGIS_256_SHA384 = 0x1306,
AEGIS_128L_SHA256 = 0x1307,
_,
}; };
pub const CipherParams = union(CipherSuite) { pub fn CipherParamsT(comptime AeadType: type, comptime HashType: type) type {
TLS_AES_128_GCM_SHA256: struct { return struct {
pub const AEAD = crypto.aead.aes_gcm.Aes128Gcm; pub const AEAD = AeadType;
pub const Hash = crypto.hash.sha2.Sha256; pub const Hash = HashType;
pub const Hmac = crypto.auth.hmac.Hmac(Hash); pub const Hmac = crypto.auth.hmac.Hmac(Hash);
pub const Hkdf = crypto.kdf.hkdf.Hkdf(Hmac); pub const Hkdf = crypto.kdf.hkdf.Hkdf(Hmac);
@ -234,55 +237,38 @@ pub const CipherParams = union(CipherSuite) {
client_handshake_iv: [AEAD.nonce_length]u8, client_handshake_iv: [AEAD.nonce_length]u8,
server_handshake_iv: [AEAD.nonce_length]u8, server_handshake_iv: [AEAD.nonce_length]u8,
transcript_hash: Hash, transcript_hash: Hash,
}, };
TLS_AES_256_GCM_SHA384: struct { }
pub const AEAD = crypto.aead.aes_gcm.Aes256Gcm;
pub const Hash = crypto.hash.sha2.Sha384; pub const CipherParams = union(enum) {
AES_128_GCM_SHA256: CipherParamsT(crypto.aead.aes_gcm.Aes128Gcm, crypto.hash.sha2.Sha256),
AES_256_GCM_SHA384: CipherParamsT(crypto.aead.aes_gcm.Aes256Gcm, crypto.hash.sha2.Sha384),
CHACHA20_POLY1305_SHA256: CipherParamsT(crypto.aead.chacha_poly.ChaCha20Poly1305, crypto.hash.sha2.Sha256),
AEGIS_256_SHA384: CipherParamsT(crypto.aead.aegis.Aegis256, crypto.hash.sha2.Sha384),
AEGIS_128L_SHA256: CipherParamsT(crypto.aead.aegis.Aegis128L, crypto.hash.sha2.Sha256),
};
pub fn ApplicationCipherT(comptime AeadType: type, comptime HashType: type) type {
return struct {
pub const AEAD = AeadType;
pub const Hash = HashType;
pub const Hmac = crypto.auth.hmac.Hmac(Hash); pub const Hmac = crypto.auth.hmac.Hmac(Hash);
pub const Hkdf = crypto.kdf.hkdf.Hkdf(Hmac); pub const Hkdf = crypto.kdf.hkdf.Hkdf(Hmac);
handshake_secret: [Hkdf.prk_length]u8, client_key: [AEAD.key_length]u8,
master_secret: [Hkdf.prk_length]u8, server_key: [AEAD.key_length]u8,
client_handshake_key: [AEAD.key_length]u8, client_iv: [AEAD.nonce_length]u8,
server_handshake_key: [AEAD.key_length]u8, server_iv: [AEAD.nonce_length]u8,
client_finished_key: [Hmac.key_length]u8,
server_finished_key: [Hmac.key_length]u8,
client_handshake_iv: [AEAD.nonce_length]u8,
server_handshake_iv: [AEAD.nonce_length]u8,
transcript_hash: Hash,
},
TLS_CHACHA20_POLY1305_SHA256: void,
TLS_AES_128_CCM_SHA256: void,
TLS_AES_128_CCM_8_SHA256: void,
}; };
}
/// Encryption parameters for application traffic. /// Encryption parameters for application traffic.
pub const ApplicationCipher = union(CipherSuite) { pub const ApplicationCipher = union(enum) {
TLS_AES_128_GCM_SHA256: struct { AES_128_GCM_SHA256: ApplicationCipherT(crypto.aead.aes_gcm.Aes128Gcm, crypto.hash.sha2.Sha256),
pub const AEAD = crypto.aead.aes_gcm.Aes128Gcm; AES_256_GCM_SHA384: ApplicationCipherT(crypto.aead.aes_gcm.Aes256Gcm, crypto.hash.sha2.Sha384),
pub const Hash = crypto.hash.sha2.Sha256; CHACHA20_POLY1305_SHA256: ApplicationCipherT(crypto.aead.chacha_poly.ChaCha20Poly1305, crypto.hash.sha2.Sha256),
pub const Hmac = crypto.auth.hmac.Hmac(Hash); AEGIS_256_SHA384: ApplicationCipherT(crypto.aead.aegis.Aegis256, crypto.hash.sha2.Sha384),
pub const Hkdf = crypto.kdf.hkdf.Hkdf(Hmac); AEGIS_128L_SHA256: ApplicationCipherT(crypto.aead.aegis.Aegis128L, crypto.hash.sha2.Sha256),
client_key: [AEAD.key_length]u8,
server_key: [AEAD.key_length]u8,
client_iv: [AEAD.nonce_length]u8,
server_iv: [AEAD.nonce_length]u8,
},
TLS_AES_256_GCM_SHA384: struct {
pub const AEAD = crypto.aead.aes_gcm.Aes256Gcm;
pub const Hash = crypto.hash.sha2.Sha384;
pub const Hmac = crypto.auth.hmac.Hmac(Hash);
pub const Hkdf = crypto.kdf.hkdf.Hkdf(Hmac);
client_key: [AEAD.key_length]u8,
server_key: [AEAD.key_length]u8,
client_iv: [AEAD.nonce_length]u8,
server_iv: [AEAD.nonce_length]u8,
},
TLS_CHACHA20_POLY1305_SHA256: void,
TLS_AES_128_CCM_SHA256: void,
TLS_AES_128_CCM_8_SHA256: void,
}; };
pub fn hkdfExpandLabel( pub fn hkdfExpandLabel(

View File

@ -23,27 +23,27 @@ partially_read_buffer: [tls.max_ciphertext_record_len]u8,
partially_read_len: u15, partially_read_len: u15,
eof: bool, eof: bool,
const cipher_suites = blk: { // Measurement taken with 0.11.0-dev.810+c2f5848fe
const fields = @typeInfo(CipherSuite).Enum.fields; // on x86_64-linux Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz:
var result: [(fields.len + 1) * 2]u8 = undefined; // zig run .lib/std/crypto/benchmark.zig -OReleaseFast
mem.writeIntBig(u16, result[0..2], result.len - 2); // aegis-128l: 15382 MiB/s
for (fields) |field, i| { // aegis-256: 9553 MiB/s
const int = @enumToInt(@field(CipherSuite, field.name)); // aes128-gcm: 3721 MiB/s
result[(i + 1) * 2] = @truncate(u8, int >> 8); // aes256-gcm: 3010 MiB/s
result[(i + 1) * 2 + 1] = @truncate(u8, int); // chacha20Poly1305: 597 MiB/s
}
break :blk result; const cipher_suites =
}; int2(@enumToInt(tls.CipherSuite.AEGIS_128L_SHA256)) ++
int2(@enumToInt(tls.CipherSuite.AEGIS_256_SHA384)) ++
int2(@enumToInt(tls.CipherSuite.AES_128_GCM_SHA256)) ++
int2(@enumToInt(tls.CipherSuite.AES_256_GCM_SHA384)) ++
int2(@enumToInt(tls.CipherSuite.CHACHA20_POLY1305_SHA256));
/// `host` is only borrowed during this function call. /// `host` is only borrowed during this function call.
pub fn init(stream: net.Stream, host: []const u8) !Client { pub fn init(stream: net.Stream, host: []const u8) !Client {
var x25519_priv_key: [32]u8 = undefined; const kp = crypto.dh.X25519.KeyPair.create(null) catch |err| switch (err) {
crypto.random.bytes(&x25519_priv_key);
const x25519_pub_key = crypto.dh.X25519.recoverPublicKey(x25519_priv_key) catch |err| {
switch (err) {
// Only possible to happen if the private key is all zeroes. // Only possible to happen if the private key is all zeroes.
error.IdentityElement => return error.InsufficientEntropy, error.IdentityElement => return error.InsufficientEntropy,
}
}; };
// random (u32) // random (u32)
@ -98,7 +98,7 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
0, 36, // byte length of client_shares 0, 36, // byte length of client_shares
0x00, 0x1D, // NamedGroup.x25519 0x00, 0x1D, // NamedGroup.x25519
0, 32, // byte length of key_exchange 0, 32, // byte length of key_exchange
} ++ x25519_pub_key ++ [_]u8{ } ++ kp.public_key ++ [_]u8{
// Extension: server_name // Extension: server_name
0, 0, // ExtensionType.server_name 0, 0, // ExtensionType.server_name
@ -120,7 +120,9 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
// ClientHello // ClientHello
0x03, 0x03, // legacy_version 0x03, 0x03, // legacy_version
} ++ rand_buf ++ [1]u8{0} ++ cipher_suites ++ [_]u8{ } ++ rand_buf ++ [1]u8{0} ++
int2(cipher_suites.len) ++ cipher_suites ++
[_]u8{
0x01, 0x00, // legacy_compression_methods 0x01, 0x00, // legacy_compression_methods
} ++ extensions_header; } ++ extensions_header;
@ -191,9 +193,8 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
const legacy_session_id_echo_len = hello[34]; const legacy_session_id_echo_len = hello[34];
if (legacy_session_id_echo_len != 0) return error.TlsIllegalParameter; if (legacy_session_id_echo_len != 0) return error.TlsIllegalParameter;
const cipher_suite_int = mem.readIntBig(u16, hello[35..37]); const cipher_suite_int = mem.readIntBig(u16, hello[35..37]);
const cipher_suite_tag = std.meta.intToEnum(CipherSuite, cipher_suite_int) catch const cipher_suite_tag = @intToEnum(CipherSuite, cipher_suite_int);
return error.TlsIllegalParameter; std.debug.print("server wants cipher suite {any}\n", .{cipher_suite_tag});
std.debug.print("server wants cipher suite {s}\n", .{@tagName(cipher_suite_tag)});
const legacy_compression_method = hello[37]; const legacy_compression_method = hello[37];
_ = legacy_compression_method; _ = legacy_compression_method;
const extensions_size = mem.readIntBig(u16, hello[38..40]); const extensions_size = mem.readIntBig(u16, hello[38..40]);
@ -250,13 +251,18 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
} }
const shared_key = crypto.dh.X25519.scalarmult( const shared_key = crypto.dh.X25519.scalarmult(
x25519_priv_key, kp.secret_key,
x25519_server_pub_key.*, x25519_server_pub_key.*,
) catch return error.TlsDecryptFailure; ) catch return error.TlsDecryptFailure;
switch (cipher_suite_tag) { switch (cipher_suite_tag) {
inline .TLS_AES_128_GCM_SHA256, .TLS_AES_256_GCM_SHA384 => |tag| { inline .AES_128_GCM_SHA256,
const P = std.meta.TagPayload(CipherParams, tag); .AES_256_GCM_SHA384,
.CHACHA20_POLY1305_SHA256,
.AEGIS_256_SHA384,
.AEGIS_128L_SHA256,
=> |tag| {
const P = std.meta.TagPayloadByName(CipherParams, @tagName(tag));
cipher_params = @unionInit(CipherParams, @tagName(tag), .{ cipher_params = @unionInit(CipherParams, @tagName(tag), .{
.handshake_secret = undefined, .handshake_secret = undefined,
.master_secret = undefined, .master_secret = undefined,
@ -301,14 +307,8 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
// std.fmt.fmtSliceHexLower(&p.server_handshake_iv), // std.fmt.fmtSliceHexLower(&p.server_handshake_iv),
//}); //});
}, },
.TLS_CHACHA20_POLY1305_SHA256 => { else => {
@panic("TODO"); return error.TlsIllegalParameter;
},
.TLS_AES_128_CCM_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_8_SHA256 => {
@panic("TODO");
}, },
} }
}, },
@ -347,7 +347,7 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
.application_data => { .application_data => {
var cleartext_buf: [8000]u8 = undefined; var cleartext_buf: [8000]u8 = undefined;
const cleartext = switch (cipher_params) { const cleartext = switch (cipher_params) {
inline .TLS_AES_128_GCM_SHA256, .TLS_AES_256_GCM_SHA384 => |*p| c: { inline else => |*p| c: {
const P = @TypeOf(p.*); const P = @TypeOf(p.*);
const ciphertext_len = record_size - P.AEAD.tag_length; const ciphertext_len = record_size - P.AEAD.tag_length;
const ciphertext = handshake_buf[i..][0..ciphertext_len]; const ciphertext = handshake_buf[i..][0..ciphertext_len];
@ -366,15 +366,6 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
p.transcript_hash.update(cleartext[0 .. cleartext.len - 1]); p.transcript_hash.update(cleartext[0 .. cleartext.len - 1]);
break :c cleartext; break :c cleartext;
}, },
.TLS_CHACHA20_POLY1305_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_8_SHA256 => {
@panic("TODO");
},
}; };
const inner_ct = @intToEnum(ContentType, cleartext[cleartext.len - 1]); const inner_ct = @intToEnum(ContentType, cleartext[cleartext.len - 1]);
@ -426,7 +417,7 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
0x01, 0x01,
}; };
const app_cipher = switch (cipher_params) { const app_cipher = switch (cipher_params) {
inline .TLS_AES_128_GCM_SHA256, .TLS_AES_256_GCM_SHA384 => |*p, tag| c: { inline else => |*p, tag| c: {
const P = @TypeOf(p.*); const P = @TypeOf(p.*);
// TODO verify the server's data // TODO verify the server's data
const handshake_hash = p.transcript_hash.finalResult(); const handshake_hash = p.transcript_hash.finalResult();
@ -467,15 +458,6 @@ pub fn init(stream: net.Stream, host: []const u8) !Client {
.server_iv = hkdfExpandLabel(P.Hkdf, server_secret, "iv", "", P.AEAD.nonce_length), .server_iv = hkdfExpandLabel(P.Hkdf, server_secret, "iv", "", P.AEAD.nonce_length),
}); });
}, },
.TLS_CHACHA20_POLY1305_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_8_SHA256 => {
@panic("TODO");
},
}; };
std.debug.print("remaining bytes: {d}\n", .{len - end}); std.debug.print("remaining bytes: {d}\n", .{len - end});
return .{ return .{
@ -524,7 +506,7 @@ pub fn write(c: *Client, stream: net.Stream, bytes: []const u8) !usize {
var bytes_i: usize = 0; var bytes_i: usize = 0;
// How many bytes are taken up by overhead per record. // How many bytes are taken up by overhead per record.
const overhead_len: usize = switch (c.application_cipher) { const overhead_len: usize = switch (c.application_cipher) {
inline .TLS_AES_128_GCM_SHA256, .TLS_AES_256_GCM_SHA384 => |*p| l: { inline else => |*p| l: {
const P = @TypeOf(p.*); const P = @TypeOf(p.*);
const V = @Vector(P.AEAD.nonce_length, u8); const V = @Vector(P.AEAD.nonce_length, u8);
const overhead_len = tls.ciphertext_record_header_len + P.AEAD.tag_length + 1; const overhead_len = tls.ciphertext_record_header_len + P.AEAD.tag_length + 1;
@ -577,15 +559,6 @@ pub fn write(c: *Client, stream: net.Stream, bytes: []const u8) !usize {
iovec_end += 1; iovec_end += 1;
} }
}, },
.TLS_CHACHA20_POLY1305_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_8_SHA256 => {
@panic("TODO");
},
}; };
// Ideally we would call writev exactly once here, however, we must ensure // Ideally we would call writev exactly once here, however, we must ensure
@ -659,7 +632,7 @@ pub fn read(c: *Client, stream: net.Stream, buffer: []u8) !usize {
}, },
.application_data => { .application_data => {
const cleartext_len = switch (c.application_cipher) { const cleartext_len = switch (c.application_cipher) {
inline .TLS_AES_128_GCM_SHA256, .TLS_AES_256_GCM_SHA384 => |*p| c: { inline else => |*p| c: {
const P = @TypeOf(p.*); const P = @TypeOf(p.*);
const V = @Vector(P.AEAD.nonce_length, u8); const V = @Vector(P.AEAD.nonce_length, u8);
const ad = frag[in - 5 ..][0..5]; const ad = frag[in - 5 ..][0..5];
@ -682,15 +655,6 @@ pub fn read(c: *Client, stream: net.Stream, buffer: []u8) !usize {
return error.TlsBadRecordMac; return error.TlsBadRecordMac;
break :c cleartext.len; break :c cleartext.len;
}, },
.TLS_CHACHA20_POLY1305_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_SHA256 => {
@panic("TODO");
},
.TLS_AES_128_CCM_8_SHA256 => {
@panic("TODO");
},
}; };
const inner_ct = @intToEnum(ContentType, buffer[out + cleartext_len - 1]); const inner_ct = @intToEnum(ContentType, buffer[out + cleartext_len - 1]);

View File

@ -810,21 +810,25 @@ test "std.meta.activeTag" {
const TagPayloadType = TagPayload; const TagPayloadType = TagPayload;
///Given a tagged union type, and an enum, return the type of the union pub fn TagPayloadByName(comptime U: type, comptime tag_name: []const u8) type {
/// field corresponding to the enum tag.
pub fn TagPayload(comptime U: type, comptime tag: Tag(U)) type {
comptime debug.assert(trait.is(.Union)(U)); comptime debug.assert(trait.is(.Union)(U));
const info = @typeInfo(U).Union; const info = @typeInfo(U).Union;
inline for (info.fields) |field_info| { inline for (info.fields) |field_info| {
if (comptime mem.eql(u8, field_info.name, @tagName(tag))) if (comptime mem.eql(u8, field_info.name, tag_name))
return field_info.type; return field_info.type;
} }
unreachable; unreachable;
} }
/// Given a tagged union type, and an enum, return the type of the union field
/// corresponding to the enum tag.
pub fn TagPayload(comptime U: type, comptime tag: Tag(U)) type {
return TagPayloadByName(U, @tagName(tag));
}
test "std.meta.TagPayload" { test "std.meta.TagPayload" {
const Event = union(enum) { const Event = union(enum) {
Moved: struct { Moved: struct {