-
Notifications
You must be signed in to change notification settings - Fork 141
425 lines (350 loc) · 14.8 KB
/
ca-cmc-shared-token-test.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
name: CA with CMC shared token
on: workflow_call
env:
DS_IMAGE: ${{ vars.DS_IMAGE || 'quay.io/389ds/dirsrv' }}
jobs:
# https://github.com/dogtagpki/pki/wiki/Issuing-User-Certificate-with-CMC-Shared-Token
test:
name: Test
runs-on: ubuntu-latest
env:
SHARED: /tmp/workdir/pki
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Retrieve PKI images
uses: actions/cache@v4
with:
key: pki-images-${{ github.sha }}
path: pki-images.tar
- name: Load PKI images
run: docker load --input pki-images.tar
- name: Create network
run: docker network create example
- name: Set up DS container
run: |
tests/bin/ds-create.sh \
--image=${{ env.DS_IMAGE }} \
--hostname=ds.example.com \
--password=Secret.123 \
ds
- name: Connect DS container to network
run: docker network connect example ds --alias ds.example.com
- name: Set up PKI container
run: |
tests/bin/runner-init.sh pki
env:
HOSTNAME: pki.example.com
- name: Connect PKI container to network
run: docker network connect example pki --alias pki.example.com
- name: Install CA
run: |
docker exec pki pkispawn \
-f /usr/share/pki/server/examples/installation/ca.cfg \
-s CA \
-D pki_ds_url=ldap://ds.example.com:3389 \
-v
# disable audit event filters
docker exec pki pki-server ca-config-unset log.instance.SignedAudit.filters.CMC_USER_SIGNED_REQUEST_SIG_VERIFY
- name: Install CA admin cert
run: |
docker exec pki pki-server cert-export ca_signing --cert-file ca_signing.crt
docker exec pki pki nss-cert-import \
--cert ca_signing.crt \
--trust CT,C,C \
ca_signing
docker exec pki pki pkcs12-import \
--pkcs12 /root/.dogtag/pki-tomcat/ca_admin_cert.p12 \
--pkcs12-password Secret.123
# https://github.com/dogtagpki/pki/wiki/Creating-Issuance-Protection-Certificate
- name: Create issuance protection cert
run: |
# generate cert request
docker exec pki pki \
-d /var/lib/pki/pki-tomcat/conf/alias \
-f /var/lib/pki/pki-tomcat/conf/password.conf \
nss-cert-request \
--subject "CN=CA Issuance Protection" \
--csr ca_issuance_protection.csr
# check generated CSR
docker exec pki openssl req -text -noout -in ca_issuance_protection.csr
# create CMC request
docker exec pki CMCRequest \
/usr/share/pki/server/examples/cmc/ca_issuance_protection-cmc-request.cfg \
# submit CMC request
docker exec pki HttpClient \
/usr/share/pki/server/examples/cmc/ca_issuance_protection-cmc-submit.cfg \
# convert CMC response (DER PKCS #7) into PEM PKCS #7 cert chain
docker exec pki CMCResponse \
-d /var/lib/pki/pki-tomcat/conf/alias \
-i ca_issuance_protection.cmc-response \
-o ca_issuance_protection.p7b | tee output
echo "SUCCESS" > expected
sed -n 's/^ *Status: *\(.*\)/\1/p' output > actual
diff expected actual
# check issued cert chain
docker exec pki openssl pkcs7 \
-print_certs \
-in ca_issuance_protection.p7b
# import cert chain
docker exec pki pki \
-d /var/lib/pki/pki-tomcat/conf/alias \
-f /var/lib/pki/pki-tomcat/conf/password.conf \
pkcs7-import \
--pkcs7 ca_issuance_protection.p7b \
ca_issuance_protection
# check imported cert chain
docker exec pki pki \
-d /var/lib/pki/pki-tomcat/conf/alias \
-f /var/lib/pki/pki-tomcat/conf/password.conf \
nss-cert-find
# configure issuance protection nickname
docker exec pki pki-server ca-config-set ca.cert.issuance_protection.nickname ca_issuance_protection
# https://github.com/dogtagpki/pki/wiki/Configuring-CMC-Shared-Token-Authentication
- name: Configure shared token auth
run: |
# update schema
docker exec pki ldapmodify \
-H ldap://ds.example.com:3389 \
-x \
-D "cn=Directory Manager" \
-w Secret.123 \
-f /usr/share/pki/ca/auth/ds/schema.ldif
# add user subtree
docker exec pki ldapadd \
-H ldap://ds.example.com:3389 \
-x \
-D "cn=Directory Manager" \
-w Secret.123 \
-f /usr/share/pki/ca/auth/ds/create.ldif
# add user records
docker exec pki ldapadd \
-H ldap://ds.example.com:3389 \
-x \
-D "cn=Directory Manager" \
-w Secret.123 \
-f /usr/share/pki/ca/auth/ds/example.ldif
# configure CMC shared token authentication
docker exec pki pki-server ca-config-set auths.instance.SharedToken.ldap.basedn ou=people,dc=example,dc=com
docker exec pki pki-server ca-config-set auths.instance.SharedToken.ldap.ldapauth.authtype BasicAuth
docker exec pki pki-server ca-config-set auths.instance.SharedToken.ldap.ldapauth.bindDN "cn=Directory Manager"
docker exec pki pki-server ca-config-set auths.instance.SharedToken.ldap.ldapauth.bindPWPrompt "Rule SharedToken"
docker exec pki pki-server ca-config-set auths.instance.SharedToken.ldap.ldapconn.host ds.example.com
docker exec pki pki-server ca-config-set auths.instance.SharedToken.ldap.ldapconn.port 3389
docker exec pki pki-server ca-config-set auths.instance.SharedToken.ldap.ldapconn.secureConn false
docker exec pki pki-server ca-config-set auths.instance.SharedToken.pluginName SharedToken
docker exec pki pki-server ca-config-set auths.instance.SharedToken.shrTokAttr shrTok
# enable caFullCMCSharedTokenCert profile
docker exec pki sed -i \
-e "s/^\(enable\)=.*/\1=true/" \
/var/lib/pki/pki-tomcat/ca/profiles/ca/caFullCMCSharedTokenCert.cfg
# enable caFullCMCUserSignedCert profile
docker exec pki sed -i \
-e "s/^\(enable\)=.*/\1=true/" \
/var/lib/pki/pki-tomcat/ca/profiles/ca/caFullCMCUserSignedCert.cfg
# restart CA subsystem
docker exec pki pki-server ca-redeploy --wait
# https://github.com/dogtagpki/pki/wiki/Generating-CMC-Shared-Token
- name: Generate shared token for user
run: |
# generate shared token
docker exec pki CMCSharedToken \
-d /var/lib/pki/pki-tomcat/conf/alias \
-p Secret.123 \
-n ca_issuance_protection \
-s Secret.123 \
-o $SHARED/testuser.b64
# convert into a single line
sed -e :a -e 'N;s/\r\n//;ba' testuser.b64 > token.txt
SHARED_TOKEN=$(cat token.txt)
echo "SHARED_TOKEN: $SHARED_TOKEN"
cat > add.ldif << EOF
dn: uid=testuser,ou=people,dc=example,dc=com
changetype: modify
add: objectClass
objectClass: extensibleobject
-
add: shrTok
shrTok: $SHARED_TOKEN
-
EOF
cat add.ldif
# add shared token into user record
docker exec pki ldapmodify \
-H ldap://ds.example.com:3389 \
-x \
-D "cn=Directory Manager" \
-w Secret.123 \
-f $SHARED/add.ldif
# https://github.com/dogtagpki/pki/wiki/Issuing-User-Certificate-with-CMC-Shared-Token
- name: Issue user cert with shared token
run: |
# create key
docker exec pki pki nss-key-create --output-format json | tee output
KEY_ID=$(jq -r '.keyId' output)
echo "KEY_ID: $KEY_ID"
# generated cert request
docker exec pki pki \
nss-cert-request \
--key-id $KEY_ID \
--subject "uid=testuser" \
--ext /usr/share/pki/tools/examples/certs/testuser.conf \
--csr testuser.csr
# check generated CSR
docker exec pki openssl req -text -noout -in testuser.csr
# insert key ID into CMCRequest config
docker cp \
pki:/usr/share/pki/tools/examples/cmc/testuser-cmc-request.cfg \
testuser-cmc-request.cfg
sed -i \
-e "s/^\(request.privKeyId\)=.*/\1=$KEY_ID/" \
testuser-cmc-request.cfg
cat testuser-cmc-request.cfg
# create CMC request
docker exec pki CMCRequest \
$SHARED/testuser-cmc-request.cfg
# submit CMC request
docker exec pki HttpClient \
/usr/share/pki/tools/examples/cmc/testuser-cmc-submit.cfg
# convert CMC response (DER PKCS #7) into PEM PKCS #7 cert chain
docker exec pki CMCResponse \
-d /root/.dogtag/nssdb \
-i testuser.cmc-response \
-o testuser.p7b | tee output
echo "SUCCESS" > expected
sed -n 's/^ *Status: *\(.*\)/\1/p' output > actual
diff expected actual
# check issued cert chain
docker exec pki pki \
pkcs7-cert-find \
--pkcs7 testuser.p7b
# import cert chain
docker exec pki pki \
pkcs7-import \
--pkcs7 testuser.p7b \
testuser
# check imported user cert
docker exec pki pki nss-cert-show testuser | tee output
# get user cert serial number
sed -n 's/^ *Serial Number: *\(.*\)/\1/p' output > testuser.serial
# https://github.com/dogtagpki/pki/wiki/Revoking-Certificate-with-CMC-Shared-Token
- name: Revoke user cert with shared token
run: |
HEX_SERIAL=$(cat testuser.serial)
echo "Hex serial: $HEX_SERIAL"
DEC_SERIAL=$(python -c "print(int('$HEX_SERIAL', 16))")
echo "Dec serial: $DEC_SERIAL"
SHARED_TOKEN=$(cat token.txt)
cat > modify.ldif << EOF
dn: cn=$DEC_SERIAL,ou=certificateRepository,ou=ca,dc=ca,dc=pki,dc=example,dc=com
changetype: modify
add: metaInfo
metaInfo: revShrTok:$SHARED_TOKEN
-
EOF
cat modify.ldif
# add shared token into cert record
docker exec pki ldapmodify \
-H ldap://ds.example.com:3389 \
-x \
-D "cn=Directory Manager" \
-w Secret.123 \
-f $SHARED/modify.ldif
# insert user cert serial number into CMCRequest config
docker cp \
pki:/usr/share/pki/tools/examples/cmc/testuser-cmc-revocation-request.cfg \
testuser-cmc-revocation-request.cfg
sed -i \
-e "s/^\(revRequest.serial\)=.*/\1=$HEX_SERIAL/" \
testuser-cmc-revocation-request.cfg
cat testuser-cmc-revocation-request.cfg
# create CMC request
docker exec pki CMCRequest \
$SHARED/testuser-cmc-revocation-request.cfg
# submit CMC request
docker exec pki HttpClient \
/usr/share/pki/tools/examples/cmc/testuser-cmc-revocation-submit.cfg
# process CMC response
docker exec pki CMCResponse \
-d /root/.dogtag/nssdb \
-i testuser.cmc-revocation-response | tee output
echo "SUCCESS" > expected
sed -n 's/^ *Status: *\(.*\)/\1/p' output > actual
diff expected actual
# check cert status
docker exec pki pki ca-cert-show $HEX_SERIAL | tee output
echo "REVOKED" > expected
sed -n 's/^ *Status: *\(.*\)/\1/p' output > actual
diff expected actual
- name: Check CMC_USER_SIGNED_REQUEST_SIG_VERIFY events
if: always()
run: |
docker exec pki grep \
"\[AuditEvent=CMC_USER_SIGNED_REQUEST_SIG_VERIFY\]" \
/var/lib/pki/pki-tomcat/logs/ca/signedAudit/ca_audit | tee output
# there should be 1 event from user cert enrollment
echo "1" > expected
cat output | wc -l > actual
diff expected actual
- name: Check CERT_STATUS_CHANGE_REQUEST_PROCESSED events
if: always()
run: |
docker exec pki grep \
"\[AuditEvent=CERT_STATUS_CHANGE_REQUEST_PROCESSED\]" \
/var/lib/pki/pki-tomcat/logs/ca/signedAudit/ca_audit | tee output
# there should be 1 event from user cert revocation
echo "1" > expected
cat output | wc -l > actual
diff expected actual
- name: Check CMC_REQUEST_RECEIVED events
if: always()
run: |
docker exec pki grep \
"\[AuditEvent=CMC_REQUEST_RECEIVED\]" \
/var/lib/pki/pki-tomcat/logs/ca/signedAudit/ca_audit | tee output
# there should be 3 events from issuance protection cert enrollment,
# user cert enrollment, user cert revocation
echo "3" > expected
cat output | wc -l > actual
diff expected actual
- name: Check CMC_RESPONSE_SENT events
if: always()
run: |
docker exec pki grep \
"\[AuditEvent=CMC_RESPONSE_SENT\]" \
/var/lib/pki/pki-tomcat/logs/ca/signedAudit/ca_audit | tee output
# there should be 3 events from issuance protection cert enrollment,
# user cert enrollment, user cert revocation
echo "3" > expected
cat output | wc -l > actual
diff expected actual
- name: Remove CA
run: docker exec pki pkidestroy -s CA -v
- name: Check DS server systemd journal
if: always()
run: |
docker exec ds journalctl -x --no-pager -u [email protected]
- name: Check DS container logs
if: always()
run: |
docker logs ds
- name: Check PKI server systemd journal
if: always()
run: |
docker exec pki journalctl -x --no-pager -u [email protected]
- name: Check CA debug log
if: always()
run: |
docker exec pki find /var/lib/pki/pki-tomcat/logs/ca -name "debug.*" -exec cat {} \;
- name: Gather artifacts
if: always()
run: |
tests/bin/ds-artifacts-save.sh ds
tests/bin/pki-artifacts-save.sh pki
continue-on-error: true
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: ca-cmc-shared-token
path: /tmp/artifacts