First public contribution.
1 /* crypto/bio/b_sock.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
60 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
69 #include <openssl/bio.h>
70 #if defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_BSDSOCK)
73 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
74 #include "libcrypto_wsd_macros.h"
75 #include "libcrypto_wsd.h"
79 #ifndef OPENSSL_NO_SOCK
81 #ifdef OPENSSL_SYS_WIN16
82 #define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
84 #define SOCKET_PROTOCOL IPPROTO_TCP
88 #define MAX_LISTEN SO_MAXCONN
89 #elif defined(SOMAXCONN)
90 #define MAX_LISTEN SOMAXCONN
95 #if defined(OPENSSL_SYS_WINDOWS) || (defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK))
96 static int wsa_init_done=0;
100 static unsigned long BIO_ghbn_hits=0L;
101 static unsigned long BIO_ghbn_miss=0L;
104 static struct ghbn_cache_st
109 } ghbn_cache[GHBN_NUM];
112 static int get_ip(const char *str,unsigned char *ip);
114 static void ghbn_free(struct hostent *a);
115 static struct hostent *ghbn_dup(struct hostent *a);
117 EXPORT_C int BIO_get_host_ip(const char *str, unsigned char *ip)
127 BIOerr(BIO_F_BIO_GET_HOST_IP,BIO_R_INVALID_IP_ADDRESS);
131 /* At this point, we have something that is most probably correct
132 in some way, so let's init the socket. */
133 if (BIO_sock_init() != 1)
134 return 0; /* don't generate another error code here */
136 /* If the string actually contained an IP address, we need not do
138 if (i > 0) return(1);
140 /* do a gethostbyname */
141 CRYPTO_w_lock(CRYPTO_LOCK_GETHOSTBYNAME);
143 he=BIO_gethostbyname(str);
146 BIOerr(BIO_F_BIO_GET_HOST_IP,BIO_R_BAD_HOSTNAME_LOOKUP);
150 /* cast to short because of win16 winsock definition */
151 if ((short)he->h_addrtype != AF_INET)
153 BIOerr(BIO_F_BIO_GET_HOST_IP,BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET);
157 ip[i]=he->h_addr_list[0][i];
162 CRYPTO_w_unlock(CRYPTO_LOCK_GETHOSTBYNAME);
165 ERR_add_error_data(2,"host=",str);
172 EXPORT_C int BIO_get_port(const char *str, unsigned short *port_ptr)
179 BIOerr(BIO_F_BIO_GET_PORT,BIO_R_NO_PORT_DEFINED);
184 *port_ptr=(unsigned short)i;
187 CRYPTO_w_lock(CRYPTO_LOCK_GETSERVBYNAME);
188 /* Note: under VMS with SOCKETSHR, it seems like the first
189 * parameter is 'char *', instead of 'const char *'
197 *port_ptr=ntohs((unsigned short)s->s_port);
198 CRYPTO_w_unlock(CRYPTO_LOCK_GETSERVBYNAME);
201 if (strcmp(str,"http") == 0)
203 else if (strcmp(str,"telnet") == 0)
205 else if (strcmp(str,"socks") == 0)
207 else if (strcmp(str,"https") == 0)
209 else if (strcmp(str,"ssl") == 0)
211 else if (strcmp(str,"ftp") == 0)
213 else if (strcmp(str,"gopher") == 0)
216 else if (strcmp(str,"wais") == 0)
221 SYSerr(SYS_F_GETSERVBYNAME,get_last_socket_error());
222 ERR_add_error_data(3,"service='",str,"'");
230 EXPORT_C int BIO_sock_error(int sock)
236 /* Note: under Windows the third parameter is of type (char *)
237 * whereas under other systems it is (void *) if you don't have
238 * a cast it will choke the compiler: if you do have a cast then
239 * you can either go for (char *) or (void *).
241 i=getsockopt(sock,SOL_SOCKET,SO_ERROR,(void *)&j,(void *)&size);
249 long BIO_ghbn_ctrl(int cmd, int iarg, char *parg)
256 case BIO_GHBN_CTRL_HITS:
257 return(BIO_ghbn_hits);
259 case BIO_GHBN_CTRL_MISSES:
260 return(BIO_ghbn_miss);
262 case BIO_GHBN_CTRL_CACHE_SIZE:
265 case BIO_GHBN_CTRL_GET_ENTRY:
266 if ((iarg >= 0) && (iarg <GHBN_NUM) &&
267 (ghbn_cache[iarg].order > 0))
270 if (p == NULL) return(0);
271 *p=ghbn_cache[iarg].name;
272 ghbn_cache[iarg].name[128]='\0';
277 case BIO_GHBN_CTRL_FLUSH:
278 for (i=0; i<GHBN_NUM; i++)
279 ghbn_cache[i].order=0;
289 static struct hostent *ghbn_dup(struct hostent *a)
295 ret=(struct hostent *)OPENSSL_malloc(sizeof(struct hostent));
296 if (ret == NULL) return(NULL);
297 memset(ret,0,sizeof(struct hostent));
299 for (i=0; a->h_aliases[i] != NULL; i++)
302 ret->h_aliases = (char **)OPENSSL_malloc(i*sizeof(char *));
303 if (ret->h_aliases == NULL)
305 memset(ret->h_aliases, 0, i*sizeof(char *));
307 for (i=0; a->h_addr_list[i] != NULL; i++)
310 ret->h_addr_list=(char **)OPENSSL_malloc(i*sizeof(char *));
311 if (ret->h_addr_list == NULL)
313 memset(ret->h_addr_list, 0, i*sizeof(char *));
315 j=strlen(a->h_name)+1;
316 if ((ret->h_name=OPENSSL_malloc(j)) == NULL) goto err;
317 memcpy((char *)ret->h_name,a->h_name,j);
318 for (i=0; a->h_aliases[i] != NULL; i++)
320 j=strlen(a->h_aliases[i])+1;
321 if ((ret->h_aliases[i]=OPENSSL_malloc(j)) == NULL) goto err;
322 memcpy(ret->h_aliases[i],a->h_aliases[i],j);
324 ret->h_length=a->h_length;
325 ret->h_addrtype=a->h_addrtype;
326 for (i=0; a->h_addr_list[i] != NULL; i++)
328 if ((ret->h_addr_list[i]=OPENSSL_malloc(a->h_length)) == NULL)
330 memcpy(ret->h_addr_list[i],a->h_addr_list[i],a->h_length);
343 static void ghbn_free(struct hostent *a)
350 if (a->h_aliases != NULL)
352 for (i=0; a->h_aliases[i] != NULL; i++)
353 OPENSSL_free(a->h_aliases[i]);
354 OPENSSL_free(a->h_aliases);
356 if (a->h_addr_list != NULL)
358 for (i=0; a->h_addr_list[i] != NULL; i++)
359 OPENSSL_free(a->h_addr_list[i]);
360 OPENSSL_free(a->h_addr_list);
362 if (a->h_name != NULL) OPENSSL_free(a->h_name);
368 EXPORT_C struct hostent *BIO_gethostbyname(const char *name)
371 /* Caching gethostbyname() results forever is wrong,
372 * so we have to let the true gethostbyname() worry about this */
373 return gethostbyname(name);
377 unsigned long low= (unsigned long)-1;
381 /* It doesn't make sense to use locking here: The function interface
382 * is not thread-safe, because threads can never be sure when
383 * some other thread destroys the data they were given a pointer to.
385 CRYPTO_w_lock(CRYPTO_LOCK_GETHOSTBYNAME);
390 for (i=0; i<GHBN_NUM; i++)
392 if (low > ghbn_cache[i].order)
394 low=ghbn_cache[i].order;
397 if (ghbn_cache[i].order > 0)
399 if (strncmp(name,ghbn_cache[i].name,128) == 0)
407 if (i == GHBN_NUM) /* no hit*/
410 /* Note: under VMS with SOCKETSHR, it seems like the first
411 * parameter is 'char *', instead of 'const char *'
414 # ifndef CONST_STRICT
421 if (j > 128) /* too big to cache */
424 /* If we were trying to make this function thread-safe (which
425 * is bound to fail), we'd have to give up in this case
426 * (or allocate more memory). */
432 /* else add to cache */
433 if (ghbn_cache[lowi].ent != NULL)
434 ghbn_free(ghbn_cache[lowi].ent); /* XXX not thread-safe */
435 ghbn_cache[lowi].name[0] = '\0';
437 if((ret=ghbn_cache[lowi].ent=ghbn_dup(ret)) == NULL)
439 BIOerr(BIO_F_BIO_GETHOSTBYNAME,ERR_R_MALLOC_FAILURE);
442 strncpy(ghbn_cache[lowi].name,name,128);
443 ghbn_cache[lowi].order=BIO_ghbn_miss+BIO_ghbn_hits;
448 ret= ghbn_cache[i].ent;
449 ghbn_cache[i].order=BIO_ghbn_miss+BIO_ghbn_hits;
453 CRYPTO_w_unlock(CRYPTO_LOCK_GETHOSTBYNAME);
460 EXPORT_C int BIO_sock_init(void)
462 #ifdef OPENSSL_SYS_WINDOWS
463 static struct WSAData wsa_state;
470 memset(&wsa_state,0,sizeof(wsa_state));
471 if (WSAStartup(0x0101,&wsa_state)!=0)
473 err=WSAGetLastError();
474 SYSerr(SYS_F_WSASTARTUP,err);
475 BIOerr(BIO_F_BIO_SOCK_INIT,BIO_R_WSASTARTUP);
479 #endif /* OPENSSL_SYS_WINDOWS */
481 extern int _watt_do_exit;
482 _watt_do_exit = 0; /* don't make sock_init() call exit() */
487 #if defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
497 wVerReq = MAKEWORD( 2, 0 );
498 err = WSAStartup(wVerReq,&wsaData);
501 SYSerr(SYS_F_WSASTARTUP,err);
502 BIOerr(BIO_F_BIO_SOCK_INIT,BIO_R_WSASTARTUP);
511 EXPORT_C void BIO_sock_cleanup(void)
513 #ifdef OPENSSL_SYS_WINDOWS
517 #ifndef OPENSSL_SYS_WINCE
518 WSACancelBlockingCall();
522 #elif defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
531 #if !defined(OPENSSL_SYS_VMS) || __VMS_VER >= 70000000
533 EXPORT_C int BIO_socket_ioctl(int fd, long type, void *arg)
538 i=ioctlsocket(fd,type,(char *)arg);
540 i=ioctlsocket(fd,type,arg);
541 #endif /* __DJGPP__ */
543 SYSerr(SYS_F_IOCTLSOCKET,get_last_socket_error());
546 #endif /* __VMS_VER */
548 /* The reason I have implemented this instead of using sscanf is because
549 * Visual C 1.52c gives an unresolved external when linking a DLL :-( */
550 static int get_ip(const char *str, unsigned char ip[4])
555 tmp[0]=tmp[1]=tmp[2]=tmp[3]=0;
560 if ((c >= '0') && (c <= '9'))
563 tmp[num]=tmp[num]*10+c-'0';
564 if (tmp[num] > 255) return(0);
569 if (num == 3) return(0);
573 else if (c == '\0' && (num == 3) && ok)
585 EXPORT_C int BIO_get_accept_socket(char *host, int bind_mode)
588 struct sockaddr_in server,client;
589 int s=INVALID_SOCKET,cs;
597 if (BIO_sock_init() != 1) return(INVALID_SOCKET);
599 if ((str=BUF_strdup(host)) == NULL) return(INVALID_SOCKET);
623 if (!BIO_get_port(p,&port)) goto err;
625 memset((char *)&server,0,sizeof(server));
626 server.sin_family=AF_INET;
627 server.sin_port=htons(port);
629 if (strcmp(h,"*") == 0)
630 server.sin_addr.s_addr=INADDR_ANY;
633 if (!BIO_get_host_ip(h,&(ip[0]))) goto err;
635 ((unsigned long)ip[0]<<24L)|
636 ((unsigned long)ip[1]<<16L)|
637 ((unsigned long)ip[2]<< 8L)|
638 ((unsigned long)ip[3]);
639 server.sin_addr.s_addr=htonl(l);
643 s=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
644 if (s == INVALID_SOCKET)
646 SYSerr(SYS_F_SOCKET,get_last_socket_error());
647 ERR_add_error_data(3,"port='",host,"'");
648 BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET,BIO_R_UNABLE_TO_CREATE_SOCKET);
653 if (bind_mode == BIO_BIND_REUSEADDR)
657 ret=setsockopt(s,SOL_SOCKET,SO_REUSEADDR,(char *)&i,sizeof(i));
658 bind_mode=BIO_BIND_NORMAL;
661 if (bind(s,(struct sockaddr *)&server,sizeof(server)) == -1)
664 err_num=get_last_socket_error();
665 if ((bind_mode == BIO_BIND_REUSEADDR_IF_UNUSED) &&
666 (err_num == EADDRINUSE))
668 memcpy((char *)&client,(char *)&server,sizeof(server));
669 if (strcmp(h,"*") == 0)
670 client.sin_addr.s_addr=htonl(0x7F000001);
671 cs=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
672 if (cs != INVALID_SOCKET)
675 ii=connect(cs,(struct sockaddr *)&client,
678 if (ii == INVALID_SOCKET)
680 bind_mode=BIO_BIND_REUSEADDR;
689 SYSerr(SYS_F_BIND,err_num);
690 ERR_add_error_data(3,"port='",host,"'");
691 BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET,BIO_R_UNABLE_TO_BIND_SOCKET);
694 if (listen(s,MAX_LISTEN) == -1)
696 SYSerr(SYS_F_BIND,get_last_socket_error());
697 ERR_add_error_data(3,"port='",host,"'");
698 BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET,BIO_R_UNABLE_TO_LISTEN_SOCKET);
703 if (str != NULL) OPENSSL_free(str);
704 if ((ret == 0) && (s != INVALID_SOCKET))
712 GET_STATIC_VAR_FROM_TLS(from,b_sock,struct sockaddr_in)
713 #define from (*GET_WSD_VAR_NAME(from,b_sock, s)())
716 EXPORT_C int BIO_accept(int sock, char **addr)
718 int ret=INVALID_SOCKET;
720 static struct sockaddr_in from;
727 memset((char *)&from,0,sizeof(from));
729 /* Note: under VMS with SOCKETSHR the fourth parameter is currently
730 * of type (int *) whereas under other systems it is (void *) if
731 * you don't have a cast it will choke the compiler: if you do
732 * have a cast then you can either go for (int *) or (void *).
734 ret=accept(sock,(struct sockaddr *)&from,(void *)&len);
735 if (ret == INVALID_SOCKET)
737 if(BIO_sock_should_retry(ret)) return -2;
738 SYSerr(SYS_F_ACCEPT,get_last_socket_error());
739 BIOerr(BIO_F_BIO_ACCEPT,BIO_R_ACCEPT_ERROR);
743 if (addr == NULL) goto end;
745 l=ntohl(from.sin_addr.s_addr);
746 port=ntohs(from.sin_port);
749 if ((p=OPENSSL_malloc(24)) == NULL)
751 BIOerr(BIO_F_BIO_ACCEPT,ERR_R_MALLOC_FAILURE);
756 BIO_snprintf(*addr,24,"%d.%d.%d.%d:%d",
757 (unsigned char)(l>>24L)&0xff,
758 (unsigned char)(l>>16L)&0xff,
759 (unsigned char)(l>> 8L)&0xff,
760 (unsigned char)(l )&0xff,
766 EXPORT_C int BIO_set_tcp_ndelay(int s, int on)
769 #if defined(TCP_NODELAY) && (defined(IPPROTO_TCP) || defined(SOL_TCP))
780 ret=setsockopt(s,opt,TCP_NODELAY,(char *)&on,sizeof(on));
786 EXPORT_C int BIO_socket_nbio(int s, int mode)
793 ret=BIO_socket_ioctl(s,FIONBIO,&l);