/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-08-12 19:47:50 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080812194750-uebbpk9ynxt3sjnt
* initramfs-tools-hook (gpg): Added "--no-random-seed-file" and
                              "--no-default-keyring".  Bug fix: moved
                              "--import" to end.

* mandos-keygen (gpg): Added "--no-options".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
 
1
#!/bin/sh
2
2
3
 
# Mandos key generator - create a new OpenPGP key for a Mandos client
 
3
# Mandos key generator - create new OpenPGP keys for Mandos clients
4
4
5
5
# Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
6
6
20
20
# Contact the authors at <mandos@fukt.bsnet.se>.
21
21
22
22
 
23
 
VERSION="1.0"
24
 
 
25
23
KEYDIR="/etc/mandos"
26
24
KEYTYPE=DSA
27
25
KEYLENGTH=1024
33
31
KEYCOMMENT_ORIG="$KEYCOMMENT"
34
32
 
35
33
# Parse options
36
 
TEMP=`getopt --options vhd:t:l:n:e:c:x:f \
37
 
    --longoptions version,help,dir:,type:,length:,name:,email:,comment:,expire:,force \
 
34
TEMP=`getopt --options d:t:l:n:e:c:x:f \
 
35
    --longoptions dir:,type:,length:,name:,email:,comment:,expire:,force \
38
36
    --name "$0" -- "$@"`
39
37
 
40
 
help(){
41
 
cat <<EOF
42
 
Usage: `basename $0` [options]
43
 
 
44
 
Options:
45
 
  -v, --version         Show program's version number and exit
46
 
  -h, --help            Show this help message and exit
47
 
  -d DIR, --dir DIR     Target directory for key files
48
 
  -t TYPE, --type TYPE  Key type.  Default is DSA.
49
 
  -l BITS, --length BITS
50
 
                        Key length in bits.  Default is 1024.
51
 
  -n NAME, --name NAME  Name of key.  Default is the FQDN.
52
 
  -e EMAIL, --email EMAIL
53
 
                        Email address of key.  Default is empty.
54
 
  -c COMMENT, --comment COMMENT
55
 
                        Comment field for key.  The default value is
56
 
                        "Mandos client key".
57
 
  -x TIME, --expire TIME
58
 
                        Key expire time.  Default is no expiration.
59
 
                        See gpg(1) for syntax.
60
 
  -f, --force           Force overwriting old keys.
61
 
EOF
62
 
}
63
 
 
64
38
eval set -- "$TEMP"
65
39
while :; do
66
40
    case "$1" in
72
46
        -c|--comment) KEYCOMMENT="$2"; shift 2;;
73
47
        -x|--expire) KEYCOMMENT="$2"; shift 2;;
74
48
        -f|--force) FORCE=yes; shift;;
75
 
        -v|--version) echo "$0 $VERSION"; exit;;
76
 
        -h|--help) help; exit;;
77
49
        --) shift; break;;
78
50
        *) echo "Internal error" >&2; exit 1;;
79
51
    esac
128
100
    exit 1
129
101
fi
130
102
 
131
 
# Set lines for GnuPG batch file
 
103
# Set lines for GPG batch file
132
104
if [ -n "$KEYCOMMENT" ]; then
133
105
    KEYCOMMENTLINE="Name-Comment: $KEYCOMMENT"
134
106
fi
141
113
SECRING="`mktemp -t mandos-gpg-secring.XXXXXXXXXX`"
142
114
PUBRING="`mktemp -t mandos-gpg-pubring.XXXXXXXXXX`"
143
115
 
144
 
# Remove temporary files on exit
145
116
trap "rm --force $PUBRING $BATCHFILE; shred --remove $SECRING" EXIT
146
117
 
147
 
# Create batch file for GnuPG
 
118
# Create batch file for GPG
148
119
cat >"$BATCHFILE" <<EOF
149
120
Key-Type: $KEYTYPE
150
121
Key-Length: $KEYLENGTH
159
130
EOF
160
131
 
161
132
umask 027
162
 
 
163
 
# Generate a new key in the key rings
164
133
gpg --no-random-seed-file --quiet --batch --no-tty \
165
134
    --no-default-keyring --no-options --batch \
166
135
    --secret-keyring "$SECRING" --keyring "$PUBRING" \
167
136
    --gen-key "$BATCHFILE"
168
137
rm --force "$BATCHFILE"
169
138
 
170
 
# Backup any old key files
171
139
if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
172
140
    2>/dev/null; then
173
141
    shred --remove "$SECKEYFILE"
186
154
    FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
187
155
fi
188
156
 
189
 
# Export keys from key rings to key files
190
157
gpg --no-random-seed-file --quiet --batch --no-tty --armor \
191
158
    --no-default-keyring --secret-keyring "$SECRING" \
192
159
    --keyring "$PUBRING" --export-options export-minimal \
197
164
    --keyring "$PUBRING" --export-options export-minimal \
198
165
    --comment "$FILECOMMENT" --output "$PUBKEYFILE" \
199
166
    --export
200
 
 
201
 
trap - EXIT
202
 
 
203
 
# Remove the key rings
204
 
shred --remove "$SECRING"
205
 
rm --force "$PUBRING"