system: image: Fix disk-image name.
[jackhill/guix/guix.git] / guix / nar.scm
CommitLineData
0f41c26f 1;;; GNU Guix --- Functional package management for GNU
70a7a1b5 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
d2d8779b 3;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
0f41c26f
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
20(define-module (guix nar)
0f41c26f 21 #:use-module (guix serialization)
4e0ea3eb 22 #:use-module (guix build syscalls)
cd4027fa
LC
23 #:use-module ((guix build utils)
24 #:select (delete-file-recursively with-directory-excursion))
1afe1985
LC
25
26 ;; XXX: Eventually we should use (guix store database) exclusively, and not
27 ;; (guix store) since this is "daemon-side" code.
cd4027fa 28 #:use-module (guix store)
df2f6400 29 #:use-module (guix store database)
d7fb5538 30 #:use-module ((guix build store-copy) #:select (store-info))
1afe1985 31
3b72618f 32 #:use-module (guix i18n)
ca719424 33 #:use-module (gcrypt hash)
cd4027fa 34 #:use-module (guix pki)
ca719424 35 #:use-module (gcrypt pk-crypto)
0f41c26f 36 #:use-module (srfi srfi-1)
cd4027fa 37 #:use-module (srfi srfi-11)
0f41c26f 38 #:use-module (srfi srfi-26)
53c63ee9
LC
39 #:use-module (srfi srfi-34)
40 #:use-module (srfi srfi-35)
0363991a 41 #:export (nar-invalid-hash-error?
cd4027fa
LC
42 nar-invalid-hash-error-expected
43 nar-invalid-hash-error-actual
44
45 nar-signature-error?
46 nar-signature-error-signature
47
cd4027fa 48 restore-file-set))
0f41c26f
LC
49
50;;; Comment:
51;;;
52;;; Read and write Nix archives, aka. ‘nar’.
53;;;
54;;; Code:
55
cd4027fa
LC
56(define-condition-type &nar-signature-error &nar-error
57 nar-signature-error?
58 (signature nar-signature-error-signature)) ; faulty signature or #f
53c63ee9 59
cd4027fa
LC
60(define-condition-type &nar-invalid-hash-error &nar-signature-error
61 nar-invalid-hash-error?
62 (expected nar-invalid-hash-error-expected) ; expected hash (a bytevector)
63 (actual nar-invalid-hash-error-actual)) ; actual hash
64
53c63ee9 65
cd4027fa
LC
66\f
67;;;
68;;; Restoring a file set into the store.
69;;;
70
71;; The code below accesses the store directly and is meant to be run from
72;; "build hooks", which cannot invoke the daemon's 'import-paths' RPC since
73;; (1) the locks on the files to be restored as already held, and (2) the
74;; $NIX_HELD_LOCKS hackish environment variable cannot be set.
75;;
76;; So we're really duplicating that functionality of the daemon (well, until
77;; most of the daemon is in Scheme :-)). But note that we do use a couple of
78;; RPCs for functionality not available otherwise, like 'valid-path?'.
79
cd4027fa
LC
80(define* (finalize-store-file source target
81 #:key (references '()) deriver (lock? #t))
82 "Rename SOURCE to TARGET and register TARGET as a valid store item, with
83REFERENCES and DERIVER. When LOCK? is true, acquire exclusive locks on TARGET
84before attempting to register it; otherwise, assume TARGET's locks are already
85held."
37edbc91
CR
86 ;; TODO: make this reusable
87 (define (acquire-lock file)
88 (let ((port (lock-file file)))
89 ;; There is an inherent race condition between opening the lock file and
90 ;; attempting to acquire the lock on it, and because we like deleting
91 ;; these lock files when we release them, only the first successful
92 ;; acquisition on a given lock file matters. To make it easier to tell
93 ;; when an acquisition is and isn't the first, the first to acquire it
94 ;; writes a deletion token (arbitrary character) prior to releasing the
95 ;; lock.
96 (if (zero? (stat:size (stat port)))
97 port
98 ;; if FILE is non-empty, that's because it contains the deletion
99 ;; token, so we aren't the first to acquire it. So try again!
100 (begin
101 (close port)
102 (acquire-lock file)))))
103
1afe1985
LC
104 (with-database %default-database-file db
105 (unless (path-id db target)
70a7a1b5 106 (let ((lock (and lock?
37edbc91 107 (acquire-lock (string-append target ".lock")))))
cd4027fa 108
70a7a1b5
LC
109 (unless (path-id db target)
110 ;; If FILE already exists, delete it (it's invalid anyway.)
111 (when (file-exists? target)
112 (delete-file-recursively target))
cd4027fa 113
70a7a1b5
LC
114 ;; Install the new TARGET.
115 (rename-file source target)
cd4027fa 116
70a7a1b5
LC
117 ;; Register TARGET. As a side effect, it resets the timestamps of all
118 ;; its files, recursively, and runs a deduplication pass.
d7fb5538
LC
119 (register-items db
120 (list (store-info target deriver references))))
cd4027fa 121
70a7a1b5 122 (when lock?
37edbc91
CR
123 (delete-file (string-append target ".lock"))
124 ;; Write the deletion token to inform anyone who acquires the lock
125 ;; on this particular file next that they aren't the first to
126 ;; acquire it, so they should retry.
127 (display "d" lock)
128 (force-output lock)
70a7a1b5 129 (unlock-file lock))))))
cd4027fa 130
6071b55e 131(define (temporary-store-file)
50db7d82 132 "Return the file name of a temporary file created in the store."
cd4027fa
LC
133 (let* ((template (string-append (%store-prefix) "/guix-XXXXXX"))
134 (port (mkstemp! template)))
135 (close-port port)
50db7d82 136 template))
6071b55e
LC
137
138(define-syntax-rule (with-temporary-store-file name body ...)
139 "Evaluate BODY with NAME bound to the file name of a temporary store item
140protected from GC."
b338c41c
CR
141 (with-store store
142 (let loop ((name (temporary-store-file)))
50db7d82
LC
143 ;; Add NAME to the current process' roots. (Opening this connection to
144 ;; the daemon allows us to reuse its code that deals with the
145 ;; per-process roots file.)
146 (add-temp-root store name)
147
148 ;; There's a window during which GC could delete NAME. Try again when
149 ;; that happens.
150 (if (file-exists? name)
151 (begin
152 (delete-file name)
153 body ...)
154 (loop (temporary-store-file))))))
6071b55e
LC
155
156(define* (restore-one-item port
157 #:key acl (verify-signature? #t) (lock? #t)
cd4027fa 158 (log-port (current-error-port)))
6071b55e 159 "Restore one store item from PORT; return its file name on success."
cd4027fa
LC
160
161 (define (assert-valid-signature signature hash file)
24194b6b
NK
162 ;; Bail out if SIGNATURE, which must be a string as produced by
163 ;; 'canonical-sexp->string', doesn't match HASH, a bytevector containing
164 ;; the expected hash for FILE.
e4687a5e
LC
165 (let ((signature (catch 'gcry-error
166 (lambda ()
167 (string->canonical-sexp signature))
6ef3644e 168 (lambda (key proc err)
e4687a5e
LC
169 (raise (condition
170 (&message
171 (message "signature is not a valid \
cd4027fa 172s-expression"))
e4687a5e
LC
173 (&nar-signature-error
174 (file file)
175 (signature signature) (port port))))))))
176 (signature-case (signature hash (current-acl))
177 (valid-signature #t)
178 (invalid-signature
179 (raise (condition
180 (&message (message "invalid signature"))
181 (&nar-signature-error
182 (file file) (signature signature) (port port)))))
183 (hash-mismatch
184 (raise (condition (&message (message "invalid hash"))
185 (&nar-invalid-hash-error
186 (port port) (file file)
187 (signature signature)
188 (expected (hash-data->bytevector
189 (signature-signed-data signature)))
190 (actual hash)))))
191 (unauthorized-key
192 (raise (condition (&message (message "unauthorized public key"))
193 (&nar-signature-error
194 (signature signature) (file file) (port port)))))
195 (corrupt-signature
196 (raise (condition
197 (&message (message "corrupt signature data"))
198 (&nar-signature-error
199 (signature signature) (file file) (port port))))))))
cd4027fa 200
6071b55e
LC
201 (define %export-magic
202 ;; Number used to identify genuine file set archives.
203 #x4558494e)
204
205 (define port*
206 ;; Keep that one around, for error conditions.
207 port)
208
209 (let-values (((port get-hash)
210 (open-sha256-input-port port)))
211 (with-temporary-store-file temp
212 (restore-file port temp)
213
214 (let ((magic (read-int port)))
215 (unless (= magic %export-magic)
216 (raise (condition
217 (&message (message "corrupt file set archive"))
218 (&nar-read-error
219 (port port*) (file #f) (token #f))))))
220
221 (let ((file (read-store-path port))
222 (refs (read-store-path-list port))
223 (deriver (read-string port))
224 (hash (get-hash))
225 (has-sig? (= 1 (read-int port))))
226 (format log-port
69daee23 227 (G_ "importing file or directory '~a'...~%")
6071b55e
LC
228 file)
229
71c1d528
LC
230 ;; The signature may contain characters that are meant to be
231 ;; interpreted as bytes in a 'char *', so read them as a ISO-8859-1.
232 (let ((sig (and has-sig? (read-latin1-string port))))
6071b55e
LC
233 (when verify-signature?
234 (if sig
235 (begin
236 (assert-valid-signature sig hash file)
237 (format log-port
69daee23 238 (G_ "found valid signature for '~a'~%")
6071b55e
LC
239 file)
240 (finalize-store-file temp file
241 #:references refs
242 #:deriver deriver
243 #:lock? lock?))
244 (raise (condition
245 (&message (message "imported file lacks \
246a signature"))
247 (&nar-signature-error
248 (port port*) (file file) (signature #f))))))
249 file)))))
250
251(define* (restore-file-set port
252 #:key (verify-signature? #t) (lock? #t)
253 (log-port (current-error-port)))
254 "Restore the file set read from PORT to the store. The format of the data
255on PORT must be as created by 'export-paths'---i.e., a series of Nar-formatted
256archives with interspersed meta-data joining them together, possibly with a
257digital signature at the end. Log progress to LOG-PORT. Return the list of
258files restored.
259
260When LOCK? is #f, assume locks for the files to be restored are already held.
261This is the case when the daemon calls a build hook.
262
263Note that this procedure accesses the store directly, so it's only meant to be
264used by the daemon's build hooks since they cannot call back to the daemon
265while the locks are held."
266 (define acl
267 (current-acl))
268
cd4027fa
LC
269 (let loop ((n (read-long-long port))
270 (files '()))
271 (case n
272 ((0)
273 (reverse files))
274 ((1)
6071b55e
LC
275 (let ((file
276 (restore-one-item port
277 #:acl acl #:verify-signature? verify-signature?
278 #:lock? lock? #:log-port log-port)))
279 (loop (read-long-long port)
280 (cons file files))))
cd4027fa
LC
281 (else
282 ;; Neither 0 nor 1.
283 (raise (condition
284 (&message (message "invalid inter-file archive mark"))
285 (&nar-read-error
286 (port port) (file #f) (token #f))))))))
287
6071b55e
LC
288;;; Local Variables:
289;;; eval: (put 'with-temporary-store-file 'scheme-indent-function 1)
290;;; End:
291
0f41c26f 292;;; nar.scm ends here