9647c1a309a174615e6e1d66a3e8eb2c03c6d5cc
[dragonfly.git] / sys / platform / vkernel / i386 / autoconf.c
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * William Jolitz.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      from: @(#)autoconf.c    7.1 (Berkeley) 5/9/91
37  * $FreeBSD: src/sys/i386/i386/autoconf.c,v 1.146.2.2 2001/06/07 06:05:58 dd Exp $
38  * $DragonFly: src/sys/platform/vkernel/i386/autoconf.c,v 1.1 2006/11/07 18:50:07 dillon Exp $
39  */
40
41 /*
42  * Setup the system to run on the current machine.
43  *
44  * Configure() is called at boot time and initializes the vba
45  * device tables and the memory controller monitoring.  Available
46  * devices are determined (from possibilities mentioned in ioconf.c),
47  * and the drivers are initialized.
48  */
49 #include "opt_bootp.h"
50 #include "opt_ffs.h"
51 #include "opt_cd9660.h"
52 #include "opt_nfs.h"
53 #include "opt_nfsroot.h"
54 #include "opt_bus.h"
55 #include "opt_rootdevname.h"
56
57 #include "use_isa.h"
58
59 #include <sys/param.h>
60 #include <sys/systm.h>
61 #include <sys/bootmaj.h>
62 #include <sys/bus.h>
63 #include <sys/conf.h>
64 #include <sys/disklabel.h>
65 #include <sys/diskslice.h>
66 #include <sys/reboot.h>
67 #include <sys/kernel.h>
68 #include <sys/malloc.h>
69 #include <sys/mount.h>
70 #include <sys/cons.h>
71 #include <sys/thread.h>
72 #include <sys/device.h>
73 #include <sys/machintr.h>
74
75 #include <machine/pcb.h>
76 #include <machine/pcb_ext.h>
77 #include <machine/vm86.h>
78 #include <machine/globaldata.h>
79
80 #if NISA > 0
81 #include <bus/isa/isavar.h>
82
83 device_t isa_bus_device = 0;
84 #endif
85
86 static void     configure_first (void *);
87 static void     configure (void *);
88 static void     configure_final (void *);
89
90 #if defined(FFS) && defined(FFS_ROOT)
91 static void     setroot (void);
92 #endif
93
94 #if defined(NFS) && defined(NFS_ROOT)
95 #if !defined(BOOTP_NFSROOT)
96 static void     pxe_setup_nfsdiskless(void);
97 #endif
98 #endif
99
100 SYSINIT(configure1, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure_first, NULL);
101 /* SI_ORDER_SECOND is hookable */
102 SYSINIT(configure2, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL);
103 /* SI_ORDER_MIDDLE is hookable */
104 SYSINIT(configure3, SI_SUB_CONFIGURE, SI_ORDER_ANY, configure_final, NULL);
105
106 cdev_t  rootdev = NOCDEV;
107 cdev_t  dumpdev = NOCDEV;
108
109 /*
110  * Determine i/o configuration for a machine.
111  */
112 static void
113 configure_first(void *dummy)
114 {
115 }
116
117 static void
118 configure(void *dummy)
119 {
120         /*
121          * Final interrupt support acviation, then enable hardware interrupts.
122          */
123         MachIntrABI.finalize();
124         cpu_enable_intr();
125
126         /*
127          * This will configure all devices, generally starting with the
128          * nexus (i386/i386/nexus.c).  The nexus ISA code explicitly
129          * dummies up the attach in order to delay legacy initialization
130          * until after all other busses/subsystems have had a chance
131          * at those resources.
132          */
133         root_bus_configure();
134
135 #if NISA > 0
136         /*
137          * Explicitly probe and attach ISA last.  The isa bus saves
138          * it's device node at attach time for us here.
139          */
140         if (isa_bus_device)
141                 isa_probe_children(isa_bus_device);
142 #endif
143
144         /*
145          * Allow lowering of the ipl to the lowest kernel level if we
146          * panic (or call tsleep() before clearing `cold').  No level is
147          * completely safe (since a panic may occur in a critical region
148          * at splhigh()), but we want at least bio interrupts to work.
149          */
150         safepri = TDPRI_KERN_USER;
151 }
152
153 static void
154 configure_final(void *dummy)
155 {
156         int i;
157
158         cninit_finish();
159
160         if (bootverbose) {
161 #ifdef APIC_IO
162                 imen_dump();
163 #endif /* APIC_IO */
164
165                 /*
166                  * Print out the BIOS's idea of the disk geometries.
167                  */
168                 printf("BIOS Geometries:\n");
169                 for (i = 0; i < N_BIOS_GEOM; i++) {
170                         unsigned long bios_geom;
171                         int max_cylinder, max_head, max_sector;
172
173                         bios_geom = bootinfo.bi_bios_geom[i];
174
175                         /*
176                          * XXX the bootstrap punts a 1200K floppy geometry
177                          * when the get-disk-geometry interrupt fails.  Skip
178                          * drives that have this geometry.
179                          */
180                         if (bios_geom == 0x4f010f)
181                                 continue;
182
183                         printf(" %x:%08lx ", i, bios_geom);
184                         max_cylinder = bios_geom >> 16;
185                         max_head = (bios_geom >> 8) & 0xff;
186                         max_sector = bios_geom & 0xff;
187                         printf(
188                 "0..%d=%d cylinders, 0..%d=%d heads, 1..%d=%d sectors\n",
189                                max_cylinder, max_cylinder + 1,
190                                max_head, max_head + 1,
191                                max_sector, max_sector);
192                 }
193                 printf(" %d accounted for\n", bootinfo.bi_n_bios_used);
194
195                 printf("Device configuration finished.\n");
196         }
197         cold = 0;
198 }
199
200 #ifdef BOOTP
201 void bootpc_init(void);
202 #endif
203 /*
204  * Do legacy root filesystem discovery.
205  */
206 void
207 cpu_rootconf(void)
208 {
209 #ifdef BOOTP
210         bootpc_init();
211 #endif
212 #if defined(NFS) && defined(NFS_ROOT)
213 #if !defined(BOOTP_NFSROOT)
214         pxe_setup_nfsdiskless();
215         if (nfs_diskless_valid)
216 #endif
217                 rootdevnames[0] = "nfs:";
218 #endif
219 #if defined(FFS) && defined(FFS_ROOT)
220         if (!rootdevnames[0])
221                 setroot();
222 #endif
223 }
224 SYSINIT(cpu_rootconf, SI_SUB_ROOT_CONF, SI_ORDER_FIRST, cpu_rootconf, NULL)
225
226 u_long  bootdev = 0;            /* not a cdev_t - encoding is different */
227
228 #if defined(FFS) && defined(FFS_ROOT)
229 #define FDMAJOR         2
230 #define FDUNITSHIFT     6
231
232 /*
233  * The boot code uses old block device major numbers to pass bootdev to
234  * us.  We have to translate these to character device majors because
235  * we don't have block devices any more.
236  */
237 static int
238 boot_translate_majdev(int bmajor)
239 {
240         static int conv[] = { BOOTMAJOR_CONVARY };
241
242         if (bmajor >= 0 && bmajor < sizeof(conv)/sizeof(conv[0]))
243                 return(conv[bmajor]);
244         return(-1);
245 }
246
247 /*
248  * Attempt to find the device from which we were booted.
249  * If we can do so, and not instructed not to do so,
250  * set rootdevs[] and rootdevnames[] to correspond to the
251  * boot device(s).
252  *
253  * This code survives in order to allow the system to be 
254  * booted from legacy environments that do not correctly
255  * populate the kernel environment. There are significant
256  * restrictions on the bootability of the system in this
257  * situation; it can only be mounting root from a 'da'
258  * 'wd' or 'fd' device, and the root filesystem must be ufs.
259  */
260 static void
261 setroot(void)
262 {
263         int majdev, mindev, unit, slice, part;
264         cdev_t newrootdev, dev;
265         char partname[2];
266         char *sname;
267
268         if ((bootdev & B_MAGICMASK) != B_DEVMAGIC) {
269                 printf("no B_DEVMAGIC (bootdev=%#lx)\n", bootdev);
270                 return;
271         }
272         majdev = boot_translate_majdev(B_TYPE(bootdev));
273         if (bootverbose) {
274                 printf("bootdev: %08lx type=%ld unit=%ld "
275                         "slice=%ld part=%ld major=%d\n",
276                         bootdev, B_TYPE(bootdev), B_UNIT(bootdev),
277                         B_SLICE(bootdev), B_PARTITION(bootdev), majdev);
278         }
279         dev = udev2dev(makeudev(majdev, 0), 0);
280         if (!dev_is_good(dev))
281                 return;
282         unit = B_UNIT(bootdev);
283         slice = B_SLICE(bootdev);
284         if (slice == WHOLE_DISK_SLICE)
285                 slice = COMPATIBILITY_SLICE;
286         if (slice < 0 || slice >= MAX_SLICES) {
287                 printf("bad slice\n");
288                 return;
289         }
290
291         /*
292          * XXX kludge for inconsistent unit numbering and lack of slice
293          * support for floppies.
294          */
295         if (majdev == FD_CDEV_MAJOR) {
296                 slice = COMPATIBILITY_SLICE;
297                 part = RAW_PART;
298                 mindev = unit << FDUNITSHIFT;
299         } else {
300                 part = B_PARTITION(bootdev);
301                 mindev = dkmakeminor(unit, slice, part);
302         }
303         newrootdev = udev2dev(makeudev(majdev, mindev), 0);
304         if (!dev_is_good(newrootdev))
305                 return;
306         sname = dsname(newrootdev, unit, slice, part, partname);
307         rootdevnames[0] = kmalloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
308         sprintf(rootdevnames[0], "ufs:%s%s", sname, partname);
309
310         /*
311          * For properly dangerously dedicated disks (ones with a historical
312          * bogus partition table), the boot blocks will give slice = 4, but
313          * the kernel will only provide the compatibility slice since it
314          * knows that slice 4 is not a real slice.  Arrange to try mounting
315          * the compatibility slice as root if mounting the slice passed by
316          * the boot blocks fails.  This handles the dangerously dedicated
317          * case and perhaps others.
318          */
319         if (slice == COMPATIBILITY_SLICE)
320                 return;
321         slice = COMPATIBILITY_SLICE;
322         sname = dsname(newrootdev, unit, slice, part, partname);
323         rootdevnames[1] = kmalloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
324         sprintf(rootdevnames[1], "ufs:%s%s", sname, partname);
325 }
326 #endif
327
328 #if defined(NFS) && defined(NFS_ROOT)
329 #if !defined(BOOTP_NFSROOT)
330
331 #include <sys/socket.h>
332 #include <net/if.h>
333 #include <net/if_dl.h>
334 #include <net/if_types.h>
335 #include <net/if_var.h>
336 #include <net/ethernet.h>
337 #include <netinet/in.h>
338 #include <vfs/nfs/rpcv2.h>
339 #include <vfs/nfs/nfsproto.h>
340 #include <vfs/nfs/nfs.h>
341 #include <vfs/nfs/nfsdiskless.h>
342
343 extern struct nfs_diskless      nfs_diskless;
344
345 /*
346  * Convert a kenv variable to a sockaddr.  If the kenv variable does not
347  * exist the sockaddr will remain zerod out (callers typically just check
348  * sin_len).  A network address of 0.0.0.0 is equivalent to failure.
349  */
350 static int
351 inaddr_to_sockaddr(char *ev, struct sockaddr_in *sa)
352 {
353         u_int32_t       a[4];
354         char            *cp;
355
356         bzero(sa, sizeof(*sa));
357
358         if ((cp = kgetenv(ev)) == NULL)
359                 return(1);
360         if (sscanf(cp, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]) != 4)
361                 return(1);
362         if (a[0] == 0 && a[1] == 0 && a[2] == 0 && a[3] == 0)
363                 return(1);
364         /* XXX is this ordering correct? */
365         sa->sin_addr.s_addr = (a[3] << 24) + (a[2] << 16) + (a[1] << 8) + a[0];
366         sa->sin_len = sizeof(*sa);
367         sa->sin_family = AF_INET;
368         return(0);
369 }
370
371 static int
372 hwaddr_to_sockaddr(char *ev, struct sockaddr_dl *sa)
373 {
374         char            *cp;
375         u_int32_t       a[6];
376
377         bzero(sa, sizeof(*sa));
378         sa->sdl_len = sizeof(*sa);
379         sa->sdl_family = AF_LINK;
380         sa->sdl_type = IFT_ETHER;
381         sa->sdl_alen = ETHER_ADDR_LEN;
382         if ((cp = kgetenv(ev)) == NULL)
383                 return(1);
384         if (sscanf(cp, "%x:%x:%x:%x:%x:%x", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5]) != 6)
385                 return(1);
386         sa->sdl_data[0] = a[0];
387         sa->sdl_data[1] = a[1];
388         sa->sdl_data[2] = a[2];
389         sa->sdl_data[3] = a[3];
390         sa->sdl_data[4] = a[4];
391         sa->sdl_data[5] = a[5];
392         return(0);
393 }
394
395 static int
396 decode_nfshandle(char *ev, u_char *fh) 
397 {
398         u_char  *cp;
399         int     len, val;
400
401         if (((cp = kgetenv(ev)) == NULL) || (strlen(cp) < 2) || (*cp != 'X'))
402                 return(0);
403         len = 0;
404         cp++;
405         for (;;) {
406                 if (*cp == 'X')
407                         return(len);
408                 if ((sscanf(cp, "%2x", &val) != 1) || (val > 0xff))
409                         return(0);
410                 *(fh++) = val;
411                 len++;
412                 cp += 2;
413                 if (len > NFSX_V2FH)
414                     return(0);
415         }
416 }
417
418 /*
419  * Populate the essential fields in the nfsv3_diskless structure.
420  *
421  * The loader is expected to export the following environment variables:
422  *
423  * boot.netif.ip                IP address on boot interface
424  * boot.netif.netmask           netmask on boot interface
425  * boot.netif.gateway           default gateway (optional)
426  * boot.netif.hwaddr            hardware address of boot interface
427  * boot.nfsroot.server          IP address of root filesystem server
428  * boot.nfsroot.path            path of the root filesystem on server
429  * boot.nfsroot.nfshandle       NFS handle for root filesystem on server
430  */
431 static void
432 pxe_setup_nfsdiskless(void)
433 {
434         struct nfs_diskless     *nd = &nfs_diskless;
435         struct ifnet            *ifp;
436         struct ifaddr           *ifa;
437         struct sockaddr_dl      *sdl, ourdl;
438         struct sockaddr_in      myaddr, netmask;
439         char                    *cp;
440
441         /* set up interface */
442         if (inaddr_to_sockaddr("boot.netif.ip", &myaddr))
443                 return;
444         if (inaddr_to_sockaddr("boot.netif.netmask", &netmask)) {
445                 printf("PXE: no netmask\n");
446                 return;
447         }
448         bcopy(&myaddr, &nd->myif.ifra_addr, sizeof(myaddr));
449         bcopy(&myaddr, &nd->myif.ifra_broadaddr, sizeof(myaddr));
450         ((struct sockaddr_in *) &nd->myif.ifra_broadaddr)->sin_addr.s_addr =
451                 myaddr.sin_addr.s_addr | ~ netmask.sin_addr.s_addr;
452         bcopy(&netmask, &nd->myif.ifra_mask, sizeof(netmask));
453
454         if (hwaddr_to_sockaddr("boot.netif.hwaddr", &ourdl)) {
455                 printf("PXE: no hardware address\n");
456                 return;
457         }
458         ifa = NULL;
459         ifp = TAILQ_FIRST(&ifnet);
460         TAILQ_FOREACH(ifp, &ifnet, if_link) {
461                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
462                         if ((ifa->ifa_addr->sa_family == AF_LINK) &&
463                             (sdl = ((struct sockaddr_dl *)ifa->ifa_addr))) {
464                                 if ((sdl->sdl_type == ourdl.sdl_type) &&
465                                     (sdl->sdl_alen == ourdl.sdl_alen) &&
466                                     !bcmp(sdl->sdl_data + sdl->sdl_nlen,
467                                           ourdl.sdl_data + ourdl.sdl_nlen, 
468                                           sdl->sdl_alen))
469                                     goto match_done;
470                         }
471                 }
472         }
473         printf("PXE: no interface\n");
474         return; /* no matching interface */
475 match_done:
476         strlcpy(nd->myif.ifra_name, ifp->if_xname, sizeof(nd->myif.ifra_name));
477         
478         /* set up gateway */
479         inaddr_to_sockaddr("boot.netif.gateway", &nd->mygateway);
480
481         /* XXX set up swap? */
482
483         /* set up root mount */
484         nd->root_args.rsize = 8192;             /* XXX tunable? */
485         nd->root_args.wsize = 8192;
486         nd->root_args.sotype = SOCK_DGRAM;
487         nd->root_args.flags = (NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT);
488         if (inaddr_to_sockaddr("boot.nfsroot.server", &nd->root_saddr)) {
489                 printf("PXE: no server\n");
490                 return;
491         }
492         nd->root_saddr.sin_port = htons(NFS_PORT);
493
494         /*
495          * A tftp-only loader may pass NFS path information without a 
496          * root handle.  Generate a warning but continue configuring.
497          */
498         if (decode_nfshandle("boot.nfsroot.nfshandle", &nd->root_fh[0]) == 0) {
499                 printf("PXE: Warning, no NFS handle passed from loader\n");
500         }
501         if ((cp = kgetenv("boot.nfsroot.path")) != NULL)
502                 strncpy(nd->root_hostnam, cp, MNAMELEN - 1);
503
504         nfs_diskless_valid = 1;
505 }
506
507 #endif
508 #endif