]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/userboot/userboot/main.c
Re-sync loader.mk and ficl.mk to where they should be
[FreeBSD/FreeBSD.git] / stand / 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 #include <sys/disk.h>
35
36 #include "bootstrap.h"
37 #include "disk.h"
38 #include "libuserboot.h"
39
40 #if defined(USERBOOT_ZFS_SUPPORT)
41 #include "../zfs/libzfs.h"
42
43 static void userboot_zfs_probe(void);
44 static int userboot_zfs_found;
45 #endif
46
47 /* Minimum version required */
48 #define USERBOOT_VERSION        USERBOOT_VERSION_3
49
50 #define MALLOCSZ                (64*1024*1024)
51
52 struct loader_callbacks *callbacks;
53 void *callbacks_arg;
54
55 extern char bootprog_info[];
56 static jmp_buf jb;
57
58 struct arch_switch archsw;      /* MI/MD interface boundary */
59
60 static void     extract_currdev(void);
61
62 void
63 delay(int usec)
64 {
65
66         CALLBACK(delay, usec);
67 }
68
69 void
70 exit(int v)
71 {
72
73         CALLBACK(exit, v);
74         longjmp(jb, 1);
75 }
76
77 void
78 loader_main(struct loader_callbacks *cb, void *arg, int version, int ndisks)
79 {
80         static char mallocbuf[MALLOCSZ];
81         char *var;
82         int i;
83
84         if (version < USERBOOT_VERSION)
85                 abort();
86
87         callbacks = cb;
88         callbacks_arg = arg;
89         userboot_disk_maxunit = ndisks;
90
91         /*
92          * initialise the heap as early as possible.  Once this is done,
93          * alloc() is usable.
94          */
95         setheap((void *)mallocbuf, (void *)(mallocbuf + sizeof(mallocbuf)));
96
97         /*
98          * Hook up the console
99          */
100         cons_probe();
101
102         printf("\n%s", bootprog_info);
103 #if 0
104         printf("Memory: %ld k\n", memsize() / 1024);
105 #endif
106
107         setenv("LINES", "24", 1);       /* optional */
108
109         /*
110          * Set custom environment variables
111          */
112         i = 0;
113         while (1) {
114                 var = CALLBACK(getenv, i++);
115                 if (var == NULL)
116                         break;
117                 putenv(var);
118         }
119
120         archsw.arch_autoload = userboot_autoload;
121         archsw.arch_getdev = userboot_getdev;
122         archsw.arch_copyin = userboot_copyin;
123         archsw.arch_copyout = userboot_copyout;
124         archsw.arch_readin = userboot_readin;
125 #if defined(USERBOOT_ZFS_SUPPORT)
126         archsw.arch_zfs_probe = userboot_zfs_probe;
127 #endif
128
129         /*
130          * Initialise the block cache. Set the upper limit.
131          */
132         bcache_init(32768, 512);
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
275 uint64_t
276 ldi_get_size(void *priv)
277 {
278         int fd = (uintptr_t) priv;
279         uint64_t size;
280
281         ioctl(fd, DIOCGMEDIASIZE, &size);
282         return (size);
283 }
284 #endif /* USERBOOT_ZFS_SUPPORT */
285
286 COMMAND_SET(quit, "quit", "exit the loader", command_quit);
287
288 static int
289 command_quit(int argc, char *argv[])
290 {
291
292         exit(USERBOOT_EXIT_QUIT);
293         return (CMD_OK);
294 }
295
296 COMMAND_SET(reboot, "reboot", "reboot the system", command_reboot);
297
298 static int
299 command_reboot(int argc, char *argv[])
300 {
301
302         exit(USERBOOT_EXIT_REBOOT);
303         return (CMD_OK);
304 }