gexp: Add 'imported+compiled-modules'.
[jackhill/guix/guix.git] / guix / store.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
a65177a6 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
f3a42251 3;;; Copyright © 2018 Jan Nieuwenhuizen <janneke@gnu.org>
77d3cf08 4;;;
233e7676 5;;; This file is part of GNU Guix.
77d3cf08 6;;;
233e7676 7;;; GNU Guix is free software; you can redistribute it and/or modify it
77d3cf08
LC
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;;;
233e7676 12;;; GNU Guix is distributed in the hope that it will be useful, but
77d3cf08
LC
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
233e7676 18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
77d3cf08
LC
19
20(define-module (guix store)
82058eff 21 #:use-module (guix utils)
d8eea3d2 22 #:use-module (guix config)
de9fbe9c 23 #:use-module (guix deprecation)
f9704f17 24 #:use-module (guix memoization)
0f41c26f 25 #:use-module (guix serialization)
e87f0591 26 #:use-module (guix monads)
c6080c32 27 #:use-module (guix records)
4c0c4db0 28 #:use-module (guix base16)
cd041b26 29 #:use-module (guix base32)
ca719424 30 #:use-module (gcrypt hash)
03870da8 31 #:use-module (guix profiling)
b0a6a971 32 #:autoload (guix build syscalls) (terminal-columns)
77d3cf08 33 #:use-module (rnrs bytevectors)
2535635f 34 #:use-module (ice-9 binary-ports)
c6080c32 35 #:use-module ((ice-9 control) #:select (let/ec))
77d3cf08
LC
36 #:use-module (srfi srfi-1)
37 #:use-module (srfi srfi-9)
bf8e7fc5 38 #:use-module (srfi srfi-9 gnu)
6581ec9a 39 #:use-module (srfi srfi-11)
77d3cf08 40 #:use-module (srfi srfi-26)
e87088c9
LC
41 #:use-module (srfi srfi-34)
42 #:use-module (srfi srfi-35)
26bbbb95 43 #:use-module (srfi srfi-39)
77d3cf08 44 #:use-module (ice-9 match)
e3d74106 45 #:use-module (ice-9 regex)
3f1e6939 46 #:use-module (ice-9 vlist)
6bfec3ed 47 #:use-module (ice-9 popen)
b100a704 48 #:use-module (ice-9 threads)
1f3ea898 49 #:use-module (ice-9 format)
1397b422
LC
50 #:use-module (web uri)
51 #:export (%daemon-socket-uri
a9d2a105 52 %gc-roots-directory
f8a8e0fe 53 %default-substitute-urls
9fd72fb1 54
de9fbe9c
LC
55 store-connection?
56 store-connection-version
57 store-connection-major-version
58 store-connection-minor-version
59 store-connection-socket
60
61 ;; Deprecated forms for 'store-connection'.
9fd72fb1 62 nix-server?
dc0f74e5 63 nix-server-version
77d3cf08
LC
64 nix-server-major-version
65 nix-server-minor-version
66 nix-server-socket
de9fbe9c 67
dc0f74e5 68 current-store-protocol-version ;for internal use
c6080c32 69 mcached
77d3cf08 70
f9e8a123
LC
71 &store-error store-error?
72 &store-connection-error store-connection-error?
73 store-connection-error-file
74 store-connection-error-code
75 &store-protocol-error store-protocol-error?
76 store-protocol-error-message
77 store-protocol-error-status
78
79 ;; Deprecated forms for '&store-error' et al.
e87088c9 80 &nix-error nix-error?
ef86c39f
LC
81 &nix-connection-error nix-connection-error?
82 nix-connection-error-file
83 nix-connection-error-code
e87088c9
LC
84 &nix-protocol-error nix-protocol-error?
85 nix-protocol-error-message
86 nix-protocol-error-status
87
26bbbb95 88 hash-algo
07e70f48 89 build-mode
26bbbb95 90
77d3cf08 91 open-connection
2f608c14 92 port->connection
3abaf0c4 93 close-connection
ce4a4829 94 with-store
77d3cf08 95 set-build-options
4f740b67 96 set-build-options*
31ef99a8 97 valid-path?
82058eff 98 query-path-hash
11e7a6cf 99 hash-part->path
533d1768 100 query-path-info
0d268c5d 101 add-data-to-store
77d3cf08
LC
102 add-text-to-store
103 add-to-store
7f11efba 104 add-file-tree-to-store
f3a42251 105 binary-file
abac874b
LC
106 build-things
107 build
16748d80
LC
108 query-failed-paths
109 clear-failed-paths
3259877d 110 add-temp-root
34811f02 111 add-indirect-root
a9d2a105
LC
112 add-permanent-root
113 remove-permanent-root
26bbbb95 114
0f3d2504
LC
115 substitutable?
116 substitutable-path
117 substitutable-deriver
118 substitutable-references
119 substitutable-download-size
120 substitutable-nar-size
121 has-substitutes?
122 substitutable-paths
123 substitutable-path-info
124
533d1768
DT
125 path-info?
126 path-info-deriver
127 path-info-hash
128 path-info-references
129 path-info-registration-time
130 path-info-nar-size
131
f9aefa2d 132 built-in-builders
fae31edc 133 references
6581ec9a 134 references/substitutes
e74f64b9 135 references*
0744a9f0 136 query-path-info*
3f1e6939 137 requisites
fae31edc 138 referrers
e3fd0ce6 139 optimize-store
c63d9403 140 verify-store
50add477 141 topologically-sorted
fae31edc
LC
142 valid-derivers
143 query-derivation-outputs
3259877d
LC
144 live-paths
145 dead-paths
146 collect-garbage
147 delete-paths
526382ff
LC
148 import-paths
149 export-paths
3259877d 150
dcee50c1
LC
151 current-build-output-port
152
e87f0591
LC
153 %store-monad
154 store-bind
155 store-return
156 store-lift
023d9892 157 store-lower
e87f0591
LC
158 run-with-store
159 %guile-for-build
98a7b528
LC
160 current-system
161 set-current-system
e87f0591
LC
162 text-file
163 interned-file
7f11efba 164 interned-file-tree
e87f0591 165
26bbbb95 166 %store-prefix
cd041b26
LC
167 store-path
168 output-path
169 fixed-output-path
26bbbb95 170 store-path?
9336e5b5 171 direct-store-path?
e3d74106 172 derivation-path?
2c6ab6cc 173 store-path-package-name
eddd4077 174 store-path-hash-part
cdb5b075 175 direct-store-path
fb94d82b 176 derivation-log-file
eddd4077 177 log-file))
77d3cf08 178
6ef61cc4 179(define %protocol-version #x163)
77d3cf08 180
d66b704b
LC
181(define %worker-magic-1 #x6e697863) ; "nixc"
182(define %worker-magic-2 #x6478696f) ; "dxio"
77d3cf08
LC
183
184(define (protocol-major magic)
185 (logand magic #xff00))
186(define (protocol-minor magic)
187 (logand magic #x00ff))
dc0f74e5
LC
188(define (protocol-version major minor)
189 (logior major minor))
77d3cf08
LC
190
191(define-syntax define-enumerate-type
192 (syntax-rules ()
193 ((_ name->int (name id) ...)
194 (define-syntax name->int
195 (syntax-rules (name ...)
196 ((_ name) id) ...)))))
197
198(define-enumerate-type operation-id
199 ;; operation numbers from worker-protocol.hh
200 (quit 0)
201 (valid-path? 1)
202 (has-substitutes? 3)
203 (query-path-hash 4)
204 (query-references 5)
205 (query-referrers 6)
206 (add-to-store 7)
207 (add-text-to-store 8)
abac874b 208 (build-things 9)
77d3cf08
LC
209 (ensure-path 10)
210 (add-temp-root 11)
211 (add-indirect-root 12)
212 (sync-with-gc 13)
213 (find-roots 14)
214 (export-path 16)
215 (query-deriver 18)
216 (set-options 19)
217 (collect-garbage 20)
63193ebf 218 ;;(query-substitutable-path-info 21) ; obsolete as of #x10c
77d3cf08 219 (query-derivation-outputs 22)
63193ebf 220 (query-all-valid-paths 23)
77d3cf08
LC
221 (query-failed-paths 24)
222 (clear-failed-paths 25)
223 (query-path-info 26)
224 (import-paths 27)
63193ebf
LC
225 (query-derivation-output-names 28)
226 (query-path-from-hash-part 29)
227 (query-substitutable-path-infos 30)
228 (query-valid-paths 31)
fae31edc 229 (query-substitutable-paths 32)
e3fd0ce6 230 (query-valid-derivers 33)
c63d9403 231 (optimize-store 34)
f9aefa2d
LC
232 (verify-store 35)
233 (built-in-builders 80))
77d3cf08
LC
234
235(define-enumerate-type hash-algo
236 ;; hash.hh
237 (md5 1)
238 (sha1 2)
239 (sha256 3))
240
07e70f48
LC
241(define-enumerate-type build-mode
242 ;; store-api.hh
243 (normal 0)
244 (repair 1)
245 (check 2))
246
3259877d
LC
247(define-enumerate-type gc-action
248 ;; store-api.hh
249 (return-live 0)
250 (return-dead 1)
251 (delete-dead 2)
252 (delete-specific 3))
253
77d3cf08 254(define %default-socket-path
80d0447c 255 (string-append %state-directory "/daemon-socket/socket"))
77d3cf08 256
1397b422
LC
257(define %daemon-socket-uri
258 ;; URI or file name of the socket the daemon listens too.
9fd72fb1
LC
259 (make-parameter (or (getenv "GUIX_DAEMON_SOCKET")
260 %default-socket-path)))
261
262
77d3cf08 263\f
0f3d2504
LC
264;; Information about a substitutable store path.
265(define-record-type <substitutable>
266 (substitutable path deriver refs dl-size nar-size)
267 substitutable?
268 (path substitutable-path)
269 (deriver substitutable-deriver)
270 (refs substitutable-references)
271 (dl-size substitutable-download-size)
272 (nar-size substitutable-nar-size))
273
274(define (read-substitutable-path-list p)
275 (let loop ((len (read-int p))
276 (result '()))
277 (if (zero? len)
278 (reverse result)
279 (let ((path (read-store-path p))
280 (deriver (read-store-path p))
281 (refs (read-store-path-list p))
282 (dl-size (read-long-long p))
283 (nar-size (read-long-long p)))
284 (loop (- len 1)
285 (cons (substitutable path deriver refs dl-size nar-size)
286 result))))))
287
533d1768
DT
288;; Information about a store path.
289(define-record-type <path-info>
290 (path-info deriver hash references registration-time nar-size)
291 path-info?
22572d56 292 (deriver path-info-deriver) ;string | #f
533d1768
DT
293 (hash path-info-hash)
294 (references path-info-references)
295 (registration-time path-info-registration-time)
296 (nar-size path-info-nar-size))
297
298(define (read-path-info p)
22572d56
LC
299 (let ((deriver (match (read-store-path p)
300 ("" #f)
301 (x x)))
533d1768
DT
302 (hash (base16-string->bytevector (read-string p)))
303 (refs (read-store-path-list p))
304 (registration-time (read-int p))
305 (nar-size (read-long-long p)))
306 (path-info deriver hash refs registration-time nar-size)))
307
77d3cf08 308(define-syntax write-arg
0d268c5d
LC
309 (syntax-rules (integer boolean bytevector
310 string string-list string-pairs
3259877d 311 store-path store-path-list base16)
77d3cf08
LC
312 ((_ integer arg p)
313 (write-int arg p))
314 ((_ boolean arg p)
315 (write-int (if arg 1 0) p))
0d268c5d
LC
316 ((_ bytevector arg p)
317 (write-bytevector arg p))
77d3cf08
LC
318 ((_ string arg p)
319 (write-string arg p))
320 ((_ string-list arg p)
82058eff 321 (write-string-list arg p))
6c20d1d0
LC
322 ((_ string-pairs arg p)
323 (write-string-pairs arg p))
3259877d
LC
324 ((_ store-path arg p)
325 (write-store-path arg p))
326 ((_ store-path-list arg p)
327 (write-store-path-list arg p))
82058eff
LC
328 ((_ base16 arg p)
329 (write-string (bytevector->base16-string arg) p))))
77d3cf08
LC
330
331(define-syntax read-arg
f9aefa2d 332 (syntax-rules (integer boolean string store-path store-path-list string-list
533d1768 333 substitutable-path-list path-info base16)
77d3cf08
LC
334 ((_ integer p)
335 (read-int p))
336 ((_ boolean p)
337 (not (zero? (read-int p))))
338 ((_ string p)
339 (read-string p))
340 ((_ store-path p)
82058eff 341 (read-store-path p))
3259877d
LC
342 ((_ store-path-list p)
343 (read-store-path-list p))
f9aefa2d
LC
344 ((_ string-list p)
345 (read-string-list p))
0f3d2504
LC
346 ((_ substitutable-path-list p)
347 (read-substitutable-path-list p))
533d1768
DT
348 ((_ path-info p)
349 (read-path-info p))
0f3d2504 350 ((_ base16 p)
82058eff 351 (base16-string->bytevector (read-string p)))))
77d3cf08
LC
352
353\f
354;; remote-store.cc
355
de9fbe9c
LC
356(define-record-type* <store-connection> store-connection %make-store-connection
357 store-connection?
358 (socket store-connection-socket)
359 (major store-connection-major-version)
360 (minor store-connection-minor-version)
2c3f47ee 361
de9fbe9c
LC
362 (buffer store-connection-output-port) ;output port
363 (flush store-connection-flush-output) ;thunk
e037e9db 364
2c3f47ee
LC
365 ;; Caches. We keep them per-connection, because store paths build
366 ;; during the session are temporary GC roots kept for the duration of
367 ;; the session.
de9fbe9c
LC
368 (ats-cache store-connection-add-to-store-cache)
369 (atts-cache store-connection-add-text-to-store-cache)
370 (object-cache store-connection-object-cache
3961edf2
LC
371 (default vlist-null)) ;vhash
372 (built-in-builders store-connection-built-in-builders
373 (default (delay '())))) ;promise
77d3cf08 374
de9fbe9c 375(set-record-type-printer! <store-connection>
bf8e7fc5 376 (lambda (obj port)
de9fbe9c
LC
377 (format port "#<store-connection ~a.~a ~a>"
378 (store-connection-major-version obj)
379 (store-connection-minor-version obj)
bf8e7fc5
LC
380 (number->string (object-address obj)
381 16))))
382
de9fbe9c
LC
383(define-deprecated/alias nix-server? store-connection?)
384(define-deprecated/alias nix-server-major-version
385 store-connection-major-version)
386(define-deprecated/alias nix-server-minor-version
387 store-connection-minor-version)
388(define-deprecated/alias nix-server-socket store-connection-socket)
389
390
f9e8a123
LC
391(define-condition-type &store-error &error
392 store-error?)
e87088c9 393
f9e8a123
LC
394(define-condition-type &store-connection-error &store-error
395 store-connection-error?
396 (file store-connection-error-file)
397 (errno store-connection-error-code))
398
399(define-condition-type &store-protocol-error &store-error
400 store-protocol-error?
401 (message store-protocol-error-message)
402 (status store-protocol-error-status))
403
404(define-deprecated/alias &nix-error &store-error)
405(define-deprecated/alias nix-error? store-error?)
406(define-deprecated/alias &nix-connection-error &store-connection-error)
407(define-deprecated/alias nix-connection-error? store-connection-error?)
408(define-deprecated/alias nix-connection-error-file
409 store-connection-error-file)
410(define-deprecated/alias nix-connection-error-code
411 store-connection-error-code)
412(define-deprecated/alias &nix-protocol-error &store-protocol-error)
413(define-deprecated/alias nix-protocol-error? store-protocol-error?)
414(define-deprecated/alias nix-protocol-error-message
415 store-protocol-error-message)
416(define-deprecated/alias nix-protocol-error-status
417 store-protocol-error-status)
ef86c39f 418
e87088c9 419
3b5cd17a
LC
420(define-syntax-rule (system-error-to-connection-error file exp ...)
421 "Catch 'system-error' exceptions and translate them to
f9e8a123 422'&store-connection-error'."
3b5cd17a
LC
423 (catch 'system-error
424 (lambda ()
425 exp ...)
426 (lambda args
427 (let ((errno (system-error-errno args)))
f9e8a123 428 (raise (condition (&store-connection-error
3b5cd17a
LC
429 (file file)
430 (errno errno))))))))
431
6230d6f0
LC
432(define (open-unix-domain-socket file)
433 "Connect to the Unix-domain socket at FILE and return it. Raise a
f9e8a123 434'&store-connection-error' upon error."
77d3cf08
LC
435 (let ((s (with-fluids ((%default-port-encoding #f))
436 ;; This trick allows use of the `scm_c_read' optimization.
437 (socket PF_UNIX SOCK_STREAM 0)))
438 (a (make-socket-address PF_UNIX file)))
df1fab58 439
3b5cd17a
LC
440 (system-error-to-connection-error file
441 (connect s a)
442 s)))
ef86c39f 443
5df1395a
LC
444(define %default-guix-port
445 ;; Default port when connecting to a daemon over TCP/IP.
446 44146)
447
3dff90ce
LC
448(define (open-inet-socket host port)
449 "Connect to the Unix-domain socket at HOST:PORT and return it. Raise a
f9e8a123 450'&store-connection-error' upon error."
3dff90ce
LC
451 (let ((sock (with-fluids ((%default-port-encoding #f))
452 ;; This trick allows use of the `scm_c_read' optimization.
453 (socket PF_UNIX SOCK_STREAM 0))))
454 (define addresses
455 (getaddrinfo host
456 (if (number? port) (number->string port) port)
457 (if (number? port)
458 (logior AI_ADDRCONFIG AI_NUMERICSERV)
7ae97a4c
LC
459 AI_ADDRCONFIG)
460 0 ;any address family
461 SOCK_STREAM)) ;TCP only
3dff90ce
LC
462
463 (let loop ((addresses addresses))
464 (match addresses
465 ((ai rest ...)
466 (let ((s (socket (addrinfo:fam ai)
467 ;; TCP/IP only
468 SOCK_STREAM IPPROTO_IP)))
469
470 (catch 'system-error
471 (lambda ()
472 (connect s (addrinfo:addr ai))
950d51c9
LC
473
474 ;; Setting this option makes a dramatic difference because it
475 ;; avoids the "ACK delay" on our RPC messages.
476 (setsockopt s IPPROTO_TCP TCP_NODELAY 1)
3dff90ce
LC
477 s)
478 (lambda args
479 ;; Connection failed, so try one of the other addresses.
480 (close s)
481 (if (null? rest)
f9e8a123 482 (raise (condition (&store-connection-error
3dff90ce
LC
483 (file host)
484 (errno (system-error-errno args)))))
485 (loop rest))))))))))
486
1397b422
LC
487(define (connect-to-daemon uri)
488 "Connect to the daemon at URI, a string that may be an actual URI or a file
489name."
285f63e8 490 (define (not-supported)
f9e8a123 491 (raise (condition (&store-connection-error
285f63e8
LC
492 (file uri)
493 (errno ENOTSUP)))))
494
1397b422
LC
495 (define connect
496 (match (string->uri uri)
497 (#f ;URI is a file name
498 open-unix-domain-socket)
499 ((? uri? uri)
500 (match (uri-scheme uri)
501 ((or #f 'file 'unix)
502 (lambda (_)
503 (open-unix-domain-socket (uri-path uri))))
3dff90ce
LC
504 ('guix
505 (lambda (_)
5df1395a
LC
506 (open-inet-socket (uri-host uri)
507 (or (uri-port uri) %default-guix-port))))
285f63e8
LC
508 ((? symbol? scheme)
509 ;; Try to dynamically load a module for SCHEME.
510 ;; XXX: Errors are swallowed.
511 (match (false-if-exception
512 (resolve-interface `(guix store ,scheme)))
513 ((? module? module)
514 (match (false-if-exception
515 (module-ref module 'connect-to-daemon))
516 ((? procedure? connect)
517 (lambda (_)
518 (connect uri)))
519 (x (not-supported))))
520 (#f (not-supported))))
1397b422 521 (x
285f63e8 522 (not-supported))))))
1397b422
LC
523
524 (connect uri))
525
526(define* (open-connection #:optional (uri (%daemon-socket-uri))
6230d6f0 527 #:key port (reserve-space? #t) cpu-affinity)
1397b422
LC
528 "Connect to the daemon at URI (a string), or, if PORT is not #f, use it as
529the I/O port over which to communicate to a build daemon.
6230d6f0
LC
530
531When RESERVE-SPACE? is true, instruct it to reserve a little bit of extra
532space on the file system so that the garbage collector can still operate,
533should the disk become full. When CPU-AFFINITY is true, it must be an integer
534corresponding to an OS-level CPU number to which the daemon's worker process
535for this connection will be pinned. Return a server object."
13d5e8da
LC
536 (guard (c ((nar-error? c)
537 ;; One of the 'write-' or 'read-' calls below failed, but this is
538 ;; really a connection error.
539 (raise (condition
f9e8a123
LC
540 (&store-connection-error (file (or port uri))
541 (errno EPROTO))
13d5e8da 542 (&message (message "build daemon handshake failed"))))))
e037e9db
LC
543 (let*-values (((port)
544 (or port (connect-to-daemon uri)))
545 ((output flush)
546 (buffering-output-port port
547 (make-bytevector 8192))))
13d5e8da
LC
548 (write-int %worker-magic-1 port)
549 (let ((r (read-int port)))
550 (and (eqv? r %worker-magic-2)
551 (let ((v (read-int port)))
552 (and (eqv? (protocol-major %protocol-version)
553 (protocol-major v))
554 (begin
555 (write-int %protocol-version port)
556 (when (>= (protocol-minor v) 14)
557 (write-int (if cpu-affinity 1 0) port)
558 (when cpu-affinity
559 (write-int cpu-affinity port)))
560 (when (>= (protocol-minor v) 11)
561 (write-int (if reserve-space? 1 0) port))
3961edf2
LC
562 (letrec* ((built-in-builders
563 (delay (%built-in-builders conn)))
564 (conn
565 (%make-store-connection port
566 (protocol-major v)
567 (protocol-minor v)
568 output flush
569 (make-hash-table 100)
570 (make-hash-table 100)
571 vlist-null
572 built-in-builders)))
13d5e8da
LC
573 (let loop ((done? (process-stderr conn)))
574 (or done? (process-stderr conn)))
575 conn)))))))))
77d3cf08 576
2f608c14
LC
577(define* (port->connection port
578 #:key (version %protocol-version))
579 "Assimilate PORT, an input/output port, and return a connection to the
580daemon, assuming the given protocol VERSION.
581
582Warning: this procedure assumes that the initial handshake with the daemon has
583already taken place on PORT and that we're just continuing on this established
584connection. Use with care."
585 (let-values (((output flush)
586 (buffering-output-port port (make-bytevector 8192))))
3961edf2
LC
587 (define connection
588 (%make-store-connection port
589 (protocol-major version)
590 (protocol-minor version)
591 output flush
592 (make-hash-table 100)
593 (make-hash-table 100)
594 vlist-null
595 (delay (%built-in-builders connection))))
596
597 connection))
de9fbe9c
LC
598
599(define (store-connection-version store)
dc0f74e5 600 "Return the protocol version of STORE as an integer."
de9fbe9c
LC
601 (protocol-version (store-connection-major-version store)
602 (store-connection-minor-version store)))
603
604(define-deprecated/alias nix-server-version store-connection-version)
dc0f74e5 605
e037e9db
LC
606(define (write-buffered-output server)
607 "Flush SERVER's output port."
de9fbe9c
LC
608 (force-output (store-connection-output-port server))
609 ((store-connection-flush-output server)))
e037e9db 610
3abaf0c4
LC
611(define (close-connection server)
612 "Close the connection to SERVER."
de9fbe9c 613 (close (store-connection-socket server)))
3abaf0c4 614
95207e70
LC
615(define (call-with-store proc)
616 "Call PROC with an open store connection."
ce4a4829
LC
617 (let ((store (open-connection)))
618 (dynamic-wind
619 (const #f)
620 (lambda ()
dc0f74e5 621 (parameterize ((current-store-protocol-version
de9fbe9c 622 (store-connection-version store)))
95207e70 623 (proc store)))
ce4a4829
LC
624 (lambda ()
625 (false-if-exception (close-connection store))))))
626
95207e70
LC
627(define-syntax-rule (with-store store exp ...)
628 "Bind STORE to an open connection to the store and evaluate EXPs;
629automatically close the store when the dynamic extent of EXP is left."
630 (call-with-store (lambda (store) exp ...)))
631
dc0f74e5
LC
632(define current-store-protocol-version
633 ;; Protocol version of the store currently used. XXX: This is a hack to
634 ;; communicate the protocol version to the build output port. It's a hack
635 ;; because it could be inaccurrate, for instance if there's code that
636 ;; manipulates several store connections at once; it works well for the
637 ;; purposes of (guix status) though.
638 (make-parameter #f))
639
dcee50c1
LC
640(define current-build-output-port
641 ;; The port where build output is sent.
642 (make-parameter (current-error-port)))
643
526382ff
LC
644(define* (dump-port in out
645 #:optional len
646 #:key (buffer-size 16384))
647 "Read LEN bytes from IN (or as much as possible if LEN is #f) and write it
648to OUT, using chunks of BUFFER-SIZE bytes."
649 (define buffer
650 (make-bytevector buffer-size))
651
652 (let loop ((total 0)
653 (bytes (get-bytevector-n! in buffer 0
654 (if len
655 (min len buffer-size)
656 buffer-size))))
657 (or (eof-object? bytes)
658 (and len (= total len))
659 (let ((total (+ total bytes)))
660 (put-bytevector out buffer 0 bytes)
661 (loop total
662 (get-bytevector-n! in buffer 0
663 (if len
664 (min (- len total) buffer-size)
665 buffer-size)))))))
666
d28869af
LC
667(define %newlines
668 ;; Newline characters triggering a flush of 'current-build-output-port'.
76832d34 669 ;; Unlike Guile's 'line, we flush upon #\return so that progress reports
d28869af
LC
670 ;; that use that trick are correctly displayed.
671 (char-set #\newline #\return))
672
526382ff 673(define* (process-stderr server #:optional user-port)
dcee50c1
LC
674 "Read standard output and standard error from SERVER, writing it to
675CURRENT-BUILD-OUTPUT-PORT. Return #t when SERVER is done sending data, and
676#f otherwise; in the latter case, the caller should call `process-stderr'
bbdb3ffa
LC
677again until #t is returned or an error is raised.
678
679Since the build process's output cannot be assumed to be UTF-8, we
680conservatively consider it to be Latin-1, thereby avoiding possible
681encoding conversion errors."
77d3cf08 682 (define p
de9fbe9c 683 (store-connection-socket server))
77d3cf08
LC
684
685 ;; magic cookies from worker-protocol.hh
5674a3fd
LC
686 (define %stderr-next #x6f6c6d67) ; "olmg", build log
687 (define %stderr-read #x64617461) ; "data", data needed from source
688 (define %stderr-write #x64617416) ; "dat\x16", data for sink
689 (define %stderr-last #x616c7473) ; "alts", we're done
690 (define %stderr-error #x63787470) ; "cxtp", error reporting
77d3cf08
LC
691
692 (let ((k (read-int p)))
693 (cond ((= k %stderr-write)
526382ff
LC
694 ;; Write a byte stream to USER-PORT.
695 (let* ((len (read-int p))
696 (m (modulo len 8)))
6374633b
LC
697 (dump-port p user-port len
698 #:buffer-size (if (<= len 16384) 16384 65536))
526382ff
LC
699 (unless (zero? m)
700 ;; Consume padding, as for strings.
701 (get-bytevector-n p (- 8 m))))
dcee50c1 702 #f)
77d3cf08 703 ((= k %stderr-read)
526382ff 704 ;; Read a byte stream from USER-PORT.
5895f244
LC
705 ;; Note: Avoid 'get-bytevector-n' to work around
706 ;; <http://bugs.gnu.org/17591> in Guile up to 2.0.11.
526382ff 707 (let* ((max-len (read-int p))
5895f244
LC
708 (data (make-bytevector max-len))
709 (len (get-bytevector-n! user-port data 0 max-len)))
39d1e965 710 (write-bytevector data p len)
dcee50c1 711 #f))
77d3cf08 712 ((= k %stderr-next)
ce72c780
LC
713 ;; Log a string. Build logs are usually UTF-8-encoded, but they
714 ;; may also contain arbitrary byte sequences that should not cause
715 ;; this to fail. Thus, use the permissive
716 ;; 'read-maybe-utf8-string'.
717 (let ((s (read-maybe-utf8-string p)))
dcee50c1 718 (display s (current-build-output-port))
d28869af 719 (when (string-any %newlines s)
2535635f 720 (force-output (current-build-output-port)))
dcee50c1 721 #f))
77d3cf08 722 ((= k %stderr-error)
526382ff 723 ;; Report an error.
ce72c780 724 (let ((error (read-maybe-utf8-string p))
0ff3e3aa
LC
725 ;; Currently the daemon fails to send a status code for early
726 ;; errors like DB schema version mismatches, so check for EOF.
de9fbe9c 727 (status (if (and (>= (store-connection-minor-version server) 8)
0ff3e3aa 728 (not (eof-object? (lookahead-u8 p))))
77d3cf08
LC
729 (read-int p)
730 1)))
f9e8a123 731 (raise (condition (&store-protocol-error
e87088c9
LC
732 (message error)
733 (status status))))))
77d3cf08 734 ((= k %stderr-last)
dcee50c1 735 ;; The daemon is done (see `stopWork' in `nix-worker.cc'.)
77d3cf08
LC
736 #t)
737 (else
f9e8a123 738 (raise (condition (&store-protocol-error
e87088c9
LC
739 (message "invalid error code")
740 (status k))))))))
77d3cf08 741
4d581220 742(define %default-substitute-urls
d70533cb
LC
743 ;; Default list of substituters. This is *not* the list baked in
744 ;; 'guix-daemon', but it is used by 'guix-service-type' and and a couple of
745 ;; clients ('guix build --log-file' uses it.)
df061d07
LC
746 (map (if (false-if-exception (resolve-interface '(gnutls)))
747 (cut string-append "https://" <>)
748 (cut string-append "http://" <>))
757e633d 749 '("ci.guix.gnu.org")))
4d581220 750
81c580c8
LC
751(define (current-user-name)
752 "Return the name of the calling user."
753 (catch #t
754 (lambda ()
755 (passwd:name (getpwuid (getuid))))
756 (lambda _
757 (getenv "USER"))))
758
77d3cf08 759(define* (set-build-options server
c3eb878f 760 #:key keep-failed? keep-going? fallback?
77d3cf08 761 (verbosity 0)
2fba87ac 762 rounds ;number of build rounds
deac976d 763 max-build-jobs
6c20d1d0 764 timeout
deac976d 765 max-silent-time
77d3cf08
LC
766 (use-build-hook? #t)
767 (build-verbosity 0)
768 (log-type 0)
e036c31b 769 (print-build-trace #t)
81c580c8 770 (user-name (current-user-name))
dc0f74e5
LC
771
772 ;; When true, provide machine-readable "build
773 ;; traces" for use by (guix status). Old clients
774 ;; are unable to make sense, which is why it's
775 ;; disabled by default.
776 print-extended-build-trace?
777
6ef61cc4
LC
778 ;; When true, the daemon prefixes builder output
779 ;; with "@ build-log" traces so we can
780 ;; distinguish it from daemon output, and we can
781 ;; distinguish each builder's output
782 ;; (PRINT-BUILD-TRACE must be true as well.) The
783 ;; latter is particularly useful when
784 ;; MAX-BUILD-JOBS > 1.
785 multiplexed-build-output?
786
deac976d 787 build-cores
63193ebf 788 (use-substitutes? #t)
4d581220 789
fb4bf72b
LC
790 ;; Client-provided substitute URLs. If it is #f,
791 ;; the daemon's settings are used. Otherwise, it
792 ;; overrides the daemons settings; see 'guix
793 ;; substitute'.
b0a6a971
LC
794 (substitute-urls #f)
795
796 ;; Number of columns in the client's terminal.
38f50f49
LC
797 (terminal-columns (terminal-columns))
798
799 ;; Locale of the client.
800 (locale (false-if-exception (setlocale LC_ALL))))
77d3cf08
LC
801 ;; Must be called after `open-connection'.
802
803 (define socket
de9fbe9c 804 (store-connection-socket server))
77d3cf08
LC
805
806 (let-syntax ((send (syntax-rules ()
e036c31b
LC
807 ((_ (type option) ...)
808 (begin
809 (write-arg type option socket)
810 ...)))))
811 (write-int (operation-id set-options) socket)
812 (send (boolean keep-failed?) (boolean keep-going?)
deac976d 813 (boolean fallback?) (integer verbosity))
de9fbe9c 814 (when (< (store-connection-minor-version server) #x61)
deac976d
LC
815 (let ((max-build-jobs (or max-build-jobs 1))
816 (max-silent-time (or max-silent-time 3600)))
817 (send (integer max-build-jobs) (integer max-silent-time))))
de9fbe9c 818 (when (>= (store-connection-minor-version server) 2)
371e87d2 819 (send (boolean use-build-hook?)))
de9fbe9c 820 (when (>= (store-connection-minor-version server) 4)
371e87d2
LC
821 (send (integer build-verbosity) (integer log-type)
822 (boolean print-build-trace)))
de9fbe9c
LC
823 (when (and (>= (store-connection-minor-version server) 6)
824 (< (store-connection-minor-version server) #x61))
deac976d
LC
825 (let ((build-cores (or build-cores (current-processor-count))))
826 (send (integer build-cores))))
de9fbe9c 827 (when (>= (store-connection-minor-version server) 10)
371e87d2 828 (send (boolean use-substitutes?)))
de9fbe9c 829 (when (>= (store-connection-minor-version server) 12)
dc0f74e5
LC
830 (let ((pairs `(;; This option is honored by 'guix substitute' et al.
831 ,@(if print-build-trace
832 `(("print-extended-build-trace"
833 . ,(if print-extended-build-trace? "1" "0")))
834 '())
6ef61cc4
LC
835 ,@(if multiplexed-build-output?
836 `(("multiplexed-build-output"
837 . ,(if multiplexed-build-output? "true" "false")))
838 '())
dc0f74e5 839 ,@(if timeout
41c45e78
LC
840 `(("build-timeout" . ,(number->string timeout)))
841 '())
deac976d
LC
842 ,@(if max-silent-time
843 `(("build-max-silent-time"
844 . ,(number->string max-silent-time)))
845 '())
846 ,@(if max-build-jobs
847 `(("build-max-jobs"
848 . ,(number->string max-build-jobs)))
849 '())
850 ,@(if build-cores
851 `(("build-cores" . ,(number->string build-cores)))
852 '())
fb4bf72b
LC
853 ,@(if substitute-urls
854 `(("substitute-urls"
855 . ,(string-join substitute-urls)))
2fba87ac
LC
856 '())
857 ,@(if rounds
858 `(("build-repeat"
859 . ,(number->string (max 0 (1- rounds)))))
b0a6a971 860 '())
81c580c8
LC
861 ,@(if user-name
862 `(("user-name" . ,user-name))
863 '())
b0a6a971
LC
864 ,@(if terminal-columns
865 `(("terminal-columns"
866 . ,(number->string terminal-columns)))
38f50f49
LC
867 '())
868 ,@(if locale
869 `(("locale" . ,locale))
fb4bf72b 870 '()))))
f401b1e9 871 (send (string-pairs pairs))))
dcee50c1
LC
872 (let loop ((done? (process-stderr server)))
873 (or done? (process-stderr server)))))
77d3cf08 874
e037e9db
LC
875(define (buffering-output-port port buffer)
876 "Return two value: an output port wrapped around PORT that uses BUFFER (a
877bytevector) as its internal buffer, and a thunk to flush this output port."
878 ;; Note: In Guile 2.2.2, custom binary output ports already have their own
879 ;; 4K internal buffer.
880 (define size
881 (bytevector-length buffer))
882
883 (define total 0)
884
885 (define (flush)
886 (put-bytevector port buffer 0 total)
38098241 887 (force-output port)
e037e9db
LC
888 (set! total 0))
889
890 (define (write bv offset count)
891 (if (zero? count) ;end of file
892 (flush)
893 (let loop ((offset offset)
894 (count count)
895 (written 0))
896 (cond ((= total size)
897 (flush)
898 (loop offset count written))
899 ((zero? count)
900 written)
901 (else
902 (let ((to-copy (min count (- size total))))
903 (bytevector-copy! bv offset buffer total to-copy)
904 (set! total (+ total to-copy))
905 (loop (+ offset to-copy) (- count to-copy)
906 (+ written to-copy))))))))
907
908 ;; Note: We need to return FLUSH because the custom binary port has no way
909 ;; to be notified of a 'force-output' call on itself.
910 (values (make-custom-binary-output-port "buffering-output-port"
911 write #f #f flush)
912 flush))
913
73b0ebdd
LC
914(define profiled?
915 (let ((profiled
916 (or (and=> (getenv "GUIX_PROFILING") string-tokenize)
917 '())))
918 (lambda (component)
919 "Return true if COMPONENT profiling is active."
920 (member component profiled))))
921
f4453df9
LC
922(define %rpc-calls
923 ;; Mapping from RPC names (symbols) to invocation counts.
924 (make-hash-table))
925
926(define* (show-rpc-profile #:optional (port (current-error-port)))
927 "Write to PORT a summary of the RPCs that have been made."
928 (let ((profile (sort (hash-fold alist-cons '() %rpc-calls)
929 (lambda (rpc1 rpc2)
930 (< (cdr rpc1) (cdr rpc2))))))
931 (format port "Remote procedure call summary: ~a RPCs~%"
932 (match profile
933 (((names . counts) ...)
934 (reduce + 0 counts))))
935 (for-each (match-lambda
936 ((rpc . count)
937 (format port " ~30a ... ~5@a~%" rpc count)))
938 profile)))
939
940(define record-operation
941 ;; Optionally, increment the number of calls of the given RPC.
03870da8
LC
942 (if (profiled? "rpc")
943 (begin
944 (register-profiling-hook! "rpc" show-rpc-profile)
945 (lambda (name)
946 (let ((count (or (hashq-ref %rpc-calls name) 0)))
947 (hashq-set! %rpc-calls name (+ count 1)))))
948 (lambda (_)
949 #t)))
f4453df9 950
fd060fd3 951(define-syntax operation
77d3cf08 952 (syntax-rules ()
fd060fd3 953 "Define a client-side RPC stub for the given operation."
3259877d 954 ((_ (name (type arg) ...) docstring return ...)
fd060fd3 955 (lambda (server arg ...)
77d3cf08 956 docstring
de9fbe9c
LC
957 (let* ((s (store-connection-socket server))
958 (buffered (store-connection-output-port server)))
f4453df9 959 (record-operation 'name)
e037e9db
LC
960 (write-int (operation-id name) buffered)
961 (write-arg type arg buffered)
77d3cf08 962 ...
e037e9db
LC
963 (write-buffered-output server)
964
dcee50c1
LC
965 ;; Loop until the server is done sending error output.
966 (let loop ((done? (process-stderr server)))
967 (or done? (loop (process-stderr server))))
3259877d 968 (values (read-arg return s) ...))))))
77d3cf08 969
fd060fd3
LC
970(define-syntax-rule (define-operation (name args ...)
971 docstring return ...)
972 (define name
973 (operation (name args ...) docstring return ...)))
974
31ef99a8 975(define-operation (valid-path? (string path))
06b76acc
LC
976 "Return #t when PATH designates a valid store item and #f otherwise (an
977invalid item may exist on disk but still be invalid, for instance because it
978is the result of an aborted or failed build.)
979
f9e8a123 980A '&store-protocol-error' condition is raised if PATH is not prefixed by the
06b76acc 981store directory (/gnu/store)."
31ef99a8
LC
982 boolean)
983
63193ebf 984(define-operation (query-path-hash (store-path path))
aa8fff0c 985 "Return the SHA256 hash of the nar serialization of PATH as a bytevector."
82058eff
LC
986 base16)
987
11e7a6cf
LC
988(define hash-part->path
989 (let ((query-path-from-hash-part
990 (operation (query-path-from-hash-part (string hash))
991 #f
992 store-path)))
993 (lambda (server hash-part)
994 "Return the store path whose hash part is HASH-PART (a nix-base32
7fcb86da 995string). Return the empty string if no such path exists."
11e7a6cf
LC
996 ;; This RPC is primarily used by Hydra to reply to HTTP GETs of
997 ;; /HASH.narinfo.
998 (query-path-from-hash-part server hash-part))))
999
533d1768
DT
1000(define-operation (query-path-info (store-path path))
1001 "Return the info (hash, references, etc.) for PATH."
1002 path-info)
1003
0d268c5d 1004(define add-data-to-store
fd060fd3
LC
1005 ;; A memoizing version of `add-to-store', to avoid repeated RPCs with
1006 ;; the very same arguments during a given session.
1007 (let ((add-text-to-store
0d268c5d 1008 (operation (add-text-to-store (string name) (bytevector text)
fd060fd3
LC
1009 (string-list references))
1010 #f
d1f7748a
LC
1011 store-path))
1012 (lookup (if (profiled? "add-data-to-store-cache")
1013 (let ((lookups 0)
1014 (hits 0)
1015 (drv 0)
1016 (scheme 0))
1017 (define (show-stats)
1018 (define (% n)
1019 (if (zero? lookups)
1020 100.
1021 (* 100. (/ n lookups))))
1022
1023 (format (current-error-port) "
1024'add-data-to-store' cache:
1025 lookups: ~5@a
1026 hits: ~5@a (~,1f%)
1027 .drv files: ~5@a (~,1f%)
1028 Scheme files: ~5@a (~,1f%)~%"
1029 lookups hits (% hits)
1030 drv (% drv)
1031 scheme (% scheme)))
1032
1033 (register-profiling-hook! "add-data-to-store-cache"
1034 show-stats)
1035 (lambda (cache args)
1036 (let ((result (hash-ref cache args)))
1037 (set! lookups (+ 1 lookups))
1038 (when result
1039 (set! hits (+ 1 hits)))
1040 (match args
1041 ((_ name _)
1042 (cond ((string-suffix? ".drv" name)
1043 (set! drv (+ drv 1)))
1044 ((string-suffix? "-builder" name)
1045 (set! scheme (+ scheme 1)))
1046 ((string-suffix? ".scm" name)
1047 (set! scheme (+ scheme 1))))))
1048 result)))
1049 hash-ref)))
0d268c5d
LC
1050 (lambda* (server name bytes #:optional (references '()))
1051 "Add BYTES under file NAME in the store, and return its store path.
bdcf35a6
LC
1052REFERENCES is the list of store paths referred to by the resulting store
1053path."
0d268c5d 1054 (let* ((args `(,bytes ,name ,references))
de9fbe9c 1055 (cache (store-connection-add-text-to-store-cache server)))
d1f7748a 1056 (or (lookup cache args)
0d268c5d 1057 (let ((path (add-text-to-store server name bytes references)))
bdcf35a6
LC
1058 (hash-set! cache args path)
1059 path))))))
1060
0d268c5d
LC
1061(define* (add-text-to-store store name text #:optional (references '()))
1062 "Add TEXT under file NAME in the store, and return its store path.
1063REFERENCES is the list of store paths referred to by the resulting store
1064path."
1065 (add-data-to-store store name (string->utf8 text) references))
1066
1ec32f4a
LC
1067(define true
1068 ;; Define it once and for all since we use it as a default value for
1069 ;; 'add-to-store' and want to make sure two default values are 'eq?' for the
1070 ;; purposes or memoization.
1071 (lambda (file stat)
1072 #t))
1073
fd060fd3 1074(define add-to-store
a7b6ffee
LC
1075 ;; A memoizing version of `add-to-store'. This is important because
1076 ;; `add-to-store' leads to huge data transfers to the server, and
1077 ;; because it's often called many times with the very same argument.
1ec32f4a
LC
1078 (let ((add-to-store
1079 (lambda* (server basename recursive? hash-algo file-name
1080 #:key (select? true))
1081 ;; We don't use the 'operation' macro so we can pass SELECT? to
1082 ;; 'write-file'.
0ca3d556 1083 (record-operation 'add-to-store)
de9fbe9c 1084 (let ((port (store-connection-socket server)))
1ec32f4a
LC
1085 (write-int (operation-id add-to-store) port)
1086 (write-string basename port)
1087 (write-int 1 port) ;obsolete, must be #t
1088 (write-int (if recursive? 1 0) port)
1089 (write-string hash-algo port)
1090 (write-file file-name port #:select? select?)
38098241 1091 (write-buffered-output server)
1ec32f4a
LC
1092 (let loop ((done? (process-stderr server)))
1093 (or done? (loop (process-stderr server))))
1094 (read-store-path port)))))
1095 (lambda* (server basename recursive? hash-algo file-name
1096 #:key (select? true))
a9ebd9ef 1097 "Add the contents of FILE-NAME under BASENAME to the store. When
69792b28
LC
1098RECURSIVE? is false, FILE-NAME must designate a regular file--not a directory
1099nor a symlink. When RECURSIVE? is true and FILE-NAME designates a directory,
1100the contents of FILE-NAME are added recursively; if FILE-NAME designates a
1101flat file and RECURSIVE? is true, its contents are added, and its permission
1ec32f4a
LC
1102bits are kept. HASH-ALGO must be a string such as \"sha256\".
1103
1104When RECURSIVE? is true, call (SELECT? FILE STAT) for each directory entry,
1105where FILE is the entry's absolute file name and STAT is the result of
1106'lstat'; exclude entries for which SELECT? does not return true."
b4671215
LC
1107 ;; Note: We don't stat FILE-NAME at each call, and thus we assume that
1108 ;; the file remains unchanged for the lifetime of SERVER.
1109 (let* ((args `(,file-name ,basename ,recursive? ,hash-algo ,select?))
de9fbe9c 1110 (cache (store-connection-add-to-store-cache server)))
b4671215 1111 (or (hash-ref cache args)
1ec32f4a
LC
1112 (let ((path (add-to-store server basename recursive?
1113 hash-algo file-name
1114 #:select? select?)))
a7b6ffee
LC
1115 (hash-set! cache args path)
1116 path))))))
1117
7f11efba
LC
1118(define %not-slash
1119 (char-set-complement (char-set #\/)))
1120
1121(define* (add-file-tree-to-store server tree
1122 #:key
1123 (hash-algo "sha256")
1124 (recursive? #t))
1125 "Add the given TREE to the store on SERVER. TREE must be an entry such as:
1126
1127 (\"my-tree\" directory
1128 (\"a\" regular (data \"hello\"))
1129 (\"b\" symlink \"a\")
1130 (\"c\" directory
1131 (\"d\" executable (file \"/bin/sh\"))))
1132
1133This is a generalized version of 'add-to-store'. It allows you to reproduce
1134an arbitrary directory layout in the store without creating a derivation."
1135
1136 ;; Note: The format of TREE was chosen to allow trees to be compared with
1137 ;; 'equal?', which in turn allows us to memoize things.
1138
1139 (define root
1140 ;; TREE is a single entry.
1141 (list tree))
1142
1143 (define basename
1144 (match tree
1145 ((name . _) name)))
1146
1147 (define (lookup file)
1148 (let loop ((components (string-tokenize file %not-slash))
1149 (tree root))
1150 (match components
1151 ((basename)
1152 (assoc basename tree))
1153 ((head . rest)
1154 (loop rest
1155 (match (assoc-ref tree head)
1156 (('directory . entries) entries)))))))
1157
1158 (define (file-type+size file)
1159 (match (lookup file)
1160 ((_ (and type (or 'directory 'symlink)) . _)
1161 (values type 0))
1162 ((_ type ('file file))
1163 (values type (stat:size (stat file))))
1164 ((_ type ('data (? string? data)))
1165 (values type (string-length data)))
1166 ((_ type ('data (? bytevector? data)))
1167 (values type (bytevector-length data)))))
1168
1169 (define (file-port file)
1170 (match (lookup file)
1171 ((_ (or 'regular 'executable) content)
1172 (match content
1173 (('file (? string? file))
1174 (open-file file "r0b"))
1175 (('data (? string? str))
1176 (open-input-string str))
1177 (('data (? bytevector? bv))
1178 (open-bytevector-input-port bv))))))
1179
1180 (define (symlink-target file)
1181 (match (lookup file)
1182 ((_ 'symlink target) target)))
1183
1184 (define (directory-entries directory)
1185 (match (lookup directory)
1186 ((_ 'directory (names . _) ...) names)))
1187
1188 (define cache
de9fbe9c 1189 (store-connection-add-to-store-cache server))
7f11efba
LC
1190
1191 (or (hash-ref cache tree)
1192 (begin
1193 ;; We don't use the 'operation' macro so we can use 'write-file-tree'
1194 ;; instead of 'write-file'.
1195 (record-operation 'add-to-store/tree)
de9fbe9c 1196 (let ((port (store-connection-socket server)))
7f11efba
LC
1197 (write-int (operation-id add-to-store) port)
1198 (write-string basename port)
1199 (write-int 1 port) ;obsolete, must be #t
1200 (write-int (if recursive? 1 0) port)
1201 (write-string hash-algo port)
1202 (write-file-tree basename port
1203 #:file-type+size file-type+size
1204 #:file-port file-port
1205 #:symlink-target symlink-target
1206 #:directory-entries directory-entries)
000bbe02 1207 (write-buffered-output server)
7f11efba
LC
1208 (let loop ((done? (process-stderr server)))
1209 (or done? (loop (process-stderr server))))
1210 (let ((result (read-store-path port)))
1211 (hash-set! cache tree result)
1212 result)))))
1213
07e70f48
LC
1214(define build-things
1215 (let ((build (operation (build-things (string-list things)
1216 (integer mode))
1217 "Do it!"
2734cbb8
LC
1218 boolean))
1219 (build/old (operation (build-things (string-list things))
1220 "Do it!"
1221 boolean)))
07e70f48
LC
1222 (lambda* (store things #:optional (mode (build-mode normal)))
1223 "Build THINGS, a list of store items which may be either '.drv' files or
abac874b
LC
1224outputs, and return when the worker is done building them. Elements of THINGS
1225that are not derivations can only be substituted and not built locally.
f8a9f99c
LC
1226Alternately, an element of THING can be a derivation/output name pair, in
1227which case the daemon will attempt to substitute just the requested output of
1228the derivation. Return #t on success."
1229 (let ((things (map (match-lambda
1230 ((drv . output) (string-append drv "!" output))
1231 (thing thing))
1232 things)))
1233 (parameterize ((current-store-protocol-version
1234 (store-connection-version store)))
1235 (if (>= (store-connection-minor-version store) 15)
1236 (build store things mode)
1237 (if (= mode (build-mode normal))
1238 (build/old store things)
1239 (raise (condition (&store-protocol-error
1240 (message "unsupported build mode")
1241 (status 1)))))))))))
26bbbb95 1242
d3648e01
LC
1243(define-operation (add-temp-root (store-path path))
1244 "Make PATH a temporary root for the duration of the current session.
1245Return #t."
1246 boolean)
1247
34811f02 1248(define-operation (add-indirect-root (string file-name))
a9d2a105
LC
1249 "Make the symlink FILE-NAME an indirect root for the garbage collector:
1250whatever store item FILE-NAME points to will not be collected. Return #t on
1251success.
1252
1253FILE-NAME can be anywhere on the file system, but it must be an absolute file
1254name--it is the caller's responsibility to ensure that it is an absolute file
1255name."
34811f02
LC
1256 boolean)
1257
a9d2a105
LC
1258(define %gc-roots-directory
1259 ;; The place where garbage collector roots (symlinks) are kept.
1260 (string-append %state-directory "/gcroots"))
1261
1262(define (add-permanent-root target)
1263 "Add a garbage collector root pointing to TARGET, an element of the store,
1264preventing TARGET from even being collected. This can also be used if TARGET
1265does not exist yet.
1266
1267Raise an error if the caller does not have write access to the GC root
1268directory."
1269 (let* ((root (string-append %gc-roots-directory "/" (basename target))))
1270 (catch 'system-error
1271 (lambda ()
1272 (symlink target root))
1273 (lambda args
1274 ;; If ROOT already exists, this is fine; otherwise, re-throw.
1275 (unless (= EEXIST (system-error-errno args))
1276 (apply throw args))))))
1277
1278(define (remove-permanent-root target)
1279 "Remove the permanent garbage collector root pointing to TARGET. Raise an
1280error if there is no such root."
1281 (delete-file (string-append %gc-roots-directory "/" (basename target))))
1282
fae31edc
LC
1283(define references
1284 (operation (query-references (store-path path))
1285 "Return the list of references of PATH."
1286 store-path-list))
1287
f09aea1b
LC
1288(define %reference-cache
1289 ;; Brute-force cache mapping store items to their list of references.
1290 ;; Caching matters because when building a profile in the presence of
1291 ;; grafts, we keep calling 'graft-derivation', which in turn calls
1292 ;; 'references/substitutes' many times with the same arguments. Ideally we
1293 ;; would use a cache associated with the daemon connection instead (XXX).
1294 (make-hash-table 100))
1295
6581ec9a
LC
1296(define (references/substitutes store items)
1297 "Return the list of list of references of ITEMS; the result has the same
1298length as ITEMS. Query substitute information for any item missing from the
f9e8a123 1299store at once. Raise a '&store-protocol-error' exception if reference
6581ec9a 1300information for one of ITEMS is missing."
b2fde480
LC
1301 (let* ((requested items)
1302 (local-refs (map (lambda (item)
f09aea1b 1303 (or (hash-ref %reference-cache item)
f9e8a123 1304 (guard (c ((store-protocol-error? c) #f))
f09aea1b 1305 (references store item))))
6581ec9a
LC
1306 items))
1307 (missing (fold-right (lambda (item local-ref result)
1308 (if local-ref
1309 result
1310 (cons item result)))
1311 '()
1312 items local-refs))
1313
1314 ;; Query all the substitutes at once to minimize the cost of
1315 ;; launching 'guix substitute' and making HTTP requests.
2633bd32
LC
1316 (substs (if (null? missing)
1317 '()
1318 (substitutable-path-info store missing))))
6581ec9a 1319 (when (< (length substs) (length missing))
f9e8a123 1320 (raise (condition (&store-protocol-error
6581ec9a
LC
1321 (message "cannot determine \
1322the list of references")
1323 (status 1)))))
1324
1325 ;; Intersperse SUBSTS and LOCAL-REFS.
dd78e90a
LC
1326 (let loop ((items items)
1327 (local-refs local-refs)
6581ec9a 1328 (result '()))
dd78e90a 1329 (match items
6581ec9a 1330 (()
f09aea1b
LC
1331 (let ((result (reverse result)))
1332 (for-each (cut hash-set! %reference-cache <> <>)
b2fde480 1333 requested result)
f09aea1b 1334 result))
dd78e90a
LC
1335 ((item items ...)
1336 (match local-refs
1337 ((#f tail ...)
1338 (loop items tail
1339 (cons (any (lambda (subst)
1340 (and (string=? (substitutable-path subst) item)
1341 (substitutable-references subst)))
1342 substs)
1343 result)))
1344 ((head tail ...)
1345 (loop items tail
1346 (cons head result)))))))))
6581ec9a 1347
f6fee16e 1348(define* (fold-path store proc seed paths
3f1e6939 1349 #:optional (relatives (cut references store <>)))
f6fee16e 1350 "Call PROC for each of the RELATIVES of PATHS, exactly once, and return the
3f1e6939
LC
1351result formed from the successive calls to PROC, the first of which is passed
1352SEED."
f6fee16e 1353 (let loop ((paths paths)
3f1e6939
LC
1354 (result seed)
1355 (seen vlist-null))
1356 (match paths
1357 ((path rest ...)
1358 (if (vhash-assoc path seen)
1359 (loop rest result seen)
1360 (let ((seen (vhash-cons path #t seen))
1361 (rest (append rest (relatives path)))
1362 (result (proc path result)))
1363 (loop rest result seen))))
1364 (()
1365 result))))
1366
f6fee16e
LC
1367(define (requisites store paths)
1368 "Return the requisites of PATHS, including PATHS---i.e., their closures (all
1369its references, recursively)."
1370 (fold-path store cons '() paths))
3f1e6939 1371
50add477
LC
1372(define (topologically-sorted store paths)
1373 "Return a list containing PATHS and all their references sorted in
1374topological order."
1375 (define (traverse)
1376 ;; Do a simple depth-first traversal of all of PATHS.
1377 (let loop ((paths paths)
1378 (visited vlist-null)
1379 (result '()))
1380 (define (visit n)
1381 (vhash-cons n #t visited))
1382
1383 (define (visited? n)
1384 (vhash-assoc n visited))
1385
1386 (match paths
1387 ((head tail ...)
1388 (if (visited? head)
1389 (loop tail visited result)
1390 (call-with-values
1391 (lambda ()
1392 (loop (references store head)
1393 (visit head)
1394 result))
1395 (lambda (visited result)
1396 (loop tail
1397 visited
1398 (cons head result))))))
1399 (()
1400 (values visited result)))))
1401
1402 (call-with-values traverse
1403 (lambda (_ result)
1404 (reverse result))))
1405
fae31edc
LC
1406(define referrers
1407 (operation (query-referrers (store-path path))
1408 "Return the list of path that refer to PATH."
1409 store-path-list))
1410
1411(define valid-derivers
1412 (operation (query-valid-derivers (store-path path))
1413 "Return the list of valid \"derivers\" of PATH---i.e., all the
1414.drv present in the store that have PATH among their outputs."
1415 store-path-list))
1416
1417(define query-derivation-outputs ; avoid name clash with `derivation-outputs'
1418 (operation (query-derivation-outputs (store-path path))
1419 "Return the list of outputs of PATH, a .drv file."
1420 store-path-list))
1421
0f3d2504
LC
1422(define-operation (has-substitutes? (store-path path))
1423 "Return #t if binary substitutes are available for PATH, and #f otherwise."
1424 boolean)
1425
1426(define substitutable-paths
1427 (operation (query-substitutable-paths (store-path-list paths))
1428 "Return the subset of PATHS that is substitutable."
1429 store-path-list))
1430
1431(define substitutable-path-info
f65cf81a 1432 (operation (query-substitutable-path-infos (store-path-list paths))
0f3d2504
LC
1433 "Return information about the subset of PATHS that is
1434substitutable. For each substitutable path, a `substitutable?' object is
dd78e90a
LC
1435returned; thus, the resulting list can be shorter than PATHS. Furthermore,
1436that there is no guarantee that the order of the resulting list matches the
1437order of PATHS."
0f3d2504
LC
1438 substitutable-path-list))
1439
3961edf2 1440(define %built-in-builders
f9aefa2d
LC
1441 (let ((builders (operation (built-in-builders)
1442 "Return the built-in builders."
1443 string-list)))
1444 (lambda (store)
1445 "Return the names of the supported built-in derivation builders
3961edf2 1446supported by STORE. The result is memoized for STORE."
f9aefa2d
LC
1447 ;; Check whether STORE's version supports this RPC and built-in
1448 ;; derivation builders in general, which appeared in Guix > 0.11.0.
1449 ;; Return the empty list if it doesn't. Note that this RPC does not
1450 ;; exist in 'nix-daemon'.
de9fbe9c
LC
1451 (if (or (> (store-connection-major-version store) #x100)
1452 (and (= (store-connection-major-version store) #x100)
1453 (>= (store-connection-minor-version store) #x60)))
f9aefa2d
LC
1454 (builders store)
1455 '()))))
1456
3961edf2
LC
1457(define (built-in-builders store)
1458 "Return the names of the supported built-in derivation builders
1459supported by STORE."
1460 (force (store-connection-built-in-builders store)))
1461
e3fd0ce6
LC
1462(define-operation (optimize-store)
1463 "Optimize the store by hard-linking identical files (\"deduplication\".)
1464Return #t on success."
1465 ;; Note: the daemon in Guix <= 0.8.2 does not implement this RPC.
1466 boolean)
1467
c63d9403
LC
1468(define verify-store
1469 (let ((verify (operation (verify-store (boolean check-contents?)
1470 (boolean repair?))
1471 "Verify the store."
1472 boolean)))
1473 (lambda* (store #:key check-contents? repair?)
1474 "Verify the integrity of the store and return false if errors remain,
1475and true otherwise. When REPAIR? is true, repair any missing or altered store
1476items by substituting them (this typically requires root privileges because it
1477is not an atomic operation.) When CHECK-CONTENTS? is true, check the contents
1478of store items; this can take a lot of time."
1479 (not (verify store check-contents? repair?)))))
1480
3259877d
LC
1481(define (run-gc server action to-delete min-freed)
1482 "Perform the garbage-collector operation ACTION, one of the
1483`gc-action' values. When ACTION is `delete-specific', the TO-DELETE is
1484the list of store paths to delete. IGNORE-LIVENESS? should always be
1485#f. MIN-FREED is the minimum amount of disk space to be freed, in
1486bytes, before the GC can stop. Return the list of store paths delete,
1487and the number of bytes freed."
de9fbe9c 1488 (let ((s (store-connection-socket server)))
3259877d
LC
1489 (write-int (operation-id collect-garbage) s)
1490 (write-int action s)
1491 (write-store-path-list to-delete s)
1492 (write-arg boolean #f s) ; ignore-liveness?
1493 (write-long-long min-freed s)
1494 (write-int 0 s) ; obsolete
de9fbe9c 1495 (when (>= (store-connection-minor-version server) 5)
3259877d
LC
1496 ;; Obsolete `use-atime' and `max-atime' parameters.
1497 (write-int 0 s)
1498 (write-int 0 s))
1499
1500 ;; Loop until the server is done sending error output.
1501 (let loop ((done? (process-stderr server)))
1502 (or done? (loop (process-stderr server))))
1503
1504 (let ((paths (read-store-path-list s))
1505 (freed (read-long-long s))
1506 (obsolete (read-long-long s)))
000c59b6
LC
1507 (unless (null? paths)
1508 ;; To be on the safe side, completely invalidate both caches.
1509 ;; Otherwise we could end up returning store paths that are no longer
1510 ;; valid.
de9fbe9c
LC
1511 (hash-clear! (store-connection-add-to-store-cache server))
1512 (hash-clear! (store-connection-add-text-to-store-cache server)))
000c59b6 1513
3259877d
LC
1514 (values paths freed))))
1515
1516(define-syntax-rule (%long-long-max)
1517 ;; Maximum unsigned 64-bit integer.
1518 (- (expt 2 64) 1))
1519
1520(define (live-paths server)
1521 "Return the list of live store paths---i.e., store paths still
1522referenced, and thus not subject to being garbage-collected."
1523 (run-gc server (gc-action return-live) '() (%long-long-max)))
1524
1525(define (dead-paths server)
1526 "Return the list of dead store paths---i.e., store paths no longer
1527referenced, and thus subject to being garbage-collected."
1528 (run-gc server (gc-action return-dead) '() (%long-long-max)))
1529
1530(define* (collect-garbage server #:optional (min-freed (%long-long-max)))
1531 "Collect garbage from the store at SERVER. If MIN-FREED is non-zero,
1532then collect at least MIN-FREED bytes. Return the paths that were
1533collected, and the number of bytes freed."
1534 (run-gc server (gc-action delete-dead) '() min-freed))
1535
1536(define* (delete-paths server paths #:optional (min-freed (%long-long-max)))
1537 "Delete PATHS from the store at SERVER, if they are no longer
1538referenced. If MIN-FREED is non-zero, then stop after at least
1539MIN-FREED bytes have been collected. Return the paths that were
1540collected, and the number of bytes freed."
1541 (run-gc server (gc-action delete-specific) paths min-freed))
1542
526382ff
LC
1543(define (import-paths server port)
1544 "Import the set of store paths read from PORT into SERVER's store. An error
1545is raised if the set of paths read from PORT is not signed (as per
1546'export-path #:sign? #t'.) Return the list of store paths imported."
de9fbe9c 1547 (let ((s (store-connection-socket server)))
526382ff
LC
1548 (write-int (operation-id import-paths) s)
1549 (let loop ((done? (process-stderr server port)))
1550 (or done? (loop (process-stderr server port))))
1551 (read-store-path-list s)))
1552
1553(define* (export-path server path port #:key (sign? #t))
1554 "Export PATH to PORT. When SIGN? is true, sign it."
de9fbe9c 1555 (let ((s (store-connection-socket server)))
526382ff
LC
1556 (write-int (operation-id export-path) s)
1557 (write-store-path path s)
1558 (write-arg boolean sign? s)
1559 (let loop ((done? (process-stderr server port)))
1560 (or done? (loop (process-stderr server port))))
1561 (= 1 (read-int s))))
1562
5b3d863f 1563(define* (export-paths server paths port #:key (sign? #t) recursive?)
99fbddf9 1564 "Export the store paths listed in PATHS to PORT, in topological order,
5b3d863f
LC
1565signing them if SIGN? is true. When RECURSIVE? is true, export the closure of
1566PATHS---i.e., PATHS and all their dependencies."
cafb92d8 1567 (define ordered
5b3d863f
LC
1568 (let ((sorted (topologically-sorted server paths)))
1569 ;; When RECURSIVE? is #f, filter out the references of PATHS.
1570 (if recursive?
1571 sorted
1572 (filter (cut member <> paths) sorted))))
cafb92d8 1573
1d506993
LC
1574 (let loop ((paths ordered))
1575 (match paths
1576 (()
1577 (write-int 0 port))
1578 ((head tail ...)
1579 (write-int 1 port)
1580 (and (export-path server head port #:sign? sign?)
1581 (loop tail))))))
526382ff 1582
16748d80
LC
1583(define-operation (query-failed-paths)
1584 "Return the list of store items for which a build failure is cached.
1585
1586The result is always the empty list unless the daemon was started with
1587'--cache-failures'."
1588 store-path-list)
1589
1590(define-operation (clear-failed-paths (store-path-list items))
1591 "Remove ITEMS from the list of cached build failures.
1592
1593This makes sense only when the daemon was started with '--cache-failures'."
1594 boolean)
1595
26bbbb95 1596\f
e87f0591
LC
1597;;;
1598;;; Store monad.
1599;;;
1600
4e190c28
LC
1601(define-syntax-rule (define-alias new old)
1602 (define-syntax new (identifier-syntax old)))
e87f0591 1603
4e190c28
LC
1604;; The store monad allows us to (1) build sequences of operations in the
1605;; store, and (2) make the store an implicit part of the execution context,
1606;; rather than a parameter of every single function.
1607(define-alias %store-monad %state-monad)
1608(define-alias store-return state-return)
1609(define-alias store-bind state-bind)
e87f0591 1610
dcb95c1f
LC
1611;; Instantiate templates for %STORE-MONAD since it's syntactically different
1612;; from %STATE-MONAD.
1613(template-directory instantiations %store-monad)
1614
c6080c32
LC
1615(define* (cache-object-mapping object keys result)
1616 "Augment the store's object cache with a mapping from OBJECT/KEYS to RESULT.
1617KEYS is a list of additional keys to match against, for instance a (SYSTEM
1618TARGET) tuple.
1619
1620OBJECT is typically a high-level object such as a <package> or an <origin>,
1621and RESULT is typically its derivation."
1622 (lambda (store)
1623 (values result
de9fbe9c 1624 (store-connection
c6080c32
LC
1625 (inherit store)
1626 (object-cache (vhash-consq object (cons result keys)
de9fbe9c 1627 (store-connection-object-cache store)))))))
c6080c32 1628
73b0ebdd
LC
1629(define record-cache-lookup!
1630 (if (profiled? "object-cache")
1631 (let ((fresh 0)
1632 (lookups 0)
1633 (hits 0))
1634 (register-profiling-hook!
1635 "object-cache"
1636 (lambda ()
1637 (format (current-error-port) "Store object cache:
1638 fresh caches: ~5@a
1639 lookups: ~5@a
1640 hits: ~5@a (~,1f%)~%"
1641 fresh lookups hits
1642 (if (zero? lookups)
1643 100.
1644 (* 100. (/ hits lookups))))))
1645
1646 (lambda (hit? cache)
1647 (set! fresh
1648 (if (eq? cache vlist-null)
1649 (+ 1 fresh)
1650 fresh))
1651 (set! lookups (+ 1 lookups))
1652 (set! hits (if hit? (+ hits 1) hits))))
1653 (lambda (x y)
1654 #t)))
1655
c6080c32
LC
1656(define* (lookup-cached-object object #:optional (keys '()))
1657 "Return the cached object in the store connection corresponding to OBJECT
1658and KEYS. KEYS is a list of additional keys to match against, and which are
1659compared with 'equal?'. Return #f on failure and the cached result
1660otherwise."
1661 (lambda (store)
de9fbe9c 1662 (let* ((cache (store-connection-object-cache store))
73b0ebdd
LC
1663
1664 ;; Escape as soon as we find the result. This avoids traversing
1665 ;; the whole vlist chain and significantly reduces the number of
1666 ;; 'hashq' calls.
1667 (value (let/ec return
1668 (vhash-foldq* (lambda (item result)
1669 (match item
1670 ((value . keys*)
1671 (if (equal? keys keys*)
1672 (return value)
1673 result))))
1674 #f object
1675 cache))))
1676 (record-cache-lookup! value cache)
1677 (values value store))))
c6080c32
LC
1678
1679(define* (%mcached mthunk object #:optional (keys '()))
1680 "Bind the monadic value returned by MTHUNK, which supposedly corresponds to
1681OBJECT/KEYS, or return its cached value."
1682 (mlet %store-monad ((cached (lookup-cached-object object keys)))
1683 (if cached
1684 (return cached)
1685 (>>= (mthunk)
1686 (lambda (result)
1687 (cache-object-mapping object keys result))))))
1688
1689(define-syntax-rule (mcached mvalue object keys ...)
1690 "Run MVALUE, which corresponds to OBJECT/KEYS, and cache it; or return the
1691value associated with OBJECT/KEYS in the store's object cache if there is
1692one."
1693 (%mcached (lambda () mvalue)
1694 object (list keys ...)))
1695
5808dcc2
LC
1696(define (preserve-documentation original proc)
1697 "Return PROC with documentation taken from ORIGINAL."
1698 (set-object-property! proc 'documentation
1699 (procedure-property original 'documentation))
1700 proc)
1701
e87f0591
LC
1702(define (store-lift proc)
1703 "Lift PROC, a procedure whose first argument is a connection to the store,
1704in the store monad."
5808dcc2
LC
1705 (preserve-documentation proc
1706 (lambda args
1707 (lambda (store)
1708 (values (apply proc store args) store)))))
e87f0591 1709
023d9892
LC
1710(define (store-lower proc)
1711 "Lower PROC, a monadic procedure in %STORE-MONAD, to a \"normal\" procedure
1712taking the store as its first argument."
5808dcc2
LC
1713 (preserve-documentation proc
1714 (lambda (store . args)
1715 (run-with-store store (apply proc args)))))
023d9892 1716
e87f0591
LC
1717;;
1718;; Store monad operators.
1719;;
1720
f3a42251
JN
1721(define* (binary-file name
1722 data ;bytevector
1723 #:optional (references '()))
1724 "Return as a monadic value the absolute file name in the store of the file
1725containing DATA, a bytevector. REFERENCES is a list of store items that the
1726resulting text file refers to; it defaults to the empty list."
1727 (lambda (store)
1728 (values (add-data-to-store store name data references)
1729 store)))
1730
1731(define* (text-file name
1732 text ;string
ad372953 1733 #:optional (references '()))
e87f0591 1734 "Return as a monadic value the absolute file name in the store of the file
ad372953
LC
1735containing TEXT, a string. REFERENCES is a list of store items that the
1736resulting text file refers to; it defaults to the empty list."
e87f0591 1737 (lambda (store)
ad372953 1738 (values (add-text-to-store store name text references)
4e190c28 1739 store)))
e87f0591
LC
1740
1741(define* (interned-file file #:optional name
1ec32f4a 1742 #:key (recursive? #t) (select? true))
e87f0591
LC
1743 "Return the name of FILE once interned in the store. Use NAME as its store
1744name, or the basename of FILE if NAME is omitted.
1745
1746When RECURSIVE? is true, the contents of FILE are added recursively; if FILE
1747designates a flat file and RECURSIVE? is true, its contents are added, and its
1ec32f4a
LC
1748permission bits are kept.
1749
1750When RECURSIVE? is true, call (SELECT? FILE STAT) for each directory entry,
1751where FILE is the entry's absolute file name and STAT is the result of
1752'lstat'; exclude entries for which SELECT? does not return true."
e87f0591 1753 (lambda (store)
4e190c28 1754 (values (add-to-store store (or name (basename file))
1ec32f4a
LC
1755 recursive? "sha256" file
1756 #:select? select?)
4e190c28 1757 store)))
e87f0591 1758
7f11efba
LC
1759(define interned-file-tree
1760 (store-lift add-file-tree-to-store))
1761
abac874b
LC
1762(define build
1763 ;; Monadic variant of 'build-things'.
1764 (store-lift build-things))
1765
4f740b67
AK
1766(define set-build-options*
1767 (store-lift set-build-options))
1768
e74f64b9
LC
1769(define references*
1770 (store-lift references))
1771
0744a9f0
LC
1772(define (query-path-info* item)
1773 "Monadic version of 'query-path-info' that returns #f when ITEM is not in
1774the store."
1775 (lambda (store)
f9e8a123 1776 (guard (c ((store-protocol-error? c)
0744a9f0
LC
1777 ;; ITEM is not in the store; return #f.
1778 (values #f store)))
1779 (values (query-path-info store item) store))))
1780
98a7b528
LC
1781(define-inlinable (current-system)
1782 ;; Consult the %CURRENT-SYSTEM fluid at bind time. This is equivalent to
1783 ;; (lift0 %current-system %store-monad), but inlinable, thus avoiding
1784 ;; closure allocation in some cases.
1785 (lambda (state)
1786 (values (%current-system) state)))
1787
1788(define-inlinable (set-current-system system)
1789 ;; Set the %CURRENT-SYSTEM fluid at bind time.
1790 (lambda (state)
1791 (values (%current-system system) state)))
1792
e87f0591
LC
1793(define %guile-for-build
1794 ;; The derivation of the Guile to be used within the build environment,
1795 ;; when using 'gexp->derivation' and co.
1796 (make-parameter #f))
1797
dd0ee954
LC
1798(define set-store-connection-object-cache!
1799 (record-modifier <store-connection> 'object-cache))
1800
e87f0591
LC
1801(define* (run-with-store store mval
1802 #:key
1803 (guile-for-build (%guile-for-build))
45bba475
LC
1804 (system (%current-system))
1805 (target #f))
e87f0591 1806 "Run MVAL, a monadic value in the store monad, in STORE, an open store
3698f524 1807connection, and return the result."
a8afb9ae
LC
1808 ;; Initialize the dynamic bindings here to avoid bad surprises. The
1809 ;; difficulty lies in the fact that dynamic bindings are resolved at
1810 ;; bind-time and not at call time, which can be disconcerting.
e87f0591 1811 (parameterize ((%guile-for-build guile-for-build)
a8afb9ae 1812 (%current-system system)
45bba475 1813 (%current-target-system target))
3698f524
LC
1814 (call-with-values (lambda ()
1815 (run-with-state mval store))
dd0ee954 1816 (lambda (result new-store)
728a4ab1
LC
1817 (when (and store new-store)
1818 ;; Copy the object cache from NEW-STORE so we don't fully discard
1819 ;; the state.
1820 (let ((cache (store-connection-object-cache new-store)))
1821 (set-store-connection-object-cache! store cache)))
1822 result))))
e87f0591
LC
1823
1824\f
26bbbb95
LC
1825;;;
1826;;; Store paths.
1827;;;
1828
1829(define %store-prefix
1830 ;; Absolute path to the Nix store.
1d6816f9 1831 (make-parameter %store-directory))
26bbbb95 1832
cd041b26
LC
1833(define (compressed-hash bv size) ; `compressHash'
1834 "Given the hash stored in BV, return a compressed version thereof that fits
1835in SIZE bytes."
1836 (define new (make-bytevector size 0))
1837 (define old-size (bytevector-length bv))
1838 (let loop ((i 0))
1839 (if (= i old-size)
1840 new
1841 (let* ((j (modulo i size))
1842 (o (bytevector-u8-ref new j)))
1843 (bytevector-u8-set! new j
1844 (logxor o (bytevector-u8-ref bv i)))
1845 (loop (+ 1 i))))))
1846
1847(define (store-path type hash name) ; makeStorePath
1848 "Return the store path for NAME/HASH/TYPE."
1849 (let* ((s (string-append type ":sha256:"
1850 (bytevector->base16-string hash) ":"
1851 (%store-prefix) ":" name))
1852 (h (sha256 (string->utf8 s)))
1853 (c (compressed-hash h 20)))
1854 (string-append (%store-prefix) "/"
1855 (bytevector->nix-base32-string c) "-"
1856 name)))
1857
1858(define (output-path output hash name) ; makeOutputPath
1859 "Return an output path for OUTPUT (the name of the output as a string) of
1860the derivation called NAME with hash HASH."
1861 (store-path (string-append "output:" output) hash
1862 (if (string=? output "out")
1863 name
1864 (string-append name "-" output))))
1865
1866(define* (fixed-output-path name hash
1867 #:key
1868 (output "out")
1869 (hash-algo 'sha256)
1870 (recursive? #t))
1871 "Return an output path for the fixed output OUTPUT defined by HASH of type
1872HASH-ALGO, of the derivation NAME. RECURSIVE? has the same meaning as for
1873'add-to-store'."
1874 (if (and recursive? (eq? hash-algo 'sha256))
1875 (store-path "source" hash name)
1876 (let ((tag (string-append "fixed:" output ":"
1877 (if recursive? "r:" "")
1878 (symbol->string hash-algo) ":"
1879 (bytevector->base16-string hash) ":")))
1880 (store-path (string-append "output:" output)
1881 (sha256 (string->utf8 tag))
1882 name))))
1883
f39bd08a
LC
1884(define (store-path? path)
1885 "Return #t if PATH is a store path."
1886 ;; This is a lightweight check, compared to using a regexp, but this has to
1887 ;; be fast as it's called often in `derivation', for instance.
1888 ;; `isStorePath' in Nix does something similar.
1889 (string-prefix? (%store-prefix) path))
26bbbb95 1890
9336e5b5
LC
1891(define (direct-store-path? path)
1892 "Return #t if PATH is a store path, and not a sub-directory of a store path.
1893This predicate is sometimes needed because files *under* a store path are not
1894valid inputs."
1895 (and (store-path? path)
eee21271 1896 (not (string=? path (%store-prefix)))
9336e5b5
LC
1897 (let ((len (+ 1 (string-length (%store-prefix)))))
1898 (not (string-index (substring path len) #\/)))))
1899
cdb5b075
CS
1900(define (direct-store-path path)
1901 "Return the direct store path part of PATH, stripping components after
1902'/gnu/store/xxxx-foo'."
1903 (let ((prefix-length (+ (string-length (%store-prefix)) 35)))
1904 (if (> (string-length path) prefix-length)
1905 (let ((slash (string-index path #\/ prefix-length)))
1906 (if slash (string-take path slash) path))
1907 path)))
1908
26bbbb95
LC
1909(define (derivation-path? path)
1910 "Return #t if PATH is a derivation path."
1911 (and (store-path? path) (string-suffix? ".drv" path)))
e3d74106 1912
5c0f1845
LC
1913(define store-regexp*
1914 ;; The substituter makes repeated calls to 'store-path-hash-part', hence
1915 ;; this optimization.
55b2d921
LC
1916 (mlambda (store)
1917 "Return a regexp matching a file in STORE."
1918 (make-regexp (string-append "^" (regexp-quote store)
1919 "/([0-9a-df-np-sv-z]{32})-([^/]+)$"))))
5c0f1845 1920
e3d74106
LC
1921(define (store-path-package-name path)
1922 "Return the package name part of PATH, a file name in the store."
5c0f1845
LC
1923 (let ((path-rx (store-regexp* (%store-prefix))))
1924 (and=> (regexp-exec path-rx path)
1925 (cut match:substring <> 2))))
2c6ab6cc
LC
1926
1927(define (store-path-hash-part path)
1928 "Return the hash part of PATH as a base32 string, or #f if PATH is not a
1929syntactically valid store path."
35eb77b0
LC
1930 (and (string-prefix? (%store-prefix) path)
1931 (let ((base (string-drop path (+ 1 (string-length (%store-prefix))))))
1932 (and (> (string-length base) 33)
1933 (let ((hash (string-take base 32)))
1934 (and (string-every %nix-base32-charset hash)
1935 hash))))))
eddd4077 1936
fb94d82b
LC
1937(define (derivation-log-file drv)
1938 "Return the build log file for DRV, a derivation file name, or #f if it
1939could not be found."
1940 (let* ((base (basename drv))
7c4700e9
LC
1941 (log (string-append (or (getenv "GUIX_LOG_DIRECTORY")
1942 (string-append %localstatedir "/log/guix"))
1943 "/drvs/"
fb94d82b
LC
1944 (string-take base 2) "/"
1945 (string-drop base 2)))
1946 (log.gz (string-append log ".gz"))
1947 (log.bz2 (string-append log ".bz2")))
1948 (cond ((file-exists? log.gz) log.gz)
1949 ((file-exists? log.bz2) log.bz2)
1950 ((file-exists? log) log)
1951 (else #f))))
1952
eddd4077
LC
1953(define (log-file store file)
1954 "Return the build log file for FILE, or #f if none could be found. FILE
1955must be an absolute store file name, or a derivation file name."
eddd4077 1956 (cond ((derivation-path? file)
fb94d82b 1957 (derivation-log-file file))
eddd4077
LC
1958 (else
1959 (match (valid-derivers store file)
1960 ((derivers ...)
1961 ;; Return the first that works.
1962 (any (cut log-file store <>) derivers))
1963 (_ #f)))))
3b5cd17a
LC
1964
1965;;; Local Variables:
1966;;; eval: (put 'system-error-to-connection-error 'scheme-indent-function 1)
1967;;; End: