/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: 2017-08-20 14:14:14 UTC
  • Revision ID: teddy@recompile.se-20170820141414-m034xuebg7ccaeui
Add some more restrictions to the systemd service file.

* mandos.service ([Service]/ProtectKernelTunables): New; set to "yes".
  ([Service]/ProtectControlGroups): - '' -

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-2017 Teddy Hogeborn
 
6
# Copyright © 2008-2017 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.7.15"
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
 
36
SSH=yes
35
37
KEYCOMMENT_ORIG="$KEYCOMMENT"
36
38
mode=keygen
37
39
 
40
42
fi
41
43
 
42
44
# Parse options
43
 
TEMP=`getopt --options vhd:t:l:n:e:c:x:f \
44
 
    --longoptions version,help,password,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
 
45
TEMP=`getopt --options vhpF:d:t:l:s:L:n:e:c:x:fS \
 
46
    --longoptions version,help,password,passfile:,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force,no-ssh \
45
47
    --name "$0" -- "$@"`
46
48
 
47
49
help(){
48
 
basename="`basename $0`"
 
50
basename="`basename "$0"`"
49
51
cat <<EOF
50
52
Usage: $basename [ -v | --version ]
51
53
       $basename [ -h | --help ]
53
55
       $basename [ OPTIONS ]
54
56
   Encrypted password creation:
55
57
       $basename { -p | --password } [ --name NAME ] [ --dir DIR]
 
58
       $basename { -F | --passfile } FILE [ --name NAME ] [ --dir DIR]
56
59
 
57
60
Key creation options:
58
61
  -v, --version         Show program's version number and exit
59
62
  -h, --help            Show this help message and exit
60
63
  -d DIR, --dir DIR     Target directory for key files
61
 
  -t TYPE, --type TYPE  Key type.  Default is DSA.
 
64
  -t TYPE, --type TYPE  Key type.  Default is RSA.
62
65
  -l BITS, --length BITS
63
 
                        Key length in bits.  Default is 2048.
 
66
                        Key length in bits.  Default is 4096.
64
67
  -s TYPE, --subtype TYPE
65
 
                        Subkey type.  Default is ELG-E.
 
68
                        Subkey type.  Default is RSA.
66
69
  -L BITS, --sublength BITS
67
 
                        Subkey length in bits.  Default is 2048.
 
70
                        Subkey length in bits.  Default is 4096.
68
71
  -n NAME, --name NAME  Name of key.  Default is the FQDN.
69
72
  -e ADDRESS, --email ADDRESS
70
73
                        Email address of key.  Default is empty.
71
74
  -c TEXT, --comment TEXT
72
 
                        Comment field for key.  The default value is
73
 
                        "Mandos client key".
 
75
                        Comment field for key.  The default is empty.
74
76
  -x TIME, --expire TIME
75
77
                        Key expire time.  Default is no expiration.
76
78
                        See gpg(1) for syntax.
77
 
  -f, --force           Force overwriting old keys.
 
79
  -f, --force           Force overwriting old key files.
78
80
 
79
81
Password creation options:
80
 
  -p, --password        Create an encrypted password using the keys in
81
 
                        the key directory.  All options other than
82
 
                        --dir and --name are ignored.
 
82
  -p, --password        Create an encrypted password using the key in
 
83
                        the key directory.  All options other than
 
84
                        --dir and --name are ignored.
 
85
  -F FILE, --passfile FILE
 
86
                        Encrypt a password from FILE using the key in
 
87
                        the key directory.  All options other than
 
88
                        --dir and --name are ignored.
 
89
  -S, --no-ssh          Don't get SSH key or set "checker" option.
83
90
EOF
84
91
}
85
92
 
87
94
while :; do
88
95
    case "$1" in
89
96
        -p|--password) mode=password; shift;;
 
97
        -F|--passfile) mode=password; PASSFILE="$2"; shift 2;;
90
98
        -d|--dir) KEYDIR="$2"; shift 2;;
91
99
        -t|--type) KEYTYPE="$2"; shift 2;;
92
100
        -s|--subtype) SUBKEYTYPE="$2"; shift 2;;
97
105
        -c|--comment) KEYCOMMENT="$2"; shift 2;;
98
106
        -x|--expire) KEYEXPIRE="$2"; shift 2;;
99
107
        -f|--force) FORCE=yes; shift;;
 
108
        -S|--no-ssh) SSH=no; shift;;
100
109
        -v|--version) echo "$0 $VERSION"; exit;;
101
110
        -h|--help) help; exit;;
102
111
        --) shift; break;;
104
113
    esac
105
114
done
106
115
if [ "$#" -gt 0 ]; then
107
 
    echo "Unknown arguments: '$@'" >&2
 
116
    echo "Unknown arguments: '$*'" >&2
108
117
    exit 1
109
118
fi
110
119
 
140
149
        echo "Invalid key length" >&2
141
150
        exit 1
142
151
    fi
143
 
 
 
152
    
144
153
    if [ -z "$KEYEXPIRE" ]; then
145
154
        echo "Empty key expiration" >&2
146
155
        exit 1
152
161
        [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|*) FORCE=0;;
153
162
    esac
154
163
    
155
 
    if [ \( -e "$SECKEYFILE" -o -e "$PUBKEYFILE" \) \
156
 
        -a "$FORCE" -eq 0 ]; then
 
164
    if { [ -e "$SECKEYFILE" ] || [ -e "$PUBKEYFILE" ]; } \
 
165
        && [ "$FORCE" -eq 0 ]; then
157
166
        echo "Refusing to overwrite old key files; use --force" >&2
158
167
        exit 1
159
168
    fi
165
174
    if [ -n "$KEYEMAIL" ]; then
166
175
        KEYEMAILLINE="Name-Email: $KEYEMAIL"
167
176
    fi
168
 
 
 
177
    
169
178
    # Create temporary gpg batch file
170
179
    BATCHFILE="`mktemp -t mandos-keygen-batch.XXXXXXXXXX`"
171
180
fi
182
191
trap "
183
192
set +e; \
184
193
test -n \"$SECFILE\" && shred --remove \"$SECFILE\"; \
185
 
shred --remove \"$RINGDIR\"/sec*;
 
194
shred --remove \"$RINGDIR\"/sec* 2>/dev/null;
186
195
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
187
196
rm --recursive --force \"$RINGDIR\";
188
 
stty echo; \
 
197
tty --quiet && stty echo; \
189
198
" EXIT
190
199
 
 
200
set -e
 
201
 
191
202
umask 077
192
203
 
193
204
if [ "$mode" = keygen ]; then
195
206
    cat >"$BATCHFILE" <<-EOF
196
207
        Key-Type: $KEYTYPE
197
208
        Key-Length: $KEYLENGTH
198
 
        #Key-Usage: encrypt,sign,auth
 
209
        Key-Usage: sign,auth
199
210
        Subkey-Type: $SUBKEYTYPE
200
211
        Subkey-Length: $SUBKEYLENGTH
201
 
        #Subkey-Usage: encrypt,sign,auth
 
212
        Subkey-Usage: encrypt
202
213
        Name-Real: $KEYNAME
203
214
        $KEYCOMMENTLINE
204
215
        $KEYEMAILLINE
207
218
        #Handle: <no-spaces>
208
219
        #%pubring pubring.gpg
209
220
        #%secring secring.gpg
 
221
        %no-protection
210
222
        %commit
211
223
        EOF
212
224
    
 
225
    if tty --quiet; then
 
226
        cat <<-EOF
 
227
        Note: Due to entropy requirements, key generation could take
 
228
        anything from a few minutes to SEVERAL HOURS.  Please be
 
229
        patient and/or supply the system with more entropy if needed.
 
230
        EOF
 
231
        echo -n "Started: "
 
232
        date
 
233
    fi
 
234
    
 
235
    # Make sure trustdb.gpg exists;
 
236
    # this is a workaround for Debian bug #737128
 
237
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
238
        --homedir "$RINGDIR" \
 
239
        --import-ownertrust < /dev/null
213
240
    # Generate a new key in the key rings
214
241
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
215
242
        --homedir "$RINGDIR" --trust-model always \
216
243
        --gen-key "$BATCHFILE"
217
244
    rm --force "$BATCHFILE"
218
245
    
 
246
    if tty --quiet; then
 
247
        echo -n "Finished: "
 
248
        date
 
249
    fi
 
250
    
219
251
    # Backup any old key files
220
252
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
221
253
        2>/dev/null; then
235
267
        FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
236
268
    fi
237
269
    
238
 
    # Export keys from key rings to key files
 
270
    # Export key from key rings to key files
239
271
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
240
272
        --homedir "$RINGDIR" --armor --export-options export-minimal \
241
273
        --comment "$FILECOMMENT" --output "$SECKEYFILE" \
246
278
fi
247
279
 
248
280
if [ "$mode" = password ]; then
249
 
    # Import keys into temporary key rings
 
281
    
 
282
    # Make SSH be 0 or 1
 
283
    case "$SSH" in
 
284
        [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]) SSH=1;;
 
285
        [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|*) SSH=0;;
 
286
    esac
 
287
    
 
288
    if [ $SSH -eq 1 ]; then
 
289
        for ssh_keytype in ecdsa-sha2-nistp256 ed25519 rsa; do
 
290
            set +e
 
291
            ssh_fingerprint="`ssh-keyscan -t $ssh_keytype localhost 2>/dev/null`"
 
292
            err=$?
 
293
            set -e
 
294
            if [ $err -ne 0 ]; then
 
295
                ssh_fingerprint=""
 
296
                continue
 
297
            fi
 
298
            if [ -n "$ssh_fingerprint" ]; then
 
299
                ssh_fingerprint="${ssh_fingerprint#localhost }"
 
300
                break
 
301
            fi
 
302
        done
 
303
    fi
 
304
    
 
305
    # Import key into temporary key rings
250
306
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
251
307
        --homedir "$RINGDIR" --trust-model always --armor \
252
308
        --import "$SECKEYFILE"
256
312
    
257
313
    # Get fingerprint of key
258
314
    FINGERPRINT="`gpg --quiet --batch --no-tty --no-options \
259
 
        --enable-dsa2 --homedir \"$RINGDIR\" --trust-model always \
 
315
        --enable-dsa2 --homedir "$RINGDIR" --trust-model always \
260
316
        --fingerprint --with-colons \
261
317
        | sed --quiet \
262
318
        --expression='/^fpr:/{s/^fpr:.*:\\([0-9A-Z]*\\):\$/\\1/p;q}'`"
265
321
    
266
322
    FILECOMMENT="Encrypted password for a Mandos client"
267
323
    
268
 
    stty -echo
269
 
    echo -n "Enter passphrase: " >&2
270
 
    head --lines=1 | tr --delete '\n' \
271
 
        | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
272
 
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
273
 
        --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
274
 
        > "$SECFILE"
275
 
    echo >&2
276
 
    stty echo
 
324
    while [ ! -s "$SECFILE" ]; do
 
325
        if [ -n "$PASSFILE" ]; then
 
326
            cat "$PASSFILE"
 
327
        else
 
328
            tty --quiet && stty -echo
 
329
            echo -n "Enter passphrase: " >/dev/tty
 
330
            read -r first
 
331
            tty --quiet && echo >&2
 
332
            echo -n "Repeat passphrase: " >/dev/tty
 
333
            read -r second
 
334
            if tty --quiet; then
 
335
                echo >&2
 
336
                stty echo
 
337
            fi
 
338
            if [ "$first" != "$second" ]; then
 
339
                echo "Passphrase mismatch" >&2
 
340
                touch "$RINGDIR"/mismatch
 
341
            else
 
342
                echo -n "$first"
 
343
            fi
 
344
        fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
345
            --homedir "$RINGDIR" --trust-model always --armor \
 
346
            --encrypt --sign --recipient "$FINGERPRINT" --comment \
 
347
            "$FILECOMMENT" > "$SECFILE"
 
348
        if [ -e "$RINGDIR"/mismatch ]; then
 
349
            rm --force "$RINGDIR"/mismatch
 
350
            if tty --quiet; then
 
351
                > "$SECFILE"
 
352
            else
 
353
                exit 1
 
354
            fi
 
355
        fi
 
356
    done
277
357
    
278
358
    cat <<-EOF
279
359
        [$KEYNAME]
280
360
        host = $KEYNAME
281
361
        fingerprint = $FINGERPRINT
282
362
        secret =
283
 
EOF
 
363
        EOF
284
364
    sed --quiet --expression='
285
365
        /^-----BEGIN PGP MESSAGE-----$/,/^-----END PGP MESSAGE-----$/{
286
366
            /^$/,${
290
370
                /^[^-]/s/^/    /p
291
371
            }
292
372
        }' < "$SECFILE"
 
373
    if [ -n "$ssh_fingerprint" ]; then
 
374
        echo 'checker = ssh-keyscan -t '"$ssh_keytype"' %%(host)s 2>/dev/null | grep --fixed-strings --line-regexp --quiet --regexp=%%(host)s" %(ssh_fingerprint)s"'
 
375
        echo "ssh_fingerprint = ${ssh_fingerprint}"
 
376
    fi
293
377
fi
294
378
 
295
379
trap - EXIT
300
384
    shred --remove "$SECFILE"
301
385
fi
302
386
# Remove the key rings
303
 
shred --remove "$RINGDIR"/sec*
 
387
shred --remove "$RINGDIR"/sec* 2>/dev/null
304
388
rm --recursive --force "$RINGDIR"