/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: 2008-12-10 01:26:02 UTC
  • mfrom: (237.1.2 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20081210012602-vhz3h75xkj24t340
First version of a somewhat complete D-Bus server interface.  Also
change user/group name to "_mandos".

* debian/mandos.postinst: Rename old "mandos" user and group to
                          "_mandos"; create "_mandos" user and group
                          if none exist.
* debian/mandos-client.postinst: - '' -

* initramfs-tools-hook: Try "_mandos" before "mandos" as user and
                        group name.

* mandos (_datetime_to_dbus_struct): New; was previously local.
  (Client.started): Renamed to "last_started".  All users changed.
  (Client.started): New; boolean.
  (Client.dbus_object_path): New.
  (Client.check_command): Renamed to "checker_command".  All users
                          changed.
  (Client.__init__): Set and use "self.dbus_object_path".  Set
                     "self.started".
  (Client.start): Update "self.started".  Emit "self.PropertyChanged"
                  signals for both "started" and "last_started".
  (Client.stop): Update "self.started".  Emit "self.PropertyChanged"
                 signal for "started".
  (Client.checker_callback): Take additional "command" argument.  All
                             callers changed. Emit
                             "self.PropertyChanged" signal.
  (Client.bump_timeout): Emit "self.PropertyChanged" signal for
                         "last_checked_ok".
  (Client.start_checker): Emit "self.PropertyChanged" signal for
                          "checker_running".
  (Client.stop_checker): Emit "self.PropertyChanged" signal for
                         "checker_running".
  (Client.still_valid): Bug fix: use "getattr(self, started, False)"
                        instead of "self.started" in case this client
                        object is so new that the "started" attribute
                        has not been created yet.
  (Client.IntervalChanged, Client.CheckerIsRunning, Client.GetChecker,
  Client.GetCreated, Client.GetFingerprint, Client.GetHost,
  Client.GetInterval, Client.GetName, Client.GetStarted,
  Client.GetTimeout, Client.StateChanged, Client.TimeoutChanged):
  Removed; all callers changed.
  (Client.CheckerCompleted): Add "condition" and "command" arguments.
                             All callers changed.
  (Client.GetAllProperties, Client.PropertyChanged): New.
  (Client.StillValid): Renamed to "IsStillValid".
  (Client.StartChecker): Changed to its own function to avoid the
                         return value from "Client.start_checker()".
  (Client.Stop): Changed to its own function to avoid the return value
                 from "Client.stop()".
  (main): Try "_mandos" before "mandos" as user and group name.
          Removed inner function "remove_from_clients".  New inner
          class "MandosServer".

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 Teddy Hogeborn
 
6
# Copyright © 2008 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.2"
24
25
 
25
 
KEYDIR="/etc/mandos"
 
26
KEYDIR="/etc/keys/mandos"
26
27
KEYTYPE=DSA
27
 
KEYLENGTH=1024
 
28
KEYLENGTH=2048
28
29
SUBKEYTYPE=ELG-E
29
30
SUBKEYLENGTH=2048
30
 
KEYNAME="`hostname --fqdn`"
 
31
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
31
32
KEYEMAIL=""
32
33
KEYCOMMENT="Mandos client key"
33
34
KEYEXPIRE=0
34
35
FORCE=no
35
36
KEYCOMMENT_ORIG="$KEYCOMMENT"
 
37
mode=keygen
 
38
 
 
39
if [ ! -d "$KEYDIR" ]; then
 
40
    KEYDIR="/etc/mandos/keys"
 
41
fi
36
42
 
37
43
# Parse options
38
 
TEMP=`getopt --options vhd:t:l:n:e:c:x:f \
39
 
    --longoptions version,help,dir:,type:,length:,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 \
40
46
    --name "$0" -- "$@"`
41
47
 
42
48
help(){
 
49
basename="`basename $0`"
43
50
cat <<EOF
44
 
Usage: `basename $0` [options]
 
51
Usage: $basename [ -v | --version ]
 
52
       $basename [ -h | --help ]
 
53
   Key creation:
 
54
       $basename [ OPTIONS ]
 
55
   Encrypted password creation:
 
56
       $basename { -p | --password } [ --name NAME ] [ --dir DIR]
 
57
       $basename { -F | --passfile } FILE [ --name NAME ] [ --dir DIR]
45
58
 
46
 
Options:
 
59
Key creation options:
47
60
  -v, --version         Show program's version number and exit
48
61
  -h, --help            Show this help message and exit
49
62
  -d DIR, --dir DIR     Target directory for key files
50
63
  -t TYPE, --type TYPE  Key type.  Default is DSA.
51
64
  -l BITS, --length BITS
52
 
                        Key length in bits.  Default is 1024.
 
65
                        Key length in bits.  Default is 2048.
53
66
  -s TYPE, --subtype TYPE
54
67
                        Subkey type.  Default is ELG-E.
55
68
  -L BITS, --sublength BITS
56
69
                        Subkey length in bits.  Default is 2048.
57
70
  -n NAME, --name NAME  Name of key.  Default is the FQDN.
58
 
  -e EMAIL, --email EMAIL
 
71
  -e ADDRESS, --email ADDRESS
59
72
                        Email address of key.  Default is empty.
60
 
  -c COMMENT, --comment COMMENT
 
73
  -c TEXT, --comment TEXT
61
74
                        Comment field for key.  The default value is
62
75
                        "Mandos client key".
63
76
  -x TIME, --expire TIME
64
77
                        Key expire time.  Default is no expiration.
65
78
                        See gpg(1) for syntax.
66
 
  -f, --force           Force overwriting old keys.
 
79
  -f, --force           Force overwriting old key files.
 
80
 
 
81
Password creation options:
 
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.
67
89
EOF
68
90
}
69
91
 
70
92
eval set -- "$TEMP"
71
93
while :; do
72
94
    case "$1" in
 
95
        -p|--password) mode=password; shift;;
 
96
        -F|--passfile) mode=password; PASSFILE="$2"; shift 2;;
73
97
        -d|--dir) KEYDIR="$2"; shift 2;;
74
98
        -t|--type) KEYTYPE="$2"; shift 2;;
75
99
        -s|--subtype) SUBKEYTYPE="$2"; shift 2;;
95
119
PUBKEYFILE="$KEYDIR/pubkey.txt"
96
120
 
97
121
# Check for some invalid values
98
 
if [ -d "$KEYDIR" ]; then :; else
 
122
if [ ! -d "$KEYDIR" ]; then
99
123
    echo "$KEYDIR not a directory" >&2
100
124
    exit 1
101
125
fi
102
 
if [ -w "$KEYDIR" ]; then :; else
103
 
    echo "Directory $KEYDIR not writeable" >&2
104
 
    exit 1
105
 
fi
106
 
 
107
 
if [ -z "$KEYTYPE" ]; then
108
 
    echo "Empty key type" >&2
109
 
    exit 1
110
 
fi
111
 
 
112
 
if [ -z "$KEYNAME" ]; then
113
 
    echo "Empty key name" >&2
114
 
    exit 1
115
 
fi
116
 
 
117
 
if [ -z "$KEYLENGTH" ] || [ "$KEYLENGTH" -lt 512 ]; then
118
 
    echo "Invalid key length" >&2
119
 
    exit 1
120
 
fi
121
 
 
122
 
if [ -z "$KEYEXPIRE" ]; then
123
 
    echo "Empty key expiration" >&2
124
 
    exit 1
125
 
fi
126
 
 
127
 
# Make FORCE be 0 or 1
128
 
case "$FORCE" in
129
 
    [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]) FORCE=1;;
130
 
    [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|*) FORCE=0;;
131
 
esac
132
 
 
133
 
if { [ -e "$SECKEYFILE" ] || [ -e "$PUBKEYFILE" ]; } \
134
 
    && [ "$FORCE" -eq 0 ]; then
135
 
    echo "Refusing to overwrite old key files; use --force" >&2
136
 
    exit 1
137
 
fi
138
 
 
139
 
# Set lines for GnuPG batch file
140
 
if [ -n "$KEYCOMMENT" ]; then
141
 
    KEYCOMMENTLINE="Name-Comment: $KEYCOMMENT"
142
 
fi
143
 
if [ -n "$KEYEMAIL" ]; then
144
 
    KEYEMAILLINE="Name-Email: $KEYEMAIL"
145
 
fi
146
 
 
147
 
# Create temp files
148
 
BATCHFILE="`mktemp -t mandos-gpg-batch.XXXXXXXXXX`"
149
 
SECRING="`mktemp -t mandos-gpg-secring.XXXXXXXXXX`"
150
 
PUBRING="`mktemp -t mandos-gpg-pubring.XXXXXXXXXX`"
 
126
if [ ! -r "$KEYDIR" ]; then
 
127
    echo "Directory $KEYDIR not readable" >&2
 
128
    exit 1
 
129
fi
 
130
 
 
131
if [ "$mode" = keygen ]; then
 
132
    if [ ! -w "$KEYDIR" ]; then
 
133
        echo "Directory $KEYDIR not writeable" >&2
 
134
        exit 1
 
135
    fi
 
136
    if [ -z "$KEYTYPE" ]; then
 
137
        echo "Empty key type" >&2
 
138
        exit 1
 
139
    fi
 
140
    
 
141
    if [ -z "$KEYNAME" ]; then
 
142
        echo "Empty key name" >&2
 
143
        exit 1
 
144
    fi
 
145
    
 
146
    if [ -z "$KEYLENGTH" ] || [ "$KEYLENGTH" -lt 512 ]; then
 
147
        echo "Invalid key length" >&2
 
148
        exit 1
 
149
    fi
 
150
 
 
151
    if [ -z "$KEYEXPIRE" ]; then
 
152
        echo "Empty key expiration" >&2
 
153
        exit 1
 
154
    fi
 
155
    
 
156
    # Make FORCE be 0 or 1
 
157
    case "$FORCE" in
 
158
        [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]) FORCE=1;;
 
159
        [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|*) FORCE=0;;
 
160
    esac
 
161
    
 
162
    if [ \( -e "$SECKEYFILE" -o -e "$PUBKEYFILE" \) \
 
163
        -a "$FORCE" -eq 0 ]; then
 
164
        echo "Refusing to overwrite old key files; use --force" >&2
 
165
        exit 1
 
166
    fi
 
167
    
 
168
    # Set lines for GnuPG batch file
 
169
    if [ -n "$KEYCOMMENT" ]; then
 
170
        KEYCOMMENTLINE="Name-Comment: $KEYCOMMENT"
 
171
    fi
 
172
    if [ -n "$KEYEMAIL" ]; then
 
173
        KEYEMAILLINE="Name-Email: $KEYEMAIL"
 
174
    fi
 
175
 
 
176
    # Create temporary gpg batch file
 
177
    BATCHFILE="`mktemp -t mandos-keygen-batch.XXXXXXXXXX`"
 
178
fi
 
179
 
 
180
if [ "$mode" = password ]; then
 
181
    # Create temporary encrypted password file
 
182
    SECFILE="`mktemp -t mandos-keygen-secfile.XXXXXXXXXX`"
 
183
fi
 
184
 
 
185
# Create temporary key ring directory
 
186
RINGDIR="`mktemp -d -t mandos-keygen-keyrings.XXXXXXXXXX`"
151
187
 
152
188
# Remove temporary files on exit
153
189
trap "
154
190
set +e; \
155
 
rm --force $PUBRING $BATCHFILE; \
156
 
shred --remove $SECRING; \
 
191
test -n \"$SECFILE\" && shred --remove \"$SECFILE\"; \
 
192
shred --remove \"$RINGDIR\"/sec*;
 
193
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
 
194
rm --recursive --force \"$RINGDIR\";
157
195
stty echo; \
158
196
" EXIT
159
197
 
160
 
# Create batch file for GnuPG
161
 
cat >"$BATCHFILE" <<EOF
162
 
Key-Type: $KEYTYPE
163
 
Key-Length: $KEYLENGTH
164
 
#Key-Usage: encrypt,sign,auth
165
 
Subkey-Type: $SUBKEYTYPE
166
 
Subkey-Length: $SUBKEYLENGTH
167
 
#Subkey-Usage: encrypt,sign,auth
168
 
Name-Real: $KEYNAME
169
 
$KEYCOMMENTLINE
170
 
$KEYEMAILLINE
171
 
Expire-Date: $KEYEXPIRE
172
 
#Preferences: <string>
173
 
#Handle: <no-spaces>
174
 
%pubring $PUBRING
175
 
%secring $SECRING
176
 
%commit
177
 
EOF
178
 
 
179
 
umask 027
180
 
 
181
 
# Generate a new key in the key rings
182
 
gpg --no-random-seed-file --quiet --batch --no-tty \
183
 
    --no-default-keyring --no-options --enable-dsa2 \
184
 
    --secret-keyring "$SECRING" --keyring "$PUBRING" \
185
 
    --gen-key "$BATCHFILE"
186
 
rm --force "$BATCHFILE"
187
 
 
188
 
# Backup any old key files
189
 
if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
190
 
    2>/dev/null; then
191
 
    shred --remove "$SECKEYFILE"
192
 
fi
193
 
if cp --backup=numbered --force "$PUBKEYFILE" "$PUBKEYFILE" \
194
 
    2>/dev/null; then
195
 
    rm --force "$PUBKEYFILE"
196
 
fi
197
 
 
198
 
FILECOMMENT="Mandos client key for $KEYNAME"
199
 
if [ "$KEYCOMMENT" != "$KEYCOMMENT_ORIG" ]; then
200
 
    FILECOMMENT="$FILECOMMENT ($KEYCOMMENT)"
201
 
fi
202
 
 
203
 
if [ -n "$KEYEMAIL" ]; then
204
 
    FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
205
 
fi
206
 
 
207
 
# Export keys from key rings to key files
208
 
gpg --no-random-seed-file --quiet --batch --no-tty --armor \
209
 
    --no-default-keyring --no-options --enable-dsa2 \
210
 
    --secret-keyring "$SECRING" --keyring "$PUBRING" \
211
 
    --export-options export-minimal --comment "$FILECOMMENT" \
212
 
    --output "$SECKEYFILE" --export-secret-keys
213
 
gpg --no-random-seed-file --quiet --batch --no-tty --armor \
214
 
    --no-default-keyring --no-options --enable-dsa2 \
215
 
    --secret-keyring "$SECRING" --keyring "$PUBRING" \
216
 
    --export-options export-minimal --comment "$FILECOMMENT" \
217
 
    --output "$PUBKEYFILE" --export
 
198
umask 077
 
199
 
 
200
if [ "$mode" = keygen ]; then
 
201
    # Create batch file for GnuPG
 
202
    cat >"$BATCHFILE" <<-EOF
 
203
        Key-Type: $KEYTYPE
 
204
        Key-Length: $KEYLENGTH
 
205
        #Key-Usage: encrypt,sign,auth
 
206
        Subkey-Type: $SUBKEYTYPE
 
207
        Subkey-Length: $SUBKEYLENGTH
 
208
        #Subkey-Usage: encrypt,sign,auth
 
209
        Name-Real: $KEYNAME
 
210
        $KEYCOMMENTLINE
 
211
        $KEYEMAILLINE
 
212
        Expire-Date: $KEYEXPIRE
 
213
        #Preferences: <string>
 
214
        #Handle: <no-spaces>
 
215
        #%pubring pubring.gpg
 
216
        #%secring secring.gpg
 
217
        %commit
 
218
        EOF
 
219
    
 
220
    # Generate a new key in the key rings
 
221
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
222
        --homedir "$RINGDIR" --trust-model always \
 
223
        --gen-key "$BATCHFILE"
 
224
    rm --force "$BATCHFILE"
 
225
    
 
226
    # Backup any old key files
 
227
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
 
228
        2>/dev/null; then
 
229
        shred --remove "$SECKEYFILE"
 
230
    fi
 
231
    if cp --backup=numbered --force "$PUBKEYFILE" "$PUBKEYFILE" \
 
232
        2>/dev/null; then
 
233
        rm --force "$PUBKEYFILE"
 
234
    fi
 
235
    
 
236
    FILECOMMENT="Mandos client key for $KEYNAME"
 
237
    if [ "$KEYCOMMENT" != "$KEYCOMMENT_ORIG" ]; then
 
238
        FILECOMMENT="$FILECOMMENT ($KEYCOMMENT)"
 
239
    fi
 
240
    
 
241
    if [ -n "$KEYEMAIL" ]; then
 
242
        FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
 
243
    fi
 
244
    
 
245
    # Export key from key rings to key files
 
246
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
247
        --homedir "$RINGDIR" --armor --export-options export-minimal \
 
248
        --comment "$FILECOMMENT" --output "$SECKEYFILE" \
 
249
        --export-secret-keys
 
250
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
251
        --homedir "$RINGDIR" --armor --export-options export-minimal \
 
252
        --comment "$FILECOMMENT" --output "$PUBKEYFILE" --export
 
253
fi
 
254
 
 
255
if [ "$mode" = password ]; then
 
256
    # Import key into temporary key rings
 
257
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
258
        --homedir "$RINGDIR" --trust-model always --armor \
 
259
        --import "$SECKEYFILE"
 
260
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
261
        --homedir "$RINGDIR" --trust-model always --armor \
 
262
        --import "$PUBKEYFILE"
 
263
    
 
264
    # Get fingerprint of key
 
265
    FINGERPRINT="`gpg --quiet --batch --no-tty --no-options \
 
266
        --enable-dsa2 --homedir \"$RINGDIR\" --trust-model always \
 
267
        --fingerprint --with-colons \
 
268
        | sed --quiet \
 
269
        --expression='/^fpr:/{s/^fpr:.*:\\([0-9A-Z]*\\):\$/\\1/p;q}'`"
 
270
    
 
271
    test -n "$FINGERPRINT"
 
272
    
 
273
    FILECOMMENT="Encrypted password for a Mandos client"
 
274
    
 
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
            false
 
288
        else
 
289
            echo -n "$first"
 
290
        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
    status="${PIPESTATUS[0]}"
 
296
    if [ "$status" -ne 0 ]; then
 
297
        exit "$status"
 
298
    fi
 
299
    
 
300
    cat <<-EOF
 
301
        [$KEYNAME]
 
302
        host = $KEYNAME
 
303
        fingerprint = $FINGERPRINT
 
304
        secret =
 
305
        EOF
 
306
    sed --quiet --expression='
 
307
        /^-----BEGIN PGP MESSAGE-----$/,/^-----END PGP MESSAGE-----$/{
 
308
            /^$/,${
 
309
                # Remove 24-bit Radix-64 checksum
 
310
                s/=....$//
 
311
                # Indent four spaces
 
312
                /^[^-]/s/^/    /p
 
313
            }
 
314
        }' < "$SECFILE"
 
315
fi
218
316
 
219
317
trap - EXIT
220
318
 
 
319
set +e
 
320
# Remove the password file, if any
 
321
if [ -n "$SECFILE" ]; then
 
322
    shred --remove "$SECFILE"
 
323
fi
221
324
# Remove the key rings
222
 
shred --remove "$SECRING"
223
 
rm --force "$PUBRING"
 
325
shred --remove "$RINGDIR"/sec*
 
326
rm --recursive --force "$RINGDIR"