First public contribution.
1 /* apps/s_socket.c - socket-related functions used by s_client and s_server */
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.]
65 /* With IPv6, it looks like Digital has mixed up the proper order of
66 recursive header file inclusion, resulting in the compiler complaining
67 that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which
68 is needed to have fileno() declared correctly... So let's define u_int */
69 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
71 typedef unsigned int u_int;
80 #include <openssl/ssl.h>
93 #ifndef OPENSSL_NO_SOCK
95 #if defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_BSDSOCK)
99 static struct hostent *GetHostByName(char *name);
100 #if defined(OPENSSL_SYS_WINDOWS) || (defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK))
101 static void ssl_sock_cleanup(void);
103 static int ssl_sock_init(void);
104 static int init_client_ip(int *sock,unsigned char ip[4], int port, int type);
105 static int init_server(int *sock, int port, int type);
106 static int init_server_long(int *sock, int port,char *ip, int type);
107 static int do_accept(int acc_sock, int *sock, char **host);
108 static int host_ip(char *str, unsigned char ip[4]);
110 #ifdef OPENSSL_SYS_WIN16
111 #define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
113 #define SOCKET_PROTOCOL IPPROTO_TCP
116 #if defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
117 static int wsa_init_done=0;
120 #ifdef OPENSSL_SYS_WINDOWS
121 static struct WSAData wsa_state;
122 static int wsa_init_done=0;
124 #ifdef OPENSSL_SYS_WIN16
125 static HWND topWnd=0;
126 static FARPROC lpTopWndProc=NULL;
127 static FARPROC lpTopHookProc=NULL;
128 extern HINSTANCE _hInstance; /* nice global CRT provides */
131 static LONG FAR PASCAL topHookProc(HWND hwnd, UINT message, WPARAM wParam,
140 SetWindowLong(topWnd,GWL_WNDPROC,(LONG)lpTopWndProc);
145 return CallWindowProc(lpTopWndProc,hwnd,message,wParam,lParam);
148 static BOOL CALLBACK enumproc(HWND hwnd,LPARAM lParam)
154 #endif /* OPENSSL_SYS_WIN32 */
155 #endif /* OPENSSL_SYS_WINDOWS */
157 #ifdef OPENSSL_SYS_WINDOWS
158 static void ssl_sock_cleanup(void)
163 #ifndef OPENSSL_SYS_WINCE
164 WSACancelBlockingCall();
169 #elif defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
170 static void sock_cleanup(void)
180 static int ssl_sock_init(void)
183 extern int _watt_do_exit;
187 #elif defined(OPENSSL_SYS_WINDOWS)
193 // signal(SIGINT,(void (*)(int))ssl_sock_cleanup);
196 memset(&wsa_state,0,sizeof(wsa_state));
197 if (WSAStartup(0x0101,&wsa_state)!=0)
199 err=WSAGetLastError();
200 BIO_printf(bio_err,"unable to start WINSOCK, error code=%d\n",err);
204 #ifdef OPENSSL_SYS_WIN16
205 EnumTaskWindows(GetCurrentTask(),enumproc,0L);
206 lpTopWndProc=(FARPROC)GetWindowLong(topWnd,GWL_WNDPROC);
207 lpTopHookProc=MakeProcInstance((FARPROC)topHookProc,_hInstance);
209 SetWindowLong(topWnd,GWL_WNDPROC,(LONG)lpTopHookProc);
210 #endif /* OPENSSL_SYS_WIN16 */
212 #elif defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
221 // signal(SIGINT,(void (*)(int))sock_cleanup);
225 wVerReq = MAKEWORD( 2, 0 );
226 err = WSAStartup(wVerReq,&wsaData);
229 BIO_printf(bio_err,"unable to start WINSOCK2, error code=%d\n",err);
233 #endif /* OPENSSL_SYS_WINDOWS */
237 int init_client(int *sock, char *host, int port, int type)
242 if (!host_ip(host,&(ip[0])))
247 return(init_client_ip(sock,ip,port,type));
250 static int init_client_ip(int *sock, unsigned char ip[4], int port, int type)
253 struct sockaddr_in them;
256 if (!ssl_sock_init()) return(0);
258 memset((char *)&them,0,sizeof(them));
259 them.sin_family=AF_INET;
260 them.sin_port=htons((unsigned short)port);
262 ((unsigned long)ip[0]<<24L)|
263 ((unsigned long)ip[1]<<16L)|
264 ((unsigned long)ip[2]<< 8L)|
265 ((unsigned long)ip[3]);
266 them.sin_addr.s_addr=htonl(addr);
268 if (type == SOCK_STREAM)
269 s=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
270 else /* ( type == SOCK_DGRAM) */
271 s=socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP);
273 if (s == INVALID_SOCKET) { perror("socket"); return(0); }
275 #ifndef OPENSSL_SYS_MPE
276 if (type == SOCK_STREAM)
279 i=setsockopt(s,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
280 if (i < 0) { perror("keepalive"); return(0); }
284 if (connect(s,(struct sockaddr *)&them,sizeof(them)) == -1)
285 { close(s); perror("connect"); return(0); }
290 int do_server(int port, int type, int *ret, int (*cb)(char *hostname, int s, unsigned char *context), unsigned char *context)
297 if (!init_server(&accept_socket,port,type)) return(0);
306 if (type==SOCK_STREAM)
308 if (do_accept(accept_socket,&sock,&name) == 0)
310 SHUTDOWN(accept_socket);
315 sock = accept_socket;
316 i=(*cb)(name,sock, context);
317 if (name != NULL) OPENSSL_free(name);
318 if (type==SOCK_STREAM)
322 SHUTDOWN2(accept_socket);
328 static int init_server_long(int *sock, int port, char *ip, int type)
331 struct sockaddr_in server;
334 if (!ssl_sock_init()) return(0);
336 memset((char *)&server,0,sizeof(server));
337 server.sin_family=AF_INET;
338 server.sin_port=htons((unsigned short)port);
340 server.sin_addr.s_addr=INADDR_ANY;
342 /* Added for T3E, address-of fails on bit field (beckman@acl.lanl.gov) */
343 #ifndef BIT_FIELD_LIMITS
344 memcpy(&server.sin_addr.s_addr,ip,4);
346 memcpy(&server.sin_addr,ip,4);
349 if (type == SOCK_STREAM)
350 s=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
351 else /* type == SOCK_DGRAM */
352 s=socket(AF_INET, SOCK_DGRAM,IPPROTO_UDP);
354 if (s == INVALID_SOCKET) goto err;
355 #if defined SOL_SOCKET && defined SO_REUSEADDR
358 setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
359 (void *) &j, sizeof j);
362 if (bind(s,(struct sockaddr *)&server,sizeof(server)) == -1)
364 #ifndef OPENSSL_SYS_WINDOWS
369 /* Make it 128 for linux */
370 if (type==SOCK_STREAM && listen(s,128) == -1) goto err;
375 if ((ret == 0) && (s != -1))
382 static int init_server(int *sock, int port, int type)
384 return(init_server_long(sock, port, NULL, type));
387 static int do_accept(int acc_sock, int *sock, char **host)
390 struct hostent *h1,*h2;
391 static struct sockaddr_in from;
393 /* struct linger ling; */
395 if (!ssl_sock_init()) return(0);
397 #ifndef OPENSSL_SYS_WINDOWS
401 memset((char *)&from,0,sizeof(from));
403 /* Note: under VMS with SOCKETSHR the fourth parameter is currently
404 * of type (int *) whereas under other systems it is (void *) if
405 * you don't have a cast it will choke the compiler: if you do
406 * have a cast then you can either go for (int *) or (void *).
408 ret=accept(acc_sock,(struct sockaddr *)&from,(void *)&len);
409 if (ret == INVALID_SOCKET)
411 #if defined(OPENSSL_SYS_WINDOWS) || (defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK))
413 BIO_printf(bio_err,"accept error %d\n",i);
417 /*check_timeout(); */
420 fprintf(stderr,"errno=%d ",errno);
430 i=setsockopt(ret,SOL_SOCKET,SO_LINGER,(char *)&ling,sizeof(ling));
431 if (i < 0) { perror("linger"); return(0); }
433 i=setsockopt(ret,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
434 if (i < 0) { perror("keepalive"); return(0); }
437 if (host == NULL) goto end;
438 #ifndef BIT_FIELD_LIMITS
439 /* I should use WSAAsyncGetHostByName() under windows */
440 h1=gethostbyaddr((char *)&from.sin_addr.s_addr,
441 sizeof(from.sin_addr.s_addr),AF_INET);
443 h1=gethostbyaddr((char *)&from.sin_addr,
444 sizeof(struct in_addr),AF_INET);
448 BIO_printf(bio_err,"bad gethostbyaddr\n");
454 if ((*host=(char *)OPENSSL_malloc(strlen(h1->h_name)+1)) == NULL)
456 perror("OPENSSL_malloc");
459 BUF_strlcpy(*host,h1->h_name,strlen(h1->h_name)+1);
461 h2=GetHostByName(*host);
464 BIO_printf(bio_err,"gethostbyname failure\n");
468 if (h2->h_addrtype != AF_INET)
470 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
479 int extract_host_port(char *str, char **host_ptr, unsigned char *ip,
488 BIO_printf(bio_err,"no port defined\n");
493 if ((ip != NULL) && !host_ip(str,ip))
495 if (host_ptr != NULL) *host_ptr=h;
497 if (!extract_port(p,port_ptr))
504 static int host_ip(char *str, unsigned char ip[4])
509 if (sscanf(str,"%u.%u.%u.%u",&(in[0]),&(in[1]),&(in[2]),&(in[3])) == 4)
514 BIO_printf(bio_err,"invalid IP address\n");
523 { /* do a gethostbyname */
526 if (!ssl_sock_init()) return(0);
528 he=GetHostByName(str);
531 BIO_printf(bio_err,"gethostbyname failure\n");
534 /* cast to short because of win16 winsock definition */
535 if ((short)he->h_addrtype != AF_INET)
537 BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
540 ip[0]=he->h_addr_list[0][0];
541 ip[1]=he->h_addr_list[0][1];
542 ip[2]=he->h_addr_list[0][2];
543 ip[3]=he->h_addr_list[0][3];
550 int extract_port(char *str, short *port_ptr)
557 *port_ptr=(unsigned short)i;
560 s=getservbyname(str,"tcp");
563 BIO_printf(bio_err,"getservbyname failure for %s\n",str);
566 *port_ptr=ntohs((unsigned short)s->s_port);
572 static struct ghbn_cache_st
577 } ghbn_cache[GHBN_NUM];
579 static unsigned long ghbn_hits=0L;
580 static unsigned long ghbn_miss=0L;
582 static struct hostent *GetHostByName(char *name)
586 unsigned long low= (unsigned long)-1;
588 for (i=0; i<GHBN_NUM; i++)
590 if (low > ghbn_cache[i].order)
592 low=ghbn_cache[i].order;
595 if (ghbn_cache[i].order > 0)
597 if (strncmp(name,ghbn_cache[i].name,128) == 0)
601 if (i == GHBN_NUM) /* no hit*/
604 ret=gethostbyname(name);
605 if (ret == NULL) return(NULL);
606 /* else add to cache */
607 if(strlen(name) < sizeof ghbn_cache[0].name)
609 strcpy(ghbn_cache[lowi].name,name);
610 memcpy((char *)&(ghbn_cache[lowi].ent),ret,sizeof(struct hostent));
611 ghbn_cache[lowi].order=ghbn_miss+ghbn_hits;
618 ret= &(ghbn_cache[i].ent);
619 ghbn_cache[i].order=ghbn_miss+ghbn_hits;