summaryrefslogtreecommitdiffstats
path: root/third_party/heimdal/tests/kdc/check-pkinit.in
blob: 571a64e9c15f8e2e90885aff9e92235afe272100 (plain)
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
#!/bin/sh
#
# Copyright (c) 2006 - 2008 Kungliga Tekniska Högskolan
# (Royal Institute of Technology, Stockholm, Sweden). 
# All rights reserved. 
#
# Redistribution and use in source and binary forms, with or without 
# modification, are permitted provided that the following conditions 
# are met: 
#
# 1. Redistributions of source code must retain the above copyright 
#    notice, this list of conditions and the following disclaimer. 
#
# 2. Redistributions in binary form must reproduce the above copyright 
#    notice, this list of conditions and the following disclaimer in the 
#    documentation and/or other materials provided with the distribution. 
#
# 3. Neither the name of the Institute nor the names of its contributors 
#    may be used to endorse or promote products derived from this software 
#    without specific prior written permission. 
#
# THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
# ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
# SUCH DAMAGE. 

top_builddir="@top_builddir@"
env_setup="@env_setup@"
objdir="@objdir@"

testfailed="echo test failed; cat messages.log; exit 1"

. ${env_setup}

# If there is no useful db support compiled in, disable test
${have_db} || exit 77

R=TEST.H5L.SE

port=@port@

kadmin="${kadmin} -l -r $R"
kdc="${kdc} --addresses=localhost -P $port"

server=host/datan.test.h5l.se
cache="FILE:${objdir}/cache.krb5"
keyfile="${hx509_data}/key.der"
keyfile2="${hx509_data}/key2.der"

kinit="${kinit} -c $cache ${afs_no_afslog}"
klistjson="${klist} --json -c $cache"
klistplain="${klist} -c $cache"
klist="${klist} --hidden -v -c $cache"
kgetcred="${kgetcred} -c $cache"
kdestroy="${kdestroy} -c $cache ${afs_no_unlog}"
kx509="${kx509} -c $cache"

KRB5_CONFIG="${objdir}/krb5-pkinit.conf"
export KRB5_CONFIG
HEIM_PIDFILE_DIR=$objdir
export HEIM_PIDFILE_DIR
HEIM_IPC_DIR=$objdir
export HEIM_IPC_DIR


rsa=yes
pkinit=no
if ${hxtool} info | grep 'rsa: hx509 null RSA' > /dev/null ; then
    rsa=no
fi
if ${hxtool} info | grep 'rand: not available' > /dev/null ; then
    rsa=no
fi

if ${kinit} --help 2>&1 | grep "CA certificates" > /dev/null; then
    pkinit=yes
fi

# If we doesn't support pkinit and have RSA, give up
if test "$pkinit" != yes -o "$rsa" != yes ; then
    exit 77
fi


rm -f current-db*
rm -f out-*
rm -f mkey.file*

> messages.log

echo Creating database
${kadmin} \
    init \
    --realm-max-ticket-life=1day \
    --realm-max-renewable-life=1month \
    ${R} || exit 1

${kadmin} modify --max-ticket-life=5d krbtgt/${R}@${R} || exit 1
${kadmin} add -p foo --use-defaults foo@${R} || exit 1
${kadmin} add -p bar --use-defaults bar@${R} || exit 1
${kadmin} add -p baz --use-defaults baz@${R} || exit 1
${kadmin} add -p foo --use-defaults host/server.test.h5l.se@${R} || exit 1
${kadmin} modify --alias=baz2\\@test.h5l.se@${R} baz@${R} || exit 1
${kadmin} modify --pkinit-acl="CN=baz,DC=test,DC=h5l,DC=se" baz@${R} || exit 1

${kadmin} add -p kaka --use-defaults ${server}@${R} || exit 1

echo "Doing database check"
${kadmin} check ${R} || exit 1

# XXX Do not use committed, in-tree private keys or certificates!
# XXX Add hxtool command to generate a private key w/o generating a CSR
# XXX Use hxtool to generate a fresh private key
# XXX Use hxtool to generate self-signed CA certs
# XXX Use PEM-FILE and store private key and certificate in same file
# XXX Update krb5.conf.in to use ${objdir}-relative keys and certificates

echo "Setting up certificates"
${hxtool} request-create \
	 --subject="CN=kdc,DC=test,DC=h5l,DC=se" \
	 --key=FILE:${keyfile2} \
	 req-kdc.der || exit 1
${hxtool} request-create \
	 --subject="CN=bar,DC=test,DC=h5l,DC=se" \
	 --key=FILE:${keyfile2} \
	 req-pkinit.der || exit 1
${hxtool} request-create \
	 --subject="CN=baz,DC=test,DC=h5l,DC=se" \
	 --key=FILE:${keyfile2} \
	 req-pkinit2.der || exit 1

echo "issue self-signed ca cert"
${hxtool} issue-certificate \
	  --self-signed \
	  --issue-ca \
	  --ca-private-key=FILE:${keyfile} \
          --subject="CN=CA,DC=test,DC=h5l,DC=se" \
	  --certificate="FILE:ca.crt" || exit 1

echo "issue kdc certificate"
${hxtool} issue-certificate \
	  --ca-certificate=FILE:$objdir/ca.crt,${keyfile} \
	  --type="pkinit-kdc" \
          --pk-init-principal="krbtgt/TEST.H5L.SE@TEST.H5L.SE" \
	  --req="PKCS10:req-kdc.der" \
	  --certificate="FILE:kdc.crt" || exit 1

echo "issue user certificate (pkinit san)"
${hxtool} issue-certificate \
	  --ca-certificate=FILE:$objdir/ca.crt,${keyfile} \
	  --type="pkinit-client" \
          --pk-init-principal="bar@TEST.H5L.SE" \
	  --req="PKCS10:req-pkinit.der" \
          --lifetime=7d \
	  --certificate="FILE:pkinit.crt" || exit 1

echo "issue user certificate (pkinit san; synthetic principal)"
${hxtool} issue-certificate \
	  --ca-certificate=FILE:$objdir/ca.crt,${keyfile} \
	  --type="pkinit-client" \
          --pk-init-principal="synthetized@TEST.H5L.SE" \
	  --req="PKCS10:req-pkinit.der" \
          --lifetime=7d \
	  --certificate="FILE:pkinit-synthetic.crt" || exit 1

echo "issue user 2 certificate (no san)"
${hxtool} issue-certificate \
	  --ca-certificate=FILE:$objdir/ca.crt,${keyfile} \
	  --type="pkinit-client" \
	  --req="PKCS10:req-pkinit2.der" \
	  --certificate="FILE:pkinit2.crt" || exit 1

echo "issue user 3 certificate (ms san)"
${hxtool} issue-certificate \
	  --ca-certificate=FILE:$objdir/ca.crt,${keyfile} \
	  --type="pkinit-client" \
          --ms-upn="bar@test.h5l.se" \
	  --req="PKCS10:req-pkinit2.der" \
	  --certificate="FILE:pkinit3.crt" || exit 1

echo "issue user 3 certificate (ms san, baz2)"
${hxtool} issue-certificate \
	  --ca-certificate=FILE:$objdir/ca.crt,${keyfile} \
	  --type="pkinit-client" \
          --ms-upn="baz2\\@test.h5l.se@${R}" \
	  --req="PKCS10:req-pkinit2.der" \
	  --certificate="FILE:pkinit4.crt" || exit 1

echo "issue self-signed kx509 template cert"
${hxtool} issue-certificate \
	  --self-signed \
	  --ca-private-key=FILE:${keyfile} \
          --subject='CN=${principal-component0},DC=test,DC=h5l,DC=se' \
	  --certificate="FILE:kx509-template.crt" || exit 1

echo foo > ${objdir}/foopassword

echo Starting kdc ; > messages.log
KRB5_CONFIG="${objdir}/krb5-pkinit2.conf"
${kdc} --detach --testing || { echo "kdc failed to start"; cat messages.log; exit 1; }
kdcpid=`getpid kdc`

trap 'kill -9 ${kdcpid}; echo signal killing kdc; cat ca.crt kdc.crt pkinit.crt pkinit-synthetic.crt; exit 1;' EXIT

ec=0

echo "Trying pk-init (principal in cert; longer max_life)"; > messages.log
base="${objdir}"
${kinit} --lifetime=5d -C FILE:${base}/pkinit.crt,${keyfile2} bar@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${klist}
if jq --version >/dev/null 2>&1 && jq -ne true >/dev/null 2>&1; then
    ${klistjson} |
        jq -e '(((.tickets[0].Expires|
               strptime("%b %d %H:%M:%S %Y")|mktime) - now) / 86400) |
               (floor < 4)' >/dev/null &&
           { ec=1 ; eval "${testfailed}"; }
fi
${kdestroy}

echo "Trying pk-init (principal in cert; synthetic)"; > messages.log
base="${objdir}"
${kinit} --lifetime=5d -C FILE:${base}/pkinit-synthetic.crt,${keyfile2} synthetized@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${klist}
${kdestroy}

echo "Restarting kdc ($kdcpid)"
sh ${leaks_kill} kdc $kdcpid || ec=1
KRB5_CONFIG="${objdir}/krb5-pkinit.conf"
${kdc} --detach --testing || { echo "kdc failed to start"; cat messages.log; exit 1; }
kdcpid=`getpid kdc`

echo "Trying pk-init (principal in cert)"; > messages.log
base="${objdir}"
${kinit} -C FILE:${base}/pkinit.crt,${keyfile2} bar@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${klist}
if jq --version >/dev/null 2>&1 && jq -ne true >/dev/null 2>&1; then
    ${klistjson} |
        jq -e '(((.tickets[0].Expires|
               strptime("%b %d %H:%M:%S %Y")|mktime) - now) / 86400) |
               (floor > 1)' >/dev/null &&
           { ec=1 ; eval "${testfailed}"; }
fi
${kdestroy}

echo "Trying pk-init (principal in cert; longer max_life from cert ext)"; > messages.log
# Re-issue cert with --pkinit-max-life=7d
${hxtool} issue-certificate \
	  --ca-certificate=FILE:$objdir/ca.crt,${keyfile} \
	  --type="pkinit-client" \
          --pk-init-principal="bar@TEST.H5L.SE" \
	  --req="PKCS10:req-pkinit.der" \
          --lifetime=7d \
          --pkinit-max-life=7d \
	  --certificate="FILE:pkinit.crt" || exit 1
base="${objdir}"
${kinit} --lifetime=5d -C FILE:${base}/pkinit.crt,${keyfile2} bar@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${klist}
if jq --version >/dev/null 2>&1 && jq -ne true >/dev/null 2>&1; then
    ${klistjson} |
        jq -e '(((.tickets[0].Expires|
               strptime("%b %d %H:%M:%S %Y")|mktime) - now) / 86400) |
               (floor < 4)' >/dev/null &&
           { ec=1 ; eval "${testfailed}"; }
fi

echo "Check kx509 certificate acquisition"
${kx509} -s || { ec=1 ; eval "${testfailed}"; }
${kx509} -o PEM-FILE:${objdir}/kx509.pem || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Check PKINIT w/ kx509 certificate"
${kinit} -C PEM-FILE:${objdir}/kx509.pem bar@${R} || \
	{ ec=1 ; eval "${testfailed}"; }

echo "Trying pk-init (principal in pki-mapping file) "; > messages.log
${kinit} -C FILE:${base}/pkinit.crt,${keyfile2} foo@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Trying pk-init (principal subject in DB)"; > messages.log
${kinit} -C FILE:${base}/pkinit2.crt,${keyfile2} baz@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Trying pk-init (ms upn)"; > messages.log
${kinit} -C FILE:${base}/pkinit3.crt,${keyfile2} bar@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Trying pk-init (ms upn, enterprise)"; > messages.log
${kinit}  --canonicalize --enterprise \
	-C FILE:${base}/pkinit4.crt,${keyfile2} baz2@test.h5l.se || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Trying pk-init (ms upn, enterprise, pk-enterprise)"; > messages.log
${kinit} --canonicalize \
	--pk-enterprise \
	-C FILE:${base}/pkinit4.crt,${keyfile2} ${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

KRB5_CONFIG="${objdir}/krb5-pkinit-win.conf"
export KRB5_CONFIG

echo "Duplicated tests, now in windows 2000 mode"

echo "Trying pk-init (principal in cert)"; > messages.log
base="${objdir}"
${kinit} -C FILE:${base}/pkinit.crt,${keyfile2} bar@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Trying pk-init (principal in pki-mapping file) "; > messages.log
${kinit} -C FILE:${base}/pkinit.crt,${keyfile2} foo@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Trying pk-init (principal subject in DB)"; > messages.log
${kinit} -C FILE:${base}/pkinit2.crt,${keyfile2} baz@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}

echo "Trying pk-init (ms upn)"; > messages.log
${kinit} -C FILE:${base}/pkinit3.crt,${keyfile2} bar@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
${kdestroy}


KRB5_CONFIG="${objdir}/krb5-pkinit.conf"
export KRB5_CONFIG

echo "Trying PKCS11 support"

cat > test-rc-file.rc <<EOF
certificate	cert	User certificate	FILE:${base}/pkinit.crt,${keyfile2}
app-fatal	true
EOF

SOFTPKCS11RC="test-rc-file.rc"
export SOFTPKCS11RC

dir=${base}/../../lib/hx509
file=

for a in libhx509.so .libs/libhx509.so libhx509.dylib .libs/libhx509.dylib ; do
    if [ -f $dir/$a ] ; then
	file=$dir/$a
	break
    fi
done

if [ X"$file" != X -a @DLOPEN@ ] ; then

    echo "Trying pk-init (principal in pki-mapping file) "; > messages.log
    ${kinit} -C PKCS11:${file} foo@${R} || \
	{ ec=1 ; eval "${testfailed}"; }
    ${kgetcred} ${server}@${R} || { ec=1 ; eval "${testfailed}"; }
    ${kdestroy}

fi


echo "killing kdc (${kdcpid})"
sh ${leaks_kill} kdc $kdcpid || ec=1

trap "" EXIT

exit $ec