os/ossrv/ssl/libssl/src/s2_pkt.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/* ssl/s2_pkt.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
#include "ssl_locl.h"
sl@0
   113
#ifndef OPENSSL_NO_SSL2
sl@0
   114
#include <stdio.h>
sl@0
   115
#include <errno.h>
sl@0
   116
#define USE_SOCKETS
sl@0
   117
sl@0
   118
static int read_n(SSL *s,unsigned int n,unsigned int max,unsigned int extend);
sl@0
   119
static int do_ssl_write(SSL *s, const unsigned char *buf, unsigned int len);
sl@0
   120
static int write_pending(SSL *s, const unsigned char *buf, unsigned int len);
sl@0
   121
static int ssl_mt_error(int n);
sl@0
   122
sl@0
   123
sl@0
   124
/* SSL 2.0 imlementation for SSL_read/SSL_peek -
sl@0
   125
 * This routine will return 0 to len bytes, decrypted etc if required.
sl@0
   126
 */
sl@0
   127
static int ssl2_read_internal(SSL *s, void *buf, int len, int peek)
sl@0
   128
	{
sl@0
   129
	int n;
sl@0
   130
	unsigned char mac[MAX_MAC_SIZE];
sl@0
   131
	unsigned char *p;
sl@0
   132
	int i;
sl@0
   133
	unsigned int mac_size;
sl@0
   134
sl@0
   135
 ssl2_read_again:
sl@0
   136
	if (SSL_in_init(s) && !s->in_handshake)
sl@0
   137
		{
sl@0
   138
		n=s->handshake_func(s);
sl@0
   139
		if (n < 0) return(n);
sl@0
   140
		if (n == 0)
sl@0
   141
			{
sl@0
   142
			SSLerr(SSL_F_SSL2_READ_INTERNAL,SSL_R_SSL_HANDSHAKE_FAILURE);
sl@0
   143
			return(-1);
sl@0
   144
			}
sl@0
   145
		}
sl@0
   146
sl@0
   147
	clear_sys_error();
sl@0
   148
	s->rwstate=SSL_NOTHING;
sl@0
   149
	if (len <= 0) return(len);
sl@0
   150
sl@0
   151
	if (s->s2->ract_data_length != 0) /* read from buffer */
sl@0
   152
		{
sl@0
   153
		if (len > s->s2->ract_data_length)
sl@0
   154
			n=s->s2->ract_data_length;
sl@0
   155
		else
sl@0
   156
			n=len;
sl@0
   157
sl@0
   158
		memcpy(buf,s->s2->ract_data,(unsigned int)n);
sl@0
   159
		if (!peek)
sl@0
   160
			{
sl@0
   161
			s->s2->ract_data_length-=n;
sl@0
   162
			s->s2->ract_data+=n;
sl@0
   163
			if (s->s2->ract_data_length == 0)
sl@0
   164
				s->rstate=SSL_ST_READ_HEADER;
sl@0
   165
			}
sl@0
   166
sl@0
   167
		return(n);
sl@0
   168
		}
sl@0
   169
sl@0
   170
	/* s->s2->ract_data_length == 0
sl@0
   171
	 * 
sl@0
   172
	 * Fill the buffer, then goto ssl2_read_again.
sl@0
   173
	 */
sl@0
   174
sl@0
   175
	if (s->rstate == SSL_ST_READ_HEADER)
sl@0
   176
		{
sl@0
   177
		if (s->first_packet)
sl@0
   178
			{
sl@0
   179
			n=read_n(s,5,SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2,0);
sl@0
   180
			if (n <= 0) return(n); /* error or non-blocking */
sl@0
   181
			s->first_packet=0;
sl@0
   182
			p=s->packet;
sl@0
   183
			if (!((p[0] & 0x80) && (
sl@0
   184
				(p[2] == SSL2_MT_CLIENT_HELLO) ||
sl@0
   185
				(p[2] == SSL2_MT_SERVER_HELLO))))
sl@0
   186
				{
sl@0
   187
				SSLerr(SSL_F_SSL2_READ_INTERNAL,SSL_R_NON_SSLV2_INITIAL_PACKET);
sl@0
   188
				return(-1);
sl@0
   189
				}
sl@0
   190
			}
sl@0
   191
		else
sl@0
   192
			{
sl@0
   193
			n=read_n(s,2,SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2,0);
sl@0
   194
			if (n <= 0) return(n); /* error or non-blocking */
sl@0
   195
			}
sl@0
   196
		/* part read stuff */
sl@0
   197
sl@0
   198
		s->rstate=SSL_ST_READ_BODY;
sl@0
   199
		p=s->packet;
sl@0
   200
		/* Do header */
sl@0
   201
		/*s->s2->padding=0;*/
sl@0
   202
		s->s2->escape=0;
sl@0
   203
		s->s2->rlength=(((unsigned int)p[0])<<8)|((unsigned int)p[1]);
sl@0
   204
		if ((p[0] & TWO_BYTE_BIT))		/* Two byte header? */
sl@0
   205
			{
sl@0
   206
			s->s2->three_byte_header=0;
sl@0
   207
			s->s2->rlength&=TWO_BYTE_MASK;	
sl@0
   208
			}
sl@0
   209
		else
sl@0
   210
			{
sl@0
   211
			s->s2->three_byte_header=1;
sl@0
   212
			s->s2->rlength&=THREE_BYTE_MASK;
sl@0
   213
sl@0
   214
			/* security >s2->escape */
sl@0
   215
			s->s2->escape=((p[0] & SEC_ESC_BIT))?1:0;
sl@0
   216
			}
sl@0
   217
		}
sl@0
   218
sl@0
   219
	if (s->rstate == SSL_ST_READ_BODY)
sl@0
   220
		{
sl@0
   221
		n=s->s2->rlength+2+s->s2->three_byte_header;
sl@0
   222
		if (n > (int)s->packet_length)
sl@0
   223
			{
sl@0
   224
			n-=s->packet_length;
sl@0
   225
			i=read_n(s,(unsigned int)n,(unsigned int)n,1);
sl@0
   226
			if (i <= 0) return(i); /* ERROR */
sl@0
   227
			}
sl@0
   228
sl@0
   229
		p= &(s->packet[2]);
sl@0
   230
		s->rstate=SSL_ST_READ_HEADER;
sl@0
   231
		if (s->s2->three_byte_header)
sl@0
   232
			s->s2->padding= *(p++);
sl@0
   233
		else	s->s2->padding=0;
sl@0
   234
sl@0
   235
		/* Data portion */
sl@0
   236
		if (s->s2->clear_text)
sl@0
   237
			{
sl@0
   238
			mac_size = 0;
sl@0
   239
			s->s2->mac_data=p;
sl@0
   240
			s->s2->ract_data=p;
sl@0
   241
			if (s->s2->padding)
sl@0
   242
				{
sl@0
   243
				SSLerr(SSL_F_SSL2_READ_INTERNAL,SSL_R_ILLEGAL_PADDING);
sl@0
   244
				return(-1);
sl@0
   245
				}
sl@0
   246
			}
sl@0
   247
		else
sl@0
   248
			{
sl@0
   249
			mac_size=EVP_MD_size(s->read_hash);
sl@0
   250
			OPENSSL_assert(mac_size <= MAX_MAC_SIZE);
sl@0
   251
			s->s2->mac_data=p;
sl@0
   252
			s->s2->ract_data= &p[mac_size];
sl@0
   253
			if (s->s2->padding + mac_size > s->s2->rlength)
sl@0
   254
				{
sl@0
   255
				SSLerr(SSL_F_SSL2_READ_INTERNAL,SSL_R_ILLEGAL_PADDING);
sl@0
   256
				return(-1);
sl@0
   257
				}
sl@0
   258
			}
sl@0
   259
sl@0
   260
		s->s2->ract_data_length=s->s2->rlength;
sl@0
   261
		/* added a check for length > max_size in case
sl@0
   262
		 * encryption was not turned on yet due to an error */
sl@0
   263
		if ((!s->s2->clear_text) &&
sl@0
   264
			(s->s2->rlength >= mac_size))
sl@0
   265
			{
sl@0
   266
			ssl2_enc(s,0);
sl@0
   267
			s->s2->ract_data_length-=mac_size;
sl@0
   268
			ssl2_mac(s,mac,0);
sl@0
   269
			s->s2->ract_data_length-=s->s2->padding;
sl@0
   270
			if (	(memcmp(mac,s->s2->mac_data,
sl@0
   271
				(unsigned int)mac_size) != 0) ||
sl@0
   272
				(s->s2->rlength%EVP_CIPHER_CTX_block_size(s->enc_read_ctx) != 0))
sl@0
   273
				{
sl@0
   274
				SSLerr(SSL_F_SSL2_READ_INTERNAL,SSL_R_BAD_MAC_DECODE);
sl@0
   275
				return(-1);
sl@0
   276
				}
sl@0
   277
			}
sl@0
   278
		INC32(s->s2->read_sequence); /* expect next number */
sl@0
   279
		/* s->s2->ract_data is now available for processing */
sl@0
   280
sl@0
   281
		/* Possibly the packet that we just read had 0 actual data bytes.
sl@0
   282
		 * (SSLeay/OpenSSL itself never sends such packets; see ssl2_write.)
sl@0
   283
		 * In this case, returning 0 would be interpreted by the caller
sl@0
   284
		 * as indicating EOF, so it's not a good idea.  Instead, we just
sl@0
   285
		 * continue reading; thus ssl2_read_internal may have to process
sl@0
   286
		 * multiple packets before it can return.
sl@0
   287
		 *
sl@0
   288
		 * [Note that using select() for blocking sockets *never* guarantees
sl@0
   289
		 * that the next SSL_read will not block -- the available
sl@0
   290
		 * data may contain incomplete packets, and except for SSL 2,
sl@0
   291
		 * renegotiation can confuse things even more.] */
sl@0
   292
sl@0
   293
		goto ssl2_read_again; /* This should really be
sl@0
   294
		                       * "return ssl2_read(s,buf,len)",
sl@0
   295
		                       * but that would allow for
sl@0
   296
		                       * denial-of-service attacks if a
sl@0
   297
		                       * C compiler is used that does not
sl@0
   298
		                       * recognize end-recursion. */
sl@0
   299
		}
sl@0
   300
	else
sl@0
   301
		{
sl@0
   302
		SSLerr(SSL_F_SSL2_READ_INTERNAL,SSL_R_BAD_STATE);
sl@0
   303
			return(-1);
sl@0
   304
		}
sl@0
   305
	}
sl@0
   306
sl@0
   307
int ssl2_read(SSL *s, void *buf, int len)
sl@0
   308
	{
sl@0
   309
	return ssl2_read_internal(s, buf, len, 0);
sl@0
   310
	}
sl@0
   311
sl@0
   312
int ssl2_peek(SSL *s, void *buf, int len)
sl@0
   313
	{
sl@0
   314
	return ssl2_read_internal(s, buf, len, 1);
sl@0
   315
	}
sl@0
   316
sl@0
   317
static int read_n(SSL *s, unsigned int n, unsigned int max,
sl@0
   318
	     unsigned int extend)
sl@0
   319
	{
sl@0
   320
	int i,off,newb;
sl@0
   321
sl@0
   322
	/* if there is stuff still in the buffer from a previous read,
sl@0
   323
	 * and there is more than we want, take some. */
sl@0
   324
	if (s->s2->rbuf_left >= (int)n)
sl@0
   325
		{
sl@0
   326
		if (extend)
sl@0
   327
			s->packet_length+=n;
sl@0
   328
		else
sl@0
   329
			{
sl@0
   330
			s->packet= &(s->s2->rbuf[s->s2->rbuf_offs]);
sl@0
   331
			s->packet_length=n;
sl@0
   332
			}
sl@0
   333
		s->s2->rbuf_left-=n;
sl@0
   334
		s->s2->rbuf_offs+=n;
sl@0
   335
		return(n);
sl@0
   336
		}
sl@0
   337
sl@0
   338
	if (!s->read_ahead) max=n;
sl@0
   339
	if (max > (unsigned int)(SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2))
sl@0
   340
		max=SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2;
sl@0
   341
	
sl@0
   342
sl@0
   343
	/* Else we want more than we have.
sl@0
   344
	 * First, if there is some left or we want to extend */
sl@0
   345
	off=0;
sl@0
   346
	if ((s->s2->rbuf_left != 0) || ((s->packet_length != 0) && extend))
sl@0
   347
		{
sl@0
   348
		newb=s->s2->rbuf_left;
sl@0
   349
		if (extend)
sl@0
   350
			{
sl@0
   351
			off=s->packet_length;
sl@0
   352
			if (s->packet != s->s2->rbuf)
sl@0
   353
				memcpy(s->s2->rbuf,s->packet,
sl@0
   354
					(unsigned int)newb+off);
sl@0
   355
			}
sl@0
   356
		else if (s->s2->rbuf_offs != 0)
sl@0
   357
			{
sl@0
   358
			memcpy(s->s2->rbuf,&(s->s2->rbuf[s->s2->rbuf_offs]),
sl@0
   359
				(unsigned int)newb);
sl@0
   360
			s->s2->rbuf_offs=0;
sl@0
   361
			}
sl@0
   362
		s->s2->rbuf_left=0;
sl@0
   363
		}
sl@0
   364
	else
sl@0
   365
		newb=0;
sl@0
   366
sl@0
   367
	/* off is the offset to start writing too.
sl@0
   368
	 * r->s2->rbuf_offs is the 'unread data', now 0. 
sl@0
   369
	 * newb is the number of new bytes so far
sl@0
   370
	 */
sl@0
   371
	s->packet=s->s2->rbuf;
sl@0
   372
	while (newb < (int)n)
sl@0
   373
		{
sl@0
   374
		clear_sys_error();
sl@0
   375
		if (s->rbio != NULL)
sl@0
   376
			{
sl@0
   377
			s->rwstate=SSL_READING;
sl@0
   378
			i=BIO_read(s->rbio,(char *)&(s->s2->rbuf[off+newb]),
sl@0
   379
				max-newb);
sl@0
   380
			}
sl@0
   381
		else
sl@0
   382
			{
sl@0
   383
			SSLerr(SSL_F_READ_N,SSL_R_READ_BIO_NOT_SET);
sl@0
   384
			i= -1;
sl@0
   385
			}
sl@0
   386
#ifdef PKT_DEBUG
sl@0
   387
		if (s->debug & 0x01) sleep(1);
sl@0
   388
#endif
sl@0
   389
		if (i <= 0)
sl@0
   390
			{
sl@0
   391
			s->s2->rbuf_left+=newb;
sl@0
   392
			return(i);
sl@0
   393
			}
sl@0
   394
		newb+=i;
sl@0
   395
		}
sl@0
   396
sl@0
   397
	/* record unread data */
sl@0
   398
	if (newb > (int)n)
sl@0
   399
		{
sl@0
   400
		s->s2->rbuf_offs=n+off;
sl@0
   401
		s->s2->rbuf_left=newb-n;
sl@0
   402
		}
sl@0
   403
	else
sl@0
   404
		{
sl@0
   405
		s->s2->rbuf_offs=0;
sl@0
   406
		s->s2->rbuf_left=0;
sl@0
   407
		}
sl@0
   408
	if (extend)
sl@0
   409
		s->packet_length+=n;
sl@0
   410
	else
sl@0
   411
		s->packet_length=n;
sl@0
   412
	s->rwstate=SSL_NOTHING;
sl@0
   413
	return(n);
sl@0
   414
	}
sl@0
   415
sl@0
   416
int ssl2_write(SSL *s, const void *_buf, int len)
sl@0
   417
	{
sl@0
   418
	const unsigned char *buf=_buf;
sl@0
   419
	unsigned int n,tot;
sl@0
   420
	int i;
sl@0
   421
sl@0
   422
	if (SSL_in_init(s) && !s->in_handshake)
sl@0
   423
		{
sl@0
   424
		i=s->handshake_func(s);
sl@0
   425
		if (i < 0) return(i);
sl@0
   426
		if (i == 0)
sl@0
   427
			{
sl@0
   428
			SSLerr(SSL_F_SSL2_WRITE,SSL_R_SSL_HANDSHAKE_FAILURE);
sl@0
   429
			return(-1);
sl@0
   430
			}
sl@0
   431
		}
sl@0
   432
sl@0
   433
	if (s->error)
sl@0
   434
		{
sl@0
   435
		ssl2_write_error(s);
sl@0
   436
		if (s->error)
sl@0
   437
			return(-1);
sl@0
   438
		}
sl@0
   439
sl@0
   440
	clear_sys_error();
sl@0
   441
	s->rwstate=SSL_NOTHING;
sl@0
   442
	if (len <= 0) return(len);
sl@0
   443
sl@0
   444
	tot=s->s2->wnum;
sl@0
   445
	s->s2->wnum=0;
sl@0
   446
sl@0
   447
	n=(len-tot);
sl@0
   448
	for (;;)
sl@0
   449
		{
sl@0
   450
		i=do_ssl_write(s,&(buf[tot]),n);
sl@0
   451
		if (i <= 0)
sl@0
   452
			{
sl@0
   453
			s->s2->wnum=tot;
sl@0
   454
			return(i);
sl@0
   455
			}
sl@0
   456
		if ((i == (int)n) ||
sl@0
   457
			(s->mode & SSL_MODE_ENABLE_PARTIAL_WRITE))
sl@0
   458
			{
sl@0
   459
			return(tot+i);
sl@0
   460
			}
sl@0
   461
		
sl@0
   462
		n-=i;
sl@0
   463
		tot+=i;
sl@0
   464
		}
sl@0
   465
	}
sl@0
   466
sl@0
   467
static int write_pending(SSL *s, const unsigned char *buf, unsigned int len)
sl@0
   468
	{
sl@0
   469
	int i;
sl@0
   470
sl@0
   471
	/* s->s2->wpend_len != 0 MUST be true. */
sl@0
   472
sl@0
   473
	/* check that they have given us the same buffer to
sl@0
   474
	 * write */
sl@0
   475
	if ((s->s2->wpend_tot > (int)len) ||
sl@0
   476
		((s->s2->wpend_buf != buf) &&
sl@0
   477
		 !(s->mode & SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER)))
sl@0
   478
		{
sl@0
   479
		SSLerr(SSL_F_WRITE_PENDING,SSL_R_BAD_WRITE_RETRY);
sl@0
   480
		return(-1);
sl@0
   481
		}
sl@0
   482
sl@0
   483
	for (;;)
sl@0
   484
		{
sl@0
   485
		clear_sys_error();
sl@0
   486
		if (s->wbio != NULL)
sl@0
   487
			{
sl@0
   488
			s->rwstate=SSL_WRITING;
sl@0
   489
			i=BIO_write(s->wbio,
sl@0
   490
				(char *)&(s->s2->write_ptr[s->s2->wpend_off]),
sl@0
   491
				(unsigned int)s->s2->wpend_len);
sl@0
   492
			}
sl@0
   493
		else
sl@0
   494
			{
sl@0
   495
			SSLerr(SSL_F_WRITE_PENDING,SSL_R_WRITE_BIO_NOT_SET);
sl@0
   496
			i= -1;
sl@0
   497
			}
sl@0
   498
#ifdef PKT_DEBUG
sl@0
   499
		if (s->debug & 0x01) sleep(1);
sl@0
   500
#endif
sl@0
   501
		if (i == s->s2->wpend_len)
sl@0
   502
			{
sl@0
   503
			s->s2->wpend_len=0;
sl@0
   504
			s->rwstate=SSL_NOTHING;
sl@0
   505
			return(s->s2->wpend_ret);
sl@0
   506
			}
sl@0
   507
		else if (i <= 0)
sl@0
   508
			return(i);
sl@0
   509
		s->s2->wpend_off+=i;
sl@0
   510
		s->s2->wpend_len-=i;
sl@0
   511
		}
sl@0
   512
	}
sl@0
   513
sl@0
   514
static int do_ssl_write(SSL *s, const unsigned char *buf, unsigned int len)
sl@0
   515
	{
sl@0
   516
	unsigned int j,k,olen,p,mac_size,bs;
sl@0
   517
	register unsigned char *pp;
sl@0
   518
sl@0
   519
	olen=len;
sl@0
   520
sl@0
   521
	/* first check if there is data from an encryption waiting to
sl@0
   522
	 * be sent - it must be sent because the other end is waiting.
sl@0
   523
	 * This will happen with non-blocking IO.  We print it and then
sl@0
   524
	 * return.
sl@0
   525
	 */
sl@0
   526
	if (s->s2->wpend_len != 0) return(write_pending(s,buf,len));
sl@0
   527
sl@0
   528
	/* set mac_size to mac size */
sl@0
   529
	if (s->s2->clear_text)
sl@0
   530
		mac_size=0;
sl@0
   531
	else
sl@0
   532
		mac_size=EVP_MD_size(s->write_hash);
sl@0
   533
sl@0
   534
	/* lets set the pad p */
sl@0
   535
	if (s->s2->clear_text)
sl@0
   536
		{
sl@0
   537
		if (len > SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER)
sl@0
   538
			len=SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER;
sl@0
   539
		p=0;
sl@0
   540
		s->s2->three_byte_header=0;
sl@0
   541
		/* len=len; */
sl@0
   542
		}
sl@0
   543
	else
sl@0
   544
		{
sl@0
   545
		bs=EVP_CIPHER_CTX_block_size(s->enc_read_ctx);
sl@0
   546
		j=len+mac_size;
sl@0
   547
		/* Two-byte headers allow for a larger record length than
sl@0
   548
		 * three-byte headers, but we can't use them if we need
sl@0
   549
		 * padding or if we have to set the escape bit. */
sl@0
   550
		if ((j > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER) &&
sl@0
   551
			(!s->s2->escape))
sl@0
   552
			{
sl@0
   553
			if (j > SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER)
sl@0
   554
				j=SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER;
sl@0
   555
			/* set k to the max number of bytes with 2
sl@0
   556
			 * byte header */
sl@0
   557
			k=j-(j%bs);
sl@0
   558
			/* how many data bytes? */
sl@0
   559
			len=k-mac_size; 
sl@0
   560
			s->s2->three_byte_header=0;
sl@0
   561
			p=0;
sl@0
   562
			}
sl@0
   563
		else if ((bs <= 1) && (!s->s2->escape))
sl@0
   564
			{
sl@0
   565
			/* j <= SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER, thus
sl@0
   566
			 * j < SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER */
sl@0
   567
			s->s2->three_byte_header=0;
sl@0
   568
			p=0;
sl@0
   569
			}
sl@0
   570
		else /* we may have to use a 3 byte header */
sl@0
   571
			{
sl@0
   572
			/* If s->s2->escape is not set, then
sl@0
   573
			 * j <= SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER, and thus
sl@0
   574
			 * j < SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER. */
sl@0
   575
			p=(j%bs);
sl@0
   576
			p=(p == 0)?0:(bs-p);
sl@0
   577
			if (s->s2->escape)
sl@0
   578
				{
sl@0
   579
				s->s2->three_byte_header=1;
sl@0
   580
				if (j > SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER)
sl@0
   581
					j=SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER;
sl@0
   582
				}
sl@0
   583
			else
sl@0
   584
				s->s2->three_byte_header=(p == 0)?0:1;
sl@0
   585
			}
sl@0
   586
		}
sl@0
   587
sl@0
   588
	/* Now
sl@0
   589
	 *      j <= SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER
sl@0
   590
	 * holds, and if s->s2->three_byte_header is set, then even
sl@0
   591
	 *      j <= SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER.
sl@0
   592
	 */
sl@0
   593
sl@0
   594
	/* mac_size is the number of MAC bytes
sl@0
   595
	 * len is the number of data bytes we are going to send
sl@0
   596
	 * p is the number of padding bytes
sl@0
   597
	 * (if it is a two-byte header, then p == 0) */
sl@0
   598
sl@0
   599
	s->s2->wlength=len;
sl@0
   600
	s->s2->padding=p;
sl@0
   601
	s->s2->mac_data= &(s->s2->wbuf[3]);
sl@0
   602
	s->s2->wact_data= &(s->s2->wbuf[3+mac_size]);
sl@0
   603
	/* we copy the data into s->s2->wbuf */
sl@0
   604
	memcpy(s->s2->wact_data,buf,len);
sl@0
   605
	if (p)
sl@0
   606
		memset(&(s->s2->wact_data[len]),0,p); /* arbitrary padding */
sl@0
   607
sl@0
   608
	if (!s->s2->clear_text)
sl@0
   609
		{
sl@0
   610
		s->s2->wact_data_length=len+p;
sl@0
   611
		ssl2_mac(s,s->s2->mac_data,1);
sl@0
   612
		s->s2->wlength+=p+mac_size;
sl@0
   613
		ssl2_enc(s,1);
sl@0
   614
		}
sl@0
   615
sl@0
   616
	/* package up the header */
sl@0
   617
	s->s2->wpend_len=s->s2->wlength;
sl@0
   618
	if (s->s2->three_byte_header) /* 3 byte header */
sl@0
   619
		{
sl@0
   620
		pp=s->s2->mac_data;
sl@0
   621
		pp-=3;
sl@0
   622
		pp[0]=(s->s2->wlength>>8)&(THREE_BYTE_MASK>>8);
sl@0
   623
		if (s->s2->escape) pp[0]|=SEC_ESC_BIT;
sl@0
   624
		pp[1]=s->s2->wlength&0xff;
sl@0
   625
		pp[2]=s->s2->padding;
sl@0
   626
		s->s2->wpend_len+=3;
sl@0
   627
		}
sl@0
   628
	else
sl@0
   629
		{
sl@0
   630
		pp=s->s2->mac_data;
sl@0
   631
		pp-=2;
sl@0
   632
		pp[0]=((s->s2->wlength>>8)&(TWO_BYTE_MASK>>8))|TWO_BYTE_BIT;
sl@0
   633
		pp[1]=s->s2->wlength&0xff;
sl@0
   634
		s->s2->wpend_len+=2;
sl@0
   635
		}
sl@0
   636
	s->s2->write_ptr=pp;
sl@0
   637
	
sl@0
   638
	INC32(s->s2->write_sequence); /* expect next number */
sl@0
   639
sl@0
   640
	/* lets try to actually write the data */
sl@0
   641
	s->s2->wpend_tot=olen;
sl@0
   642
	s->s2->wpend_buf=buf;
sl@0
   643
sl@0
   644
	s->s2->wpend_ret=len;
sl@0
   645
sl@0
   646
	s->s2->wpend_off=0;
sl@0
   647
	return(write_pending(s,buf,olen));
sl@0
   648
	}
sl@0
   649
sl@0
   650
int ssl2_part_read(SSL *s, unsigned long f, int i)
sl@0
   651
	{
sl@0
   652
	unsigned char *p;
sl@0
   653
	int j;
sl@0
   654
sl@0
   655
	if (i < 0)
sl@0
   656
		{
sl@0
   657
		/* ssl2_return_error(s); */
sl@0
   658
		/* for non-blocking io,
sl@0
   659
		 * this is not necessarily fatal */
sl@0
   660
		return(i);
sl@0
   661
		}
sl@0
   662
	else
sl@0
   663
		{
sl@0
   664
		s->init_num+=i;
sl@0
   665
sl@0
   666
		/* Check for error.  While there are recoverable errors,
sl@0
   667
		 * this function is not called when those must be expected;
sl@0
   668
		 * any error detected here is fatal. */
sl@0
   669
		if (s->init_num >= 3)
sl@0
   670
			{
sl@0
   671
			p=(unsigned char *)s->init_buf->data;
sl@0
   672
			if (p[0] == SSL2_MT_ERROR)
sl@0
   673
				{
sl@0
   674
				j=(p[1]<<8)|p[2];
sl@0
   675
				SSLerr((int)f,ssl_mt_error(j));
sl@0
   676
				s->init_num -= 3;
sl@0
   677
				if (s->init_num > 0)
sl@0
   678
					memmove(p, p+3, s->init_num);
sl@0
   679
				}
sl@0
   680
			}
sl@0
   681
sl@0
   682
		/* If it's not an error message, we have some error anyway --
sl@0
   683
		 * the message was shorter than expected.  This too is treated
sl@0
   684
		 * as fatal (at least if SSL_get_error is asked for its opinion). */
sl@0
   685
		return(0);
sl@0
   686
		}
sl@0
   687
	}
sl@0
   688
sl@0
   689
int ssl2_do_write(SSL *s)
sl@0
   690
	{
sl@0
   691
	int ret;
sl@0
   692
sl@0
   693
	ret=ssl2_write(s,&s->init_buf->data[s->init_off],s->init_num);
sl@0
   694
	if (ret == s->init_num)
sl@0
   695
		{
sl@0
   696
		if (s->msg_callback)
sl@0
   697
			s->msg_callback(1, s->version, 0, s->init_buf->data, (size_t)(s->init_off + s->init_num), s, s->msg_callback_arg);
sl@0
   698
		return(1);
sl@0
   699
		}
sl@0
   700
	if (ret < 0)
sl@0
   701
		return(-1);
sl@0
   702
	s->init_off+=ret;
sl@0
   703
	s->init_num-=ret;
sl@0
   704
	return(0);
sl@0
   705
	}
sl@0
   706
sl@0
   707
static int ssl_mt_error(int n)
sl@0
   708
	{
sl@0
   709
	int ret;
sl@0
   710
sl@0
   711
	switch (n)
sl@0
   712
		{
sl@0
   713
	case SSL2_PE_NO_CIPHER:
sl@0
   714
		ret=SSL_R_PEER_ERROR_NO_CIPHER;
sl@0
   715
		break;
sl@0
   716
	case SSL2_PE_NO_CERTIFICATE:
sl@0
   717
		ret=SSL_R_PEER_ERROR_NO_CERTIFICATE;
sl@0
   718
		break;
sl@0
   719
	case SSL2_PE_BAD_CERTIFICATE:
sl@0
   720
		ret=SSL_R_PEER_ERROR_CERTIFICATE;
sl@0
   721
		break;
sl@0
   722
	case SSL2_PE_UNSUPPORTED_CERTIFICATE_TYPE:
sl@0
   723
		ret=SSL_R_PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE;
sl@0
   724
		break;
sl@0
   725
	default:
sl@0
   726
		ret=SSL_R_UNKNOWN_REMOTE_ERROR_TYPE;
sl@0
   727
		break;
sl@0
   728
		}
sl@0
   729
	return(ret);
sl@0
   730
	}
sl@0
   731
#else /* !OPENSSL_NO_SSL2 */
sl@0
   732
sl@0
   733
# if PEDANTIC
sl@0
   734
static void *dummy=&dummy;
sl@0
   735
# endif
sl@0
   736
sl@0
   737
#endif