gnu: sdl: Fix home page URLs.
[jackhill/guix/guix.git] / gnu / system / vm.scm
CommitLineData
04086015 1;;; GNU Guix --- Functional package management for GNU
735c6dd7 2;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
04086015
LC
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu system vm)
93d44bd8 20 #:use-module (guix config)
04086015 21 #:use-module (guix store)
02100028 22 #:use-module (guix gexp)
04086015
LC
23 #:use-module (guix derivations)
24 #:use-module (guix packages)
d9f0a237 25 #:use-module (guix monads)
548f7a8f 26 #:use-module ((gnu build vm)
66670cf3 27 #:select (qemu-command))
bdb36958 28 #:use-module (gnu packages base)
1b89a66e 29 #:use-module (gnu packages guile)
bdb36958 30 #:use-module (gnu packages gawk)
1b89a66e 31 #:use-module (gnu packages bash)
4f62d8d6 32 #:use-module (gnu packages less)
04086015 33 #:use-module (gnu packages qemu)
cc4a2aeb 34 #:use-module (gnu packages disk)
5b16ff09 35 #:use-module (gnu packages zile)
04086015
LC
36 #:use-module (gnu packages grub)
37 #:use-module (gnu packages linux)
30f25b03 38 #:use-module (gnu packages package-management)
04086015
LC
39 #:use-module ((gnu packages make-bootstrap)
40 #:select (%guile-static-stripped))
9de46ffb 41 #:use-module (gnu packages admin)
0ded70f3
LC
42
43 #:use-module (gnu system shadow)
44 #:use-module (gnu system linux)
735c6dd7 45 #:use-module (gnu system linux-initrd)
0ded70f3 46 #:use-module (gnu system grub)
c5df1839 47 #:use-module (gnu system file-systems)
033adfe7 48 #:use-module (gnu system)
db4fdc04 49 #:use-module (gnu services)
0ded70f3 50
ca85d7bc 51 #:use-module (srfi srfi-1)
04086015
LC
52 #:use-module (srfi srfi-26)
53 #:use-module (ice-9 match)
0ded70f3 54
04086015 55 #:export (expression->derivation-in-linux-vm
aedb72fb 56 qemu-image
fd3bfc44
LC
57 system-qemu-image
58 system-qemu-image/shared-store
1e77fedb
LC
59 system-qemu-image/shared-store-script
60 system-disk-image))
04086015
LC
61
62\f
63;;; Commentary:
64;;;
65;;; Tools to evaluate build expressions within virtual machines.
66;;;
67;;; Code:
68
ef09fdfb
LC
69(define* (input->name+output tuple #:key (system (%current-system)))
70 "Return as a monadic value a name/file-name pair corresponding to TUPLE, an
71input tuple. The output file name is when building for SYSTEM."
72 (with-monad %store-monad
73 (match tuple
74 ((input (? package? package))
75 (mlet %store-monad ((out (package-file package #:system system)))
76 (return `(,input . ,out))))
77 ((input (? package? package) sub-drv)
78 (mlet %store-monad ((out (package-file package
79 #:output sub-drv
80 #:system system)))
81 (return `(,input . ,out))))
82 ((input (? derivation? drv))
83 (return `(,input . ,(derivation->output-path drv))))
84 ((input (? derivation? drv) sub-drv)
85 (return `(,input . ,(derivation->output-path drv sub-drv))))
86 ((input (and (? string?) (? store-path?) file))
87 (return `(,input . ,file))))))
88
83bcd0b8
LC
89(define %linux-vm-file-systems
90 ;; File systems mounted for 'derivation-in-linux-vm'. The store and /xchg
91 ;; directory are shared with the host over 9p.
92 (list (file-system
93 (mount-point (%store-prefix))
94 (device "store")
95 (type "9p")
96 (needed-for-boot? #t)
3c05b4bc
LC
97 (options "trans=virtio")
98 (check? #f))
83bcd0b8
LC
99 (file-system
100 (mount-point "/xchg")
101 (device "xchg")
102 (type "9p")
103 (needed-for-boot? #t)
3c05b4bc
LC
104 (options "trans=virtio")
105 (check? #f))))
83bcd0b8 106
d9f0a237 107(define* (expression->derivation-in-linux-vm name exp
04086015 108 #:key
2455085a 109 (system (%current-system))
04086015 110 (linux linux-libre)
735c6dd7 111 initrd
f200b03e 112 (qemu qemu-headless)
04086015 113 (env-vars '())
1aa0033b 114 (modules
548f7a8f
LC
115 '((gnu build vm)
116 (gnu build install)
8a9e21d1 117 (gnu build linux-boot)
e2f4b305 118 (gnu build file-systems)
6fd1a796
LC
119 (guix build utils)
120 (guix build store-copy)))
04086015
LC
121 (guile-for-build
122 (%guile-for-build))
123
124 (make-disk-image? #f)
ca85d7bc 125 (references-graphs #f)
defa1b9b 126 (memory-size 256)
c4a74364 127 (disk-image-format "qcow2")
04086015
LC
128 (disk-image-size
129 (* 100 (expt 2 20))))
735c6dd7 130 "Evaluate EXP in a QEMU virtual machine running LINUX with INITRD (a
1aa0033b 131derivation). In the virtual machine, EXP has access to all its inputs from the
735c6dd7 132store; it should put its output files in the `/xchg' directory, which is
defa1b9b
LC
133copied to the derivation's output when the VM terminates. The virtual machine
134runs with MEMORY-SIZE MiB of memory.
04086015 135
c4a74364
LC
136When MAKE-DISK-IMAGE? is true, then create a QEMU disk image of type
137DISK-IMAGE-FORMAT (e.g., 'qcow2' or 'raw'), of DISK-IMAGE-SIZE bytes and
138return it.
ca85d7bc 139
1aa0033b 140MODULES is the set of modules imported in the execution environment of EXP.
ade5ce7a 141
ca85d7bc
LC
142When REFERENCES-GRAPHS is true, it must be a list of file name/store path
143pairs, as for `derivation'. The files containing the reference graphs are
144made available under the /xchg CIFS share."
d9f0a237 145 (mlet* %store-monad
1aa0033b
LC
146 ((module-dir (imported-modules modules))
147 (compiled (compiled-modules modules))
148 (user-builder (gexp->file "builder-in-linux-vm" exp))
02100028
LC
149 (loader (gexp->file "linux-vm-loader"
150 #~(begin
151 (set! %load-path
152 (cons #$module-dir %load-path))
153 (set! %load-compiled-path
154 (cons #$compiled
155 %load-compiled-path))
156 (primitive-load #$user-builder))))
bdb36958 157 (coreutils -> (canonical-package coreutils))
d4254711 158 (initrd (if initrd ; use the default initrd?
735c6dd7 159 (return initrd)
060238ae 160 (base-initrd %linux-vm-file-systems
24e0160a 161 #:virtio? #t
6c1df081 162 #:qemu-networking? #t))))
1aa0033b
LC
163
164 (define builder
165 ;; Code that launches the VM that evaluates EXP.
166 #~(begin
167 (use-modules (guix build utils)
548f7a8f 168 (gnu build vm))
1aa0033b
LC
169
170 (let ((inputs '#$(list qemu coreutils))
171 (linux (string-append #$linux "/bzImage"))
172 (initrd (string-append #$initrd "/initrd"))
173 (loader #$loader)
174 (graphs '#$(match references-graphs
175 (((graph-files . _) ...) graph-files)
176 (_ #f))))
177
178 (set-path-environment-variable "PATH" '("bin") inputs)
179
180 (load-in-linux-vm loader
181 #:output #$output
182 #:linux linux #:initrd initrd
183 #:memory-size #$memory-size
184 #:make-disk-image? #$make-disk-image?
c4a74364 185 #:disk-image-format #$disk-image-format
1aa0033b
LC
186 #:disk-image-size #$disk-image-size
187 #:references-graphs graphs))))
188
189 (gexp->derivation name builder
190 ;; TODO: Require the "kvm" feature.
191 #:system system
192 #:env-vars env-vars
5ce3defe 193 #:modules modules
1aa0033b
LC
194 #:guile-for-build guile-for-build
195 #:references-graphs references-graphs)))
d9f0a237
LC
196
197(define* (qemu-image #:key
04086015
LC
198 (name "qemu-image")
199 (system (%current-system))
1aa0033b 200 (qemu qemu-headless)
04086015 201 (disk-image-size (* 100 (expt 2 20)))
c4a74364 202 (disk-image-format "qcow2")
03ddfaf5 203 (file-system-type "ext4")
ef9fc40d 204 file-system-label
f2c403ea 205 os-derivation
0e2ddecd 206 grub-configuration
150e20dd 207 (register-closures? #t)
150e20dd
LC
208 (inputs '())
209 copy-inputs?)
c4a74364 210 "Return a bootable, stand-alone QEMU image of type DISK-IMAGE-FORMAT (e.g.,
ef9fc40d
LC
211'qcow2' or 'raw'), with a root partition of type FILE-SYSTEM-TYPE.
212Optionally, FILE-SYSTEM-LABEL can be specified as the volume name for the root
f2c403ea
LC
213partition. The returned image is a full disk image that runs OS-DERIVATION,
214with a GRUB installation that uses GRUB-CONFIGURATION as its configuration
215file (GRUB-CONFIGURATION must be the name of a file in the VM.)
93d44bd8 216
150e20dd
LC
217INPUTS is a list of inputs (as for packages). When COPY-INPUTS? is true, copy
218all of INPUTS into the image being built. When REGISTER-CLOSURES? is true,
219register INPUTS in the store database of the image so that Guix can be used in
b4140694 220the image."
b53833b2
LC
221 (expression->derivation-in-linux-vm
222 name
223 #~(begin
224 (use-modules (gnu build vm)
225 (guix build utils))
1aa0033b 226
b53833b2
LC
227 (let ((inputs
228 '#$(append (list qemu parted grub e2fsprogs util-linux)
229 (map canonical-package
230 (list sed grep coreutils findutils gawk))
231 (if register-closures? (list guix) '())))
1aa0033b 232
b53833b2
LC
233 ;; This variable is unused but allows us to add INPUTS-TO-COPY
234 ;; as inputs.
235 (to-register
236 '#$(map (match-lambda
237 ((name thing) thing)
238 ((name thing output) `(,thing ,output)))
239 inputs)))
1aa0033b 240
b53833b2 241 (set-path-environment-variable "PATH" '("bin" "sbin") inputs)
1aa0033b 242
b53833b2
LC
243 (let ((graphs '#$(match inputs
244 (((names . _) ...)
245 names))))
246 (initialize-hard-disk "/dev/vda"
247 #:system-directory #$os-derivation
248 #:grub.cfg #$grub-configuration
249 #:closures graphs
250 #:copy-closures? #$copy-inputs?
251 #:register-closures? #$register-closures?
252 #:disk-image-size #$disk-image-size
253 #:file-system-type #$file-system-type
254 #:file-system-label #$file-system-label)
255 (reboot))))
256 #:system system
257 #:make-disk-image? #t
258 #:disk-image-size disk-image-size
259 #:disk-image-format disk-image-format
260 #:references-graphs inputs))
04086015
LC
261
262\f
263;;;
1e77fedb 264;;; VM and disk images.
04086015
LC
265;;;
266
1e77fedb
LC
267(define* (system-disk-image os
268 #:key
56ef7fcc 269 (name "disk-image")
1e77fedb
LC
270 (file-system-type "ext4")
271 (disk-image-size (* 900 (expt 2 20)))
272 (volatile? #t))
273 "Return the derivation of a disk image of DISK-IMAGE-SIZE bytes of the
274system described by OS. Said image can be copied on a USB stick as is. When
275VOLATILE? is true, the root file system is made volatile; this is useful
276to USB sticks meant to be read-only."
10ace2c4
LC
277 (define root-label
278 ;; Volume name of the root file system. Since we don't know which device
279 ;; will hold it, we use the volume name to find it (using the UUID would
280 ;; be even better, but somewhat less convenient.)
281 "gnu-disk-image")
282
1e77fedb
LC
283 (define file-systems-to-keep
284 (remove (lambda (fs)
285 (string=? (file-system-mount-point fs) "/"))
286 (operating-system-file-systems os)))
287
288 (let ((os (operating-system (inherit os)
932e1f92
LC
289 ;; Since this is meant to be used on real hardware, don't
290 ;; install QEMU networking or anything like that, but make sure
291 ;; USB mass storage devices are available.
52ac153e
LC
292 (initrd (lambda (file-systems . rest)
293 (apply base-initrd file-systems
294 #:volatile-root? #t
295 #:extra-modules '("usb-storage.ko")
296 rest)))
1e77fedb
LC
297
298 ;; Force our own root file system.
299 (file-systems (cons (file-system
300 (mount-point "/")
10ace2c4 301 (device root-label)
d4c87617 302 (title 'label)
1e77fedb
LC
303 (type file-system-type))
304 file-systems-to-keep)))))
305
306 (mlet* %store-monad ((os-drv (operating-system-derivation os))
307 (grub.cfg (operating-system-grub.cfg os)))
56ef7fcc 308 (qemu-image #:name name
f2c403ea 309 #:os-derivation os-drv
56ef7fcc 310 #:grub-configuration grub.cfg
1e77fedb
LC
311 #:disk-image-size disk-image-size
312 #:disk-image-format "raw"
313 #:file-system-type file-system-type
10ace2c4 314 #:file-system-label root-label
1e77fedb
LC
315 #:copy-inputs? #t
316 #:register-closures? #t
317 #:inputs `(("system" ,os-drv)
318 ("grub.cfg" ,grub.cfg))))))
319
0b14d1d7 320(define* (system-qemu-image os
66f23d66
LC
321 #:key
322 (file-system-type "ext4")
323 (disk-image-size (* 900 (expt 2 20))))
324 "Return the derivation of a freestanding QEMU image of DISK-IMAGE-SIZE bytes
325of the GNU system as described by OS."
1eeccc2f
LC
326 (define file-systems-to-keep
327 ;; Keep only file systems other than root and not normally bound to real
328 ;; devices.
329 (remove (lambda (fs)
330 (let ((target (file-system-mount-point fs))
331 (source (file-system-device fs)))
332 (or (string=? target "/")
333 (string-prefix? "/dev/" source))))
334 (operating-system-file-systems os)))
335
66f23d66 336 (let ((os (operating-system (inherit os)
e84d8b30 337 ;; Use an initrd with the whole QEMU shebang.
52ac153e
LC
338 (initrd (lambda (file-systems . rest)
339 (apply base-initrd file-systems
340 #:virtio? #t
341 #:qemu-networking? #t
342 rest)))
e84d8b30 343
1eeccc2f
LC
344 ;; Force our own root file system.
345 (file-systems (cons (file-system
66f23d66
LC
346 (mount-point "/")
347 (device "/dev/sda1")
1eeccc2f
LC
348 (type file-system-type))
349 file-systems-to-keep)))))
66f23d66
LC
350 (mlet* %store-monad
351 ((os-drv (operating-system-derivation os))
b4140694 352 (grub.cfg (operating-system-grub.cfg os)))
f2c403ea
LC
353 (qemu-image #:os-derivation os-drv
354 #:grub-configuration grub.cfg
66f23d66
LC
355 #:disk-image-size disk-image-size
356 #:file-system-type file-system-type
b4140694
LC
357 #:inputs `(("system" ,os-drv)
358 ("grub.cfg" ,grub.cfg))
150e20dd 359 #:copy-inputs? #t))))
04086015 360
83bcd0b8
LC
361(define (virtualized-operating-system os)
362 "Return an operating system based on OS suitable for use in a virtualized
363environment with the store shared with the host."
364 (operating-system (inherit os)
52ac153e
LC
365 (initrd (lambda (file-systems . rest)
366 (apply base-initrd file-systems
367 #:volatile-root? #t
368 #:virtio? #t
369 #:qemu-networking? #t
370 rest)))
1eeccc2f
LC
371 (file-systems (cons* (file-system
372 (mount-point "/")
373 (device "/dev/vda1")
374 (type "ext4"))
375 (file-system
376 (mount-point (%store-prefix))
377 (device "store")
378 (type "9p")
379 (needed-for-boot? #t)
380 (options "trans=virtio")
381 (check? #f))
382
383 ;; Remove file systems that conflict with those
384 ;; above, or that are normally bound to real devices.
385 (remove (lambda (fs)
386 (let ((target (file-system-mount-point fs))
387 (source (file-system-device fs)))
388 (or (string=? target (%store-prefix))
389 (string=? target "/")
390 (string-prefix? "/dev/" source))))
391 (operating-system-file-systems os))))))
83bcd0b8 392
fd3bfc44 393(define* (system-qemu-image/shared-store
0b14d1d7 394 os
fd3bfc44
LC
395 #:key (disk-image-size (* 15 (expt 2 20))))
396 "Return a derivation that builds a QEMU image of OS that shares its store
397with the host."
398 (mlet* %store-monad
399 ((os-drv (operating-system-derivation os))
b4140694 400 (grub.cfg (operating-system-grub.cfg os)))
f2c403ea
LC
401 (qemu-image #:os-derivation os-drv
402 #:grub-configuration grub.cfg
150e20dd
LC
403 #:disk-image-size disk-image-size
404 #:inputs `(("system" ,os-drv))
405
406 ;; XXX: Passing #t here is too slow, so let it off by default.
407 #:register-closures? #f
408 #:copy-inputs? #f)))
fd3bfc44
LC
409
410(define* (system-qemu-image/shared-store-script
0b14d1d7 411 os
fd3bfc44 412 #:key
1f3838ac 413 (qemu qemu)
fd3bfc44
LC
414 (graphic? #t))
415 "Return a derivation that builds a script to run a virtual machine image of
416OS that shares its store with the host."
c47f0d8b 417 (mlet* %store-monad
83bcd0b8 418 ((os -> (virtualized-operating-system os))
c47f0d8b 419 (os-drv (operating-system-derivation os))
c47f0d8b 420 (image (system-qemu-image/shared-store os)))
fd3bfc44 421 (define builder
02100028
LC
422 #~(call-with-output-file #$output
423 (lambda (port)
424 (display
425 (string-append "#!" #$bash "/bin/sh
66670cf3
LC
426exec " #$qemu "/bin/" #$(qemu-command (%current-system))
427" -enable-kvm -no-reboot -net nic,model=virtio \
02100028 428 -virtfs local,path=" #$(%store-prefix) ",security_model=none,mount_tag=store \
1f3838ac 429 -net user \
02100028 430 -kernel " #$(operating-system-kernel os) "/bzImage \
83bcd0b8 431 -initrd " #$os-drv "/initrd \
02100028 432-append \"" #$(if graphic? "" "console=ttyS0 ")
b4140694 433 "--system=" #$os-drv " --load=" #$os-drv "/boot --root=/dev/vda1\" \
5a84a6c3 434 -serial stdio \
02100028 435 -drive file=" #$image
70608adb
LC
436 ",if=virtio,cache=writeback,werror=report,readonly \
437 -m 256
438\n")
02100028
LC
439 port)
440 (chmod port #o555))))
441
442 (gexp->derivation "run-vm.sh" builder)))
fd3bfc44 443
04086015 444;;; vm.scm ends here