bss_conn.c 14.3 KB
Newer Older
1
/* crypto/bio/bss_conn.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */

#ifndef NO_SOCK

#include <stdio.h>
#include <errno.h>
#define USE_SOCKETS
#include "cryptlib.h"
65
#include <openssl/bio.h>
66 67 68 69 70 71 72

#ifdef WIN16
#define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
#else
#define SOCKET_PROTOCOL IPPROTO_TCP
#endif

U
Ulf Möller 已提交
73 74
#if (defined(VMS) && __VMS_VER < 70000000)
/* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
U
Ulf Möller 已提交
75 76 77 78
#undef FIONBIO
#endif


79 80 81 82 83 84 85 86 87
typedef struct bio_connect_st
	{
	int state;

	char *param_hostname;
	char *param_port;
	int nbio;

	unsigned char ip[4];
88
	unsigned short port;
89 90 91 92

	struct sockaddr_in them;

	/* int socket; this will be kept in bio->num so that it is
U
Ulf Möller 已提交
93
	 * compatible with the bss_sock bio */ 
94 95 96

	/* called when the connection is initially made
	 *  callback(BIO,state,ret);  The callback should return
U
Ulf Möller 已提交
97
	 * 'ret'.  state is for compatibility with the ssl info_callback */
98
	int (*info_callback)();
99 100
	} BIO_CONNECT;

101 102 103 104
static int conn_write(BIO *h, const char *buf, int num);
static int conn_read(BIO *h, char *buf, int size);
static int conn_puts(BIO *h, const char *str);
static long conn_ctrl(BIO *h, int cmd, long arg1, void *arg2);
105 106
static int conn_new(BIO *h);
static int conn_free(BIO *data);
D
 
Dr. Stephen Henson 已提交
107
static long conn_callback_ctrl(BIO *h, int cmd, bio_info_cb *);
108 109 110 111 112 113 114 115

static int conn_state(BIO *b, BIO_CONNECT *c);
static void conn_close_socket(BIO *data);
BIO_CONNECT *BIO_CONNECT_new(void );
void BIO_CONNECT_free(BIO_CONNECT *a);

static BIO_METHOD methods_connectp=
	{
116 117
	BIO_TYPE_CONNECT,
	"socket connect",
118 119 120 121 122 123 124
	conn_write,
	conn_read,
	conn_puts,
	NULL, /* connect_gets, */
	conn_ctrl,
	conn_new,
	conn_free,
125
	conn_callback_ctrl,
126 127
	};

U
Ulf Möller 已提交
128
static int conn_state(BIO *b, BIO_CONNECT *c)
129 130 131 132
	{
	int ret= -1,i;
	unsigned long l;
	char *p,*q;
133
	int (*cb)()=NULL;
134

135 136
	if (c->info_callback != NULL)
		cb=c->info_callback;
137

138 139 140
	for (;;)
		{
		switch (c->state)
141
			{
142 143 144 145
		case BIO_CONN_S_BEFORE:
			p=c->param_hostname;
			if (p == NULL)
				{
U
Ulf Möller 已提交
146
				BIOerr(BIO_F_CONN_STATE,BIO_R_NO_HOSTNAME_SPECIFIED);
147 148 149 150 151 152
				goto exit_loop;
				}
			for ( ; *p != '\0'; p++)
				{
				if ((*p == ':') || (*p == '/')) break;
				}
153

154 155
			i= *p;
			if ((i == ':') || (i == '/'))
156
				{
157 158 159 160 161 162 163 164 165 166 167

				*(p++)='\0';
				if (i == ':')
					{
					for (q=p; *q; q++)
						if (*q == '/')
							{
							*q='\0';
							break;
							}
					if (c->param_port != NULL)
168
						OPENSSL_free(c->param_port);
169 170
					c->param_port=BUF_strdup(p);
					}
171 172
				}

173
			if (c->param_port == NULL)
174 175 176 177 178 179
				{
				BIOerr(BIO_F_CONN_STATE,BIO_R_NO_PORT_SPECIFIED);
				ERR_add_error_data(2,"host=",c->param_hostname);
				goto exit_loop;
				}
			c->state=BIO_CONN_S_GET_IP;
180 181
			break;

182 183 184 185
		case BIO_CONN_S_GET_IP:
			if (BIO_get_host_ip(c->param_hostname,&(c->ip[0])) <= 0)
				goto exit_loop;
			c->state=BIO_CONN_S_GET_PORT;
186 187
			break;

188
		case BIO_CONN_S_GET_PORT:
189 190
			if (c->param_port == NULL)
				{
191
				/* abort(); */
192 193 194
				goto exit_loop;
				}
			else if (BIO_get_port(c->param_port,&c->port) <= 0)
195 196
				goto exit_loop;
			c->state=BIO_CONN_S_CREATE_SOCKET;
197
			break;
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222

		case BIO_CONN_S_CREATE_SOCKET:
			/* now setup address */
			memset((char *)&c->them,0,sizeof(c->them));
			c->them.sin_family=AF_INET;
			c->them.sin_port=htons((unsigned short)c->port);
			l=(unsigned long)
				((unsigned long)c->ip[0]<<24L)|
				((unsigned long)c->ip[1]<<16L)|
				((unsigned long)c->ip[2]<< 8L)|
				((unsigned long)c->ip[3]);
			c->them.sin_addr.s_addr=htonl(l);
			c->state=BIO_CONN_S_CREATE_SOCKET;

			ret=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
			if (ret == INVALID_SOCKET)
				{
				SYSerr(SYS_F_SOCKET,get_last_socket_error());
				ERR_add_error_data(4,"host=",c->param_hostname,
					":",c->param_port);
				BIOerr(BIO_F_CONN_STATE,BIO_R_UNABLE_TO_CREATE_SOCKET);
				goto exit_loop;
				}
			b->num=ret;
			c->state=BIO_CONN_S_NBIO;
223 224
			break;

225 226
		case BIO_CONN_S_NBIO:
			if (c->nbio)
227
				{
228
				if (!BIO_socket_nbio(b->num,1))
229 230 231 232 233 234 235
					{
					BIOerr(BIO_F_CONN_STATE,BIO_R_ERROR_SETTING_NBIO);
					ERR_add_error_data(4,"host=",
						c->param_hostname,
						":",c->param_port);
					goto exit_loop;
					}
236
				}
237
			c->state=BIO_CONN_S_CONNECT;
238

239
#if defined(SO_KEEPALIVE) && !defined(MPE)
240 241 242
			i=1;
			i=setsockopt(b->num,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
			if (i < 0)
243
				{
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
				SYSerr(SYS_F_SOCKET,get_last_socket_error());
				ERR_add_error_data(4,"host=",c->param_hostname,
					":",c->param_port);
				BIOerr(BIO_F_CONN_STATE,BIO_R_KEEPALIVE);
				goto exit_loop;
				}
#endif
			break;

		case BIO_CONN_S_CONNECT:
			BIO_clear_retry_flags(b);
			ret=connect(b->num,
				(struct sockaddr *)&c->them,
				sizeof(c->them));
			b->retry_reason=0;
			if (ret < 0)
				{
				if (BIO_sock_should_retry(ret))
					{
					BIO_set_retry_special(b);
					c->state=BIO_CONN_S_BLOCKED_CONNECT;
					b->retry_reason=BIO_RR_CONNECT;
					}
				else
					{
					SYSerr(SYS_F_CONNECT,get_last_socket_error());
					ERR_add_error_data(4,"host=",
						c->param_hostname,
						":",c->param_port);
					BIOerr(BIO_F_CONN_STATE,BIO_R_CONNECT_ERROR);
					}
				goto exit_loop;
276 277
				}
			else
278 279 280 281 282 283
				c->state=BIO_CONN_S_OK;
			break;

		case BIO_CONN_S_BLOCKED_CONNECT:
			i=BIO_sock_error(b->num);
			if (i)
284
				{
285 286 287 288 289 290 291 292
				BIO_clear_retry_flags(b);
				SYSerr(SYS_F_CONNECT,i);
				ERR_add_error_data(4,"host=",
					c->param_hostname,
					":",c->param_port);
				BIOerr(BIO_F_CONN_STATE,BIO_R_NBIO_CONNECT_ERROR);
				ret=0;
				goto exit_loop;
293
				}
294 295 296 297 298
			else
				c->state=BIO_CONN_S_OK;
			break;

		case BIO_CONN_S_OK:
299
			ret=1;
300 301
			goto exit_loop;
		default:
302
			/* abort(); */
303
			goto exit_loop;
304 305
			}

306
		if (cb != NULL)
307
			{
308 309
			if (!(ret=cb((BIO *)b,c->state,ret)))
				goto end;
310
			}
311
		}
312

313
	/* Loop does not exit */
314
exit_loop:
315 316
	if (cb != NULL)
		ret=cb((BIO *)b,c->state,ret);
317
end:
318 319 320
	return(ret);
	}

U
Ulf Möller 已提交
321
BIO_CONNECT *BIO_CONNECT_new(void)
322 323 324
	{
	BIO_CONNECT *ret;

325
	if ((ret=(BIO_CONNECT *)OPENSSL_malloc(sizeof(BIO_CONNECT))) == NULL)
326
		return(NULL);
327
	ret->state=BIO_CONN_S_BEFORE;
328 329
	ret->param_hostname=NULL;
	ret->param_port=NULL;
330
	ret->info_callback=NULL;
331 332 333 334 335 336 337 338 339 340
	ret->nbio=0;
	ret->ip[0]=0;
	ret->ip[1]=0;
	ret->ip[2]=0;
	ret->ip[3]=0;
	ret->port=0;
	memset((char *)&ret->them,0,sizeof(ret->them));
	return(ret);
	}

U
Ulf Möller 已提交
341
void BIO_CONNECT_free(BIO_CONNECT *a)
342
	{
B
Ben Laurie 已提交
343 344 345
	if(a == NULL)
	    return;

346
	if (a->param_hostname != NULL)
347
		OPENSSL_free(a->param_hostname);
348
	if (a->param_port != NULL)
349 350
		OPENSSL_free(a->param_port);
	OPENSSL_free(a);
351 352
	}

U
Ulf Möller 已提交
353
BIO_METHOD *BIO_s_connect(void)
354 355 356 357
	{
	return(&methods_connectp);
	}

U
Ulf Möller 已提交
358
static int conn_new(BIO *bi)
359 360 361 362 363 364 365 366 367 368
	{
	bi->init=0;
	bi->num=INVALID_SOCKET;
	bi->flags=0;
	if ((bi->ptr=(char *)BIO_CONNECT_new()) == NULL)
		return(0);
	else
		return(1);
	}

U
Ulf Möller 已提交
369
static void conn_close_socket(BIO *bio)
370 371 372 373 374 375 376
	{
	BIO_CONNECT *c;

	c=(BIO_CONNECT *)bio->ptr;
	if (bio->num != INVALID_SOCKET)
		{
		/* Only do a shutdown if things were established */
377
		if (c->state == BIO_CONN_S_OK)
378 379 380 381 382 383
			shutdown(bio->num,2);
		closesocket(bio->num);
		bio->num=INVALID_SOCKET;
		}
	}

U
Ulf Möller 已提交
384
static int conn_free(BIO *a)
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
	{
	BIO_CONNECT *data;

	if (a == NULL) return(0);
	data=(BIO_CONNECT *)a->ptr;
	 
	if (a->shutdown)
		{
		conn_close_socket(a);
		BIO_CONNECT_free(data);
		a->ptr=NULL;
		a->flags=0;
		a->init=0;
		}
	return(1);
	}
	
U
Ulf Möller 已提交
402
static int conn_read(BIO *b, char *out, int outl)
403 404 405 406 407
	{
	int ret=0;
	BIO_CONNECT *data;

	data=(BIO_CONNECT *)b->ptr;
408
	if (data->state != BIO_CONN_S_OK)
409 410
		{
		ret=conn_state(b,data);
411 412
		if (ret <= 0)
				return(ret);
413 414 415 416
		}

	if (out != NULL)
		{
417
		clear_socket_error();
418
		ret=readsocket(b->num,out,outl);
419 420 421 422 423 424 425 426 427 428
		BIO_clear_retry_flags(b);
		if (ret <= 0)
			{
			if (BIO_sock_should_retry(ret))
				BIO_set_retry_read(b);
			}
		}
	return(ret);
	}

429
static int conn_write(BIO *b, const char *in, int inl)
430 431 432 433 434
	{
	int ret;
	BIO_CONNECT *data;

	data=(BIO_CONNECT *)b->ptr;
435
	if (data->state != BIO_CONN_S_OK)
436 437 438 439 440
		{
		ret=conn_state(b,data);
		if (ret <= 0) return(ret);
		}

441
	clear_socket_error();
442
	ret=writesocket(b->num,in,inl);
443 444 445 446 447 448 449 450 451
	BIO_clear_retry_flags(b);
	if (ret <= 0)
		{
		if (BIO_sock_should_retry(ret))
			BIO_set_retry_write(b);
		}
	return(ret);
	}

452
static long conn_ctrl(BIO *b, int cmd, long num, void *ptr)
453 454 455
	{
	BIO *dbio;
	int *ip;
B
Ben Laurie 已提交
456
	const char **pptr;
457 458 459 460 461 462 463 464 465
	long ret=1;
	BIO_CONNECT *data;

	data=(BIO_CONNECT *)b->ptr;

	switch (cmd)
		{
	case BIO_CTRL_RESET:
		ret=0;
466
		data->state=BIO_CONN_S_BEFORE;
467 468 469 470 471
		conn_close_socket(b);
		b->flags=0;
		break;
	case BIO_C_DO_STATE_MACHINE:
		/* use this one to start the connection */
472
		if (!data->state != BIO_CONN_S_OK)
473 474 475 476
			ret=(long)conn_state(b,data);
		else
			ret=1;
		break;
477 478 479
	case BIO_C_GET_CONNECT:
		if (ptr != NULL)
			{
B
Ben Laurie 已提交
480
			pptr=(const char **)ptr;
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
			if (num == 0)
				{
				*pptr=data->param_hostname;

				}
			else if (num == 1)
				{
				*pptr=data->param_port;
				}
			else if (num == 2)
				{
				*pptr= (char *)&(data->ip[0]);
				}
			else if (num == 3)
				{
				*((int *)ptr)=data->port;
				}
			if ((!b->init) || (ptr == NULL))
U
Ulf Möller 已提交
499
				*pptr="not initialized";
500 501 502
			ret=1;
			}
		break;
503 504 505 506 507 508 509
	case BIO_C_SET_CONNECT:
		if (ptr != NULL)
			{
			b->init=1;
			if (num == 0)
				{
				if (data->param_hostname != NULL)
510
					OPENSSL_free(data->param_hostname);
511 512 513 514 515
				data->param_hostname=BUF_strdup(ptr);
				}
			else if (num == 1)
				{
				if (data->param_port != NULL)
516
					OPENSSL_free(data->param_port);
517 518
				data->param_port=BUF_strdup(ptr);
				}
519
			else if (num == 2)
520 521
				{
				char buf[16];
522
				char *p = ptr;
523 524

				sprintf(buf,"%d.%d.%d.%d",
525
					p[0],p[1],p[2],p[3]);
526
				if (data->param_hostname != NULL)
527
					OPENSSL_free(data->param_hostname);
528 529 530
				data->param_hostname=BUF_strdup(buf);
				memcpy(&(data->ip[0]),ptr,4);
				}
531
			else if (num == 3)
532 533 534 535 536
				{
				char buf[16];

				sprintf(buf,"%d",*(int *)ptr);
				if (data->param_port != NULL)
537
					OPENSSL_free(data->param_port);
538
				data->param_port=BUF_strdup(buf);
539
				data->port= *(int *)ptr;
540
				}
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
			}
		break;
	case BIO_C_SET_NBIO:
		data->nbio=(int)num;
		break;
	case BIO_C_GET_FD:
		if (b->init)
			{
			ip=(int *)ptr;
			if (ip != NULL)
				*ip=b->num;
			ret=b->num;
			}
		else
			ret= -1;
		break;
	case BIO_CTRL_GET_CLOSE:
		ret=b->shutdown;
		break;
	case BIO_CTRL_SET_CLOSE:
		b->shutdown=(int)num;
		break;
	case BIO_CTRL_PENDING:
	case BIO_CTRL_WPENDING:
		ret=0;
		break;
	case BIO_CTRL_FLUSH:
		break;
	case BIO_CTRL_DUP:
570
		{
571 572
		dbio=(BIO *)ptr;
		if (data->param_port)
573
			BIO_set_conn_port(dbio,data->param_port);
574
		if (data->param_hostname)
575
			BIO_set_conn_hostname(dbio,data->param_hostname);
576
		BIO_set_nbio(dbio,data->nbio);
D
 
Dr. Stephen Henson 已提交
577
                (void)BIO_set_info_callback(dbio,data->info_callback);
578
		}
579
		break;
580
	case BIO_CTRL_SET_CALLBACK:
581
		{
582 583 584 585 586 587
#if 0 /* FIXME: Should this be used?  -- Richard Levitte */
		BIOerr(BIO_F_CONN_CTRL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
		ret = -1;
#else
		ret=0;
#endif
588
		}
589 590 591 592
		break;
	case BIO_CTRL_GET_CALLBACK:
		{
		int (**fptr)();
593

594 595 596 597
		fptr=(int (**)())ptr;
		*fptr=data->info_callback;
		}
		break;
598 599 600 601 602 603 604
	default:
		ret=0;
		break;
		}
	return(ret);
	}

D
 
Dr. Stephen Henson 已提交
605
static long conn_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
	{
	long ret=1;
	BIO_CONNECT *data;

	data=(BIO_CONNECT *)b->ptr;

	switch (cmd)
		{
	case BIO_CTRL_SET_CALLBACK:
		{
		data->info_callback=(int (*)())fp;
		}
		break;
	default:
		ret=0;
		break;
		}
	return(ret);
	}

626
static int conn_puts(BIO *bp, const char *str)
627 628 629 630 631 632 633 634
	{
	int n,ret;

	n=strlen(str);
	ret=conn_write(bp,str,n);
	return(ret);
	}

U
Ulf Möller 已提交
635
BIO *BIO_new_connect(char *str)
636 637 638 639 640
	{
	BIO *ret;

	ret=BIO_new(BIO_s_connect());
	if (ret == NULL) return(NULL);
641
	if (BIO_set_conn_hostname(ret,str))
642 643 644 645 646 647 648 649 650 651
		return(ret);
	else
		{
		BIO_free(ret);
		return(NULL);
		}
	}

#endif