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
|
/*---------------------------------------------------------------------\
| ____ _ __ __ ___ |
| |__ / \ / / . \ . \ |
| / / \ V /| _/ _/ |
| / /__ | | | | | | |
| /_____||_| |_| |_| |
| |
\---------------------------------------------------------------------*/
#include "KeyManager.h"
#include "KeyRingException.h"
#include <zypp-core/fs/PathInfo.h>
#include <zypp-core/base/Logger.h>
#include <zypp-core/fs/TmpPath.h>
#include <zypp-core/base/String.h>
#include <zypp-core/AutoDispose.h>
#include <boost/thread/once.hpp>
#include <boost/interprocess/smart_ptr/scoped_ptr.hpp>
#include <gpgme.h>
#include <stdio.h>
using std::endl;
#undef ZYPP_BASE_LOGGER_LOGGROUP
#define ZYPP_BASE_LOGGER_LOGGROUP "zypp::gpg"
///////////////////////////////////////////////////////////////////
namespace zypp
{
///////////////////////////////////////////////////////////////////
namespace
{
// @TODO [threading]
// make sure to call the init code of gpgme only once
// this might need to be moved to a different location when
// threads are introduced into libzypp
boost::once_flag gpgme_init_once = BOOST_ONCE_INIT;
void initGpgme ()
{
const char *version = gpgme_check_version(NULL);
if ( version )
{
MIL << "Initialized libgpgme version: " << version << endl;
}
else
{
MIL << "Initialized libgpgme with unknown version" << endl;
}
}
//using boost::interprocess pointer because it allows a custom deleter
using GpgmeDataPtr = boost::interprocess::scoped_ptr<gpgme_data, boost::function<void (gpgme_data_t)>>;
using GpgmeKeyPtr = boost::interprocess::scoped_ptr<_gpgme_key, boost::function<void (gpgme_key_t)>>;
using FILEPtr = boost::interprocess::scoped_ptr<FILE, boost::function<int (FILE *)>>;
struct GpgmeErr
{
GpgmeErr( gpgme_error_t err_r = GPG_ERR_NO_ERROR )
: _err( err_r )
{}
operator gpgme_error_t() const { return _err; }
private:
gpgme_error_t _err;
};
std::ostream & operator<<( std::ostream & str, const GpgmeErr & obj )
{ return str << "<" << gpgme_strsource(obj) << "> " << gpgme_strerror(obj); }
/** \relates gpgme_import_result_t Stream output. */
std::ostream & operator<<( std::ostream & str, const _gpgme_op_import_result & obj )
{
str << "gpgme_op_import_result {" << endl;
str << " " << obj.considered << " The total number of considered keys." << endl;
str << " " << obj.no_user_id << " The number of keys without user ID." << endl;
str << " " << obj.imported << " The total number of imported keys." << endl;
str << " " << obj.imported_rsa << " imported RSA keys." << endl;
str << " " << obj.unchanged << " unchanged keys." << endl;
str << " " << obj.new_user_ids << " new user IDs." << endl;
str << " " << obj.new_sub_keys << " new sub keys." << endl;
str << " " << obj.new_signatures << " new signatures." << endl;
str << " " << obj.new_revocations << " new revocations." << endl;
str << " " << obj.secret_read << " secret keys read." << endl;
str << " " << obj.secret_imported << " imported secret keys." << endl;
str << " " << obj.secret_unchanged << " unchanged secret keys." << endl;
str << " " << obj.not_imported << " keys not imported." << endl;
for ( gpgme_import_status_t p = obj.imports; p; p = p->next )
{
str << " - " << p->fpr << ": " << p->result << endl;
}
// In V.1.11: str << " " << obj.skipped_v3_keys << " skipped v3 keys." << endl;
return str << "}";
}
} // namespace
///////////////////////////////////////////////////////////////////
struct GpgmeException : public KeyRingException
{
GpgmeException( const std::string & in_r, const GpgmeErr & err_r )
: KeyRingException( str::Format( "libgpgme error in '%1%': %2%" ) % in_r % err_r )
{}
};
class KeyManagerCtx::Impl
{
public:
Impl()
{ boost::call_once( gpgme_init_once, initGpgme ); }
Impl(const Impl &) = delete;
Impl(Impl &&) = delete;
Impl &operator=(const Impl &) = delete;
Impl &operator=(Impl &&) = delete;
~Impl() {
if (_ctx)
gpgme_release(_ctx);
}
/** Return all fingerprints found in \a signature_r. */
std::list<std::string> readSignaturesFprs( const Pathname & signature_r )
{ return readSignaturesFprsOptVerify( signature_r ); }
/** Return all fingerprints found in \a signature_r. */
std::list<std::string> readSignaturesFprs( const ByteArray & signature_r )
{ return readSignaturesFprsOptVerify( signature_r ); }
/** Tries to verify the \a file_r using \a signature_r. */
bool verifySignaturesFprs( const Pathname & file_r, const Pathname & signature_r )
{
bool verify = false;
readSignaturesFprsOptVerify( signature_r, file_r, &verify );
return verify;
}
template< typename Callback >
bool importKey(GpgmeDataPtr &data, Callback &&calcDataSize );
gpgme_ctx_t _ctx { nullptr };
bool _volatile { false }; ///< readKeyFromFile workaround bsc#1140670
private:
/** Return all fingerprints found in \a signature_r and optionally verify the \a file_r on the fly.
*
* If \a verify_r is not a \c nullptr, log verification errors and return
* whether all signatures are good.
*/
std::list<std::string> readSignaturesFprsOptVerify( const Pathname & signature_r, const Pathname & file_r = "/dev/null", bool * verify_r = nullptr );
std::list<std::string> readSignaturesFprsOptVerify( const ByteArray& keyData_r, const Pathname & file_r = "/dev/null", bool * verify_r = nullptr );
std::list<std::string> readSignaturesFprsOptVerify( GpgmeDataPtr &sigData, const Pathname & file_r = "/dev/null", bool * verify_r = nullptr );
};
std::list<std::string> KeyManagerCtx::Impl::readSignaturesFprsOptVerify( const Pathname & signature_r, const Pathname & file_r, bool * verify_r )
{
//lets be pessimistic
if ( verify_r )
*verify_r = false;
if (!PathInfo( signature_r ).isExist())
return std::list<std::string>();
FILEPtr sigFile(fopen(signature_r.c_str(), "rb"), fclose);
if (!sigFile) {
ERR << "Unable to open signature file '" << signature_r << "'" <<endl;
return std::list<std::string>();
}
GpgmeDataPtr sigData(nullptr, gpgme_data_release);
GpgmeErr err = gpgme_data_new_from_stream (&sigData.get(), sigFile.get());
if (err) {
ERR << err << endl;
return std::list<std::string>();
}
return readSignaturesFprsOptVerify( sigData, file_r, verify_r );
}
std::list<std::string> KeyManagerCtx::Impl::readSignaturesFprsOptVerify( const ByteArray &keyData_r, const filesystem::Pathname &file_r, bool *verify_r )
{
//lets be pessimistic
if ( verify_r )
*verify_r = false;
GpgmeDataPtr sigData(nullptr, gpgme_data_release);
GpgmeErr err = gpgme_data_new_from_mem(&sigData.get(), keyData_r.data(), keyData_r.size(), 1 );
if (err) {
ERR << err << endl;
return std::list<std::string>();
}
return readSignaturesFprsOptVerify( sigData, file_r, verify_r );
}
std::list<std::string> KeyManagerCtx::Impl::readSignaturesFprsOptVerify(GpgmeDataPtr &sigData, const filesystem::Pathname &file_r, bool *verify_r)
{
//lets be pessimistic
if ( verify_r )
*verify_r = false;
FILEPtr dataFile(fopen(file_r.c_str(), "rb"), fclose);
if (!dataFile)
return std::list<std::string>();
GpgmeDataPtr fileData(nullptr, gpgme_data_release);
GpgmeErr err = gpgme_data_new_from_stream (&fileData.get(), dataFile.get());
if (err) {
ERR << err << endl;
return std::list<std::string>();
}
err = gpgme_op_verify(_ctx, sigData.get(), fileData.get(), NULL);
if (err != GPG_ERR_NO_ERROR) {
ERR << err << endl;
return std::list<std::string>();
}
gpgme_verify_result_t res = gpgme_op_verify_result(_ctx);
if (!res || !res->signatures) {
ERR << "Unable to read signature fingerprints" <<endl;
return std::list<std::string>();
}
bool foundBadSignature = false;
bool foundGoodSignature = false;
std::list<std::string> signatures;
for ( gpgme_signature_t sig = res->signatures; sig; sig = sig->next ) {
if ( sig->fpr )
{
// bsc#1100427: With libgpgme11-1.11.0 and if a recent gpg version was used
// to create the signature, the field may contain the full fingerprint, but
// we're expected to return the ID.
// [https://github.com/gpg/gpgme/commit/478d1650bbef84958ccce439fac982ef57b16cd0]
std::string id( sig->fpr );
if ( id.size() > 16 )
id = id.substr( id.size()-16 );
DBG << "Found signature with ID: " << id << " in " << file_r << std::endl;
signatures.push_back( std::move(id) );
}
if ( verify_r && sig->status != GPG_ERR_NO_ERROR ) {
const auto status = gpgme_err_code(sig->status);
// bsc#1180721: libgpgme started to return signatures of unknown keys, which breaks
// our workflow when verifying files that have multiple signatures, including some that are
// not in the trusted keyring. We should not fail if we have unknown or expired keys and at least a good one.
// We will however keep the behaviour of failing if we find a bad signatures even if others are good.
if ( status != GPG_ERR_KEY_EXPIRED && status != GPG_ERR_NO_PUBKEY )
{
WAR << "Failed signature check: " << file_r << " " << GpgmeErr(sig->status) << endl;
if ( !foundBadSignature )
foundBadSignature = true;
}
else
{
WAR << "Legacy: Ignore expired or unknown key: " << file_r << " " << GpgmeErr(sig->status) << endl;
// for now treat expired keys as good signature
if ( status == GPG_ERR_KEY_EXPIRED )
foundGoodSignature = true;
}
} else {
foundGoodSignature = true;
}
}
if ( verify_r )
*verify_r = (!foundBadSignature) && foundGoodSignature;
return signatures;
}
KeyManagerCtx::KeyManagerCtx()
: _pimpl( new Impl )
{}
KeyManagerCtx KeyManagerCtx::createForOpenPGP()
{
static Pathname tmppath( zypp::myTmpDir() / "PublicKey" );
filesystem::assert_dir( tmppath );
KeyManagerCtx ret { createForOpenPGP( tmppath ) };
ret._pimpl->_volatile = true; // readKeyFromFile workaround bsc#1140670
return ret;
}
KeyManagerCtx KeyManagerCtx::createForOpenPGP( const Pathname & keyring_r )
{
DBG << "createForOpenPGP(" << keyring_r << ")" << endl;
KeyManagerCtx ret;
gpgme_ctx_t & ctx { ret._pimpl->_ctx };
// create the context
GpgmeErr err = gpgme_new( &ctx );
if ( err != GPG_ERR_NO_ERROR )
ZYPP_THROW( GpgmeException( "gpgme_new", err ) );
// use OpenPGP
err = gpgme_set_protocol( ctx, GPGME_PROTOCOL_OpenPGP );
if ( err != GPG_ERR_NO_ERROR )
ZYPP_THROW( GpgmeException( "gpgme_set_protocol", err ) );
if ( !keyring_r.empty() ) {
// get engine information to read current state
gpgme_engine_info_t enginfo = gpgme_ctx_get_engine_info( ctx );
if ( !enginfo )
ZYPP_THROW( GpgmeException( "gpgme_ctx_get_engine_info", err ) );
err = gpgme_ctx_set_engine_info( ctx, GPGME_PROTOCOL_OpenPGP, enginfo->file_name, keyring_r.c_str() );
if ( err != GPG_ERR_NO_ERROR )
ZYPP_THROW( GpgmeException( "gpgme_ctx_set_engine_info", err ) );
}
return ret;
}
Pathname KeyManagerCtx::homedir() const
{
Pathname ret;
if ( gpgme_engine_info_t enginfo = gpgme_ctx_get_engine_info( _pimpl->_ctx ) )
ret = enginfo->home_dir;
return ret;
}
std::list<PublicKeyData> KeyManagerCtx::listKeys()
{
std::list<PublicKeyData> ret;
GpgmeErr err = GPG_ERR_NO_ERROR;
// Reset gpgme_keylist_mode on return!
AutoDispose<gpgme_keylist_mode_t> guard { gpgme_get_keylist_mode( _pimpl->_ctx ), bind( &gpgme_set_keylist_mode, _pimpl->_ctx, _1 ) };
// Let listed keys include signatures (required if PublicKeyData are created from the key)
if ( (err = gpgme_set_keylist_mode( _pimpl->_ctx, GPGME_KEYLIST_MODE_LOCAL | GPGME_KEYLIST_MODE_SIGS )) != GPG_ERR_NO_ERROR ) {
ERR << "gpgme_set_keylist_mode: " << err << endl;
return ret;
}
if ( (err = gpgme_op_keylist_start( _pimpl->_ctx, NULL, 0 )) != GPG_ERR_NO_ERROR ) {
ERR << "gpgme_op_keylist_start: " << err << endl;
return ret;
}
// Close list operation on return!
AutoDispose<gpgme_ctx_t> guard2 { _pimpl->_ctx, &gpgme_op_keylist_end };
AutoDispose<gpgme_key_t> key { nullptr, &gpgme_key_release };
for ( ; gpgme_op_keylist_next( _pimpl->_ctx, &(*key) ) == GPG_ERR_NO_ERROR; key.getDispose()( key ) ) {
PublicKeyData data { PublicKeyData::fromGpgmeKey( key ) };
if ( data )
ret.push_back( data );
}
return ret;
}
std::list<PublicKeyData> KeyManagerCtx::readKeyFromFile( const Pathname & keyfile_r )
{
// bsc#1140670: GPGME does not support reading keys from a keyfile using
// gpgme_data_t and gpgme_op_keylist_from_data_start. Despite GPGME_KEYLIST_MODE_SIGS
// the signatures are missing, but we need them to create proper PublicKeyData objects.
// While this is not resolved, we read into a temp. keyring. Impl::_volatile helps
// to detect whether we can clear and import into the current context or need to
// create a temp. one.
std::list<PublicKeyData> ret;
if ( _pimpl->_volatile ) {
// in a volatile context we can simple clear the keyring...
filesystem::clean_dir( homedir() );
if ( importKey( keyfile_r ) )
ret = listKeys();
} else {
// read in a volatile context
ret = createForOpenPGP().readKeyFromFile( keyfile_r );
}
return ret;
}
bool KeyManagerCtx::verify(const Pathname &file, const Pathname &signature)
{
return _pimpl->verifySignaturesFprs(file, signature);
}
bool KeyManagerCtx::exportKey(const std::string &id, std::ostream &stream)
{
GpgmeErr err = GPG_ERR_NO_ERROR;
GpgmeKeyPtr foundKey;
//search for requested key id
gpgme_key_t key = nullptr;
gpgme_op_keylist_start(_pimpl->_ctx, NULL, 0);
while (!(err = gpgme_op_keylist_next(_pimpl->_ctx, &key))) {
if (key->subkeys && id == str::asString(key->subkeys->keyid)) {
GpgmeKeyPtr(key, gpgme_key_release).swap(foundKey);
break;
}
gpgme_key_release(key);
}
gpgme_op_keylist_end(_pimpl->_ctx);
if (!foundKey) {
WAR << "Key " << id << "not found" << endl;
return false;
}
//function needs a array of keys to export
gpgme_key_t keyarray[2];
keyarray[0] = foundKey.get();
keyarray[1] = NULL;
GpgmeDataPtr out(nullptr, gpgme_data_release);
err = gpgme_data_new (&out.get());
if (err) {
ERR << err << endl;
return false;
}
//format as ascii armored
gpgme_set_armor (_pimpl->_ctx, 1);
// bsc#1179222: Remove outdated self signatures when exporting the key.
// The keyring does not order the signatures when multiple versions of the
// same key are imported. Rpm however uses the 1st to compute the -release
// of the gpg-pubkey. So we export only the latest to get a proper-release.
err = gpgme_op_export_keys (_pimpl->_ctx, keyarray, GPGME_EXPORT_MODE_MINIMAL, out.get());
if (!err) {
int ret = gpgme_data_seek (out.get(), 0, SEEK_SET);
if (ret) {
ERR << "Unable to seek in exported key data" << endl;
return false;
}
const int bufsize = 512;
char buf[bufsize + 1];
while ((ret = gpgme_data_read(out.get(), buf, bufsize)) > 0) {
stream.write(buf, ret);
}
//failed to read from buffer
if (ret < 0) {
ERR << "Unable to read exported key data" << endl;
return false;
}
} else {
ERR << "Error exporting key: "<< err << endl;
return false;
}
//if we reach this point export was successful
return true;
}
bool KeyManagerCtx::importKey(const Pathname &keyfile)
{
if ( !PathInfo( keyfile ).isExist() ) {
ERR << "Keyfile '" << keyfile << "' does not exist.";
return false;
}
GpgmeDataPtr data(nullptr, gpgme_data_release);
GpgmeErr err;
err = gpgme_data_new_from_file(&data.get(), keyfile.c_str(), 1);
if (err) {
ERR << "Error importing key: "<< err << endl;
return false;
}
return _pimpl->importKey( data, [&](){ return PathInfo(keyfile).size(); } );
}
bool KeyManagerCtx::importKey( const ByteArray &keydata )
{
GpgmeDataPtr data(nullptr, gpgme_data_release);
GpgmeErr err;
err = gpgme_data_new_from_mem( &data.get(), keydata.data(), keydata.size(), 1);
if (err) {
ERR << "Error importing key: "<< err << endl;
return false;
}
return _pimpl->importKey( data, [&](){ return keydata.size(); } );
}
template<typename Callback>
bool KeyManagerCtx::Impl::importKey(GpgmeDataPtr &data, Callback &&calcDataSize)
{
GpgmeErr err;
err = gpgme_op_import( _ctx, data.get() );
if (err) {
ERR << "Error importing key: "<< err << endl;
return false;
}
// Work around bsc#1127220 [libgpgme] no error upon incomplete import due to signal received.
// We need this error, otherwise RpmDb will report the missing keys as 'probably v3'.
if ( gpgme_import_result_t res = gpgme_op_import_result(_ctx) )
{
if ( ! res->considered && std::forward<Callback>(calcDataSize)() )
{
DBG << *res << endl;
ERR << "Error importing key: No keys considered (bsc#1127220, [libgpgme] signal received?)" << endl;
return false;
}
}
return (err == GPG_ERR_NO_ERROR);
}
bool KeyManagerCtx::deleteKey(const std::string &id)
{
gpgme_key_t key = nullptr;
GpgmeErr err = GPG_ERR_NO_ERROR;
gpgme_op_keylist_start(_pimpl->_ctx, NULL, 0);
while (!(err = gpgme_op_keylist_next(_pimpl->_ctx, &key))) {
if (key->subkeys && id == str::asString(key->subkeys->keyid)) {
err = gpgme_op_delete(_pimpl->_ctx, key, 0);
gpgme_key_release(key);
gpgme_op_keylist_end(_pimpl->_ctx);
if (err) {
ERR << "Error deleting key: "<< err << endl;
return false;
}
return true;
}
gpgme_key_release(key);
}
gpgme_op_keylist_end(_pimpl->_ctx);
WAR << "Key: '"<< id << "' not found." << endl;
return false;
}
std::list<std::string> KeyManagerCtx::readSignatureFingerprints(const Pathname &signature)
{ return _pimpl->readSignaturesFprs(signature); }
std::list<std::string> KeyManagerCtx::readSignatureFingerprints(const ByteArray &keyData)
{ return _pimpl->readSignaturesFprs(keyData); }
} // namespace zypp
///////////////////////////////////////////////////////////////////
|