2013-02-15 21:28:26 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-01-29 07:04:00 -05:00
|
|
|
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2013-02-15 21:28:26 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu system vm)
|
2013-08-31 17:01:56 -04:00
|
|
|
|
#:use-module (guix config)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:use-module (guix store)
|
2014-04-26 10:36:48 -04:00
|
|
|
|
#:use-module (guix gexp)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
|
#:use-module (guix packages)
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
#:use-module (guix monads)
|
2013-09-27 07:28:52 -04:00
|
|
|
|
#:use-module ((gnu packages base)
|
2014-04-11 12:26:35 -04:00
|
|
|
|
#:select (%final-inputs))
|
2013-09-04 18:45:53 -04:00
|
|
|
|
#:use-module (gnu packages guile)
|
|
|
|
|
#:use-module (gnu packages bash)
|
2013-12-09 17:45:27 -05:00
|
|
|
|
#:use-module (gnu packages less)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:use-module (gnu packages qemu)
|
|
|
|
|
#:use-module (gnu packages parted)
|
2013-09-26 18:45:53 -04:00
|
|
|
|
#:use-module (gnu packages zile)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:use-module (gnu packages grub)
|
|
|
|
|
#:use-module (gnu packages linux)
|
2013-09-24 16:40:33 -04:00
|
|
|
|
#:use-module (gnu packages package-management)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:use-module ((gnu packages make-bootstrap)
|
|
|
|
|
#:select (%guile-static-stripped))
|
2014-01-13 17:21:47 -05:00
|
|
|
|
#:use-module (gnu packages admin)
|
2013-09-11 16:36:50 -04:00
|
|
|
|
|
|
|
|
|
#:use-module (gnu system shadow)
|
|
|
|
|
#:use-module (gnu system linux)
|
2014-01-29 07:04:00 -05:00
|
|
|
|
#:use-module (gnu system linux-initrd)
|
2013-09-11 16:36:50 -04:00
|
|
|
|
#:use-module (gnu system grub)
|
2014-05-20 15:59:08 -04:00
|
|
|
|
#:use-module (gnu system file-systems)
|
2013-12-09 15:32:36 -05:00
|
|
|
|
#:use-module (gnu system)
|
2014-02-19 14:58:24 -05:00
|
|
|
|
#:use-module (gnu services)
|
2013-09-11 16:36:50 -04:00
|
|
|
|
|
2013-08-31 16:55:04 -04:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:use-module (ice-9 match)
|
2013-09-11 16:36:50 -04:00
|
|
|
|
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:export (expression->derivation-in-linux-vm
|
2013-09-11 14:08:53 -04:00
|
|
|
|
qemu-image
|
2014-01-31 08:36:48 -05:00
|
|
|
|
system-qemu-image
|
|
|
|
|
system-qemu-image/shared-store
|
2014-05-22 17:12:36 -04:00
|
|
|
|
system-qemu-image/shared-store-script
|
|
|
|
|
system-disk-image))
|
2013-02-15 21:28:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; Tools to evaluate build expressions within virtual machines.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2014-04-11 07:48:55 -04:00
|
|
|
|
(define* (input->name+output tuple #:key (system (%current-system)))
|
|
|
|
|
"Return as a monadic value a name/file-name pair corresponding to TUPLE, an
|
|
|
|
|
input tuple. The output file name is when building for SYSTEM."
|
|
|
|
|
(with-monad %store-monad
|
|
|
|
|
(match tuple
|
|
|
|
|
((input (? package? package))
|
|
|
|
|
(mlet %store-monad ((out (package-file package #:system system)))
|
|
|
|
|
(return `(,input . ,out))))
|
|
|
|
|
((input (? package? package) sub-drv)
|
|
|
|
|
(mlet %store-monad ((out (package-file package
|
|
|
|
|
#:output sub-drv
|
|
|
|
|
#:system system)))
|
|
|
|
|
(return `(,input . ,out))))
|
|
|
|
|
((input (? derivation? drv))
|
|
|
|
|
(return `(,input . ,(derivation->output-path drv))))
|
|
|
|
|
((input (? derivation? drv) sub-drv)
|
|
|
|
|
(return `(,input . ,(derivation->output-path drv sub-drv))))
|
|
|
|
|
((input (and (? string?) (? store-path?) file))
|
|
|
|
|
(return `(,input . ,file))))))
|
|
|
|
|
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(define %linux-vm-file-systems
|
|
|
|
|
;; File systems mounted for 'derivation-in-linux-vm'. The store and /xchg
|
|
|
|
|
;; directory are shared with the host over 9p.
|
|
|
|
|
(list (file-system
|
|
|
|
|
(mount-point (%store-prefix))
|
|
|
|
|
(device "store")
|
|
|
|
|
(type "9p")
|
|
|
|
|
(needed-for-boot? #t)
|
2014-05-03 18:30:39 -04:00
|
|
|
|
(options "trans=virtio")
|
|
|
|
|
(check? #f))
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(file-system
|
|
|
|
|
(mount-point "/xchg")
|
|
|
|
|
(device "xchg")
|
|
|
|
|
(type "9p")
|
|
|
|
|
(needed-for-boot? #t)
|
2014-05-03 18:30:39 -04:00
|
|
|
|
(options "trans=virtio")
|
|
|
|
|
(check? #f))))
|
2014-05-02 18:26:07 -04:00
|
|
|
|
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
(define* (expression->derivation-in-linux-vm name exp
|
2013-02-15 21:28:26 -05:00
|
|
|
|
#:key
|
2013-08-27 13:04:14 -04:00
|
|
|
|
(system (%current-system))
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(linux linux-libre)
|
2014-01-29 07:04:00 -05:00
|
|
|
|
initrd
|
2014-04-09 06:13:22 -04:00
|
|
|
|
(qemu qemu-headless)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(env-vars '())
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(modules
|
2014-04-11 12:42:30 -04:00
|
|
|
|
'((guix build vm)
|
2014-05-15 17:37:46 -04:00
|
|
|
|
(guix build install)
|
2014-04-11 12:42:30 -04:00
|
|
|
|
(guix build linux-initrd)
|
|
|
|
|
(guix build utils)))
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(guile-for-build
|
|
|
|
|
(%guile-for-build))
|
|
|
|
|
|
|
|
|
|
(make-disk-image? #f)
|
2013-08-31 16:55:04 -04:00
|
|
|
|
(references-graphs #f)
|
2014-04-09 07:47:57 -04:00
|
|
|
|
(memory-size 256)
|
2014-05-22 16:30:13 -04:00
|
|
|
|
(disk-image-format "qcow2")
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(disk-image-size
|
|
|
|
|
(* 100 (expt 2 20))))
|
2014-01-29 07:04:00 -05:00
|
|
|
|
"Evaluate EXP in a QEMU virtual machine running LINUX with INITRD (a
|
2014-04-27 08:58:15 -04:00
|
|
|
|
derivation). In the virtual machine, EXP has access to all its inputs from the
|
2014-01-29 07:04:00 -05:00
|
|
|
|
store; it should put its output files in the `/xchg' directory, which is
|
2014-04-09 07:47:57 -04:00
|
|
|
|
copied to the derivation's output when the VM terminates. The virtual machine
|
|
|
|
|
runs with MEMORY-SIZE MiB of memory.
|
2013-02-15 21:28:26 -05:00
|
|
|
|
|
2014-05-22 16:30:13 -04:00
|
|
|
|
When MAKE-DISK-IMAGE? is true, then create a QEMU disk image of type
|
|
|
|
|
DISK-IMAGE-FORMAT (e.g., 'qcow2' or 'raw'), of DISK-IMAGE-SIZE bytes and
|
|
|
|
|
return it.
|
2013-08-31 16:55:04 -04:00
|
|
|
|
|
2014-04-27 08:58:15 -04:00
|
|
|
|
MODULES is the set of modules imported in the execution environment of EXP.
|
2014-04-11 12:42:30 -04:00
|
|
|
|
|
2013-08-31 16:55:04 -04:00
|
|
|
|
When REFERENCES-GRAPHS is true, it must be a list of file name/store path
|
|
|
|
|
pairs, as for `derivation'. The files containing the reference graphs are
|
|
|
|
|
made available under the /xchg CIFS share."
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
(mlet* %store-monad
|
2014-04-27 08:58:15 -04:00
|
|
|
|
((module-dir (imported-modules modules))
|
|
|
|
|
(compiled (compiled-modules modules))
|
|
|
|
|
(user-builder (gexp->file "builder-in-linux-vm" exp))
|
2014-04-26 10:36:48 -04:00
|
|
|
|
(loader (gexp->file "linux-vm-loader"
|
|
|
|
|
#~(begin
|
|
|
|
|
(set! %load-path
|
|
|
|
|
(cons #$module-dir %load-path))
|
|
|
|
|
(set! %load-compiled-path
|
|
|
|
|
(cons #$compiled
|
|
|
|
|
%load-compiled-path))
|
|
|
|
|
(primitive-load #$user-builder))))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
(coreutils -> (car (assoc-ref %final-inputs "coreutils")))
|
2014-01-29 15:57:56 -05:00
|
|
|
|
(initrd (if initrd ; use the default initrd?
|
2014-01-29 07:04:00 -05:00
|
|
|
|
(return initrd)
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(qemu-initrd %linux-vm-file-systems
|
|
|
|
|
#:guile-modules-in-chroot? #t))))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
|
|
|
|
|
(define builder
|
|
|
|
|
;; Code that launches the VM that evaluates EXP.
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils)
|
|
|
|
|
(guix build vm))
|
|
|
|
|
|
|
|
|
|
(let ((inputs '#$(list qemu coreutils))
|
|
|
|
|
(linux (string-append #$linux "/bzImage"))
|
|
|
|
|
(initrd (string-append #$initrd "/initrd"))
|
|
|
|
|
(loader #$loader)
|
|
|
|
|
(graphs '#$(match references-graphs
|
|
|
|
|
(((graph-files . _) ...) graph-files)
|
|
|
|
|
(_ #f))))
|
|
|
|
|
|
|
|
|
|
(set-path-environment-variable "PATH" '("bin") inputs)
|
|
|
|
|
|
|
|
|
|
(load-in-linux-vm loader
|
|
|
|
|
#:output #$output
|
|
|
|
|
#:linux linux #:initrd initrd
|
|
|
|
|
#:memory-size #$memory-size
|
|
|
|
|
#:make-disk-image? #$make-disk-image?
|
2014-05-22 16:30:13 -04:00
|
|
|
|
#:disk-image-format #$disk-image-format
|
2014-04-27 08:58:15 -04:00
|
|
|
|
#:disk-image-size #$disk-image-size
|
|
|
|
|
#:references-graphs graphs))))
|
|
|
|
|
|
|
|
|
|
(gexp->derivation name builder
|
|
|
|
|
;; TODO: Require the "kvm" feature.
|
|
|
|
|
#:system system
|
|
|
|
|
#:env-vars env-vars
|
2014-05-15 17:37:46 -04:00
|
|
|
|
#:modules modules
|
2014-04-27 08:58:15 -04:00
|
|
|
|
#:guile-for-build guile-for-build
|
|
|
|
|
#:references-graphs references-graphs)))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
|
|
|
|
|
(define* (qemu-image #:key
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(name "qemu-image")
|
|
|
|
|
(system (%current-system))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(qemu qemu-headless)
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(disk-image-size (* 100 (expt 2 20)))
|
2014-05-22 16:30:13 -04:00
|
|
|
|
(disk-image-format "qcow2")
|
2014-05-03 06:16:10 -04:00
|
|
|
|
(file-system-type "ext4")
|
2014-05-29 17:07:43 -04:00
|
|
|
|
file-system-label
|
2013-09-07 11:23:23 -04:00
|
|
|
|
grub-configuration
|
2014-05-15 16:55:14 -04:00
|
|
|
|
(register-closures? #t)
|
|
|
|
|
(inputs '())
|
|
|
|
|
copy-inputs?)
|
2014-05-22 16:30:13 -04:00
|
|
|
|
"Return a bootable, stand-alone QEMU image of type DISK-IMAGE-FORMAT (e.g.,
|
2014-05-29 17:07:43 -04:00
|
|
|
|
'qcow2' or 'raw'), with a root partition of type FILE-SYSTEM-TYPE.
|
|
|
|
|
Optionally, FILE-SYSTEM-LABEL can be specified as the volume name for the root
|
|
|
|
|
partition. The returned image is a full disk image, with a GRUB installation
|
|
|
|
|
that uses GRUB-CONFIGURATION as its configuration file (GRUB-CONFIGURATION
|
|
|
|
|
must be the name of a file in the VM.)
|
2013-08-31 17:01:56 -04:00
|
|
|
|
|
2014-05-15 16:55:14 -04:00
|
|
|
|
INPUTS is a list of inputs (as for packages). When COPY-INPUTS? is true, copy
|
|
|
|
|
all of INPUTS into the image being built. When REGISTER-CLOSURES? is true,
|
|
|
|
|
register INPUTS in the store database of the image so that Guix can be used in
|
2014-05-17 11:39:30 -04:00
|
|
|
|
the image."
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
(mlet %store-monad
|
2014-05-15 16:55:14 -04:00
|
|
|
|
((graph (sequence %store-monad (map input->name+output inputs))))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
(expression->derivation-in-linux-vm
|
2014-04-27 08:58:15 -04:00
|
|
|
|
name
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build vm)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
|
|
|
|
|
(let ((inputs
|
|
|
|
|
'#$(append (list qemu parted grub e2fsprogs util-linux)
|
|
|
|
|
(map (compose car (cut assoc-ref %final-inputs <>))
|
|
|
|
|
'("sed" "grep" "coreutils" "findutils" "gawk"))
|
2014-05-15 16:55:14 -04:00
|
|
|
|
(if register-closures? (list guix) '())))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
|
|
|
|
|
;; This variable is unused but allows us to add INPUTS-TO-COPY
|
|
|
|
|
;; as inputs.
|
2014-05-15 16:55:14 -04:00
|
|
|
|
(to-register
|
2014-04-27 08:58:15 -04:00
|
|
|
|
'#$(map (match-lambda
|
|
|
|
|
((name thing) thing)
|
|
|
|
|
((name thing output) `(,thing ,output)))
|
2014-05-15 16:55:14 -04:00
|
|
|
|
inputs)))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
|
|
|
|
|
(set-path-environment-variable "PATH" '("bin" "sbin") inputs)
|
|
|
|
|
|
2014-05-15 16:55:14 -04:00
|
|
|
|
(let ((graphs '#$(match inputs
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(((names . _) ...)
|
|
|
|
|
names))))
|
2014-05-22 16:32:53 -04:00
|
|
|
|
(initialize-hard-disk "/dev/vda"
|
2014-05-19 16:00:46 -04:00
|
|
|
|
#:grub.cfg #$grub-configuration
|
2014-05-15 16:55:14 -04:00
|
|
|
|
#:closures graphs
|
|
|
|
|
#:copy-closures? #$copy-inputs?
|
|
|
|
|
#:register-closures? #$register-closures?
|
2014-04-27 08:58:15 -04:00
|
|
|
|
#:disk-image-size #$disk-image-size
|
2014-05-29 17:07:43 -04:00
|
|
|
|
#:file-system-type #$file-system-type
|
|
|
|
|
#:file-system-label #$file-system-label)
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(reboot))))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
|
#:system system
|
|
|
|
|
#:make-disk-image? #t
|
|
|
|
|
#:disk-image-size disk-image-size
|
2014-05-22 16:30:13 -04:00
|
|
|
|
#:disk-image-format disk-image-format
|
2014-04-11 12:42:30 -04:00
|
|
|
|
#:references-graphs graph)))
|
2013-02-15 21:28:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
2014-05-22 17:12:36 -04:00
|
|
|
|
;;; VM and disk images.
|
2013-02-15 21:28:26 -05:00
|
|
|
|
;;;
|
|
|
|
|
|
2014-05-22 17:12:36 -04:00
|
|
|
|
(define* (system-disk-image os
|
|
|
|
|
#:key
|
|
|
|
|
(file-system-type "ext4")
|
|
|
|
|
(disk-image-size (* 900 (expt 2 20)))
|
|
|
|
|
(volatile? #t))
|
|
|
|
|
"Return the derivation of a disk image of DISK-IMAGE-SIZE bytes of the
|
|
|
|
|
system described by OS. Said image can be copied on a USB stick as is. When
|
|
|
|
|
VOLATILE? is true, the root file system is made volatile; this is useful
|
|
|
|
|
to USB sticks meant to be read-only."
|
2014-05-30 17:45:42 -04:00
|
|
|
|
(define root-label
|
|
|
|
|
;; Volume name of the root file system. Since we don't know which device
|
|
|
|
|
;; will hold it, we use the volume name to find it (using the UUID would
|
|
|
|
|
;; be even better, but somewhat less convenient.)
|
|
|
|
|
"gnu-disk-image")
|
|
|
|
|
|
2014-05-22 17:12:36 -04:00
|
|
|
|
(define file-systems-to-keep
|
|
|
|
|
(remove (lambda (fs)
|
|
|
|
|
(string=? (file-system-mount-point fs) "/"))
|
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
|
|
|
|
(let ((os (operating-system (inherit os)
|
2014-05-23 16:35:08 -04:00
|
|
|
|
;; Since this is meant to be used on real hardware, don't set up
|
|
|
|
|
;; QEMU networking.
|
|
|
|
|
(initrd (cut qemu-initrd <>
|
|
|
|
|
#:volatile-root? volatile?
|
|
|
|
|
#:qemu-networking? #f))
|
2014-05-22 17:12:36 -04:00
|
|
|
|
|
|
|
|
|
;; Force our own root file system.
|
|
|
|
|
(file-systems (cons (file-system
|
|
|
|
|
(mount-point "/")
|
2014-05-30 17:45:42 -04:00
|
|
|
|
(device root-label)
|
2014-05-22 17:12:36 -04:00
|
|
|
|
(type file-system-type))
|
|
|
|
|
file-systems-to-keep)))))
|
|
|
|
|
|
|
|
|
|
(mlet* %store-monad ((os-drv (operating-system-derivation os))
|
|
|
|
|
(grub.cfg (operating-system-grub.cfg os)))
|
|
|
|
|
(qemu-image #:grub-configuration grub.cfg
|
|
|
|
|
#:disk-image-size disk-image-size
|
|
|
|
|
#:disk-image-format "raw"
|
|
|
|
|
#:file-system-type file-system-type
|
2014-05-30 17:45:42 -04:00
|
|
|
|
#:file-system-label root-label
|
2014-05-22 17:12:36 -04:00
|
|
|
|
#:copy-inputs? #t
|
|
|
|
|
#:register-closures? #t
|
|
|
|
|
#:inputs `(("system" ,os-drv)
|
|
|
|
|
("grub.cfg" ,grub.cfg))))))
|
|
|
|
|
|
2014-02-19 15:10:12 -05:00
|
|
|
|
(define* (system-qemu-image os
|
2014-05-03 06:45:43 -04:00
|
|
|
|
#:key
|
|
|
|
|
(file-system-type "ext4")
|
|
|
|
|
(disk-image-size (* 900 (expt 2 20))))
|
|
|
|
|
"Return the derivation of a freestanding QEMU image of DISK-IMAGE-SIZE bytes
|
|
|
|
|
of the GNU system as described by OS."
|
2014-05-14 17:15:51 -04:00
|
|
|
|
(define file-systems-to-keep
|
|
|
|
|
;; Keep only file systems other than root and not normally bound to real
|
|
|
|
|
;; devices.
|
|
|
|
|
(remove (lambda (fs)
|
|
|
|
|
(let ((target (file-system-mount-point fs))
|
|
|
|
|
(source (file-system-device fs)))
|
|
|
|
|
(or (string=? target "/")
|
|
|
|
|
(string-prefix? "/dev/" source))))
|
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
2014-05-03 06:45:43 -04:00
|
|
|
|
(let ((os (operating-system (inherit os)
|
2014-05-14 17:15:51 -04:00
|
|
|
|
;; Force our own root file system.
|
|
|
|
|
(file-systems (cons (file-system
|
2014-05-03 06:45:43 -04:00
|
|
|
|
(mount-point "/")
|
|
|
|
|
(device "/dev/sda1")
|
2014-05-14 17:15:51 -04:00
|
|
|
|
(type file-system-type))
|
|
|
|
|
file-systems-to-keep)))))
|
2014-05-03 06:45:43 -04:00
|
|
|
|
(mlet* %store-monad
|
|
|
|
|
((os-drv (operating-system-derivation os))
|
2014-05-17 11:39:30 -04:00
|
|
|
|
(grub.cfg (operating-system-grub.cfg os)))
|
2014-05-03 06:45:43 -04:00
|
|
|
|
(qemu-image #:grub-configuration grub.cfg
|
|
|
|
|
#:disk-image-size disk-image-size
|
|
|
|
|
#:file-system-type file-system-type
|
2014-05-17 11:39:30 -04:00
|
|
|
|
#:inputs `(("system" ,os-drv)
|
|
|
|
|
("grub.cfg" ,grub.cfg))
|
2014-05-15 16:55:14 -04:00
|
|
|
|
#:copy-inputs? #t))))
|
2013-02-15 21:28:26 -05:00
|
|
|
|
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(define (virtualized-operating-system os)
|
|
|
|
|
"Return an operating system based on OS suitable for use in a virtualized
|
|
|
|
|
environment with the store shared with the host."
|
|
|
|
|
(operating-system (inherit os)
|
|
|
|
|
(initrd (cut qemu-initrd <> #:volatile-root? #t))
|
2014-05-14 17:15:51 -04:00
|
|
|
|
(file-systems (cons* (file-system
|
|
|
|
|
(mount-point "/")
|
|
|
|
|
(device "/dev/vda1")
|
|
|
|
|
(type "ext4"))
|
|
|
|
|
(file-system
|
|
|
|
|
(mount-point (%store-prefix))
|
|
|
|
|
(device "store")
|
|
|
|
|
(type "9p")
|
|
|
|
|
(needed-for-boot? #t)
|
|
|
|
|
(options "trans=virtio")
|
|
|
|
|
(check? #f))
|
|
|
|
|
|
|
|
|
|
;; Remove file systems that conflict with those
|
|
|
|
|
;; above, or that are normally bound to real devices.
|
|
|
|
|
(remove (lambda (fs)
|
|
|
|
|
(let ((target (file-system-mount-point fs))
|
|
|
|
|
(source (file-system-device fs)))
|
|
|
|
|
(or (string=? target (%store-prefix))
|
|
|
|
|
(string=? target "/")
|
|
|
|
|
(string-prefix? "/dev/" source))))
|
|
|
|
|
(operating-system-file-systems os))))))
|
2014-05-02 18:26:07 -04:00
|
|
|
|
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(define* (system-qemu-image/shared-store
|
2014-02-19 15:10:12 -05:00
|
|
|
|
os
|
2014-01-31 08:36:48 -05:00
|
|
|
|
#:key (disk-image-size (* 15 (expt 2 20))))
|
|
|
|
|
"Return a derivation that builds a QEMU image of OS that shares its store
|
|
|
|
|
with the host."
|
|
|
|
|
(mlet* %store-monad
|
|
|
|
|
((os-drv (operating-system-derivation os))
|
2014-05-17 11:39:30 -04:00
|
|
|
|
(grub.cfg (operating-system-grub.cfg os)))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(qemu-image #:grub-configuration grub.cfg
|
2014-05-15 16:55:14 -04:00
|
|
|
|
#:disk-image-size disk-image-size
|
|
|
|
|
#:inputs `(("system" ,os-drv))
|
|
|
|
|
|
|
|
|
|
;; XXX: Passing #t here is too slow, so let it off by default.
|
|
|
|
|
#:register-closures? #f
|
|
|
|
|
#:copy-inputs? #f)))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
|
|
|
|
|
(define* (system-qemu-image/shared-store-script
|
2014-02-19 15:10:12 -05:00
|
|
|
|
os
|
2014-01-31 08:36:48 -05:00
|
|
|
|
#:key
|
2014-04-10 15:31:08 -04:00
|
|
|
|
(qemu qemu)
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(graphic? #t))
|
|
|
|
|
"Return a derivation that builds a script to run a virtual machine image of
|
|
|
|
|
OS that shares its store with the host."
|
2014-04-23 10:53:36 -04:00
|
|
|
|
(mlet* %store-monad
|
2014-05-02 18:26:07 -04:00
|
|
|
|
((os -> (virtualized-operating-system os))
|
2014-04-23 10:53:36 -04:00
|
|
|
|
(os-drv (operating-system-derivation os))
|
|
|
|
|
(image (system-qemu-image/shared-store os)))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(define builder
|
2014-04-26 10:36:48 -04:00
|
|
|
|
#~(call-with-output-file #$output
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(display
|
|
|
|
|
(string-append "#!" #$bash "/bin/sh
|
|
|
|
|
exec " #$qemu "/bin/qemu-system-x86_64 -enable-kvm -no-reboot -net nic,model=virtio \
|
|
|
|
|
-virtfs local,path=" #$(%store-prefix) ",security_model=none,mount_tag=store \
|
2014-04-10 15:31:08 -04:00
|
|
|
|
-net user \
|
2014-04-26 10:36:48 -04:00
|
|
|
|
-kernel " #$(operating-system-kernel os) "/bzImage \
|
2014-05-02 18:26:07 -04:00
|
|
|
|
-initrd " #$os-drv "/initrd \
|
2014-04-26 10:36:48 -04:00
|
|
|
|
-append \"" #$(if graphic? "" "console=ttyS0 ")
|
2014-05-17 11:39:30 -04:00
|
|
|
|
"--system=" #$os-drv " --load=" #$os-drv "/boot --root=/dev/vda1\" \
|
2014-05-13 17:56:24 -04:00
|
|
|
|
-serial stdio \
|
2014-04-26 10:36:48 -04:00
|
|
|
|
-drive file=" #$image
|
2014-01-31 08:36:48 -05:00
|
|
|
|
",if=virtio,cache=writeback,werror=report,readonly\n")
|
2014-04-26 10:36:48 -04:00
|
|
|
|
port)
|
|
|
|
|
(chmod port #o555))))
|
|
|
|
|
|
|
|
|
|
(gexp->derivation "run-vm.sh" builder)))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
|
2013-02-15 21:28:26 -05:00
|
|
|
|
;;; vm.scm ends here
|