2013-01-05 16:08:07 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-01-06 22:02:40 +01:00
|
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
2015-02-19 01:33:10 +01:00
|
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2017-08-28 15:46:10 +02:00
|
|
|
|
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
2012-11-12 23:10:26 +01:00
|
|
|
|
;;;
|
2013-01-05 16:08:07 +01:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-12 23:10:26 +01:00
|
|
|
|
;;;
|
2013-01-05 16:08:07 +01:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-11-12 23:10:26 +01:00
|
|
|
|
;;; 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.
|
|
|
|
|
;;;
|
2013-01-05 16:08:07 +01:00
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-11-12 23:10:26 +01:00
|
|
|
|
;;; 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
|
2013-01-05 16:08:07 +01:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
|
|
|
|
(define-module (guix build download)
|
|
|
|
|
#:use-module (web uri)
|
2015-11-12 22:37:32 +01:00
|
|
|
|
#:use-module (web http)
|
2015-05-06 10:31:11 +02:00
|
|
|
|
#:use-module ((web client) #:hide (open-socket-for-uri))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
#:use-module (web response)
|
2016-06-28 15:36:34 +02:00
|
|
|
|
#:use-module (guix base64)
|
2012-11-12 23:10:26 +01:00
|
|
|
|
#:use-module (guix ftp-client)
|
|
|
|
|
#:use-module (guix build utils)
|
Add (guix progress).
Among other things, this removes (guix utils), (guix ui), (guix config),
etc. from the closure of (guix build download), as was the case since
798648515b77507c242752457b4dc17c155bad6e.
* guix/utils.scm (<progress-reporter>, call-with-progress-reporter):
Move to...
* guix/progress.scm: ... here. New file.
* Makefile.am (MODULES): Add it.
* guix/build/download.scm (current-terminal-columns)
(nearest-exact-integer, duration->seconds, seconds->string)
(byte-count->string, progress-bar, string-pad-middle)
(rate-limited, progress-reporter/file, dump-port*)
(time-monotonic): Move to progress.scm.
* guix/scripts/download.scm: Adjust accordingly.
* guix/scripts/substitute.scm: Likewise.
2017-10-16 23:16:39 +02:00
|
|
|
|
#:use-module (guix progress)
|
2012-11-12 23:10:26 +01:00
|
|
|
|
#:use-module (rnrs io ports)
|
2016-06-28 15:36:34 +02:00
|
|
|
|
#:use-module (rnrs bytevectors)
|
2012-11-12 23:20:06 +01:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2012-11-12 23:10:26 +01:00
|
|
|
|
#:use-module (srfi srfi-11)
|
2015-02-27 15:00:38 +01:00
|
|
|
|
#:use-module (srfi srfi-19)
|
2012-11-12 23:20:06 +01:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2016-11-07 23:07:08 +01:00
|
|
|
|
#:autoload (ice-9 ftw) (scandir)
|
2012-11-12 23:10:26 +01:00
|
|
|
|
#:use-module (ice-9 match)
|
2013-01-06 18:24:53 +01:00
|
|
|
|
#:use-module (ice-9 format)
|
2015-05-06 10:31:11 +02:00
|
|
|
|
#:export (open-socket-for-uri
|
|
|
|
|
open-connection-for-uri
|
2017-10-16 22:31:50 +02:00
|
|
|
|
http-fetch
|
2017-03-13 21:51:27 +01:00
|
|
|
|
%x509-certificate-directory
|
2016-03-17 21:34:33 +01:00
|
|
|
|
close-connection
|
2015-02-19 01:33:10 +01:00
|
|
|
|
resolve-uri-reference
|
2014-12-29 20:51:12 +01:00
|
|
|
|
maybe-expand-mirrors
|
2014-12-28 17:55:16 +01:00
|
|
|
|
url-fetch
|
2015-09-15 07:31:11 +02:00
|
|
|
|
byte-count->string
|
|
|
|
|
uri-abbreviation
|
2016-04-20 23:01:41 +02:00
|
|
|
|
nar-uri-abbreviation
|
2015-09-15 07:31:11 +02:00
|
|
|
|
store-path-abbreviation))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; Fetch data such as tarballs over HTTP or FTP (builder-side code).
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2015-02-27 14:57:54 +01:00
|
|
|
|
(define %http-receive-buffer-size
|
|
|
|
|
;; Size of the HTTP receive buffer.
|
|
|
|
|
65536)
|
|
|
|
|
|
2015-10-01 11:28:58 +02:00
|
|
|
|
(define* (ellipsis #:optional (port (current-output-port)))
|
|
|
|
|
"Make a rough guess at whether Unicode's HORIZONTAL ELLIPSIS can be written
|
|
|
|
|
in PORT's encoding, and return either that or ASCII dots."
|
|
|
|
|
(if (equal? (port-encoding port) "UTF-8")
|
|
|
|
|
"…"
|
|
|
|
|
"..."))
|
|
|
|
|
|
2015-09-15 07:31:11 +02:00
|
|
|
|
(define* (store-path-abbreviation store-path #:optional (prefix-length 6))
|
2015-09-24 21:54:37 +02:00
|
|
|
|
"If STORE-PATH is the file name of a store entry, return an abbreviation of
|
|
|
|
|
STORE-PATH for display, showing PREFIX-LENGTH characters of the hash.
|
|
|
|
|
Otherwise return STORE-PATH."
|
|
|
|
|
(if (string-prefix? (%store-directory) store-path)
|
|
|
|
|
(let ((base (basename store-path)))
|
|
|
|
|
(string-append (string-take base prefix-length)
|
2015-10-01 11:28:58 +02:00
|
|
|
|
(ellipsis)
|
2015-09-24 21:54:37 +02:00
|
|
|
|
(string-drop base 32)))
|
|
|
|
|
store-path))
|
2015-09-15 07:31:11 +02:00
|
|
|
|
|
2013-01-11 15:41:58 +01:00
|
|
|
|
(define* (uri-abbreviation uri #:optional (max-length 42))
|
|
|
|
|
"If URI's string representation is larger than MAX-LENGTH, return an
|
|
|
|
|
abbreviation of URI showing the scheme, host, and basename of the file."
|
|
|
|
|
(define uri-as-string
|
|
|
|
|
(uri->string uri))
|
|
|
|
|
|
|
|
|
|
(define (elide-path)
|
2016-04-20 22:52:35 +02:00
|
|
|
|
(let* ((path (uri-path uri))
|
|
|
|
|
(base (basename path))
|
|
|
|
|
(prefix (string-append (symbol->string (uri-scheme uri)) "://"
|
|
|
|
|
|
|
|
|
|
;; `file' URIs have no host part.
|
|
|
|
|
(or (uri-host uri) "")
|
|
|
|
|
|
|
|
|
|
(string-append "/" (ellipsis) "/"))))
|
|
|
|
|
(if (> (+ (string-length prefix) (string-length base)) max-length)
|
|
|
|
|
(string-append prefix (ellipsis)
|
|
|
|
|
(string-drop base (quotient (string-length base) 2)))
|
|
|
|
|
(string-append prefix base))))
|
2013-01-11 15:41:58 +01:00
|
|
|
|
|
|
|
|
|
(if (> (string-length uri-as-string) max-length)
|
|
|
|
|
(let ((short (elide-path)))
|
|
|
|
|
(if (< (string-length short) (string-length uri-as-string))
|
|
|
|
|
short
|
|
|
|
|
uri-as-string))
|
|
|
|
|
uri-as-string))
|
|
|
|
|
|
2016-04-20 23:01:41 +02:00
|
|
|
|
(define (nar-uri-abbreviation uri)
|
|
|
|
|
"Abbreviate URI, which is assumed to be the URI of a nar as served by Hydra
|
|
|
|
|
and 'guix publish', something like
|
|
|
|
|
\"http://example.org/nar/1ldrllwbna0aw5z8kpci4fsvbd2w8cw4-texlive-bin-2015\"."
|
|
|
|
|
(let* ((uri (if (string? uri) (string->uri uri) uri))
|
|
|
|
|
(path (basename (uri-path uri))))
|
|
|
|
|
(if (and (> (string-length path) 33)
|
|
|
|
|
(char=? (string-ref path 32) #\-))
|
|
|
|
|
(string-drop path 33)
|
|
|
|
|
path)))
|
|
|
|
|
|
2018-09-12 15:08:38 +02:00
|
|
|
|
(define* (ftp-fetch uri file #:key timeout print-build-trace?)
|
2016-05-27 10:33:23 +02:00
|
|
|
|
"Fetch data from URI and write it to FILE. Return FILE on success. Bail
|
|
|
|
|
out if the connection could not be established in less than TIMEOUT seconds."
|
2017-03-28 13:27:56 +02:00
|
|
|
|
(let* ((conn (match (and=> (uri-userinfo uri)
|
|
|
|
|
(cut string-split <> #\:))
|
2017-03-21 12:15:14 +01:00
|
|
|
|
(((? string? user))
|
|
|
|
|
(ftp-open (uri-host uri) #:timeout timeout
|
|
|
|
|
#:username user))
|
|
|
|
|
(((? string? user) (? string? pass))
|
|
|
|
|
(ftp-open (uri-host uri) #:timeout timeout
|
|
|
|
|
#:username user
|
|
|
|
|
#:password pass))
|
|
|
|
|
(_ (ftp-open (uri-host uri) #:timeout timeout))))
|
2013-01-06 18:24:53 +01:00
|
|
|
|
(size (false-if-exception (ftp-size conn (uri-path uri))))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
(in (ftp-retr conn (basename (uri-path uri))
|
2017-11-14 09:51:50 +01:00
|
|
|
|
(dirname (uri-path uri))
|
|
|
|
|
#:timeout timeout)))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
(call-with-output-file file
|
|
|
|
|
(lambda (out)
|
2017-09-16 22:10:18 +02:00
|
|
|
|
(dump-port* in out
|
|
|
|
|
#:buffer-size %http-receive-buffer-size
|
2018-09-12 15:08:38 +02:00
|
|
|
|
#:reporter
|
|
|
|
|
(if print-build-trace?
|
|
|
|
|
(progress-reporter/trace
|
|
|
|
|
file (uri->string uri) size)
|
|
|
|
|
(progress-reporter/file
|
|
|
|
|
(uri-abbreviation uri) size)))))
|
|
|
|
|
|
|
|
|
|
(ftp-close conn)
|
|
|
|
|
(unless print-build-trace?
|
|
|
|
|
(newline))
|
|
|
|
|
file))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
2013-01-20 22:28:38 +01:00
|
|
|
|
;; Autoload GnuTLS so that this module can be used even when GnuTLS is
|
|
|
|
|
;; not available. At compile time, this yields "possibly unbound
|
|
|
|
|
;; variable" warnings, but these are OK: we know that the variables will
|
|
|
|
|
;; be bound if we need them, because (guix download) adds GnuTLS as an
|
|
|
|
|
;; input in that case.
|
|
|
|
|
|
|
|
|
|
;; XXX: Use this hack instead of #:autoload to avoid compilation errors.
|
|
|
|
|
;; See <http://bugs.gnu.org/12202>.
|
|
|
|
|
(module-autoload! (current-module)
|
2019-01-26 23:14:12 +01:00
|
|
|
|
'(gnutls)
|
|
|
|
|
'(gnutls-version make-session connection-end/client))
|
2013-01-20 22:28:38 +01:00
|
|
|
|
|
2016-03-17 21:34:33 +01:00
|
|
|
|
(define %tls-ports
|
|
|
|
|
;; Mapping of session record ports to the underlying file port.
|
|
|
|
|
(make-weak-key-hash-table))
|
|
|
|
|
|
|
|
|
|
(define (register-tls-record-port record-port port)
|
|
|
|
|
"Hold a weak reference from RECORD-PORT to PORT, where RECORD-PORT is a TLS
|
|
|
|
|
session record port using PORT as its underlying communication port."
|
|
|
|
|
(hashq-set! %tls-ports record-port port))
|
2013-05-10 01:14:25 +02:00
|
|
|
|
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(define %x509-certificate-directory
|
|
|
|
|
;; The directory where X.509 authority PEM certificates are stored.
|
|
|
|
|
(make-parameter (or (getenv "GUIX_TLS_CERTIFICATE_DIRECTORY")
|
|
|
|
|
(getenv "SSL_CERT_DIR")))) ;like OpenSSL
|
|
|
|
|
|
2017-05-30 10:11:13 +02:00
|
|
|
|
(define (set-certificate-credentials-x509-trust-file!* cred file format)
|
|
|
|
|
"Like 'set-certificate-credentials-x509-trust-file!', but without the file
|
|
|
|
|
name decoding bug described at
|
|
|
|
|
<https://debbugs.gnu.org/cgi/bugreport.cgi?bug=26948#17>."
|
|
|
|
|
(let ((data (call-with-input-file file get-bytevector-all)))
|
|
|
|
|
(set-certificate-credentials-x509-trust-data! cred data format)))
|
|
|
|
|
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(define (make-credendials-with-ca-trust-files directory)
|
|
|
|
|
"Return certificate credentials with X.509 authority certificates read from
|
|
|
|
|
DIRECTORY. Those authority certificates are checked when
|
|
|
|
|
'peer-certificate-status' is later called."
|
|
|
|
|
(let ((cred (make-certificate-credentials))
|
|
|
|
|
(files (or (scandir directory
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(string-suffix? ".pem" file)))
|
|
|
|
|
'())))
|
|
|
|
|
(for-each (lambda (file)
|
2016-12-16 18:00:01 +01:00
|
|
|
|
(let ((file (string-append directory "/" file)))
|
|
|
|
|
;; Protect against dangling symlinks.
|
|
|
|
|
(when (file-exists? file)
|
2017-05-30 10:11:13 +02:00
|
|
|
|
(set-certificate-credentials-x509-trust-file!*
|
2016-12-16 18:00:01 +01:00
|
|
|
|
cred file
|
|
|
|
|
x509-certificate-format/pem))))
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(or files '()))
|
|
|
|
|
cred))
|
|
|
|
|
|
|
|
|
|
(define (peer-certificate session)
|
|
|
|
|
"Return the certificate of the remote peer in SESSION."
|
|
|
|
|
(match (session-peer-certificate-chain session)
|
|
|
|
|
((first _ ...)
|
|
|
|
|
(import-x509-certificate first x509-certificate-format/der))))
|
|
|
|
|
|
|
|
|
|
(define (assert-valid-server-certificate session server)
|
|
|
|
|
"Return #t if the certificate of the remote peer for SESSION is a valid
|
|
|
|
|
certificate for SERVER, where SERVER is the expected host name of peer."
|
|
|
|
|
(define cert
|
|
|
|
|
(peer-certificate session))
|
|
|
|
|
|
|
|
|
|
;; First check whether the server's certificate matches SERVER.
|
|
|
|
|
(unless (x509-certificate-matches-hostname? cert server)
|
|
|
|
|
(throw 'tls-certificate-error 'host-mismatch cert server))
|
|
|
|
|
|
|
|
|
|
;; Second check its validity and reachability from the set of authority
|
|
|
|
|
;; certificates loaded via 'set-certificate-credentials-x509-trust-file!'.
|
|
|
|
|
(match (peer-certificate-status session)
|
|
|
|
|
(() ;certificate is valid
|
|
|
|
|
#t)
|
|
|
|
|
((statuses ...)
|
|
|
|
|
(throw 'tls-certificate-error 'invalid-certificate cert server
|
|
|
|
|
statuses))))
|
|
|
|
|
|
|
|
|
|
(define (print-tls-certificate-error port key args default-printer)
|
|
|
|
|
"Print the TLS certificate error represented by ARGS in an intelligible
|
|
|
|
|
way."
|
|
|
|
|
(match args
|
|
|
|
|
(('host-mismatch cert server)
|
|
|
|
|
(format port
|
|
|
|
|
"X.509 server certificate for '~a' does not match: ~a~%"
|
|
|
|
|
server (x509-certificate-dn cert)))
|
|
|
|
|
(('invalid-certificate cert server statuses)
|
|
|
|
|
(format port
|
|
|
|
|
"X.509 certificate of '~a' could not be verified:~%~{ ~a~%~}"
|
|
|
|
|
server
|
|
|
|
|
(map certificate-status->string statuses)))))
|
|
|
|
|
|
|
|
|
|
(set-exception-printer! 'tls-certificate-error
|
|
|
|
|
print-tls-certificate-error)
|
|
|
|
|
|
|
|
|
|
(define* (tls-wrap port server #:key (verify-certificate? #t))
|
2014-09-22 21:06:39 +02:00
|
|
|
|
"Return PORT wrapped in a TLS connection to SERVER. SERVER must be a DNS
|
|
|
|
|
host name without trailing dot."
|
2013-01-20 22:28:38 +01:00
|
|
|
|
(define (log level str)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"gnutls: [~a|~a] ~a" (getpid) level str))
|
|
|
|
|
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(let ((session (make-session connection-end/client))
|
|
|
|
|
(ca-certs (%x509-certificate-directory)))
|
2014-09-22 21:06:39 +02:00
|
|
|
|
|
|
|
|
|
;; Some servers such as 'cloud.github.com' require the client to support
|
|
|
|
|
;; the 'SERVER NAME' extension. However, 'set-session-server-name!' is
|
|
|
|
|
;; not available in older GnuTLS releases. See
|
|
|
|
|
;; <http://bugs.gnu.org/18526> for details.
|
|
|
|
|
(if (module-defined? (resolve-interface '(gnutls))
|
|
|
|
|
'set-session-server-name!)
|
|
|
|
|
(set-session-server-name! session server-name-type/dns server)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"warning: TLS 'SERVER NAME' extension not supported~%"))
|
|
|
|
|
|
2013-01-20 22:28:38 +01:00
|
|
|
|
(set-session-transport-fd! session (fileno port))
|
|
|
|
|
(set-session-default-priority! session)
|
2016-04-20 13:12:57 +02:00
|
|
|
|
|
|
|
|
|
;; The "%COMPAT" bit allows us to work around firewall issues (info
|
|
|
|
|
;; "(gnutls) Priority Strings"); see <http://bugs.gnu.org/23311>.
|
|
|
|
|
;; Explicitly disable SSLv3, which is insecure:
|
|
|
|
|
;; <https://tools.ietf.org/html/rfc7568>.
|
2019-01-26 23:14:12 +01:00
|
|
|
|
;;
|
|
|
|
|
;; FIXME: Since we currently fail to handle TLS 1.3 (with GnuTLS 3.6.5),
|
|
|
|
|
;; remove it; see <https://bugs.gnu.org/34102>.
|
|
|
|
|
(set-session-priorities! session
|
|
|
|
|
(string-append
|
|
|
|
|
"NORMAL:%COMPAT:-VERS-SSL3.0"
|
|
|
|
|
|
|
|
|
|
;; The "VERS-TLS1.3" priority string is not
|
|
|
|
|
;; supported by GnuTLS 3.5.
|
|
|
|
|
(if (string-prefix? "3.5." (gnutls-version))
|
|
|
|
|
""
|
|
|
|
|
":-VERS-TLS1.3")))
|
2016-04-20 13:12:57 +02:00
|
|
|
|
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(set-session-credentials! session
|
|
|
|
|
(if (and verify-certificate? ca-certs)
|
|
|
|
|
(make-credendials-with-ca-trust-files
|
|
|
|
|
ca-certs)
|
|
|
|
|
(make-certificate-credentials)))
|
2013-01-20 22:28:38 +01:00
|
|
|
|
|
|
|
|
|
;; Uncomment the following lines in case of debugging emergency.
|
|
|
|
|
;;(set-log-level! 10)
|
|
|
|
|
;;(set-log-procedure! log)
|
|
|
|
|
|
2017-05-02 21:43:18 +02:00
|
|
|
|
(catch 'gnutls-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(handshake session))
|
|
|
|
|
(lambda (key err proc . rest)
|
|
|
|
|
(cond ((eq? err error/warning-alert-received)
|
|
|
|
|
;; Like Wget, do no stop upon non-fatal alerts such as
|
|
|
|
|
;; 'alert-description/unrecognized-name'.
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"warning: TLS warning alert received: ~a~%"
|
|
|
|
|
(alert-description->string (alert-get session)))
|
|
|
|
|
(handshake session))
|
|
|
|
|
(else
|
|
|
|
|
;; XXX: We'd use 'gnutls_error_is_fatal' but (gnutls) doesn't
|
|
|
|
|
;; provide a binding for this.
|
|
|
|
|
(apply throw key err proc rest)))))
|
2016-11-07 23:07:08 +01:00
|
|
|
|
|
|
|
|
|
;; Verify the server's certificate if needed.
|
|
|
|
|
(when verify-certificate?
|
|
|
|
|
(catch 'tls-certificate-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(assert-valid-server-certificate session server))
|
|
|
|
|
(lambda args
|
|
|
|
|
(close-port port)
|
|
|
|
|
(apply throw args))))
|
|
|
|
|
|
2013-05-10 01:14:25 +02:00
|
|
|
|
(let ((record (session-record-port session)))
|
|
|
|
|
;; Since we use `fileno' above, the file descriptor behind PORT would be
|
|
|
|
|
;; closed when PORT is GC'd. If we used `port->fdes', it would instead
|
|
|
|
|
;; never be closed. So we use `fileno', but keep a weak reference to
|
|
|
|
|
;; PORT, so the file descriptor gets closed when RECORD is GC'd.
|
2016-03-17 21:34:33 +01:00
|
|
|
|
(register-tls-record-port record port)
|
2017-11-15 09:59:29 +01:00
|
|
|
|
|
|
|
|
|
;; Write HTTP requests line by line rather than byte by byte:
|
2017-12-04 17:33:31 +01:00
|
|
|
|
;; <https://bugs.gnu.org/22966>. This is possible with Guile >= 2.2.
|
2019-01-06 22:02:40 +01:00
|
|
|
|
(setvbuf record 'line)
|
2017-11-15 09:59:29 +01:00
|
|
|
|
|
2013-05-10 01:14:25 +02:00
|
|
|
|
record)))
|
2013-01-20 22:28:38 +01:00
|
|
|
|
|
2015-11-12 22:37:32 +01:00
|
|
|
|
(define (ensure-uri uri-or-string) ;XXX: copied from (web http)
|
|
|
|
|
(cond
|
|
|
|
|
((string? uri-or-string) (string->uri uri-or-string))
|
|
|
|
|
((uri? uri-or-string) uri-or-string)
|
|
|
|
|
(else (error "Invalid URI" uri-or-string))))
|
|
|
|
|
|
|
|
|
|
(define* (open-socket-for-uri uri-or-string #:key timeout)
|
|
|
|
|
"Return an open input/output port for a connection to URI. When TIMEOUT is
|
|
|
|
|
not #f, it must be a (possibly inexact) number denoting the maximum duration
|
|
|
|
|
in seconds to wait for the connection to complete; passed TIMEOUT, an
|
|
|
|
|
ETIMEDOUT error is raised."
|
|
|
|
|
;; Includes a fix for <http://bugs.gnu.org/15368> which affects Guile's
|
2015-11-12 23:15:18 +01:00
|
|
|
|
;; 'open-socket-for-uri' up to 2.0.11 included, uses 'connect*' instead
|
|
|
|
|
;; of 'connect', and uses AI_ADDRCONFIG.
|
2015-11-12 22:37:32 +01:00
|
|
|
|
|
|
|
|
|
(define http-proxy (current-http-proxy))
|
|
|
|
|
(define uri (ensure-uri (or http-proxy uri-or-string)))
|
|
|
|
|
(define addresses
|
|
|
|
|
(let ((port (uri-port uri)))
|
|
|
|
|
(delete-duplicates
|
|
|
|
|
(getaddrinfo (uri-host uri)
|
|
|
|
|
(cond (port => number->string)
|
|
|
|
|
(else (symbol->string (uri-scheme uri))))
|
2015-11-12 23:15:18 +01:00
|
|
|
|
(if (number? port)
|
|
|
|
|
(logior AI_ADDRCONFIG AI_NUMERICSERV)
|
|
|
|
|
AI_ADDRCONFIG))
|
2015-11-12 22:37:32 +01:00
|
|
|
|
(lambda (ai1 ai2)
|
|
|
|
|
(equal? (addrinfo:addr ai1) (addrinfo:addr ai2))))))
|
|
|
|
|
|
|
|
|
|
(let loop ((addresses addresses))
|
|
|
|
|
(let* ((ai (car addresses))
|
|
|
|
|
(s (with-fluids ((%default-port-encoding #f))
|
|
|
|
|
;; Restrict ourselves to TCP.
|
|
|
|
|
(socket (addrinfo:fam ai) SOCK_STREAM IPPROTO_IP))))
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(connect* s (addrinfo:addr ai) timeout)
|
|
|
|
|
|
|
|
|
|
;; Buffer input and output on this port.
|
2019-01-07 10:57:18 +01:00
|
|
|
|
(setvbuf s 'block)
|
2015-11-12 22:37:32 +01:00
|
|
|
|
;; If we're using a proxy, make a note of that.
|
|
|
|
|
(when http-proxy (set-http-proxy-port?! s #t))
|
|
|
|
|
s)
|
|
|
|
|
(lambda args
|
|
|
|
|
;; Connection failed, so try one of the other addresses.
|
|
|
|
|
(close s)
|
|
|
|
|
(if (null? (cdr addresses))
|
|
|
|
|
(apply throw args)
|
|
|
|
|
(loop (cdr addresses))))))))
|
|
|
|
|
|
2019-05-10 15:27:40 +02:00
|
|
|
|
(define (setup-http-tunnel port uri)
|
|
|
|
|
"Establish over PORT an HTTP tunnel to the destination server of URI."
|
|
|
|
|
(define target
|
|
|
|
|
(string-append (uri-host uri) ":"
|
|
|
|
|
(number->string
|
|
|
|
|
(or (uri-port uri)
|
|
|
|
|
(match (uri-scheme uri)
|
|
|
|
|
('http 80)
|
|
|
|
|
('https 443))))))
|
|
|
|
|
(format port "CONNECT ~a HTTP/1.1\r\n" target)
|
|
|
|
|
(format port "Host: ~a\r\n\r\n" target)
|
|
|
|
|
(force-output port)
|
|
|
|
|
(read-response port))
|
|
|
|
|
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(define* (open-connection-for-uri uri
|
|
|
|
|
#:key
|
|
|
|
|
timeout
|
|
|
|
|
(verify-certificate? #t))
|
2016-03-17 21:34:33 +01:00
|
|
|
|
"Like 'open-socket-for-uri', but also handle HTTPS connections. The
|
2016-11-07 23:07:08 +01:00
|
|
|
|
resulting port must be closed with 'close-connection'. When
|
|
|
|
|
VERIFY-CERTIFICATE? is true, verify HTTPS server certificates."
|
2017-03-17 23:41:37 +01:00
|
|
|
|
;; Note: Guile 2.2.0's (web client) has a same-named export that's actually
|
|
|
|
|
;; undefined. See Guile commit 011669af3b428e5626f7bbf66b11d57d9768c047.
|
|
|
|
|
|
2015-04-30 22:13:04 +02:00
|
|
|
|
(define https?
|
|
|
|
|
(eq? 'https (uri-scheme uri)))
|
|
|
|
|
|
2019-05-10 15:27:40 +02:00
|
|
|
|
(define https-proxy (let ((proxy (getenv "https_proxy")))
|
|
|
|
|
(and (not (equal? proxy ""))
|
|
|
|
|
proxy)))
|
|
|
|
|
|
2015-04-30 22:13:04 +02:00
|
|
|
|
(let-syntax ((with-https-proxy
|
|
|
|
|
(syntax-rules ()
|
|
|
|
|
((_ exp)
|
|
|
|
|
;; For HTTPS URIs, honor 'https_proxy', not 'http_proxy'.
|
|
|
|
|
(let ((thunk (lambda () exp)))
|
|
|
|
|
(if (and https?
|
|
|
|
|
(module-variable
|
|
|
|
|
(resolve-interface '(web client))
|
|
|
|
|
'current-http-proxy))
|
2019-05-10 15:27:40 +02:00
|
|
|
|
(parameterize ((current-http-proxy https-proxy))
|
2015-04-30 22:13:04 +02:00
|
|
|
|
(thunk))
|
|
|
|
|
(thunk)))))))
|
|
|
|
|
(with-https-proxy
|
2015-11-12 22:37:32 +01:00
|
|
|
|
(let ((s (open-socket-for-uri uri #:timeout timeout)))
|
2015-05-06 09:50:15 +02:00
|
|
|
|
;; Buffer input and output on this port.
|
2019-01-07 10:57:18 +01:00
|
|
|
|
(setvbuf s 'block %http-receive-buffer-size)
|
2015-05-06 09:50:15 +02:00
|
|
|
|
|
2019-05-10 15:27:40 +02:00
|
|
|
|
(when (and https? https-proxy)
|
|
|
|
|
(setup-http-tunnel s uri))
|
|
|
|
|
|
2015-04-30 22:13:04 +02:00
|
|
|
|
(if https?
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(tls-wrap s (uri-host uri)
|
|
|
|
|
#:verify-certificate? verify-certificate?)
|
2015-04-30 22:13:04 +02:00
|
|
|
|
s)))))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
2016-03-17 21:34:33 +01:00
|
|
|
|
(define (close-connection port)
|
|
|
|
|
"Like 'close-port', but (1) idempotent, and (2) also closes the underlying
|
|
|
|
|
port if PORT is a TLS session record port."
|
|
|
|
|
;; FIXME: This is a partial workaround for <http://bugs.gnu.org/20145>,
|
|
|
|
|
;; because 'http-fetch' & co. may return a chunked input port whose 'close'
|
|
|
|
|
;; method calls 'close-port', not 'close-connection'.
|
|
|
|
|
(unless (port-closed? port)
|
|
|
|
|
(close-port port))
|
|
|
|
|
(and=> (hashq-ref %tls-ports port)
|
|
|
|
|
close-connection))
|
|
|
|
|
|
2012-11-12 23:10:26 +01:00
|
|
|
|
;; XXX: This is an awful hack to make sure the (set-port-encoding! p
|
|
|
|
|
;; "ISO-8859-1") call in `read-response' passes, even during bootstrap
|
|
|
|
|
;; where iconv is not available.
|
|
|
|
|
(module-define! (resolve-module '(web response))
|
|
|
|
|
'set-port-encoding!
|
|
|
|
|
(lambda (p e) #f))
|
|
|
|
|
|
2016-04-29 22:12:24 +02:00
|
|
|
|
;; XXX: Work around <http://bugs.gnu.org/23421>, fixed in Guile commit
|
|
|
|
|
;; 16050431f29d56f80c4a8253506fc851b8441840. Guile's date validation
|
|
|
|
|
;; procedure rejects dates in which the hour is not padded with a zero but
|
|
|
|
|
;; with whitespace.
|
|
|
|
|
(begin
|
|
|
|
|
(define-syntax string-match?
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(syntax-case x ()
|
|
|
|
|
((_ str pat) (string? (syntax->datum #'pat))
|
|
|
|
|
(let ((p (syntax->datum #'pat)))
|
|
|
|
|
#`(let ((s str))
|
|
|
|
|
(and
|
|
|
|
|
(= (string-length s) #,(string-length p))
|
|
|
|
|
#,@(let lp ((i 0) (tests '()))
|
|
|
|
|
(if (< i (string-length p))
|
|
|
|
|
(let ((c (string-ref p i)))
|
|
|
|
|
(lp (1+ i)
|
|
|
|
|
(case c
|
|
|
|
|
((#\.) ; Whatever.
|
|
|
|
|
tests)
|
|
|
|
|
((#\d) ; Digit.
|
|
|
|
|
(cons #`(char-numeric? (string-ref s #,i))
|
|
|
|
|
tests))
|
|
|
|
|
((#\a) ; Alphabetic.
|
|
|
|
|
(cons #`(char-alphabetic? (string-ref s #,i))
|
|
|
|
|
tests))
|
|
|
|
|
(else ; Literal.
|
|
|
|
|
(cons #`(eqv? (string-ref s #,i) #,c)
|
|
|
|
|
tests)))))
|
|
|
|
|
tests)))))))))
|
|
|
|
|
|
|
|
|
|
(define (parse-rfc-822-date str space zone-offset)
|
|
|
|
|
(let ((parse-non-negative-integer (@@ (web http) parse-non-negative-integer))
|
|
|
|
|
(parse-month (@@ (web http) parse-month))
|
|
|
|
|
(bad-header (@@ (web http) bad-header)))
|
|
|
|
|
;; We could verify the day of the week but we don't.
|
|
|
|
|
(cond ((string-match? (substring str 0 space) "aaa, dd aaa dddd dd:dd:dd")
|
|
|
|
|
(let ((date (parse-non-negative-integer str 5 7))
|
|
|
|
|
(month (parse-month str 8 11))
|
|
|
|
|
(year (parse-non-negative-integer str 12 16))
|
|
|
|
|
(hour (parse-non-negative-integer str 17 19))
|
|
|
|
|
(minute (parse-non-negative-integer str 20 22))
|
|
|
|
|
(second (parse-non-negative-integer str 23 25)))
|
|
|
|
|
(make-date 0 second minute hour date month year zone-offset)))
|
|
|
|
|
((string-match? (substring str 0 space) "aaa, d aaa dddd dd:dd:dd")
|
|
|
|
|
(let ((date (parse-non-negative-integer str 5 6))
|
|
|
|
|
(month (parse-month str 7 10))
|
|
|
|
|
(year (parse-non-negative-integer str 11 15))
|
|
|
|
|
(hour (parse-non-negative-integer str 16 18))
|
|
|
|
|
(minute (parse-non-negative-integer str 19 21))
|
|
|
|
|
(second (parse-non-negative-integer str 22 24)))
|
|
|
|
|
(make-date 0 second minute hour date month year zone-offset)))
|
|
|
|
|
|
|
|
|
|
;; The next two clauses match dates that have a space instead of
|
|
|
|
|
;; a leading zero for hours, like " 8:49:37".
|
|
|
|
|
((string-match? (substring str 0 space) "aaa, dd aaa dddd d:dd:dd")
|
|
|
|
|
(let ((date (parse-non-negative-integer str 5 7))
|
|
|
|
|
(month (parse-month str 8 11))
|
|
|
|
|
(year (parse-non-negative-integer str 12 16))
|
|
|
|
|
(hour (parse-non-negative-integer str 18 19))
|
|
|
|
|
(minute (parse-non-negative-integer str 20 22))
|
|
|
|
|
(second (parse-non-negative-integer str 23 25)))
|
|
|
|
|
(make-date 0 second minute hour date month year zone-offset)))
|
|
|
|
|
((string-match? (substring str 0 space) "aaa, d aaa dddd d:dd:dd")
|
|
|
|
|
(let ((date (parse-non-negative-integer str 5 6))
|
|
|
|
|
(month (parse-month str 7 10))
|
|
|
|
|
(year (parse-non-negative-integer str 11 15))
|
|
|
|
|
(hour (parse-non-negative-integer str 17 18))
|
|
|
|
|
(minute (parse-non-negative-integer str 19 21))
|
|
|
|
|
(second (parse-non-negative-integer str 22 24)))
|
|
|
|
|
(make-date 0 second minute hour date month year zone-offset)))
|
|
|
|
|
|
|
|
|
|
(else
|
|
|
|
|
(bad-header 'date str) ; prevent tail call
|
|
|
|
|
#f))))
|
|
|
|
|
(module-set! (resolve-module '(web http))
|
|
|
|
|
'parse-rfc-822-date parse-rfc-822-date))
|
|
|
|
|
|
2017-11-10 23:07:49 +01:00
|
|
|
|
;; XXX: Work around broken proxy handling on Guile 2.2 <= 2.2.2, fixed in
|
2017-11-11 15:17:52 +01:00
|
|
|
|
;; Guile commits 7d0d9e2c25c1e872cfc7d14ab5139915f1813d56 and
|
|
|
|
|
;; 6ad28ae3bc6a6d9e95ab7d70510d12c97673a143. See bug report at
|
2017-11-10 23:07:49 +01:00
|
|
|
|
;; <https://lists.gnu.org/archive/html/guix-devel/2017-11/msg00070.html>.
|
|
|
|
|
(cond-expand
|
|
|
|
|
(guile-2.2
|
|
|
|
|
(when (<= (string->number (micro-version)) 2)
|
|
|
|
|
(let ()
|
|
|
|
|
(define put-symbol (@@ (web http) put-symbol))
|
|
|
|
|
(define put-non-negative-integer
|
|
|
|
|
(@@ (web http) put-non-negative-integer))
|
|
|
|
|
(define write-http-version
|
|
|
|
|
(@@ (web http) write-http-version))
|
|
|
|
|
|
|
|
|
|
(define (write-request-line method uri version port)
|
|
|
|
|
"Write the first line of an HTTP request to PORT."
|
|
|
|
|
(put-symbol port method)
|
|
|
|
|
(put-char port #\space)
|
|
|
|
|
(when (http-proxy-port? port)
|
|
|
|
|
(let ((scheme (uri-scheme uri))
|
|
|
|
|
(host (uri-host uri))
|
|
|
|
|
(host-port (uri-port uri)))
|
|
|
|
|
(when (and scheme host)
|
|
|
|
|
(put-symbol port scheme)
|
|
|
|
|
(put-string port "://")
|
|
|
|
|
(cond
|
|
|
|
|
((string-index host #\:) ;<---- The fix is here!
|
2017-11-11 15:17:52 +01:00
|
|
|
|
(put-char port #\[) ;<---- And here!
|
|
|
|
|
(put-string port host)
|
|
|
|
|
(put-char port #\]))
|
2017-11-10 23:07:49 +01:00
|
|
|
|
(else
|
|
|
|
|
(put-string port host)))
|
|
|
|
|
(unless ((@@ (web uri) default-port?) scheme host-port)
|
|
|
|
|
(put-char port #\:)
|
|
|
|
|
(put-non-negative-integer port host-port)))))
|
|
|
|
|
(let ((path (uri-path uri))
|
|
|
|
|
(query (uri-query uri)))
|
|
|
|
|
(if (string-null? path)
|
|
|
|
|
(put-string port "/")
|
|
|
|
|
(put-string port path))
|
|
|
|
|
(when query
|
|
|
|
|
(put-string port "?")
|
|
|
|
|
(put-string port query)))
|
|
|
|
|
(put-char port #\space)
|
|
|
|
|
(write-http-version version port)
|
|
|
|
|
(put-string port "\r\n"))
|
|
|
|
|
|
|
|
|
|
(module-set! (resolve-module '(web http)) 'write-request-line
|
|
|
|
|
write-request-line))))
|
|
|
|
|
(else #t))
|
|
|
|
|
|
2015-02-19 01:33:10 +01:00
|
|
|
|
(define (resolve-uri-reference ref base)
|
|
|
|
|
"Resolve the URI reference REF, interpreted relative to the BASE URI, into a
|
|
|
|
|
target URI, according to the algorithm specified in RFC 3986 section 5.2.2.
|
|
|
|
|
Return the resulting target URI."
|
|
|
|
|
|
|
|
|
|
(define (merge-paths base-path rel-path)
|
|
|
|
|
(let* ((base-components (string-split base-path #\/))
|
|
|
|
|
(base-directory-components (match base-components
|
|
|
|
|
((components ... last) components)
|
|
|
|
|
(() '())))
|
|
|
|
|
(base-directory (string-join base-directory-components "/")))
|
|
|
|
|
(string-append base-directory "/" rel-path)))
|
|
|
|
|
|
|
|
|
|
(define (remove-dot-segments path)
|
|
|
|
|
(let loop ((in
|
|
|
|
|
;; Drop leading "." and ".." components from a relative path.
|
|
|
|
|
;; (absolute paths will start with a "" component)
|
|
|
|
|
(drop-while (match-lambda
|
|
|
|
|
((or "." "..") #t)
|
|
|
|
|
(_ #f))
|
|
|
|
|
(string-split path #\/)))
|
|
|
|
|
(out '()))
|
|
|
|
|
(match in
|
|
|
|
|
(("." . rest)
|
|
|
|
|
(loop rest out))
|
|
|
|
|
((".." . rest)
|
|
|
|
|
(match out
|
|
|
|
|
((or () (""))
|
|
|
|
|
(error "remove-dot-segments: too many '..' components" path))
|
|
|
|
|
(_
|
|
|
|
|
(loop rest (cdr out)))))
|
|
|
|
|
((component . rest)
|
|
|
|
|
(loop rest (cons component out)))
|
|
|
|
|
(()
|
|
|
|
|
(string-join (reverse out) "/")))))
|
|
|
|
|
|
|
|
|
|
(cond ((or (uri-scheme ref)
|
|
|
|
|
(uri-host ref))
|
|
|
|
|
(build-uri (or (uri-scheme ref)
|
|
|
|
|
(uri-scheme base))
|
|
|
|
|
#:userinfo (uri-userinfo ref)
|
|
|
|
|
#:host (uri-host ref)
|
|
|
|
|
#:port (uri-port ref)
|
|
|
|
|
#:path (remove-dot-segments (uri-path ref))
|
|
|
|
|
#:query (uri-query ref)
|
|
|
|
|
#:fragment (uri-fragment ref)))
|
|
|
|
|
((string-null? (uri-path ref))
|
|
|
|
|
(build-uri (uri-scheme base)
|
|
|
|
|
#:userinfo (uri-userinfo base)
|
|
|
|
|
#:host (uri-host base)
|
|
|
|
|
#:port (uri-port base)
|
|
|
|
|
#:path (remove-dot-segments (uri-path base))
|
|
|
|
|
#:query (or (uri-query ref)
|
|
|
|
|
(uri-query base))
|
|
|
|
|
#:fragment (uri-fragment ref)))
|
|
|
|
|
(else
|
|
|
|
|
(build-uri (uri-scheme base)
|
|
|
|
|
#:userinfo (uri-userinfo base)
|
|
|
|
|
#:host (uri-host base)
|
|
|
|
|
#:port (uri-port base)
|
|
|
|
|
#:path (remove-dot-segments
|
|
|
|
|
(if (string-prefix? "/" (uri-path ref))
|
|
|
|
|
(uri-path ref)
|
|
|
|
|
(merge-paths (uri-path base)
|
|
|
|
|
(uri-path ref))))
|
|
|
|
|
#:query (uri-query ref)
|
|
|
|
|
#:fragment (uri-fragment ref)))))
|
|
|
|
|
|
2017-10-16 22:31:50 +02:00
|
|
|
|
(define* (http-fetch uri #:key timeout (verify-certificate? #t))
|
|
|
|
|
"Return an input port containing the data at URI, and the expected number of
|
|
|
|
|
bytes available or #f. When TIMEOUT is true, bail out if the connection could
|
|
|
|
|
not be established in less than TIMEOUT seconds. When VERIFY-CERTIFICATE? is
|
|
|
|
|
true, verify HTTPS certificates; otherwise simply ignore them."
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
2014-02-10 00:03:34 +01:00
|
|
|
|
(define headers
|
2016-06-28 15:36:34 +02:00
|
|
|
|
`(;; Some web sites, such as http://dist.schmorp.de, would block you if
|
2014-10-19 12:07:26 +02:00
|
|
|
|
;; there's no 'User-Agent' header, presumably on the assumption that
|
|
|
|
|
;; you're a spammer. So work around that.
|
|
|
|
|
(User-Agent . "GNU Guile")
|
|
|
|
|
|
|
|
|
|
;; Some servers, such as https://alioth.debian.org, return "406 Not
|
|
|
|
|
;; Acceptable" when not explicitly told that everything is accepted.
|
2016-06-28 15:36:34 +02:00
|
|
|
|
(Accept . "*/*")
|
|
|
|
|
|
|
|
|
|
;; Basic authentication, if needed.
|
|
|
|
|
,@(match (uri-userinfo uri)
|
|
|
|
|
((? string? str)
|
|
|
|
|
`((Authorization . ,(string-append "Basic "
|
|
|
|
|
(base64-encode
|
|
|
|
|
(string->utf8 str))))))
|
|
|
|
|
(_ '()))))
|
2014-02-10 00:03:34 +01:00
|
|
|
|
|
2012-11-12 23:10:26 +01:00
|
|
|
|
(let*-values (((connection)
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(open-connection-for-uri uri
|
|
|
|
|
#:timeout timeout
|
|
|
|
|
#:verify-certificate?
|
|
|
|
|
verify-certificate?))
|
2017-10-16 22:21:02 +02:00
|
|
|
|
((resp port)
|
2017-03-17 23:07:01 +01:00
|
|
|
|
(http-get uri #:port connection #:decode-body? #f
|
|
|
|
|
#:streaming? #t
|
|
|
|
|
#:headers headers))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
((code)
|
2017-10-16 22:31:50 +02:00
|
|
|
|
(response-code resp)))
|
2012-11-12 23:09:32 +01:00
|
|
|
|
(case code
|
|
|
|
|
((200) ; OK
|
2017-10-16 22:31:50 +02:00
|
|
|
|
(values port (response-content-length resp)))
|
2013-01-25 21:36:26 +01:00
|
|
|
|
((301 ; moved permanently
|
2016-04-12 10:14:59 +02:00
|
|
|
|
302 ; found (redirection)
|
2017-08-28 15:46:10 +02:00
|
|
|
|
303 ; see other
|
|
|
|
|
307 ; temporary redirection
|
|
|
|
|
308) ; permanent redirection
|
2015-02-19 01:33:10 +01:00
|
|
|
|
(let ((uri (resolve-uri-reference (response-location resp) uri)))
|
2012-11-12 23:09:32 +01:00
|
|
|
|
(format #t "following redirection to `~a'...~%"
|
|
|
|
|
(uri->string uri))
|
|
|
|
|
(close connection)
|
2017-10-16 22:31:50 +02:00
|
|
|
|
(http-fetch uri
|
2016-11-07 23:07:08 +01:00
|
|
|
|
#:timeout timeout
|
|
|
|
|
#:verify-certificate? verify-certificate?)))
|
2012-11-12 23:09:32 +01:00
|
|
|
|
(else
|
|
|
|
|
(error "download failed" (uri->string uri)
|
|
|
|
|
code (response-reason-phrase resp))))))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (false-if-exception* body ...)
|
|
|
|
|
"Like `false-if-exception', but print the exception on the error port."
|
|
|
|
|
(catch #t
|
|
|
|
|
(lambda ()
|
|
|
|
|
body ...)
|
|
|
|
|
(lambda (key . args)
|
|
|
|
|
#f)
|
|
|
|
|
(lambda (key . args)
|
|
|
|
|
(print-exception (current-error-port) #f key args))))
|
|
|
|
|
|
2014-12-29 20:51:12 +01:00
|
|
|
|
(define (uri-vicinity dir file)
|
|
|
|
|
"Concatenate DIR, slash, and FILE, keeping only one slash in between.
|
|
|
|
|
This is required by some HTTP servers."
|
|
|
|
|
(string-append (string-trim-right dir #\/) "/"
|
|
|
|
|
(string-trim file #\/)))
|
|
|
|
|
|
|
|
|
|
(define (maybe-expand-mirrors uri mirrors)
|
|
|
|
|
"If URI uses the 'mirror' scheme, expand it according to the MIRRORS alist.
|
|
|
|
|
Return a list of URIs."
|
|
|
|
|
(case (uri-scheme uri)
|
|
|
|
|
((mirror)
|
|
|
|
|
(let ((kind (string->symbol (uri-host uri)))
|
|
|
|
|
(path (uri-path uri)))
|
|
|
|
|
(match (assoc-ref mirrors kind)
|
|
|
|
|
((mirrors ..1)
|
|
|
|
|
(map (compose string->uri (cut uri-vicinity <> path))
|
|
|
|
|
mirrors))
|
|
|
|
|
(_
|
|
|
|
|
(error "unsupported URL mirror kind" kind uri)))))
|
|
|
|
|
(else
|
|
|
|
|
(list uri))))
|
|
|
|
|
|
2016-05-14 17:37:47 +02:00
|
|
|
|
(define* (url-fetch url file
|
|
|
|
|
#:key
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(timeout 10) (verify-certificate? #t)
|
2016-05-14 17:37:47 +02:00
|
|
|
|
(mirrors '()) (content-addressed-mirrors '())
|
2018-09-12 15:08:38 +02:00
|
|
|
|
(hashes '())
|
|
|
|
|
print-build-trace?)
|
2012-11-12 23:10:26 +01:00
|
|
|
|
"Fetch FILE from URL; URL may be either a single string, or a list of
|
|
|
|
|
string denoting alternate URLs for FILE. Return #f on failure, and FILE
|
2016-05-14 17:37:47 +02:00
|
|
|
|
on success.
|
|
|
|
|
|
|
|
|
|
When MIRRORS is defined, it must be an alist of mirrors; it is used to resolve
|
|
|
|
|
'mirror://' URIs.
|
|
|
|
|
|
|
|
|
|
HASHES must be a list of algorithm/hash pairs, where each algorithm is a
|
|
|
|
|
symbol such as 'sha256 and each hash is a bytevector.
|
|
|
|
|
CONTENT-ADDRESSED-MIRRORS must be a list of procedures that, given a hash
|
|
|
|
|
algorithm and a hash, return a URL where the specified data can be retrieved
|
2016-11-07 23:07:08 +01:00
|
|
|
|
or #f.
|
|
|
|
|
|
|
|
|
|
When VERIFY-CERTIFICATE? is true, validate HTTPS server certificates;
|
|
|
|
|
otherwise simply ignore them."
|
2012-11-12 23:10:26 +01:00
|
|
|
|
(define uri
|
2014-12-29 20:51:12 +01:00
|
|
|
|
(append-map (cut maybe-expand-mirrors <> mirrors)
|
2012-11-12 23:20:06 +01:00
|
|
|
|
(match url
|
|
|
|
|
((_ ...) (map string->uri url))
|
|
|
|
|
(_ (list (string->uri url))))))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
|
|
|
|
(define (fetch uri file)
|
2015-09-17 13:22:01 +02:00
|
|
|
|
(format #t "~%Starting download of ~a~%From ~a...~%"
|
2012-11-12 23:10:26 +01:00
|
|
|
|
file (uri->string uri))
|
|
|
|
|
(case (uri-scheme uri)
|
2013-01-20 22:28:38 +01:00
|
|
|
|
((http https)
|
2017-10-16 22:31:50 +02:00
|
|
|
|
(false-if-exception*
|
|
|
|
|
(let-values (((port size)
|
|
|
|
|
(http-fetch uri
|
|
|
|
|
#:verify-certificate? verify-certificate?
|
|
|
|
|
#:timeout timeout)))
|
|
|
|
|
(call-with-output-file file
|
|
|
|
|
(lambda (output)
|
|
|
|
|
(dump-port* port output
|
|
|
|
|
#:buffer-size %http-receive-buffer-size
|
2018-09-12 15:08:38 +02:00
|
|
|
|
#:reporter (if print-build-trace?
|
|
|
|
|
(progress-reporter/trace
|
|
|
|
|
file (uri->string uri) size)
|
|
|
|
|
(progress-reporter/file
|
|
|
|
|
(uri-abbreviation uri) size)))
|
2017-10-16 22:31:50 +02:00
|
|
|
|
(newline)))
|
2018-01-27 18:22:11 +01:00
|
|
|
|
file)))
|
2013-01-20 22:28:38 +01:00
|
|
|
|
((ftp)
|
2016-11-07 23:07:08 +01:00
|
|
|
|
(false-if-exception* (ftp-fetch uri file
|
2018-09-12 15:08:38 +02:00
|
|
|
|
#:timeout timeout
|
|
|
|
|
#:print-build-trace?
|
|
|
|
|
print-build-trace?)))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
(else
|
|
|
|
|
(format #t "skipping URI with unsupported scheme: ~s~%"
|
|
|
|
|
uri)
|
|
|
|
|
#f)))
|
|
|
|
|
|
2016-05-27 10:29:10 +02:00
|
|
|
|
(define content-addressed-uris
|
2016-05-14 17:37:47 +02:00
|
|
|
|
(append-map (lambda (make-url)
|
|
|
|
|
(filter-map (match-lambda
|
|
|
|
|
((hash-algo . hash)
|
2016-07-31 18:25:18 +02:00
|
|
|
|
(let ((file (strip-store-file-name file)))
|
|
|
|
|
(string->uri (make-url file hash-algo hash)))))
|
2016-05-14 17:37:47 +02:00
|
|
|
|
hashes))
|
|
|
|
|
content-addressed-mirrors))
|
|
|
|
|
|
2019-01-07 10:57:18 +01:00
|
|
|
|
;; Make this unbuffered so 'progress-report/file' works as expected. 'line
|
2017-09-16 22:10:18 +02:00
|
|
|
|
;; means '\n', not '\r', so it's not appropriate here.
|
2019-01-07 10:57:18 +01:00
|
|
|
|
(setvbuf (current-output-port) 'none)
|
2014-04-16 12:25:25 +02:00
|
|
|
|
|
2019-01-07 10:57:18 +01:00
|
|
|
|
(setvbuf (current-error-port) 'line)
|
2012-11-12 23:10:26 +01:00
|
|
|
|
|
2016-05-27 10:29:10 +02:00
|
|
|
|
(let try ((uri (append uri content-addressed-uris)))
|
2012-11-12 23:10:26 +01:00
|
|
|
|
(match uri
|
|
|
|
|
((uri tail ...)
|
|
|
|
|
(or (fetch uri file)
|
|
|
|
|
(try tail)))
|
|
|
|
|
(()
|
|
|
|
|
(format (current-error-port) "failed to download ~s from ~s~%"
|
|
|
|
|
file url)
|
|
|
|
|
#f))))
|
|
|
|
|
|
|
|
|
|
;;; download.scm ends here
|