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)
|
|
|
|
|
#: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)
|
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
|
|
|
|
|
system-qemu-image/shared-store-script))
|
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-04-11 12:42:30 -04:00
|
|
|
|
;; An alias to circumvent name clashes.
|
|
|
|
|
(define %imported-modules imported-modules)
|
|
|
|
|
|
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))
|
|
|
|
|
(inputs '())
|
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-11 12:42:30 -04:00
|
|
|
|
(imported-modules
|
|
|
|
|
'((guix build vm)
|
|
|
|
|
(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)
|
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
|
|
|
|
|
derivation). In the virtual machine, EXP has access to all of INPUTS from the
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
When MAKE-DISK-IMAGE? is true, then create a QEMU disk image of
|
2013-08-31 16:55:04 -04:00
|
|
|
|
DISK-IMAGE-SIZE bytes and return it.
|
|
|
|
|
|
2014-04-11 12:42:30 -04:00
|
|
|
|
IMPORTED-MODULES is the set of modules imported in the execution environment
|
|
|
|
|
of EXP.
|
|
|
|
|
|
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."
|
2014-04-11 12:42:30 -04:00
|
|
|
|
;; FIXME: Add #:modules parameter, for the 'use-modules' form.
|
2013-09-08 16:45:30 -04:00
|
|
|
|
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(define input-alist
|
2014-04-11 07:48:55 -04:00
|
|
|
|
(map input->name+output inputs))
|
2013-02-15 21:28:26 -05:00
|
|
|
|
|
|
|
|
|
(define builder
|
|
|
|
|
;; Code that launches the VM that evaluates EXP.
|
2013-08-31 16:55:04 -04:00
|
|
|
|
`(let ()
|
|
|
|
|
(use-modules (guix build utils)
|
2014-04-11 07:38:11 -04:00
|
|
|
|
(guix build vm))
|
|
|
|
|
|
|
|
|
|
(let ((linux (string-append (assoc-ref %build-inputs "linux")
|
2013-02-15 21:28:26 -05:00
|
|
|
|
"/bzImage"))
|
|
|
|
|
(initrd (string-append (assoc-ref %build-inputs "initrd")
|
|
|
|
|
"/initrd"))
|
2014-04-11 12:42:30 -04:00
|
|
|
|
(loader (assoc-ref %build-inputs "loader"))
|
2014-04-11 07:38:11 -04:00
|
|
|
|
(graphs ',(match references-graphs
|
|
|
|
|
(((graph-files . _) ...) graph-files)
|
|
|
|
|
(_ #f))))
|
|
|
|
|
|
|
|
|
|
(set-path-environment-variable "PATH" '("bin")
|
|
|
|
|
(map cdr %build-inputs))
|
|
|
|
|
|
2014-04-11 12:42:30 -04:00
|
|
|
|
(load-in-linux-vm loader
|
2014-04-11 07:38:11 -04:00
|
|
|
|
#:output (assoc-ref %outputs "out")
|
|
|
|
|
#:linux linux #:initrd initrd
|
|
|
|
|
#:memory-size ,memory-size
|
|
|
|
|
#:make-disk-image? ,make-disk-image?
|
|
|
|
|
#:disk-image-size ,disk-image-size
|
|
|
|
|
#:references-graphs graphs))))
|
2013-02-15 21:28:26 -05: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
|
|
|
|
(mlet* %store-monad
|
|
|
|
|
((input-alist (sequence %store-monad input-alist))
|
2014-04-11 12:42:30 -04:00
|
|
|
|
(module-dir (%imported-modules imported-modules))
|
|
|
|
|
(compiled (compiled-modules imported-modules))
|
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
|
|
|
|
(exp* -> `(let ((%build-inputs ',input-alist))
|
|
|
|
|
,exp))
|
|
|
|
|
(user-builder (text-file "builder-in-linux-vm"
|
|
|
|
|
(object->string exp*)))
|
2014-04-11 12:42:30 -04:00
|
|
|
|
(loader (text-file* "linux-vm-loader" ; XXX: use 'sexp-file'
|
|
|
|
|
"(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-04-09 06:13:22 -04:00
|
|
|
|
(qemu-initrd #:guile-modules-in-chroot? #t
|
|
|
|
|
#:mounts `((9p "store" ,(%store-prefix))
|
|
|
|
|
(9p "xchg" "/xchg")))))
|
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
|
|
|
|
(inputs (lower-inputs `(("qemu" ,qemu)
|
|
|
|
|
("linux" ,linux)
|
|
|
|
|
("initrd" ,initrd)
|
|
|
|
|
("coreutils" ,coreutils)
|
|
|
|
|
("builder" ,user-builder)
|
2014-04-11 12:42:30 -04:00
|
|
|
|
("loader" ,loader)
|
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
|
|
|
|
,@inputs))))
|
derivations: Use more keyword parameters for 'build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation): Turn 'system' and
'inputs' into keyword parameters.
Adjust callers accordingly.
* gnu/system/linux.scm, gnu/system/vm.scm, guix/build-system/cmake.scm,
guix/build-system/gnu.scm, guix/build-system/perl.scm,
guix/build-system/python.scm, guix/build-system/trivial.scm,
guix/download.scm, guix/packages.scm, guix/profiles.scm,
guix/scripts/pull.scm, tests/derivations.scm, tests/guix-build.sh,
tests/monads.scm, tests/store.scm, tests/union.scm: Adjust users of
'build-expression->derivation' and 'derivation-expression'
accordingly.
* doc/guix.texi (Derivations): Adjust 'build-expression->derivation'
documentation accordingly.
(The Store Monad): Likewise for 'derivation-expression'.
2013-12-04 10:07:36 -05:00
|
|
|
|
(derivation-expression name builder
|
2014-01-30 17:32:22 -05:00
|
|
|
|
;; TODO: Require the "kvm" feature.
|
derivations: Use more keyword parameters for 'build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation): Turn 'system' and
'inputs' into keyword parameters.
Adjust callers accordingly.
* gnu/system/linux.scm, gnu/system/vm.scm, guix/build-system/cmake.scm,
guix/build-system/gnu.scm, guix/build-system/perl.scm,
guix/build-system/python.scm, guix/build-system/trivial.scm,
guix/download.scm, guix/packages.scm, guix/profiles.scm,
guix/scripts/pull.scm, tests/derivations.scm, tests/guix-build.sh,
tests/monads.scm, tests/store.scm, tests/union.scm: Adjust users of
'build-expression->derivation' and 'derivation-expression'
accordingly.
* doc/guix.texi (Derivations): Adjust 'build-expression->derivation'
documentation accordingly.
(The Store Monad): Likewise for 'derivation-expression'.
2013-12-04 10:07:36 -05:00
|
|
|
|
#:system system
|
|
|
|
|
#:inputs 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
|
|
|
|
#:env-vars env-vars
|
|
|
|
|
#:modules (delete-duplicates
|
|
|
|
|
`((guix build utils)
|
2014-04-11 07:38:11 -04:00
|
|
|
|
(guix build vm)
|
2014-04-11 12:42:30 -04:00
|
|
|
|
(guix build linux-initrd)
|
|
|
|
|
,@imported-modules))
|
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
|
|
|
|
#:guile-for-build guile-for-build
|
|
|
|
|
#:references-graphs references-graphs)))
|
|
|
|
|
|
|
|
|
|
(define* (qemu-image #:key
|
2013-02-15 21:28:26 -05:00
|
|
|
|
(name "qemu-image")
|
|
|
|
|
(system (%current-system))
|
|
|
|
|
(disk-image-size (* 100 (expt 2 20)))
|
2013-09-07 11:23:23 -04:00
|
|
|
|
grub-configuration
|
2013-09-24 16:40:33 -04:00
|
|
|
|
(initialize-store? #f)
|
2013-09-05 17:57:40 -04:00
|
|
|
|
(populate #f)
|
2013-08-31 17:01:56 -04:00
|
|
|
|
(inputs '())
|
2013-09-05 16:14:21 -04:00
|
|
|
|
(inputs-to-copy '()))
|
2013-09-04 18:45:53 -04:00
|
|
|
|
"Return a bootable, stand-alone QEMU image. The returned image is a full
|
2013-09-07 11:23:23 -04:00
|
|
|
|
disk image, with a GRUB installation that uses GRUB-CONFIGURATION as its
|
2013-12-09 15:32:36 -05:00
|
|
|
|
configuration file (GRUB-CONFIGURATION must be the name of a file in the VM.)
|
2013-08-31 17:01:56 -04:00
|
|
|
|
|
|
|
|
|
INPUTS-TO-COPY is a list of inputs (as for packages) whose closure is copied
|
2013-09-24 16:40:33 -04:00
|
|
|
|
into the image being built. When INITIALIZE-STORE? is true, initialize the
|
|
|
|
|
store database in the image so that Guix can be used in the image.
|
2013-09-05 17:57:40 -04:00
|
|
|
|
|
2013-09-25 12:01:44 -04:00
|
|
|
|
POPULATE is a list of directives stating directories or symlinks to be created
|
|
|
|
|
in the disk image partition. It is evaluated once the image has been
|
|
|
|
|
populated with INPUTS-TO-COPY. It can be used to provide additional files,
|
|
|
|
|
such as /etc files."
|
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
|
|
|
|
|
((graph (sequence %store-monad
|
2014-04-11 07:48:55 -04:00
|
|
|
|
(map input->name+output inputs-to-copy))))
|
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
|
|
|
|
|
"qemu-image"
|
|
|
|
|
`(let ()
|
2014-04-11 12:44:53 -04:00
|
|
|
|
(use-modules (guix build vm)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
|
|
|
|
|
(set-path-environment-variable "PATH" '("bin" "sbin")
|
|
|
|
|
(map cdr %build-inputs))
|
|
|
|
|
|
|
|
|
|
(let ((graphs ',(match inputs-to-copy
|
|
|
|
|
(((names . _) ...)
|
|
|
|
|
names))))
|
|
|
|
|
(initialize-hard-disk #:grub.cfg ,grub-configuration
|
|
|
|
|
#:closures-to-copy graphs
|
|
|
|
|
#:disk-image-size ,disk-image-size
|
|
|
|
|
#:initialize-store? ,initialize-store?
|
|
|
|
|
#:directives ',populate)
|
|
|
|
|
(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
|
|
|
|
|
#:inputs `(("parted" ,parted)
|
|
|
|
|
("grub" ,grub)
|
|
|
|
|
("e2fsprogs" ,e2fsprogs)
|
|
|
|
|
|
|
|
|
|
;; For shell scripts.
|
|
|
|
|
("sed" ,(car (assoc-ref %final-inputs "sed")))
|
|
|
|
|
("grep" ,(car (assoc-ref %final-inputs "grep")))
|
|
|
|
|
("coreutils" ,(car (assoc-ref %final-inputs "coreutils")))
|
|
|
|
|
("findutils" ,(car (assoc-ref %final-inputs "findutils")))
|
|
|
|
|
("gawk" ,(car (assoc-ref %final-inputs "gawk")))
|
|
|
|
|
("util-linux" ,util-linux)
|
|
|
|
|
|
|
|
|
|
,@(if initialize-store?
|
|
|
|
|
`(("guix" ,guix))
|
|
|
|
|
'())
|
|
|
|
|
|
|
|
|
|
,@inputs-to-copy)
|
|
|
|
|
#:make-disk-image? #t
|
|
|
|
|
#:disk-image-size disk-image-size
|
2014-04-11 12:42:30 -04:00
|
|
|
|
#:references-graphs graph)))
|
2013-02-15 21:28:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
2013-09-11 14:08:53 -04:00
|
|
|
|
;;; Stand-alone VM image.
|
2013-02-15 21:28:26 -05:00
|
|
|
|
;;;
|
|
|
|
|
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(define (operating-system-build-gid os)
|
|
|
|
|
"Return as a monadic value the group id for build users of OS, or #f."
|
|
|
|
|
(anym %store-monad
|
|
|
|
|
(lambda (service)
|
|
|
|
|
(and (equal? '(guix-daemon)
|
|
|
|
|
(service-provision service))
|
|
|
|
|
(match (service-user-groups service)
|
|
|
|
|
((group)
|
|
|
|
|
(user-group-id group)))))
|
|
|
|
|
(operating-system-services os)))
|
|
|
|
|
|
|
|
|
|
(define (operating-system-default-contents os)
|
|
|
|
|
"Return a list of directives suitable for 'system-qemu-image' describing the
|
|
|
|
|
basic contents of the root file system of OS."
|
2014-02-02 14:41:53 -05:00
|
|
|
|
(define (user-directories user)
|
|
|
|
|
(let ((home (user-account-home-directory user))
|
|
|
|
|
;; XXX: Deal with automatically allocated ids.
|
|
|
|
|
(uid (or (user-account-uid user) 0))
|
|
|
|
|
(gid (or (user-account-gid user) 0))
|
2014-04-09 10:43:13 -04:00
|
|
|
|
(root (string-append "/var/guix/profiles/per-user/"
|
2014-02-02 14:41:53 -05:00
|
|
|
|
(user-account-name user))))
|
|
|
|
|
`((directory ,root ,uid ,gid)
|
|
|
|
|
(directory ,home ,uid ,gid))))
|
|
|
|
|
|
2014-02-01 19:34:33 -05:00
|
|
|
|
(mlet* %store-monad ((os-drv (operating-system-derivation os))
|
|
|
|
|
(os-dir -> (derivation->output-path os-drv))
|
|
|
|
|
(build-gid (operating-system-build-gid os))
|
|
|
|
|
(profile (operating-system-profile-directory os)))
|
2014-03-10 18:58:40 -04:00
|
|
|
|
(return `((directory ,(%store-prefix) 0 ,(or build-gid 0))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(directory "/etc")
|
|
|
|
|
(directory "/var/log") ; for dmd
|
|
|
|
|
(directory "/var/run/nscd")
|
2014-04-09 10:43:13 -04:00
|
|
|
|
(directory "/var/guix/gcroots")
|
|
|
|
|
("/var/guix/gcroots/system" -> ,os-dir)
|
2014-02-01 19:34:33 -05:00
|
|
|
|
(directory "/run")
|
|
|
|
|
("/run/current-system" -> ,profile)
|
|
|
|
|
(directory "/bin")
|
2014-02-02 14:41:53 -05:00
|
|
|
|
("/bin/sh" -> "/run/current-system/bin/bash")
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(directory "/tmp")
|
2014-04-09 10:43:13 -04:00
|
|
|
|
(directory "/var/guix/profiles/per-user/root" 0 0)
|
2014-02-02 14:41:53 -05:00
|
|
|
|
|
2014-02-07 18:18:25 -05:00
|
|
|
|
(directory "/root" 0 0) ; an exception
|
2014-02-02 14:41:53 -05:00
|
|
|
|
,@(append-map user-directories
|
|
|
|
|
(operating-system-users os))))))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
|
2014-02-19 15:10:12 -05:00
|
|
|
|
(define* (system-qemu-image os
|
2013-12-10 19:10:41 -05:00
|
|
|
|
#:key (disk-image-size (* 900 (expt 2 20))))
|
|
|
|
|
"Return the derivation of a QEMU image of DISK-IMAGE-SIZE bytes of the GNU
|
|
|
|
|
system as described by OS."
|
2013-12-06 17:26:51 -05:00
|
|
|
|
(mlet* %store-monad
|
2013-12-09 15:32:36 -05:00
|
|
|
|
((os-drv (operating-system-derivation os))
|
|
|
|
|
(os-dir -> (derivation->output-path os-drv))
|
|
|
|
|
(grub.cfg -> (string-append os-dir "/grub.cfg"))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(populate (operating-system-default-contents os)))
|
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
|
|
|
|
(qemu-image #:grub-configuration grub.cfg
|
|
|
|
|
#:populate populate
|
2013-12-10 19:10:41 -05:00
|
|
|
|
#:disk-image-size disk-image-size
|
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
|
|
|
|
#:initialize-store? #t
|
2013-12-09 15:32:36 -05:00
|
|
|
|
#:inputs-to-copy `(("system" ,os-drv)))))
|
2013-02-15 21:28:26 -05: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))
|
|
|
|
|
(os-dir -> (derivation->output-path os-drv))
|
|
|
|
|
(grub.cfg -> (string-append os-dir "/grub.cfg"))
|
|
|
|
|
(populate (operating-system-default-contents os)))
|
|
|
|
|
;; TODO: Initialize the database so Guix can be used in the guest.
|
|
|
|
|
(qemu-image #:grub-configuration grub.cfg
|
|
|
|
|
#:populate populate
|
|
|
|
|
#:disk-image-size disk-image-size)))
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
(define initrd
|
|
|
|
|
(qemu-initrd #:mounts `((9p "store" ,(%store-prefix)))
|
|
|
|
|
#:volatile-root? #t))
|
|
|
|
|
|
|
|
|
|
(mlet* %store-monad
|
|
|
|
|
((os -> (operating-system (inherit os) (initrd initrd)))
|
|
|
|
|
(os-drv (operating-system-derivation os))
|
|
|
|
|
(initrd initrd)
|
|
|
|
|
(image (system-qemu-image/shared-store os)))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(define builder
|
2014-04-23 10:53:36 -04:00
|
|
|
|
(mlet %store-monad ((qemu (package-file qemu
|
2014-01-31 08:36:48 -05:00
|
|
|
|
"bin/qemu-system-x86_64"))
|
|
|
|
|
(bash (package-file bash "bin/sh"))
|
|
|
|
|
(kernel (package-file (operating-system-kernel os)
|
2014-04-23 10:53:36 -04:00
|
|
|
|
"bzImage")))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(return `(let ((out (assoc-ref %outputs "out")))
|
|
|
|
|
(call-with-output-file out
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(display
|
|
|
|
|
(string-append "#!" ,bash "
|
|
|
|
|
exec " ,qemu " -enable-kvm -no-reboot -net nic,model=virtio \
|
2014-04-10 15:31:08 -04:00
|
|
|
|
-virtfs local,path=" ,(%store-prefix) ",security_model=none,mount_tag=store \
|
|
|
|
|
-net user \
|
2014-01-31 08:36:48 -05:00
|
|
|
|
-kernel " ,kernel " -initrd "
|
|
|
|
|
,(string-append (derivation->output-path initrd) "/initrd") " \
|
|
|
|
|
-append \"" ,(if graphic? "" "console=ttyS0 ")
|
|
|
|
|
"--load=" ,(derivation->output-path os-drv) "/boot --root=/dev/vda1\" \
|
|
|
|
|
-drive file=" ,(derivation->output-path image)
|
|
|
|
|
",if=virtio,cache=writeback,werror=report,readonly\n")
|
|
|
|
|
port)))
|
|
|
|
|
(chmod out #o555)
|
|
|
|
|
#t))))
|
|
|
|
|
|
2014-04-23 10:53:36 -04:00
|
|
|
|
(mlet %store-monad ((qemu (package->derivation qemu))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
(bash (package->derivation bash))
|
|
|
|
|
(builder builder))
|
|
|
|
|
(derivation-expression "run-vm.sh" builder
|
|
|
|
|
#:inputs `(("qemu" ,qemu)
|
|
|
|
|
("image" ,image)
|
|
|
|
|
("bash" ,bash)
|
|
|
|
|
("initrd" ,initrd)
|
2014-04-23 10:53:36 -04:00
|
|
|
|
("os" ,os-drv))))))
|
2014-01-31 08:36:48 -05:00
|
|
|
|
|
2013-02-15 21:28:26 -05:00
|
|
|
|
;;; vm.scm ends here
|