Files
heimdal/tests/db/loaddump-db.in
Nicolas Williams cbe156d927 Use OpenSSL 3.x _only_ and implement RFC 8636
- No more OpenSSL 1.x support
 - Remove 1DES and 3DES
 - Remove NETLOGON, NTLM (client and 'digest' service)
2026-01-18 19:06:16 -06:00

98 lines
3.3 KiB
Bash

#!/bin/sh
#
# Copyright (c) 2005 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.
#
# $Id$
#
srcdir="@srcdir@"
objdir="@objdir@"
# If there is no useful db support compiled in, disable test
./have-db || exit 77
R=EXAMPLE.ORG
kadmin="../../kadmin/kadmin -l -A -r $R"
kstash="../../kdc/kstash"
hprop="../../kdc/hprop"
hpropd="../../kdc/hpropd"
default_db_type=@default_db_type@
db_type=${1:-${default_db_type}}
propdb="${hprop} --database=${db_type}:./current-db -n"
propddb="${hpropd} --database=${db_type}:./current-db -n"
KRB5_CONFIG="${objdir}/krb5.conf-${db_type}"
export KRB5_CONFIG
rm -f current-db*
rm -f out-*
rm -f mkey.file*
${kadmin} \
init \
--realm-max-ticket-life=1day \
--realm-max-renewable-life=1month \
EXAMPLE.ORG || exit 1
# check that we can dump and load ourself
${kadmin} dump out-current-db || exit 1
sort out-current-db > out-current-db-sort
${kadmin} load out-current-db || exit 1
${kadmin} dump out-current-db2 || exit 1
sort out-current-db2 > out-current-db2-sort
cmp out-current-db-sort out-current-db2-sort || exit 1
# We no longer test the upgrade path from pre 7.8.
# use a master key
${kadmin} dump | sort |
awk '{$11=""; print;}' > dump-no-mkey
${kstash} -e aes256-cts-hmac-sha1-96 --random-key -k ./mkey.file >/dev/null 2>/dev/null || exit 1
${propdb} -m mkey.file -E > db-dump.tmp || exit 1
${propddb} < db-dump.tmp || exit 1
${kadmin} dump > dump-w-mkey
# remove master key
${propdb} -m mkey.file -D > db-dump.tmp || exit 1
mv mkey.file mkey.file.no || exit 1
${propddb} < db-dump.tmp || exit 1
${kadmin} dump | sort | \
awk '{$11=""; print;}' > dump-no-mkey2 || exit 1
# check that w/o mkey it's the same before and after
cmp dump-no-mkey dump-no-mkey2 || exit 1
# check that dump-w-mkey is from dump-no-mkey
cmp dump-w-mkey dump-no-mkey2 && exit 1
exit 0