blob: 7c33b7c9e01ea84a5f38c31603d000012c0d36a7 (
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
|
#!/bin/sh
# Copyright (C) 2010, 2012 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
#
# SPDX-License-Identifier: MPL-2.0
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
#
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.
USAGE="$BASENAME [options] <filename>
Options:
-f <input format>: PEM | DLR
-n <name>: record name (default: _443._tcp)
-o <origin>: zone origin (default: none; name will be relative)
-m <matching type>: NONE (0) | SHA256 (1) | SHA512 (2)
-r <RR type>: TLSA
-s <selector>: FULL (0) | PK (1)
-t <ttl>: TTL of the TLSA record (default: none)
-u <certificate usage>: CA (0) | SERVICE (1) | TA (2) | DOMAIN (3)"
NM="_443._tcp"
CU=2
SELECTOR=0
MTYPE=1
IN=
FORM=PEM
TTL=
RRTYPE=TLSA
BASENAME=`basename $0`;
while getopts "xn:o:u:s:t:m:i:f:r:" c; do
case $c in
x) set -x; DEBUG=-x;;
m) MTYPE="$OPTARG";;
n) NM="$OPTARG";;
o) ORIGIN="$OPTARG";;
r) RRTYPE="$OPTARG";;
s) SELECTOR="$OPTARG";;
t) TTL="$OPTARG";;
u) CU="$OPTARG";;
*) echo "$USAGE" 1>&2; exit 1;;
esac
done
shift `expr $OPTIND - 1 || true`
if test "$#" -eq 1; then
IN=$1
else
echo "$USAGE" 1>&2; exit 1
fi
ORIGIN=`echo $ORIGIN | sed 's/\([^.]$\)/\1./'`
if [ -n "$ORIGIN" ]; then
NM=`echo $NM | sed 's/\.$//'`
NM="$NM.$ORIGIN"
fi
case "$CU" in
[Cc][Aa]) CU=0;;
[Ss][Ee][Rr][Vv]*) CU=1;;
[Tt][Aa]) CU=2;;
[Dd][Oo][Mm]*) CU=3;;
[0123]) ;;
*) echo "bad certificate usage -u \"$CU\"" 1>&2; exit 1;;
esac
case "$SELECTOR" in
[Ff][Uu][Ll][Ll]) SELECTOR=0;;
[Pp][Kk]) SELECTOR=1;;
[01]) ;;
*) echo "bad selector -s \"$SELECTOR\"" 1>&2; exit 1;;
esac
case "$MTYPE" in
0|[Nn][Oo][Nn][Ee]) HASH='od -A n -v -t xC';;
1|[Ss][Hh][Aa]256) HASH='openssl dgst -sha256';;
2|[Ss][Hh][Aa]512) HASH='openssl dgst -sha512';;
*) echo "bad matching type -m \"$MTYPE\"" 1>&2; exit 1;;
esac
case "$FORM" in
[Pp][Ee][Mm]) FORM=PEM;;
[Dd][Ll][Rr]) FORM=DLR;;
*) echo "bad input file format -f \"$FORM\"" 1>&2; exit 1
esac
case "$RRTYPE" in
[Tt][Ll][Ss][Aa]) RRTYPE=TLSA;;
*) echo "invalid RR type" 1>&2; exit 1
esac
if test -z "$IN" -o ! -s "$IN"; then
echo "bad input file -i \"$IN\"" 1>&2; exit 1
fi
echo "; $BASENAME -o$NM -u$CU -s$SELECTOR -m$MTYPE -f$FORM $IN"
(if test "$SELECTOR" = 0; then
openssl x509 -in "$IN" -inform "$FORM" -outform DER
else
openssl x509 -in "$IN" -inform "$FORM" -noout -pubkey \
| sed -e '/PUBLIC KEY/d' \
| openssl base64 -d
fi) \
| $HASH \
| awk '
# format Association Data as in Appendix C of the DANE RFC
BEGIN {
print "'"$NM\t\t$TTL\tIN TLSA\t$CU $SELECTOR $MTYPE"' (";
leader = "\t\t\t\t\t";
}
/.+/ {
gsub(/ +/, "", $0);
buf = buf $0;
while (length(buf) >= 36) {
print leader substr(buf, 1, 36);
buf = substr(buf, 37);
}
}
END {
if (length(buf) > 34)
print leader buf "\n" leader ")";
else
print leader buf " )";
}'
|