machine: ssh: Do not import the host (guix config), really.
[jackhill/guix/guix.git] / gnu / machine / ssh.scm
CommitLineData
fa9edf09 1;;; GNU Guix --- Functional package management for GNU
e8134442 2;;; Copyright © 2019 Jakob L. Kreuze <zerodaysfordays@sdf.org>
61d8bd56 3;;; Copyright © 2020, 2021 Ludovic Courtès <ludo@gnu.org>
fa9edf09
JK
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu machine ssh)
9c70c460 21 #:use-module (gnu bootloader)
fa9edf09
JK
22 #:use-module (gnu machine)
23 #:autoload (gnu packages gnupg) (guile-gcrypt)
fa9edf09 24 #:use-module (gnu system)
fd3119db
JK
25 #:use-module (gnu system file-systems)
26 #:use-module (gnu system uuid)
a396dd01 27 #:use-module ((gnu services) #:select (sexp->system-provenance))
fd3119db 28 #:use-module (guix diagnostics)
fa9edf09
JK
29 #:use-module (guix gexp)
30 #:use-module (guix i18n)
31 #:use-module (guix modules)
32 #:use-module (guix monads)
3033d59a 33 #:use-module (guix pki)
fa9edf09
JK
34 #:use-module (guix records)
35 #:use-module (guix remote)
5c793753 36 #:use-module (guix scripts system reconfigure)
fa9edf09
JK
37 #:use-module (guix ssh)
38 #:use-module (guix store)
fd3119db 39 #:use-module (guix utils)
70ffa8af 40 #:use-module ((guix self) #:select (make-config.scm))
3033d59a 41 #:use-module (gcrypt pk-crypto)
fdbba544 42 #:use-module (ice-9 format)
fa9edf09 43 #:use-module (ice-9 match)
3033d59a 44 #:use-module (ice-9 textual-ports)
9c70c460 45 #:use-module (srfi srfi-1)
ea6e2299 46 #:use-module (srfi srfi-9)
fa9edf09 47 #:use-module (srfi srfi-19)
5c793753 48 #:use-module (srfi srfi-26)
2c8e04f1 49 #:use-module (srfi srfi-34)
fa9edf09
JK
50 #:use-module (srfi srfi-35)
51 #:export (managed-host-environment-type
52
53 machine-ssh-configuration
54 machine-ssh-configuration?
55 machine-ssh-configuration
56
57 machine-ssh-configuration-host-name
d84e9b75 58 machine-ssh-configuration-build-locally?
3033d59a 59 machine-ssh-configuration-authorize?
a396dd01 60 machine-ssh-configuration-allow-downgrades?
fa9edf09
JK
61 machine-ssh-configuration-port
62 machine-ssh-configuration-user
ed15dfcf 63 machine-ssh-configuration-host-key
fa9edf09
JK
64 machine-ssh-configuration-session))
65
66;;; Commentary:
67;;;
68;;; This module implements remote evaluation and system deployment for
53f21b3f 69;;; machines that are accessible over SSH and have a known host-name. In the
fa9edf09
JK
70;;; sense of the broader "machine" interface, we describe the environment for
71;;; such machines as 'managed-host.
72;;;
73;;; Code:
74
75\f
76;;;
77;;; Parameters for the SSH client.
78;;;
79
80(define-record-type* <machine-ssh-configuration> machine-ssh-configuration
81 make-machine-ssh-configuration
82 machine-ssh-configuration?
3033d59a
JK
83 (host-name machine-ssh-configuration-host-name) ; string
84 (system machine-ssh-configuration-system) ; string
85 (build-locally? machine-ssh-configuration-build-locally? ; boolean
d84e9b75 86 (default #t))
3033d59a
JK
87 (authorize? machine-ssh-configuration-authorize? ; boolean
88 (default #t))
a396dd01
LC
89 (allow-downgrades? machine-ssh-configuration-allow-downgrades? ; boolean
90 (default #f))
3033d59a 91 (port machine-ssh-configuration-port ; integer
d84e9b75 92 (default 22))
3033d59a 93 (user machine-ssh-configuration-user ; string
d84e9b75 94 (default "root"))
3033d59a 95 (identity machine-ssh-configuration-identity ; path to a private key
d84e9b75 96 (default #f))
3033d59a 97 (session machine-ssh-configuration-session ; session
ed15dfcf
LC
98 (default #f))
99 (host-key machine-ssh-configuration-host-key ; #f | string
d84e9b75 100 (default #f)))
fa9edf09
JK
101
102(define (machine-ssh-session machine)
103 "Return the SSH session that was given in MACHINE's configuration, or create
104one from the configuration's parameters if one was not provided."
105 (maybe-raise-unsupported-configuration-error machine)
106 (let ((config (machine-configuration machine)))
107 (or (machine-ssh-configuration-session config)
108 (let ((host-name (machine-ssh-configuration-host-name config))
109 (user (machine-ssh-configuration-user config))
110 (port (machine-ssh-configuration-port config))
ed15dfcf
LC
111 (identity (machine-ssh-configuration-identity config))
112 (host-key (machine-ssh-configuration-host-key config)))
2617d956
LC
113 (unless host-key
114 (warning (G_ "<machine-ssh-configuration> without a 'host-key' \
115is deprecated~%")))
fa9edf09
JK
116 (open-ssh-session host-name
117 #:user user
118 #:port port
ed15dfcf
LC
119 #:identity identity
120 #:host-key host-key)))))
fa9edf09
JK
121
122\f
123;;;
124;;; Remote evaluation.
125;;;
126
5ea7537b
JK
127(define (machine-become-command machine)
128 "Return as a list of strings the program and arguments necessary to run a
129shell command with escalated privileges for MACHINE's configuration."
130 (if (string= "root" (machine-ssh-configuration-user
131 (machine-configuration machine)))
132 '()
133 '("/run/setuid-programs/sudo" "-n" "--")))
134
fa9edf09
JK
135(define (managed-host-remote-eval machine exp)
136 "Internal implementation of 'machine-remote-eval' for MACHINE instances with
137an environment type of 'managed-host."
138 (maybe-raise-unsupported-configuration-error machine)
2c8e04f1
JK
139 (let ((config (machine-configuration machine)))
140 (remote-eval exp (machine-ssh-session machine)
141 #:build-locally?
142 (machine-ssh-configuration-build-locally? config)
143 #:system
4cc5e520
JK
144 (machine-ssh-configuration-system config)
145 #:become-command
146 (machine-become-command machine))))
fa9edf09
JK
147
148\f
fd3119db
JK
149;;;
150;;; Safety checks.
151;;;
152
ea6e2299
LC
153;; Assertion to be executed remotely. This abstraction exists to allow us to
154;; gather a list of expressions to be evaluated and eventually evaluate them
155;; all at once instead of one by one. (This is pretty much a monad.)
156(define-record-type <remote-assertion>
157 (remote-assertion exp proc)
158 remote-assertion?
159 (exp remote-assertion-expression)
160 (proc remote-assertion-procedure))
161
162(define-syntax-rule (remote-let ((var exp)) body ...)
163 "Return a <remote-assertion> that binds VAR to the result of evaluating EXP,
164a gexp, remotely, and evaluate BODY in that context."
165 (remote-assertion exp (lambda (var) body ...)))
166
fd3119db 167(define (machine-check-file-system-availability machine)
ea6e2299
LC
168 "Return a list of <remote-assertion> that raise a '&message' error condition
169if any of the file-systems specified in MACHINE's 'system' declaration do not
170exist on the machine."
fd3119db
JK
171 (define file-systems
172 (filter (lambda (fs)
173 (and (file-system-mount? fs)
174 (not (member (file-system-type fs)
175 %pseudo-file-system-types))
1c3b709e
S
176 ;; Don't try to validate network file systems.
177 (not (string-prefix? "nfs" (file-system-type fs)))
fd3119db
JK
178 (not (memq 'bind-mount (file-system-flags fs)))))
179 (operating-system-file-systems (machine-operating-system machine))))
180
181 (define (check-literal-file-system fs)
ea6e2299
LC
182 (remote-let ((errno #~(catch 'system-error
183 (lambda ()
184 (stat #$(file-system-device fs))
185 #t)
186 (lambda args
187 (system-error-errno args)))))
fd3119db 188 (when (number? errno)
d51bfe24 189 (raise (formatted-message (G_ "device '~a' not found: ~a")
fd3119db 190 (file-system-device fs)
d51bfe24 191 (strerror errno))))))
fd3119db
JK
192
193 (define (check-labeled-file-system fs)
194 (define remote-exp
02460db0
SB
195 (with-imported-modules (source-module-closure
196 '((gnu build file-systems)))
fd3119db
JK
197 #~(begin
198 (use-modules (gnu build file-systems))
199 (find-partition-by-label #$(file-system-label->string
200 (file-system-device fs))))))
201
ea6e2299 202 (remote-let ((result remote-exp))
fd3119db 203 (unless result
d51bfe24 204 (raise (formatted-message (G_ "no file system with label '~a'")
fd3119db 205 (file-system-label->string
d51bfe24 206 (file-system-device fs)))))))
fd3119db
JK
207
208 (define (check-uuid-file-system fs)
209 (define remote-exp
210 (with-imported-modules (source-module-closure
211 '((gnu build file-systems)
212 (gnu system uuid)))
213 #~(begin
214 (use-modules (gnu build file-systems)
215 (gnu system uuid))
216
0dd04b99
MC
217 (let ((uuid (uuid #$(uuid->string (file-system-device fs))
218 '#$(uuid-type (file-system-device fs)))))
219 (find-partition-by-uuid uuid)))))
fd3119db 220
ea6e2299 221 (remote-let ((result remote-exp))
fd3119db 222 (unless result
d51bfe24
LC
223 (raise (formatted-message (G_ "no file system with UUID '~a'")
224 (uuid->string (file-system-device fs)))))))
ea6e2299
LC
225
226 (append (map check-literal-file-system
227 (filter (lambda (fs)
228 (string? (file-system-device fs)))
229 file-systems))
230 (map check-labeled-file-system
231 (filter (lambda (fs)
232 (file-system-label? (file-system-device fs)))
233 file-systems))
234 (map check-uuid-file-system
235 (filter (lambda (fs)
236 (uuid? (file-system-device fs)))
237 file-systems))))
fd3119db
JK
238
239(define (machine-check-initrd-modules machine)
ea6e2299
LC
240 "Return a list of <remote-assertion> that raise a '&message' error condition
241if any of the modules needed by 'needed-for-boot' file systems in MACHINE are
242not available in the initrd."
fd3119db
JK
243 (define file-systems
244 (filter file-system-needed-for-boot?
245 (operating-system-file-systems (machine-operating-system machine))))
246
247 (define (missing-modules fs)
248 (define remote-exp
249 (let ((device (file-system-device fs)))
250 (with-imported-modules (source-module-closure
251 '((gnu build file-systems)
252 (gnu build linux-modules)
253 (gnu system uuid)))
dac7dd1b
MO
254 #~(begin
255 (use-modules (gnu build file-systems)
256 (gnu build linux-modules)
257 (gnu system uuid))
fd3119db 258
dac7dd1b
MO
259 (define dev
260 #$(cond ((string? device) device)
261 ((uuid? device) #~(find-partition-by-uuid
262 (string->uuid
263 #$(uuid->string device))))
264 ((file-system-label? device)
265 #~(find-partition-by-label
266 #$(file-system-label->string device)))))
fd3119db 267
dac7dd1b
MO
268 (missing-modules dev '#$(operating-system-initrd-modules
269 (machine-operating-system machine)))))))
ea6e2299
LC
270
271 (remote-let ((missing remote-exp))
272 (unless (null? missing)
273 (raise (condition
274 (&message
8bc74505 275 (message (format #f (G_ "missing modules for ~a:~{ ~a~}~%")
ea6e2299
LC
276 (file-system-device fs)
277 missing))))))))
278
279 (map missing-modules file-systems))
fd3119db 280
a396dd01
LC
281(define* (machine-check-forward-update machine)
282 "Check whether we are making a forward update for MACHINE. Depending on its
283'allow-upgrades?' field, raise an error or display a warning if we are
284potentially downgrading it."
285 (define config
286 (machine-configuration machine))
287
288 (define validate-reconfigure
289 (if (machine-ssh-configuration-allow-downgrades? config)
290 warn-about-backward-reconfigure
291 ensure-forward-reconfigure))
292
293 (remote-let ((provenance #~(call-with-input-file
294 "/run/current-system/provenance"
295 read)))
296 (define channels
297 (sexp->system-provenance provenance))
298
299 (check-forward-update validate-reconfigure
300 #:current-channels channels)))
301
2c8e04f1
JK
302(define (machine-check-building-for-appropriate-system machine)
303 "Raise a '&message' error condition if MACHINE is configured to be built
304locally and the 'system' field does not match the '%current-system' reported
305by MACHINE."
306 (let ((config (machine-configuration machine))
307 (system (remote-system (machine-ssh-session machine))))
308 (when (and (machine-ssh-configuration-build-locally? config)
309 (not (string= system (machine-ssh-configuration-system config))))
d51bfe24 310 (raise (formatted-message (G_ "incorrect target system\
ea6e2299 311 ('~a' was given, while the system reports that it is '~a')~%")
2c8e04f1 312 (machine-ssh-configuration-system config)
d51bfe24 313 system)))))
2c8e04f1 314
fd3119db
JK
315(define (check-deployment-sanity machine)
316 "Raise a '&message' error condition if it is clear that deploying MACHINE's
317'system' declaration would fail."
ea6e2299
LC
318 (define assertions
319 (append (machine-check-file-system-availability machine)
a396dd01
LC
320 (machine-check-initrd-modules machine)
321 (list (machine-check-forward-update machine))))
ea6e2299
LC
322
323 (define aggregate-exp
324 ;; Gather all the expressions so that a single round-trip is enough to
325 ;; evaluate all the ASSERTIONS remotely.
326 #~(map (lambda (file)
327 (false-if-exception (primitive-load file)))
328 '#$(map (lambda (assertion)
329 (scheme-file "remote-assertion.scm"
330 (remote-assertion-expression assertion)))
331 assertions)))
332
333 ;; First check MACHINE's system type--an incorrect value for 'system' would
334 ;; cause subsequent invocations of 'remote-eval' to fail.
335 (machine-check-building-for-appropriate-system machine)
336
337 (mlet %store-monad ((values (machine-remote-eval machine aggregate-exp)))
338 (for-each (lambda (proc value)
339 (proc value))
340 (map remote-assertion-procedure assertions)
341 values)
342 (return #t)))
fd3119db
JK
343
344\f
fa9edf09
JK
345;;;
346;;; System deployment.
347;;;
348
61d8bd56
LC
349(define not-config?
350 ;; Select (guix …) and (gnu …) modules, except (guix config).
351 (match-lambda
352 (('guix 'config) #f)
353 (('guix _ ...) #t)
354 (('gnu _ ...) #t)
355 (_ #f)))
356
fa9edf09
JK
357(define (machine-boot-parameters machine)
358 "Monadic procedure returning a list of 'boot-parameters' for the generations
359of MACHINE's system profile, ordered from most recent to oldest."
360 (define bootable-kernel-arguments
361 (@@ (gnu system) bootable-kernel-arguments))
362
363 (define remote-exp
364 (with-extensions (list guile-gcrypt)
61d8bd56
LC
365 (with-imported-modules `(((guix config) => ,(make-config.scm))
366 ,@(source-module-closure
367 '((guix profiles))
368 #:select? not-config?))
fa9edf09
JK
369 #~(begin
370 (use-modules (guix config)
371 (guix profiles)
372 (ice-9 textual-ports))
373
374 (define %system-profile
375 (string-append %state-directory "/profiles/system"))
376
377 (define (read-file path)
378 (call-with-input-file path
379 (lambda (port)
380 (get-string-all port))))
381
382 (map (lambda (generation)
383 (let* ((system-path (generation-file-name %system-profile
384 generation))
385 (boot-parameters-path (string-append system-path
386 "/parameters"))
387 (time (stat:mtime (lstat system-path))))
388 (list generation
389 system-path
390 time
391 (read-file boot-parameters-path))))
392 (reverse (generation-numbers %system-profile)))))))
393
394 (mlet* %store-monad ((generations (machine-remote-eval machine remote-exp)))
395 (return
396 (map (lambda (generation)
397 (match generation
398 ((generation system-path time serialized-params)
399 (let* ((params (call-with-input-string serialized-params
400 read-boot-parameters))
401 (root (boot-parameters-root-device params))
402 (label (boot-parameters-label params)))
403 (boot-parameters
404 (inherit params)
405 (label
406 (string-append label " (#"
407 (number->string generation) ", "
408 (let ((time (make-time time-utc 0 time)))
409 (date->string (time-utc->date time)
410 "~Y-~m-~d ~H:~M"))
411 ")"))
412 (kernel-arguments
413 (append (bootable-kernel-arguments system-path root)
414 (boot-parameters-kernel-arguments params))))))))
415 generations))))
416
9c70c460
JK
417(define-syntax-rule (with-roll-back should-roll-back? mbody ...)
418 "Catch exceptions that arise when binding MBODY, a monadic expression in
419%STORE-MONAD, and collect their arguments in a &deploy-error condition, with
420the 'should-roll-back' field set to SHOULD-ROLL-BACK?"
421 (catch #t
422 (lambda ()
423 mbody ...)
424 (lambda args
425 (raise (condition (&deploy-error
426 (should-roll-back should-roll-back?)
427 (captured-args args)))))))
428
fa9edf09
JK
429(define (deploy-managed-host machine)
430 "Internal implementation of 'deploy-machine' for MACHINE instances with an
431environment type of 'managed-host."
432 (maybe-raise-unsupported-configuration-error machine)
3033d59a
JK
433 (when (machine-ssh-configuration-authorize?
434 (machine-configuration machine))
435 (unless (file-exists? %public-key-file)
d51bfe24 436 (raise (formatted-message (G_ "no signing key '~a'. \
3033d59a 437have you run 'guix archive --generate-key?'")
d51bfe24 438 %public-key-file)))
3033d59a
JK
439 (remote-authorize-signing-key (call-with-input-file %public-key-file
440 (lambda (port)
441 (string->canonical-sexp
442 (get-string-all port))))
4cc5e520
JK
443 (machine-ssh-session machine)
444 (machine-become-command machine)))
fd3119db
JK
445 (mlet %store-monad ((_ (check-deployment-sanity machine))
446 (boot-parameters (machine-boot-parameters machine)))
d97ce204 447 (let* ((os (machine-operating-system machine))
5c793753
JK
448 (eval (cut machine-remote-eval machine <>))
449 (menu-entries (map boot-parameters->menu-entry boot-parameters))
450 (bootloader-configuration (operating-system-bootloader os))
451 (bootcfg (operating-system-bootcfg os menu-entries)))
452 (mbegin %store-monad
9c70c460
JK
453 (with-roll-back #f
454 (switch-to-system eval os))
455 (with-roll-back #t
456 (mbegin %store-monad
457 (upgrade-shepherd-services eval os)
458 (install-bootloader eval bootloader-configuration bootcfg)))))))
459
460\f
461;;;
462;;; Roll-back.
463;;;
464
465(define (roll-back-managed-host machine)
466 "Internal implementation of 'roll-back-machine' for MACHINE instances with
467an environment type of 'managed-host."
468 (define remote-exp
469 (with-extensions (list guile-gcrypt)
470 (with-imported-modules (source-module-closure '((guix config)
471 (guix profiles)))
472 #~(begin
473 (use-modules (guix config)
474 (guix profiles))
475
476 (define %system-profile
477 (string-append %state-directory "/profiles/system"))
478
479 (define target-generation
480 (relative-generation %system-profile -1))
481
482 (if target-generation
483 (switch-to-generation %system-profile target-generation)
484 'error)))))
485
486 (define roll-back-failure
487 (condition (&message (message (G_ "could not roll-back machine")))))
488
489 (mlet* %store-monad ((boot-parameters (machine-boot-parameters machine))
490 (_ -> (if (< (length boot-parameters) 2)
491 (raise roll-back-failure)))
492 (entries -> (map boot-parameters->menu-entry
493 (list (second boot-parameters))))
eaf09639
MÁAV
494 (locale -> (boot-parameters-locale
495 (second boot-parameters)))
f00e68ac
MÁAV
496 (crypto-dev -> (boot-parameters-store-crypto-devices
497 (second boot-parameters)))
582cf925
MÁAV
498 (store-dir -> (boot-parameters-store-directory-prefix
499 (second boot-parameters)))
9c70c460
JK
500 (old-entries -> (map boot-parameters->menu-entry
501 (drop boot-parameters 2)))
502 (bootloader -> (operating-system-bootloader
503 (machine-operating-system machine)))
504 (bootcfg (lower-object
505 ((bootloader-configuration-file-generator
506 (bootloader-configuration-bootloader
507 bootloader))
508 bootloader entries
eaf09639 509 #:locale locale
f00e68ac 510 #:store-crypto-devices crypto-dev
582cf925 511 #:store-directory-prefix store-dir
9c70c460
JK
512 #:old-entries old-entries)))
513 (remote-result (machine-remote-eval machine remote-exp)))
514 (when (eqv? 'error remote-result)
515 (raise roll-back-failure))))
fa9edf09
JK
516
517\f
518;;;
519;;; Environment type.
520;;;
521
522(define managed-host-environment-type
523 (environment-type
524 (machine-remote-eval managed-host-remote-eval)
525 (deploy-machine deploy-managed-host)
9c70c460 526 (roll-back-machine roll-back-managed-host)
fa9edf09 527 (name 'managed-host-environment-type)
53f21b3f 528 (description "Provisioning for machines that are accessible over SSH
fa9edf09
JK
529and have a known host-name. This entails little more than maintaining an SSH
530connection to the host.")))
531
532(define (maybe-raise-unsupported-configuration-error machine)
533 "Raise an error if MACHINE's configuration is not an instance of
534<machine-ssh-configuration>."
535 (let ((config (machine-configuration machine))
536 (environment (environment-type-name (machine-environment machine))))
537 (unless (and config (machine-ssh-configuration? config))
d51bfe24 538 (raise (formatted-message (G_ "unsupported machine configuration '~a'
fa9edf09
JK
539for environment of type '~a'")
540 config
d51bfe24 541 environment)))))
a396dd01
LC
542
543;; Local Variables:
544;; eval: (put 'remote-let 'scheme-indent-function 1)
545;; End: