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 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
|
/* -*-mode:c; c-style:k&r; c-basic-offset:4; -*- */
/*
* Balsa E-Mail Client
*
* gpgme key related widgets and display functions
* Copyright (C) 2017 Albrecht Dreß <albrecht.dress@arcor.de>
*
* 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; either version 2, or (at your option)
* any later version.
*
* 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 "libbalsa-gpgme-widgets.h"
#include <string.h>
#include <glib/gi18n.h>
#include "geometry-manager.h"
#include "x509-cert-widget.h"
#include "rfc3156.h"
#ifdef G_LOG_DOMAIN
# undef G_LOG_DOMAIN
#endif
#define G_LOG_DOMAIN "crypto"
#define BULLET_STR "\302\240\342\200\242\302\240"
static gchar *create_status_str(gboolean revoked,
gboolean expired,
gboolean disabled,
gboolean invalid)
G_GNUC_WARN_UNUSED_RESULT;
static gchar *create_uid_str(const gpgme_user_id_t uid,
gboolean *warn)
G_GNUC_WARN_UNUSED_RESULT;
static GtkWidget *create_key_dialog(GtkWindow *parent,
GtkButtonsType buttons,
GtkWidget *keys_widget,
const gchar *message1,
const gchar *message2)
G_GNUC_WARN_UNUSED_RESULT;
static gint create_key_grid_row(GtkGrid *grid,
gint row,
const gchar *key,
const gchar *value,
gboolean warn);
static GtkWidget *create_key_uid_widget(const gpgme_user_id_t uid)
G_GNUC_WARN_UNUSED_RESULT;
static GtkWidget *create_key_label_with_warn(const gchar *text,
gboolean warn)
G_GNUC_WARN_UNUSED_RESULT;
static GtkWidget *create_subkey_widget(gpgme_subkey_t subkey)
G_GNUC_WARN_UNUSED_RESULT;
static gchar *create_purpose_str(gboolean can_sign,
gboolean can_encrypt,
gboolean can_certify,
gboolean can_auth)
G_GNUC_WARN_UNUSED_RESULT;
static gchar *create_subkey_type_str(gpgme_subkey_t subkey)
G_GNUC_WARN_UNUSED_RESULT;
static void smime_show_chain(GtkWidget *button,
gpointer G_GNUC_UNUSED user_data);
/* documentation: see header file */
GtkWidget *
libbalsa_gpgme_key(const gpgme_key_t key,
const gchar *fingerprint,
lb_gpg_subkey_capa_t subkey_capa,
gboolean expanded)
{
GtkWidget *key_data;
gchar *status_str;
gchar *uid_readable;
gint row = 0;
g_return_val_if_fail(key != NULL, NULL);
key_data = gtk_grid_new();
gtk_grid_set_row_spacing(GTK_GRID(key_data), 2);
gtk_grid_set_column_spacing(GTK_GRID(key_data), HIG_PADDING);
/* print a warning for a bad key status */
status_str = create_status_str(key->expired != 0U, key->revoked != 0U, key->disabled != 0U, key->invalid != 0U);
if (strlen(status_str) > 0U) {
row = create_key_grid_row(GTK_GRID(key_data), row, _("Key status:"), status_str, TRUE);
}
g_free(status_str);
/* primary User ID */
if (key->uids == NULL) {
row = create_key_grid_row(GTK_GRID(key_data), row, _("User ID:"), _("None"), FALSE);
} else {
GtkWidget *label;
if (key->uids->next != NULL) {
label = gtk_label_new(_("Primary user ID:"));
} else {
label = gtk_label_new(_("User ID:"));
}
gtk_widget_set_halign(label, GTK_ALIGN_START);
gtk_label_set_yalign(GTK_LABEL(label), 0.0F);
gtk_grid_attach(GTK_GRID(key_data), label, 0, row, 1, 1);
gtk_grid_attach(GTK_GRID(key_data), create_key_uid_widget(key->uids), 1, row++, 1, 1);
}
/* owner trust is valid for OpenPGP only */
if (key->protocol == GPGME_PROTOCOL_OpenPGP) {
row = create_key_grid_row(GTK_GRID(key_data), row, _("Key owner trust:"),
libbalsa_gpgme_validity_to_gchar_short(key->owner_trust), FALSE);
}
/* add additional UID's (if any) */
if ((key->uids != NULL) && (key->uids->next != NULL)) {
GtkWidget *uid_expander;
GtkWidget *uid_box;
gpgme_user_id_t uid;
uid_expander = gtk_expander_new(_("Additional User IDs"));
gtk_expander_set_expanded(GTK_EXPANDER(uid_expander), expanded);
gtk_grid_attach(GTK_GRID(key_data), uid_expander, 0, row++, 2, 1);
uid_box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 2);
gtk_widget_set_margin_start(uid_box, 2 * HIG_PADDING);
gtk_container_add(GTK_CONTAINER(uid_expander), uid_box);
for (uid = key->uids->next; uid != NULL; uid = uid->next) {
gtk_container_add(GTK_CONTAINER(uid_box), create_key_uid_widget(uid));
}
}
/* add the issuer information for CMS only */
if (key->protocol == GPGME_PROTOCOL_CMS) {
GtkWidget *issuer_expander;
GtkWidget *issuer_grid;
gint issuer_row = 0;
issuer_expander = gtk_expander_new(_("Issuer"));
gtk_expander_set_expanded(GTK_EXPANDER(issuer_expander), expanded);
gtk_grid_attach(GTK_GRID(key_data), issuer_expander, 0, row++, 2, 1);
issuer_grid = gtk_grid_new();
gtk_widget_set_margin_start(issuer_grid, 2 * HIG_PADDING);
gtk_grid_set_column_spacing(GTK_GRID(issuer_grid), HIG_PADDING);
gtk_container_add(GTK_CONTAINER(issuer_expander), issuer_grid);
if (key->issuer_name != NULL) {
uid_readable = libbalsa_cert_subject_readable(key->issuer_name);
issuer_row = create_key_grid_row(GTK_GRID(issuer_grid), issuer_row, _("Name:"), uid_readable, FALSE);
g_free(uid_readable);
}
if (key->issuer_serial != NULL) {
issuer_row = create_key_grid_row(GTK_GRID(issuer_grid), issuer_row, _("Serial number:"), key->issuer_serial, FALSE);
}
if (key->chain_id != NULL) {
GtkWidget *chain_btn;
gchar *chain_fpr;
/* Translators: x509 certificate chain ID */
issuer_row = create_key_grid_row(GTK_GRID(issuer_grid), issuer_row, _("Chain ID:"), key->chain_id, FALSE);
/* add button to show the full chain - copy the fingerprint as the key may be unref'ed... */
chain_btn = gtk_button_new_with_label(_("view certificate chain…"));
if (fingerprint != NULL) {
chain_fpr = g_strdup(fingerprint);
} else {
chain_fpr = (key->subkeys != NULL) ? g_strdup(key->subkeys->fpr) : NULL;
}
g_object_set_data_full(G_OBJECT(chain_btn), "certid", chain_fpr, g_free);
g_signal_connect(chain_btn, "clicked", G_CALLBACK(smime_show_chain), NULL);
gtk_grid_attach(GTK_GRID(issuer_grid), chain_btn, 0, issuer_row, 2, 1);
}
}
/* subkey information */
if (((fingerprint != NULL) || (subkey_capa != 0U)) && (key->subkeys != NULL)) {
GtkWidget *subkey_expander;
GtkWidget *subkey_box;
gpgme_subkey_t subkey;
size_t fingerprint_len = 0U; /* assignment makes gcc happy */
if (fingerprint != NULL) {
subkey_expander = gtk_expander_new(_("Subkey used"));
fingerprint_len = strlen(fingerprint);
} else if (subkey_capa != GPG_SUBKEY_CAP_ALL) {
gchar *capa_str;
gchar *label_str;
/* indicate that we show only subkeys with certain capabilities */
capa_str = create_purpose_str((subkey_capa & GPG_SUBKEY_CAP_SIGN) != 0U, (subkey_capa & GPG_SUBKEY_CAP_ENCRYPT) != 0U,
(subkey_capa & GPG_SUBKEY_CAP_CERTIFY) != 0U, (subkey_capa & GPG_SUBKEY_CAP_AUTH) != 0U);
/* Translators: #1 subkey capabilities string */
label_str = g_strdup_printf(_("Subkeys (%s only)"), capa_str);
subkey_expander = gtk_expander_new(label_str);
g_free(label_str);
g_free(capa_str);
} else {
subkey_expander = gtk_expander_new(_("Subkeys"));
}
gtk_expander_set_expanded(GTK_EXPANDER(subkey_expander), expanded);
gtk_grid_attach(GTK_GRID(key_data), subkey_expander, 0, row++, 2, 1);
subkey_box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 2);
gtk_widget_set_margin_start(subkey_box, 2 * HIG_PADDING);
gtk_container_add(GTK_CONTAINER(subkey_expander), subkey_box);
for (subkey = key->subkeys; subkey != NULL; subkey = subkey->next) {
if (fingerprint != NULL) {
size_t offs;
/* if the signature is invalid, the fingerprint only the end of the subkey's fingerprint */
offs = strlen(subkey->fpr) - fingerprint_len;
if (strcmp(fingerprint, &subkey->fpr[offs]) == 0) {
GtkWidget *subkey_widget = create_subkey_widget(subkey);
libbalsa_set_vmargins(subkey_widget, 2);
gtk_container_add(GTK_CONTAINER(subkey_box), subkey_widget);
}
} else if ((((subkey_capa & GPG_SUBKEY_CAP_SIGN) != 0U) && (subkey->can_sign != 0)) ||
(((subkey_capa & GPG_SUBKEY_CAP_ENCRYPT) != 0U) && (subkey->can_encrypt != 0)) ||
(((subkey_capa & GPG_SUBKEY_CAP_CERTIFY) != 0U) && (subkey->can_certify != 0)) ||
(((subkey_capa & GPG_SUBKEY_CAP_AUTH) != 0U) && (subkey->can_authenticate != 0))) {
GtkWidget *subkey_widget = create_subkey_widget(subkey);
libbalsa_set_vmargins(subkey_widget, 2);
gtk_container_add(GTK_CONTAINER(subkey_box), subkey_widget);
} else {
/* do not print this subkey */
}
}
}
return key_data;
}
/* documentation: see header file */
gchar *
libbalsa_gpgme_key_to_gchar(gpgme_key_t key,
const gchar *fingerprint)
{
GString *result;
gchar *status_str;
g_return_val_if_fail((key != NULL) && (fingerprint != NULL), NULL);
result = g_string_new(NULL);
/* print a warning for a bad key status */
status_str = create_status_str(key->expired != 0U, key->revoked != 0U, key->disabled != 0U, key->invalid != 0U);
if (strlen(status_str) > 0U) {
g_string_append_printf(result, "%s %s\n", _("Key status:"), status_str);
}
g_free(status_str);
/* primary User ID */
if (key->uids == NULL) {
g_string_append_printf(result, "%s %s", _("User ID:"), _("None"));
} else {
gchar *uid_str;
uid_str = create_uid_str(key->uids, NULL);
if (key->uids->next != NULL) {
g_string_append_printf(result, "%s %s", _("Primary user ID:"), uid_str);
} else {
g_string_append_printf(result, "%s %s", _("User ID:"), uid_str);
}
g_free(uid_str);
}
/* owner trust is valid for OpenPGP only */
if (key->protocol == GPGME_PROTOCOL_OpenPGP) {
g_string_append_printf(result, "\n%s %s", _("Key owner trust:"), libbalsa_gpgme_validity_to_gchar_short(key->owner_trust));
}
/* add additional UID's (if any) */
if ((key->uids != NULL) && (key->uids->next != NULL)) {
gpgme_user_id_t uid;
g_string_append_printf(result, "\n%s", _("Additional User IDs"));
for (uid = key->uids->next; uid != NULL; uid = uid->next) {
gchar *uid_str;
uid_str = create_uid_str(uid, NULL);
g_string_append_printf(result, "\n" BULLET_STR "%s", uid_str);
g_free(uid_str);
}
}
/* add the issuer information for CMS only */
if (key->protocol == GPGME_PROTOCOL_CMS) {
g_string_append_printf(result, "\n%s", _("Issuer"));
if (key->issuer_name != NULL) {
gchar *issuer_readable;
issuer_readable = libbalsa_cert_subject_readable(key->issuer_name);
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Name:"), issuer_readable);
g_free(issuer_readable);
}
if (key->issuer_serial != NULL) {
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Serial number:"), key->issuer_serial);
}
if (key->chain_id != NULL) {
/* Translators: x509 certificate chain ID */
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Chain ID:"), key->chain_id);
}
}
/* subkey information */
if (key->subkeys != NULL) {
gpgme_subkey_t subkey;
size_t fingerprint_len;
g_string_append_printf(result, "\n%s", _("Subkey used"));
fingerprint_len = strlen(fingerprint);
for (subkey = key->subkeys; subkey != NULL; subkey = subkey->next) {
size_t offs;
/* if the signature is invalid, the fingerprint only the end of the subkey's fingerprint */
offs = strlen(subkey->fpr) - fingerprint_len;
if (strcmp(fingerprint, &subkey->fpr[offs]) == 0) {
gchar *details_str;
gchar *timebuf;
details_str = create_status_str(subkey->expired != 0U, subkey->revoked != 0U, subkey->disabled != 0U,
subkey->invalid != 0U);
if (strlen(details_str) > 0U) {
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Status:"), details_str);
}
g_free(details_str);
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Fingerprint:"), subkey->fpr);
details_str = create_subkey_type_str(subkey);
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Type:"), details_str);
g_free(details_str);
details_str = create_purpose_str(subkey->can_sign != 0U, subkey->can_encrypt != 0, subkey->can_certify != 0U,
subkey->can_authenticate != 0U);
if (strlen(details_str) > 0U) {
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Capabilities:"), details_str);
}
g_free(details_str);
if (subkey->timestamp == -1) {
timebuf = g_strdup(_("invalid timestamp"));
} else if (subkey->timestamp == 0) {
timebuf = g_strdup(_("not available"));
} else {
timebuf = libbalsa_date_to_utf8(subkey->timestamp, "%x %X");
}
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Created:"), timebuf);
g_free(timebuf);
if (subkey->expires == 0) {
timebuf = g_strdup(_("never"));
} else {
timebuf = libbalsa_date_to_utf8(subkey->expires, "%x %X");
}
g_string_append_printf(result, "\n" BULLET_STR "%s %s", _("Expires:"), timebuf);
g_free(timebuf);
}
}
}
return g_string_free(result, FALSE);
}
/* documentation: see header file */
GtkWidget *
libbalsa_key_dialog(GtkWindow *parent,
GtkButtonsType buttons,
gpgme_key_t key,
lb_gpg_subkey_capa_t subkey_capa,
const gchar *message1,
const gchar *message2)
{
GtkWidget *key_data;
g_return_val_if_fail(key != NULL, NULL);
key_data = libbalsa_gpgme_key(key, NULL, subkey_capa, TRUE);
return create_key_dialog(parent, buttons, key_data, message1, message2);
}
/* documentation: see header file */
GtkWidget *
libbalsa_key_list_dialog(GtkWindow *parent,
GtkButtonsType buttons,
GList *key_list,
lb_gpg_subkey_capa_t subkey_capa,
const gchar *message1,
const gchar *message2)
{
GtkWidget *vbox;
GtkWidget *key_data;
g_return_val_if_fail(key_list != NULL, NULL);
vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, HIG_PADDING);
key_data = libbalsa_gpgme_key((gpgme_key_t) (key_list->data), NULL, subkey_capa, TRUE);
gtk_container_add(GTK_CONTAINER(vbox), key_data);
for (key_list = key_list->next; key_list != NULL; key_list = key_list->next) {
gtk_container_add(GTK_CONTAINER(vbox), gtk_separator_new(GTK_ORIENTATION_HORIZONTAL));
key_data = libbalsa_gpgme_key((gpgme_key_t) (key_list->data), NULL, subkey_capa, TRUE);
gtk_container_add(GTK_CONTAINER(vbox), key_data);
}
gtk_widget_show_all(vbox);
return create_key_dialog(parent, buttons, vbox, message1, message2);
}
/* ---- local stuff ---------------------------------------------------- */
/** \brief Create a status string for an item
*
* \param revoked TRUE if the item is revoked
* \param expired TRUE if the item is expired
* \param disabled TRUE if the item is disabled
* \param invalid TRUE if the item is invalid
* \return a human-readable string containing the states which may be empty
*
* \todo Add the is_qualified ([sub]key can be used for qualified signatures according to local government regulations) flag?
*/
static gchar *
create_status_str(gboolean revoked,
gboolean expired,
gboolean disabled,
gboolean invalid)
{
GString *status;
status = g_string_new(NULL);
if (revoked) {
status = g_string_append(status, _("revoked"));
}
if (expired) {
g_string_append_printf(status, "%s%s", (status->len > 0U) ? ", " : "", _("expired"));
}
if (disabled) {
g_string_append_printf(status, "%s%s", (status->len > 0U) ? ", " : "", _("disabled"));
}
if (invalid) {
g_string_append_printf(status, "%s%s", (status->len > 0U) ? ", " : "", _("invalid"));
}
return g_string_free(status, FALSE);
}
/** \brief Create a UID string
*
* \param uid UID
* \param warn filled with TRUE if the UID is revoked or invalid
* \return a newly allocated string containing the UID string
*
* Create a string containing the passed UID subject. If the UID is revoked or invalid, the status information is added in '(…)'.
*
* \todo Do we want to add more details from the gpgme_user_id_t data?
*/
static gchar *
create_uid_str(const gpgme_user_id_t uid, gboolean *warn)
{
gchar *uid_readable;
gchar *uid_status;
gchar *result;
gboolean do_warn;
uid_readable = libbalsa_cert_subject_readable(uid->uid);
uid_status = create_status_str(uid->revoked != 0U, FALSE, FALSE, uid->invalid != 0U);
if (uid_status[0] != '\0') {
result = g_strdup_printf("%s (%s)", uid_readable, uid_status);
g_free(uid_readable);
do_warn = TRUE;
} else {
result = uid_readable;
do_warn = FALSE;
}
g_free(uid_status);
if (warn != NULL) {
*warn = do_warn;
}
return result;
}
/** \brief Create a key message dialogue
*
* \param parent transient parent window, may be NULL
* \param buttons set of buttons to use (currently only GTK_BUTTONS_CLOSE and GTK_BUTTONS_YES_NO are implemented)
* \param keys_widget widget containing the data of one or more keys
* \param message1 primary message, printed centred in bold and a little larger, may be NULL to omit
* \param message2 secondary message, printed start-aligned id normal font, may be NULL to omit
* \return the new dialogue
*
* Create a new dialogue, similar to e.g. gtk_message_dialog_new().
*/
static GtkWidget *
create_key_dialog(GtkWindow *parent,
GtkButtonsType buttons,
GtkWidget *keys_widget,
const gchar *message1,
const gchar *message2)
{
GtkWidget *dialog;
GtkWidget *hbox;
GtkWidget *icon;
GtkWidget *vbox;
GtkWidget *label;
GtkWidget *scrolledw;
switch (buttons) {
case GTK_BUTTONS_CLOSE:
dialog = gtk_dialog_new_with_buttons(NULL, parent, GTK_DIALOG_DESTROY_WITH_PARENT | libbalsa_dialog_flags(),
_("Close"), GTK_RESPONSE_CLOSE, NULL);
break;
case GTK_BUTTONS_YES_NO:
dialog = gtk_dialog_new_with_buttons(NULL, parent, GTK_DIALOG_DESTROY_WITH_PARENT | libbalsa_dialog_flags(),
_("No"), GTK_RESPONSE_NO, _("Yes"), GTK_RESPONSE_YES, NULL);
break;
default:
g_error("%s: buttons type %d not yet implemented", __func__, buttons);
}
geometry_manager_attach(GTK_WINDOW(dialog), "KeyDialog");
hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 2 * HIG_PADDING);
gtk_container_set_border_width(GTK_CONTAINER(hbox), HIG_PADDING);
gtk_widget_set_vexpand(hbox, TRUE);
gtk_widget_set_valign(hbox, GTK_ALIGN_FILL);
gtk_container_add(GTK_CONTAINER(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), hbox);
gtk_box_set_homogeneous(GTK_BOX(hbox), FALSE);
/* standard key icon; "application-certificate" would be an alternative... */
icon = gtk_image_new_from_icon_name("dialog-password", GTK_ICON_SIZE_DIALOG);
gtk_container_add(GTK_CONTAINER(hbox), icon);
gtk_widget_set_valign(icon, GTK_ALIGN_START);
vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, HIG_PADDING);
gtk_widget_set_hexpand(vbox, TRUE);
gtk_widget_set_halign(vbox, GTK_ALIGN_FILL);
gtk_container_add(GTK_CONTAINER(hbox), vbox);
gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
if (message1 != NULL) {
char *markup;
label = gtk_label_new(NULL);
markup = g_markup_printf_escaped("<b><big>%s</big></b>", message1);
gtk_label_set_markup(GTK_LABEL(label), markup);
g_free(markup);
gtk_container_add(GTK_CONTAINER(vbox), label);
}
if (message2 != NULL) {
label = libbalsa_create_wrap_label(message2, FALSE);
gtk_container_add(GTK_CONTAINER(vbox), label);
}
scrolledw = gtk_scrolled_window_new(NULL, NULL);
gtk_widget_set_vexpand(scrolledw, TRUE);
gtk_widget_set_valign(scrolledw, GTK_ALIGN_FILL);
libbalsa_set_vmargins(scrolledw, HIG_PADDING);
gtk_container_add(GTK_CONTAINER(vbox), scrolledw);
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
gtk_scrolled_window_set_min_content_height(GTK_SCROLLED_WINDOW(scrolledw), 120);
gtk_container_add(GTK_CONTAINER(scrolledw), keys_widget);
gtk_widget_show_all(hbox);
return dialog;
}
/** \brief Add a grid row
*
* \param grid target grid
* \param row grid row index
* \param key key string in the 1st grid column
* \param value value string in the 2nd grid column
* \param warn prepend a warning icon and print \em value in red if TRUE
* \return the next grid row index
*/
static gint
create_key_grid_row(GtkGrid *grid,
gint row,
const gchar *key,
const gchar *value,
gboolean warn)
{
GtkWidget *label;
label = gtk_label_new(key);
gtk_widget_set_halign(label, GTK_ALIGN_START);
gtk_label_set_yalign(GTK_LABEL(label), 0.0F);
gtk_grid_attach(GTK_GRID(grid), label, 0, row, 1, 1);
label = create_key_label_with_warn(value, warn);
gtk_widget_set_halign(label, GTK_ALIGN_START);
gtk_widget_set_hexpand(label, TRUE);
gtk_grid_attach(GTK_GRID(grid), label, 1, row, 1, 1);
return row + 1;
}
/** \brief Create a key's UID widget
*
* \param uid UID
* \return the uid widget
*
* Create a widget containing the passed UID subject. If the UID is revoked or invalid, a warning icon is prepended, and the
* status information is added.
*
* \sa create_uid_str()
*
* \todo We might want to show the TOFU data (requires gpgme >= 1.7.0, and GPGME_KEYLIST_MODE_WITH_TOFU in key listing options).
* Maybe also add an expander?
*/
static GtkWidget *
create_key_uid_widget(const gpgme_user_id_t uid)
{
gchar *buf;
gboolean warn;
GtkWidget *result;
buf = create_uid_str(uid, &warn);
result = create_key_label_with_warn(buf, warn);
g_free(buf);
return result;
}
/** \brief Create a label with warning information
*
* \param text label text
* \param warn TRUE if a visible warning shall be included
* \return the widget
*
* If \em warn is FALSE, the returned item is simply a GtkLabel. Otherwise, it is a box, containing the label printed in red, with
* a warning icon prepended. In both cases, the label is start-justified, selectable and line-wrappable.
*/
static GtkWidget *
create_key_label_with_warn(const gchar *text,
gboolean warn)
{
GtkWidget *result;
if (warn) {
GtkWidget *icon;
GtkWidget *label;
gchar *buf;
result = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, HIG_PADDING);
icon = gtk_image_new_from_icon_name("dialog-warning", GTK_ICON_SIZE_MENU);
gtk_container_add(GTK_CONTAINER(result), icon);
buf = g_markup_printf_escaped("<span fgcolor=\"red\">%s</span>", text);
label = libbalsa_create_wrap_label(buf, TRUE);
g_free(buf);
gtk_label_set_selectable(GTK_LABEL(label), TRUE);
gtk_widget_set_hexpand(label, TRUE);
gtk_widget_set_halign(label, GTK_ALIGN_FILL);
gtk_container_add(GTK_CONTAINER(result), label);
} else {
result = libbalsa_create_wrap_label(text, FALSE);
gtk_widget_set_hexpand(result, TRUE);
gtk_label_set_selectable(GTK_LABEL(result), TRUE);
}
return result;
}
/** \brief Create a widget with subkey information
*
* \param subkey the subkey which shall be added
* \return a nes GtkGrid containing the subkey information
*
* \note Time stamps are formatted using "%x %X" (preferred locale's date and time format), so we can avoid passing Balsa's
* user-defined format string down here. We might want to change this.
*/
static GtkWidget *
create_subkey_widget(gpgme_subkey_t subkey)
{
GtkWidget *subkey_grid;
gint subkey_row = 0;
gchar *details_str;
gchar *timebuf;
subkey_grid = gtk_grid_new();
gtk_grid_set_column_spacing(GTK_GRID(subkey_grid), HIG_PADDING);
libbalsa_set_vmargins(subkey_grid, 2);
/* print a warning for a bad subkey status */
details_str = create_status_str(subkey->expired != 0U, subkey->revoked != 0U, subkey->disabled != 0U, subkey->invalid != 0U);
if (strlen(details_str) > 0U) {
subkey_row = create_key_grid_row(GTK_GRID(subkey_grid), subkey_row, _("Status:"), details_str, TRUE);
}
g_free(details_str);
subkey_row = create_key_grid_row(GTK_GRID(subkey_grid), subkey_row, _("Fingerprint:"), subkey->fpr, FALSE);
details_str = create_subkey_type_str(subkey);
subkey_row = create_key_grid_row(GTK_GRID(subkey_grid), subkey_row, _("Type:"), details_str, FALSE);
g_free(details_str);
details_str = create_purpose_str(subkey->can_sign != 0U, subkey->can_encrypt != 0, subkey->can_certify != 0U,
subkey->can_authenticate != 0U);
if (strlen(details_str) > 0U) {
subkey_row = create_key_grid_row(GTK_GRID(subkey_grid), subkey_row, _("Capabilities:"), details_str, FALSE);
}
g_free(details_str);
if (subkey->timestamp == -1) {
timebuf = g_strdup(_("invalid timestamp"));
} else if (subkey->timestamp == 0) {
timebuf = g_strdup(_("not available"));
} else {
timebuf = libbalsa_date_to_utf8(subkey->timestamp, "%x %X");
}
subkey_row = create_key_grid_row(GTK_GRID(subkey_grid), subkey_row, _("Created:"), timebuf, FALSE);
g_free(timebuf);
if (subkey->expires == 0) {
timebuf = g_strdup(_("never"));
} else {
timebuf = libbalsa_date_to_utf8(subkey->expires, "%x %X");
}
(void) create_key_grid_row(GTK_GRID(subkey_grid), subkey_row, _("Expires:"), timebuf, FALSE);
g_free(timebuf);
return subkey_grid;
}
/** \brief Create a subkey purpose string
*
* \param can_sign indicates that the subkey can be used to create data signatures
* \param can_encrypt indicates that the subkey can be used for encryption
* \param can_certify indicates that the subkey can be used to create key certificates
* \param can_auth indicates that the subkey can be used for authentication
* \return a string indicating whether a subkey can be used for signing, encryption, certification or authentication
*
* \todo Add the is_qualified (subkey can be used for qualified signatures according to local government regulations) and is_de_vs
* (complies with the rules for classified information in Germany at the restricted level, VS-NfD, requires gpgme >= 1.9.0)
* flags?
*/
static gchar *
create_purpose_str(gboolean can_sign,
gboolean can_encrypt,
gboolean can_certify,
gboolean can_auth)
{
GString *purpose;
purpose = g_string_new(NULL);
if (can_sign) {
purpose = g_string_append(purpose, _("sign"));
}
if (can_encrypt) {
g_string_append_printf(purpose, "%s%s", (purpose->len > 0U) ? ", " : "", _("encrypt"));
}
if (can_certify) {
g_string_append_printf(purpose, "%s%s", (purpose->len > 0U) ? ", " : "", _("certify"));
}
if (can_auth) {
g_string_append_printf(purpose, "%s%s", (purpose->len > 0U) ? ", " : "", _("authenticate"));
}
return g_string_free(purpose, FALSE);
}
/** \brief Create a subkey type string
*
* \param subkey the subkey
* \return a newly allocated string containing a human-readable description of the subkey type
*
* Create a string containing the length of the subkey in bits, the public key algorithm supported by it and for ECC algorithms the
* name of the curve.
*/
static gchar *
create_subkey_type_str(gpgme_subkey_t subkey)
{
GString *type_str;
const gchar *algo;
type_str = g_string_new(NULL);
g_string_append_printf(type_str, ngettext("%u bit", "%u bits", subkey->length), subkey->length);
algo = gpgme_pubkey_algo_name(subkey->pubkey_algo);
if (algo != NULL) {
g_string_append_printf(type_str, " %s", algo);
}
if (subkey->curve != NULL) {
/* Translators: Elliptic Curve Cryptography (ECC) curve name */
g_string_append_printf(type_str, _(" curve “%s”"), subkey->curve);
}
return g_string_free(type_str, FALSE);
}
/** \brief Show the S/MIME certificate chain
*
* \param button button triggering the dialogue
* \param user_data callback user data, unused
*
* Show a modal dialogue with the certification chain of the certificate identified by the fingerprint attached as "certid" to
* the passed button.
*/
static void
smime_show_chain(GtkWidget *button, gpointer G_GNUC_UNUSED user_data)
{
GtkWidget *vbox;
GtkWidget *dialog;
GtkWidget *chain;
dialog = gtk_dialog_new_with_buttons("Certificate Chain",
GTK_WINDOW(gtk_widget_get_toplevel(button)),
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | libbalsa_dialog_flags(),
_("_Close"), GTK_RESPONSE_CLOSE, NULL);
geometry_manager_attach(GTK_WINDOW(dialog), "CertChain");
chain = x509_cert_chain_smime(g_object_get_data(G_OBJECT(button), "certid"));
vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
gtk_widget_set_vexpand(chain, TRUE);
gtk_widget_set_valign(chain, GTK_ALIGN_FILL);
libbalsa_set_vmargins(chain, HIG_PADDING);
gtk_container_add(GTK_CONTAINER(vbox), chain);
g_signal_connect(dialog, "response",
G_CALLBACK(gtk_widget_destroy), NULL);
gtk_widget_show_all(dialog);
}
|