source: mod_gnutls/test/test_ca.mk @ ee94de5

asynciodebian/masterdebian/stretch-backportsmainproxy-ticketupstream
Last change on this file since ee94de5 was ee94de5, checked in by Thomas Klute <thomas2.klute@…>, 5 years ago

Test suite: Clean up for current GnuPG versions

Newer GnuPG versions start gpg-agent processes per GNUPGHOME (one for
every PGP identity) while creating the PGP certificates and leave an
authority/tofu.db file. Stop agent processes during check or
mostlyclean targets to be sure they are gone and do not interfere with
later test runs.

  • Property mode set to 100644
File size: 4.5 KB
Line 
1#!/usr/bin/make -f
2# Authors:
3# Daniel Kahn Gillmor <dkg@fifthhorseman.net>
4# Thomas Klute <thomas2.klute@uni-dortmund.de>
5
6# General rules to set up a miniature CA & server & client environment
7# for the test suite
8
9%.template: $(srcdir)/%.template.in
10        sed s/__HOSTNAME__/$(TEST_HOST)/ < $< > $@
11        if test -n "$(OCSP_PORT)"; then \
12                sed -i -e 's/^### ocsp/ocsp/' \
13                        -e s/__OCSP_PORT__/$(OCSP_PORT)/ $@; \
14        fi
15
16%.uid: $(srcdir)/%.uid.in
17        sed s/__HOSTNAME__/$(TEST_HOST)/ < $< > $@
18
19%/secret.key:
20        mkdir -p $(dir $@)
21        chmod 0700 $(dir $@)
22        certtool --outfile $@ --generate-privkey
23
24%/secret.pgp.raw: %.uid %/secret.key
25        PEM2OPENPGP_EXPIRATION=86400 PEM2OPENPGP_USAGE_FLAGS=authenticate,certify,sign pem2openpgp "$$(cat $<)" < $(dir $@)secret.key > $@
26
27%/secret.pgp: %/secret.pgp.raw pgpcrc
28        (printf -- '-----BEGIN PGP PRIVATE KEY BLOCK-----\nVersion: test\n\n' && \
29        base64 < $< && \
30        printf -- '=' && \
31        ./pgpcrc < $< | base64 && \
32        printf -- '-----END PGP PRIVATE KEY BLOCK-----\n' ) > $@
33
34%/gpg.conf: %/secret.pgp
35        rm -f $(dir $@)pubring.gpg $(dir $@)secring.gpg $(dir $@)trustdb.gpg $(dir $@)pubring.kbx $(dir $@)private-keys-v1.d/*.key
36        GNUPGHOME=$(dir $@) gpg --import $<
37        printf "%s:6:\n" "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)" | GNUPGHOME=$(dir $@) gpg --import-ownertrust
38        printf "default-key %s\n" "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)" > $@
39
40%/minimal.pgp: %/gpg.conf
41        if test -r $@; then rm $@; fi
42        GNUPGHOME=$(dir $@) gpg --output $@ --armor --export "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)"
43
44# Import and signing modify the shared keyring, which leads to race
45# conditions with parallel make. Locking avoids this problem. Building
46# authority/minimal.pgp (instead of just authority/gpg.conf) before
47# */cert.pgp avoids having to lock for all */minimal.pgp, too.
48%/cert.pgp: %/minimal.pgp authority/minimal.pgp
49        if test -r $@; then rm $@; fi
50        GNUPGHOME=authority/ $(GPG_FLOCK) gpg --import $<
51        GNUPGHOME=authority/ $(GPG_FLOCK) gpg --batch --sign-key --no-tty --yes "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)"
52        GNUPGHOME=authority/ $(GPG_FLOCK) gpg --output $@ --armor --export "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)"
53
54# special cases for the authorities' root certs:
55authority/x509.pem: authority.template authority/secret.key
56        certtool --outfile $@ --generate-self-signed --load-privkey authority/secret.key --template authority.template
57rogueca/x509.pem: $(srcdir)/rogueca.template rogueca/secret.key
58        certtool --outfile $@ --generate-self-signed --load-privkey rogueca/secret.key --template $(srcdir)/rogueca.template
59
60%/cert-request: %.template %/secret.key
61        certtool --outfile $@ --generate-request --load-privkey $(dir $@)secret.key --template $<
62
63# normal case: certificates signed by test CA
64%/x509.pem: %.template %/cert-request authority/secret.key authority/x509.pem
65        certtool --outfile $@ --generate-certificate --load-ca-certificate authority/x509.pem --load-ca-privkey authority/secret.key --load-request $(dir $@)cert-request --template $<
66
67# error case: certificates signed by rogue CA
68rogue%/x509.pem: rogue%.template rogue%/cert-request rogueca/x509.pem
69        certtool --outfile $@ --generate-certificate --load-ca-certificate rogueca/x509.pem --load-ca-privkey rogueca/secret.key --load-request $(dir $@)cert-request --template $<
70
71%/softhsm.conf: %/secret.key
72        echo "0:$(dir $@)softhsm.db" > $@
73
74%/softhsm.db: %/x509.pem %/secret.key %/softhsm.conf
75        SOFTHSM="$(SOFTHSM)" \
76        SOFTHSM_CONF="$(dir $@)softhsm.conf" \
77        $(srcdir)/softhsm.bash init $(dir $@)secret.key $(dir $@)x509.pem
78
79%/softhsm2.conf: %/secret.key
80        echo "objectstore.backend = file" > $@
81        echo "directories.tokendir = $(dir $@)softhsm2.db" >> $@
82
83%/softhsm2.db: %/x509.pem %/secret.key %/softhsm2.conf
84        mkdir -p $@
85        SOFTHSM="$(SOFTHSM)" \
86        SOFTHSM2_CONF="$(dir $@)softhsm2.conf" \
87        $(srcdir)/softhsm.bash init $(dir $@)secret.key $(dir $@)x509.pem
88
89# Generate CRL revoking a certain certificate. Currently used to
90# revoke the server certificate and check if setting the CRL as
91# GnuTLSProxyCRLFile causes the connection to the back end server to
92# fail.
93%/crl.pem: %/x509.pem ${srcdir}/%-crl.template
94        certtool --generate-crl \
95                --outfile $@ \
96                --load-ca-privkey authority/secret.key \
97                --load-ca-certificate authority/x509.pem \
98                --load-certificate $< \
99                --template "${srcdir}/$(*)-crl.template"
Note: See TracBrowser for help on using the repository browser.