chiark / gitweb /
keyfunc.sh.in: Add come commentary to the configuration section.
[distorted-keys] / keyfunc.sh.in
CommitLineData
53263601
MW
1### -*-sh-*-
2###
3### Common key management functions.
4###
5### (c) 2011 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
599c8f75
MW
10### This file is part of the distorted.org.uk key management suite.
11###
12### distorted-keys is free software; you can redistribute it and/or modify
53263601
MW
13### it under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or
15### (at your option) any later version.
16###
599c8f75 17### distorted-keys is distributed in the hope that it will be useful,
53263601
MW
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
599c8f75 23### along with distorted-keys; if not, write to the Free Software Foundation,
53263601
MW
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26quis=${0##*/}
27
28###--------------------------------------------------------------------------
29### Configuration variables.
30
e787e19c 31## Automatically configured pathnames.
53263601 32PACKAGE="@PACKAGE@" VERSION="@VERSION@"
53263601
MW
33bindir="@bindir@"
34
e787e19c 35## Read user configuration.
c47f2aba 36if [ -f $ETC/keys.conf ]; then . $ETC/keys.conf; fi
599c8f75 37
e787e19c 38## Maybe turn on debugging.
599c8f75
MW
39case "${KEYS_DEBUG+t}" in t) set -x ;; esac
40
53263601
MW
41###--------------------------------------------------------------------------
42### Cleanup handling.
43
44cleanups=""
c47f2aba
MW
45cleanup () { cleanups=${cleanups+$cleanups }$1; }
46runcleanups () { for i in $cleanups; do $i; done; }
47trap 'rc=$?; runcleanups; exit $rc' EXIT
48trap 'trap "" EXIT; runcleanups; exit 127' INT TERM
53263601
MW
49
50###--------------------------------------------------------------------------
51### Utility functions.
52
c47f2aba
MW
53reqsafe () {
54 ## Fail unless a safe directory is set.
55
56 err="$quis: (CONFIGURATION ERROR)"
57 case ${SAFE+t} in
58 t) ;;
59 *) echo >&2 "$err: no SAFE directory"; exit 1 ;;
60 esac
61 if [ ! -d "$SAFE" ]; then
62 echo >&2 "$err: SAFE path \`$SAFE' isn't a directory"
63 exit 1
64 fi
65 case "$SAFE" in
66 [!/]* | *[][[:space:]*?]*)
67 echo >&2 "$err: SAFE path \`$SAFE' contains bad characters"
68 exit 1
69 ;;
70 esac
71 ls -ld "$SAFE" | {
72 me=$(id -un)
73 read perm _ user stuff
74 case "$perm:$user" in
75 d???------:"$me") ;;
76 *)
77 echo >&2 "$err: SAFE path \`$SAFE' has bad owner or permissions"
78 exit 1
79 ;;
80 esac
81 }
82}
83
53263601
MW
84## Temporary directory.
85unset tmp
c47f2aba
MW
86rmtmp () { case ${tmp+t} in t) cd /; rm -rf $tmp ;; esac; }
87cleanup rmtmp
53263601 88mktmp () {
c47f2aba 89 ## Make a temporary directory and store its name in `tmp'.
53263601 90
c47f2aba
MW
91 case "${tmp+t}" in t) return ;; esac
92 reqsafe
93 tmp="$SAFE/keys.tmp.$$"
53263601
MW
94 rm -rf "$tmp"
95 mkdir -m700 "$tmp"
53263601
MW
96}
97
c47f2aba
MW
98reqtmp () {
99 ## Fail unless a temporary directory is set.
53263601 100
c47f2aba
MW
101 case ${tmp+t} in
102 t) ;;
103 *) echo >&2 "$quis (INTERNAL): no tmp directory set"; exit 127 ;;
53263601
MW
104 esac
105}
106
c47f2aba
MW
107parse_keylabel () {
108 key=$1
109 ## Parse the key label string KEY. Set `kdir' to the base path to use for
110 ## the key's storage, and `kowner' to the key owner's name.
111
112 case "$key" in
113 *:*) kowner=${key%%:*} klabel=${key#*:} ;;
114 *) kowner=$USERV_USER klabel=$key ;;
53263601 115 esac
c47f2aba
MW
116 checkword "key owner name" "$kowner"
117 checklabel "key" "$klabel"
118 kdir=$KEYS/store/$kowner/$klabel
119 knub=$KEYS/nub/$kowner/$klabel
53263601
MW
120}
121
c47f2aba
MW
122###--------------------------------------------------------------------------
123### Input validation functions.
124
125nl="
126"
127check () {
128 ckwhat=$1 ckpat=$2 thing=$3
129 ## Verify that THING matches the (anchored, basic) regular expression
130 ## CKPAT. Since matching newlines is hard to do portably, also check that
131 ## THING doesn't contain any. If the checks fail, report an error and
132 ## exit.
133
134 validp=t
599c8f75 135 case "$thing" in
c47f2aba
MW
136 *"$nl"*) validp=nil ;;
137 *) if ! expr >/dev/null "$thing" : "$ckpat\$"; then validp=nil; fi ;;
138 esac
139 case $validp in
140 nil) echo >&2 "$quis: bad $ckwhat \`$thing'"; exit 1 ;;
599c8f75
MW
141 esac
142}
143
c47f2aba
MW
144## Regular expressions for validating input.
145R_IDENTCHARS="A-Za-z0-9_"
146R_WORDCHARS="-$R_IDENTCHARS!%@+="
147R_IDENT="[$R_IDENTCHARS][$R_IDENTCHARS]*"
148R_WORD="[$R_WORDCHARS][$R_WORDCHARS]*"
149R_WORDSEQ="[$R_WORDCHARS[:space:]][$R_WORDCHARS[:space:]]*"
150R_NUMERIC='\(\([1-9][0-9]*\)\{0,1\}0\{0,1\}\)'
151R_LABEL="\($R_WORD\(/$R_WORD\)*\)"
152R_LINE=".*"
153
154## Various validation functions.
155checknumber () { check "$1" "$R_NUMERIC" "$2"; }
156checkident () { check "$1" "$R_IDENT" "$2"; }
157checkword () { check "$1" "$R_WORD" "$2"; }
158checklabel () { check "$1 label" "$R_LABEL" "$2"; }
159
53263601 160###--------------------------------------------------------------------------
c47f2aba
MW
161### Key storage and properties.
162
163getsysprofile () {
164 profile=$1
165 ## Write the named system PROFILE to standard output.
166
b65e1f93 167 $bindir/extract-profile "$profile" $ETC/profile.d/
c47f2aba
MW
168}
169
170setprops () {
171 what=$1 prefix=$2; shift 2
172 ## Set variables based on the NAME=VALUE assignments in the arguments. The
173 ## value for property NAME is stored in the shell variable PREFIX_NAME.
174
175 for assg in "$@"; do
176 goodp=t
177 case "$assg" in
178 *\=*) name=${assg%%=*} value=${assg#*=} ;;
179 *) goodp=nil ;;
180 esac
181 case "$goodp,$name" in t,*[!0-9A-Za-z_]*=*) goodp=nil ;; esac
182 case "$goodp" in
183 nil) echo >&2 "$quis: bad $what assignment \`$assg'"; exit 1 ;;
184 esac
185 eval "$prefix$name=\$value"
186 done
187}
53263601 188
c47f2aba
MW
189checkprops () {
190 whatprop=$1 prefix=$2; shift 2
191 ## Check that property variables are set in accordance with the remaining
192 ## TABLE arguments. Each row of TABLE has the form
53263601 193 ##
c47f2aba
MW
194 ## NAME OMIT PAT
195 ##
196 ## A table row is satisfied if there is a variable PREFIXNAME whose value
197 ## matces the (basic) regular expression PAT, or if the variable is unset
198 ## and OMIT is `t'.
199
200 for table in "$@"; do
201 case "$table" in ?*) ;; *) continue ;; esac
202 while read -r name omit pat; do
203 eval foundp=\${$prefix$name+t}
204 case "$foundp,$omit" in
205 ,t) continue ;;
206 ,nil)
207 echo >&2 "$quis: missing $whatprop \`$name' required"
208 exit 1
209 ;;
210 esac
211 eval value=\$$prefix$name
212 check "value for $whatprop \`$name'" "$pat" "$value"
213 done <<EOF
214$table
215EOF
216 done
217}
53263601 218
c47f2aba
MW
219defprops () {
220 name=$1
221 ## Define a properties table NAME.
222
223 table=$(cat)
224 eval $name=\$table
225}
226
227defprops g_props <<EOF
228type nil $R_IDENT
229recovery t $R_WORDSEQ
230random t $R_WORD
2a877b7f
MW
231nub_hash t $R_WORD
232nubid_hash t $R_WORD
233nub_random_bytes t $R_NUMERIC
c47f2aba
MW
234EOF
235
236readprops () {
237 file=$1
238 ## Read a profile from a file. This doesn't check the form of the
239 ## filename, so it's not suitable for unchecked input. Properties are set
240 ## using `setprops' with prefix `kprop_'.
241
242 ## Parse the settings from the file.
243 exec 3<"$file"
244 while read line; do
245 case "$line" in "" | \#*) continue ;; esac
246 setprops "property" kprop_ "$line"
247 done <&3
248 exec 3>&-
249 checkprops "property" kprop_ "$g_props"
250
251 ## Fetch the key-type handling library.
252 if [ ! -f $KEYSLIB/ktype.$kprop_type ]; then
253 echo >&2 "$quis: unknown key type \`$kprop_type'"
254 exit 1
255 fi
256 . $KEYSLIB/ktype.$kprop_type
257 checkprops "property" kprop_ "$k_props"
258}
259
260readmeta () {
261 kdir=$1
262 ## Read key metadata from KDIR.
263
264 { read profile; } <"$kdir"/meta
265}
266
267makenub () {
268 ## Generate a key nub in the default way, and write it to standard output.
2a877b7f
MW
269 ## The properties `random', `nub_random_bytes' and `nub_hash' are referred
270 ## to.
c47f2aba
MW
271
272 dd 2>/dev/null \
2a877b7f
MW
273 if=/dev/${kprop_random-random} bs=1 count=${kprop_nub_random_bytes-64} |
274 openssl dgst -${kprop_nub_hash-sha256} -binary |
c47f2aba
MW
275 openssl base64
276}
277
278nubid () {
279 ## Compute a hash of the key nub in stdin, and write it to stdout in hex.
2a877b7f 280 ## The property `nubid_hash' is used.
c47f2aba
MW
281
282 { echo "distorted-keys nubid"; cat -; } |
2a877b7f 283 openssl dgst -${kprop_nubid_hash-sha256}
c47f2aba
MW
284}
285
286subst () {
287 what=$1 templ=$2 prefix=$3 pat=$4
288 ## Substitute option values into the template TEMPL. Each occurrence of
289 ## %{VAR} is replaced by the value of the variable PREFIXVAR. Finally, an
290 ## error is reported unless the final value matches the regular expression
291 ## PAT.
292
293 out=""
294 rest=$templ
295 while :; do
296
297 ## If there are no more markers to substitute, then finish.
298 case "$rest" in *"%{"*"}"*) ;; *) out=$out$rest; break ;; esac
299
300 ## Split the template into three parts.
301 left=${rest%%\%\{*} right=${rest#*\%\{}
302 var=${right%%\}*} rest=${right#*\}}
303 case "$var" in
304 *-*) default=${var#*-} var=${var%%-*} defaultp=t ;;
305 *) defaultp=nil ;;
306 esac
307
308 ## Find the variable value.
309 checkident "template variable name" "$var"
310 eval foundp=\${$prefix$var+t}
311 case $foundp,$defaultp in
312 t,*) eval value=\$$prefix$var ;;
313 ,t) value=$default ;;
314 *)
315 echo >&2 "$quis: option \`$var' unset, used in template \`$templ'"
316 exit 1
317 ;;
318 esac
319
320 ## Do the substitution.
321 out=$out$left$value
322 done
323
324 ## Check the final result.
325 check "$what" "$pat" "$out"
326
327 ## Done.
328 echo "$out"
329}
330
331read_profile () {
332 profile=$1
333 ## Read property settings from a profile. The PROFILE name has the form
334 ## [USER:]LABEL. Properties are set using `setprops' with prefix `kprop_'.
335
336 reqtmp
337 case "$profile" in
338 :*)
339 label=${profile#:} uservp=nil
340 ;;
53263601 341 *)
c47f2aba
MW
342 user=$USERV_USER label=$profile uservp=t
343 ;;
344 *:*)
345 user=${profile%%:*} label=${profile#*:} uservp=t
346 ;;
347 esac
348 checkword "profile label" "$label"
349
350 ## Fetch the profile settings from the user.
351 reqtmp
352 case $uservp in
353 t)
354 checkword "profile user" "$user"
355 userv "$user" cryptop-profile "$label" >$tmp/profile
356 ;;
357 nil)
b65e1f93 358 $bindir/extract-profile "$label" $ETC/profile.d/ >$tmp/profile
53263601
MW
359 ;;
360 esac
361
c47f2aba
MW
362 ## Read the file.
363 readprops $tmp/profile
53263601
MW
364}
365
c47f2aba
MW
366###--------------------------------------------------------------------------
367### General crypto operations.
368
369c_genkey () {
370 profile=$1 kdir=$2 knub=$3 hook=$4; shift 4
371 ## Generate a key, and associate it with the named PROFILE (which is
372 ## assumed already to have been read!); store the main data in KDIR, and
373 ## the nub separately in the file KNUB; run HOOK after generation, passing
374 ## it the working key directory and nub file. Remaining arguments are
375 ## options to the key type.
376
377 ## Set options and check them.
378 setprops "option" kopt_ "$@"
379 checkprops "option" kopt_ "$k_genopts"
380
381 ## Create directory structure and start writing metadata.
382 rm -rf "$kdir.new"
383 mkdir -m755 -p "$kdir.new"
384 case "$knub" in */*) mkdir -m700 -p "${knub%/*}" ;; esac
385 cat >"$kdir.new/meta" <<EOF
386$profile
387EOF
53263601 388
c47f2aba
MW
389 ## Generate the key.
390 umask=$(umask); umask 077; >"$knub.new"; umask $umask
391 k_generate "$kdir.new" "$knub.new"
392 $hook "$kdir.new" "$knub.new"
393
394 ## Hash the nub.
395 nubid <"$knub.new" >"$kdir.new/nubid"
396
397 ## Juggle everything into place. Doing this atomically is very difficult,
398 ## and requires more machinery than I can really justify here. If
399 ## something goes wrong halfway, it should always be possible to fix it,
400 ## either by backing out (if $kdir.new still exists) or pressing on
401 ## forwards (if not).
402 rm -rf "$kdir.old"
403 if [ -e "$kdir" ]; then mv "$kdir" "$kdir.old"; fi
404 mv "$kdir.new" "$kdir"
405 mv "$knub.new" "$knub"
406 rm -rf "$kdir.old"
53263601
MW
407}
408
c47f2aba
MW
409c_encrypt () { k_encrypt "$@"; }
410c_decrypt () {
411 if k_decrypt "$@" >$tmp/plain; then cat $tmp/plain
412 else return $?
413 fi
414}
415c_sign () { k_sign "$@"; }
416c_verify () { k_verify "$@"; }
417
418## Stub implementations.
419notsupp () { op=$1; echo >&2 "$quis: operation \`$op' not supported"; }
420k_info () { :; }
421k_encrypt () { notsupp encrypt; }
422k_decrypt () { notsupp decrypt; }
423k_sign () { notsupp sign; }
424k_verify () { notsupp verify; }
425
426prepare () {
427 key=$1 op=$2
428 ## Prepare for a crypto operation OP, using the KEY. This validates the
429 ## key label, reads the profile, and checks the access-control list.
430
431 ## Find the key properties.
432 parse_keylabel "$key"
433 if [ ! -d $kdir ]; then echo >&2 "$quis: unknown key \`$key'"; exit 1; fi
434 readmeta $kdir
435 read_profile "$profile"
436
437 ## Check whether we're allowed to do this thing. This is annoyingly
438 ## fiddly.
439 eval acl=\${kprop_acl_$op-!owner}
440 verdict=forbid
441 while :; do
442
443 ## Remove leading whitespace.
444 while :; do
445 case "$acl" in
446 [[:space:]]*) acl=${acl#?} ;;
447 *) break ;;
448 esac
449 done
450
451 ## If there's nothing left, leave.
452 case "$acl" in ?*) ;; *) break ;; esac
453
454 ## Split off the leading word.
455 case "$acl" in
456 *[[:space:]]*) word=${acl%%[[:space:]]*} acl=${acl#*[[:space:]]} ;;
457 *) word=$acl acl="" ;;
458 esac
459
460 ## See what sense it has if it matches.
461 case "$word" in
462 -*) sense=forbid rest=${word#-} ;;
463 *) sense=allow rest=$word ;;
464 esac
465
466 ## See whether the calling user matches.
467 case "$rest" in
468 !owner) pat=$kowner list=$USERV_USER ;;
469 !*) echo >&2 "$quis: unknown ACL token \`$word'" ;;
470 %*) pat=${rest#%} list="$USERV_GROUP $USERV_GID" ;;
471 *) pat=$rest list="$USERV_USER $USERV_UID" ;;
472 esac
473 matchp=nil
474 for i in $list; do case "$i" in $pat) matchp=t; break ;; esac; done
475 case $matchp in t) verdict=$sense; break ;; esac
476 done
477
478 case $verdict in
68023101 479 forbid) echo >&2 "$quis: $op access to key \`$key' forbidden"; exit 1 ;;
c47f2aba 480 esac
53263601
MW
481}
482
c47f2aba
MW
483###--------------------------------------------------------------------------
484### Crypto operations for infrastructure purposes.
485
486c_sysprofile () {
487 profile=$1
488 ## Select the profile in FILE for future crypto operations.
53263601 489
c47f2aba
MW
490 unset $(set | sed -n '/^kprop_/s/=.*$//p')
491 reqtmp
492 getsysprofile "$profile" >$tmp/profile
493 readprops $tmp/profile
53263601
MW
494}
495
c47f2aba
MW
496c_gensyskey () {
497 profile=$1 kdir=$2 knub=$3; shift 3
498 ## Generate a system key using PROFILE; store the data in KDIR and the nub
499 ## in KNUB. Remaining arguments are options.
53263601 500
c47f2aba
MW
501 c_sysprofile "$profile"
502 c_genkey "$profile" "$kdir" "$knub" : "$@"
53263601
MW
503}
504
c47f2aba
MW
505c_sysprepare () {
506 kdir=$1
507 readmeta "$kdir"
508 c_sysprofile "$profile"
509}
599c8f75 510
c47f2aba
MW
511c_sysop () {
512 op=$1 kdir=$2; shift 1
513 c_sysprepare "$kdir"
514 c_$op "$@"
599c8f75
MW
515}
516
c47f2aba
MW
517c_sysencrypt () { c_sysop encrypt "$1" /dev/null; }
518c_sysdecrypt () { c_sysop decrypt "$1" "$2"; }
519c_syssign () { c_sysop sign "$1" "$2"; }
520c_sysverify () { c_sysop verify "$1" /dev/null; }
521
522###--------------------------------------------------------------------------
523### Recovery operations.
524
525stash () {
526 recov=$1 label=$2
527 ## Stash a copy of stdin encrypted under the recovery key RECOV, with a
528 ## given LABEL.
529 checkword "recovery key label" "$recov"
530 checklabel "secret" "$label"
531
532 rdir=$KEYS/recov/$recov/current
533 if [ ! -d $rdir/store ]; then
534 echo >&2 "$quis: unknown recovery key \`$recov'"
535 exit 1
536 fi
537 case $label in */*) mkdir -m755 -p $rdir/${label%/*} ;; esac
538 (c_sysencrypt $rdir/store >$rdir/$label.new)
539 mv $rdir/$label.new $rdir/$label.recov
540}
599c8f75 541
c47f2aba
MW
542recover () {
543 recov=$1 label=$2
544 ## Recover a stashed secret, protected by RECOV and stored as LABEL, and
545 ## write it to stdout.
546 checkword "recovery key label" "$recov"
547 checklabel "secret" "$label"
548
549 rdir=$KEYS/recov/$recov/current
550 if [ ! -f $rdir/$label.recov ]; then
551 echo >&2 "$quis: no blob for \`$label' under recovery key \`$recov'"
552 exit 1
553 fi
554 reqsafe
555 nub=$SAFE/keys.reveal/$recov.current/nub
556 if [ ! -f $nub ]; then
557 echo >&2 "$quis: current recovery key \`$recov' not revealed"
558 exit 1;
559 fi
560 mktmp
561 c_sysdecrypt $rdir/store $nub <$rdir/$label.recov
599c8f75
MW
562}
563
53263601
MW
564###--------------------------------------------------------------------------
565### Help text.
566
c47f2aba
MW
567defhelp () {
568 read umsg
569 usage="usage: $quis${umsg+ }$umsg"
570 help=$(cat)
571 case "$KEYS_HELP" in t) help; exit ;; esac
53263601
MW
572}
573
53263601
MW
574help () { showhelp; }
575showhelp () {
576 cat <<EOF
577$usage
578
579$help
580EOF
581}
582
c47f2aba
MW
583usage_err () { echo >&2 "$usage"; exit 1; }
584
585###--------------------------------------------------------------------------
586### Subcommand handling.
587
588version () {
589 echo "$PACKAGE version $VERSION"
590}
591
592cmd_help () {
593 rc=0
594 version
595 case $# in
596 0)
597 cat <<EOF
598
599$usage
600
601Options:
602 -h Show this help text.
603 -v Show the program version number.
604
605Commands installed:
606EOF
607 cd "$KEYSLIB"
608 for i in $prefix.*; do
609 if [ ! -x "$i" ]; then continue; fi
610 sed -n "/<<HELP/{n;s/^/ ${i#$prefix.} /;p;q;}" "$i"
611 done
612 ;;
613 *)
614 for i in "$@"; do
615 echo
616 if [ ! -x "$KEYSLIB/$prefix.$i" ]; then
617 echo >&2 "$quis: unrecognized command \`$i'"
618 rc=1
619 continue
620 elif ! KEYS_HELP=t "$KEYSLIB/$prefix.$i"; then
621 rc=1
622 fi
623 done
624 ;;
625 esac
626 return $rc
627}
628
629dispatch () {
630 case $# in 0) echo >&2 "$usage"; exit 1 ;; esac
631 cmd=$1; shift
632 case "$cmd" in help) cmd_help "$@"; exit ;; esac
633 if [ ! -x "$KEYSLIB/$prefix.$cmd" ]; then
634 echo >&2 "$quis: unrecognized command \`$cmd'"
635 exit 1
636 fi
637
638 unset KEYS_HELP
639 exec "$KEYSLIB/$prefix.$cmd" "$@"
640}
641
53263601 642###----- That's all, folks --------------------------------------------------