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