gnu: Add libsmf.
[jackhill/guix/guix.git] / gnu / build / install.scm
CommitLineData
5ce3defe 1;;; GNU Guix --- Functional package management for GNU
334bda9a 2;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
1e17a2d5 3;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
5ce3defe
LC
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
548f7a8f 20(define-module (gnu build install)
5ce3defe 21 #:use-module (guix build utils)
9d3fb6c7 22 #:use-module (guix build store-copy)
b4140694 23 #:use-module (srfi srfi-26)
5ce3defe
LC
24 #:use-module (ice-9 match)
25 #:export (install-grub
1e17a2d5 26 install-grub-config
b4140694 27 populate-root-file-system
5ce3defe 28 reset-timestamps
9d3fb6c7
LC
29 register-closure
30 populate-single-profile-directory))
5ce3defe
LC
31
32;;; Commentary:
33;;;
34;;; This module supports the installation of the GNU system on a hard disk.
35;;; It is meant to be used both in a build environment (in derivations that
36;;; build VM images), and on the bare metal (when really installing the
37;;; system.)
38;;;
39;;; Code:
40
1e17a2d5 41(define (install-grub grub.cfg device mount-point)
5ce3defe 42 "Install GRUB with GRUB.CFG on DEVICE, which is assumed to be mounted on
6412e58a
LC
43MOUNT-POINT.
44
45Note that the caller must make sure that GRUB.CFG is registered as a GC root
46so that the fonts, background images, etc. referred to by GRUB.CFG are not
47GC'd."
1e17a2d5 48 (install-grub-config grub.cfg mount-point)
f7f292d3
LC
49
50 ;; Tell 'grub-install' that there might be a LUKS-encrypted /boot or root
51 ;; partition.
52 (setenv "GRUB_ENABLE_CRYPTODISK" "y")
53
1e17a2d5
CM
54 (unless (zero? (system* "grub-install" "--no-floppy"
55 "--boot-directory"
56 (string-append mount-point "/boot")
57 device))
58 (error "failed to install GRUB")))
59
60(define (install-grub-config grub.cfg mount-point)
61 "Atomically copy GRUB.CFG into boot/grub/grub.cfg on the MOUNT-POINT. Note
62that the caller must make sure that GRUB.CFG is registered as a GC root so
63that the fonts, background images, etc. referred to by GRUB.CFG are not GC'd."
6ffd11f1
LC
64 (let* ((target (string-append mount-point "/boot/grub/grub.cfg"))
65 (pivot (string-append target ".new")))
66 (mkdir-p (dirname target))
67
6412e58a
LC
68 ;; Copy GRUB.CFG instead of just symlinking it, because symlinks won't
69 ;; work when /boot is on a separate partition. Do that atomically.
70 (copy-file grub.cfg pivot)
1e17a2d5 71 (rename-file pivot target)))
5ce3defe
LC
72
73(define (evaluate-populate-directive directive target)
74 "Evaluate DIRECTIVE, an sexp describing a file or directory to create under
75directory TARGET."
b4140694 76 (let loop ((directive directive))
a4888e2e
LC
77 (catch 'system-error
78 (lambda ()
79 (match directive
80 (('directory name)
81 (mkdir-p (string-append target name)))
82 (('directory name uid gid)
83 (let ((dir (string-append target name)))
84 (mkdir-p dir)
85 (chown dir uid gid)))
86 (('directory name uid gid mode)
87 (loop `(directory ,name ,uid ,gid))
88 (chmod (string-append target name) mode))
89 ((new '-> old)
90 (let try ()
91 (catch 'system-error
92 (lambda ()
93 (symlink old (string-append target new)))
94 (lambda args
95 ;; When doing 'guix system init' on the current '/', some
96 ;; symlinks may already exists. Override them.
97 (if (= EEXIST (system-error-errno args))
98 (begin
99 (delete-file (string-append target new))
100 (try))
101 (apply throw args))))))))
102 (lambda args
103 ;; Usually we can only get here when installing to an existing root,
104 ;; as with 'guix system init foo.scm /'.
105 (format (current-error-port)
106 "error: failed to evaluate directive: ~s~%"
107 directive)
108 (apply throw args)))))
b4140694
LC
109
110(define (directives store)
111 "Return a list of directives to populate the root file system that will host
112STORE."
e97c5be9
LC
113 `(;; Note: the store's GID is fixed precisely so we can set it here rather
114 ;; than at activation time.
66c2703f 115 (directory ,store 0 30000 #o1775)
185f6691 116
b4140694 117 (directory "/etc")
171a0a13 118 (directory "/var/log") ; for shepherd
b4140694 119 (directory "/var/guix/gcroots")
517830cc 120 (directory "/var/empty") ; for no-login accounts
3485716f 121 (directory "/var/db") ; for dhclient, etc.
4b2615e1 122 (directory "/var/run")
b4140694 123 (directory "/run")
3485716f 124 (directory "/mnt")
f2c403ea
LC
125 (directory "/var/guix/profiles/per-user/root" 0 0)
126
127 ;; Link to the initial system generation.
128 ("/var/guix/profiles/system" -> "system-1-link")
129
b4140694
LC
130 ("/var/guix/gcroots/booted-system" -> "/run/booted-system")
131 ("/var/guix/gcroots/current-system" -> "/run/current-system")
f2c403ea 132
334bda9a
LC
133 ;; XXX: 'guix-register' creates this symlink with a wrong target, so
134 ;; create it upfront to be sure.
135 ("/var/guix/gcroots/profiles" -> "/var/guix/profiles")
136
b4140694 137 (directory "/bin")
b4140694 138 (directory "/tmp" 0 0 #o1777) ; sticky bit
f73b8e3d 139 (directory "/var/tmp" 0 0 #o1777)
d9c41939 140 (directory "/var/lock" 0 0 #o1777)
b4140694
LC
141
142 (directory "/root" 0 0) ; an exception
143 (directory "/home" 0 0)))
144
f2c403ea 145(define (populate-root-file-system system target)
b4140694 146 "Make the essential non-store files and directories on TARGET. This
f2c403ea 147includes /etc, /var, /run, /bin/sh, etc., and all the symlinks to SYSTEM."
b4140694 148 (for-each (cut evaluate-populate-directive <> target)
f2c403ea
LC
149 (directives (%store-directory)))
150
151 ;; Add system generation 1.
aea9b232
LC
152 (let ((generation-1 (string-append target
153 "/var/guix/profiles/system-1-link")))
154 (let try ()
155 (catch 'system-error
156 (lambda ()
157 (symlink system generation-1))
158 (lambda args
159 ;; If GENERATION-1 already exists, overwrite it.
160 (if (= EEXIST (system-error-errno args))
161 (begin
162 (delete-file generation-1)
163 (try))
164 (apply throw args)))))))
5ce3defe
LC
165
166(define (reset-timestamps directory)
167 "Reset the timestamps of all the files under DIRECTORY, so that they appear
168as created and modified at the Epoch."
169 (display "clearing file timestamps...\n")
170 (for-each (lambda (file)
171 (let ((s (lstat file)))
172 ;; XXX: Guile uses libc's 'utime' function (not 'futime'), so
173 ;; the timestamp of symlinks cannot be changed, and there are
174 ;; symlinks here pointing to /gnu/store, which is the host,
175 ;; read-only store.
176 (unless (eq? (stat:type s) 'symlink)
177 (utime file 0 0 0 0))))
e1a56158 178 (find-files directory #:directories? #t)))
5ce3defe 179
08fa7613
LC
180(define* (register-closure store closure
181 #:key (deduplicate? #t))
5ce3defe
LC
182 "Register CLOSURE in STORE, where STORE is the directory name of the target
183store and CLOSURE is the name of a file containing a reference graph as used
08fa7613
LC
184by 'guix-register'. As a side effect, this resets timestamps on store files
185and, if DEDUPLICATE? is true, deduplicates files common to CLOSURE and the
186rest of STORE."
187 (let ((status (apply system* "guix-register" "--prefix" store
188 (append (if deduplicate? '() '("--no-deduplication"))
189 (list closure)))))
5ce3defe
LC
190 (unless (zero? status)
191 (error "failed to register store items" closure))))
192
9d3fb6c7 193(define* (populate-single-profile-directory directory
08fa7613
LC
194 #:key profile closure
195 deduplicate?)
9d3fb6c7
LC
196 "Populate DIRECTORY with a store containing PROFILE, whose closure is given
197in the file called CLOSURE (as generated by #:references-graphs.) DIRECTORY
198is initialized to contain a single profile under /root pointing to PROFILE.
08fa7613
LC
199DEDUPLICATE? determines whether to deduplicate files in the store.
200
9d3fb6c7
LC
201This is used to create the self-contained Guix tarball."
202 (define (scope file)
203 (string-append directory "/" file))
204
205 (define %root-profile
206 "/var/guix/profiles/per-user/root")
207
208 (define (mkdir-p* dir)
209 (mkdir-p (scope dir)))
210
211 (define (symlink* old new)
212 (symlink old (scope new)))
213
214 ;; Populate the store.
215 (populate-store (list closure) directory)
08fa7613
LC
216 (register-closure (canonicalize-path directory) closure
217 #:deduplicate? deduplicate?)
9d3fb6c7
LC
218
219 ;; XXX: 'guix-register' registers profiles as GC roots but the symlink
220 ;; target uses $TMPDIR. Fix that.
221 (delete-file (scope "/var/guix/gcroots/profiles"))
222 (symlink* "/var/guix/profiles"
223 "/var/guix/gcroots/profiles")
224
225 ;; Make root's profile, which makes it a GC root.
226 (mkdir-p* %root-profile)
227 (symlink* profile
228 (string-append %root-profile "/guix-profile-1-link"))
229 (symlink* (string-append %root-profile "/guix-profile-1-link")
230 (string-append %root-profile "/guix-profile"))
231
232 (mkdir-p* "/root")
233 (symlink* (string-append %root-profile "/guix-profile")
234 "/root/.guix-profile"))
235
5ce3defe 236;;; install.scm ends here