Add BeOS support.
[openssl.git] / crypto / bio / bss_dgram.c
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 static 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=send(b->num,in,inl,0);
212     else
213         ret=sendto(b->num, in, inl, 0, &data->peer, sizeof(data->peer));
214
215         BIO_clear_retry_flags(b);
216         if (ret <= 0)
217                 {
218                 if (BIO_sock_should_retry(ret))
219                         {
220                         BIO_set_retry_write(b);  
221                         data->_errno = get_last_socket_error();
222
223 #if 0 /* higher layers are responsible for querying MTU, if necessary */
224                         if ( data->_errno == EMSGSIZE)
225                                 /* retrieve the new MTU */
226                                 BIO_ctrl(b, BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
227 #endif
228                         }
229                 }
230         return(ret);
231         }
232
233 static long dgram_ctrl(BIO *b, int cmd, long num, void *ptr)
234         {
235         long ret=1;
236         int *ip;
237         struct sockaddr *to = NULL;
238         bio_dgram_data *data = NULL;
239         long sockopt_val = 0;
240         unsigned int sockopt_len = 0;
241
242         data = (bio_dgram_data *)b->ptr;
243
244         switch (cmd)
245                 {
246         case BIO_CTRL_RESET:
247                 num=0;
248         case BIO_C_FILE_SEEK:
249                 ret=0;
250                 break;
251         case BIO_C_FILE_TELL:
252         case BIO_CTRL_INFO:
253                 ret=0;
254                 break;
255         case BIO_C_SET_FD:
256                 dgram_clear(b);
257                 b->num= *((int *)ptr);
258                 b->shutdown=(int)num;
259                 b->init=1;
260                 break;
261         case BIO_C_GET_FD:
262                 if (b->init)
263                         {
264                         ip=(int *)ptr;
265                         if (ip != NULL) *ip=b->num;
266                         ret=b->num;
267                         }
268                 else
269                         ret= -1;
270                 break;
271         case BIO_CTRL_GET_CLOSE:
272                 ret=b->shutdown;
273                 break;
274         case BIO_CTRL_SET_CLOSE:
275                 b->shutdown=(int)num;
276                 break;
277         case BIO_CTRL_PENDING:
278         case BIO_CTRL_WPENDING:
279                 ret=0;
280                 break;
281         case BIO_CTRL_DUP:
282         case BIO_CTRL_FLUSH:
283                 ret=1;
284                 break;
285         case BIO_CTRL_DGRAM_CONNECT:
286                 to = (struct sockaddr *)ptr;
287 #if 0
288                 if (connect(b->num, to, sizeof(struct sockaddr)) < 0)
289                         { perror("connect"); ret = 0; }
290                 else
291                         {
292 #endif
293                         memcpy(&(data->peer),to, sizeof(struct sockaddr));
294 #if 0
295                         }
296 #endif
297                 break;
298                 /* (Linux)kernel sets DF bit on outgoing IP packets */
299 #ifdef IP_MTU_DISCOVER
300         case BIO_CTRL_DGRAM_MTU_DISCOVER:
301                 sockopt_val = IP_PMTUDISC_DO;
302                 if ((ret = setsockopt(b->num, IPPROTO_IP, IP_MTU_DISCOVER,
303                         &sockopt_val, sizeof(sockopt_val))) < 0)
304                         perror("setsockopt");
305                 break;
306 #endif
307         case BIO_CTRL_DGRAM_QUERY_MTU:
308          sockopt_len = sizeof(sockopt_val);
309                 if ((ret = getsockopt(b->num, IPPROTO_IP, IP_MTU, (void *)&sockopt_val,
310                         &sockopt_len)) < 0 || sockopt_val < 0)
311                         { ret = 0; }
312                 else
313                         {
314                         data->mtu = sockopt_val;
315                         ret = data->mtu;
316                         }
317                 break;
318         case BIO_CTRL_DGRAM_GET_MTU:
319                 return data->mtu;
320                 break;
321         case BIO_CTRL_DGRAM_SET_MTU:
322                 data->mtu = num;
323                 ret = num;
324                 break;
325         case BIO_CTRL_DGRAM_SET_CONNECTED:
326                 to = (struct sockaddr *)ptr;
327
328                 if ( to != NULL)
329                         {
330                         data->connected = 1;
331                         memcpy(&(data->peer),to, sizeof(struct sockaddr));
332                         }
333                 else
334                         {
335                         data->connected = 0;
336                         memset(&(data->peer), 0x00, sizeof(struct sockaddr));
337                         }
338                 break;
339     case BIO_CTRL_DGRAM_SET_PEER:
340         to = (struct sockaddr *) ptr;
341
342         memcpy(&(data->peer), to, sizeof(struct sockaddr));
343         break;
344 #if defined(SO_RCVTIMEO)
345         case BIO_CTRL_DGRAM_SET_RECV_TIMEOUT:
346                 if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, ptr,
347                         sizeof(struct timeval)) < 0)
348                         { perror("setsockopt"); ret = -1; }
349                 break;
350         case BIO_CTRL_DGRAM_GET_RECV_TIMEOUT:
351                 if ( getsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, 
352                         ptr, (void *)&ret) < 0)
353                         { perror("getsockopt"); ret = -1; }
354                 break;
355 #endif
356 #if defined(SO_SNDTIMEO)
357         case BIO_CTRL_DGRAM_SET_SEND_TIMEOUT:
358                 if ( setsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, ptr,
359                         sizeof(struct timeval)) < 0)
360                         { perror("setsockopt"); ret = -1; }
361                 break;
362         case BIO_CTRL_DGRAM_GET_SEND_TIMEOUT:
363                 if ( getsockopt(b->num, SOL_SOCKET, SO_SNDTIMEO, 
364                         ptr, (void *)&ret) < 0)
365                         { perror("getsockopt"); ret = -1; }
366                 break;
367 #endif
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 static 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