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.]
66 #include <openssl/bio.h>
69 #define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
71 #define SOCKET_PROTOCOL IPPROTO_TCP
75 #define MAX_LISTEN SOMAXCONN
76 #elif defined(SO_MAXCONN)
77 #define MAX_LISTEN SO_MAXCONN
83 static int wsa_init_done=0;
86 static unsigned long BIO_ghbn_hits=0L;
87 static unsigned long BIO_ghbn_miss=0L;
90 static struct ghbn_cache_st
95 } ghbn_cache[GHBN_NUM];
97 static int get_ip(const char *str,unsigned char *ip);
98 static void ghbn_free(struct hostent *a);
99 static struct hostent *ghbn_dup(struct hostent *a);
100 int BIO_get_host_ip(const char *str, unsigned char *ip)
108 if (i > 0) return(1);
111 BIOerr(BIO_F_BIO_GET_HOST_IP,BIO_R_INVALID_IP_ADDRESS);
115 /* do a gethostbyname */
116 if (!BIO_sock_init())
117 return(0); /* don't generate another error code here */
119 CRYPTO_w_lock(CRYPTO_LOCK_GETHOSTBYNAME);
121 he=BIO_gethostbyname(str);
124 BIOerr(BIO_F_BIO_GET_HOST_IP,BIO_R_BAD_HOSTNAME_LOOKUP);
128 /* cast to short because of win16 winsock definition */
129 if ((short)he->h_addrtype != AF_INET)
131 BIOerr(BIO_F_BIO_GET_HOST_IP,BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET);
135 ip[i]=he->h_addr_list[0][i];
140 CRYPTO_w_unlock(CRYPTO_LOCK_GETHOSTBYNAME);
143 ERR_add_error_data(2,"host=",str);
150 int BIO_get_port(const char *str, unsigned short *port_ptr)
157 BIOerr(BIO_F_BIO_GET_PORT,BIO_R_NO_PORT_DEFINED);
162 *port_ptr=(unsigned short)i;
165 CRYPTO_w_lock(CRYPTO_LOCK_GETSERVBYNAME);
166 /* Note: under VMS with SOCKETSHR, it seems like the first
167 * parameter is 'char *', instead of 'const char *'
175 *port_ptr=ntohs((unsigned short)s->s_port);
176 CRYPTO_w_unlock(CRYPTO_LOCK_GETSERVBYNAME);
179 if (strcmp(str,"http") == 0)
181 else if (strcmp(str,"telnet") == 0)
183 else if (strcmp(str,"socks") == 0)
185 else if (strcmp(str,"https") == 0)
187 else if (strcmp(str,"ssl") == 0)
189 else if (strcmp(str,"ftp") == 0)
191 else if (strcmp(str,"gopher") == 0)
194 else if (strcmp(str,"wais") == 0)
199 SYSerr(SYS_F_GETSERVBYNAME,get_last_socket_error());
200 ERR_add_error_data(3,"service='",str,"'");
208 int BIO_sock_error(int sock)
214 /* Note: under Windows the third parameter is of type (char *)
215 * whereas under other systems it is (void *) if you don't have
216 * a cast it will choke the compiler: if you do have a cast then
217 * you can either go for (char *) or (void *).
219 i=getsockopt(sock,SOL_SOCKET,SO_ERROR,(void *)&j,(void *)&size);
226 long BIO_ghbn_ctrl(int cmd, int iarg, char *parg)
233 case BIO_GHBN_CTRL_HITS:
234 return(BIO_ghbn_hits);
236 case BIO_GHBN_CTRL_MISSES:
237 return(BIO_ghbn_miss);
239 case BIO_GHBN_CTRL_CACHE_SIZE:
242 case BIO_GHBN_CTRL_GET_ENTRY:
243 if ((iarg >= 0) && (iarg <GHBN_NUM) &&
244 (ghbn_cache[iarg].order > 0))
247 if (p == NULL) return(0);
248 *p=ghbn_cache[iarg].name;
249 ghbn_cache[iarg].name[128]='\0';
254 case BIO_GHBN_CTRL_FLUSH:
255 for (i=0; i<GHBN_NUM; i++)
256 ghbn_cache[i].order=0;
264 static struct hostent *ghbn_dup(struct hostent *a)
270 ret=(struct hostent *)Malloc(sizeof(struct hostent));
271 if (ret == NULL) return(NULL);
272 memset(ret,0,sizeof(struct hostent));
274 for (i=0; a->h_aliases[i] != NULL; i++)
277 ret->h_aliases = (char **)Malloc(i*sizeof(char *));
278 if (ret->h_aliases == NULL)
280 memset(ret->h_aliases, 0, i*sizeof(char *));
282 for (i=0; a->h_addr_list[i] != NULL; i++)
285 ret->h_addr_list=(char **)Malloc(i*sizeof(char *));
286 if (ret->h_addr_list == NULL)
288 memset(ret->h_addr_list, 0, i*sizeof(char *));
290 j=strlen(a->h_name)+1;
291 if ((ret->h_name=Malloc(j)) == NULL) goto err;
292 memcpy((char *)ret->h_name,a->h_name,j);
293 for (i=0; a->h_aliases[i] != NULL; i++)
295 j=strlen(a->h_aliases[i])+1;
296 if ((ret->h_aliases[i]=Malloc(j)) == NULL) goto err;
297 memcpy(ret->h_aliases[i],a->h_aliases[i],j);
299 ret->h_length=a->h_length;
300 ret->h_addrtype=a->h_addrtype;
301 for (i=0; a->h_addr_list[i] != NULL; i++)
303 if ((ret->h_addr_list[i]=Malloc(a->h_length)) == NULL)
305 memcpy(ret->h_addr_list[i],a->h_addr_list[i],a->h_length);
318 static void ghbn_free(struct hostent *a)
325 if (a->h_aliases != NULL)
327 for (i=0; a->h_aliases[i] != NULL; i++)
328 Free(a->h_aliases[i]);
331 if (a->h_addr_list != NULL)
333 for (i=0; a->h_addr_list[i] != NULL; i++)
334 Free(a->h_addr_list[i]);
335 Free(a->h_addr_list);
337 if (a->h_name != NULL) Free(a->h_name);
341 struct hostent *BIO_gethostbyname(const char *name)
345 unsigned long low= (unsigned long)-1;
347 /* return(gethostbyname(name)); */
349 #if 0 /* It doesn't make sense to use locking here: The function interface
350 * is not thread-safe, because threads can never be sure when
351 * some other thread destroys the data they were given a pointer to.
353 CRYPTO_w_lock(CRYPTO_LOCK_GETHOSTBYNAME);
358 for (i=0; i<GHBN_NUM; i++)
360 if (low > ghbn_cache[i].order)
362 low=ghbn_cache[i].order;
365 if (ghbn_cache[i].order > 0)
367 if (strncmp(name,ghbn_cache[i].name,128) == 0)
375 if (i == GHBN_NUM) /* no hit*/
378 /* Note: under VMS with SOCKETSHR, it seems like the first
379 * parameter is 'char *', instead of 'const char *'
389 if (j > 128) /* too big to cache */
391 #if 0 /* If we were trying to make this function thread-safe (which
392 * is bound to fail), we'd have to give up in this case
393 * (or allocate more memory). */
399 /* else add to cache */
400 if (ghbn_cache[lowi].ent != NULL)
401 ghbn_free(ghbn_cache[lowi].ent); /* XXX not thread-safe */
402 ghbn_cache[lowi].name[0] = '\0';
404 if((ret=ghbn_cache[lowi].ent=ghbn_dup(ret)) == NULL)
406 BIOerr(BIO_F_BIO_GETHOSTBYNAME,ERR_R_MALLOC_FAILURE);
409 strncpy(ghbn_cache[lowi].name,name,128);
410 ghbn_cache[lowi].order=BIO_ghbn_miss+BIO_ghbn_hits;
415 ret= ghbn_cache[i].ent;
416 ghbn_cache[i].order=BIO_ghbn_miss+BIO_ghbn_hits;
420 CRYPTO_w_unlock(CRYPTO_LOCK_GETHOSTBYNAME);
425 int BIO_sock_init(void)
428 static struct WSAData wsa_state;
435 signal(SIGINT,(void (*)(int))BIO_sock_cleanup);
438 memset(&wsa_state,0,sizeof(wsa_state));
439 if (WSAStartup(0x0101,&wsa_state)!=0)
441 err=WSAGetLastError();
442 SYSerr(SYS_F_WSASTARTUP,err);
443 BIOerr(BIO_F_BIO_SOCK_INIT,BIO_R_WSASTARTUP);
451 void BIO_sock_cleanup(void)
457 WSACancelBlockingCall();
463 #if !defined(VMS) || __VMS_VER >= 70000000
465 int BIO_socket_ioctl(int fd, long type, unsigned long *arg)
469 i=ioctlsocket(fd,type,arg);
471 SYSerr(SYS_F_IOCTLSOCKET,get_last_socket_error());
474 #endif /* __VMS_VER */
476 /* The reason I have implemented this instead of using sscanf is because
477 * Visual C 1.52c gives an unresolved external when linking a DLL :-( */
478 static int get_ip(const char *str, unsigned char ip[4])
483 tmp[0]=tmp[1]=tmp[2]=tmp[3]=0;
488 if ((c >= '0') && (c <= '9'))
491 tmp[num]=tmp[num]*10+c-'0';
492 if (tmp[num] > 255) return(-1);
501 else if ((num == 3) && ok)
513 int BIO_get_accept_socket(char *host, int bind_mode)
516 struct sockaddr_in server,client;
525 if (!BIO_sock_init()) return(INVALID_SOCKET);
527 if ((str=BUF_strdup(host)) == NULL) return(INVALID_SOCKET);
551 if (!BIO_get_port(p,&port)) return(INVALID_SOCKET);
553 memset((char *)&server,0,sizeof(server));
554 server.sin_family=AF_INET;
555 server.sin_port=htons(port);
557 if (strcmp(h,"*") == 0)
558 server.sin_addr.s_addr=INADDR_ANY;
561 if (!BIO_get_host_ip(h,&(ip[0]))) return(INVALID_SOCKET);
563 ((unsigned long)ip[0]<<24L)|
564 ((unsigned long)ip[1]<<16L)|
565 ((unsigned long)ip[2]<< 8L)|
566 ((unsigned long)ip[3]);
567 server.sin_addr.s_addr=htonl(l);
571 s=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
572 if (s == INVALID_SOCKET)
574 SYSerr(SYS_F_SOCKET,get_last_socket_error());
575 ERR_add_error_data(3,"port='",host,"'");
576 BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET,BIO_R_UNABLE_TO_CREATE_SOCKET);
581 if (bind_mode == BIO_BIND_REUSEADDR)
585 ret=setsockopt(s,SOL_SOCKET,SO_REUSEADDR,(char *)&i,sizeof(i));
586 bind_mode=BIO_BIND_NORMAL;
589 if (bind(s,(struct sockaddr *)&server,sizeof(server)) == -1)
592 err_num=get_last_socket_error();
593 if ((bind_mode == BIO_BIND_REUSEADDR_IF_UNUSED) &&
594 (err_num == EADDRINUSE))
596 memcpy((char *)&client,(char *)&server,sizeof(server));
597 if (strcmp(h,"*") == 0)
598 client.sin_addr.s_addr=htonl(0x7F000001);
599 cs=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
600 if (cs != INVALID_SOCKET)
603 ii=connect(cs,(struct sockaddr *)&client,
606 if (ii == INVALID_SOCKET)
608 bind_mode=BIO_BIND_REUSEADDR;
617 SYSerr(SYS_F_BIND,err_num);
618 ERR_add_error_data(3,"port='",host,"'");
619 BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET,BIO_R_UNABLE_TO_BIND_SOCKET);
622 if (listen(s,MAX_LISTEN) == -1)
624 SYSerr(SYS_F_BIND,get_last_socket_error());
625 ERR_add_error_data(3,"port='",host,"'");
626 BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET,BIO_R_UNABLE_TO_LISTEN_SOCKET);
631 if (str != NULL) Free(str);
632 if ((ret == 0) && (s != INVALID_SOCKET))
640 int BIO_accept(int sock, char **addr)
642 int ret=INVALID_SOCKET;
643 static struct sockaddr_in from;
649 memset((char *)&from,0,sizeof(from));
651 /* Note: under VMS with SOCKETSHR the fourth parameter is currently
652 * of type (int *) whereas under other systems it is (void *) if
653 * you don't have a cast it will choke the compiler: if you do
654 * have a cast then you can either go for (int *) or (void *).
656 ret=accept(sock,(struct sockaddr *)&from,(void *)&len);
657 if (ret == INVALID_SOCKET)
659 SYSerr(SYS_F_ACCEPT,get_last_socket_error());
660 BIOerr(BIO_F_BIO_ACCEPT,BIO_R_ACCEPT_ERROR);
664 if (addr == NULL) goto end;
666 l=ntohl(from.sin_addr.s_addr);
667 port=ntohs(from.sin_port);
670 if ((p=Malloc(24)) == NULL)
672 BIOerr(BIO_F_BIO_ACCEPT,ERR_R_MALLOC_FAILURE);
677 sprintf(*addr,"%d.%d.%d.%d:%d",
678 (unsigned char)(l>>24L)&0xff,
679 (unsigned char)(l>>16L)&0xff,
680 (unsigned char)(l>> 8L)&0xff,
681 (unsigned char)(l )&0xff,
687 int BIO_set_tcp_ndelay(int s, int on)
690 #if defined(TCP_NODELAY) && (defined(IPPROTO_TCP) || defined(SOL_TCP))
701 ret=setsockopt(s,opt,TCP_NODELAY,(char *)&on,sizeof(on));
707 int BIO_socket_nbio(int s, int mode)
714 ret=BIO_socket_ioctl(s,FIONBIO,&l);