1998-08-21 03:17:42 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-08-25 23:28:32 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1998-08-21 03:17:42 +00:00
|
|
|
#include <stand.h>
|
|
|
|
#include <bootstrap.h>
|
|
|
|
#include "libi386/libi386.h"
|
2012-05-12 09:03:30 +00:00
|
|
|
#if defined(LOADER_ZFS_SUPPORT)
|
2018-07-08 07:42:58 +00:00
|
|
|
#include "libzfs.h"
|
2012-05-12 09:03:30 +00:00
|
|
|
#endif
|
1998-08-21 03:17:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We could use linker sets for some or all of these, but
|
|
|
|
* then we would have to control what ended up linked into
|
|
|
|
* the bootstrap. So it's easier to conditionalise things
|
|
|
|
* here.
|
|
|
|
*
|
|
|
|
* XXX rename these arrays to be consistent and less namespace-hostile
|
|
|
|
*
|
|
|
|
* XXX as libi386 and biosboot merge, some of these can become linker sets.
|
|
|
|
*/
|
|
|
|
|
2007-05-29 14:35:57 +00:00
|
|
|
#if defined(LOADER_FIREWIRE_SUPPORT)
|
|
|
|
extern struct devsw fwohci;
|
|
|
|
#endif
|
|
|
|
|
1998-08-21 03:17:42 +00:00
|
|
|
/* Exported for libstand */
|
|
|
|
struct devsw *devsw[] = {
|
2018-11-30 08:01:11 +00:00
|
|
|
&biosfd,
|
2001-11-05 18:59:13 +00:00
|
|
|
&bioscd,
|
2018-11-30 08:01:11 +00:00
|
|
|
&bioshd,
|
2000-04-08 01:22:14 +00:00
|
|
|
#if defined(LOADER_NFS_SUPPORT) || defined(LOADER_TFTP_SUPPORT)
|
2000-03-28 01:19:53 +00:00
|
|
|
&pxedisk,
|
2007-05-29 14:35:57 +00:00
|
|
|
#endif
|
|
|
|
#if defined(LOADER_FIREWIRE_SUPPORT)
|
|
|
|
&fwohci,
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
#endif
|
|
|
|
#if defined(LOADER_ZFS_SUPPORT)
|
|
|
|
&zfs_dev,
|
2000-04-08 01:22:14 +00:00
|
|
|
#endif
|
1998-08-21 03:17:42 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fs_ops *file_system[] = {
|
2012-09-11 04:54:44 +00:00
|
|
|
#if defined(LOADER_ZFS_SUPPORT)
|
|
|
|
&zfs_fsops,
|
|
|
|
#endif
|
2018-02-21 15:58:00 +00:00
|
|
|
#if defined(LOADER_UFS_SUPPORT)
|
1998-08-21 03:17:42 +00:00
|
|
|
&ufs_fsops,
|
2018-02-21 15:58:00 +00:00
|
|
|
#endif
|
|
|
|
#if defined(LOADER_EXT2FS_SUPPORT)
|
2000-04-29 20:49:33 +00:00
|
|
|
&ext2fs_fsops,
|
2018-02-21 15:58:00 +00:00
|
|
|
#endif
|
|
|
|
#if defined(LOADER_MSDOS_SUPPORT)
|
1998-08-21 03:17:42 +00:00
|
|
|
&dosfs_fsops,
|
2018-02-21 15:58:00 +00:00
|
|
|
#endif
|
|
|
|
#if defined(LOADER_CD9660_SUPPORT)
|
2001-11-05 18:59:13 +00:00
|
|
|
&cd9660_fsops,
|
2018-02-21 15:58:00 +00:00
|
|
|
#endif
|
2012-05-17 10:11:18 +00:00
|
|
|
#if defined(LOADER_NANDFS_SUPPORT)
|
|
|
|
&nandfs_fsops,
|
|
|
|
#endif
|
2014-11-11 19:44:59 +00:00
|
|
|
#ifdef LOADER_NFS_SUPPORT
|
|
|
|
&nfs_fsops,
|
|
|
|
#endif
|
|
|
|
#ifdef LOADER_TFTP_SUPPORT
|
|
|
|
&tftp_fsops,
|
2012-09-29 15:08:55 +00:00
|
|
|
#endif
|
2001-09-18 14:52:36 +00:00
|
|
|
#ifdef LOADER_GZIP_SUPPORT
|
2002-12-19 19:34:59 +00:00
|
|
|
&gzipfs_fsops,
|
2001-09-18 14:52:36 +00:00
|
|
|
#endif
|
|
|
|
#ifdef LOADER_BZIP2_SUPPORT
|
|
|
|
&bzipfs_fsops,
|
|
|
|
#endif
|
2014-11-11 19:44:59 +00:00
|
|
|
#ifdef LOADER_SPLIT_SUPPORT
|
|
|
|
&splitfs_fsops,
|
2000-04-08 01:22:14 +00:00
|
|
|
#endif
|
1998-08-21 03:17:42 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Exported for i386 only */
|
|
|
|
/*
|
|
|
|
* Sort formats so that those that can detect based on arguments
|
|
|
|
* rather than reading the file go first.
|
|
|
|
*/
|
2000-05-01 17:41:25 +00:00
|
|
|
extern struct file_format i386_elf;
|
2004-08-29 00:48:42 +00:00
|
|
|
extern struct file_format i386_elf_obj;
|
2003-05-01 03:56:30 +00:00
|
|
|
extern struct file_format amd64_elf;
|
2004-08-29 00:48:42 +00:00
|
|
|
extern struct file_format amd64_elf_obj;
|
loader: implement multiboot support for Xen Dom0
Implement a subset of the multiboot specification in order to boot Xen
and a FreeBSD Dom0 from the FreeBSD bootloader. This multiboot
implementation is tailored to boot Xen and FreeBSD Dom0, and it will
most surely fail to boot any other multiboot compilant kernel.
In order to detect and boot the Xen microkernel, two new file formats
are added to the bootloader, multiboot and multiboot_obj. Multiboot
support must be tested before regular ELF support, since Xen is a
multiboot kernel that also uses ELF. After a multiboot kernel is
detected, all the other loaded kernels/modules are parsed by the
multiboot_obj format.
The layout of the loaded objects in memory is the following; first the
Xen kernel is loaded as a 32bit ELF into memory (Xen will switch to
long mode by itself), after that the FreeBSD kernel is loaded as a RAW
file (Xen will parse and load it using it's internal ELF loader), and
finally the metadata and the modules are loaded using the native
FreeBSD way. After everything is loaded we jump into Xen's entry point
using a small trampoline. The order of the multiboot modules passed to
Xen is the following, the first module is the RAW FreeBSD kernel, and
the second module is the metadata and the FreeBSD modules.
Since Xen will relocate the memory position of the second
multiboot module (the one that contains the metadata and native
FreeBSD modules), we need to stash the original modulep address inside
of the metadata itself in order to recalculate its position once
booted. This also means the metadata must come before the loaded
modules, so after loading the FreeBSD kernel a portion of memory is
reserved in order to place the metadata before booting.
In order to tell the loader to boot Xen and then the FreeBSD kernel the
following has to be added to the /boot/loader.conf file:
xen_cmdline="dom0_mem=1024M dom0_max_vcpus=2 dom0pvh=1 console=com1,vga"
xen_kernel="/boot/xen"
The first argument contains the command line that will be passed to the Xen
kernel, while the second argument is the path to the Xen kernel itself. This
can also be done manually from the loader command line, by for example
typing the following set of commands:
OK unload
OK load /boot/xen dom0_mem=1024M dom0_max_vcpus=2 dom0pvh=1 console=com1,vga
OK load kernel
OK load zfs
OK load if_tap
OK load ...
OK boot
Sponsored by: Citrix Systems R&D
Reviewed by: jhb
Differential Revision: https://reviews.freebsd.org/D517
For the Forth bits:
Submitted by: Julien Grall <julien.grall AT citrix.com>
2015-01-15 16:27:20 +00:00
|
|
|
extern struct file_format multiboot;
|
|
|
|
extern struct file_format multiboot_obj;
|
1998-08-21 03:17:42 +00:00
|
|
|
|
2000-05-01 17:41:25 +00:00
|
|
|
struct file_format *file_formats[] = {
|
loader: implement multiboot support for Xen Dom0
Implement a subset of the multiboot specification in order to boot Xen
and a FreeBSD Dom0 from the FreeBSD bootloader. This multiboot
implementation is tailored to boot Xen and FreeBSD Dom0, and it will
most surely fail to boot any other multiboot compilant kernel.
In order to detect and boot the Xen microkernel, two new file formats
are added to the bootloader, multiboot and multiboot_obj. Multiboot
support must be tested before regular ELF support, since Xen is a
multiboot kernel that also uses ELF. After a multiboot kernel is
detected, all the other loaded kernels/modules are parsed by the
multiboot_obj format.
The layout of the loaded objects in memory is the following; first the
Xen kernel is loaded as a 32bit ELF into memory (Xen will switch to
long mode by itself), after that the FreeBSD kernel is loaded as a RAW
file (Xen will parse and load it using it's internal ELF loader), and
finally the metadata and the modules are loaded using the native
FreeBSD way. After everything is loaded we jump into Xen's entry point
using a small trampoline. The order of the multiboot modules passed to
Xen is the following, the first module is the RAW FreeBSD kernel, and
the second module is the metadata and the FreeBSD modules.
Since Xen will relocate the memory position of the second
multiboot module (the one that contains the metadata and native
FreeBSD modules), we need to stash the original modulep address inside
of the metadata itself in order to recalculate its position once
booted. This also means the metadata must come before the loaded
modules, so after loading the FreeBSD kernel a portion of memory is
reserved in order to place the metadata before booting.
In order to tell the loader to boot Xen and then the FreeBSD kernel the
following has to be added to the /boot/loader.conf file:
xen_cmdline="dom0_mem=1024M dom0_max_vcpus=2 dom0pvh=1 console=com1,vga"
xen_kernel="/boot/xen"
The first argument contains the command line that will be passed to the Xen
kernel, while the second argument is the path to the Xen kernel itself. This
can also be done manually from the loader command line, by for example
typing the following set of commands:
OK unload
OK load /boot/xen dom0_mem=1024M dom0_max_vcpus=2 dom0pvh=1 console=com1,vga
OK load kernel
OK load zfs
OK load if_tap
OK load ...
OK boot
Sponsored by: Citrix Systems R&D
Reviewed by: jhb
Differential Revision: https://reviews.freebsd.org/D517
For the Forth bits:
Submitted by: Julien Grall <julien.grall AT citrix.com>
2015-01-15 16:27:20 +00:00
|
|
|
&multiboot,
|
|
|
|
&multiboot_obj,
|
2012-09-30 12:24:15 +00:00
|
|
|
#ifdef LOADER_PREFER_AMD64
|
|
|
|
&amd64_elf,
|
|
|
|
&amd64_elf_obj,
|
|
|
|
#endif
|
1998-09-30 19:48:42 +00:00
|
|
|
&i386_elf,
|
2004-08-29 00:48:42 +00:00
|
|
|
&i386_elf_obj,
|
2012-09-30 12:24:15 +00:00
|
|
|
#ifndef LOADER_PREFER_AMD64
|
2003-05-01 03:56:30 +00:00
|
|
|
&amd64_elf,
|
2004-08-29 00:48:42 +00:00
|
|
|
&amd64_elf_obj,
|
2012-09-30 12:24:15 +00:00
|
|
|
#endif
|
1998-08-21 03:17:42 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Consoles
|
|
|
|
*
|
|
|
|
* We don't prototype these in libi386.h because they require
|
|
|
|
* data structures from bootstrap.h as well.
|
|
|
|
*/
|
|
|
|
extern struct console vidconsole;
|
|
|
|
extern struct console comconsole;
|
2007-05-29 14:35:57 +00:00
|
|
|
#if defined(LOADER_FIREWIRE_SUPPORT)
|
|
|
|
extern struct console dconsole;
|
|
|
|
#endif
|
2000-09-20 18:13:36 +00:00
|
|
|
extern struct console nullconsole;
|
2009-11-27 03:55:42 +00:00
|
|
|
extern struct console spinconsole;
|
1998-08-21 03:17:42 +00:00
|
|
|
|
|
|
|
struct console *consoles[] = {
|
|
|
|
&vidconsole,
|
|
|
|
&comconsole,
|
2007-05-29 14:35:57 +00:00
|
|
|
#if defined(LOADER_FIREWIRE_SUPPORT)
|
|
|
|
&dconsole,
|
|
|
|
#endif
|
2000-09-20 18:13:36 +00:00
|
|
|
&nullconsole,
|
2009-11-27 03:55:42 +00:00
|
|
|
&spinconsole,
|
1998-08-21 03:17:42 +00:00
|
|
|
NULL
|
|
|
|
};
|
1998-09-14 18:27:06 +00:00
|
|
|
|
|
|
|
extern struct pnphandler isapnphandler;
|
1998-10-22 20:23:58 +00:00
|
|
|
extern struct pnphandler biospnphandler;
|
1998-10-23 22:29:19 +00:00
|
|
|
extern struct pnphandler biospcihandler;
|
1998-09-14 18:27:06 +00:00
|
|
|
|
|
|
|
struct pnphandler *pnphandlers[] = {
|
1998-10-22 20:23:58 +00:00
|
|
|
&biospnphandler, /* should go first, as it may set isapnp_readport */
|
1998-10-21 20:10:33 +00:00
|
|
|
&isapnphandler,
|
1998-10-23 22:29:19 +00:00
|
|
|
&biospcihandler,
|
1998-09-14 18:27:06 +00:00
|
|
|
NULL
|
|
|
|
};
|