]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/boot/userboot/userboot/main.c
Check that the userboot version is at least 3, rather than
[FreeBSD/FreeBSD.git] / sys / boot / userboot / userboot / main.c
1 /*-
2  * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3  * Copyright (c) 1998,2000 Doug Rabson <dfr@freebsd.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include <stand.h>
32 #include <string.h>
33 #include <setjmp.h>
34
35 #include "bootstrap.h"
36 #include "disk.h"
37 #include "libuserboot.h"
38
39 #if defined(USERBOOT_ZFS_SUPPORT)
40 #include "../zfs/libzfs.h"
41
42 static void userboot_zfs_probe(void);
43 static int userboot_zfs_found;
44 #endif
45
46 /* Minimum version required */
47 #define USERBOOT_VERSION        USERBOOT_VERSION_3
48
49 #define MALLOCSZ                (10*1024*1024)
50
51 struct loader_callbacks *callbacks;
52 void *callbacks_arg;
53
54 extern char bootprog_name[];
55 extern char bootprog_rev[];
56 extern char bootprog_date[];
57 extern char bootprog_maker[];
58 static jmp_buf jb;
59
60 struct arch_switch archsw;      /* MI/MD interface boundary */
61
62 static void     extract_currdev(void);
63
64 void
65 delay(int usec)
66 {
67
68         CALLBACK(delay, usec);
69 }
70
71 void
72 exit(int v)
73 {
74
75         CALLBACK(exit, v);
76         longjmp(jb, 1);
77 }
78
79 void
80 loader_main(struct loader_callbacks *cb, void *arg, int version, int ndisks)
81 {
82         static char mallocbuf[MALLOCSZ];
83         const char *var;
84         int i;
85
86         if (version < USERBOOT_VERSION)
87                 abort();
88
89         callbacks = cb;
90         callbacks_arg = arg;
91         userboot_disk_maxunit = ndisks;
92
93         /*
94          * initialise the heap as early as possible.  Once this is done,
95          * alloc() is usable.
96          */
97         setheap((void *)mallocbuf, (void *)(mallocbuf + sizeof(mallocbuf)));
98
99         /*
100          * Hook up the console
101          */
102         cons_probe();
103
104         printf("\n");
105         printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
106         printf("(%s, %s)\n", bootprog_maker, bootprog_date);
107 #if 0
108         printf("Memory: %ld k\n", memsize() / 1024);
109 #endif
110
111         setenv("LINES", "24", 1);       /* optional */
112
113         /*
114          * Set custom environment variables
115          */
116         i = 0;
117         while (1) {
118                 var = CALLBACK(getenv, i++);
119                 if (var == NULL)
120                         break;
121                 putenv(var);
122         }
123
124         archsw.arch_autoload = userboot_autoload;
125         archsw.arch_getdev = userboot_getdev;
126         archsw.arch_copyin = userboot_copyin;
127         archsw.arch_copyout = userboot_copyout;
128         archsw.arch_readin = userboot_readin;
129 #if defined(USERBOOT_ZFS_SUPPORT)
130         archsw.arch_zfs_probe = userboot_zfs_probe;
131 #endif
132
133         /*
134          * March through the device switch probing for things.
135          */
136         for (i = 0; devsw[i] != NULL; i++)
137                 if (devsw[i]->dv_init != NULL)
138                         (devsw[i]->dv_init)();
139
140         extract_currdev();
141
142         if (setjmp(jb))
143                 return;
144
145         interact(NULL);                 /* doesn't return */
146
147         exit(0);
148 }
149
150 /*
151  * Set the 'current device' by (if possible) recovering the boot device as 
152  * supplied by the initial bootstrap.
153  */
154 static void
155 extract_currdev(void)
156 {
157         struct disk_devdesc dev;
158
159         //bzero(&dev, sizeof(dev));
160
161 #if defined(USERBOOT_ZFS_SUPPORT)
162         if (userboot_zfs_found) {
163                 struct zfs_devdesc zdev;
164         
165                 /* Leave the pool/root guid's unassigned */
166                 bzero(&zdev, sizeof(zdev));
167                 zdev.d_dev = &zfs_dev;
168                 zdev.d_type = zdev.d_dev->dv_type;
169                 
170                 dev = *(struct disk_devdesc *)&zdev;
171                 init_zfs_bootenv(zfs_fmtdev(&dev));
172         } else
173 #endif
174
175         if (userboot_disk_maxunit > 0) {
176                 dev.d_dev = &userboot_disk;
177                 dev.d_type = dev.d_dev->dv_type;
178                 dev.d_unit = 0;
179                 dev.d_slice = 0;
180                 dev.d_partition = 0;
181                 /*
182                  * If we cannot auto-detect the partition type then
183                  * access the disk as a raw device.
184                  */
185                 if (dev.d_dev->dv_open(NULL, &dev)) {
186                         dev.d_slice = -1;
187                         dev.d_partition = -1;
188                 }
189         } else {
190                 dev.d_dev = &host_dev;
191                 dev.d_type = dev.d_dev->dv_type;
192                 dev.d_unit = 0;
193         }
194
195         env_setenv("currdev", EV_VOLATILE, userboot_fmtdev(&dev),
196             userboot_setcurrdev, env_nounset);
197         env_setenv("loaddev", EV_VOLATILE, userboot_fmtdev(&dev),
198             env_noset, env_nounset);
199 }
200
201 #if defined(USERBOOT_ZFS_SUPPORT)
202 static void
203 userboot_zfs_probe(void)
204 {
205         char devname[32];
206         uint64_t pool_guid;
207         int unit;
208
209         /*
210          * Open all the disks we can find and see if we can reconstruct
211          * ZFS pools from them. Record if any were found.
212          */
213         for (unit = 0; unit < userboot_disk_maxunit; unit++) {
214                 sprintf(devname, "disk%d:", unit);
215                 pool_guid = 0;
216                 zfs_probe_dev(devname, &pool_guid);
217                 if (pool_guid != 0)
218                         userboot_zfs_found = 1;
219         }
220 }
221
222 COMMAND_SET(lszfs, "lszfs", "list child datasets of a zfs dataset",
223             command_lszfs);
224
225 static int
226 command_lszfs(int argc, char *argv[])
227 {
228         int err;
229
230         if (argc != 2) {
231                 command_errmsg = "a single dataset must be supplied";
232                 return (CMD_ERROR);
233         }
234
235         err = zfs_list(argv[1]);
236         if (err != 0) {
237                 command_errmsg = strerror(err);
238                 return (CMD_ERROR);
239         }
240         return (CMD_OK);
241 }
242
243 COMMAND_SET(reloadbe, "reloadbe", "refresh the list of ZFS Boot Environments",
244             command_reloadbe);
245
246 static int
247 command_reloadbe(int argc, char *argv[])
248 {
249         int err;
250         char *root;
251
252         if (argc > 2) {
253                 command_errmsg = "wrong number of arguments";
254                 return (CMD_ERROR);
255         }
256
257         if (argc == 2) {
258                 err = zfs_bootenv(argv[1]);
259         } else {
260                 root = getenv("zfs_be_root");
261                 if (root == NULL) {
262                         return (CMD_OK);
263                 }
264                 err = zfs_bootenv(root);
265         }
266
267         if (err != 0) {
268                 command_errmsg = strerror(err);
269                 return (CMD_ERROR);
270         }
271
272         return (CMD_OK);
273 }
274 #endif /* USERBOOT_ZFS_SUPPORT */
275
276 COMMAND_SET(quit, "quit", "exit the loader", command_quit);
277
278 static int
279 command_quit(int argc, char *argv[])
280 {
281
282         exit(USERBOOT_EXIT_QUIT);
283         return (CMD_OK);
284 }
285
286 COMMAND_SET(reboot, "reboot", "reboot the system", command_reboot);
287
288 static int
289 command_reboot(int argc, char *argv[])
290 {
291
292         exit(USERBOOT_EXIT_REBOOT);
293         return (CMD_OK);
294 }