1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
|
/*
* keyindex.c - Routines to list an OpenPGP key.
*
* Copyright 2002-2008 Jonathan McDowell <noodles@earth.li>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <inttypes.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "decodekey.h"
#include "keydb.h"
#include "keyid.h"
#include "keyindex.h"
#include "keystructs.h"
#include "log.h"
#include "onak.h"
#include "openpgp.h"
/*
* Convert a Public Key algorithm to its single character representation.
*/
char pkalgo2char(uint8_t algo)
{
char typech;
switch (algo) {
case OPENPGP_PKALGO_DSA:
typech = 'D';
break;
case OPENPGP_PKALGO_ECDSA:
case OPENPGP_PKALGO_EDDSA:
typech = 'E';
break;
case OPENPGP_PKALGO_EC:
typech = 'e';
break;
case OPENPGP_PKALGO_ELGAMAL_SIGN:
typech = 'G';
break;
case OPENPGP_PKALGO_ELGAMAL_ENC:
typech = 'g';
break;
case OPENPGP_PKALGO_RSA:
typech = 'R';
break;
case OPENPGP_PKALGO_RSA_ENC:
typech = 'r';
break;
case OPENPGP_PKALGO_RSA_SIGN:
typech = 's';
break;
default:
typech = '?';
break;
}
return typech;
}
/**
* html_escape - Takes a string and converts it to HTML.
* @src: The string to HTMLize.
* @src_len: The length of the source string
* @dst: A buffer to put the escaped string into
* @dst_len: Length of the destination buffer (including a trailing NULL)
*
* Takes a string and escapes any HTML entities (<, >, &, ", '). Returns
* dst.
*/
const char *html_escape(const char *src, size_t src_len,
char *dst, size_t dst_len)
{
size_t in_pos, out_pos;
dst_len--;
for (in_pos = 0, out_pos = 0;
in_pos < src_len && out_pos < (dst_len - 1);
in_pos++, out_pos++) {
switch (src[in_pos]) {
case '<':
if ((out_pos + 4) >= dst_len) {
break;
}
dst[out_pos++] = '&';
dst[out_pos++] = 'l';
dst[out_pos++] = 't';
dst[out_pos] = ';';
break;
case '>':
if ((out_pos + 4) >= dst_len) {
break;
}
dst[out_pos++] = '&';
dst[out_pos++] = 'g';
dst[out_pos++] = 't';
dst[out_pos] = ';';
break;
case '"':
if ((out_pos + 6) >= dst_len) {
break;
}
dst[out_pos++] = '&';
dst[out_pos++] = 'q';
dst[out_pos++] = 'u';
dst[out_pos++] = 'o';
dst[out_pos++] = 't';
dst[out_pos] = ';';
break;
case '\'':
if ((out_pos + 5) >= dst_len) {
break;
}
dst[out_pos++] = '&';
dst[out_pos++] = '#';
dst[out_pos++] = '3';
dst[out_pos++] = '9';
dst[out_pos] = ';';
break;
case '&':
if ((out_pos + 5) >= dst_len) {
break;
}
dst[out_pos++] = '&';
dst[out_pos++] = 'a';
dst[out_pos++] = 'm';
dst[out_pos++] = 'p';
dst[out_pos] = ';';
break;
default:
dst[out_pos] = src[in_pos];
}
}
dst[out_pos] = 0;
return dst;
}
/*
* Given a public key/subkey packet return the key length.
*/
unsigned int keylength(struct openpgp_packet *keydata)
{
unsigned int length;
uint8_t keyofs;
enum onak_oid oid;
switch (keydata->data[0]) {
case 2:
case 3:
length = (keydata->data[8] << 8) +
keydata->data[9];
break;
case 4:
case 5:
/* v5 has an additional 4 bytes of key length data */
keyofs = (keydata->data[0] == 4) ? 6 : 10;
switch (keydata->data[5]) {
case OPENPGP_PKALGO_EC:
case OPENPGP_PKALGO_ECDSA:
case OPENPGP_PKALGO_EDDSA:
/* Elliptic curve key size is based on OID */
oid = onak_parse_oid(&keydata->data[keyofs],
keydata->length - keyofs);
if (oid == ONAK_OID_CURVE25519) {
length = 255;
} else if (oid == ONAK_OID_ED25519) {
length = 255;
} else if (oid == ONAK_OID_NISTP256) {
length = 256;
} else if (oid == ONAK_OID_NISTP384) {
length = 384;
} else if (oid == ONAK_OID_NISTP521) {
length = 521;
} else if (oid == ONAK_OID_BRAINPOOLP256R1) {
length = 256;
} else if (oid == ONAK_OID_BRAINPOOLP384R1) {
length = 384;
} else if (oid == ONAK_OID_BRAINPOOLP512R1) {
length = 512;
} else if (oid == ONAK_OID_SECP256K1) {
length = 256;
} else {
logthing(LOGTHING_ERROR,
"Unknown elliptic curve size");
length = 0;
}
break;
default:
length = (keydata->data[keyofs] << 8) +
keydata->data[keyofs + 1];
}
break;
default:
logthing(LOGTHING_ERROR, "Unknown key version: %d",
keydata->data[0]);
length = 0;
}
return length;
}
int list_sigs(struct onak_dbctx *dbctx,
struct openpgp_packet_list *sigs, bool html)
{
char *uid = NULL;
uint64_t sigid = 0;
char *sig = NULL;
char buf[1024];
while (sigs != NULL) {
sigid = sig_keyid(sigs->packet);
if (dbctx) {
uid = dbctx->keyid2uid(dbctx, sigid);
}
if (sigs->packet->data[0] == 4 &&
sigs->packet->data[1] == 0x30) {
/* It's a Type 4 sig revocation */
sig = "rev";
} else {
sig = "sig";
}
if (html && uid != NULL) {
printf("%s <a href=\"lookup?op=get&"
"search=0x%016" PRIX64 "\">0x%016" PRIX64
"</a> "
"<a href=\"lookup?op=vindex&search=0x%016"
PRIX64 "\">%s</a>\n",
sig,
sigid,
sigid,
sigid,
html_escape(uid, strlen(uid), buf, sizeof(buf)));
} else if (html && uid == NULL) {
printf("%s 0x%016" PRIX64 " "
"[User id not found]\n",
sig,
sigid);
} else {
printf("%s 0x%016" PRIX64
" %s\n",
sig,
sigid,
(uid != NULL) ? uid :
"[User id not found]");
}
if (uid != NULL) {
free(uid);
uid = NULL;
}
sigs = sigs->next;
}
return 0;
}
int list_uids(struct onak_dbctx *dbctx,
uint64_t keyid, struct openpgp_signedpacket_list *uids,
bool verbose, bool html)
{
char buf[1024];
int imgindx = 0;
while (uids != NULL) {
if (uids->packet->tag == OPENPGP_PACKET_UID) {
snprintf(buf, 1023, "%.*s",
(int) uids->packet->length,
uids->packet->data);
if (html) {
printf(" %s\n",
html_escape((char *) uids->packet->data,
uids->packet->length,
buf,
sizeof(buf)));
} else {
printf(" %.*s\n",
(int) uids->packet->length,
uids->packet->data);
}
} else if (uids->packet->tag == OPENPGP_PACKET_UAT) {
printf(" ");
if (html) {
printf("<img src=\"lookup?op=photo&search="
"0x%016" PRIX64 "&idx=%d\" alt=\""
"[photo id]\">\n",
keyid,
imgindx);
imgindx++;
} else {
printf("[photo id]\n");
}
}
if (verbose) {
list_sigs(dbctx, uids->sigs, html);
}
uids = uids->next;
}
return 0;
}
int list_subkeys(struct onak_dbctx *dbctx,
struct openpgp_signedpacket_list *subkeys, bool verbose,
bool html)
{
struct tm created;
time_t created_time = 0;
int type = 0;
int length = 0;
uint64_t keyid = 0;
while (subkeys != NULL) {
if (subkeys->packet->tag == OPENPGP_PACKET_PUBLICSUBKEY) {
created_time = (subkeys->packet->data[1] << 24) +
(subkeys->packet->data[2] << 16) +
(subkeys->packet->data[3] << 8) +
subkeys->packet->data[4];
gmtime_r(&created_time, &created);
switch (subkeys->packet->data[0]) {
case 2:
case 3:
type = subkeys->packet->data[7];
break;
case 4:
case 5:
type = subkeys->packet->data[5];
break;
default:
logthing(LOGTHING_ERROR,
"Unknown key version: %d",
subkeys->packet->data[0]);
}
length = keylength(subkeys->packet);
if (get_packetid(subkeys->packet,
&keyid) != ONAK_E_OK) {
logthing(LOGTHING_ERROR, "Couldn't get keyid.");
}
printf("sub %5d%c/0x%016" PRIX64 " %04d/%02d/%02d\n",
length,
pkalgo2char(type),
keyid,
created.tm_year + 1900,
created.tm_mon + 1,
created.tm_mday);
}
if (verbose) {
list_sigs(dbctx, subkeys->sigs, html);
}
subkeys = subkeys->next;
}
return 0;
}
void display_fingerprint(struct openpgp_publickey *key)
{
int i = 0;
struct openpgp_fingerprint fingerprint;
get_fingerprint(key->publickey, &fingerprint);
printf(" Key fingerprint =");
for (i = 0; i < fingerprint.length; i++) {
if ((fingerprint.length == 16) ||
(i % 2 == 0)) {
printf(" ");
}
if (fingerprint.length == 20 &&
(i * 2) == fingerprint.length) {
/* Extra space in the middle of a SHA1 fingerprint */
printf(" ");
}
printf("%02X", fingerprint.fp[i]);
}
printf("\n");
return;
}
void display_skshash(struct openpgp_publickey *key, bool html)
{
int i = 0;
struct skshash hash;
get_skshash(key, &hash);
printf(" Key hash = ");
if (html) {
printf("<a href=\"lookup?op=hget&search=");
for (i = 0; i < sizeof(hash.hash); i++) {
printf("%02X", hash.hash[i]);
}
printf("\">");
}
for (i = 0; i < sizeof(hash.hash); i++) {
printf("%02X", hash.hash[i]);
}
if (html) {
printf("</a>");
}
printf("\n");
return;
}
/**
* key_index - List a set of OpenPGP keys.
* @keys: The keys to display.
* @verbose: Should we list sigs as well?
* @fingerprint: List the fingerprint?
* @html: Should the output be tailored for HTML?
*
* This function takes a list of OpenPGP public keys and displays an index
* of them. Useful for debugging or the keyserver Index function.
*/
int key_index(struct onak_dbctx *dbctx,
struct openpgp_publickey *keys, bool verbose, bool fingerprint,
bool skshash, bool html)
{
struct openpgp_signedpacket_list *curuid = NULL;
struct tm created;
time_t created_time = 0;
int type = 0;
int length = 0;
char buf[1024];
uint64_t keyid;
if (html) {
puts("<pre>");
}
puts("Type bits/keyID Date User ID");
while (keys != NULL) {
created_time = (keys->publickey->data[1] << 24) +
(keys->publickey->data[2] << 16) +
(keys->publickey->data[3] << 8) +
keys->publickey->data[4];
gmtime_r(&created_time, &created);
switch (keys->publickey->data[0]) {
case 2:
case 3:
type = keys->publickey->data[7];
break;
case 4:
case 5:
type = keys->publickey->data[5];
break;
default:
logthing(LOGTHING_ERROR, "Unknown key version: %d",
keys->publickey->data[0]);
}
length = keylength(keys->publickey);
if (get_keyid(keys, &keyid) != ONAK_E_OK) {
logthing(LOGTHING_ERROR, "Couldn't get keyid.");
}
if (html) {
printf("pub %5d%c/<a href=\"lookup?op=get&"
"search=0x%016" PRIX64 "\">0x%016" PRIX64
"</a> %04d/%02d/%02d ",
length,
pkalgo2char(type),
keyid,
keyid,
created.tm_year + 1900,
created.tm_mon + 1,
created.tm_mday);
} else {
printf("pub %5d%c/0x%016" PRIX64 " %04d/%02d/%02d ",
length,
pkalgo2char(type),
keyid,
created.tm_year + 1900,
created.tm_mon + 1,
created.tm_mday);
}
curuid = keys->uids;
if (curuid != NULL &&
curuid->packet->tag == OPENPGP_PACKET_UID) {
if (html) {
printf("<a href=\"lookup?op=vindex&"
"search=0x%016" PRIX64 "\">"
"%s</a>%s\n",
keyid,
html_escape((char *) curuid->packet->data,
curuid->packet->length,
buf,
sizeof(buf)),
(keys->revoked) ? " *** REVOKED ***" : "");
} else {
printf("%.*s%s\n",
(int) curuid->packet->length,
curuid->packet->data,
(keys->revoked) ? " *** REVOKED ***" : "");
}
if (skshash) {
display_skshash(keys, html);
}
if (fingerprint) {
display_fingerprint(keys);
}
if (verbose) {
list_sigs(dbctx, curuid->sigs, html);
}
curuid = curuid->next;
} else {
printf("%s\n",
(keys->revoked) ? "*** REVOKED ***": "");
if (fingerprint) {
display_fingerprint(keys);
}
}
list_uids(dbctx, keyid, curuid, verbose, html);
if (verbose) {
list_subkeys(dbctx, keys->subkeys, verbose, html);
}
keys = keys->next;
}
if (html) {
puts("</pre>");
}
return 0;
}
/**
* mrkey_index - List a set of OpenPGP keys in the MRHKP format.
* @keys: The keys to display.
*
* This function takes a list of OpenPGP public keys and displays a
* machine readable list of them.
*/
int mrkey_index(struct openpgp_publickey *keys)
{
struct openpgp_signedpacket_list *curuid = NULL;
time_t created_time = 0;
int type = 0;
int length = 0;
int i = 0;
int c;
uint64_t keyid;
struct openpgp_fingerprint fingerprint;
while (keys != NULL) {
created_time = (keys->publickey->data[1] << 24) +
(keys->publickey->data[2] << 16) +
(keys->publickey->data[3] << 8) +
keys->publickey->data[4];
printf("pub:");
switch (keys->publickey->data[0]) {
case 2:
case 3:
if (get_keyid(keys, &keyid) != ONAK_E_OK) {
logthing(LOGTHING_ERROR, "Couldn't get keyid");
}
printf("%016" PRIX64, keyid);
type = keys->publickey->data[7];
break;
case 4:
case 5:
(void) get_fingerprint(keys->publickey, &fingerprint);
for (i = 0; i < fingerprint.length; i++) {
printf("%02X", fingerprint.fp[i]);
}
type = keys->publickey->data[5];
break;
default:
logthing(LOGTHING_ERROR, "Unknown key version: %d",
keys->publickey->data[0]);
}
length = keylength(keys->publickey);
printf(":%d:%d:%ld::%s\n",
type,
length,
created_time,
(keys->revoked) ? "r" : "");
for (curuid = keys->uids; curuid != NULL;
curuid = curuid->next) {
if (curuid->packet->tag == OPENPGP_PACKET_UID) {
printf("uid:");
for (i = 0; i < (int) curuid->packet->length;
i++) {
c = curuid->packet->data[i];
if (c == '%') {
putchar('%');
putchar(c);
} else if (c == ':' || c > 127) {
printf("%%%X", c);
} else {
putchar(c);
}
}
printf("\n");
}
}
keys = keys->next;
}
return 0;
}
|