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 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
|
/* -*- c++ -*-
keyresolver.cpp
This file is part of libkleopatra, the KDE keymanagement library
Copyright (c) 2004 Klarälvdalens Datakonsult AB
Based on kpgp.cpp
Copyright (C) 2001,2002 the KPGP authors
See file libkdenetwork/AUTHORS.kpgp for details
Libkleopatra 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 of the
License, or (at your option) any later version.
Libkleopatra 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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include "keyresolver.h"
#include "job/savecontactpreferencejob.h"
#ifndef QT_NO_CURSOR
#include "messageviewer/utils/kcursorsaver.h"
#endif
#include "kleo_util.h"
#include <kpimutils/email.h>
#include "libkleo/ui/keyselectiondialog.h"
#include "kleo/cryptobackendfactory.h"
#include "kleo/keylistjob.h"
#include "kleo/dn.h"
#include <gpgme++/key.h>
#include <gpgme++/keylistresult.h>
#include <akonadi/collectiondialog.h>
#include <akonadi/contact/contactsearchjob.h>
#include <akonadi/itemcreatejob.h>
#include <akonadi/itemmodifyjob.h>
#include <klocale.h>
#include <kdebug.h>
#include <kinputdialog.h>
#include <kmessagebox.h>
#include <QStringList>
#include <QPointer>
#include <QTextDocument>
#include <algorithm>
#include <cassert>
#include <ctime>
#include <functional>
#include <iostream>
#include <iterator>
#include <map>
#include <memory>
#include <set>
// this should go into stl_util.h, which has since moved into messageviewer.
// for lack of a better place put it in here for now.
namespace kdtools {
template <typename Iterator, typename UnaryPredicate>
bool any( Iterator first, Iterator last, UnaryPredicate p )
{
while ( first != last )
if ( p( *first ) )
return true;
else
++first;
return false;
}
} // namespace kdtools
//
// some predicates to be used in STL algorithms:
//
static inline bool EmptyKeyList( const Kleo::KeyApprovalDialog::Item & item ) {
return item.keys.empty();
}
static inline QString ItemDotAddress( const Kleo::KeyResolver::Item & item ) {
return item.address;
}
static inline bool ApprovalNeeded( const Kleo::KeyResolver::Item & item ) {
return item.pref == Kleo::UnknownPreference || item.pref == Kleo::NeverEncrypt || item.keys.empty() ;
}
static inline Kleo::KeyResolver::Item
CopyKeysAndEncryptionPreferences( const Kleo::KeyResolver::Item & oldItem,
const Kleo::KeyApprovalDialog::Item & newItem ) {
return Kleo::KeyResolver::Item( oldItem.address, newItem.keys, newItem.pref, oldItem.signPref, oldItem.format );
}
static inline bool ByKeyID( const GpgME::Key & left, const GpgME::Key & right ) {
return qstrcmp( left.keyID(), right.keyID() ) < 0 ;
}
static inline bool WithRespectToKeyID( const GpgME::Key & left, const GpgME::Key & right ) {
return qstrcmp( left.keyID(), right.keyID() ) == 0 ;
}
static bool ValidOpenPGPEncryptionKey( const GpgME::Key & key ) {
if ( key.protocol() != GpgME::OpenPGP ) {
return false;
}
if ( key.isRevoked() )
kWarning() << "is revoked";
if ( key.isExpired() )
kWarning() << "is expired";
if ( key.isDisabled() )
kWarning() << "is disabled";
if ( !key.canEncrypt() )
kWarning() << "can't encrypt";
if ( key.isRevoked() || key.isExpired() || key.isDisabled() || !key.canEncrypt() )
return false;
return true;
}
static bool ValidTrustedOpenPGPEncryptionKey( const GpgME::Key & key ) {
if ( !ValidOpenPGPEncryptionKey( key ) )
return false;
const std::vector<GpgME::UserID> uids = key.userIDs();
std::vector<GpgME::UserID>::const_iterator end( uids.end() );
for ( std::vector<GpgME::UserID>::const_iterator it = uids.begin() ; it != end ; ++it ) {
if ( !it->isRevoked() && it->validity() >= GpgME::UserID::Marginal )
return true;
else
if ( it->isRevoked() )
kWarning() <<"a userid is revoked";
else
kWarning() <<"bad validity" << int( it->validity() );
}
return false;
}
static bool ValidSMIMEEncryptionKey( const GpgME::Key & key ) {
if ( key.protocol() != GpgME::CMS )
return false;
if ( key.isRevoked() || key.isExpired() || key.isDisabled() || !key.canEncrypt() )
return false;
return true;
}
static bool ValidTrustedSMIMEEncryptionKey( const GpgME::Key & key ) {
if ( !ValidSMIMEEncryptionKey( key ) )
return false;
return true;
}
static inline bool ValidTrustedEncryptionKey( const GpgME::Key & key ) {
switch ( key.protocol() ) {
case GpgME::OpenPGP:
return ValidTrustedOpenPGPEncryptionKey( key );
case GpgME::CMS:
return ValidTrustedSMIMEEncryptionKey( key );
default:
return false;
}
}
static inline bool ValidEncryptionKey( const GpgME::Key & key ) {
switch ( key.protocol() ) {
case GpgME::OpenPGP:
return ValidOpenPGPEncryptionKey( key );
case GpgME::CMS:
return ValidSMIMEEncryptionKey( key );
default:
return false;
}
}
static inline bool ValidSigningKey( const GpgME::Key & key ) {
if ( key.isRevoked() || key.isExpired() || key.isDisabled() || !key.canSign() )
return false;
return key.hasSecret();
}
static inline bool ValidOpenPGPSigningKey( const GpgME::Key & key ) {
return key.protocol() == GpgME::OpenPGP && ValidSigningKey( key );
}
static inline bool ValidSMIMESigningKey( const GpgME::Key & key ) {
return key.protocol() == GpgME::CMS && ValidSigningKey( key );
}
static inline bool NotValidTrustedOpenPGPEncryptionKey( const GpgME::Key & key ) {
return !ValidTrustedOpenPGPEncryptionKey( key );
}
static inline bool NotValidOpenPGPEncryptionKey( const GpgME::Key & key ) {
return !ValidOpenPGPEncryptionKey( key );
}
static inline bool NotValidTrustedSMIMEEncryptionKey( const GpgME::Key & key ) {
return !ValidTrustedSMIMEEncryptionKey( key );
}
static inline bool NotValidSMIMEEncryptionKey( const GpgME::Key & key ) {
return !ValidSMIMEEncryptionKey( key );
}
static inline bool NotValidTrustedEncryptionKey( const GpgME::Key & key ) {
return !ValidTrustedEncryptionKey( key );
}
static inline bool NotValidEncryptionKey( const GpgME::Key & key ) {
return !ValidEncryptionKey( key );
}
static inline bool NotValidSigningKey( const GpgME::Key & key ) {
return !ValidSigningKey( key );
}
static inline bool NotValidOpenPGPSigningKey( const GpgME::Key & key ) {
return !ValidOpenPGPSigningKey( key );
}
static inline bool NotValidSMIMESigningKey( const GpgME::Key & key ) {
return !ValidSMIMESigningKey( key );
}
namespace {
struct ByTrustScore {
static int score( const GpgME::UserID & uid )
{
return uid.isRevoked() || uid.isInvalid() ? -1 : uid.validity() ;
}
bool operator()( const GpgME::UserID & lhs, const GpgME::UserID & rhs ) const
{
return score( lhs ) < score( rhs ) ;
}
};
}
static std::vector<GpgME::UserID> matchingUIDs( const std::vector<GpgME::UserID> & uids, const QString & address ) {
if ( address.isEmpty() )
return std::vector<GpgME::UserID>();
std::vector<GpgME::UserID> result;
result.reserve( uids.size() );
for ( std::vector<GpgME::UserID>::const_iterator it = uids.begin(), end = uids.end() ; it != end ; ++it )
// PENDING(marc) check DN for an EMAIL, too, in case of X.509 certs... :/
if ( const char * email = it->email() )
if ( *email && QString::fromUtf8( email ).simplified().toLower() == address )
result.push_back( *it );
return result;
}
static GpgME::UserID findBestMatchUID( const GpgME::Key & key, const QString & address ) {
const std::vector<GpgME::UserID> all = key.userIDs();
if ( all.empty() )
return GpgME::UserID();
const std::vector<GpgME::UserID> matching = matchingUIDs( all, address.toLower() );
const std::vector<GpgME::UserID> & v = matching.empty() ? all : matching ;
return *std::max_element( v.begin(), v.end(), ByTrustScore() );
}
static QStringList keysAsStrings( const std::vector<GpgME::Key>& keys ) {
QStringList strings;
for ( std::vector<GpgME::Key>::const_iterator it = keys.begin() ; it != keys.end() ; ++it ) {
assert( !(*it).userID(0).isNull() );
QString keyLabel = QString::fromUtf8( (*it).userID(0).email() );
if ( keyLabel.isEmpty() )
keyLabel = QString::fromUtf8( (*it).userID(0).name() );
if ( keyLabel.isEmpty() )
keyLabel = QString::fromUtf8( (*it).userID(0).id() );
strings.append( keyLabel );
}
return strings;
}
static std::vector<GpgME::Key> trustedOrConfirmed( const std::vector<GpgME::Key> & keys, const QString & address, bool & canceled ) {
// PENDING(marc) work on UserIDs here?
std::vector<GpgME::Key> fishies;
std::vector<GpgME::Key> ickies;
std::vector<GpgME::Key> rewookies;
std::vector<GpgME::Key>::const_iterator it = keys.begin();
const std::vector<GpgME::Key>::const_iterator end = keys.end();
for ( ; it != end ; ++it ) {
const GpgME::Key & key = *it;
assert( ValidEncryptionKey( key ) );
const GpgME::UserID uid = findBestMatchUID( key, address );
if ( uid.isRevoked() ) {
rewookies.push_back( key );
}
if ( !uid.isRevoked() && uid.validity() == GpgME::UserID::Marginal ) {
fishies.push_back( key );
}
if ( !uid.isRevoked() && uid.validity() < GpgME::UserID::Never ) {
ickies.push_back( key );
}
}
if ( fishies.empty() && ickies.empty() && rewookies.empty() )
return keys;
// if some keys are not fully trusted, let the user confirm their use
QString msg = address.isEmpty()
? i18n("One or more of your configured OpenPGP encryption "
"keys or S/MIME certificates is not fully trusted "
"for encryption.")
: i18n("One or more of the OpenPGP encryption keys or S/MIME "
"certificates for recipient \"%1\" is not fully trusted "
"for encryption.", address) ;
if ( !fishies.empty() ) {
// certificates can't have marginal trust
msg += i18n( "\nThe following keys are only marginally trusted: \n");
msg += keysAsStrings( fishies ).join( QLatin1String(",") );
}
if ( !ickies.empty() ) {
msg += i18n( "\nThe following keys or certificates have unknown trust level: \n");
msg += keysAsStrings( ickies ).join( QLatin1String(",") );
}
if ( !rewookies.empty() ) {
msg += i18n( "\nThe following keys or certificates are <b>revoked</b>: \n");
msg += keysAsStrings( rewookies ).join( QLatin1String(",") );
}
if( KMessageBox::warningContinueCancel( 0, msg, i18n("Not Fully Trusted Encryption Keys"),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String("not fully trusted encryption key warning") )
== KMessageBox::Continue )
return keys;
else
canceled = true;
return std::vector<GpgME::Key>();
}
namespace {
struct IsNotForFormat : public std::unary_function<GpgME::Key,bool> {
IsNotForFormat( Kleo::CryptoMessageFormat f ) : format( f ) {}
bool operator()( const GpgME::Key & key ) const {
return
( isOpenPGP( format ) && key.protocol() != GpgME::OpenPGP ) ||
( isSMIME( format ) && key.protocol() != GpgME::CMS );
}
const Kleo::CryptoMessageFormat format;
};
struct IsForFormat : std::unary_function<GpgME::Key,bool> {
explicit IsForFormat( Kleo::CryptoMessageFormat f )
: protocol( isOpenPGP( f ) ? GpgME::OpenPGP :
isSMIME( f ) ? GpgME::CMS :
GpgME::UnknownProtocol ) {}
bool operator()( const GpgME::Key & key ) const {
return key.protocol() == protocol;
}
const GpgME::Protocol protocol;
};
}
class Kleo::KeyResolver::SigningPreferenceCounter : public std::unary_function<Kleo::KeyResolver::Item,void> {
public:
SigningPreferenceCounter()
: mTotal( 0 ),
mUnknownSigningPreference( 0 ),
mNeverSign( 0 ),
mAlwaysSign( 0 ),
mAlwaysSignIfPossible( 0 ),
mAlwaysAskForSigning( 0 ),
mAskSigningWheneverPossible( 0 )
{
}
void operator()( const Kleo::KeyResolver::Item & item );
#define make_int_accessor(x) unsigned int num##x() const { return m##x; }
make_int_accessor(UnknownSigningPreference)
make_int_accessor(NeverSign)
make_int_accessor(AlwaysSign)
make_int_accessor(AlwaysSignIfPossible)
make_int_accessor(AlwaysAskForSigning)
make_int_accessor(AskSigningWheneverPossible)
make_int_accessor(Total)
#undef make_int_accessor
private:
unsigned int mTotal;
unsigned int mUnknownSigningPreference, mNeverSign, mAlwaysSign,
mAlwaysSignIfPossible, mAlwaysAskForSigning, mAskSigningWheneverPossible;
};
void Kleo::KeyResolver::SigningPreferenceCounter::operator()( const Kleo::KeyResolver::Item & item ) {
switch ( item.signPref ) {
#define CASE(x) case x: ++m##x; break
CASE(UnknownSigningPreference);
CASE(NeverSign);
CASE(AlwaysSign);
CASE(AlwaysSignIfPossible);
CASE(AlwaysAskForSigning);
CASE(AskSigningWheneverPossible);
#undef CASE
}
++mTotal;
}
class Kleo::KeyResolver::EncryptionPreferenceCounter : public std::unary_function<Item,void> {
const Kleo::KeyResolver * _this;
public:
EncryptionPreferenceCounter( const Kleo::KeyResolver * kr, EncryptionPreference defaultPreference )
: _this( kr ),
mDefaultPreference( defaultPreference ),
mTotal( 0 ),
mNoKey( 0 ),
mNeverEncrypt( 0 ),
mUnknownPreference( 0 ),
mAlwaysEncrypt( 0 ),
mAlwaysEncryptIfPossible( 0 ),
mAlwaysAskForEncryption( 0 ),
mAskWheneverPossible( 0 )
{
}
void operator()( Item & item );
template <typename Container>
void process( Container & c ) {
*this = std::for_each( c.begin(), c.end(), *this );
}
#define make_int_accessor(x) unsigned int num##x() const { return m##x; }
make_int_accessor(NoKey)
make_int_accessor(NeverEncrypt)
make_int_accessor(UnknownPreference)
make_int_accessor(AlwaysEncrypt)
make_int_accessor(AlwaysEncryptIfPossible)
make_int_accessor(AlwaysAskForEncryption)
make_int_accessor(AskWheneverPossible)
make_int_accessor(Total)
#undef make_int_accessor
private:
EncryptionPreference mDefaultPreference;
unsigned int mTotal;
unsigned int mNoKey;
unsigned int mNeverEncrypt, mUnknownPreference, mAlwaysEncrypt,
mAlwaysEncryptIfPossible, mAlwaysAskForEncryption, mAskWheneverPossible;
};
void Kleo::KeyResolver::EncryptionPreferenceCounter::operator()( Item & item ) {
if ( _this ) {
if ( item.needKeys )
item.keys = _this->getEncryptionKeys( item.address, true );
if ( item.keys.empty() ) {
++mNoKey;
return;
}
}
switch ( !item.pref ? mDefaultPreference : item.pref ) {
#define CASE(x) case Kleo::x: ++m##x; break
CASE(NeverEncrypt);
CASE(UnknownPreference);
CASE(AlwaysEncrypt);
CASE(AlwaysEncryptIfPossible);
CASE(AlwaysAskForEncryption);
CASE(AskWheneverPossible);
#undef CASE
}
++mTotal;
}
namespace {
class FormatPreferenceCounterBase : public std::unary_function<Kleo::KeyResolver::Item,void> {
public:
FormatPreferenceCounterBase()
: mTotal( 0 ),
mInlineOpenPGP( 0 ),
mOpenPGPMIME( 0 ),
mSMIME( 0 ),
mSMIMEOpaque( 0 )
{
}
#define make_int_accessor(x) unsigned int num##x() const { return m##x; }
make_int_accessor(Total)
make_int_accessor(InlineOpenPGP)
make_int_accessor(OpenPGPMIME)
make_int_accessor(SMIME)
make_int_accessor(SMIMEOpaque)
#undef make_int_accessor
unsigned int numOf( Kleo::CryptoMessageFormat f ) const {
switch ( f ) {
#define CASE(x) case Kleo::x##Format: return m##x
CASE(InlineOpenPGP);
CASE(OpenPGPMIME);
CASE(SMIME);
CASE(SMIMEOpaque);
#undef CASE
default: return 0;
}
}
protected:
unsigned int mTotal;
unsigned int mInlineOpenPGP, mOpenPGPMIME, mSMIME, mSMIMEOpaque;
};
class EncryptionFormatPreferenceCounter : public FormatPreferenceCounterBase {
public:
EncryptionFormatPreferenceCounter() : FormatPreferenceCounterBase() {}
void operator()( const Kleo::KeyResolver::Item & item );
};
class SigningFormatPreferenceCounter : public FormatPreferenceCounterBase {
public:
SigningFormatPreferenceCounter() : FormatPreferenceCounterBase() {}
void operator()( const Kleo::KeyResolver::Item & item );
};
#define CASE(x) if ( item.format & Kleo::x##Format ) ++m##x;
void EncryptionFormatPreferenceCounter::operator()( const Kleo::KeyResolver::Item & item ) {
if ( item.format & (Kleo::InlineOpenPGPFormat|Kleo::OpenPGPMIMEFormat) &&
std::find_if( item.keys.begin(), item.keys.end(),
ValidTrustedOpenPGPEncryptionKey ) != item.keys.end() ) { // -= trusted?
CASE(OpenPGPMIME);
CASE(InlineOpenPGP);
}
if ( item.format & (Kleo::SMIMEFormat|Kleo::SMIMEOpaqueFormat) &&
std::find_if( item.keys.begin(), item.keys.end(),
ValidTrustedSMIMEEncryptionKey ) != item.keys.end() ) { // -= trusted?
CASE(SMIME);
CASE(SMIMEOpaque);
}
++mTotal;
}
void SigningFormatPreferenceCounter::operator()( const Kleo::KeyResolver::Item & item ) {
CASE(InlineOpenPGP);
CASE(OpenPGPMIME);
CASE(SMIME);
CASE(SMIMEOpaque);
++mTotal;
}
#undef CASE
} // anon namespace
static QString canonicalAddress( const QString & _address ) {
const QString address = KPIMUtils::extractEmailAddress( _address );
if ( !address.contains( QLatin1Char('@') ) ) {
// local address
//return address + '@' + KNetwork::KResolver::localHostName();
return address + QLatin1String("@localdomain");
}
else
return address;
}
struct FormatInfo {
std::vector<Kleo::KeyResolver::SplitInfo> splitInfos;
std::vector<GpgME::Key> signKeys;
};
struct Kleo::KeyResolver::Private {
std::set<QByteArray> alreadyWarnedFingerprints;
std::vector<GpgME::Key> mOpenPGPSigningKeys; // signing
std::vector<GpgME::Key> mSMIMESigningKeys; // signing
std::vector<GpgME::Key> mOpenPGPEncryptToSelfKeys; // encryption to self
std::vector<GpgME::Key> mSMIMEEncryptToSelfKeys; // encryption to self
std::vector<Item> mPrimaryEncryptionKeys; // encryption to To/CC
std::vector<Item> mSecondaryEncryptionKeys; // encryption to BCC
std::map<CryptoMessageFormat,FormatInfo> mFormatInfoMap;
// key=email address, value=crypto preferences for this contact (from kabc)
typedef std::map<QString, ContactPreferences> ContactPreferencesMap;
ContactPreferencesMap mContactPreferencesMap;
};
Kleo::KeyResolver::KeyResolver( bool encToSelf, bool showApproval, bool oppEncryption,
unsigned int f,
int encrWarnThresholdKey, int signWarnThresholdKey,
int encrWarnThresholdRootCert, int signWarnThresholdRootCert,
int encrWarnThresholdChainCert, int signWarnThresholdChainCert )
: mEncryptToSelf( encToSelf ),
mShowApprovalDialog( showApproval ),
mOpportunisticEncyption( oppEncryption ),
mCryptoMessageFormats( f ),
mEncryptKeyNearExpiryWarningThreshold( encrWarnThresholdKey ),
mSigningKeyNearExpiryWarningThreshold( signWarnThresholdKey ),
mEncryptRootCertNearExpiryWarningThreshold( encrWarnThresholdRootCert ),
mSigningRootCertNearExpiryWarningThreshold( signWarnThresholdRootCert ),
mEncryptChainCertNearExpiryWarningThreshold( encrWarnThresholdChainCert ),
mSigningChainCertNearExpiryWarningThreshold( signWarnThresholdChainCert )
{
d = new Private();
}
Kleo::KeyResolver::~KeyResolver() {
delete d; d = 0;
}
Kpgp::Result Kleo::KeyResolver::checkKeyNearExpiry( const GpgME::Key & key, const char * dontAskAgainName,
bool mine, bool sign, bool ca,
int recur_limit, const GpgME::Key & orig ) const
{
if ( recur_limit <= 0 ) {
kDebug() << "Key chain too long (>100 certs)";
return Kpgp::Ok;
}
const GpgME::Subkey subkey = key.subkey(0);
if ( d->alreadyWarnedFingerprints.count( subkey.fingerprint() ) )
return Kpgp::Ok; // already warned about this one (and so about it's issuers)
if ( subkey.neverExpires() )
return Kpgp::Ok;
static const double secsPerDay = 24 * 60 * 60;
const double secsTillExpiry = ::difftime( subkey.expirationTime(), time(0) );
if ( secsTillExpiry <= 0 ) {
const int daysSinceExpiry = 1 + int( -secsTillExpiry / secsPerDay );
kDebug() << "Key 0x" << key.shortKeyID() << " expired less than "
<< daysSinceExpiry << " days ago";
const QString msg =
key.protocol() == GpgME::OpenPGP
? ( mine ? sign
? ki18np("<p>Your OpenPGP signing key</p><p align=center><b>%2</b> (KeyID 0x%3)</p>"
"<p>expired less than a day ago.</p>",
"<p>Your OpenPGP signing key</p><p align=center><b>%2</b> (KeyID 0x%3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>Your OpenPGP encryption key</p><p align=center><b>%2</b> (KeyID 0x%3)</p>"
"<p>expired less than a day ago.</p>",
"<p>Your OpenPGP encryption key</p><p align=center><b>%2</b> (KeyID 0x%3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>The OpenPGP key for</p><p align=center><b>%2</b> (KeyID 0x%3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The OpenPGP key for</p><p align=center><b>%2</b> (KeyID 0x%3)</p>"
"<p>expired %1 days ago.</p>") )
.subs( daysSinceExpiry )
.subs( QString::fromUtf8( key.userID(0).id() ) )
.subs( QString::fromLatin1( key.shortKeyID() ) )
.toString()
: ( ca
? ( key.isRoot()
? ( mine ? sign
? ki18np("<p>The root certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The root certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>The root certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The root certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>The root certificate</p><p align=center><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The root certificate</p><p align=center><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>") )
: ( mine ? sign
? ki18np("<p>The intermediate CA certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The intermediate CA certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>The intermediate CA certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The intermediate CA certificate</p><p align=center><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>The intermediate CA certificate</p><p align=center><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The intermediate CA certificate</p><p align=center><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>") ) )
.subs( daysSinceExpiry )
.subs( Kleo::DN( orig.userID(0).id() ).prettyDN() )
.subs( QString::fromLatin1( orig.issuerSerial() ) )
.subs( Kleo::DN( key.userID(0).id() ).prettyDN() )
.toString()
: ( mine ? sign
? ki18np("<p>Your S/MIME signing certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>Your S/MIME signing certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>Your S/MIME encryption certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>Your S/MIME encryption certificate</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>")
: ki18np("<p>The S/MIME certificate for</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired less than a day ago.</p>",
"<p>The S/MIME certificate for</p><p align=center><b>%2</b> (serial number %3)</p>"
"<p>expired %1 days ago.</p>" ) )
.subs( daysSinceExpiry )
.subs( Kleo::DN( key.userID(0).id() ).prettyDN() )
.subs( QString::fromLatin1( key.issuerSerial() ) )
.toString() );
d->alreadyWarnedFingerprints.insert( subkey.fingerprint() );
if ( KMessageBox::warningContinueCancel( 0, msg,
key.protocol() == GpgME::OpenPGP
? i18n("OpenPGP Key Expired" )
: i18n("S/MIME Certificate Expired" ),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(), QLatin1String(dontAskAgainName) ) == KMessageBox::Cancel )
return Kpgp::Canceled;
} else {
const int daysTillExpiry = 1 + int( secsTillExpiry / secsPerDay );
kDebug() << "Key 0x" << key.shortKeyID() <<"expires in less than"
<< daysTillExpiry << "days";
const int threshold =
ca
? ( key.isRoot()
? ( sign
? signingRootCertNearExpiryWarningThresholdInDays()
: encryptRootCertNearExpiryWarningThresholdInDays() )
: ( sign
? signingChainCertNearExpiryWarningThresholdInDays()
: encryptChainCertNearExpiryWarningThresholdInDays() ) )
: ( sign
? signingKeyNearExpiryWarningThresholdInDays()
: encryptKeyNearExpiryWarningThresholdInDays() );
if ( threshold > -1 && daysTillExpiry <= threshold ) {
const QString msg =
key.protocol() == GpgME::OpenPGP
? ( mine ? sign
? ki18np("<p>Your OpenPGP signing key</p><p align=\"center\"><b>%2</b> (KeyID 0x%3)</p>"
"<p>expires in less than a day.</p>",
"<p>Your OpenPGP signing key</p><p align=\"center\"><b>%2</b> (KeyID 0x%3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>Your OpenPGP encryption key</p><p align=\"center\"><b>%2</b> (KeyID 0x%3)</p>"
"<p>expires in less than a day.</p>",
"<p>Your OpenPGP encryption key</p><p align=\"center\"><b>%2</b> (KeyID 0x%3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>The OpenPGP key for</p><p align=\"center\"><b>%2</b> (KeyID 0x%3)</p>"
"<p>expires in less than a day.</p>",
"<p>The OpenPGP key for</p><p align=\"center\"><b>%2</b> (KeyID 0x%3)</p>"
"<p>expires in less than %1 days.</p>") )
.subs( daysTillExpiry )
.subs( QString::fromUtf8( key.userID(0).id() ) )
.subs( QString::fromLatin1( key.shortKeyID() ) )
.toString()
: ( ca
? ( key.isRoot()
? ( mine ? sign
? ki18np("<p>The root certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>The root certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>The root certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>The root certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>The root certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>The root certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>") )
: ( mine ? sign
? ki18np("<p>The intermediate CA certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>The intermediate CA certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME signing certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>The intermediate CA certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>The intermediate CA certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for your S/MIME encryption certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>The intermediate CA certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>The intermediate CA certificate</p><p align=\"center\"><b>%4</b></p>"
"<p>for S/MIME certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>") ) )
.subs( daysTillExpiry )
.subs( Kleo::DN( orig.userID(0).id() ).prettyDN() )
.subs( QString::fromLatin1( orig.issuerSerial() ) )
.subs( Kleo::DN( key.userID(0).id() ).prettyDN() )
.toString()
: ( mine ? sign
? ki18np("<p>Your S/MIME signing certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>Your S/MIME signing certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>Your S/MIME encryption certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>Your S/MIME encryption certificate</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>")
: ki18np("<p>The S/MIME certificate for</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than a day.</p>",
"<p>The S/MIME certificate for</p><p align=\"center\"><b>%2</b> (serial number %3)</p>"
"<p>expires in less than %1 days.</p>" ) )
.subs( daysTillExpiry )
.subs( Kleo::DN( key.userID(0).id() ).prettyDN() )
.subs( QString::fromLatin1( key.issuerSerial() ) )
.toString() );
d->alreadyWarnedFingerprints.insert( subkey.fingerprint() );
if ( KMessageBox::warningContinueCancel( 0, msg,
key.protocol() == GpgME::OpenPGP
? i18n("OpenPGP Key Expires Soon" )
: i18n("S/MIME Certificate Expires Soon" ),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String( dontAskAgainName ) )
== KMessageBox::Cancel )
return Kpgp::Canceled;
}
}
if ( key.isRoot() )
return Kpgp::Ok;
else if ( const char * chain_id = key.chainID() ) {
const std::vector<GpgME::Key> issuer = lookup( QStringList( QLatin1String( chain_id ) ), false );
if ( issuer.empty() )
return Kpgp::Ok;
else
return checkKeyNearExpiry( issuer.front(), dontAskAgainName, mine, sign,
true, recur_limit-1, ca ? orig : key );
}
return Kpgp::Ok;
}
Kpgp::Result Kleo::KeyResolver::setEncryptToSelfKeys( const QStringList & fingerprints ) {
if ( !encryptToSelf() )
return Kpgp::Ok;
std::vector<GpgME::Key> keys = lookup( fingerprints );
std::remove_copy_if( keys.begin(), keys.end(),
std::back_inserter( d->mOpenPGPEncryptToSelfKeys ),
NotValidTrustedOpenPGPEncryptionKey ); // -= trusted?
std::remove_copy_if( keys.begin(), keys.end(),
std::back_inserter( d->mSMIMEEncryptToSelfKeys ),
NotValidTrustedSMIMEEncryptionKey ); // -= trusted?
if ( d->mOpenPGPEncryptToSelfKeys.size() + d->mSMIMEEncryptToSelfKeys.size()
< keys.size() ) {
// too few keys remain...
const QString msg = i18n("One or more of your configured OpenPGP encryption "
"keys or S/MIME certificates is not usable for "
"encryption. Please reconfigure your encryption keys "
"and certificates for this identity in the identity "
"configuration dialog.\n"
"If you choose to continue, and the keys are needed "
"later on, you will be prompted to specify the keys "
"to use.");
return KMessageBox::warningContinueCancel( 0, msg, i18n("Unusable Encryption Keys"),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String("unusable own encryption key warning") )
== KMessageBox::Continue ? Kpgp::Ok : Kpgp::Canceled ;
}
// check for near-expiry:
std::vector<GpgME::Key>::const_iterator end( d->mOpenPGPEncryptToSelfKeys.end() );
for ( std::vector<GpgME::Key>::const_iterator it = d->mOpenPGPEncryptToSelfKeys.begin() ; it != end ; ++it ) {
const Kpgp::Result r = checkKeyNearExpiry( *it, "own encryption key expires soon warning",
true, false );
if ( r != Kpgp::Ok )
return r;
}
std::vector<GpgME::Key>::const_iterator end2( d->mSMIMEEncryptToSelfKeys.end() );
for ( std::vector<GpgME::Key>::const_iterator it = d->mSMIMEEncryptToSelfKeys.begin() ; it != end2 ; ++it ) {
const Kpgp::Result r = checkKeyNearExpiry( *it, "own encryption key expires soon warning",
true, false );
if ( r != Kpgp::Ok )
return r;
}
return Kpgp::Ok;
}
Kpgp::Result Kleo::KeyResolver::setSigningKeys( const QStringList & fingerprints ) {
std::vector<GpgME::Key> keys = lookup( fingerprints, true ); // secret keys
std::remove_copy_if( keys.begin(), keys.end(),
std::back_inserter( d->mOpenPGPSigningKeys ),
NotValidOpenPGPSigningKey );
std::remove_copy_if( keys.begin(), keys.end(),
std::back_inserter( d->mSMIMESigningKeys ),
NotValidSMIMESigningKey );
if ( d->mOpenPGPSigningKeys.size() + d->mSMIMESigningKeys.size() < keys.size() ) {
// too few keys remain...
const QString msg = i18n("One or more of your configured OpenPGP signing keys "
"or S/MIME signing certificates is not usable for "
"signing. Please reconfigure your signing keys "
"and certificates for this identity in the identity "
"configuration dialog.\n"
"If you choose to continue, and the keys are needed "
"later on, you will be prompted to specify the keys "
"to use.");
return KMessageBox::warningContinueCancel( 0, msg, i18n("Unusable Signing Keys"),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String("unusable signing key warning") )
== KMessageBox::Continue ? Kpgp::Ok : Kpgp::Canceled ;
}
// check for near expiry:
for ( std::vector<GpgME::Key>::const_iterator it = d->mOpenPGPSigningKeys.begin() ; it != d->mOpenPGPSigningKeys.end() ; ++it ) {
const Kpgp::Result r = checkKeyNearExpiry( *it, "signing key expires soon warning",
true, true );
if ( r != Kpgp::Ok )
return r;
}
for ( std::vector<GpgME::Key>::const_iterator it = d->mSMIMESigningKeys.begin() ; it != d->mSMIMESigningKeys.end() ; ++it ) {
const Kpgp::Result r = checkKeyNearExpiry( *it, "signing key expires soon warning",
true, true );
if ( r != Kpgp::Ok )
return r;
}
return Kpgp::Ok;
}
void Kleo::KeyResolver::setPrimaryRecipients( const QStringList & addresses ) {
d->mPrimaryEncryptionKeys = getEncryptionItems( addresses );
}
void Kleo::KeyResolver::setSecondaryRecipients( const QStringList & addresses ) {
d->mSecondaryEncryptionKeys = getEncryptionItems( addresses );
}
std::vector<Kleo::KeyResolver::Item> Kleo::KeyResolver::getEncryptionItems( const QStringList & addresses ) {
std::vector<Item> items;
items.reserve( addresses.size() );
QStringList::const_iterator end( addresses.constEnd() );
for ( QStringList::const_iterator it = addresses.constBegin() ; it != end ; ++it ) {
QString addr = canonicalAddress( *it ).toLower();
const ContactPreferences pref = lookupContactPreferences( addr );
items.push_back( Item( *it, /*getEncryptionKeys( *it, true ),*/
pref.encryptionPreference,
pref.signingPreference,
pref.cryptoMessageFormat ) );
}
return items;
}
static Kleo::Action action( bool doit, bool ask, bool donot, bool requested ) {
if ( requested && !donot )
return Kleo::DoIt;
if ( doit && !ask && !donot )
return Kleo::DoIt;
if ( !doit && ask && !donot )
return Kleo::Ask;
if ( !doit && !ask && donot )
return requested ? Kleo::Conflict : Kleo::DontDoIt ;
if ( !doit && !ask && !donot )
return Kleo::DontDoIt ;
return Kleo::Conflict;
}
Kleo::Action Kleo::KeyResolver::checkSigningPreferences( bool signingRequested ) const {
if ( signingRequested && d->mOpenPGPSigningKeys.empty() && d->mSMIMESigningKeys.empty() )
return Impossible;
SigningPreferenceCounter count;
count = std::for_each( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
count );
count = std::for_each( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
count );
unsigned int sign = count.numAlwaysSign();
unsigned int ask = count.numAlwaysAskForSigning();
const unsigned int dontSign = count.numNeverSign();
if ( signingPossible() ) {
sign += count.numAlwaysSignIfPossible();
ask += count.numAskSigningWheneverPossible();
}
return action( sign, ask, dontSign, signingRequested );
}
bool Kleo::KeyResolver::signingPossible() const {
return !d->mOpenPGPSigningKeys.empty() || !d->mSMIMESigningKeys.empty() ;
}
Kleo::Action Kleo::KeyResolver::checkEncryptionPreferences( bool encryptionRequested ) const {
if ( d->mPrimaryEncryptionKeys.empty() && d->mSecondaryEncryptionKeys.empty() )
return DontDoIt;
if ( encryptionRequested && encryptToSelf() &&
d->mOpenPGPEncryptToSelfKeys.empty() && d->mSMIMEEncryptToSelfKeys.empty() )
return Impossible;
if ( !encryptionRequested && !mOpportunisticEncyption ) {
// try to minimize crypto ops (including key lookups) by only
// looking up keys when at least one of the encryption
// preferences needs it:
EncryptionPreferenceCounter count( 0, UnknownPreference );
count.process( d->mPrimaryEncryptionKeys );
count.process( d->mSecondaryEncryptionKeys );
if ( !count.numAlwaysEncrypt() &&
!count.numAlwaysAskForEncryption() && // this guy might not need a lookup, when declined, but it's too complex to implement that here
!count.numAlwaysEncryptIfPossible() &&
!count.numAskWheneverPossible() )
return DontDoIt;
}
EncryptionPreferenceCounter count( this, mOpportunisticEncyption ? AskWheneverPossible : UnknownPreference );
count = std::for_each( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
count );
count = std::for_each( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
count );
unsigned int encrypt = count.numAlwaysEncrypt();
unsigned int ask = count.numAlwaysAskForEncryption();
const unsigned int dontEncrypt = count.numNeverEncrypt() + count.numNoKey();
if ( encryptionPossible() ) {
encrypt += count.numAlwaysEncryptIfPossible();
ask += count.numAskWheneverPossible();
}
const Action act = action( encrypt, ask, dontEncrypt, encryptionRequested );
if ( act != Ask ||
std::for_each( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
std::for_each( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
EncryptionPreferenceCounter( this, UnknownPreference ) ) ).numAlwaysAskForEncryption() )
return act;
else
return AskOpportunistic;
}
bool Kleo::KeyResolver::encryptionPossible() const {
return std::find_if( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
EmptyKeyList ) == d->mPrimaryEncryptionKeys.end()
&& std::find_if( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
EmptyKeyList ) == d->mSecondaryEncryptionKeys.end() ;
}
Kpgp::Result Kleo::KeyResolver::resolveAllKeys( bool& signingRequested, bool& encryptionRequested ) {
if ( !encryptionRequested && !signingRequested ) {
// make a dummy entry with all recipients, but no signing or
// encryption keys to avoid special-casing on the caller side:
dump();
d->mFormatInfoMap[OpenPGPMIMEFormat].splitInfos.push_back( SplitInfo( allRecipients() ) );
dump();
return Kpgp::Ok;
}
Kpgp::Result result = Kpgp::Ok;
if ( encryptionRequested ) {
bool finalySendUnencrypted = false;
result = resolveEncryptionKeys( signingRequested, finalySendUnencrypted );
if (finalySendUnencrypted) {
encryptionRequested = false;
}
}
if ( result != Kpgp::Ok )
return result;
if ( signingRequested ) {
if ( encryptionRequested ) {
result = resolveSigningKeysForEncryption();
}
else {
result = resolveSigningKeysForSigningOnly();
if ( result == Kpgp::Failure ) {
signingRequested = false;
return Kpgp::Ok;
}
}
}
return result;
}
Kpgp::Result Kleo::KeyResolver::resolveEncryptionKeys( bool signingRequested, bool &finalySendUnencrypted ) {
//
// 1. Get keys for all recipients:
//
kDebug() << "resolving enc keys";
for ( std::vector<Item>::iterator it = d->mPrimaryEncryptionKeys.begin() ; it != d->mPrimaryEncryptionKeys.end() ; ++it ) {
kDebug() << "checking primary:" << it->address;
if ( !it->needKeys )
continue;
it->keys = getEncryptionKeys( it->address, false );
kDebug() << "got # keys:" << it->keys.size();
if ( it->keys.empty() )
return Kpgp::Canceled;
QString addr = canonicalAddress( it->address ).toLower();
const ContactPreferences pref = lookupContactPreferences( addr );
it->pref = pref.encryptionPreference;
it->signPref = pref.signingPreference;
it->format = pref.cryptoMessageFormat;
kDebug() << "set key data:" << int( it->pref ) << int( it->signPref ) << int( it->format );
}
for ( std::vector<Item>::iterator it = d->mSecondaryEncryptionKeys.begin() ; it != d->mSecondaryEncryptionKeys.end() ; ++it ) {
if ( !it->needKeys )
continue;
it->keys = getEncryptionKeys( it->address, false );
if ( it->keys.empty() )
return Kpgp::Canceled;
QString addr = canonicalAddress( it->address ).toLower();
const ContactPreferences pref = lookupContactPreferences( addr );
it->pref = pref.encryptionPreference;
it->signPref = pref.signingPreference;
it->format = pref.cryptoMessageFormat;
}
// 1a: Present them to the user
const Kpgp::Result res = showKeyApprovalDialog(finalySendUnencrypted);
if ( res != Kpgp::Ok )
return res;
//
// 2. Check what the primary recipients need
//
// 2a. Try to find a common format for all primary recipients,
// else use as many formats as needed
const EncryptionFormatPreferenceCounter primaryCount
= std::for_each( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
EncryptionFormatPreferenceCounter() );
CryptoMessageFormat commonFormat = AutoFormat;
for ( unsigned int i = 0 ; i < numConcreteCryptoMessageFormats ; ++i ) {
if ( !( concreteCryptoMessageFormats[i] & mCryptoMessageFormats ) )
continue;
if ( signingRequested && signingKeysFor( concreteCryptoMessageFormats[i] ).empty() )
continue;
if ( encryptToSelf() && encryptToSelfKeysFor( concreteCryptoMessageFormats[i] ).empty() )
continue;
if ( primaryCount.numOf( concreteCryptoMessageFormats[i] ) == primaryCount.numTotal() ) {
commonFormat = concreteCryptoMessageFormats[i];
break;
}
}
kDebug() << "got commonFormat for primary recipients:" << int( commonFormat );
if ( commonFormat != AutoFormat )
addKeys( d->mPrimaryEncryptionKeys, commonFormat );
else
addKeys( d->mPrimaryEncryptionKeys );
collapseAllSplitInfos(); // these can be encrypted together
// 2b. Just try to find _something_ for each secondary recipient,
// with a preference to a common format (if that exists)
const EncryptionFormatPreferenceCounter secondaryCount
= std::for_each( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
EncryptionFormatPreferenceCounter() );
if ( commonFormat != AutoFormat &&
secondaryCount.numOf( commonFormat ) == secondaryCount.numTotal() )
addKeys( d->mSecondaryEncryptionKeys, commonFormat );
else
addKeys( d->mSecondaryEncryptionKeys );
// 3. Check for expiry:
for ( unsigned int i = 0 ; i < numConcreteCryptoMessageFormats ; ++i ) {
const std::vector<SplitInfo> si_list = encryptionItems( concreteCryptoMessageFormats[i] );
for ( std::vector<SplitInfo>::const_iterator sit = si_list.begin() ; sit != si_list.end() ; ++sit )
for ( std::vector<GpgME::Key>::const_iterator kit = sit->keys.begin() ; kit != sit->keys.end() ; ++kit ) {
const Kpgp::Result r = checkKeyNearExpiry( *kit, "other encryption key near expiry warning",
false, false );
if ( r != Kpgp::Ok )
return r;
}
}
// 4. Check that we have the right keys for encryptToSelf()
if ( !encryptToSelf() )
return Kpgp::Ok;
// 4a. Check for OpenPGP keys
kDebug() << "sizes of encryption items:" << encryptionItems( InlineOpenPGPFormat ).size() << encryptionItems( OpenPGPMIMEFormat ).size() << encryptionItems( SMIMEFormat ).size() << encryptionItems( SMIMEOpaqueFormat ).size();
if ( !encryptionItems( InlineOpenPGPFormat ).empty() ||
!encryptionItems( OpenPGPMIMEFormat ).empty() ) {
// need them
if ( d->mOpenPGPEncryptToSelfKeys.empty() ) {
const QString msg = i18n("Examination of recipient's encryption preferences "
"yielded that the message should be encrypted using "
"OpenPGP, at least for some recipients;\n"
"however, you have not configured valid trusted "
"OpenPGP encryption keys for this identity.\n"
"You may continue without encrypting to yourself, "
"but be aware that you will not be able to read your "
"own messages if you do so.");
if ( KMessageBox::warningContinueCancel( 0, msg,
i18n("Unusable Encryption Keys"),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String("encrypt-to-self will fail warning") )
== KMessageBox::Cancel )
return Kpgp::Canceled;
// FIXME: Allow selection
}
addToAllSplitInfos( d->mOpenPGPEncryptToSelfKeys,
InlineOpenPGPFormat|OpenPGPMIMEFormat );
}
// 4b. Check for S/MIME certs:
if ( !encryptionItems( SMIMEFormat ).empty() ||
!encryptionItems( SMIMEOpaqueFormat ).empty() ) {
// need them
if ( d->mSMIMEEncryptToSelfKeys.empty() ) {
// don't have one
const QString msg = i18n("Examination of recipient's encryption preferences "
"yielded that the message should be encrypted using "
"S/MIME, at least for some recipients;\n"
"however, you have not configured valid "
"S/MIME encryption certificates for this identity.\n"
"You may continue without encrypting to yourself, "
"but be aware that you will not be able to read your "
"own messages if you do so.");
if ( KMessageBox::warningContinueCancel( 0, msg,
i18n("Unusable Encryption Keys"),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String("encrypt-to-self will fail warning") )
== KMessageBox::Cancel )
return Kpgp::Canceled;
// FIXME: Allow selection
}
addToAllSplitInfos( d->mSMIMEEncryptToSelfKeys,
SMIMEFormat|SMIMEOpaqueFormat );
}
// FIXME: Present another message if _both_ OpenPGP and S/MIME keys
// are missing.
return Kpgp::Ok;
}
Kpgp::Result Kleo::KeyResolver::resolveSigningKeysForEncryption() {
if ( ( !encryptionItems( InlineOpenPGPFormat ).empty() ||
!encryptionItems( OpenPGPMIMEFormat ).empty() )
&& d->mOpenPGPSigningKeys.empty() ) {
const QString msg = i18n("Examination of recipient's signing preferences "
"yielded that the message should be signed using "
"OpenPGP, at least for some recipients;\n"
"however, you have not configured valid "
"OpenPGP signing certificates for this identity.");
if ( KMessageBox::warningContinueCancel( 0, msg,
i18n("Unusable Signing Keys"),
KGuiItem(i18n("Do Not OpenPGP-Sign")),
KStandardGuiItem::cancel(),
QLatin1String("signing will fail warning") )
== KMessageBox::Cancel )
return Kpgp::Canceled;
// FIXME: Allow selection
}
if ( ( !encryptionItems( SMIMEFormat ).empty() ||
!encryptionItems( SMIMEOpaqueFormat ).empty() )
&& d->mSMIMESigningKeys.empty() ) {
const QString msg = i18n("Examination of recipient's signing preferences "
"yielded that the message should be signed using "
"S/MIME, at least for some recipients;\n"
"however, you have not configured valid "
"S/MIME signing certificates for this identity.");
if ( KMessageBox::warningContinueCancel( 0, msg,
i18n("Unusable Signing Keys"),
KGuiItem(i18n("Do Not S/MIME-Sign")),
KStandardGuiItem::cancel(),
QLatin1String("signing will fail warning") )
== KMessageBox::Cancel )
return Kpgp::Canceled;
// FIXME: Allow selection
}
// FIXME: Present another message if _both_ OpenPGP and S/MIME keys
// are missing.
for ( std::map<CryptoMessageFormat,FormatInfo>::iterator it = d->mFormatInfoMap.begin() ; it != d->mFormatInfoMap.end() ; ++it )
if ( !it->second.splitInfos.empty() ) {
dump();
it->second.signKeys = signingKeysFor( it->first );
dump();
}
return Kpgp::Ok;
}
Kpgp::Result Kleo::KeyResolver::resolveSigningKeysForSigningOnly() {
//
// we don't need to distinguish between primary and secondary
// recipients here:
//
SigningFormatPreferenceCounter count;
count = std::for_each( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
count );
count = std::for_each( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
count );
// try to find a common format that works for all (and that we have signing keys for):
CryptoMessageFormat commonFormat = AutoFormat;
for ( unsigned int i = 0 ; i < numConcreteCryptoMessageFormats ; ++i ) {
if ( !(mCryptoMessageFormats & concreteCryptoMessageFormats[i]) )
continue; // skip
if ( signingKeysFor( concreteCryptoMessageFormats[i] ).empty() )
continue; // skip
if ( count.numOf( concreteCryptoMessageFormats[i] ) == count.numTotal() ) {
commonFormat = concreteCryptoMessageFormats[i];
break;
}
}
if ( commonFormat != AutoFormat ) { // found
dump();
FormatInfo & fi = d->mFormatInfoMap[ commonFormat ];
fi.signKeys = signingKeysFor( commonFormat );
fi.splitInfos.resize( 1 );
fi.splitInfos.front() = SplitInfo( allRecipients() );
dump();
return Kpgp::Ok;
}
const QString msg = i18n("Examination of recipient's signing preferences "
"showed no common type of signature matching your "
"available signing keys.\n"
"Send message without signing?" );
if ( KMessageBox::warningContinueCancel( 0, msg, i18n("No signing possible"),
KStandardGuiItem::cont() )
== KMessageBox::Continue ) {
d->mFormatInfoMap[OpenPGPMIMEFormat].splitInfos.push_back( SplitInfo( allRecipients() ) );
return Kpgp::Failure; // means "Ok, but without signing"
}
return Kpgp::Canceled;
}
std::vector<GpgME::Key> Kleo::KeyResolver::signingKeysFor( CryptoMessageFormat f ) const {
if ( isOpenPGP( f ) )
return d->mOpenPGPSigningKeys;
if ( isSMIME( f ) )
return d->mSMIMESigningKeys;
return std::vector<GpgME::Key>();
}
std::vector<GpgME::Key> Kleo::KeyResolver::encryptToSelfKeysFor( CryptoMessageFormat f ) const {
if ( isOpenPGP( f ) )
return d->mOpenPGPEncryptToSelfKeys;
if ( isSMIME( f ) )
return d->mSMIMEEncryptToSelfKeys;
return std::vector<GpgME::Key>();
}
QStringList Kleo::KeyResolver::allRecipients() const {
QStringList result;
std::transform( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
std::back_inserter( result ), ItemDotAddress );
std::transform( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
std::back_inserter( result ), ItemDotAddress );
return result;
}
void Kleo::KeyResolver::collapseAllSplitInfos() {
dump();
for ( unsigned int i = 0 ; i < numConcreteCryptoMessageFormats ; ++i ) {
std::map<CryptoMessageFormat,FormatInfo>::iterator pos =
d->mFormatInfoMap.find( concreteCryptoMessageFormats[i] );
if ( pos == d->mFormatInfoMap.end() )
continue;
std::vector<SplitInfo> & v = pos->second.splitInfos;
if ( v.size() < 2 )
continue;
SplitInfo & si = v.front();
for ( std::vector<SplitInfo>::const_iterator it = v.begin() + 1; it != v.end() ; ++it ) {
si.keys.insert( si.keys.end(), it->keys.begin(), it->keys.end() );
qCopy( it->recipients.begin(), it->recipients.end(), std::back_inserter( si.recipients ) );
}
v.resize( 1 );
}
dump();
}
void Kleo::KeyResolver::addToAllSplitInfos( const std::vector<GpgME::Key> & keys, unsigned int f ) {
dump();
if ( !f || keys.empty() )
return;
for ( unsigned int i = 0 ; i < numConcreteCryptoMessageFormats ; ++i ) {
if ( !( f & concreteCryptoMessageFormats[i] ) )
continue;
std::map<CryptoMessageFormat,FormatInfo>::iterator pos =
d->mFormatInfoMap.find( concreteCryptoMessageFormats[i] );
if ( pos == d->mFormatInfoMap.end() )
continue;
std::vector<SplitInfo> & v = pos->second.splitInfos;
for ( std::vector<SplitInfo>::iterator it = v.begin() ; it != v.end() ; ++it )
it->keys.insert( it->keys.end(), keys.begin(), keys.end() );
}
dump();
}
void Kleo::KeyResolver::dump() const {
#ifndef NDEBUG
if ( d->mFormatInfoMap.empty() )
kDebug() << "Keyresolver: Format info empty";
for ( std::map<CryptoMessageFormat,FormatInfo>::const_iterator it = d->mFormatInfoMap.begin() ; it != d->mFormatInfoMap.end() ; ++it ) {
kDebug() << "Format info for " << Kleo::cryptoMessageFormatToString( it->first )
<< ": Signing keys: ";
for ( std::vector<GpgME::Key>::const_iterator sit = it->second.signKeys.begin() ; sit != it->second.signKeys.end() ; ++sit )
kDebug() << " " << sit->shortKeyID() << " ";
unsigned int i = 0;
for ( std::vector<SplitInfo>::const_iterator sit = it->second.splitInfos.begin() ; sit != it->second.splitInfos.end() ; ++sit, ++i ) {
kDebug() << " SplitInfo #" << i << " encryption keys: ";
for ( std::vector<GpgME::Key>::const_iterator kit = sit->keys.begin() ; kit != sit->keys.end() ; ++kit )
kDebug() << " " << kit->shortKeyID();
kDebug() << " SplitInfo #" << i << " recipients: "
<< qPrintable(sit->recipients.join( QLatin1String(", ") ));
}
}
#endif
}
Kpgp::Result Kleo::KeyResolver::showKeyApprovalDialog(bool &finalySendUnencrypted) {
const bool showKeysForApproval = showApprovalDialog()
|| std::find_if( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
ApprovalNeeded ) != d->mPrimaryEncryptionKeys.end()
|| std::find_if( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
ApprovalNeeded ) != d->mSecondaryEncryptionKeys.end() ;
if ( !showKeysForApproval )
return Kpgp::Ok;
std::vector<Kleo::KeyApprovalDialog::Item> items;
items.reserve( d->mPrimaryEncryptionKeys.size() +
d->mSecondaryEncryptionKeys.size() );
std::copy( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
std::back_inserter( items ) );
std::copy( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
std::back_inserter( items ) );
std::vector<GpgME::Key> senderKeys;
senderKeys.reserve( d->mOpenPGPEncryptToSelfKeys.size() +
d->mSMIMEEncryptToSelfKeys.size() );
std::copy( d->mOpenPGPEncryptToSelfKeys.begin(), d->mOpenPGPEncryptToSelfKeys.end(),
std::back_inserter( senderKeys ) );
std::copy( d->mSMIMEEncryptToSelfKeys.begin(), d->mSMIMEEncryptToSelfKeys.end(),
std::back_inserter( senderKeys ) );
#ifndef QT_NO_CURSOR
const MessageViewer::KCursorSaver idle( MessageViewer::KBusyPtr::idle() );
#endif
QPointer<Kleo::KeyApprovalDialog> dlg = new Kleo::KeyApprovalDialog( items, senderKeys );
if ( dlg->exec() == QDialog::Rejected ) {
delete dlg;
return Kpgp::Canceled;
}
items = dlg->items();
senderKeys = dlg->senderKeys();
const bool prefsChanged = dlg->preferencesChanged();
delete dlg;
if ( prefsChanged ) {
for ( uint i = 0; i < items.size(); ++i ) {
ContactPreferences pref = lookupContactPreferences( items[i].address );
pref.encryptionPreference = items[i].pref;
pref.pgpKeyFingerprints.clear();
pref.smimeCertFingerprints.clear();
const std::vector<GpgME::Key> & keys = items[i].keys;
for ( std::vector<GpgME::Key>::const_iterator it = keys.begin(), end = keys.end() ; it != end ; ++it ) {
if ( it->protocol() == GpgME::OpenPGP ) {
if ( const char * fpr = it->primaryFingerprint() )
pref.pgpKeyFingerprints.push_back( QLatin1String( fpr ) );
} else if ( it->protocol() == GpgME::CMS ) {
if ( const char * fpr = it->primaryFingerprint() )
pref.smimeCertFingerprints.push_back( QLatin1String( fpr ) );
}
}
saveContactPreference( items[i].address, pref );
}
}
// show a warning if the user didn't select an encryption key for
// herself:
if ( encryptToSelf() && senderKeys.empty() ) {
const QString msg = i18n("You did not select an encryption key for yourself "
"(encrypt to self). You will not be able to decrypt "
"your own message if you encrypt it.");
if ( KMessageBox::warningContinueCancel( 0, msg,
i18n("Missing Key Warning"),
KGuiItem(i18n("&Encrypt")) )
== KMessageBox::Cancel )
return Kpgp::Canceled;
else
mEncryptToSelf = false;
}
// count empty key ID lists
const unsigned int emptyListCount =
std::count_if( items.begin(), items.end(), EmptyKeyList );
// show a warning if the user didn't select an encryption key for
// some of the recipients
if ( items.size() == emptyListCount ) {
const QString msg = ( d->mPrimaryEncryptionKeys.size() +
d->mSecondaryEncryptionKeys.size() == 1 )
? i18n("You did not select an encryption key for the "
"recipient of this message; therefore, the message "
"will not be encrypted.")
: i18n("You did not select an encryption key for any of the "
"recipients of this message; therefore, the message "
"will not be encrypted.");
if ( KMessageBox::warningContinueCancel( 0, msg,
i18n("Missing Key Warning"),
KGuiItem(i18n("Send &Unencrypted")) )
== KMessageBox::Cancel )
return Kpgp::Canceled;
finalySendUnencrypted = true;
} else if ( emptyListCount > 0 ) {
const QString msg = ( emptyListCount == 1 )
? i18n("You did not select an encryption key for one of "
"the recipients: this person will not be able to "
"decrypt the message if you encrypt it.")
: i18n("You did not select encryption keys for some of "
"the recipients: these persons will not be able to "
"decrypt the message if you encrypt it." );
#ifndef QT_NO_CURSOR
MessageViewer::KCursorSaver idle( MessageViewer::KBusyPtr::idle() );
#endif
if ( KMessageBox::warningContinueCancel( 0, msg,
i18n("Missing Key Warning"),
KGuiItem(i18n("&Encrypt")) )
== KMessageBox::Cancel )
return Kpgp::Canceled;
}
std::transform( d->mPrimaryEncryptionKeys.begin(), d->mPrimaryEncryptionKeys.end(),
items.begin(),
d->mPrimaryEncryptionKeys.begin(),
CopyKeysAndEncryptionPreferences );
std::transform( d->mSecondaryEncryptionKeys.begin(), d->mSecondaryEncryptionKeys.end(),
items.begin() + d->mPrimaryEncryptionKeys.size(),
d->mSecondaryEncryptionKeys.begin(),
CopyKeysAndEncryptionPreferences );
d->mOpenPGPEncryptToSelfKeys.clear();
d->mSMIMEEncryptToSelfKeys.clear();
std::remove_copy_if( senderKeys.begin(), senderKeys.end(),
std::back_inserter( d->mOpenPGPEncryptToSelfKeys ),
NotValidTrustedOpenPGPEncryptionKey ); // -= trusted (see above, too)?
std::remove_copy_if( senderKeys.begin(), senderKeys.end(),
std::back_inserter( d->mSMIMEEncryptToSelfKeys ),
NotValidTrustedSMIMEEncryptionKey ); // -= trusted (see above, too)?
return Kpgp::Ok;
}
std::vector<Kleo::KeyResolver::SplitInfo> Kleo::KeyResolver::encryptionItems( Kleo::CryptoMessageFormat f ) const {
dump();
std::map<CryptoMessageFormat,FormatInfo>::const_iterator it =
d->mFormatInfoMap.find( f );
return it != d->mFormatInfoMap.end() ? it->second.splitInfos : std::vector<SplitInfo>() ;
}
std::vector<GpgME::Key> Kleo::KeyResolver::signingKeys( CryptoMessageFormat f ) const {
dump();
std::map<CryptoMessageFormat,FormatInfo>::const_iterator it =
d->mFormatInfoMap.find( f );
return it != d->mFormatInfoMap.end() ? it->second.signKeys : std::vector<GpgME::Key>() ;
}
//
//
// Private helper methods below:
//
//
std::vector<GpgME::Key> Kleo::KeyResolver::selectKeys(
const QString &person, const QString &msg, const std::vector<GpgME::Key> &selectedKeys ) const
{
const bool opgp = containsOpenPGP( mCryptoMessageFormats );
const bool x509 = containsSMIME( mCryptoMessageFormats );
QPointer<Kleo::KeySelectionDialog> dlg =
new Kleo::KeySelectionDialog(
i18n("Encryption Key Selection"),
msg, KPIMUtils::extractEmailAddress( person ), selectedKeys,
Kleo::KeySelectionDialog::ValidEncryptionKeys
& ~(opgp ? 0 : Kleo::KeySelectionDialog::OpenPGPKeys)
& ~(x509 ? 0 : Kleo::KeySelectionDialog::SMIMEKeys),
true, true ); // multi-selection and "remember choice" box
if ( dlg->exec() != QDialog::Accepted ) {
delete dlg;
return std::vector<GpgME::Key>();
}
std::vector<GpgME::Key> keys = dlg->selectedKeys();
keys.erase( std::remove_if( keys.begin(), keys.end(),
NotValidEncryptionKey ),
keys.end() );
if ( !keys.empty() && dlg->rememberSelection() ) {
setKeysForAddress( person, dlg->pgpKeyFingerprints(), dlg->smimeFingerprints() );
}
delete dlg;
return keys;
}
std::vector<GpgME::Key> Kleo::KeyResolver::getEncryptionKeys( const QString & person, bool quiet ) const {
const QString address = canonicalAddress( person ).toLower();
// First look for this person's address in the address->key dictionary
const QStringList fingerprints = keysForAddress( address );
if ( !fingerprints.empty() ) {
kDebug() << "Using encryption keys 0x"
<< fingerprints.join( QLatin1String(", 0x") )
<< "for" << person;
std::vector<GpgME::Key> keys = lookup( fingerprints );
if ( !keys.empty() ) {
// Check if all of the keys are trusted and valid encryption keys
if ( std::find_if( keys.begin(), keys.end(),
NotValidTrustedEncryptionKey ) != keys.end() ) { // -= trusted?
// not ok, let the user select: this is not conditional on !quiet,
// since it's a bug in the configuration and the user should be
// notified about it as early as possible:
keys = selectKeys( person,
i18nc("if in your language something like "
"'certificate(s)' is not possible please "
"use the plural in the translation",
"There is a problem with the "
"encryption certificate(s) for \"%1\".\n\n"
"Please re-select the certificate(s) which should "
"be used for this recipient.", person),
keys );
}
bool canceled = false;
keys = trustedOrConfirmed( keys, address, canceled );
if ( canceled )
return std::vector<GpgME::Key>();
if ( !keys.empty() )
return keys;
// keys.empty() is considered cancel by callers, so go on
}
}
// Now search all public keys for matching keys
std::vector<GpgME::Key> matchingKeys = lookup( QStringList( address ) );
matchingKeys.erase( std::remove_if( matchingKeys.begin(), matchingKeys.end(),
NotValidEncryptionKey ), matchingKeys.end() );
// if called with quite == true (from EncryptionPreferenceCounter), we only want to
// check if there are keys for this recipients, not (yet) their validity, so
// don't show the untrusted encryption key warning in that case
bool canceled = false;
if ( !quiet )
matchingKeys = trustedOrConfirmed( matchingKeys, address, canceled );
if ( canceled )
return std::vector<GpgME::Key>();
if ( quiet || matchingKeys.size() == 1 )
return matchingKeys;
// no match until now, or more than one key matches; let the user
// choose the key(s)
// FIXME: let user get the key from keyserver
return trustedOrConfirmed( selectKeys( person,
matchingKeys.empty()
? i18nc( "if in your language something like "
"'certificate(s)' is not possible please "
"use the plural in the translation",
"<qt>No valid and trusted encryption certificate was "
"found for \"%1\".<br/><br/>"
"Select the certificate(s) which should "
"be used for this recipient. If there is no suitable certificate in the list "
"you can also search for external certificates by clicking the button: "
"search for external certificates.</qt>",
Qt::escape( person ) )
: i18nc( "if in your language something like "
"'certificate(s)' is not possible please "
"use the plural in the translation",
"More than one certificate matches \"%1\".\n\n"
"Select the certificate(s) which should "
"be used for this recipient.", Qt::escape( person ) ),
matchingKeys ), address, canceled );
// we can ignore 'canceled' here, since trustedOrConfirmed() returns
// an empty vector when canceled == true, and we'd just do the same
}
std::vector<GpgME::Key> Kleo::KeyResolver::lookup( const QStringList & patterns, bool secret ) const {
if ( patterns.empty() )
return std::vector<GpgME::Key>();
kDebug() << "( \"" << patterns.join( QLatin1String("\", \"") ) << "\"," << secret << ")";
std::vector<GpgME::Key> result;
if ( mCryptoMessageFormats & (InlineOpenPGPFormat|OpenPGPMIMEFormat) )
if ( const Kleo::CryptoBackend::Protocol * p = Kleo::CryptoBackendFactory::instance()->openpgp() ) {
std::auto_ptr<Kleo::KeyListJob> job( p->keyListJob( false, false, true ) ); // use validating keylisting
if ( job.get() ) {
std::vector<GpgME::Key> keys;
job->exec( patterns, secret, keys );
result.insert( result.end(), keys.begin(), keys.end() );
}
}
if ( mCryptoMessageFormats & (SMIMEFormat|SMIMEOpaqueFormat) )
if ( const Kleo::CryptoBackend::Protocol * p = Kleo::CryptoBackendFactory::instance()->smime() ) {
std::auto_ptr<Kleo::KeyListJob> job( p->keyListJob( false, false, true ) ); // use validating keylisting
if ( job.get() ) {
std::vector<GpgME::Key> keys;
job->exec( patterns, secret, keys );
result.insert( result.end(), keys.begin(), keys.end() );
}
}
kDebug() << " returned" << result.size() << "keys";
return result;
}
void Kleo::KeyResolver::addKeys( const std::vector<Item> & items, CryptoMessageFormat f ) {
dump();
for ( std::vector<Item>::const_iterator it = items.begin() ; it != items.end() ; ++it ) {
SplitInfo si( QStringList( it->address ) );
std::remove_copy_if( it->keys.begin(), it->keys.end(),
std::back_inserter( si.keys ), IsNotForFormat( f ) );
dump();
kWarning( si.keys.empty() )
<< "Kleo::KeyResolver::addKeys(): Fix EncryptionFormatPreferenceCounter."
<< "It detected a common format, but the list of such keys for recipient \""
<< it->address << "\" is empty!";
d->mFormatInfoMap[ f ].splitInfos.push_back( si );
}
dump();
}
void Kleo::KeyResolver::addKeys( const std::vector<Item> & items ) {
dump();
for ( std::vector<Item>::const_iterator it = items.begin() ; it != items.end() ; ++it ) {
SplitInfo si( QStringList( it->address ) );
CryptoMessageFormat f = AutoFormat;
for ( unsigned int i = 0 ; i < numConcreteCryptoMessageFormats ; ++i ) {
const CryptoMessageFormat fmt = concreteCryptoMessageFormats[i];
if ( ( fmt & it->format ) &&
kdtools::any( it->keys.begin(), it->keys.end(), IsForFormat( fmt ) ) )
{
f = fmt;
break;
}
}
if ( f == AutoFormat )
kWarning() << "Something went wrong. Didn't find a format for \""
<< it->address << "\"";
else
std::remove_copy_if( it->keys.begin(), it->keys.end(),
std::back_inserter( si.keys ), IsNotForFormat( f ) );
d->mFormatInfoMap[ f ].splitInfos.push_back( si );
}
dump();
}
Kleo::KeyResolver::ContactPreferences Kleo::KeyResolver::lookupContactPreferences( const QString& address ) const
{
const Private::ContactPreferencesMap::iterator it =
d->mContactPreferencesMap.find( address );
if ( it != d->mContactPreferencesMap.end() )
return it->second;
Akonadi::ContactSearchJob *job = new Akonadi::ContactSearchJob();
job->setLimit( 1 );
job->setQuery( Akonadi::ContactSearchJob::Email, address );
job->exec();
const KABC::Addressee::List res = job->contacts();
ContactPreferences pref;
if ( !res.isEmpty() ) {
KABC::Addressee addr = res.first();
QString encryptPref = addr.custom( QLatin1String("KADDRESSBOOK"), QLatin1String("CRYPTOENCRYPTPREF") );
pref.encryptionPreference = Kleo::stringToEncryptionPreference( encryptPref );
QString signPref = addr.custom( QLatin1String("KADDRESSBOOK"), QLatin1String("CRYPTOSIGNPREF") );
pref.signingPreference = Kleo::stringToSigningPreference( signPref );
QString cryptoFormats = addr.custom( QLatin1String("KADDRESSBOOK"), QLatin1String("CRYPTOPROTOPREF") );
pref.cryptoMessageFormat = Kleo::stringToCryptoMessageFormat( cryptoFormats );
pref.pgpKeyFingerprints = addr.custom( QLatin1String("KADDRESSBOOK"), QLatin1String("OPENPGPFP") ).split( QLatin1Char(','), QString::SkipEmptyParts );
pref.smimeCertFingerprints = addr.custom( QLatin1String("KADDRESSBOOK"), QLatin1String("SMIMEFP") ).split( QLatin1Char(','), QString::SkipEmptyParts );
}
// insert into map and grab resulting iterator
d->mContactPreferencesMap.insert( std::make_pair( address, pref ) );
return pref;
}
void Kleo::KeyResolver::saveContactPreference( const QString& email, const ContactPreferences& pref ) const
{
d->mContactPreferencesMap.insert( std::make_pair( email, pref ) );
MessageComposer::SaveContactPreferenceJob *saveContactPreferencesJob = new MessageComposer::SaveContactPreferenceJob(email, pref);
saveContactPreferencesJob->start();
}
Kleo::KeyResolver::ContactPreferences::ContactPreferences()
: encryptionPreference( UnknownPreference ),
signingPreference( UnknownSigningPreference ),
cryptoMessageFormat( AutoFormat )
{
}
QStringList Kleo::KeyResolver::keysForAddress( const QString & address ) const {
if( address.isEmpty() ) {
return QStringList();
}
const QString addr = canonicalAddress( address ).toLower();
const ContactPreferences pref = lookupContactPreferences( addr );
return pref.pgpKeyFingerprints + pref.smimeCertFingerprints;
}
void Kleo::KeyResolver::setKeysForAddress( const QString& address, const QStringList& pgpKeyFingerprints, const QStringList& smimeCertFingerprints ) const {
if( address.isEmpty() ) {
return;
}
const QString addr = canonicalAddress( address ).toLower();
ContactPreferences pref = lookupContactPreferences( addr );
pref.pgpKeyFingerprints = pgpKeyFingerprints;
pref.smimeCertFingerprints = smimeCertFingerprints;
saveContactPreference( addr, pref );
}
bool Kleo::KeyResolver::encryptToSelf() const
{
return mEncryptToSelf;
}
bool Kleo::KeyResolver::showApprovalDialog() const
{
return mShowApprovalDialog;
}
int Kleo::KeyResolver::encryptKeyNearExpiryWarningThresholdInDays() const
{
return mEncryptKeyNearExpiryWarningThreshold;
}
int Kleo::KeyResolver::signingKeyNearExpiryWarningThresholdInDays() const
{
return mSigningKeyNearExpiryWarningThreshold;
}
int Kleo::KeyResolver::encryptRootCertNearExpiryWarningThresholdInDays() const
{
return mEncryptRootCertNearExpiryWarningThreshold;
}
int Kleo::KeyResolver::signingRootCertNearExpiryWarningThresholdInDays() const
{
return mSigningRootCertNearExpiryWarningThreshold;
}
int Kleo::KeyResolver::encryptChainCertNearExpiryWarningThresholdInDays() const
{
return mEncryptChainCertNearExpiryWarningThreshold;
}
int Kleo::KeyResolver::signingChainCertNearExpiryWarningThresholdInDays() const
{
return mSigningChainCertNearExpiryWarningThreshold;
}
|