Line data Source code
1 : /* keylist.c - Print information about OpenPGP keys
2 : * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 : * 2008, 2010, 2012 Free Software Foundation, Inc.
4 : * Copyright (C) 2013, 2014 Werner Koch
5 : *
6 : * This file is part of GnuPG.
7 : *
8 : * GnuPG is free software; you can redistribute it and/or modify
9 : * it under the terms of the GNU General Public License as published by
10 : * the Free Software Foundation; either version 3 of the License, or
11 : * (at your option) any later version.
12 : *
13 : * GnuPG is distributed in the hope that it will be useful,
14 : * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 : * GNU General Public License for more details.
17 : *
18 : * You should have received a copy of the GNU General Public License
19 : * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 : */
21 :
22 : #include <config.h>
23 : #include <stdio.h>
24 : #include <stdlib.h>
25 : #include <string.h>
26 : #include <errno.h>
27 : #ifdef HAVE_DOSISH_SYSTEM
28 : # include <fcntl.h> /* for setmode() */
29 : #endif
30 :
31 : #include "gpg.h"
32 : #include "options.h"
33 : #include "packet.h"
34 : #include "status.h"
35 : #include "keydb.h"
36 : #include "photoid.h"
37 : #include "util.h"
38 : #include "ttyio.h"
39 : #include "trustdb.h"
40 : #include "main.h"
41 : #include "i18n.h"
42 : #include "status.h"
43 : #include "call-agent.h"
44 : #include "mbox-util.h"
45 : #include "zb32.h"
46 : #include "tofu.h"
47 :
48 :
49 : static void list_all (ctrl_t, int, int);
50 : static void list_one (ctrl_t ctrl,
51 : strlist_t names, int secret, int mark_secret);
52 : static void locate_one (ctrl_t ctrl, strlist_t names);
53 : static void print_card_serialno (const char *serialno);
54 :
55 : struct keylist_context
56 : {
57 : int check_sigs; /* If set signatures shall be verified. */
58 : int good_sigs; /* Counter used if CHECK_SIGS is set. */
59 : int inv_sigs; /* Counter used if CHECK_SIGS is set. */
60 : int no_key; /* Counter used if CHECK_SIGS is set. */
61 : int oth_err; /* Counter used if CHECK_SIGS is set. */
62 : int no_validity; /* Do not show validity. */
63 : };
64 :
65 :
66 : static void list_keyblock (ctrl_t ctrl,
67 : kbnode_t keyblock, int secret, int has_secret,
68 : int fpr, struct keylist_context *listctx);
69 :
70 :
71 : /* The stream used to write attribute packets to. */
72 : static estream_t attrib_fp;
73 :
74 :
75 : /* Release resources from a keylist context. */
76 : static void
77 61 : keylist_context_release (struct keylist_context *listctx)
78 : {
79 : (void)listctx; /* Nothing to release. */
80 61 : }
81 :
82 :
83 : /* List the keys. If list is NULL, all available keys are listed.
84 : With LOCATE_MODE set the locate algorithm is used to find a
85 : key. */
86 : void
87 47 : public_key_list (ctrl_t ctrl, strlist_t list, int locate_mode)
88 : {
89 : #ifndef NO_TRUST_MODELS
90 47 : if (opt.with_colons)
91 : {
92 : byte trust_model, marginals, completes, cert_depth, min_cert_level;
93 : ulong created, nextcheck;
94 :
95 43 : read_trust_options (&trust_model, &created, &nextcheck,
96 : &marginals, &completes, &cert_depth, &min_cert_level);
97 :
98 43 : es_fprintf (es_stdout, "tru:");
99 :
100 43 : if (nextcheck && nextcheck <= make_timestamp ())
101 2 : es_fprintf (es_stdout, "o");
102 43 : if (trust_model != opt.trust_model)
103 43 : es_fprintf (es_stdout, "t");
104 43 : if (opt.trust_model == TM_PGP || opt.trust_model == TM_CLASSIC
105 43 : || opt.trust_model == TM_TOFU_PGP)
106 : {
107 0 : if (marginals != opt.marginals_needed)
108 0 : es_fprintf (es_stdout, "m");
109 0 : if (completes != opt.completes_needed)
110 0 : es_fprintf (es_stdout, "c");
111 0 : if (cert_depth != opt.max_cert_depth)
112 0 : es_fprintf (es_stdout, "d");
113 0 : if (min_cert_level != opt.min_cert_level)
114 0 : es_fprintf (es_stdout, "l");
115 : }
116 :
117 43 : es_fprintf (es_stdout, ":%d:%lu:%lu", trust_model, created, nextcheck);
118 :
119 : /* Only show marginals, completes, and cert_depth in the classic
120 : or PGP trust models since they are not meaningful
121 : otherwise. */
122 :
123 43 : if (trust_model == TM_PGP || trust_model == TM_CLASSIC)
124 43 : es_fprintf (es_stdout, ":%d:%d:%d", marginals, completes, cert_depth);
125 43 : es_fprintf (es_stdout, "\n");
126 : }
127 : #endif /*!NO_TRUST_MODELS*/
128 :
129 : /* We need to do the stale check right here because it might need to
130 : update the keyring while we already have the keyring open. This
131 : is very bad for W32 because of a sharing violation. For real OSes
132 : it might lead to false results if we are later listing a keyring
133 : which is associated with the inode of a deleted file. */
134 47 : check_trustdb_stale (ctrl);
135 :
136 : #ifdef USE_TOFU
137 47 : tofu_begin_batch_update (ctrl);
138 : #endif
139 :
140 47 : if (locate_mode)
141 0 : locate_one (ctrl, list);
142 47 : else if (!list)
143 0 : list_all (ctrl, 0, opt.with_secret);
144 : else
145 47 : list_one (ctrl, list, 0, opt.with_secret);
146 :
147 : #ifdef USE_TOFU
148 47 : tofu_end_batch_update (ctrl);
149 : #endif
150 47 : }
151 :
152 :
153 : void
154 14 : secret_key_list (ctrl_t ctrl, strlist_t list)
155 : {
156 : (void)ctrl;
157 :
158 14 : check_trustdb_stale (ctrl);
159 :
160 14 : if (!list)
161 3 : list_all (ctrl, 1, 0);
162 : else /* List by user id */
163 11 : list_one (ctrl, list, 1, 0);
164 14 : }
165 :
166 : char *
167 0 : format_seckey_info (PKT_public_key *pk)
168 : {
169 : u32 keyid[2];
170 : char *p;
171 : char pkstrbuf[PUBKEY_STRING_SIZE];
172 : char *info;
173 :
174 0 : keyid_from_pk (pk, keyid);
175 0 : p = get_user_id_native (keyid);
176 :
177 0 : info = xtryasprintf ("sec %s/%s %s %s",
178 : pubkey_string (pk, pkstrbuf, sizeof pkstrbuf),
179 : keystr (keyid), datestr_from_pk (pk), p);
180 :
181 0 : xfree (p);
182 :
183 0 : return info;
184 : }
185 :
186 : void
187 0 : print_seckey_info (PKT_public_key *pk)
188 : {
189 0 : char *p = format_seckey_info (pk);
190 0 : tty_printf ("\n%s\n", p);
191 0 : xfree (p);
192 0 : }
193 :
194 : /* Print information about the public key. With FP passed as NULL,
195 : the tty output interface is used, otherwise output is directted to
196 : the given stream. */
197 : void
198 0 : print_pubkey_info (estream_t fp, PKT_public_key *pk)
199 : {
200 : u32 keyid[2];
201 : char *p;
202 : char pkstrbuf[PUBKEY_STRING_SIZE];
203 :
204 0 : keyid_from_pk (pk, keyid);
205 :
206 : /* If the pk was chosen by a particular user ID, that is the one to
207 : print. */
208 0 : if (pk->user_id)
209 0 : p = utf8_to_native (pk->user_id->name, pk->user_id->len, 0);
210 : else
211 0 : p = get_user_id_native (keyid);
212 :
213 0 : if (fp)
214 0 : tty_printf ("\n");
215 0 : tty_fprintf (fp, "%s %s/%s %s %s\n",
216 0 : pk->flags.primary? "pub":"sub",
217 : pubkey_string (pk, pkstrbuf, sizeof pkstrbuf),
218 : keystr (keyid), datestr_from_pk (pk), p);
219 0 : xfree (p);
220 0 : }
221 :
222 :
223 : /* Print basic information of a secret key including the card serial
224 : number information. */
225 : #ifdef ENABLE_CARD_SUPPORT
226 : void
227 0 : print_card_key_info (estream_t fp, kbnode_t keyblock)
228 : {
229 : kbnode_t node;
230 : char *hexgrip;
231 : char *serialno;
232 : int s2k_char;
233 : char pkstrbuf[PUBKEY_STRING_SIZE];
234 : int indent;
235 :
236 0 : for (node = keyblock; node; node = node->next)
237 : {
238 0 : if (node->pkt->pkttype == PKT_PUBLIC_KEY
239 0 : || node->pkt->pkttype == PKT_PUBLIC_SUBKEY)
240 : {
241 : int rc;
242 0 : PKT_public_key *pk = node->pkt->pkt.public_key;
243 :
244 0 : serialno = NULL;
245 0 : rc = hexkeygrip_from_pk (pk, &hexgrip);
246 0 : if (rc)
247 : {
248 0 : log_error ("error computing a keygrip: %s\n", gpg_strerror (rc));
249 0 : s2k_char = '?';
250 : }
251 0 : else if (!agent_get_keyinfo (NULL, hexgrip, &serialno, NULL))
252 0 : s2k_char = serialno? '>':' ';
253 : else
254 0 : s2k_char = '#'; /* Key not found. */
255 :
256 0 : tty_fprintf (fp, "%s%c %s/%s %n",
257 0 : node->pkt->pkttype == PKT_PUBLIC_KEY ? "sec" : "ssb",
258 : s2k_char,
259 : pubkey_string (pk, pkstrbuf, sizeof pkstrbuf),
260 : keystr_from_pk (pk),
261 : &indent);
262 0 : tty_fprintf (fp, _("created: %s"), datestr_from_pk (pk));
263 0 : tty_fprintf (fp, " ");
264 0 : tty_fprintf (fp, _("expires: %s"), expirestr_from_pk (pk));
265 0 : if (serialno)
266 : {
267 0 : tty_fprintf (fp, "\n%*s%s", indent, "", _("card-no: "));
268 0 : if (strlen (serialno) == 32
269 0 : && !strncmp (serialno, "D27600012401", 12))
270 : {
271 : /* This is an OpenPGP card. Print the relevant part. */
272 : /* Example: D2760001240101010001000003470000 */
273 : /* xxxxyyyyyyyy */
274 0 : tty_fprintf (fp, "%.*s %.*s", 4, serialno+16, 8, serialno+20);
275 : }
276 : else
277 0 : tty_fprintf (fp, "%s", serialno);
278 : }
279 0 : tty_fprintf (fp, "\n");
280 0 : xfree (hexgrip);
281 0 : xfree (serialno);
282 : }
283 : }
284 0 : }
285 : #endif /*ENABLE_CARD_SUPPORT*/
286 :
287 :
288 : /* Flags = 0x01 hashed 0x02 critical. */
289 : static void
290 0 : status_one_subpacket (sigsubpkttype_t type, size_t len, int flags,
291 : const byte * buf)
292 : {
293 : char status[40];
294 :
295 : /* Don't print these. */
296 0 : if (len > 256)
297 0 : return;
298 :
299 0 : snprintf (status, sizeof status,
300 : "%d %u %u ", type, flags, (unsigned int) len);
301 :
302 0 : write_status_text_and_buffer (STATUS_SIG_SUBPACKET, status, buf, len, 0);
303 : }
304 :
305 :
306 : /* Print a policy URL. Allowed values for MODE are:
307 : * 0 - print to stdout.
308 : * 1 - use log_info and emit status messages.
309 : * 2 - emit only status messages.
310 : */
311 : void
312 160 : show_policy_url (PKT_signature * sig, int indent, int mode)
313 : {
314 : const byte *p;
315 : size_t len;
316 160 : int seq = 0, crit;
317 160 : estream_t fp = mode ? log_get_stream () : es_stdout;
318 :
319 320 : while ((p =
320 160 : enum_sig_subpkt (sig->hashed, SIGSUBPKT_POLICY, &len, &seq, &crit)))
321 : {
322 0 : if (mode != 2)
323 : {
324 : int i;
325 : const char *str;
326 :
327 0 : for (i = 0; i < indent; i++)
328 0 : es_putc (' ', fp);
329 :
330 0 : if (crit)
331 0 : str = _("Critical signature policy: ");
332 : else
333 0 : str = _("Signature policy: ");
334 0 : if (mode)
335 0 : log_info ("%s", str);
336 : else
337 0 : es_fprintf (fp, "%s", str);
338 0 : print_utf8_buffer (fp, p, len);
339 0 : es_fprintf (fp, "\n");
340 : }
341 :
342 0 : if (mode)
343 0 : write_status_buffer (STATUS_POLICY_URL, p, len, 0);
344 : }
345 160 : }
346 :
347 :
348 : /*
349 : mode=0 for stdout.
350 : mode=1 for log_info + status messages
351 : mode=2 for status messages only
352 : */
353 : /* TODO: use this */
354 : void
355 160 : show_keyserver_url (PKT_signature * sig, int indent, int mode)
356 : {
357 : const byte *p;
358 : size_t len;
359 160 : int seq = 0, crit;
360 160 : estream_t fp = mode ? log_get_stream () : es_stdout;
361 :
362 320 : while ((p =
363 160 : enum_sig_subpkt (sig->hashed, SIGSUBPKT_PREF_KS, &len, &seq,
364 : &crit)))
365 : {
366 0 : if (mode != 2)
367 : {
368 : int i;
369 : const char *str;
370 :
371 0 : for (i = 0; i < indent; i++)
372 0 : es_putc (' ', es_stdout);
373 :
374 0 : if (crit)
375 0 : str = _("Critical preferred keyserver: ");
376 : else
377 0 : str = _("Preferred keyserver: ");
378 0 : if (mode)
379 0 : log_info ("%s", str);
380 : else
381 0 : es_fprintf (es_stdout, "%s", str);
382 0 : print_utf8_buffer (fp, p, len);
383 0 : es_fprintf (fp, "\n");
384 : }
385 :
386 0 : if (mode)
387 0 : status_one_subpacket (SIGSUBPKT_PREF_KS, len,
388 0 : (crit ? 0x02 : 0) | 0x01, p);
389 : }
390 160 : }
391 :
392 : /*
393 : mode=0 for stdout.
394 : mode=1 for log_info + status messages
395 : mode=2 for status messages only
396 :
397 : Defined bits in WHICH:
398 : 1 == standard notations
399 : 2 == user notations
400 : */
401 : void
402 160 : show_notation (PKT_signature * sig, int indent, int mode, int which)
403 : {
404 160 : estream_t fp = mode ? log_get_stream () : es_stdout;
405 : notation_t nd, notations;
406 :
407 160 : if (which == 0)
408 0 : which = 3;
409 :
410 160 : notations = sig_to_notation (sig);
411 :
412 : /* There may be multiple notations in the same sig. */
413 160 : for (nd = notations; nd; nd = nd->next)
414 : {
415 0 : if (mode != 2)
416 : {
417 0 : int has_at = !!strchr (nd->name, '@');
418 :
419 0 : if ((which & 1 && !has_at) || (which & 2 && has_at))
420 : {
421 : int i;
422 : const char *str;
423 :
424 0 : for (i = 0; i < indent; i++)
425 0 : es_putc (' ', es_stdout);
426 :
427 0 : if (nd->flags.critical)
428 0 : str = _("Critical signature notation: ");
429 : else
430 0 : str = _("Signature notation: ");
431 0 : if (mode)
432 0 : log_info ("%s", str);
433 : else
434 0 : es_fprintf (es_stdout, "%s", str);
435 : /* This is all UTF8 */
436 0 : print_utf8_buffer (fp, nd->name, strlen (nd->name));
437 0 : es_fprintf (fp, "=");
438 0 : print_utf8_buffer (fp, nd->value, strlen (nd->value));
439 : /* (We need to use log_printf so that the next call to a
440 : log function does not insert an extra LF.) */
441 0 : if (mode)
442 0 : log_printf ("\n");
443 : else
444 0 : es_putc ('\n', fp);
445 : }
446 : }
447 :
448 0 : if (mode)
449 : {
450 0 : write_status_buffer (STATUS_NOTATION_NAME,
451 0 : nd->name, strlen (nd->name), 0);
452 0 : if (nd->flags.critical || nd->flags.human)
453 0 : write_status_text (STATUS_NOTATION_FLAGS,
454 0 : nd->flags.critical && nd->flags.human? "1 1" :
455 0 : nd->flags.critical? "1 0" : "0 1");
456 0 : write_status_buffer (STATUS_NOTATION_DATA,
457 0 : nd->value, strlen (nd->value), 50);
458 : }
459 : }
460 :
461 160 : free_notation (notations);
462 160 : }
463 :
464 :
465 : static void
466 0 : print_signature_stats (struct keylist_context *s)
467 : {
468 0 : if (!s->check_sigs)
469 0 : return; /* Signature checking was not requested. */
470 :
471 0 : if (s->good_sigs)
472 0 : log_info (ngettext("%d good signature\n",
473 0 : "%d good signatures\n", s->good_sigs), s->good_sigs);
474 :
475 0 : if (s->inv_sigs)
476 0 : log_info (ngettext("%d bad signature\n",
477 0 : "%d bad signatures\n", s->inv_sigs), s->inv_sigs);
478 :
479 0 : if (s->no_key)
480 0 : log_info (ngettext("%d signature not checked due to a missing key\n",
481 : "%d signatures not checked due to missing keys\n",
482 0 : s->no_key), s->no_key);
483 :
484 0 : if (s->oth_err)
485 0 : log_info (ngettext("%d signature not checked due to an error\n",
486 : "%d signatures not checked due to errors\n",
487 0 : s->oth_err), s->oth_err);
488 : }
489 :
490 :
491 : /* List all keys. If SECRET is true only secret keys are listed. If
492 : MARK_SECRET is true secret keys are indicated in a public key
493 : listing. */
494 : static void
495 3 : list_all (ctrl_t ctrl, int secret, int mark_secret)
496 : {
497 : KEYDB_HANDLE hd;
498 3 : KBNODE keyblock = NULL;
499 3 : int rc = 0;
500 : int any_secret;
501 : const char *lastresname, *resname;
502 : struct keylist_context listctx;
503 :
504 3 : memset (&listctx, 0, sizeof (listctx));
505 3 : if (opt.check_sigs)
506 0 : listctx.check_sigs = 1;
507 :
508 3 : hd = keydb_new ();
509 3 : if (!hd)
510 0 : rc = gpg_error_from_syserror ();
511 : else
512 3 : rc = keydb_search_first (hd);
513 3 : if (rc)
514 : {
515 0 : if (gpg_err_code (rc) != GPG_ERR_NOT_FOUND)
516 0 : log_error ("keydb_search_first failed: %s\n", gpg_strerror (rc));
517 0 : goto leave;
518 : }
519 :
520 3 : lastresname = NULL;
521 : do
522 : {
523 9 : rc = keydb_get_keyblock (hd, &keyblock);
524 9 : if (rc)
525 : {
526 0 : if (gpg_err_code (rc) == GPG_ERR_LEGACY_KEY)
527 0 : continue; /* Skip legacy keys. */
528 0 : log_error ("keydb_get_keyblock failed: %s\n", gpg_strerror (rc));
529 0 : goto leave;
530 : }
531 :
532 9 : if (secret || mark_secret)
533 9 : any_secret = !agent_probe_any_secret_key (NULL, keyblock);
534 : else
535 0 : any_secret = 0;
536 :
537 9 : if (secret && !any_secret)
538 : ; /* Secret key listing requested but this isn't one. */
539 : else
540 : {
541 9 : if (!opt.with_colons)
542 : {
543 9 : resname = keydb_get_resource_name (hd);
544 9 : if (lastresname != resname)
545 : {
546 : int i;
547 :
548 3 : es_fprintf (es_stdout, "%s\n", resname);
549 93 : for (i = strlen (resname); i; i--)
550 90 : es_putc ('-', es_stdout);
551 3 : es_putc ('\n', es_stdout);
552 3 : lastresname = resname;
553 : }
554 : }
555 9 : merge_keys_and_selfsig (keyblock);
556 9 : list_keyblock (ctrl, keyblock, secret, any_secret, opt.fingerprint,
557 : &listctx);
558 : }
559 9 : release_kbnode (keyblock);
560 9 : keyblock = NULL;
561 : }
562 9 : while (!(rc = keydb_search_next (hd)));
563 3 : es_fflush (es_stdout);
564 3 : if (rc && gpg_err_code (rc) != GPG_ERR_NOT_FOUND)
565 0 : log_error ("keydb_search_next failed: %s\n", gpg_strerror (rc));
566 3 : if (keydb_get_skipped_counter (hd))
567 0 : log_info (ngettext("Warning: %lu key skipped due to its large size\n",
568 : "Warning: %lu keys skipped due to their large sizes\n",
569 : keydb_get_skipped_counter (hd)),
570 : keydb_get_skipped_counter (hd));
571 :
572 3 : if (opt.check_sigs && !opt.with_colons)
573 0 : print_signature_stats (&listctx);
574 :
575 : leave:
576 3 : keylist_context_release (&listctx);
577 3 : release_kbnode (keyblock);
578 3 : keydb_release (hd);
579 3 : }
580 :
581 :
582 : static void
583 58 : list_one (ctrl_t ctrl, strlist_t names, int secret, int mark_secret)
584 : {
585 58 : int rc = 0;
586 58 : KBNODE keyblock = NULL;
587 : GETKEY_CTX ctx;
588 : const char *resname;
589 58 : const char *keyring_str = _("Keyring");
590 : int i;
591 : struct keylist_context listctx;
592 :
593 58 : memset (&listctx, 0, sizeof (listctx));
594 58 : if (!secret && opt.check_sigs)
595 0 : listctx.check_sigs = 1;
596 :
597 : /* fixme: using the bynames function has the disadvantage that we
598 : * don't know wether one of the names given was not found. OTOH,
599 : * this function has the advantage to list the names in the
600 : * sequence as defined by the keyDB and does not duplicate
601 : * outputs. A solution could be do test whether all given have
602 : * been listed (this needs a way to use the keyDB search
603 : * functions) or to have the search function return indicators for
604 : * found names. Yet another way is to use the keydb search
605 : * facilities directly. */
606 58 : rc = getkey_bynames (&ctx, NULL, names, secret, &keyblock);
607 58 : if (rc)
608 : {
609 0 : log_error ("error reading key: %s\n", gpg_strerror (rc));
610 0 : getkey_end (ctx);
611 58 : return;
612 : }
613 :
614 : do
615 : {
616 59 : if ((opt.list_options & LIST_SHOW_KEYRING) && !opt.with_colons)
617 : {
618 0 : resname = keydb_get_resource_name (get_ctx_handle (ctx));
619 0 : es_fprintf (es_stdout, "%s: %s\n", keyring_str, resname);
620 0 : for (i = strlen (resname) + strlen (keyring_str) + 2; i; i--)
621 0 : es_putc ('-', es_stdout);
622 0 : es_putc ('\n', es_stdout);
623 : }
624 59 : list_keyblock (ctrl,
625 : keyblock, secret, mark_secret, opt.fingerprint, &listctx);
626 59 : release_kbnode (keyblock);
627 : }
628 59 : while (!getkey_next (ctx, NULL, &keyblock));
629 58 : getkey_end (ctx);
630 :
631 58 : if (opt.check_sigs && !opt.with_colons)
632 0 : print_signature_stats (&listctx);
633 :
634 58 : keylist_context_release (&listctx);
635 : }
636 :
637 :
638 : static void
639 0 : locate_one (ctrl_t ctrl, strlist_t names)
640 : {
641 0 : int rc = 0;
642 : strlist_t sl;
643 0 : GETKEY_CTX ctx = NULL;
644 0 : KBNODE keyblock = NULL;
645 : struct keylist_context listctx;
646 :
647 0 : memset (&listctx, 0, sizeof (listctx));
648 0 : if (opt.check_sigs)
649 0 : listctx.check_sigs = 1;
650 :
651 0 : for (sl = names; sl; sl = sl->next)
652 : {
653 0 : rc = get_pubkey_byname (ctrl, &ctx, NULL, sl->d, &keyblock, NULL, 1, 0);
654 0 : if (rc)
655 : {
656 0 : if (gpg_err_code (rc) != GPG_ERR_NO_PUBKEY)
657 0 : log_error ("error reading key: %s\n", gpg_strerror (rc));
658 0 : else if (opt.verbose)
659 0 : log_info (_("key \"%s\" not found: %s\n"),
660 0 : sl->d, gpg_strerror (rc));
661 : }
662 : else
663 : {
664 : do
665 : {
666 0 : list_keyblock (ctrl, keyblock, 0, 0, opt.fingerprint, &listctx);
667 0 : release_kbnode (keyblock);
668 : }
669 0 : while (ctx && !getkey_next (ctx, NULL, &keyblock));
670 0 : getkey_end (ctx);
671 0 : ctx = NULL;
672 : }
673 : }
674 :
675 0 : if (opt.check_sigs && !opt.with_colons)
676 0 : print_signature_stats (&listctx);
677 :
678 0 : keylist_context_release (&listctx);
679 0 : }
680 :
681 :
682 : static void
683 0 : print_key_data (PKT_public_key * pk)
684 : {
685 0 : int n = pk ? pubkey_get_npkey (pk->pubkey_algo) : 0;
686 : int i;
687 :
688 0 : for (i = 0; i < n; i++)
689 : {
690 0 : es_fprintf (es_stdout, "pkd:%d:%u:", i, mpi_get_nbits (pk->pkey[i]));
691 0 : mpi_print (es_stdout, pk->pkey[i], 1);
692 0 : es_putc (':', es_stdout);
693 0 : es_putc ('\n', es_stdout);
694 : }
695 0 : }
696 :
697 : static void
698 85 : print_capabilities (PKT_public_key *pk, KBNODE keyblock)
699 : {
700 85 : unsigned int use = pk->pubkey_usage;
701 85 : int c_printed = 0;
702 :
703 85 : if (use & PUBKEY_USAGE_ENC)
704 41 : es_putc ('e', es_stdout);
705 :
706 85 : if (use & PUBKEY_USAGE_SIG)
707 : {
708 44 : es_putc ('s', es_stdout);
709 44 : if (pk->flags.primary)
710 : {
711 44 : es_putc ('c', es_stdout);
712 : /* The PUBKEY_USAGE_CERT flag was introduced later and we
713 : used to always print 'c' for a primary key. To avoid any
714 : regression here we better track whether we printed 'c'
715 : already. */
716 44 : c_printed = 1;
717 : }
718 : }
719 :
720 85 : if ((use & PUBKEY_USAGE_CERT) && !c_printed)
721 0 : es_putc ('c', es_stdout);
722 :
723 85 : if ((use & PUBKEY_USAGE_AUTH))
724 0 : es_putc ('a', es_stdout);
725 :
726 85 : if ((use & PUBKEY_USAGE_UNKNOWN))
727 0 : es_putc ('?', es_stdout);
728 :
729 85 : if (keyblock)
730 : {
731 : /* Figure out the usable capabilities. */
732 : KBNODE k;
733 44 : int enc = 0, sign = 0, cert = 0, auth = 0, disabled = 0;
734 :
735 259 : for (k = keyblock; k; k = k->next)
736 : {
737 215 : if (k->pkt->pkttype == PKT_PUBLIC_KEY
738 171 : || k->pkt->pkttype == PKT_PUBLIC_SUBKEY)
739 : {
740 85 : pk = k->pkt->pkt.public_key;
741 :
742 85 : if (pk->flags.primary)
743 44 : disabled = pk_is_disabled (pk);
744 :
745 85 : if (pk->flags.valid && !pk->flags.revoked && !pk->has_expired)
746 : {
747 84 : if (pk->pubkey_usage & PUBKEY_USAGE_ENC)
748 41 : enc = 1;
749 84 : if (pk->pubkey_usage & PUBKEY_USAGE_SIG)
750 : {
751 43 : sign = 1;
752 43 : if (pk->flags.primary)
753 43 : cert = 1;
754 : }
755 84 : if (pk->pubkey_usage & PUBKEY_USAGE_CERT)
756 43 : cert = 1;
757 84 : if ((pk->pubkey_usage & PUBKEY_USAGE_AUTH))
758 0 : auth = 1;
759 : }
760 : }
761 : }
762 44 : if (enc)
763 41 : es_putc ('E', es_stdout);
764 44 : if (sign)
765 43 : es_putc ('S', es_stdout);
766 44 : if (cert)
767 43 : es_putc ('C', es_stdout);
768 44 : if (auth)
769 0 : es_putc ('A', es_stdout);
770 44 : if (disabled)
771 0 : es_putc ('D', es_stdout);
772 : }
773 :
774 85 : es_putc (':', es_stdout);
775 85 : }
776 :
777 :
778 : /* FLAGS: 0x01 hashed
779 : 0x02 critical */
780 : static void
781 0 : print_one_subpacket (sigsubpkttype_t type, size_t len, int flags,
782 : const byte * buf)
783 : {
784 : size_t i;
785 :
786 0 : es_fprintf (es_stdout, "spk:%d:%u:%u:", type, flags, (unsigned int) len);
787 :
788 0 : for (i = 0; i < len; i++)
789 : {
790 : /* printable ascii other than : and % */
791 0 : if (buf[i] >= 32 && buf[i] <= 126 && buf[i] != ':' && buf[i] != '%')
792 0 : es_fprintf (es_stdout, "%c", buf[i]);
793 : else
794 0 : es_fprintf (es_stdout, "%%%02X", buf[i]);
795 : }
796 :
797 0 : es_fprintf (es_stdout, "\n");
798 0 : }
799 :
800 :
801 : void
802 0 : print_subpackets_colon (PKT_signature * sig)
803 : {
804 : byte *i;
805 :
806 0 : log_assert (opt.show_subpackets);
807 :
808 0 : for (i = opt.show_subpackets; *i; i++)
809 : {
810 : const byte *p;
811 : size_t len;
812 : int seq, crit;
813 :
814 0 : seq = 0;
815 :
816 0 : while ((p = enum_sig_subpkt (sig->hashed, *i, &len, &seq, &crit)))
817 0 : print_one_subpacket (*i, len, 0x01 | (crit ? 0x02 : 0), p);
818 :
819 0 : seq = 0;
820 :
821 0 : while ((p = enum_sig_subpkt (sig->unhashed, *i, &len, &seq, &crit)))
822 0 : print_one_subpacket (*i, len, 0x00 | (crit ? 0x02 : 0), p);
823 : }
824 0 : }
825 :
826 :
827 : void
828 0 : dump_attribs (const PKT_user_id *uid, PKT_public_key *pk)
829 : {
830 : int i;
831 :
832 0 : if (!attrib_fp)
833 0 : return;
834 :
835 0 : for (i = 0; i < uid->numattribs; i++)
836 : {
837 0 : if (is_status_enabled ())
838 : {
839 : byte array[MAX_FINGERPRINT_LEN], *p;
840 : char buf[(MAX_FINGERPRINT_LEN * 2) + 90];
841 : size_t j, n;
842 :
843 0 : if (!pk)
844 0 : BUG ();
845 0 : fingerprint_from_pk (pk, array, &n);
846 :
847 0 : p = array;
848 0 : for (j = 0; j < n; j++, p++)
849 0 : sprintf (buf + 2 * j, "%02X", *p);
850 :
851 0 : sprintf (buf + strlen (buf), " %lu %u %u %u %lu %lu %u",
852 0 : (ulong) uid->attribs[i].len, uid->attribs[i].type, i + 1,
853 0 : uid->numattribs, (ulong) uid->created,
854 0 : (ulong) uid->expiredate,
855 0 : ((uid->is_primary ? 0x01 : 0) | (uid->
856 0 : is_revoked ? 0x02 : 0) |
857 0 : (uid->is_expired ? 0x04 : 0)));
858 0 : write_status_text (STATUS_ATTRIBUTE, buf);
859 : }
860 :
861 0 : es_fwrite (uid->attribs[i].data, uid->attribs[i].len, 1, attrib_fp);
862 0 : es_fflush (attrib_fp);
863 : }
864 : }
865 :
866 :
867 : static void
868 24 : list_keyblock_print (ctrl_t ctrl, kbnode_t keyblock, int secret, int fpr,
869 : struct keylist_context *listctx)
870 : {
871 : int rc;
872 : KBNODE kbctx;
873 : KBNODE node;
874 : PKT_public_key *pk;
875 24 : int skip_sigs = 0;
876 24 : char *hexgrip = NULL;
877 24 : char *serialno = NULL;
878 :
879 : /* Get the keyid from the keyblock. */
880 24 : node = find_kbnode (keyblock, PKT_PUBLIC_KEY);
881 24 : if (!node)
882 : {
883 0 : log_error ("Oops; key lost!\n");
884 0 : dump_kbnode (keyblock);
885 24 : return;
886 : }
887 :
888 24 : pk = node->pkt->pkt.public_key;
889 :
890 24 : if (secret || opt.with_keygrip)
891 : {
892 20 : rc = hexkeygrip_from_pk (pk, &hexgrip);
893 20 : if (rc)
894 0 : log_error ("error computing a keygrip: %s\n", gpg_strerror (rc));
895 : }
896 :
897 24 : if (secret)
898 : {
899 : /* Encode some info about the secret key in SECRET. */
900 20 : if (!agent_get_keyinfo (NULL, hexgrip, &serialno, NULL))
901 20 : secret = serialno? 3 : 1;
902 : else
903 0 : secret = 2; /* Key not found. */
904 : }
905 :
906 24 : if (!listctx->no_validity)
907 24 : check_trustdb_stale (ctrl);
908 :
909 : /* Print the "pub" line and in KF_NONE mode the fingerprint. */
910 24 : print_key_line (es_stdout, pk, secret);
911 :
912 24 : if (fpr && opt.keyid_format != KF_NONE)
913 0 : print_fingerprint (NULL, pk, 0);
914 :
915 24 : if (opt.with_keygrip && hexgrip)
916 0 : es_fprintf (es_stdout, " Keygrip = %s\n", hexgrip);
917 :
918 24 : if (serialno)
919 0 : print_card_serialno (serialno);
920 :
921 24 : if (opt.with_key_data)
922 0 : print_key_data (pk);
923 :
924 165 : for (kbctx = NULL; (node = walk_kbnode (keyblock, &kbctx, 0));)
925 : {
926 117 : if (node->pkt->pkttype == PKT_USER_ID)
927 : {
928 26 : PKT_user_id *uid = node->pkt->pkt.user_id;
929 : int indent;
930 26 : int kl = opt.keyid_format == KF_NONE? 10 : keystrlen ();
931 :
932 26 : if ((uid->is_expired || uid->is_revoked)
933 0 : && !(opt.list_options & LIST_SHOW_UNUSABLE_UIDS))
934 : {
935 0 : skip_sigs = 1;
936 0 : continue;
937 : }
938 : else
939 26 : skip_sigs = 0;
940 :
941 26 : if (attrib_fp && uid->attrib_data != NULL)
942 0 : dump_attribs (uid, pk);
943 :
944 26 : if ((uid->is_revoked || uid->is_expired)
945 26 : || ((opt.list_options & LIST_SHOW_UID_VALIDITY)
946 26 : && !listctx->no_validity))
947 26 : {
948 : const char *validity;
949 :
950 26 : validity = uid_trust_string_fixed (ctrl, pk, uid);
951 52 : indent = ((kl + (opt.legacy_list_mode? 9:11))
952 26 : - atoi (uid_trust_string_fixed (ctrl, NULL, NULL)));
953 26 : if (indent < 0 || indent > 40)
954 0 : indent = 0;
955 :
956 26 : es_fprintf (es_stdout, "uid%*s%s ", indent, "", validity);
957 : }
958 : else
959 : {
960 0 : indent = kl + (opt.legacy_list_mode? 10:12);
961 0 : es_fprintf (es_stdout, "uid%*s", indent, "");
962 : }
963 :
964 26 : print_utf8_buffer (es_stdout, uid->name, uid->len);
965 26 : es_putc ('\n', es_stdout);
966 :
967 26 : if (opt.with_wkd_hash)
968 : {
969 : char *mbox, *hash, *p;
970 : char hashbuf[32];
971 :
972 0 : mbox = mailbox_from_userid (uid->name);
973 0 : if (mbox && (p = strchr (mbox, '@')))
974 : {
975 0 : *p++ = 0;
976 0 : gcry_md_hash_buffer (GCRY_MD_SHA1, hashbuf,
977 : mbox, strlen (mbox));
978 0 : hash = zb32_encode (hashbuf, 8*20);
979 0 : if (hash)
980 : {
981 0 : es_fprintf (es_stdout, " %*s%s@%s\n",
982 : indent, "", hash, p);
983 0 : xfree (hash);
984 : }
985 : }
986 0 : xfree (mbox);
987 : }
988 :
989 26 : if ((opt.list_options & LIST_SHOW_PHOTOS) && uid->attribs != NULL)
990 0 : show_photos (ctrl, uid->attribs, uid->numattribs, pk, uid);
991 : }
992 91 : else if (node->pkt->pkttype == PKT_PUBLIC_SUBKEY)
993 : {
994 17 : PKT_public_key *pk2 = node->pkt->pkt.public_key;
995 :
996 17 : if ((pk2->flags.revoked || pk2->has_expired)
997 0 : && !(opt.list_options & LIST_SHOW_UNUSABLE_SUBKEYS))
998 : {
999 0 : skip_sigs = 1;
1000 0 : continue;
1001 : }
1002 : else
1003 17 : skip_sigs = 0;
1004 :
1005 17 : xfree (serialno); serialno = NULL;
1006 17 : xfree (hexgrip); hexgrip = NULL;
1007 17 : if (secret || opt.with_keygrip)
1008 : {
1009 13 : rc = hexkeygrip_from_pk (pk2, &hexgrip);
1010 13 : if (rc)
1011 0 : log_error ("error computing a keygrip: %s\n",
1012 : gpg_strerror (rc));
1013 : }
1014 17 : if (secret)
1015 : {
1016 13 : if (!agent_get_keyinfo (NULL, hexgrip, &serialno, NULL))
1017 13 : secret = serialno? 3 : 1;
1018 : else
1019 0 : secret = '2'; /* Key not found. */
1020 : }
1021 :
1022 : /* Print the "sub" line. */
1023 17 : print_key_line (es_stdout, pk2, secret);
1024 17 : if (fpr > 1 || opt.with_subkey_fingerprint)
1025 : {
1026 0 : print_fingerprint (NULL, pk2, 0);
1027 0 : if (serialno)
1028 0 : print_card_serialno (serialno);
1029 : }
1030 17 : if (opt.with_keygrip && hexgrip)
1031 0 : es_fprintf (es_stdout, " Keygrip = %s\n", hexgrip);
1032 17 : if (opt.with_key_data)
1033 0 : print_key_data (pk2);
1034 : }
1035 74 : else if (opt.list_sigs
1036 0 : && node->pkt->pkttype == PKT_SIGNATURE && !skip_sigs)
1037 : {
1038 0 : PKT_signature *sig = node->pkt->pkt.signature;
1039 : int sigrc;
1040 : char *sigstr;
1041 :
1042 0 : if (listctx->check_sigs)
1043 : {
1044 0 : rc = check_key_signature (keyblock, node, NULL);
1045 0 : switch (gpg_err_code (rc))
1046 : {
1047 : case 0:
1048 0 : listctx->good_sigs++;
1049 0 : sigrc = '!';
1050 0 : break;
1051 : case GPG_ERR_BAD_SIGNATURE:
1052 0 : listctx->inv_sigs++;
1053 0 : sigrc = '-';
1054 0 : break;
1055 : case GPG_ERR_NO_PUBKEY:
1056 : case GPG_ERR_UNUSABLE_PUBKEY:
1057 0 : listctx->no_key++;
1058 0 : continue;
1059 : default:
1060 0 : listctx->oth_err++;
1061 0 : sigrc = '%';
1062 0 : break;
1063 : }
1064 :
1065 : /* TODO: Make sure a cached sig record here still has
1066 : the pk that issued it. See also
1067 : keyedit.c:print_and_check_one_sig */
1068 : }
1069 : else
1070 : {
1071 0 : rc = 0;
1072 0 : sigrc = ' ';
1073 : }
1074 :
1075 0 : if (sig->sig_class == 0x20 || sig->sig_class == 0x28
1076 0 : || sig->sig_class == 0x30)
1077 0 : sigstr = "rev";
1078 0 : else if ((sig->sig_class & ~3) == 0x10)
1079 0 : sigstr = "sig";
1080 0 : else if (sig->sig_class == 0x18)
1081 0 : sigstr = "sig";
1082 0 : else if (sig->sig_class == 0x1F)
1083 0 : sigstr = "sig";
1084 : else
1085 : {
1086 0 : es_fprintf (es_stdout, "sig "
1087 : "[unexpected signature class 0x%02x]\n",
1088 0 : sig->sig_class);
1089 0 : continue;
1090 : }
1091 :
1092 0 : es_fputs (sigstr, es_stdout);
1093 0 : es_fprintf (es_stdout, "%c%c %c%c%c%c%c%c %s %s",
1094 0 : sigrc, (sig->sig_class - 0x10 > 0 &&
1095 0 : sig->sig_class - 0x10 <
1096 0 : 4) ? '0' + sig->sig_class - 0x10 : ' ',
1097 0 : sig->flags.exportable ? ' ' : 'L',
1098 0 : sig->flags.revocable ? ' ' : 'R',
1099 0 : sig->flags.policy_url ? 'P' : ' ',
1100 0 : sig->flags.notation ? 'N' : ' ',
1101 0 : sig->flags.expired ? 'X' : ' ',
1102 0 : (sig->trust_depth > 9) ? 'T' : (sig->trust_depth >
1103 0 : 0) ? '0' +
1104 0 : sig->trust_depth : ' ', keystr (sig->keyid),
1105 : datestr_from_sig (sig));
1106 0 : if (opt.list_options & LIST_SHOW_SIG_EXPIRE)
1107 0 : es_fprintf (es_stdout, " %s", expirestr_from_sig (sig));
1108 0 : es_fprintf (es_stdout, " ");
1109 0 : if (sigrc == '%')
1110 0 : es_fprintf (es_stdout, "[%s] ", gpg_strerror (rc));
1111 0 : else if (sigrc == '?')
1112 : ;
1113 0 : else if (!opt.fast_list_mode)
1114 : {
1115 : size_t n;
1116 0 : char *p = get_user_id (sig->keyid, &n);
1117 0 : print_utf8_buffer (es_stdout, p, n);
1118 0 : xfree (p);
1119 : }
1120 0 : es_putc ('\n', es_stdout);
1121 :
1122 0 : if (sig->flags.policy_url
1123 0 : && (opt.list_options & LIST_SHOW_POLICY_URLS))
1124 0 : show_policy_url (sig, 3, 0);
1125 :
1126 0 : if (sig->flags.notation && (opt.list_options & LIST_SHOW_NOTATIONS))
1127 0 : show_notation (sig, 3, 0,
1128 0 : ((opt.
1129 0 : list_options & LIST_SHOW_STD_NOTATIONS) ? 1 : 0)
1130 : +
1131 0 : ((opt.
1132 0 : list_options & LIST_SHOW_USER_NOTATIONS) ? 2 :
1133 : 0));
1134 :
1135 0 : if (sig->flags.pref_ks
1136 0 : && (opt.list_options & LIST_SHOW_KEYSERVER_URLS))
1137 0 : show_keyserver_url (sig, 3, 0);
1138 :
1139 : /* fixme: check or list other sigs here */
1140 : }
1141 : }
1142 24 : es_putc ('\n', es_stdout);
1143 24 : xfree (serialno);
1144 24 : xfree (hexgrip);
1145 : }
1146 :
1147 : void
1148 44 : print_revokers (estream_t fp, PKT_public_key * pk)
1149 : {
1150 : /* print the revoker record */
1151 44 : if (!pk->revkey && pk->numrevkeys)
1152 0 : BUG ();
1153 : else
1154 : {
1155 : int i, j;
1156 :
1157 45 : for (i = 0; i < pk->numrevkeys; i++)
1158 : {
1159 : byte *p;
1160 :
1161 1 : es_fprintf (fp, "rvk:::%d::::::", pk->revkey[i].algid);
1162 1 : p = pk->revkey[i].fpr;
1163 21 : for (j = 0; j < 20; j++, p++)
1164 20 : es_fprintf (fp, "%02X", *p);
1165 2 : es_fprintf (fp, ":%02x%s:\n",
1166 1 : pk->revkey[i].class,
1167 1 : (pk->revkey[i].class & 0x40) ? "s" : "");
1168 : }
1169 : }
1170 44 : }
1171 :
1172 :
1173 : /* List a key in colon mode. If SECRET is true this is a secret key
1174 : record (i.e. requested via --list-secret-key). If HAS_SECRET a
1175 : secret key is available even if SECRET is not set. */
1176 : static void
1177 44 : list_keyblock_colon (ctrl_t ctrl, kbnode_t keyblock,
1178 : int secret, int has_secret)
1179 : {
1180 : int rc;
1181 : KBNODE kbctx;
1182 : KBNODE node;
1183 : PKT_public_key *pk;
1184 : u32 keyid[2];
1185 44 : int trustletter = 0;
1186 44 : int ulti_hack = 0;
1187 : int i;
1188 : char *p;
1189 44 : char *hexgrip_buffer = NULL;
1190 44 : const char *hexgrip = NULL;
1191 44 : char *serialno = NULL;
1192 : int stubkey;
1193 :
1194 : /* Get the keyid from the keyblock. */
1195 44 : node = find_kbnode (keyblock, PKT_PUBLIC_KEY);
1196 44 : if (!node)
1197 : {
1198 0 : log_error ("Oops; key lost!\n");
1199 0 : dump_kbnode (keyblock);
1200 44 : return;
1201 : }
1202 :
1203 44 : pk = node->pkt->pkt.public_key;
1204 44 : if (secret || has_secret || opt.with_keygrip || opt.with_key_data)
1205 : {
1206 0 : rc = hexkeygrip_from_pk (pk, &hexgrip_buffer);
1207 0 : if (rc)
1208 0 : log_error ("error computing a keygrip: %s\n", gpg_strerror (rc));
1209 : /* In the error case we print an empty string so that we have a
1210 : * "grp" record for each and subkey - even if it is empty. This
1211 : * may help to prevent sync problems. */
1212 0 : hexgrip = hexgrip_buffer? hexgrip_buffer : "";
1213 : }
1214 44 : stubkey = 0;
1215 44 : if ((secret || has_secret)
1216 0 : && agent_get_keyinfo (NULL, hexgrip, &serialno, NULL))
1217 0 : stubkey = 1; /* Key not found. */
1218 :
1219 44 : keyid_from_pk (pk, keyid);
1220 44 : es_fputs (secret? "sec:":"pub:", es_stdout);
1221 44 : if (!pk->flags.valid)
1222 0 : es_putc ('i', es_stdout);
1223 44 : else if (pk->flags.revoked)
1224 0 : es_putc ('r', es_stdout);
1225 44 : else if (pk->has_expired)
1226 1 : es_putc ('e', es_stdout);
1227 43 : else if (opt.fast_list_mode || opt.no_expensive_trust_checks)
1228 : ;
1229 : else
1230 : {
1231 43 : trustletter = get_validity_info (ctrl, pk, NULL);
1232 43 : if (trustletter == 'u')
1233 0 : ulti_hack = 1;
1234 43 : es_putc (trustletter, es_stdout);
1235 : }
1236 :
1237 176 : es_fprintf (es_stdout, ":%u:%d:%08lX%08lX:%s:%s::",
1238 : nbits_from_pk (pk),
1239 44 : pk->pubkey_algo,
1240 88 : (ulong) keyid[0], (ulong) keyid[1],
1241 : colon_datestr_from_pk (pk), colon_strtime (pk->expiredate));
1242 :
1243 44 : if (!opt.fast_list_mode && !opt.no_expensive_trust_checks)
1244 44 : es_putc (get_ownertrust_info (pk), es_stdout);
1245 44 : es_putc (':', es_stdout);
1246 :
1247 44 : es_putc (':', es_stdout);
1248 44 : es_putc (':', es_stdout);
1249 44 : print_capabilities (pk, keyblock);
1250 44 : es_putc (':', es_stdout); /* End of field 13. */
1251 44 : es_putc (':', es_stdout); /* End of field 14. */
1252 44 : if (secret || has_secret)
1253 : {
1254 0 : if (stubkey)
1255 0 : es_putc ('#', es_stdout);
1256 0 : else if (serialno)
1257 0 : es_fputs (serialno, es_stdout);
1258 0 : else if (has_secret)
1259 0 : es_putc ('+', es_stdout);
1260 : }
1261 44 : es_putc (':', es_stdout); /* End of field 15. */
1262 44 : es_putc (':', es_stdout); /* End of field 16. */
1263 44 : if (pk->pubkey_algo == PUBKEY_ALGO_ECDSA
1264 44 : || pk->pubkey_algo == PUBKEY_ALGO_EDDSA
1265 44 : || pk->pubkey_algo == PUBKEY_ALGO_ECDH)
1266 : {
1267 0 : char *curve = openpgp_oid_to_str (pk->pkey[0]);
1268 0 : const char *name = openpgp_oid_to_curve (curve, 0);
1269 0 : if (!name)
1270 0 : name = curve;
1271 0 : es_fputs (name, es_stdout);
1272 0 : xfree (curve);
1273 : }
1274 44 : es_putc (':', es_stdout); /* End of field 17. */
1275 44 : es_putc (':', es_stdout); /* End of field 18. */
1276 44 : es_putc ('\n', es_stdout);
1277 :
1278 44 : print_revokers (es_stdout, pk);
1279 44 : print_fingerprint (NULL, pk, 0);
1280 44 : if (hexgrip)
1281 0 : es_fprintf (es_stdout, "grp:::::::::%s:\n", hexgrip);
1282 44 : if (opt.with_key_data)
1283 0 : print_key_data (pk);
1284 :
1285 303 : for (kbctx = NULL; (node = walk_kbnode (keyblock, &kbctx, 0));)
1286 : {
1287 215 : if (node->pkt->pkttype == PKT_USER_ID)
1288 : {
1289 : char *str;
1290 44 : PKT_user_id *uid = node->pkt->pkt.user_id;
1291 :
1292 44 : if (attrib_fp && uid->attrib_data != NULL)
1293 0 : dump_attribs (uid, pk);
1294 : /*
1295 : * Fixme: We need a valid flag here too
1296 : */
1297 44 : str = uid->attrib_data ? "uat" : "uid";
1298 44 : if (uid->is_revoked)
1299 0 : es_fprintf (es_stdout, "%s:r::::", str);
1300 44 : else if (uid->is_expired)
1301 0 : es_fprintf (es_stdout, "%s:e::::", str);
1302 44 : else if (opt.no_expensive_trust_checks)
1303 0 : es_fprintf (es_stdout, "%s:::::", str);
1304 : else
1305 : {
1306 : int uid_validity;
1307 :
1308 44 : if (!ulti_hack)
1309 44 : uid_validity = get_validity_info (ctrl, pk, uid);
1310 : else
1311 0 : uid_validity = 'u';
1312 44 : es_fprintf (es_stdout, "%s:%c::::", str, uid_validity);
1313 : }
1314 :
1315 44 : es_fprintf (es_stdout, "%s:", colon_strtime (uid->created));
1316 44 : es_fprintf (es_stdout, "%s:", colon_strtime (uid->expiredate));
1317 :
1318 44 : namehash_from_uid (uid);
1319 :
1320 924 : for (i = 0; i < 20; i++)
1321 880 : es_fprintf (es_stdout, "%02X", uid->namehash[i]);
1322 :
1323 44 : es_fprintf (es_stdout, "::");
1324 :
1325 44 : if (uid->attrib_data)
1326 0 : es_fprintf (es_stdout, "%u %lu", uid->numattribs, uid->attrib_len);
1327 : else
1328 44 : es_write_sanitized (es_stdout, uid->name, uid->len, ":", NULL);
1329 44 : es_putc (':', es_stdout);
1330 44 : es_putc ('\n', es_stdout);
1331 : #ifdef USE_TOFU
1332 44 : if (!uid->attrib_data && opt.with_tofu_info
1333 22 : && (opt.trust_model == TM_TOFU || opt.trust_model == TM_TOFU_PGP))
1334 : {
1335 : /* Print a "tfs" record. */
1336 22 : tofu_write_tfs_record (ctrl, es_stdout, pk, uid->name);
1337 : }
1338 : #endif /*USE_TOFU*/
1339 : }
1340 171 : else if (node->pkt->pkttype == PKT_PUBLIC_SUBKEY)
1341 : {
1342 : u32 keyid2[2];
1343 : PKT_public_key *pk2;
1344 41 : int need_hexgrip = !!hexgrip;
1345 :
1346 41 : pk2 = node->pkt->pkt.public_key;
1347 41 : xfree (hexgrip_buffer); hexgrip_buffer = NULL; hexgrip = NULL;
1348 41 : xfree (serialno); serialno = NULL;
1349 41 : if (need_hexgrip
1350 41 : || secret || has_secret || opt.with_keygrip || opt.with_key_data)
1351 : {
1352 0 : rc = hexkeygrip_from_pk (pk2, &hexgrip_buffer);
1353 0 : if (rc)
1354 0 : log_error ("error computing a keygrip: %s\n",
1355 : gpg_strerror (rc));
1356 0 : hexgrip = hexgrip_buffer? hexgrip_buffer : "";
1357 : }
1358 41 : stubkey = 0;
1359 41 : if ((secret||has_secret)
1360 0 : && agent_get_keyinfo (NULL, hexgrip, &serialno, NULL))
1361 0 : stubkey = 1; /* Key not found. */
1362 :
1363 41 : keyid_from_pk (pk2, keyid2);
1364 41 : es_fputs (secret? "ssb:":"sub:", es_stdout);
1365 41 : if (!pk2->flags.valid)
1366 0 : es_putc ('i', es_stdout);
1367 41 : else if (pk2->flags.revoked)
1368 0 : es_putc ('r', es_stdout);
1369 41 : else if (pk2->has_expired)
1370 0 : es_putc ('e', es_stdout);
1371 41 : else if (opt.fast_list_mode || opt.no_expensive_trust_checks)
1372 : ;
1373 : else
1374 : {
1375 : /* TRUSTLETTER should always be defined here. */
1376 41 : if (trustletter)
1377 41 : es_fprintf (es_stdout, "%c", trustletter);
1378 : }
1379 164 : es_fprintf (es_stdout, ":%u:%d:%08lX%08lX:%s:%s:::::",
1380 : nbits_from_pk (pk2),
1381 41 : pk2->pubkey_algo,
1382 82 : (ulong) keyid2[0], (ulong) keyid2[1],
1383 : colon_datestr_from_pk (pk2), colon_strtime (pk2->expiredate)
1384 : /* fixme: add LID and ownertrust here */
1385 : );
1386 41 : print_capabilities (pk2, NULL);
1387 41 : es_putc (':', es_stdout); /* End of field 13. */
1388 41 : es_putc (':', es_stdout); /* End of field 14. */
1389 41 : if (secret || has_secret)
1390 : {
1391 0 : if (stubkey)
1392 0 : es_putc ('#', es_stdout);
1393 0 : else if (serialno)
1394 0 : es_fputs (serialno, es_stdout);
1395 0 : else if (has_secret)
1396 0 : es_putc ('+', es_stdout);
1397 : }
1398 41 : es_putc (':', es_stdout); /* End of field 15. */
1399 41 : es_putc (':', es_stdout); /* End of field 16. */
1400 41 : if (pk2->pubkey_algo == PUBKEY_ALGO_ECDSA
1401 41 : || pk2->pubkey_algo == PUBKEY_ALGO_EDDSA
1402 41 : || pk2->pubkey_algo == PUBKEY_ALGO_ECDH)
1403 : {
1404 0 : char *curve = openpgp_oid_to_str (pk2->pkey[0]);
1405 0 : const char *name = openpgp_oid_to_curve (curve, 0);
1406 0 : if (!name)
1407 0 : name = curve;
1408 0 : es_fputs (name, es_stdout);
1409 0 : xfree (curve);
1410 : }
1411 41 : es_putc (':', es_stdout); /* End of field 17. */
1412 41 : es_putc ('\n', es_stdout);
1413 41 : print_fingerprint (NULL, pk2, 0);
1414 41 : if (hexgrip)
1415 0 : es_fprintf (es_stdout, "grp:::::::::%s:\n", hexgrip);
1416 41 : if (opt.with_key_data)
1417 0 : print_key_data (pk2);
1418 : }
1419 130 : else if (opt.list_sigs && node->pkt->pkttype == PKT_SIGNATURE)
1420 : {
1421 0 : PKT_signature *sig = node->pkt->pkt.signature;
1422 0 : int sigrc, fprokay = 0;
1423 : char *sigstr;
1424 : size_t fplen;
1425 : byte fparray[MAX_FINGERPRINT_LEN];
1426 :
1427 0 : if (sig->sig_class == 0x20 || sig->sig_class == 0x28
1428 0 : || sig->sig_class == 0x30)
1429 0 : sigstr = "rev";
1430 0 : else if ((sig->sig_class & ~3) == 0x10)
1431 0 : sigstr = "sig";
1432 0 : else if (sig->sig_class == 0x18)
1433 0 : sigstr = "sig";
1434 0 : else if (sig->sig_class == 0x1F)
1435 0 : sigstr = "sig";
1436 : else
1437 : {
1438 0 : es_fprintf (es_stdout, "sig::::::::::%02x%c:\n",
1439 0 : sig->sig_class, sig->flags.exportable ? 'x' : 'l');
1440 0 : continue;
1441 : }
1442 :
1443 0 : if (opt.check_sigs)
1444 : {
1445 0 : PKT_public_key *signer_pk = NULL;
1446 :
1447 0 : fflush (stdout);
1448 0 : if (opt.no_sig_cache)
1449 0 : signer_pk = xmalloc_clear (sizeof (PKT_public_key));
1450 :
1451 0 : rc = check_key_signature2 (keyblock, node, NULL, signer_pk,
1452 : NULL, NULL, NULL);
1453 0 : switch (gpg_err_code (rc))
1454 : {
1455 : case 0:
1456 0 : sigrc = '!';
1457 0 : break;
1458 : case GPG_ERR_BAD_SIGNATURE:
1459 0 : sigrc = '-';
1460 0 : break;
1461 : case GPG_ERR_NO_PUBKEY:
1462 : case GPG_ERR_UNUSABLE_PUBKEY:
1463 0 : sigrc = '?';
1464 0 : break;
1465 : default:
1466 0 : sigrc = '%';
1467 0 : break;
1468 : }
1469 :
1470 0 : if (opt.no_sig_cache)
1471 : {
1472 0 : if (!rc)
1473 : {
1474 0 : fingerprint_from_pk (signer_pk, fparray, &fplen);
1475 0 : fprokay = 1;
1476 : }
1477 0 : free_public_key (signer_pk);
1478 : }
1479 : }
1480 : else
1481 : {
1482 0 : rc = 0;
1483 0 : sigrc = ' ';
1484 : }
1485 0 : es_fputs (sigstr, es_stdout);
1486 0 : es_putc (':', es_stdout);
1487 0 : if (sigrc != ' ')
1488 0 : es_putc (sigrc, es_stdout);
1489 0 : es_fprintf (es_stdout, "::%d:%08lX%08lX:%s:%s:", sig->pubkey_algo,
1490 0 : (ulong) sig->keyid[0], (ulong) sig->keyid[1],
1491 : colon_datestr_from_sig (sig),
1492 : colon_expirestr_from_sig (sig));
1493 :
1494 0 : if (sig->trust_depth || sig->trust_value)
1495 0 : es_fprintf (es_stdout, "%d %d", sig->trust_depth, sig->trust_value);
1496 0 : es_fprintf (es_stdout, ":");
1497 :
1498 0 : if (sig->trust_regexp)
1499 0 : es_write_sanitized (es_stdout, sig->trust_regexp,
1500 0 : strlen (sig->trust_regexp), ":", NULL);
1501 0 : es_fprintf (es_stdout, ":");
1502 :
1503 0 : if (sigrc == '%')
1504 0 : es_fprintf (es_stdout, "[%s] ", gpg_strerror (rc));
1505 0 : else if (sigrc == '?')
1506 : ;
1507 0 : else if (!opt.fast_list_mode)
1508 : {
1509 : size_t n;
1510 0 : p = get_user_id (sig->keyid, &n);
1511 0 : es_write_sanitized (es_stdout, p, n, ":", NULL);
1512 0 : xfree (p);
1513 : }
1514 0 : es_fprintf (es_stdout, ":%02x%c::", sig->sig_class,
1515 0 : sig->flags.exportable ? 'x' : 'l');
1516 :
1517 0 : if (opt.no_sig_cache && opt.check_sigs && fprokay)
1518 : {
1519 0 : for (i = 0; i < fplen; i++)
1520 0 : es_fprintf (es_stdout, "%02X", fparray[i]);
1521 : }
1522 :
1523 0 : es_fprintf (es_stdout, ":::%d:\n", sig->digest_algo);
1524 :
1525 0 : if (opt.show_subpackets)
1526 0 : print_subpackets_colon (sig);
1527 :
1528 : /* fixme: check or list other sigs here */
1529 : }
1530 : }
1531 :
1532 44 : xfree (hexgrip_buffer);
1533 44 : xfree (serialno);
1534 : }
1535 :
1536 : /*
1537 : * Reorder the keyblock so that the primary user ID (and not attribute
1538 : * packet) comes first. Fixme: Replace this by a generic sort
1539 : * function. */
1540 : static void
1541 136 : do_reorder_keyblock (KBNODE keyblock, int attr)
1542 : {
1543 136 : KBNODE primary = NULL, primary0 = NULL, primary2 = NULL;
1544 : KBNODE last, node;
1545 :
1546 542 : for (node = keyblock; node; primary0 = node, node = node->next)
1547 : {
1548 474 : if (node->pkt->pkttype == PKT_USER_ID &&
1549 70 : ((attr && node->pkt->pkt.user_id->attrib_data) ||
1550 140 : (!attr && !node->pkt->pkt.user_id->attrib_data)) &&
1551 70 : node->pkt->pkt.user_id->is_primary)
1552 : {
1553 68 : primary = primary2 = node;
1554 142 : for (node = node->next; node; primary2 = node, node = node->next)
1555 : {
1556 132 : if (node->pkt->pkttype == PKT_USER_ID
1557 132 : || node->pkt->pkttype == PKT_PUBLIC_SUBKEY
1558 74 : || node->pkt->pkttype == PKT_SECRET_SUBKEY)
1559 : {
1560 : break;
1561 : }
1562 : }
1563 68 : break;
1564 : }
1565 : }
1566 136 : if (!primary)
1567 68 : return; /* No primary key flag found (should not happen). */
1568 :
1569 137 : for (last = NULL, node = keyblock; node; last = node, node = node->next)
1570 : {
1571 137 : if (node->pkt->pkttype == PKT_USER_ID)
1572 68 : break;
1573 : }
1574 68 : log_assert (node);
1575 68 : log_assert (last); /* The user ID is never the first packet. */
1576 68 : log_assert (primary0); /* Ditto (this is the node before primary). */
1577 68 : if (node == primary)
1578 67 : return; /* Already the first one. */
1579 :
1580 1 : last->next = primary;
1581 1 : primary0->next = primary2->next;
1582 1 : primary2->next = node;
1583 : }
1584 :
1585 : void
1586 68 : reorder_keyblock (KBNODE keyblock)
1587 : {
1588 68 : do_reorder_keyblock (keyblock, 1);
1589 68 : do_reorder_keyblock (keyblock, 0);
1590 68 : }
1591 :
1592 : static void
1593 68 : list_keyblock (ctrl_t ctrl,
1594 : KBNODE keyblock, int secret, int has_secret, int fpr,
1595 : struct keylist_context *listctx)
1596 : {
1597 68 : reorder_keyblock (keyblock);
1598 :
1599 68 : if (opt.with_colons)
1600 44 : list_keyblock_colon (ctrl, keyblock, secret, has_secret);
1601 : else
1602 24 : list_keyblock_print (ctrl, keyblock, secret, fpr, listctx);
1603 :
1604 68 : if (secret)
1605 20 : es_fflush (es_stdout);
1606 68 : }
1607 :
1608 :
1609 : /* Public function used by keygen to list a keyblock. If NO_VALIDITY
1610 : * is set the validity of a key is never shown. */
1611 : void
1612 0 : list_keyblock_direct (ctrl_t ctrl,
1613 : kbnode_t keyblock, int secret, int has_secret, int fpr,
1614 : int no_validity)
1615 : {
1616 : struct keylist_context listctx;
1617 :
1618 0 : memset (&listctx, 0, sizeof (listctx));
1619 0 : listctx.no_validity = !!no_validity;
1620 0 : list_keyblock (ctrl, keyblock, secret, has_secret, fpr, &listctx);
1621 0 : keylist_context_release (&listctx);
1622 0 : }
1623 :
1624 :
1625 : /* Print an hex digit in ICAO spelling. */
1626 : static void
1627 0 : print_icao_hexdigit (estream_t fp, int c)
1628 : {
1629 : static const char *list[16] = {
1630 : "Zero", "One", "Two", "Three", "Four", "Five", "Six", "Seven",
1631 : "Eight", "Niner", "Alfa", "Bravo", "Charlie", "Delta", "Echo", "Foxtrot"
1632 : };
1633 :
1634 0 : tty_fprintf (fp, "%s", list[c&15]);
1635 0 : }
1636 :
1637 :
1638 : /*
1639 : * Function to print the finperprint.
1640 : * mode 0: as used in key listings, opt.with_colons is honored
1641 : * 1: print using log_info ()
1642 : * 2: direct use of tty
1643 : * 3: direct use of tty but only primary key.
1644 : * 4: direct use of tty but only subkey.
1645 : * 10: Same as 0 but with_colons etc is ignored.
1646 : * 20: Same as 0 but using a compact format.
1647 : *
1648 : * Modes 1 and 2 will try and print both subkey and primary key
1649 : * fingerprints. A MODE with bit 7 set is used internally. If
1650 : * OVERRIDE_FP is not NULL that stream will be used in 0 instead
1651 : * of es_stdout or instead of the TTY in modes 2 and 3.
1652 : */
1653 : void
1654 120 : print_fingerprint (estream_t override_fp, PKT_public_key *pk, int mode)
1655 : {
1656 : char hexfpr[2*MAX_FINGERPRINT_LEN+1];
1657 : char *p;
1658 : size_t i;
1659 : estream_t fp;
1660 : const char *text;
1661 120 : int primary = 0;
1662 120 : int with_colons = opt.with_colons;
1663 120 : int with_icao = opt.with_icao_spelling;
1664 120 : int compact = 0;
1665 :
1666 120 : if (mode == 10)
1667 : {
1668 0 : mode = 0;
1669 0 : with_colons = 0;
1670 0 : with_icao = 0;
1671 : }
1672 120 : else if (mode == 20)
1673 : {
1674 26 : mode = 0;
1675 26 : with_colons = 0;
1676 26 : compact = 1;
1677 : }
1678 :
1679 120 : if (!opt.fingerprint && !opt.with_fingerprint
1680 120 : && opt.with_subkey_fingerprint)
1681 0 : compact = 1;
1682 :
1683 120 : if (pk->main_keyid[0] == pk->keyid[0]
1684 79 : && pk->main_keyid[1] == pk->keyid[1])
1685 79 : primary = 1;
1686 :
1687 : /* Just to be safe */
1688 120 : if ((mode & 0x80) && !primary)
1689 : {
1690 0 : log_error ("primary key is not really primary!\n");
1691 120 : return;
1692 : }
1693 :
1694 120 : mode &= ~0x80;
1695 :
1696 120 : if (!primary && (mode == 1 || mode == 2))
1697 : {
1698 0 : PKT_public_key *primary_pk = xmalloc_clear (sizeof (*primary_pk));
1699 0 : get_pubkey (primary_pk, pk->main_keyid);
1700 0 : print_fingerprint (override_fp, primary_pk, (mode | 0x80));
1701 0 : free_public_key (primary_pk);
1702 : }
1703 :
1704 120 : if (mode == 1)
1705 : {
1706 9 : fp = log_get_stream ();
1707 9 : if (primary)
1708 9 : text = _("Primary key fingerprint:");
1709 : else
1710 0 : text = _(" Subkey fingerprint:");
1711 : }
1712 111 : else if (mode == 2)
1713 : {
1714 0 : fp = override_fp; /* Use tty or given stream. */
1715 0 : if (primary)
1716 : /* TRANSLATORS: this should fit into 24 bytes so that the
1717 : * fingerprint data is properly aligned with the user ID */
1718 0 : text = _(" Primary key fingerprint:");
1719 : else
1720 0 : text = _(" Subkey fingerprint:");
1721 : }
1722 111 : else if (mode == 3)
1723 : {
1724 0 : fp = override_fp; /* Use tty or given stream. */
1725 0 : text = _(" Key fingerprint =");
1726 : }
1727 111 : else if (mode == 4)
1728 : {
1729 0 : fp = override_fp; /* Use tty or given stream. */
1730 0 : text = _(" Subkey fingerprint:");
1731 : }
1732 : else
1733 : {
1734 111 : fp = override_fp? override_fp : es_stdout;
1735 111 : if (opt.keyid_format == KF_NONE)
1736 : {
1737 111 : text = " "; /* To indent ICAO spelling. */
1738 111 : compact = 1;
1739 : }
1740 : else
1741 0 : text = _(" Key fingerprint =");
1742 : }
1743 :
1744 120 : hexfingerprint (pk, hexfpr, sizeof hexfpr);
1745 120 : if (with_colons && !mode)
1746 : {
1747 85 : es_fprintf (fp, "fpr:::::::::%s:", hexfpr);
1748 : }
1749 35 : else if (compact && !opt.fingerprint && !opt.with_fingerprint)
1750 : {
1751 26 : tty_fprintf (fp, "%*s%s", 6, "", hexfpr);
1752 : }
1753 : else
1754 : {
1755 : char fmtfpr[MAX_FORMATTED_FINGERPRINT_LEN + 1];
1756 9 : format_hexfingerprint (hexfpr, fmtfpr, sizeof fmtfpr);
1757 9 : if (compact)
1758 0 : tty_fprintf (fp, "%*s%s", 6, "", fmtfpr);
1759 : else
1760 9 : tty_fprintf (fp, "%s %s", text, fmtfpr);
1761 : }
1762 120 : tty_fprintf (fp, "\n");
1763 120 : if (!with_colons && with_icao)
1764 : {
1765 : ;
1766 0 : tty_fprintf (fp, "%*s\"", (int)strlen(text)+1, "");
1767 0 : for (i = 0, p = hexfpr; *p; i++, p++)
1768 : {
1769 0 : if (!i)
1770 : ;
1771 0 : else if (!(i%8))
1772 0 : tty_fprintf (fp, "\n%*s ", (int)strlen(text)+1, "");
1773 0 : else if (!(i%4))
1774 0 : tty_fprintf (fp, " ");
1775 : else
1776 0 : tty_fprintf (fp, " ");
1777 0 : print_icao_hexdigit (fp, xtoi_1 (p));
1778 : }
1779 0 : tty_fprintf (fp, "\"\n");
1780 : }
1781 : }
1782 :
1783 : /* Print the serial number of an OpenPGP card if available. */
1784 : static void
1785 0 : print_card_serialno (const char *serialno)
1786 : {
1787 0 : if (!serialno)
1788 0 : return;
1789 0 : if (opt.with_colons)
1790 0 : return; /* Handled elsewhere. */
1791 :
1792 0 : es_fputs (_(" Card serial no. ="), es_stdout);
1793 0 : es_putc (' ', es_stdout);
1794 0 : if (strlen (serialno) == 32 && !strncmp (serialno, "D27600012401", 12))
1795 : {
1796 : /* This is an OpenPGP card. Print the relevant part. */
1797 : /* Example: D2760001240101010001000003470000 */
1798 : /* xxxxyyyyyyyy */
1799 0 : es_fprintf (es_stdout, "%.*s %.*s", 4, serialno+16, 8, serialno+20);
1800 : }
1801 : else
1802 0 : es_fputs (serialno, es_stdout);
1803 0 : es_putc ('\n', es_stdout);
1804 : }
1805 :
1806 :
1807 : /* Print a public or secret (sub)key line. Example:
1808 : *
1809 : * pub dsa2048 2007-12-31 [SC] [expires: 2018-12-31]
1810 : * 80615870F5BAD690333686D0F2AD85AC1E42B367
1811 : *
1812 : * Some global options may result in a different output format. If
1813 : * SECRET is set, "sec" or "ssb" is used instead of "pub" or "sub" and
1814 : * depending on the value a flag character is shown:
1815 : *
1816 : * 1 := ' ' Regular secret key
1817 : * 2 := '#' Stub secret key
1818 : * 3 := '>' Secret key is on a token.
1819 : */
1820 : void
1821 43 : print_key_line (estream_t fp, PKT_public_key *pk, int secret)
1822 : {
1823 : char pkstrbuf[PUBKEY_STRING_SIZE];
1824 :
1825 172 : tty_fprintf (fp, "%s%c %s",
1826 69 : pk->flags.primary? (secret? "sec":"pub")
1827 17 : /**/ : (secret? "ssb":"sub"),
1828 43 : secret == 2? '#' : secret == 3? '>' : ' ',
1829 : pubkey_string (pk, pkstrbuf, sizeof pkstrbuf));
1830 43 : if (opt.keyid_format != KF_NONE)
1831 0 : tty_fprintf (fp, "/%s", keystr_from_pk (pk));
1832 43 : tty_fprintf (fp, " %s", datestr_from_pk (pk));
1833 :
1834 43 : if ((opt.list_options & LIST_SHOW_USAGE))
1835 : {
1836 43 : tty_fprintf (fp, " [%s]", usagestr_from_pk (pk, 0));
1837 : }
1838 43 : if (pk->flags.revoked)
1839 : {
1840 0 : tty_fprintf (fp, " [");
1841 0 : tty_fprintf (fp, _("revoked: %s"), revokestr_from_pk (pk));
1842 0 : tty_fprintf (fp, "]");
1843 : }
1844 43 : else if (pk->has_expired)
1845 : {
1846 0 : tty_fprintf (fp, " [");
1847 0 : tty_fprintf (fp, _("expired: %s"), expirestr_from_pk (pk));
1848 0 : tty_fprintf (fp, "]");
1849 : }
1850 43 : else if (pk->expiredate)
1851 : {
1852 8 : tty_fprintf (fp, " [");
1853 8 : tty_fprintf (fp, _("expires: %s"), expirestr_from_pk (pk));
1854 8 : tty_fprintf (fp, "]");
1855 : }
1856 :
1857 : #if 0
1858 : /* I need to think about this some more. It's easy enough to
1859 : include, but it looks sort of confusing in the listing... */
1860 : if (opt.list_options & LIST_SHOW_VALIDITY)
1861 : {
1862 : int validity = get_validity (ctrl, pk, NULL, NULL, 0);
1863 : tty_fprintf (fp, " [%s]", trust_value_to_string (validity));
1864 : }
1865 : #endif
1866 :
1867 43 : if (pk->pubkey_algo >= 100)
1868 0 : tty_fprintf (fp, " [experimental algorithm %d]", pk->pubkey_algo);
1869 :
1870 43 : tty_fprintf (fp, "\n");
1871 :
1872 : /* if the user hasn't explicitly asked for human-readable
1873 : fingerprints, show compact fpr of primary key: */
1874 69 : if (pk->flags.primary &&
1875 52 : !opt.fingerprint && !opt.with_fingerprint)
1876 26 : print_fingerprint (fp, pk, 20);
1877 43 : }
1878 :
1879 :
1880 : void
1881 0 : set_attrib_fd (int fd)
1882 : {
1883 : static int last_fd = -1;
1884 :
1885 0 : if (fd != -1 && last_fd == fd)
1886 0 : return;
1887 :
1888 : /* Fixme: Do we need to check for the log stream here? */
1889 0 : if (attrib_fp && attrib_fp != log_get_stream ())
1890 0 : es_fclose (attrib_fp);
1891 0 : attrib_fp = NULL;
1892 0 : if (fd == -1)
1893 0 : return;
1894 :
1895 : #ifdef HAVE_DOSISH_SYSTEM
1896 : setmode (fd, O_BINARY);
1897 : #endif
1898 0 : if (fd == 1)
1899 0 : attrib_fp = es_stdout;
1900 0 : else if (fd == 2)
1901 0 : attrib_fp = es_stderr;
1902 : else
1903 0 : attrib_fp = es_fdopen (fd, "wb");
1904 0 : if (!attrib_fp)
1905 : {
1906 0 : log_fatal ("can't open fd %d for attribute output: %s\n",
1907 0 : fd, strerror (errno));
1908 : }
1909 :
1910 0 : last_fd = fd;
1911 : }
|