xref: /freebsd/sys/nfs/bootp_subr.c (revision 58a0f0d00c0cc4a90ce584a61470290751bfcac7)
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
4  * Copyright (c) 1995 Gordon Ross, Adam Glass
5  * Copyright (c) 1992 Regents of the University of California.
6  * All rights reserved.
7  *
8  * This software was developed by the Computer Systems Engineering group
9  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
10  * contributed to Berkeley.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *	This product includes software developed by the University of
23  *	California, Lawrence Berkeley Laboratory and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  * based on:
41  *      nfs/krpc_subr.c
42  *	$NetBSD: krpc_subr.c,v 1.10 1995/08/08 20:43:43 gwr Exp $
43  */
44 
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD$");
47 
48 #include "opt_bootp.h"
49 #include "opt_nfs.h"
50 #include "opt_rootdevname.h"
51 
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/endian.h>
55 #include <sys/jail.h>
56 #include <sys/kernel.h>
57 #include <sys/sockio.h>
58 #include <sys/malloc.h>
59 #include <sys/mount.h>
60 #include <sys/mbuf.h>
61 #include <sys/proc.h>
62 #include <sys/reboot.h>
63 #include <sys/socket.h>
64 #include <sys/socketvar.h>
65 #include <sys/sysctl.h>
66 #include <sys/uio.h>
67 
68 #include <net/if.h>
69 #include <net/if_var.h>
70 #include <net/route.h>
71 #ifdef BOOTP_DEBUG
72 #include <net/route_var.h>
73 #endif
74 
75 #include <netinet/in.h>
76 #include <netinet/in_var.h>
77 #include <net/if_types.h>
78 #include <net/if_dl.h>
79 #include <net/vnet.h>
80 
81 #include <nfs/nfsproto.h>
82 #include <nfsclient/nfs.h>
83 #include <nfs/nfsdiskless.h>
84 #include <nfs/krpc.h>
85 #include <nfs/xdr_subs.h>
86 
87 #define BOOTP_MIN_LEN		300	/* Minimum size of bootp udp packet */
88 
89 #ifndef BOOTP_SETTLE_DELAY
90 #define BOOTP_SETTLE_DELAY 3
91 #endif
92 
93 /*
94  * Wait 10 seconds for interface appearance
95  * USB ethernet adapters might require some time to pop up
96  */
97 #ifndef	BOOTP_IFACE_WAIT_TIMEOUT
98 #define	BOOTP_IFACE_WAIT_TIMEOUT	10
99 #endif
100 
101 /*
102  * What is the longest we will wait before re-sending a request?
103  * Note this is also the frequency of "RPC timeout" messages.
104  * The re-send loop count sup linearly to this maximum, so the
105  * first complaint will happen after (1+2+3+4+5)=15 seconds.
106  */
107 #define	MAX_RESEND_DELAY 5	/* seconds */
108 
109 /* Definitions from RFC951 */
110 struct bootp_packet {
111 	u_int8_t op;
112 	u_int8_t htype;
113 	u_int8_t hlen;
114 	u_int8_t hops;
115 	u_int32_t xid;
116 	u_int16_t secs;
117 	u_int16_t flags;
118 	struct in_addr ciaddr;
119 	struct in_addr yiaddr;
120 	struct in_addr siaddr;
121 	struct in_addr giaddr;
122 	unsigned char chaddr[16];
123 	char sname[64];
124 	char file[128];
125 	unsigned char vend[1222];
126 };
127 
128 struct bootpc_ifcontext {
129 	STAILQ_ENTRY(bootpc_ifcontext) next;
130 	struct bootp_packet call;
131 	struct bootp_packet reply;
132 	int replylen;
133 	int overload;
134 	union {
135 		struct ifreq _ifreq;
136 		struct in_aliasreq _in_alias_req;
137 	} _req;
138 #define	ireq	_req._ifreq
139 #define	iareq	_req._in_alias_req
140 	struct ifnet *ifp;
141 	struct sockaddr_dl *sdl;
142 	struct sockaddr_in myaddr;
143 	struct sockaddr_in netmask;
144 	struct sockaddr_in gw;
145 	int gotgw;
146 	int gotnetmask;
147 	int gotrootpath;
148 	int outstanding;
149 	int sentmsg;
150 	u_int32_t xid;
151 	enum {
152 		IF_BOOTP_UNRESOLVED,
153 		IF_BOOTP_RESOLVED,
154 		IF_BOOTP_FAILED,
155 		IF_DHCP_UNRESOLVED,
156 		IF_DHCP_OFFERED,
157 		IF_DHCP_RESOLVED,
158 		IF_DHCP_FAILED,
159 	} state;
160 	int dhcpquerytype;		/* dhcp type sent */
161 	struct in_addr dhcpserver;
162 	int gotdhcpserver;
163 	uint16_t mtu;
164 };
165 
166 #define TAG_MAXLEN 1024
167 struct bootpc_tagcontext {
168 	char buf[TAG_MAXLEN + 1];
169 	int overload;
170 	int badopt;
171 	int badtag;
172 	int foundopt;
173 	int taglen;
174 };
175 
176 struct bootpc_globalcontext {
177 	STAILQ_HEAD(, bootpc_ifcontext) interfaces;
178 	u_int32_t xid;
179 	int any_root_overrides;
180 	int gotrootpath;
181 	int gotgw;
182 	int ifnum;
183 	int secs;
184 	int starttime;
185 	struct bootp_packet reply;
186 	int replylen;
187 	struct bootpc_ifcontext *setrootfs;
188 	struct bootpc_ifcontext *sethostname;
189 	struct bootpc_tagcontext tmptag;
190 	struct bootpc_tagcontext tag;
191 };
192 
193 #define IPPORT_BOOTPC 68
194 #define IPPORT_BOOTPS 67
195 
196 #define BOOTP_REQUEST 1
197 #define BOOTP_REPLY 2
198 
199 /* Common tags */
200 #define TAG_PAD		  0  /* Pad option, implicit length 1 */
201 #define TAG_SUBNETMASK	  1  /* RFC 950 subnet mask */
202 #define TAG_ROUTERS	  3  /* Routers (in order of preference) */
203 #define TAG_HOSTNAME	 12  /* Client host name */
204 #define TAG_ROOT	 17  /* Root path */
205 #define TAG_INTF_MTU	 26  /* Interface MTU Size (RFC2132) */
206 
207 /* DHCP specific tags */
208 #define TAG_OVERLOAD	 52  /* Option Overload */
209 #define TAG_MAXMSGSIZE   57  /* Maximum DHCP Message Size */
210 
211 #define TAG_END		255  /* End Option (i.e. no more options) */
212 
213 /* Overload values */
214 #define OVERLOAD_FILE     1
215 #define OVERLOAD_SNAME    2
216 
217 /* Site specific tags: */
218 #define TAG_ROOTOPTS	130
219 #define TAG_COOKIE	134	/* ascii info for userland, via sysctl */
220 
221 #define TAG_DHCP_MSGTYPE 53
222 #define TAG_DHCP_REQ_ADDR 50
223 #define TAG_DHCP_SERVERID 54
224 #define TAG_DHCP_LEASETIME 51
225 
226 #define TAG_VENDOR_INDENTIFIER 60
227 
228 #define DHCP_NOMSG    0
229 #define DHCP_DISCOVER 1
230 #define DHCP_OFFER    2
231 #define DHCP_REQUEST  3
232 #define DHCP_ACK      5
233 
234 /* NFS read/write block size */
235 #ifndef BOOTP_BLOCKSIZE
236 #define	BOOTP_BLOCKSIZE	8192
237 #endif
238 
239 static char bootp_cookie[128];
240 static struct socket *bootp_so;
241 SYSCTL_STRING(_kern, OID_AUTO, bootp_cookie, CTLFLAG_RD,
242 	bootp_cookie, 0, "Cookie (T134) supplied by bootp server");
243 
244 /* mountd RPC */
245 static int	md_mount(struct sockaddr_in *mdsin, char *path, u_char *fhp,
246 		    int *fhsizep, struct nfs_args *args, struct thread *td);
247 static int	setfs(struct sockaddr_in *addr, char *path, char *p,
248 		    const struct in_addr *siaddr);
249 static int	getdec(char **ptr);
250 static int	getip(char **ptr, struct in_addr *ip);
251 static void	mountopts(struct nfs_args *args, char *p);
252 static int	xdr_opaque_decode(struct mbuf **ptr, u_char *buf, int len);
253 static int	xdr_int_decode(struct mbuf **ptr, int *iptr);
254 static void	print_in_addr(struct in_addr addr);
255 static void	print_sin_addr(struct sockaddr_in *addr);
256 static void	clear_sinaddr(struct sockaddr_in *sin);
257 static void	allocifctx(struct bootpc_globalcontext *gctx);
258 static void	bootpc_compose_query(struct bootpc_ifcontext *ifctx,
259 		    struct thread *td);
260 static unsigned char *bootpc_tag(struct bootpc_tagcontext *tctx,
261 		    struct bootp_packet *bp, int len, int tag);
262 static void bootpc_tag_helper(struct bootpc_tagcontext *tctx,
263 		    unsigned char *start, int len, int tag);
264 
265 #ifdef BOOTP_DEBUG
266 void bootpboot_p_sa(struct sockaddr *sa, struct sockaddr *ma);
267 void bootpboot_p_rtentry(struct rtentry *rt);
268 void bootpboot_p_tree(struct radix_node *rn);
269 void bootpboot_p_rtlist(void);
270 void bootpboot_p_if(struct ifnet *ifp, struct ifaddr *ifa);
271 void bootpboot_p_iflist(void);
272 #endif
273 
274 static int	bootpc_call(struct bootpc_globalcontext *gctx,
275 		    struct thread *td);
276 
277 static void	bootpc_fakeup_interface(struct bootpc_ifcontext *ifctx,
278 		    struct thread *td);
279 
280 static void	bootpc_adjust_interface(struct bootpc_ifcontext *ifctx,
281 		    struct bootpc_globalcontext *gctx, struct thread *td);
282 
283 static void	bootpc_decode_reply(struct nfsv3_diskless *nd,
284 		    struct bootpc_ifcontext *ifctx,
285 		    struct bootpc_globalcontext *gctx);
286 
287 static int	bootpc_received(struct bootpc_globalcontext *gctx,
288 		    struct bootpc_ifcontext *ifctx);
289 
290 static __inline int bootpc_ifctx_isresolved(struct bootpc_ifcontext *ifctx);
291 static __inline int bootpc_ifctx_isunresolved(struct bootpc_ifcontext *ifctx);
292 static __inline int bootpc_ifctx_isfailed(struct bootpc_ifcontext *ifctx);
293 
294 /*
295  * In order to have multiple active interfaces with address 0.0.0.0
296  * and be able to send data to a selected interface, we first set
297  * mask to /8 on all interfaces, and temporarily set it to /0 when
298  * doing sosend().
299  */
300 
301 #ifdef BOOTP_DEBUG
302 void
303 bootpboot_p_sa(struct sockaddr *sa, struct sockaddr *ma)
304 {
305 
306 	if (sa == NULL) {
307 		printf("(sockaddr *) <null>");
308 		return;
309 	}
310 	switch (sa->sa_family) {
311 	case AF_INET:
312 	{
313 		struct sockaddr_in *sin;
314 
315 		sin = (struct sockaddr_in *) sa;
316 		printf("inet ");
317 		print_sin_addr(sin);
318 		if (ma != NULL) {
319 			sin = (struct sockaddr_in *) ma;
320 			printf(" mask ");
321 			print_sin_addr(sin);
322 		}
323 	}
324 	break;
325 	case AF_LINK:
326 	{
327 		struct sockaddr_dl *sli;
328 		int i;
329 
330 		sli = (struct sockaddr_dl *) sa;
331 		printf("link %.*s ", sli->sdl_nlen, sli->sdl_data);
332 		for (i = 0; i < sli->sdl_alen; i++) {
333 			if (i > 0)
334 				printf(":");
335 			printf("%x", ((unsigned char *) LLADDR(sli))[i]);
336 		}
337 	}
338 	break;
339 	default:
340 		printf("af%d", sa->sa_family);
341 	}
342 }
343 
344 void
345 bootpboot_p_rtentry(struct rtentry *rt)
346 {
347 
348 	bootpboot_p_sa(rt_key(rt), rt_mask(rt));
349 	printf(" ");
350 	bootpboot_p_sa(rt->rt_gateway, NULL);
351 	printf(" ");
352 	printf("flags %x", (unsigned short) rt->rt_flags);
353 	printf(" %d", (int) rt->rt_expire);
354 	printf(" %s\n", rt->rt_ifp->if_xname);
355 }
356 
357 void
358 bootpboot_p_tree(struct radix_node *rn)
359 {
360 
361 	while (rn != NULL) {
362 		if (rn->rn_bit < 0) {
363 			if ((rn->rn_flags & RNF_ROOT) != 0) {
364 			} else {
365 				bootpboot_p_rtentry((struct rtentry *) rn);
366 			}
367 			rn = rn->rn_dupedkey;
368 		} else {
369 			bootpboot_p_tree(rn->rn_left);
370 			bootpboot_p_tree(rn->rn_right);
371 			return;
372 		}
373 	}
374 }
375 
376 void
377 bootpboot_p_rtlist(void)
378 {
379 	struct rib_head *rnh;
380 
381 	printf("Routing table:\n");
382 	rnh = rt_tables_get_rnh(0, AF_INET);
383 	if (rnh == NULL)
384 		return;
385 	RIB_RLOCK(rnh);	/* could sleep XXX */
386 	bootpboot_p_tree(rnh->rnh_treetop);
387 	RIB_RUNLOCK(rnh);
388 }
389 
390 void
391 bootpboot_p_if(struct ifnet *ifp, struct ifaddr *ifa)
392 {
393 
394 	printf("%s flags %x, addr ",
395 	       ifp->if_xname, ifp->if_flags);
396 	print_sin_addr((struct sockaddr_in *) ifa->ifa_addr);
397 	printf(", broadcast ");
398 	print_sin_addr((struct sockaddr_in *) ifa->ifa_dstaddr);
399 	printf(", netmask ");
400 	print_sin_addr((struct sockaddr_in *) ifa->ifa_netmask);
401 	printf("\n");
402 }
403 
404 void
405 bootpboot_p_iflist(void)
406 {
407 	struct ifnet *ifp;
408 	struct ifaddr *ifa;
409 
410 	printf("Interface list:\n");
411 	IFNET_RLOCK();
412 	for (ifp = TAILQ_FIRST(&V_ifnet);
413 	     ifp != NULL;
414 	     ifp = TAILQ_NEXT(ifp, if_link)) {
415 		for (ifa = CK_STAILQ_FIRST(&ifp->if_addrhead);
416 		     ifa != NULL;
417 		     ifa = TAILQ_NEXT(ifa, ifa_link))
418 			if (ifa->ifa_addr->sa_family == AF_INET)
419 				bootpboot_p_if(ifp, ifa);
420 	}
421 	IFNET_RUNLOCK();
422 }
423 #endif /* defined(BOOTP_DEBUG) */
424 
425 static void
426 clear_sinaddr(struct sockaddr_in *sin)
427 {
428 
429 	bzero(sin, sizeof(*sin));
430 	sin->sin_len = sizeof(*sin);
431 	sin->sin_family = AF_INET;
432 	sin->sin_addr.s_addr = INADDR_ANY; /* XXX: htonl(INAADDR_ANY) ? */
433 	sin->sin_port = 0;
434 }
435 
436 static void
437 allocifctx(struct bootpc_globalcontext *gctx)
438 {
439 	struct bootpc_ifcontext *ifctx;
440 
441 	ifctx = malloc(sizeof(*ifctx), M_TEMP, M_WAITOK | M_ZERO);
442 	ifctx->xid = gctx->xid;
443 #ifdef BOOTP_NO_DHCP
444 	ifctx->state = IF_BOOTP_UNRESOLVED;
445 #else
446 	ifctx->state = IF_DHCP_UNRESOLVED;
447 #endif
448 	gctx->xid += 0x100;
449 	STAILQ_INSERT_TAIL(&gctx->interfaces, ifctx, next);
450 }
451 
452 static __inline int
453 bootpc_ifctx_isresolved(struct bootpc_ifcontext *ifctx)
454 {
455 
456 	if (ifctx->state == IF_BOOTP_RESOLVED ||
457 	    ifctx->state == IF_DHCP_RESOLVED)
458 		return 1;
459 	return 0;
460 }
461 
462 static __inline int
463 bootpc_ifctx_isunresolved(struct bootpc_ifcontext *ifctx)
464 {
465 
466 	if (ifctx->state == IF_BOOTP_UNRESOLVED ||
467 	    ifctx->state == IF_DHCP_UNRESOLVED)
468 		return 1;
469 	return 0;
470 }
471 
472 static __inline int
473 bootpc_ifctx_isfailed(struct bootpc_ifcontext *ifctx)
474 {
475 
476 	if (ifctx->state == IF_BOOTP_FAILED ||
477 	    ifctx->state == IF_DHCP_FAILED)
478 		return 1;
479 	return 0;
480 }
481 
482 static int
483 bootpc_received(struct bootpc_globalcontext *gctx,
484     struct bootpc_ifcontext *ifctx)
485 {
486 	unsigned char dhcpreplytype;
487 	char *p;
488 
489 	/*
490 	 * Need timeout for fallback to less
491 	 * desirable alternative.
492 	 */
493 
494 	/* This call used for the side effect (badopt flag) */
495 	(void) bootpc_tag(&gctx->tmptag, &gctx->reply,
496 			  gctx->replylen,
497 			  TAG_END);
498 
499 	/* If packet is invalid, ignore it */
500 	if (gctx->tmptag.badopt != 0)
501 		return 0;
502 
503 	p = bootpc_tag(&gctx->tmptag, &gctx->reply,
504 		       gctx->replylen, TAG_DHCP_MSGTYPE);
505 	if (p != NULL)
506 		dhcpreplytype = *p;
507 	else
508 		dhcpreplytype = DHCP_NOMSG;
509 
510 	switch (ifctx->dhcpquerytype) {
511 	case DHCP_DISCOVER:
512 		if (dhcpreplytype != DHCP_OFFER 	/* Normal DHCP offer */
513 #ifndef BOOTP_FORCE_DHCP
514 		    && dhcpreplytype != DHCP_NOMSG	/* Fallback to BOOTP */
515 #endif
516 			)
517 			return 0;
518 		break;
519 	case DHCP_REQUEST:
520 		if (dhcpreplytype != DHCP_ACK)
521 			return 0;
522 	case DHCP_NOMSG:
523 		break;
524 	}
525 
526 	/* Ignore packet unless it gives us a root tag we didn't have */
527 
528 	if ((ifctx->state == IF_BOOTP_RESOLVED ||
529 	     (ifctx->dhcpquerytype == DHCP_DISCOVER &&
530 	      (ifctx->state == IF_DHCP_OFFERED ||
531 	       ifctx->state == IF_DHCP_RESOLVED))) &&
532 	    (bootpc_tag(&gctx->tmptag, &ifctx->reply,
533 			ifctx->replylen,
534 			TAG_ROOT) != NULL ||
535 	     bootpc_tag(&gctx->tmptag, &gctx->reply,
536 			gctx->replylen,
537 			TAG_ROOT) == NULL))
538 		return 0;
539 
540 	bcopy(&gctx->reply, &ifctx->reply, gctx->replylen);
541 	ifctx->replylen = gctx->replylen;
542 
543 	/* XXX: Only reset if 'perfect' response */
544 	if (ifctx->state == IF_BOOTP_UNRESOLVED)
545 		ifctx->state = IF_BOOTP_RESOLVED;
546 	else if (ifctx->state == IF_DHCP_UNRESOLVED &&
547 		 ifctx->dhcpquerytype == DHCP_DISCOVER) {
548 		if (dhcpreplytype == DHCP_OFFER)
549 			ifctx->state = IF_DHCP_OFFERED;
550 		else
551 			ifctx->state = IF_BOOTP_RESOLVED;	/* Fallback */
552 	} else if (ifctx->state == IF_DHCP_OFFERED &&
553 		   ifctx->dhcpquerytype == DHCP_REQUEST)
554 		ifctx->state = IF_DHCP_RESOLVED;
555 
556 
557 	if (ifctx->dhcpquerytype == DHCP_DISCOVER &&
558 	    ifctx->state != IF_BOOTP_RESOLVED) {
559 		p = bootpc_tag(&gctx->tmptag, &ifctx->reply,
560 			       ifctx->replylen, TAG_DHCP_SERVERID);
561 		if (p != NULL && gctx->tmptag.taglen == 4) {
562 			memcpy(&ifctx->dhcpserver, p, 4);
563 			ifctx->gotdhcpserver = 1;
564 		} else
565 			ifctx->gotdhcpserver = 0;
566 		return 1;
567 	}
568 
569 	ifctx->gotrootpath = (bootpc_tag(&gctx->tmptag, &ifctx->reply,
570 					 ifctx->replylen,
571 					 TAG_ROOT) != NULL);
572 	ifctx->gotgw = (bootpc_tag(&gctx->tmptag, &ifctx->reply,
573 				   ifctx->replylen,
574 				   TAG_ROUTERS) != NULL);
575 	ifctx->gotnetmask = (bootpc_tag(&gctx->tmptag, &ifctx->reply,
576 					ifctx->replylen,
577 					TAG_SUBNETMASK) != NULL);
578 	return 1;
579 }
580 
581 static int
582 bootpc_call(struct bootpc_globalcontext *gctx, struct thread *td)
583 {
584 	struct sockaddr_in *sin, dst;
585 	struct uio auio;
586 	struct sockopt sopt;
587 	struct iovec aio;
588 	int error, on, rcvflg, timo, len;
589 	time_t atimo;
590 	time_t rtimo;
591 	struct timeval tv;
592 	struct bootpc_ifcontext *ifctx;
593 	int outstanding;
594 	int gotrootpath;
595 	int retry;
596 	const char *s;
597 
598 	tv.tv_sec = 1;
599 	tv.tv_usec = 0;
600 	bzero(&sopt, sizeof(sopt));
601 	sopt.sopt_dir = SOPT_SET;
602 	sopt.sopt_level = SOL_SOCKET;
603 	sopt.sopt_name = SO_RCVTIMEO;
604 	sopt.sopt_val = &tv;
605 	sopt.sopt_valsize = sizeof tv;
606 
607 	error = sosetopt(bootp_so, &sopt);
608 	if (error != 0)
609 		goto out;
610 
611 	/*
612 	 * Enable broadcast.
613 	 */
614 	on = 1;
615 	sopt.sopt_name = SO_BROADCAST;
616 	sopt.sopt_val = &on;
617 	sopt.sopt_valsize = sizeof on;
618 
619 	error = sosetopt(bootp_so, &sopt);
620 	if (error != 0)
621 		goto out;
622 
623 	/*
624 	 * Disable routing.
625 	 */
626 
627 	on = 1;
628 	sopt.sopt_name = SO_DONTROUTE;
629 	sopt.sopt_val = &on;
630 	sopt.sopt_valsize = sizeof on;
631 
632 	error = sosetopt(bootp_so, &sopt);
633 	if (error != 0)
634 		goto out;
635 
636 	/*
637 	 * Bind the local endpoint to a bootp client port.
638 	 */
639 	sin = &dst;
640 	clear_sinaddr(sin);
641 	sin->sin_port = htons(IPPORT_BOOTPC);
642 	error = sobind(bootp_so, (struct sockaddr *)sin, td);
643 	if (error != 0) {
644 		printf("bind failed\n");
645 		goto out;
646 	}
647 
648 	/*
649 	 * Setup socket address for the server.
650 	 */
651 	sin = &dst;
652 	clear_sinaddr(sin);
653 	sin->sin_addr.s_addr = INADDR_BROADCAST;
654 	sin->sin_port = htons(IPPORT_BOOTPS);
655 
656 	/*
657 	 * Send it, repeatedly, until a reply is received,
658 	 * but delay each re-send by an increasing amount.
659 	 * If the delay hits the maximum, start complaining.
660 	 */
661 	timo = 0;
662 	rtimo = 0;
663 	for (;;) {
664 
665 		outstanding = 0;
666 		gotrootpath = 0;
667 
668 		STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
669 			if (bootpc_ifctx_isresolved(ifctx) != 0 &&
670 			    bootpc_tag(&gctx->tmptag, &ifctx->reply,
671 				       ifctx->replylen,
672 				       TAG_ROOT) != NULL)
673 				gotrootpath = 1;
674 		}
675 
676 		STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
677 			struct in_aliasreq *ifra = &ifctx->iareq;
678 			sin = (struct sockaddr_in *)&ifra->ifra_mask;
679 
680 			ifctx->outstanding = 0;
681 			if (bootpc_ifctx_isresolved(ifctx)  != 0 &&
682 			    gotrootpath != 0) {
683 				continue;
684 			}
685 			if (bootpc_ifctx_isfailed(ifctx) != 0)
686 				continue;
687 
688 			outstanding++;
689 			ifctx->outstanding = 1;
690 
691 			/* Proceed to next step in DHCP negotiation */
692 			if ((ifctx->state == IF_DHCP_OFFERED &&
693 			     ifctx->dhcpquerytype != DHCP_REQUEST) ||
694 			    (ifctx->state == IF_DHCP_UNRESOLVED &&
695 			     ifctx->dhcpquerytype != DHCP_DISCOVER) ||
696 			    (ifctx->state == IF_BOOTP_UNRESOLVED &&
697 			     ifctx->dhcpquerytype != DHCP_NOMSG)) {
698 				ifctx->sentmsg = 0;
699 				bootpc_compose_query(ifctx, td);
700 			}
701 
702 			/* Send BOOTP request (or re-send). */
703 
704 			if (ifctx->sentmsg == 0) {
705 				switch(ifctx->dhcpquerytype) {
706 				case DHCP_DISCOVER:
707 					s = "DHCP Discover";
708 					break;
709 				case DHCP_REQUEST:
710 					s = "DHCP Request";
711 					break;
712 				case DHCP_NOMSG:
713 				default:
714 					s = "BOOTP Query";
715 					break;
716 				}
717 				printf("Sending %s packet from "
718 				       "interface %s (%*D)\n",
719 				       s,
720 				       ifctx->ireq.ifr_name,
721 				       ifctx->sdl->sdl_alen,
722 				       (unsigned char *) LLADDR(ifctx->sdl),
723 				       ":");
724 				ifctx->sentmsg = 1;
725 			}
726 
727 			aio.iov_base = (caddr_t) &ifctx->call;
728 			aio.iov_len = sizeof(ifctx->call);
729 
730 			auio.uio_iov = &aio;
731 			auio.uio_iovcnt = 1;
732 			auio.uio_segflg = UIO_SYSSPACE;
733 			auio.uio_rw = UIO_WRITE;
734 			auio.uio_offset = 0;
735 			auio.uio_resid = sizeof(ifctx->call);
736 			auio.uio_td = td;
737 
738 			/* Set netmask to 0.0.0.0 */
739 			clear_sinaddr(sin);
740 			error = ifioctl(bootp_so, SIOCAIFADDR, (caddr_t)ifra,
741 			    td);
742 			if (error != 0)
743 				panic("%s: SIOCAIFADDR, error=%d", __func__,
744 				    error);
745 
746 			error = sosend(bootp_so, (struct sockaddr *) &dst,
747 				       &auio, NULL, NULL, 0, td);
748 			if (error != 0)
749 				printf("%s: sosend: %d state %08x\n", __func__,
750 				    error, (int )bootp_so->so_state);
751 
752 			/* Set netmask to 255.0.0.0 */
753 			sin->sin_addr.s_addr = htonl(IN_CLASSA_NET);
754 			error = ifioctl(bootp_so, SIOCAIFADDR, (caddr_t)ifra,
755 			    td);
756 			if (error != 0)
757 				panic("%s: SIOCAIFADDR, error=%d", __func__,
758 				    error);
759 		}
760 
761 		if (outstanding == 0 &&
762 		    (rtimo == 0 || time_second >= rtimo)) {
763 			error = 0;
764 			goto out;
765 		}
766 
767 		/* Determine new timeout. */
768 		if (timo < MAX_RESEND_DELAY)
769 			timo++;
770 		else {
771 			printf("DHCP/BOOTP timeout for server ");
772 			print_sin_addr(&dst);
773 			printf("\n");
774 		}
775 
776 		/*
777 		 * Wait for up to timo seconds for a reply.
778 		 * The socket receive timeout was set to 1 second.
779 		 */
780 		atimo = timo + time_second;
781 		while (time_second < atimo) {
782 			aio.iov_base = (caddr_t) &gctx->reply;
783 			aio.iov_len = sizeof(gctx->reply);
784 
785 			auio.uio_iov = &aio;
786 			auio.uio_iovcnt = 1;
787 			auio.uio_segflg = UIO_SYSSPACE;
788 			auio.uio_rw = UIO_READ;
789 			auio.uio_offset = 0;
790 			auio.uio_resid = sizeof(gctx->reply);
791 			auio.uio_td = td;
792 
793 			rcvflg = 0;
794 			error = soreceive(bootp_so, NULL, &auio,
795 					  NULL, NULL, &rcvflg);
796 			gctx->secs = time_second - gctx->starttime;
797 			STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
798 				if (bootpc_ifctx_isresolved(ifctx) != 0 ||
799 				    bootpc_ifctx_isfailed(ifctx) != 0)
800 					continue;
801 
802 				ifctx->call.secs = htons(gctx->secs);
803 			}
804 			if (error == EWOULDBLOCK)
805 				continue;
806 			if (error != 0)
807 				goto out;
808 			len = sizeof(gctx->reply) - auio.uio_resid;
809 
810 			/* Do we have the required number of bytes ? */
811 			if (len < BOOTP_MIN_LEN)
812 				continue;
813 			gctx->replylen = len;
814 
815 			/* Is it a reply? */
816 			if (gctx->reply.op != BOOTP_REPLY)
817 				continue;
818 
819 			/* Is this an answer to our query */
820 			STAILQ_FOREACH(ifctx, &gctx->interfaces, next) {
821 				if (gctx->reply.xid != ifctx->call.xid)
822 					continue;
823 
824 				/* Same HW address size ? */
825 				if (gctx->reply.hlen != ifctx->call.hlen)
826 					continue;
827 
828 				/* Correct HW address ? */
829 				if (bcmp(gctx->reply.chaddr,
830 					 ifctx->call.chaddr,
831 					 ifctx->call.hlen) != 0)
832 					continue;
833 
834 				break;
835 			}
836 
837 			if (ifctx != NULL) {
838 				s =  bootpc_tag(&gctx->tmptag,
839 						&gctx->reply,
840 						gctx->replylen,
841 						TAG_DHCP_MSGTYPE);
842 				if (s != NULL) {
843 					switch (*s) {
844 					case DHCP_OFFER:
845 						s = "DHCP Offer";
846 						break;
847 					case DHCP_ACK:
848 						s = "DHCP Ack";
849 						break;
850 					default:
851 						s = "DHCP (unexpected)";
852 						break;
853 					}
854 				} else
855 					s = "BOOTP Reply";
856 
857 				printf("Received %s packet"
858 				       " on %s from ",
859 				       s,
860 				       ifctx->ireq.ifr_name);
861 				print_in_addr(gctx->reply.siaddr);
862 				if (gctx->reply.giaddr.s_addr !=
863 				    htonl(INADDR_ANY)) {
864 					printf(" via ");
865 					print_in_addr(gctx->reply.giaddr);
866 				}
867 				if (bootpc_received(gctx, ifctx) != 0) {
868 					printf(" (accepted)");
869 					if (ifctx->outstanding) {
870 						ifctx->outstanding = 0;
871 						outstanding--;
872 					}
873 					/* Network settle delay */
874 					if (outstanding == 0)
875 						atimo = time_second +
876 							BOOTP_SETTLE_DELAY;
877 				} else
878 					printf(" (ignored)");
879 				if (ifctx->gotrootpath ||
880 				    gctx->any_root_overrides) {
881 					gotrootpath = 1;
882 					rtimo = time_second +
883 						BOOTP_SETTLE_DELAY;
884 					if (ifctx->gotrootpath)
885 						printf(" (got root path)");
886 				}
887 				printf("\n");
888 			}
889 		} /* while secs */
890 #ifdef BOOTP_TIMEOUT
891 		if (gctx->secs > BOOTP_TIMEOUT && BOOTP_TIMEOUT > 0)
892 			break;
893 #endif
894 		/* Force a retry if halfway in DHCP negotiation */
895 		retry = 0;
896 		STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
897 			if (ifctx->state == IF_DHCP_OFFERED) {
898 				if (ifctx->dhcpquerytype == DHCP_DISCOVER)
899 					retry = 1;
900 				else
901 					ifctx->state = IF_DHCP_UNRESOLVED;
902 			}
903 
904 		if (retry != 0)
905 			continue;
906 
907 		if (gotrootpath != 0) {
908 			gctx->gotrootpath = gotrootpath;
909 			if (rtimo != 0 && time_second >= rtimo)
910 				break;
911 		}
912 	} /* forever send/receive */
913 
914 	/*
915 	 * XXX: These are errors of varying seriousness being silently
916 	 * ignored
917 	 */
918 
919 	STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
920 		if (bootpc_ifctx_isresolved(ifctx) == 0) {
921 			printf("%s timeout for interface %s\n",
922 			       ifctx->dhcpquerytype != DHCP_NOMSG ?
923 			       "DHCP" : "BOOTP",
924 			       ifctx->ireq.ifr_name);
925 		}
926 
927 	if (gctx->gotrootpath != 0) {
928 #if 0
929 		printf("Got a root path, ignoring remaining timeout\n");
930 #endif
931 		error = 0;
932 		goto out;
933 	}
934 #ifndef BOOTP_NFSROOT
935 	STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
936 		if (bootpc_ifctx_isresolved(ifctx) != 0) {
937 			error = 0;
938 			goto out;
939 		}
940 #endif
941 	error = ETIMEDOUT;
942 
943 out:
944 	return (error);
945 }
946 
947 static void
948 bootpc_fakeup_interface(struct bootpc_ifcontext *ifctx, struct thread *td)
949 {
950 	struct ifreq *ifr;
951 	struct in_aliasreq *ifra;
952 	struct sockaddr_in *sin;
953 	int error;
954 
955 	ifr = &ifctx->ireq;
956 	ifra = &ifctx->iareq;
957 
958 	/*
959 	 * Bring up the interface.
960 	 *
961 	 * Get the old interface flags and or IFF_UP into them; if
962 	 * IFF_UP set blindly, interface selection can be clobbered.
963 	 */
964 	error = ifioctl(bootp_so, SIOCGIFFLAGS, (caddr_t)ifr, td);
965 	if (error != 0)
966 		panic("%s: SIOCGIFFLAGS, error=%d", __func__, error);
967 	ifr->ifr_flags |= IFF_UP;
968 	error = ifioctl(bootp_so, SIOCSIFFLAGS, (caddr_t)ifr, td);
969 	if (error != 0)
970 		panic("%s: SIOCSIFFLAGS, error=%d", __func__, error);
971 
972 	/*
973 	 * Do enough of ifconfig(8) so that the chosen interface
974 	 * can talk to the servers. Set address to 0.0.0.0/8 and
975 	 * broadcast address to local broadcast.
976 	 */
977 	sin = (struct sockaddr_in *)&ifra->ifra_addr;
978 	clear_sinaddr(sin);
979 	sin = (struct sockaddr_in *)&ifra->ifra_mask;
980 	clear_sinaddr(sin);
981 	sin->sin_addr.s_addr = htonl(IN_CLASSA_NET);
982 	sin = (struct sockaddr_in *)&ifra->ifra_broadaddr;
983 	clear_sinaddr(sin);
984 	sin->sin_addr.s_addr = htonl(INADDR_BROADCAST);
985 	error = ifioctl(bootp_so, SIOCAIFADDR, (caddr_t)ifra, td);
986 	if (error != 0)
987 		panic("%s: SIOCAIFADDR, error=%d", __func__, error);
988 }
989 
990 static void
991 bootpc_shutdown_interface(struct bootpc_ifcontext *ifctx, struct thread *td)
992 {
993 	struct ifreq *ifr;
994 	struct sockaddr_in *sin;
995 	int error;
996 
997 	ifr = &ifctx->ireq;
998 
999 	printf("Shutdown interface %s\n", ifctx->ireq.ifr_name);
1000 	error = ifioctl(bootp_so, SIOCGIFFLAGS, (caddr_t)ifr, td);
1001 	if (error != 0)
1002 		panic("%s: SIOCGIFFLAGS, error=%d", __func__, error);
1003 	ifr->ifr_flags &= ~IFF_UP;
1004 	error = ifioctl(bootp_so, SIOCSIFFLAGS, (caddr_t)ifr, td);
1005 	if (error != 0)
1006 		panic("%s: SIOCSIFFLAGS, error=%d", __func__, error);
1007 
1008 	sin = (struct sockaddr_in *) &ifr->ifr_addr;
1009 	clear_sinaddr(sin);
1010 	error = ifioctl(bootp_so, SIOCDIFADDR, (caddr_t) ifr, td);
1011 	if (error != 0)
1012 		panic("%s: SIOCDIFADDR, error=%d", __func__, error);
1013 }
1014 
1015 static void
1016 bootpc_adjust_interface(struct bootpc_ifcontext *ifctx,
1017     struct bootpc_globalcontext *gctx, struct thread *td)
1018 {
1019 	int error;
1020 	struct sockaddr_in *sin;
1021 	struct ifreq *ifr;
1022 	struct in_aliasreq *ifra;
1023 	struct sockaddr_in *myaddr;
1024 	struct sockaddr_in *netmask;
1025 
1026 	ifr = &ifctx->ireq;
1027 	ifra = &ifctx->iareq;
1028 	myaddr = &ifctx->myaddr;
1029 	netmask = &ifctx->netmask;
1030 
1031 	if (bootpc_ifctx_isresolved(ifctx) == 0) {
1032 		/* Shutdown interfaces where BOOTP failed */
1033 		bootpc_shutdown_interface(ifctx, td);
1034 		return;
1035 	}
1036 
1037 	printf("Adjusted interface %s", ifctx->ireq.ifr_name);
1038 
1039 	/* Do BOOTP interface options */
1040 	if (ifctx->mtu != 0) {
1041 		printf(" (MTU=%d%s)", ifctx->mtu,
1042 		    (ifctx->mtu > 1514) ? "/JUMBO" : "");
1043 		ifr->ifr_mtu = ifctx->mtu;
1044 		error = ifioctl(bootp_so, SIOCSIFMTU, (caddr_t) ifr, td);
1045 		if (error != 0)
1046 			panic("%s: SIOCSIFMTU, error=%d", __func__, error);
1047 	}
1048 	printf("\n");
1049 
1050 	/*
1051 	 * Do enough of ifconfig(8) so that the chosen interface
1052 	 * can talk to the servers.  (just set the address)
1053 	 */
1054 	sin = (struct sockaddr_in *) &ifr->ifr_addr;
1055 	clear_sinaddr(sin);
1056 	error = ifioctl(bootp_so, SIOCDIFADDR, (caddr_t) ifr, td);
1057 	if (error != 0)
1058 		panic("%s: SIOCDIFADDR, error=%d", __func__, error);
1059 
1060 	bcopy(myaddr, &ifra->ifra_addr, sizeof(*myaddr));
1061 	bcopy(netmask, &ifra->ifra_mask, sizeof(*netmask));
1062 	clear_sinaddr(&ifra->ifra_broadaddr);
1063 	ifra->ifra_broadaddr.sin_addr.s_addr = myaddr->sin_addr.s_addr |
1064 	    ~netmask->sin_addr.s_addr;
1065 
1066 	error = ifioctl(bootp_so, SIOCAIFADDR, (caddr_t)ifra, td);
1067 	if (error != 0)
1068 		panic("%s: SIOCAIFADDR, error=%d", __func__, error);
1069 }
1070 
1071 static void
1072 bootpc_add_default_route(struct bootpc_ifcontext *ifctx)
1073 {
1074 	int error;
1075 	struct sockaddr_in defdst;
1076 	struct sockaddr_in defmask;
1077 
1078 	if (ifctx->gw.sin_addr.s_addr == htonl(INADDR_ANY))
1079 		return;
1080 
1081 	clear_sinaddr(&defdst);
1082 	clear_sinaddr(&defmask);
1083 
1084 	error = rtrequest_fib(RTM_ADD, (struct sockaddr *)&defdst,
1085 	    (struct sockaddr *) &ifctx->gw, (struct sockaddr *)&defmask,
1086 	    (RTF_UP | RTF_GATEWAY | RTF_STATIC), NULL, RT_DEFAULT_FIB);
1087 	if (error != 0) {
1088 		printf("%s: RTM_ADD, error=%d\n", __func__, error);
1089 	}
1090 }
1091 
1092 static void
1093 bootpc_remove_default_route(struct bootpc_ifcontext *ifctx)
1094 {
1095 	int error;
1096 	struct sockaddr_in defdst;
1097 	struct sockaddr_in defmask;
1098 
1099 	if (ifctx->gw.sin_addr.s_addr == htonl(INADDR_ANY))
1100 		return;
1101 
1102 	clear_sinaddr(&defdst);
1103 	clear_sinaddr(&defmask);
1104 
1105 	error = rtrequest_fib(RTM_DELETE, (struct sockaddr *)&defdst,
1106 	    (struct sockaddr *) &ifctx->gw, (struct sockaddr *)&defmask,
1107 	    (RTF_UP | RTF_GATEWAY | RTF_STATIC), NULL, RT_DEFAULT_FIB);
1108 	if (error != 0) {
1109 		printf("%s: RTM_DELETE, error=%d\n", __func__, error);
1110 	}
1111 }
1112 
1113 static int
1114 setfs(struct sockaddr_in *addr, char *path, char *p,
1115     const struct in_addr *siaddr)
1116 {
1117 
1118 	if (getip(&p, &addr->sin_addr) == 0) {
1119 		if (siaddr != NULL && *p == '/')
1120 			bcopy(siaddr, &addr->sin_addr, sizeof(struct in_addr));
1121 		else
1122 			return 0;
1123 	} else {
1124 		if (*p != ':')
1125 			return 0;
1126 		p++;
1127 	}
1128 
1129 	addr->sin_len = sizeof(struct sockaddr_in);
1130 	addr->sin_family = AF_INET;
1131 
1132 	strlcpy(path, p, MNAMELEN);
1133 	return 1;
1134 }
1135 
1136 static int
1137 getip(char **ptr, struct in_addr *addr)
1138 {
1139 	char *p;
1140 	unsigned int ip;
1141 	int val;
1142 
1143 	p = *ptr;
1144 	ip = 0;
1145 	if (((val = getdec(&p)) < 0) || (val > 255))
1146 		return 0;
1147 	ip = val << 24;
1148 	if (*p != '.')
1149 		return 0;
1150 	p++;
1151 	if (((val = getdec(&p)) < 0) || (val > 255))
1152 		return 0;
1153 	ip |= (val << 16);
1154 	if (*p != '.')
1155 		return 0;
1156 	p++;
1157 	if (((val = getdec(&p)) < 0) || (val > 255))
1158 		return 0;
1159 	ip |= (val << 8);
1160 	if (*p != '.')
1161 		return 0;
1162 	p++;
1163 	if (((val = getdec(&p)) < 0) || (val > 255))
1164 		return 0;
1165 	ip |= val;
1166 
1167 	addr->s_addr = htonl(ip);
1168 	*ptr = p;
1169 	return 1;
1170 }
1171 
1172 static int
1173 getdec(char **ptr)
1174 {
1175 	char *p;
1176 	int ret;
1177 
1178 	p = *ptr;
1179 	ret = 0;
1180 	if ((*p < '0') || (*p > '9'))
1181 		return -1;
1182 	while ((*p >= '0') && (*p <= '9')) {
1183 		ret = ret * 10 + (*p - '0');
1184 		p++;
1185 	}
1186 	*ptr = p;
1187 	return ret;
1188 }
1189 
1190 static void
1191 mountopts(struct nfs_args *args, char *p)
1192 {
1193 	args->version = NFS_ARGSVERSION;
1194 	args->rsize = BOOTP_BLOCKSIZE;
1195 	args->wsize = BOOTP_BLOCKSIZE;
1196 	args->flags = NFSMNT_RSIZE | NFSMNT_WSIZE | NFSMNT_RESVPORT;
1197 	args->sotype = SOCK_DGRAM;
1198 	if (p != NULL)
1199 		nfs_parse_options(p, args);
1200 }
1201 
1202 static int
1203 xdr_opaque_decode(struct mbuf **mptr, u_char *buf, int len)
1204 {
1205 	struct mbuf *m;
1206 	int alignedlen;
1207 
1208 	m = *mptr;
1209 	alignedlen = ( len + 3 ) & ~3;
1210 
1211 	if (m->m_len < alignedlen) {
1212 		m = m_pullup(m, alignedlen);
1213 		if (m == NULL) {
1214 			*mptr = NULL;
1215 			return EBADRPC;
1216 		}
1217 	}
1218 	bcopy(mtod(m, u_char *), buf, len);
1219 	m_adj(m, alignedlen);
1220 	*mptr = m;
1221 	return 0;
1222 }
1223 
1224 static int
1225 xdr_int_decode(struct mbuf **mptr, int *iptr)
1226 {
1227 	u_int32_t i;
1228 
1229 	if (xdr_opaque_decode(mptr, (u_char *) &i, sizeof(u_int32_t)) != 0)
1230 		return EBADRPC;
1231 	*iptr = fxdr_unsigned(u_int32_t, i);
1232 	return 0;
1233 }
1234 
1235 static void
1236 print_sin_addr(struct sockaddr_in *sin)
1237 {
1238 
1239 	print_in_addr(sin->sin_addr);
1240 }
1241 
1242 static void
1243 print_in_addr(struct in_addr addr)
1244 {
1245 	unsigned int ip;
1246 
1247 	ip = ntohl(addr.s_addr);
1248 	printf("%d.%d.%d.%d",
1249 	       ip >> 24, (ip >> 16) & 255, (ip >> 8) & 255, ip & 255);
1250 }
1251 
1252 static void
1253 bootpc_compose_query(struct bootpc_ifcontext *ifctx, struct thread *td)
1254 {
1255 	unsigned char *vendp;
1256 	unsigned char vendor_client[64];
1257 	uint32_t leasetime;
1258 	uint8_t vendor_client_len;
1259 
1260 	ifctx->gotrootpath = 0;
1261 
1262 	bzero((caddr_t) &ifctx->call, sizeof(ifctx->call));
1263 
1264 	/* bootpc part */
1265 	ifctx->call.op = BOOTP_REQUEST; 	/* BOOTREQUEST */
1266 	ifctx->call.htype = 1;			/* 10mb ethernet */
1267 	ifctx->call.hlen = ifctx->sdl->sdl_alen;/* Hardware address length */
1268 	ifctx->call.hops = 0;
1269 	if (bootpc_ifctx_isunresolved(ifctx) != 0)
1270 		ifctx->xid++;
1271 	ifctx->call.xid = txdr_unsigned(ifctx->xid);
1272 	bcopy(LLADDR(ifctx->sdl), &ifctx->call.chaddr, ifctx->sdl->sdl_alen);
1273 
1274 	vendp = ifctx->call.vend;
1275 	*vendp++ = 99;		/* RFC1048 cookie */
1276 	*vendp++ = 130;
1277 	*vendp++ = 83;
1278 	*vendp++ = 99;
1279 	*vendp++ = TAG_MAXMSGSIZE;
1280 	*vendp++ = 2;
1281 	*vendp++ = (sizeof(struct bootp_packet) >> 8) & 255;
1282 	*vendp++ = sizeof(struct bootp_packet) & 255;
1283 
1284 	snprintf(vendor_client, sizeof(vendor_client), "%s:%s:%s",
1285 		ostype, MACHINE, osrelease);
1286 	vendor_client_len = strlen(vendor_client);
1287 	*vendp++ = TAG_VENDOR_INDENTIFIER;
1288 	*vendp++ = vendor_client_len;
1289 	memcpy(vendp, vendor_client, vendor_client_len);
1290 	vendp += vendor_client_len;
1291 	ifctx->dhcpquerytype = DHCP_NOMSG;
1292 	switch (ifctx->state) {
1293 	case IF_DHCP_UNRESOLVED:
1294 		*vendp++ = TAG_DHCP_MSGTYPE;
1295 		*vendp++ = 1;
1296 		*vendp++ = DHCP_DISCOVER;
1297 		ifctx->dhcpquerytype = DHCP_DISCOVER;
1298 		ifctx->gotdhcpserver = 0;
1299 		break;
1300 	case IF_DHCP_OFFERED:
1301 		*vendp++ = TAG_DHCP_MSGTYPE;
1302 		*vendp++ = 1;
1303 		*vendp++ = DHCP_REQUEST;
1304 		ifctx->dhcpquerytype = DHCP_REQUEST;
1305 		*vendp++ = TAG_DHCP_REQ_ADDR;
1306 		*vendp++ = 4;
1307 		memcpy(vendp, &ifctx->reply.yiaddr, 4);
1308 		vendp += 4;
1309 		if (ifctx->gotdhcpserver != 0) {
1310 			*vendp++ = TAG_DHCP_SERVERID;
1311 			*vendp++ = 4;
1312 			memcpy(vendp, &ifctx->dhcpserver, 4);
1313 			vendp += 4;
1314 		}
1315 		*vendp++ = TAG_DHCP_LEASETIME;
1316 		*vendp++ = 4;
1317 		leasetime = htonl(300);
1318 		memcpy(vendp, &leasetime, 4);
1319 		vendp += 4;
1320 		break;
1321 	default:
1322 		break;
1323 	}
1324 	*vendp = TAG_END;
1325 
1326 	ifctx->call.secs = 0;
1327 	ifctx->call.flags = htons(0x8000); /* We need a broadcast answer */
1328 }
1329 
1330 static int
1331 bootpc_hascookie(struct bootp_packet *bp)
1332 {
1333 
1334 	return (bp->vend[0] == 99 && bp->vend[1] == 130 &&
1335 		bp->vend[2] == 83 && bp->vend[3] == 99);
1336 }
1337 
1338 static void
1339 bootpc_tag_helper(struct bootpc_tagcontext *tctx,
1340     unsigned char *start, int len, int tag)
1341 {
1342 	unsigned char *j;
1343 	unsigned char *ej;
1344 	unsigned char code;
1345 
1346 	if (tctx->badtag != 0 || tctx->badopt != 0)
1347 		return;
1348 
1349 	j = start;
1350 	ej = j + len;
1351 
1352 	while (j < ej) {
1353 		code = *j++;
1354 		if (code == TAG_PAD)
1355 			continue;
1356 		if (code == TAG_END)
1357 			return;
1358 		if (j >= ej || j + *j + 1 > ej) {
1359 			tctx->badopt = 1;
1360 			return;
1361 		}
1362 		len = *j++;
1363 		if (code == tag) {
1364 			if (tctx->taglen + len > TAG_MAXLEN) {
1365 				tctx->badtag = 1;
1366 				return;
1367 			}
1368 			tctx->foundopt = 1;
1369 			if (len > 0)
1370 				memcpy(tctx->buf + tctx->taglen,
1371 				       j, len);
1372 			tctx->taglen += len;
1373 		}
1374 		if (code == TAG_OVERLOAD)
1375 			tctx->overload = *j;
1376 
1377 		j += len;
1378 	}
1379 }
1380 
1381 static unsigned char *
1382 bootpc_tag(struct bootpc_tagcontext *tctx,
1383     struct bootp_packet *bp, int len, int tag)
1384 {
1385 	tctx->overload = 0;
1386 	tctx->badopt = 0;
1387 	tctx->badtag = 0;
1388 	tctx->foundopt = 0;
1389 	tctx->taglen = 0;
1390 
1391 	if (bootpc_hascookie(bp) == 0)
1392 		return NULL;
1393 
1394 	bootpc_tag_helper(tctx, &bp->vend[4],
1395 			  (unsigned char *) bp + len - &bp->vend[4], tag);
1396 
1397 	if ((tctx->overload & OVERLOAD_FILE) != 0)
1398 		bootpc_tag_helper(tctx,
1399 				  (unsigned char *) bp->file,
1400 				  sizeof(bp->file),
1401 				  tag);
1402 	if ((tctx->overload & OVERLOAD_SNAME) != 0)
1403 		bootpc_tag_helper(tctx,
1404 				  (unsigned char *) bp->sname,
1405 				  sizeof(bp->sname),
1406 				  tag);
1407 
1408 	if (tctx->badopt != 0 || tctx->badtag != 0 || tctx->foundopt == 0)
1409 		return NULL;
1410 	tctx->buf[tctx->taglen] = '\0';
1411 	return tctx->buf;
1412 }
1413 
1414 static void
1415 bootpc_decode_reply(struct nfsv3_diskless *nd, struct bootpc_ifcontext *ifctx,
1416     struct bootpc_globalcontext *gctx)
1417 {
1418 	char *p, *s;
1419 	unsigned int ip;
1420 
1421 	ifctx->gotgw = 0;
1422 	ifctx->gotnetmask = 0;
1423 
1424 	clear_sinaddr(&ifctx->myaddr);
1425 	clear_sinaddr(&ifctx->netmask);
1426 	clear_sinaddr(&ifctx->gw);
1427 
1428 	ifctx->myaddr.sin_addr = ifctx->reply.yiaddr;
1429 
1430 	ip = ntohl(ifctx->myaddr.sin_addr.s_addr);
1431 
1432 	printf("%s at ", ifctx->ireq.ifr_name);
1433 	print_sin_addr(&ifctx->myaddr);
1434 	printf(" server ");
1435 	print_in_addr(ifctx->reply.siaddr);
1436 
1437 	ifctx->gw.sin_addr = ifctx->reply.giaddr;
1438 	if (ifctx->reply.giaddr.s_addr != htonl(INADDR_ANY)) {
1439 		printf(" via gateway ");
1440 		print_in_addr(ifctx->reply.giaddr);
1441 	}
1442 
1443 	/* This call used for the side effect (overload flag) */
1444 	(void) bootpc_tag(&gctx->tmptag,
1445 			  &ifctx->reply, ifctx->replylen, TAG_END);
1446 
1447 	if ((gctx->tmptag.overload & OVERLOAD_SNAME) == 0)
1448 		if (ifctx->reply.sname[0] != '\0')
1449 			printf(" server name %s", ifctx->reply.sname);
1450 	if ((gctx->tmptag.overload & OVERLOAD_FILE) == 0)
1451 		if (ifctx->reply.file[0] != '\0')
1452 			printf(" boot file %s", ifctx->reply.file);
1453 
1454 	printf("\n");
1455 
1456 	p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
1457 		       TAG_SUBNETMASK);
1458 	if (p != NULL) {
1459 		if (gctx->tag.taglen != 4)
1460 			panic("bootpc: subnet mask len is %d",
1461 			      gctx->tag.taglen);
1462 		bcopy(p, &ifctx->netmask.sin_addr, 4);
1463 		ifctx->gotnetmask = 1;
1464 		printf("subnet mask ");
1465 		print_sin_addr(&ifctx->netmask);
1466 		printf(" ");
1467 	}
1468 
1469 	p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
1470 		       TAG_ROUTERS);
1471 	if (p != NULL) {
1472 		/* Routers */
1473 		if (gctx->tag.taglen % 4)
1474 			panic("bootpc: Router Len is %d", gctx->tag.taglen);
1475 		if (gctx->tag.taglen > 0) {
1476 			bcopy(p, &ifctx->gw.sin_addr, 4);
1477 			printf("router ");
1478 			print_sin_addr(&ifctx->gw);
1479 			printf(" ");
1480 			ifctx->gotgw = 1;
1481 			gctx->gotgw = 1;
1482 		}
1483 	}
1484 
1485 	/*
1486 	 * Choose a root filesystem.  If a value is forced in the environment
1487 	 * and it contains "nfs:", use it unconditionally.  Otherwise, if the
1488 	 * kernel is compiled with the ROOTDEVNAME option, then use it if:
1489 	 *  - The server doesn't provide a pathname.
1490 	 *  - The boothowto flags include RB_DFLTROOT (user said to override
1491 	 *    the server value).
1492 	 */
1493 	p = NULL;
1494 	if ((s = kern_getenv("vfs.root.mountfrom")) != NULL) {
1495 		if ((p = strstr(s, "nfs:")) != NULL)
1496 			p = strdup(p + 4, M_TEMP);
1497 		freeenv(s);
1498 	}
1499 	if (p == NULL) {
1500 		p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
1501 		       TAG_ROOT);
1502 		if (p != NULL)
1503 			ifctx->gotrootpath = 1;
1504 	}
1505 #ifdef ROOTDEVNAME
1506 	if ((p == NULL || (boothowto & RB_DFLTROOT) != 0) &&
1507 	    (p = strstr(ROOTDEVNAME, "nfs:")) != NULL) {
1508 		p += 4;
1509 	}
1510 #endif
1511 	if (p != NULL) {
1512 		if (gctx->setrootfs != NULL) {
1513 			printf("rootfs %s (ignored) ", p);
1514 		} else 	if (setfs(&nd->root_saddr,
1515 				  nd->root_hostnam, p, &ifctx->reply.siaddr)) {
1516 			if (*p == '/') {
1517 				printf("root_server ");
1518 				print_sin_addr(&nd->root_saddr);
1519 				printf(" ");
1520 			}
1521 			printf("rootfs %s ", p);
1522 			gctx->gotrootpath = 1;
1523 			gctx->setrootfs = ifctx;
1524 
1525 			p = bootpc_tag(&gctx->tag, &ifctx->reply,
1526 				       ifctx->replylen,
1527 				       TAG_ROOTOPTS);
1528 			if (p != NULL) {
1529 				mountopts(&nd->root_args, p);
1530 				printf("rootopts %s ", p);
1531 			}
1532 		} else
1533 			panic("Failed to set rootfs to %s", p);
1534 	}
1535 
1536 	p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
1537 		       TAG_HOSTNAME);
1538 	if (p != NULL) {
1539 		if (gctx->tag.taglen >= MAXHOSTNAMELEN)
1540 			panic("bootpc: hostname >= %d bytes",
1541 			      MAXHOSTNAMELEN);
1542 		if (gctx->sethostname != NULL) {
1543 			printf("hostname %s (ignored) ", p);
1544 		} else {
1545 			strcpy(nd->my_hostnam, p);
1546 			mtx_lock(&prison0.pr_mtx);
1547 			strcpy(prison0.pr_hostname, p);
1548 			mtx_unlock(&prison0.pr_mtx);
1549 			printf("hostname %s ", p);
1550 			gctx->sethostname = ifctx;
1551 		}
1552 	}
1553 	p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
1554 			TAG_COOKIE);
1555 	if (p != NULL) {        /* store in a sysctl variable */
1556 		int i, l = sizeof(bootp_cookie) - 1;
1557 		for (i = 0; i < l && p[i] != '\0'; i++)
1558 			bootp_cookie[i] = p[i];
1559 		p[i] = '\0';
1560 	}
1561 
1562 	p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
1563 		       TAG_INTF_MTU);
1564 	if (p != NULL) {
1565 		ifctx->mtu = be16dec(p);
1566 	}
1567 
1568 	printf("\n");
1569 
1570 	if (ifctx->gotnetmask == 0) {
1571 		if (IN_CLASSA(ntohl(ifctx->myaddr.sin_addr.s_addr)))
1572 			ifctx->netmask.sin_addr.s_addr = htonl(IN_CLASSA_NET);
1573 		else if (IN_CLASSB(ntohl(ifctx->myaddr.sin_addr.s_addr)))
1574 			ifctx->netmask.sin_addr.s_addr = htonl(IN_CLASSB_NET);
1575 		else
1576 			ifctx->netmask.sin_addr.s_addr = htonl(IN_CLASSC_NET);
1577 	}
1578 }
1579 
1580 void
1581 bootpc_init(void)
1582 {
1583 	struct bootpc_ifcontext *ifctx;		/* Interface BOOTP contexts */
1584 	struct bootpc_globalcontext *gctx; 	/* Global BOOTP context */
1585 	struct ifnet *ifp;
1586 	struct sockaddr_dl *sdl;
1587 	struct ifaddr *ifa;
1588 	int error;
1589 #ifndef BOOTP_WIRED_TO
1590 	int ifcnt;
1591 #endif
1592 	struct nfsv3_diskless *nd;
1593 	struct thread *td;
1594 	int timeout;
1595 	int delay;
1596 
1597 	timeout = BOOTP_IFACE_WAIT_TIMEOUT * hz;
1598 	delay = hz / 10;
1599 
1600 	nd = &nfsv3_diskless;
1601 	td = curthread;
1602 
1603 	/*
1604 	 * If already filled in, don't touch it here
1605 	 */
1606 	if (nfs_diskless_valid != 0)
1607 		return;
1608 
1609 	gctx = malloc(sizeof(*gctx), M_TEMP, M_WAITOK | M_ZERO);
1610 	STAILQ_INIT(&gctx->interfaces);
1611 	gctx->xid = ~0xFFFF;
1612 	gctx->starttime = time_second;
1613 
1614 	/*
1615 	 * If ROOTDEVNAME is defined or vfs.root.mountfrom is set then we have
1616 	 * root-path overrides that can potentially let us boot even if we don't
1617 	 * get a root path from the server, so we can treat that as a non-error.
1618 	 */
1619 #ifdef ROOTDEVNAME
1620 	gctx->any_root_overrides = 1;
1621 #else
1622 	gctx->any_root_overrides = testenv("vfs.root.mountfrom");
1623 #endif
1624 
1625 	/*
1626 	 * Find a network interface.
1627 	 */
1628 	CURVNET_SET(TD_TO_VNET(td));
1629 #ifdef BOOTP_WIRED_TO
1630 	printf("%s: wired to interface '%s'\n", __func__,
1631 	       __XSTRING(BOOTP_WIRED_TO));
1632 	allocifctx(gctx);
1633 #else
1634 	/*
1635 	 * Preallocate interface context storage, if another interface
1636 	 * attaches and wins the race, it won't be eligible for bootp.
1637 	 */
1638 	ifcnt = 0;
1639 	IFNET_RLOCK();
1640 	TAILQ_FOREACH(ifp, &V_ifnet, if_link) {
1641 		if ((ifp->if_flags &
1642 		     (IFF_LOOPBACK | IFF_POINTOPOINT | IFF_BROADCAST)) !=
1643 		    IFF_BROADCAST)
1644 			continue;
1645 		switch (ifp->if_alloctype) {
1646 			case IFT_ETHER:
1647 				break;
1648 			default:
1649 				continue;
1650 		}
1651 		ifcnt++;
1652 	}
1653 	IFNET_RUNLOCK();
1654 	if (ifcnt == 0)
1655 		panic("%s: no eligible interfaces", __func__);
1656 	for (; ifcnt > 0; ifcnt--)
1657 		allocifctx(gctx);
1658 #endif
1659 
1660 retry:
1661 	ifctx = STAILQ_FIRST(&gctx->interfaces);
1662 	IFNET_RLOCK();
1663 	TAILQ_FOREACH(ifp, &V_ifnet, if_link) {
1664 		if (ifctx == NULL)
1665 			break;
1666 #ifdef BOOTP_WIRED_TO
1667 		if (strcmp(ifp->if_xname, __XSTRING(BOOTP_WIRED_TO)) != 0)
1668 			continue;
1669 #else
1670 		if ((ifp->if_flags &
1671 		     (IFF_LOOPBACK | IFF_POINTOPOINT | IFF_BROADCAST)) !=
1672 		    IFF_BROADCAST)
1673 			continue;
1674 		switch (ifp->if_alloctype) {
1675 			case IFT_ETHER:
1676 				break;
1677 			default:
1678 				continue;
1679 		}
1680 #endif
1681 		strlcpy(ifctx->ireq.ifr_name, ifp->if_xname,
1682 		    sizeof(ifctx->ireq.ifr_name));
1683 		ifctx->ifp = ifp;
1684 
1685 		/* Get HW address */
1686 		sdl = NULL;
1687 		CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link)
1688 			if (ifa->ifa_addr->sa_family == AF_LINK) {
1689 				sdl = (struct sockaddr_dl *)ifa->ifa_addr;
1690 				if (sdl->sdl_type == IFT_ETHER)
1691 					break;
1692 			}
1693 		if (sdl == NULL)
1694 			panic("bootpc: Unable to find HW address for %s",
1695 			    ifctx->ireq.ifr_name);
1696 		ifctx->sdl = sdl;
1697 
1698 		ifctx = STAILQ_NEXT(ifctx, next);
1699 	}
1700 	IFNET_RUNLOCK();
1701 	CURVNET_RESTORE();
1702 
1703 	if (STAILQ_EMPTY(&gctx->interfaces) ||
1704 	    STAILQ_FIRST(&gctx->interfaces)->ifp == NULL) {
1705 		if (timeout > 0) {
1706 			pause("bootpc", delay);
1707 			timeout -= delay;
1708 			goto retry;
1709 		}
1710 #ifdef BOOTP_WIRED_TO
1711 		panic("%s: Could not find interface specified "
1712 		      "by BOOTP_WIRED_TO: "
1713 		      __XSTRING(BOOTP_WIRED_TO), __func__);
1714 #else
1715 		panic("%s: no suitable interface", __func__);
1716 #endif
1717 	}
1718 
1719 	error = socreate(AF_INET, &bootp_so, SOCK_DGRAM, 0, td->td_ucred, td);
1720 	if (error != 0)
1721 		panic("%s: socreate, error=%d", __func__, error);
1722 
1723 	STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
1724 		bootpc_fakeup_interface(ifctx, td);
1725 
1726 	STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
1727 		bootpc_compose_query(ifctx, td);
1728 
1729 	error = bootpc_call(gctx, td);
1730 	if (error != 0) {
1731 		printf("BOOTP call failed\n");
1732 	}
1733 
1734 	mountopts(&nd->root_args, NULL);
1735 
1736 	STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
1737 		if (bootpc_ifctx_isresolved(ifctx) != 0)
1738 			bootpc_decode_reply(nd, ifctx, gctx);
1739 
1740 #ifdef BOOTP_NFSROOT
1741 	if (gctx->gotrootpath == 0 && gctx->any_root_overrides == 0)
1742 		panic("bootpc: No root path offered");
1743 #endif
1744 
1745 	STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
1746 		bootpc_adjust_interface(ifctx, gctx, td);
1747 
1748 	soclose(bootp_so);
1749 
1750 	STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
1751 		if (ifctx->gotrootpath != 0)
1752 			break;
1753 	if (ifctx == NULL) {
1754 		STAILQ_FOREACH(ifctx, &gctx->interfaces, next)
1755 			if (bootpc_ifctx_isresolved(ifctx) != 0)
1756 				break;
1757 	}
1758 	if (ifctx == NULL)
1759 		goto out;
1760 
1761 	if (gctx->gotrootpath != 0) {
1762 
1763 		kern_setenv("boot.netif.name", ifctx->ifp->if_xname);
1764 
1765 		bootpc_add_default_route(ifctx);
1766 		error = md_mount(&nd->root_saddr, nd->root_hostnam,
1767 				 nd->root_fh, &nd->root_fhsize,
1768 				 &nd->root_args, td);
1769 		bootpc_remove_default_route(ifctx);
1770 		if (error != 0) {
1771 			if (gctx->any_root_overrides == 0)
1772 				panic("nfs_boot: mount root, error=%d", error);
1773 			else
1774 				goto out;
1775 		}
1776 		rootdevnames[0] = "nfs:";
1777 		nfs_diskless_valid = 3;
1778 	}
1779 
1780 	strcpy(nd->myif.ifra_name, ifctx->ireq.ifr_name);
1781 	bcopy(&ifctx->myaddr, &nd->myif.ifra_addr, sizeof(ifctx->myaddr));
1782 	bcopy(&ifctx->myaddr, &nd->myif.ifra_broadaddr, sizeof(ifctx->myaddr));
1783 	((struct sockaddr_in *) &nd->myif.ifra_broadaddr)->sin_addr.s_addr =
1784 		ifctx->myaddr.sin_addr.s_addr |
1785 		~ ifctx->netmask.sin_addr.s_addr;
1786 	bcopy(&ifctx->netmask, &nd->myif.ifra_mask, sizeof(ifctx->netmask));
1787 	bcopy(&ifctx->gw, &nd->mygateway, sizeof(ifctx->gw));
1788 
1789 out:
1790 	while((ifctx = STAILQ_FIRST(&gctx->interfaces)) != NULL) {
1791 		STAILQ_REMOVE_HEAD(&gctx->interfaces, next);
1792 		free(ifctx, M_TEMP);
1793 	}
1794 	free(gctx, M_TEMP);
1795 }
1796 
1797 /*
1798  * RPC: mountd/mount
1799  * Given a server pathname, get an NFS file handle.
1800  * Also, sets sin->sin_port to the NFS service port.
1801  */
1802 static int
1803 md_mount(struct sockaddr_in *mdsin, char *path, u_char *fhp, int *fhsizep,
1804     struct nfs_args *args, struct thread *td)
1805 {
1806 	struct mbuf *m;
1807 	int error;
1808 	int authunixok;
1809 	int authcount;
1810 	int authver;
1811 
1812 #define	RPCPROG_MNT	100005
1813 #define	RPCMNT_VER1	1
1814 #define RPCMNT_VER3	3
1815 #define	RPCMNT_MOUNT	1
1816 #define	AUTH_SYS	1		/* unix style (uid, gids) */
1817 #define AUTH_UNIX	AUTH_SYS
1818 
1819 	/* XXX honor v2/v3 flags in args->flags? */
1820 #ifdef BOOTP_NFSV3
1821 	/* First try NFS v3 */
1822 	/* Get port number for MOUNTD. */
1823 	error = krpc_portmap(mdsin, RPCPROG_MNT, RPCMNT_VER3,
1824 			     &mdsin->sin_port, td);
1825 	if (error == 0) {
1826 		m = xdr_string_encode(path, strlen(path));
1827 
1828 		/* Do RPC to mountd. */
1829 		error = krpc_call(mdsin, RPCPROG_MNT, RPCMNT_VER3,
1830 				  RPCMNT_MOUNT, &m, NULL, td);
1831 	}
1832 	if (error == 0) {
1833 		args->flags |= NFSMNT_NFSV3;
1834 	} else {
1835 #endif
1836 		/* Fallback to NFS v2 */
1837 
1838 		/* Get port number for MOUNTD. */
1839 		error = krpc_portmap(mdsin, RPCPROG_MNT, RPCMNT_VER1,
1840 				     &mdsin->sin_port, td);
1841 		if (error != 0)
1842 			return error;
1843 
1844 		m = xdr_string_encode(path, strlen(path));
1845 
1846 		/* Do RPC to mountd. */
1847 		error = krpc_call(mdsin, RPCPROG_MNT, RPCMNT_VER1,
1848 				  RPCMNT_MOUNT, &m, NULL, td);
1849 		if (error != 0)
1850 			return error;	/* message already freed */
1851 
1852 #ifdef BOOTP_NFSV3
1853 	}
1854 #endif
1855 
1856 	if (xdr_int_decode(&m, &error) != 0 || error != 0)
1857 		goto bad;
1858 
1859 	if ((args->flags & NFSMNT_NFSV3) != 0) {
1860 		if (xdr_int_decode(&m, fhsizep) != 0 ||
1861 		    *fhsizep > NFSX_V3FHMAX ||
1862 		    *fhsizep <= 0)
1863 			goto bad;
1864 	} else
1865 		*fhsizep = NFSX_V2FH;
1866 
1867 	if (xdr_opaque_decode(&m, fhp, *fhsizep) != 0)
1868 		goto bad;
1869 
1870 	if (args->flags & NFSMNT_NFSV3) {
1871 		if (xdr_int_decode(&m, &authcount) != 0)
1872 			goto bad;
1873 		authunixok = 0;
1874 		if (authcount < 0 || authcount > 100)
1875 			goto bad;
1876 		while (authcount > 0) {
1877 			if (xdr_int_decode(&m, &authver) != 0)
1878 				goto bad;
1879 			if (authver == AUTH_UNIX)
1880 				authunixok = 1;
1881 			authcount--;
1882 		}
1883 		if (authunixok == 0)
1884 			goto bad;
1885 	}
1886 
1887 	/* Set port number for NFS use. */
1888 	error = krpc_portmap(mdsin, NFS_PROG,
1889 			     (args->flags &
1890 			      NFSMNT_NFSV3) ? NFS_VER3 : NFS_VER2,
1891 			     &mdsin->sin_port, td);
1892 
1893 	goto out;
1894 
1895 bad:
1896 	error = EBADRPC;
1897 
1898 out:
1899 	m_freem(m);
1900 	return error;
1901 }
1902 
1903 SYSINIT(bootp_rootconf, SI_SUB_ROOT_CONF, SI_ORDER_FIRST, bootpc_init, NULL);
1904