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)
|
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))))))
|
|
|
|
|
|
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)
|
|
|
|
|
(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
|
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
|
|
|
|
|
|
|
|
|
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-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-04-09 06:13:22 -04:00
|
|
|
|
(qemu-initrd #:guile-modules-in-chroot? #t
|
|
|
|
|
#:mounts `((9p "store" ,(%store-prefix))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(9p "xchg" "/xchg"))))))
|
|
|
|
|
|
|
|
|
|
(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?
|
|
|
|
|
#:disk-image-size #$disk-image-size
|
|
|
|
|
#:references-graphs graphs))))
|
|
|
|
|
|
|
|
|
|
(gexp->derivation name builder
|
|
|
|
|
;; TODO: Require the "kvm" feature.
|
|
|
|
|
#:system system
|
|
|
|
|
#:env-vars env-vars
|
|
|
|
|
#:modules `((guix build utils)
|
|
|
|
|
(guix build vm)
|
|
|
|
|
(guix build linux-initrd))
|
|
|
|
|
#: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)))
|
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-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
|
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"))
|
|
|
|
|
(if initialize-store? (list guix) '())))
|
|
|
|
|
|
|
|
|
|
;; This variable is unused but allows us to add INPUTS-TO-COPY
|
|
|
|
|
;; as inputs.
|
|
|
|
|
(to-copy
|
|
|
|
|
'#$(map (match-lambda
|
|
|
|
|
((name thing) thing)
|
|
|
|
|
((name thing output) `(,thing ,output)))
|
|
|
|
|
inputs-to-copy)))
|
|
|
|
|
|
|
|
|
|
(set-path-environment-variable "PATH" '("bin" "sbin") 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
|
|
|
|
|
#: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))))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
#~((directory #$root #$uid #$gid)
|
|
|
|
|
(directory #$home #$uid #$gid))))
|
2014-02-02 14:41:53 -05:00
|
|
|
|
|
2014-02-01 19:34:33 -05:00
|
|
|
|
(mlet* %store-monad ((os-drv (operating-system-derivation os))
|
|
|
|
|
(build-gid (operating-system-build-gid os))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(profile (operating-system-profile os)))
|
|
|
|
|
(return #~((directory #$(%store-prefix) 0 #$(or build-gid 0))
|
|
|
|
|
(directory "/etc")
|
|
|
|
|
(directory "/var/log") ; for dmd
|
|
|
|
|
(directory "/var/run/nscd")
|
|
|
|
|
(directory "/var/guix/gcroots")
|
|
|
|
|
("/var/guix/gcroots/system" -> #$os-drv)
|
|
|
|
|
(directory "/run")
|
|
|
|
|
("/run/current-system" -> #$profile)
|
|
|
|
|
(directory "/bin")
|
|
|
|
|
("/bin/sh" -> "/run/current-system/bin/bash")
|
|
|
|
|
(directory "/tmp")
|
|
|
|
|
(directory "/var/guix/profiles/per-user/root" 0 0)
|
|
|
|
|
|
|
|
|
|
(directory "/root" 0 0) ; an exception
|
|
|
|
|
#$@(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-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 \
|
|
|
|
|
-initrd " #$initrd "/initrd \
|
|
|
|
|
-append \"" #$(if graphic? "" "console=ttyS0 ")
|
|
|
|
|
"--load=" #$os-drv "/boot --root=/dev/vda1\" \
|
|
|
|
|
-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
|