147
147
echo "Empty key type" >&2
151
151
if [ -z "$KEYNAME" ]; then
152
152
echo "Empty key name" >&2
156
156
if [ -z "$KEYLENGTH" ] || [ "$KEYLENGTH" -lt 512 ]; then
157
157
echo "Invalid key length" >&2
161
161
if [ -z "$KEYEXPIRE" ]; then
162
162
echo "Empty key expiration" >&2
166
166
# Make FORCE be 0 or 1
168
168
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]) FORCE=1;;
169
169
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|*) FORCE=0;;
172
172
if { [ -e "$SECKEYFILE" ] || [ -e "$PUBKEYFILE" ] \
173
173
|| [ -e "$TLS_PRIVKEYFILE" ] \
174
174
|| [ -e "$TLS_PUBKEYFILE" ]; } \
184
184
if [ -n "$KEYEMAIL" ]; then
185
185
KEYEMAILLINE="Name-Email: $KEYEMAIL"
188
188
# Create temporary gpg batch file
189
189
BATCHFILE="`mktemp -t mandos-keygen-batch.XXXXXXXXXX`"
190
TLS_PRIVKEYTMP="`mktemp -t mandos-keygen-privkey.XXXXXXXXXX`"
192
193
if [ "$mode" = password ]; then
203
204
test -n \"$SECFILE\" && shred --remove \"$SECFILE\"; \
205
test -n \"$TLS_PRIVKEYTMP\" && shred --remove \"$TLS_PRIVKEYTMP\"; \
204
206
shred --remove \"$RINGDIR\"/sec* 2>/dev/null;
205
207
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
206
208
rm --recursive --force \"$RINGDIR\";
241
243
echo -n "Started: "
245
# Backup any old key files
246
if cp --backup=numbered --force "$TLS_PRIVKEYFILE" "$TLS_PRIVKEYFILE" \
248
shred --remove "$TLS_PRIVKEYFILE"
250
if cp --backup=numbered --force "$TLS_PUBKEYFILE" "$TLS_PUBKEYFILE" \
252
rm --force "$TLS_PUBKEYFILE"
255
## Generate TLS private key
257
# First try certtool from GnuTLS
258
if ! certtool --generate-privkey --password='' \
259
--outfile "$TLS_PRIVKEYFILE" --sec-param ultra \
260
--key-type="$TLS_KEYTYPE" --pkcs8 --no-text 2>/dev/null; then
261
# Otherwise try OpenSSL
262
if ! openssl genpkey -algorithm X25519 -out \
263
/etc/keys/mandos/tls-privkey.pem; then
264
rm --force /etc/keys/mandos/tls-privkey.pem
265
# None of the commands succeded; give up
247
# Generate TLS private key
248
if certtool --generate-privkey --password='' \
249
--outfile "$TLS_PRIVKEYTMP" --sec-param ultra \
250
--key-type="$TLS_KEYTYPE" --pkcs8 --no-text 2>/dev/null; then
252
# Backup any old key files
253
if cp --backup=numbered --force "$TLS_PRIVKEYFILE" "$TLS_PRIVKEYFILE" \
255
shred --remove "$TLS_PRIVKEYFILE" 2>/dev/null || :
272
# First try certtool from GnuTLS
273
if ! certtool --password='' --load-privkey="$TLS_PRIVKEYFILE" \
274
--outfile="$TLS_PUBKEYFILE" --pubkey-info --no-text \
276
# Otherwise try OpenSSL
277
if ! openssl pkey -in "$TLS_PRIVKEYFILE" \
278
-out "$TLS_PUBKEYFILE" -pubout; then
257
if cp --backup=numbered --force "$TLS_PUBKEYFILE" "$TLS_PUBKEYFILE" \
279
259
rm --force "$TLS_PUBKEYFILE"
280
# None of the commands succeded; give up
261
cp --archive "$TLS_PRIVKEYTMP" "$TLS_PRIVKEYFILE"
262
shred --remove "$TLS_PRIVKEYTMP" 2>/dev/null || :
266
# First try certtool from GnuTLS
267
if ! certtool --password='' --load-privkey="$TLS_PRIVKEYFILE" \
268
--outfile="$TLS_PUBKEYFILE" --pubkey-info --no-text \
270
# Otherwise try OpenSSL
271
if ! openssl pkey -in "$TLS_PRIVKEYFILE" \
272
-out "$TLS_PUBKEYFILE" -pubout; then
273
rm --force "$TLS_PUBKEYFILE"
274
# None of the commands succeded; give up
285
280
# Make sure trustdb.gpg exists;
286
281
# this is a workaround for Debian bug #737128
287
282
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
292
287
--homedir "$RINGDIR" --trust-model always \
293
288
--gen-key "$BATCHFILE"
294
289
rm --force "$BATCHFILE"
296
291
if tty --quiet; then
297
292
echo -n "Finished: "
301
296
# Backup any old key files
302
297
if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
303
298
2>/dev/null; then
304
shred --remove "$SECKEYFILE"
299
shred --remove "$SECKEYFILE" 2>/dev/null || :
306
301
if cp --backup=numbered --force "$PUBKEYFILE" "$PUBKEYFILE" \
307
302
2>/dev/null; then
308
303
rm --force "$PUBKEYFILE"
311
306
FILECOMMENT="Mandos client key for $KEYNAME"
312
307
if [ "$KEYCOMMENT" != "$KEYCOMMENT_ORIG" ]; then
313
308
FILECOMMENT="$FILECOMMENT ($KEYCOMMENT)"
316
311
if [ -n "$KEYEMAIL" ]; then
317
312
FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
320
315
# Export key from key rings to key files
321
316
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
322
317
--homedir "$RINGDIR" --armor --export-options export-minimal \
330
325
if [ "$mode" = password ]; then
332
327
# Make SSH be 0 or 1
334
329
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]) SSH=1;;
335
330
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|*) SSH=0;;
338
333
if [ $SSH -eq 1 ]; then
339
for ssh_keytype in ecdsa-sha2-nistp256 ed25519 rsa; do
341
ssh_fingerprint="`ssh-keyscan -t $ssh_keytype localhost 2>/dev/null`"
344
if [ $err -ne 0 ]; then
348
if [ -n "$ssh_fingerprint" ]; then
349
ssh_fingerprint="${ssh_fingerprint#localhost }"
334
# The -q option is new in OpenSSH 9.8
335
for ssh_keyscan_quiet in "-q " ""; do
336
for ssh_keytype in ecdsa-sha2-nistp256 ed25519 rsa; do
338
ssh_fingerprint="`ssh-keyscan ${ssh_keyscan_quiet}-t $ssh_keytype localhost 2>/dev/null`"
341
if [ $err -ne 0 ]; then
345
if [ -n "$ssh_fingerprint" ]; then
346
ssh_fingerprint="${ssh_fingerprint#localhost }"
355
353
# Import key into temporary key rings
356
354
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
357
355
--homedir "$RINGDIR" --trust-model always --armor \
359
357
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
360
358
--homedir "$RINGDIR" --trust-model always --armor \
361
359
--import "$PUBKEYFILE"
363
361
# Get fingerprint of key
364
362
FINGERPRINT="`gpg --quiet --batch --no-tty --no-options \
365
363
--enable-dsa2 --homedir "$RINGDIR" --trust-model always \
366
364
--fingerprint --with-colons \
368
366
--expression='/^fpr:/{s/^fpr:.*:\\([0-9A-Z]*\\):\$/\\1/p;q}'`"
370
368
test -n "$FINGERPRINT"
372
KEY_ID="$(certtool --key-id --hash=sha256 \
370
if [ -r "$TLS_PUBKEYFILE" ]; then
371
KEY_ID="$(certtool --key-id --hash=sha256 \
373
372
--infile="$TLS_PUBKEYFILE" 2>/dev/null || :)"
375
if [ -z "$KEY_ID" ]; then
376
KEY_ID=$(openssl pkey -pubin -in /tmp/tls-pubkey.pem \
379
| sed --expression='s/^.*[^[:xdigit:]]//')
374
if [ -z "$KEY_ID" ]; then
375
KEY_ID=$(openssl pkey -pubin -in "$TLS_PUBKEYFILE" \
378
| sed --expression='s/^.*[^[:xdigit:]]//')
383
383
FILECOMMENT="Encrypted password for a Mandos client"
385
385
while [ ! -s "$SECFILE" ]; do
386
386
if [ -n "$PASSFILE" ]; then
389
389
tty --quiet && stty -echo
390
390
echo -n "Enter passphrase: " >/dev/tty
435
439
if [ -n "$ssh_fingerprint" ]; then
436
echo 'checker = ssh-keyscan -t '"$ssh_keytype"' %%(host)s 2>/dev/null | grep --fixed-strings --line-regexp --quiet --regexp=%%(host)s" %(ssh_fingerprint)s"'
440
echo 'checker = ssh-keyscan '"$ssh_keyscan_quiet"'-t '"$ssh_keytype"' %%(host)s 2>/dev/null | grep --fixed-strings --line-regexp --quiet --regexp=%%(host)s" %(ssh_fingerprint)s"'
437
441
echo "ssh_fingerprint = ${ssh_fingerprint}"
444
448
# Remove the password file, if any
445
449
if [ -n "$SECFILE" ]; then
446
shred --remove "$SECFILE"
450
shred --remove "$SECFILE" 2>/dev/null
448
452
# Remove the key rings
449
453
shred --remove "$RINGDIR"/sec* 2>/dev/null