// file : bpkg/repository-signing.cli // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; "\section=1" "\name=bpkg-repository-signing" "\summary=how to sign repository" " \h|SYNOPSIS| \c{\b{bpkg rep-create --key} ...} \h|DESCRIPTION| The purpose of signing a repository is to prevent tampering with packages either during transmission or on the repository \i{host machine}. Ideally, you would generate and sign the repository manifests on a separate \i{build machine} that is behind a firewall. This way, if (or, really, when) your host machine is compromised, it will be difficult for an attacker to compromise the repository packages without being noticed. Since the repository key is kept on the build machine (or, better yet, on a \i{one-way} PIV/PKCS#11 device; see below) they will not be able to re-sign the modified repository. \cb{bpkg} uses X.509 public key cryptography for repository signing. Currently, only the explicit \i{first use} certificate authentication is implemented. That is, for an unknown (to this \cb{bpkg} configuration) repository certificate its subject information and fingerprint are presented to the user. If the user confirms the authenticity of the certificate, then it is added to the configuration and any repository that in the future presents this certificate is trusted without further confirmations, provided its name matches the certificate's subject (see below). In the future a certificate authority (CA)-based model may be added. The rest of this guide shows how to create a key/certificate pair for \cb{pkg} repository signing and use it to sign a repository. At the end it also briefly explains how to store the private key on a PIV/PKCS#11 device using Yubikey 4 as an example. \dl| \li|1. Generate Private Key\n The first step is to generate the private key: \ $ openssl genrsa -aes256 2048 >key.pem \ If you would like to generate a key without password protection (not a good idea except for testing), leave the \cb{-aes256} option out. You may also need to add \cb{-nodes} depending on your \cb{openssl(1)} configuration. | \li|\n2. Generate Certificate\n Next create the certificate configuration file by saving the following into \cb{cert.conf}. You may want to keep it around in case you need to renew an expired certificate, etc. \ name = example.com org = Example, Inc email = admin@example.com [req] distinguished_name = req_distinguished_name x509_extensions = v3_req prompt = no utf8 = yes [req_distinguished_name] O = $org CN = name:$name [v3_req] keyUsage = critical,digitalSignature extendedKeyUsage = critical,codeSigning subjectAltName = email:$email \ Adjust the first three lines to match your details. If the repository is hosted by an organization, use the organization's name for \cb{org}. If you host it as an individual, put your full, real name there. Using any kind of aliases or nicknames is a bad idea (except, again, for testing). Remember, users of your repository will be presented with this information and if they see it was signed by someone named SmellySnook, they will unlikely trust it. Also use a working email address in case users need to contact you about issues with your certificate. Note that the \cb{name:} prefix in the \cb{CN} value is not a typo. The \cb{name} field is a canonical repository name prefix with the \cb{pkg:} type part stripped. Any repository with a canonical name that starts with this prefix can be authenticated by this certificate (see the repository manifest documentation for more information on canonical names). For example, name \cb{example.com} will match any repository hosted on \cb{{,www.,pkg.,bpkg.\}example.com}. While name \cb{example.com/math} will match \cb{{...\}example.com/pkg/1/math} but not \cb{{...\}example.com/pkg/1/misc}. A certificate name can also contain a subdomain wildcard. A wildcard name in the \cb{*.example.com} form matches any single-level subdomain, for example \cb{foo.example.com} but not \cb{foo.bar.example.com} while a wildcard name in the \cb{**.example.com} form matches any subdomain, including multi-level. The above two forms do not match the domain itself (\cb{example.com} in the above example). If this is desired, the \cb{*example.com} and \cb{**example.com} forms should be used instead. Note that these forms still only match subdomains. In other words, they won't match \cb{fooexample.com}. Wildcard names are less secure and therefore are normally only used for testing and/or internal repositories. Once the configuration file is ready, generate the certificate: \ openssl req -x509 -new -sha256 -key key.pem \ -config cert.conf -days 730 >cert.pem \ To verify the certificate information, run: \ openssl x509 -noout -nameopt RFC2253,sep_multiline \ -subject -dates -email \\ \ Replace \i{cert} with the entire contents of \cb{cert.pem} (including the \c{BEGIN CERTIFICATE} and \c{END CERTIFICATE} lines). So you will have an entry like this: \ certificate: \ -----BEGIN CERTIFICATE----- MIIDQjCCAiqgAwIBAgIJAIUgsIqSnesGMA0GCSqGSIb3DQEBCwUAMDkxFzAVBgNV . . . +NOVBamEvjn58ZcLfWh2oKee7ulIZg== -----END CERTIFICATE----- \\ \ | \li|\n4. Sign Repository\n When generating the repository manifests with the \l{bpkg-rep-create(1)} command, specify the path to \cb{key.pem} with the \cb{--key} option: \ bpkg rep-create --key /path/to/key.pem /path/to/repository \ You will be prompted for a password to unlock the private key. | \li|\n5. Using PIV/PKCS#11 Device\n This optional step shows how to load the private key into Yubikey 4 and then use it instead of the private key itself for signing the repository. Note that you will need OpenSSL 1.0.2 or later for the signing part to work. First change the Yubikey MKEY, PUK, and PIN if necessary. You should definitely do this if it still has the factory defaults. Then import the private key and the certificate into Yubikey (replace \i{mkey} with the management key): \ yubico-piv-tool --key= -a import-key -s 9c -a import-certificate -s 9c