xref: /dragonfly/sys/platform/pc64/x86_64/autoconf.c (revision 1fe7e945)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * Copyright (c) 2008 The DragonFly Project.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * William Jolitz.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	from: @(#)autoconf.c	7.1 (Berkeley) 5/9/91
34  * $FreeBSD: src/sys/i386/i386/autoconf.c,v 1.146.2.2 2001/06/07 06:05:58 dd Exp $
35  */
36 
37 /*
38  * Setup the system to run on the current machine.
39  *
40  * Configure() is called at boot time and initializes the vba
41  * device tables and the memory controller monitoring.  Available
42  * devices are determined (from possibilities mentioned in ioconf.c),
43  * and the drivers are initialized.
44  */
45 #include "opt_bootp.h"
46 #include "opt_cd9660.h"
47 #include "opt_nfs.h"
48 #include "opt_nfsroot.h"
49 #include "opt_rootdevname.h"
50 
51 #include "use_isa.h"
52 
53 #include <sys/param.h>
54 #include <sys/systm.h>
55 #include <sys/bootmaj.h>
56 #include <sys/bus.h>
57 #include <sys/conf.h>
58 #include <sys/diskslice.h>
59 #include <sys/reboot.h>
60 #include <sys/kernel.h>
61 #include <sys/malloc.h>
62 #include <sys/mount.h>
63 #include <sys/cons.h>
64 #include <sys/thread.h>
65 #include <sys/device.h>
66 #include <sys/machintr.h>
67 
68 #include <machine/bootinfo.h>
69 #include <machine/md_var.h>
70 #include <machine/smp.h>
71 #include <machine_base/icu/icu.h>
72 
73 #include <machine/pcb.h>
74 #include <machine/pcb_ext.h>
75 #include <machine/globaldata.h>
76 
77 #if NISA > 0
78 #include <bus/isa/isavar.h>
79 
80 device_t isa_bus_device = NULL;
81 #endif
82 
83 static void	configure_first (void *);
84 static void	configure (void *);
85 static void	configure_final (void *);
86 
87 #if defined(NFS) && defined(NFS_ROOT)
88 #if !defined(BOOTP_NFSROOT)
89 static void	pxe_setup_nfsdiskless(void);
90 #endif
91 #endif
92 
93 SYSINIT(configure1, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure_first, NULL);
94 /* SI_ORDER_SECOND is hookable */
95 SYSINIT(configure2, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL);
96 /* SI_ORDER_MIDDLE is hookable */
97 SYSINIT(configure3, SI_SUB_CONFIGURE, SI_ORDER_ANY, configure_final, NULL);
98 
99 cdev_t	rootdev = NULL;
100 cdev_t	dumpdev = NULL;
101 
102 /*
103  * nfsroot.iosize may be set in loader.conf, 32768 is recommended to
104  * be able to max-out a GigE link if the server supports it.  Many servers
105  * do not so the default is 8192.
106  *
107  * nfsroot.rahead defaults to something reasonable, can be overridden.
108  */
109 static int nfsroot_iosize = 8192;
110 TUNABLE_INT("nfsroot.iosize", &nfsroot_iosize);
111 static int nfsroot_rahead = 4;
112 TUNABLE_INT("nfsroot.rahead", &nfsroot_rahead);
113 
114 /*
115  * Determine i/o configuration for a machine.
116  */
117 static void
118 configure_first(void *dummy)
119 {
120 }
121 
122 static void
123 configure(void *dummy)
124 {
125 	/*
126 	 * This will configure all devices, generally starting with the
127 	 * nexus (i386/i386/nexus.c).  The nexus ISA code explicitly
128 	 * dummies up the attach in order to delay legacy initialization
129 	 * until after all other busses/subsystems have had a chance
130 	 * at those resources.
131 	 */
132 	root_bus_configure();
133 
134 #if NISA > 0
135 	/*
136 	 * Explicitly probe and attach ISA last.  The isa bus saves
137 	 * it's device node at attach time for us here.
138 	 */
139 	if (isa_bus_device)
140 		isa_probe_children(isa_bus_device);
141 #endif
142 
143 	/*
144 	 * Allow lowering of the ipl to the lowest kernel level if we
145 	 * panic (or call tsleep() before clearing `cold').  No level is
146 	 * completely safe (since a panic may occur in a critical region
147 	 * at splhigh()), but we want at least bio interrupts to work.
148 	 */
149 	safepri = TDPRI_KERN_USER;
150 }
151 
152 static void
153 configure_final(void *dummy)
154 {
155 	cninit_finish();
156 
157 	if (bootverbose) {
158 #if 0 /* JG */
159 		/*
160 		 * Print out the BIOS's idea of the disk geometries.
161 		 */
162 		int i;
163 		kprintf("BIOS Geometries:\n");
164 		for (i = 0; i < N_BIOS_GEOM; i++) {
165 			unsigned long bios_geom;
166 			int max_cylinder, max_head, max_sector;
167 
168 			bios_geom = bootinfo.bi_bios_geom[i];
169 
170 			/*
171 			 * XXX the bootstrap punts a 1200K floppy geometry
172 			 * when the get-disk-geometry interrupt fails.  Skip
173 			 * drives that have this geometry.
174 			 */
175 			if (bios_geom == 0x4f010f)
176 				continue;
177 
178 			kprintf(" %x:%08lx ", i, bios_geom);
179 			max_cylinder = bios_geom >> 16;
180 			max_head = (bios_geom >> 8) & 0xff;
181 			max_sector = bios_geom & 0xff;
182 			kprintf(
183 		"0..%d=%d cylinders, 0..%d=%d heads, 1..%d=%d sectors\n",
184 			       max_cylinder, max_cylinder + 1,
185 			       max_head, max_head + 1,
186 			       max_sector, max_sector);
187 		}
188 		kprintf(" %d accounted for\n", bootinfo.bi_n_bios_used);
189 
190 		kprintf("Device configuration finished.\n");
191 #endif
192 	}
193 }
194 
195 #ifdef BOOTP
196 void bootpc_init(void);
197 #endif
198 /*
199  * Do legacy root filesystem discovery.
200  */
201 void
202 cpu_rootconf(void)
203 {
204 #ifdef BOOTP
205         bootpc_init();
206 #endif
207 #if defined(NFS) && defined(NFS_ROOT)
208 #if !defined(BOOTP_NFSROOT)
209 	pxe_setup_nfsdiskless();
210 	if (nfs_diskless_valid)
211 #endif
212 		rootdevnames[0] = "nfs:";
213 #endif
214 }
215 SYSINIT(cpu_rootconf, SI_SUB_ROOT_CONF, SI_ORDER_FIRST, cpu_rootconf, NULL);
216 
217 #if defined(NFS) && defined(NFS_ROOT)
218 #if !defined(BOOTP_NFSROOT)
219 
220 #include <sys/socket.h>
221 #include <net/if.h>
222 #include <net/if_dl.h>
223 #include <net/if_types.h>
224 #include <net/if_var.h>
225 #include <net/ethernet.h>
226 #include <netinet/in.h>
227 #include <vfs/nfs/rpcv2.h>
228 #include <vfs/nfs/nfsproto.h>
229 #include <vfs/nfs/nfs.h>
230 #include <vfs/nfs/nfsdiskless.h>
231 
232 extern struct nfs_diskless	nfs_diskless;
233 
234 /*
235  * Convert a kenv variable to a sockaddr.  If the kenv variable does not
236  * exist the sockaddr will remain zerod out (callers typically just check
237  * sin_len).  A network address of 0.0.0.0 is equivalent to failure.
238  */
239 static int
240 inaddr_to_sockaddr(char *ev, struct sockaddr_in *sa)
241 {
242 	u_int32_t	a[4];
243 	char		*cp;
244 
245 	bzero(sa, sizeof(*sa));
246 
247 	if ((cp = kgetenv(ev)) == NULL)
248 		return(1);
249 	if (ksscanf(cp, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]) != 4)
250 		return(1);
251 	if (a[0] == 0 && a[1] == 0 && a[2] == 0 && a[3] == 0)
252 		return(1);
253 	/* XXX is this ordering correct? */
254 	sa->sin_addr.s_addr = (a[3] << 24) + (a[2] << 16) + (a[1] << 8) + a[0];
255 	sa->sin_len = sizeof(*sa);
256 	sa->sin_family = AF_INET;
257 	return(0);
258 }
259 
260 static int
261 hwaddr_to_sockaddr(char *ev, struct sockaddr_dl *sa)
262 {
263 	char		*cp;
264 	u_int32_t	a[6];
265 
266 	bzero(sa, sizeof(*sa));
267 	sa->sdl_len = sizeof(*sa);
268 	sa->sdl_family = AF_LINK;
269 	sa->sdl_type = IFT_ETHER;
270 	sa->sdl_alen = ETHER_ADDR_LEN;
271 	if ((cp = kgetenv(ev)) == NULL)
272 		return(1);
273 	if (ksscanf(cp, "%x:%x:%x:%x:%x:%x", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5]) != 6)
274 		return(1);
275 	sa->sdl_data[0] = a[0];
276 	sa->sdl_data[1] = a[1];
277 	sa->sdl_data[2] = a[2];
278 	sa->sdl_data[3] = a[3];
279 	sa->sdl_data[4] = a[4];
280 	sa->sdl_data[5] = a[5];
281 	return(0);
282 }
283 
284 static int
285 decode_nfshandle(char *ev, u_char *fh)
286 {
287 	u_char	*cp;
288 	int	len, val;
289 
290 	if (((cp = kgetenv(ev)) == NULL) || (strlen(cp) < 2) || (*cp != 'X'))
291 		return(0);
292 	len = 0;
293 	cp++;
294 	for (;;) {
295 		if (*cp == 'X')
296 			return(len);
297 		if ((ksscanf(cp, "%2x", &val) != 1) || (val > 0xff))
298 			return(0);
299 		*(fh++) = val;
300 		len++;
301 		cp += 2;
302 		if (len > NFSX_V2FH)
303 		    return(0);
304 	}
305 }
306 
307 /*
308  * Populate the essential fields in the nfsv3_diskless structure.
309  *
310  * The loader is expected to export the following environment variables:
311  *
312  * boot.netif.ip		IP address on boot interface
313  * boot.netif.netmask		netmask on boot interface
314  * boot.netif.gateway		default gateway (optional)
315  * boot.netif.hwaddr		hardware address of boot interface
316  * boot.nfsroot.server		IP address of root filesystem server
317  * boot.nfsroot.path		path of the root filesystem on server
318  * boot.nfsroot.nfshandle	NFS handle for root filesystem on server
319  */
320 static void
321 pxe_setup_nfsdiskless(void)
322 {
323 	struct nfs_diskless	*nd = &nfs_diskless;
324 	struct ifnet		*ifp;
325 	struct sockaddr_dl	*sdl, ourdl;
326 	struct sockaddr_in	myaddr, netmask;
327 	char			*cp;
328 
329 	/* set up interface */
330 	if (inaddr_to_sockaddr("boot.netif.ip", &myaddr))
331 		return;
332 	if (inaddr_to_sockaddr("boot.netif.netmask", &netmask)) {
333 		kprintf("PXE: no netmask\n");
334 		return;
335 	}
336 	bcopy(&myaddr, &nd->myif.ifra_addr, sizeof(myaddr));
337 	bcopy(&myaddr, &nd->myif.ifra_broadaddr, sizeof(myaddr));
338 	((struct sockaddr_in *) &nd->myif.ifra_broadaddr)->sin_addr.s_addr =
339 		myaddr.sin_addr.s_addr | ~ netmask.sin_addr.s_addr;
340 	bcopy(&netmask, &nd->myif.ifra_mask, sizeof(netmask));
341 
342 	if (hwaddr_to_sockaddr("boot.netif.hwaddr", &ourdl)) {
343 		kprintf("PXE: no hardware address\n");
344 		return;
345 	}
346 	ifnet_lock();
347 	TAILQ_FOREACH(ifp, &ifnetlist, if_link) {
348 		struct ifaddr_container *ifac;
349 
350 		TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
351 			struct ifaddr *ifa = ifac->ifa;
352 
353 			if ((ifa->ifa_addr->sa_family == AF_LINK) &&
354 			    (sdl = ((struct sockaddr_dl *)ifa->ifa_addr))) {
355 				if ((sdl->sdl_type == ourdl.sdl_type) &&
356 				    (sdl->sdl_alen == ourdl.sdl_alen) &&
357 				    !bcmp(sdl->sdl_data + sdl->sdl_nlen,
358 					  ourdl.sdl_data + ourdl.sdl_nlen,
359 					  sdl->sdl_alen)) {
360 					strlcpy(nd->myif.ifra_name,
361 					    ifp->if_xname,
362 					    sizeof(nd->myif.ifra_name));
363 					ifnet_unlock();
364 					goto match_done;
365 				}
366 			}
367 		}
368 	}
369 	ifnet_unlock();
370 	kprintf("PXE: no interface\n");
371 	return;	/* no matching interface */
372 match_done:
373 	/* set up gateway */
374 	inaddr_to_sockaddr("boot.netif.gateway", &nd->mygateway);
375 
376 	/* XXX set up swap? */
377 
378 	/* set up root mount */
379 	nd->root_args.rsize = nfsroot_iosize;
380 	nd->root_args.wsize = nfsroot_iosize;
381 	nd->root_args.sotype = SOCK_STREAM;
382 	nd->root_args.readahead = nfsroot_rahead;
383 	nd->root_args.flags = NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT |
384 			      NFSMNT_READAHEAD;
385 	if (inaddr_to_sockaddr("boot.nfsroot.server", &nd->root_saddr)) {
386 		kprintf("PXE: no server\n");
387 		return;
388 	}
389 	nd->root_saddr.sin_port = htons(NFS_PORT);
390 
391 	/*
392 	 * A tftp-only loader may pass NFS path information without a
393 	 * root handle.  Generate a warning but continue configuring.
394 	 */
395 	if (decode_nfshandle("boot.nfsroot.nfshandle", &nd->root_fh[0]) == 0) {
396 		kprintf("PXE: Warning, no NFS handle passed from loader\n");
397 	}
398 	if ((cp = kgetenv("boot.nfsroot.path")) != NULL)
399 		strncpy(nd->root_hostnam, cp, MNAMELEN - 1);
400 
401 	nfs_diskless_valid = 1;
402 }
403 
404 #endif
405 #endif
406