/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-03-28 22:32:21 UTC
  • Revision ID: teddy@recompile.se-20140328223221-w579qlvlex5if3dn
Fix location and format of signing key file.

* debian/upstream/signing-key.asc: Added.
* debian/upstream-signing-key.pgp: Removed.

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 © 2007-2008 Teddy Hogeborn & Björn Påhlsson
 
5
# Copyright © 2008-2013 Teddy Hogeborn
 
6
# Copyright © 2008-2013 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.4"
24
25
 
25
26
KEYDIR="/etc/keys/mandos"
26
 
KEYTYPE=DSA
27
 
KEYLENGTH=2048
28
 
SUBKEYTYPE=ELG-E
29
 
SUBKEYLENGTH=2048
30
 
KEYNAME="`hostname --fqdn`"
 
27
KEYTYPE=RSA
 
28
KEYLENGTH=4096
 
29
SUBKEYTYPE=RSA
 
30
SUBKEYLENGTH=4096
 
31
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
31
32
KEYEMAIL=""
32
 
KEYCOMMENT="Mandos client key"
 
33
KEYCOMMENT=""
33
34
KEYEXPIRE=0
34
35
FORCE=no
35
36
KEYCOMMENT_ORIG="$KEYCOMMENT"
36
37
mode=keygen
37
38
 
 
39
if [ ! -d "$KEYDIR" ]; then
 
40
    KEYDIR="/etc/mandos/keys"
 
41
fi
 
42
 
38
43
# Parse options
39
 
TEMP=`getopt --options vhd:t:l:n:e:c:x:f \
40
 
    --longoptions version,help,password,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
 
44
TEMP=`getopt --options vhpF:d:t:l:s:L:n:e:c:x:f \
 
45
    --longoptions version,help,password,passfile:,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
41
46
    --name "$0" -- "$@"`
42
47
 
43
48
help(){
49
54
       $basename [ OPTIONS ]
50
55
   Encrypted password creation:
51
56
       $basename { -p | --password } [ --name NAME ] [ --dir DIR]
 
57
       $basename { -F | --passfile } FILE [ --name NAME ] [ --dir DIR]
52
58
 
53
59
Key creation options:
54
60
  -v, --version         Show program's version number and exit
55
61
  -h, --help            Show this help message and exit
56
62
  -d DIR, --dir DIR     Target directory for key files
57
 
  -t TYPE, --type TYPE  Key type.  Default is DSA.
 
63
  -t TYPE, --type TYPE  Key type.  Default is RSA.
58
64
  -l BITS, --length BITS
59
 
                        Key length in bits.  Default is 2048.
 
65
                        Key length in bits.  Default is 4096.
60
66
  -s TYPE, --subtype TYPE
61
 
                        Subkey type.  Default is ELG-E.
 
67
                        Subkey type.  Default is RSA.
62
68
  -L BITS, --sublength BITS
63
 
                        Subkey length in bits.  Default is 2048.
 
69
                        Subkey length in bits.  Default is 4096.
64
70
  -n NAME, --name NAME  Name of key.  Default is the FQDN.
65
71
  -e ADDRESS, --email ADDRESS
66
72
                        Email address of key.  Default is empty.
67
73
  -c TEXT, --comment TEXT
68
 
                        Comment field for key.  The default value is
69
 
                        "Mandos client key".
 
74
                        Comment field for key.  The default is empty.
70
75
  -x TIME, --expire TIME
71
76
                        Key expire time.  Default is no expiration.
72
77
                        See gpg(1) for syntax.
73
 
  -f, --force           Force overwriting old keys.
 
78
  -f, --force           Force overwriting old key files.
74
79
 
75
80
Password creation options:
76
 
  -p, --password        Create an encrypted password using the keys in
 
81
  -p, --password        Create an encrypted password using the key in
 
82
                        the key directory.  All options other than
 
83
                        --dir and --name are ignored.
 
84
  -F FILE, --passfile FILE
 
85
                        Encrypt a password from FILE using the key in
77
86
                        the key directory.  All options other than
78
87
                        --dir and --name are ignored.
79
88
EOF
83
92
while :; do
84
93
    case "$1" in
85
94
        -p|--password) mode=password; shift;;
 
95
        -F|--passfile) mode=password; PASSFILE="$2"; shift 2;;
86
96
        -d|--dir) KEYDIR="$2"; shift 2;;
87
97
        -t|--type) KEYTYPE="$2"; shift 2;;
88
98
        -s|--subtype) SUBKEYTYPE="$2"; shift 2;;
136
146
        echo "Invalid key length" >&2
137
147
        exit 1
138
148
    fi
139
 
 
 
149
    
140
150
    if [ -z "$KEYEXPIRE" ]; then
141
151
        echo "Empty key expiration" >&2
142
152
        exit 1
161
171
    if [ -n "$KEYEMAIL" ]; then
162
172
        KEYEMAILLINE="Name-Email: $KEYEMAIL"
163
173
    fi
164
 
 
 
174
    
165
175
    # Create temporary gpg batch file
166
176
    BATCHFILE="`mktemp -t mandos-keygen-batch.XXXXXXXXXX`"
167
177
fi
181
191
shred --remove \"$RINGDIR\"/sec*;
182
192
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
183
193
rm --recursive --force \"$RINGDIR\";
184
 
stty echo; \
 
194
tty --quiet && stty echo; \
185
195
" EXIT
186
196
 
 
197
set -e
 
198
 
187
199
umask 077
188
200
 
189
201
if [ "$mode" = keygen ]; then
191
203
    cat >"$BATCHFILE" <<-EOF
192
204
        Key-Type: $KEYTYPE
193
205
        Key-Length: $KEYLENGTH
194
 
        #Key-Usage: encrypt,sign,auth
 
206
        Key-Usage: sign,auth
195
207
        Subkey-Type: $SUBKEYTYPE
196
208
        Subkey-Length: $SUBKEYLENGTH
197
 
        #Subkey-Usage: encrypt,sign,auth
 
209
        Subkey-Usage: encrypt
198
210
        Name-Real: $KEYNAME
199
211
        $KEYCOMMENTLINE
200
212
        $KEYEMAILLINE
206
218
        %commit
207
219
        EOF
208
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
    
 
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
209
236
    # Generate a new key in the key rings
210
237
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
211
238
        --homedir "$RINGDIR" --trust-model always \
212
239
        --gen-key "$BATCHFILE"
213
240
    rm --force "$BATCHFILE"
214
241
    
 
242
    if tty --quiet; then
 
243
        echo -n "Finished: "
 
244
        date
 
245
    fi
 
246
    
215
247
    # Backup any old key files
216
248
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
217
249
        2>/dev/null; then
231
263
        FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
232
264
    fi
233
265
    
234
 
    # Export keys from key rings to key files
 
266
    # Export key from key rings to key files
235
267
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
236
268
        --homedir "$RINGDIR" --armor --export-options export-minimal \
237
269
        --comment "$FILECOMMENT" --output "$SECKEYFILE" \
242
274
fi
243
275
 
244
276
if [ "$mode" = password ]; then
245
 
    # Import keys into temporary key rings
 
277
    # Import key into temporary key rings
246
278
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
247
279
        --homedir "$RINGDIR" --trust-model always --armor \
248
280
        --import "$SECKEYFILE"
261
293
    
262
294
    FILECOMMENT="Encrypted password for a Mandos client"
263
295
    
264
 
    stty -echo
265
 
    echo -n "Enter passphrase: " >&2
266
 
    head --lines=1 | tr --delete '\n' \
267
 
        | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
268
 
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
269
 
        --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
270
 
        > "$SECFILE"
271
 
    echo >&2
272
 
    stty echo
 
296
    while [ ! -s "$SECFILE" ]; do
 
297
        if [ -n "$PASSFILE" ]; then
 
298
            cat "$PASSFILE"
 
299
        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
 
327
        fi
 
328
    done
273
329
    
274
330
    cat <<-EOF
275
331
        [$KEYNAME]
276
332
        host = $KEYNAME
277
333
        fingerprint = $FINGERPRINT
278
334
        secret =
279
 
EOF
 
335
        EOF
280
336
    sed --quiet --expression='
281
337
        /^-----BEGIN PGP MESSAGE-----$/,/^-----END PGP MESSAGE-----$/{
282
338
            /^$/,${