diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bss_dgram.c')
| -rw-r--r-- | src/lib/libcrypto/bio/bss_dgram.c | 488 |
1 files changed, 488 insertions, 0 deletions
diff --git a/src/lib/libcrypto/bio/bss_dgram.c b/src/lib/libcrypto/bio/bss_dgram.c new file mode 100644 index 0000000000..ea2c3fff63 --- /dev/null +++ b/src/lib/libcrypto/bio/bss_dgram.c | |||
| @@ -0,0 +1,488 @@ | |||
| 1 | /* crypto/bio/bio_dgram.c */ | ||
| 2 | /* | ||
| 3 | * DTLS implementation written by Nagendra Modadugu | ||
| 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | ||
| 5 | */ | ||
| 6 | /* ==================================================================== | ||
| 7 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. | ||
| 8 | * | ||
| 9 | * Redistribution and use in source and binary forms, with or without | ||
| 10 | * modification, are permitted provided that the following conditions | ||
| 11 | * are met: | ||
| 12 | * | ||
| 13 | * 1. Redistributions of source code must retain the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer. | ||
| 15 | * | ||
| 16 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 17 | * notice, this list of conditions and the following disclaimer in | ||
| 18 | * the documentation and/or other materials provided with the | ||
| 19 | * distribution. | ||
| 20 | * | ||
| 21 | * 3. All advertising materials mentioning features or use of this | ||
| 22 | * software must display the following acknowledgment: | ||
| 23 | * "This product includes software developed by the OpenSSL Project | ||
| 24 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
| 25 | * | ||
| 26 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
| 27 | * endorse or promote products derived from this software without | ||
| 28 | * prior written permission. For written permission, please contact | ||
| 29 | * openssl-core@OpenSSL.org. | ||
| 30 | * | ||
| 31 | * 5. Products derived from this software may not be called "OpenSSL" | ||
| 32 | * nor may "OpenSSL" appear in their names without prior written | ||
| 33 | * permission of the OpenSSL Project. | ||
| 34 | * | ||
| 35 | * 6. Redistributions of any form whatsoever must retain the following | ||
| 36 | * acknowledgment: | ||
| 37 | * "This product includes software developed by the OpenSSL Project | ||
| 38 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
| 39 | * | ||
| 40 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
| 41 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
| 43 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
| 44 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| 45 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 46 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 47 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
| 49 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
| 50 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
| 51 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 52 | * ==================================================================== | ||
| 53 | * | ||
| 54 | * This product includes cryptographic software written by Eric Young | ||
| 55 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
| 56 | * Hudson (tjh@cryptsoft.com). | ||
| 57 | * | ||
| 58 | */ | ||
| 59 | |||
| 60 | #ifndef OPENSSL_NO_DGRAM | ||
| 61 | |||
| 62 | #include <stdio.h> | ||
| 63 | #include <errno.h> | ||
| 64 | #define USE_SOCKETS | ||
| 65 | #include "cryptlib.h" | ||
| 66 | |||
| 67 | #include <openssl/bio.h> | ||
| 68 | |||
| 69 | #define IP_MTU 14 /* linux is lame */ | ||
| 70 | |||
| 71 | #ifdef WATT32 | ||
| 72 | #define sock_write SockWrite /* Watt-32 uses same names */ | ||
| 73 | #define sock_read SockRead | ||
| 74 | #define sock_puts SockPuts | ||
| 75 | #endif | ||
| 76 | |||
| 77 | static int dgram_write(BIO *h, const char *buf, int num); | ||
| 78 | static int dgram_read(BIO *h, char *buf, int size); | ||
| 79 | static int dgram_puts(BIO *h, const char *str); | ||
| 80 | static long dgram_ctrl(BIO *h, int cmd, long arg1, void *arg2); | ||
| 81 | static int dgram_new(BIO *h); | ||
| 82 | static int dgram_free(BIO *data); | ||
| 83 | static int dgram_clear(BIO *bio); | ||
| 84 | |||
| 85 | int BIO_dgram_should_retry(int s); | ||
| 86 | |||
| 87 | static BIO_METHOD methods_dgramp= | ||
| 88 | { | ||
| 89 | BIO_TYPE_DGRAM, | ||
| 90 | "datagram socket", | ||
| 91 | dgram_write, | ||
| 92 | dgram_read, | ||
| 93 | dgram_puts, | ||
| 94 | NULL, /* dgram_gets, */ | ||
| 95 | dgram_ctrl, | ||
| 96 | dgram_new, | ||
| 97 | dgram_free, | ||
| 98 | NULL, | ||
| 99 | }; | ||
| 100 | |||
| 101 | typedef struct bio_dgram_data_st | ||
| 102 | { | ||
| 103 | struct sockaddr peer; | ||
| 104 | unsigned int connected; | ||
| 105 | unsigned int _errno; | ||
| 106 | unsigned int mtu; | ||
| 107 | } bio_dgram_data; | ||
| 108 | |||
| 109 | BIO_METHOD *BIO_s_datagram(void) | ||
| 110 | { | ||
| 111 | return(&methods_dgramp); | ||
| 112 | } | ||
| 113 | |||
| 114 | BIO *BIO_new_dgram(int fd, int close_flag) | ||
| 115 | { | ||
| 116 | BIO *ret; | ||
| 117 | |||
| 118 | ret=BIO_new(BIO_s_datagram()); | ||
| 119 | if (ret == NULL) return(NULL); | ||
| 120 | BIO_set_fd(ret,fd,close_flag); | ||
| 121 | return(ret); | ||
| 122 | } | ||
| 123 | |||
| 124 | static int dgram_new(BIO *bi) | ||
| 125 | { | ||
| 126 | bio_dgram_data *data = NULL; | ||
| 127 | |||
| 128 | bi->init=0; | ||
| 129 | bi->num=0; | ||
| 130 | data = OPENSSL_malloc(sizeof(bio_dgram_data)); | ||
| 131 | if (data == NULL) | ||
| 132 | return 0; | ||
| 133 | memset(data, 0x00, sizeof(bio_dgram_data)); | ||
| 134 | bi->ptr = data; | ||
| 135 | |||
| 136 | bi->flags=0; | ||
| 137 | return(1); | ||
| 138 | } | ||
| 139 | |||
| 140 | static int dgram_free(BIO *a) | ||
| 141 | { | ||
| 142 | bio_dgram_data *data; | ||
| 143 | |||
| 144 | if (a == NULL) return(0); | ||
| 145 | if ( ! dgram_clear(a)) | ||
| 146 | return 0; | ||
| 147 | |||
| 148 | data = (bio_dgram_data *)a->ptr; | ||
| 149 | if(data != NULL) OPENSSL_free(data); | ||
| 150 | |||
| 151 | return(1); | ||
| 152 | } | ||
| 153 | |||
| 154 | static int dgram_clear(BIO *a) | ||
| 155 | { | ||
| 156 | if (a == NULL) return(0); | ||
| 157 | if (a->shutdown) | ||
| 158 | { | ||
| 159 | if (a->init) | ||
| 160 | { | ||
| 161 | SHUTDOWN2(a->num); | ||
| 162 | } | ||
| 163 | a->init=0; | ||
| 164 | a->flags=0; | ||
| 165 | } | ||
| 166 | return(1); | ||
| 167 | } | ||
| 168 | |||
| 169 | static int dgram_read(BIO *b, char *out, int outl) | ||
| 170 | { | ||
| 171 | int ret=0; | ||
| 172 | bio_dgram_data *data = (bio_dgram_data *)b->ptr; | ||
| 173 | |||
| 174 | struct sockaddr peer; | ||
| 175 | int peerlen = sizeof(peer); | ||
| 176 | |||
| 177 | if (out != NULL) | ||
| 178 | { | ||
| 179 | clear_socket_error(); | ||
| 180 | memset(&peer, 0x00, peerlen); | ||
| 181 | /* Last arg in recvfrom is signed on some platforms and | ||
| 182 | * unsigned on others. It is of type socklen_t on some | ||
| 183 | * but this is not universal. Cast to (void *) to avoid | ||
| 184 | * compiler warnings. | ||
| 185 | */ | ||
| 186 | ret=recvfrom(b->num,out,outl,0,&peer,(void *)&peerlen); | ||
| 187 | |||
| 188 | if ( ! data->connected && ret > 0) | ||
| 189 | BIO_ctrl(b, BIO_CTRL_DGRAM_CONNECT, 0, &peer); | ||
| 190 | |||
| 191 | BIO_clear_retry_flags(b); | ||
| 192 | if (ret <= 0) | ||
| 193 | { | ||
| 194 | if (BIO_dgram_should_retry(ret)) | ||
| 195 | { | ||
| 196 | BIO_set_retry_read(b); | ||
| 197 | data->_errno = get_last_socket_error(); | ||
| 198 | } | ||
| 199 | } | ||
| 200 | } | ||
| 201 | return(ret); | ||
| 202 | } | ||
| 203 | |||
| 204 | static int dgram_write(BIO *b, const char *in, int inl) | ||
| 205 | { | ||
| 206 | int ret; | ||
| 207 | bio_dgram_data *data = (bio_dgram_data *)b->ptr; | ||
| 208 | clear_socket_error(); | ||
| 209 | |||
| 210 | if ( data->connected ) | ||
| 211 | ret=writesocket(b->num,in,inl); | ||
| 212 | else | ||
| 213 | #if defined(NETWARE_CLIB) && defined(NETWARE_BSDSOCK) | ||
| 214 | ret=sendto(b->num, (char *)in, inl, 0, &data->peer, sizeof(data->peer)); | ||
| 215 | #else | ||
| 216 | ret=sendto(b->num, in, inl, 0, &data->peer, sizeof(data->peer)); | ||
| 217 | #endif | ||
| 218 | |||
| 219 | BIO_clear_retry_flags(b); | ||
| 220 | if (ret <= 0) | ||
| 221 | { | ||
| 222 | if (BIO_sock_should_retry(ret)) | ||
| 223 | { | ||
| 224 | BIO_set_retry_write(b); | ||
| 225 | data->_errno = get_last_socket_error(); | ||
| 226 | |||
| 227 | #if 0 /* higher layers are responsible for querying MTU, if necessary */ | ||
| 228 | if ( data->_errno == EMSGSIZE) | ||
| 229 | /* retrieve the new MTU */ | ||
| 230 | BIO_ctrl(b, BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); | ||
| 231 | #endif | ||
| 232 | } | ||
| 233 | } | ||
| 234 | return(ret); | ||
| 235 | } | ||
| 236 | |||
| 237 | static long dgram_ctrl(BIO *b, int cmd, long num, void *ptr) | ||
| 238 | { | ||
| 239 | long ret=1; | ||
| 240 | int *ip; | ||
| 241 | struct sockaddr *to = NULL; | ||
| 242 | bio_dgram_data *data = NULL; | ||
| 243 | long sockopt_val = 0; | ||
| 244 | unsigned int sockopt_len = 0; | ||
| 245 | |||
| 246 | data = (bio_dgram_data *)b->ptr; | ||
| 247 | |||
| 248 | switch (cmd) | ||
| 249 | { | ||
| 250 | case BIO_CTRL_RESET: | ||
| 251 | num=0; | ||
| 252 | case BIO_C_FILE_SEEK: | ||
| 253 | ret=0; | ||
| 254 | break; | ||
| 255 | case BIO_C_FILE_TELL: | ||
| 256 | case BIO_CTRL_INFO: | ||
| 257 | ret=0; | ||
| 258 | break; | ||
| 259 | case BIO_C_SET_FD: | ||
| 260 | dgram_clear(b); | ||
| 261 | b->num= *((int *)ptr); | ||
| 262 | b->shutdown=(int)num; | ||
| 263 | b->init=1; | ||
| 264 | break; | ||
| 265 | case BIO_C_GET_FD: | ||
| 266 | if (b->init) | ||
| 267 | { | ||
| 268 | ip=(int *)ptr; | ||
| 269 | if (ip != NULL) *ip=b->num; | ||
| 270 | ret=b->num; | ||
| 271 | } | ||
| 272 | else | ||
| 273 | ret= -1; | ||
| 274 | break; | ||
| 275 | case BIO_CTRL_GET_CLOSE: | ||
| 276 | ret=b->shutdown; | ||
| 277 | break; | ||
| 278 | case BIO_CTRL_SET_CLOSE: | ||
| 279 | b->shutdown=(int)num; | ||
| 280 | break; | ||
| 281 | case BIO_CTRL_PENDING: | ||
| 282 | case BIO_CTRL_WPENDING: | ||
| 283 | ret=0; | ||
| 284 | break; | ||
| 285 | case BIO_CTRL_DUP: | ||
| 286 | case BIO_CTRL_FLUSH: | ||
| 287 | ret=1; | ||
| 288 | break; | ||
| 289 | case BIO_CTRL_DGRAM_CONNECT: | ||
| 290 | to = (struct sockaddr *)ptr; | ||
| 291 | #if 0 | ||
| 292 | if (connect(b->num, to, sizeof(struct sockaddr)) < 0) | ||
| 293 | { perror("connect"); ret = 0; } | ||
| 294 | else | ||
| 295 | { | ||
| 296 | #endif | ||
| 297 | memcpy(&(data->peer),to, sizeof(struct sockaddr)); | ||
| 298 | #if 0 | ||
| 299 | } | ||
| 300 | #endif | ||
| 301 | break; | ||
| 302 | /* (Linux)kernel sets DF bit on outgoing IP packets */ | ||
| 303 | #ifdef IP_MTU_DISCOVER | ||
| 304 | case BIO_CTRL_DGRAM_MTU_DISCOVER: | ||
| 305 | sockopt_val = IP_PMTUDISC_DO; | ||
| 306 | if ((ret = setsockopt(b->num, IPPROTO_IP, IP_MTU_DISCOVER, | ||
| 307 | &sockopt_val, sizeof(sockopt_val))) < 0) | ||
| 308 | perror("setsockopt"); | ||
| 309 | break; | ||
| 310 | #endif | ||
| 311 | case BIO_CTRL_DGRAM_QUERY_MTU: | ||
| 312 | sockopt_len = sizeof(sockopt_val); | ||
| 313 | if ((ret = getsockopt(b->num, IPPROTO_IP, IP_MTU, (void *)&sockopt_val, | ||
| 314 | &sockopt_len)) < 0 || sockopt_val < 0) | ||
| 315 | { ret = 0; } | ||
| 316 | else | ||
| 317 | { | ||
| 318 | data->mtu = sockopt_val; | ||
| 319 | ret = data->mtu; | ||
| 320 | } | ||
| 321 | break; | ||
| 322 | case BIO_CTRL_DGRAM_GET_MTU: | ||
| 323 | return data->mtu; | ||
| 324 | break; | ||
| 325 | case BIO_CTRL_DGRAM_SET_MTU: | ||
| 326 | data->mtu = num; | ||
| 327 | ret = num; | ||
| 328 | break; | ||
| 329 | case BIO_CTRL_DGRAM_SET_CONNECTED: | ||
| 330 | to = (struct sockaddr *)ptr; | ||
| 331 | |||
| 332 | if ( to != NULL) | ||
| 333 | { | ||
| 334 | data->connected = 1; | ||
| 335 | memcpy(&(data->peer),to, sizeof(struct sockaddr)); | ||
| 336 | } | ||
| 337 | else | ||
| 338 | { | ||
| 339 | data->connected = 0; | ||
| 340 | memset(&(data->peer), 0x00, sizeof(struct sockaddr)); | ||
| 341 | } | ||
| 342 | break; | ||
| 343 | case BIO_CTRL_DGRAM_SET_PEER: | ||
| 344 | to = (struct sockaddr *) ptr; | ||
| 345 | |||
| 346 | memcpy(&(data->peer), to, sizeof(struct sockaddr)); | ||
| 347 | break; | ||
| 348 | case BIO_CTRL_DGRAM_SET_RECV_TIMEOUT: | ||
| 349 | if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, ptr, | ||
| 350 | sizeof(struct timeval)) < 0) | ||
| 351 | { perror("setsockopt"); ret = -1; } | ||
| 352 | break; | ||
| 353 | case BIO_CTRL_DGRAM_GET_RECV_TIMEOUT: | ||
| 354 | if ( getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, | ||
| 355 | ptr, (void *)&ret) < 0) | ||
| 356 | { perror("getsockopt"); ret = -1; } | ||
| 357 | break; | ||
| 358 | case BIO_CTRL_DGRAM_SET_SEND_TIMEOUT: | ||
| 359 | if ( setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, ptr, | ||
| 360 | sizeof(struct timeval)) < 0) | ||
| 361 | { perror("setsockopt"); ret = -1; } | ||
| 362 | break; | ||
| 363 | case BIO_CTRL_DGRAM_GET_SEND_TIMEOUT: | ||
| 364 | if ( getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, | ||
| 365 | ptr, (void *)&ret) < 0) | ||
| 366 | { perror("getsockopt"); ret = -1; } | ||
| 367 | break; | ||
| 368 | case BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP: | ||
| 369 | /* fall-through */ | ||
| 370 | case BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP: | ||
| 371 | if ( data->_errno == EAGAIN) | ||
| 372 | { | ||
| 373 | ret = 1; | ||
| 374 | data->_errno = 0; | ||
| 375 | } | ||
| 376 | else | ||
| 377 | ret = 0; | ||
| 378 | break; | ||
| 379 | #ifdef EMSGSIZE | ||
| 380 | case BIO_CTRL_DGRAM_MTU_EXCEEDED: | ||
| 381 | if ( data->_errno == EMSGSIZE) | ||
| 382 | { | ||
| 383 | ret = 1; | ||
| 384 | data->_errno = 0; | ||
| 385 | } | ||
| 386 | else | ||
| 387 | ret = 0; | ||
| 388 | break; | ||
| 389 | #endif | ||
| 390 | default: | ||
| 391 | ret=0; | ||
| 392 | break; | ||
| 393 | } | ||
| 394 | return(ret); | ||
| 395 | } | ||
| 396 | |||
| 397 | static int dgram_puts(BIO *bp, const char *str) | ||
| 398 | { | ||
| 399 | int n,ret; | ||
| 400 | |||
| 401 | n=strlen(str); | ||
| 402 | ret=dgram_write(bp,str,n); | ||
| 403 | return(ret); | ||
| 404 | } | ||
| 405 | |||
| 406 | int BIO_dgram_should_retry(int i) | ||
| 407 | { | ||
| 408 | int err; | ||
| 409 | |||
| 410 | if ((i == 0) || (i == -1)) | ||
| 411 | { | ||
| 412 | err=get_last_socket_error(); | ||
| 413 | |||
| 414 | #if defined(OPENSSL_SYS_WINDOWS) && 0 /* more microsoft stupidity? perhaps not? Ben 4/1/99 */ | ||
| 415 | if ((i == -1) && (err == 0)) | ||
| 416 | return(1); | ||
| 417 | #endif | ||
| 418 | |||
| 419 | return(BIO_dgram_non_fatal_error(err)); | ||
| 420 | } | ||
| 421 | return(0); | ||
| 422 | } | ||
| 423 | |||
| 424 | int BIO_dgram_non_fatal_error(int err) | ||
| 425 | { | ||
| 426 | switch (err) | ||
| 427 | { | ||
| 428 | #if defined(OPENSSL_SYS_WINDOWS) | ||
| 429 | # if defined(WSAEWOULDBLOCK) | ||
| 430 | case WSAEWOULDBLOCK: | ||
| 431 | # endif | ||
| 432 | |||
| 433 | # if 0 /* This appears to always be an error */ | ||
| 434 | # if defined(WSAENOTCONN) | ||
| 435 | case WSAENOTCONN: | ||
| 436 | # endif | ||
| 437 | # endif | ||
| 438 | #endif | ||
| 439 | |||
| 440 | #ifdef EWOULDBLOCK | ||
| 441 | # ifdef WSAEWOULDBLOCK | ||
| 442 | # if WSAEWOULDBLOCK != EWOULDBLOCK | ||
| 443 | case EWOULDBLOCK: | ||
| 444 | # endif | ||
| 445 | # else | ||
| 446 | case EWOULDBLOCK: | ||
| 447 | # endif | ||
| 448 | #endif | ||
| 449 | |||
| 450 | #if defined(ENOTCONN) | ||
| 451 | case ENOTCONN: | ||
| 452 | #endif | ||
| 453 | |||
| 454 | #ifdef EINTR | ||
| 455 | case EINTR: | ||
| 456 | #endif | ||
| 457 | |||
| 458 | #ifdef EAGAIN | ||
| 459 | #if EWOULDBLOCK != EAGAIN | ||
| 460 | case EAGAIN: | ||
| 461 | # endif | ||
| 462 | #endif | ||
| 463 | |||
| 464 | #ifdef EPROTO | ||
| 465 | case EPROTO: | ||
| 466 | #endif | ||
| 467 | |||
| 468 | #ifdef EINPROGRESS | ||
| 469 | case EINPROGRESS: | ||
| 470 | #endif | ||
| 471 | |||
| 472 | #ifdef EALREADY | ||
| 473 | case EALREADY: | ||
| 474 | #endif | ||
| 475 | |||
| 476 | /* DF bit set, and packet larger than MTU */ | ||
| 477 | #ifdef EMSGSIZE | ||
| 478 | case EMSGSIZE: | ||
| 479 | #endif | ||
| 480 | |||
| 481 | return(1); | ||
| 482 | /* break; */ | ||
| 483 | default: | ||
| 484 | break; | ||
| 485 | } | ||
| 486 | return(0); | ||
| 487 | } | ||
| 488 | #endif | ||
