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