sl@0
|
1 |
/* ssl/s23_srvr.c */
|
sl@0
|
2 |
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* This package is an SSL implementation written
|
sl@0
|
6 |
* by Eric Young (eay@cryptsoft.com).
|
sl@0
|
7 |
* The implementation was written so as to conform with Netscapes SSL.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is free for commercial and non-commercial use as long as
|
sl@0
|
10 |
* the following conditions are aheared to. The following conditions
|
sl@0
|
11 |
* apply to all code found in this distribution, be it the RC4, RSA,
|
sl@0
|
12 |
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
sl@0
|
13 |
* included with this distribution is covered by the same copyright terms
|
sl@0
|
14 |
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* Copyright remains Eric Young's, and as such any Copyright notices in
|
sl@0
|
17 |
* the code are not to be removed.
|
sl@0
|
18 |
* If this package is used in a product, Eric Young should be given attribution
|
sl@0
|
19 |
* as the author of the parts of the library used.
|
sl@0
|
20 |
* This can be in the form of a textual message at program startup or
|
sl@0
|
21 |
* in documentation (online or textual) provided with the package.
|
sl@0
|
22 |
*
|
sl@0
|
23 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
24 |
* modification, are permitted provided that the following conditions
|
sl@0
|
25 |
* are met:
|
sl@0
|
26 |
* 1. Redistributions of source code must retain the copyright
|
sl@0
|
27 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
28 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
29 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
30 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
31 |
* 3. All advertising materials mentioning features or use of this software
|
sl@0
|
32 |
* must display the following acknowledgement:
|
sl@0
|
33 |
* "This product includes cryptographic software written by
|
sl@0
|
34 |
* Eric Young (eay@cryptsoft.com)"
|
sl@0
|
35 |
* The word 'cryptographic' can be left out if the rouines from the library
|
sl@0
|
36 |
* being used are not cryptographic related :-).
|
sl@0
|
37 |
* 4. If you include any Windows specific code (or a derivative thereof) from
|
sl@0
|
38 |
* the apps directory (application code) you must include an acknowledgement:
|
sl@0
|
39 |
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
sl@0
|
42 |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
43 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
44 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
sl@0
|
45 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
46 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
sl@0
|
47 |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
48 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
sl@0
|
49 |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
sl@0
|
50 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
sl@0
|
51 |
* SUCH DAMAGE.
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* The licence and distribution terms for any publically available version or
|
sl@0
|
54 |
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
sl@0
|
55 |
* copied and put under another distribution licence
|
sl@0
|
56 |
* [including the GNU Public Licence.]
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
/* ====================================================================
|
sl@0
|
59 |
* Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
|
sl@0
|
60 |
*
|
sl@0
|
61 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
62 |
* modification, are permitted provided that the following conditions
|
sl@0
|
63 |
* are met:
|
sl@0
|
64 |
*
|
sl@0
|
65 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
66 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
67 |
*
|
sl@0
|
68 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
69 |
* notice, this list of conditions and the following disclaimer in
|
sl@0
|
70 |
* the documentation and/or other materials provided with the
|
sl@0
|
71 |
* distribution.
|
sl@0
|
72 |
*
|
sl@0
|
73 |
* 3. All advertising materials mentioning features or use of this
|
sl@0
|
74 |
* software must display the following acknowledgment:
|
sl@0
|
75 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
76 |
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
sl@0
|
77 |
*
|
sl@0
|
78 |
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
sl@0
|
79 |
* endorse or promote products derived from this software without
|
sl@0
|
80 |
* prior written permission. For written permission, please contact
|
sl@0
|
81 |
* openssl-core@openssl.org.
|
sl@0
|
82 |
*
|
sl@0
|
83 |
* 5. Products derived from this software may not be called "OpenSSL"
|
sl@0
|
84 |
* nor may "OpenSSL" appear in their names without prior written
|
sl@0
|
85 |
* permission of the OpenSSL Project.
|
sl@0
|
86 |
*
|
sl@0
|
87 |
* 6. Redistributions of any form whatsoever must retain the following
|
sl@0
|
88 |
* acknowledgment:
|
sl@0
|
89 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
90 |
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
sl@0
|
91 |
*
|
sl@0
|
92 |
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
sl@0
|
93 |
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
94 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
sl@0
|
95 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
sl@0
|
96 |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
sl@0
|
97 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
sl@0
|
98 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
sl@0
|
99 |
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
100 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
101 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
sl@0
|
102 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
sl@0
|
103 |
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
104 |
* ====================================================================
|
sl@0
|
105 |
*
|
sl@0
|
106 |
* This product includes cryptographic software written by Eric Young
|
sl@0
|
107 |
* (eay@cryptsoft.com). This product includes software written by Tim
|
sl@0
|
108 |
* Hudson (tjh@cryptsoft.com).
|
sl@0
|
109 |
*
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
/*
|
sl@0
|
112 |
© Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
|
sl@0
|
115 |
#include <stdio.h>
|
sl@0
|
116 |
#include "ssl_locl.h"
|
sl@0
|
117 |
#include <openssl/buffer.h>
|
sl@0
|
118 |
#include <openssl/rand.h>
|
sl@0
|
119 |
#include <openssl/objects.h>
|
sl@0
|
120 |
#include <openssl/evp.h>
|
sl@0
|
121 |
|
sl@0
|
122 |
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
|
sl@0
|
123 |
#include "libssl_wsd.h"
|
sl@0
|
124 |
#endif
|
sl@0
|
125 |
|
sl@0
|
126 |
#ifdef EMULATOR
|
sl@0
|
127 |
|
sl@0
|
128 |
GET_STATIC_VAR_FROM_TLS(SSLv23_server_method_data,s23_srvr,SSL_METHOD)
|
sl@0
|
129 |
|
sl@0
|
130 |
#define SSLv23_server_method_data (*GET_WSD_VAR_NAME(SSLv23_server_method_data,s23_srvr,s)())
|
sl@0
|
131 |
|
sl@0
|
132 |
#endif
|
sl@0
|
133 |
|
sl@0
|
134 |
static SSL_METHOD *ssl23_get_server_method(int ver);
|
sl@0
|
135 |
int ssl23_get_client_hello(SSL *s);
|
sl@0
|
136 |
static SSL_METHOD *ssl23_get_server_method(int ver)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
#ifndef OPENSSL_NO_SSL2
|
sl@0
|
139 |
if (ver == SSL2_VERSION)
|
sl@0
|
140 |
return(SSLv2_server_method());
|
sl@0
|
141 |
#endif
|
sl@0
|
142 |
if (ver == SSL3_VERSION)
|
sl@0
|
143 |
return(SSLv3_server_method());
|
sl@0
|
144 |
else if (ver == TLS1_VERSION)
|
sl@0
|
145 |
return(TLSv1_server_method());
|
sl@0
|
146 |
else
|
sl@0
|
147 |
return(NULL);
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
EXPORT_C IMPLEMENT_ssl23_meth_func(SSLv23_server_method,
|
sl@0
|
151 |
ssl23_accept,
|
sl@0
|
152 |
ssl_undefined_function,
|
sl@0
|
153 |
ssl23_get_server_method)
|
sl@0
|
154 |
|
sl@0
|
155 |
int ssl23_accept(SSL *s)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
BUF_MEM *buf;
|
sl@0
|
158 |
unsigned long Time=(unsigned long)time(NULL);
|
sl@0
|
159 |
void (*cb)(const SSL *ssl,int type,int val)=NULL;
|
sl@0
|
160 |
int ret= -1;
|
sl@0
|
161 |
int new_state,state;
|
sl@0
|
162 |
|
sl@0
|
163 |
RAND_add(&Time,sizeof(Time),0);
|
sl@0
|
164 |
ERR_clear_error();
|
sl@0
|
165 |
clear_sys_error();
|
sl@0
|
166 |
|
sl@0
|
167 |
if (s->info_callback != NULL)
|
sl@0
|
168 |
cb=s->info_callback;
|
sl@0
|
169 |
else if (s->ctx->info_callback != NULL)
|
sl@0
|
170 |
cb=s->ctx->info_callback;
|
sl@0
|
171 |
|
sl@0
|
172 |
s->in_handshake++;
|
sl@0
|
173 |
if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
|
sl@0
|
174 |
|
sl@0
|
175 |
for (;;)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
state=s->state;
|
sl@0
|
178 |
|
sl@0
|
179 |
switch(s->state)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
case SSL_ST_BEFORE:
|
sl@0
|
182 |
case SSL_ST_ACCEPT:
|
sl@0
|
183 |
case SSL_ST_BEFORE|SSL_ST_ACCEPT:
|
sl@0
|
184 |
case SSL_ST_OK|SSL_ST_ACCEPT:
|
sl@0
|
185 |
|
sl@0
|
186 |
s->server=1;
|
sl@0
|
187 |
if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
|
sl@0
|
188 |
|
sl@0
|
189 |
/* s->version=SSL3_VERSION; */
|
sl@0
|
190 |
s->type=SSL_ST_ACCEPT;
|
sl@0
|
191 |
|
sl@0
|
192 |
if (s->init_buf == NULL)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
if ((buf=BUF_MEM_new()) == NULL)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
ret= -1;
|
sl@0
|
197 |
goto end;
|
sl@0
|
198 |
}
|
sl@0
|
199 |
if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
|
sl@0
|
200 |
{
|
sl@0
|
201 |
ret= -1;
|
sl@0
|
202 |
goto end;
|
sl@0
|
203 |
}
|
sl@0
|
204 |
s->init_buf=buf;
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
ssl3_init_finished_mac(s);
|
sl@0
|
208 |
|
sl@0
|
209 |
s->state=SSL23_ST_SR_CLNT_HELLO_A;
|
sl@0
|
210 |
s->ctx->stats.sess_accept++;
|
sl@0
|
211 |
s->init_num=0;
|
sl@0
|
212 |
break;
|
sl@0
|
213 |
|
sl@0
|
214 |
case SSL23_ST_SR_CLNT_HELLO_A:
|
sl@0
|
215 |
case SSL23_ST_SR_CLNT_HELLO_B:
|
sl@0
|
216 |
|
sl@0
|
217 |
s->shutdown=0;
|
sl@0
|
218 |
ret=ssl23_get_client_hello(s);
|
sl@0
|
219 |
if (ret >= 0) cb=NULL;
|
sl@0
|
220 |
goto end;
|
sl@0
|
221 |
/* break; */
|
sl@0
|
222 |
|
sl@0
|
223 |
default:
|
sl@0
|
224 |
SSLerr(SSL_F_SSL23_ACCEPT,SSL_R_UNKNOWN_STATE);
|
sl@0
|
225 |
ret= -1;
|
sl@0
|
226 |
goto end;
|
sl@0
|
227 |
/* break; */
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
if ((cb != NULL) && (s->state != state))
|
sl@0
|
231 |
{
|
sl@0
|
232 |
new_state=s->state;
|
sl@0
|
233 |
s->state=state;
|
sl@0
|
234 |
cb(s,SSL_CB_ACCEPT_LOOP,1);
|
sl@0
|
235 |
s->state=new_state;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
}
|
sl@0
|
238 |
end:
|
sl@0
|
239 |
s->in_handshake--;
|
sl@0
|
240 |
if (cb != NULL)
|
sl@0
|
241 |
cb(s,SSL_CB_ACCEPT_EXIT,ret);
|
sl@0
|
242 |
return(ret);
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
|
sl@0
|
246 |
int ssl23_get_client_hello(SSL *s)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
char buf_space[11]; /* Request this many bytes in initial read.
|
sl@0
|
249 |
* We can detect SSL 3.0/TLS 1.0 Client Hellos
|
sl@0
|
250 |
* ('type == 3') correctly only when the following
|
sl@0
|
251 |
* is in a single record, which is not guaranteed by
|
sl@0
|
252 |
* the protocol specification:
|
sl@0
|
253 |
* Byte Content
|
sl@0
|
254 |
* 0 type \
|
sl@0
|
255 |
* 1/2 version > record header
|
sl@0
|
256 |
* 3/4 length /
|
sl@0
|
257 |
* 5 msg_type \
|
sl@0
|
258 |
* 6-8 length > Client Hello message
|
sl@0
|
259 |
* 9/10 client_version /
|
sl@0
|
260 |
*/
|
sl@0
|
261 |
char *buf= &(buf_space[0]);
|
sl@0
|
262 |
unsigned char *p,*d,*d_len,*dd;
|
sl@0
|
263 |
unsigned int i;
|
sl@0
|
264 |
unsigned int csl,sil,cl;
|
sl@0
|
265 |
int n=0,j;
|
sl@0
|
266 |
int type=0;
|
sl@0
|
267 |
int v[2];
|
sl@0
|
268 |
|
sl@0
|
269 |
if (s->state == SSL23_ST_SR_CLNT_HELLO_A)
|
sl@0
|
270 |
{
|
sl@0
|
271 |
/* read the initial header */
|
sl@0
|
272 |
v[0]=v[1]=0;
|
sl@0
|
273 |
|
sl@0
|
274 |
if (!ssl3_setup_buffers(s)) goto err;
|
sl@0
|
275 |
|
sl@0
|
276 |
n=ssl23_read_bytes(s, sizeof buf_space);
|
sl@0
|
277 |
if (n != sizeof buf_space) return(n); /* n == -1 || n == 0 */
|
sl@0
|
278 |
|
sl@0
|
279 |
p=s->packet;
|
sl@0
|
280 |
|
sl@0
|
281 |
memcpy(buf,p,n);
|
sl@0
|
282 |
|
sl@0
|
283 |
if ((p[0] & 0x80) && (p[2] == SSL2_MT_CLIENT_HELLO))
|
sl@0
|
284 |
{
|
sl@0
|
285 |
/*
|
sl@0
|
286 |
* SSLv2 header
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
if ((p[3] == 0x00) && (p[4] == 0x02))
|
sl@0
|
289 |
{
|
sl@0
|
290 |
v[0]=p[3]; v[1]=p[4];
|
sl@0
|
291 |
/* SSLv2 */
|
sl@0
|
292 |
if (!(s->options & SSL_OP_NO_SSLv2))
|
sl@0
|
293 |
type=1;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
else if (p[3] == SSL3_VERSION_MAJOR)
|
sl@0
|
296 |
{
|
sl@0
|
297 |
v[0]=p[3]; v[1]=p[4];
|
sl@0
|
298 |
/* SSLv3/TLSv1 */
|
sl@0
|
299 |
if (p[4] >= TLS1_VERSION_MINOR)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
if (!(s->options & SSL_OP_NO_TLSv1))
|
sl@0
|
302 |
{
|
sl@0
|
303 |
s->version=TLS1_VERSION;
|
sl@0
|
304 |
/* type=2; */ /* done later to survive restarts */
|
sl@0
|
305 |
s->state=SSL23_ST_SR_CLNT_HELLO_B;
|
sl@0
|
306 |
}
|
sl@0
|
307 |
else if (!(s->options & SSL_OP_NO_SSLv3))
|
sl@0
|
308 |
{
|
sl@0
|
309 |
s->version=SSL3_VERSION;
|
sl@0
|
310 |
/* type=2; */
|
sl@0
|
311 |
s->state=SSL23_ST_SR_CLNT_HELLO_B;
|
sl@0
|
312 |
}
|
sl@0
|
313 |
else if (!(s->options & SSL_OP_NO_SSLv2))
|
sl@0
|
314 |
{
|
sl@0
|
315 |
type=1;
|
sl@0
|
316 |
}
|
sl@0
|
317 |
}
|
sl@0
|
318 |
else if (!(s->options & SSL_OP_NO_SSLv3))
|
sl@0
|
319 |
{
|
sl@0
|
320 |
s->version=SSL3_VERSION;
|
sl@0
|
321 |
/* type=2; */
|
sl@0
|
322 |
s->state=SSL23_ST_SR_CLNT_HELLO_B;
|
sl@0
|
323 |
}
|
sl@0
|
324 |
else if (!(s->options & SSL_OP_NO_SSLv2))
|
sl@0
|
325 |
type=1;
|
sl@0
|
326 |
|
sl@0
|
327 |
}
|
sl@0
|
328 |
}
|
sl@0
|
329 |
else if ((p[0] == SSL3_RT_HANDSHAKE) &&
|
sl@0
|
330 |
(p[1] == SSL3_VERSION_MAJOR) &&
|
sl@0
|
331 |
(p[5] == SSL3_MT_CLIENT_HELLO) &&
|
sl@0
|
332 |
((p[3] == 0 && p[4] < 5 /* silly record length? */)
|
sl@0
|
333 |
|| (p[9] == p[1])))
|
sl@0
|
334 |
{
|
sl@0
|
335 |
/*
|
sl@0
|
336 |
* SSLv3 or tls1 header
|
sl@0
|
337 |
*/
|
sl@0
|
338 |
|
sl@0
|
339 |
v[0]=p[1]; /* major version (= SSL3_VERSION_MAJOR) */
|
sl@0
|
340 |
/* We must look at client_version inside the Client Hello message
|
sl@0
|
341 |
* to get the correct minor version.
|
sl@0
|
342 |
* However if we have only a pathologically small fragment of the
|
sl@0
|
343 |
* Client Hello message, this would be difficult, and we'd have
|
sl@0
|
344 |
* to read more records to find out.
|
sl@0
|
345 |
* No known SSL 3.0 client fragments ClientHello like this,
|
sl@0
|
346 |
* so we simply assume TLS 1.0 to avoid protocol version downgrade
|
sl@0
|
347 |
* attacks. */
|
sl@0
|
348 |
if (p[3] == 0 && p[4] < 6)
|
sl@0
|
349 |
{
|
sl@0
|
350 |
#if 0
|
sl@0
|
351 |
SSLerr(SSL_F_SSL23_GET_CLIENT_HELLO,SSL_R_RECORD_TOO_SMALL);
|
sl@0
|
352 |
goto err;
|
sl@0
|
353 |
#else
|
sl@0
|
354 |
v[1] = TLS1_VERSION_MINOR;
|
sl@0
|
355 |
#endif
|
sl@0
|
356 |
}
|
sl@0
|
357 |
else
|
sl@0
|
358 |
v[1]=p[10]; /* minor version according to client_version */
|
sl@0
|
359 |
if (v[1] >= TLS1_VERSION_MINOR)
|
sl@0
|
360 |
{
|
sl@0
|
361 |
if (!(s->options & SSL_OP_NO_TLSv1))
|
sl@0
|
362 |
{
|
sl@0
|
363 |
s->version=TLS1_VERSION;
|
sl@0
|
364 |
type=3;
|
sl@0
|
365 |
}
|
sl@0
|
366 |
else if (!(s->options & SSL_OP_NO_SSLv3))
|
sl@0
|
367 |
{
|
sl@0
|
368 |
s->version=SSL3_VERSION;
|
sl@0
|
369 |
type=3;
|
sl@0
|
370 |
}
|
sl@0
|
371 |
}
|
sl@0
|
372 |
else
|
sl@0
|
373 |
{
|
sl@0
|
374 |
/* client requests SSL 3.0 */
|
sl@0
|
375 |
if (!(s->options & SSL_OP_NO_SSLv3))
|
sl@0
|
376 |
{
|
sl@0
|
377 |
s->version=SSL3_VERSION;
|
sl@0
|
378 |
type=3;
|
sl@0
|
379 |
}
|
sl@0
|
380 |
else if (!(s->options & SSL_OP_NO_TLSv1))
|
sl@0
|
381 |
{
|
sl@0
|
382 |
/* we won't be able to use TLS of course,
|
sl@0
|
383 |
* but this will send an appropriate alert */
|
sl@0
|
384 |
s->version=TLS1_VERSION;
|
sl@0
|
385 |
type=3;
|
sl@0
|
386 |
}
|
sl@0
|
387 |
}
|
sl@0
|
388 |
}
|
sl@0
|
389 |
else if ((strncmp("GET ", (char *)p,4) == 0) ||
|
sl@0
|
390 |
(strncmp("POST ",(char *)p,5) == 0) ||
|
sl@0
|
391 |
(strncmp("HEAD ",(char *)p,5) == 0) ||
|
sl@0
|
392 |
(strncmp("PUT ", (char *)p,4) == 0))
|
sl@0
|
393 |
{
|
sl@0
|
394 |
SSLerr(SSL_F_SSL23_GET_CLIENT_HELLO,SSL_R_HTTP_REQUEST);
|
sl@0
|
395 |
goto err;
|
sl@0
|
396 |
}
|
sl@0
|
397 |
else if (strncmp("CONNECT",(char *)p,7) == 0)
|
sl@0
|
398 |
{
|
sl@0
|
399 |
SSLerr(SSL_F_SSL23_GET_CLIENT_HELLO,SSL_R_HTTPS_PROXY_REQUEST);
|
sl@0
|
400 |
goto err;
|
sl@0
|
401 |
}
|
sl@0
|
402 |
}
|
sl@0
|
403 |
|
sl@0
|
404 |
if (s->state == SSL23_ST_SR_CLNT_HELLO_B)
|
sl@0
|
405 |
{
|
sl@0
|
406 |
/* we have SSLv3/TLSv1 in an SSLv2 header
|
sl@0
|
407 |
* (other cases skip this state) */
|
sl@0
|
408 |
|
sl@0
|
409 |
type=2;
|
sl@0
|
410 |
p=s->packet;
|
sl@0
|
411 |
v[0] = p[3]; /* == SSL3_VERSION_MAJOR */
|
sl@0
|
412 |
v[1] = p[4];
|
sl@0
|
413 |
|
sl@0
|
414 |
n=((p[0]&0x7f)<<8)|p[1];
|
sl@0
|
415 |
if (n > (1024*4))
|
sl@0
|
416 |
{
|
sl@0
|
417 |
SSLerr(SSL_F_SSL23_GET_CLIENT_HELLO,SSL_R_RECORD_TOO_LARGE);
|
sl@0
|
418 |
goto err;
|
sl@0
|
419 |
}
|
sl@0
|
420 |
|
sl@0
|
421 |
j=ssl23_read_bytes(s,n+2);
|
sl@0
|
422 |
if (j <= 0) return(j);
|
sl@0
|
423 |
|
sl@0
|
424 |
ssl3_finish_mac(s, s->packet+2, s->packet_length-2);
|
sl@0
|
425 |
if (s->msg_callback)
|
sl@0
|
426 |
s->msg_callback(0, SSL2_VERSION, 0, s->packet+2, s->packet_length-2, s, s->msg_callback_arg); /* CLIENT-HELLO */
|
sl@0
|
427 |
|
sl@0
|
428 |
p=s->packet;
|
sl@0
|
429 |
p+=5;
|
sl@0
|
430 |
n2s(p,csl);
|
sl@0
|
431 |
n2s(p,sil);
|
sl@0
|
432 |
n2s(p,cl);
|
sl@0
|
433 |
d=(unsigned char *)s->init_buf->data;
|
sl@0
|
434 |
if ((csl+sil+cl+11) != s->packet_length)
|
sl@0
|
435 |
{
|
sl@0
|
436 |
SSLerr(SSL_F_SSL23_GET_CLIENT_HELLO,SSL_R_RECORD_LENGTH_MISMATCH);
|
sl@0
|
437 |
goto err;
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
/* record header: msg_type ... */
|
sl@0
|
441 |
*(d++) = SSL3_MT_CLIENT_HELLO;
|
sl@0
|
442 |
/* ... and length (actual value will be written later) */
|
sl@0
|
443 |
d_len = d;
|
sl@0
|
444 |
d += 3;
|
sl@0
|
445 |
|
sl@0
|
446 |
/* client_version */
|
sl@0
|
447 |
*(d++) = SSL3_VERSION_MAJOR; /* == v[0] */
|
sl@0
|
448 |
*(d++) = v[1];
|
sl@0
|
449 |
|
sl@0
|
450 |
/* lets populate the random area */
|
sl@0
|
451 |
/* get the challenge_length */
|
sl@0
|
452 |
i=(cl > SSL3_RANDOM_SIZE)?SSL3_RANDOM_SIZE:cl;
|
sl@0
|
453 |
memset(d,0,SSL3_RANDOM_SIZE);
|
sl@0
|
454 |
memcpy(&(d[SSL3_RANDOM_SIZE-i]),&(p[csl+sil]),i);
|
sl@0
|
455 |
d+=SSL3_RANDOM_SIZE;
|
sl@0
|
456 |
|
sl@0
|
457 |
/* no session-id reuse */
|
sl@0
|
458 |
*(d++)=0;
|
sl@0
|
459 |
|
sl@0
|
460 |
/* ciphers */
|
sl@0
|
461 |
j=0;
|
sl@0
|
462 |
dd=d;
|
sl@0
|
463 |
d+=2;
|
sl@0
|
464 |
for (i=0; i<csl; i+=3)
|
sl@0
|
465 |
{
|
sl@0
|
466 |
if (p[i] != 0) continue;
|
sl@0
|
467 |
*(d++)=p[i+1];
|
sl@0
|
468 |
*(d++)=p[i+2];
|
sl@0
|
469 |
j+=2;
|
sl@0
|
470 |
}
|
sl@0
|
471 |
s2n(j,dd);
|
sl@0
|
472 |
|
sl@0
|
473 |
/* COMPRESSION */
|
sl@0
|
474 |
*(d++)=1;
|
sl@0
|
475 |
*(d++)=0;
|
sl@0
|
476 |
|
sl@0
|
477 |
i = (d-(unsigned char *)s->init_buf->data) - 4;
|
sl@0
|
478 |
l2n3((long)i, d_len);
|
sl@0
|
479 |
|
sl@0
|
480 |
/* get the data reused from the init_buf */
|
sl@0
|
481 |
s->s3->tmp.reuse_message=1;
|
sl@0
|
482 |
s->s3->tmp.message_type=SSL3_MT_CLIENT_HELLO;
|
sl@0
|
483 |
s->s3->tmp.message_size=i;
|
sl@0
|
484 |
}
|
sl@0
|
485 |
|
sl@0
|
486 |
/* imaginary new state (for program structure): */
|
sl@0
|
487 |
/* s->state = SSL23_SR_CLNT_HELLO_C */
|
sl@0
|
488 |
|
sl@0
|
489 |
if (type == 1)
|
sl@0
|
490 |
{
|
sl@0
|
491 |
#ifdef OPENSSL_NO_SSL2
|
sl@0
|
492 |
SSLerr(SSL_F_SSL23_GET_CLIENT_HELLO,SSL_R_UNSUPPORTED_PROTOCOL);
|
sl@0
|
493 |
goto err;
|
sl@0
|
494 |
#else
|
sl@0
|
495 |
/* we are talking sslv2 */
|
sl@0
|
496 |
/* we need to clean up the SSLv3/TLSv1 setup and put in the
|
sl@0
|
497 |
* sslv2 stuff. */
|
sl@0
|
498 |
|
sl@0
|
499 |
if (s->s2 == NULL)
|
sl@0
|
500 |
{
|
sl@0
|
501 |
if (!ssl2_new(s))
|
sl@0
|
502 |
goto err;
|
sl@0
|
503 |
}
|
sl@0
|
504 |
else
|
sl@0
|
505 |
ssl2_clear(s);
|
sl@0
|
506 |
|
sl@0
|
507 |
if (s->s3 != NULL) ssl3_free(s);
|
sl@0
|
508 |
|
sl@0
|
509 |
if (!BUF_MEM_grow_clean(s->init_buf,
|
sl@0
|
510 |
SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER))
|
sl@0
|
511 |
{
|
sl@0
|
512 |
goto err;
|
sl@0
|
513 |
}
|
sl@0
|
514 |
|
sl@0
|
515 |
s->state=SSL2_ST_GET_CLIENT_HELLO_A;
|
sl@0
|
516 |
if (s->options & SSL_OP_NO_TLSv1 && s->options & SSL_OP_NO_SSLv3)
|
sl@0
|
517 |
s->s2->ssl2_rollback=0;
|
sl@0
|
518 |
else
|
sl@0
|
519 |
/* reject SSL 2.0 session if client supports SSL 3.0 or TLS 1.0
|
sl@0
|
520 |
* (SSL 3.0 draft/RFC 2246, App. E.2) */
|
sl@0
|
521 |
s->s2->ssl2_rollback=1;
|
sl@0
|
522 |
|
sl@0
|
523 |
/* setup the n bytes we have read so we get them from
|
sl@0
|
524 |
* the sslv2 buffer */
|
sl@0
|
525 |
s->rstate=SSL_ST_READ_HEADER;
|
sl@0
|
526 |
s->packet_length=n;
|
sl@0
|
527 |
s->packet= &(s->s2->rbuf[0]);
|
sl@0
|
528 |
memcpy(s->packet,buf,n);
|
sl@0
|
529 |
s->s2->rbuf_left=n;
|
sl@0
|
530 |
s->s2->rbuf_offs=0;
|
sl@0
|
531 |
|
sl@0
|
532 |
s->method=SSLv2_server_method();
|
sl@0
|
533 |
s->handshake_func=s->method->ssl_accept;
|
sl@0
|
534 |
#endif
|
sl@0
|
535 |
}
|
sl@0
|
536 |
|
sl@0
|
537 |
if ((type == 2) || (type == 3))
|
sl@0
|
538 |
{
|
sl@0
|
539 |
/* we have SSLv3/TLSv1 (type 2: SSL2 style, type 3: SSL3/TLS style) */
|
sl@0
|
540 |
|
sl@0
|
541 |
if (!ssl_init_wbio_buffer(s,1)) goto err;
|
sl@0
|
542 |
|
sl@0
|
543 |
/* we are in this state */
|
sl@0
|
544 |
s->state=SSL3_ST_SR_CLNT_HELLO_A;
|
sl@0
|
545 |
|
sl@0
|
546 |
if (type == 3)
|
sl@0
|
547 |
{
|
sl@0
|
548 |
/* put the 'n' bytes we have read into the input buffer
|
sl@0
|
549 |
* for SSLv3 */
|
sl@0
|
550 |
s->rstate=SSL_ST_READ_HEADER;
|
sl@0
|
551 |
s->packet_length=n;
|
sl@0
|
552 |
s->packet= &(s->s3->rbuf.buf[0]);
|
sl@0
|
553 |
memcpy(s->packet,buf,n);
|
sl@0
|
554 |
s->s3->rbuf.left=n;
|
sl@0
|
555 |
s->s3->rbuf.offset=0;
|
sl@0
|
556 |
}
|
sl@0
|
557 |
else
|
sl@0
|
558 |
{
|
sl@0
|
559 |
s->packet_length=0;
|
sl@0
|
560 |
s->s3->rbuf.left=0;
|
sl@0
|
561 |
s->s3->rbuf.offset=0;
|
sl@0
|
562 |
}
|
sl@0
|
563 |
|
sl@0
|
564 |
if (s->version == TLS1_VERSION)
|
sl@0
|
565 |
s->method = TLSv1_server_method();
|
sl@0
|
566 |
else
|
sl@0
|
567 |
s->method = SSLv3_server_method();
|
sl@0
|
568 |
#if 0 /* ssl3_get_client_hello does this */
|
sl@0
|
569 |
s->client_version=(v[0]<<8)|v[1];
|
sl@0
|
570 |
#endif
|
sl@0
|
571 |
s->handshake_func=s->method->ssl_accept;
|
sl@0
|
572 |
}
|
sl@0
|
573 |
|
sl@0
|
574 |
if ((type < 1) || (type > 3))
|
sl@0
|
575 |
{
|
sl@0
|
576 |
/* bad, very bad */
|
sl@0
|
577 |
SSLerr(SSL_F_SSL23_GET_CLIENT_HELLO,SSL_R_UNKNOWN_PROTOCOL);
|
sl@0
|
578 |
goto err;
|
sl@0
|
579 |
}
|
sl@0
|
580 |
s->init_num=0;
|
sl@0
|
581 |
|
sl@0
|
582 |
if (buf != buf_space) OPENSSL_free(buf);
|
sl@0
|
583 |
return(SSL_accept(s));
|
sl@0
|
584 |
err:
|
sl@0
|
585 |
if (buf != buf_space) OPENSSL_free(buf);
|
sl@0
|
586 |
return(-1);
|
sl@0
|
587 |
}
|