Merge branch 'master' into staging
[jackhill/guix/guix.git] / gnu / system / mapped-devices.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2017, 2018 Mark H Weaver <mhw@netris.org>
5 ;;;
6 ;;; This file is part of GNU Guix.
7 ;;;
8 ;;; GNU Guix is free software; you can redistribute it and/or modify it
9 ;;; under the terms of the GNU General Public License as published by
10 ;;; the Free Software Foundation; either version 3 of the License, or (at
11 ;;; your option) any later version.
12 ;;;
13 ;;; GNU Guix is distributed in the hope that it will be useful, but
14 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;;; GNU General Public License for more details.
17 ;;;
18 ;;; You should have received a copy of the GNU General Public License
19 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21 (define-module (gnu system mapped-devices)
22 #:use-module (guix gexp)
23 #:use-module (guix records)
24 #:use-module (guix modules)
25 #:use-module (guix i18n)
26 #:use-module ((guix utils)
27 #:select (source-properties->location
28 &fix-hint
29 &error-location))
30 #:use-module (gnu services)
31 #:use-module (gnu services shepherd)
32 #:use-module (gnu system uuid)
33 #:autoload (gnu build file-systems) (find-partition-by-luks-uuid)
34 #:autoload (gnu build linux-modules)
35 (device-module-aliases matching-modules known-module-aliases
36 normalize-module-name)
37 #:autoload (gnu packages cryptsetup) (cryptsetup-static)
38 #:autoload (gnu packages linux) (mdadm-static)
39 #:use-module (srfi srfi-1)
40 #:use-module (srfi srfi-26)
41 #:use-module (srfi srfi-34)
42 #:use-module (srfi srfi-35)
43 #:use-module (ice-9 match)
44 #:export (mapped-device
45 mapped-device?
46 mapped-device-source
47 mapped-device-target
48 mapped-device-type
49 mapped-device-location
50
51 mapped-device-kind
52 mapped-device-kind?
53 mapped-device-kind-open
54 mapped-device-kind-close
55 mapped-device-kind-check
56
57 device-mapping-service-type
58 device-mapping-service
59
60 check-device-initrd-modules ;XXX: needs a better place
61
62 luks-device-mapping
63 raid-device-mapping))
64
65 ;;; Commentary:
66 ;;;
67 ;;; This module supports "device mapping", a concept implemented by Linux's
68 ;;; device-mapper.
69 ;;;
70 ;;; Code:
71
72 (define-record-type* <mapped-device> mapped-device
73 make-mapped-device
74 mapped-device?
75 (source mapped-device-source) ;string | list of strings
76 (target mapped-device-target) ;string
77 (type mapped-device-type) ;<mapped-device-kind>
78 (location mapped-device-location
79 (default (current-source-location)) (innate)))
80
81 (define-record-type* <mapped-device-type> mapped-device-kind
82 make-mapped-device-kind
83 mapped-device-kind?
84 (open mapped-device-kind-open) ;source target -> gexp
85 (close mapped-device-kind-close ;source target -> gexp
86 (default (const #~(const #f))))
87 (check mapped-device-kind-check ;source -> Boolean
88 (default (const #t))))
89
90 \f
91 ;;;
92 ;;; Device mapping as a Shepherd service.
93 ;;;
94
95 (define device-mapping-service-type
96 (shepherd-service-type
97 'device-mapping
98 (match-lambda
99 (($ <mapped-device> source target
100 ($ <mapped-device-type> open close))
101 (shepherd-service
102 (provision (list (symbol-append 'device-mapping- (string->symbol target))))
103 (requirement '(udev))
104 (documentation "Map a device node using Linux's device mapper.")
105 (start #~(lambda () #$(open source target)))
106 (stop #~(lambda _ (not #$(close source target))))
107 (respawn? #f))))))
108
109 (define (device-mapping-service mapped-device)
110 "Return a service that sets up @var{mapped-device}."
111 (service device-mapping-service-type mapped-device))
112
113 \f
114 ;;;
115 ;;; Static checks.
116 ;;;
117
118 (define (check-device-initrd-modules device linux-modules location)
119 "Raise an error if DEVICE needs modules beyond LINUX-MODULES to operate.
120 DEVICE must be a \"/dev\" file name."
121 (define aliases
122 ;; Attempt to load 'modules.alias' from the current kernel, assuming we're
123 ;; on GuixSD, and assuming that corresponds to the kernel we'll be
124 ;; installing. Skip the whole thing if that file cannot be read.
125 (catch 'system-error
126 (lambda ()
127 (known-module-aliases))
128 (const #f)))
129
130 (when aliases
131 (let ((modules (delete-duplicates
132 (append-map (cut matching-modules <> aliases)
133 (device-module-aliases device))))
134
135 ;; Module names (not file names) are supposed to use underscores
136 ;; instead of hyphens. MODULES is a list of module names, whereas
137 ;; LINUX-MODULES is file names without '.ko', so normalize them.
138 (provided (map normalize-module-name linux-modules)))
139 (unless (every (cut member <> provided) modules)
140 (raise (condition
141 (&message
142 (message (format #f (G_ "you may need these modules \
143 in the initrd for ~a:~{ ~a~}")
144 device modules)))
145 (&fix-hint
146 (hint (format #f (G_ "Try adding them to the
147 @code{initrd-modules} field of your @code{operating-system} declaration, along
148 these lines:
149
150 @example
151 (operating-system
152 ;; @dots{}
153 (initrd-modules (append (list~{ ~s~})
154 %base-initrd-modules)))
155 @end example\n")
156 modules)))
157 (&error-location
158 (location (source-properties->location location)))))))))
159
160 \f
161 ;;;
162 ;;; Common device mappings.
163 ;;;
164
165 (define (open-luks-device source target)
166 "Return a gexp that maps SOURCE to TARGET as a LUKS device, using
167 'cryptsetup'."
168 (with-imported-modules (source-module-closure
169 '((gnu build file-systems)))
170 #~(let ((source #$(if (uuid? source)
171 (uuid-bytevector source)
172 source)))
173 ;; XXX: 'use-modules' should be at the top level.
174 (use-modules (rnrs bytevectors) ;bytevector?
175 ((gnu build file-systems)
176 #:select (find-partition-by-luks-uuid)))
177
178 ;; Use 'cryptsetup-static', not 'cryptsetup', to avoid pulling the
179 ;; whole world inside the initrd (for when we're in an initrd).
180 (zero? (system* #$(file-append cryptsetup-static "/sbin/cryptsetup")
181 "open" "--type" "luks"
182
183 ;; Note: We cannot use the "UUID=source" syntax here
184 ;; because 'cryptsetup' implements it by searching the
185 ;; udev-populated /dev/disk/by-id directory but udev may
186 ;; be unavailable at the time we run this.
187 (if (bytevector? source)
188 (or (let loop ((tries-left 10))
189 (and (positive? tries-left)
190 (or (find-partition-by-luks-uuid source)
191 ;; If the underlying partition is
192 ;; not found, try again after
193 ;; waiting a second, up to ten
194 ;; times. FIXME: This should be
195 ;; dealt with in a more robust way.
196 (begin (sleep 1)
197 (loop (- tries-left 1))))))
198 (error "LUKS partition not found" source))
199 source)
200
201 #$target)))))
202
203 (define (close-luks-device source target)
204 "Return a gexp that closes TARGET, a LUKS device."
205 #~(zero? (system* #$(file-append cryptsetup-static "/sbin/cryptsetup")
206 "close" #$target)))
207
208 (define* (check-luks-device md #:key
209 needed-for-boot?
210 (initrd-modules '())
211 #:allow-other-keys
212 #:rest rest)
213 "Ensure the source of MD is valid."
214 (let ((source (mapped-device-source md))
215 (location (mapped-device-location md)))
216 (or (not (zero? (getuid)))
217 (if (uuid? source)
218 (match (find-partition-by-luks-uuid (uuid-bytevector source))
219 (#f
220 (raise (condition
221 (&message
222 (message (format #f (G_ "no LUKS partition with UUID '~a'")
223 (uuid->string source))))
224 (&error-location
225 (location (source-properties->location
226 (mapped-device-location md)))))))
227 ((? string? device)
228 (check-device-initrd-modules device initrd-modules location)))
229 (check-device-initrd-modules source initrd-modules location)))))
230
231 (define luks-device-mapping
232 ;; The type of LUKS mapped devices.
233 (mapped-device-kind
234 (open open-luks-device)
235 (close close-luks-device)
236 (check check-luks-device)))
237
238 (define (open-raid-device sources target)
239 "Return a gexp that assembles SOURCES (a list of devices) to the RAID device
240 TARGET (e.g., \"/dev/md0\"), using 'mdadm'."
241 #~(let ((sources '#$sources)
242
243 ;; XXX: We're not at the top level here. We could use a
244 ;; non-top-level 'use-modules' form but that doesn't work when the
245 ;; code is eval'd, like the Shepherd does.
246 (every (@ (srfi srfi-1) every))
247 (format (@ (ice-9 format) format)))
248 (let loop ((attempts 0))
249 (unless (every file-exists? sources)
250 (when (> attempts 20)
251 (error "RAID devices did not show up; bailing out"
252 sources))
253
254 (format #t "waiting for RAID source devices~{ ~a~}...~%"
255 sources)
256 (sleep 1)
257 (loop (+ 1 attempts))))
258
259 ;; Use 'mdadm-static' rather than 'mdadm' to avoid pulling its whole
260 ;; closure (80 MiB) in the initrd when a RAID device is needed for boot.
261 (zero? (apply system* #$(file-append mdadm-static "/sbin/mdadm")
262 "--assemble" #$target sources))))
263
264 (define (close-raid-device sources target)
265 "Return a gexp that stops the RAID device TARGET."
266 #~(zero? (system* #$(file-append mdadm-static "/sbin/mdadm")
267 "--stop" #$target)))
268
269 (define raid-device-mapping
270 ;; The type of RAID mapped devices.
271 (mapped-device-kind
272 (open open-raid-device)
273 (close close-raid-device)))
274
275 ;;; mapped-devices.scm ends here