Rename printf -> kprintf in sys/ and add some defines where necessary
[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.5 2006/12/23 00:27:03 swildner 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 #if 0
76 #include <machine/pcb.h>
77 #include <machine/pcb_ext.h>
78 #include <machine/vm86.h>
79 #endif
80 #include <machine/globaldata.h>
81
82 #if NISA > 0
83 #include <bus/isa/isavar.h>
84
85 device_t isa_bus_device = 0;
86 #endif
87
88 static void     configure_first (void *);
89 static void     configure (void *);
90 static void     configure_final (void *);
91
92 #if defined(FFS) && defined(FFS_ROOT)
93 static void     setroot (void);
94 #endif
95
96 #if defined(NFS) && defined(NFS_ROOT)
97 #if !defined(BOOTP_NFSROOT)
98 static void     pxe_setup_nfsdiskless(void);
99 #endif
100 #endif
101
102 SYSINIT(configure1, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure_first, NULL);
103 /* SI_ORDER_SECOND is hookable */
104 SYSINIT(configure2, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL);
105 /* SI_ORDER_MIDDLE is hookable */
106 SYSINIT(configure3, SI_SUB_CONFIGURE, SI_ORDER_ANY, configure_final, NULL);
107
108 cdev_t  rootdev = NOCDEV;
109 cdev_t  dumpdev = NOCDEV;
110
111 /*
112  * Determine i/o configuration for a machine.
113  */
114 static void
115 configure_first(void *dummy)
116 {
117 }
118
119 static void
120 configure(void *dummy)
121 {
122         /*
123          * Final interrupt support acviation, then enable hardware interrupts.
124          */
125         MachIntrABI.finalize();
126         cpu_enable_intr();
127
128         /*
129          * This will configure all devices, generally starting with the
130          * nexus (i386/i386/nexus.c).  The nexus ISA code explicitly
131          * dummies up the attach in order to delay legacy initialization
132          * until after all other busses/subsystems have had a chance
133          * at those resources.
134          */
135         root_bus_configure();
136
137 #if NISA > 0
138         /*
139          * Explicitly probe and attach ISA last.  The isa bus saves
140          * it's device node at attach time for us here.
141          */
142         if (isa_bus_device)
143                 isa_probe_children(isa_bus_device);
144 #endif
145
146         /*
147          * Allow lowering of the ipl to the lowest kernel level if we
148          * panic (or call tsleep() before clearing `cold').  No level is
149          * completely safe (since a panic may occur in a critical region
150          * at splhigh()), but we want at least bio interrupts to work.
151          */
152         safepri = TDPRI_KERN_USER;
153 }
154
155 static void
156 configure_final(void *dummy)
157 {
158         cninit_finish();
159
160         if (bootverbose)
161                 kprintf("Device configuration finished.\n");
162         cold = 0;
163 }
164
165 #ifdef BOOTP
166 void bootpc_init(void);
167 #endif
168 /*
169  * Do legacy root filesystem discovery.
170  */
171 void
172 cpu_rootconf(void)
173 {
174 #ifdef BOOTP
175         bootpc_init();
176 #endif
177 #if defined(NFS) && defined(NFS_ROOT)
178 #if !defined(BOOTP_NFSROOT)
179         pxe_setup_nfsdiskless();
180         if (nfs_diskless_valid)
181 #endif
182                 rootdevnames[0] = "nfs:";
183 #endif
184 #if defined(FFS) && defined(FFS_ROOT)
185         if (!rootdevnames[0])
186                 setroot();
187 #endif
188 }
189 SYSINIT(cpu_rootconf, SI_SUB_ROOT_CONF, SI_ORDER_FIRST, cpu_rootconf, NULL)
190
191 u_long  bootdev = 0;            /* not a cdev_t - encoding is different */
192
193 #if defined(FFS) && defined(FFS_ROOT)
194
195 /*
196  * The boot code uses old block device major numbers to pass bootdev to
197  * us.  We have to translate these to character device majors because
198  * we don't have block devices any more.
199  */
200 static int
201 boot_translate_majdev(int bmajor)
202 {
203         static int conv[] = { BOOTMAJOR_CONVARY };
204
205         if (bmajor >= 0 && bmajor < sizeof(conv)/sizeof(conv[0]))
206                 return(conv[bmajor]);
207         return(-1);
208 }
209
210 /*
211  * Attempt to find the device from which we were booted.
212  * If we can do so, and not instructed not to do so,
213  * set rootdevs[] and rootdevnames[] to correspond to the
214  * boot device(s).
215  *
216  * This code survives in order to allow the system to be 
217  * booted from legacy environments that do not correctly
218  * populate the kernel environment. There are significant
219  * restrictions on the bootability of the system in this
220  * situation; it can only be mounting root from a 'da'
221  * 'wd' or 'fd' device, and the root filesystem must be ufs.
222  */
223 static void
224 setroot(void)
225 {
226         int majdev, mindev, unit, slice, part;
227         cdev_t newrootdev, dev;
228         char partname[2];
229         char *sname;
230
231         if ((bootdev & B_MAGICMASK) != B_DEVMAGIC) {
232                 kprintf("no B_DEVMAGIC (bootdev=%#lx)\n", bootdev);
233                 return;
234         }
235         majdev = boot_translate_majdev(B_TYPE(bootdev));
236         if (bootverbose) {
237                 kprintf("bootdev: %08lx type=%ld unit=%ld "
238                         "slice=%ld part=%ld major=%d\n",
239                         bootdev, B_TYPE(bootdev), B_UNIT(bootdev),
240                         B_SLICE(bootdev), B_PARTITION(bootdev), majdev);
241         }
242         dev = udev2dev(makeudev(majdev, 0), 0);
243         if (!dev_is_good(dev))
244                 return;
245         unit = B_UNIT(bootdev);
246         slice = B_SLICE(bootdev);
247         if (slice == WHOLE_DISK_SLICE)
248                 slice = COMPATIBILITY_SLICE;
249         if (slice < 0 || slice >= MAX_SLICES) {
250                 kprintf("bad slice\n");
251                 return;
252         }
253
254         part = B_PARTITION(bootdev);
255         mindev = dkmakeminor(unit, slice, part);
256         newrootdev = udev2dev(makeudev(majdev, mindev), 0);
257         if (!dev_is_good(newrootdev))
258                 return;
259         sname = dsname(newrootdev, unit, slice, part, partname);
260         rootdevnames[0] = kmalloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
261         ksprintf(rootdevnames[0], "ufs:%s%s", sname, partname);
262
263         /*
264          * For properly dangerously dedicated disks (ones with a historical
265          * bogus partition table), the boot blocks will give slice = 4, but
266          * the kernel will only provide the compatibility slice since it
267          * knows that slice 4 is not a real slice.  Arrange to try mounting
268          * the compatibility slice as root if mounting the slice passed by
269          * the boot blocks fails.  This handles the dangerously dedicated
270          * case and perhaps others.
271          */
272         if (slice == COMPATIBILITY_SLICE)
273                 return;
274         slice = COMPATIBILITY_SLICE;
275         sname = dsname(newrootdev, unit, slice, part, partname);
276         rootdevnames[1] = kmalloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
277         ksprintf(rootdevnames[1], "ufs:%s%s", sname, partname);
278 }
279 #endif
280
281 #if defined(NFS) && defined(NFS_ROOT)
282 #if !defined(BOOTP_NFSROOT)
283
284 #include <sys/socket.h>
285 #include <net/if.h>
286 #include <net/if_dl.h>
287 #include <net/if_types.h>
288 #include <net/if_var.h>
289 #include <net/ethernet.h>
290 #include <netinet/in.h>
291 #include <vfs/nfs/rpcv2.h>
292 #include <vfs/nfs/nfsproto.h>
293 #include <vfs/nfs/nfs.h>
294 #include <vfs/nfs/nfsdiskless.h>
295
296 extern struct nfs_diskless      nfs_diskless;
297
298 /*
299  * Convert a kenv variable to a sockaddr.  If the kenv variable does not
300  * exist the sockaddr will remain zerod out (callers typically just check
301  * sin_len).  A network address of 0.0.0.0 is equivalent to failure.
302  */
303 static int
304 inaddr_to_sockaddr(char *ev, struct sockaddr_in *sa)
305 {
306         u_int32_t       a[4];
307         char            *cp;
308
309         bzero(sa, sizeof(*sa));
310
311         if ((cp = kgetenv(ev)) == NULL)
312                 return(1);
313         if (ksscanf(cp, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]) != 4)
314                 return(1);
315         if (a[0] == 0 && a[1] == 0 && a[2] == 0 && a[3] == 0)
316                 return(1);
317         /* XXX is this ordering correct? */
318         sa->sin_addr.s_addr = (a[3] << 24) + (a[2] << 16) + (a[1] << 8) + a[0];
319         sa->sin_len = sizeof(*sa);
320         sa->sin_family = AF_INET;
321         return(0);
322 }
323
324 static int
325 hwaddr_to_sockaddr(char *ev, struct sockaddr_dl *sa)
326 {
327         char            *cp;
328         u_int32_t       a[6];
329
330         bzero(sa, sizeof(*sa));
331         sa->sdl_len = sizeof(*sa);
332         sa->sdl_family = AF_LINK;
333         sa->sdl_type = IFT_ETHER;
334         sa->sdl_alen = ETHER_ADDR_LEN;
335         if ((cp = kgetenv(ev)) == NULL)
336                 return(1);
337         if (ksscanf(cp, "%x:%x:%x:%x:%x:%x", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5]) != 6)
338                 return(1);
339         sa->sdl_data[0] = a[0];
340         sa->sdl_data[1] = a[1];
341         sa->sdl_data[2] = a[2];
342         sa->sdl_data[3] = a[3];
343         sa->sdl_data[4] = a[4];
344         sa->sdl_data[5] = a[5];
345         return(0);
346 }
347
348 static int
349 decode_nfshandle(char *ev, u_char *fh) 
350 {
351         u_char  *cp;
352         int     len, val;
353
354         if (((cp = kgetenv(ev)) == NULL) || (strlen(cp) < 2) || (*cp != 'X'))
355                 return(0);
356         len = 0;
357         cp++;
358         for (;;) {
359                 if (*cp == 'X')
360                         return(len);
361                 if ((ksscanf(cp, "%2x", &val) != 1) || (val > 0xff))
362                         return(0);
363                 *(fh++) = val;
364                 len++;
365                 cp += 2;
366                 if (len > NFSX_V2FH)
367                     return(0);
368         }
369 }
370
371 /*
372  * Populate the essential fields in the nfsv3_diskless structure.
373  *
374  * The loader is expected to export the following environment variables:
375  *
376  * boot.netif.ip                IP address on boot interface
377  * boot.netif.netmask           netmask on boot interface
378  * boot.netif.gateway           default gateway (optional)
379  * boot.netif.hwaddr            hardware address of boot interface
380  * boot.nfsroot.server          IP address of root filesystem server
381  * boot.nfsroot.path            path of the root filesystem on server
382  * boot.nfsroot.nfshandle       NFS handle for root filesystem on server
383  */
384 static void
385 pxe_setup_nfsdiskless(void)
386 {
387         struct nfs_diskless     *nd = &nfs_diskless;
388         struct ifnet            *ifp;
389         struct ifaddr           *ifa;
390         struct sockaddr_dl      *sdl, ourdl;
391         struct sockaddr_in      myaddr, netmask;
392         char                    *cp;
393
394         /* set up interface */
395         if (inaddr_to_sockaddr("boot.netif.ip", &myaddr))
396                 return;
397         if (inaddr_to_sockaddr("boot.netif.netmask", &netmask)) {
398                 kprintf("PXE: no netmask\n");
399                 return;
400         }
401         bcopy(&myaddr, &nd->myif.ifra_addr, sizeof(myaddr));
402         bcopy(&myaddr, &nd->myif.ifra_broadaddr, sizeof(myaddr));
403         ((struct sockaddr_in *) &nd->myif.ifra_broadaddr)->sin_addr.s_addr =
404                 myaddr.sin_addr.s_addr | ~ netmask.sin_addr.s_addr;
405         bcopy(&netmask, &nd->myif.ifra_mask, sizeof(netmask));
406
407         if (hwaddr_to_sockaddr("boot.netif.hwaddr", &ourdl)) {
408                 kprintf("PXE: no hardware address\n");
409                 return;
410         }
411         ifa = NULL;
412         ifp = TAILQ_FIRST(&ifnet);
413         TAILQ_FOREACH(ifp, &ifnet, if_link) {
414                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
415                         if ((ifa->ifa_addr->sa_family == AF_LINK) &&
416                             (sdl = ((struct sockaddr_dl *)ifa->ifa_addr))) {
417                                 if ((sdl->sdl_type == ourdl.sdl_type) &&
418                                     (sdl->sdl_alen == ourdl.sdl_alen) &&
419                                     !bcmp(sdl->sdl_data + sdl->sdl_nlen,
420                                           ourdl.sdl_data + ourdl.sdl_nlen, 
421                                           sdl->sdl_alen))
422                                     goto match_done;
423                         }
424                 }
425         }
426         kprintf("PXE: no interface\n");
427         return; /* no matching interface */
428 match_done:
429         strlcpy(nd->myif.ifra_name, ifp->if_xname, sizeof(nd->myif.ifra_name));
430         
431         /* set up gateway */
432         inaddr_to_sockaddr("boot.netif.gateway", &nd->mygateway);
433
434         /* XXX set up swap? */
435
436         /* set up root mount */
437         nd->root_args.rsize = 8192;             /* XXX tunable? */
438         nd->root_args.wsize = 8192;
439         nd->root_args.sotype = SOCK_DGRAM;
440         nd->root_args.flags = (NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT);
441         if (inaddr_to_sockaddr("boot.nfsroot.server", &nd->root_saddr)) {
442                 kprintf("PXE: no server\n");
443                 return;
444         }
445         nd->root_saddr.sin_port = htons(NFS_PORT);
446
447         /*
448          * A tftp-only loader may pass NFS path information without a 
449          * root handle.  Generate a warning but continue configuring.
450          */
451         if (decode_nfshandle("boot.nfsroot.nfshandle", &nd->root_fh[0]) == 0) {
452                 kprintf("PXE: Warning, no NFS handle passed from loader\n");
453         }
454         if ((cp = kgetenv("boot.nfsroot.path")) != NULL)
455                 strncpy(nd->root_hostnam, cp, MNAMELEN - 1);
456
457         nfs_diskless_valid = 1;
458 }
459
460 #endif
461 #endif