3
3
# Mandos key generator - create a new OpenPGP key for a Mandos client
 
5
 
# Copyright © 2008-2010 Teddy Hogeborn
 
6
 
# Copyright © 2008-2010 Björn Påhlsson
 
 
5
# Copyright © 2008-2014 Teddy Hogeborn
 
 
6
# Copyright © 2008-2014 Björn Påhlsson
 
8
8
# This program is free software: you can redistribute it and/or modify
 
9
9
# it under the terms of the GNU General Public License as published by
 
 
18
18
# You should have received a copy of the GNU General Public License
 
19
19
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
 
# Contact the authors at <mandos@fukt.bsnet.se>.
 
 
21
# Contact the authors at <mandos@recompile.se>.
 
26
26
KEYDIR="/etc/keys/mandos"
 
31
31
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
 
33
 
KEYCOMMENT="Mandos client key"
 
36
36
KEYCOMMENT_ORIG="$KEYCOMMENT"
 
 
60
60
  -v, --version         Show program's version number and exit
 
61
61
  -h, --help            Show this help message and exit
 
62
62
  -d DIR, --dir DIR     Target directory for key files
 
63
 
  -t TYPE, --type TYPE  Key type.  Default is DSA.
 
 
63
  -t TYPE, --type TYPE  Key type.  Default is RSA.
 
64
64
  -l BITS, --length BITS
 
65
 
                        Key length in bits.  Default is 2048.
 
 
65
                        Key length in bits.  Default is 4096.
 
66
66
  -s TYPE, --subtype TYPE
 
67
 
                        Subkey type.  Default is ELG-E.
 
 
67
                        Subkey type.  Default is RSA.
 
68
68
  -L BITS, --sublength BITS
 
69
 
                        Subkey length in bits.  Default is 2048.
 
 
69
                        Subkey length in bits.  Default is 4096.
 
70
70
  -n NAME, --name NAME  Name of key.  Default is the FQDN.
 
71
71
  -e ADDRESS, --email ADDRESS
 
72
72
                        Email address of key.  Default is empty.
 
73
73
  -c TEXT, --comment TEXT
 
74
 
                        Comment field for key.  The default value is
 
 
74
                        Comment field for key.  The default is empty.
 
76
75
  -x TIME, --expire TIME
 
77
76
                        Key expire time.  Default is no expiration.
 
78
77
                        See gpg(1) for syntax.
 
 
192
191
shred --remove \"$RINGDIR\"/sec*;
 
193
192
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
 
194
193
rm --recursive --force \"$RINGDIR\";
 
 
194
tty --quiet && stty echo; \
 
200
201
if [ "$mode" = keygen ]; then
 
 
202
203
    cat >"$BATCHFILE" <<-EOF
 
203
204
        Key-Type: $KEYTYPE
 
204
205
        Key-Length: $KEYLENGTH
 
205
 
        #Key-Usage: encrypt,sign,auth
 
206
207
        Subkey-Type: $SUBKEYTYPE
 
207
208
        Subkey-Length: $SUBKEYLENGTH
 
208
 
        #Subkey-Usage: encrypt,sign,auth
 
 
209
        Subkey-Usage: encrypt
 
209
210
        Name-Real: $KEYNAME
 
 
 
231
    # Make sure trustdb.gpg exists;
 
 
232
    # this is a workaround for Debian bug #737128
 
 
233
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
 
234
        --homedir "$RINGDIR" \
 
 
235
        --import-ownertrust < /dev/null
 
230
236
    # Generate a new key in the key rings
 
231
237
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
232
238
        --homedir "$RINGDIR" --trust-model always \
 
 
288
294
    FILECOMMENT="Encrypted password for a Mandos client"
 
290
 
    if [ -n "$PASSFILE" ]; then
 
294
 
        echo -n "Enter passphrase: " >&2
 
295
 
        first="$(head --lines=1 | tr --delete '\n')"
 
297
 
        echo -n "Repeat passphrase: " >&2
 
298
 
        second="$(head --lines=1 | tr --delete '\n')"
 
301
 
        if [ "$first" != "$second" ]; then
 
302
 
            echo "Passphrase mismatch" >&2
 
303
 
            touch "$RINGDIR"/mismatch
 
 
296
    while [ ! -s "$SECFILE" ]; do
 
 
297
        if [ -n "$PASSFILE" ]; then
 
 
300
            tty --quiet && stty -echo
 
 
301
            echo -n "Enter passphrase: " >&2
 
 
303
            tty --quiet && echo >&2
 
 
304
            echo -n "Repeat passphrase: " >&2
 
 
310
            if [ "$first" != "$second" ]; then
 
 
311
                echo "Passphrase mismatch" >&2
 
 
312
                touch "$RINGDIR"/mismatch
 
 
316
        fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
 
317
            --homedir "$RINGDIR" --trust-model always --armor \
 
 
318
            --encrypt --sign --recipient "$FINGERPRINT" --comment \
 
 
319
            "$FILECOMMENT" > "$SECFILE"
 
 
320
        if [ -e "$RINGDIR"/mismatch ]; then
 
 
321
            rm --force "$RINGDIR"/mismatch
 
307
 
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
308
 
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
 
309
 
        --sign --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
 
311
 
    if [ -e "$RINGDIR"/mismatch ]; then
 
312
 
        rm --force "$RINGDIR"/mismatch