Update contrib.
1 /* crypto/bio/bio_dgram.c */
3 * DTLS implementation written by Nagendra Modadugu
4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
6 /* ====================================================================
7 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
61 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
64 #ifndef OPENSSL_NO_DGRAM
71 #include <openssl/bio.h>
72 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
73 #include "libcrypto_wsd_macros.h"
74 #include "libcrypto_wsd.h"
77 #define IP_MTU 14 /* linux is lame */
80 #define sock_write SockWrite /* Watt-32 uses same names */
81 #define sock_read SockRead
82 #define sock_puts SockPuts
85 static int dgram_write(BIO *h, const char *buf, int num);
86 static int dgram_read(BIO *h, char *buf, int size);
87 static int dgram_puts(BIO *h, const char *str);
88 static long dgram_ctrl(BIO *h, int cmd, long arg1, void *arg2);
89 static int dgram_new(BIO *h);
90 static int dgram_free(BIO *data);
91 static int dgram_clear(BIO *bio);
93 int BIO_dgram_should_retry(int s);
96 static BIO_METHOD methods_dgramp=
103 NULL, /* dgram_gets, */
110 GET_STATIC_VAR_FROM_TLS(methods_dgramp,bss_dgram,BIO_METHOD)
111 #define methods_dgramp (*GET_WSD_VAR_NAME(methods_dgramp,bss_dgram,s)())
112 const BIO_METHOD temp_s_methods_dgramp=
119 NULL, /* dgram_gets, */
128 typedef struct bio_dgram_data_st
130 struct sockaddr peer;
131 unsigned int connected;
136 EXPORT_C BIO_METHOD *BIO_s_datagram(void)
138 return(&methods_dgramp);
141 EXPORT_C BIO *BIO_new_dgram(int fd, int close_flag)
145 ret=BIO_new(BIO_s_datagram());
146 if (ret == NULL) return(NULL);
147 BIO_set_fd(ret,fd,close_flag);
151 static int dgram_new(BIO *bi)
153 bio_dgram_data *data = NULL;
157 data = OPENSSL_malloc(sizeof(bio_dgram_data));
160 memset(data, 0x00, sizeof(bio_dgram_data));
167 static int dgram_free(BIO *a)
169 bio_dgram_data *data;
171 if (a == NULL) return(0);
172 if ( ! dgram_clear(a))
175 data = (bio_dgram_data *)a->ptr;
176 if(data != NULL) OPENSSL_free(data);
181 static int dgram_clear(BIO *a)
183 if (a == NULL) return(0);
196 static int dgram_read(BIO *b, char *out, int outl)
199 bio_dgram_data *data = (bio_dgram_data *)b->ptr;
201 struct sockaddr peer;
202 int peerlen = sizeof(peer);
206 clear_socket_error();
207 memset(&peer, 0x00, peerlen);
208 /* Last arg in recvfrom is signed on some platforms and
209 * unsigned on others. It is of type socklen_t on some
210 * but this is not universal. Cast to (void *) to avoid
213 ret=recvfrom(b->num,out,outl,0,&peer,(void *)&peerlen);
215 if ( ! data->connected && ret > 0)
216 BIO_ctrl(b, BIO_CTRL_DGRAM_CONNECT, 0, &peer);
218 BIO_clear_retry_flags(b);
221 if (BIO_dgram_should_retry(ret))
223 BIO_set_retry_read(b);
224 data->_errno = get_last_socket_error();
231 static int dgram_write(BIO *b, const char *in, int inl)
234 bio_dgram_data *data = (bio_dgram_data *)b->ptr;
235 clear_socket_error();
237 if ( data->connected )
238 ret=send(b->num,in,inl,0);
240 ret=sendto(b->num, in, inl, 0, &data->peer, sizeof(data->peer));
242 BIO_clear_retry_flags(b);
245 if (BIO_sock_should_retry(ret))
247 BIO_set_retry_write(b);
248 data->_errno = get_last_socket_error();
250 #if 0 /* higher layers are responsible for querying MTU, if necessary */
251 if ( data->_errno == EMSGSIZE)
252 /* retrieve the new MTU */
253 BIO_ctrl(b, BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
260 static long dgram_ctrl(BIO *b, int cmd, long num, void *ptr)
264 struct sockaddr *to = NULL;
265 bio_dgram_data *data = NULL;
266 long sockopt_val = 0;
267 unsigned int sockopt_len = 0;
269 data = (bio_dgram_data *)b->ptr;
275 case BIO_C_FILE_SEEK:
278 case BIO_C_FILE_TELL:
284 b->num= *((int *)ptr);
285 b->shutdown=(int)num;
292 if (ip != NULL) *ip=b->num;
298 case BIO_CTRL_GET_CLOSE:
301 case BIO_CTRL_SET_CLOSE:
302 b->shutdown=(int)num;
304 case BIO_CTRL_PENDING:
305 case BIO_CTRL_WPENDING:
312 case BIO_CTRL_DGRAM_CONNECT:
313 to = (struct sockaddr *)ptr;
315 if (connect(b->num, to, sizeof(struct sockaddr)) < 0)
316 { perror("connect"); ret = 0; }
320 memcpy(&(data->peer),to, sizeof(struct sockaddr));
325 /* (Linux)kernel sets DF bit on outgoing IP packets */
326 #ifdef IP_MTU_DISCOVER
327 case BIO_CTRL_DGRAM_MTU_DISCOVER:
328 sockopt_val = IP_PMTUDISC_DO;
329 if ((ret = setsockopt(b->num, IPPROTO_IP, IP_MTU_DISCOVER,
330 &sockopt_val, sizeof(sockopt_val))) < 0)
331 perror("setsockopt");
334 case BIO_CTRL_DGRAM_QUERY_MTU:
335 sockopt_len = sizeof(sockopt_val);
336 if ((ret = getsockopt(b->num, IPPROTO_IP, IP_MTU, (void *)&sockopt_val,
337 &sockopt_len)) < 0 || sockopt_val < 0)
341 data->mtu = sockopt_val;
345 case BIO_CTRL_DGRAM_GET_MTU:
348 case BIO_CTRL_DGRAM_SET_MTU:
352 case BIO_CTRL_DGRAM_SET_CONNECTED:
353 to = (struct sockaddr *)ptr;
358 memcpy(&(data->peer),to, sizeof(struct sockaddr));
363 memset(&(data->peer), 0x00, sizeof(struct sockaddr));
366 case BIO_CTRL_DGRAM_SET_PEER:
367 to = (struct sockaddr *) ptr;
369 memcpy(&(data->peer), to, sizeof(struct sockaddr));
371 case BIO_CTRL_DGRAM_SET_RECV_TIMEOUT:
372 if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, ptr,
373 sizeof(struct timeval)) < 0)
374 { perror("setsockopt"); ret = -1; }
376 case BIO_CTRL_DGRAM_GET_RECV_TIMEOUT:
377 if ( getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO,
378 ptr, (void *)&ret) < 0)
379 { perror("getsockopt"); ret = -1; }
381 case BIO_CTRL_DGRAM_SET_SEND_TIMEOUT:
382 if ( setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, ptr,
383 sizeof(struct timeval)) < 0)
384 { perror("setsockopt"); ret = -1; }
386 case BIO_CTRL_DGRAM_GET_SEND_TIMEOUT:
387 if ( getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO,
388 ptr, (void *)&ret) < 0)
389 { perror("getsockopt"); ret = -1; }
391 case BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP:
393 case BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP:
394 if ( data->_errno == EAGAIN)
403 case BIO_CTRL_DGRAM_MTU_EXCEEDED:
404 if ( data->_errno == EMSGSIZE)
420 static int dgram_puts(BIO *bp, const char *str)
425 ret=dgram_write(bp,str,n);
429 int BIO_dgram_should_retry(int i)
433 if ((i == 0) || (i == -1))
435 err=get_last_socket_error();
437 #if defined(OPENSSL_SYS_WINDOWS) && 0 /* more microsoft stupidity? perhaps not? Ben 4/1/99 */
438 if ((i == -1) && (err == 0))
442 return(BIO_dgram_non_fatal_error(err));
447 EXPORT_C int BIO_dgram_non_fatal_error(int err)
451 #if defined(OPENSSL_SYS_WINDOWS)
452 # if defined(WSAEWOULDBLOCK)
456 # if 0 /* This appears to always be an error */
457 # if defined(WSAENOTCONN)
464 # ifdef WSAEWOULDBLOCK
465 # if WSAEWOULDBLOCK != EWOULDBLOCK
473 #if defined(ENOTCONN)
482 #if EWOULDBLOCK != EAGAIN
499 /* DF bit set, and packet larger than MTU */