/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-keygen

  • Committer: Teddy Hogeborn
  • Date: 2011-07-16 00:29:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110716002919-r77yikuiulj42o40
* initramfs-tools-script: Abort if plugin-runner is missing.  Removed
                          workaround for Debian bug #633582; the
                          workaround required getopt, which can not be
                          guaranteed.
* plugin-runner.c (main): Work around Debian bug #633582.
* plugins.d/mandos-client.c (main): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
3
3
# Mandos key generator - create a new OpenPGP key for a Mandos client
4
4
5
 
# Copyright © 2008-2014 Teddy Hogeborn
6
 
# Copyright © 2008-2014 Björn Påhlsson
 
5
# Copyright © 2008-2011 Teddy Hogeborn
 
6
# Copyright © 2008-2011 Björn Påhlsson
7
7
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/>.
20
20
21
 
# Contact the authors at <mandos@recompile.se>.
 
21
# Contact the authors at <mandos@fukt.bsnet.se>.
22
22
23
23
 
24
 
VERSION="1.6.5"
 
24
VERSION="1.3.0"
25
25
 
26
26
KEYDIR="/etc/keys/mandos"
27
 
KEYTYPE=RSA
28
 
KEYLENGTH=4096
29
 
SUBKEYTYPE=RSA
30
 
SUBKEYLENGTH=4096
 
27
KEYTYPE=DSA
 
28
KEYLENGTH=2048
 
29
SUBKEYTYPE=ELG-E
 
30
SUBKEYLENGTH=2048
31
31
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
32
32
KEYEMAIL=""
33
 
KEYCOMMENT=""
 
33
KEYCOMMENT="Mandos client key"
34
34
KEYEXPIRE=0
35
35
FORCE=no
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 RSA.
 
63
  -t TYPE, --type TYPE  Key type.  Default is DSA.
64
64
  -l BITS, --length BITS
65
 
                        Key length in bits.  Default is 4096.
 
65
                        Key length in bits.  Default is 2048.
66
66
  -s TYPE, --subtype TYPE
67
 
                        Subkey type.  Default is RSA.
 
67
                        Subkey type.  Default is ELG-E.
68
68
  -L BITS, --sublength BITS
69
 
                        Subkey length in bits.  Default is 4096.
 
69
                        Subkey length in bits.  Default is 2048.
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 is empty.
 
74
                        Comment field for key.  The default value is
 
75
                        "Mandos client key".
75
76
  -x TIME, --expire TIME
76
77
                        Key expire time.  Default is no expiration.
77
78
                        See gpg(1) for syntax.
191
192
shred --remove \"$RINGDIR\"/sec*;
192
193
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
193
194
rm --recursive --force \"$RINGDIR\";
194
 
tty --quiet && stty echo; \
 
195
stty echo; \
195
196
" EXIT
196
197
 
197
198
set -e
203
204
    cat >"$BATCHFILE" <<-EOF
204
205
        Key-Type: $KEYTYPE
205
206
        Key-Length: $KEYLENGTH
206
 
        Key-Usage: sign,auth
 
207
        #Key-Usage: encrypt,sign,auth
207
208
        Subkey-Type: $SUBKEYTYPE
208
209
        Subkey-Length: $SUBKEYLENGTH
209
 
        Subkey-Usage: encrypt
 
210
        #Subkey-Usage: encrypt,sign,auth
210
211
        Name-Real: $KEYNAME
211
212
        $KEYCOMMENTLINE
212
213
        $KEYEMAILLINE
228
229
        date
229
230
    fi
230
231
    
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
236
232
    # Generate a new key in the key rings
237
233
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
238
234
        --homedir "$RINGDIR" --trust-model always \
293
289
    
294
290
    FILECOMMENT="Encrypted password for a Mandos client"
295
291
    
296
 
    while [ ! -s "$SECFILE" ]; do
297
 
        if [ -n "$PASSFILE" ]; then
298
 
            cat "$PASSFILE"
 
292
    if [ -n "$PASSFILE" ]; then
 
293
        cat "$PASSFILE"
 
294
    else
 
295
        stty -echo
 
296
        echo -n "Enter passphrase: " >&2
 
297
        first="$(head --lines=1 | tr --delete '\n')"
 
298
        echo >&2
 
299
        echo -n "Repeat passphrase: " >&2
 
300
        second="$(head --lines=1 | tr --delete '\n')"
 
301
        echo >&2
 
302
        stty echo
 
303
        if [ "$first" != "$second" ]; then
 
304
            echo "Passphrase mismatch" >&2
 
305
            touch "$RINGDIR"/mismatch
299
306
        else
300
 
            tty --quiet && stty -echo
301
 
            echo -n "Enter passphrase: " >&2
302
 
            read first
303
 
            tty --quiet && echo >&2
304
 
            echo -n "Repeat passphrase: " >&2
305
 
            read second
306
 
            if tty --quiet; then
307
 
                echo >&2
308
 
                stty echo
309
 
            fi
310
 
            if [ "$first" != "$second" ]; then
311
 
                echo "Passphrase mismatch" >&2
312
 
                touch "$RINGDIR"/mismatch
313
 
            else
314
 
                echo -n "$first"
315
 
            fi
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
322
 
            if tty --quiet; then
323
 
                > "$SECFILE"
324
 
            else
325
 
                exit 1
326
 
            fi
 
307
            echo -n "$first"
327
308
        fi
328
 
    done
 
309
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
310
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
 
311
        --sign --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
 
312
        > "$SECFILE"
 
313
    if [ -e "$RINGDIR"/mismatch ]; then
 
314
        rm --force "$RINGDIR"/mismatch
 
315
        exit 1
 
316
    fi
329
317
    
330
318
    cat <<-EOF
331
319
        [$KEYNAME]