diff options
author | Reepca Russelstein <reepca@russelstein.xyz> | 2025-09-01 19:51:18 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-10-12 22:22:01 +0200 |
commit | b39f914b3ef779ab50b2af5e4eee0d0f93e9b7f4 (patch) | |
tree | f699f7f9985488c47f5816d8a7f16d6f58f47908 | |
parent | 4f5dd898c9b4ab8eeba2ec49e35bdcff36e5cc35 (diff) |
scripts: perform-download: explicitly disallow local file downloads.
In the case of the rootless daemon, perform-download runs as the daemon user.
There are files - such as /etc/guix/signing-key.sec - that guix-daemon can
read but that it is essential that ordinary users cannot.
Currently url-fetch can't access raw filenames, and it doesn't include a case
for "file://" urls. 'git-fetch-with-fallback' can fetch from "file://" urls,
but it requires that the specified url is a valid git repository.
To be on the safe side, and to insulate against any changes to what url-fetch
and git support, explicitly disallow raw filenames and "file://" urls.
* guix/scripts/perform-download.scm (assert-non-local-urls): new procedure.
(perform-download, perform-git-download): use it.
Change-Id: Ibf2a91e696246eccb89c2423fcbcabb2131d3be5
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | guix/scripts/perform-download.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/guix/scripts/perform-download.scm b/guix/scripts/perform-download.scm index f74aa83f0d..86ac68284a 100644 --- a/guix/scripts/perform-download.scm +++ b/guix/scripts/perform-download.scm @@ -28,6 +28,7 @@ #:autoload (guix config) (%git) #:use-module (ice-9 match) #:use-module (ice-9 sandbox) + #:use-module (web uri) #:export (guix-perform-download ;; exported so that eval-in-sandbox can find this syntax-noop)) @@ -106,6 +107,19 @@ result of canonicalization." (call-with-port (open file (logior O_NOFOLLOW O_RDONLY)) proc)) +(define (assert-non-local-urls url) + "Exit if URL (or any element of URL if it is a list) is either not a valid +URL or is a URL for a local file." + (for-each (lambda (url) + (let ((scheme (and=> (string->uri url) uri-scheme))) + (unless scheme + (leave (G_ "URL ~S can't be decoded~%") url)) + (when (eq? scheme 'file) + (leave (G_ "URL ~S is for a local file~%") url)))) + (if (list? url) + url + (list url)))) + (define* (perform-download drv output #:key print-build-trace?) "Perform the download described by DRV, a fixed-output derivation, to @@ -132,6 +146,10 @@ Note: OUTPUT may differ from the 'out' value of DRV, notably for 'bmCheck' or (drv-output (assoc-ref (derivation-outputs drv) "out")) (algo (derivation-output-hash-algo drv-output)) (hash (derivation-output-hash drv-output))) + ;; Disallow access to local files, e.g. "/tmp/foo", "file:///tmp/foo", + ;; etc, since in the case of the rootless daemon we can access sensitive + ;; files like /etc/guix/signing-key.sec. + (assert-non-local-urls url) ;; We're invoked by the daemon, which gives us write access to OUTPUT. (when (parameterize ((%download-methods (and download-methods @@ -191,6 +209,10 @@ Note: OUTPUT may differ from the 'out' value of DRV, notably for 'bmCheck' or (drv-output (assoc-ref (derivation-outputs drv) "out")) (algo (derivation-output-hash-algo drv-output)) (hash (derivation-output-hash drv-output))) + ;; Disallow access to local files, e.g. "/tmp/foo", "file:///tmp/foo", + ;; etc, since in the case of the rootless daemon we can access sensitive + ;; files like /etc/guix/signing-key.sec. + (assert-non-local-urls url) ;; Commands such as 'git submodule' expect Coreutils and sed (among ;; others) to be in $PATH. The 'git' package in Guix should address it ;; with wrappers but packages on other distros such as Debian may rely |