Home | History | Annotate | Line # | Download | only in libsa
bootparam.c revision 1.10
      1  1.10   thorpej /*	$NetBSD: bootparam.c,v 1.10 1996/10/14 21:16:55 thorpej Exp $	*/
      2   1.1       gwr 
      3   1.1       gwr /*
      4   1.1       gwr  * Copyright (c) 1995 Gordon W. Ross
      5   1.1       gwr  * All rights reserved.
      6   1.1       gwr  *
      7   1.1       gwr  * Redistribution and use in source and binary forms, with or without
      8   1.1       gwr  * modification, are permitted provided that the following conditions
      9   1.1       gwr  * are met:
     10   1.1       gwr  * 1. Redistributions of source code must retain the above copyright
     11   1.1       gwr  *    notice, this list of conditions and the following disclaimer.
     12   1.1       gwr  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       gwr  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       gwr  *    documentation and/or other materials provided with the distribution.
     15   1.1       gwr  * 3. The name of the author may not be used to endorse or promote products
     16   1.1       gwr  *    derived from this software without specific prior written permission.
     17   1.1       gwr  * 4. All advertising materials mentioning features or use of this software
     18   1.1       gwr  *    must display the following acknowledgement:
     19   1.1       gwr  *      This product includes software developed by Gordon W. Ross
     20   1.1       gwr  *
     21   1.1       gwr  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1       gwr  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1       gwr  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1       gwr  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1       gwr  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1       gwr  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1       gwr  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1       gwr  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1       gwr  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1       gwr  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1       gwr  */
     32   1.1       gwr 
     33   1.1       gwr /*
     34   1.1       gwr  * RPC/bootparams
     35   1.1       gwr  */
     36   1.1       gwr 
     37   1.1       gwr #include <sys/param.h>
     38   1.1       gwr #include <sys/socket.h>
     39   1.1       gwr 
     40   1.1       gwr #include <net/if.h>
     41   1.1       gwr 
     42   1.1       gwr #include <netinet/in.h>
     43   1.1       gwr #include <netinet/in_systm.h>
     44   1.1       gwr 
     45   1.7       gwr #include <string.h>
     46   1.1       gwr 
     47   1.7       gwr #include "rpcv2.h"
     48   1.1       gwr 
     49   1.1       gwr #include "stand.h"
     50   1.1       gwr #include "net.h"
     51   1.1       gwr #include "netif.h"
     52   1.1       gwr #include "rpc.h"
     53   1.1       gwr #include "bootparam.h"
     54   1.1       gwr 
     55   1.8  christos #ifdef DEBUG_RPC
     56   1.9  christos #define RPC_PRINTF(a)	printf a
     57   1.8  christos #else
     58   1.8  christos #define RPC_PRINTF(a)
     59   1.8  christos #endif
     60   1.8  christos 
     61   1.4        pk struct in_addr	bp_server_addr;	/* net order */
     62   1.4        pk n_short		bp_server_port;	/* net order */
     63   1.1       gwr 
     64   1.1       gwr /*
     65   1.1       gwr  * RPC definitions for bootparamd
     66   1.1       gwr  */
     67   1.1       gwr #define	BOOTPARAM_PROG		100026
     68   1.1       gwr #define	BOOTPARAM_VERS		1
     69   1.1       gwr #define BOOTPARAM_WHOAMI	1
     70   1.1       gwr #define BOOTPARAM_GETFILE	2
     71   1.1       gwr 
     72   1.1       gwr /*
     73   1.1       gwr  * Inet address in RPC messages
     74   1.1       gwr  * (Note, really four ints, NOT chars.  Blech.)
     75   1.1       gwr  */
     76   1.1       gwr struct xdr_inaddr {
     77   1.1       gwr 	u_int32_t  atype;
     78   1.1       gwr 	int32_t	addr[4];
     79   1.1       gwr };
     80   1.1       gwr 
     81   1.5       gwr int xdr_inaddr_encode __P((char **p, struct in_addr ia));
     82   1.5       gwr int xdr_inaddr_decode __P((char **p, struct in_addr *ia));
     83   1.1       gwr 
     84   1.5       gwr int xdr_string_encode __P((char **p, char *str, int len));
     85   1.5       gwr int xdr_string_decode __P((char **p, char *str, int *len_p));
     86   1.1       gwr 
     87   1.1       gwr 
     88   1.1       gwr /*
     89   1.1       gwr  * RPC: bootparam/whoami
     90   1.1       gwr  * Given client IP address, get:
     91   1.1       gwr  *	client name	(hostname)
     92   1.1       gwr  *	domain name (domainname)
     93   1.1       gwr  *	gateway address
     94   1.1       gwr  *
     95   1.1       gwr  * The hostname and domainname are set here for convenience.
     96   1.1       gwr  *
     97   1.1       gwr  * Note - bpsin is initialized to the broadcast address,
     98   1.1       gwr  * and will be replaced with the bootparam server address
     99   1.1       gwr  * after this call is complete.  Have to use PMAP_PROC_CALL
    100   1.1       gwr  * to make sure we get responses only from a servers that
    101   1.1       gwr  * know about us (don't want to broadcast a getport call).
    102   1.1       gwr  */
    103   1.1       gwr int
    104   1.1       gwr bp_whoami(sockfd)
    105   1.1       gwr 	int sockfd;
    106   1.1       gwr {
    107   1.1       gwr 	/* RPC structures for PMAPPROC_CALLIT */
    108   1.1       gwr 	struct args {
    109   1.1       gwr 		u_int32_t prog;
    110   1.1       gwr 		u_int32_t vers;
    111   1.1       gwr 		u_int32_t proc;
    112   1.1       gwr 		u_int32_t arglen;
    113   1.1       gwr 		struct xdr_inaddr xina;
    114   1.1       gwr 	} *args;
    115   1.1       gwr 	struct repl {
    116   1.6       gwr 		u_int16_t _pad;
    117   1.6       gwr 		u_int16_t port;
    118   1.1       gwr 		u_int32_t encap_len;
    119   1.1       gwr 		/* encapsulated data here */
    120   1.1       gwr 		n_long  capsule[64];
    121   1.1       gwr 	} *repl;
    122   1.1       gwr 	struct {
    123   1.1       gwr 		n_long	h[RPC_HEADER_WORDS];
    124   1.1       gwr 		struct args d;
    125   1.1       gwr 	} sdata;
    126   1.1       gwr 	struct {
    127   1.1       gwr 		n_long	h[RPC_HEADER_WORDS];
    128   1.1       gwr 		struct repl d;
    129   1.1       gwr 	} rdata;
    130   1.5       gwr 	char *send_tail, *recv_head;
    131   1.1       gwr 	struct iodesc *d;
    132   1.1       gwr 	int len, x;
    133   1.1       gwr 
    134   1.8  christos 	RPC_PRINTF(("bp_whoami: myip=%s\n", inet_ntoa(myip)));
    135   1.1       gwr 
    136   1.1       gwr 	if (!(d = socktodesc(sockfd))) {
    137   1.8  christos 		RPC_PRINTF(("bp_whoami: bad socket. %d\n", sockfd));
    138   1.4        pk 		return (-1);
    139   1.1       gwr 	}
    140   1.1       gwr 	args = &sdata.d;
    141   1.1       gwr 	repl = &rdata.d;
    142   1.1       gwr 
    143   1.1       gwr 	/*
    144   1.1       gwr 	 * Build request args for PMAPPROC_CALLIT.
    145   1.1       gwr 	 */
    146   1.1       gwr 	args->prog = htonl(BOOTPARAM_PROG);
    147   1.1       gwr 	args->vers = htonl(BOOTPARAM_VERS);
    148   1.1       gwr 	args->proc = htonl(BOOTPARAM_WHOAMI);
    149   1.1       gwr 	args->arglen = htonl(sizeof(struct xdr_inaddr));
    150   1.5       gwr 	send_tail = (char*) &args->xina;
    151   1.1       gwr 
    152   1.1       gwr 	/*
    153   1.1       gwr 	 * append encapsulated data (client IP address)
    154   1.1       gwr 	 */
    155   1.1       gwr 	if (xdr_inaddr_encode(&send_tail, myip))
    156   1.1       gwr 		return (-1);
    157   1.1       gwr 
    158   1.1       gwr 	/* RPC: portmap/callit */
    159   1.1       gwr 	d->myport = htons(--rpc_port);
    160   1.4        pk 	d->destip.s_addr = INADDR_BROADCAST;	/* XXX: subnet bcast? */
    161   1.1       gwr 	/* rpc_call will set d->destport */
    162   1.1       gwr 
    163   1.1       gwr 	len = rpc_call(d, PMAPPROG, PMAPVERS, PMAPPROC_CALLIT,
    164   1.5       gwr 				  args, send_tail - (char*)args,
    165   1.1       gwr 				  repl, sizeof(*repl));
    166   1.1       gwr 	if (len < 8) {
    167   1.9  christos 		printf("bootparamd: 'whoami' call failed\n");
    168   1.4        pk 		return (-1);
    169   1.1       gwr 	}
    170   1.1       gwr 
    171   1.1       gwr 	/* Save bootparam server address (from IP header). */
    172   1.1       gwr 	rpc_fromaddr(repl, &bp_server_addr, &bp_server_port);
    173   1.1       gwr 
    174   1.1       gwr 	/*
    175   1.1       gwr 	 * Note that bp_server_port is now 111 due to the
    176   1.1       gwr 	 * indirect call (using PMAPPROC_CALLIT), so get the
    177   1.1       gwr 	 * actual port number from the reply data.
    178   1.1       gwr 	 */
    179   1.1       gwr 	bp_server_port = repl->port;
    180   1.1       gwr 
    181   1.8  christos 	RPC_PRINTF(("bp_whoami: server at %s:%d\n",
    182   1.8  christos 	    inet_ntoa(bp_server_addr), ntohs(bp_server_port)));
    183   1.1       gwr 
    184   1.1       gwr 	/* We have just done a portmap call, so cache the portnum. */
    185   1.1       gwr 	rpc_pmap_putcache(bp_server_addr,
    186   1.1       gwr 			  BOOTPARAM_PROG,
    187   1.1       gwr 			  BOOTPARAM_VERS,
    188   1.5       gwr 			  (int)ntohs(bp_server_port));
    189   1.1       gwr 
    190   1.1       gwr 	/*
    191   1.1       gwr 	 * Parse the encapsulated results from bootparam/whoami
    192   1.1       gwr 	 */
    193   1.1       gwr 	x = ntohl(repl->encap_len);
    194   1.1       gwr 	if (len < x) {
    195   1.9  christos 		printf("bp_whoami: short reply, %d < %d\n", len, x);
    196   1.4        pk 		return (-1);
    197   1.1       gwr 	}
    198   1.5       gwr 	recv_head = (char*) repl->capsule;
    199   1.1       gwr 
    200   1.1       gwr 	/* client name */
    201   1.1       gwr 	hostnamelen = MAXHOSTNAMELEN-1;
    202   1.1       gwr 	if (xdr_string_decode(&recv_head, hostname, &hostnamelen)) {
    203   1.8  christos 		RPC_PRINTF(("bp_whoami: bad hostname\n"));
    204   1.4        pk 		return (-1);
    205   1.1       gwr 	}
    206   1.1       gwr 
    207   1.1       gwr 	/* domain name */
    208   1.1       gwr 	domainnamelen = MAXHOSTNAMELEN-1;
    209   1.1       gwr 	if (xdr_string_decode(&recv_head, domainname, &domainnamelen)) {
    210   1.8  christos 		RPC_PRINTF(("bp_whoami: bad domainname\n"));
    211   1.4        pk 		return (-1);
    212   1.1       gwr 	}
    213   1.1       gwr 
    214   1.1       gwr 	/* gateway address */
    215   1.1       gwr 	if (xdr_inaddr_decode(&recv_head, &gateip)) {
    216   1.8  christos 		RPC_PRINTF(("bp_whoami: bad gateway\n"));
    217   1.4        pk 		return (-1);
    218   1.1       gwr 	}
    219   1.1       gwr 
    220   1.1       gwr 	/* success */
    221   1.1       gwr 	return(0);
    222   1.1       gwr }
    223   1.1       gwr 
    224   1.1       gwr 
    225   1.1       gwr /*
    226   1.1       gwr  * RPC: bootparam/getfile
    227   1.1       gwr  * Given client name and file "key", get:
    228   1.1       gwr  *	server name
    229   1.1       gwr  *	server IP address
    230   1.1       gwr  *	server pathname
    231   1.1       gwr  */
    232   1.1       gwr int
    233   1.1       gwr bp_getfile(sockfd, key, serv_addr, pathname)
    234   1.1       gwr 	int sockfd;
    235   1.1       gwr 	char *key;
    236   1.1       gwr 	char *pathname;
    237   1.4        pk 	struct in_addr *serv_addr;
    238   1.1       gwr {
    239   1.1       gwr 	struct {
    240   1.1       gwr 		n_long	h[RPC_HEADER_WORDS];
    241   1.1       gwr 		n_long  d[64];
    242   1.1       gwr 	} sdata;
    243   1.1       gwr 	struct {
    244   1.1       gwr 		n_long	h[RPC_HEADER_WORDS];
    245   1.1       gwr 		n_long  d[128];
    246   1.1       gwr 	} rdata;
    247   1.1       gwr 	char serv_name[FNAME_SIZE];
    248   1.5       gwr 	char *send_tail, *recv_head;
    249   1.1       gwr 	/* misc... */
    250   1.1       gwr 	struct iodesc *d;
    251   1.1       gwr 	int sn_len, path_len, rlen;
    252   1.1       gwr 
    253   1.1       gwr 	if (!(d = socktodesc(sockfd))) {
    254   1.8  christos 		RPC_PRINTF(("bp_getfile: bad socket. %d\n", sockfd));
    255   1.4        pk 		return (-1);
    256   1.1       gwr 	}
    257   1.1       gwr 
    258   1.5       gwr 	send_tail = (char*) sdata.d;
    259   1.5       gwr 	recv_head = (char*) rdata.d;
    260   1.1       gwr 
    261   1.1       gwr 	/*
    262   1.1       gwr 	 * Build request message.
    263   1.1       gwr 	 */
    264   1.1       gwr 
    265   1.1       gwr 	/* client name (hostname) */
    266   1.1       gwr 	if (xdr_string_encode(&send_tail, hostname, hostnamelen)) {
    267   1.8  christos 		RPC_PRINTF(("bp_getfile: bad client\n"));
    268   1.1       gwr 		return (-1);
    269   1.1       gwr 	}
    270   1.1       gwr 
    271   1.1       gwr 	/* key name (root or swap) */
    272   1.1       gwr 	if (xdr_string_encode(&send_tail, key, strlen(key))) {
    273   1.8  christos 		RPC_PRINTF(("bp_getfile: bad key\n"));
    274   1.1       gwr 		return (-1);
    275   1.1       gwr 	}
    276   1.1       gwr 
    277   1.1       gwr 	/* RPC: bootparam/getfile */
    278   1.1       gwr 	d->myport = htons(--rpc_port);
    279   1.1       gwr 	d->destip   = bp_server_addr;
    280   1.1       gwr 	/* rpc_call will set d->destport */
    281   1.1       gwr 
    282   1.1       gwr 	rlen = rpc_call(d,
    283   1.1       gwr 		BOOTPARAM_PROG, BOOTPARAM_VERS, BOOTPARAM_GETFILE,
    284   1.5       gwr 		sdata.d, send_tail - (char*)sdata.d,
    285   1.1       gwr 		rdata.d, sizeof(rdata.d));
    286   1.1       gwr 	if (rlen < 4) {
    287   1.8  christos 		RPC_PRINTF(("bp_getfile: short reply\n"));
    288   1.4        pk 		errno = EBADRPC;
    289   1.4        pk 		return (-1);
    290   1.1       gwr 	}
    291   1.5       gwr 	recv_head = (char*) rdata.d;
    292   1.1       gwr 
    293   1.1       gwr 	/*
    294   1.1       gwr 	 * Parse result message.
    295   1.1       gwr 	 */
    296   1.1       gwr 
    297   1.1       gwr 	/* server name */
    298   1.1       gwr 	sn_len = FNAME_SIZE-1;
    299   1.1       gwr 	if (xdr_string_decode(&recv_head, serv_name, &sn_len)) {
    300   1.8  christos 		RPC_PRINTF(("bp_getfile: bad server name\n"));
    301   1.4        pk 		return (-1);
    302   1.1       gwr 	}
    303   1.1       gwr 
    304   1.1       gwr 	/* server IP address (mountd/NFS) */
    305   1.1       gwr 	if (xdr_inaddr_decode(&recv_head, serv_addr)) {
    306   1.8  christos 		RPC_PRINTF(("bp_getfile: bad server addr\n"));
    307   1.4        pk 		return (-1);
    308   1.1       gwr 	}
    309   1.1       gwr 
    310   1.1       gwr 	/* server pathname */
    311   1.1       gwr 	path_len = MAXPATHLEN-1;
    312   1.1       gwr 	if (xdr_string_decode(&recv_head, pathname, &path_len)) {
    313   1.8  christos 		RPC_PRINTF(("bp_getfile: bad server path\n"));
    314   1.4        pk 		return (-1);
    315   1.1       gwr 	}
    316   1.1       gwr 
    317   1.1       gwr 	/* success */
    318   1.1       gwr 	return(0);
    319   1.1       gwr }
    320   1.1       gwr 
    321   1.1       gwr 
    322   1.1       gwr /*
    323   1.1       gwr  * eXternal Data Representation routines.
    324   1.1       gwr  * (but with non-standard args...)
    325   1.1       gwr  */
    326   1.1       gwr 
    327   1.1       gwr 
    328   1.1       gwr int
    329   1.1       gwr xdr_string_encode(pkt, str, len)
    330   1.5       gwr 	char **pkt;
    331   1.1       gwr 	char *str;
    332   1.1       gwr 	int len;
    333   1.1       gwr {
    334   1.1       gwr 	u_int32_t *lenp;
    335   1.1       gwr 	char *datap;
    336   1.1       gwr 	int padlen = (len + 3) & ~3;	/* padded length */
    337   1.1       gwr 
    338   1.5       gwr 	/* The data will be int aligned. */
    339   1.5       gwr 	lenp = (u_int32_t*) *pkt;
    340   1.5       gwr 	*pkt += sizeof(*lenp);
    341   1.1       gwr 	*lenp = htonl(len);
    342   1.1       gwr 
    343   1.1       gwr 	datap = *pkt;
    344   1.5       gwr 	*pkt += padlen;
    345   1.1       gwr 	bcopy(str, datap, len);
    346   1.1       gwr 
    347   1.1       gwr 	return (0);
    348   1.1       gwr }
    349   1.1       gwr 
    350   1.1       gwr int
    351   1.1       gwr xdr_string_decode(pkt, str, len_p)
    352   1.5       gwr 	char **pkt;
    353   1.1       gwr 	char *str;
    354   1.1       gwr 	int *len_p;		/* bufsize - 1 */
    355   1.1       gwr {
    356   1.1       gwr 	u_int32_t *lenp;
    357   1.1       gwr 	char *datap;
    358   1.1       gwr 	int slen;	/* string length */
    359   1.1       gwr 	int plen;	/* padded length */
    360   1.1       gwr 
    361   1.5       gwr 	/* The data will be int aligned. */
    362   1.5       gwr 	lenp = (u_int32_t*) *pkt;
    363   1.5       gwr 	*pkt += sizeof(*lenp);
    364   1.1       gwr 	slen = ntohl(*lenp);
    365   1.1       gwr 	plen = (slen + 3) & ~3;
    366   1.1       gwr 
    367   1.1       gwr 	if (slen > *len_p)
    368   1.1       gwr 		slen = *len_p;
    369   1.1       gwr 	datap = *pkt;
    370   1.5       gwr 	*pkt += plen;
    371   1.1       gwr 	bcopy(datap, str, slen);
    372   1.1       gwr 
    373   1.1       gwr 	str[slen] = '\0';
    374   1.1       gwr 	*len_p = slen;
    375   1.1       gwr 
    376   1.1       gwr 	return (0);
    377   1.1       gwr }
    378   1.1       gwr 
    379   1.1       gwr 
    380   1.1       gwr int
    381   1.1       gwr xdr_inaddr_encode(pkt, ia)
    382   1.5       gwr 	char **pkt;
    383   1.5       gwr 	struct in_addr ia;		/* network order */
    384   1.1       gwr {
    385   1.1       gwr 	struct xdr_inaddr *xi;
    386   1.1       gwr 	u_char *cp;
    387   1.1       gwr 	int32_t *ip;
    388   1.1       gwr 	union {
    389   1.5       gwr 		n_long l;	/* network order */
    390   1.1       gwr 		u_char c[4];
    391   1.1       gwr 	} uia;
    392   1.1       gwr 
    393   1.5       gwr 	/* The data will be int aligned. */
    394   1.5       gwr 	xi = (struct xdr_inaddr *) *pkt;
    395   1.5       gwr 	*pkt += sizeof(*xi);
    396   1.1       gwr 	xi->atype = htonl(1);
    397   1.4        pk 	uia.l = ia.s_addr;
    398   1.1       gwr 	cp = uia.c;
    399   1.1       gwr 	ip = xi->addr;
    400   1.5       gwr 	/*
    401   1.5       gwr 	 * Note: the htonl() calls below DO NOT
    402   1.5       gwr 	 * imply that uia.l is in host order.
    403   1.5       gwr 	 * In fact this needs it in net order.
    404   1.5       gwr 	 */
    405   1.4        pk 	*ip++ = htonl((unsigned int)*cp++);
    406   1.4        pk 	*ip++ = htonl((unsigned int)*cp++);
    407   1.4        pk 	*ip++ = htonl((unsigned int)*cp++);
    408   1.4        pk 	*ip++ = htonl((unsigned int)*cp++);
    409   1.1       gwr 
    410   1.1       gwr 	return (0);
    411   1.1       gwr }
    412   1.1       gwr 
    413   1.1       gwr int
    414   1.1       gwr xdr_inaddr_decode(pkt, ia)
    415   1.5       gwr 	char **pkt;
    416   1.5       gwr 	struct in_addr *ia;		/* network order */
    417   1.1       gwr {
    418   1.1       gwr 	struct xdr_inaddr *xi;
    419   1.1       gwr 	u_char *cp;
    420   1.1       gwr 	int32_t *ip;
    421   1.1       gwr 	union {
    422   1.5       gwr 		n_long l;	/* network order */
    423   1.1       gwr 		u_char c[4];
    424   1.1       gwr 	} uia;
    425   1.1       gwr 
    426   1.5       gwr 	/* The data will be int aligned. */
    427   1.5       gwr 	xi = (struct xdr_inaddr *) *pkt;
    428   1.5       gwr 	*pkt += sizeof(*xi);
    429   1.1       gwr 	if (xi->atype != htonl(1)) {
    430   1.8  christos 		RPC_PRINTF(("xdr_inaddr_decode: bad addrtype=%d\n",
    431   1.8  christos 		    ntohl(xi->atype)));
    432   1.1       gwr 		return(-1);
    433   1.1       gwr 	}
    434   1.1       gwr 
    435   1.1       gwr 	cp = uia.c;
    436   1.1       gwr 	ip = xi->addr;
    437   1.5       gwr 	/*
    438   1.5       gwr 	 * Note: the ntohl() calls below DO NOT
    439   1.5       gwr 	 * imply that uia.l is in host order.
    440   1.5       gwr 	 * In fact this needs it in net order.
    441   1.5       gwr 	 */
    442   1.4        pk 	*cp++ = ntohl(*ip++);
    443   1.4        pk 	*cp++ = ntohl(*ip++);
    444   1.4        pk 	*cp++ = ntohl(*ip++);
    445   1.4        pk 	*cp++ = ntohl(*ip++);
    446   1.4        pk 	ia->s_addr = uia.l;
    447   1.1       gwr 
    448   1.1       gwr 	return (0);
    449   1.1       gwr }
    450