gnu: Add rust-sharded-slab-0.1.
[jackhill/guix/guix.git] / gnu / system / vm.scm
CommitLineData
04086015 1;;; GNU Guix --- Functional package management for GNU
09844816 2;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
944d2b17 3;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
2ca712bd 4;;; Copyright © 2016, 2017 Leo Famulari <leo@famulari.name>
07f812c4 5;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
ecf5d537 6;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
8c9bf294 7;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
04086015
LC
8;;;
9;;; This file is part of GNU Guix.
10;;;
11;;; GNU Guix is free software; you can redistribute it and/or modify it
12;;; under the terms of the GNU General Public License as published by
13;;; the Free Software Foundation; either version 3 of the License, or (at
14;;; your option) any later version.
15;;;
16;;; GNU Guix is distributed in the hope that it will be useful, but
17;;; WITHOUT ANY WARRANTY; without even the implied warranty of
18;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;;; GNU General Public License for more details.
20;;;
21;;; You should have received a copy of the GNU General Public License
22;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23
24(define-module (gnu system vm)
93d44bd8 25 #:use-module (guix config)
04086015 26 #:use-module (guix store)
02100028 27 #:use-module (guix gexp)
04086015
LC
28 #:use-module (guix derivations)
29 #:use-module (guix packages)
d9f0a237 30 #:use-module (guix monads)
fcf63cf8 31 #:use-module (guix records)
239c6e27 32 #:use-module (guix modules)
00e39b2e 33 #:use-module (guix utils)
ca719424 34 #:use-module (gcrypt hash)
dffc5ab5 35 #:use-module (guix base32)
c45477d2 36 #:use-module ((guix self) #:select (make-config.scm))
fcf63cf8 37
548f7a8f 38 #:use-module ((gnu build vm)
66670cf3 39 #:select (qemu-command))
bdb36958 40 #:use-module (gnu packages base)
862e38d5 41 #:use-module (gnu packages bootloaders)
be1033a3 42 #:use-module (gnu packages cdrom)
a335f6fc 43 #:use-module (gnu packages compression)
1b89a66e 44 #:use-module (gnu packages guile)
ca719424 45 #:autoload (gnu packages gnupg) (guile-gcrypt)
bdb36958 46 #:use-module (gnu packages gawk)
1b89a66e 47 #:use-module (gnu packages bash)
4f62d8d6 48 #:use-module (gnu packages less)
59132b80 49 #:use-module (gnu packages virtualization)
cc4a2aeb 50 #:use-module (gnu packages disk)
5b16ff09 51 #:use-module (gnu packages zile)
04086015 52 #:use-module (gnu packages linux)
9de46ffb 53 #:use-module (gnu packages admin)
0ded70f3 54
9121ce55 55 #:use-module (gnu bootloader)
9b396c0c 56 #:use-module (gnu bootloader grub)
0ded70f3 57 #:use-module (gnu system shadow)
6e828634 58 #:use-module (gnu system pam)
69cae3d3 59 #:use-module (gnu system linux-container)
735c6dd7 60 #:use-module (gnu system linux-initrd)
b09a8da4 61 #:use-module (gnu bootloader)
c5df1839 62 #:use-module (gnu system file-systems)
033adfe7 63 #:use-module (gnu system)
db4fdc04 64 #:use-module (gnu services)
d03de6be 65 #:use-module (gnu services base)
9b336338 66 #:use-module (gnu system uuid)
0ded70f3 67
ca85d7bc 68 #:use-module (srfi srfi-1)
04086015 69 #:use-module (srfi srfi-26)
5f7fe1c5 70 #:use-module (rnrs bytevectors)
04086015 71 #:use-module (ice-9 match)
0ded70f3 72
04086015 73 #:export (expression->derivation-in-linux-vm
aedb72fb 74 qemu-image
e9f693d0 75 virtualized-operating-system
fd3bfc44 76 system-qemu-image
fcf63cf8 77
fd3bfc44 78 system-qemu-image/shared-store
1e77fedb 79 system-qemu-image/shared-store-script
a335f6fc 80 system-docker-image
ed419fa0
LC
81
82 virtual-machine
83 virtual-machine?))
04086015
LC
84
85\f
86;;; Commentary:
87;;;
88;;; Tools to evaluate build expressions within virtual machines.
89;;;
90;;; Code:
91
83bcd0b8 92(define %linux-vm-file-systems
8c9bf294
CM
93 ;; File systems mounted for 'derivation-in-linux-vm'. These are shared with
94 ;; the host over 9p.
66ec3895
LC
95 ;;
96 ;; The 9p documentation says that cache=loose is "intended for exclusive,
97 ;; read-only mounts", without additional details. It's much faster than the
98 ;; default cache=none, especially when copying and registering store items.
99 ;; Thus, use cache=loose, except for /xchg where we want to ensure
100 ;; consistency.
83bcd0b8
LC
101 (list (file-system
102 (mount-point (%store-prefix))
103 (device "store")
104 (type "9p")
105 (needed-for-boot? #t)
fce22547
LC
106 (flags '(read-only))
107 (options "trans=virtio,cache=loose")
3c05b4bc 108 (check? #f))
83bcd0b8
LC
109 (file-system
110 (mount-point "/xchg")
111 (device "xchg")
112 (type "9p")
113 (needed-for-boot? #t)
66ec3895 114 (options "trans=virtio")
8c9bf294
CM
115 (check? #f))
116 (file-system
117 (mount-point "/tmp")
118 (device "tmp")
119 (type "9p")
120 (needed-for-boot? #t)
fce22547 121 (options "trans=virtio,cache=loose")
3c05b4bc 122 (check? #f))))
83bcd0b8 123
c45477d2
LC
124(define not-config?
125 ;; Select (guix …) and (gnu …) modules, except (guix config).
126 (match-lambda
127 (('guix 'config) #f)
128 (('guix rest ...) #t)
129 (('gnu rest ...) #t)
130 (rest #f)))
131
ca719424
LC
132(define gcrypt-sqlite3&co
133 ;; Guile-Gcrypt, Guile-SQLite3, and their propagated inputs.
134 (append-map (lambda (package)
135 (cons package
910d0121
LC
136 (match (package-transitive-propagated-inputs package)
137 (((labels packages) ...)
138 packages))))
ca719424 139 (list guile-gcrypt guile-sqlite3)))
c45477d2 140
d9f0a237 141(define* (expression->derivation-in-linux-vm name exp
04086015 142 #:key
b3477234 143 (system (%current-system))
04086015 144 (linux linux-libre)
735c6dd7 145 initrd
06da1a6b 146 (qemu qemu-minimal)
04086015 147 (env-vars '())
04086015
LC
148 (guile-for-build
149 (%guile-for-build))
50e53c1c
LC
150 (file-systems
151 %linux-vm-file-systems)
04086015 152
8d033e3e 153 (single-file-output? #f)
04086015 154 (make-disk-image? #f)
ca85d7bc 155 (references-graphs #f)
defa1b9b 156 (memory-size 256)
c4a74364 157 (disk-image-format "qcow2")
a328f66a
LC
158 (disk-image-size 'guess)
159
160 (substitutable? #t))
735c6dd7 161 "Evaluate EXP in a QEMU virtual machine running LINUX with INITRD (a
8d033e3e 162derivation). The virtual machine runs with MEMORY-SIZE MiB of memory. In the
50e53c1c
LC
163virtual machine, EXP has access to FILE-SYSTEMS, which, by default, includes a
1649p share of the store, the '/xchg' where EXP should put its output file(s),
165and a 9p share of /tmp.
8d033e3e
LC
166
167If SINGLE-FILE-OUTPUT? is true, copy a single file from '/xchg' to OUTPUT.
168Otherwise, copy the contents of /xchg to a new directory OUTPUT.
04086015 169
c4a74364
LC
170When MAKE-DISK-IMAGE? is true, then create a QEMU disk image of type
171DISK-IMAGE-FORMAT (e.g., 'qcow2' or 'raw'), of DISK-IMAGE-SIZE bytes and
a8ac4f08
LC
172return it. When DISK-IMAGE-SIZE is 'guess, estimate the image size based
173based on the size of the closure of REFERENCES-GRAPHS.
ca85d7bc
LC
174
175When REFERENCES-GRAPHS is true, it must be a list of file name/store path
176pairs, as for `derivation'. The files containing the reference graphs are
a328f66a
LC
177made available under the /xchg CIFS share.
178
179SUBSTITUTABLE? determines whether the returned derivation should be marked as
180substitutable."
be43c08b
LC
181 (define user-builder
182 (program-file "builder-in-linux-vm" exp))
183
184 (define loader
185 ;; Invoke USER-BUILDER instead using 'primitive-load'. The reason for
186 ;; this is to allow USER-BUILDER to dlopen stuff by using a full-featured
187 ;; Guile, which it couldn't do using the statically-linked guile used in
188 ;; the initrd. See example at
189 ;; <https://lists.gnu.org/archive/html/guix-devel/2017-10/msg00233.html>.
190 (program-file "linux-vm-loader"
be6520e6
LC
191 ;; Communicate USER-BUILDER's exit status via /xchg so that
192 ;; the host can distinguish between success, failure, and
193 ;; kernel panic.
194 #~(let ((status (system* #$user-builder)))
195 (call-with-output-file "/xchg/.exit-status"
196 (lambda (port)
197 (write status port)))
198 (sync)
199 (reboot))))
be43c08b 200
502f609d
LC
201 (define-syntax-rule (check predicate)
202 (let-system (system target)
203 (predicate (or target system))))
204
e34ae75d
LC
205 (let ((initrd (or initrd
206 (base-initrd file-systems
207 #:on-error 'backtrace
208 #:linux linux
209 #:linux-modules %base-initrd-modules
210 #:qemu-networking? #t))))
1aa0033b
LC
211
212 (define builder
213 ;; Code that launches the VM that evaluates EXP.
ca719424 214 (with-extensions gcrypt-sqlite3&co
c45477d2
LC
215 (with-imported-modules `(,@(source-module-closure
216 '((guix build utils)
217 (gnu build vm))
218 #:select? not-config?)
ca719424
LC
219
220 ;; For consumption by (gnu store database).
221 ((guix config) => ,(make-config.scm)))
c45477d2
LC
222 #~(begin
223 (use-modules (guix build utils)
224 (gnu build vm))
225
000e7a0a
LC
226 ;; Allow non-ASCII file names--e.g., 'nss-certs'--to be decoded
227 ;; by 'estimated-partition-size' below.
228 (setenv "GUIX_LOCPATH"
229 #+(file-append glibc-utf8-locales "/lib/locale"))
230 (setlocale LC_ALL "en_US.utf8")
231
d4ddf22d
MO
232 (let* ((native-inputs
233 '#+(list qemu (canonical-package coreutils)))
b3477234
LC
234 (linux (string-append
235 #+linux "/"
236 #+(system-linux-image-file-name system)))
237 (initrd #+initrd)
238 (loader #+loader)
c45477d2
LC
239 (graphs '#$(match references-graphs
240 (((graph-files . _) ...) graph-files)
241 (_ #f)))
502f609d
LC
242 (target #$(let-system (system target)
243 (or target system)))
c45477d2
LC
244 (size #$(if (eq? 'guess disk-image-size)
245 #~(+ (* 70 (expt 2 20)) ;ESP
246 (estimated-partition-size graphs))
247 disk-image-size)))
248
d4ddf22d 249 (set-path-environment-variable "PATH" '("bin") native-inputs)
c45477d2
LC
250
251 (load-in-linux-vm loader
252 #:output #$output
253 #:linux linux #:initrd initrd
d4ddf22d 254 #:qemu (qemu-command target)
c45477d2
LC
255 #:memory-size #$memory-size
256 #:make-disk-image? #$make-disk-image?
257 #:single-file-output? #$single-file-output?
c45477d2
LC
258 #:disk-image-format #$disk-image-format
259 #:disk-image-size size
260 #:references-graphs graphs))))))
1aa0033b
LC
261
262 (gexp->derivation name builder
263 ;; TODO: Require the "kvm" feature.
264 #:system system
b3477234 265 #:target #f ;EXP is always executed natively
1aa0033b 266 #:env-vars env-vars
1aa0033b 267 #:guile-for-build guile-for-build
a328f66a
LC
268 #:references-graphs references-graphs
269 #:substitutable? substitutable?)))
d9f0a237 270
d03de6be
MC
271(define (has-guix-service-type? os)
272 "Return true if OS contains a service of the type GUIX-SERVICE-TYPE."
273 (not (not (find (lambda (service)
274 (eq? (service-kind service) guix-service-type))
275 (operating-system-services os)))))
276
d9f0a237 277(define* (qemu-image #:key
04086015
LC
278 (name "qemu-image")
279 (system (%current-system))
d4ddf22d 280 (target (%current-target-system))
06da1a6b 281 (qemu qemu-minimal)
a8ac4f08 282 (disk-image-size 'guess)
c4a74364 283 (disk-image-format "qcow2")
03ddfaf5 284 (file-system-type "ext4")
4d1ff68d 285 (file-system-options '())
cd45d656 286 (device-nodes 'linux)
82782d8c 287 (extra-directives '())
ef9fc40d 288 file-system-label
fd3b4b98 289 file-system-uuid
8bff7dc2 290 os
9121ce55
MO
291 bootcfg-drv
292 bootloader
d03de6be 293 (register-closures? (has-guix-service-type? os))
150e20dd 294 (inputs '())
a328f66a
LC
295 copy-inputs?
296 (substitutable? #t))
c4a74364 297 "Return a bootable, stand-alone QEMU image of type DISK-IMAGE-FORMAT (e.g.,
ef9fc40d
LC
298'qcow2' or 'raw'), with a root partition of type FILE-SYSTEM-TYPE.
299Optionally, FILE-SYSTEM-LABEL can be specified as the volume name for the root
fd3b4b98 300partition; likewise FILE-SYSTEM-UUID, if true, specifies the UUID of the root
4d1ff68d
LC
301partition (a UUID object). FILE-SYSTEM-OPTIONS is an optional list of
302command-line options passed to 'mkfs.ext4' (or similar).
fd3b4b98
LC
303
304The returned image is a full disk image that runs OS-DERIVATION,
f2c403ea
LC
305with a GRUB installation that uses GRUB-CONFIGURATION as its configuration
306file (GRUB-CONFIGURATION must be the name of a file in the VM.)
93d44bd8 307
150e20dd
LC
308INPUTS is a list of inputs (as for packages). When COPY-INPUTS? is true, copy
309all of INPUTS into the image being built. When REGISTER-CLOSURES? is true,
310register INPUTS in the store database of the image so that Guix can be used in
d03de6be
MC
311the image. By default, REGISTER-CLOSURES? is set to true only if a service of
312type GUIX-SERVICE-TYPE is present in the services definition of the operating
82782d8c
LC
313system.
314
cd45d656
LC
315When DEVICE-NODES is 'linux, create Linux-device block and character devices
316under /dev. When it is 'hurd, do Hurdish things.
317
82782d8c
LC
318EXTRA-DIRECTIVES is an optional list of directives to populate the root file
319system that is passed to 'populate-root-file-system'."
c45477d2
LC
320 (define schema
321 (and register-closures?
322 (local-file (search-path %load-path
323 "guix/store/schema.sql"))))
324
52c1b90a
LC
325 (define preserve-target
326 (if target
327 (lambda (obj)
328 (with-parameters ((%current-target-system target))
329 obj))
330 identity))
331
332 (define inputs*
333 (map (match-lambda
334 ((name thing)
335 `(,name ,(preserve-target thing)))
336 ((name thing output)
337 `(,name ,(preserve-target thing) ,output)))
338 inputs))
339
b53833b2
LC
340 (expression->derivation-in-linux-vm
341 name
ca719424 342 (with-extensions gcrypt-sqlite3&co
c45477d2
LC
343 (with-imported-modules `(,@(source-module-closure '((gnu build vm)
344 (gnu build bootloader)
23567138 345 (gnu build hurd-boot)
c45477d2
LC
346 (guix store database)
347 (guix build utils))
348 #:select? not-config?)
ca719424 349 ((guix config) => ,(make-config.scm)))
c45477d2
LC
350 #~(begin
351 (use-modules (gnu build bootloader)
352 (gnu build vm)
b37c5441
JN
353 ((gnu build hurd-boot)
354 #:select (make-hurd-device-nodes))
cd45d656 355 ((gnu build linux-boot)
b37c5441 356 #:select (make-essential-device-nodes))
c45477d2
LC
357 (guix store database)
358 (guix build utils)
359 (srfi srfi-26)
360 (ice-9 binary-ports))
361
362 (sql-schema #$schema)
363
9c941364
LC
364 ;; Allow non-ASCII file names--e.g., 'nss-certs'--to be decoded.
365 (setenv "GUIX_LOCPATH"
366 #+(file-append glibc-utf8-locales "/lib/locale"))
367 (setlocale LC_ALL "en_US.utf8")
368
c45477d2 369 (let ((inputs
96cb3f8a 370 '#+(append (list parted e2fsprogs dosfstools)
c45477d2
LC
371 (map canonical-package
372 (list sed grep coreutils findutils gawk))))
373
374 ;; This variable is unused but allows us to add INPUTS-TO-COPY
375 ;; as inputs.
376 (to-register
377 '#$(map (match-lambda
378 ((name thing) thing)
379 ((name thing output) `(,thing ,output)))
52c1b90a 380 inputs*)))
c45477d2
LC
381
382 (set-path-environment-variable "PATH" '("bin" "sbin") inputs)
383
384 (let* ((graphs '#$(match inputs
385 (((names . _) ...)
386 names)))
387 (initialize (root-partition-initializer
82782d8c 388 #:extra-directives '#$extra-directives
c45477d2
LC
389 #:closures graphs
390 #:copy-closures? #$copy-inputs?
391 #:register-closures? #$register-closures?
52c1b90a 392 #:system-directory #$(preserve-target os)
b5460d95 393
cd45d656
LC
394 #:make-device-nodes
395 #$(match device-nodes
396 ('linux #~make-essential-device-nodes)
397 ('hurd #~make-hurd-device-nodes))
398
b5460d95
LC
399 ;; Disable deduplication to speed things up,
400 ;; and because it doesn't help much for a
401 ;; single system generation.
402 #:deduplicate? #f))
c45477d2
LC
403 (root-size #$(if (eq? 'guess disk-image-size)
404 #~(max
405 ;; Minimum 20 MiB root size
406 (* 20 (expt 2 20))
407 (estimated-partition-size
408 (map (cut string-append "/xchg/" <>)
409 graphs)))
410 (- disk-image-size
411 (* 50 (expt 2 20)))))
412 (partitions
413 (append
414 (list (partition
415 (size root-size)
416 (label #$file-system-label)
417 (uuid #$(and=> file-system-uuid
418 uuid-bytevector))
419 (file-system #$file-system-type)
4d1ff68d 420 (file-system-options '#$file-system-options)
c45477d2
LC
421 (flags '(boot))
422 (initializer initialize)))
423 ;; Append a small EFI System Partition for use with UEFI
424 ;; bootloaders if we are not targeting ARM because UEFI
425 ;; support in U-Boot is experimental.
426 ;;
1ee72bb5 427 ;; FIXME: ‘target-arm?’ may be not operate on the right
c45477d2
LC
428 ;; system/target values. Rewrite using ‘let-system’ when
429 ;; available.
1ee72bb5 430 (if #$(target-arm?)
c45477d2
LC
431 '()
432 (list (partition
433 ;; The standalone grub image is about 10MiB, but
434 ;; leave some room for custom or multiple images.
435 (size (* 40 (expt 2 20)))
436 (label "GNU-ESP") ;cosmetic only
437 ;; Use "vfat" here since this property is used
438 ;; when mounting. The actual FAT-ness is based
439 ;; on file system size (16 in this case).
440 (file-system "vfat")
1ee72bb5
MO
441 (flags '(esp)))))))
442 (grub-efi #$(and (not (target-arm?)) grub-efi)))
c45477d2
LC
443 (initialize-hard-disk "/dev/vda"
444 #:partitions partitions
1ee72bb5 445 #:grub-efi grub-efi
c45477d2 446 #:bootloader-package
96cb3f8a 447 #+(bootloader-package bootloader)
52c1b90a 448 #:bootcfg #$(preserve-target bootcfg-drv)
c45477d2
LC
449 #:bootcfg-location
450 #$(bootloader-configuration-file bootloader)
451 #:bootloader-installer
96cb3f8a 452 #+(bootloader-installer bootloader)))))))
b53833b2
LC
453 #:system system
454 #:make-disk-image? #t
455 #:disk-image-size disk-image-size
456 #:disk-image-format disk-image-format
52c1b90a 457 #:references-graphs inputs*
a328f66a 458 #:substitutable? substitutable?))
04086015 459
a335f6fc
CM
460(define* (system-docker-image os
461 #:key
247649d4 462 (name "guix-docker-image")
d6c43d7b
LC
463 (register-closures? (has-guix-service-type? os))
464 shared-network?)
a335f6fc 465 "Build a docker image. OS is the desired <operating-system>. NAME is the
d6c43d7b
LC
466base name to use for the output file. When SHARED-NETWORK? is true, assume
467that the container will share network with the host and thus doesn't need a
468DHCP client, nscd, and so on.
469
470When REGISTER-CLOSURES? is true, register the closure of OS with Guix in the
471resulting Docker image. By default, REGISTER-CLOSURES? is set to true only if
472a service of type GUIX-SERVICE-TYPE is present in the services definition of
473the operating system."
c45477d2
LC
474 (define schema
475 (and register-closures?
476 (local-file (search-path %load-path
477 "guix/store/schema.sql"))))
9f160a0d 478
247649d4
LC
479 (define boot-program
480 ;; Program that runs the boot script of OS, which in turn starts shepherd.
481 (program-file "boot-program"
482 #~(let ((system (cadr (command-line))))
483 (setenv "GUIX_NEW_SYSTEM" system)
484 (execl #$(file-append guile-2.2 "/bin/guile")
485 "guile" "--no-auto-compile"
486 (string-append system "/boot")))))
487
488
489 (let ((os (operating-system-with-gc-roots
d6c43d7b
LC
490 (containerized-operating-system os '()
491 #:shared-network?
492 shared-network?)
247649d4 493 (list boot-program)))
69cae3d3
LC
494 (name (string-append name ".tar.gz"))
495 (graph "system-graph"))
a335f6fc 496 (define build
81c3dc32 497 (with-extensions (cons guile-json-3 ;for (guix docker)
ca719424 498 gcrypt-sqlite3&co) ;for (guix store database)
9f160a0d
LC
499 (with-imported-modules `(,@(source-module-closure
500 '((guix docker)
c45477d2 501 (guix store database)
9f160a0d 502 (guix build utils)
c45477d2 503 (guix build store-copy)
9f160a0d
LC
504 (gnu build vm))
505 #:select? not-config?)
ca719424 506 ((guix config) => ,(make-config.scm)))
9f160a0d
LC
507 #~(begin
508 (use-modules (guix docker)
509 (guix build utils)
510 (gnu build vm)
511 (srfi srfi-19)
c45477d2
LC
512 (guix build store-copy)
513 (guix store database))
514
515 ;; Set the SQL schema location.
516 (sql-schema #$schema)
9f160a0d 517
ed504caf
LC
518 ;; Allow non-ASCII file names--e.g., 'nss-certs'--to be decoded.
519 (setenv "GUIX_LOCPATH"
520 #+(file-append glibc-utf8-locales "/lib/locale"))
521 (setlocale LC_ALL "en_US.utf8")
522
c45477d2 523 (let* (;; This initializer requires elevated privileges that are
9f160a0d
LC
524 ;; not normally available in the build environment (e.g.,
525 ;; it needs to create device nodes). In order to obtain
526 ;; such privileges, we run it as root in a VM.
527 (initialize (root-partition-initializer
528 #:closures '(#$graph)
529 #:register-closures? #$register-closures?
69cae3d3 530 #:system-directory #$os
9f160a0d
LC
531 ;; De-duplication would fail due to
532 ;; cross-device link errors, so don't do it.
533 #:deduplicate? #f))
534 ;; Even as root in a VM, the initializer would fail due to
535 ;; lack of privileges if we use a root-directory that is on
536 ;; a file system that is shared with the host (e.g., /tmp).
537 (root-directory "/guixsd-system-root"))
c45477d2 538 (set-path-environment-variable "PATH" '("bin" "sbin") '(#+tar))
9f160a0d
LC
539 (mkdir root-directory)
540 (initialize root-directory)
541 (build-docker-image
542 (string-append "/xchg/" #$name) ;; The output file.
543 (cons* root-directory
6892f0a2
LC
544 (map store-info-item
545 (call-with-input-file
546 (string-append "/xchg/" #$graph)
547 read-reference-graph)))
69cae3d3 548 #$os
247649d4 549 #:entry-point '(#$boot-program #$os)
9f160a0d
LC
550 #:compressor '(#+(file-append gzip "/bin/gzip") "-9n")
551 #:creation-time (make-time time-utc 0 1)
66ec3895 552 #:transformations `((,root-directory -> ""))))))))
247649d4 553
a335f6fc 554 (expression->derivation-in-linux-vm
be43c08b 555 name build
a335f6fc
CM
556 #:make-disk-image? #f
557 #:single-file-output? #t
69cae3d3 558 #:references-graphs `((,graph ,os)))))
a335f6fc 559
04086015
LC
560\f
561;;;
1e77fedb 562;;; VM and disk images.
04086015
LC
563;;;
564
0b14d1d7 565(define* (system-qemu-image os
66f23d66
LC
566 #:key
567 (file-system-type "ext4")
568 (disk-image-size (* 900 (expt 2 20))))
569 "Return the derivation of a freestanding QEMU image of DISK-IMAGE-SIZE bytes
570of the GNU system as described by OS."
1eeccc2f
LC
571 (define file-systems-to-keep
572 ;; Keep only file systems other than root and not normally bound to real
573 ;; devices.
574 (remove (lambda (fs)
575 (let ((target (file-system-mount-point fs))
576 (source (file-system-device fs)))
577 (or (string=? target "/")
341f6799
LC
578 (and (string? source)
579 (string-prefix? "/dev/" source))
580 (uuid? source)
581 (file-system-label? source))))
1eeccc2f
LC
582 (operating-system-file-systems os)))
583
61b94b8c
LC
584 (define root-uuid
585 ;; UUID of the root file system.
586 (operating-system-uuid os
587 (if (string=? file-system-type "iso9660")
588 'iso9660
589 'dce)))
590
591
7a20c167
LC
592 (let* ((os (operating-system
593 (inherit os)
594
595 ;; As in 'virtualized-operating-system', use BIOS-style GRUB.
596 (bootloader (bootloader-configuration
597 (bootloader grub-bootloader)
598 (target "/dev/vda")))
599
8bff7dc2
LC
600 ;; Assume we have an initrd with the whole QEMU shebang.
601
602 ;; Force our own root file system. Refer to it by UUID so that
603 ;; it works regardless of how the image is used ("qemu -hda",
604 ;; Xen, etc.).
605 (file-systems (cons (file-system
606 (mount-point "/")
607 (device root-uuid)
608 (type file-system-type))
609 file-systems-to-keep))))
610 (bootcfg (operating-system-bootcfg os)))
611 (qemu-image #:os os
612 #:bootcfg-drv bootcfg
613 #:bootloader (bootloader-configuration-bootloader
614 (operating-system-bootloader os))
615 #:disk-image-size disk-image-size
616 #:file-system-type file-system-type
617 #:file-system-uuid root-uuid
618 #:inputs `(("system" ,os)
619 ("bootcfg" ,bootcfg))
620 #:copy-inputs? #t)))
04086015 621
fcf63cf8
LC
622\f
623;;;
624;;; VMs that share file systems with the host.
625;;;
626
96ffa27b
LC
627(define (file-system->mount-tag fs)
628 "Return a 9p mount tag for host file system FS."
dffc5ab5
LC
629 ;; QEMU mount tags must be ASCII, at most 31-byte long, cannot contain
630 ;; slashes, and cannot start with '_'. Compute an identifier that
631 ;; corresponds to the rules.
96ffa27b 632 (string-append "TAG"
dffc5ab5
LC
633 (string-drop (bytevector->base32-string
634 (sha1 (string->utf8 fs)))
635 4)))
96ffa27b 636
fcf63cf8
LC
637(define (mapping->file-system mapping)
638 "Return a 9p file system that realizes MAPPING."
639 (match mapping
640 (($ <file-system-mapping> source target writable?)
641 (file-system
642 (mount-point target)
643 (device (file-system->mount-tag source))
644 (type "9p")
645 (flags (if writable? '() '(read-only)))
7eeb7815
LC
646 (options (string-append "trans=virtio"
647 (if writable? "" ",cache=loose")))
fcf63cf8
LC
648 (check? #f)
649 (create-mount-point? #t)))))
650
909de139 651(define* (virtualized-operating-system os mappings #:optional (full-boot? #f))
83bcd0b8 652 "Return an operating system based on OS suitable for use in a virtualized
fcf63cf8
LC
653environment with the store shared with the host. MAPPINGS is a list of
654<file-system-mapping> to realize in the virtualized OS."
655 (define user-file-systems
656 ;; Remove file systems that conflict with those added below, or that are
657 ;; normally bound to real devices.
658 (remove (lambda (fs)
659 (let ((target (file-system-mount-point fs))
660 (source (file-system-device fs)))
661 (or (string=? target (%store-prefix))
662 (string=? target "/")
a5acc17a 663 (and (string? source)
f00515b4
LC
664 (string-prefix? "/dev/" source))
665
666 ;; Labels and UUIDs are necessarily invalid in the VM.
667 (and (file-system-mount? fs)
a5acc17a 668 (or (file-system-label? source)
f00515b4 669 (uuid? source))))))
fcf63cf8
LC
670 (operating-system-file-systems os)))
671
909de139
DC
672 (define virtual-file-systems
673 (cons (file-system
674 (mount-point "/")
675 (device "/dev/vda1")
676 (type "ext4"))
677
678 (append (map mapping->file-system mappings)
679 user-file-systems)))
680
83bcd0b8 681 (operating-system (inherit os)
9b396c0c
LC
682
683 ;; XXX: Until we run QEMU with UEFI support (with the OVMF firmware),
684 ;; force the traditional i386/BIOS method.
685 ;; See <https://bugs.gnu.org/28768>.
686 (bootloader (bootloader-configuration
132823c2 687 (inherit (operating-system-bootloader os))
9b396c0c
LC
688 (bootloader grub-bootloader)
689 (target "/dev/vda")))
690
52ac153e 691 (initrd (lambda (file-systems . rest)
b8e77811
MO
692 (apply (operating-system-initrd os)
693 file-systems
52ac153e 694 #:volatile-root? #t
52ac153e 695 rest)))
65fb4515
LC
696
697 ;; Disable swap.
698 (swap-devices '())
699
909de139
DC
700 ;; XXX: When FULL-BOOT? is true, do not add a 9p mount for /gnu/store
701 ;; since that would lead the bootloader config to look for the kernel and
702 ;; initrd in it.
703 (file-systems (if full-boot?
704 virtual-file-systems
705 (cons
706 (file-system
707 (inherit (mapping->file-system %store-mapping))
708 (needed-for-boot? #t))
709 virtual-file-systems)))))
83bcd0b8 710
fd3bfc44 711(define* (system-qemu-image/shared-store
0b14d1d7 712 os
6aa260af 713 #:key
60f759f0
LC
714 (system (%current-system))
715 (target (%current-target-system))
6aa260af 716 full-boot?
4c0416ae 717 (disk-image-size (* (if full-boot? 500 30) (expt 2 20))))
fd3bfc44 718 "Return a derivation that builds a QEMU image of OS that shares its store
6aa260af
LC
719with the host.
720
721When FULL-BOOT? is true, return an image that does a complete boot sequence,
722bootloaded included; thus, make a disk image that contains everything the
723bootloader refers to: OS kernel, initrd, bootloader data, etc."
56f9d442
LC
724 (define root-uuid
725 ;; Use a fixed UUID to improve determinism.
726 (operating-system-uuid os 'dce))
727
8bff7dc2
LC
728 (define bootcfg
729 (operating-system-bootcfg os))
730
731 ;; XXX: When FULL-BOOT? is true, we end up creating an image that contains
732 ;; BOOTCFG and all its dependencies, including the output of OS.
733 ;; This is more than needed (we only need the kernel, initrd, GRUB for its
734 ;; font, and the background image), but it's hard to filter that.
735 (qemu-image #:os os
60f759f0
LC
736 #:system system
737 #:target target
8bff7dc2
LC
738 #:bootcfg-drv bootcfg
739 #:bootloader (bootloader-configuration-bootloader
740 (operating-system-bootloader os))
741 #:disk-image-size disk-image-size
742 #:file-system-uuid root-uuid
743 #:inputs (if full-boot?
744 `(("bootcfg" ,bootcfg))
745 '())
746
747 ;; XXX: Passing #t here is too slow, so let it off by default.
748 #:register-closures? #f
749 #:copy-inputs? full-boot?))
fd3bfc44 750
96ffa27b
LC
751(define* (common-qemu-options image shared-fs)
752 "Return the a string-value gexp with the common QEMU options to boot IMAGE,
753with '-virtfs' options for the host file systems listed in SHARED-FS."
26a076ed 754
96ffa27b 755 (define (virtfs-option fs)
26a076ed
DC
756 #~(format #f "-virtfs local,path=~s,security_model=none,mount_tag=~s"
757 #$fs #$(file-system->mount-tag fs)))
96ffa27b 758
26a076ed 759 #~(;; Only enable kvm if we see /dev/kvm exists.
944d2b17
CAW
760 ;; This allows users without hardware virtualization to still use these
761 ;; commands.
26a076ed
DC
762 #$@(if (file-exists? "/dev/kvm")
763 '("-enable-kvm")
764 '())
765
766 "-no-reboot"
2ca712bd
LF
767 "-object" "rng-random,filename=/dev/urandom,id=guixsd-vm-rng"
768 "-device" "virtio-rng-pci,rng=guixsd-vm-rng"
26a076ed
DC
769
770 #$@(map virtfs-option shared-fs)
771 "-vga std"
772 (format #f "-drive file=~a,if=virtio,cache=writeback,werror=report,readonly"
ebfb71d4 773 #$image)))
3c1f0e3b 774
ab11f0be
LC
775(define* (system-qemu-image/shared-store-script os
776 #:key
60f759f0
LC
777 (system (%current-system))
778 (target (%current-target-system))
ab11f0be
LC
779 (qemu qemu)
780 (graphic? #t)
ebfb71d4 781 (memory-size 256)
fcf63cf8 782 (mappings '())
6aa260af
LC
783 full-boot?
784 (disk-image-size
9a1bfe76 785 (* (if full-boot? 500 70)
ed419fa0
LC
786 (expt 2 20)))
787 (options '()))
fd3bfc44 788 "Return a derivation that builds a script to run a virtual machine image of
ebfb71d4
JN
789OS that shares its store with the host. The virtual machine runs with
790MEMORY-SIZE MiB of memory.
6aa260af 791
fcf63cf8
LC
792MAPPINGS is a list of <file-system-mapping> specifying mapping of host file
793systems into the guest.
794
6aa260af
LC
795When FULL-BOOT? is true, the returned script runs everything starting from the
796bootloader; otherwise it directly starts the operating system kernel. The
797DISK-IMAGE-SIZE parameter specifies the size in bytes of the root disk image;
798it is mostly useful when FULL-BOOT? is true."
909de139 799 (mlet* %store-monad ((os -> (virtualized-operating-system os mappings full-boot?))
6aa260af
LC
800 (image (system-qemu-image/shared-store
801 os
60f759f0
LC
802 #:system system
803 #:target target
6aa260af
LC
804 #:full-boot? full-boot?
805 #:disk-image-size disk-image-size)))
26a076ed 806 (define kernel-arguments
83071b05 807 #~(list #$@(if graphic? #~() #~("console=ttyS0"))
a7ef45d9 808 #+@(operating-system-kernel-arguments os "/dev/vda1")))
26a076ed
DC
809
810 (define qemu-exec
e768e4e9
LC
811 #~(list #+(file-append qemu "/bin/"
812 (qemu-command (or target system)))
26a076ed
DC
813 #$@(if full-boot?
814 #~()
815 #~("-kernel" #$(operating-system-kernel-file os)
a7ef45d9 816 "-initrd" #$(file-append os "/initrd")
26a076ed
DC
817 (format #f "-append ~s"
818 (string-join #$kernel-arguments " "))))
819 #$@(common-qemu-options image
820 (map file-system-mapping-source
ebfb71d4 821 (cons %store-mapping mappings)))
ed419fa0
LC
822 "-m " (number->string #$memory-size)
823 #$@options))
26a076ed 824
fd3bfc44 825 (define builder
02100028
LC
826 #~(call-with-output-file #$output
827 (lambda (port)
26a076ed 828 (format port "#!~a~% exec ~a \"$@\"~%"
e768e4e9 829 #+(file-append bash "/bin/sh")
26a076ed 830 (string-join #$qemu-exec " "))
02100028
LC
831 (chmod port #o555))))
832
833 (gexp->derivation "run-vm.sh" builder)))
fd3bfc44 834
ed419fa0
LC
835\f
836;;;
837;;; High-level abstraction.
838;;;
839
840(define-record-type* <virtual-machine> %virtual-machine
841 make-virtual-machine
842 virtual-machine?
843 (operating-system virtual-machine-operating-system) ;<operating-system>
844 (qemu virtual-machine-qemu ;<package>
845 (default qemu))
846 (graphic? virtual-machine-graphic? ;Boolean
847 (default #f))
848 (memory-size virtual-machine-memory-size ;integer (MiB)
849 (default 256))
eb152070
CB
850 (disk-image-size virtual-machine-disk-image-size ;integer (bytes)
851 (default 'guess))
ed419fa0
LC
852 (port-forwardings virtual-machine-port-forwardings ;list of integer pairs
853 (default '())))
854
855(define-syntax virtual-machine
856 (syntax-rules ()
857 "Declare a virtual machine running the specified OS, with the given
858options."
859 ((_ os) ;shortcut
860 (%virtual-machine (operating-system os)))
861 ((_ fields ...)
862 (%virtual-machine fields ...))))
863
864(define (port-forwardings->qemu-options forwardings)
865 "Return the QEMU option for the given port FORWARDINGS as a string, where
866FORWARDINGS is a list of host-port/guest-port pairs."
867 (string-join
868 (map (match-lambda
869 ((host-port . guest-port)
870 (string-append "hostfwd=tcp::"
871 (number->string host-port)
872 "-:" (number->string guest-port))))
873 forwardings)
874 ","))
875
876(define-gexp-compiler (virtual-machine-compiler (vm <virtual-machine>)
877 system target)
ed419fa0 878 (match vm
eb152070 879 (($ <virtual-machine> os qemu graphic? memory-size disk-image-size ())
ed419fa0 880 (system-qemu-image/shared-store-script os
60f759f0
LC
881 #:system system
882 #:target target
ed419fa0
LC
883 #:qemu qemu
884 #:graphic? graphic?
eb152070
CB
885 #:memory-size memory-size
886 #:disk-image-size
887 disk-image-size))
888 (($ <virtual-machine> os qemu graphic? memory-size disk-image-size
889 forwardings)
ed419fa0 890 (let ((options
8e53fe2b
MB
891 `("-nic" ,(string-append
892 "user,model=virtio-net-pci,"
ed419fa0
LC
893 (port-forwardings->qemu-options forwardings)))))
894 (system-qemu-image/shared-store-script os
60f759f0
LC
895 #:system system
896 #:target target
ed419fa0
LC
897 #:qemu qemu
898 #:graphic? graphic?
899 #:memory-size memory-size
eb152070
CB
900 #:disk-image-size
901 disk-image-size
ed419fa0
LC
902 #:options options)))))
903
04086015 904;;; vm.scm ends here