/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 at bsnet
  • Date: 2010-09-14 18:22:03 UTC
  • Revision ID: teddy@fukt.bsnet.se-20100914182203-w26c64tdthto4jg2
* mandos-monitor.xml: New.
* Makefile (PROGS): Add "mandos-monitor".
  (DOCS): Add "mandos-monitor.xml".
  (mandos-monitor.8, mandos-monitor.8.xhtml, mandos-monitor): New.
  (install-server): Install "mandos-ctl" and "mandos-monitor" too.
  (uninstall-server): Remove "mandos-ctl" and "mandos-monitor" too.
* mandos-monitor: Don't log uninteresting messages.

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,2009 Teddy Hogeborn
 
6
# Copyright © 2008,2009 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
20
21
# Contact the authors at <mandos@fukt.bsnet.se>.
21
22
22
23
 
23
 
VERSION="1.0"
 
24
VERSION="1.0.14"
24
25
 
25
26
KEYDIR="/etc/keys/mandos"
26
27
KEYTYPE=DSA
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
216
217
        %commit
217
218
        EOF
218
219
    
 
220
    if tty --quiet; then
 
221
        cat <<-EOF
 
222
        Note: Due to entropy requirements, key generation could take
 
223
        anything from a few minutes to SEVERAL HOURS.  Please be
 
224
        patient and/or supply the system with more entropy if needed.
 
225
        EOF
 
226
        echo -n "Started: "
 
227
        date
 
228
    fi
 
229
    
219
230
    # Generate a new key in the key rings
220
231
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
221
232
        --homedir "$RINGDIR" --trust-model always \
222
233
        --gen-key "$BATCHFILE"
223
234
    rm --force "$BATCHFILE"
224
235
    
 
236
    if tty --quiet; then
 
237
        echo -n "Finished: "
 
238
        date
 
239
    fi
 
240
    
225
241
    # Backup any old key files
226
242
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
227
243
        2>/dev/null; then
277
293
        stty -echo
278
294
        echo -n "Enter passphrase: " >&2
279
295
        first="$(head --lines=1 | tr --delete '\n')"
280
 
        echo -n -e "\nRepeat passphrase: " >&2
 
296
        echo >&2
 
297
        echo -n "Repeat passphrase: " >&2
281
298
        second="$(head --lines=1 | tr --delete '\n')"
282
299
        echo >&2
283
300
        stty echo
284
301
        if [ "$first" != "$second" ]; then
285
 
            echo -e "Passphrase mismatch" >&2
286
 
            false
 
302
            echo "Passphrase mismatch" >&2
 
303
            touch "$RINGDIR"/mismatch
287
304
        else
288
305
            echo -n "$first"
289
306
        fi
290
307
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
291
308
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
292
 
        --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
 
309
        --sign --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
293
310
        > "$SECFILE"
294
 
    status="${PIPESTATUS[0]}"
295
 
    if [ "$status" -ne 0 ]; then
296
 
        exit "$status"
 
311
    if [ -e "$RINGDIR"/mismatch ]; then
 
312
        rm --force "$RINGDIR"/mismatch
 
313
        exit 1
297
314
    fi
298
315
    
299
316
    cat <<-EOF