Home | History | Annotate | Line # | Download | only in rpc.bootparamd
bootparamd.c revision 1.40
      1  1.40   thorpej /*	$NetBSD: bootparamd.c,v 1.40 2002/03/22 18:10:26 thorpej 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.40   thorpej __RCSID("$NetBSD: bootparamd.c,v 1.40 2002/03/22 18:10:26 thorpej 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.34   thorpej #include <assert.h>
     23  1.10   mycroft #include <ctype.h>
     24  1.21  christos #include <errno.h>
     25  1.10   mycroft #include <err.h>
     26  1.34   thorpej #include <fnmatch.h>
     27  1.10   mycroft #include <netdb.h>
     28  1.12   thorpej #include <stdlib.h>
     29   1.1   deraadt #include <stdio.h>
     30  1.10   mycroft #include <string.h>
     31   1.1   deraadt #include <syslog.h>
     32  1.12   thorpej #include <unistd.h>
     33  1.20   thorpej #include <util.h>
     34  1.22    itojun #include <ifaddrs.h>
     35  1.10   mycroft 
     36  1.23    itojun #include <net/if.h>
     37  1.23    itojun 
     38  1.10   mycroft #include <netinet/in.h>
     39   1.9       cgd #include <arpa/inet.h>
     40  1.10   mycroft 
     41  1.10   mycroft #include <rpc/rpc.h>
     42  1.12   thorpej #include <rpc/pmap_clnt.h>
     43  1.10   mycroft #include <rpcsvc/bootparam_prot.h>
     44  1.40   thorpej #ifdef YP
     45  1.12   thorpej #include <rpcsvc/ypclnt.h>
     46  1.40   thorpej #endif
     47  1.10   mycroft 
     48   1.2   deraadt #include "pathnames.h"
     49   1.1   deraadt 
     50   1.1   deraadt #define MAXLEN 800
     51   1.1   deraadt 
     52   1.1   deraadt static char hostname[MAX_MACHINE_NAME];
     53   1.1   deraadt static char askname[MAX_MACHINE_NAME];
     54   1.1   deraadt static char domain_name[MAX_MACHINE_NAME];
     55   1.1   deraadt 
     56   1.5        pk extern void bootparamprog_1 __P((struct svc_req *, SVCXPRT *));
     57   1.1   deraadt 
     58   1.5        pk int	_rpcsvcdirty = 0;
     59   1.5        pk int	_rpcpmstart = 0;
     60   1.1   deraadt int     debug = 0;
     61   1.1   deraadt int     dolog = 0;
     62  1.12   thorpej struct in_addr route_addr;
     63   1.1   deraadt struct sockaddr_in my_addr;
     64   1.2   deraadt char   *bootpfile = _PATH_BOOTPARAMS;
     65   1.1   deraadt 
     66  1.12   thorpej int	main __P((int, char *[]));
     67  1.12   thorpej int	lookup_bootparam __P((char *, char *, char *, char **, char **));
     68  1.12   thorpej void	usage __P((void));
     69  1.22    itojun static int get_localaddr __P((const char *, struct sockaddr_in *));
     70   1.1   deraadt 
     71   1.1   deraadt 
     72   1.1   deraadt /*
     73   1.1   deraadt  * ever familiar
     74   1.1   deraadt  */
     75   1.1   deraadt int
     76   1.1   deraadt main(argc, argv)
     77   1.1   deraadt 	int     argc;
     78  1.12   thorpej 	char  *argv[];
     79   1.1   deraadt {
     80   1.1   deraadt 	SVCXPRT *transp;
     81   1.1   deraadt 	struct hostent *he;
     82   1.1   deraadt 	struct stat buf;
     83   1.6      mark 	int    c;
     84   1.1   deraadt 
     85   1.6      mark 	while ((c = getopt(argc, argv, "dsr:f:")) != -1)
     86   1.1   deraadt 		switch (c) {
     87   1.1   deraadt 		case 'd':
     88   1.1   deraadt 			debug = 1;
     89   1.1   deraadt 			break;
     90   1.1   deraadt 		case 'r':
     91   1.1   deraadt 			if (isdigit(*optarg)) {
     92  1.12   thorpej 				if (inet_aton(optarg, &route_addr) != 0)
     93  1.12   thorpej 					break;
     94   1.1   deraadt 			}
     95   1.1   deraadt 			he = gethostbyname(optarg);
     96  1.12   thorpej 			if (he == 0) {
     97  1.13     mikel 				warnx("no such host: %s", optarg);
     98   1.1   deraadt 				usage();
     99   1.1   deraadt 			}
    100  1.15     lukem 			memmove(&route_addr.s_addr, he->h_addr, he->h_length);
    101   1.1   deraadt 			break;
    102   1.1   deraadt 		case 'f':
    103   1.1   deraadt 			bootpfile = optarg;
    104   1.1   deraadt 			break;
    105   1.1   deraadt 		case 's':
    106   1.1   deraadt 			dolog = 1;
    107   1.1   deraadt #ifndef LOG_DAEMON
    108  1.37     lukem 			openlog("rpc.bootparamd", 0, 0);
    109   1.1   deraadt #else
    110  1.37     lukem 			openlog("rpc.bootparamd", 0, LOG_DAEMON);
    111   1.1   deraadt 			setlogmask(LOG_UPTO(LOG_NOTICE));
    112   1.1   deraadt #endif
    113   1.1   deraadt 			break;
    114   1.1   deraadt 		default:
    115   1.1   deraadt 			usage();
    116   1.1   deraadt 		}
    117   1.1   deraadt 
    118  1.10   mycroft 	if (stat(bootpfile, &buf))
    119  1.10   mycroft 		err(1, "%s", bootpfile);
    120  1.10   mycroft 
    121  1.12   thorpej 	if (route_addr.s_addr == 0) {
    122  1.22    itojun 		if (get_localaddr(NULL, &my_addr) != 0)
    123  1.22    itojun 			errx(1, "router address not found");
    124  1.12   thorpej 		route_addr.s_addr = my_addr.sin_addr.s_addr;
    125   1.1   deraadt 	}
    126  1.10   mycroft 	if (!debug) {
    127  1.10   mycroft 		if (daemon(0, 0))
    128  1.10   mycroft 			err(1, "can't detach from terminal");
    129  1.10   mycroft 	}
    130  1.20   thorpej 	pidfile(NULL);
    131   1.1   deraadt 
    132   1.1   deraadt 	(void) pmap_unset(BOOTPARAMPROG, BOOTPARAMVERS);
    133   1.1   deraadt 
    134   1.1   deraadt 	transp = svcudp_create(RPC_ANYSOCK);
    135  1.10   mycroft 	if (transp == NULL)
    136  1.10   mycroft 		errx(1, "can't create udp service");
    137  1.10   mycroft 
    138  1.10   mycroft 	if (!svc_register(transp, BOOTPARAMPROG, BOOTPARAMVERS, bootparamprog_1,
    139  1.10   mycroft 	    IPPROTO_UDP))
    140  1.33      tron /*
    141  1.33      tron  * Do NOT change the "%u" in the format string below to "%lu". If your
    142  1.33      tron  * build fails update the "rpcgen" program and use "make cleandir" and
    143  1.33      tron  * "make includes" in "src/lib/librpcsvc" afterwards.
    144  1.33      tron  */
    145  1.32  explorer 		errx(1, "unable to register BOOTPARAMPROG version %u, udp",
    146   1.1   deraadt 		    BOOTPARAMVERS);
    147  1.10   mycroft 
    148   1.1   deraadt 	svc_run();
    149  1.10   mycroft 	errx(1, "svc_run returned");
    150   1.1   deraadt }
    151   1.1   deraadt 
    152   1.1   deraadt bp_whoami_res *
    153   1.5        pk bootparamproc_whoami_1_svc(whoami, rqstp)
    154   1.1   deraadt 	bp_whoami_arg *whoami;
    155   1.5        pk 	struct svc_req *rqstp;
    156   1.1   deraadt {
    157   1.9       cgd 	static bp_whoami_res res;
    158   1.9       cgd 	struct hostent *he;
    159  1.18   nathanw 	struct in_addr haddr;
    160  1.21  christos 	int e;
    161   1.2   deraadt 
    162   1.1   deraadt 	if (debug)
    163  1.13     mikel 		warnx("whoami got question for %d.%d.%d.%d",
    164   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.net,
    165   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.host,
    166   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.lh,
    167   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.impno);
    168   1.1   deraadt 	if (dolog)
    169  1.13     mikel 		syslog(LOG_NOTICE, "whoami got question for %d.%d.%d.%d",
    170   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.net,
    171   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.host,
    172   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.lh,
    173   1.1   deraadt 		    255 & whoami->client_address.bp_address_u.ip_addr.impno);
    174   1.1   deraadt 
    175  1.15     lukem 	memmove((char *) &haddr,
    176  1.15     lukem 	    (char *) &whoami->client_address.bp_address_u.ip_addr,
    177  1.15     lukem 	    sizeof(haddr));
    178   1.1   deraadt 	he = gethostbyaddr((char *) &haddr, sizeof(haddr), AF_INET);
    179  1.14       mrg 	if (he) {
    180  1.14       mrg 		strncpy(askname, he->h_name, sizeof(askname));
    181  1.14       mrg 		askname[sizeof(askname)-1] = 0;
    182  1.14       mrg 	} else {
    183  1.18   nathanw 		strncpy(askname, inet_ntoa(haddr), sizeof(askname));
    184  1.14       mrg 		askname[sizeof(askname)-1] = 0;
    185   1.9       cgd 	}
    186   1.1   deraadt 
    187   1.1   deraadt 	if (debug)
    188  1.13     mikel 		warnx("This is host %s", askname);
    189   1.1   deraadt 	if (dolog)
    190  1.13     mikel 		syslog(LOG_NOTICE, "This is host %s", askname);
    191   1.1   deraadt 
    192  1.21  christos 	if ((e = lookup_bootparam(askname, hostname, NULL, NULL, NULL)) == 0) {
    193   1.1   deraadt 		res.client_name = hostname;
    194   1.1   deraadt 		getdomainname(domain_name, MAX_MACHINE_NAME);
    195   1.1   deraadt 		res.domain_name = domain_name;
    196   1.1   deraadt 
    197   1.1   deraadt 		if (res.router_address.address_type != IP_ADDR_TYPE) {
    198   1.1   deraadt 			res.router_address.address_type = IP_ADDR_TYPE;
    199  1.15     lukem 			memmove(&res.router_address.bp_address_u.ip_addr,
    200  1.15     lukem 			    &route_addr.s_addr,4);
    201   1.1   deraadt 		}
    202   1.1   deraadt 		if (debug)
    203  1.13     mikel 			warnx("Returning %s   %s    %d.%d.%d.%d",
    204   1.1   deraadt 			    res.client_name, res.domain_name,
    205   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.net,
    206   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.host,
    207   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.lh,
    208  1.14       mrg 			    255 &res.router_address.bp_address_u.ip_addr.impno);
    209   1.1   deraadt 		if (dolog)
    210  1.13     mikel 			syslog(LOG_NOTICE, "Returning %s   %s    %d.%d.%d.%d",
    211   1.1   deraadt 			    res.client_name, res.domain_name,
    212   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.net,
    213   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.host,
    214   1.1   deraadt 			    255 & res.router_address.bp_address_u.ip_addr.lh,
    215  1.14       mrg 			    255 &res.router_address.bp_address_u.ip_addr.impno);
    216   1.1   deraadt 
    217   1.1   deraadt 		return (&res);
    218   1.1   deraadt 	}
    219  1.21  christos 	errno = e;
    220   1.1   deraadt 	if (debug)
    221  1.21  christos 		warn("whoami failed");
    222   1.1   deraadt 	if (dolog)
    223  1.21  christos 		syslog(LOG_NOTICE, "whoami failed %m");
    224   1.1   deraadt 	return (NULL);
    225   1.1   deraadt }
    226   1.1   deraadt 
    227   1.1   deraadt 
    228   1.1   deraadt bp_getfile_res *
    229   1.5        pk bootparamproc_getfile_1_svc(getfile, rqstp)
    230   1.1   deraadt 	bp_getfile_arg *getfile;
    231   1.5        pk 	struct svc_req *rqstp;
    232   1.1   deraadt {
    233   1.1   deraadt 	static bp_getfile_res res;
    234   1.9       cgd 	struct hostent *he;
    235   1.2   deraadt 	int     err;
    236   1.1   deraadt 
    237   1.1   deraadt 	if (debug)
    238  1.13     mikel 		warnx("getfile got question for \"%s\" and file \"%s\"",
    239   1.1   deraadt 		    getfile->client_name, getfile->file_id);
    240   1.1   deraadt 
    241   1.1   deraadt 	if (dolog)
    242  1.13     mikel 		syslog(LOG_NOTICE,
    243  1.13     mikel 		    "getfile got question for \"%s\" and file \"%s\"",
    244   1.1   deraadt 		    getfile->client_name, getfile->file_id);
    245   1.1   deraadt 
    246   1.1   deraadt 	he = NULL;
    247   1.1   deraadt 	he = gethostbyname(getfile->client_name);
    248  1.39     jhawk 	if (!he) {
    249  1.39     jhawk 		if (debug)
    250  1.39     jhawk 			warnx("getfile can't resolve client %s",
    251  1.39     jhawk 			    getfile->client_name);
    252  1.39     jhawk 		if (dolog)
    253  1.39     jhawk 			syslog(LOG_NOTICE, "getfile can't resolve client %s",
    254  1.39     jhawk 			    getfile->client_name);
    255  1.39     jhawk 		return (NULL);
    256  1.39     jhawk 	}
    257   1.1   deraadt 
    258  1.14       mrg 	strncpy(askname, he->h_name, sizeof(askname));
    259  1.14       mrg 	askname[sizeof(askname)-1] = 0;
    260   1.2   deraadt 	err = lookup_bootparam(askname, NULL, getfile->file_id,
    261   1.2   deraadt 	    &res.server_name, &res.server_path);
    262   1.2   deraadt 	if (err == 0) {
    263   1.2   deraadt 		he = gethostbyname(res.server_name);
    264  1.39     jhawk 		if (!he) {
    265  1.39     jhawk 			if (debug)
    266  1.39     jhawk 				warnx("getfile can't resolve server %s for %s",
    267  1.39     jhawk 			    res.server_name, getfile->client_name);
    268  1.39     jhawk 		if (dolog)
    269  1.39     jhawk 			syslog(LOG_NOTICE,
    270  1.39     jhawk 			    "getfile can't resolve server %s for %s",
    271  1.39     jhawk 			    res.server_name, getfile->client_name);
    272  1.39     jhawk 		return (NULL);
    273  1.39     jhawk 
    274  1.39     jhawk 		}
    275  1.15     lukem 		memmove(&res.server_address.bp_address_u.ip_addr,
    276  1.15     lukem 		    he->h_addr, 4);
    277   1.2   deraadt 		res.server_address.address_type = IP_ADDR_TYPE;
    278   1.2   deraadt 	} else if (err == ENOENT && !strcmp(getfile->file_id, "dump")) {
    279   1.2   deraadt 		/* Special for dump, answer with null strings. */
    280   1.2   deraadt 		res.server_name[0] = '\0';
    281   1.2   deraadt 		res.server_path[0] = '\0';
    282  1.15     lukem 		memset(&res.server_address.bp_address_u.ip_addr, 0, 4);
    283   1.2   deraadt 	} else {
    284   1.1   deraadt 		if (debug)
    285  1.39     jhawk 			warnx("getfile lookup failed for %s",
    286   1.2   deraadt 			    getfile->client_name);
    287   1.1   deraadt 		if (dolog)
    288   1.1   deraadt 			syslog(LOG_NOTICE,
    289  1.39     jhawk 			    "getfile lookup failed for %s",
    290  1.39     jhawk 			    getfile->client_name);
    291   1.2   deraadt 		return (NULL);
    292   1.1   deraadt 	}
    293   1.2   deraadt 
    294   1.1   deraadt 	if (debug)
    295  1.10   mycroft 		warnx(
    296  1.13     mikel 		    "returning server:%s path:%s address: %d.%d.%d.%d",
    297   1.2   deraadt 		    res.server_name, res.server_path,
    298   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.net,
    299   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.host,
    300   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.lh,
    301   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.impno);
    302   1.1   deraadt 	if (dolog)
    303   1.1   deraadt 		syslog(LOG_NOTICE,
    304  1.13     mikel 		    "returning server:%s path:%s address: %d.%d.%d.%d",
    305   1.2   deraadt 		    res.server_name, res.server_path,
    306   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.net,
    307   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.host,
    308   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.lh,
    309   1.2   deraadt 		    255 & res.server_address.bp_address_u.ip_addr.impno);
    310   1.2   deraadt 	return (&res);
    311   1.1   deraadt }
    312   1.1   deraadt 
    313   1.1   deraadt 
    314   1.2   deraadt int
    315   1.2   deraadt lookup_bootparam(client, client_canonical, id, server, path)
    316   1.2   deraadt 	char	*client;
    317   1.2   deraadt 	char	*client_canonical;
    318   1.2   deraadt 	char	*id;
    319   1.2   deraadt 	char	**server;
    320   1.2   deraadt 	char	**path;
    321   1.1   deraadt {
    322   1.2   deraadt 	FILE   *f = fopen(bootpfile, "r");
    323   1.2   deraadt #ifdef YP
    324   1.2   deraadt 	static char *ypbuf = NULL;
    325   1.2   deraadt 	static int ypbuflen = 0;
    326   1.2   deraadt #endif
    327   1.2   deraadt 	static char buf[BUFSIZ];
    328  1.34   thorpej 	char   *canon = NULL, *bp, *word = NULL;
    329   1.2   deraadt 	size_t  idlen = id == NULL ? 0 : strlen(id);
    330   1.2   deraadt 	int     contin = 0;
    331   1.2   deraadt 	int     found = 0;
    332   1.2   deraadt 
    333   1.2   deraadt 	if (f == NULL)
    334   1.2   deraadt 		return EINVAL;	/* ? */
    335   1.2   deraadt 
    336   1.2   deraadt 	while (fgets(buf, sizeof buf, f)) {
    337   1.2   deraadt 		int     wascontin = contin;
    338   1.2   deraadt 		contin = buf[strlen(buf) - 2] == '\\';
    339   1.2   deraadt 		bp = buf + strspn(buf, " \t\n");
    340   1.2   deraadt 
    341   1.2   deraadt 		switch (wascontin) {
    342   1.2   deraadt 		case -1:
    343   1.2   deraadt 			/* Continuation of uninteresting line */
    344   1.2   deraadt 			contin *= -1;
    345   1.2   deraadt 			continue;
    346   1.2   deraadt 		case 0:
    347   1.2   deraadt 			/* New line */
    348   1.2   deraadt 			contin *= -1;
    349   1.2   deraadt 			if (*bp == '#')
    350   1.2   deraadt 				continue;
    351   1.2   deraadt 			if ((word = strsep(&bp, " \t\n")) == NULL)
    352   1.2   deraadt 				continue;
    353   1.2   deraadt #ifdef YP
    354   1.2   deraadt 			/* A + in the file means try YP now */
    355   1.2   deraadt 			if (!strcmp(word, "+")) {
    356   1.2   deraadt 				char   *ypdom;
    357   1.2   deraadt 
    358   1.2   deraadt 				if (yp_get_default_domain(&ypdom) ||
    359   1.2   deraadt 				    yp_match(ypdom, "bootparams", client,
    360   1.2   deraadt 					strlen(client), &ypbuf, &ypbuflen))
    361   1.2   deraadt 					continue;
    362   1.2   deraadt 				bp = ypbuf;
    363   1.2   deraadt 				word = client;
    364   1.2   deraadt 				contin *= -1;
    365   1.2   deraadt 				break;
    366   1.2   deraadt 			}
    367   1.2   deraadt #endif
    368  1.21  christos 			if (debug)
    369  1.21  christos 				warnx("match %s with %s", word, client);
    370  1.34   thorpej 
    371  1.34   thorpej #define	HASGLOB(str) \
    372  1.34   thorpej 	(strchr(str, '*') != NULL || \
    373  1.34   thorpej 	 strchr(str, '?') != NULL || \
    374  1.34   thorpej 	 strchr(str, '[') != NULL || \
    375  1.34   thorpej 	 strchr(str, ']') != NULL)
    376  1.34   thorpej 
    377   1.2   deraadt 			/* See if this line's client is the one we are
    378   1.2   deraadt 			 * looking for */
    379  1.34   thorpej 			if (fnmatch(word, client, FNM_CASEFOLD) == 0) {
    380  1.34   thorpej 				/*
    381  1.34   thorpej 				 * Match.  The token may be globbed, we
    382  1.34   thorpej 				 * can't just return that as the canonical
    383  1.34   thorpej 				 * name.  Check to see if the token has any
    384  1.34   thorpej 				 * globbing characters in it (*, ?, [, ]).
    385  1.34   thorpej 				 * If so, just return the name we already
    386  1.34   thorpej 				 * have.  Otherwise, return the token.
    387  1.34   thorpej 				 */
    388  1.34   thorpej 				if (HASGLOB(word))
    389  1.34   thorpej 					canon = client;
    390  1.34   thorpej 				else
    391  1.34   thorpej 					canon = word;
    392  1.34   thorpej 			} else {
    393  1.36   thorpej 				struct hostent *hp;
    394   1.2   deraadt 				/*
    395   1.2   deraadt 				 * If it didn't match, try getting the
    396   1.2   deraadt 				 * canonical host name of the client
    397  1.36   thorpej 				 * on this line, if it's not a glob,
    398  1.36   thorpej 				 * and comparing it to the client we
    399  1.36   thorpej 				 * are looking up.
    400   1.2   deraadt 				 */
    401  1.36   thorpej 				if (HASGLOB(word)) {
    402  1.36   thorpej 					if (debug)
    403  1.36   thorpej 						warnx("Skipping non-match: %s",
    404  1.36   thorpej 						    word);
    405  1.36   thorpej 					continue;
    406  1.36   thorpej 				}
    407  1.36   thorpej 				if ((hp = gethostbyname(word)) == NULL) {
    408  1.19       abs 					if (debug)
    409  1.19       abs 						warnx(
    410  1.36   thorpej 					    "Unknown bootparams host %s",
    411  1.36   thorpej 					    word);
    412  1.19       abs 					if (dolog)
    413  1.19       abs 						syslog(LOG_NOTICE,
    414  1.36   thorpej 					    "Unknown bootparams host %s",
    415  1.36   thorpej 					    word);
    416  1.19       abs 					continue;
    417  1.19       abs 				}
    418  1.36   thorpej 				if (strcasecmp(hp->h_name, client) != 0)
    419  1.35     enami 					continue;
    420  1.36   thorpej 				canon = hp->h_name;
    421   1.1   deraadt 			}
    422  1.34   thorpej 
    423  1.34   thorpej #undef HASGLOB
    424  1.34   thorpej 
    425   1.2   deraadt 			contin *= -1;
    426   1.2   deraadt 			break;
    427   1.2   deraadt 		case 1:
    428   1.2   deraadt 			/* Continued line we want to parse below */
    429   1.1   deraadt 			break;
    430   1.1   deraadt 		}
    431   1.1   deraadt 
    432  1.34   thorpej 		assert(canon != NULL);
    433   1.2   deraadt 		if (client_canonical)
    434  1.34   thorpej 			strncpy(client_canonical, canon, MAX_MACHINE_NAME);
    435   1.1   deraadt 
    436   1.2   deraadt 		/* We have found a line for CLIENT */
    437   1.4     glass 		if (id == NULL) {
    438   1.4     glass 			(void) fclose(f);
    439   1.2   deraadt 			return 0;
    440   1.4     glass 		}
    441   1.2   deraadt 
    442   1.2   deraadt 		/* Look for a value for the parameter named by ID */
    443   1.2   deraadt 		while ((word = strsep(&bp, " \t\n")) != NULL) {
    444   1.2   deraadt 			if (!strncmp(word, id, idlen) && word[idlen] == '=') {
    445   1.2   deraadt 				/* We have found the entry we want */
    446   1.2   deraadt 				*server = &word[idlen + 1];
    447   1.2   deraadt 				*path = strchr(*server, ':');
    448   1.2   deraadt 				if (*path == NULL)
    449   1.2   deraadt 					/* Malformed entry */
    450   1.2   deraadt 					continue;
    451   1.2   deraadt 				*(*path)++ = '\0';
    452   1.2   deraadt 				(void) fclose(f);
    453   1.2   deraadt 				return 0;
    454   1.2   deraadt 			}
    455   1.1   deraadt 		}
    456   1.2   deraadt 
    457   1.2   deraadt 		found = 1;
    458   1.1   deraadt 	}
    459   1.1   deraadt 
    460   1.2   deraadt 	(void) fclose(f);
    461   1.2   deraadt 	return found ? ENOENT : EPERM;
    462  1.12   thorpej }
    463  1.12   thorpej 
    464  1.12   thorpej void
    465  1.12   thorpej usage()
    466  1.12   thorpej {
    467  1.12   thorpej 	fprintf(stderr,
    468  1.38       cgd 	    "usage: %s [-d] [-s] [-r router] [-f bootparmsfile]\n",
    469  1.38       cgd 	    getprogname());
    470  1.12   thorpej 	exit(1);
    471  1.22    itojun }
    472  1.22    itojun 
    473  1.22    itojun static int
    474  1.22    itojun get_localaddr(ifname, sin)
    475  1.22    itojun 	const char *ifname;
    476  1.22    itojun 	struct sockaddr_in *sin;
    477  1.22    itojun {
    478  1.22    itojun 	struct ifaddrs *ifap, *ifa;
    479  1.22    itojun 
    480  1.22    itojun 	if (getifaddrs(&ifap) != 0)
    481  1.22    itojun 		return -1;
    482  1.22    itojun 
    483  1.22    itojun 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
    484  1.22    itojun 		if (ifname && strcmp(ifname, ifa->ifa_name) != 0)
    485  1.22    itojun 			continue;
    486  1.22    itojun 		if (ifa->ifa_addr->sa_family != AF_INET)
    487  1.22    itojun 			continue;
    488  1.22    itojun 		if (ifa->ifa_addr->sa_len != sizeof(*sin))
    489  1.22    itojun 			continue;
    490  1.22    itojun 
    491  1.22    itojun 		/* no loopback please */
    492  1.22    itojun #ifdef IFF_LOOPBACK
    493  1.22    itojun 		if (ifa->ifa_flags & IFF_LOOPBACK)
    494  1.22    itojun 			continue;
    495  1.22    itojun #else
    496  1.23    itojun 		if (strncmp(ifa->ifa_name, "lo", 2) == 0 &&
    497  1.23    itojun 		    (isdigit(ifa->ifa_name[2]) || ifa->ifa_name[2] == '\0'))
    498  1.22    itojun 			continue;
    499  1.22    itojun #endif
    500  1.22    itojun 
    501  1.22    itojun 		/* XXX more sanity checks? */
    502  1.22    itojun 
    503  1.22    itojun 		/* candidate found */
    504  1.22    itojun 		memcpy(sin, ifa->ifa_addr, ifa->ifa_addr->sa_len);
    505  1.22    itojun 		freeifaddrs(ifap);
    506  1.22    itojun 		return 0;
    507  1.22    itojun 	}
    508  1.22    itojun 
    509  1.22    itojun 	/* no candidate */
    510  1.22    itojun 	freeifaddrs(ifap);
    511  1.22    itojun 	return -1;
    512   1.1   deraadt }
    513