2014-01-23 23:48:34 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix scripts offload)
|
|
|
|
|
#:use-module (guix config)
|
|
|
|
|
#:use-module (guix records)
|
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
|
#:use-module (guix nar)
|
|
|
|
|
#:use-module (guix utils)
|
2014-03-06 21:38:45 +01:00
|
|
|
|
#:use-module ((guix build utils) #:select (which mkdir-p))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
#:use-module (guix ui)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
2014-03-26 16:22:41 +01:00
|
|
|
|
#:use-module (srfi srfi-11)
|
2014-01-23 23:48:34 +01:00
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
|
|
|
|
#:use-module (ice-9 popen)
|
|
|
|
|
#:use-module (ice-9 rdelim)
|
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (ice-9 regex)
|
|
|
|
|
#:use-module (ice-9 format)
|
|
|
|
|
#:use-module (rnrs io ports)
|
|
|
|
|
#:export (build-machine
|
|
|
|
|
build-requirements
|
|
|
|
|
guix-offload))
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; Attempt to offload builds to the machines listed in
|
|
|
|
|
;;; /etc/guix/machines.scm, transferring missing dependencies over SSH, and
|
|
|
|
|
;;; retrieving the build output(s) over SSH upon success.
|
|
|
|
|
;;;
|
|
|
|
|
;;; This command should not be used directly; instead, it is called on-demand
|
|
|
|
|
;;; by the daemon, unless it was started with '--no-build-hook' or a client
|
|
|
|
|
;;; inhibited build hooks.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type* <build-machine>
|
|
|
|
|
build-machine make-build-machine
|
|
|
|
|
build-machine?
|
|
|
|
|
(name build-machine-name) ; string
|
2014-03-13 21:58:04 +01:00
|
|
|
|
(port build-machine-port ; number
|
|
|
|
|
(default 22))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(system build-machine-system) ; string
|
|
|
|
|
(user build-machine-user) ; string
|
|
|
|
|
(private-key build-machine-private-key ; file name
|
|
|
|
|
(default (user-lsh-private-key)))
|
|
|
|
|
(parallel-builds build-machine-parallel-builds ; number
|
|
|
|
|
(default 1))
|
|
|
|
|
(speed build-machine-speed ; inexact real
|
|
|
|
|
(default 1.0))
|
|
|
|
|
(features build-machine-features ; list of strings
|
|
|
|
|
(default '())))
|
|
|
|
|
|
|
|
|
|
(define-record-type* <build-requirements>
|
|
|
|
|
build-requirements make-build-requirements
|
|
|
|
|
build-requirements?
|
|
|
|
|
(system build-requirements-system) ; string
|
|
|
|
|
(features build-requirements-features ; list of strings
|
|
|
|
|
(default '())))
|
|
|
|
|
|
|
|
|
|
(define %machine-file
|
|
|
|
|
;; File that lists machines available as build slaves.
|
|
|
|
|
(string-append %config-directory "/machines.scm"))
|
|
|
|
|
|
|
|
|
|
(define %lsh-command
|
|
|
|
|
"lsh")
|
|
|
|
|
|
|
|
|
|
(define %lshg-command
|
|
|
|
|
;; FIXME: 'lshg' fails to pass large amounts of data, see
|
|
|
|
|
;; <http://lists.lysator.liu.se/pipermail/lsh-bugs/2014q1/000639.html>.
|
|
|
|
|
"lsh")
|
|
|
|
|
|
|
|
|
|
(define (user-lsh-private-key)
|
|
|
|
|
"Return the user's default lsh private key, or #f if it could not be
|
|
|
|
|
determined."
|
|
|
|
|
(and=> (getenv "HOME")
|
|
|
|
|
(cut string-append <> "/.lsh/identity")))
|
|
|
|
|
|
|
|
|
|
(define %user-module
|
|
|
|
|
;; Module in which the machine description file is loaded.
|
|
|
|
|
(let ((module (make-fresh-user-module)))
|
|
|
|
|
(module-use! module (resolve-interface '(guix scripts offload)))
|
|
|
|
|
module))
|
|
|
|
|
|
|
|
|
|
(define* (build-machines #:optional (file %machine-file))
|
|
|
|
|
"Read the list of build machines from FILE and return it."
|
|
|
|
|
(catch #t
|
|
|
|
|
(lambda ()
|
|
|
|
|
;; Avoid ABI incompatibility with the <build-machine> record.
|
|
|
|
|
(set! %fresh-auto-compile #t)
|
|
|
|
|
|
|
|
|
|
(save-module-excursion
|
|
|
|
|
(lambda ()
|
|
|
|
|
(set-current-module %user-module)
|
2014-02-02 01:32:50 +01:00
|
|
|
|
(primitive-load file))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(lambda args
|
|
|
|
|
(match args
|
|
|
|
|
(('system-error . _)
|
|
|
|
|
(let ((err (system-error-errno args)))
|
|
|
|
|
;; Silently ignore missing file since this is a common case.
|
|
|
|
|
(if (= ENOENT err)
|
|
|
|
|
'()
|
|
|
|
|
(leave (_ "failed to open machine file '~a': ~a~%")
|
2014-02-02 01:32:50 +01:00
|
|
|
|
file (strerror err)))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(_
|
|
|
|
|
(leave (_ "failed to load machine file '~a': ~s~%")
|
2014-02-02 01:32:50 +01:00
|
|
|
|
file args))))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
2014-03-01 12:24:39 +01:00
|
|
|
|
;;; FIXME: The idea was to open the connection to MACHINE once for all, but
|
|
|
|
|
;;; lshg is currently non-functional.
|
|
|
|
|
;; (define (open-ssh-gateway machine)
|
|
|
|
|
;; "Initiate an SSH connection gateway to MACHINE, and return the PID of the
|
|
|
|
|
;; running lsh gateway upon success, or #f on failure."
|
|
|
|
|
;; (catch 'system-error
|
|
|
|
|
;; (lambda ()
|
|
|
|
|
;; (let* ((port (open-pipe* OPEN_READ %lsh-command
|
|
|
|
|
;; "-l" (build-machine-user machine)
|
|
|
|
|
;; "-i" (build-machine-private-key machine)
|
|
|
|
|
;; ;; XXX: With lsh 2.1, passing '--write-pid'
|
|
|
|
|
;; ;; last causes the PID not to be printed.
|
2014-03-26 14:58:00 +01:00
|
|
|
|
;; "--write-pid" "--gateway" "--background"
|
2014-03-01 12:24:39 +01:00
|
|
|
|
;; (build-machine-name machine)))
|
|
|
|
|
;; (line (read-line port))
|
|
|
|
|
;; (status (close-pipe port)))
|
|
|
|
|
;; (if (zero? status)
|
|
|
|
|
;; (let ((pid (string->number line)))
|
|
|
|
|
;; (if (integer? pid)
|
|
|
|
|
;; pid
|
|
|
|
|
;; (begin
|
|
|
|
|
;; (warning (_ "'~a' did not write its PID on stdout: ~s~%")
|
|
|
|
|
;; %lsh-command line)
|
|
|
|
|
;; #f)))
|
|
|
|
|
;; (begin
|
|
|
|
|
;; (warning (_ "failed to initiate SSH connection to '~a':\
|
|
|
|
|
;; '~a' exited with ~a~%")
|
|
|
|
|
;; (build-machine-name machine)
|
|
|
|
|
;; %lsh-command
|
|
|
|
|
;; (status:exit-val status))
|
|
|
|
|
;; #f))))
|
|
|
|
|
;; (lambda args
|
|
|
|
|
;; (leave (_ "failed to execute '~a': ~a~%")
|
|
|
|
|
;; %lsh-command (strerror (system-error-errno args))))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
2014-03-19 23:12:06 +01:00
|
|
|
|
(define-syntax with-error-to-port
|
|
|
|
|
(syntax-rules ()
|
|
|
|
|
((_ port exp0 exp ...)
|
|
|
|
|
(let ((new port)
|
|
|
|
|
(old (current-error-port)))
|
|
|
|
|
(dynamic-wind
|
|
|
|
|
(lambda ()
|
|
|
|
|
(set-current-error-port new))
|
|
|
|
|
(lambda ()
|
|
|
|
|
exp0 exp ...)
|
|
|
|
|
(lambda ()
|
|
|
|
|
(set-current-error-port old)))))))
|
|
|
|
|
|
|
|
|
|
(define* (remote-pipe machine mode command
|
2014-04-03 23:41:16 +02:00
|
|
|
|
#:key (error-port (current-error-port)) (quote? #t))
|
|
|
|
|
"Run COMMAND (a string list) on MACHINE, assuming an lsh gateway has been
|
|
|
|
|
set up. When QUOTE? is true, perform shell-quotation of all the elements of
|
|
|
|
|
COMMAND."
|
|
|
|
|
(define (shell-quote str)
|
|
|
|
|
;; Sort-of shell-quote STR so it can be passed as an argument to the
|
|
|
|
|
;; shell.
|
|
|
|
|
(with-output-to-string
|
|
|
|
|
(lambda ()
|
|
|
|
|
(write str))))
|
|
|
|
|
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
2014-03-19 23:12:06 +01:00
|
|
|
|
;; Let the child inherit ERROR-PORT.
|
|
|
|
|
(with-error-to-port error-port
|
2014-03-26 14:58:00 +01:00
|
|
|
|
(apply open-pipe* mode %lshg-command
|
2014-03-19 23:12:06 +01:00
|
|
|
|
"-l" (build-machine-user machine)
|
|
|
|
|
"-p" (number->string (build-machine-port machine))
|
2014-03-01 12:15:47 +01:00
|
|
|
|
|
2014-03-19 23:12:06 +01:00
|
|
|
|
;; XXX: Remove '-i' when %LSHG-COMMAND really is lshg.
|
|
|
|
|
"-i" (build-machine-private-key machine)
|
2014-03-01 12:15:47 +01:00
|
|
|
|
|
2014-03-19 23:12:06 +01:00
|
|
|
|
(build-machine-name machine)
|
2014-04-03 23:41:16 +02:00
|
|
|
|
(if quote?
|
|
|
|
|
(map shell-quote command)
|
|
|
|
|
command))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(lambda args
|
|
|
|
|
(warning (_ "failed to execute '~a': ~a~%")
|
|
|
|
|
%lshg-command (strerror (system-error-errno args)))
|
|
|
|
|
#f)))
|
|
|
|
|
|
2014-03-09 18:08:21 +01:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Synchronization.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (lock-file file)
|
|
|
|
|
"Wait and acquire an exclusive lock on FILE. Return an open port."
|
|
|
|
|
(mkdir-p (dirname file))
|
|
|
|
|
(let ((port (open-file file "w0")))
|
|
|
|
|
(fcntl-flock port 'write-lock)
|
|
|
|
|
port))
|
|
|
|
|
|
|
|
|
|
(define (unlock-file lock)
|
|
|
|
|
"Unlock LOCK."
|
|
|
|
|
(fcntl-flock lock 'unlock)
|
|
|
|
|
(close-port lock)
|
|
|
|
|
#t)
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (with-file-lock file exp ...)
|
|
|
|
|
"Wait to acquire a lock on FILE and evaluate EXP in that context."
|
|
|
|
|
(let ((port (lock-file file)))
|
|
|
|
|
(dynamic-wind
|
|
|
|
|
(lambda ()
|
|
|
|
|
#t)
|
|
|
|
|
(lambda ()
|
|
|
|
|
exp ...)
|
|
|
|
|
(lambda ()
|
|
|
|
|
(unlock-file port)))))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (with-machine-lock machine hint exp ...)
|
|
|
|
|
"Wait to acquire MACHINE's exclusive lock for HINT, and evaluate EXP in that
|
|
|
|
|
context."
|
|
|
|
|
(with-file-lock (machine-lock-file machine hint)
|
|
|
|
|
exp ...))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define (machine-slot-file machine slot)
|
|
|
|
|
"Return the file name of MACHINE's file for SLOT."
|
|
|
|
|
;; For each machine we have a bunch of files representing each build slot.
|
|
|
|
|
;; When choosing a build machine, we attempt to get an exclusive lock on one
|
|
|
|
|
;; of these; if we fail, that means all the build slots are already taken.
|
|
|
|
|
;; Inspired by Nix's build-remote.pl.
|
|
|
|
|
(string-append (string-append %state-directory "/offload/"
|
|
|
|
|
(build-machine-name machine)
|
|
|
|
|
"/" (number->string slot))))
|
|
|
|
|
|
|
|
|
|
(define (acquire-build-slot machine)
|
|
|
|
|
"Attempt to acquire a build slot on MACHINE. Return the port representing
|
|
|
|
|
the slot, or #f if none is available.
|
|
|
|
|
|
|
|
|
|
This mechanism allows us to set a hard limit on the number of simultaneous
|
|
|
|
|
connections allowed to MACHINE."
|
|
|
|
|
(mkdir-p (dirname (machine-slot-file machine 0)))
|
|
|
|
|
(with-machine-lock machine 'slots
|
|
|
|
|
(any (lambda (slot)
|
|
|
|
|
(let ((port (open-file (machine-slot-file machine slot)
|
|
|
|
|
"w0")))
|
|
|
|
|
(catch 'flock-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(fcntl-flock port 'write-lock #:wait? #f)
|
|
|
|
|
;; Got it!
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"process ~a acquired build slot '~a'~%"
|
|
|
|
|
(getpid) (port-filename port))
|
|
|
|
|
port)
|
|
|
|
|
(lambda args
|
|
|
|
|
;; PORT is already locked by another process.
|
|
|
|
|
(close-port port)
|
|
|
|
|
#f))))
|
|
|
|
|
(iota (build-machine-parallel-builds machine)))))
|
|
|
|
|
|
|
|
|
|
(define (release-build-slot slot)
|
|
|
|
|
"Release SLOT, a build slot as returned as by 'acquire-build-slot'."
|
|
|
|
|
(close-port slot))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Offloading.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-03-19 23:12:06 +01:00
|
|
|
|
(define (build-log-port)
|
|
|
|
|
"Return the default port where build logs should be sent. The default is
|
|
|
|
|
file descriptor 4, which is open by the daemon before running the offload
|
|
|
|
|
hook."
|
|
|
|
|
(let ((port (fdopen 4 "w0")))
|
|
|
|
|
;; Make sure file descriptor 4 isn't closed when PORT is GC'd.
|
|
|
|
|
(set-port-revealed! port 1)
|
|
|
|
|
port))
|
|
|
|
|
|
2014-04-03 23:41:16 +02:00
|
|
|
|
(define %gc-root-file
|
|
|
|
|
;; File name of the temporary GC root we install.
|
|
|
|
|
(format #f "offload-~a-~a" (gethostname) (getpid)))
|
|
|
|
|
|
|
|
|
|
(define (register-gc-root file machine)
|
|
|
|
|
"Mark FILE, a store item, as a garbage collector root on MACHINE."
|
|
|
|
|
(define script
|
|
|
|
|
`(begin
|
|
|
|
|
(use-modules (guix config))
|
|
|
|
|
|
|
|
|
|
;; Note: we can't use 'add-indirect-root' because dangling links under
|
|
|
|
|
;; gcroots/auto are automatically deleted by the GC. This strategy
|
|
|
|
|
;; doesn't have this problem, but it requires write access to that
|
|
|
|
|
;; directory.
|
|
|
|
|
(let ((root-directory (string-append %state-directory
|
|
|
|
|
"/gcroots/tmp")))
|
|
|
|
|
(false-if-exception (mkdir root-directory))
|
|
|
|
|
(symlink ,file
|
|
|
|
|
(string-append root-directory "/" ,%gc-root-file)))))
|
|
|
|
|
|
|
|
|
|
(let ((pipe (remote-pipe machine OPEN_READ
|
|
|
|
|
`("guile" "-c" ,(object->string script)))))
|
|
|
|
|
(get-string-all pipe)
|
2014-04-08 10:04:13 +02:00
|
|
|
|
(let ((status (close-pipe pipe)))
|
|
|
|
|
(unless (zero? status)
|
|
|
|
|
;; Better be safe than sorry: if we ignore the error here, then FILE
|
|
|
|
|
;; may be GC'd just before we start using it.
|
|
|
|
|
(leave (_ "failed to register GC root for '~a' on '~a' (status: ~a)~%")
|
|
|
|
|
file machine status)))))
|
2014-04-03 23:41:16 +02:00
|
|
|
|
|
2014-04-08 13:48:30 +02:00
|
|
|
|
(define (remove-gc-roots machine)
|
|
|
|
|
"Remove from MACHINE the GC roots previously installed with
|
2014-04-03 23:41:16 +02:00
|
|
|
|
'register-gc-root'."
|
|
|
|
|
(define script
|
|
|
|
|
`(begin
|
2014-04-08 13:48:30 +02:00
|
|
|
|
(use-modules (guix config) (ice-9 ftw)
|
|
|
|
|
(srfi srfi-1) (srfi srfi-26))
|
2014-04-03 23:41:16 +02:00
|
|
|
|
|
|
|
|
|
(let ((root-directory (string-append %state-directory
|
|
|
|
|
"/gcroots/tmp")))
|
|
|
|
|
(false-if-exception
|
|
|
|
|
(delete-file
|
|
|
|
|
(string-append root-directory "/" ,%gc-root-file)))
|
|
|
|
|
|
2014-04-08 13:48:30 +02:00
|
|
|
|
;; These ones were created with 'guix build -r' (there can be more
|
|
|
|
|
;; than one in case of multiple-output derivations.)
|
|
|
|
|
(let ((roots (filter (cut string-prefix? ,%gc-root-file <>)
|
|
|
|
|
(scandir "."))))
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(false-if-exception (delete-file file)))
|
|
|
|
|
roots)))))
|
2014-04-03 23:41:16 +02:00
|
|
|
|
|
|
|
|
|
(let ((pipe (remote-pipe machine OPEN_READ
|
|
|
|
|
`("guile" "-c" ,(object->string script)))))
|
|
|
|
|
(get-string-all pipe)
|
|
|
|
|
(close-pipe pipe)))
|
|
|
|
|
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(define* (offload drv machine
|
|
|
|
|
#:key print-build-trace? (max-silent-time 3600)
|
2014-03-19 23:12:06 +01:00
|
|
|
|
build-timeout (log-port (build-log-port)))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
"Perform DRV on MACHINE, assuming DRV and its prerequisites are available
|
2014-01-27 21:32:59 +01:00
|
|
|
|
there, and write the build log to LOG-PORT. Return the exit status."
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(format (current-error-port) "offloading '~a' to '~a'...~%"
|
|
|
|
|
(derivation-file-name drv) (build-machine-name machine))
|
|
|
|
|
(format (current-error-port) "@ build-remote ~a ~a~%"
|
|
|
|
|
(derivation-file-name drv) (build-machine-name machine))
|
|
|
|
|
|
2014-04-03 23:41:16 +02:00
|
|
|
|
;; Normally DRV has already been protected from GC when it was transferred.
|
|
|
|
|
;; The '-r' flag below prevents the build result from being GC'd.
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(let ((pipe (remote-pipe machine OPEN_READ
|
|
|
|
|
`("guix" "build"
|
2014-04-03 23:41:16 +02:00
|
|
|
|
"-r" ,%gc-root-file
|
2014-01-23 23:48:34 +01:00
|
|
|
|
,(format #f "--max-silent-time=~a"
|
|
|
|
|
max-silent-time)
|
2014-03-09 23:13:53 +01:00
|
|
|
|
,@(if build-timeout
|
|
|
|
|
(list (format #f "--timeout=~a"
|
|
|
|
|
build-timeout))
|
|
|
|
|
'())
|
2014-03-19 23:12:06 +01:00
|
|
|
|
,(derivation-file-name drv))
|
|
|
|
|
|
|
|
|
|
;; Since 'guix build' writes the build log to its
|
|
|
|
|
;; stderr, everything will go directly to LOG-PORT.
|
|
|
|
|
#:error-port log-port)))
|
2014-01-27 21:32:59 +01:00
|
|
|
|
(let loop ((line (read-line pipe)))
|
|
|
|
|
(unless (eof-object? line)
|
|
|
|
|
(display line log-port)
|
|
|
|
|
(newline log-port)
|
|
|
|
|
(loop (read-line pipe))))
|
|
|
|
|
|
|
|
|
|
(close-pipe pipe)))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(define* (transfer-and-offload drv machine
|
|
|
|
|
#:key
|
|
|
|
|
(inputs '())
|
|
|
|
|
(outputs '())
|
|
|
|
|
(max-silent-time 3600)
|
2014-03-09 23:13:53 +01:00
|
|
|
|
build-timeout
|
2014-03-09 14:05:30 +01:00
|
|
|
|
print-build-trace?)
|
|
|
|
|
"Offload DRV to MACHINE. Prior to the actual offloading, transfer all of
|
|
|
|
|
INPUTS to MACHINE; if building DRV succeeds, retrieve all of OUTPUTS from
|
|
|
|
|
MACHINE."
|
2014-03-26 15:03:14 +01:00
|
|
|
|
;; Acquire MACHINE's upload or download lock to serialize file transfers in
|
|
|
|
|
;; a given direction to/from MACHINE in the presence of several 'offload'
|
|
|
|
|
;; hook instance.
|
|
|
|
|
(when (with-machine-lock machine 'upload
|
2014-04-03 23:41:16 +02:00
|
|
|
|
(register-gc-root (derivation-file-name drv) machine)
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(send-files (cons (derivation-file-name drv) inputs)
|
|
|
|
|
machine))
|
|
|
|
|
(let ((status (offload drv machine
|
|
|
|
|
#:print-build-trace? print-build-trace?
|
|
|
|
|
#:max-silent-time max-silent-time
|
|
|
|
|
#:build-timeout build-timeout)))
|
|
|
|
|
(if (zero? status)
|
|
|
|
|
(begin
|
|
|
|
|
;; Likewise (see above.)
|
2014-03-26 15:03:14 +01:00
|
|
|
|
(with-machine-lock machine 'download
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(retrieve-files outputs machine))
|
2014-04-08 13:48:30 +02:00
|
|
|
|
(remove-gc-roots machine)
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"done with offloaded '~a'~%"
|
|
|
|
|
(derivation-file-name drv)))
|
|
|
|
|
(begin
|
2014-04-08 13:48:30 +02:00
|
|
|
|
(remove-gc-roots machine)
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"derivation '~a' offloaded to '~a' failed \
|
|
|
|
|
with exit code ~a~%"
|
|
|
|
|
(derivation-file-name drv)
|
|
|
|
|
(build-machine-name machine)
|
|
|
|
|
(status:exit-val status))
|
2014-03-31 10:57:28 +02:00
|
|
|
|
|
|
|
|
|
;; Use exit code 100 for a permanent build failure. The daemon
|
|
|
|
|
;; interprets other non-zero codes as transient build failures.
|
|
|
|
|
(primitive-exit 100))))))
|
2014-03-09 14:05:30 +01:00
|
|
|
|
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(define (send-files files machine)
|
|
|
|
|
"Send the subset of FILES that's missing to MACHINE's store. Return #t on
|
|
|
|
|
success, #f otherwise."
|
|
|
|
|
(define (missing-files files)
|
|
|
|
|
;; Return the subset of FILES not already on MACHINE.
|
2014-03-26 16:22:41 +01:00
|
|
|
|
(let*-values (((files)
|
|
|
|
|
(format #f "~{~a~%~}" files))
|
|
|
|
|
((missing pids)
|
|
|
|
|
(filtered-port
|
|
|
|
|
(list (which %lshg-command)
|
|
|
|
|
"-l" (build-machine-user machine)
|
|
|
|
|
"-p" (number->string (build-machine-port machine))
|
|
|
|
|
"-i" (build-machine-private-key machine)
|
|
|
|
|
(build-machine-name machine)
|
|
|
|
|
"guix" "archive" "--missing")
|
2014-04-14 00:17:43 +02:00
|
|
|
|
(open-input-string files)))
|
|
|
|
|
((result)
|
|
|
|
|
(get-string-all missing)))
|
2014-03-26 16:22:41 +01:00
|
|
|
|
(for-each waitpid pids)
|
2014-04-14 00:17:43 +02:00
|
|
|
|
(string-tokenize result)))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
|
|
|
|
(with-store store
|
|
|
|
|
(guard (c ((nix-protocol-error? c)
|
|
|
|
|
(warning (_ "failed to export files for '~a': ~s~%")
|
|
|
|
|
(build-machine-name machine)
|
|
|
|
|
c)
|
|
|
|
|
#f))
|
|
|
|
|
|
|
|
|
|
;; Compute the subset of FILES missing on MACHINE, and send them in
|
|
|
|
|
;; topologically sorted order so that they can actually be imported.
|
2014-03-24 22:20:54 +01:00
|
|
|
|
(let* ((files (missing-files (topologically-sorted store files)))
|
|
|
|
|
(pipe (remote-pipe machine OPEN_WRITE
|
|
|
|
|
'("xz" "-dc" "|"
|
2014-04-03 23:41:16 +02:00
|
|
|
|
"guix" "archive" "--import")
|
|
|
|
|
#:quote? #f)))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(format #t (_ "sending ~a store files to '~a'...~%")
|
|
|
|
|
(length files) (build-machine-name machine))
|
2014-03-24 22:20:54 +01:00
|
|
|
|
(call-with-compressed-output-port 'xz pipe
|
|
|
|
|
(lambda (compressed)
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(export-paths store files compressed))
|
|
|
|
|
(lambda args
|
|
|
|
|
(warning (_ "failed while exporting files to '~a': ~a~%")
|
|
|
|
|
(build-machine-name machine)
|
|
|
|
|
(strerror (system-error-errno args)))))))
|
|
|
|
|
#t))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
|
|
|
|
(define (retrieve-files files machine)
|
|
|
|
|
"Retrieve FILES from MACHINE's store, and import them."
|
|
|
|
|
(define host
|
|
|
|
|
(build-machine-name machine))
|
|
|
|
|
|
|
|
|
|
(let ((pipe (remote-pipe machine OPEN_READ
|
2014-03-24 22:20:54 +01:00
|
|
|
|
`("guix" "archive" "--export" ,@files
|
2014-04-03 23:41:16 +02:00
|
|
|
|
"|" "xz" "-c")
|
|
|
|
|
#:quote? #f)))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(and pipe
|
|
|
|
|
(with-store store
|
|
|
|
|
(guard (c ((nix-protocol-error? c)
|
|
|
|
|
(warning (_ "failed to import files from '~a': ~s~%")
|
|
|
|
|
host c)
|
|
|
|
|
#f))
|
|
|
|
|
(format (current-error-port) "retrieving ~a files from '~a'...~%"
|
|
|
|
|
(length files) host)
|
|
|
|
|
|
|
|
|
|
;; We cannot use the 'import-paths' RPC here because we already
|
|
|
|
|
;; hold the locks for FILES.
|
2014-03-24 22:20:54 +01:00
|
|
|
|
(call-with-decompressed-port 'xz pipe
|
|
|
|
|
(lambda (decompressed)
|
|
|
|
|
(restore-file-set decompressed
|
|
|
|
|
#:log-port (current-error-port)
|
|
|
|
|
#:lock? #f)))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
2014-03-24 22:20:54 +01:00
|
|
|
|
#t)))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
2014-03-09 18:08:21 +01:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Scheduling.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-01-23 23:48:34 +01:00
|
|
|
|
(define (machine-matches? machine requirements)
|
|
|
|
|
"Return #t if MACHINE matches REQUIREMENTS."
|
|
|
|
|
(and (string=? (build-requirements-system requirements)
|
|
|
|
|
(build-machine-system machine))
|
|
|
|
|
(lset<= string=?
|
|
|
|
|
(build-requirements-features requirements)
|
|
|
|
|
(build-machine-features machine))))
|
|
|
|
|
|
|
|
|
|
(define (machine-faster? m1 m2)
|
|
|
|
|
"Return #t if M1 is faster than M2."
|
|
|
|
|
(> (build-machine-speed m1) (build-machine-speed m2)))
|
|
|
|
|
|
2014-03-01 01:31:18 +01:00
|
|
|
|
(define (machine-load machine)
|
|
|
|
|
"Return the load of MACHINE, divided by the number of parallel builds
|
|
|
|
|
allowed on MACHINE."
|
|
|
|
|
(let* ((pipe (remote-pipe machine OPEN_READ `("cat" "/proc/loadavg")))
|
|
|
|
|
(line (read-line pipe)))
|
|
|
|
|
(close-pipe pipe)
|
|
|
|
|
(if (eof-object? line)
|
|
|
|
|
1.
|
|
|
|
|
(match (string-tokenize line)
|
|
|
|
|
((one five fifteen . _)
|
|
|
|
|
(let* ((raw (string->number five))
|
|
|
|
|
(jobs (build-machine-parallel-builds machine))
|
|
|
|
|
(normalized (/ raw jobs)))
|
|
|
|
|
(format (current-error-port) "load on machine '~a' is ~s\
|
|
|
|
|
(normalized: ~s)~%"
|
|
|
|
|
(build-machine-name machine) raw normalized)
|
|
|
|
|
normalized))
|
|
|
|
|
(_
|
|
|
|
|
1.)))))
|
|
|
|
|
|
|
|
|
|
(define (machine-less-loaded? m1 m2)
|
|
|
|
|
"Return #t if the load on M1 is lower than that on M2."
|
|
|
|
|
(< (machine-load m1) (machine-load m2)))
|
|
|
|
|
|
|
|
|
|
(define (machine-less-loaded-or-faster? m1 m2)
|
|
|
|
|
"Return #t if M1 is either less loaded or faster than M2."
|
|
|
|
|
(or (machine-less-loaded? m1 m2)
|
|
|
|
|
(machine-faster? m1 m2)))
|
|
|
|
|
|
2014-03-08 11:29:52 +01:00
|
|
|
|
(define (machine-lock-file machine hint)
|
|
|
|
|
"Return the name of MACHINE's lock file for HINT."
|
2014-03-06 21:38:45 +01:00
|
|
|
|
(string-append %state-directory "/offload/"
|
2014-03-08 11:29:52 +01:00
|
|
|
|
(build-machine-name machine)
|
|
|
|
|
"." (symbol->string hint) ".lock"))
|
2014-03-06 21:38:45 +01:00
|
|
|
|
|
2014-03-08 12:15:38 +01:00
|
|
|
|
(define (machine-choice-lock-file)
|
|
|
|
|
"Return the name of the file used as a lock when choosing a build machine."
|
|
|
|
|
(string-append %state-directory "/offload/machine-choice.lock"))
|
|
|
|
|
|
|
|
|
|
|
2014-03-08 21:23:12 +01:00
|
|
|
|
(define %slots
|
|
|
|
|
;; List of acquired build slots (open ports).
|
|
|
|
|
'())
|
|
|
|
|
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(define (choose-build-machine machines)
|
|
|
|
|
"Return the best machine among MACHINES, or #f."
|
2014-03-08 12:15:38 +01:00
|
|
|
|
|
|
|
|
|
;; Proceed like this:
|
|
|
|
|
;; 1. Acquire the global machine-choice lock.
|
|
|
|
|
;; 2. For all MACHINES, attempt to acquire a build slot, and filter out
|
|
|
|
|
;; those machines for which we failed.
|
|
|
|
|
;; 3. Choose the best machine among those that are left.
|
|
|
|
|
;; 4. Release the previously-acquired build slots of the other machines.
|
|
|
|
|
;; 5. Release the global machine-choice lock.
|
|
|
|
|
|
|
|
|
|
(with-file-lock (machine-choice-lock-file)
|
|
|
|
|
(define machines+slots
|
2014-03-08 12:22:49 +01:00
|
|
|
|
(filter-map (lambda (machine)
|
|
|
|
|
(let ((slot (acquire-build-slot machine)))
|
|
|
|
|
(and slot (list machine slot))))
|
|
|
|
|
machines))
|
2014-03-08 12:15:38 +01:00
|
|
|
|
|
|
|
|
|
(define (undecorate pred)
|
2014-03-13 22:57:21 +01:00
|
|
|
|
(lambda (a b)
|
|
|
|
|
(match a
|
|
|
|
|
((machine1 slot1)
|
|
|
|
|
(match b
|
|
|
|
|
((machine2 slot2)
|
|
|
|
|
(if (pred machine1 machine2)
|
|
|
|
|
(list machine1 slot1)
|
|
|
|
|
(list machine2 slot2))))))))
|
2014-03-08 12:15:38 +01:00
|
|
|
|
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(let ((machines+slots (sort machines+slots
|
2014-03-08 12:15:38 +01:00
|
|
|
|
(undecorate machine-less-loaded-or-faster?))))
|
|
|
|
|
(match machines+slots
|
|
|
|
|
(((best slot) (others slots) ...)
|
|
|
|
|
;; Release slots from the uninteresting machines.
|
|
|
|
|
(for-each release-build-slot slots)
|
|
|
|
|
|
|
|
|
|
;; Return the best machine unless it's already overloaded.
|
|
|
|
|
(if (< (machine-load best) 2.)
|
2014-03-08 21:23:12 +01:00
|
|
|
|
(begin
|
|
|
|
|
;; Prevent SLOT from being GC'd.
|
|
|
|
|
(set! %slots (cons slot %slots))
|
|
|
|
|
best)
|
2014-03-08 12:15:38 +01:00
|
|
|
|
(begin
|
|
|
|
|
(release-build-slot slot)
|
|
|
|
|
#f)))
|
|
|
|
|
(() #f)))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
|
|
|
|
(define* (process-request wants-local? system drv features
|
|
|
|
|
#:key
|
|
|
|
|
print-build-trace? (max-silent-time 3600)
|
2014-03-09 23:13:53 +01:00
|
|
|
|
build-timeout)
|
2014-01-23 23:48:34 +01:00
|
|
|
|
"Process a request to build DRV."
|
2014-03-09 14:05:30 +01:00
|
|
|
|
(let* ((local? (and wants-local? (string=? system (%current-system))))
|
|
|
|
|
(reqs (build-requirements
|
|
|
|
|
(system system)
|
|
|
|
|
(features features)))
|
|
|
|
|
(candidates (filter (cut machine-matches? <> reqs)
|
|
|
|
|
(build-machines))))
|
|
|
|
|
(match candidates
|
|
|
|
|
(()
|
|
|
|
|
;; We'll never be able to match REQS.
|
|
|
|
|
(display "# decline\n"))
|
|
|
|
|
((_ ...)
|
|
|
|
|
(let ((machine (choose-build-machine candidates)))
|
|
|
|
|
(if machine
|
|
|
|
|
(begin
|
|
|
|
|
;; Offload DRV to MACHINE.
|
|
|
|
|
(display "# accept\n")
|
|
|
|
|
(let ((inputs (string-tokenize (read-line)))
|
|
|
|
|
(outputs (string-tokenize (read-line))))
|
|
|
|
|
(transfer-and-offload drv machine
|
|
|
|
|
#:inputs inputs
|
|
|
|
|
#:outputs outputs
|
|
|
|
|
#:max-silent-time max-silent-time
|
|
|
|
|
#:build-timeout build-timeout
|
|
|
|
|
#:print-build-trace? print-build-trace?)))
|
|
|
|
|
|
|
|
|
|
;; Not now, all the machines are busy.
|
|
|
|
|
(display "# postpone\n")))))))
|
2014-01-23 23:48:34 +01:00
|
|
|
|
|
|
|
|
|
(define-syntax-rule (with-nar-error-handling body ...)
|
|
|
|
|
"Execute BODY with any &nar-error suitably reported to the user."
|
|
|
|
|
(guard (c ((nar-error? c)
|
|
|
|
|
(let ((file (nar-error-file c)))
|
|
|
|
|
(if (condition-has-type? c &message)
|
|
|
|
|
(leave (_ "while importing file '~a': ~a~%")
|
|
|
|
|
file (gettext (condition-message c)))
|
|
|
|
|
(leave (_ "failed to import file '~a'~%")
|
|
|
|
|
file)))))
|
|
|
|
|
body ...))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Entry point.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (guix-offload . args)
|
|
|
|
|
(define request-line-rx
|
|
|
|
|
;; The request format. See 'tryBuildHook' method in build.cc.
|
|
|
|
|
(make-regexp "([01]) ([a-z0-9_-]+) (/[[:graph:]]+.drv) ([[:graph:]]*)"))
|
|
|
|
|
|
|
|
|
|
(define not-coma
|
|
|
|
|
(char-set-complement (char-set #\,)))
|
|
|
|
|
|
|
|
|
|
;; Make sure $HOME really corresponds to the current user. This is
|
|
|
|
|
;; necessary since lsh uses that to determine the location of the yarrow
|
|
|
|
|
;; seed file, and fails if it's owned by someone else.
|
|
|
|
|
(and=> (passwd:dir (getpw (getuid)))
|
|
|
|
|
(cut setenv "HOME" <>))
|
|
|
|
|
|
|
|
|
|
(match args
|
|
|
|
|
((system max-silent-time print-build-trace? build-timeout)
|
|
|
|
|
(let ((max-silent-time (string->number max-silent-time))
|
|
|
|
|
(build-timeout (string->number build-timeout))
|
|
|
|
|
(print-build-trace? (string=? print-build-trace? "1")))
|
|
|
|
|
(parameterize ((%current-system system))
|
|
|
|
|
(let loop ((line (read-line)))
|
|
|
|
|
(unless (eof-object? line)
|
|
|
|
|
(cond ((regexp-exec request-line-rx line)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(with-nar-error-handling
|
|
|
|
|
(process-request (equal? (match:substring match 1) "1")
|
|
|
|
|
(match:substring match 2) ; system
|
|
|
|
|
(call-with-input-file
|
|
|
|
|
(match:substring match 3)
|
|
|
|
|
read-derivation)
|
|
|
|
|
(string-tokenize
|
|
|
|
|
(match:substring match 4) not-coma)
|
|
|
|
|
#:print-build-trace? print-build-trace?
|
|
|
|
|
#:max-silent-time max-silent-time
|
|
|
|
|
#:build-timeout build-timeout))))
|
|
|
|
|
(else
|
|
|
|
|
(leave (_ "invalid request line: ~s~%") line)))
|
|
|
|
|
(loop (read-line)))))))
|
|
|
|
|
(("--version")
|
|
|
|
|
(show-version-and-exit "guix offload"))
|
|
|
|
|
(("--help")
|
|
|
|
|
(format #t (_ "Usage: guix offload SYSTEM PRINT-BUILD-TRACE
|
|
|
|
|
Process build offload requests written on the standard input, possibly
|
|
|
|
|
offloading builds to the machines listed in '~a'.~%")
|
|
|
|
|
%machine-file)
|
|
|
|
|
(display (_ "
|
|
|
|
|
This tool is meant to be used internally by 'guix-daemon'.\n"))
|
|
|
|
|
(show-bug-report-information))
|
|
|
|
|
(x
|
|
|
|
|
(leave (_ "invalid arguments: ~{~s ~}~%") x))))
|
|
|
|
|
|
2014-03-06 21:38:45 +01:00
|
|
|
|
;;; Local Variables:
|
2014-03-08 11:29:52 +01:00
|
|
|
|
;;; eval: (put 'with-machine-lock 'scheme-indent-function 2)
|
2014-03-08 12:07:57 +01:00
|
|
|
|
;;; eval: (put 'with-file-lock 'scheme-indent-function 1)
|
2014-03-19 23:12:06 +01:00
|
|
|
|
;;; eval: (put 'with-error-to-port 'scheme-indent-function 1)
|
2014-03-06 21:38:45 +01:00
|
|
|
|
;;; End:
|
|
|
|
|
|
2014-01-23 23:48:34 +01:00
|
|
|
|
;;; offload.scm ends here
|