[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/12: services: childhurd: Authorize the childhurd’s key on the host.
From: |
guix-commits |
Subject: |
07/12: services: childhurd: Authorize the childhurd’s key on the host. |
Date: |
Fri, 22 Sep 2023 09:58:43 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 1359b792a9ca023524d14edcebcf1d0ca7fe36ef
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Sep 22 14:54:08 2023 +0200
services: childhurd: Authorize the childhurd’s key on the host.
This partly automates setting up a childhurd for offloading purposes.
* gnu/services/virtualization.scm (authorize-guest-substitutes-on-host):
New procedure.
(hurd-vm-activation): Use it.
---
gnu/services/virtualization.scm | 51 ++++++++++++++++++++++++++++++++++++++++-
1 file changed, 50 insertions(+), 1 deletion(-)
diff --git a/gnu/services/virtualization.scm b/gnu/services/virtualization.scm
index fd153dd051..ca000f5d28 100644
--- a/gnu/services/virtualization.scm
+++ b/gnu/services/virtualization.scm
@@ -28,6 +28,7 @@
#:use-module (gnu image)
#:use-module (gnu packages admin)
#:use-module (gnu packages gdb)
+ #:autoload (gnu packages gnupg) (guile-gcrypt)
#:use-module (gnu packages package-management)
#:use-module (gnu packages ssh)
#:use-module (gnu packages virtualization)
@@ -50,6 +51,7 @@
#:use-module (guix records)
#:use-module (guix store)
#:use-module (guix utils)
+ #:autoload (guix self) (make-config.scm)
#:use-module (srfi srfi-9)
#:use-module (srfi srfi-26)
@@ -1271,6 +1273,50 @@ is added to the OS specified in CONFIG."
(program-file "initialize-hurd-vm-substitutes" run))
+(define (authorize-guest-substitutes-on-host)
+ "Return a program that authorizes the guest's archive signing key (passed as
+an argument) on the host."
+ (define not-config?
+ (match-lambda
+ ('(guix config) #f)
+ (('guix _ ...) #t)
+ (('gnu _ ...) #t)
+ (_ #f)))
+
+ (define run
+ (with-extensions (list guile-gcrypt)
+ (with-imported-modules `(((guix config) => ,(make-config.scm))
+ ,@(source-module-closure
+ '((guix pki)
+ (guix build utils))
+ #:select? not-config?))
+ #~(begin
+ (use-modules (ice-9 match)
+ (ice-9 textual-ports)
+ (gcrypt pk-crypto)
+ (guix pki)
+ (guix build utils))
+
+ (match (command-line)
+ ((_ guest-config-directory)
+ (let ((guest-key (string-append guest-config-directory
+ "/signing-key.pub")))
+ (if (file-exists? guest-key)
+ ;; Add guest key to the host's ACL.
+ (let* ((key (string->canonical-sexp
+ (call-with-input-file guest-key
+ get-string-all)))
+ (acl (public-keys->acl
+ (cons key (acl->public-keys
(current-acl))))))
+ (with-atomic-file-replacement %acl-file
+ (lambda (_ port)
+ (write-acl acl port))))
+ (format (current-error-port)
+ "warning: guest key missing from '~a'~%"
+ guest-key)))))))))
+
+ (program-file "authorize-guest-substitutes-on-host" run))
+
(define (hurd-vm-activation config)
"Return a gexp to activate the Hurd VM according to CONFIG."
(with-imported-modules '((guix build utils))
@@ -1294,7 +1340,10 @@ is added to the OS specified in CONFIG."
(unless (file-exists? guix-directory)
(invoke #$(initialize-hurd-vm-substitutes)
- guix-directory)))))
+ guix-directory))
+
+ ;; Authorize the archive signing key from GUIX-DIRECTORY in the host.
+ (invoke #$(authorize-guest-substitutes-on-host) guix-directory))))
(define hurd-vm-service-type
(service-type
- branch hurd-team updated (539b171a59 -> 6e161413c7), guix-commits, 2023/09/22
- 03/12: services: hurd-vm: Use the default SSH port number., guix-commits, 2023/09/22
- 01/12: system: vm: Remove unused variable., guix-commits, 2023/09/22
- 05/12: services: guix: Use the right locale package on GNU/Hurd., guix-commits, 2023/09/22
- 07/12: services: childhurd: Authorize the childhurd’s key on the host.,
guix-commits <=
- 08/12: services: hurd-vm: ‘image’ field has to be an <image> record., guix-commits, 2023/09/22
- 09/12: tests: hurd-vm: Remove custom disk image configuration., guix-commits, 2023/09/22
- 12/12: services: hurd-vm: Implement zero-configuration offloading., guix-commits, 2023/09/22
- 02/12: secret-service: Increase default handshake timeout., guix-commits, 2023/09/22
- 04/12: gnu: glibc-utf8-locales: Reintroduce input labels., guix-commits, 2023/09/22
- 06/12: services: guix: Support declarative offloading setup., guix-commits, 2023/09/22
- 10/12: services: hurd-vm: Disable password-based authentication for root., guix-commits, 2023/09/22
- 11/12: doc: Give an example showing how to add an account in the childhurd., guix-commits, 2023/09/22