1 # Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3 # Licensed under the OpenSSL license (the "License"). You may not use
4 # this file except in compliance with the License. You can obtain a copy
5 # in the file LICENSE in the source distribution or at
6 # https://www.openssl.org/source/license.html
10 package TLSProxy::Message;
12 use constant TLS_MESSAGE_HEADER_LENGTH => 4;
16 MT_HELLO_REQUEST => 0,
19 MT_NEW_SESSION_TICKET => 4,
20 MT_ENCRYPTED_EXTENSIONS => 8,
22 MT_SERVER_KEY_EXCHANGE => 12,
23 MT_CERTIFICATE_REQUEST => 13,
24 MT_SERVER_HELLO_DONE => 14,
25 MT_CERTIFICATE_VERIFY => 15,
26 MT_CLIENT_KEY_EXCHANGE => 16,
28 MT_CERTIFICATE_STATUS => 22,
40 AL_DESC_CLOSE_NOTIFY => 0,
41 AL_DESC_UNEXPECTED_MESSAGE => 10,
42 AL_DESC_NO_RENEGOTIATION => 100
46 MT_HELLO_REQUEST, "HelloRequest",
47 MT_CLIENT_HELLO, "ClientHello",
48 MT_SERVER_HELLO, "ServerHello",
49 MT_NEW_SESSION_TICKET, "NewSessionTicket",
50 MT_ENCRYPTED_EXTENSIONS, "EncryptedExtensions",
51 MT_CERTIFICATE, "Certificate",
52 MT_SERVER_KEY_EXCHANGE, "ServerKeyExchange",
53 MT_CERTIFICATE_REQUEST, "CertificateRequest",
54 MT_SERVER_HELLO_DONE, "ServerHelloDone",
55 MT_CERTIFICATE_VERIFY, "CertificateVerify",
56 MT_CLIENT_KEY_EXCHANGE, "ClientKeyExchange",
57 MT_FINISHED, "Finished",
58 MT_CERTIFICATE_STATUS, "CertificateStatus",
59 MT_NEXT_PROTO, "NextProto"
64 EXT_MAX_FRAGMENT_LENGTH => 1,
65 EXT_STATUS_REQUEST => 5,
66 EXT_SUPPORTED_GROUPS => 10,
67 EXT_EC_POINT_FORMATS => 11,
74 EXT_ENCRYPT_THEN_MAC => 22,
75 EXT_EXTENDED_MASTER_SECRET => 23,
76 EXT_SESSION_TICKET => 35,
79 EXT_SUPPORTED_VERSIONS => 43,
81 EXT_PSK_KEX_MODES => 45,
82 EXT_RENEGOTIATE => 65281,
84 # This extension is an unofficial extension only ever written by OpenSSL
85 # (i.e. not read), and even then only when enabled. We use it to test
86 # handling of duplicate extensions.
87 EXT_DUPLICATE_EXTENSION => 0xfde8,
88 EXT_UNKNOWN => 0xfffe,
89 #Unknown extension that should appear last
90 EXT_FORCE_LAST => 0xffff
93 # SignatureScheme of TLS 1.3, from
94 # https://tools.ietf.org/html/draft-ietf-tls-tls13-20#appendix-B.3.1.3
95 # TODO(TLS1.3) update link to IANA registry after publication
96 # We have to manually grab the SHA224 equivalents from the old registry
98 SIG_ALG_RSA_PKCS1_SHA256 => 0x0401,
99 SIG_ALG_RSA_PKCS1_SHA384 => 0x0501,
100 SIG_ALG_RSA_PKCS1_SHA512 => 0x0601,
101 SIG_ALG_ECDSA_SECP256R1_SHA256 => 0x0403,
102 SIG_ALG_ECDSA_SECP384R1_SHA384 => 0x0503,
103 SIG_ALG_ECDSA_SECP521R1_SHA512 => 0x0603,
104 SIG_ALG_RSA_PSS_SHA256 => 0x0804,
105 SIG_ALG_RSA_PSS_SHA384 => 0x0805,
106 SIG_ALG_RSA_PSS_SHA512 => 0x0806,
107 SIG_ALG_ED25519 => 0x0807,
108 SIG_ALG_ED448 => 0x0808,
109 SIG_ALG_RSA_PKCS1_SHA1 => 0x0201,
110 SIG_ALG_ECDSA_SHA1 => 0x0203,
111 SIG_ALG_DSA_SHA1 => 0x0202,
112 SIG_ALG_DSA_SHA256 => 0x0402,
113 SIG_ALG_DSA_SHA384 => 0x0502,
114 SIG_ALG_DSA_SHA512 => 0x0602,
115 OSSL_SIG_ALG_RSA_PKCS1_SHA224 => 0x0301,
116 OSSL_SIG_ALG_DSA_SHA224 => 0x0302,
117 OSSL_SIG_ALG_ECDSA_SHA224 => 0x0303
121 CIPHER_DHE_RSA_AES_128_SHA => 0x0033,
122 CIPHER_ADH_AES_128_SHA => 0x0034,
123 CIPHER_TLS13_AES_128_GCM_SHA256 => 0x1301,
124 CIPHER_TLS13_AES_256_GCM_SHA384 => 0x1302
130 my $startoffset = -1;
134 my @message_rec_list = ();
135 my @message_frag_lens = ();
137 my $successondata = 0;
148 @message_rec_list = ();
149 @message_frag_lens = ();
152 #Class method to extract messages from a record
156 my $serverin = shift;
161 @message_frag_lens = ();
163 if ($serverin != $server && length($payload) != 0) {
164 die "Changed peer, but we still have fragment data\n";
168 if ($record->content_type == TLSProxy::Record::RT_CCS) {
169 if ($payload ne "") {
170 #We can't handle this yet
171 die "CCS received before message data complete\n";
174 TLSProxy::Record->server_encrypting(1);
176 TLSProxy::Record->client_encrypting(1);
178 } elsif ($record->content_type == TLSProxy::Record::RT_HANDSHAKE) {
179 if ($record->len == 0 || $record->len_real == 0) {
180 print " Message truncated\n";
184 if (length $payload > 0) {
185 #We are continuing processing a message started in a previous
186 #record. Add this record to the list associated with this
188 push @message_rec_list, $record;
190 if ($messlen <= length($payload)) {
192 die "Internal error: invalid messlen: ".$messlen
193 ." payload length:".length($payload)."\n";
195 if (length($payload) + $record->decrypt_len >= $messlen) {
196 #We can complete the message with this record
197 $recoffset = $messlen - length($payload);
198 $payload .= substr($record->decrypt_data, 0, $recoffset);
199 push @message_frag_lens, $recoffset;
200 $message = create_message($server, $mt, $payload,
202 push @messages, $message;
206 #This is just part of the total message
207 $payload .= $record->decrypt_data;
208 $recoffset = $record->decrypt_len;
209 push @message_frag_lens, $record->decrypt_len;
211 print " Partial message data read: ".$recoffset." bytes\n";
214 while ($record->decrypt_len > $recoffset) {
215 #We are at the start of a new message
216 if ($record->decrypt_len - $recoffset < 4) {
217 #Whilst technically probably valid we can't cope with this
218 die "End of record in the middle of a message header\n";
220 @message_rec_list = ($record);
223 ($mt, $lenhi, $lenlo) = unpack('CnC',
224 substr($record->decrypt_data,
226 $messlen = ($lenhi << 8) | $lenlo;
227 print " Message type: $message_type{$mt}\n";
228 print " Message Length: $messlen\n";
229 $startoffset = $recoffset;
233 if ($recoffset <= $record->decrypt_len) {
234 #Some payload data is present in this record
235 if ($record->decrypt_len - $recoffset >= $messlen) {
236 #We can complete the message with this record
237 $payload .= substr($record->decrypt_data, $recoffset,
239 $recoffset += $messlen;
240 push @message_frag_lens, $messlen;
241 $message = create_message($server, $mt, $payload,
243 push @messages, $message;
247 #This is just part of the total message
248 $payload .= substr($record->decrypt_data, $recoffset,
249 $record->decrypt_len - $recoffset);
250 $recoffset = $record->decrypt_len;
251 push @message_frag_lens, $recoffset;
256 } elsif ($record->content_type == TLSProxy::Record::RT_APPLICATION_DATA) {
257 print " [ENCRYPTED APPLICATION DATA]\n";
258 print " [".$record->decrypt_data."]\n";
260 if ($successondata) {
264 } elsif ($record->content_type == TLSProxy::Record::RT_ALERT) {
265 my ($alertlev, $alertdesc) = unpack('CC', $record->decrypt_data);
266 #A CloseNotify from the client indicates we have finished successfully
268 if (!$end && !$server && $alertlev == AL_LEVEL_WARN
269 && $alertdesc == AL_DESC_CLOSE_NOTIFY) {
272 #All alerts end the test
279 #Function to work out which sub-class we need to create and then
283 my ($server, $mt, $data, $startoffset) = @_;
286 #We only support ClientHello in this version...needs to be extended for
288 if ($mt == MT_CLIENT_HELLO) {
289 $message = TLSProxy::ClientHello->new(
297 } elsif ($mt == MT_SERVER_HELLO) {
298 $message = TLSProxy::ServerHello->new(
306 } elsif ($mt == MT_ENCRYPTED_EXTENSIONS) {
307 $message = TLSProxy::EncryptedExtensions->new(
315 } elsif ($mt == MT_CERTIFICATE) {
316 $message = TLSProxy::Certificate->new(
324 } elsif ($mt == MT_CERTIFICATE_VERIFY) {
325 $message = TLSProxy::CertificateVerify->new(
333 } elsif ($mt == MT_SERVER_KEY_EXCHANGE) {
334 $message = TLSProxy::ServerKeyExchange->new(
342 } elsif ($mt == MT_NEW_SESSION_TICKET) {
343 $message = TLSProxy::NewSessionTicket->new(
352 #Unknown message type
353 $message = TLSProxy::Message->new(
379 return !$success && $end;
389 $message_frag_lens) = @_;
396 startoffset => $startoffset,
397 message_frag_lens => $message_frag_lens
400 return bless $self, $class;
407 $ciphersuite = shift;
412 #Update all the underlying records with the modified data from this message
413 #Note: Only supports re-encrypting for TLSv1.3
419 my $numrecs = $#{$self->records};
421 $self->set_message_contents();
426 $lenlo = length($self->data) & 0xff;
427 $lenhi = length($self->data) >> 8;
428 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
431 #The message is fully contained within one record
432 my ($rec) = @{$self->records};
433 my $recdata = $rec->decrypt_data;
437 # We use empty message_frag_lens to indicates that pre-repacking,
438 # the message wasn't present. The first fragment length doesn't include
439 # the TLS header, so we need to check and compute the right length.
440 if (@{$self->message_frag_lens}) {
441 $old_length = ${$self->message_frag_lens}[0] +
442 TLS_MESSAGE_HEADER_LENGTH;
447 my $prefix = substr($recdata, 0, $self->startoffset);
448 my $suffix = substr($recdata, $self->startoffset + $old_length);
450 $rec->decrypt_data($prefix.($msgdata).($suffix));
451 # TODO(openssl-team): don't keep explicit lengths.
452 # (If a length override is ever needed to construct invalid packets,
453 # use an explicit override field instead.)
454 $rec->decrypt_len(length($rec->decrypt_data));
455 $rec->len($rec->len + length($msgdata) - $old_length);
456 # Only support re-encryption for TLSv1.3.
457 if (TLSProxy::Proxy->is_tls13() && $rec->encrypted()) {
458 #Add content type (1 byte) and 16 tag bytes
459 $rec->data($rec->decrypt_data
460 .pack("C", TLSProxy::Record::RT_HANDSHAKE).("\0"x16));
462 $rec->data($rec->decrypt_data);
465 #Update the fragment len in case we changed it above
466 ${$self->message_frag_lens}[0] = length($msgdata)
467 - TLS_MESSAGE_HEADER_LENGTH;
471 #Note we don't currently support changing a fragmented message length
474 foreach my $rec (@{$self->records}) {
475 my $recdata = $rec->decrypt_data;
477 #This is the first record
478 my $remainlen = length($recdata) - $self->startoffset;
479 $rec->data(substr($recdata, 0, $self->startoffset)
480 .substr(($msgdata), 0, $remainlen));
481 $datadone += $remainlen;
482 } elsif ($recctr + 1 == $numrecs) {
483 #This is the last record
484 $rec->data(substr($msgdata, $datadone));
486 #This is a middle record
487 $rec->data(substr($msgdata, $datadone, length($rec->data)));
488 $datadone += length($rec->data);
494 #To be overridden by sub-classes
495 sub set_message_contents
503 return $self->{server};
506 #Read/write accessors
519 $self->{data} = shift;
521 return $self->{data};
527 $self->{records} = shift;
529 return $self->{records};
535 $self->{startoffset} = shift;
537 return $self->{startoffset};
539 sub message_frag_lens
543 $self->{message_frag_lens} = shift;
545 return $self->{message_frag_lens};
550 return TLS_MESSAGE_HEADER_LENGTH + length($self->data);
556 $successondata = shift;
558 return $successondata;