image: Fix spelling of "evaluate"
[jackhill/guix/guix.git] / gnu / build / linux-boot.scm
CommitLineData
88840f02 1;;; GNU Guix --- Functional package management for GNU
683cba75 2;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
b9abb301 3;;; Copyright © 2016, 2017, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
a5e13c3b 4;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
900ef20b 5;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
88840f02
LC
6;;;
7;;; This file is part of GNU Guix.
8;;;
9;;; GNU Guix is free software; you can redistribute it and/or modify it
10;;; under the terms of the GNU General Public License as published by
11;;; the Free Software Foundation; either version 3 of the License, or (at
12;;; your option) any later version.
13;;;
14;;; GNU Guix is distributed in the hope that it will be useful, but
15;;; WITHOUT ANY WARRANTY; without even the implied warranty of
16;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;;; GNU General Public License for more details.
18;;;
19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21
8a9e21d1 22(define-module (gnu build linux-boot)
88840f02 23 #:use-module (rnrs io ports)
e3ced65a 24 #:use-module (system repl error-handling)
d4254711 25 #:autoload (system repl repl) (start-repl)
d4254711 26 #:use-module (srfi srfi-1)
97817e7f 27 #:use-module (srfi srfi-9)
d4254711
LC
28 #:use-module (srfi srfi-26)
29 #:use-module (ice-9 match)
97817e7f
DM
30 #:use-module (ice-9 rdelim)
31 #:use-module (ice-9 regex)
44ddf33e 32 #:use-module (ice-9 ftw)
d4254711 33 #:use-module (guix build utils)
1c65cca5
LC
34 #:use-module ((guix build syscalls)
35 #:hide (file-system-type))
0e704a2d 36 #:use-module (gnu build linux-modules)
e2f4b305 37 #:use-module (gnu build file-systems)
1c65cca5 38 #:use-module (gnu system file-systems)
88840f02
LC
39 #:export (mount-essential-file-systems
40 linux-command-line
87a52da7 41 find-long-option
015d0a84 42 find-long-options
d91712ee 43 make-essential-device-nodes
97817e7f 44 make-static-device-nodes
88840f02 45 configure-qemu-networking
85a83edb 46
d4254711
LC
47 device-number
48 boot-system))
88840f02
LC
49
50;;; Commentary:
51;;;
52;;; Utility procedures useful in a Linux initial RAM disk (initrd). Note that
53;;; many of these use procedures not yet available in vanilla Guile (`mount',
54;;; `load-linux-module', etc.); these are provided by a Guile patch used in
55;;; the GNU distribution.
56;;;
57;;; Code:
58
59(define* (mount-essential-file-systems #:key (root "/"))
cc0e575a 60 "Mount /dev, /proc, and /sys under ROOT."
88840f02
LC
61 (define (scope dir)
62 (string-append root
63 (if (string-suffix? "/" root)
64 ""
65 "/")
66 dir))
67
68 (unless (file-exists? (scope "proc"))
69 (mkdir (scope "proc")))
70 (mount "none" (scope "proc") "proc")
71
cc0e575a
LC
72 (unless (file-exists? (scope "dev"))
73 (mkdir (scope "dev")))
74 (mount "none" (scope "dev") "devtmpfs")
75
88840f02
LC
76 (unless (file-exists? (scope "sys"))
77 (mkdir (scope "sys")))
78 (mount "none" (scope "sys") "sysfs"))
79
1d462832
LC
80(define (move-essential-file-systems root)
81 "Move currently mounted essential file systems to ROOT."
82 (for-each (lambda (dir)
83 (let ((target (string-append root dir)))
84 (unless (file-exists? target)
85 (mkdir target))
86 (mount dir target "" MS_MOVE)))
cc0e575a 87 '("/dev" "/proc" "/sys")))
1d462832 88
88840f02
LC
89(define (linux-command-line)
90 "Return the Linux kernel command line as a list of strings."
91 (string-tokenize
92 (call-with-input-file "/proc/cmdline"
93 get-string-all)))
94
87a52da7
LC
95(define (find-long-option option arguments)
96 "Find OPTION among ARGUMENTS, where OPTION is something like \"--load\".
97Return the value associated with OPTION, or #f on failure."
98 (let ((opt (string-append option "=")))
99 (and=> (find (cut string-prefix? opt <>)
100 arguments)
101 (lambda (arg)
102 (substring arg (+ 1 (string-index arg #\=)))))))
103
015d0a84
DM
104(define (find-long-options option arguments)
105 "Find OPTIONs among ARGUMENTS, where OPTION is something like \"console\".
106Return the values associated with OPTIONs as a list, or the empty list if
107OPTION doesn't appear in ARGUMENTS."
108 (let ((opt (string-append option "=")))
109 (filter-map (lambda (arg)
110 (and (string-prefix? opt arg)
111 (substring arg (+ 1 (string-index arg #\=)))))
112 arguments)))
113
b9abb301
TGR
114(define (resume-if-hibernated device)
115 "Resume from hibernation if possible. This is safe ONLY if no on-disk file
116systems have been mounted; calling it later risks severe file system corruption!
117See <Documentation/swsusp.txt> in the kernel source directory. This is the
118caller's responsibility, as is catching exceptions if resumption was supposed to
119happen but didn't.
120
121Resume only from DEVICE if it's a string. If it's #f, use the kernel's default
122hibernation device (CONFIG_PM_STD_PARTITION). Never return if resumption
123succeeds. Return nothing otherwise. The kernel logs any details to dmesg."
124
125 (define (string->major:minor string)
126 "Return a string with MAJOR:MINOR numbers of the device specified by STRING"
127
128 ;; The "resume=" kernel command-line option always provides a string, which
129 ;; can represent a device, a UUID, or a label. Check for all three.
130 (let* ((spec (cond ((string-prefix? "/" string) string)
131 ((uuid string) => identity)
132 (else (file-system-label string))))
133 ;; XXX The kernel's swsusp_resume_can_resume() waits if ‘resumewait’
134 ;; is found on the command line; our canonicalize-device-spec gives
135 ;; up after 20 seconds. We could emulate the former by looping…
136 (device (canonicalize-device-spec spec))
137 (rdev (stat:rdev (stat device)))
138 ;; For backwards compatibility, device numbering is a baroque affair.
139 ;; This is the full 64-bit scheme used by glibc's <sys/sysmacros.h>.
140 (major (logior (ash (logand #x00000000000fff00 rdev) -8)
141 (ash (logand #xfffff00000000000 rdev) -32)))
142 (minor (logior (logand #x00000000000000ff rdev)
143 (ash (logand #x00000ffffff00000 rdev) -12))))
144 (format #f "~a:~a" major minor)))
145
146 ;; Write the resume DEVICE to this magic file, using the MAJOR:MINOR device
147 ;; numbers if possible. The kernel will immediately try to resume from it.
148 (let ((resume "/sys/power/resume"))
149 (when (file-exists? resume) ; this kernel supports hibernation
150 ;; Honour the kernel's default device (only) if none other was given.
151 (let ((major:minor (if device
152 (or (false-if-exception (string->major:minor
153 device))
154 ;; We can't parse it. Maybe the kernel can.
155 device)
156 (let ((default (call-with-input-file resume
157 read-line)))
158 ;; Don't waste time echoing 0:0 to /sys.
159 (if (string=? "0:0" default)
160 #f
161 default)))))
162 (when major:minor
163 (call-with-output-file resume ; may throw an ‘Invalid argument’
164 (cut display major:minor <>))))))) ; may never return
165
ac52e80b
LC
166(define* (make-disk-device-nodes base major #:optional (minor 0))
167 "Make the block device nodes around BASE (something like \"/root/dev/sda\")
168with the given MAJOR number, starting with MINOR."
169 (mknod base 'block-special #o644 (device-number major minor))
170 (let loop ((i 1))
ced0106a 171 (when (< i 16)
ac52e80b
LC
172 (mknod (string-append base (number->string i))
173 'block-special #o644 (device-number major (+ minor i)))
174 (loop (+ i 1)))))
175
97817e7f
DM
176;; Representation of a /dev node.
177(define-record-type <device-node>
178 (device-node name type major minor module)
179 device-node?
180 (name device-node-name)
181 (type device-node-type)
182 (major device-node-major)
183 (minor device-node-minor)
184 (module device-node-module))
185
186(define (read-static-device-nodes port)
187 "Read from PORT a list of <device-node> written in the format used by
188/lib/modules/*/*.devname files."
189 (let loop ((line (read-line port)))
190 (if (eof-object? line)
191 '()
192 (match (string-split line #\space)
193 (((? (cut string-prefix? "#" <>)) _ ...)
194 (loop (read-line port)))
195 ((module-name device-name device-spec)
196 (let* ((device-parts
197 (string-match "([bc])([0-9][0-9]*):([0-9][0-9]*)"
198 device-spec))
199 (type-string (match:substring device-parts 1))
200 (type (match type-string
201 ("c" 'char-special)
202 ("b" 'block-special)))
203 (major-string (match:substring device-parts 2))
204 (major (string->number major-string 10))
205 (minor-string (match:substring device-parts 3))
206 (minor (string->number minor-string 10)))
207 (cons (device-node device-name type major minor module-name)
208 (loop (read-line port)))))
209 (_
210 (begin
211 (format (current-error-port)
212 "read-static-device-nodes: ignored devname line '~a'~%" line)
213 (loop (read-line port))))))))
214
215(define* (mkdir-p* dir #:optional (mode #o755))
216 "This is a variant of 'mkdir-p' that works around
217<http://bugs.gnu.org/24659> by passing MODE explicitly in each 'mkdir' call."
218 (define absolute?
219 (string-prefix? "/" dir))
220
221 (define not-slash
222 (char-set-complement (char-set #\/)))
223
224 (let loop ((components (string-tokenize dir not-slash))
225 (root (if absolute?
226 ""
227 ".")))
228 (match components
229 ((head tail ...)
230 (let ((path (string-append root "/" head)))
231 (catch 'system-error
232 (lambda ()
233 (mkdir path mode)
234 (loop tail path))
235 (lambda args
236 (if (= EEXIST (system-error-errno args))
237 (loop tail path)
238 (apply throw args))))))
239 (() #t))))
240
241(define (report-system-error name . args)
242 "Report a system error for the file NAME."
243 (let ((errno (system-error-errno args)))
244 (format (current-error-port) "could not create '~a': ~a~%" name
245 (strerror errno))))
246
247;; Catch a system-error, log it and don't die from it.
248(define-syntax-rule (catch-system-error name exp)
249 (catch 'system-error
250 (lambda ()
251 exp)
252 (lambda args
253 (apply report-system-error name args))))
254
162a1374 255;; Create a device node like the <device-node> passed here on the file system.
97817e7f
DM
256(define create-device-node
257 (match-lambda
258 (($ <device-node> xname type major minor module)
259 (let ((name (string-append "/dev/" xname)))
260 (mkdir-p* (dirname name))
261 (catch-system-error name
262 (mknod name type #o600 (device-number major minor)))))))
263
264(define* (make-static-device-nodes linux-release-module-directory)
265 "Create static device nodes required by the given Linux release.
266This is required in order to solve a chicken-or-egg problem:
267The Linux kernel has a feature to autoload modules when a device is first
268accessed.
269And udev has a feature to set the permissions of static nodes correctly
270when it is starting up and also to automatically create nodes when hardware
271is hotplugged. That leaves universal device files which are not linked to
272one specific hardware device. These we have to create."
273 (let ((devname-name (string-append linux-release-module-directory "/"
274 "modules.devname")))
275 (for-each create-device-node
276 (call-with-input-file devname-name
277 read-static-device-nodes))))
278
683cba75 279(define* (make-essential-device-nodes #:optional (root "/"))
d91712ee 280 "Make essential device nodes under ROOT/dev."
cc0e575a 281 ;; The hand-made devtmpfs/udev!
d91712ee
LC
282
283 (define (scope dir)
284 (string-append root
285 (if (string-suffix? "/" root)
286 ""
287 "/")
288 dir))
289
290 (unless (file-exists? (scope "dev"))
291 (mkdir (scope "dev")))
292
fc4bc4b6 293 ;; Make the device nodes for SCSI disks.
ac52e80b
LC
294 (make-disk-device-nodes (scope "dev/sda") 8)
295 (make-disk-device-nodes (scope "dev/sdb") 8 16)
296 (make-disk-device-nodes (scope "dev/sdc") 8 32)
297 (make-disk-device-nodes (scope "dev/sdd") 8 48)
298
299 ;; SCSI CD-ROM devices (aka. "/dev/sr0" etc.).
300 (mknod (scope "dev/scd0") 'block-special #o644 (device-number 11 0))
301 (mknod (scope "dev/scd1") 'block-special #o644 (device-number 11 1))
fc4bc4b6
LC
302
303 ;; The virtio (para-virtualized) block devices, as supported by QEMU/KVM.
ac52e80b 304 (make-disk-device-nodes (scope "dev/vda") 252)
d91712ee 305
c04c6ff6
LC
306 ;; Memory (used by Xorg's VESA driver.)
307 (mknod (scope "dev/mem") 'char-special #o640 (device-number 1 1))
308 (mknod (scope "dev/kmem") 'char-special #o640 (device-number 1 2))
309
1c221510
LC
310 ;; Inputs (used by Xorg.)
311 (unless (file-exists? (scope "dev/input"))
312 (mkdir (scope "dev/input")))
313 (mknod (scope "dev/input/mice") 'char-special #o640 (device-number 13 63))
314 (mknod (scope "dev/input/mouse0") 'char-special #o640 (device-number 13 32))
315 (mknod (scope "dev/input/event0") 'char-special #o640 (device-number 13 64))
316
9b4a163a
LC
317 ;; System console. This node is magically created by the kernel on the
318 ;; initrd's root, so don't try to create it in that case.
319 (unless (string=? root "/")
320 (mknod (scope "dev/console") 'char-special #o600
321 (device-number 5 1)))
322
d91712ee 323 ;; TTYs.
29804e6e
LC
324 (mknod (scope "dev/tty") 'char-special #o600
325 (device-number 5 0))
289773c1 326 (chmod (scope "dev/tty") #o666)
d91712ee
LC
327 (let loop ((n 0))
328 (and (< n 50)
329 (let ((name (format #f "dev/tty~a" n)))
29804e6e 330 (mknod (scope name) 'char-special #o600
d91712ee
LC
331 (device-number 4 n))
332 (loop (+ 1 n)))))
333
7f17ff78
LC
334 ;; Serial line.
335 (mknod (scope "dev/ttyS0") 'char-special #o660
336 (device-number 4 64))
337
c9c88118
LC
338 ;; Pseudo ttys.
339 (mknod (scope "dev/ptmx") 'char-special #o666
340 (device-number 5 2))
289773c1 341 (chmod (scope "dev/ptmx") #o666)
c9c88118 342
c865a878 343 ;; Create /dev/pts; it will be mounted later, at boot time.
c9c88118
LC
344 (unless (file-exists? (scope "dev/pts"))
345 (mkdir (scope "dev/pts")))
c9c88118 346
37c825eb
LC
347 ;; Rendez-vous point for syslogd.
348 (mknod (scope "dev/log") 'socket #o666 0)
349 (mknod (scope "dev/kmsg") 'char-special #o600 (device-number 1 11))
350
289773c1
LC
351 ;; Other useful nodes, notably relied on by guix-daemon.
352 (for-each (match-lambda
353 ((file major minor)
354 (mknod (scope file) 'char-special #o666
355 (device-number major minor))
356 (chmod (scope file) #o666)))
357 '(("dev/null" 1 3)
358 ("dev/zero" 1 5)
359 ("dev/full" 1 7)
360 ("dev/random" 1 8)
361 ("dev/urandom" 1 9)))
362
363 (symlink "/proc/self/fd" (scope "dev/fd"))
364 (symlink "/proc/self/fd/0" (scope "dev/stdin"))
365 (symlink "/proc/self/fd/1" (scope "dev/stdout"))
1c96c1bb
LC
366 (symlink "/proc/self/fd/2" (scope "dev/stderr"))
367
3035b50f
LC
368 ;; Loopback devices.
369 (let loop ((i 0))
370 (when (< i 8)
371 (mknod (scope (string-append "dev/loop" (number->string i)))
372 'block-special #o660
373 (device-number 7 i))
374 (loop (+ 1 i))))
375
1c96c1bb
LC
376 ;; File systems in user space (FUSE).
377 (mknod (scope "dev/fuse") 'char-special #o666 (device-number 10 229)))
d91712ee 378
88840f02
LC
379(define %host-qemu-ipv4-address
380 (inet-pton AF_INET "10.0.2.10"))
381
382(define* (configure-qemu-networking #:optional (interface "eth0"))
383 "Setup the INTERFACE network interface and /etc/resolv.conf according to
384QEMU's default networking settings (see net/slirp.c in QEMU for default
385networking values.) Return #t if INTERFACE is up, #f otherwise."
386 (display "configuring QEMU networking...\n")
387 (let* ((sock (socket AF_INET SOCK_STREAM 0))
388 (address (make-socket-address AF_INET %host-qemu-ipv4-address 0))
389 (flags (network-interface-flags sock interface)))
390 (set-network-interface-address sock interface address)
391 (set-network-interface-flags sock interface (logior flags IFF_UP))
392
c0b9213d
LC
393 ;; Hello! We used to create /etc/resolv.conf here, with "nameserver
394 ;; 10.0.2.3\n". However, with Linux-libre 3.16, we're getting ENOSPC.
395 ;; And since it's actually unnecessary, it's gone.
88840f02
LC
396
397 (logand (network-interface-flags sock interface) IFF_UP)))
398
88840f02
LC
399(define (device-number major minor)
400 "Return the device number for the device with MAJOR and MINOR, for use as
401the last argument of `mknod'."
402 (+ (* major 256) minor))
403
7d57cfd3
LC
404(define (pidof program)
405 "Return the PID of the first presumed instance of PROGRAM."
406 (let ((program (basename program)))
407 (find (lambda (pid)
408 (let ((exe (format #f "/proc/~a/exe" pid)))
409 (and=> (false-if-exception (readlink exe))
410 (compose (cut string=? program <>) basename))))
411 (filter-map string->number (scandir "/proc")))))
412
83bcd0b8 413(define* (mount-root-file-system root type
55e21617
GLV
414 #:key volatile-root? (flags 0) options)
415 "Mount the root file system of type TYPE at device ROOT. If VOLATILE-ROOT? is
416true, mount ROOT read-only and make it an overlay with a writable tmpfs using
417the kernel built-in overlayfs. FLAGS and OPTIONS indicates the options to use
cc9b889e 418to mount ROOT, and behave the same as for the `mount' procedure."
41e03c4b 419
4dfbdcbc
LC
420 (if volatile-root?
421 (begin
422 (mkdir-p "/real-root")
cc9b889e 423 (mount root "/real-root" type (logior MS_RDONLY flags) options)
4dfbdcbc
LC
424 (mkdir-p "/rw-root")
425 (mount "none" "/rw-root" "tmpfs")
426
c8289690
HG
427 ;; Create the upperdir and the workdir of the overlayfs
428 (mkdir-p "/rw-root/upper")
429 (mkdir-p "/rw-root/work")
430
4dfbdcbc 431 ;; We want read-write /dev nodes.
c8289690
HG
432 (mkdir-p "/rw-root/upper/dev")
433 (mount "none" "/rw-root/upper/dev" "devtmpfs")
434
435 ;; Make /root an overlay of the tmpfs and the actual root.
436 (mount "none" "/root" "overlay" 0
437 "lowerdir=/real-root,upperdir=/rw-root/upper,workdir=/rw-root/work"))
4dfbdcbc
LC
438 (begin
439 (check-file-system root type)
55e21617 440 (mount root "/root" type flags options)))
b1995341 441
9331ba5d 442 ;; Make sure /root/etc/mtab is a symlink to /proc/self/mounts.
01ed3c4f 443 (false-if-exception
9331ba5d 444 (delete-file "/root/etc/mtab"))
748d4a84 445 (mkdir-p "/root/etc")
9331ba5d 446 (symlink "/proc/self/mounts" "/root/etc/mtab"))
83bcd0b8 447
1d462832
LC
448(define (switch-root root)
449 "Switch to ROOT as the root file system, in a way similar to what
450util-linux' switch_root(8) does."
451 (move-essential-file-systems root)
452 (chdir root)
26a728eb
LC
453
454 ;; Since we're about to 'rm -rf /', try to make sure we're on an initrd.
455 ;; TODO: Use 'statfs' to check the fs type, like klibc does.
456 (when (or (not (file-exists? "/init")) (directory-exists? "/home"))
457 (format (current-error-port)
458 "The root file system is probably not an initrd; \
459bailing out.~%root contents: ~s~%" (scandir "/"))
460 (force-output (current-error-port))
461 (exit 1))
462
463 ;; Delete files from the old root, without crossing mount points (assuming
464 ;; there are no mount points in sub-directories.) That means we're leaving
465 ;; the empty ROOT directory behind us, but that's OK.
466 (let ((root-device (stat:dev (stat "/"))))
467 (for-each (lambda (file)
468 (unless (member file '("." ".."))
469 (let* ((file (string-append "/" file))
470 (device (stat:dev (lstat file))))
471 (when (= device root-device)
472 (delete-file-recursively file)))))
473 (scandir "/")))
474
475 ;; Make ROOT the new root.
1d462832 476 (mount root "/" "" MS_MOVE)
26a728eb
LC
477 (chroot ".")
478 (chdir "/")
479
480 (when (file-exists? "/dev/console")
481 ;; Close the standard file descriptors since they refer to the old
474b832d
LC
482 ;; /dev/console, and reopen them.
483 (let ((console (open-file "/dev/console" "r+b0")))
484 (for-each close-fdes '(0 1 2))
485
486 (dup2 (fileno console) 0)
487 (dup2 (fileno console) 1)
488 (dup2 (fileno console) 2)
489
490 (close-port console))))
1d462832 491
85a83edb 492\f
d4254711
LC
493(define* (boot-system #:key
494 (linux-modules '())
0e704a2d 495 linux-module-directory
ae7a316b 496 keymap-file
d4254711 497 qemu-guest-networking?
3c05b4bc 498 volatile-root?
de1c158f 499 pre-mount
aeed74f3
LC
500 (mounts '())
501 (on-error 'debug))
d4254711 502 "This procedure is meant to be called from an initrd. Boot a system by
0e704a2d 503first loading LINUX-MODULES (a list of module names) from
ae7a316b
LC
504LINUX-MODULE-DIRECTORY, then installing KEYMAP-FILE with 'loadkeys' (if
505KEYMAP-FILE is true), then setting up QEMU guest networking if
0e704a2d
LC
506QEMU-GUEST-NETWORKING? is true, calling PRE-MOUNT, mounting the file systems
507specified in MOUNTS, and finally booting into the new root if any. The initrd
508supports kernel command-line options '--load', '--root', and '--repl'.
d4254711 509
3c05b4bc
LC
510Mount the root file system, specified by the '--root' command-line argument,
511if any.
03ddfaf5 512
1c65cca5 513MOUNTS must be a list of <file-system> objects.
d4254711 514
44ddf33e 515When VOLATILE-ROOT? is true, the root file system is writable but any changes
aeed74f3
LC
516to it are lost.
517
518ON-ERROR is passed to 'call-with-error-handling'; it determines what happens
519upon error."
1c65cca5
LC
520 (define (root-mount-point? fs)
521 (string=? (file-system-mount-point fs) "/"))
3c05b4bc 522
281d80d8
MC
523 (define (device-string->file-system-device device-string)
524 ;; The "--root=SPEC" kernel command-line option always provides a
1c3b709e
S
525 ;; string, but the string can represent a device, an nfs-root, a UUID, or a
526 ;; label. So check for all four.
281d80d8 527 (cond ((string-prefix? "/" device-string) device-string)
1c3b709e 528 ((string-contains device-string ":/") device-string) ; nfs-root
281d80d8
MC
529 ((uuid device-string) => identity)
530 (else (file-system-label device-string))))
900ef20b 531
d4254711
LC
532 (display "Welcome, this is GNU's early boot Guile.\n")
533 (display "Use '--repl' for an initrd REPL.\n\n")
534
e3ced65a 535 (call-with-error-handling
c09903ac
MC
536 (lambda ()
537 (mount-essential-file-systems)
538 (let* ((args (linux-command-line))
539 (to-load (find-long-option "--load" args))
281d80d8
MC
540 (root-fs (find root-mount-point? mounts))
541 (root-fs-type (or (and=> root-fs file-system-type)
542 "ext4"))
543 (root-fs-device (and=> root-fs file-system-device))
544 (root-fs-flags (mount-flags->bit-mask
545 (or (and=> root-fs file-system-flags)
546 '())))
547 (root-options (if root-fs
548 (file-system-options root-fs)
549 #f))
550 ;; --root takes precedence over the 'device' field of the root
551 ;; <file-system> record.
552 (root-device (or (and=> (find-long-option "--root" args)
553 device-string->file-system-device)
554 root-fs-device)))
c09903ac
MC
555
556 (when (member "--repl" args)
557 (start-repl))
558
559 (display "loading kernel modules...\n")
560 (load-linux-modules-from-directory linux-modules
561 linux-module-directory)
562
2072f617
TGR
563 (unless (or (member "hibernate=noresume" args)
564 ;; Also handle the equivalent old-style argument.
565 ;; See Documentation/admin-guide/kernel-parameters.txt.
566 (member "noresume" args))
b9abb301
TGR
567 ;; Try to resume immediately after loading (storage) modules
568 ;; but before any on-disk file systems have been mounted.
569 (false-if-exception ; failure is not fatal
570 (resume-if-hibernated (find-long-option "resume" args))))
571
c09903ac
MC
572 (when keymap-file
573 (let ((status (system* "loadkeys" keymap-file)))
574 (unless (zero? status)
575 ;; Emit a warning rather than abort when we cannot load
576 ;; KEYMAP-FILE.
577 (format (current-error-port)
578 "warning: 'loadkeys' exited with status ~a~%"
579 status))))
580
581 (when qemu-guest-networking?
582 (unless (configure-qemu-networking)
583 (display "network interface is DOWN\n")))
584
585 ;; Prepare the real root file system under /root.
586 (unless (file-exists? "/root")
587 (mkdir "/root"))
588
589 (when (procedure? pre-mount)
590 ;; Do whatever actions are needed before mounting the root file
591 ;; system--e.g., installing device mappings. Error out when the
592 ;; return value is false.
593 (unless (pre-mount)
594 (error "pre-mount actions failed")))
595
596 (setenv "EXT2FS_NO_MTAB_OK" "1")
597
281d80d8
MC
598 (if root-device
599 (mount-root-file-system (canonicalize-device-spec root-device)
600 root-fs-type
601 #:volatile-root? volatile-root?
602 #:flags root-fs-flags
603 #:options root-options)
c09903ac
MC
604 (mount "none" "/root" "tmpfs"))
605
606 ;; Mount the specified file systems.
607 (for-each mount-file-system
608 (remove root-mount-point? mounts))
609
610 (setenv "EXT2FS_NO_MTAB_OK" #f)
611
612 (if to-load
613 (begin
614 (switch-root "/root")
615 (format #t "loading '~a'...\n" to-load)
616
617 (primitive-load to-load)
618
619 (format (current-error-port)
620 "boot program '~a' terminated, rebooting~%"
621 to-load)
622 (sleep 2)
623 (reboot))
624 (begin
625 (display "no boot file passed via '--load'\n")
626 (display "entering a warm and cozy REPL\n")
627 (start-repl)))))
628 #:on-error on-error))
d4254711 629
b37c5441 630;;; linux-boot.scm ends here