/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: 2014-01-06 15:56:54 UTC
  • Revision ID: teddy@recompile.se-20140106155654-urx23ytuvy0nxzwp
Update init script to modern standards.

* init.d-mandos (status): Moved to standard location.  Re-added use of
                          -p switch compared to skeleton file.
  (*): Update message to include "status".

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,2009 Teddy Hogeborn
6
 
# Copyright © 2008,2009 Björn Påhlsson
 
5
# Copyright © 2008-2013 Teddy Hogeborn
 
6
# Copyright © 2008-2013 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@fukt.bsnet.se>.
 
21
# Contact the authors at <mandos@recompile.se>.
22
22
23
23
 
24
 
VERSION="1.0.8"
 
24
VERSION="1.6.2"
25
25
 
26
26
KEYDIR="/etc/keys/mandos"
27
 
KEYTYPE=DSA
28
 
KEYLENGTH=2048
29
 
SUBKEYTYPE=ELG-E
30
 
SUBKEYLENGTH=2048
 
27
KEYTYPE=RSA
 
28
KEYLENGTH=4096
 
29
SUBKEYTYPE=RSA
 
30
SUBKEYLENGTH=4096
31
31
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
32
32
KEYEMAIL=""
33
 
KEYCOMMENT="Mandos client key"
 
33
KEYCOMMENT=""
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 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
75
 
                        "Mandos client key".
 
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\";
195
 
stty echo; \
 
194
tty --quiet && stty echo; \
196
195
" EXIT
197
196
 
 
197
set -e
 
198
 
198
199
umask 077
199
200
 
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
        Key-Usage: 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
210
211
        $KEYCOMMENTLINE
211
212
        $KEYEMAILLINE
217
218
        %commit
218
219
        EOF
219
220
    
 
221
    if tty --quiet; then
 
222
        cat <<-EOF
 
223
        Note: Due to entropy requirements, key generation could take
 
224
        anything from a few minutes to SEVERAL HOURS.  Please be
 
225
        patient and/or supply the system with more entropy if needed.
 
226
        EOF
 
227
        echo -n "Started: "
 
228
        date
 
229
    fi
 
230
    
220
231
    # Generate a new key in the key rings
221
232
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
222
233
        --homedir "$RINGDIR" --trust-model always \
223
234
        --gen-key "$BATCHFILE"
224
235
    rm --force "$BATCHFILE"
225
236
    
 
237
    if tty --quiet; then
 
238
        echo -n "Finished: "
 
239
        date
 
240
    fi
 
241
    
226
242
    # Backup any old key files
227
243
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
228
244
        2>/dev/null; then
272
288
    
273
289
    FILECOMMENT="Encrypted password for a Mandos client"
274
290
    
275
 
    if [ -n "$PASSFILE" ]; then
276
 
        cat "$PASSFILE"
277
 
    else
278
 
        stty -echo
279
 
        echo -n "Enter passphrase: " >&2
280
 
        first="$(head --lines=1 | tr --delete '\n')"
281
 
        echo -n -e "\nRepeat passphrase: " >&2
282
 
        second="$(head --lines=1 | tr --delete '\n')"
283
 
        echo >&2
284
 
        stty echo
285
 
        if [ "$first" != "$second" ]; then
286
 
            echo -e "Passphrase mismatch" >&2
287
 
            touch "$RINGDIR"/mismatch
 
291
    while [ ! -s "$SECFILE" ]; do
 
292
        if [ -n "$PASSFILE" ]; then
 
293
            cat "$PASSFILE"
288
294
        else
289
 
            echo -n "$first"
 
295
            tty --quiet && stty -echo
 
296
            echo -n "Enter passphrase: " >&2
 
297
            read first
 
298
            tty --quiet && echo >&2
 
299
            echo -n "Repeat passphrase: " >&2
 
300
            read second
 
301
            if tty --quiet; then
 
302
                echo >&2
 
303
                stty echo
 
304
            fi
 
305
            if [ "$first" != "$second" ]; then
 
306
                echo "Passphrase mismatch" >&2
 
307
                touch "$RINGDIR"/mismatch
 
308
            else
 
309
                echo -n "$first"
 
310
            fi
 
311
        fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
312
            --homedir "$RINGDIR" --trust-model always --armor \
 
313
            --encrypt --sign --recipient "$FINGERPRINT" --comment \
 
314
            "$FILECOMMENT" > "$SECFILE"
 
315
        if [ -e "$RINGDIR"/mismatch ]; then
 
316
            rm --force "$RINGDIR"/mismatch
 
317
            if tty --quiet; then
 
318
                > "$SECFILE"
 
319
            else
 
320
                exit 1
 
321
            fi
290
322
        fi
291
 
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
292
 
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
293
 
        --sign --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
294
 
        > "$SECFILE"
295
 
    if [ -e "$RINGDIR"/mismatch ]; then
296
 
        rm --force "$RINGDIR"/mismatch
297
 
        exit 1
298
 
    fi
 
323
    done
299
324
    
300
325
    cat <<-EOF
301
326
        [$KEYNAME]