diff mbox series

[bug#36555,v3,2/3] guix system: Reimplement 'reconfigure'.

Message ID 87muhdzgli.fsf_-_@sdf.lonestar.org
State Accepted
Headers show
Series Refactor out common behavior for system reconfiguration. | expand

Commit Message

Jakob L. Kreuze July 16, 2019, 11:48 p.m. UTC
* guix/scripts/system.scm (switch-to-system)
(upgrade-shepherd-services, install-bootloader): Delete variable.
* guix/scripts/system.scm (%switch-to-system)
(%upgrade-shepherd-services, %install-bootloader): New variable.
---
 guix/scripts/system.scm             | 151 +++++++++-------------------
 guix/scripts/system/reconfigure.scm | 116 +++++++--------------
 2 files changed, 79 insertions(+), 188 deletions(-)
diff mbox series

Patch

diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 21858ee7d..b59818577 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -41,6 +41,7 @@ 
                                        delete-matching-generations)
   #:use-module (guix graph)
   #:use-module (guix scripts graph)
+  #:use-module (guix scripts system reconfigure)
   #:use-module (guix build utils)
   #:use-module (guix progress)
   #:use-module ((guix build syscalls) #:select (terminal-columns))
@@ -179,38 +180,14 @@  TARGET, and register them."
 
     (return *unspecified*)))
 
-(define* (install-bootloader installer
-                             #:key
-                             bootcfg bootcfg-file
-                             target)
+(define (install-bootloader installer bootcfg bootcfg-file target)
   "Run INSTALLER, a bootloader installation script, with error handling, in
 %STORE-MONAD."
-  (mlet %store-monad ((installer-drv (if installer
-                                         (lower-object installer)
-                                         (return #f)))
-                      (bootcfg       (lower-object bootcfg)))
-    (let* ((gc-root      (string-append target %gc-roots-directory
-                                        "/bootcfg"))
-           (temp-gc-root (string-append gc-root ".new"))
-           (install (and installer-drv
-                         (derivation->output-path installer-drv)))
-           (bootcfg (derivation->output-path bootcfg)))
-      ;; Prepare the symlink to bootloader config file to make sure that it's
-      ;; a GC root when 'installer-drv' completes (being a bit paranoid.)
-      (switch-symlinks temp-gc-root bootcfg)
-
-      (unless (false-if-exception
-               (begin
-                 (install-boot-config bootcfg bootcfg-file target)
-                 (when install
-                   (save-load-path-excursion (primitive-load install)))))
-        (delete-file temp-gc-root)
-        (leave (G_ "failed to install bootloader ~a~%") install))
-
-      ;; Register bootloader config file as a GC root so that its dependencies
-      ;; (background image, font, etc.) are not reclaimed.
-      (rename-file temp-gc-root gc-root)
-      (return #t))))
+  (mlet* %store-monad ((file (lower-object
+                              (install-bootloader-program installer bootcfg
+                                                          bootcfg-file target)))
+                       (_ (built-derivations (list file))))
+    (return (primitive-load (derivation->output-path file)))))
 
 (define* (install os-drv target
                   #:key (log-port (current-output-port))
@@ -266,10 +243,8 @@  the ownership of '~a' may be incorrect!~%")
         (populate os-dir target)
 
         (mwhen install-bootloader?
-          (install-bootloader bootloader-installer
-                              #:bootcfg bootcfg
-                              #:bootcfg-file bootcfg-file
-                              #:target target))))))
+          (install-bootloader bootloader-installer bootcfg
+                              bootcfg-file target))))))
 
 
 ;;;
@@ -343,74 +318,39 @@  services specified in OS and not currently running.
 This is currently very conservative in that it does not stop or unload any
 running service.  Unloading or stopping the wrong service ('udev', say) could
 bring the system down."
-  (define new-services
+  (define target-services
     (service-value
      (fold-services (operating-system-services os)
                     #:target-type shepherd-root-service-type)))
 
-  ;; Arrange to simply emit a warning if the service upgrade fails.
-  (with-shepherd-error-handling
-   (call-with-service-upgrade-info new-services
-     (lambda (to-restart to-unload)
-        (for-each (lambda (unload)
-                    (info (G_ "unloading service '~a'...~%") unload)
-                    (unload-service unload))
-                  to-unload)
-
-        (with-monad %store-monad
-          (munless (null? new-services)
-            (let ((new-service-names  (map shepherd-service-canonical-name new-services))
-                  (to-restart-names   (map shepherd-service-canonical-name to-restart))
-                  (to-start           (filter shepherd-service-auto-start? new-services)))
-              (info (G_ "loading new services:~{ ~a~}...~%") new-service-names)
-              (unless (null? to-restart-names)
-                ;; Listing TO-RESTART-NAMES in the message below wouldn't help
-                ;; because many essential services cannot be meaningfully
-                ;; restarted.  See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22039#30>.
-                (format #t (G_ "To complete the upgrade, run 'herd restart SERVICE' to stop,
-upgrade, and restart each service that was not automatically restarted.\n")))
-              (mlet %store-monad ((files (mapm %store-monad
-                                               (compose lower-object
-                                                        shepherd-service-file)
-                                               new-services)))
-                ;; Here we assume that FILES are exactly those that were computed
-                ;; as part of the derivation that built OS, which is normally the
-                ;; case.
-                (load-services/safe (map derivation->output-path files))
-
-                (for-each start-service
-                          (map shepherd-service-canonical-name to-start))
-                (return #t)))))))))
-
-(define* (switch-to-system os
-                           #:optional (profile %system-profile))
-  "Make a new generation of PROFILE pointing to the directory of OS, switch to
-it atomically, and then run OS's activation script."
-  (mlet* %store-monad ((drv (operating-system-derivation os))
-                       (script (lower-object (operating-system-activation-script os))))
-    (let* ((system     (derivation->output-path drv))
-           (number     (+ 1 (generation-number profile)))
-           (generation (generation-file-name profile number)))
-      (switch-symlinks generation system)
-      (switch-symlinks profile generation)
-
-      (format #t (G_ "activating system...~%"))
-
-      ;; The activation script may change $PATH, among others, so protect
-      ;; against that.
-      (save-environment-excursion
-       ;; Tell 'activate-current-system' what the new system is.
-       (setenv "GUIX_NEW_SYSTEM" system)
-
-       ;; The activation script may modify '%load-path' & co., so protect
-       ;; against that.  This is necessary to ensure that
-       ;; 'upgrade-shepherd-services' gets to see the right modules when it
-       ;; computes derivations with 'gexp->derivation'.
-       (save-load-path-excursion
-        (primitive-load (derivation->output-path script))))
-
-      ;; Finally, try to update system services.
-      (upgrade-shepherd-services os))))
+  (let-values (((to-unload to-restart)
+                (shepherd-service-upgrade (current-services) target-services)))
+    (let* ((to-unload (map live-service-canonical-name to-unload))
+           (to-restart (map shepherd-service-canonical-name to-restart))
+           (to-start (lset-difference
+                      eqv?
+                      (map shepherd-service-canonical-name target-services)
+                      (map live-service-canonical-name (current-services))))
+           (service-files
+            (map shepherd-service-file
+                 (filter (lambda (service)
+                           (memq (shepherd-service-canonical-name service)
+                                 to-start))
+                         target-services))))
+      (mlet* %store-monad ((file (lower-object
+                                  (upgrade-services-program service-files
+                                                            to-start
+                                                            to-unload
+                                                            to-restart)))
+                           (_ (built-derivations (list file))))
+        (return (primitive-load (derivation->output-path file)))))))
+
+(define (switch-to-system os)
+  "Make a new generation of PROFILE pointing to the directory of OS, switch
+to it atomically, and then run OS's activation script."
+  (mlet* %store-monad ((file (lower-object (switch-system-program os)))
+                       (_ (built-derivations (list file))))
+    (return (primitive-load (derivation->output-path file)))))
 
 (define-syntax-rule (unless-file-not-found exp)
   (catch 'system-error
@@ -514,10 +454,7 @@  STORE is an open connection to the store."
           (built-derivations drvs)
           ;; Only install bootloader configuration file. Thus, no installer is
           ;; provided here.
-          (install-bootloader #f
-                              #:bootcfg bootcfg
-                              #:bootcfg-file bootcfg-file
-                              #:target target))))))
+          (install-bootloader #f bootcfg bootcfg-file target))))))
 
 
 ;;;
@@ -918,13 +855,15 @@  static checks."
 
           (case action
             ((reconfigure)
+             (newline)
+             (format #t (G_ "activating system...~%"))
              (mbegin %store-monad
                (switch-to-system os)
                (mwhen install-bootloader?
-                 (install-bootloader bootloader-script
-                                     #:bootcfg bootcfg
-                                     #:bootcfg-file bootcfg-file
-                                     #:target "/"))))
+                 (install-bootloader bootloader-script bootcfg
+                                     bootcfg-file (or target "/")))
+               (with-shepherd-error-handling
+                (upgrade-shepherd-services os))))
             ((init)
              (newline)
              (format #t (G_ "initializing operating system under '~a'...~%")
diff --git a/guix/scripts/system/reconfigure.scm b/guix/scripts/system/reconfigure.scm
index 9491bde34..1ef656f0c 100644
--- a/guix/scripts/system/reconfigure.scm
+++ b/guix/scripts/system/reconfigure.scm
@@ -42,11 +42,11 @@ 
 ;;; Code:
 
 (define* (switch-system-program os #:optional profile)
-  "Return as a monadic value a derivation to build a scheme file that, upon
-being evaluated, will create a new generation of PROFILE pointing to the
-directory of OS, switch to it atomically, and run OS's activation script,
-returning any textual output produced by the activation script as a string."
-  (gexp->script
+  "Return an executable store item that, upon being evaluated, will create a
+new generation of PROFILE pointing to the directory of OS, switch to it
+atomically, and run OS's activation script, returning any textual output
+produced by the activation script as a string."
+  (program-file
    "switch-to-system.scm"
    (with-extensions (list guile-gcrypt)
      (with-imported-modules (source-module-closure '((guix config)
@@ -65,82 +65,36 @@  returning any textual output produced by the activation script as a string."
              (switch-symlinks generation #$os)
              (switch-symlinks profile generation)
              (setenv "GUIX_NEW_SYSTEM" #$os)
-             (with-output-to-string
-               (lambda ()
-                 (primitive-load
-                  #$(operating-system-activation-script os))))))))))
+             (primitive-load #$(operating-system-activation-script os))))))))
 
 ;; XXX: Currently, this does NOT attempt to restart running services. See
 ;; <https://issues.guix.info/issue/33508> for details.
-(define (upgrade-services-program target-services)
-  "Return as a monadic value a derivation to build a scheme file that, upon
-being evaluated, will upgrade the Shepherd (PID 1) by unloading obsolete
-services and loading new services. TARGET-SERVICES is a list
-of (shepherd-service-canonical-name, shepherd-service-file) pairs used for
-determining which services are obsolete, as well as which are new."
-  (gexp->script
+(define (upgrade-services-program service-files to-start to-unload to-restart)
+  "Return an executable store item that, upon being evaluated, will upgrade
+the Shepherd (PID 1) by unloading obsolete services and loading new
+services. SERVICE-FILES is a list of Shepherd service files to load, and
+TO-START, TO-UNLOAD, and TO-RESTART are lists of the Shepherd services'
+canonical names (symbols)."
+  (program-file
    "upgrade-shepherd-services.scm"
    (with-imported-modules '((gnu services herd))
     #~(begin
         (use-modules (gnu services herd)
                      (srfi srfi-1))
 
-        (define (call-with-shepherd-error-handling proc)
-          (lambda (service)
-            (catch 'system-error
-              (lambda ()
-                (proc service)
-                #f)
-              (lambda (key proc format-string format-args errno . rest)
-                (apply format #f format-string format-args)))))
-
-        (define running
-          (filter live-service-running (current-services)))
-
-        (define (essential? service)
-          ;; Return #t if SERVICE is essential and should not be unloaded
-          ;; under any circumstance.
-          (memq (first (live-service-provision service))
-                '(root shepherd)))
-
-        (define (obsolete? service)
-          ;; Return #t if SERVICE can be safely unloaded.
-          (and (not (essential? service))
-               (every (lambda (requirements)
-                        (not (memq (first (live-service-provision service))
-                                   requirements)))
-                      (map live-service-requirement running))))
-
-        (define to-unload
-          (filter obsolete?
-                  (remove (lambda (service)
-                            (memq (first (live-service-provision service))
-                                  (map first '#$target-services)))
-                          running)))
-
-        (define to-start
-          (remove (lambda (service-pair)
-                    (memq (first service-pair)
-                          (map (compose first live-service-provision)
-                               running)))
-                  '#$target-services))
-
         ;; Load the service files for any new services.
-        (load-services/safe (map second to-start))
+        (load-services/safe '#$service-files)
 
         ;; Unload obsolete services and start new services.
-        (filter string?
-                (append (map (call-with-shepherd-error-handling unload-service)
-                             to-unload)
-                        (map (call-with-shepherd-error-handling start-service)
-                             (map first to-start))))))))
+        (for-each unload-service '#$to-unload)
+        (for-each start-service '#$to-start)))))
 
 (define (install-bootloader-program installer-script bootcfg bootcfg-file target)
-  "Return as a monadic value a derivation to build a scheme file that, upon
-being evaluated, will install BOOTCFG to BOOTCFG-FILE, a target file name, on
-TARGET, a mount point, and subsequently run INSTALLER-SCRIPT, returning any
-textual output produced by the installer script as a string."
-  (gexp->script
+  "Return an executable store item that, upon being evaluated, will install
+BOOTCFG to BOOTCFG-FILE, a target file name, on TARGET, a mount point, and
+subsequently run INSTALLER-SCRIPT, returning any textual output produced by
+the installer script as a string."
+  (program-file
    "install-bootloader.scm"
    (with-extensions (list guile-gcrypt)
      (with-imported-modules (source-module-closure '((gnu build install)
@@ -152,19 +106,17 @@  textual output produced by the installer script as a string."
                         (guix utils))
            (let* ((gc-root (string-append #$target %gc-roots-directory "/bootcfg"))
                   (temp-gc-root (string-append gc-root ".new")))
-
              (switch-symlinks temp-gc-root gc-root)
-
-             (let ((installer-result
-                    (false-if-exception
-                     (begin
-                       (install-boot-config #$bootcfg #$bootcfg-file #$target)
-                       (with-output-to-string
-                         (lambda ()
-                           (when #$installer-script
-                             (primitive-load #$installer-script))))))))
-               (unless installer-result
-                 (delete-file temp-gc-root)
-                 (error "failed to install bootloader"))
-               (rename-file temp-gc-root gc-root)
-               installer-result)))))))
+             (install-boot-config #$bootcfg #$bootcfg-file #$target)
+             ;; Preserve the previous activation's garbage collector root
+             ;; until the bootloader installer has run, so that a failure in
+             ;; the bootloader's installer script doesn't leave the user with
+             ;; a broken installation.
+             (when #$installer-script
+               (catch #t
+                 (lambda ()
+                   (primitive-load #$installer-script))
+                 (lambda args
+                   (delete-file temp-gc-root)
+                   (apply throw args))))
+             (rename-file temp-gc-root gc-root)))))))