1 # Copyright 2016-2018 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;
14 use constant TLS_MESSAGE_HEADER_LENGTH => 4;
18 MT_HELLO_REQUEST => 0,
21 MT_NEW_SESSION_TICKET => 4,
22 MT_ENCRYPTED_EXTENSIONS => 8,
24 MT_SERVER_KEY_EXCHANGE => 12,
25 MT_CERTIFICATE_REQUEST => 13,
26 MT_SERVER_HELLO_DONE => 14,
27 MT_CERTIFICATE_VERIFY => 15,
28 MT_CLIENT_KEY_EXCHANGE => 16,
30 MT_CERTIFICATE_STATUS => 22,
42 AL_DESC_CLOSE_NOTIFY => 0,
43 AL_DESC_UNEXPECTED_MESSAGE => 10,
44 AL_DESC_ILLEGAL_PARAMETER => 47,
45 AL_DESC_NO_RENEGOTIATION => 100
49 MT_HELLO_REQUEST, "HelloRequest",
50 MT_CLIENT_HELLO, "ClientHello",
51 MT_SERVER_HELLO, "ServerHello",
52 MT_NEW_SESSION_TICKET, "NewSessionTicket",
53 MT_ENCRYPTED_EXTENSIONS, "EncryptedExtensions",
54 MT_CERTIFICATE, "Certificate",
55 MT_SERVER_KEY_EXCHANGE, "ServerKeyExchange",
56 MT_CERTIFICATE_REQUEST, "CertificateRequest",
57 MT_SERVER_HELLO_DONE, "ServerHelloDone",
58 MT_CERTIFICATE_VERIFY, "CertificateVerify",
59 MT_CLIENT_KEY_EXCHANGE, "ClientKeyExchange",
60 MT_FINISHED, "Finished",
61 MT_CERTIFICATE_STATUS, "CertificateStatus",
62 MT_NEXT_PROTO, "NextProto"
67 EXT_MAX_FRAGMENT_LENGTH => 1,
68 EXT_STATUS_REQUEST => 5,
69 EXT_SUPPORTED_GROUPS => 10,
70 EXT_EC_POINT_FORMATS => 11,
77 EXT_ENCRYPT_THEN_MAC => 22,
78 EXT_EXTENDED_MASTER_SECRET => 23,
79 EXT_SESSION_TICKET => 35,
82 EXT_SUPPORTED_VERSIONS => 43,
84 EXT_PSK_KEX_MODES => 45,
85 EXT_POST_HANDSHAKE_AUTH => 49,
86 EXT_SIG_ALGS_CERT => 50,
87 EXT_RENEGOTIATE => 65281,
89 # This extension is an unofficial extension only ever written by OpenSSL
90 # (i.e. not read), and even then only when enabled. We use it to test
91 # handling of duplicate extensions.
92 EXT_DUPLICATE_EXTENSION => 0xfde8,
93 EXT_UNKNOWN => 0xfffe,
94 #Unknown extension that should appear last
95 EXT_FORCE_LAST => 0xffff
98 # SignatureScheme of TLS 1.3, from
99 # https://tools.ietf.org/html/draft-ietf-tls-tls13-20#appendix-B.3.1.3
100 # TODO(TLS1.3) update link to IANA registry after publication
101 # We have to manually grab the SHA224 equivalents from the old registry
103 SIG_ALG_RSA_PKCS1_SHA256 => 0x0401,
104 SIG_ALG_RSA_PKCS1_SHA384 => 0x0501,
105 SIG_ALG_RSA_PKCS1_SHA512 => 0x0601,
106 SIG_ALG_ECDSA_SECP256R1_SHA256 => 0x0403,
107 SIG_ALG_ECDSA_SECP384R1_SHA384 => 0x0503,
108 SIG_ALG_ECDSA_SECP521R1_SHA512 => 0x0603,
109 SIG_ALG_RSA_PSS_RSAE_SHA256 => 0x0804,
110 SIG_ALG_RSA_PSS_RSAE_SHA384 => 0x0805,
111 SIG_ALG_RSA_PSS_RSAE_SHA512 => 0x0806,
112 SIG_ALG_ED25519 => 0x0807,
113 SIG_ALG_ED448 => 0x0808,
114 SIG_ALG_RSA_PSS_PSS_SHA256 => 0x0809,
115 SIG_ALG_RSA_PSS_PSS_SHA384 => 0x080a,
116 SIG_ALG_RSA_PSS_PSS_SHA512 => 0x080b,
117 SIG_ALG_RSA_PKCS1_SHA1 => 0x0201,
118 SIG_ALG_ECDSA_SHA1 => 0x0203,
119 SIG_ALG_DSA_SHA1 => 0x0202,
120 SIG_ALG_DSA_SHA256 => 0x0402,
121 SIG_ALG_DSA_SHA384 => 0x0502,
122 SIG_ALG_DSA_SHA512 => 0x0602,
123 OSSL_SIG_ALG_RSA_PKCS1_SHA224 => 0x0301,
124 OSSL_SIG_ALG_DSA_SHA224 => 0x0302,
125 OSSL_SIG_ALG_ECDSA_SHA224 => 0x0303
129 CIPHER_RSA_WITH_AES_128_CBC_SHA => 0x002f,
130 CIPHER_DHE_RSA_AES_128_SHA => 0x0033,
131 CIPHER_ADH_AES_128_SHA => 0x0034,
132 CIPHER_TLS13_AES_128_GCM_SHA256 => 0x1301,
133 CIPHER_TLS13_AES_256_GCM_SHA384 => 0x1302
139 my $startoffset = -1;
143 my @message_rec_list = ();
144 my @message_frag_lens = ();
146 my $successondata = 0;
158 @message_rec_list = ();
159 @message_frag_lens = ();
163 #Class method to extract messages from a record
167 my $serverin = shift;
172 @message_frag_lens = ();
174 if ($serverin != $server && length($payload) != 0) {
175 die "Changed peer, but we still have fragment data\n";
179 if ($record->content_type == TLSProxy::Record::RT_CCS) {
180 if ($payload ne "") {
181 #We can't handle this yet
182 die "CCS received before message data complete\n";
184 if (!TLSProxy::Proxy->is_tls13()) {
186 TLSProxy::Record->server_encrypting(1);
188 TLSProxy::Record->client_encrypting(1);
191 } elsif ($record->content_type == TLSProxy::Record::RT_HANDSHAKE) {
192 if ($record->len == 0 || $record->len_real == 0) {
193 print " Message truncated\n";
197 if (length $payload > 0) {
198 #We are continuing processing a message started in a previous
199 #record. Add this record to the list associated with this
201 push @message_rec_list, $record;
203 if ($messlen <= length($payload)) {
205 die "Internal error: invalid messlen: ".$messlen
206 ." payload length:".length($payload)."\n";
208 if (length($payload) + $record->decrypt_len >= $messlen) {
209 #We can complete the message with this record
210 $recoffset = $messlen - length($payload);
211 $payload .= substr($record->decrypt_data, 0, $recoffset);
212 push @message_frag_lens, $recoffset;
213 $message = create_message($server, $mt, $payload,
215 push @messages, $message;
219 #This is just part of the total message
220 $payload .= $record->decrypt_data;
221 $recoffset = $record->decrypt_len;
222 push @message_frag_lens, $record->decrypt_len;
224 print " Partial message data read: ".$recoffset." bytes\n";
227 while ($record->decrypt_len > $recoffset) {
228 #We are at the start of a new message
229 if ($record->decrypt_len - $recoffset < 4) {
230 #Whilst technically probably valid we can't cope with this
231 die "End of record in the middle of a message header\n";
233 @message_rec_list = ($record);
236 ($mt, $lenhi, $lenlo) = unpack('CnC',
237 substr($record->decrypt_data,
239 $messlen = ($lenhi << 8) | $lenlo;
240 print " Message type: $message_type{$mt}\n";
241 print " Message Length: $messlen\n";
242 $startoffset = $recoffset;
246 if ($recoffset <= $record->decrypt_len) {
247 #Some payload data is present in this record
248 if ($record->decrypt_len - $recoffset >= $messlen) {
249 #We can complete the message with this record
250 $payload .= substr($record->decrypt_data, $recoffset,
252 $recoffset += $messlen;
253 push @message_frag_lens, $messlen;
254 $message = create_message($server, $mt, $payload,
256 push @messages, $message;
260 #This is just part of the total message
261 $payload .= substr($record->decrypt_data, $recoffset,
262 $record->decrypt_len - $recoffset);
263 $recoffset = $record->decrypt_len;
264 push @message_frag_lens, $recoffset;
269 } elsif ($record->content_type == TLSProxy::Record::RT_APPLICATION_DATA) {
270 print " [ENCRYPTED APPLICATION DATA]\n";
271 print " [".$record->decrypt_data."]\n";
273 if ($successondata) {
277 } elsif ($record->content_type == TLSProxy::Record::RT_ALERT) {
278 my ($alertlev, $alertdesc) = unpack('CC', $record->decrypt_data);
279 print " [$alertlev, $alertdesc]\n";
280 #A CloseNotify from the client indicates we have finished successfully
282 if (!$end && !$server && $alertlev == AL_LEVEL_WARN
283 && $alertdesc == AL_DESC_CLOSE_NOTIFY) {
286 #Fatal or close notify alerts end the test
287 if ($alertlev == AL_LEVEL_FATAL || $alertdesc == AL_DESC_CLOSE_NOTIFY) {
290 $alert = TLSProxy::Alert->new(
300 #Function to work out which sub-class we need to create and then
304 my ($server, $mt, $data, $startoffset) = @_;
307 #We only support ClientHello in this version...needs to be extended for
309 if ($mt == MT_CLIENT_HELLO) {
310 $message = TLSProxy::ClientHello->new(
318 } elsif ($mt == MT_SERVER_HELLO) {
319 $message = TLSProxy::ServerHello->new(
327 } elsif ($mt == MT_ENCRYPTED_EXTENSIONS) {
328 $message = TLSProxy::EncryptedExtensions->new(
336 } elsif ($mt == MT_CERTIFICATE) {
337 $message = TLSProxy::Certificate->new(
345 } elsif ($mt == MT_CERTIFICATE_VERIFY) {
346 $message = TLSProxy::CertificateVerify->new(
354 } elsif ($mt == MT_SERVER_KEY_EXCHANGE) {
355 $message = TLSProxy::ServerKeyExchange->new(
363 } elsif ($mt == MT_NEW_SESSION_TICKET) {
364 $message = TLSProxy::NewSessionTicket->new(
373 #Unknown message type
374 $message = TLSProxy::Message->new(
400 return !$success && $end;
416 $message_frag_lens) = @_;
423 startoffset => $startoffset,
424 message_frag_lens => $message_frag_lens
427 return bless $self, $class;
434 $ciphersuite = shift;
439 #Update all the underlying records with the modified data from this message
440 #Note: Only supports re-encrypting for TLSv1.3
446 my $numrecs = $#{$self->records};
448 $self->set_message_contents();
453 $lenlo = length($self->data) & 0xff;
454 $lenhi = length($self->data) >> 8;
455 $msgdata = pack('CnC', $self->mt, $lenhi, $lenlo).$self->data;
458 #The message is fully contained within one record
459 my ($rec) = @{$self->records};
460 my $recdata = $rec->decrypt_data;
464 # We use empty message_frag_lens to indicates that pre-repacking,
465 # the message wasn't present. The first fragment length doesn't include
466 # the TLS header, so we need to check and compute the right length.
467 if (@{$self->message_frag_lens}) {
468 $old_length = ${$self->message_frag_lens}[0] +
469 TLS_MESSAGE_HEADER_LENGTH;
474 my $prefix = substr($recdata, 0, $self->startoffset);
475 my $suffix = substr($recdata, $self->startoffset + $old_length);
477 $rec->decrypt_data($prefix.($msgdata).($suffix));
478 # TODO(openssl-team): don't keep explicit lengths.
479 # (If a length override is ever needed to construct invalid packets,
480 # use an explicit override field instead.)
481 $rec->decrypt_len(length($rec->decrypt_data));
482 $rec->len($rec->len + length($msgdata) - $old_length);
483 # Only support re-encryption for TLSv1.3.
484 if (TLSProxy::Proxy->is_tls13() && $rec->encrypted()) {
485 #Add content type (1 byte) and 16 tag bytes
486 $rec->data($rec->decrypt_data
487 .pack("C", TLSProxy::Record::RT_HANDSHAKE).("\0"x16));
489 $rec->data($rec->decrypt_data);
492 #Update the fragment len in case we changed it above
493 ${$self->message_frag_lens}[0] = length($msgdata)
494 - TLS_MESSAGE_HEADER_LENGTH;
498 #Note we don't currently support changing a fragmented message length
501 foreach my $rec (@{$self->records}) {
502 my $recdata = $rec->decrypt_data;
504 #This is the first record
505 my $remainlen = length($recdata) - $self->startoffset;
506 $rec->data(substr($recdata, 0, $self->startoffset)
507 .substr(($msgdata), 0, $remainlen));
508 $datadone += $remainlen;
509 } elsif ($recctr + 1 == $numrecs) {
510 #This is the last record
511 $rec->data(substr($msgdata, $datadone));
513 #This is a middle record
514 $rec->data(substr($msgdata, $datadone, length($rec->data)));
515 $datadone += length($rec->data);
521 #To be overridden by sub-classes
522 sub set_message_contents
530 return $self->{server};
533 #Read/write accessors
546 $self->{data} = shift;
548 return $self->{data};
554 $self->{records} = shift;
556 return $self->{records};
562 $self->{startoffset} = shift;
564 return $self->{startoffset};
566 sub message_frag_lens
570 $self->{message_frag_lens} = shift;
572 return $self->{message_frag_lens};
577 return TLS_MESSAGE_HEADER_LENGTH + length($self->data);
583 $successondata = shift;
585 return $successondata;