Home | History | Annotate | Line # | Download | only in rpc.bootparamd
bootparamd.c revision 1.22
      1  1.22    itojun /*	$NetBSD: bootparamd.c,v 1.22 2000/04/14 12:14:40 itojun Exp $	*/
      2   1.7   thorpej 
      3   1.1   deraadt /*
      4   1.1   deraadt  * This code is not copyright, and is placed in the public domain.
      5   1.1   deraadt  * Feel free to use and modify. Please send modifications and/or
      6   1.1   deraadt  * suggestions + bug fixes to Klas Heggemann <klas (at) nada.kth.se>
      7   1.2   deraadt  *
      8   1.1   deraadt  * Various small changes by Theo de Raadt <deraadt (at) fsa.ca>
      9   1.2   deraadt  * Parser rewritten (adding YP support) by Roland McGrath <roland (at) frob.com>
     10   1.1   deraadt  */
     11   1.1   deraadt 
     12  1.12   thorpej #include <sys/cdefs.h>
     13  1.12   thorpej #ifndef lint
     14  1.22    itojun __RCSID("$NetBSD: bootparamd.c,v 1.22 2000/04/14 12:14:40 itojun Exp $");
     15  1.12   thorpej #endif
     16  1.12   thorpej 
     17   1.1   deraadt #include <sys/types.h>
     18   1.1   deraadt #include <sys/ioctl.h>
     19   1.1   deraadt #include <sys/stat.h>
     20   1.1   deraadt #include <sys/socket.h>
     21  1.10   mycroft 
     22  1.10   mycroft #include <ctype.h>
     23  1.21  christos #include <errno.h>
     24  1.10   mycroft #include <err.h>
     25  1.10   mycroft #include <netdb.h>
     26  1.12   thorpej #include <stdlib.h>
     27   1.1   deraadt #include <stdio.h>
     28  1.10   mycroft #include <string.h>
     29   1.1   deraadt #include <syslog.h>
     30  1.12   thorpej #include <unistd.h>
     31  1.20   thorpej #include <util.h>
     32  1.22    itojun #include <ifaddrs.h>
     33  1.10   mycroft 
     34  1.10   mycroft #include <netinet/in.h>
     35   1.9       cgd #include <arpa/inet.h>
     36  1.10   mycroft 
     37  1.10   mycroft #include <rpc/rpc.h>
     38  1.12   thorpej #include <rpc/pmap_clnt.h>
     39  1.10   mycroft #include <rpcsvc/bootparam_prot.h>
     40  1.12   thorpej #include <rpcsvc/ypclnt.h>
     41  1.10   mycroft 
     42   1.2   deraadt #include "pathnames.h"
     43   1.1   deraadt 
     44   1.1   deraadt #define MAXLEN 800
     45   1.1   deraadt 
     46   1.1   deraadt static char hostname[MAX_MACHINE_NAME];
     47   1.1   deraadt static char askname[MAX_MACHINE_NAME];
     48   1.1   deraadt static char domain_name[MAX_MACHINE_NAME];
     49   1.1   deraadt 
     50   1.5        pk extern void bootparamprog_1 __P((struct svc_req *, SVCXPRT *));
     51   1.1   deraadt 
     52   1.5        pk int	_rpcsvcdirty = 0;
     53   1.5        pk int	_rpcpmstart = 0;
     54   1.1   deraadt int     debug = 0;
     55   1.1   deraadt int     dolog = 0;
     56  1.12   thorpej struct in_addr route_addr;
     57   1.1   deraadt struct sockaddr_in my_addr;
     58  1.11   mycroft extern char *__progname;
     59   1.2   deraadt char   *bootpfile = _PATH_BOOTPARAMS;
     60   1.1   deraadt 
     61  1.12   thorpej int	main __P((int, char *[]));
     62  1.12   thorpej int	lookup_bootparam __P((char *, char *, char *, char **, char **));
     63  1.12   thorpej void	usage __P((void));
     64  1.22    itojun static int get_localaddr __P((const char *, struct sockaddr_in *));
     65   1.1   deraadt 
     66   1.1   deraadt 
     67   1.1   deraadt /*
     68   1.1   deraadt  * ever familiar
     69   1.1   deraadt  */
     70   1.1   deraadt int
     71   1.1   deraadt main(argc, argv)
     72   1.1   deraadt 	int     argc;
     73  1.12   thorpej 	char  *argv[];
     74   1.1   deraadt {
     75   1.1   deraadt 	SVCXPRT *transp;
     76   1.1   deraadt 	struct hostent *he;
     77   1.1   deraadt 	struct stat buf;
     78   1.6      mark 	int    c;
     79   1.1   deraadt 
     80   1.6      mark 	while ((c = getopt(argc, argv, "dsr:f:")) != -1)
     81   1.1   deraadt 		switch (c) {
     82   1.1   deraadt 		case 'd':
     83   1.1   deraadt 			debug = 1;
     84   1.1   deraadt 			break;
     85   1.1   deraadt 		case 'r':
     86   1.1   deraadt 			if (isdigit(*optarg)) {
     87  1.12   thorpej 				if (inet_aton(optarg, &route_addr) != 0)
     88  1.12   thorpej 					break;
     89   1.1   deraadt 			}
     90   1.1   deraadt 			he = gethostbyname(optarg);
     91  1.12   thorpej 			if (he == 0) {
     92  1.13     mikel 				warnx("no such host: %s", optarg);
     93   1.1   deraadt 				usage();
     94   1.1   deraadt 			}
     95  1.15     lukem 			memmove(&route_addr.s_addr, he->h_addr, he->h_length);
     96   1.1   deraadt 			break;
     97   1.1   deraadt 		case 'f':
     98   1.1   deraadt 			bootpfile = optarg;
     99   1.1   deraadt 			break;
    100   1.1   deraadt 		case 's':
    101   1.1   deraadt 			dolog = 1;
    102   1.1   deraadt #ifndef LOG_DAEMON
    103  1.11   mycroft 			openlog(__progname, 0, 0);
    104   1.1   deraadt #else
    105  1.11   mycroft 			openlog(__progname, 0, LOG_DAEMON);
    106   1.1   deraadt 			setlogmask(LOG_UPTO(LOG_NOTICE));
    107   1.1   deraadt #endif
    108   1.1   deraadt 			break;
    109   1.1   deraadt 		default:
    110   1.1   deraadt 			usage();
    111   1.1   deraadt 		}
    112   1.1   deraadt 
    113  1.10   mycroft 	if (stat(bootpfile, &buf))
    114  1.10   mycroft 		err(1, "%s", bootpfile);
    115  1.10   mycroft 
    116  1.12   thorpej 	if (route_addr.s_addr == 0) {
    117  1.22    itojun 		if (get_localaddr(NULL, &my_addr) != 0)
    118  1.22    itojun 			errx(1, "router address not found");
    119  1.12   thorpej 		route_addr.s_addr = my_addr.sin_addr.s_addr;
    120   1.1   deraadt 	}
    121  1.10   mycroft 	if (!debug) {
    122  1.10   mycroft 		if (daemon(0, 0))
    123  1.10   mycroft 			err(1, "can't detach from terminal");
    124  1.10   mycroft 	}
    125  1.20   thorpej 	pidfile(NULL);
    126   1.1   deraadt 
    127   1.1   deraadt 	(void) pmap_unset(BOOTPARAMPROG, BOOTPARAMVERS);
    128   1.1   deraadt 
    129   1.1   deraadt 	transp = svcudp_create(RPC_ANYSOCK);
    130  1.10   mycroft 	if (transp == NULL)
    131  1.10   mycroft 		errx(1, "can't create udp service");
    132  1.10   mycroft 
    133  1.10   mycroft 	if (!svc_register(transp, BOOTPARAMPROG, BOOTPARAMVERS, bootparamprog_1,
    134  1.10   mycroft 	    IPPROTO_UDP))
    135  1.17     lukem 		errx(1, "unable to register BOOTPARAMPROG version %ld, udp",
    136   1.1   deraadt 		    BOOTPARAMVERS);
    137  1.10   mycroft 
    138   1.1   deraadt 	svc_run();
    139  1.10   mycroft 	errx(1, "svc_run returned");
    140   1.1   deraadt }
    141   1.1   deraadt 
    142   1.1   deraadt bp_whoami_res *
    143   1.5        pk bootparamproc_whoami_1_svc(whoami, rqstp)
    144   1.1   deraadt 	bp_whoami_arg *whoami;
    145   1.5        pk 	struct svc_req *rqstp;
    146   1.1   deraadt {
    147   1.9       cgd 	static bp_whoami_res res;
    148   1.9       cgd 	struct hostent *he;
    149  1.18   nathanw 	struct in_addr haddr;
    150  1.21  christos 	int e;
    151   1.2   deraadt 
    152   1.1   deraadt 	if (debug)
    153  1.13     mikel 		warnx("whoami got question for %d.%d.%d.%d",
    154   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.net,
    155   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.host,
    156   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.lh,
    157   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.impno);
    158   1.1   deraadt 	if (dolog)
    159  1.13     mikel 		syslog(LOG_NOTICE, "whoami got question for %d.%d.%d.%d",
    160   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.net,
    161   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.host,
    162   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.lh,
    163   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.impno);
    164   1.1   deraadt 
    165  1.15     lukem 	memmove((char *) &haddr,
    166  1.15     lukem 	    (char *) &whoami->client_address.bp_address_u.ip_addr,
    167  1.15     lukem 	    sizeof(haddr));
    168   1.1   deraadt 	he = gethostbyaddr((char *) &haddr, sizeof(haddr), AF_INET);
    169  1.14       mrg 	if (he) {
    170  1.14       mrg 		strncpy(askname, he->h_name, sizeof(askname));
    171  1.14       mrg 		askname[sizeof(askname)-1] = 0;
    172  1.14       mrg 	} else {
    173  1.18   nathanw 		strncpy(askname, inet_ntoa(haddr), sizeof(askname));
    174  1.14       mrg 		askname[sizeof(askname)-1] = 0;
    175   1.9       cgd 	}
    176   1.1   deraadt 
    177   1.1   deraadt 	if (debug)
    178  1.13     mikel 		warnx("This is host %s", askname);
    179   1.1   deraadt 	if (dolog)
    180  1.13     mikel 		syslog(LOG_NOTICE, "This is host %s", askname);
    181   1.1   deraadt 
    182  1.21  christos 	if ((e = lookup_bootparam(askname, hostname, NULL, NULL, NULL)) == 0) {
    183   1.1   deraadt 		res.client_name = hostname;
    184   1.1   deraadt 		getdomainname(domain_name, MAX_MACHINE_NAME);
    185   1.1   deraadt 		res.domain_name = domain_name;
    186   1.1   deraadt 
    187   1.1   deraadt 		if (res.router_address.address_type != IP_ADDR_TYPE) {
    188   1.1   deraadt 			res.router_address.address_type = IP_ADDR_TYPE;
    189  1.15     lukem 			memmove(&res.router_address.bp_address_u.ip_addr,
    190  1.15     lukem 			    &route_addr.s_addr,4);
    191   1.1   deraadt 		}
    192   1.1   deraadt 		if (debug)
    193  1.13     mikel 			warnx("Returning %s   %s    %d.%d.%d.%d",
    194   1.1   deraadt 			    res.client_name, res.domain_name,
    195   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.net,
    196   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.host,
    197   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.lh,
    198  1.14       mrg 			    255 &res.router_address.bp_address_u.ip_addr.impno);
    199   1.1   deraadt 		if (dolog)
    200  1.13     mikel 			syslog(LOG_NOTICE, "Returning %s   %s    %d.%d.%d.%d",
    201   1.1   deraadt 			    res.client_name, res.domain_name,
    202   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.net,
    203   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.host,
    204   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.lh,
    205  1.14       mrg 			    255 &res.router_address.bp_address_u.ip_addr.impno);
    206   1.1   deraadt 
    207   1.1   deraadt 		return (&res);
    208   1.1   deraadt 	}
    209  1.21  christos 	errno = e;
    210   1.1   deraadt 	if (debug)
    211  1.21  christos 		warn("whoami failed");
    212   1.1   deraadt 	if (dolog)
    213  1.21  christos 		syslog(LOG_NOTICE, "whoami failed %m");
    214   1.1   deraadt 	return (NULL);
    215   1.1   deraadt }
    216   1.1   deraadt 
    217   1.1   deraadt 
    218   1.1   deraadt bp_getfile_res *
    219   1.5        pk bootparamproc_getfile_1_svc(getfile, rqstp)
    220   1.1   deraadt 	bp_getfile_arg *getfile;
    221   1.5        pk 	struct svc_req *rqstp;
    222   1.1   deraadt {
    223   1.1   deraadt 	static bp_getfile_res res;
    224   1.9       cgd 	struct hostent *he;
    225   1.2   deraadt 	int     err;
    226   1.1   deraadt 
    227   1.1   deraadt 	if (debug)
    228  1.13     mikel 		warnx("getfile got question for \"%s\" and file \"%s\"",
    229   1.1   deraadt 		    getfile->client_name, getfile->file_id);
    230   1.1   deraadt 
    231   1.1   deraadt 	if (dolog)
    232  1.13     mikel 		syslog(LOG_NOTICE,
    233  1.13     mikel 		    "getfile got question for \"%s\" and file \"%s\"",
    234   1.1   deraadt 		    getfile->client_name, getfile->file_id);
    235   1.1   deraadt 
    236   1.1   deraadt 	he = NULL;
    237   1.1   deraadt 	he = gethostbyname(getfile->client_name);
    238   1.1   deraadt 	if (!he)
    239   1.1   deraadt 		goto failed;
    240   1.1   deraadt 
    241  1.14       mrg 	strncpy(askname, he->h_name, sizeof(askname));
    242  1.14       mrg 	askname[sizeof(askname)-1] = 0;
    243   1.2   deraadt 	err = lookup_bootparam(askname, NULL, getfile->file_id,
    244   1.2   deraadt 	    &res.server_name, &res.server_path);
    245   1.2   deraadt 	if (err == 0) {
    246   1.2   deraadt 		he = gethostbyname(res.server_name);
    247   1.2   deraadt 		if (!he)
    248   1.2   deraadt 			goto failed;
    249  1.15     lukem 		memmove(&res.server_address.bp_address_u.ip_addr,
    250  1.15     lukem 		    he->h_addr, 4);
    251   1.2   deraadt 		res.server_address.address_type = IP_ADDR_TYPE;
    252   1.2   deraadt 	} else if (err == ENOENT && !strcmp(getfile->file_id, "dump")) {
    253   1.2   deraadt 		/* Special for dump, answer with null strings. */
    254   1.2   deraadt 		res.server_name[0] = '\0';
    255   1.2   deraadt 		res.server_path[0] = '\0';
    256  1.15     lukem 		memset(&res.server_address.bp_address_u.ip_addr, 0, 4);
    257   1.2   deraadt 	} else {
    258   1.2   deraadt failed:
    259   1.1   deraadt 		if (debug)
    260  1.13     mikel 			warnx("getfile failed for %s",
    261   1.2   deraadt 			    getfile->client_name);
    262   1.1   deraadt 		if (dolog)
    263   1.1   deraadt 			syslog(LOG_NOTICE,
    264  1.13     mikel 			    "getfile failed for %s", getfile->client_name);
    265   1.2   deraadt 		return (NULL);
    266   1.1   deraadt 	}
    267   1.2   deraadt 
    268   1.1   deraadt 	if (debug)
    269  1.10   mycroft 		warnx(
    270  1.13     mikel 		    "returning server:%s path:%s address: %d.%d.%d.%d",
    271   1.2   deraadt 		    res.server_name, res.server_path,
    272   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.net,
    273   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.host,
    274   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.lh,
    275   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.impno);
    276   1.1   deraadt 	if (dolog)
    277   1.1   deraadt 		syslog(LOG_NOTICE,
    278  1.13     mikel 		    "returning server:%s path:%s address: %d.%d.%d.%d",
    279   1.2   deraadt 		    res.server_name, res.server_path,
    280   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.net,
    281   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.host,
    282   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.lh,
    283   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.impno);
    284   1.2   deraadt 	return (&res);
    285   1.1   deraadt }
    286   1.1   deraadt 
    287   1.1   deraadt 
    288   1.2   deraadt int
    289   1.2   deraadt lookup_bootparam(client, client_canonical, id, server, path)
    290   1.2   deraadt 	char	*client;
    291   1.2   deraadt 	char	*client_canonical;
    292   1.2   deraadt 	char	*id;
    293   1.2   deraadt 	char	**server;
    294   1.2   deraadt 	char	**path;
    295   1.1   deraadt {
    296   1.2   deraadt 	FILE   *f = fopen(bootpfile, "r");
    297   1.2   deraadt #ifdef YP
    298   1.2   deraadt 	static char *ypbuf = NULL;
    299   1.2   deraadt 	static int ypbuflen = 0;
    300   1.2   deraadt #endif
    301   1.2   deraadt 	static char buf[BUFSIZ];
    302  1.12   thorpej 	char   *bp, *word = NULL;
    303   1.2   deraadt 	size_t  idlen = id == NULL ? 0 : strlen(id);
    304   1.2   deraadt 	int     contin = 0;
    305   1.2   deraadt 	int     found = 0;
    306   1.2   deraadt 
    307   1.2   deraadt 	if (f == NULL)
    308   1.2   deraadt 		return EINVAL;	/* ? */
    309   1.2   deraadt 
    310   1.2   deraadt 	while (fgets(buf, sizeof buf, f)) {
    311   1.2   deraadt 		int     wascontin = contin;
    312   1.2   deraadt 		contin = buf[strlen(buf) - 2] == '\\';
    313   1.2   deraadt 		bp = buf + strspn(buf, " \t\n");
    314   1.2   deraadt 
    315   1.2   deraadt 		switch (wascontin) {
    316   1.2   deraadt 		case -1:
    317   1.2   deraadt 			/* Continuation of uninteresting line */
    318   1.2   deraadt 			contin *= -1;
    319   1.2   deraadt 			continue;
    320   1.2   deraadt 		case 0:
    321   1.2   deraadt 			/* New line */
    322   1.2   deraadt 			contin *= -1;
    323   1.2   deraadt 			if (*bp == '#')
    324   1.2   deraadt 				continue;
    325   1.2   deraadt 			if ((word = strsep(&bp, " \t\n")) == NULL)
    326   1.2   deraadt 				continue;
    327   1.2   deraadt #ifdef YP
    328   1.2   deraadt 			/* A + in the file means try YP now */
    329   1.2   deraadt 			if (!strcmp(word, "+")) {
    330   1.2   deraadt 				char   *ypdom;
    331   1.2   deraadt 
    332   1.2   deraadt 				if (yp_get_default_domain(&ypdom) ||
    333   1.2   deraadt 				    yp_match(ypdom, "bootparams", client,
    334   1.2   deraadt 					strlen(client), &ypbuf, &ypbuflen))
    335   1.2   deraadt 					continue;
    336   1.2   deraadt 				bp = ypbuf;
    337   1.2   deraadt 				word = client;
    338   1.2   deraadt 				contin *= -1;
    339   1.2   deraadt 				break;
    340   1.2   deraadt 			}
    341   1.2   deraadt #endif
    342  1.21  christos 			if (debug)
    343  1.21  christos 				warnx("match %s with %s", word, client);
    344   1.2   deraadt 			/* See if this line's client is the one we are
    345   1.2   deraadt 			 * looking for */
    346   1.8       cgd 			if (strcasecmp(word, client) != 0) {
    347   1.2   deraadt 				/*
    348   1.2   deraadt 				 * If it didn't match, try getting the
    349   1.2   deraadt 				 * canonical host name of the client
    350   1.2   deraadt 				 * on this line and comparing that to
    351   1.2   deraadt 				 * the client we are looking for
    352   1.2   deraadt 				 */
    353   1.2   deraadt 				struct hostent *hp = gethostbyname(word);
    354  1.19       abs 				if (hp == NULL ) {
    355  1.19       abs 					if (debug)
    356  1.19       abs 						warnx(
    357  1.19       abs 					    "Unknown bootparams host %s", word);
    358  1.19       abs 					if (dolog)
    359  1.19       abs 						syslog(LOG_NOTICE,
    360  1.19       abs 					    "Unknown bootparams host %s", word);
    361  1.19       abs 					continue;
    362  1.19       abs 				}
    363  1.19       abs 				if (strcasecmp(hp->h_name, client))
    364   1.2   deraadt 					continue;
    365   1.1   deraadt 			}
    366   1.2   deraadt 			contin *= -1;
    367   1.2   deraadt 			break;
    368   1.2   deraadt 		case 1:
    369   1.2   deraadt 			/* Continued line we want to parse below */
    370   1.1   deraadt 			break;
    371   1.1   deraadt 		}
    372   1.1   deraadt 
    373   1.2   deraadt 		if (client_canonical)
    374   1.2   deraadt 			strncpy(client_canonical, word, MAX_MACHINE_NAME);
    375   1.1   deraadt 
    376   1.2   deraadt 		/* We have found a line for CLIENT */
    377   1.4     glass 		if (id == NULL) {
    378   1.4     glass 			(void) fclose(f);
    379   1.2   deraadt 			return 0;
    380   1.4     glass 		}
    381   1.2   deraadt 
    382   1.2   deraadt 		/* Look for a value for the parameter named by ID */
    383   1.2   deraadt 		while ((word = strsep(&bp, " \t\n")) != NULL) {
    384   1.2   deraadt 			if (!strncmp(word, id, idlen) && word[idlen] == '=') {
    385   1.2   deraadt 				/* We have found the entry we want */
    386   1.2   deraadt 				*server = &word[idlen + 1];
    387   1.2   deraadt 				*path = strchr(*server, ':');
    388   1.2   deraadt 				if (*path == NULL)
    389   1.2   deraadt 					/* Malformed entry */
    390   1.2   deraadt 					continue;
    391   1.2   deraadt 				*(*path)++ = '\0';
    392   1.2   deraadt 				(void) fclose(f);
    393   1.2   deraadt 				return 0;
    394   1.2   deraadt 			}
    395   1.1   deraadt 		}
    396   1.2   deraadt 
    397   1.2   deraadt 		found = 1;
    398   1.1   deraadt 	}
    399   1.1   deraadt 
    400   1.2   deraadt 	(void) fclose(f);
    401   1.2   deraadt 	return found ? ENOENT : EPERM;
    402  1.12   thorpej }
    403  1.12   thorpej 
    404  1.12   thorpej void
    405  1.12   thorpej usage()
    406  1.12   thorpej {
    407  1.12   thorpej 	fprintf(stderr,
    408  1.12   thorpej 	    "usage: %s [-d] [-s] [-r router] [-f bootparmsfile]\n", __progname);
    409  1.12   thorpej 	exit(1);
    410  1.22    itojun }
    411  1.22    itojun 
    412  1.22    itojun static int
    413  1.22    itojun get_localaddr(ifname, sin)
    414  1.22    itojun 	const char *ifname;
    415  1.22    itojun 	struct sockaddr_in *sin;
    416  1.22    itojun {
    417  1.22    itojun 	struct ifaddrs *ifap, *ifa;
    418  1.22    itojun 
    419  1.22    itojun 	if (getifaddrs(&ifap) != 0)
    420  1.22    itojun 		return -1;
    421  1.22    itojun 
    422  1.22    itojun 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
    423  1.22    itojun 		if (ifname && strcmp(ifname, ifa->ifa_name) != 0)
    424  1.22    itojun 			continue;
    425  1.22    itojun 		if (ifa->ifa_addr->sa_family != AF_INET)
    426  1.22    itojun 			continue;
    427  1.22    itojun 		if (ifa->ifa_addr->sa_len != sizeof(*sin))
    428  1.22    itojun 			continue;
    429  1.22    itojun 
    430  1.22    itojun 		/* no loopback please */
    431  1.22    itojun #ifdef IFF_LOOPBACK
    432  1.22    itojun 		if (ifa->ifa_flags & IFF_LOOPBACK)
    433  1.22    itojun 			continue;
    434  1.22    itojun #else
    435  1.22    itojun 		if (strncmp(ifa->ifa_name, "lo", 2) == 0)
    436  1.22    itojun 			continue;
    437  1.22    itojun #endif
    438  1.22    itojun 
    439  1.22    itojun 		/* XXX more sanity checks? */
    440  1.22    itojun 
    441  1.22    itojun 		/* candidate found */
    442  1.22    itojun 		memcpy(sin, ifa->ifa_addr, ifa->ifa_addr->sa_len);
    443  1.22    itojun 		freeifaddrs(ifap);
    444  1.22    itojun 		return 0;
    445  1.22    itojun 	}
    446  1.22    itojun 
    447  1.22    itojun 	/* no candidate */
    448  1.22    itojun 	freeifaddrs(ifap);
    449  1.22    itojun 	return -1;
    450   1.1   deraadt }
    451