2013-02-15 21:25:59 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-01-28 17:38:19 -05:00
|
|
|
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2013-02-15 21:25:59 -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/>.
|
|
|
|
|
|
2014-01-29 07:04:00 -05:00
|
|
|
|
(define-module (gnu system linux-initrd)
|
|
|
|
|
#:use-module (guix monads)
|
2013-02-15 21:25:59 -05:00
|
|
|
|
#:use-module (guix utils)
|
2014-01-29 15:57:56 -05:00
|
|
|
|
#:use-module ((guix store)
|
|
|
|
|
#:select (%store-prefix))
|
2014-04-14 17:59:08 -04:00
|
|
|
|
#:use-module ((guix derivations)
|
|
|
|
|
#:select (derivation->output-path))
|
2013-02-15 21:25:59 -05:00
|
|
|
|
#:use-module (gnu packages cpio)
|
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
|
#:use-module (gnu packages linux)
|
2013-08-28 17:59:14 -04:00
|
|
|
|
#:use-module (gnu packages guile)
|
2013-02-15 21:25:59 -05:00
|
|
|
|
#:use-module ((gnu packages make-bootstrap)
|
|
|
|
|
#:select (%guile-static-stripped))
|
2014-04-14 17:59:08 -04:00
|
|
|
|
#:use-module (ice-9 match)
|
2014-01-31 06:01:23 -05:00
|
|
|
|
#:use-module (ice-9 regex)
|
2014-01-29 07:04:00 -05:00
|
|
|
|
#:export (expression->initrd
|
|
|
|
|
qemu-initrd
|
|
|
|
|
gnu-system-initrd))
|
2013-02-15 21:25:59 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; Tools to build initial RAM disks (initrd's) for Linux-Libre, and in
|
|
|
|
|
;;; particular initrd's that run Guile.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define* (expression->initrd exp
|
|
|
|
|
#:key
|
|
|
|
|
(guile %guile-static-stripped)
|
|
|
|
|
(cpio cpio)
|
|
|
|
|
(gzip gzip)
|
|
|
|
|
(name "guile-initrd")
|
|
|
|
|
(system (%current-system))
|
2013-08-28 17:59:14 -04:00
|
|
|
|
(modules '())
|
2014-04-14 17:59:08 -04:00
|
|
|
|
(inputs '())
|
2013-02-15 21:25:59 -05:00
|
|
|
|
(linux #f)
|
|
|
|
|
(linux-modules '()))
|
|
|
|
|
"Return a package that contains a Linux initrd (a gzipped cpio archive)
|
|
|
|
|
containing GUILE and that evaluates EXP upon booting. LINUX-MODULES is a list
|
2014-04-14 17:59:08 -04:00
|
|
|
|
of `.ko' file names to be copied from LINUX into the initrd. INPUTS is a list
|
|
|
|
|
of additional inputs to be copied in the initrd. MODULES is a list of Guile
|
|
|
|
|
module names to be embedded in the initrd."
|
2013-02-15 21:25:59 -05:00
|
|
|
|
|
|
|
|
|
;; General Linux overview in `Documentation/early-userspace/README' and
|
|
|
|
|
;; `Documentation/filesystems/ramfs-rootfs-initramfs.txt'.
|
|
|
|
|
|
2014-01-31 06:01:23 -05:00
|
|
|
|
(define (string->regexp str)
|
|
|
|
|
;; Return a regexp that matches STR exactly.
|
|
|
|
|
(string-append "^" (regexp-quote str) "$"))
|
|
|
|
|
|
2014-04-14 17:59:08 -04:00
|
|
|
|
(define (files-to-copy)
|
|
|
|
|
(mlet %store-monad ((inputs (lower-inputs inputs)))
|
|
|
|
|
(return (map (match-lambda
|
|
|
|
|
((_ drv)
|
|
|
|
|
(derivation->output-path drv))
|
|
|
|
|
((_ drv sub-drv)
|
|
|
|
|
(derivation->output-path drv sub-drv)))
|
|
|
|
|
inputs))))
|
|
|
|
|
|
|
|
|
|
(define (builder to-copy)
|
2013-02-15 21:25:59 -05:00
|
|
|
|
`(begin
|
|
|
|
|
(use-modules (guix build utils)
|
|
|
|
|
(ice-9 pretty-print)
|
|
|
|
|
(ice-9 popen)
|
|
|
|
|
(ice-9 match)
|
|
|
|
|
(ice-9 ftw)
|
|
|
|
|
(srfi srfi-26)
|
|
|
|
|
(system base compile)
|
|
|
|
|
(rnrs bytevectors)
|
|
|
|
|
((system foreign) #:select (sizeof)))
|
|
|
|
|
|
2013-08-28 17:59:14 -04:00
|
|
|
|
(let ((guile (assoc-ref %build-inputs "guile"))
|
|
|
|
|
(cpio (string-append (assoc-ref %build-inputs "cpio")
|
|
|
|
|
"/bin/cpio"))
|
|
|
|
|
(gzip (string-append (assoc-ref %build-inputs "gzip")
|
|
|
|
|
"/bin/gzip"))
|
|
|
|
|
(modules (assoc-ref %build-inputs "modules"))
|
|
|
|
|
(gos (assoc-ref %build-inputs "modules/compiled"))
|
|
|
|
|
(scm-dir (string-append "share/guile/" (effective-version)))
|
|
|
|
|
(go-dir (format #f ".cache/guile/ccache/~a-~a-~a-~a"
|
|
|
|
|
(effective-version)
|
|
|
|
|
(if (eq? (native-endianness) (endianness little))
|
|
|
|
|
"LE"
|
|
|
|
|
"BE")
|
|
|
|
|
(sizeof '*)
|
|
|
|
|
(effective-version)))
|
|
|
|
|
(out (assoc-ref %outputs "out")))
|
2013-02-15 21:25:59 -05:00
|
|
|
|
(mkdir out)
|
|
|
|
|
(mkdir "contents")
|
|
|
|
|
(with-directory-excursion "contents"
|
|
|
|
|
(copy-recursively guile ".")
|
|
|
|
|
(call-with-output-file "init"
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(format p "#!/bin/guile -ds~%!#~%" guile)
|
|
|
|
|
(pretty-print ',exp p)))
|
|
|
|
|
(chmod "init" #o555)
|
|
|
|
|
(chmod "bin/guile" #o555)
|
|
|
|
|
|
2013-08-28 17:59:14 -04:00
|
|
|
|
;; Copy Guile modules.
|
|
|
|
|
(chmod scm-dir #o777)
|
|
|
|
|
(copy-recursively modules scm-dir
|
|
|
|
|
#:follow-symlinks? #t)
|
|
|
|
|
(copy-recursively gos (string-append "lib/guile/"
|
|
|
|
|
(effective-version) "/ccache")
|
|
|
|
|
#:follow-symlinks? #t)
|
|
|
|
|
|
2013-02-15 21:25:59 -05:00
|
|
|
|
;; Compile `init'.
|
2013-08-28 17:59:14 -04:00
|
|
|
|
(mkdir-p go-dir)
|
|
|
|
|
(set! %load-path (cons modules %load-path))
|
|
|
|
|
(set! %load-compiled-path (cons gos %load-compiled-path))
|
|
|
|
|
(compile-file "init"
|
|
|
|
|
#:opts %auto-compilation-options
|
|
|
|
|
#:output-file (string-append go-dir "/init.go"))
|
2013-02-15 21:25:59 -05:00
|
|
|
|
|
2013-08-28 17:59:14 -04:00
|
|
|
|
;; Copy Linux modules.
|
2013-02-15 21:25:59 -05:00
|
|
|
|
(let* ((linux (assoc-ref %build-inputs "linux"))
|
|
|
|
|
(module-dir (and linux
|
|
|
|
|
(string-append linux "/lib/modules"))))
|
|
|
|
|
(mkdir "modules")
|
|
|
|
|
,@(map (lambda (module)
|
2014-01-31 06:01:23 -05:00
|
|
|
|
`(match (find-files module-dir
|
|
|
|
|
,(string->regexp module))
|
2013-02-15 21:25:59 -05:00
|
|
|
|
((file)
|
|
|
|
|
(format #t "copying '~a'...~%" file)
|
|
|
|
|
(copy-file file (string-append "modules/"
|
|
|
|
|
,module)))
|
|
|
|
|
(()
|
|
|
|
|
(error "module not found" ,module module-dir))
|
|
|
|
|
((_ ...)
|
|
|
|
|
(error "several modules by that name"
|
|
|
|
|
,module module-dir))))
|
|
|
|
|
linux-modules))
|
|
|
|
|
|
2014-04-14 17:59:08 -04:00
|
|
|
|
,@(if (null? to-copy)
|
|
|
|
|
'()
|
|
|
|
|
`((let ((store ,(string-append "." (%store-prefix))))
|
|
|
|
|
(mkdir-p store)
|
|
|
|
|
;; XXX: Should we do export-references-graph?
|
|
|
|
|
(for-each (lambda (input)
|
|
|
|
|
(let ((target
|
|
|
|
|
(string-append store "/"
|
|
|
|
|
(basename input))))
|
|
|
|
|
(copy-recursively input target)))
|
|
|
|
|
',to-copy))))
|
|
|
|
|
|
2013-02-15 21:25:59 -05:00
|
|
|
|
;; Reset the timestamps of all the files that will make it in the
|
|
|
|
|
;; initrd.
|
|
|
|
|
(for-each (cut utime <> 0 0 0 0)
|
|
|
|
|
(find-files "." ".*"))
|
|
|
|
|
|
|
|
|
|
(system* cpio "--version")
|
|
|
|
|
(let ((pipe (open-pipe* OPEN_WRITE cpio "-o"
|
|
|
|
|
"-O" (string-append out "/initrd")
|
|
|
|
|
"-H" "newc" "--null")))
|
|
|
|
|
(define print0
|
|
|
|
|
(let ((len (string-length "./")))
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(format pipe "~a\0" (string-drop file len)))))
|
|
|
|
|
|
|
|
|
|
;; Note: as per `ramfs-rootfs-initramfs.txt', always add
|
|
|
|
|
;; directory entries before the files that are inside of it: "The
|
|
|
|
|
;; Linux kernel cpio extractor won't create files in a directory
|
|
|
|
|
;; that doesn't exist, so the directory entries must go before
|
|
|
|
|
;; the files that go in those directories."
|
|
|
|
|
(file-system-fold (const #t)
|
|
|
|
|
(lambda (file stat result) ; leaf
|
|
|
|
|
(print0 file))
|
|
|
|
|
(lambda (dir stat result) ; down
|
|
|
|
|
(unless (string=? dir ".")
|
|
|
|
|
(print0 dir)))
|
|
|
|
|
(const #f) ; up
|
|
|
|
|
(const #f) ; skip
|
|
|
|
|
(const #f)
|
|
|
|
|
#f
|
|
|
|
|
".")
|
|
|
|
|
|
|
|
|
|
(and (zero? (close-pipe pipe))
|
|
|
|
|
(with-directory-excursion out
|
|
|
|
|
(and (zero? (system* gzip "--best" "initrd"))
|
|
|
|
|
(rename-file "initrd.gz" "initrd")))))))))
|
|
|
|
|
|
2014-01-29 07:04:00 -05:00
|
|
|
|
(mlet* %store-monad
|
|
|
|
|
((source (imported-modules modules))
|
|
|
|
|
(compiled (compiled-modules modules))
|
|
|
|
|
(inputs (lower-inputs
|
|
|
|
|
`(("guile" ,guile)
|
|
|
|
|
("cpio" ,cpio)
|
|
|
|
|
("gzip" ,gzip)
|
|
|
|
|
("modules" ,source)
|
|
|
|
|
("modules/compiled" ,compiled)
|
|
|
|
|
,@(if linux
|
|
|
|
|
`(("linux" ,linux))
|
2014-04-14 17:59:08 -04:00
|
|
|
|
'())
|
|
|
|
|
,@inputs)))
|
|
|
|
|
(to-copy (files-to-copy)))
|
|
|
|
|
(derivation-expression name (builder to-copy)
|
2014-01-29 07:04:00 -05:00
|
|
|
|
#:modules '((guix build utils))
|
|
|
|
|
#:inputs inputs)))
|
|
|
|
|
|
2014-01-29 15:57:56 -05:00
|
|
|
|
(define* (qemu-initrd #:key
|
|
|
|
|
guile-modules-in-chroot?
|
2014-01-31 08:26:30 -05:00
|
|
|
|
volatile-root?
|
2014-01-29 15:57:56 -05:00
|
|
|
|
(mounts `((cifs "/store" ,(%store-prefix))
|
|
|
|
|
(cifs "/xchg" "/xchg"))))
|
2014-01-29 07:04:00 -05:00
|
|
|
|
"Return a monadic derivation that builds an initrd for use in a QEMU guest
|
2014-01-29 15:57:56 -05:00
|
|
|
|
where the store is shared with the host. MOUNTS is a list of file systems to
|
|
|
|
|
be mounted atop the root file system, where each item has the form:
|
2013-02-15 21:25:59 -05:00
|
|
|
|
|
2014-01-29 15:57:56 -05:00
|
|
|
|
(FILE-SYSTEM-TYPE SOURCE TARGET)
|
2013-08-31 16:46:52 -04:00
|
|
|
|
|
2014-01-29 15:57:56 -05:00
|
|
|
|
When GUILE-MODULES-IN-CHROOT? is true, make core Guile modules available in
|
|
|
|
|
the new root. This is necessary is the file specified as '--load' needs
|
|
|
|
|
access to these modules (which is the case if it wants to even just print an
|
2014-01-31 08:26:30 -05:00
|
|
|
|
exception and backtrace!).
|
|
|
|
|
|
|
|
|
|
When VOLATILE-ROOT? is true, the root file system is writable but any changes
|
|
|
|
|
to it are lost."
|
2014-01-29 15:57:56 -05:00
|
|
|
|
(define cifs-modules
|
|
|
|
|
;; Modules needed to mount CIFS file systems.
|
|
|
|
|
'("md4.ko" "ecb.ko" "cifs.ko"))
|
2013-08-28 18:04:04 -04:00
|
|
|
|
|
2014-01-31 06:21:10 -05:00
|
|
|
|
(define virtio-9p-modules
|
|
|
|
|
;; Modules for the 9p paravirtualized file system.
|
|
|
|
|
'("9pnet.ko" "9p.ko" "9pnet_virtio.ko"))
|
|
|
|
|
|
2014-01-29 15:57:56 -05:00
|
|
|
|
(define linux-modules
|
|
|
|
|
;; Modules added to the initrd and loaded from the initrd.
|
2014-01-31 06:21:10 -05:00
|
|
|
|
`("virtio.ko" "virtio_ring.ko" "virtio_pci.ko"
|
|
|
|
|
"virtio_balloon.ko" "virtio_blk.ko" "virtio_net.ko"
|
|
|
|
|
,@(if (assoc-ref mounts 'cifs)
|
|
|
|
|
cifs-modules
|
|
|
|
|
'())
|
|
|
|
|
,@(if (assoc-ref mounts '9p)
|
|
|
|
|
virtio-9p-modules
|
2014-04-14 17:59:08 -04:00
|
|
|
|
'())
|
|
|
|
|
,@(if volatile-root?
|
|
|
|
|
'("fuse.ko")
|
2014-01-31 06:21:10 -05:00
|
|
|
|
'())))
|
2013-02-15 21:25:59 -05:00
|
|
|
|
|
2014-04-14 17:59:08 -04:00
|
|
|
|
(mlet %store-monad
|
|
|
|
|
((unionfs (package-file unionfs-fuse/static "bin/unionfs")))
|
|
|
|
|
(expression->initrd
|
|
|
|
|
`(begin
|
|
|
|
|
(use-modules (guix build linux-initrd))
|
|
|
|
|
|
|
|
|
|
(boot-system #:mounts ',mounts
|
|
|
|
|
#:linux-modules ',linux-modules
|
|
|
|
|
#:qemu-guest-networking? #t
|
|
|
|
|
#:guile-modules-in-chroot? ',guile-modules-in-chroot?
|
|
|
|
|
#:unionfs ,unionfs
|
|
|
|
|
#:volatile-root? ',volatile-root?))
|
|
|
|
|
#:name "qemu-initrd"
|
|
|
|
|
#:modules '((guix build utils)
|
|
|
|
|
(guix build linux-initrd))
|
|
|
|
|
#:linux linux-libre
|
|
|
|
|
#:linux-modules linux-modules
|
|
|
|
|
#:inputs (if volatile-root?
|
|
|
|
|
`(("unionfs" ,unionfs-fuse/static))
|
|
|
|
|
'()))))
|
2013-02-15 21:25:59 -05:00
|
|
|
|
|
2014-01-29 07:04:00 -05:00
|
|
|
|
(define (gnu-system-initrd)
|
|
|
|
|
"Initrd for the GNU system itself, with nothing QEMU-specific."
|
2014-04-09 06:14:11 -04:00
|
|
|
|
(qemu-initrd #:guile-modules-in-chroot? #f
|
|
|
|
|
#:mounts '()))
|
2013-09-04 18:45:53 -04:00
|
|
|
|
|
2013-02-15 21:25:59 -05:00
|
|
|
|
;;; linux-initrd.scm ends here
|