s_socket.c 15.2 KB
Newer Older
B
Bodo Möller 已提交
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)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */

U
Ulf Möller 已提交
59 60 61 62 63 64
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <signal.h>

U
Ulf Möller 已提交
65 66 67 68
/* With IPv6, it looks like Digital has mixed up the proper order of
   recursive header file inclusion, resulting in the compiler complaining
   that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which
   is needed to have fileno() declared correctly...  So let's define u_int */
69
#if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
U
Ulf Möller 已提交
70 71 72 73
#define __U_INT
typedef unsigned int u_int;
#endif

74 75 76 77 78 79 80 81
#define USE_SOCKETS
#define NON_MAIN
#include "apps.h"
#undef USE_SOCKETS
#undef NON_MAIN
#include "s_apps.h"
#include <openssl/ssl.h>

82 83 84 85 86 87 88 89
#ifdef FLAT_INC
#include "e_os.h"
#else
#include "../e_os.h"
#endif

#ifndef OPENSSL_NO_SOCK

90 91 92 93
#if defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_BSDSOCK)
#include "netdb.h"
#endif

94
static struct hostent *GetHostByName(char *name);
95
#if defined(OPENSSL_SYS_WINDOWS) || (defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK))
R
Richard Levitte 已提交
96
static void ssl_sock_cleanup(void);
B
Bodo Möller 已提交
97
#endif
R
Richard Levitte 已提交
98
static int ssl_sock_init(void);
B
Ben Laurie 已提交
99 100
static int init_client_ip(int *sock, const unsigned char ip[4], int port,
			  int type);
B
Ben Laurie 已提交
101 102
static int init_server(int *sock, int port, int type);
static int init_server_long(int *sock, int port,char *ip, int type);
B
Bodo Möller 已提交
103 104 105
static int do_accept(int acc_sock, int *sock, char **host);
static int host_ip(char *str, unsigned char ip[4]);

106
#ifdef OPENSSL_SYS_WIN16
107 108 109 110 111
#define SOCKET_PROTOCOL	0 /* more microsoft stupidity */
#else
#define SOCKET_PROTOCOL	IPPROTO_TCP
#endif

112
#if defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
R
Richard Levitte 已提交
113 114 115
static int wsa_init_done=0;
#endif

116
#ifdef OPENSSL_SYS_WINDOWS
117 118 119
static struct WSAData wsa_state;
static int wsa_init_done=0;

120
#ifdef OPENSSL_SYS_WIN16
121 122 123 124 125
static HWND topWnd=0;
static FARPROC lpTopWndProc=NULL;
static FARPROC lpTopHookProc=NULL;
extern HINSTANCE _hInstance;  /* nice global CRT provides */

U
Ulf Möller 已提交
126 127
static LONG FAR PASCAL topHookProc(HWND hwnd, UINT message, WPARAM wParam,
	     LPARAM lParam)
128 129 130 131 132 133 134 135
	{
	if (hwnd == topWnd)
		{
		switch(message)
			{
		case WM_DESTROY:
		case WM_CLOSE:
			SetWindowLong(topWnd,GWL_WNDPROC,(LONG)lpTopWndProc);
R
Richard Levitte 已提交
136
			ssl_sock_cleanup();
137 138 139 140 141 142 143 144 145 146 147 148
			break;
			}
		}
	return CallWindowProc(lpTopWndProc,hwnd,message,wParam,lParam);
	}

static BOOL CALLBACK enumproc(HWND hwnd,LPARAM lParam)
	{
	topWnd=hwnd;
	return(FALSE);
	}

149 150
#endif /* OPENSSL_SYS_WIN32 */
#endif /* OPENSSL_SYS_WINDOWS */
151

152
#ifdef OPENSSL_SYS_WINDOWS
R
Richard Levitte 已提交
153
static void ssl_sock_cleanup(void)
154 155 156 157
	{
	if (wsa_init_done)
		{
		wsa_init_done=0;
R
Richard Levitte 已提交
158
#ifndef OPENSSL_SYS_WINCE
159
		WSACancelBlockingCall();
R
Richard Levitte 已提交
160
#endif
161 162 163
		WSACleanup();
		}
	}
164
#elif defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
R
Richard Levitte 已提交
165 166 167 168 169 170 171 172
static void sock_cleanup(void)
    {
    if (wsa_init_done)
        {
        wsa_init_done=0;
		WSACleanup();
		}
	}
B
Bodo Möller 已提交
173
#endif
174

R
Richard Levitte 已提交
175
static int ssl_sock_init(void)
176
	{
R
Richard Levitte 已提交
177 178 179 180 181 182
#ifdef WATT32
	extern int _watt_do_exit;
	_watt_do_exit = 0;
	if (sock_init())
		return (0);
#elif defined(OPENSSL_SYS_WINDOWS)
183 184 185 186 187
	if (!wsa_init_done)
		{
		int err;
	  
#ifdef SIGINT
R
Richard Levitte 已提交
188
		signal(SIGINT,(void (*)(int))ssl_sock_cleanup);
189 190 191 192 193 194 195 196 197 198
#endif
		wsa_init_done=1;
		memset(&wsa_state,0,sizeof(wsa_state));
		if (WSAStartup(0x0101,&wsa_state)!=0)
			{
			err=WSAGetLastError();
			BIO_printf(bio_err,"unable to start WINSOCK, error code=%d\n",err);
			return(0);
			}

199
#ifdef OPENSSL_SYS_WIN16
200 201 202 203 204
		EnumTaskWindows(GetCurrentTask(),enumproc,0L);
		lpTopWndProc=(FARPROC)GetWindowLong(topWnd,GWL_WNDPROC);
		lpTopHookProc=MakeProcInstance((FARPROC)topHookProc,_hInstance);

		SetWindowLong(topWnd,GWL_WNDPROC,(LONG)lpTopHookProc);
205
#endif /* OPENSSL_SYS_WIN16 */
206
		}
207
#elif defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK)
R
Richard Levitte 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
   WORD wVerReq;
   WSADATA wsaData;
   int err;

   if (!wsa_init_done)
      {
   
# ifdef SIGINT
      signal(SIGINT,(void (*)(int))sock_cleanup);
# endif

      wsa_init_done=1;
      wVerReq = MAKEWORD( 2, 0 );
      err = WSAStartup(wVerReq,&wsaData);
      if (err != 0)
         {
         BIO_printf(bio_err,"unable to start WINSOCK2, error code=%d\n",err);
         return(0);
         }
      }
228
#endif /* OPENSSL_SYS_WINDOWS */
229 230 231
	return(1);
	}

B
Ben Laurie 已提交
232
int init_client(int *sock, char *host, int port, int type)
233 234 235
	{
	unsigned char ip[4];

B
Ben Laurie 已提交
236
	ip[0] = ip[1] = ip[2] = ip[3] = 0;
237
	if (!host_ip(host,&(ip[0])))
238 239
		return 0;
	return init_client_ip(sock,ip,port,type);
240 241
	}

B
Ben Laurie 已提交
242 243
static int init_client_ip(int *sock, const unsigned char ip[4], int port,
			  int type)
244 245 246 247 248
	{
	unsigned long addr;
	struct sockaddr_in them;
	int s,i;

R
Richard Levitte 已提交
249
	if (!ssl_sock_init()) return(0);
250 251 252 253 254 255 256 257 258 259 260

	memset((char *)&them,0,sizeof(them));
	them.sin_family=AF_INET;
	them.sin_port=htons((unsigned short)port);
	addr=(unsigned long)
		((unsigned long)ip[0]<<24L)|
		((unsigned long)ip[1]<<16L)|
		((unsigned long)ip[2]<< 8L)|
		((unsigned long)ip[3]);
	them.sin_addr.s_addr=htonl(addr);

B
Ben Laurie 已提交
261 262 263 264 265
	if (type == SOCK_STREAM)
		s=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
	else /* ( type == SOCK_DGRAM) */
		s=socket(AF_INET,SOCK_DGRAM,IPPROTO_UDP);
			
266 267
	if (s == INVALID_SOCKET) { perror("socket"); return(0); }

U
Ulf Möller 已提交
268
#if defined(SO_KEEPALIVE) && !defined(OPENSSL_SYS_MPE)
B
Ben Laurie 已提交
269 270 271 272 273 274
	if (type == SOCK_STREAM)
		{
		i=0;
		i=setsockopt(s,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
		if (i < 0) { perror("keepalive"); return(0); }
		}
275
#endif
276 277

	if (connect(s,(struct sockaddr *)&them,sizeof(them)) == -1)
U
Ulf Möller 已提交
278
		{ closesocket(s); perror("connect"); return(0); }
279 280 281 282
	*sock=s;
	return(1);
	}

283
int do_server(int port, int type, int *ret, int (*cb)(char *hostname, int s, int stype, unsigned char *context), unsigned char *context, int naccept)
284 285
	{
	int sock;
B
Ben Laurie 已提交
286
	char *name = NULL;
N
Nils Larsch 已提交
287
	int accept_socket = 0;
288 289
	int i;

B
Ben Laurie 已提交
290
	if (!init_server(&accept_socket,port,type)) return(0);
291 292 293 294 295 296

	if (ret != NULL)
		{
		*ret=accept_socket;
		/* return(1);*/
		}
B
Ben Laurie 已提交
297 298 299
  	for (;;)
  		{
		if (type==SOCK_STREAM)
300
			{
301 302 303
#ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
			if (do_accept(accept_socket,&sock,NULL) == 0)
#else
B
Ben Laurie 已提交
304
			if (do_accept(accept_socket,&sock,&name) == 0)
305
#endif
B
Ben Laurie 已提交
306 307 308 309
				{
				SHUTDOWN(accept_socket);
				return(0);
				}
310
			}
B
Ben Laurie 已提交
311 312
		else
			sock = accept_socket;
313
		i=(*cb)(name,sock, type, context);
314
		if (name != NULL) OPENSSL_free(name);
B
Ben Laurie 已提交
315 316
		if (type==SOCK_STREAM)
			SHUTDOWN2(sock);
317 318 319
		if (naccept != -1)
			naccept--;
		if (i < 0 || naccept == 0)
320
			{
321
			SHUTDOWN2(accept_socket);
322 323 324 325 326
			return(i);
			}
		}
	}

B
Ben Laurie 已提交
327
static int init_server_long(int *sock, int port, char *ip, int type)
328 329 330
	{
	int ret=0;
	struct sockaddr_in server;
B
Ben Laurie 已提交
331
	int s= -1;
332

R
Richard Levitte 已提交
333
	if (!ssl_sock_init()) return(0);
334 335 336 337

	memset((char *)&server,0,sizeof(server));
	server.sin_family=AF_INET;
	server.sin_port=htons((unsigned short)port);
338 339 340
	if (ip == NULL)
		server.sin_addr.s_addr=INADDR_ANY;
	else
341 342
/* Added for T3E, address-of fails on bit field (beckman@acl.lanl.gov) */
#ifndef BIT_FIELD_LIMITS
343
		memcpy(&server.sin_addr.s_addr,ip,4);
344 345 346
#else
		memcpy(&server.sin_addr,ip,4);
#endif
B
Ben Laurie 已提交
347 348 349 350 351
	
		if (type == SOCK_STREAM)
			s=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
		else /* type == SOCK_DGRAM */
			s=socket(AF_INET, SOCK_DGRAM,IPPROTO_UDP);
352 353

	if (s == INVALID_SOCKET) goto err;
B
Bodo Möller 已提交
354 355
#if defined SOL_SOCKET && defined SO_REUSEADDR
		{
B
Ben Laurie 已提交
356
		int j = 1;
B
Bodo Möller 已提交
357
		setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
U
Ulf Möller 已提交
358
			   (void *) &j, sizeof j);
B
Bodo Möller 已提交
359 360
		}
#endif
361 362
	if (bind(s,(struct sockaddr *)&server,sizeof(server)) == -1)
		{
363
#ifndef OPENSSL_SYS_WINDOWS
364 365 366 367
		perror("bind");
#endif
		goto err;
		}
368
	/* Make it 128 for linux */
B
Ben Laurie 已提交
369
	if (type==SOCK_STREAM && listen(s,128) == -1) goto err;
370 371 372 373 374 375 376 377 378 379
	*sock=s;
	ret=1;
err:
	if ((ret == 0) && (s != -1))
		{
		SHUTDOWN(s);
		}
	return(ret);
	}

B
Ben Laurie 已提交
380
static int init_server(int *sock, int port, int type)
381
	{
B
Ben Laurie 已提交
382
	return(init_server_long(sock, port, NULL, type));
383 384
	}

B
Bodo Möller 已提交
385
static int do_accept(int acc_sock, int *sock, char **host)
386
	{
B
Ben Laurie 已提交
387
	int ret;
388 389
	struct hostent *h1,*h2;
	static struct sockaddr_in from;
B
Ben Laurie 已提交
390
	int len;
391 392
/*	struct linger ling; */

R
Richard Levitte 已提交
393
	if (!ssl_sock_init()) return(0);
394

395
#ifndef OPENSSL_SYS_WINDOWS
396 397 398 399 400
redoit:
#endif

	memset((char *)&from,0,sizeof(from));
	len=sizeof(from);
U
Ulf Möller 已提交
401
	/* Note: under VMS with SOCKETSHR the fourth parameter is currently
U
Ulf Möller 已提交
402 403 404 405 406
	 * of type (int *) whereas under other systems it is (void *) if
	 * you don't have a cast it will choke the compiler: if you do
	 * have a cast then you can either go for (int *) or (void *).
	 */
	ret=accept(acc_sock,(struct sockaddr *)&from,(void *)&len);
407 408
	if (ret == INVALID_SOCKET)
		{
409
#if defined(OPENSSL_SYS_WINDOWS) || (defined(OPENSSL_SYS_NETWARE) && !defined(NETWARE_BSDSOCK))
410
		int i;
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
		i=WSAGetLastError();
		BIO_printf(bio_err,"accept error %d\n",i);
#else
		if (errno == EINTR)
			{
			/*check_timeout(); */
			goto redoit;
			}
		fprintf(stderr,"errno=%d ",errno);
		perror("accept");
#endif
		return(0);
		}

/*
	ling.l_onoff=1;
	ling.l_linger=0;
	i=setsockopt(ret,SOL_SOCKET,SO_LINGER,(char *)&ling,sizeof(ling));
	if (i < 0) { perror("linger"); return(0); }
	i=0;
	i=setsockopt(ret,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
	if (i < 0) { perror("keepalive"); return(0); }
*/

	if (host == NULL) goto end;
436
#ifndef BIT_FIELD_LIMITS
437 438 439
	/* I should use WSAAsyncGetHostByName() under windows */
	h1=gethostbyaddr((char *)&from.sin_addr.s_addr,
		sizeof(from.sin_addr.s_addr),AF_INET);
440 441 442 443
#else
	h1=gethostbyaddr((char *)&from.sin_addr,
		sizeof(struct in_addr),AF_INET);
#endif
444 445 446 447 448 449 450 451
	if (h1 == NULL)
		{
		BIO_printf(bio_err,"bad gethostbyaddr\n");
		*host=NULL;
		/* return(0); */
		}
	else
		{
452
		if ((*host=(char *)OPENSSL_malloc(strlen(h1->h_name)+1)) == NULL)
453
			{
454
			perror("OPENSSL_malloc");
455 456
			return(0);
			}
457
		BUF_strlcpy(*host,h1->h_name,strlen(h1->h_name)+1);
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475

		h2=GetHostByName(*host);
		if (h2 == NULL)
			{
			BIO_printf(bio_err,"gethostbyname failure\n");
			return(0);
			}
		if (h2->h_addrtype != AF_INET)
			{
			BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
			return(0);
			}
		}
end:
	*sock=ret;
	return(1);
	}

U
Ulf Möller 已提交
476 477
int extract_host_port(char *str, char **host_ptr, unsigned char *ip,
	     short *port_ptr)
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
	{
	char *h,*p;

	h=str;
	p=strchr(str,':');
	if (p == NULL)
		{
		BIO_printf(bio_err,"no port defined\n");
		return(0);
		}
	*(p++)='\0';

	if ((ip != NULL) && !host_ip(str,ip))
		goto err;
	if (host_ptr != NULL) *host_ptr=h;

	if (!extract_port(p,port_ptr))
		goto err;
	return(1);
err:
	return(0);
	}

B
Bodo Möller 已提交
501
static int host_ip(char *str, unsigned char ip[4])
502 503 504 505
	{
	unsigned int in[4]; 
	int i;

B
Bodo Möller 已提交
506
	if (sscanf(str,"%u.%u.%u.%u",&(in[0]),&(in[1]),&(in[2]),&(in[3])) == 4)
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
		{
		for (i=0; i<4; i++)
			if (in[i] > 255)
				{
				BIO_printf(bio_err,"invalid IP address\n");
				goto err;
				}
		ip[0]=in[0];
		ip[1]=in[1];
		ip[2]=in[2];
		ip[3]=in[3];
		}
	else
		{ /* do a gethostbyname */
		struct hostent *he;

R
Richard Levitte 已提交
523
		if (!ssl_sock_init()) return(0);
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546

		he=GetHostByName(str);
		if (he == NULL)
			{
			BIO_printf(bio_err,"gethostbyname failure\n");
			goto err;
			}
		/* cast to short because of win16 winsock definition */
		if ((short)he->h_addrtype != AF_INET)
			{
			BIO_printf(bio_err,"gethostbyname addr is not AF_INET\n");
			return(0);
			}
		ip[0]=he->h_addr_list[0][0];
		ip[1]=he->h_addr_list[0][1];
		ip[2]=he->h_addr_list[0][2];
		ip[3]=he->h_addr_list[0][3];
		}
	return(1);
err:
	return(0);
	}

U
Ulf Möller 已提交
547
int extract_port(char *str, short *port_ptr)
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
	{
	int i;
	struct servent *s;

	i=atoi(str);
	if (i != 0)
		*port_ptr=(unsigned short)i;
	else
		{
		s=getservbyname(str,"tcp");
		if (s == NULL)
			{
			BIO_printf(bio_err,"getservbyname failure for %s\n",str);
			return(0);
			}
		*port_ptr=ntohs((unsigned short)s->s_port);
		}
	return(1);
	}

#define GHBN_NUM	4
static struct ghbn_cache_st
	{
	char name[128];
	struct hostent ent;
	unsigned long order;
	} ghbn_cache[GHBN_NUM];

static unsigned long ghbn_hits=0L;
static unsigned long ghbn_miss=0L;

U
Ulf Möller 已提交
579
static struct hostent *GetHostByName(char *name)
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
	{
	struct hostent *ret;
	int i,lowi=0;
	unsigned long low= (unsigned long)-1;

	for (i=0; i<GHBN_NUM; i++)
		{
		if (low > ghbn_cache[i].order)
			{
			low=ghbn_cache[i].order;
			lowi=i;
			}
		if (ghbn_cache[i].order > 0)
			{
			if (strncmp(name,ghbn_cache[i].name,128) == 0)
				break;
			}
		}
	if (i == GHBN_NUM) /* no hit*/
		{
		ghbn_miss++;
		ret=gethostbyname(name);
		if (ret == NULL) return(NULL);
		/* else add to cache */
604 605 606 607 608 609
		if(strlen(name) < sizeof ghbn_cache[0].name)
			{
			strcpy(ghbn_cache[lowi].name,name);
			memcpy((char *)&(ghbn_cache[lowi].ent),ret,sizeof(struct hostent));
			ghbn_cache[lowi].order=ghbn_miss+ghbn_hits;
			}
610 611 612 613 614 615 616 617 618 619
		return(ret);
		}
	else
		{
		ghbn_hits++;
		ret= &(ghbn_cache[i].ent);
		ghbn_cache[i].order=ghbn_miss+ghbn_hits;
		return(ret);
		}
	}
620 621

#endif