math/mpreduce.h: Missing include files.
[u/mdw/catacomb] / progs / key.c
CommitLineData
d03ab969 1/* -*-c-*-
2 *
d03ab969 3 * Simple key manager program
4 *
252c122d 5 * (c) 1999 Straylight/Edgeware
d03ab969 6 */
7
45c0fd36 8/*----- Licensing notice --------------------------------------------------*
d03ab969 9 *
10 * This file is part of Catacomb.
11 *
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
45c0fd36 16 *
d03ab969 17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
45c0fd36 21 *
d03ab969 22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
d03ab969 28/*----- Header files ------------------------------------------------------*/
29
cd6eca43
MW
30#define _FILE_OFFSET_BITS 64
31
d03ab969 32#include "config.h"
33
58507325 34#include <ctype.h>
d03ab969 35#include <errno.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <time.h>
40
252c122d 41#include <mLib/base64.h>
d03ab969 42#include <mLib/mdwopt.h>
43#include <mLib/quis.h>
44#include <mLib/report.h>
45#include <mLib/sub.h>
46
47#include <noise.h>
48#include <rand.h>
49
3688eb75 50#include "bintab.h"
252c122d 51#include "bbs.h"
052b36d0 52#include "dh.h"
252c122d 53#include "dsa.h"
34e4f738 54#include "dsarand.h"
1ba83484 55#include "ec.h"
56#include "ec-keys.h"
57#include "ectab.h"
252c122d 58#include "fibrand.h"
d03ab969 59#include "getdate.h"
3688eb75 60#include "gfreduce.h"
d03ab969 61#include "key.h"
252c122d 62#include "mp.h"
63#include "mpmont.h"
64#include "mprand.h"
65#include "mptext.h"
66#include "pgen.h"
3563e365 67#include "ptab.h"
252c122d 68#include "rsa.h"
d03ab969 69
c65df279 70#include "cc.h"
34e4f738 71#include "sha-mgf.h"
72#include "sha256-mgf.h"
73#include "sha224-mgf.h"
74#include "sha384-mgf.h"
75#include "sha512-mgf.h"
76#include "tiger-mgf.h"
77#include "rmd128-mgf.h"
78#include "rmd160-mgf.h"
79#include "rmd256-mgf.h"
80#include "rmd320-mgf.h"
81#include "md5-mgf.h"
82#include "dsarand.h"
83
d03ab969 84/*----- Handy global state ------------------------------------------------*/
85
86static const char *keyfile = "keyring";
87
88/*----- Useful shared functions -------------------------------------------*/
89
90/* --- @doopen@ --- *
91 *
92 * Arguments: @key_file *f@ = pointer to key file block
93 * @unsigned how@ = method to open file with
94 *
95 * Returns: ---
96 *
97 * Use: Opens a key file and handles errors by panicking
98 * appropriately.
99 */
100
101static void doopen(key_file *f, unsigned how)
102{
252c122d 103 if (key_open(f, keyfile, how, key_moan, 0))
052b36d0 104 die(1, "couldn't open keyring `%s': %s", keyfile, strerror(errno));
d03ab969 105}
106
107/* --- @doclose@ --- *
108 *
109 * Arguments: @key_file *f@ = pointer to key file block
110 *
111 * Returns: ---
112 *
113 * Use: Closes a key file and handles errors by panicking
114 * appropriately.
115 */
116
117static void doclose(key_file *f)
118{
119 switch (key_close(f)) {
120 case KWRITE_FAIL:
121 die(EXIT_FAILURE, "couldn't write file `%s': %s",
122 keyfile, strerror(errno));
123 case KWRITE_BROKEN:
124 die(EXIT_FAILURE, "keyring file `%s' broken: %s (repair manually)",
125 keyfile, strerror(errno));
126 }
127}
128
129/* --- @setattr@ --- *
130 *
131 * Arguments: @key_file *f@ = pointer to key file block
132 * @key *k@ = pointer to key block
133 * @char *v[]@ = array of assignments (overwritten!)
134 *
135 * Returns: ---
136 *
137 * Use: Applies the attribute assignments to the key.
138 */
139
140static void setattr(key_file *f, key *k, char *v[])
141{
142 while (*v) {
252c122d 143 int err;
d03ab969 144 char *p = *v;
145 size_t eq = strcspn(p, "=");
72f13799 146 if (!p[eq]) {
147 moan("invalid assignment: `%s' (ignored)", p);
148 v++;
149 continue;
150 }
d03ab969 151 p[eq] = 0;
152 p += eq + 1;
252c122d 153 if ((err = key_putattr(f, k, *v, *p ? p : 0)) != 0)
154 die(EXIT_FAILURE, "couldn't set attributes: %s", key_strerror(err));
d03ab969 155 v++;
156 }
157}
158
34e4f738 159/*----- Seeding -----------------------------------------------------------*/
160
161const struct seedalg { const char *p; grand *(*gen)(const void *, size_t); }
162seedtab[] = {
45c0fd36
MW
163 { "dsarand", dsarand_create },
164 { "rmd128-mgf", rmd128_mgfrand },
165 { "rmd160-mgf", rmd160_mgfrand },
166 { "rmd256-mgf", rmd256_mgfrand },
167 { "rmd320-mgf", rmd320_mgfrand },
168 { "sha-mgf", sha_mgfrand },
169 { "sha224-mgf", sha224_mgfrand },
170 { "sha256-mgf", sha256_mgfrand },
171 { "sha384-mgf", sha384_mgfrand },
172 { "sha512-mgf", sha512_mgfrand },
173 { "tiger-mgf", tiger_mgfrand },
34e4f738 174 { 0, 0 }
175};
176
177#define SEEDALG_DEFAULT (seedtab + 2)
178
252c122d 179/*----- Key generation ----------------------------------------------------*/
180
181/* --- Key generation parameters --- */
182
183typedef struct keyopts {
184 key_file *kf; /* Pointer to key file */
185 key *k; /* Pointer to the actual key */
186 dstr tag; /* Full tag name for the key */
187 unsigned f; /* Flags for the new key */
188 unsigned bits, qbits; /* Bit length for the new key */
1ba83484 189 const char *curve; /* Elliptic curve name/info */
34e4f738 190 grand *r; /* Random number source */
252c122d 191 key *p; /* Parameters key-data */
192} keyopts;
193
16efd15b 194#define f_bogus 1u /* Error in parsing */
195#define f_lock 2u /* Passphrase-lock private key */
196#define f_quiet 4u /* Don't show a progress indicator */
197#define f_limlee 8u /* Generate Lim-Lee primes */
198#define f_subgroup 16u /* Generate a subgroup */
ce70ec47 199#define f_retag 32u /* Remove any existing tag */
4e67e30b 200#define f_kcdsa 64u /* Generate KCDSA primes */
252c122d 201
202/* --- @dolock@ --- *
203 *
204 * Arguments: @keyopts *k@ = key generation options
ef13e9a4 205 * @key_data **kd@ = pointer to key data to lock
252c122d 206 * @const char *t@ = tag suffix or null
207 *
208 * Returns: ---
209 *
210 * Use: Does passphrase locking on new keys.
211 */
212
ef13e9a4 213static void dolock(keyopts *k, key_data **kd, const char *t)
252c122d 214{
215 if (!(k->f & f_lock))
216 return;
217 if (t)
218 dstr_putf(&k->tag, ".%s", t);
ef13e9a4 219 if (key_plock(kd, 0, k->tag.buf))
252c122d 220 die(EXIT_FAILURE, "couldn't lock key");
221}
222
252c122d 223/* --- @copyparam@ --- *
224 *
225 * Arguments: @keyopts *k@ = pointer to key options
226 * @const char **pp@ = checklist of parameters
227 *
228 * Returns: Nonzero if parameters copied; zero if you have to generate
229 * them.
230 *
231 * Use: Copies parameters from a source key to the current one.
232 */
233
234static int copyparam(keyopts *k, const char **pp)
235{
236 key_filter kf;
4739c68a 237 key_attriter i;
9eef0c14 238 key_data *kd;
4739c68a 239 const char *n, *v;
252c122d 240
9eef0c14
MW
241 kf.f = KCAT_SHARE;
242 kf.m = KF_CATMASK;
243
252c122d 244 /* --- Quick check if no parameters supplied --- */
245
246 if (!k->p)
247 return (0);
248
249 /* --- Run through the checklist --- */
250
251 while (*pp) {
ef13e9a4 252 key_data *kd = key_structfind(k->p->k, *pp);
252c122d 253 if (!kd)
254 die(EXIT_FAILURE, "bad parameter key: parameter `%s' not found", *pp);
9eef0c14 255 if (!KEY_MATCH(kd, &kf))
252c122d 256 die(EXIT_FAILURE, "bad parameter key: subkey `%s' is not shared", *pp);
257 pp++;
258 }
259
260 /* --- Copy over the parameters --- */
261
9eef0c14
MW
262 kd = key_copydata(k->p->k, &kf);
263 assert(kd);
264 key_setkeydata(k->kf, k->k, kd);
265 key_drop(kd);
4739c68a 266
267 /* --- Copy over attributes --- */
268
269 for (key_mkattriter(&i, k->p); key_nextattr(&i, &n, &v); )
270 key_putattr(k->kf, k->k, n, v);
271
272 /* --- Done --- */
273
252c122d 274 return (1);
275}
276
277/* --- @getmp@ --- *
278 *
279 * Arguments: @key_data *k@ = pointer to key data block
280 * @const char *tag@ = tag string to use
281 *
282 * Returns: Pointer to multiprecision integer key item.
283 *
284 * Use: Fetches an MP key component.
285 */
286
287static mp *getmp(key_data *k, const char *tag)
288{
289 k = key_structfind(k, tag);
290 if (!k)
291 die(EXIT_FAILURE, "unexpected failure looking up subkey `%s'", tag);
292 if ((k->e & KF_ENCMASK) != KENC_MP)
9b1663a5 293 die(EXIT_FAILURE, "subkey `%s' has an incompatible type", tag);
252c122d 294 return (k->u.m);
295}
296
052b36d0 297/* --- @keyrand@ --- *
298 *
299 * Arguments: @key_file *kf@ = pointer to key file
300 * @const char *id@ = pointer to key id (or null)
301 *
302 * Returns: ---
303 *
304 * Use: Keys the random number generator.
305 */
306
307static void keyrand(key_file *kf, const char *id)
308{
309 key *k;
310
311 /* --- Find the key --- */
312
313 if (id) {
314 if ((k = key_bytag(kf, id)) == 0)
315 die(EXIT_FAILURE, "key `%s' not found", id);
316 } else
317 k = key_bytype(kf, "catacomb-rand");
318
319 if (k) {
ef13e9a4 320 key_data *kd = k->k, *kkd;
321 key_incref(kd);
052b36d0 322
323 again:
324 switch (kd->e & KF_ENCMASK) {
325 case KENC_BINARY:
326 break;
327 case KENC_ENCRYPT: {
328 dstr d = DSTR_INIT;
329 key_fulltag(k, &d);
ef13e9a4 330 if (key_punlock(&kkd, kd, d.buf))
052b36d0 331 die(EXIT_FAILURE, "error unlocking key `%s'", d.buf);
332 dstr_destroy(&d);
ef13e9a4 333 key_drop(kd);
334 kd = kkd;
052b36d0 335 } goto again;
336 default: {
337 dstr d = DSTR_INIT;
338 key_fulltag(k, &d);
339 die(EXIT_FAILURE, "bad encoding type for key `%s'", d.buf);
340 } break;
341 }
342
343 /* --- Key the generator --- */
344
345 rand_key(RAND_GLOBAL, kd->u.k.k, kd->u.k.sz);
ef13e9a4 346 key_drop(kd);
052b36d0 347 }
348}
349
252c122d 350/* --- Key generation algorithms --- */
351
352static void alg_binary(keyopts *k)
353{
354 unsigned sz;
355 unsigned m;
ef13e9a4 356 key_data *kd;
252c122d 357 octet *p;
358
359 if (!k->bits)
360 k->bits = 128;
361 if (k->p)
362 die(EXIT_FAILURE, "no shared parameters for binary keys");
363
364 sz = (k->bits + 7) >> 3;
365 p = sub_alloc(sz);
366 m = (1 << (((k->bits - 1) & 7) + 1)) - 1;
34e4f738 367 k->r->ops->fill(k->r, p, sz);
252c122d 368 *p &= m;
ef13e9a4 369 kd = key_newbinary(KCAT_SYMM | KF_BURN, p, sz);
252c122d 370 memset(p, 0, sz);
ef13e9a4 371 dolock(k, &kd, 0);
372 key_setkeydata(k->kf, k->k, kd);
373 key_drop(kd);
252c122d 374 sub_free(p, sz);
252c122d 375}
376
377static void alg_des(keyopts *k)
378{
379 unsigned sz;
380 octet *p;
ef13e9a4 381 key_data *kd;
252c122d 382 int i;
383
384 if (!k->bits)
1ba83484 385 k->bits = 168;
252c122d 386 if (k->p)
387 die(EXIT_FAILURE, "no shared parameters for DES keys");
388 if (k->bits % 56 || k->bits > 168)
389 die(EXIT_FAILURE, "DES keys must be 56, 112 or 168 bits long");
390
391 sz = k->bits / 7;
392 p = sub_alloc(sz);
34e4f738 393 k->r->ops->fill(k->r, p, sz);
252c122d 394 for (i = 0; i < sz; i++) {
052b36d0 395 octet x = p[i] | 0x01;
252c122d 396 x = x ^ (x >> 4);
397 x = x ^ (x >> 2);
052b36d0 398 x = x ^ (x >> 1);
252c122d 399 p[i] = (p[i] & 0xfe) | (x & 0x01);
400 }
ef13e9a4 401 kd = key_newbinary(KCAT_SYMM | KF_BURN, p, sz);
252c122d 402 memset(p, 0, sz);
ef13e9a4 403 dolock(k, &kd, 0);
404 key_setkeydata(k->kf, k->k, kd);
405 key_drop(kd);
252c122d 406 sub_free(p, sz);
252c122d 407}
408
409static void alg_rsa(keyopts *k)
410{
ab0ca95f 411 rsa_priv rp;
ef13e9a4 412 key_data *kd, *kkd;
252c122d 413
414 /* --- Sanity checking --- */
415
416 if (k->p)
417 die(EXIT_FAILURE, "no shared parameters for RSA keys");
418 if (!k->bits)
419 k->bits = 1024;
420
421 /* --- Generate the RSA parameters --- */
422
34e4f738 423 if (rsa_gen(&rp, k->bits, k->r, 0,
252c122d 424 (k->f & f_quiet) ? 0 : pgen_ev, 0))
425 die(EXIT_FAILURE, "RSA key generation failed");
426
427 /* --- Run a test encryption --- */
428
429 {
34e4f738 430 grand *g = fibrand_create(k->r->ops->word(k->r));
ab0ca95f 431 rsa_pub rpp;
252c122d 432 mp *m = mprand_range(MP_NEW, rp.n, g, 0);
433 mp *c;
434
ab0ca95f 435 rpp.n = rp.n;
436 rpp.e = rp.e;
437 c = rsa_qpubop(&rpp, MP_NEW, m);
438 c = rsa_qprivop(&rp, c, c, g);
252c122d 439
4b536f42 440 if (!MP_EQ(c, m))
252c122d 441 die(EXIT_FAILURE, "test encryption failed");
442 mp_drop(c);
443 mp_drop(m);
444 g->ops->destroy(g);
445 }
446
447 /* --- Allrighty then --- */
448
ef13e9a4 449 kd = key_newstruct();
450 key_structsteal(kd, "n", key_newmp(KCAT_PUB, rp.n));
451 key_structsteal(kd, "e", key_newmp(KCAT_PUB, rp.e));
452
453 kkd = key_newstruct();
454 key_structsteal(kkd, "d", key_newmp(KCAT_PRIV | KF_BURN, rp.d));
455 key_structsteal(kkd, "p", key_newmp(KCAT_PRIV | KF_BURN, rp.p));
456 key_structsteal(kkd, "q", key_newmp(KCAT_PRIV | KF_BURN, rp.q));
457 key_structsteal(kkd, "q-inv", key_newmp(KCAT_PRIV | KF_BURN, rp.q_inv));
458 key_structsteal(kkd, "d-mod-p", key_newmp(KCAT_PRIV | KF_BURN, rp.dp));
459 key_structsteal(kkd, "d-mod-q", key_newmp(KCAT_PRIV | KF_BURN, rp.dq));
460 dolock(k, &kkd, "private");
461 key_structsteal(kd, "private", kkd);
462 key_setkeydata(k->kf, k->k, kd);
463 key_drop(kd);
ab0ca95f 464 rsa_privfree(&rp);
252c122d 465}
466
467static void alg_dsaparam(keyopts *k)
468{
469 static const char *pl[] = { "q", "p", "g", 0 };
470 if (!copyparam(k, pl)) {
471 dsa_param dp;
472 octet *p;
473 size_t sz;
474 dstr d = DSTR_INIT;
475 base64_ctx c;
ef13e9a4 476 key_data *kd;
f4f8e305 477 dsa_seed ds;
252c122d 478
479 /* --- Choose appropriate bit lengths if necessary --- */
480
481 if (!k->qbits)
482 k->qbits = 160;
483 if (!k->bits)
ef13e9a4 484 k->bits = 1024;
252c122d 485
486 /* --- Allocate a seed block --- */
487
488 sz = (k->qbits + 7) >> 3;
489 p = sub_alloc(sz);
34e4f738 490 k->r->ops->fill(k->r, p, sz);
252c122d 491
492 /* --- Allocate the parameters --- */
493
f4f8e305 494 if (dsa_gen(&dp, k->qbits, k->bits, 0, p, sz, &ds,
40d5a112 495 (k->f & f_quiet) ? 0 : pgen_ev, 0))
252c122d 496 die(EXIT_FAILURE, "DSA parameter generation failed");
497
498 /* --- Store the parameters --- */
499
ef13e9a4 500 kd = key_newstruct();
501 key_structsteal(kd, "q", key_newmp(KCAT_SHARE, dp.q));
502 key_structsteal(kd, "p", key_newmp(KCAT_SHARE, dp.p));
503 key_structsteal(kd, "g", key_newmp(KCAT_SHARE, dp.g));
252c122d 504 mp_drop(dp.q);
505 mp_drop(dp.p);
506 mp_drop(dp.g);
ef13e9a4 507 key_setkeydata(k->kf, k->k, kd);
508 key_drop(kd);
252c122d 509
510 /* --- Store the seed for future verification --- */
511
512 base64_init(&c);
513 c.maxline = 0;
514 c.indent = "";
f4f8e305 515 base64_encode(&c, ds.p, ds.sz, &d);
252c122d 516 base64_encode(&c, 0, 0, &d);
ef13e9a4 517 DPUTZ(&d);
252c122d 518 key_putattr(k->kf, k->k, "seed", d.buf);
f4f8e305 519 DRESET(&d);
520 dstr_putf(&d, "%u", ds.count);
521 key_putattr(k->kf, k->k, "count", d.buf);
522 xfree(ds.p);
252c122d 523 sub_free(p, sz);
524 dstr_destroy(&d);
525 }
526}
527
528static void alg_dsa(keyopts *k)
529{
530 mp *q, *p, *g;
531 mp *x, *y;
532 mpmont mm;
ef13e9a4 533 key_data *kd, *kkd;
252c122d 534
535 /* --- Get the shared parameters --- */
536
537 alg_dsaparam(k);
ef13e9a4 538 key_split(&k->k->k); kd = k->k->k;
252c122d 539 q = getmp(kd, "q");
540 p = getmp(kd, "p");
541 g = getmp(kd, "g");
542
543 /* --- Choose a private key --- */
544
34e4f738 545 x = mprand_range(MP_NEWSEC, q, k->r, 0);
252c122d 546 mpmont_create(&mm, p);
547 y = mpmont_exp(&mm, MP_NEW, g, x);
548
549 /* --- Store everything away --- */
550
ef13e9a4 551 key_structsteal(kd, "y", key_newmp(KCAT_PUB, y));
252c122d 552
ef13e9a4 553 kkd = key_newstruct();
554 key_structsteal(kkd, "x", key_newmp(KCAT_PRIV | KF_BURN, x));
555 dolock(k, &kkd, "private");
556 key_structsteal(kd, "private", kkd);
052b36d0 557
558 mp_drop(x); mp_drop(y);
252c122d 559}
560
561static void alg_dhparam(keyopts *k)
562{
052b36d0 563 static const char *pl[] = { "p", "q", "g", 0 };
ef13e9a4 564 key_data *kd;
252c122d 565 if (!copyparam(k, pl)) {
052b36d0 566 dh_param dp;
40d5a112 567 int rc;
252c122d 568
3563e365 569 if (k->curve) {
570 qd_parse qd;
3688eb75 571 group *g;
572 const char *e;
45c0fd36 573
3563e365 574 if (strcmp(k->curve, "list") == 0) {
c65df279 575 unsigned i, w;
3688eb75 576 LIST("Built-in prime fields", stdout, ptab[i].name, ptab[i].name);
3563e365 577 exit(0);
578 }
579 qd.p = k->curve;
580 if (dh_parse(&qd, &dp))
3688eb75 581 die(EXIT_FAILURE, "error in field spec: %s", qd.e);
582 if (!qd_eofp(&qd))
583 die(EXIT_FAILURE, "junk at end of field spec");
584 if ((g = group_prime(&dp)) == 0)
585 die(EXIT_FAILURE, "invalid prime field");
586 if (!(k->f & f_quiet) && (e = G_CHECK(g, &rand_global)) != 0)
45c0fd36 587 moan("WARNING! group check failed: %s", e);
3688eb75 588 G_DESTROYGROUP(g);
3563e365 589 goto done;
590 }
45c0fd36 591
252c122d 592 if (!k->bits)
593 k->bits = 1024;
594
595 /* --- Choose a large safe prime number --- */
596
40d5a112 597 if (k->f & f_limlee) {
598 mp **f;
599 size_t nf;
600 if (!k->qbits)
601 k->qbits = 256;
602 rc = dh_limlee(&dp, k->qbits, k->bits,
603 (k->f & f_subgroup) ? DH_SUBGROUP : 0,
34e4f738 604 0, k->r, (k->f & f_quiet) ? 0 : pgen_ev, 0,
40d5a112 605 (k->f & f_quiet) ? 0 : pgen_evspin, 0, &nf, &f);
606 if (!rc) {
607 dstr d = DSTR_INIT;
608 size_t i;
609 for (i = 0; i < nf; i++) {
610 if (i)
611 dstr_puts(&d, ", ");
612 mp_writedstr(f[i], &d, 10);
613 mp_drop(f[i]);
614 }
615 key_putattr(k->kf, k->k, "factors", d.buf);
616 dstr_destroy(&d);
617 }
4e67e30b
MW
618 } else if (k->f & f_kcdsa) {
619 if (!k->qbits)
620 k->qbits = 256;
621 rc = dh_kcdsagen(&dp, k->qbits, k->bits, 0,
622 0, k->r, (k->f & f_quiet) ? 0 : pgen_ev, 0);
623 if (!rc) {
624 dstr d = DSTR_INIT;
625 mp *v = MP_NEW;
626
627 mp_writedstr(dp.q, &d, 10);
628 mp_div(&v, 0, dp.p, dp.q);
629 v = mp_lsr(v, v, 1);
630 dstr_puts(&d, ", ");
631 mp_writedstr(v, &d, 10);
632 mp_drop(v);
633 key_putattr(k->kf, k->k, "factors", d.buf);
634 dstr_destroy(&d);
635 }
40d5a112 636 } else
34e4f738 637 rc = dh_gen(&dp, k->qbits, k->bits, 0, k->r,
40d5a112 638 (k->f & f_quiet) ? 0 : pgen_ev, 0);
639
640 if (rc)
252c122d 641 die(EXIT_FAILURE, "Diffie-Hellman parameter generation failed");
642
3563e365 643 done:
ef13e9a4 644 kd = key_newstruct();
645 key_structsteal(kd, "p", key_newmp(KCAT_SHARE, dp.p));
646 key_structsteal(kd, "q", key_newmp(KCAT_SHARE, dp.q));
647 key_structsteal(kd, "g", key_newmp(KCAT_SHARE, dp.g));
052b36d0 648 mp_drop(dp.q);
649 mp_drop(dp.p);
650 mp_drop(dp.g);
ef13e9a4 651 key_setkeydata(k->kf, k->k, kd);
652 key_drop(kd);
34e4f738 653 }
252c122d 654}
655
656static void alg_dh(keyopts *k)
657{
658 mp *x, *y;
052b36d0 659 mp *p, *q, *g;
252c122d 660 mpmont mm;
ef13e9a4 661 key_data *kd, *kkd;
252c122d 662
663 /* --- Get the shared parameters --- */
664
665 alg_dhparam(k);
ef13e9a4 666 key_split(&k->k->k); kd = k->k->k;
252c122d 667 p = getmp(kd, "p");
052b36d0 668 q = getmp(kd, "q");
252c122d 669 g = getmp(kd, "g");
670
671 /* --- Choose a suitable private key --- *
672 *
673 * Since %$g$% has order %$q$%, choose %$x < q$%.
674 */
675
34e4f738 676 x = mprand_range(MP_NEWSEC, q, k->r, 0);
252c122d 677
678 /* --- Compute the public key %$y = g^x \bmod p$% --- */
679
680 mpmont_create(&mm, p);
052b36d0 681 y = mpmont_exp(&mm, MP_NEW, g, x);
252c122d 682 mpmont_destroy(&mm);
683
684 /* --- Store everything away --- */
685
ef13e9a4 686 key_structsteal(kd, "y", key_newmp(KCAT_PUB, y));
252c122d 687
ef13e9a4 688 kkd = key_newstruct();
689 key_structsteal(kkd, "x", key_newmp(KCAT_PRIV | KF_BURN, x));
690 dolock(k, &kkd, "private");
691 key_structsteal(kd, "private", kkd);
052b36d0 692
693 mp_drop(x); mp_drop(y);
252c122d 694}
695
696static void alg_bbs(keyopts *k)
697{
ab0ca95f 698 bbs_priv bp;
ef13e9a4 699 key_data *kd, *kkd;
252c122d 700
701 /* --- Sanity checking --- */
702
703 if (k->p)
704 die(EXIT_FAILURE, "no shared parameters for Blum-Blum-Shub keys");
705 if (!k->bits)
706 k->bits = 1024;
707
708 /* --- Generate the BBS parameters --- */
709
34e4f738 710 if (bbs_gen(&bp, k->bits, k->r, 0,
052b36d0 711 (k->f & f_quiet) ? 0 : pgen_ev, 0))
252c122d 712 die(EXIT_FAILURE, "Blum-Blum-Shub key generation failed");
252c122d 713
714 /* --- Allrighty then --- */
715
ef13e9a4 716 kd = key_newstruct();
717 key_structsteal(kd, "n", key_newmp(KCAT_PUB, bp.n));
252c122d 718
ef13e9a4 719 kkd = key_newstruct();
720 key_structsteal(kkd, "p", key_newmp(KCAT_PRIV | KF_BURN, bp.p));
721 key_structsteal(kkd, "q", key_newmp(KCAT_PRIV | KF_BURN, bp.q));
722 dolock(k, &kkd, "private");
723 key_structsteal(kd, "private", kkd);
724 key_setkeydata(k->kf, k->k, kd);
725 key_drop(kd);
252c122d 726
ab0ca95f 727 bbs_privfree(&bp);
252c122d 728}
729
3688eb75 730static void alg_binparam(keyopts *k)
731{
732 static const char *pl[] = { "p", "q", "g", 0 };
733 if (!copyparam(k, pl)) {
734 gbin_param gb;
735 qd_parse qd;
736 group *g;
737 const char *e;
ef13e9a4 738 key_data *kd;
3688eb75 739
740 /* --- Decide on a field --- */
741
742 if (!k->bits) k->bits = 128;
743 if (k->curve && strcmp(k->curve, "list") == 0) {
744 unsigned i, w;
745 LIST("Built-in binary fields", stdout,
746 bintab[i].name, bintab[i].name);
747 exit(0);
748 }
749 if (!k->curve) {
750 if (k->bits <= 40) k->curve = "p1363-40";
751 else if (k->bits <= 56) k->curve = "p1363-56";
752 else if (k->bits <= 64) k->curve = "p1363-64";
753 else if (k->bits <= 80) k->curve = "p1363-80";
754 else if (k->bits <= 112) k->curve = "p1363-112";
755 else if (k->bits <= 128) k->curve = "p1363-128";
756 else {
757 die(EXIT_FAILURE,
758 "no built-in binary fields provide %u-bit security",
759 k->bits);
760 }
761 }
762
763 /* --- Check it --- */
764
765 qd.e = 0;
766 qd.p = k->curve;
767 if (dhbin_parse(&qd, &gb))
768 die(EXIT_FAILURE, "error in field spec: %s", qd.e);
769 if (!qd_eofp(&qd))
770 die(EXIT_FAILURE, "junk at end of field spec");
771 if ((g = group_binary(&gb)) == 0)
772 die(EXIT_FAILURE, "invalid binary field");
773 if (!(k->f & f_quiet) && (e = G_CHECK(g, &rand_global)) != 0)
774 moan("WARNING! group check failed: %s", e);
775 G_DESTROYGROUP(g);
776
777 /* --- Write out the answer --- */
778
ef13e9a4 779 kd = key_newstruct();
780 key_structsteal(kd, "p", key_newmp(KCAT_SHARE, gb.p));
781 key_structsteal(kd, "q", key_newmp(KCAT_SHARE, gb.q));
782 key_structsteal(kd, "g", key_newmp(KCAT_SHARE, gb.g));
3688eb75 783 mp_drop(gb.q);
784 mp_drop(gb.p);
785 mp_drop(gb.g);
ef13e9a4 786 key_setkeydata(k->kf, k->k, kd);
787 key_drop(kd);
3688eb75 788 }
789}
790
791static void alg_bin(keyopts *k)
792{
793 mp *x, *y;
794 mp *p, *q, *g;
795 gfreduce r;
ef13e9a4 796 key_data *kd, *kkd;
3688eb75 797
798 /* --- Get the shared parameters --- */
799
800 alg_binparam(k);
ef13e9a4 801 key_split(&k->k->k); kd = k->k->k;
3688eb75 802 p = getmp(kd, "p");
803 q = getmp(kd, "q");
804 g = getmp(kd, "g");
805
806 /* --- Choose a suitable private key --- *
807 *
808 * Since %$g$% has order %$q$%, choose %$x < q$%.
809 */
810
811 x = mprand_range(MP_NEWSEC, q, k->r, 0);
812
813 /* --- Compute the public key %$y = g^x \bmod p$% --- */
814
815 gfreduce_create(&r, p);
816 y = gfreduce_exp(&r, MP_NEW, g, x);
817 gfreduce_destroy(&r);
818
819 /* --- Store everything away --- */
820
ef13e9a4 821 key_structsteal(kd, "y", key_newmp(KCAT_PUB, y));
3688eb75 822
ef13e9a4 823 kkd = key_newstruct();
824 key_structsteal(kkd, "x", key_newmp(KCAT_PRIV | KF_BURN, x));
825 dolock(k, &kkd, "private");
826 key_structsteal(kd, "private", kkd);
3688eb75 827
828 mp_drop(x); mp_drop(y);
829}
830
1ba83484 831static void alg_ecparam(keyopts *k)
832{
833 static const char *pl[] = { "curve", 0 };
834 if (!copyparam(k, pl)) {
835 ec_info ei;
836 const char *e;
ef13e9a4 837 key_data *kd;
1ba83484 838
839 /* --- Decide on a curve --- */
840
841 if (!k->bits) k->bits = 256;
3563e365 842 if (k->curve && strcmp(k->curve, "list") == 0) {
c65df279 843 unsigned i, w;
844 LIST("Built-in elliptic curves", stdout,
845 ectab[i].name, ectab[i].name);
3563e365 846 exit(0);
847 }
1ba83484 848 if (!k->curve) {
849 if (k->bits <= 56) k->curve = "secp112r1";
850 else if (k->bits <= 64) k->curve = "secp128r1";
851 else if (k->bits <= 80) k->curve = "secp160r1";
852 else if (k->bits <= 96) k->curve = "secp192r1";
853 else if (k->bits <= 112) k->curve = "secp224r1";
854 else if (k->bits <= 128) k->curve = "secp256r1";
855 else if (k->bits <= 192) k->curve = "secp384r1";
856 else if (k->bits <= 256) k->curve = "secp521r1";
857 else
858 die(EXIT_FAILURE, "no built-in curves provide %u-bit security",
859 k->bits);
860 }
861
862 /* --- Check it --- */
863
864 if ((e = ec_getinfo(&ei, k->curve)) != 0)
865 die(EXIT_FAILURE, "error in curve spec: %s", e);
34e4f738 866 if (!(k->f & f_quiet) && (e = ec_checkinfo(&ei, k->r)) != 0)
1ba83484 867 moan("WARNING! curve check failed: %s", e);
868 ec_freeinfo(&ei);
869
870 /* --- Write out the answer --- */
871
ef13e9a4 872 kd = key_newstruct();
873 key_structsteal(kd, "curve", key_newstring(KCAT_SHARE, k->curve));
874 key_setkeydata(k->kf, k->k, kd);
875 key_drop(kd);
1ba83484 876 }
877}
878
879static void alg_ec(keyopts *k)
880{
ef13e9a4 881 key_data *kd;
1ba83484 882 key_data *kkd;
883 mp *x = MP_NEW;
884 ec p = EC_INIT;
885 const char *e;
886 ec_info ei;
887
888 /* --- Get the curve --- */
889
890 alg_ecparam(k);
ef13e9a4 891 key_split(&k->k->k); kd = k->k->k;
1ba83484 892 if ((kkd = key_structfind(kd, "curve")) == 0)
893 die(EXIT_FAILURE, "unexpected failure looking up subkey `curve')");
894 if ((kkd->e & KF_ENCMASK) != KENC_STRING)
895 die(EXIT_FAILURE, "subkey `curve' is not a string");
896 if ((e = ec_getinfo(&ei, kkd->u.p)) != 0)
897 die(EXIT_FAILURE, "error in curve spec: %s", e);
898
899 /* --- Invent a private exponent and compute the public key --- */
900
34e4f738 901 x = mprand_range(MP_NEWSEC, ei.r, k->r, 0);
1ba83484 902 ec_mul(ei.c, &p, &ei.g, x);
903
904 /* --- Store everything away --- */
905
ef13e9a4 906 key_structsteal(kd, "p", key_newec(KCAT_PUB, &p));
907
908 kkd = key_newstruct();
909 key_structsteal(kkd, "x", key_newmp(KCAT_PRIV | KF_BURN, x));
910 dolock(k, &kkd, "private");
911 key_structsteal(kd, "private", kkd);
1ba83484 912
913 /* --- Done --- */
914
915 ec_freeinfo(&ei);
916 mp_drop(x);
917}
918
252c122d 919/* --- The algorithm tables --- */
920
921typedef struct keyalg {
922 const char *name;
923 void (*proc)(keyopts *o);
924 const char *help;
925} keyalg;
926
927static keyalg algtab[] = {
928 { "binary", alg_binary, "Plain binary data" },
929 { "des", alg_des, "Binary with DES-style parity" },
930 { "rsa", alg_rsa, "RSA public-key encryption" },
3688eb75 931 { "bbs", alg_bbs, "Blum-Blum-Shub generator" },
252c122d 932 { "dsa", alg_dsa, "DSA digital signatures" },
933 { "dsa-param", alg_dsaparam, "DSA shared parameters" },
934 { "dh", alg_dh, "Diffie-Hellman key exchange" },
935 { "dh-param", alg_dhparam, "Diffie-Hellman parameters" },
3688eb75 936 { "bindh", alg_bin, "DH over a binary field" },
937 { "bindh-param", alg_binparam, "Binary-field DH parameters" },
1ba83484 938 { "ec-param", alg_ecparam, "Elliptic curve parameters" },
939 { "ec", alg_ec, "Elliptic curve crypto" },
252c122d 940 { 0, 0 }
941};
d03ab969 942
943/* --- @cmd_add@ --- */
944
945static int cmd_add(int argc, char *argv[])
946{
947 key_file f;
d03ab969 948 time_t exp = KEXP_EXPIRE;
90a88ae3 949 uint32 kid = rand_global.ops->word(&rand_global);
252c122d 950 const char *tag = 0, *ptag = 0;
d03ab969 951 const char *c = 0;
252c122d 952 keyalg *alg = algtab;
052b36d0 953 const char *rtag = 0;
34e4f738 954 const struct seedalg *sa = SEEDALG_DEFAULT;
955 keyopts k = { 0, 0, DSTR_INIT, 0, 0, 0, 0, 0 };
956 const char *seed = 0;
957 k.r = &rand_global;
d03ab969 958
959 /* --- Parse options for the subcommand --- */
960
961 for (;;) {
962 static struct option opt[] = {
252c122d 963 { "algorithm", OPTF_ARGREQ, 0, 'a' },
d03ab969 964 { "bits", OPTF_ARGREQ, 0, 'b' },
252c122d 965 { "qbits", OPTF_ARGREQ, 0, 'B' },
966 { "parameters", OPTF_ARGREQ, 0, 'p' },
d03ab969 967 { "expire", OPTF_ARGREQ, 0, 'e' },
968 { "comment", OPTF_ARGREQ, 0, 'c' },
252c122d 969 { "tag", OPTF_ARGREQ, 0, 't' },
ce70ec47 970 { "rand-id", OPTF_ARGREQ, 0, 'R' },
90a88ae3 971 { "key-id", OPTF_ARGREQ, 0, 'I' },
1ba83484 972 { "curve", OPTF_ARGREQ, 0, 'C' },
34e4f738 973 { "seedalg", OPTF_ARGREQ, 0, 'A' },
974 { "seed", OPTF_ARGREQ, 0, 's' },
975 { "newseed", OPTF_ARGREQ, 0, 'n' },
252c122d 976 { "lock", 0, 0, 'l' },
977 { "quiet", 0, 0, 'q' },
40d5a112 978 { "lim-lee", 0, 0, 'L' },
979 { "subgroup", 0, 0, 'S' },
4e67e30b 980 { "kcdsa", 0, 0, 'K' },
d03ab969 981 { 0, 0, 0, 0 }
982 };
90a88ae3 983 int i = mdwopt(argc, argv, "+a:b:B:p:e:c:t:R:I:C:A:s:n:lqrLKS",
a9fcea0e 984 opt, 0, 0, 0);
d03ab969 985 if (i < 0)
986 break;
987
988 /* --- Handle the various options --- */
989
990 switch (i) {
991
252c122d 992 /* --- Read an algorithm name --- */
993
994 case 'a': {
995 keyalg *a;
996 size_t sz = strlen(optarg);
997
998 if (strcmp(optarg, "list") == 0) {
999 for (a = algtab; a->name; a++)
1000 printf("%-10s %s\n", a->name, a->help);
1001 return (0);
1002 }
1003
1004 alg = 0;
1005 for (a = algtab; a->name; a++) {
1006 if (strncmp(optarg, a->name, sz) == 0) {
1007 if (a->name[sz] == 0) {
1008 alg = a;
1009 break;
1010 } else if (alg)
1011 die(EXIT_FAILURE, "ambiguous algorithm name `%s'", optarg);
1012 else
1013 alg = a;
1014 }
1015 }
1016 if (!alg)
1017 die(EXIT_FAILURE, "unknown algorithm name `%s'", optarg);
1018 } break;
1019
d03ab969 1020 /* --- Bits must be nonzero and a multiple of 8 --- */
1021
252c122d 1022 case 'b': {
1023 char *p;
1024 k.bits = strtoul(optarg, &p, 0);
1025 if (k.bits == 0 || *p != 0)
1026 die(EXIT_FAILURE, "bad bitlength `%s'", optarg);
1027 } break;
1028
1029 case 'B': {
1030 char *p;
1031 k.qbits = strtoul(optarg, &p, 0);
1032 if (k.qbits == 0 || *p != 0)
1033 die(EXIT_FAILURE, "bad bitlength `%s'", optarg);
1034 } break;
1035
1036 /* --- Parameter selection --- */
1037
1038 case 'p':
1039 ptag = optarg;
d03ab969 1040 break;
1041
1042 /* --- Expiry dates get passed to @get_date@ for parsing --- */
1043
1044 case 'e':
9cea6911 1045 if (strcmp(optarg, "forever") == 0)
d03ab969 1046 exp = KEXP_FOREVER;
1047 else {
1048 exp = get_date(optarg, 0);
1049 if (exp == -1)
252c122d 1050 die(EXIT_FAILURE, "bad expiry date `%s'", optarg);
d03ab969 1051 }
1052 break;
1053
1054 /* --- Store comments without interpretation --- */
1055
1056 case 'c':
252c122d 1057 if (key_chkcomment(optarg))
1058 die(EXIT_FAILURE, "bad comment string `%s'", optarg);
d03ab969 1059 c = optarg;
1060 break;
1061
1ba83484 1062 /* --- Elliptic curve parameters --- */
1063
1064 case 'C':
1ba83484 1065 k.curve = optarg;
1066 break;
1067
252c122d 1068 /* --- Store tags --- */
1069
1070 case 't':
1071 if (key_chkident(optarg))
1072 die(EXIT_FAILURE, "bad tag string `%s'", optarg);
1073 tag = optarg;
1074 break;
ce70ec47 1075 case 'r':
1076 k.f |= f_retag;
1077 break;
252c122d 1078
34e4f738 1079 /* --- Seeding --- */
1080
1081 case 'A': {
1082 const struct seedalg *ss;
1083 if (strcmp(optarg, "list") == 0) {
1084 printf("Seed algorithms:\n");
1085 for (ss = seedtab; ss->p; ss++)
1086 printf(" %s\n", ss->p);
1087 exit(0);
1088 }
1089 if (seed) die(EXIT_FAILURE, "seed already set -- put -A first");
1090 sa = 0;
1091 for (ss = seedtab; ss->p; ss++) {
1092 if (strcmp(optarg, ss->p) == 0)
1093 sa = ss;
1094 }
1095 if (!sa)
1096 die(EXIT_FAILURE, "seed algorithm `%s' not known", optarg);
1097 } break;
1098
1099 case 's': {
1100 base64_ctx b;
1101 dstr d = DSTR_INIT;
45c0fd36 1102 if (seed) die(EXIT_FAILURE, "seed already set");
34e4f738 1103 base64_init(&b);
1104 base64_decode(&b, optarg, strlen(optarg), &d);
1105 base64_decode(&b, 0, 0, &d);
1106 k.r = sa->gen(d.buf, d.len);
1107 seed = optarg;
1108 dstr_destroy(&d);
1109 } break;
45c0fd36 1110
34e4f738 1111 case 'n': {
1112 base64_ctx b;
1113 dstr d = DSTR_INIT;
1114 char *p;
1115 unsigned n = strtoul(optarg, &p, 0);
1116 if (n == 0 || *p != 0 || n % 8 != 0)
1117 die(EXIT_FAILURE, "bad seed length `%s'", optarg);
45c0fd36 1118 if (seed) die(EXIT_FAILURE, "seed already set");
34e4f738 1119 n /= 8;
1120 p = xmalloc(n);
1121 rand_get(RAND_GLOBAL, p, n);
1122 base64_init(&b);
1123 base64_encode(&b, p, n, &d);
1124 base64_encode(&b, 0, 0, &d);
1125 seed = d.buf;
1126 k.r = sa->gen(p, n);
1127 } break;
90a88ae3
MW
1128
1129 /* --- Key id --- */
1130
1131 case 'I': {
1132 char *p;
1133 unsigned long id;
1134
1135 errno = 0;
1136 id = strtoul(optarg, &p, 16);
1137 if (errno || *p || id > MASK32)
1138 die(EXIT_FAILURE, "bad key-id `%s'", optarg);
1139 kid = id;
1140 } break;
45c0fd36 1141
252c122d 1142 /* --- Other flags --- */
1143
ce70ec47 1144 case 'R':
052b36d0 1145 rtag = optarg;
1146 break;
252c122d 1147 case 'l':
1148 k.f |= f_lock;
1149 break;
1150 case 'q':
1151 k.f |= f_quiet;
1152 break;
40d5a112 1153 case 'L':
1154 k.f |= f_limlee;
1155 break;
4e67e30b
MW
1156 case 'K':
1157 k.f |= f_kcdsa;
1158 break;
40d5a112 1159 case 'S':
1160 k.f |= f_subgroup;
1161 break;
252c122d 1162
d03ab969 1163 /* --- Other things are bogus --- */
1164
1165 default:
252c122d 1166 k.f |= f_bogus;
d03ab969 1167 break;
1168 }
1169 }
1170
252c122d 1171 /* --- Various sorts of bogosity --- */
d03ab969 1172
252c122d 1173 if ((k.f & f_bogus) || optind + 1 > argc) {
d03ab969 1174 die(EXIT_FAILURE,
c65df279 1175 "Usage: add [OPTIONS] TYPE [ATTR...]");
d03ab969 1176 }
252c122d 1177 if (key_chkident(argv[optind]))
1178 die(EXIT_FAILURE, "bad key type `%s'", argv[optind]);
1179
1180 /* --- Set up various bits of the state --- */
1181
d03ab969 1182 if (exp == KEXP_EXPIRE)
1183 exp = time(0) + 14 * 24 * 60 * 60;
1184
252c122d 1185 /* --- Open the file and create the basic key block --- *
1186 *
1187 * Keep on generating keyids until one of them doesn't collide.
1188 */
d03ab969 1189
252c122d 1190 doopen(&f, KOPEN_WRITE);
1191 k.kf = &f;
1192
052b36d0 1193 /* --- Key the generator --- */
1194
1195 keyrand(&f, rtag);
1196
252c122d 1197 for (;;) {
252c122d 1198 int err;
90a88ae3 1199 if ((err = key_new(&f, kid, argv[optind], exp, &k.k)) == 0)
252c122d 1200 break;
ef13e9a4 1201 else if (err != KERR_DUPID)
252c122d 1202 die(EXIT_FAILURE, "error adding new key: %s", key_strerror(err));
1203 }
d03ab969 1204
252c122d 1205 /* --- Set various simple attributes --- */
d03ab969 1206
252c122d 1207 if (tag) {
ce70ec47 1208 int err;
1209 key *kk;
1210 if (k.f & f_retag) {
694fc3a8 1211 if ((kk = key_bytag(&f, tag)) != 0 &&
1212 kk->tag &&
1213 strcmp(kk->tag, tag) == 0)
ce70ec47 1214 key_settag(&f, kk, 0);
1215 }
1216 if ((err = key_settag(&f, k.k, tag)) != 0)
252c122d 1217 die(EXIT_FAILURE, "error setting key tag: %s", key_strerror(err));
1218 }
d03ab969 1219
252c122d 1220 if (c) {
1221 int err = key_setcomment(&f, k.k, c);
1222 if (err)
1223 die(EXIT_FAILURE, "error setting key comment: %s", key_strerror(err));
1224 }
1225
1226 setattr(&f, k.k, argv + optind + 1);
34e4f738 1227 if (seed) {
1228 key_putattr(&f, k.k, "genseed", seed);
1229 key_putattr(&f, k.k, "seedalg", sa->p);
1230 }
252c122d 1231
1232 key_fulltag(k.k, &k.tag);
1233
1234 /* --- Find the parameter key --- */
1235
1236 if (ptag) {
1237 if ((k.p = key_bytag(&f, ptag)) == 0)
1238 die(EXIT_FAILURE, "parameter key `%s' not found", ptag);
ef13e9a4 1239 if ((k.p->k->e & KF_ENCMASK) != KENC_STRUCT)
252c122d 1240 die(EXIT_FAILURE, "parameter key `%s' is not structured", ptag);
1241 }
1242
1243 /* --- Now generate the actual key data --- */
1244
1245 alg->proc(&k);
1246
1247 /* --- Done --- */
d03ab969 1248
ef13e9a4 1249 dstr_destroy(&k.tag);
d03ab969 1250 doclose(&f);
1251 return (0);
1252}
1253
252c122d 1254/*----- Key listing -------------------------------------------------------*/
1255
1256/* --- Listing options --- */
1257
1258typedef struct listopts {
1259 const char *tfmt; /* Date format (@strftime@-style) */
1260 int v; /* Verbosity level */
1261 unsigned f; /* Various flags */
1262 time_t t; /* Time now (for key expiry) */
1263 key_filter kf; /* Filter for matching keys */
1264} listopts;
1265
1266/* --- Listing flags --- */
1267
16efd15b 1268#define f_newline 2u /* Write newline before next entry */
1269#define f_attr 4u /* Written at least one attribute */
1270#define f_utc 8u /* Emit UTC time, not local time */
252c122d 1271
1272/* --- @showkeydata@ --- *
1273 *
1274 * Arguments: @key_data *k@ = pointer to key to write
1275 * @int ind@ = indentation level
1276 * @listopts *o@ = listing options
1277 * @dstr *d@ = tag string for this subkey
1278 *
1279 * Returns: ---
1280 *
1281 * Use: Emits a piece of key data in a human-readable format.
1282 */
1283
1284static void showkeydata(key_data *k, int ind, listopts *o, dstr *d)
1285{
1286#define INDENT(i) do { \
1287 int _i; \
1288 for (_i = 0; _i < (i); _i++) { \
1289 putchar(' '); \
1290 } \
1291} while (0)
1292
1293 switch (k->e & KF_ENCMASK) {
1294
1295 /* --- Binary key data --- *
1296 *
1297 * Emit as a simple hex dump.
1298 */
1299
1300 case KENC_BINARY: {
1301 const octet *p = k->u.k.k;
1302 const octet *l = p + k->u.k.sz;
1303 size_t sz = 0;
1304
1305 fputs(" {", stdout);
1306 while (p < l) {
1307 if (sz % 16 == 0) {
1308 putchar('\n');
1309 INDENT(ind + 2);
1310 } else if (sz % 8 == 0)
1311 fputs(" ", stdout);
1312 else
1313 putc(' ', stdout);
1314 printf("%02x", *p++);
1315 sz++;
1316 }
1317 putchar('\n');
1318 INDENT(ind);
1319 fputs("}\n", stdout);
1320 } break;
1321
1322 /* --- Encrypted data --- *
1323 *
1324 * If the user is sufficiently keen, ask for a passphrase and decrypt the
1325 * key. Otherwise just say that it's encrypted and move on.
1326 */
1327
1328 case KENC_ENCRYPT:
1329 if (o->v <= 3)
1330 fputs(" encrypted\n", stdout);
1331 else {
ef13e9a4 1332 key_data *kd;
1333 if (key_punlock(&kd, k, d->buf))
252c122d 1334 printf(" <failed to unlock %s>\n", d->buf);
1335 else {
1336 fputs(" encrypted", stdout);
ef13e9a4 1337 showkeydata(kd, ind, o, d);
1338 key_drop(kd);
252c122d 1339 }
1340 }
1341 break;
1342
1343 /* --- Integer keys --- *
1344 *
1345 * Emit as a large integer in decimal. This makes using the key in
1346 * `calc' or whatever easier.
1347 */
1348
1349 case KENC_MP:
1350 putchar(' ');
1351 mp_writefile(k->u.m, stdout, 10);
1352 putchar('\n');
1353 break;
1354
1ba83484 1355 /* --- Strings --- */
1356
1357 case KENC_STRING:
1358 printf(" `%s'\n", k->u.p);
1359 break;
1360
1361 /* --- Elliptic curve points --- */
1362
1363 case KENC_EC:
d1ee65aa 1364 if (EC_ATINF(&k->u.e))
a9fcea0e 1365 fputs(" inf\n", stdout);
d1ee65aa 1366 else {
1367 fputs(" 0x", stdout); mp_writefile(k->u.e.x, stdout, 16);
1368 fputs(", 0x", stdout); mp_writefile(k->u.e.y, stdout, 16);
1369 putchar('\n');
1370 }
45c0fd36 1371 break;
1ba83484 1372
252c122d 1373 /* --- Structured keys --- *
1374 *
1375 * Just iterate over the subkeys.
1376 */
1377
1378 case KENC_STRUCT: {
ef13e9a4 1379 key_subkeyiter i;
1380 const char *tag;
252c122d 1381 size_t n = d->len;
1382
1383 fputs(" {\n", stdout);
ef13e9a4 1384 for (key_mksubkeyiter(&i, k); key_nextsubkey(&i, &tag, &k); ) {
1385 if (!key_match(k, &o->kf))
252c122d 1386 continue;
1387 INDENT(ind + 2);
ef13e9a4 1388 printf("%s =", tag);
252c122d 1389 d->len = n;
ef13e9a4 1390 dstr_putf(d, ".%s", tag);
1391 showkeydata(k, ind + 2, o, d);
252c122d 1392 }
1393 INDENT(ind);
1394 fputs("}\n", stdout);
45c0fd36 1395 } break;
252c122d 1396 }
1397
1398#undef INDENT
1399}
1400
1401/* --- @showkey@ --- *
1402 *
1403 * Arguments: @key *k@ = pointer to key to show
1404 * @listopts *o@ = pointer to listing options
1405 *
1406 * Returns: ---
1407 *
1408 * Use: Emits a listing of a particular key.
1409 */
1410
1411static void showkey(key *k, listopts *o)
1412{
1413 char ebuf[24], dbuf[24];
1414 struct tm *tm;
1415
1416 /* --- Skip the key if the filter doesn't match --- */
1417
ef13e9a4 1418 if (!key_match(k->k, &o->kf))
252c122d 1419 return;
1420
1421 /* --- Sort out the expiry and deletion times --- */
1422
1423 if (KEY_EXPIRED(o->t, k->exp))
1424 strcpy(ebuf, "expired");
1425 else if (k->exp == KEXP_FOREVER)
1426 strcpy(ebuf, "forever");
1427 else {
1428 tm = (o->f & f_utc) ? gmtime(&k->exp) : localtime(&k->exp);
1429 strftime(ebuf, sizeof(ebuf), o->tfmt, tm);
1430 }
1431
1432 if (KEY_EXPIRED(o->t, k->del))
1433 strcpy(dbuf, "deleted");
1434 else if (k->del == KEXP_FOREVER)
1435 strcpy(dbuf, "forever");
1436 else {
1437 tm = (o->f & f_utc) ? gmtime(&k->del) : localtime(&k->del);
1438 strftime(dbuf, sizeof(dbuf), o->tfmt, tm);
1439 }
1440
1441 /* --- If in compact format, just display and quit --- */
1442
1443 if (!o->v) {
1444 if (!(o->f & f_newline)) {
8cd9f01d 1445 printf("%8s %-20s %-20s %-10s %s\n",
252c122d 1446 "Id", "Tag", "Type", "Expire", "Delete");
1447 }
8cd9f01d 1448 printf("%08lx %-20s %-20s %-10s %s\n",
252c122d 1449 (unsigned long)k->id, k->tag ? k->tag : "<none>",
1450 k->type, ebuf, dbuf);
1451 o->f |= f_newline;
1452 return;
1453 }
1454
1455 /* --- Display the standard header --- */
1456
1457 if (o->f & f_newline)
1458 fputc('\n', stdout);
1459 printf("keyid: %08lx\n", (unsigned long)k->id);
1460 printf("tag: %s\n", k->tag ? k->tag : "<none>");
1461 printf("type: %s\n", k->type);
1462 printf("expiry: %s\n", ebuf);
1463 printf("delete: %s\n", dbuf);
1464 printf("comment: %s\n", k->c ? k->c : "<none>");
1465
1466 /* --- Display the attributes --- */
1467
1468 if (o->v > 1) {
1469 key_attriter i;
1470 const char *av, *an;
1471
1472 o->f &= ~f_attr;
1473 printf("attributes:");
1474 for (key_mkattriter(&i, k); key_nextattr(&i, &an, &av); ) {
dce3fb0d 1475 printf("\n %s = %s", an, av);
252c122d 1476 o->f |= f_attr;
1477 }
1478 if (o->f & f_attr)
1479 fputc('\n', stdout);
1480 else
1481 puts(" <none>");
1482 }
1483
1484 /* --- If dumping requested, dump the raw key data --- */
1485
1486 if (o->v > 2) {
1487 dstr d = DSTR_INIT;
1488 fputs("key:", stdout);
1489 key_fulltag(k, &d);
ef13e9a4 1490 showkeydata(k->k, 0, o, &d);
252c122d 1491 dstr_destroy(&d);
1492 }
45c0fd36 1493
252c122d 1494 o->f |= f_newline;
1495}
1496
1497/* --- @cmd_list@ --- */
1498
1499static int cmd_list(int argc, char *argv[])
1500{
1501 key_file f;
1502 key *k;
1503 listopts o = { 0, 0, 0, 0, { 0, 0 } };
1504
1505 /* --- Parse subcommand options --- */
1506
1507 for (;;) {
1508 static struct option opt[] = {
1509 { "quiet", 0, 0, 'q' },
1510 { "verbose", 0, 0, 'v' },
1511 { "utc", 0, 0, 'u' },
1512 { "filter", OPTF_ARGREQ, 0, 'f' },
1513 { 0, 0, 0, 0 }
1514 };
1515 int i = mdwopt(argc, argv, "+uqvf:", opt, 0, 0, 0);
1516 if (i < 0)
1517 break;
1518
1519 switch (i) {
1520 case 'u':
1521 o.f |= f_utc;
1522 break;
1523 case 'q':
1524 if (o.v)
1525 o.v--;
1526 break;
1527 case 'v':
1528 o.v++;
1529 break;
1530 case 'f': {
1531 char *p;
1532 int e = key_readflags(optarg, &p, &o.kf.f, &o.kf.m);
1533 if (e || *p)
1534 die(EXIT_FAILURE, "bad filter string `%s'", optarg);
45c0fd36 1535 } break;
252c122d 1536 default:
1537 o.f |= f_bogus;
1538 break;
1539 }
1540 }
1541
1542 if (o.f & f_bogus)
c65df279 1543 die(EXIT_FAILURE, "Usage: list [-uqv] [-f FILTER] [TAG...]");
252c122d 1544
1545 /* --- Open the key file --- */
1546
1547 doopen(&f, KOPEN_READ);
1548 o.t = time(0);
1549
1550 /* --- Set up the time format --- */
1551
1552 if (!o.v)
1553 o.tfmt = "%Y-%m-%d";
1554 else if (o.f & f_utc)
1555 o.tfmt = "%Y-%m-%d %H:%M:%S UTC";
1556 else
1557 o.tfmt = "%Y-%m-%d %H:%M:%S %Z";
1558
1559 /* --- If specific keys were requested use them, otherwise do all --- *
1560 *
1561 * Some day, this might turn into a wildcard match.
1562 */
1563
1564 if (optind < argc) {
1565 do {
1566 if ((k = key_bytag(&f, argv[optind])) != 0)
1567 showkey(k, &o);
1568 else {
1569 moan("key `%s' not found", argv[optind]);
1570 o.f |= f_bogus;
1571 }
1572 optind++;
1573 } while (optind < argc);
1574 } else {
1575 key_iter i;
1576 for (key_mkiter(&i, &f); (k = key_next(&i)) != 0; )
1577 showkey(k, &o);
1578 }
1579
1580 /* --- Done --- */
1581
1582 doclose(&f);
1583 if (o.f & f_bogus)
1584 return (EXIT_FAILURE);
1585 else
1586 return (0);
1587}
1588
1589/*----- Command implementation --------------------------------------------*/
1590
d03ab969 1591/* --- @cmd_expire@ --- */
1592
1593static int cmd_expire(int argc, char *argv[])
1594{
1595 key_file f;
1596 key *k;
d03ab969 1597 int i;
1598 int rc = 0;
1599
1600 if (argc < 2)
c65df279 1601 die(EXIT_FAILURE, "Usage: expire TAG...");
d03ab969 1602 doopen(&f, KOPEN_WRITE);
1603 for (i = 1; i < argc; i++) {
252c122d 1604 if ((k = key_bytag(&f, argv[i])) != 0)
d03ab969 1605 key_expire(&f, k);
1606 else {
252c122d 1607 moan("key `%s' not found", argv[i]);
d03ab969 1608 rc = 1;
1609 }
1610 }
1611 doclose(&f);
1612 return (rc);
1613}
1614
1615/* --- @cmd_delete@ --- */
1616
1617static int cmd_delete(int argc, char *argv[])
1618{
1619 key_file f;
1620 key *k;
d03ab969 1621 int i;
1622 int rc = 0;
1623
1624 if (argc < 2)
c65df279 1625 die(EXIT_FAILURE, "Usage: delete TAG...");
d03ab969 1626 doopen(&f, KOPEN_WRITE);
1627 for (i = 1; i < argc; i++) {
252c122d 1628 if ((k = key_bytag(&f, argv[i])) != 0)
d03ab969 1629 key_delete(&f, k);
1630 else {
252c122d 1631 moan("key `%s' not found", argv[i]);
d03ab969 1632 rc = 1;
1633 }
1634 }
1635 doclose(&f);
1636 return (rc);
1637}
1638
1639/* --- @cmd_setattr@ --- */
1640
1641static int cmd_setattr(int argc, char *argv[])
1642{
1643 key_file f;
1644 key *k;
d03ab969 1645
1646 if (argc < 3)
c65df279 1647 die(EXIT_FAILURE, "Usage: setattr TAG ATTR...");
d03ab969 1648 doopen(&f, KOPEN_WRITE);
252c122d 1649 if ((k = key_bytag(&f, argv[1])) == 0)
1650 die(EXIT_FAILURE, "key `%s' not found", argv[1]);
d03ab969 1651 setattr(&f, k, argv + 2);
1652 doclose(&f);
1653 return (0);
1654}
1655
e9be047b 1656/* --- @cmd_getattr@ --- */
1657
1658static int cmd_getattr(int argc, char *argv[])
1659{
1660 key_file f;
1661 key *k;
1662 dstr d = DSTR_INIT;
1663 const char *p;
1664
1665 if (argc != 3)
1666 die(EXIT_FAILURE, "Usage: getattr TAG ATTR");
1667 doopen(&f, KOPEN_READ);
1668 if ((k = key_bytag(&f, argv[1])) == 0)
1669 die(EXIT_FAILURE, "key `%s' not found", argv[1]);
1670 key_fulltag(k, &d);
1671 if ((p = key_getattr(&f, k, argv[2])) == 0)
1672 die(EXIT_FAILURE, "no attribute `%s' for key `%s'", argv[2], d.buf);
1673 puts(p);
1674 dstr_destroy(&d);
1675 doclose(&f);
1676 return (0);
1677}
1678
252c122d 1679/* --- @cmd_finger@ --- */
d03ab969 1680
981bf127 1681static void fingerprint(key *k, const gchash *ch, const key_filter *kf)
d03ab969 1682{
981bf127 1683 ghash *h;
252c122d 1684 dstr d = DSTR_INIT;
981bf127 1685 const octet *p;
1686 size_t i;
d03ab969 1687
981bf127 1688 h = GH_INIT(ch);
1689 if (key_fingerprint(k, h, kf)) {
1690 p = GH_DONE(h, 0);
1691 key_fulltag(k, &d);
1692 for (i = 0; i < ch->hashsz; i++) {
1693 if (i && i % 4 == 0)
1694 putchar('-');
1695 printf("%02x", p[i]);
1696 }
1697 printf(" %s\n", d.buf);
252c122d 1698 }
252c122d 1699 dstr_destroy(&d);
981bf127 1700 GH_DESTROY(h);
252c122d 1701}
d03ab969 1702
252c122d 1703static int cmd_finger(int argc, char *argv[])
1704{
1705 key_file f;
1706 int rc = 0;
981bf127 1707 const gchash *ch = &rmd160;
252c122d 1708 key_filter kf = { KF_NONSECRET, KF_NONSECRET };
d03ab969 1709
1710 for (;;) {
1711 static struct option opt[] = {
252c122d 1712 { "filter", OPTF_ARGREQ, 0, 'f' },
981bf127 1713 { "algorithm", OPTF_ARGREQ, 0, 'a' },
252c122d 1714 { 0, 0, 0, 0 }
d03ab969 1715 };
981bf127 1716 int i = mdwopt(argc, argv, "+f:a:", opt, 0, 0, 0);
d03ab969 1717 if (i < 0)
1718 break;
d03ab969 1719 switch (i) {
252c122d 1720 case 'f': {
1721 char *p;
1722 int err = key_readflags(optarg, &p, &kf.f, &kf.m);
1723 if (err || *p)
1724 die(EXIT_FAILURE, "bad filter string `%s'", optarg);
1725 } break;
981bf127 1726 case 'a':
1727 if ((ch = ghash_byname(optarg)) == 0)
1728 die(EXIT_FAILURE, "unknown hash algorithm `%s'", optarg);
1729 break;
d03ab969 1730 default:
252c122d 1731 rc = 1;
d03ab969 1732 break;
1733 }
1734 }
1735
252c122d 1736 argv += optind; argc -= optind;
1737 if (rc)
c65df279 1738 die(EXIT_FAILURE, "Usage: fingerprint [-f FILTER] [TAG...]");
d03ab969 1739
1740 doopen(&f, KOPEN_READ);
d03ab969 1741
252c122d 1742 if (argc) {
1743 int i;
1744 for (i = 0; i < argc; i++) {
1745 key *k = key_bytag(&f, argv[i]);
1746 if (k)
981bf127 1747 fingerprint(k, ch, &kf);
252c122d 1748 else {
1749 rc = 1;
1750 moan("key `%s' not found", argv[i]);
1751 }
1752 }
1753 } else {
1754 key_iter i;
1755 key *k;
1756 for (key_mkiter(&i, &f); (k = key_next(&i)) != 0; )
981bf127 1757 fingerprint(k, ch, &kf);
252c122d 1758 }
1759 return (rc);
1760}
d03ab969 1761
58507325 1762/* --- @cmd_verify@ --- */
1763
1764static unsigned xdigit(char c)
1765{
1766 if ('A' <= c && c <= 'Z') return (c + 10 - 'A');
1767 if ('a' <= c && c <= 'z') return (c + 10 - 'a');
1768 if ('0' <= c && c <= '9') return (c - '0');
1769 return (~0u);
1770}
1771
1772static void unhexify(octet *q, char *p, size_t n)
1773{
1774 unsigned a = 0;
1775 int i = 0;
1776
1777 for (;;) {
1778 if (*p == '-' || *p == ':' || isspace((unsigned char)*p)) {
1779 p++;
1780 continue;
1781 }
1782 if (!n && !*p)
1783 break;
1784 if (!*p)
1785 die(EXIT_FAILURE, "hex string too short");
1786 if (!isxdigit((unsigned char)*p))
1787 die(EXIT_FAILURE, "bad hex string");
1788 if (!n)
1789 die(EXIT_FAILURE, "hex string too long");
1790 a = (a << 4) | xdigit(*p++);
1791 i++;
1792 if (i == 2) {
1793 *q++ = U8(a);
1794 a = 0;
1795 i = 0;
1796 n--;
1797 }
1798 }
1799}
1800
1801static int cmd_verify(int argc, char *argv[])
1802{
1803 key_file f;
1804 int rc = 0;
1805 const gchash *ch = &rmd160;
1806 ghash *h;
1807 key *k;
1808 octet *buf;
1809 const octet *fpr;
1810 key_filter kf = { KF_NONSECRET, KF_NONSECRET };
1811
1812 for (;;) {
1813 static struct option opt[] = {
1814 { "filter", OPTF_ARGREQ, 0, 'f' },
1815 { "algorithm", OPTF_ARGREQ, 0, 'a' },
1816 { 0, 0, 0, 0 }
1817 };
1818 int i = mdwopt(argc, argv, "+f:a:", opt, 0, 0, 0);
1819 if (i < 0)
1820 break;
1821 switch (i) {
1822 case 'f': {
1823 char *p;
1824 int err = key_readflags(optarg, &p, &kf.f, &kf.m);
1825 if (err || *p)
1826 die(EXIT_FAILURE, "bad filter string `%s'", optarg);
1827 } break;
1828 case 'a':
1829 if ((ch = ghash_byname(optarg)) == 0)
1830 die(EXIT_FAILURE, "unknown hash algorithm `%s'", optarg);
1831 break;
1832 default:
1833 rc = 1;
1834 break;
1835 }
1836 }
1837
1838 argv += optind; argc -= optind;
1839 if (rc || argc != 2)
1840 die(EXIT_FAILURE, "Usage: verify [-f FILTER] TAG FINGERPRINT");
1841
1842 doopen(&f, KOPEN_READ);
1843
1844 if ((k = key_bytag(&f, argv[0])) == 0)
1845 die(EXIT_FAILURE, "key `%s' not found", argv[0]);
1846 buf = xmalloc(ch->hashsz);
1847 unhexify(buf, argv[1], ch->hashsz);
1848 h = GH_INIT(ch);
1849 if (!key_fingerprint(k, h, &kf))
1850 die(EXIT_FAILURE, "key has no fingerprintable components (as filtered)");
1851 fpr = GH_DONE(h, 0);
1852 if (memcmp(fpr, buf, ch->hashsz) != 0)
1853 die(EXIT_FAILURE, "key fingerprint mismatch");
e9be047b 1854 doclose(&f);
58507325 1855 return (0);
1856}
45c0fd36 1857
252c122d 1858/* --- @cmd_comment@ --- */
d03ab969 1859
252c122d 1860static int cmd_comment(int argc, char *argv[])
1861{
1862 key_file f;
1863 key *k;
1864 int err;
d03ab969 1865
252c122d 1866 if (argc < 2 || argc > 3)
c65df279 1867 die(EXIT_FAILURE, "Usage: comment TAG [COMMENT]");
252c122d 1868 doopen(&f, KOPEN_WRITE);
1869 if ((k = key_bytag(&f, argv[1])) == 0)
1870 die(EXIT_FAILURE, "key `%s' not found", argv[1]);
1871 if ((err = key_setcomment(&f, k, argv[2])) != 0)
1872 die(EXIT_FAILURE, "bad comment `%s': %s", argv[2], key_strerror(err));
1873 doclose(&f);
1874 return (0);
1875}
d03ab969 1876
252c122d 1877/* --- @cmd_tag@ --- */
d03ab969 1878
252c122d 1879static int cmd_tag(int argc, char *argv[])
1880{
1881 key_file f;
1882 key *k;
1883 int err;
ce70ec47 1884 unsigned flags = 0;
1885 int rc = 0;
d03ab969 1886
ce70ec47 1887 for (;;) {
1888 static struct option opt[] = {
1889 { "retag", 0, 0, 'r' },
1890 { 0, 0, 0, 0 }
1891 };
1892 int i = mdwopt(argc, argv, "+r", opt, 0, 0, 0);
1893 if (i < 0)
1894 break;
1895 switch (i) {
1896 case 'r':
1897 flags |= f_retag;
1898 break;
1899 default:
1900 rc = 1;
1901 break;
1902 }
1903 }
1904
1905 argv += optind; argc -= optind;
1906 if (argc < 1 || argc > 2 || rc)
c65df279 1907 die(EXIT_FAILURE, "Usage: tag [-r] TAG [NEW-TAG]");
252c122d 1908 doopen(&f, KOPEN_WRITE);
ce70ec47 1909 if (flags & f_retag) {
1910 if ((k = key_bytag(&f, argv[1])) != 0 && strcmp(k->tag, argv[1]) == 0)
1911 key_settag(&f, k, 0);
1912 }
1913 if ((k = key_bytag(&f, argv[0])) == 0)
1914 die(EXIT_FAILURE, "key `%s' not found", argv[0]);
1915 if ((err = key_settag(&f, k, argv[1])) != 0)
1916 die(EXIT_FAILURE, "bad tag `%s': %s", argv[1], key_strerror(err));
252c122d 1917 doclose(&f);
1918 return (0);
1919}
d03ab969 1920
252c122d 1921/* --- @cmd_lock@ --- */
d03ab969 1922
252c122d 1923static int cmd_lock(int argc, char *argv[])
1924{
1925 key_file f;
1926 key *k;
ef13e9a4 1927 key_data **kd;
252c122d 1928 dstr d = DSTR_INIT;
d03ab969 1929
252c122d 1930 if (argc != 2)
c65df279 1931 die(EXIT_FAILURE, "Usage: lock QTAG");
252c122d 1932 doopen(&f, KOPEN_WRITE);
1933 if (key_qtag(&f, argv[1], &d, &k, &kd))
1934 die(EXIT_FAILURE, "key `%s' not found", argv[1]);
ef13e9a4 1935 if ((*kd)->e == KENC_ENCRYPT && key_punlock(kd, 0, d.buf))
252c122d 1936 die(EXIT_FAILURE, "couldn't unlock key `%s'", d.buf);
ef13e9a4 1937 if (key_plock(kd, 0, d.buf))
252c122d 1938 die(EXIT_FAILURE, "failed to lock key `%s'", d.buf);
1939 f.f |= KF_MODIFIED;
1940 doclose(&f);
1941 return (0);
1942}
d03ab969 1943
252c122d 1944/* --- @cmd_unlock@ --- */
d03ab969 1945
252c122d 1946static int cmd_unlock(int argc, char *argv[])
1947{
1948 key_file f;
1949 key *k;
ef13e9a4 1950 key_data **kd;
252c122d 1951 dstr d = DSTR_INIT;
d03ab969 1952
252c122d 1953 if (argc != 2)
c65df279 1954 die(EXIT_FAILURE, "Usage: unlock QTAG");
252c122d 1955 doopen(&f, KOPEN_WRITE);
1956 if (key_qtag(&f, argv[1], &d, &k, &kd))
1957 die(EXIT_FAILURE, "key `%s' not found", argv[1]);
ef13e9a4 1958 if ((*kd)->e != KENC_ENCRYPT)
252c122d 1959 die(EXIT_FAILURE, "key `%s' is not encrypted", d.buf);
ef13e9a4 1960 if (key_punlock(kd, 0, d.buf))
252c122d 1961 die(EXIT_FAILURE, "couldn't unlock key `%s'", d.buf);
1962 f.f |= KF_MODIFIED;
d03ab969 1963 doclose(&f);
1964 return (0);
1965}
1966
1967/* --- @cmd_extract@ --- */
1968
1969static int cmd_extract(int argc, char *argv[])
1970{
1971 key_file f;
1972 key *k;
d03ab969 1973 int i;
1974 int rc = 0;
252c122d 1975 key_filter kf = { 0, 0 };
694fc3a8 1976 dstr d = DSTR_INIT;
1977 const char *outfile = 0;
d03ab969 1978 FILE *fp;
1979
252c122d 1980 for (;;) {
1981 static struct option opt[] = {
1982 { "filter", OPTF_ARGREQ, 0, 'f' },
1983 { 0, 0, 0, 0 }
1984 };
1985 int i = mdwopt(argc, argv, "f:", opt, 0, 0, 0);
1986 if (i < 0)
1987 break;
1988 switch (i) {
1989 case 'f': {
1990 char *p;
1991 int err = key_readflags(optarg, &p, &kf.f, &kf.m);
1992 if (err || *p)
1993 die(EXIT_FAILURE, "bad filter string `%s'", optarg);
1994 } break;
1995 default:
1996 rc = 1;
1997 break;
1998 }
1999 }
2000
2001 argv += optind; argc -= optind;
2002 if (rc || argc < 1)
c65df279 2003 die(EXIT_FAILURE, "Usage: extract [-f FILTER] FILE [TAG...]");
252c122d 2004 if (strcmp(*argv, "-") == 0)
d03ab969 2005 fp = stdout;
694fc3a8 2006 else {
2007 outfile = *argv;
2008 dstr_putf(&d, "%s.new", outfile);
2009 if (!(fp = fopen(d.buf, "w"))) {
2010 die(EXIT_FAILURE, "couldn't open `%s' for writing: %s",
2011 d.buf, strerror(errno));
2012 }
d03ab969 2013 }
2014
252c122d 2015 doopen(&f, KOPEN_READ);
2016 if (argc < 2) {
2017 key_iter i;
2018 key *k;
2019 for (key_mkiter(&i, &f); (k = key_next(&i)) != 0; )
2020 key_extract(&f, k, fp, &kf);
45c0fd36 2021 } else {
252c122d 2022 for (i = 1; i < argc; i++) {
2023 if ((k = key_bytag(&f, argv[i])) != 0)
2024 key_extract(&f, k, fp, &kf);
2025 else {
2026 moan("key `%s' not found", argv[i]);
2027 rc = 1;
2028 }
d03ab969 2029 }
2030 }
694fc3a8 2031 if (fclose(fp) || (outfile && rename(d.buf, outfile)))
252c122d 2032 die(EXIT_FAILURE, "error writing file: %s", strerror(errno));
694fc3a8 2033 dstr_destroy(&d);
d03ab969 2034 doclose(&f);
2035 return (rc);
2036}
2037
2038/* --- @cmd_tidy@ --- */
2039
2040static int cmd_tidy(int argc, char *argv[])
2041{
2042 key_file f;
2043 if (argc != 1)
c65df279 2044 die(EXIT_FAILURE, "Usage: tidy");
d03ab969 2045 doopen(&f, KOPEN_WRITE);
2046 f.f |= KF_MODIFIED; /* Nasty hack */
2047 doclose(&f);
2048 return (0);
2049}
2050
2051/* --- @cmd_merge@ --- */
2052
2053static int cmd_merge(int argc, char *argv[])
2054{
2055 key_file f;
2056 FILE *fp;
2057
2058 if (argc != 2)
c65df279 2059 die(EXIT_FAILURE, "Usage: merge FILE");
d03ab969 2060 if (strcmp(argv[1], "-") == 0)
2061 fp = stdin;
2062 else if (!(fp = fopen(argv[1], "r"))) {
d3296500 2063 die(EXIT_FAILURE, "couldn't open `%s' for reading: %s",
d03ab969 2064 argv[1], strerror(errno));
2065 }
2066
2067 doopen(&f, KOPEN_WRITE);
252c122d 2068 key_merge(&f, argv[1], fp, key_moan, 0);
d03ab969 2069 doclose(&f);
2070 return (0);
2071}
2072
c65df279 2073/* --- @cmd_show@ --- */
2074
2075#define LISTS(LI) \
2076 LI("Lists", list, \
2077 listtab[i].name, listtab[i].name) \
2078 LI("Hash functions", hash, \
2079 ghashtab[i], ghashtab[i]->name) \
2080 LI("Elliptic curves", ec, \
2081 ectab[i].name, ectab[i].name) \
3688eb75 2082 LI("Prime Diffie-Hellman groups", dh, \
c65df279 2083 ptab[i].name, ptab[i].name) \
3688eb75 2084 LI("Binary Diffie-Hellman groups", bindh, \
2085 bintab[i].name, bintab[i].name) \
c65df279 2086 LI("Key-generation algorithms", keygen, \
2087 algtab[i].name, algtab[i].name) \
2088 LI("Random seeding algorithms", seed, \
2089 seedtab[i].p, seedtab[i].p)
2090
2091MAKELISTTAB(listtab, LISTS)
2092
2093static int cmd_show(int argc, char *argv[])
2094{
2095 return (displaylists(listtab, argv + 1));
2096}
2097
d03ab969 2098/*----- Main command table ------------------------------------------------*/
2099
c65df279 2100static int cmd_help(int argc, char *argv[]);
2101
2102static cmd cmds[] = {
2103 { "help", cmd_help, "help [COMMAND...]" },
2104 { "show", cmd_show, "show [ITEM...]" },
2105 { "list", cmd_list, "list [-uqv] [-f FILTER] [TAG...]", "\
2106Options:\n\
2107\n\
2108-u, --utc Display expiry times etc. in UTC, not local time.\n\
2109-q, --quiet Show less information.\n\
2110-v, --verbose Show more information.\n\
2111" },
2112 { "fingerprint", cmd_finger, "fingerprint [-f FILTER] [TAG...]", "\
2113Options:\n\
2114\n\
2115-f, --filter=FILT Only hash key components matching FILT.\n\
2116-a, --algorithm=HASH Use the named HASH algorithm.\n\
2117 ($ show hash for list.)\n\
2118" },
58507325 2119 { "verify", cmd_verify, "verify [-f FILTER] TAG FINGERPRINT", "\
2120Options:\n\
2121\n\
2122-f, --filter=FILT Only hash key components matching FILT.\n\
2123-a, --algorithm=HASH Use the named HASH algorithm.\n\
2124 ($ show hash for list.)\n\
2125" },
c65df279 2126 { "extract", cmd_extract, "extract [-f FILTER] FILE [TAG...]", "\
2127Options:\n\
2128\n\
2129-f, --filter=FILT Only extract key components matching FILT.\n\
2130" },
2131 { "merge", cmd_merge, "merge FILE" },
2132 { "expire", cmd_expire, "expire TAG..." },
2133 { "delete", cmd_delete, "delete TAG..." },
2134 { "setattr", cmd_setattr, "setattr TAG ATTR..." },
e9be047b 2135 { "getattr", cmd_getattr, "getattr TAG ATTR" },
c65df279 2136 { "comment", cmd_comment, "comment TAG [COMMENT]" },
2137 { "lock", cmd_lock, "lock QTAG" },
2138 { "unlock", cmd_unlock, "unlock QTAG" },
2139 { "tag", cmd_tag, "tag [-r] TAG [NEW-TAG]", "\
2140Options:\n\
2141\n\
2142-r, --retag Untag any key currently called new-tag.\n\
2143" },
2144 { "tidy", cmd_tidy, "tidy" },
d03ab969 2145 { "add", cmd_add,
c65df279 2146 "add [-OPTIONS] TYPE [ATTR...]\n\
4e67e30b 2147 Options: [-lqrLKS] [-a ALG] [-bB BITS] [-p PARAM] [-R TAG]\n\
45c0fd36
MW
2148 [-A SEEDALG] [-s SEED] [-n BITS] [-I KEYID]\n\
2149 [-e EXPIRE] [-t TAG] [-c COMMENT]", "\
ce70ec47 2150Options:\n\
2151\n\
2152-a, --algorithm=ALG Generate keys suitable for ALG.\n\
c65df279 2153 ($ show keygen for list.)\n\
ce70ec47 2154-b, --bits=N Generate an N-bit key.\n\
2155-B, --qbits=N Use an N-bit subgroup or factors.\n\
2156-p, --parameters=TAG Get group parameters from TAG.\n\
c65df279 2157-C, --curve=NAME Use elliptic curve or DH group NAME.\n\
2158 ($ show ec or $ show dh for list.)\n\
2159-A, --seedalg=ALG Use pseudorandom generator ALG to generate key.\n\
2160 ($ show seed for list.)\n\
2161-s, --seed=BASE64 Use Base64-encoded string BASE64 as seed.\n\
2162-n, --newseed=COUNT Generate new COUNT-bit seed.\n\
ce70ec47 2163-e, --expire=TIME Make the key expire after TIME.\n\
2164-c, --comment=STRING Attach the command STRING to the key.\n\
2165-t, --tag=TAG Tag the key with the name TAG.\n\
2166-r, --retag Untag any key currently with that tag.\n\
2167-R, --rand-id=TAG Use key named TAG for the random number generator.\n\
90a88ae3 2168-I, --key-id=ID Force the key-id for the new key.\n\
ce70ec47 2169-l, --lock Lock the generated key with a passphrase.\n\
2170-q, --quiet Don't give progress indicators while working.\n\
2171-L, --lim-lee Generate Lim-Lee primes for Diffie-Hellman groups.\n\
4e67e30b 2172-K, --kcdsa Generate KCDSA-style Lim-Lee primes for DH groups.\n\
ce70ec47 2173-S, --subgroup Use a prime-order subgroup for Diffie-Hellman.\n\
2174" },
d03ab969 2175 { 0, 0, 0 }
2176};
2177
c65df279 2178static int cmd_help(int argc, char *argv[])
ce70ec47 2179{
c65df279 2180 sc_help(cmds, stdout, argv + 1);
2181 return (0);
ce70ec47 2182}
2183
c65df279 2184/*----- Main code ---------------------------------------------------------*/
2185
d03ab969 2186/* --- Helpful GNUy functions --- */
2187
c65df279 2188static void usage(FILE *fp)
d03ab969 2189{
c65df279 2190 pquis(fp, "Usage: $ [-k KEYRING] COMMAND [ARGS]\n");
d03ab969 2191}
2192
2193void version(FILE *fp)
2194{
052b36d0 2195 pquis(fp, "$, Catacomb version " VERSION "\n");
d03ab969 2196}
2197
c65df279 2198void help_global(FILE *fp)
d03ab969 2199{
c65df279 2200 usage(fp);
2201 fputs("\n\
2202Performs various simple key management operations.\n\
2203\n\
2204Global command line options:\n\
d03ab969 2205\n\
c65df279 2206-h, --help [COMMAND...] Display this help text (or help for COMMANDs).\n\
d03ab969 2207-v, --version Display version number.\n\
2208-u, --usage Display short usage summary.\n\
2209\n\
c65df279 2210-k, --keyring=FILE Read and write keys in FILE.\n",
2211 fp);
d03ab969 2212}
2213
2214/* --- @main@ --- *
2215 *
2216 * Arguments: @int argc@ = number of command line arguments
2217 * @char *argv[]@ = array of command line arguments
2218 *
2219 * Returns: Nonzero on failure.
2220 *
2221 * Use: Main program. Performs simple key management functions.
2222 */
2223
2224int main(int argc, char *argv[])
2225{
2226 unsigned f = 0;
2227
16efd15b 2228#define f_bogus 1u
d03ab969 2229
2230 /* --- Initialization --- */
2231
2232 ego(argv[0]);
2233 sub_init();
2234
2235 /* --- Parse command line options --- */
2236
2237 for (;;) {
2238 static struct option opt[] = {
2239
2240 /* --- Standard GNUy help options --- */
2241
2242 { "help", 0, 0, 'h' },
2243 { "version", 0, 0, 'v' },
2244 { "usage", 0, 0, 'u' },
2245
2246 /* --- Real live useful options --- */
2247
2248 { "keyring", OPTF_ARGREQ, 0, 'k' },
2249
2250 /* --- Magic terminator --- */
2251
2252 { 0, 0, 0, 0 }
2253 };
99dde2f4 2254 int i = mdwopt(argc, argv, "+hvu k:", opt, 0, 0, 0);
d03ab969 2255
2256 if (i < 0)
2257 break;
2258 switch (i) {
2259
2260 /* --- GNU help options --- */
ce70ec47 2261
d03ab969 2262 case 'h':
c65df279 2263 sc_help(cmds, stdout, argv + optind);
d03ab969 2264 exit(0);
2265 case 'v':
2266 version(stdout);
2267 exit(0);
2268 case 'u':
2269 usage(stdout);
2270 exit(0);
2271
2272 /* --- Real useful options --- */
2273
2274 case 'k':
2275 keyfile = optarg;
2276 break;
2277
2278 /* --- Bogosity --- */
2279
2280 default:
2281 f |= f_bogus;
2282 break;
2283 }
2284 }
2285
2286 /* --- Complain about excessive bogons --- */
2287
2288 if (f & f_bogus || optind == argc) {
2289 usage(stderr);
2290 exit(1);
2291 }
2292
052b36d0 2293 /* --- Initialize the Catacomb random number generator --- */
2294
052b36d0 2295 rand_noisesrc(RAND_GLOBAL, &noise_source);
9219a5d6 2296 rand_seed(RAND_GLOBAL, 160);
052b36d0 2297
d03ab969 2298 /* --- Dispatch to appropriate command handler --- */
2299
2300 argc -= optind;
2301 argv += optind;
2302 optind = 0;
c65df279 2303 return (findcmd(cmds, argv[0])->cmd(argc, argv));
d03ab969 2304}
2305
2306/*----- That's all, folks -------------------------------------------------*/