/mandos/release

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

« back to all changes in this revision

Viewing changes to mandos-keygen

  • Committer: Teddy Hogeborn
  • Date: 2013-10-13 16:57:10 UTC
  • mfrom: (237.7.172 trunk)
  • Revision ID: teddy@recompile.se-20131013165710-y695wckw4jmujvma
Merge from trunk.

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 Teddy Hogeborn & Björn Påhlsson
 
5
# Copyright © 2008-2012 Teddy Hogeborn
 
6
# Copyright © 2008-2012 Björn Påhlsson
6
7
7
8
# This program is free software: you can redistribute it and/or modify
8
9
# it under the terms of the GNU General Public License as published by
17
18
# You should have received a copy of the GNU General Public License
18
19
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20
20
 
# Contact the authors at <mandos@fukt.bsnet.se>.
 
21
# Contact the authors at <mandos@recompile.se>.
21
22
22
23
 
23
 
VERSION="1.0"
 
24
VERSION="1.6.0"
24
25
 
25
26
KEYDIR="/etc/keys/mandos"
26
 
KEYTYPE=DSA
27
 
KEYLENGTH=2048
28
 
SUBKEYTYPE=ELG-E
29
 
SUBKEYLENGTH=2048
 
27
KEYTYPE=RSA
 
28
KEYLENGTH=4096
 
29
SUBKEYTYPE=RSA
 
30
SUBKEYLENGTH=4096
30
31
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
31
32
KEYEMAIL=""
32
33
KEYCOMMENT="Mandos client key"
59
60
  -v, --version         Show program's version number and exit
60
61
  -h, --help            Show this help message and exit
61
62
  -d DIR, --dir DIR     Target directory for key files
62
 
  -t TYPE, --type TYPE  Key type.  Default is DSA.
 
63
  -t TYPE, --type TYPE  Key type.  Default is RSA.
63
64
  -l BITS, --length BITS
64
 
                        Key length in bits.  Default is 2048.
 
65
                        Key length in bits.  Default is 4096.
65
66
  -s TYPE, --subtype TYPE
66
67
                        Subkey type.  Default is ELG-E.
67
68
  -L BITS, --sublength BITS
68
 
                        Subkey length in bits.  Default is 2048.
 
69
                        Subkey length in bits.  Default is 4096.
69
70
  -n NAME, --name NAME  Name of key.  Default is the FQDN.
70
71
  -e ADDRESS, --email ADDRESS
71
72
                        Email address of key.  Default is empty.
146
147
        echo "Invalid key length" >&2
147
148
        exit 1
148
149
    fi
149
 
 
 
150
    
150
151
    if [ -z "$KEYEXPIRE" ]; then
151
152
        echo "Empty key expiration" >&2
152
153
        exit 1
171
172
    if [ -n "$KEYEMAIL" ]; then
172
173
        KEYEMAILLINE="Name-Email: $KEYEMAIL"
173
174
    fi
174
 
 
 
175
    
175
176
    # Create temporary gpg batch file
176
177
    BATCHFILE="`mktemp -t mandos-keygen-batch.XXXXXXXXXX`"
177
178
fi
191
192
shred --remove \"$RINGDIR\"/sec*;
192
193
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
193
194
rm --recursive --force \"$RINGDIR\";
194
 
stty echo; \
 
195
tty --quiet && stty echo; \
195
196
" EXIT
196
197
 
 
198
set -e
 
199
 
197
200
umask 077
198
201
 
199
202
if [ "$mode" = keygen ]; then
216
219
        %commit
217
220
        EOF
218
221
    
 
222
    if tty --quiet; then
 
223
        cat <<-EOF
 
224
        Note: Due to entropy requirements, key generation could take
 
225
        anything from a few minutes to SEVERAL HOURS.  Please be
 
226
        patient and/or supply the system with more entropy if needed.
 
227
        EOF
 
228
        echo -n "Started: "
 
229
        date
 
230
    fi
 
231
    
219
232
    # Generate a new key in the key rings
220
233
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
221
234
        --homedir "$RINGDIR" --trust-model always \
222
235
        --gen-key "$BATCHFILE"
223
236
    rm --force "$BATCHFILE"
224
237
    
 
238
    if tty --quiet; then
 
239
        echo -n "Finished: "
 
240
        date
 
241
    fi
 
242
    
225
243
    # Backup any old key files
226
244
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
227
245
        2>/dev/null; then
271
289
    
272
290
    FILECOMMENT="Encrypted password for a Mandos client"
273
291
    
274
 
    if [ -n "$PASSFILE" ]; then
275
 
        cat "$PASSFILE"
276
 
    else
277
 
        stty -echo
278
 
        echo -n "Enter passphrase: " >&2
279
 
        first="$(head --lines=1 | tr --delete '\n')"
280
 
        echo -n -e "\nRepeat passphrase: " >&2
281
 
        second="$(head --lines=1 | tr --delete '\n')"
282
 
        echo >&2
283
 
        stty echo
284
 
        if [ "$first" != "$second" ]; then
285
 
            echo -e "Passphrase mismatch" >&2
286
 
            false
 
292
    while [ ! -s "$SECFILE" ]; do
 
293
        if [ -n "$PASSFILE" ]; then
 
294
            cat "$PASSFILE"
287
295
        else
288
 
            echo -n "$first"
 
296
            tty --quiet && stty -echo
 
297
            echo -n "Enter passphrase: "
 
298
            read first
 
299
            tty --quiet && echo >&2
 
300
            echo -n "Repeat passphrase: "
 
301
            read second
 
302
            if tty --quiet; then
 
303
                echo >&2
 
304
                stty echo
 
305
            fi
 
306
            if [ "$first" != "$second" ]; then
 
307
                echo "Passphrase mismatch" >&2
 
308
                touch "$RINGDIR"/mismatch
 
309
            else
 
310
                echo -n "$first"
 
311
            fi
 
312
        fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
313
            --homedir "$RINGDIR" --trust-model always --armor \
 
314
            --encrypt --sign --recipient "$FINGERPRINT" --comment \
 
315
            "$FILECOMMENT" > "$SECFILE"
 
316
        if [ -e "$RINGDIR"/mismatch ]; then
 
317
            rm --force "$RINGDIR"/mismatch
 
318
            if tty --quiet; then
 
319
                > "$SECFILE"
 
320
            else
 
321
                exit 1
 
322
            fi
289
323
        fi
290
 
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
291
 
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
292
 
        --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
293
 
        > "$SECFILE"
294
 
    status="${PIPESTATUS[0]}"
295
 
    if [ "$status" -ne 0 ]; then
296
 
        exit "$status"
297
 
    fi
 
324
    done
298
325
    
299
326
    cat <<-EOF
300
327
        [$KEYNAME]