bss_dgram.c 18.4 KB
Newer Older
B
Ben Laurie 已提交
1 2 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 65 66
/* crypto/bio/bio_dgram.c */
/* 
 * DTLS implementation written by Nagendra Modadugu
 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.  
 */
/* ====================================================================
 * Copyright (c) 1999-2005 The OpenSSL Project.  All rights reserved.
 *
 * 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 above 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 acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    openssl-core@OpenSSL.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED 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 OpenSSL PROJECT OR
 * ITS 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.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */


#include <stdio.h>
#include <errno.h>
#define USE_SOCKETS
#include "cryptlib.h"

#include <openssl/bio.h>
D
Dr. Stephen Henson 已提交
67
#ifndef OPENSSL_NO_DGRAM
B
Ben Laurie 已提交
68

69
#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS)
D
Dr. Stephen Henson 已提交
70 71 72
#include <sys/timeb.h>
#endif

D
Dr. Stephen Henson 已提交
73
#ifdef OPENSSL_SYS_LINUX
B
Ben Laurie 已提交
74
#define IP_MTU      14 /* linux is lame */
D
Dr. Stephen Henson 已提交
75
#endif
B
Ben Laurie 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

#ifdef WATT32
#define sock_write SockWrite  /* Watt-32 uses same names */
#define sock_read  SockRead
#define sock_puts  SockPuts
#endif

static int dgram_write(BIO *h, const char *buf, int num);
static int dgram_read(BIO *h, char *buf, int size);
static int dgram_puts(BIO *h, const char *str);
static long dgram_ctrl(BIO *h, int cmd, long arg1, void *arg2);
static int dgram_new(BIO *h);
static int dgram_free(BIO *data);
static int dgram_clear(BIO *bio);

91
static int BIO_dgram_should_retry(int s);
B
Ben Laurie 已提交
92

93 94
static void get_current_time(struct timeval *t);

B
Ben Laurie 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
static BIO_METHOD methods_dgramp=
	{
	BIO_TYPE_DGRAM,
	"datagram socket",
	dgram_write,
	dgram_read,
	dgram_puts,
	NULL, /* dgram_gets, */
	dgram_ctrl,
	dgram_new,
	dgram_free,
	NULL,
	};

typedef struct bio_dgram_data_st
	{
111 112 113
	union {
		struct sockaddr sa;
		struct sockaddr_in sa_in;
D
Dr. Stephen Henson 已提交
114
#if OPENSSL_USE_IPV6
115
		struct sockaddr_in6 sa_in6;
D
Dr. Stephen Henson 已提交
116
#endif
117
	} peer;
B
Ben Laurie 已提交
118 119 120
	unsigned int connected;
	unsigned int _errno;
	unsigned int mtu;
D
Dr. Stephen Henson 已提交
121 122
	struct timeval next_timeout;
	struct timeval socket_timeout;
B
Ben Laurie 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
	} bio_dgram_data;

BIO_METHOD *BIO_s_datagram(void)
	{
	return(&methods_dgramp);
	}

BIO *BIO_new_dgram(int fd, int close_flag)
	{
	BIO *ret;

	ret=BIO_new(BIO_s_datagram());
	if (ret == NULL) return(NULL);
	BIO_set_fd(ret,fd,close_flag);
	return(ret);
	}

static int dgram_new(BIO *bi)
	{
	bio_dgram_data *data = NULL;

	bi->init=0;
	bi->num=0;
	data = OPENSSL_malloc(sizeof(bio_dgram_data));
	if (data == NULL)
		return 0;
	memset(data, 0x00, sizeof(bio_dgram_data));
    bi->ptr = data;

	bi->flags=0;
	return(1);
	}

static int dgram_free(BIO *a)
	{
	bio_dgram_data *data;

	if (a == NULL) return(0);
	if ( ! dgram_clear(a))
		return 0;

	data = (bio_dgram_data *)a->ptr;
	if(data != NULL) OPENSSL_free(data);

	return(1);
	}

static int dgram_clear(BIO *a)
	{
	if (a == NULL) return(0);
	if (a->shutdown)
		{
		if (a->init)
			{
			SHUTDOWN2(a->num);
			}
		a->init=0;
		a->flags=0;
		}
	return(1);
	}
D
Dr. Stephen Henson 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197 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 223 224 225

static void dgram_adjust_rcv_timeout(BIO *b)
	{
#if defined(SO_RCVTIMEO)
	bio_dgram_data *data = (bio_dgram_data *)b->ptr;
	int sz = sizeof(int);

	/* Is a timer active? */
	if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0)
		{
		struct timeval timenow, timeleft;

		/* Read current socket timeout */
#ifdef OPENSSL_SYS_WINDOWS
		int timeout;
		if (getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
					   (void*)&timeout, &sz) < 0)
			{ perror("getsockopt"); }
		else
			{
			data->socket_timeout.tv_sec = timeout / 1000;
			data->socket_timeout.tv_usec = (timeout % 1000) * 1000;
			}
#else
		if ( getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, 
						&(data->socket_timeout), (void *)&sz) < 0)
			{ perror("getsockopt"); }
#endif

		/* Get current time */
		get_current_time(&timenow);

		/* Calculate time left until timer expires */
		memcpy(&timeleft, &(data->next_timeout), sizeof(struct timeval));
		timeleft.tv_sec -= timenow.tv_sec;
		timeleft.tv_usec -= timenow.tv_usec;
		if (timeleft.tv_usec < 0)
			{
			timeleft.tv_sec--;
			timeleft.tv_usec += 1000000;
			}

D
Dr. Stephen Henson 已提交
226 227 228 229 230 231
		if (timeleft.tv_sec < 0)
			{
			timeleft.tv_sec = 0;
			timeleft.tv_usec = 1;
			}

D
Dr. Stephen Henson 已提交
232 233 234
		/* Adjust socket timeout if next handhake message timer
		 * will expire earlier.
		 */
D
Dr. Stephen Henson 已提交
235 236
		if ((data->socket_timeout.tv_sec == 0 && data->socket_timeout.tv_usec == 0) ||
			(data->socket_timeout.tv_sec > timeleft.tv_sec) ||
D
Dr. Stephen Henson 已提交
237
			(data->socket_timeout.tv_sec == timeleft.tv_sec &&
D
Dr. Stephen Henson 已提交
238
			 data->socket_timeout.tv_usec >= timeleft.tv_usec))
D
Dr. Stephen Henson 已提交
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
			{
#ifdef OPENSSL_SYS_WINDOWS
			timeout = timeleft.tv_sec * 1000 + timeleft.tv_usec / 1000;
			if (setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
						   (void*)&timeout, sizeof(timeout)) < 0)
				{ perror("setsockopt"); }
#else
			if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, &timeleft,
							sizeof(struct timeval)) < 0)
				{ perror("setsockopt"); }
#endif
			}
		}
#endif
	}

static void dgram_reset_rcv_timeout(BIO *b)
	{
#if defined(SO_RCVTIMEO)
	bio_dgram_data *data = (bio_dgram_data *)b->ptr;
D
Dr. Stephen Henson 已提交
259 260 261 262

	/* Is a timer active? */
	if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0)
		{
D
Dr. Stephen Henson 已提交
263
#ifdef OPENSSL_SYS_WINDOWS
D
Dr. Stephen Henson 已提交
264 265 266 267 268
		int timeout = data->socket_timeout.tv_sec * 1000 +
					  data->socket_timeout.tv_usec / 1000;
		if (setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
					   (void*)&timeout, sizeof(timeout)) < 0)
			{ perror("setsockopt"); }
D
Dr. Stephen Henson 已提交
269
#else
D
Dr. Stephen Henson 已提交
270 271 272
		if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, &(data->socket_timeout),
						sizeof(struct timeval)) < 0)
			{ perror("setsockopt"); }
D
Dr. Stephen Henson 已提交
273
#endif
D
Dr. Stephen Henson 已提交
274
		}
D
Dr. Stephen Henson 已提交
275 276 277
#endif
	}

B
Ben Laurie 已提交
278 279 280 281 282
static int dgram_read(BIO *b, char *out, int outl)
	{
	int ret=0;
	bio_dgram_data *data = (bio_dgram_data *)b->ptr;

283 284 285 286 287 288 289 290
	struct	{
	/*
	 * See commentary in b_sock.c. <appro>
	 */
	union	{ size_t s; int i; } len;
	union	{
		struct sockaddr sa;
		struct sockaddr_in sa_in;
D
Dr. Stephen Henson 已提交
291
#if OPENSSL_USE_IPV6
292
		struct sockaddr_in6 sa_in6;
D
Dr. Stephen Henson 已提交
293
#endif
294 295 296 297 298
		} peer;
	} sa;

	sa.len.s=0;
	sa.len.i=sizeof(sa.peer);
B
Ben Laurie 已提交
299 300 301 302

	if (out != NULL)
		{
		clear_socket_error();
303
		memset(&sa.peer, 0x00, sizeof(sa.peer));
D
Dr. Stephen Henson 已提交
304
		dgram_adjust_rcv_timeout(b);
305 306 307 308 309 310
		ret=recvfrom(b->num,out,outl,0,&sa.peer.sa,(void *)&sa.len);
		if (sizeof(sa.len.i)!=sizeof(sa.len.s) && sa.len.i==0)
			{
			OPENSSL_assert(sa.len.s<=sizeof(sa.peer));
			sa.len.i = (int)sa.len.s;
			}
B
Ben Laurie 已提交
311

D
Dr. Stephen Henson 已提交
312
		if ( ! data->connected  && ret >= 0)
313
			BIO_ctrl(b, BIO_CTRL_DGRAM_SET_PEER, 0, &sa.peer);
B
Ben Laurie 已提交
314 315

		BIO_clear_retry_flags(b);
D
Dr. Stephen Henson 已提交
316
		if (ret < 0)
B
Ben Laurie 已提交
317 318 319 320 321 322
			{
			if (BIO_dgram_should_retry(ret))
				{
				BIO_set_retry_read(b);
				data->_errno = get_last_socket_error();
				}
D
Dr. Stephen Henson 已提交
323
			}
D
Dr. Stephen Henson 已提交
324 325

		dgram_reset_rcv_timeout(b);
B
Ben Laurie 已提交
326 327 328 329 330 331 332 333 334 335
		}
	return(ret);
	}

static int dgram_write(BIO *b, const char *in, int inl)
	{
	int ret;
	bio_dgram_data *data = (bio_dgram_data *)b->ptr;
	clear_socket_error();

D
Dr. Stephen Henson 已提交
336 337 338
	if ( data->connected )
		ret=writesocket(b->num,in,inl);
	else
339 340 341 342 343
		{
		int peerlen = sizeof(data->peer);

		if (data->peer.sa.sa_family == AF_INET)
			peerlen = sizeof(data->peer.sa_in);
D
Dr. Stephen Henson 已提交
344
#if OPENSSL_USE_IPV6
345 346 347
		else if (data->peer.sa.sa_family == AF_INET6)
			peerlen = sizeof(data->peer.sa_in6);
#endif
D
Dr. Stephen Henson 已提交
348
#if defined(NETWARE_CLIB) && defined(NETWARE_BSDSOCK)
349
		ret=sendto(b->num, (char *)in, inl, 0, &data->peer.sa, peerlen);
D
Dr. Stephen Henson 已提交
350
#else
351
		ret=sendto(b->num, in, inl, 0, &data->peer.sa, peerlen);
D
Dr. Stephen Henson 已提交
352
#endif
353
		}
B
Ben Laurie 已提交
354 355 356 357

	BIO_clear_retry_flags(b);
	if (ret <= 0)
		{
D
Dr. Stephen Henson 已提交
358
		if (BIO_dgram_should_retry(ret))
B
Ben Laurie 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
			{
			BIO_set_retry_write(b);  
			data->_errno = get_last_socket_error();

#if 0 /* higher layers are responsible for querying MTU, if necessary */
			if ( data->_errno == EMSGSIZE)
				/* retrieve the new MTU */
				BIO_ctrl(b, BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
#endif
			}
		}
	return(ret);
	}

static long dgram_ctrl(BIO *b, int cmd, long num, void *ptr)
	{
	long ret=1;
	int *ip;
	struct sockaddr *to = NULL;
	bio_dgram_data *data = NULL;
D
Dr. Stephen Henson 已提交
379
#if defined(IP_MTU_DISCOVER) || defined(IP_MTU)
B
Ben Laurie 已提交
380 381
	long sockopt_val = 0;
	unsigned int sockopt_len = 0;
D
Dr. Stephen Henson 已提交
382
#endif
D
Dr. Stephen Henson 已提交
383 384
#ifdef OPENSSL_SYS_LINUX
	socklen_t addr_len;
385 386 387 388 389 390 391
	union	{
		struct sockaddr	sa;
		struct sockaddr_in s4;
#if OPENSSL_USE_IPV6
		struct sockaddr_in6 s6;
#endif
		} addr;
D
Dr. Stephen Henson 已提交
392
#endif
B
Ben Laurie 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444

	data = (bio_dgram_data *)b->ptr;

	switch (cmd)
		{
	case BIO_CTRL_RESET:
		num=0;
	case BIO_C_FILE_SEEK:
		ret=0;
		break;
	case BIO_C_FILE_TELL:
	case BIO_CTRL_INFO:
		ret=0;
		break;
	case BIO_C_SET_FD:
		dgram_clear(b);
		b->num= *((int *)ptr);
		b->shutdown=(int)num;
		b->init=1;
		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_DUP:
	case BIO_CTRL_FLUSH:
		ret=1;
		break;
	case BIO_CTRL_DGRAM_CONNECT:
		to = (struct sockaddr *)ptr;
#if 0
		if (connect(b->num, to, sizeof(struct sockaddr)) < 0)
			{ perror("connect"); ret = 0; }
		else
			{
#endif
445 446 447 448 449
			switch (to->sa_family)
				{
				case AF_INET:
					memcpy(&data->peer,to,sizeof(data->peer.sa_in));
					break;
D
Dr. Stephen Henson 已提交
450
#if OPENSSL_USE_IPV6
451 452 453
				case AF_INET6:
					memcpy(&data->peer,to,sizeof(data->peer.sa_in6));
					break;
D
Dr. Stephen Henson 已提交
454
#endif
455 456 457 458
				default:
					memcpy(&data->peer,to,sizeof(data->peer.sa));
					break;
				}
B
Ben Laurie 已提交
459 460 461 462 463 464
#if 0
			}
#endif
		break;
		/* (Linux)kernel sets DF bit on outgoing IP packets */
	case BIO_CTRL_DGRAM_MTU_DISCOVER:
D
Dr. Stephen Henson 已提交
465
#ifdef OPENSSL_SYS_LINUX
466 467 468
		addr_len = (socklen_t)sizeof(addr);
		memset((void *)&addr, 0, sizeof(addr));
		if (getsockname(b->num, &addr.sa, &addr_len) < 0)
D
Dr. Stephen Henson 已提交
469 470 471 472 473
			{
			ret = 0;
			break;
			}
		sockopt_len = sizeof(sockopt_val);
474
		switch (addr.sa.sa_family)
D
Dr. Stephen Henson 已提交
475 476 477 478 479 480 481
			{
		case AF_INET:
			sockopt_val = IP_PMTUDISC_DO;
			if ((ret = setsockopt(b->num, IPPROTO_IP, IP_MTU_DISCOVER,
				&sockopt_val, sizeof(sockopt_val))) < 0)
				perror("setsockopt");
			break;
482
#if OPENSSL_USE_IPV6 && defined(IPV6_MTU_DISCOVER)
D
Dr. Stephen Henson 已提交
483 484 485 486 487 488
		case AF_INET6:
			sockopt_val = IPV6_PMTUDISC_DO;
			if ((ret = setsockopt(b->num, IPPROTO_IPV6, IPV6_MTU_DISCOVER,
				&sockopt_val, sizeof(sockopt_val))) < 0)
				perror("setsockopt");
			break;
D
Dr. Stephen Henson 已提交
489
#endif
D
Dr. Stephen Henson 已提交
490 491 492 493 494 495
		default:
			ret = -1;
			break;
			}
		ret = -1;
#else
B
Ben Laurie 已提交
496 497 498
		break;
#endif
	case BIO_CTRL_DGRAM_QUERY_MTU:
D
Dr. Stephen Henson 已提交
499
#ifdef OPENSSL_SYS_LINUX
500 501 502
		addr_len = (socklen_t)sizeof(addr);
		memset((void *)&addr, 0, sizeof(addr));
		if (getsockname(b->num, &addr.sa, &addr_len) < 0)
B
Ben Laurie 已提交
503
			{
D
Dr. Stephen Henson 已提交
504 505 506 507
			ret = 0;
			break;
			}
		sockopt_len = sizeof(sockopt_val);
508
		switch (addr.sa.sa_family)
D
Dr. Stephen Henson 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
			{
		case AF_INET:
			if ((ret = getsockopt(b->num, IPPROTO_IP, IP_MTU, (void *)&sockopt_val,
				&sockopt_len)) < 0 || sockopt_val < 0)
				{
				ret = 0;
				}
			else
				{
				/* we assume that the transport protocol is UDP and no
				 * IP options are used.
				 */
				data->mtu = sockopt_val - 8 - 20;
				ret = data->mtu;
				}
			break;
525
#if OPENSSL_USE_IPV6 && defined(IPV6_MTU)
D
Dr. Stephen Henson 已提交
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
		case AF_INET6:
			if ((ret = getsockopt(b->num, IPPROTO_IPV6, IPV6_MTU, (void *)&sockopt_val,
				&sockopt_len)) < 0 || sockopt_val < 0)
				{
				ret = 0;
				}
			else
				{
				/* we assume that the transport protocol is UDP and no
				 * IPV6 options are used.
				 */
				data->mtu = sockopt_val - 8 - 40;
				ret = data->mtu;
				}
			break;
D
Dr. Stephen Henson 已提交
541
#endif
D
Dr. Stephen Henson 已提交
542 543 544
		default:
			ret = 0;
			break;
B
Ben Laurie 已提交
545
			}
D
Dr. Stephen Henson 已提交
546 547 548
#else
		ret = 0;
#endif
B
Ben Laurie 已提交
549 550 551 552 553
		break;
	case BIO_CTRL_DGRAM_GET_MTU:
		return data->mtu;
		break;
	case BIO_CTRL_DGRAM_SET_MTU:
D
Dr. Stephen Henson 已提交
554 555
		data->mtu = num;
		ret = num;
B
Ben Laurie 已提交
556 557 558 559 560 561 562
		break;
	case BIO_CTRL_DGRAM_SET_CONNECTED:
		to = (struct sockaddr *)ptr;

		if ( to != NULL)
			{
			data->connected = 1;
563 564 565 566 567
			switch (to->sa_family)
				{
				case AF_INET:
					memcpy(&data->peer,to,sizeof(data->peer.sa_in));
					break;
D
Dr. Stephen Henson 已提交
568
#if OPENSSL_USE_IPV6
569 570 571
				case AF_INET6:
					memcpy(&data->peer,to,sizeof(data->peer.sa_in6));
					break;
D
Dr. Stephen Henson 已提交
572
#endif
573 574 575 576
				default:
					memcpy(&data->peer,to,sizeof(data->peer.sa));
					break;
				}
B
Ben Laurie 已提交
577 578 579 580
			}
		else
			{
			data->connected = 0;
581
			memset(&(data->peer), 0x00, sizeof(data->peer));
B
Ben Laurie 已提交
582 583
			}
		break;
D
Dr. Stephen Henson 已提交
584
	case BIO_CTRL_DGRAM_GET_PEER:
585
		switch (data->peer.sa.sa_family)
586 587
			{
			case AF_INET:
588
				ret=sizeof(data->peer.sa_in);
589
				break;
D
Dr. Stephen Henson 已提交
590
#if OPENSSL_USE_IPV6
591
			case AF_INET6:
592
				ret=sizeof(data->peer.sa_in6);
593
				break;
D
Dr. Stephen Henson 已提交
594
#endif
595
			default:
596
				ret=sizeof(data->peer.sa);
597 598
				break;
			}
599 600 601
		if (num==0 || num>ret)
			num=ret;
		memcpy(ptr,&data->peer,(ret=num));
D
Dr. Stephen Henson 已提交
602 603 604
		break;
	case BIO_CTRL_DGRAM_SET_PEER:
		to = (struct sockaddr *) ptr;
605 606 607 608 609
		switch (to->sa_family)
			{
			case AF_INET:
				memcpy(&data->peer,to,sizeof(data->peer.sa_in));
				break;
D
Dr. Stephen Henson 已提交
610
#if OPENSSL_USE_IPV6
611 612 613
			case AF_INET6:
				memcpy(&data->peer,to,sizeof(data->peer.sa_in6));
				break;
D
Dr. Stephen Henson 已提交
614
#endif
615 616 617 618
			default:
				memcpy(&data->peer,to,sizeof(data->peer.sa));
				break;
			}
D
Dr. Stephen Henson 已提交
619
		break;
D
Dr. Stephen Henson 已提交
620
	case BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT:
D
Dr. Stephen Henson 已提交
621
		memcpy(&(data->next_timeout), ptr, sizeof(struct timeval));
D
Dr. Stephen Henson 已提交
622
		break;
U
Ulf Möller 已提交
623
#if defined(SO_RCVTIMEO)
B
Ben Laurie 已提交
624
	case BIO_CTRL_DGRAM_SET_RECV_TIMEOUT:
625 626 627 628
#ifdef OPENSSL_SYS_WINDOWS
		{
		struct timeval *tv = (struct timeval *)ptr;
		int timeout = tv->tv_sec * 1000 + tv->tv_usec/1000;
629
		if (setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
630 631 632 633
			(void*)&timeout, sizeof(timeout)) < 0)
			{ perror("setsockopt"); ret = -1; }
		}
#else
B
Ben Laurie 已提交
634 635 636
		if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, ptr,
			sizeof(struct timeval)) < 0)
			{ perror("setsockopt");	ret = -1; }
637
#endif
B
Ben Laurie 已提交
638 639
		break;
	case BIO_CTRL_DGRAM_GET_RECV_TIMEOUT:
640 641 642 643
#ifdef OPENSSL_SYS_WINDOWS
		{
		int timeout, sz = sizeof(timeout);
		struct timeval *tv = (struct timeval *)ptr;
644 645
		if (getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
			(void*)&timeout, &sz) < 0)
646 647 648 649 650 651 652 653 654
			{ perror("getsockopt"); ret = -1; }
		else
			{
			tv->tv_sec = timeout / 1000;
			tv->tv_usec = (timeout % 1000) * 1000;
			ret = sizeof(*tv);
			}
		}
#else
B
Ben Laurie 已提交
655
		if ( getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, 
656
			ptr, (void *)&ret) < 0)
B
Ben Laurie 已提交
657
			{ perror("getsockopt"); ret = -1; }
658
#endif
B
Ben Laurie 已提交
659
		break;
U
Ulf Möller 已提交
660 661
#endif
#if defined(SO_SNDTIMEO)
B
Ben Laurie 已提交
662
	case BIO_CTRL_DGRAM_SET_SEND_TIMEOUT:
663 664 665 666
#ifdef OPENSSL_SYS_WINDOWS
		{
		struct timeval *tv = (struct timeval *)ptr;
		int timeout = tv->tv_sec * 1000 + tv->tv_usec/1000;
667
		if (setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO,
668 669 670 671
			(void*)&timeout, sizeof(timeout)) < 0)
			{ perror("setsockopt"); ret = -1; }
		}
#else
B
Ben Laurie 已提交
672 673 674
		if ( setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, ptr,
			sizeof(struct timeval)) < 0)
			{ perror("setsockopt");	ret = -1; }
675
#endif
B
Ben Laurie 已提交
676 677
		break;
	case BIO_CTRL_DGRAM_GET_SEND_TIMEOUT:
678 679 680 681
#ifdef OPENSSL_SYS_WINDOWS
		{
		int timeout, sz = sizeof(timeout);
		struct timeval *tv = (struct timeval *)ptr;
682 683
		if (getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO,
			(void*)&timeout, &sz) < 0)
684 685 686 687 688 689 690 691 692
			{ perror("getsockopt"); ret = -1; }
		else
			{
			tv->tv_sec = timeout / 1000;
			tv->tv_usec = (timeout % 1000) * 1000;
			ret = sizeof(*tv);
			}
		}
#else
B
Ben Laurie 已提交
693
		if ( getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, 
694
			ptr, (void *)&ret) < 0)
B
Ben Laurie 已提交
695
			{ perror("getsockopt"); ret = -1; }
696
#endif
B
Ben Laurie 已提交
697
		break;
U
Ulf Möller 已提交
698
#endif
B
Ben Laurie 已提交
699 700 701
	case BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP:
		/* fall-through */
	case BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP:
702
#ifdef OPENSSL_SYS_WINDOWS
703
		if ( data->_errno == WSAETIMEDOUT)
704
#else
B
Ben Laurie 已提交
705
		if ( data->_errno == EAGAIN)
706
#endif
B
Ben Laurie 已提交
707 708 709 710 711 712 713
			{
			ret = 1;
			data->_errno = 0;
			}
		else
			ret = 0;
		break;
714
#ifdef EMSGSIZE
B
Ben Laurie 已提交
715 716 717 718 719 720 721 722 723
	case BIO_CTRL_DGRAM_MTU_EXCEEDED:
		if ( data->_errno == EMSGSIZE)
			{
			ret = 1;
			data->_errno = 0;
			}
		else
			ret = 0;
		break;
724
#endif
B
Ben Laurie 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
	default:
		ret=0;
		break;
		}
	return(ret);
	}

static int dgram_puts(BIO *bp, const char *str)
	{
	int n,ret;

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

741
static int BIO_dgram_should_retry(int i)
B
Ben Laurie 已提交
742 743 744 745 746 747 748
	{
	int err;

	if ((i == 0) || (i == -1))
		{
		err=get_last_socket_error();

D
Dr. Stephen Henson 已提交
749 750 751 752 753 754 755
#if defined(OPENSSL_SYS_WINDOWS)
	/* If the socket return value (i) is -1
	 * and err is unexpectedly 0 at this point,
	 * the error code was overwritten by
	 * another system call before this error
	 * handling is called.
	 */
B
Ben Laurie 已提交
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
#endif

		return(BIO_dgram_non_fatal_error(err));
		}
	return(0);
	}

int BIO_dgram_non_fatal_error(int err)
	{
	switch (err)
		{
#if defined(OPENSSL_SYS_WINDOWS)
# if defined(WSAEWOULDBLOCK)
	case WSAEWOULDBLOCK:
# endif

# if 0 /* This appears to always be an error */
#  if defined(WSAENOTCONN)
	case WSAENOTCONN:
#  endif
# endif
#endif

#ifdef EWOULDBLOCK
# ifdef WSAEWOULDBLOCK
#  if WSAEWOULDBLOCK != EWOULDBLOCK
	case EWOULDBLOCK:
#  endif
# else
	case EWOULDBLOCK:
# endif
#endif

#ifdef EINTR
	case EINTR:
#endif

#ifdef EAGAIN
#if EWOULDBLOCK != EAGAIN
	case EAGAIN:
# endif
#endif

#ifdef EPROTO
	case EPROTO:
#endif

#ifdef EINPROGRESS
	case EINPROGRESS:
#endif

#ifdef EALREADY
	case EALREADY:
#endif

		return(1);
		/* break; */
	default:
		break;
		}
	return(0);
	}
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834

static void get_current_time(struct timeval *t)
	{
#ifdef OPENSSL_SYS_WIN32
	struct _timeb tb;
	_ftime(&tb);
	t->tv_sec = (long)tb.time;
	t->tv_usec = (long)tb.millitm * 1000;
#elif defined(OPENSSL_SYS_VMS)
	struct timeb tb;
	ftime(&tb);
	t->tv_sec = (long)tb.time;
	t->tv_usec = (long)tb.millitm * 1000;
#else
	gettimeofday(t, NULL);
#endif
	}
D
Dr. Stephen Henson 已提交
835 836

#endif