]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/i386/i386/autoconf.c
Major update to the way synchronization is done in the kernel. Highlights
[FreeBSD/FreeBSD.git] / sys / i386 / 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$
38  */
39
40 /*
41  * Setup the system to run on the current machine.
42  *
43  * Configure() is called at boot time and initializes the vba
44  * device tables and the memory controller monitoring.  Available
45  * devices are determined (from possibilities mentioned in ioconf.c),
46  * and the drivers are initialized.
47  */
48 #include "opt_bootp.h"
49 #include "opt_ffs.h"
50 #include "opt_cd9660.h"
51 #include "opt_nfs.h"
52 #include "opt_nfsroot.h"
53 #include "opt_bus.h"
54 #include "opt_rootdevname.h"
55
56 #include "isa.h"
57
58 #include <sys/param.h>
59 #include <sys/systm.h>
60 #include <sys/bus.h>
61 #include <sys/conf.h>
62 #include <sys/disklabel.h>
63 #include <sys/diskslice.h>
64 #include <sys/reboot.h>
65 #include <sys/kernel.h>
66 #include <sys/malloc.h>
67 #include <sys/mount.h>
68 #include <sys/cons.h>
69
70 #include <machine/bootinfo.h>
71 #include <machine/ipl.h>
72 #include <machine/md_var.h>
73 #ifdef APIC_IO
74 #include <machine/smp.h>
75 #else
76 #include <i386/isa/icu.h>
77 #endif /* APIC_IO */
78
79 #if NISA > 0
80 #include <isa/isavar.h>
81
82 device_t isa_bus_device = 0;
83 #endif
84
85 static void     configure_first __P((void *));
86 static void     configure __P((void *));
87 static void     configure_final __P((void *));
88
89 #if defined(FFS) && defined(FFS_ROOT)
90 static void     setroot __P((void));
91 #endif
92
93 #if defined(NFS) && defined(NFS_ROOT)
94 static void     pxe_setup_nfsdiskless(void);
95 #endif
96
97 SYSINIT(configure1, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure_first, NULL);
98 /* SI_ORDER_SECOND is hookable */
99 SYSINIT(configure2, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL);
100 /* SI_ORDER_MIDDLE is hookable */
101 SYSINIT(configure3, SI_SUB_CONFIGURE, SI_ORDER_ANY, configure_final, NULL);
102
103 dev_t   rootdev = NODEV;
104 dev_t   dumpdev = NODEV;
105
106 device_t nexus_dev;
107
108 /*
109  * Determine i/o configuration for a machine.
110  */
111 static void
112 configure_first(dummy)
113         void *dummy;
114 {
115 }
116
117 static void
118 configure(dummy)
119         void *dummy;
120 {
121
122         /*
123          * Activate the ICU's.  Note that we are explicitly at splhigh()
124          * at present as we have no way to disable stray PCI level triggered
125          * interrupts until the devices have had a driver attached.  This
126          * is particularly a problem when the interrupts are shared.  For
127          * example, if IRQ 10 is shared between a disk and network device
128          * and the disk device generates an interrupt, if we "activate"
129          * IRQ 10 when the network driver is set up, then we will get
130          * recursive interrupt 10's as nothing will know how to turn off
131          * the disk device's interrupt.
132          *
133          * Having the ICU's active means we can probe interrupt routing to
134          * see if a device causes the corresponding pending bit to be set.
135          *
136          * This is all rather inconvenient.
137          */
138 #ifdef APIC_IO
139         bsp_apic_configure();
140         enable_intr();
141 #else
142         enable_intr();
143         INTREN(IRQ_SLAVE);
144 #endif /* APIC_IO */
145
146         /* nexus0 is the top of the i386 device tree */
147         device_add_child(root_bus, "nexus", 0);
148
149         /* initialize new bus architecture */
150         root_bus_configure();
151
152 #if NISA > 0
153         /*
154          * Explicitly probe and attach ISA last.  The isa bus saves
155          * it's device node at attach time for us here.
156          */
157         if (isa_bus_device)
158                 isa_probe_children(isa_bus_device);
159 #endif
160
161         /*
162          * Now we're ready to handle (pending) interrupts.
163          * XXX this is slightly misplaced.
164          */
165         spl0();
166 }
167
168 static void
169 configure_final(dummy)
170         void *dummy;
171 {
172         int i;
173
174         cninit_finish();
175
176         if (bootverbose) {
177
178 #ifdef APIC_IO
179                 imen_dump();
180 #endif /* APIC_IO */
181
182                 /*
183                  * Print out the BIOS's idea of the disk geometries.
184                  */
185                 printf("BIOS Geometries:\n");
186                 for (i = 0; i < N_BIOS_GEOM; i++) {
187                         unsigned long bios_geom;
188                         int max_cylinder, max_head, max_sector;
189
190                         bios_geom = bootinfo.bi_bios_geom[i];
191
192                         /*
193                          * XXX the bootstrap punts a 1200K floppy geometry
194                          * when the get-disk-geometry interrupt fails.  Skip
195                          * drives that have this geometry.
196                          */
197                         if (bios_geom == 0x4f010f)
198                                 continue;
199
200                         printf(" %x:%08lx ", i, bios_geom);
201                         max_cylinder = bios_geom >> 16;
202                         max_head = (bios_geom >> 8) & 0xff;
203                         max_sector = bios_geom & 0xff;
204                         printf(
205                 "0..%d=%d cylinders, 0..%d=%d heads, 1..%d=%d sectors\n",
206                                max_cylinder, max_cylinder + 1,
207                                max_head, max_head + 1,
208                                max_sector, max_sector);
209                 }
210                 printf(" %d accounted for\n", bootinfo.bi_n_bios_used);
211
212                 printf("Device configuration finished.\n");
213         }
214         cold = 0;
215 }
216
217 #ifdef BOOTP
218 extern void bootpc_init(void);
219 #endif
220 /*
221  * Do legacy root filesystem discovery.
222  */
223 void
224 cpu_rootconf()
225 {
226 #ifdef BOOTP
227         bootpc_init();
228 #endif
229 #if defined(NFS) && defined(NFS_ROOT)
230 #if !defined(BOOTP_NFSROOT)
231         pxe_setup_nfsdiskless();
232         if (nfs_diskless_valid)
233 #endif
234                 rootdevnames[0] = "nfs:";
235 #endif
236 #if defined(FFS) && defined(FFS_ROOT)
237         if (!rootdevnames[0])
238                 setroot();
239 #endif
240 }
241 SYSINIT(cpu_rootconf, SI_SUB_ROOT_CONF, SI_ORDER_FIRST, cpu_rootconf, NULL)
242
243 u_long  bootdev = 0;            /* not a dev_t - encoding is different */
244
245 #if defined(FFS) && defined(FFS_ROOT)
246 #define FDMAJOR         2
247 #define FDUNITSHIFT     6
248
249 /*
250  * Attempt to find the device from which we were booted.
251  * If we can do so, and not instructed not to do so,
252  * set rootdevs[] and rootdevnames[] to correspond to the
253  * boot device(s).
254  *
255  * This code survives in order to allow the system to be 
256  * booted from legacy environments that do not correctly
257  * populate the kernel environment. There are significant
258  * restrictions on the bootability of the system in this
259  * situation; it can only be mounting root from a 'da'
260  * 'wd' or 'fd' device, and the root filesystem must be ufs.
261  */
262 static void
263 setroot()
264 {
265         int majdev, mindev, unit, slice, part;
266         dev_t newrootdev, dev;
267         char partname[2];
268         char *sname;
269
270         if ((bootdev & B_MAGICMASK) != B_DEVMAGIC) {
271                 printf("no B_DEVMAGIC (bootdev=%#lx)\n", bootdev);
272                 return;
273         }
274         majdev = B_TYPE(bootdev);
275         dev = makebdev(majdev, 0);
276         if (devsw(dev) == NULL)
277                 return;
278         unit = B_UNIT(bootdev);
279         slice = B_SLICE(bootdev);
280         if (slice == WHOLE_DISK_SLICE)
281                 slice = COMPATIBILITY_SLICE;
282         if (slice < 0 || slice >= MAX_SLICES) {
283                 printf("bad slice\n");
284                 return;
285         }
286
287         /*
288          * XXX kludge for inconsistent unit numbering and lack of slice
289          * support for floppies.
290          */
291         if (majdev == FDMAJOR) {
292                 slice = COMPATIBILITY_SLICE;
293                 part = RAW_PART;
294                 mindev = unit << FDUNITSHIFT;
295         } else {
296                 part = B_PARTITION(bootdev);
297                 mindev = dkmakeminor(unit, slice, part);
298         }
299
300         newrootdev = makebdev(majdev, mindev);
301         sname = dsname(newrootdev, unit, slice, part, partname);
302         rootdevnames[0] = malloc(strlen(sname) + 6, M_DEVBUF, M_NOWAIT);
303         sprintf(rootdevnames[0], "ufs:%s%s", sname, partname);
304
305         /*
306          * For properly dangerously dedicated disks (ones with a historical
307          * bogus partition table), the boot blocks will give slice = 4, but
308          * the kernel will only provide the compatibility slice since it
309          * knows that slice 4 is not a real slice.  Arrange to try mounting
310          * the compatibility slice as root if mounting the slice passed by
311          * the boot blocks fails.  This handles the dangerously dedicated
312          * case and perhaps others.
313          */
314         if (slice == COMPATIBILITY_SLICE)
315                 return;
316         slice = COMPATIBILITY_SLICE;
317         sname = dsname(newrootdev, unit, slice, part, partname);
318         rootdevnames[1] = malloc(strlen(sname) + 6, M_DEVBUF, M_NOWAIT);
319         sprintf(rootdevnames[1], "ufs:%s%s", sname, partname);
320 }
321 #endif
322
323 #if defined(NFS) && defined(NFS_ROOT)
324
325 #include <sys/socket.h>
326 #include <net/if.h>
327 #include <net/if_dl.h>
328 #include <net/if_types.h>
329 #include <net/if_var.h>
330 #include <net/ethernet.h>
331 #include <netinet/in.h>
332 #include <nfs/rpcv2.h>
333 #include <nfs/nfsproto.h>
334 #include <nfs/nfs.h>
335 #include <nfs/nfsdiskless.h>
336
337 extern struct nfs_diskless      nfs_diskless;
338
339 static int
340 inaddr_to_sockaddr(char *ev, struct sockaddr_in *sa)
341 {
342         u_int32_t       a[4];
343         char            *cp;
344
345         bzero(sa, sizeof(*sa));
346         sa->sin_len = sizeof(*sa);
347         sa->sin_family = AF_INET;
348
349         if ((cp = getenv(ev)) == NULL)
350                 return(1);
351         if (sscanf(cp, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]) != 4)
352                 return(1);
353         /* XXX is this ordering correct? */
354         sa->sin_addr.s_addr = (a[3] << 24) + (a[2] << 16) + (a[1] << 8) + a[0];
355         return(0);
356 }
357
358 static int
359 hwaddr_to_sockaddr(char *ev, struct sockaddr_dl *sa)
360 {
361         char            *cp;
362         u_int32_t       a[6];
363
364         bzero(sa, sizeof(*sa));
365         sa->sdl_len = sizeof(*sa);
366         sa->sdl_family = AF_LINK;
367         sa->sdl_type = IFT_ETHER;
368         sa->sdl_alen = ETHER_ADDR_LEN;
369         if ((cp = getenv(ev)) == NULL)
370                 return(1);
371         if (sscanf(cp, "%x:%x:%x:%x:%x:%x", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5]) != 6)
372                 return(1);
373         sa->sdl_data[0] = a[0];
374         sa->sdl_data[1] = a[1];
375         sa->sdl_data[2] = a[2];
376         sa->sdl_data[3] = a[3];
377         sa->sdl_data[4] = a[4];
378         sa->sdl_data[5] = a[5];
379         return(0);
380 }
381
382 static int
383 decode_nfshandle(char *ev, u_char *fh) 
384 {
385         u_char  *cp;
386         int     len, val;
387
388         if (((cp = getenv(ev)) == NULL) || (strlen(cp) < 2) || (*cp != 'X'))
389                 return(0);
390         len = 0;
391         cp++;
392         for (;;) {
393                 if (*cp == 'X')
394                         return(len);
395                 if ((sscanf(cp, "%2x", &val) != 1) || (val > 0xff))
396                         return(0);
397                 *(fh++) = val;
398                 len++;
399                 cp += 2;
400                 if (len > NFSX_V2FH)
401                     return(0);
402         }
403 }
404
405 /*
406  * Populate the essential fields in the nfsv3_diskless structure.
407  *
408  * The loader is expected to export the following environment variables:
409  *
410  * boot.netif.ip                IP address on boot interface
411  * boot.netif.netmask           netmask on boot interface
412  * boot.netif.gateway           default gateway (optional)
413  * boot.netif.hwaddr            hardware address of boot interface
414  * boot.nfsroot.server          IP address of root filesystem server
415  * boot.nfsroot.path            path of the root filesystem on server
416  * boot.nfsroot.nfshandle       NFS handle for root filesystem on server
417  */
418 static void
419 pxe_setup_nfsdiskless()
420 {
421         struct nfs_diskless     *nd = &nfs_diskless;
422         struct ifnet            *ifp;
423         struct ifaddr           *ifa;
424         struct sockaddr_dl      *sdl, ourdl;
425         struct sockaddr_in      myaddr, netmask;
426         char                    *cp;
427
428         /* set up interface */
429         if (inaddr_to_sockaddr("boot.netif.ip", &myaddr))
430                 return;
431         if (inaddr_to_sockaddr("boot.netif.netmask", &netmask)) {
432                 printf("PXE: no netmask\n");
433                 return;
434         }
435         bcopy(&myaddr, &nd->myif.ifra_addr, sizeof(myaddr));
436         bcopy(&myaddr, &nd->myif.ifra_broadaddr, sizeof(myaddr));
437         ((struct sockaddr_in *) &nd->myif.ifra_broadaddr)->sin_addr.s_addr =
438                 myaddr.sin_addr.s_addr | ~ netmask.sin_addr.s_addr;
439         bcopy(&netmask, &nd->myif.ifra_mask, sizeof(netmask));
440
441         if (hwaddr_to_sockaddr("boot.netif.hwaddr", &ourdl)) {
442                 printf("PXE: no hardware address\n");
443                 return;
444         }
445         ifa = NULL;
446         ifp = TAILQ_FIRST(&ifnet);
447         TAILQ_FOREACH(ifp, &ifnet, if_link) {
448                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
449                         if ((ifa->ifa_addr->sa_family == AF_LINK) &&
450                             (sdl = ((struct sockaddr_dl *)ifa->ifa_addr))) {
451                                 if ((sdl->sdl_type == ourdl.sdl_type) &&
452                                     (sdl->sdl_alen == ourdl.sdl_alen) &&
453                                     !bcmp(sdl->sdl_data + sdl->sdl_nlen,
454                                           ourdl.sdl_data + ourdl.sdl_nlen, 
455                                           sdl->sdl_alen))
456                                     goto match_done;
457                         }
458                 }
459         }
460         printf("PXE: no interface\n");
461         return; /* no matching interface */
462 match_done:
463         sprintf(nd->myif.ifra_name, "%s%d", ifp->if_name, ifp->if_unit);
464
465         
466         /* set up gateway */
467         inaddr_to_sockaddr("boot.netif.gateway", &nd->mygateway);
468
469         /* XXX set up swap? */
470
471         /* set up root mount */
472         nd->root_args.rsize = 8192;             /* XXX tunable? */
473         nd->root_args.wsize = 8192;
474         nd->root_args.sotype = SOCK_DGRAM;
475         nd->root_args.flags = (NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT);
476         if (inaddr_to_sockaddr("boot.nfsroot.server", &nd->root_saddr)) {
477                 printf("PXE: no server\n");
478                 return;
479         }
480         nd->root_saddr.sin_port = htons(NFS_PORT);
481         if (decode_nfshandle("boot.nfsroot.nfshandle", &nd->root_fh[0]) == 0) {
482                 printf("PXE: no NFS handle\n");
483                 return;
484         }
485         if ((cp = getenv("boot.nfsroot.path")) != NULL)
486                 strncpy(nd->root_hostnam, cp, MNAMELEN - 1);
487
488         nfs_diskless_valid = 1;
489 }
490 #endif