| 
									
										
										
										
											2018-09-11 20:22:14 +08:00
										 |  |  | # Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2018-12-06 20:03:50 +08:00
										 |  |  | # Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-04-20 22:20:59 +08:00
										 |  |  | # this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | # in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | # https://www.openssl.org/source/license.html | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | use strict; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package TLSProxy::ServerHello; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-22 05:43:29 +08:00
										 |  |  | use vars '@ISA'; | 
					
						
							|  |  |  | push @ISA, 'TLSProxy::Message'; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-13 22:40:46 +08:00
										 |  |  | my $hrrrandom = pack("C*", 0xCF, 0x21, 0xAD, 0x74, 0xE5, 0x9A, 0x61, 0x11, 0xBE, | 
					
						
							|  |  |  |                            0x1D, 0x8C, 0x02, 0x1E, 0x65, 0xB8, 0x91, 0xC2, 0xA2, | 
					
						
							|  |  |  |                            0x11, 0x16, 0x7A, 0xBB, 0x8C, 0x5E, 0x07, 0x9E, 0x09, | 
					
						
							|  |  |  |                            0xE2, 0xC8, 0xA8, 0x33, 0x9C); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | sub new | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $class = shift; | 
					
						
							|  |  |  |     my ($server, | 
					
						
							|  |  |  |         $data, | 
					
						
							|  |  |  |         $records, | 
					
						
							|  |  |  |         $startoffset, | 
					
						
							|  |  |  |         $message_frag_lens) = @_; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     my $self = $class->SUPER::new( | 
					
						
							|  |  |  |         $server, | 
					
						
							|  |  |  |         TLSProxy::Message::MT_SERVER_HELLO, | 
					
						
							|  |  |  |         $data, | 
					
						
							|  |  |  |         $records, | 
					
						
							|  |  |  |         $startoffset, | 
					
						
							|  |  |  |         $message_frag_lens); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $self->{server_version} = 0; | 
					
						
							|  |  |  |     $self->{random} = []; | 
					
						
							|  |  |  |     $self->{session_id_len} = 0; | 
					
						
							|  |  |  |     $self->{session} = ""; | 
					
						
							|  |  |  |     $self->{ciphersuite} = 0; | 
					
						
							|  |  |  |     $self->{comp_meth} = 0; | 
					
						
							| 
									
										
										
										
											2016-02-20 00:24:44 +08:00
										 |  |  |     $self->{extension_data} = ""; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return $self; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sub parse | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     my $ptr = 2; | 
					
						
							|  |  |  |     my ($server_version) = unpack('n', $self->data); | 
					
						
							| 
									
										
										
										
											2017-12-05 18:16:25 +08:00
										 |  |  |     my $neg_version = $server_version; | 
					
						
							| 
									
										
										
										
											2016-11-07 21:50:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     my $random = substr($self->data, $ptr, 32); | 
					
						
							|  |  |  |     $ptr += 32; | 
					
						
							| 
									
										
										
										
											2016-11-07 21:50:43 +08:00
										 |  |  |     my $session_id_len = 0; | 
					
						
							|  |  |  |     my $session = ""; | 
					
						
							| 
									
										
										
										
											2017-11-04 00:38:48 +08:00
										 |  |  |     $session_id_len = unpack('C', substr($self->data, $ptr)); | 
					
						
							|  |  |  |     $ptr++; | 
					
						
							|  |  |  |     $session = substr($self->data, $ptr, $session_id_len); | 
					
						
							|  |  |  |     $ptr += $session_id_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     my $ciphersuite = unpack('n', substr($self->data, $ptr)); | 
					
						
							|  |  |  |     $ptr += 2; | 
					
						
							| 
									
										
										
										
											2016-11-07 21:50:43 +08:00
										 |  |  |     my $comp_meth = 0; | 
					
						
							| 
									
										
										
										
											2017-11-04 00:38:48 +08:00
										 |  |  |     $comp_meth = unpack('C', substr($self->data, $ptr)); | 
					
						
							|  |  |  |     $ptr++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     my $extensions_len = unpack('n', substr($self->data, $ptr)); | 
					
						
							| 
									
										
										
										
											2016-08-03 00:24:54 +08:00
										 |  |  |     if (!defined $extensions_len) { | 
					
						
							|  |  |  |         $extensions_len = 0; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         $ptr += 2; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     #For now we just deal with this as a block of data. In the future we will | 
					
						
							|  |  |  |     #want to parse this | 
					
						
							| 
									
										
										
										
											2016-08-03 00:24:54 +08:00
										 |  |  |     my $extension_data; | 
					
						
							|  |  |  |     if ($extensions_len != 0) { | 
					
						
							|  |  |  |         $extension_data = substr($self->data, $ptr); | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2016-08-03 00:24:54 +08:00
										 |  |  |         if (length($extension_data) != $extensions_len) { | 
					
						
							|  |  |  |             die "Invalid extension length\n"; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (length($self->data) != $ptr) { | 
					
						
							|  |  |  |             die "Invalid extension length\n"; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $extension_data = ""; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     my %extensions = (); | 
					
						
							|  |  |  |     while (length($extension_data) >= 4) { | 
					
						
							|  |  |  |         my ($type, $size) = unpack("nn", $extension_data); | 
					
						
							|  |  |  |         my $extdata = substr($extension_data, 4, $size); | 
					
						
							|  |  |  |         $extension_data = substr($extension_data, 4 + $size); | 
					
						
							|  |  |  |         $extensions{$type} = $extdata; | 
					
						
							| 
									
										
										
										
											2017-11-04 00:38:48 +08:00
										 |  |  |         if ($type == TLSProxy::Message::EXT_SUPPORTED_VERSIONS) { | 
					
						
							| 
									
										
										
										
											2017-12-05 18:16:25 +08:00
										 |  |  |             $neg_version = unpack('n', $extdata); | 
					
						
							| 
									
										
										
										
											2017-11-04 00:38:48 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-13 22:40:46 +08:00
										 |  |  |     if ($random eq $hrrrandom) { | 
					
						
							|  |  |  |         TLSProxy::Proxy->is_tls13(1); | 
					
						
							| 
									
										
										
										
											2018-07-18 23:05:49 +08:00
										 |  |  |     } elsif ($neg_version == TLSProxy::Record::VERS_TLS_1_3) { | 
					
						
							| 
									
										
										
										
											2017-11-04 00:38:48 +08:00
										 |  |  |         TLSProxy::Proxy->is_tls13(1); | 
					
						
							| 
									
										
										
										
											2017-11-13 22:40:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         TLSProxy::Record->server_encrypting(1); | 
					
						
							|  |  |  |         TLSProxy::Record->client_encrypting(1); | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $self->server_version($server_version); | 
					
						
							|  |  |  |     $self->random($random); | 
					
						
							|  |  |  |     $self->session_id_len($session_id_len); | 
					
						
							|  |  |  |     $self->session($session); | 
					
						
							|  |  |  |     $self->ciphersuite($ciphersuite); | 
					
						
							| 
									
										
										
										
											2016-12-28 23:01:57 +08:00
										 |  |  |     TLSProxy::Proxy->ciphersuite($ciphersuite); | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     $self->comp_meth($comp_meth); | 
					
						
							|  |  |  |     $self->extension_data(\%extensions); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $self->process_data(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 00:22:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     print "    Server Version:".$server_version."\n"; | 
					
						
							|  |  |  |     print "    Session ID Len:".$session_id_len."\n"; | 
					
						
							|  |  |  |     print "    Ciphersuite:".$ciphersuite."\n"; | 
					
						
							|  |  |  |     print "    Compression Method:".$comp_meth."\n"; | 
					
						
							|  |  |  |     print "    Extensions Len:".$extensions_len."\n"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #Perform any actions necessary based on the data we've seen | 
					
						
							|  |  |  | sub process_data | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     TLSProxy::Message->ciphersuite($self->ciphersuite); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #Reconstruct the on-the-wire message data following changes | 
					
						
							|  |  |  | sub set_message_contents | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     my $data; | 
					
						
							| 
									
										
										
										
											2015-09-16 23:47:55 +08:00
										 |  |  |     my $extensions = ""; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $data = pack('n', $self->server_version); | 
					
						
							|  |  |  |     $data .= $self->random; | 
					
						
							| 
									
										
										
										
											2017-11-04 00:38:48 +08:00
										 |  |  |     $data .= pack('C', $self->session_id_len); | 
					
						
							|  |  |  |     $data .= $self->session; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     $data .= pack('n', $self->ciphersuite); | 
					
						
							| 
									
										
										
										
											2017-11-04 00:38:48 +08:00
										 |  |  |     $data .= pack('C', $self->comp_meth); | 
					
						
							| 
									
										
										
										
											2015-09-16 23:47:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     foreach my $key (keys %{$self->extension_data}) { | 
					
						
							|  |  |  |         my $extdata = ${$self->extension_data}{$key}; | 
					
						
							| 
									
										
										
										
											2015-09-16 23:47:55 +08:00
										 |  |  |         $extensions .= pack("n", $key); | 
					
						
							|  |  |  |         $extensions .= pack("n", length($extdata)); | 
					
						
							|  |  |  |         $extensions .= $extdata; | 
					
						
							| 
									
										
										
										
											2019-01-05 00:55:15 +08:00
										 |  |  |         if ($key == $self->dupext) { | 
					
						
							| 
									
										
										
										
											2016-02-20 00:24:44 +08:00
										 |  |  |           $extensions .= pack("n", $key); | 
					
						
							|  |  |  |           $extensions .= pack("n", length($extdata)); | 
					
						
							|  |  |  |           $extensions .= $extdata; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-16 23:47:55 +08:00
										 |  |  |     $data .= pack('n', length($extensions)); | 
					
						
							|  |  |  |     $data .= $extensions; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     $self->data($data); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #Read/write accessors | 
					
						
							|  |  |  | sub server_version | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     if (@_) { | 
					
						
							| 
									
										
										
										
											2016-11-07 21:50:43 +08:00
										 |  |  |       $self->{server_version} = shift; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-11-07 21:50:43 +08:00
										 |  |  |     return $self->{server_version}; | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | } | 
					
						
							|  |  |  | sub random | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     if (@_) { | 
					
						
							|  |  |  |       $self->{random} = shift; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return $self->{random}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | sub session_id_len | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     if (@_) { | 
					
						
							|  |  |  |       $self->{session_id_len} = shift; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return $self->{session_id_len}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | sub session | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     if (@_) { | 
					
						
							|  |  |  |       $self->{session} = shift; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return $self->{session}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | sub ciphersuite | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     if (@_) { | 
					
						
							|  |  |  |       $self->{ciphersuite} = shift; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return $self->{ciphersuite}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | sub comp_meth | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     if (@_) { | 
					
						
							|  |  |  |       $self->{comp_meth} = shift; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return $self->{comp_meth}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | sub extension_data | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my $self = shift; | 
					
						
							|  |  |  |     if (@_) { | 
					
						
							|  |  |  |       $self->{extension_data} = shift; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return $self->{extension_data}; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-16 23:47:55 +08:00
										 |  |  | sub set_extension | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my ($self, $ext_type, $ext_data) = @_; | 
					
						
							|  |  |  |     $self->{extension_data}{$ext_type} = $ext_data; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-12-08 10:07:43 +08:00
										 |  |  | sub delete_extension | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     my ($self, $ext_type) = @_; | 
					
						
							|  |  |  |     delete $self->{extension_data}{$ext_type}; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-08-07 21:38:21 +08:00
										 |  |  | 1; |