mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
vm: Generate a UUID to identify the root file system.
This makes collisions less likely than when using a label to look up the partition. See <https://bugs.gnu.org/27735>. * gnu/system/vm.scm (operating-system-uuid): New procedure. (system-disk-image): Define 'root-uuid' and use it for the root file system. Pass it to 'iso9660-image' and 'qemu-image'.
This commit is contained in:
parent
fd3b4b985d
commit
5f7fe1c57e
1 changed files with 45 additions and 6 deletions
|
@ -61,6 +61,7 @@ (define-module (gnu system vm)
|
|||
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-26)
|
||||
#:use-module (rnrs bytevectors)
|
||||
#:use-module (ice-9 match)
|
||||
|
||||
#:export (expression->derivation-in-linux-vm
|
||||
|
@ -350,6 +351,35 @@ (define* (qemu-image #:key
|
|||
;;; VM and disk images.
|
||||
;;;
|
||||
|
||||
(define* (operating-system-uuid os #:optional (type 'dce))
|
||||
"Compute UUID object with a deterministic \"UUID\" for OS, of the given
|
||||
TYPE (one of 'iso9660 or 'dce). Return a UUID object."
|
||||
(if (eq? type 'iso9660)
|
||||
(let ((pad (compose (cut string-pad <> 2 #\0)
|
||||
number->string))
|
||||
(h (hash (operating-system-services os) 3600)))
|
||||
(bytevector->uuid
|
||||
(string->iso9660-uuid
|
||||
(string-append "1970-01-01-"
|
||||
(pad (hash (operating-system-host-name os) 24)) "-"
|
||||
(pad (quotient h 60)) "-"
|
||||
(pad (modulo h 60)) "-"
|
||||
(pad (hash (operating-system-file-systems os) 100))))
|
||||
'iso9660))
|
||||
(bytevector->uuid
|
||||
(uint-list->bytevector
|
||||
(list (hash file-system-type
|
||||
(expt 2 32))
|
||||
(hash (operating-system-host-name os)
|
||||
(expt 2 32))
|
||||
(hash (operating-system-services os)
|
||||
(expt 2 32))
|
||||
(hash (operating-system-file-systems os)
|
||||
(expt 2 32)))
|
||||
(endianness little)
|
||||
4)
|
||||
type)))
|
||||
|
||||
(define* (system-disk-image os
|
||||
#:key
|
||||
(name "disk-image")
|
||||
|
@ -366,12 +396,20 @@ (define normalize-label
|
|||
(if (string=? "iso9660" file-system-type)
|
||||
string-upcase
|
||||
identity))
|
||||
|
||||
(define root-label
|
||||
;; Volume name of the root file system. Since we don't know which device
|
||||
;; will hold it, we use the volume name to find it (using the UUID would
|
||||
;; be even better, but somewhat less convenient.)
|
||||
;; Volume name of the root file system.
|
||||
(normalize-label "GuixSD_image"))
|
||||
|
||||
(define root-uuid
|
||||
;; UUID of the root file system, computed in a deterministic fashion.
|
||||
;; This is what we use to locate the root file system so it has to be
|
||||
;; different from the user's own file system UUIDs.
|
||||
(operating-system-uuid os
|
||||
(if (string=? file-system-type "iso9660")
|
||||
'iso9660
|
||||
'dce)))
|
||||
|
||||
(define file-systems-to-keep
|
||||
(remove (lambda (fs)
|
||||
(string=? (file-system-mount-point fs) "/"))
|
||||
|
@ -395,8 +433,8 @@ (define file-systems-to-keep
|
|||
;; Force our own root file system.
|
||||
(file-systems (cons (file-system
|
||||
(mount-point "/")
|
||||
(device root-label)
|
||||
(title 'label)
|
||||
(device root-uuid)
|
||||
(title 'uuid)
|
||||
(type file-system-type))
|
||||
file-systems-to-keep)))))
|
||||
|
||||
|
@ -405,7 +443,7 @@ (define file-systems-to-keep
|
|||
(if (string=? "iso9660" file-system-type)
|
||||
(iso9660-image #:name name
|
||||
#:file-system-label root-label
|
||||
#:file-system-uuid #f
|
||||
#:file-system-uuid root-uuid
|
||||
#:os-drv os-drv
|
||||
#:register-closures? #t
|
||||
#:bootcfg-drv bootcfg
|
||||
|
@ -422,6 +460,7 @@ (define file-systems-to-keep
|
|||
#:disk-image-format "raw"
|
||||
#:file-system-type file-system-type
|
||||
#:file-system-label root-label
|
||||
#:file-system-uuid root-uuid
|
||||
#:copy-inputs? #t
|
||||
#:register-closures? #t
|
||||
#:inputs `(("system" ,os-drv)
|
||||
|
|
Loading…
Reference in a new issue