2020-06-01 11:48:11 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2019, 2020 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 git-authenticate)
|
|
|
|
|
#:use-module (git)
|
2020-07-05 10:47:32 -04:00
|
|
|
|
#:autoload (gcrypt hash) (sha256)
|
2020-06-01 11:48:11 -04:00
|
|
|
|
#:use-module (guix base16)
|
2020-07-05 10:47:32 -04:00
|
|
|
|
#:autoload (guix base64) (base64-encode)
|
|
|
|
|
#:use-module ((guix git)
|
|
|
|
|
#:select (commit-difference false-if-git-not-found))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
#:use-module (guix i18n)
|
2020-07-25 12:26:18 -04:00
|
|
|
|
#:use-module ((guix diagnostics) #:select (formatted-message))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
#:use-module (guix openpgp)
|
|
|
|
|
#:use-module ((guix utils)
|
|
|
|
|
#:select (cache-directory with-atomic-file-output))
|
|
|
|
|
#:use-module ((guix build utils)
|
|
|
|
|
#:select (mkdir-p))
|
2020-07-05 10:47:32 -04:00
|
|
|
|
#:use-module (guix progress)
|
2020-06-01 11:48:11 -04:00
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
|
|
|
|
#:use-module (rnrs bytevectors)
|
|
|
|
|
#:use-module (rnrs io ports)
|
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:autoload (ice-9 pretty-print) (pretty-print)
|
|
|
|
|
#:export (read-authorizations
|
|
|
|
|
commit-signing-key
|
|
|
|
|
commit-authorized-keys
|
|
|
|
|
authenticate-commit
|
|
|
|
|
authenticate-commits
|
|
|
|
|
load-keyring-from-reference
|
|
|
|
|
previously-authenticated-commits
|
2020-06-01 16:53:06 -04:00
|
|
|
|
cache-authenticated-commit
|
|
|
|
|
|
2020-07-05 10:47:32 -04:00
|
|
|
|
repository-cache-key
|
|
|
|
|
authenticate-repository
|
|
|
|
|
|
2020-06-01 16:53:06 -04:00
|
|
|
|
git-authentication-error?
|
|
|
|
|
git-authentication-error-commit
|
|
|
|
|
unsigned-commit-error?
|
|
|
|
|
unauthorized-commit-error?
|
|
|
|
|
unauthorized-commit-error-signing-key
|
|
|
|
|
signature-verification-error?
|
|
|
|
|
signature-verification-error-keyring
|
|
|
|
|
signature-verification-error-signature
|
|
|
|
|
missing-key-error?
|
|
|
|
|
missing-key-error-signature))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This module provides tools to authenticate a range of Git commits. A
|
|
|
|
|
;;; commit is considered "authentic" if and only if it is signed by an
|
|
|
|
|
;;; authorized party. Parties authorized to sign a commit are listed in the
|
|
|
|
|
;;; '.guix-authorizations' file of the parent commit.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2020-06-01 16:53:06 -04:00
|
|
|
|
(define-condition-type &git-authentication-error &error
|
|
|
|
|
git-authentication-error?
|
|
|
|
|
(commit git-authentication-error-commit))
|
|
|
|
|
|
|
|
|
|
(define-condition-type &unsigned-commit-error &git-authentication-error
|
|
|
|
|
unsigned-commit-error?)
|
|
|
|
|
|
|
|
|
|
(define-condition-type &unauthorized-commit-error &git-authentication-error
|
|
|
|
|
unauthorized-commit-error?
|
|
|
|
|
(signing-key unauthorized-commit-error-signing-key))
|
|
|
|
|
|
|
|
|
|
(define-condition-type &signature-verification-error &git-authentication-error
|
|
|
|
|
signature-verification-error?
|
|
|
|
|
(signature signature-verification-error-signature)
|
|
|
|
|
(keyring signature-verification-error-keyring))
|
|
|
|
|
|
|
|
|
|
(define-condition-type &missing-key-error &git-authentication-error
|
|
|
|
|
missing-key-error?
|
|
|
|
|
(signature missing-key-error-signature))
|
|
|
|
|
|
|
|
|
|
|
2020-06-10 08:54:13 -04:00
|
|
|
|
(define* (commit-signing-key repo commit-id keyring
|
|
|
|
|
#:key (disallowed-hash-algorithms '(sha1)))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
"Return the OpenPGP key that signed COMMIT-ID (an OID). Raise an exception
|
2020-06-10 08:54:13 -04:00
|
|
|
|
if the commit is unsigned, has an invalid signature, has a signature using one
|
|
|
|
|
of the hash algorithms in DISALLOWED-HASH-ALGORITHMS, or if its signing key is
|
2020-06-01 11:48:11 -04:00
|
|
|
|
not in KEYRING."
|
|
|
|
|
(let-values (((signature signed-data)
|
|
|
|
|
(catch 'git-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(commit-extract-signature repo commit-id))
|
|
|
|
|
(lambda _
|
|
|
|
|
(values #f #f)))))
|
|
|
|
|
(unless signature
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(condition (&unsigned-commit-error (commit commit-id)))
|
|
|
|
|
(formatted-message (G_ "commit ~a lacks a signature")
|
|
|
|
|
(oid->string commit-id)))))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
|
|
|
|
|
(let ((signature (string->openpgp-packet signature)))
|
2020-06-10 08:54:13 -04:00
|
|
|
|
(when (memq (openpgp-signature-hash-algorithm signature)
|
|
|
|
|
`(,@disallowed-hash-algorithms md5))
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(condition (&unsigned-commit-error (commit commit-id)))
|
|
|
|
|
(formatted-message (G_ "commit ~a has a ~a signature, \
|
2020-06-10 08:54:13 -04:00
|
|
|
|
which is not permitted")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(oid->string commit-id)
|
|
|
|
|
(openpgp-signature-hash-algorithm
|
|
|
|
|
signature)))))
|
2020-06-10 08:54:13 -04:00
|
|
|
|
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(with-fluids ((%default-port-encoding "UTF-8"))
|
|
|
|
|
(let-values (((status data)
|
|
|
|
|
(verify-openpgp-signature signature keyring
|
|
|
|
|
(open-input-string signed-data))))
|
|
|
|
|
(match status
|
|
|
|
|
('bad-signature
|
|
|
|
|
;; There's a signature but it's invalid.
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(condition
|
|
|
|
|
(&signature-verification-error (commit commit-id)
|
|
|
|
|
(signature signature)
|
|
|
|
|
(keyring keyring)))
|
|
|
|
|
(formatted-message (G_ "signature verification failed \
|
2020-06-01 11:48:11 -04:00
|
|
|
|
for commit ~a")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(oid->string commit-id)))))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
('missing-key
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(condition (&missing-key-error (commit commit-id)
|
|
|
|
|
(signature signature)))
|
|
|
|
|
(formatted-message (G_ "could not authenticate \
|
2020-06-01 11:48:11 -04:00
|
|
|
|
commit ~a: key ~a is missing")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(oid->string commit-id)
|
|
|
|
|
(openpgp-format-fingerprint data)))))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
('good-signature data)))))))
|
|
|
|
|
|
|
|
|
|
(define (read-authorizations port)
|
|
|
|
|
"Read authorizations in the '.guix-authorizations' format from PORT, and
|
|
|
|
|
return a list of authorized fingerprints."
|
|
|
|
|
(match (read port)
|
|
|
|
|
(('authorizations ('version 0)
|
|
|
|
|
(((? string? fingerprints) _ ...) ...)
|
|
|
|
|
_ ...)
|
|
|
|
|
(map (lambda (fingerprint)
|
|
|
|
|
(base16-string->bytevector
|
|
|
|
|
(string-downcase (string-filter char-set:graphic fingerprint))))
|
|
|
|
|
fingerprints))))
|
|
|
|
|
|
|
|
|
|
(define* (commit-authorized-keys repository commit
|
|
|
|
|
#:optional (default-authorizations '()))
|
|
|
|
|
"Return the list of OpenPGP fingerprints authorized to sign COMMIT, based on
|
|
|
|
|
authorizations listed in its parent commits. If one of the parent commits
|
|
|
|
|
does not specify anything, fall back to DEFAULT-AUTHORIZATIONS."
|
2020-06-07 17:06:41 -04:00
|
|
|
|
(define (parents-have-authorizations-file? commit)
|
|
|
|
|
;; Return true if at least one of the parents of COMMIT has the
|
|
|
|
|
;; '.guix-authorizations' file.
|
|
|
|
|
(find (lambda (commit)
|
|
|
|
|
(false-if-git-not-found
|
|
|
|
|
(tree-entry-bypath (commit-tree commit)
|
|
|
|
|
".guix-authorizations")))
|
|
|
|
|
(commit-parents commit)))
|
|
|
|
|
|
|
|
|
|
(define (assert-parents-lack-authorizations commit)
|
|
|
|
|
;; If COMMIT removes the '.guix-authorizations' file found in one of its
|
|
|
|
|
;; parents, raise an error.
|
|
|
|
|
(when (parents-have-authorizations-file? commit)
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(condition
|
|
|
|
|
(&unauthorized-commit-error (commit (commit-id commit))
|
|
|
|
|
(signing-key #f)))
|
|
|
|
|
(formatted-message (G_ "commit ~a attempts \
|
2020-06-07 17:06:41 -04:00
|
|
|
|
to remove '.guix-authorizations' file")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(oid->string (commit-id commit)))))))
|
2020-06-07 17:06:41 -04:00
|
|
|
|
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(define (commit-authorizations commit)
|
|
|
|
|
(catch 'git-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(let* ((tree (commit-tree commit))
|
|
|
|
|
(entry (tree-entry-bypath tree ".guix-authorizations"))
|
|
|
|
|
(blob (blob-lookup repository (tree-entry-id entry))))
|
|
|
|
|
(read-authorizations
|
|
|
|
|
(open-bytevector-input-port (blob-content blob)))))
|
|
|
|
|
(lambda (key error)
|
|
|
|
|
(if (= (git-error-code error) GIT_ENOTFOUND)
|
2020-06-07 17:06:41 -04:00
|
|
|
|
(begin
|
|
|
|
|
;; Prevent removal of '.guix-authorizations' since it would make
|
|
|
|
|
;; it trivial to force a fallback to DEFAULT-AUTHORIZATIONS.
|
|
|
|
|
(assert-parents-lack-authorizations commit)
|
|
|
|
|
default-authorizations)
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(throw key error)))))
|
|
|
|
|
|
2020-06-08 16:25:59 -04:00
|
|
|
|
(match (commit-parents commit)
|
|
|
|
|
(() default-authorizations)
|
|
|
|
|
(parents
|
|
|
|
|
(apply lset-intersection bytevector=?
|
|
|
|
|
(map commit-authorizations parents)))))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
|
|
|
|
|
(define* (authenticate-commit repository commit keyring
|
|
|
|
|
#:key (default-authorizations '()))
|
|
|
|
|
"Authenticate COMMIT from REPOSITORY and return the signing key fingerprint.
|
|
|
|
|
Raise an error when authentication fails. If one of the parent commits does
|
|
|
|
|
not specify anything, fall back to DEFAULT-AUTHORIZATIONS."
|
|
|
|
|
(define id
|
|
|
|
|
(commit-id commit))
|
|
|
|
|
|
2020-06-10 08:54:13 -04:00
|
|
|
|
(define recent-commit?
|
|
|
|
|
(false-if-git-not-found
|
|
|
|
|
(tree-entry-bypath (commit-tree commit) ".guix-authorizations")))
|
|
|
|
|
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(define signing-key
|
2020-06-10 08:54:13 -04:00
|
|
|
|
(commit-signing-key repository id keyring
|
|
|
|
|
;; Reject SHA1 signatures unconditionally as suggested
|
|
|
|
|
;; by the authors of "SHA-1 is a Shambles" (2019).
|
|
|
|
|
;; Accept it for "historical" commits (there are such
|
|
|
|
|
;; signatures from April 2020 in the repository).
|
|
|
|
|
#:disallowed-hash-algorithms
|
|
|
|
|
(if recent-commit? '(sha1) '())))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
|
|
|
|
|
(unless (member (openpgp-public-key-fingerprint signing-key)
|
|
|
|
|
(commit-authorized-keys repository commit
|
|
|
|
|
default-authorizations))
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (make-compound-condition
|
|
|
|
|
(condition
|
|
|
|
|
(&unauthorized-commit-error (commit id)
|
|
|
|
|
(signing-key signing-key)))
|
|
|
|
|
(formatted-message (G_ "commit ~a not signed by an authorized \
|
2020-06-01 11:48:11 -04:00
|
|
|
|
key: ~a")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(oid->string id)
|
|
|
|
|
(openpgp-format-fingerprint
|
|
|
|
|
(openpgp-public-key-fingerprint
|
|
|
|
|
signing-key))))))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
|
|
|
|
|
signing-key)
|
|
|
|
|
|
|
|
|
|
(define (load-keyring-from-blob repository oid keyring)
|
|
|
|
|
"Augment KEYRING with the keyring available in the blob at OID, which may or
|
|
|
|
|
may not be ASCII-armored."
|
|
|
|
|
(let* ((blob (blob-lookup repository oid))
|
|
|
|
|
(port (open-bytevector-input-port (blob-content blob))))
|
|
|
|
|
(get-openpgp-keyring (if (port-ascii-armored? port)
|
|
|
|
|
(open-bytevector-input-port (read-radix-64 port))
|
|
|
|
|
port)
|
|
|
|
|
keyring)))
|
|
|
|
|
|
|
|
|
|
(define (load-keyring-from-reference repository reference)
|
|
|
|
|
"Load the '.key' files from the tree at REFERENCE in REPOSITORY and return
|
|
|
|
|
an OpenPGP keyring."
|
2020-06-01 16:52:03 -04:00
|
|
|
|
(let* ((reference (branch-lookup repository reference BRANCH-ALL))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(target (reference-target reference))
|
|
|
|
|
(commit (commit-lookup repository target))
|
|
|
|
|
(tree (commit-tree commit)))
|
|
|
|
|
(fold (lambda (name keyring)
|
|
|
|
|
(if (string-suffix? ".key" name)
|
|
|
|
|
(let ((entry (tree-entry-bypath tree name)))
|
|
|
|
|
(load-keyring-from-blob repository
|
|
|
|
|
(tree-entry-id entry)
|
|
|
|
|
keyring))
|
|
|
|
|
keyring))
|
|
|
|
|
%empty-keyring
|
|
|
|
|
(tree-list tree))))
|
|
|
|
|
|
|
|
|
|
(define* (authenticate-commits repository commits
|
|
|
|
|
#:key
|
|
|
|
|
(default-authorizations '())
|
|
|
|
|
(keyring-reference "keyring")
|
2020-06-08 05:52:15 -04:00
|
|
|
|
(keyring (load-keyring-from-reference
|
|
|
|
|
repository keyring-reference))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(report-progress (const #t)))
|
|
|
|
|
"Authenticate COMMITS, a list of commit objects, calling REPORT-PROGRESS for
|
|
|
|
|
each of them. Return an alist showing the number of occurrences of each key.
|
2020-06-08 05:52:15 -04:00
|
|
|
|
If KEYRING is omitted, the OpenPGP keyring is loaded from KEYRING-REFERENCE in
|
|
|
|
|
REPOSITORY."
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(fold (lambda (commit stats)
|
|
|
|
|
(report-progress)
|
|
|
|
|
(let ((signer (authenticate-commit repository commit keyring
|
|
|
|
|
#:default-authorizations
|
|
|
|
|
default-authorizations)))
|
|
|
|
|
(match (assq signer stats)
|
|
|
|
|
(#f (cons `(,signer . 1) stats))
|
|
|
|
|
((_ . count) (cons `(,signer . ,(+ count 1))
|
|
|
|
|
(alist-delete signer stats))))))
|
|
|
|
|
'()
|
|
|
|
|
commits))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Caching.
|
|
|
|
|
;;;
|
|
|
|
|
|
2020-06-08 05:50:57 -04:00
|
|
|
|
(define (authenticated-commit-cache-file key)
|
2020-06-01 11:48:11 -04:00
|
|
|
|
"Return the name of the file that contains the cache of
|
2020-06-08 05:50:57 -04:00
|
|
|
|
previously-authenticated commits for KEY."
|
|
|
|
|
(string-append (cache-directory) "/authentication/" key))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
|
2020-06-08 05:50:57 -04:00
|
|
|
|
(define (previously-authenticated-commits key)
|
|
|
|
|
"Return the previously-authenticated commits under KEY as a list of commit
|
|
|
|
|
IDs (hex strings)."
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
2020-06-08 05:50:57 -04:00
|
|
|
|
(call-with-input-file (authenticated-commit-cache-file key)
|
2020-06-21 09:34:53 -04:00
|
|
|
|
(lambda (port)
|
|
|
|
|
;; If PORT has the wrong permissions, it might have been tampered
|
|
|
|
|
;; with by another user so ignore its contents.
|
|
|
|
|
(if (= #o600 (stat:perms (stat port)))
|
|
|
|
|
(read port)
|
|
|
|
|
(begin
|
|
|
|
|
(chmod port #o600)
|
|
|
|
|
'())))))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(lambda args
|
|
|
|
|
(if (= ENOENT (system-error-errno args))
|
|
|
|
|
'()
|
|
|
|
|
(apply throw args)))))
|
|
|
|
|
|
2020-06-08 05:50:57 -04:00
|
|
|
|
(define (cache-authenticated-commit key commit-id)
|
|
|
|
|
"Record in ~/.cache, under KEY, COMMIT-ID and its closure as
|
|
|
|
|
authenticated (only COMMIT-ID is written to cache, though)."
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(define %max-cache-length
|
|
|
|
|
;; Maximum number of commits in cache.
|
|
|
|
|
200)
|
|
|
|
|
|
|
|
|
|
(let ((lst (delete-duplicates
|
2020-06-08 05:50:57 -04:00
|
|
|
|
(cons commit-id (previously-authenticated-commits key))))
|
|
|
|
|
(file (authenticated-commit-cache-file key)))
|
2020-06-01 11:48:11 -04:00
|
|
|
|
(mkdir-p (dirname file))
|
|
|
|
|
(with-atomic-file-output file
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(let ((lst (if (> (length lst) %max-cache-length)
|
|
|
|
|
(take lst %max-cache-length) ;truncate
|
|
|
|
|
lst)))
|
|
|
|
|
(chmod port #o600)
|
|
|
|
|
(display ";; List of previously-authenticated commits.\n\n"
|
|
|
|
|
port)
|
|
|
|
|
(pretty-print lst port))))))
|
2020-07-05 10:47:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; High-level interface.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (repository-cache-key repository)
|
|
|
|
|
"Return a unique key to store the authenticate commit cache for REPOSITORY."
|
|
|
|
|
(string-append "checkouts/"
|
|
|
|
|
(base64-encode
|
|
|
|
|
(sha256 (string->utf8 (repository-directory repository))))))
|
|
|
|
|
|
|
|
|
|
(define (verify-introductory-commit repository keyring commit expected-signer)
|
|
|
|
|
"Look up COMMIT in REPOSITORY, and raise an exception if it is not signed by
|
|
|
|
|
EXPECTED-SIGNER."
|
|
|
|
|
(define actual-signer
|
|
|
|
|
(openpgp-public-key-fingerprint
|
|
|
|
|
(commit-signing-key repository (commit-id commit) keyring)))
|
|
|
|
|
|
|
|
|
|
(unless (bytevector=? expected-signer actual-signer)
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (formatted-message (G_ "initial commit ~a is signed by '~a' \
|
2020-07-05 10:47:32 -04:00
|
|
|
|
instead of '~a'")
|
|
|
|
|
(oid->string (commit-id commit))
|
|
|
|
|
(openpgp-format-fingerprint actual-signer)
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(openpgp-format-fingerprint expected-signer)))))
|
2020-07-05 10:47:32 -04:00
|
|
|
|
|
|
|
|
|
(define* (authenticate-repository repository start signer
|
|
|
|
|
#:key
|
|
|
|
|
(keyring-reference "keyring")
|
|
|
|
|
(cache-key (repository-cache-key repository))
|
|
|
|
|
(end (reference-target
|
|
|
|
|
(repository-head repository)))
|
|
|
|
|
(historical-authorizations '())
|
|
|
|
|
(make-reporter
|
|
|
|
|
(const progress-reporter/silent)))
|
|
|
|
|
"Authenticate REPOSITORY up to commit END, an OID. Authentication starts
|
|
|
|
|
with commit START, an OID, which must be signed by SIGNER; an exception is
|
|
|
|
|
raised if that is not the case. Return an alist mapping OpenPGP public keys
|
|
|
|
|
to the number of commits signed by that key that have been traversed.
|
|
|
|
|
|
|
|
|
|
The OpenPGP keyring is loaded from KEYRING-REFERENCE in REPOSITORY, where
|
|
|
|
|
KEYRING-REFERENCE is the name of a branch. The list of authenticated commits
|
|
|
|
|
is cached in the authentication cache under CACHE-KEY.
|
|
|
|
|
|
|
|
|
|
HISTORICAL-AUTHORIZATIONS must be a list of OpenPGP fingerprints (bytevectors)
|
|
|
|
|
denoting the authorized keys for commits whose parent lack the
|
|
|
|
|
'.guix-authorizations' file."
|
|
|
|
|
(define start-commit
|
|
|
|
|
(commit-lookup repository start))
|
|
|
|
|
(define end-commit
|
|
|
|
|
(commit-lookup repository end))
|
|
|
|
|
|
|
|
|
|
(define keyring
|
|
|
|
|
(load-keyring-from-reference repository keyring-reference))
|
|
|
|
|
|
|
|
|
|
(define authenticated-commits
|
|
|
|
|
;; Previously-authenticated commits that don't need to be checked again.
|
|
|
|
|
(filter-map (lambda (id)
|
|
|
|
|
(false-if-git-not-found
|
|
|
|
|
(commit-lookup repository (string->oid id))))
|
|
|
|
|
(previously-authenticated-commits cache-key)))
|
|
|
|
|
|
|
|
|
|
(define commits
|
|
|
|
|
;; Commits to authenticate, excluding the closure of
|
|
|
|
|
;; AUTHENTICATED-COMMITS.
|
|
|
|
|
(commit-difference end-commit start-commit
|
|
|
|
|
authenticated-commits))
|
|
|
|
|
|
|
|
|
|
;; When COMMITS is empty, it's because END-COMMIT is in the closure of
|
|
|
|
|
;; START-COMMIT and/or AUTHENTICATED-COMMITS, in which case it's known to
|
|
|
|
|
;; be authentic already.
|
|
|
|
|
(if (null? commits)
|
|
|
|
|
'()
|
|
|
|
|
(let ((reporter (make-reporter start-commit end-commit commits)))
|
|
|
|
|
;; If it's our first time, verify START-COMMIT's signature.
|
|
|
|
|
(when (null? authenticated-commits)
|
|
|
|
|
(verify-introductory-commit repository keyring
|
|
|
|
|
start-commit signer))
|
|
|
|
|
|
|
|
|
|
(let ((stats (call-with-progress-reporter reporter
|
|
|
|
|
(lambda (report)
|
|
|
|
|
(authenticate-commits repository commits
|
|
|
|
|
#:keyring keyring
|
|
|
|
|
#:default-authorizations
|
|
|
|
|
historical-authorizations
|
|
|
|
|
#:report-progress report)))))
|
|
|
|
|
(cache-authenticated-commit cache-key
|
|
|
|
|
(oid->string (commit-id end-commit)))
|
|
|
|
|
|
|
|
|
|
stats))))
|