2016-04-17 11:53:20 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2022-04-08 05:53:02 -04:00
|
|
|
|
;;; Copyright © 2014-2022 Ludovic Courtès <ludo@gnu.org>
|
2016-07-14 09:51:59 -04:00
|
|
|
|
;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
|
2018-03-15 23:08:02 -04:00
|
|
|
|
;;; Copyright © 2017, 2018 Mark H Weaver <mhw@netris.org>
|
2016-04-17 11:53:20 -04: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 mapped-devices)
|
2016-04-17 11:59:58 -04:00
|
|
|
|
#:use-module (guix gexp)
|
2016-04-17 11:53:20 -04:00
|
|
|
|
#:use-module (guix records)
|
2018-07-29 11:53:12 -04:00
|
|
|
|
#:use-module ((guix modules) #:hide (file-name->module-name))
|
2017-12-18 08:58:46 -05:00
|
|
|
|
#:use-module (guix i18n)
|
2020-07-24 17:28:11 -04:00
|
|
|
|
#:use-module ((guix diagnostics)
|
2017-12-18 08:58:46 -05:00
|
|
|
|
#:select (source-properties->location
|
2020-07-25 12:26:18 -04:00
|
|
|
|
formatted-message
|
2018-03-15 18:41:31 -04:00
|
|
|
|
&fix-hint
|
2017-12-18 08:58:46 -05:00
|
|
|
|
&error-location))
|
2020-11-06 04:47:37 -05:00
|
|
|
|
#:use-module (guix deprecation)
|
2016-04-17 12:09:11 -04:00
|
|
|
|
#:use-module (gnu services)
|
|
|
|
|
#:use-module (gnu services shepherd)
|
2017-09-06 03:28:28 -04:00
|
|
|
|
#:use-module (gnu system uuid)
|
2017-12-18 08:58:46 -05:00
|
|
|
|
#:autoload (gnu build file-systems) (find-partition-by-luks-uuid)
|
2018-03-15 18:41:31 -04:00
|
|
|
|
#:autoload (gnu build linux-modules)
|
2019-03-13 12:11:19 -04:00
|
|
|
|
(missing-modules)
|
2016-11-23 14:50:41 -05:00
|
|
|
|
#:autoload (gnu packages cryptsetup) (cryptsetup-static)
|
2020-11-06 04:47:38 -05:00
|
|
|
|
#:autoload (gnu packages linux) (mdadm-static lvm2-static)
|
2016-04-17 18:23:16 -04:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2018-02-27 08:55:43 -05:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2017-12-18 08:58:46 -05:00
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
2016-04-17 12:09:11 -04:00
|
|
|
|
#:use-module (ice-9 match)
|
2020-06-24 04:47:23 -04:00
|
|
|
|
#:use-module (ice-9 format)
|
2020-11-06 04:47:37 -05:00
|
|
|
|
#:export (%mapped-device
|
|
|
|
|
mapped-device
|
2016-04-17 11:53:20 -04:00
|
|
|
|
mapped-device?
|
|
|
|
|
mapped-device-source
|
|
|
|
|
mapped-device-target
|
2020-11-06 04:47:37 -05:00
|
|
|
|
mapped-device-targets
|
2016-04-17 11:53:20 -04:00
|
|
|
|
mapped-device-type
|
2017-12-18 08:57:20 -05:00
|
|
|
|
mapped-device-location
|
2016-04-17 11:53:20 -04:00
|
|
|
|
|
|
|
|
|
mapped-device-kind
|
|
|
|
|
mapped-device-kind?
|
|
|
|
|
mapped-device-kind-open
|
2016-04-17 11:59:58 -04:00
|
|
|
|
mapped-device-kind-close
|
2017-12-18 08:57:20 -05:00
|
|
|
|
mapped-device-kind-check
|
2016-04-17 11:59:58 -04:00
|
|
|
|
|
2016-04-17 12:09:11 -04:00
|
|
|
|
device-mapping-service-type
|
|
|
|
|
device-mapping-service
|
|
|
|
|
|
2018-03-15 18:41:31 -04:00
|
|
|
|
check-device-initrd-modules ;XXX: needs a better place
|
|
|
|
|
|
2016-07-14 09:51:59 -04:00
|
|
|
|
luks-device-mapping
|
2020-11-06 04:47:38 -05:00
|
|
|
|
raid-device-mapping
|
|
|
|
|
lvm-device-mapping))
|
2016-04-17 11:53:20 -04:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This module supports "device mapping", a concept implemented by Linux's
|
|
|
|
|
;;; device-mapper.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(define-record-type* <mapped-device> %mapped-device
|
2016-04-17 11:53:20 -04:00
|
|
|
|
make-mapped-device
|
|
|
|
|
mapped-device?
|
2017-01-24 16:43:14 -05:00
|
|
|
|
(source mapped-device-source) ;string | list of strings
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(targets mapped-device-targets) ;list of strings
|
2017-12-18 08:57:20 -05:00
|
|
|
|
(type mapped-device-type) ;<mapped-device-kind>
|
|
|
|
|
(location mapped-device-location
|
|
|
|
|
(default (current-source-location)) (innate)))
|
2016-04-17 11:53:20 -04:00
|
|
|
|
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(define-syntax mapped-device-compatibility-helper
|
|
|
|
|
(syntax-rules (target)
|
|
|
|
|
((_ () (fields ...))
|
|
|
|
|
(%mapped-device fields ...))
|
|
|
|
|
((_ ((target exp) rest ...) (others ...))
|
|
|
|
|
(%mapped-device others ...
|
|
|
|
|
(targets (list exp))
|
|
|
|
|
rest ...))
|
|
|
|
|
((_ (field rest ...) (others ...))
|
|
|
|
|
(mapped-device-compatibility-helper (rest ...)
|
|
|
|
|
(others ... field)))))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (mapped-device fields ...)
|
|
|
|
|
"Build an <mapped-device> record, automatically converting 'target' field
|
|
|
|
|
specifications to 'targets'."
|
|
|
|
|
(mapped-device-compatibility-helper (fields ...) ()))
|
|
|
|
|
|
|
|
|
|
(define-deprecated (mapped-device-target md)
|
|
|
|
|
mapped-device-targets
|
|
|
|
|
(car (mapped-device-targets md)))
|
|
|
|
|
|
2016-04-17 11:53:20 -04:00
|
|
|
|
(define-record-type* <mapped-device-type> mapped-device-kind
|
|
|
|
|
make-mapped-device-kind
|
|
|
|
|
mapped-device-kind?
|
|
|
|
|
(open mapped-device-kind-open) ;source target -> gexp
|
|
|
|
|
(close mapped-device-kind-close ;source target -> gexp
|
2017-12-18 08:57:20 -05:00
|
|
|
|
(default (const #~(const #f))))
|
|
|
|
|
(check mapped-device-kind-check ;source -> Boolean
|
|
|
|
|
(default (const #t))))
|
2016-04-17 11:53:20 -04:00
|
|
|
|
|
2016-04-17 12:09:11 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Device mapping as a Shepherd service.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define device-mapping-service-type
|
|
|
|
|
(shepherd-service-type
|
|
|
|
|
'device-mapping
|
|
|
|
|
(match-lambda
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(($ <mapped-device> source targets
|
2016-04-17 12:26:50 -04:00
|
|
|
|
($ <mapped-device-type> open close))
|
2016-04-17 12:09:11 -04:00
|
|
|
|
(shepherd-service
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(provision (list (symbol-append 'device-mapping- (string->symbol (string-join targets "-")))))
|
2016-04-17 12:09:11 -04:00
|
|
|
|
(requirement '(udev))
|
|
|
|
|
(documentation "Map a device node using Linux's device mapper.")
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(start #~(lambda () #$(open source targets)))
|
|
|
|
|
(stop #~(lambda _ (not #$(close source targets))))
|
2021-01-13 16:14:00 -05:00
|
|
|
|
(respawn? #f))))
|
|
|
|
|
(description "Map a device node using Linux's device mapper.")))
|
2016-04-17 12:09:11 -04:00
|
|
|
|
|
2016-04-17 12:26:50 -04:00
|
|
|
|
(define (device-mapping-service mapped-device)
|
|
|
|
|
"Return a service that sets up @var{mapped-device}."
|
|
|
|
|
(service device-mapping-service-type mapped-device))
|
2016-04-17 12:09:11 -04:00
|
|
|
|
|
2018-03-15 18:41:31 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Static checks.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (check-device-initrd-modules device linux-modules location)
|
|
|
|
|
"Raise an error if DEVICE needs modules beyond LINUX-MODULES to operate.
|
|
|
|
|
DEVICE must be a \"/dev\" file name."
|
2019-03-13 12:11:19 -04:00
|
|
|
|
(define missing
|
|
|
|
|
;; Attempt to determine missing modules.
|
2018-03-15 18:41:31 -04:00
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
2019-03-13 12:11:19 -04:00
|
|
|
|
(missing-modules device linux-modules))
|
|
|
|
|
|
|
|
|
|
;; If we can't do that (e.g., EPERM), skip the whole thing.
|
|
|
|
|
(const '())))
|
|
|
|
|
|
|
|
|
|
(unless (null? missing)
|
|
|
|
|
;; Note: What we suggest here is a list of module names (e.g.,
|
|
|
|
|
;; "usb_storage"), not file names (e.g., "usb-storage.ko"). This is
|
|
|
|
|
;; OK because we have machinery that accepts both the hyphen and the
|
|
|
|
|
;; underscore version.
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(formatted-message (G_ "you may need these modules \
|
2018-03-15 18:41:31 -04:00
|
|
|
|
in the initrd for ~a:~{ ~a~}")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
device missing)
|
|
|
|
|
(condition
|
|
|
|
|
(&fix-hint
|
|
|
|
|
(hint (format #f (G_ "Try adding them to the
|
2018-03-15 18:41:31 -04:00
|
|
|
|
@code{initrd-modules} field of your @code{operating-system} declaration, along
|
|
|
|
|
these lines:
|
|
|
|
|
|
|
|
|
|
@example
|
|
|
|
|
(operating-system
|
|
|
|
|
;; @dots{}
|
|
|
|
|
(initrd-modules (append (list~{ ~s~})
|
|
|
|
|
%base-initrd-modules)))
|
2018-09-23 16:10:50 -04:00
|
|
|
|
@end example
|
|
|
|
|
|
|
|
|
|
If you think this diagnostic is inaccurate, use the @option{--skip-checks}
|
|
|
|
|
option of @command{guix system}.\n")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
missing))))
|
|
|
|
|
(condition
|
|
|
|
|
(&error-location
|
|
|
|
|
(location (source-properties->location location))))))))
|
2018-03-15 18:41:31 -04:00
|
|
|
|
|
2016-04-17 11:59:58 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Common device mappings.
|
|
|
|
|
;;;
|
|
|
|
|
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(define (open-luks-device source targets)
|
2016-04-17 11:59:58 -04:00
|
|
|
|
"Return a gexp that maps SOURCE to TARGET as a LUKS device, using
|
|
|
|
|
'cryptsetup'."
|
2016-09-04 17:42:50 -04:00
|
|
|
|
(with-imported-modules (source-module-closure
|
2021-11-15 15:53:39 -05:00
|
|
|
|
'((gnu build file-systems)
|
|
|
|
|
(guix build utils))) ;; For mkdir-p
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(match targets
|
|
|
|
|
((target)
|
|
|
|
|
#~(let ((source #$(if (uuid? source)
|
|
|
|
|
(uuid-bytevector source)
|
|
|
|
|
source)))
|
|
|
|
|
;; XXX: 'use-modules' should be at the top level.
|
|
|
|
|
(use-modules (rnrs bytevectors) ;bytevector?
|
|
|
|
|
((gnu build file-systems)
|
2022-04-08 05:53:02 -04:00
|
|
|
|
#:select (find-partition-by-luks-uuid
|
|
|
|
|
system*/tty))
|
2021-11-15 15:53:39 -05:00
|
|
|
|
((guix build utils) #:select (mkdir-p)))
|
|
|
|
|
|
|
|
|
|
;; Create '/run/cryptsetup/' if it does not exist, as device locking
|
|
|
|
|
;; is mandatory for LUKS2.
|
|
|
|
|
(mkdir-p "/run/cryptsetup/")
|
2020-11-06 04:47:37 -05:00
|
|
|
|
|
|
|
|
|
;; Use 'cryptsetup-static', not 'cryptsetup', to avoid pulling the
|
|
|
|
|
;; whole world inside the initrd (for when we're in an initrd).
|
2022-04-08 05:53:02 -04:00
|
|
|
|
;; 'cryptsetup open' requires standard input to be a tty to allow
|
|
|
|
|
;; for interaction but shepherd sets standard input to /dev/null;
|
|
|
|
|
;; thus, explicitly request a tty.
|
|
|
|
|
(zero? (system*/tty
|
|
|
|
|
#$(file-append cryptsetup-static "/sbin/cryptsetup")
|
|
|
|
|
"open" "--type" "luks"
|
2020-11-06 04:47:37 -05:00
|
|
|
|
|
2022-04-08 05:53:02 -04:00
|
|
|
|
;; Note: We cannot use the "UUID=source" syntax here
|
|
|
|
|
;; because 'cryptsetup' implements it by searching the
|
|
|
|
|
;; udev-populated /dev/disk/by-id directory but udev may
|
|
|
|
|
;; be unavailable at the time we run this.
|
|
|
|
|
(if (bytevector? source)
|
|
|
|
|
(or (let loop ((tries-left 10))
|
|
|
|
|
(and (positive? tries-left)
|
|
|
|
|
(or (find-partition-by-luks-uuid source)
|
|
|
|
|
;; If the underlying partition is
|
|
|
|
|
;; not found, try again after
|
|
|
|
|
;; waiting a second, up to ten
|
|
|
|
|
;; times. FIXME: This should be
|
|
|
|
|
;; dealt with in a more robust way.
|
|
|
|
|
(begin (sleep 1)
|
|
|
|
|
(loop (- tries-left 1))))))
|
|
|
|
|
(error "LUKS partition not found" source))
|
|
|
|
|
source)
|
2020-11-06 04:47:37 -05:00
|
|
|
|
|
2022-04-08 05:53:02 -04:00
|
|
|
|
#$target)))))))
|
2020-11-06 04:47:37 -05:00
|
|
|
|
|
|
|
|
|
(define (close-luks-device source targets)
|
2016-04-17 11:59:58 -04:00
|
|
|
|
"Return a gexp that closes TARGET, a LUKS device."
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(match targets
|
|
|
|
|
((target)
|
|
|
|
|
#~(zero? (system* #$(file-append cryptsetup-static "/sbin/cryptsetup")
|
|
|
|
|
"close" #$target)))))
|
2016-04-17 11:59:58 -04:00
|
|
|
|
|
2018-02-27 08:55:43 -05:00
|
|
|
|
(define* (check-luks-device md #:key
|
|
|
|
|
needed-for-boot?
|
|
|
|
|
(initrd-modules '())
|
|
|
|
|
#:allow-other-keys
|
|
|
|
|
#:rest rest)
|
2017-12-18 08:58:46 -05:00
|
|
|
|
"Ensure the source of MD is valid."
|
2018-02-27 08:55:43 -05:00
|
|
|
|
(let ((source (mapped-device-source md))
|
|
|
|
|
(location (mapped-device-location md)))
|
|
|
|
|
(or (not (zero? (getuid)))
|
|
|
|
|
(if (uuid? source)
|
|
|
|
|
(match (find-partition-by-luks-uuid (uuid-bytevector source))
|
|
|
|
|
(#f
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(formatted-message (G_ "no LUKS partition with UUID '~a'")
|
|
|
|
|
(uuid->string source))
|
|
|
|
|
(condition
|
|
|
|
|
(&error-location
|
|
|
|
|
(location (source-properties->location
|
|
|
|
|
(mapped-device-location md))))))))
|
2018-02-27 08:55:43 -05:00
|
|
|
|
((? string? device)
|
|
|
|
|
(check-device-initrd-modules device initrd-modules location)))
|
|
|
|
|
(check-device-initrd-modules source initrd-modules location)))))
|
2017-12-18 08:58:46 -05:00
|
|
|
|
|
2016-04-17 11:59:58 -04:00
|
|
|
|
(define luks-device-mapping
|
|
|
|
|
;; The type of LUKS mapped devices.
|
|
|
|
|
(mapped-device-kind
|
|
|
|
|
(open open-luks-device)
|
2017-12-18 08:58:46 -05:00
|
|
|
|
(close close-luks-device)
|
|
|
|
|
(check check-luks-device)))
|
2016-04-17 11:59:58 -04:00
|
|
|
|
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(define (open-raid-device sources targets)
|
2016-08-02 06:27:57 -04:00
|
|
|
|
"Return a gexp that assembles SOURCES (a list of devices) to the RAID device
|
|
|
|
|
TARGET (e.g., \"/dev/md0\"), using 'mdadm'."
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(match targets
|
|
|
|
|
((target)
|
|
|
|
|
#~(let ((sources '#$sources)
|
|
|
|
|
|
|
|
|
|
;; XXX: We're not at the top level here. We could use a
|
|
|
|
|
;; non-top-level 'use-modules' form but that doesn't work when the
|
|
|
|
|
;; code is eval'd, like the Shepherd does.
|
|
|
|
|
(every (@ (srfi srfi-1) every))
|
|
|
|
|
(format (@ (ice-9 format) format)))
|
|
|
|
|
(let loop ((attempts 0))
|
|
|
|
|
(unless (every file-exists? sources)
|
|
|
|
|
(when (> attempts 20)
|
|
|
|
|
(error "RAID devices did not show up; bailing out"
|
|
|
|
|
sources))
|
|
|
|
|
|
|
|
|
|
(format #t "waiting for RAID source devices~{ ~a~}...~%"
|
|
|
|
|
sources)
|
|
|
|
|
(sleep 1)
|
|
|
|
|
(loop (+ 1 attempts))))
|
|
|
|
|
|
|
|
|
|
;; Use 'mdadm-static' rather than 'mdadm' to avoid pulling its whole
|
|
|
|
|
;; closure (80 MiB) in the initrd when a RAID device is needed for boot.
|
|
|
|
|
(zero? (apply system* #$(file-append mdadm-static "/sbin/mdadm")
|
|
|
|
|
"--assemble" #$target sources))))))
|
|
|
|
|
|
|
|
|
|
(define (close-raid-device sources targets)
|
2016-07-14 09:51:59 -04:00
|
|
|
|
"Return a gexp that stops the RAID device TARGET."
|
2020-11-06 04:47:37 -05:00
|
|
|
|
(match targets
|
|
|
|
|
((target)
|
|
|
|
|
#~(zero? (system* #$(file-append mdadm-static "/sbin/mdadm")
|
|
|
|
|
"--stop" #$target)))))
|
2016-07-14 09:51:59 -04:00
|
|
|
|
|
|
|
|
|
(define raid-device-mapping
|
|
|
|
|
;; The type of RAID mapped devices.
|
|
|
|
|
(mapped-device-kind
|
|
|
|
|
(open open-raid-device)
|
|
|
|
|
(close close-raid-device)))
|
|
|
|
|
|
2020-11-06 04:47:38 -05:00
|
|
|
|
(define (open-lvm-device source targets)
|
|
|
|
|
#~(and
|
|
|
|
|
(zero? (system* #$(file-append lvm2-static "/sbin/lvm")
|
|
|
|
|
"vgchange" "--activate" "ay" #$source))
|
|
|
|
|
; /dev/mapper nodes are usually created by udev, but udev may be unavailable at the time we run this. So we create them here.
|
|
|
|
|
(zero? (system* #$(file-append lvm2-static "/sbin/lvm")
|
|
|
|
|
"vgscan" "--mknodes"))
|
|
|
|
|
(every file-exists? (map (lambda (file) (string-append "/dev/mapper/" file))
|
|
|
|
|
'#$targets))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define (close-lvm-device source targets)
|
|
|
|
|
#~(zero? (system* #$(file-append lvm2-static "/sbin/lvm")
|
|
|
|
|
"vgchange" "--activate" "n" #$source)))
|
|
|
|
|
|
|
|
|
|
(define lvm-device-mapping
|
|
|
|
|
(mapped-device-kind
|
|
|
|
|
(open open-lvm-device)
|
|
|
|
|
(close close-lvm-device)))
|
|
|
|
|
|
2016-04-17 11:53:20 -04:00
|
|
|
|
;;; mapped-devices.scm ends here
|