3
# Mandos key generator - create a new OpenPGP key for a Mandos client
5
# Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
7
# This program is free software: you can redistribute it and/or modify
8
# it under the terms of the GNU General Public License as published by
9
# the Free Software Foundation, either version 3 of the License, or
10
# (at your option) any later version.
12
# This program is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
# GNU General Public License for more details.
17
# You should have received a copy of the GNU General Public License
18
# along with this program. If not, see <http://www.gnu.org/licenses/>.
20
# Contact the authors at <mandos@fukt.bsnet.se>.
25
KEYDIR="/etc/keys/mandos"
30
KEYNAME="`hostname --fqdn`"
32
KEYCOMMENT="Mandos client key"
35
KEYCOMMENT_ORIG="$KEYCOMMENT"
38
if [ ! -d "$KEYDIR" ]; then
39
KEYDIR="/etc/mandos/keys"
43
TEMP=`getopt --options vhd:t:l:n:e:c:x:f \
44
--longoptions version,help,password,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
48
basename="`basename $0`"
50
Usage: $basename [ -v | --version ]
51
$basename [ -h | --help ]
54
Encrypted password creation:
55
$basename { -p | --password } [ --name NAME ] [ --dir DIR]
58
-v, --version Show program's version number and exit
59
-h, --help Show this help message and exit
60
-d DIR, --dir DIR Target directory for key files
61
-t TYPE, --type TYPE Key type. Default is DSA.
62
-l BITS, --length BITS
63
Key length in bits. Default is 2048.
64
-s TYPE, --subtype TYPE
65
Subkey type. Default is ELG-E.
66
-L BITS, --sublength BITS
67
Subkey length in bits. Default is 2048.
68
-n NAME, --name NAME Name of key. Default is the FQDN.
69
-e ADDRESS, --email ADDRESS
70
Email address of key. Default is empty.
71
-c TEXT, --comment TEXT
72
Comment field for key. The default value is
74
-x TIME, --expire TIME
75
Key expire time. Default is no expiration.
76
See gpg(1) for syntax.
77
-f, --force Force overwriting old keys.
79
Password creation options:
80
-p, --password Create an encrypted password using the keys in
81
the key directory. All options other than
82
--dir and --name are ignored.
89
-p|--password) mode=password; shift;;
90
-d|--dir) KEYDIR="$2"; shift 2;;
91
-t|--type) KEYTYPE="$2"; shift 2;;
92
-s|--subtype) SUBKEYTYPE="$2"; shift 2;;
93
-l|--length) KEYLENGTH="$2"; shift 2;;
94
-L|--sublength) SUBKEYLENGTH="$2"; shift 2;;
95
-n|--name) KEYNAME="$2"; shift 2;;
96
-e|--email) KEYEMAIL="$2"; shift 2;;
97
-c|--comment) KEYCOMMENT="$2"; shift 2;;
98
-x|--expire) KEYEXPIRE="$2"; shift 2;;
99
-f|--force) FORCE=yes; shift;;
100
-v|--version) echo "$0 $VERSION"; exit;;
101
-h|--help) help; exit;;
103
*) echo "Internal error" >&2; exit 1;;
106
if [ "$#" -gt 0 ]; then
107
echo "Unknown arguments: '$@'" >&2
111
SECKEYFILE="$KEYDIR/seckey.txt"
112
PUBKEYFILE="$KEYDIR/pubkey.txt"
114
# Check for some invalid values
115
if [ ! -d "$KEYDIR" ]; then
116
echo "$KEYDIR not a directory" >&2
119
if [ ! -r "$KEYDIR" ]; then
120
echo "Directory $KEYDIR not readable" >&2
124
if [ "$mode" = keygen ]; then
125
if [ ! -w "$KEYDIR" ]; then
126
echo "Directory $KEYDIR not writeable" >&2
129
if [ -z "$KEYTYPE" ]; then
130
echo "Empty key type" >&2
134
if [ -z "$KEYNAME" ]; then
135
echo "Empty key name" >&2
139
if [ -z "$KEYLENGTH" ] || [ "$KEYLENGTH" -lt 512 ]; then
140
echo "Invalid key length" >&2
144
if [ -z "$KEYEXPIRE" ]; then
145
echo "Empty key expiration" >&2
149
# Make FORCE be 0 or 1
151
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]) FORCE=1;;
152
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|*) FORCE=0;;
155
if [ \( -e "$SECKEYFILE" -o -e "$PUBKEYFILE" \) \
156
-a "$FORCE" -eq 0 ]; then
157
echo "Refusing to overwrite old key files; use --force" >&2
161
# Set lines for GnuPG batch file
162
if [ -n "$KEYCOMMENT" ]; then
163
KEYCOMMENTLINE="Name-Comment: $KEYCOMMENT"
165
if [ -n "$KEYEMAIL" ]; then
166
KEYEMAILLINE="Name-Email: $KEYEMAIL"
169
# Create temporary gpg batch file
170
BATCHFILE="`mktemp -t mandos-keygen-batch.XXXXXXXXXX`"
173
if [ "$mode" = password ]; then
174
# Create temporary encrypted password file
175
SECFILE="`mktemp -t mandos-keygen-secfile.XXXXXXXXXX`"
178
# Create temporary key ring directory
179
RINGDIR="`mktemp -d -t mandos-keygen-keyrings.XXXXXXXXXX`"
181
# Remove temporary files on exit
184
test -n \"$SECFILE\" && shred --remove \"$SECFILE\"; \
185
shred --remove \"$RINGDIR\"/sec*;
186
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
187
rm --recursive --force \"$RINGDIR\";
193
if [ "$mode" = keygen ]; then
194
# Create batch file for GnuPG
195
cat >"$BATCHFILE" <<-EOF
197
Key-Length: $KEYLENGTH
198
#Key-Usage: encrypt,sign,auth
199
Subkey-Type: $SUBKEYTYPE
200
Subkey-Length: $SUBKEYLENGTH
201
#Subkey-Usage: encrypt,sign,auth
205
Expire-Date: $KEYEXPIRE
206
#Preferences: <string>
208
#%pubring pubring.gpg
209
#%secring secring.gpg
213
# Generate a new key in the key rings
214
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
215
--homedir "$RINGDIR" --trust-model always \
216
--gen-key "$BATCHFILE"
217
rm --force "$BATCHFILE"
219
# Backup any old key files
220
if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
222
shred --remove "$SECKEYFILE"
224
if cp --backup=numbered --force "$PUBKEYFILE" "$PUBKEYFILE" \
226
rm --force "$PUBKEYFILE"
229
FILECOMMENT="Mandos client key for $KEYNAME"
230
if [ "$KEYCOMMENT" != "$KEYCOMMENT_ORIG" ]; then
231
FILECOMMENT="$FILECOMMENT ($KEYCOMMENT)"
234
if [ -n "$KEYEMAIL" ]; then
235
FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
238
# Export keys from key rings to key files
239
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
240
--homedir "$RINGDIR" --armor --export-options export-minimal \
241
--comment "$FILECOMMENT" --output "$SECKEYFILE" \
243
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
244
--homedir "$RINGDIR" --armor --export-options export-minimal \
245
--comment "$FILECOMMENT" --output "$PUBKEYFILE" --export
248
if [ "$mode" = password ]; then
249
# Import keys into temporary key rings
250
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
251
--homedir "$RINGDIR" --trust-model always --armor \
252
--import "$SECKEYFILE"
253
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
254
--homedir "$RINGDIR" --trust-model always --armor \
255
--import "$PUBKEYFILE"
257
# Get fingerprint of key
258
FINGERPRINT="`gpg --quiet --batch --no-tty --no-options \
259
--enable-dsa2 --homedir \"$RINGDIR\" --trust-model always \
260
--fingerprint --with-colons \
262
--expression='/^fpr:/{s/^fpr:.*:\\([0-9A-Z]*\\):\$/\\1/p;q}'`"
264
test -n "$FINGERPRINT"
266
FILECOMMENT="Encrypted password for a Mandos client"
269
echo -n "Enter passphrase: " >&2
270
head --lines=1 | tr --delete '\n' \
271
| gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
272
--homedir "$RINGDIR" --trust-model always --armor --encrypt \
273
--recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
281
fingerprint = $FINGERPRINT
284
sed --quiet --expression='
285
/^-----BEGIN PGP MESSAGE-----$/,/^-----END PGP MESSAGE-----$/{
287
# Remove 24-bit Radix-64 checksum
298
# Remove the password file, if any
299
if [ -n "$SECFILE" ]; then
300
shred --remove "$SECFILE"
302
# Remove the key rings
303
shred --remove "$RINGDIR"/sec*
304
rm --recursive --force "$RINGDIR"