2014-05-15 23:37:46 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-03-03 23:16:41 +01:00
|
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
2016-11-02 06:48:14 +01:00
|
|
|
;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
|
2014-05-15 23:37:46 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2014-09-03 10:47:05 +02:00
|
|
|
(define-module (gnu build install)
|
2014-05-15 23:37:46 +02:00
|
|
|
#:use-module (guix build utils)
|
2015-04-14 23:19:01 +02:00
|
|
|
#:use-module (guix build store-copy)
|
2014-05-17 17:39:30 +02:00
|
|
|
#:use-module (srfi srfi-26)
|
2014-05-15 23:37:46 +02:00
|
|
|
#:use-module (ice-9 match)
|
2017-05-09 10:52:02 +02:00
|
|
|
#:export (install-boot-config
|
2017-03-14 16:37:17 +01:00
|
|
|
evaluate-populate-directive
|
2014-05-17 17:39:30 +02:00
|
|
|
populate-root-file-system
|
2015-04-14 23:19:01 +02:00
|
|
|
register-closure
|
2018-11-03 23:01:44 +01:00
|
|
|
install-database-and-gc-roots
|
2015-04-14 23:19:01 +02:00
|
|
|
populate-single-profile-directory))
|
2014-05-15 23:37:46 +02:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;;
|
|
|
|
;;; This module supports the installation of the GNU system on a hard disk.
|
|
|
|
;;; It is meant to be used both in a build environment (in derivations that
|
|
|
|
;;; build VM images), and on the bare metal (when really installing the
|
|
|
|
;;; system.)
|
|
|
|
;;;
|
|
|
|
;;; Code:
|
|
|
|
|
2017-05-09 10:52:02 +02:00
|
|
|
(define (install-boot-config bootcfg bootcfg-location mount-point)
|
|
|
|
"Atomically copy BOOTCFG into BOOTCFG-LOCATION on the MOUNT-POINT. Note
|
|
|
|
that the caller must make sure that BOOTCFG is registered as a GC root so
|
|
|
|
that the fonts, background images, etc. referred to by BOOTCFG are not GC'd."
|
|
|
|
(let* ((target (string-append mount-point bootcfg-location))
|
2014-05-18 22:06:38 +02:00
|
|
|
(pivot (string-append target ".new")))
|
|
|
|
(mkdir-p (dirname target))
|
|
|
|
|
2017-05-09 10:52:02 +02:00
|
|
|
;; Copy BOOTCFG instead of just symlinking it, because symlinks won't
|
2014-12-09 11:06:22 +01:00
|
|
|
;; work when /boot is on a separate partition. Do that atomically.
|
2017-05-09 10:52:02 +02:00
|
|
|
(copy-file bootcfg pivot)
|
2016-11-02 06:48:14 +01:00
|
|
|
(rename-file pivot target)))
|
2014-05-15 23:37:46 +02:00
|
|
|
|
|
|
|
(define (evaluate-populate-directive directive target)
|
|
|
|
"Evaluate DIRECTIVE, an sexp describing a file or directory to create under
|
|
|
|
directory TARGET."
|
2014-05-17 17:39:30 +02:00
|
|
|
(let loop ((directive directive))
|
2014-09-10 21:39:47 +02:00
|
|
|
(catch 'system-error
|
|
|
|
(lambda ()
|
|
|
|
(match directive
|
|
|
|
(('directory name)
|
|
|
|
(mkdir-p (string-append target name)))
|
|
|
|
(('directory name uid gid)
|
|
|
|
(let ((dir (string-append target name)))
|
|
|
|
(mkdir-p dir)
|
|
|
|
(chown dir uid gid)))
|
|
|
|
(('directory name uid gid mode)
|
|
|
|
(loop `(directory ,name ,uid ,gid))
|
|
|
|
(chmod (string-append target name) mode))
|
|
|
|
((new '-> old)
|
|
|
|
(let try ()
|
|
|
|
(catch 'system-error
|
|
|
|
(lambda ()
|
|
|
|
(symlink old (string-append target new)))
|
|
|
|
(lambda args
|
|
|
|
;; When doing 'guix system init' on the current '/', some
|
|
|
|
;; symlinks may already exists. Override them.
|
|
|
|
(if (= EEXIST (system-error-errno args))
|
|
|
|
(begin
|
|
|
|
(delete-file (string-append target new))
|
|
|
|
(try))
|
|
|
|
(apply throw args))))))))
|
|
|
|
(lambda args
|
|
|
|
;; Usually we can only get here when installing to an existing root,
|
|
|
|
;; as with 'guix system init foo.scm /'.
|
|
|
|
(format (current-error-port)
|
|
|
|
"error: failed to evaluate directive: ~s~%"
|
|
|
|
directive)
|
|
|
|
(apply throw args)))))
|
2014-05-17 17:39:30 +02:00
|
|
|
|
|
|
|
(define (directives store)
|
|
|
|
"Return a list of directives to populate the root file system that will host
|
|
|
|
STORE."
|
2014-06-06 00:09:12 +02:00
|
|
|
`(;; Note: the store's GID is fixed precisely so we can set it here rather
|
|
|
|
;; than at activation time.
|
2014-07-19 14:25:39 +02:00
|
|
|
(directory ,store 0 30000 #o1775)
|
2014-06-04 22:19:30 +02:00
|
|
|
|
2014-05-17 17:39:30 +02:00
|
|
|
(directory "/etc")
|
2016-01-27 21:16:56 +01:00
|
|
|
(directory "/var/log") ; for shepherd
|
2014-05-17 17:39:30 +02:00
|
|
|
(directory "/var/guix/gcroots")
|
2014-05-24 17:53:30 +02:00
|
|
|
(directory "/var/empty") ; for no-login accounts
|
2014-07-13 16:35:24 +02:00
|
|
|
(directory "/var/db") ; for dhclient, etc.
|
2014-05-24 18:09:11 +02:00
|
|
|
(directory "/var/run")
|
2014-05-17 17:39:30 +02:00
|
|
|
(directory "/run")
|
2014-07-13 16:35:24 +02:00
|
|
|
(directory "/mnt")
|
2014-06-27 17:54:29 +02:00
|
|
|
(directory "/var/guix/profiles/per-user/root" 0 0)
|
|
|
|
|
|
|
|
;; Link to the initial system generation.
|
|
|
|
("/var/guix/profiles/system" -> "system-1-link")
|
|
|
|
|
2014-05-17 17:39:30 +02:00
|
|
|
("/var/guix/gcroots/booted-system" -> "/run/booted-system")
|
|
|
|
("/var/guix/gcroots/current-system" -> "/run/current-system")
|
2016-08-28 23:48:14 +02:00
|
|
|
("/var/guix/gcroots/profiles" -> "/var/guix/profiles")
|
|
|
|
|
2014-05-17 17:39:30 +02:00
|
|
|
(directory "/bin")
|
|
|
|
(directory "/tmp" 0 0 #o1777) ; sticky bit
|
2015-03-31 13:59:37 +02:00
|
|
|
(directory "/var/tmp" 0 0 #o1777)
|
2015-04-29 22:27:46 +02:00
|
|
|
(directory "/var/lock" 0 0 #o1777)
|
2014-05-17 17:39:30 +02:00
|
|
|
|
|
|
|
(directory "/home" 0 0)))
|
|
|
|
|
2014-06-27 17:54:29 +02:00
|
|
|
(define (populate-root-file-system system target)
|
2014-05-17 17:39:30 +02:00
|
|
|
"Make the essential non-store files and directories on TARGET. This
|
2014-06-27 17:54:29 +02:00
|
|
|
includes /etc, /var, /run, /bin/sh, etc., and all the symlinks to SYSTEM."
|
2014-05-17 17:39:30 +02:00
|
|
|
(for-each (cut evaluate-populate-directive <> target)
|
2014-06-27 17:54:29 +02:00
|
|
|
(directives (%store-directory)))
|
|
|
|
|
|
|
|
;; Add system generation 1.
|
2015-06-10 10:25:56 +02:00
|
|
|
(let ((generation-1 (string-append target
|
|
|
|
"/var/guix/profiles/system-1-link")))
|
|
|
|
(let try ()
|
|
|
|
(catch 'system-error
|
|
|
|
(lambda ()
|
|
|
|
(symlink system generation-1))
|
|
|
|
(lambda args
|
|
|
|
;; If GENERATION-1 already exists, overwrite it.
|
|
|
|
(if (= EEXIST (system-error-errno args))
|
|
|
|
(begin
|
|
|
|
(delete-file generation-1)
|
|
|
|
(try))
|
|
|
|
(apply throw args)))))))
|
2014-05-15 23:37:46 +02:00
|
|
|
|
2018-11-03 23:01:44 +01:00
|
|
|
(define %root-profile
|
|
|
|
"/var/guix/profiles/per-user/root")
|
|
|
|
|
|
|
|
(define* (install-database-and-gc-roots root database profile
|
|
|
|
#:key (profile-name "guix-profile"))
|
|
|
|
"Install DATABASE, the store database, under directory ROOT. Create
|
|
|
|
PROFILE-NAME and have it link to PROFILE, a store item."
|
|
|
|
(define (scope file)
|
|
|
|
(string-append root "/" file))
|
|
|
|
|
|
|
|
(define (mkdir-p* dir)
|
|
|
|
(mkdir-p (scope dir)))
|
|
|
|
|
|
|
|
(define (symlink* old new)
|
|
|
|
(symlink old (scope new)))
|
|
|
|
|
|
|
|
(install-file database (scope "/var/guix/db/"))
|
|
|
|
(chmod (scope "/var/guix/db/db.sqlite") #o644)
|
|
|
|
(mkdir-p* "/var/guix/profiles")
|
|
|
|
(mkdir-p* "/var/guix/gcroots")
|
|
|
|
(symlink* "/var/guix/profiles" "/var/guix/gcroots/profiles")
|
|
|
|
|
|
|
|
;; Make root's profile, which makes it a GC root.
|
|
|
|
(mkdir-p* %root-profile)
|
|
|
|
(symlink* profile
|
|
|
|
(string-append %root-profile "/" profile-name "-1-link"))
|
|
|
|
(symlink* (string-append profile-name "-1-link")
|
|
|
|
(string-append %root-profile "/" profile-name)))
|
|
|
|
|
2015-04-14 23:19:01 +02:00
|
|
|
(define* (populate-single-profile-directory directory
|
2015-06-17 09:49:22 +02:00
|
|
|
#:key profile closure
|
2018-10-20 17:51:58 +02:00
|
|
|
(profile-name "guix-profile")
|
2018-10-27 23:47:59 +02:00
|
|
|
database)
|
2015-04-14 23:19:01 +02:00
|
|
|
"Populate DIRECTORY with a store containing PROFILE, whose closure is given
|
|
|
|
in the file called CLOSURE (as generated by #:references-graphs.) DIRECTORY
|
|
|
|
is initialized to contain a single profile under /root pointing to PROFILE.
|
2018-10-27 23:47:59 +02:00
|
|
|
|
|
|
|
When DATABASE is true, copy it to DIRECTORY/var/guix/db and create
|
|
|
|
DIRECTORY/var/guix/gcroots and friends.
|
2015-06-17 09:49:22 +02:00
|
|
|
|
2018-10-20 17:51:58 +02:00
|
|
|
PROFILE-NAME is the name of the profile being created under
|
|
|
|
/var/guix/profiles, typically either \"guix-profile\" or \"current-guix\".
|
|
|
|
|
2017-03-14 15:11:03 +01:00
|
|
|
This is used to create the self-contained tarballs with 'guix pack'."
|
2015-04-14 23:19:01 +02:00
|
|
|
(define (scope file)
|
|
|
|
(string-append directory "/" file))
|
|
|
|
|
|
|
|
(define (mkdir-p* dir)
|
|
|
|
(mkdir-p (scope dir)))
|
|
|
|
|
|
|
|
(define (symlink* old new)
|
|
|
|
(symlink old (scope new)))
|
|
|
|
|
|
|
|
;; Populate the store.
|
|
|
|
(populate-store (list closure) directory)
|
2017-03-14 15:11:03 +01:00
|
|
|
|
2018-10-27 23:47:59 +02:00
|
|
|
(when database
|
2018-11-03 23:01:44 +01:00
|
|
|
(install-database-and-gc-roots directory database profile
|
|
|
|
#:profile-name profile-name))
|
2018-10-20 17:51:58 +02:00
|
|
|
|
|
|
|
(match profile-name
|
|
|
|
("guix-profile"
|
|
|
|
(mkdir-p* "/root")
|
|
|
|
(symlink* (string-append %root-profile "/guix-profile")
|
|
|
|
"/root/.guix-profile"))
|
|
|
|
("current-guix"
|
|
|
|
(mkdir-p* "/root/.config/guix")
|
|
|
|
(symlink* (string-append %root-profile "/current-guix")
|
|
|
|
"/root/.config/guix/current"))
|
|
|
|
(_
|
|
|
|
#t)))
|
2015-04-14 23:19:01 +02:00
|
|
|
|
2014-05-15 23:37:46 +02:00
|
|
|
;;; install.scm ends here
|