3 # Copyright (c) 2007 Kungliga Tekniska Högskolan
4 # (Royal Institute of Technology, Stockholm, Sweden).
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
11 # 1. Redistributions of source code must retain the above copyright
12 # notice, this list of conditions and the following disclaimer.
14 # 2. Redistributions in binary form must reproduce the above copyright
15 # notice, this list of conditions and the following disclaimer in the
16 # documentation and/or other materials provided with the distribution.
18 # 3. Neither the name of the Institute nor the names of its contributors
19 # may be used to endorse or promote products derived from this software
20 # without specific prior written permission.
22 # THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
23 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 # ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
26 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 env_setup
="@env_setup@"
43 # If there is no useful db support compiled in, disable test
44 ..
/db
/have-db ||
exit 77
50 keytabfile
=${objdir}/server.keytab
51 keytab
="FILE:${keytabfile}"
52 nokeytab
="FILE:no-such-keytab"
53 cache
="FILE:krb5ccfile"
54 cache2
="FILE:krb5ccfile2"
55 nocache
="FILE:no-such-cache"
57 kadmin
="${kadmin} -l -r $R"
58 kdc
="${kdc} --addresses=localhost -P $port"
60 acquire_cred
="${TESTS_ENVIRONMENT} ../../lib/gssapi/test_acquire_cred"
61 test_kcred
="${TESTS_ENVIRONMENT} ../../lib/gssapi/test_kcred"
62 test_add_store_cred
="${TESTS_ENVIRONMENT} ../../lib/gssapi/test_add_store_cred"
64 KRB5_CONFIG
="${objdir}/krb5.conf"
67 KRB5_KTNAME
="${keytab}"
79 echo Creating database
82 --realm-max-ticket-life=1day \
83 --realm-max-renewable-life=1month \
86 echo upw
> ${objdir}/foopassword
88 ${kadmin} add
-p upw
--use-defaults user@
${R} ||
exit 1
89 ${kadmin} add
-p upw
--use-defaults another@
${R} ||
exit 1
90 ${kadmin} add
-p p1
--use-defaults host
/host.
test.h5l.se@
${R} ||
exit 1
91 ${kadmin} ext -k ${keytab} host/host.test.h5l.se@${R} ||
exit 1
93 echo "Doing database check"
94 ${kadmin} check
${R} ||
exit 1
97 ${kdc} --testing --detach ||
{ echo "kdc failed to start"; cat messages.log
; exit 1; }
100 trap "kill ${kdcpid}; echo signal killing kdc; exit 1;" EXIT
104 echo "initial ticket"
105 ${kinit} -c ${cache} --password-file=${objdir}/foopassword user@${R} || exitcode
=1
107 echo "copy ccache with gss_store_cred"
108 # Note we test that the ccache used for storing is token-expanded
109 ${test_add_store_cred} --default --overwrite --env ${cache} "${cache2}%{null}" || exit 1
110 ${klist} -c ${cache2} || exit 1
114 --acquire-type=accept \
115 --acquire-name=host@host.test.h5l.se || exit 1
117 echo "keytab w
/ short-form name and name canon rules
"
119 --acquire-type=accept \
120 --acquire-name=host@host || exit 1
122 echo "keytab w
/o name
"
124 --acquire-type=accept || exit 1
126 echo "keytab w
/ wrong name
"
128 --acquire-type=accept --kerberos \
129 --acquire-name=host@host2.test.h5l.se 2>/dev/null && exit 1
131 echo "init using keytab
"
134 --acquire-type=initiate \
135 --acquire-name=host@host.test.h5l.se > /dev/null || exit 1
137 echo "init using keytab
(loop
10)"
140 --acquire-type=initiate \
142 --acquire-name=host@host.test.h5l.se > /dev/null || exit 1
144 echo "init using keytab
(loop
10, target
)"
147 --acquire-type=initiate \
149 --target=host@host.test.h5l.se \
150 --acquire-name=host@host.test.h5l.se > /dev/null || exit 1
152 echo "init using keytab
(loop
10, kerberos
)"
154 --acquire-type=initiate \
157 --acquire-name=host@host.test.h5l.se > /dev/null || exit 1
159 echo "init using keytab
(loop
10, target
, kerberos
)"
161 --acquire-type=initiate \
164 --target=host@host.test.h5l.se \
165 --acquire-name=host@host.test.h5l.se > /dev/null || exit 1
167 echo "init using existing cc
"
170 --name-type=user-name \
171 --acquire-type=initiate \
172 --acquire-name=user || exit 1
174 KRB5CCNAME=${nocache}
176 echo "fail init using existing cc
"
179 --name-type=user-name \
180 --acquire-type=initiate \
181 --acquire-name=user 2>/dev/null && exit 1
183 echo "use gss_krb5_ccache_name
for user
"
186 --name-type=user-name \
188 --acquire-type=initiate \
189 --acquire-name=user >/dev/null || exit 1
192 KRB5_KTNAME=${nokeytab}
195 ${test_kcred} || exit 1
197 ${kdestroy} -c ${cache}
199 KRB5_KTNAME="${keytab}"
201 echo "init using keytab
"
204 --acquire-type=initiate \
205 --acquire-name=host@host.test.h5l.se 2>/dev/null || exit 1
207 echo "init using keytab
(ccache
)"
210 --acquire-type=initiate \
212 --acquire-name=host@host.test.h5l.se 2>/dev/null || exit 1
216 echo "killing kdc
(${kdcpid})"
217 kill ${kdcpid} 2> /dev/null