-
Notifications
You must be signed in to change notification settings - Fork 139
592 lines (512 loc) · 20.9 KB
/
tools-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
name: Tools Tests
on: [push, pull_request]
jobs:
init:
name: Initializing Workflow
runs-on: ubuntu-latest
container: fedora:latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Set up test matrix
id: set-matrix
run: |
export latest=$(cat /etc/fedora-release | awk '{ print $3 }')
export previous=$(cat /etc/fedora-release | awk '{ print $3 - 1}')
echo "Running CI against Fedora $previous and $latest"
if [ "${{ secrets.MATRIX }}" == "" ]
then
echo "::set-output name=matrix::{\"os\":[\"$previous\", \"$latest\"]}"
else
echo "::set-output name=matrix::${{ secrets.MATRIX }}"
fi
# docs/development/Building_PKI.md
build:
name: Building PKI
needs: init
runs-on: ubuntu-latest
container: registry.fedoraproject.org/fedora:${{ matrix.os }}
env:
COPR_REPO: "@pki/master"
strategy:
matrix: ${{ fromJSON(needs.init.outputs.matrix) }}
steps:
- name: Install git
run: dnf install -y git
- name: Clone repository
uses: actions/checkout@v2
- name: Install dependencies
run: |
dnf install -y dnf-plugins-core rpm-build
dnf copr enable -y $COPR_REPO
dnf builddep -y --allowerasing --spec ./pki.spec --nogpgcheck
- name: Build PKI packages
run: ./build.sh --with-pkgs=base,server --with-timestamp --with-commit-id --work-dir=build rpm
- name: Upload PKI packages
uses: actions/upload-artifact@v2
with:
name: pki-build-${{ matrix.os }}
path: build/RPMS/
PKICertImport-test:
name: PKICertImport test
needs: [init, build]
runs-on: ubuntu-latest
container: registry.fedoraproject.org/fedora:${{ matrix.os }}
env:
COPR_REPO: "@pki/master"
strategy:
matrix: ${{ fromJSON(needs.init.outputs.matrix) }}
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Download PKI packages
uses: actions/download-artifact@v2
with:
name: pki-build-${{ matrix.os }}
path: build/RPMS
- name: Install PKI packages
run: |
dnf install -y dnf-plugins-core
dnf copr enable -y $COPR_REPO
dnf -y localinstall build/RPMS/*
- name: Run PKICertImport test
run: bash base/util/src/test/shell/test_PKICertImport.bash
# https://github.com/dogtagpki/pki/wiki/PKI-NSS-CLI
pki-nss-rsa-test:
name: Testing PKI NSS CLI with RSA
needs: [init, build]
runs-on: ubuntu-latest
container: registry.fedoraproject.org/fedora:${{ matrix.os }}
env:
COPR_REPO: "@pki/master"
strategy:
matrix: ${{ fromJSON(needs.init.outputs.matrix) }}
steps:
- name: Download PKI packages
uses: actions/download-artifact@v2
with:
name: pki-build-${{ matrix.os }}
path: build/RPMS
- name: Install PKI packages
run: |
dnf install -y dnf-plugins-core
dnf copr enable -y $COPR_REPO
dnf -y localinstall build/RPMS/*
# https://github.com/dogtagpki/pki/wiki/Generating-CA-Signing-CSR-with-PKI-NSS
- name: Create CA signing cert request with new RSA key
run: |
pki nss-cert-request \
--key-type RSA \
--subject "CN=Certificate Authority" \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--csr ca_signing.csr
openssl req -text -noout -in ca_signing.csr
# https://github.com/dogtagpki/pki/wiki/Issuing-CA-Signing-Certificate-with-PKI-NSS
- name: Issue self-signed CA signing cert
run: |
pki nss-cert-issue \
--csr ca_signing.csr \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--cert ca_signing.crt
openssl x509 -text -noout -in ca_signing.crt
- name: Import CA signing cert
run: |
pki nss-cert-import \
--cert ca_signing.crt \
--trust CT,C,C \
ca_signing
# verify trust flags
certutil -L -d /root/.dogtag/nssdb
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^ca_signing\s*\(\S\+\)\s*$/\1/p' > actual
echo "CTu,Cu,Cu" > expected
diff actual expected
# verify key type
certutil -K -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\(\S\+\)\s\+\S\+\s\+NSS Certificate DB:ca_signing$/\1/p' > actual
echo rsa > expected
diff actual expected
# https://github.com/dogtagpki/pki/wiki/Generating-SSL-Server-CSR-with-PKI-NSS
- name: Create SSL server cert request with new RSA key
run: |
pki nss-cert-request \
--key-type RSA \
--subject "CN=pki.example.com" \
--ext /usr/share/pki/server/certs/sslserver.conf \
--csr sslserver.csr
openssl req -text -noout -in sslserver.csr
# https://github.com/dogtagpki/pki/wiki/Issuing-SSL-Server-Certificate-with-PKI-NSS
- name: Issue SSL server cert
run: |
pki nss-cert-issue \
--issuer ca_signing \
--csr sslserver.csr \
--ext /usr/share/pki/server/certs/sslserver.conf \
--cert sslserver.crt
openssl x509 -text -noout -in sslserver.crt
- name: Import SSL server cert
run: |
pki nss-cert-import \
--cert sslserver.crt \
sslserver
# verify trust flags
certutil -L -d /root/.dogtag/nssdb
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^sslserver\s*\(\S\+\)\s*$/\1/p' > actual
echo "u,u,u" > expected
diff actual expected
# verify key type
certutil -K -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\(\S\+\)\s\+\S\+\s\+NSS Certificate DB:sslserver$/\1/p' > actual
echo rsa > expected
diff actual expected
# get key ID
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\S\+\s\+\(\S\+\)\s\+NSS Certificate DB:sslserver$/\1/p' > sslserver_key_id
- name: Delete SSL server cert
run: |
certutil -D -d /root/.dogtag/nssdb -n sslserver
certutil -L -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb
- name: Create new SSL server cert request with existing RSA key
run: |
pki nss-cert-request \
--key-id `cat sslserver_key_id` \
--subject "CN=pki.example.com" \
--ext /usr/share/pki/server/certs/sslserver.conf \
--csr new_sslserver.csr
openssl req -text -noout -in new_sslserver.csr
- name: Issue new SSL server cert
run: |
pki nss-cert-issue \
--issuer ca_signing \
--csr new_sslserver.csr \
--ext /usr/share/pki/server/certs/sslserver.conf \
--cert new_sslserver.crt
openssl x509 -text -noout -in new_sslserver.crt
- name: Import new SSL server cert
run: |
pki nss-cert-import \
--cert new_sslserver.crt \
new_sslserver
# verify trust flags
certutil -L -d /root/.dogtag/nssdb
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^new_sslserver\s*\(\S\+\)\s*$/\1/p' > actual
echo "u,u,u" > expected
diff actual expected
# verify key type
certutil -K -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\(\S\+\)\s\+\S\+\s\+NSS Certificate DB:new_sslserver$/\1/p' > actual
echo rsa > expected
diff actual expected
# verify key ID
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\S\+\s\+\(\S\+\)\s\+NSS Certificate DB:new_sslserver$/\1/p' > new_sslserver_key_id
diff sslserver_key_id new_sslserver_key_id
# https://github.com/dogtagpki/pki/wiki/PKI-NSS-CLI
pki-nss-ecc-test:
name: Testing PKI NSS CLI with ECC
needs: [init, build]
runs-on: ubuntu-latest
container: registry.fedoraproject.org/fedora:${{ matrix.os }}
env:
COPR_REPO: "@pki/master"
strategy:
matrix: ${{ fromJSON(needs.init.outputs.matrix) }}
steps:
- name: Download PKI packages
uses: actions/download-artifact@v2
with:
name: pki-build-${{ matrix.os }}
path: build/RPMS
- name: Install PKI packages
run: |
dnf install -y dnf-plugins-core
dnf copr enable -y $COPR_REPO
dnf -y localinstall build/RPMS/*
# https://github.com/dogtagpki/pki/wiki/Generating-CA-Signing-CSR-with-PKI-NSS
- name: Create CA signing cert request with new EC key
run: |
pki nss-cert-request \
--key-type EC \
--curve nistp256 \
--subject "CN=Certificate Authority" \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--csr ca_signing.csr
openssl req -text -noout -in ca_signing.csr
# https://github.com/dogtagpki/pki/wiki/Issuing-CA-Signing-Certificate-with-PKI-NSS
- name: Issue self-signed CA signing cert
run: |
pki nss-cert-issue \
--csr ca_signing.csr \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--cert ca_signing.crt
openssl x509 -text -noout -in ca_signing.crt
- name: Import CA signing cert
run: |
pki nss-cert-import \
--cert ca_signing.crt \
--trust CT,C,C \
ca_signing
# verify trust flags
certutil -L -d /root/.dogtag/nssdb
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^ca_signing\s*\(\S\+\)\s*$/\1/p' > actual
echo "CTu,Cu,Cu" > expected
diff actual expected
# verify key type
certutil -K -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\(\S\+\)\s\+\S\+\s\+NSS Certificate DB:ca_signing$/\1/p' > actual
echo ec > expected
diff actual expected
# https://github.com/dogtagpki/pki/wiki/Generating-SSL-Server-CSR-with-PKI-NSS
- name: Create SSL server cert request with new EC key
run: |
pki nss-cert-request \
--key-type EC \
--curve nistp256 \
--subject "CN=pki.example.com" \
--ext /usr/share/pki/server/certs/sslserver.conf \
--csr sslserver.csr
openssl req -text -noout -in sslserver.csr
# https://github.com/dogtagpki/pki/wiki/Issuing-SSL-Server-Certificate-with-PKI-NSS
- name: Issue SSL server cert
run: |
pki nss-cert-issue \
--issuer ca_signing \
--csr sslserver.csr \
--ext /usr/share/pki/server/certs/sslserver.conf \
--cert sslserver.crt
openssl x509 -text -noout -in sslserver.crt
- name: Import SSL server cert
run: |
pki nss-cert-import \
--cert sslserver.crt \
sslserver
# verify trust flags
certutil -L -d /root/.dogtag/nssdb
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^sslserver\s*\(\S\+\)\s*$/\1/p' > actual
echo "u,u,u" > expected
diff actual expected
# verify key type
certutil -K -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\(\S\+\)\s\+\S\+\s\+NSS Certificate DB:sslserver$/\1/p' > actual
echo ec > expected
diff actual expected
# get key ID
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\S\+\s\+\(\S\+\)\s\+NSS Certificate DB:sslserver$/\1/p' > sslserver_key_id
- name: Delete SSL server cert
run: |
certutil -D -d /root/.dogtag/nssdb -n sslserver
certutil -L -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb
- name: Create new SSL server cert request with existing EC key
run: |
pki nss-cert-request \
--key-id `cat sslserver_key_id` \
--subject "CN=pki.example.com" \
--ext /usr/share/pki/server/certs/sslserver.conf \
--csr new_sslserver.csr
openssl req -text -noout -in new_sslserver.csr
- name: Issue new SSL server cert
run: |
pki nss-cert-issue \
--issuer ca_signing \
--csr new_sslserver.csr \
--ext /usr/share/pki/server/certs/sslserver.conf \
--cert new_sslserver.crt
openssl x509 -text -noout -in new_sslserver.crt
- name: Import new SSL server cert
run: |
pki nss-cert-import \
--cert new_sslserver.crt \
new_sslserver
# verify trust flags
certutil -L -d /root/.dogtag/nssdb
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^new_sslserver\s*\(\S\+\)\s*$/\1/p' > actual
echo "u,u,u" > expected
diff actual expected
# verify key type
certutil -K -d /root/.dogtag/nssdb
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\(\S\+\)\s\+\S\+\s\+NSS Certificate DB:new_sslserver$/\1/p' > actual
echo ec > expected
diff actual expected
# verify key ID
certutil -K -d /root/.dogtag/nssdb | sed -n 's/^<.*>\s\+\S\+\s\+\(\S\+\)\s\+NSS Certificate DB:new_sslserver$/\1/p' > new_sslserver_key_id
diff sslserver_key_id new_sslserver_key_id
# https://github.com/dogtagpki/pki/wiki/PKI-NSS-CLI
pki-nss-hsm-test:
name: PKI NSS CLI with HSM
needs: [init, build]
runs-on: ubuntu-latest
container: registry.fedoraproject.org/fedora:${{ matrix.os }}
env:
COPR_REPO: "@pki/master"
strategy:
matrix:
# NSS cannot find the SoftHSM token on F33
os: ['34']
steps:
- name: Download PKI packages
uses: actions/download-artifact@v2
with:
name: pki-build-${{ matrix.os }}
path: build/RPMS
- name: Install PKI packages
run: |
dnf install -y dnf-plugins-core softhsm
dnf copr enable -y $COPR_REPO
dnf -y localinstall build/RPMS/*
- name: Create HSM token
run: |
softhsm2-util --init-token \
--label HSM \
--so-pin Secret.123 \
--pin Secret.123 \
--free
softhsm2-util --show-slots
# https://github.com/dogtagpki/pki/wiki/Generating-CA-Signing-CSR-with-PKI-NSS
- name: Generate CA signing cert request with key in HSM
run: |
echo "internal=" > password.conf
echo "hardware-HSM=Secret.123" >> password.conf
pki --token HSM -f password.conf nss-cert-request \
--subject "CN=Certificate Authority" \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--csr ca_signing.csr
openssl req -text -noout -in ca_signing.csr
# https://github.com/dogtagpki/pki/wiki/Issuing-CA-Signing-Certificate-with-PKI-NSS
- name: Issue self-signed CA signing cert
run: |
pki --token HSM -f password.conf nss-cert-issue \
--csr ca_signing.csr \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--cert ca_signing.crt
openssl x509 -text -noout -in ca_signing.crt
- name: Import CA signing cert into internal token and HSM
run: |
pki --token HSM -f password.conf nss-cert-import \
--cert ca_signing.crt \
--trust CT,C,C \
ca_signing
- name: Verify CA signing cert trust flags in internal token
run: |
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^ca_signing\s*\(\S\+\)\s*$/\1/p' > actual
echo "CT,C,C" > expected
diff actual expected
- name: Verify CA signing cert trust flags in HSM
run: |
echo "Secret.123" > password.txt
certutil -L -d /root/.dogtag/nssdb -h HSM -f password.txt | sed -n 's/^HSM:ca_signing\s*\(\S\+\)\s*$/\1/p' > actual
echo "CTu,Cu,Cu" > expected
diff actual expected
- name: Remove HSM token
run: softhsm2-util --delete-token --token HSM
# docs/user/tools/Using-PKI-PKCS7-CLI.adoc
pki-pkcs7-test:
name: PKI PKCS7 CLI
needs: [init, build]
runs-on: ubuntu-latest
container: registry.fedoraproject.org/fedora:${{ matrix.os }}
env:
COPR_REPO: "@pki/master"
strategy:
matrix: ${{ fromJSON(needs.init.outputs.matrix) }}
steps:
- name: Download PKI packages
uses: actions/download-artifact@v2
with:
name: pki-build-${{ matrix.os }}
path: build/RPMS
- name: Install PKI packages
run: |
dnf install -y dnf-plugins-core
dnf copr enable -y $COPR_REPO
dnf -y localinstall build/RPMS/*
- name: Generate CA signing cert request
run: |
pki nss-cert-request \
--subject "CN=Certificate Authority" \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--csr ca_signing.csr
- name: Issue self-signed CA signing cert
run: |
pki nss-cert-issue \
--csr ca_signing.csr \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--cert ca_signing.crt
- name: Import CA signing cert
run: |
pki nss-cert-import \
--cert ca_signing.crt \
--trust CT,C,C \
ca_signing
- name: Generate SSL server cert request
run: |
pki nss-cert-request \
--subject "CN=localhost.localdomain" \
--ext /usr/share/pki/server/certs/sslserver.conf \
--csr sslserver.csr
- name: Issue SSL server cert signed by CA signing cert
run: |
pki nss-cert-issue \
--issuer ca_signing \
--csr sslserver.csr \
--ext /usr/share/pki/server/certs/ca_signing.conf \
--cert sslserver.crt
- name: Import SSL server cert
run: pki nss-cert-import sslserver --cert sslserver.crt
- name: "Export SSL server cert chain into PKCS #7 chain"
run: |
pki pkcs7-export sslserver --pkcs7 cert_chain.p7b
pki pkcs7-cert-find --pkcs7 cert_chain.p7b
- name: Convert cert chain into separate PEM certificates
run: |
pki pkcs7-cert-export --pkcs7 cert_chain.p7b --output-prefix cert- --output-suffix .pem
cat cert-0.pem
cat cert-1.pem
- name: "Merge PEM certificates into a PKCS #7 chain"
run: |
rm -f cert_chain.p7b
pki pkcs7-cert-import --pkcs7 cert_chain.p7b --input-file cert-0.pem
pki pkcs7-cert-import --pkcs7 cert_chain.p7b --input-file cert-1.pem --append
pki pkcs7-cert-find --pkcs7 cert_chain.p7b
- name: Remove certs from NSS database
run: |
certutil -D -d /root/.dogtag/nssdb -n sslserver
certutil -D -d /root/.dogtag/nssdb -n ca_signing
certutil -L -d /root/.dogtag/nssdb
- name: "Import PKCS #7 chain into NSS database"
run: |
pki pkcs7-import sslserver --pkcs7 cert_chain.p7b
certutil -L -d /root/.dogtag/nssdb
- name: Verify CA signing cert trust flags
run: |
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^Certificate Authority *\(\S\+\)/\1/p' > actual
echo "CTu,Cu,Cu" > expected
diff actual expected
- name: Verify SSL server cert trust flags
run: |
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^sslserver *\(\S\+\)/\1/p' > actual
echo "u,u,u" > expected
diff actual expected
- name: "Convert PKCS #7 chain into a series of PEM certificates"
run: |
pki pkcs7-cert-export --pkcs7 cert_chain.p7b --output-file cert_chain.pem
cat cert_chain.pem
- name: Remove certs from NSS database
run: |
certutil -D -d /root/.dogtag/nssdb -n sslserver
certutil -D -d /root/.dogtag/nssdb -n "Certificate Authority"
certutil -L -d /root/.dogtag/nssdb
- name: Import PEM certificates into NSS database
run: |
rm -f cert_chain.p7b
pki pkcs7-cert-import --pkcs7 cert_chain.p7b --input-file cert_chain.pem
pki pkcs7-import sslserver --pkcs7 cert_chain.p7b
certutil -L -d /root/.dogtag/nssdb
- name: Verify CA signing cert trust flags
run: |
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^Certificate Authority *\(\S\+\)/\1/p' > actual
echo "CTu,Cu,Cu" > expected
diff actual expected
- name: Verify SSL server cert trust flags
run: |
certutil -L -d /root/.dogtag/nssdb | sed -n 's/^sslserver *\(\S\+\)/\1/p' > actual
echo "u,u,u" > expected
diff actual expected