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