libzypp  17.6.2
KeyRing.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #include <iostream>
13 #include <fstream>
14 #include <sys/file.h>
15 #include <cstdio>
16 #include <unistd.h>
17 
18 #include "zypp/TmpPath.h"
19 #include "zypp/ZYppFactory.h"
20 #include "zypp/ZYpp.h"
21 
22 #include "zypp/base/LogTools.h"
23 #include "zypp/base/IOStream.h"
24 #include "zypp/base/String.h"
25 #include "zypp/base/Regex.h"
26 #include "zypp/base/Gettext.h"
27 #include "zypp/base/WatchFile.h"
28 #include "zypp/PathInfo.h"
29 #include "zypp/KeyRing.h"
30 #include "zypp/ExternalProgram.h"
31 #include "zypp/TmpPath.h"
32 #include "zypp/ZYppCallbacks.h" // JobReport::instance
33 #include "zypp/KeyManager.h"
34 
35 using std::endl;
36 
37 #undef ZYPP_BASE_LOGGER_LOGGROUP
38 #define ZYPP_BASE_LOGGER_LOGGROUP "zypp::KeyRing"
39 
41 namespace zypp
42 {
43 
44  IMPL_PTR_TYPE(KeyRing);
45 
46  namespace
47  {
48  KeyRing::DefaultAccept _keyRingDefaultAccept( KeyRing::ACCEPT_NOTHING );
49  }
50 
51  KeyRing::DefaultAccept KeyRing::defaultAccept()
52  { return _keyRingDefaultAccept; }
53 
54  void KeyRing::setDefaultAccept( DefaultAccept value_r )
55  {
56  MIL << "Set new KeyRing::DefaultAccept: " << value_r << endl;
57  _keyRingDefaultAccept = value_r;
58  }
59 
60  void KeyRingReport::infoVerify( const std::string & file_r, const PublicKeyData & keyData_r, const KeyContext & keycontext )
61  {}
62 
63  bool KeyRingReport::askUserToAcceptUnsignedFile( const std::string & file, const KeyContext & keycontext )
64  { return _keyRingDefaultAccept.testFlag( KeyRing::ACCEPT_UNSIGNED_FILE ); }
65 
67  KeyRingReport::askUserToAcceptKey( const PublicKey & key, const KeyContext & keycontext )
68  {
69  if ( _keyRingDefaultAccept.testFlag( KeyRing::TRUST_KEY_TEMPORARILY ) )
70  return KEY_TRUST_TEMPORARILY;
71  if ( _keyRingDefaultAccept.testFlag( KeyRing::TRUST_AND_IMPORT_KEY ) )
72  return KEY_TRUST_AND_IMPORT;
73  return KEY_DONT_TRUST;
74  }
75 
76  bool KeyRingReport::askUserToAcceptUnknownKey( const std::string & file, const std::string & id, const KeyContext & keycontext )
77  { return _keyRingDefaultAccept.testFlag( KeyRing::ACCEPT_UNKNOWNKEY ); }
78 
79  bool KeyRingReport::askUserToAcceptVerificationFailed( const std::string & file, const PublicKey & key, const KeyContext & keycontext )
80  { return _keyRingDefaultAccept.testFlag( KeyRing::ACCEPT_VERIFICATION_FAILED ); }
81 
82  bool KeyRingReport::askUserToAcceptPackageKey(const PublicKey &key_r, const KeyContext &keycontext_r)
83  {
85  data.set("PublicKey", key_r);
86  data.set("KeyContext", keycontext_r);
87  report(data);
88 
89  if ( data.hasvalue("TrustKey") )
90  return data.get<bool>("TrustKey");
91  return false;
92  }
93 
94  namespace
95  {
103  struct CachedPublicKeyData : private base::NonCopyable
104  {
105  const std::list<PublicKeyData> & operator()( const Pathname & keyring_r ) const
106  { return getData( keyring_r ); }
107 
108  void setDirty( const Pathname & keyring_r )
109  { _cacheMap[keyring_r].setDirty(); }
110 
111  private:
112  struct Cache
113  {
114  Cache() {}
115 
116  void setDirty()
117  {
118  _keyringK.reset();
119  _keyringP.reset();
120  }
121 
122  void assertCache( const Pathname & keyring_r )
123  {
124  // .kbx since gpg2-2.1
125  if ( !_keyringK )
126  _keyringK.reset( new WatchFile( keyring_r/"pubring.kbx", WatchFile::NO_INIT ) );
127  if ( !_keyringP )
128  _keyringP.reset( new WatchFile( keyring_r/"pubring.gpg", WatchFile::NO_INIT ) );
129  }
130 
131  bool hasChanged() const
132  {
133  bool k = _keyringK->hasChanged(); // be sure both files are checked
134  bool p = _keyringP->hasChanged();
135  return k || p;
136  }
137 
138  std::list<PublicKeyData> _data;
139 
140  private:
143  };
144 
145  typedef std::map<Pathname,Cache> CacheMap;
146 
147  const std::list<PublicKeyData> & getData( const Pathname & keyring_r ) const
148  {
149  Cache & cache( _cacheMap[keyring_r] );
150  // init new cache entry
151  cache.assertCache( keyring_r );
152  return getData( keyring_r, cache );
153  }
154 
155  const std::list<PublicKeyData> & getData( const Pathname & keyring_r, Cache & cache_r ) const
156  {
157  if ( cache_r.hasChanged() ) {
159  if (ctx) {
160  if (ctx->setHomedir(keyring_r)) {
161  std::list<PublicKeyData> foundKeys = ctx->listKeys();
162  cache_r._data.swap(foundKeys);
163  }
164  }
165  MIL << "Found keys: " << cache_r._data << endl;
166  }
167  return cache_r._data;
168  }
169 
170  mutable CacheMap _cacheMap;
171  };
173  }
174 
176  //
177  // CLASS NAME : KeyRing::Impl
178  //
181  {
182  Impl( const Pathname & baseTmpDir )
183  : _trusted_tmp_dir( baseTmpDir, "zypp-trusted-kr" )
184  , _general_tmp_dir( baseTmpDir, "zypp-general-kr" )
185  , _base_dir( baseTmpDir )
186  {
187  MIL << "Current KeyRing::DefaultAccept: " << _keyRingDefaultAccept << endl;
188  }
189 
190  void importKey( const PublicKey & key, bool trusted = false );
191  void multiKeyImport( const Pathname & keyfile_r, bool trusted_r = false );
192  void deleteKey( const std::string & id, bool trusted );
193 
194  std::string readSignatureKeyId( const Pathname & signature );
195 
196  bool isKeyTrusted( const std::string & id )
197  { return bool(publicKeyExists( id, trustedKeyRing() )); }
198  bool isKeyKnown( const std::string & id )
199  { return publicKeyExists( id, trustedKeyRing() ) || publicKeyExists( id, generalKeyRing() ); }
200 
201  std::list<PublicKey> trustedPublicKeys()
202  { return publicKeys( trustedKeyRing() ); }
203  std::list<PublicKey> publicKeys()
204  { return publicKeys( generalKeyRing() ); }
205 
206  const std::list<PublicKeyData> & trustedPublicKeyData()
207  { return publicKeyData( trustedKeyRing() ); }
208  const std::list<PublicKeyData> & publicKeyData()
209  { return publicKeyData( generalKeyRing() ); }
210 
211  void dumpPublicKey( const std::string & id, bool trusted, std::ostream & stream )
212  { dumpPublicKey( id, ( trusted ? trustedKeyRing() : generalKeyRing() ), stream ); }
213 
215  { return exportKey( keyData, generalKeyRing() ); }
217  { return exportKey( keyData, trustedKeyRing() ); }
218 
219  bool verifyFileSignatureWorkflow( const Pathname & file, const std::string & filedesc, const Pathname & signature, bool & sigValid_r, const KeyContext & keycontext = KeyContext());
220 
221  bool verifyFileSignature( const Pathname & file, const Pathname & signature )
222  { return verifyFile( file, signature, generalKeyRing() ); }
223  bool verifyFileTrustedSignature( const Pathname & file, const Pathname & signature )
224  { return verifyFile( file, signature, trustedKeyRing() ); }
225 
226  PublicKeyData trustedPublicKeyExists( const std::string & id )
227  { return publicKeyExists(id, trustedKeyRing());}
228 
229  private:
230  bool verifyFile( const Pathname & file, const Pathname & signature, const Pathname & keyring );
231  void importKey( const Pathname & keyfile, const Pathname & keyring );
232 
233  PublicKey exportKey( const std::string & id, const Pathname & keyring );
234  PublicKey exportKey( const PublicKeyData & keyData, const Pathname & keyring );
235  PublicKey exportKey( const PublicKey & key, const Pathname & keyring )
236  { return exportKey( key.keyData(), keyring ); }
237 
238  void dumpPublicKey( const std::string & id, const Pathname & keyring, std::ostream & stream );
239  filesystem::TmpFile dumpPublicKeyToTmp( const std::string & id, const Pathname & keyring );
240 
241  void deleteKey( const std::string & id, const Pathname & keyring );
242 
243  std::list<PublicKey> publicKeys( const Pathname & keyring);
244  const std::list<PublicKeyData> & publicKeyData( const Pathname & keyring )
245  { return cachedPublicKeyData( keyring ); }
246 
248  PublicKeyData publicKeyExists( const std::string & id, const Pathname & keyring );
249 
250  const Pathname generalKeyRing() const
251  { return _general_tmp_dir.path(); }
252  const Pathname trustedKeyRing() const
253  { return _trusted_tmp_dir.path(); }
254 
255  // Used for trusted and untrusted keyrings
259 
260  private:
266  CachedPublicKeyData cachedPublicKeyData;
267  };
269 
270  namespace
271  {
273  struct ImportKeyCBHelper
274  {
275  void operator()( const PublicKey & key_r )
276  {
277  try {
278  _rpmdbEmitSignal->trustedKeyAdded( key_r );
279  _emitSignal->trustedKeyAdded( key_r );
280  }
281  catch ( const Exception & excp )
282  {
283  ERR << "Could not import key into rpmdb: " << excp << endl;
284  // TODO: JobReport as hotfix for bsc#1057188; should bubble up and go through some callback
286  }
287  }
288 
289  private:
290  callback::SendReport<target::rpm::KeyRingSignals> _rpmdbEmitSignal;
291  callback::SendReport<KeyRingSignals> _emitSignal;
292  };
293  } // namespace
294 
295 
296  void KeyRing::Impl::importKey( const PublicKey & key, bool trusted )
297  {
298  importKey( key.path(), trusted ? trustedKeyRing() : generalKeyRing() );
299  MIL << "Imported key " << key << " to " << (trusted ? "trustedKeyRing" : "generalKeyRing" ) << endl;
300 
301  if ( trusted )
302  {
303  ImportKeyCBHelper emitSignal;
304  if ( key.hiddenKeys().empty() )
305  {
306  emitSignal( key );
307  }
308  else
309  {
310  // multiple keys: Export individual keys ascii armored to import in rpmdb
311  emitSignal( exportKey( key, trustedKeyRing() ) );
312  for ( const PublicKeyData & hkey : key.hiddenKeys() )
313  emitSignal( exportKey( hkey, trustedKeyRing() ) );
314  }
315  }
316  }
317 
318  void KeyRing::Impl::multiKeyImport( const Pathname & keyfile_r, bool trusted_r )
319  {
320  importKey( keyfile_r, trusted_r ? trustedKeyRing() : generalKeyRing() );
321  }
322 
323  void KeyRing::Impl::deleteKey( const std::string & id, bool trusted )
324  {
325  PublicKeyData keyDataToDel( publicKeyExists( id, trusted ? trustedKeyRing() : generalKeyRing() ) );
326  if ( ! keyDataToDel )
327  {
328  WAR << "Key to delete [" << id << "] is not in " << (trusted ? "trustedKeyRing" : "generalKeyRing" ) << endl;
329  return;
330  }
331  deleteKey( id, trusted ? trustedKeyRing() : generalKeyRing() );
332  MIL << "Deleted key [" << id << "] from " << (trusted ? "trustedKeyRing" : "generalKeyRing" ) << endl;
333 
334  if ( trusted )
335  try {
336  PublicKey key( keyDataToDel );
337 
339  rpmdbEmitSignal->trustedKeyRemoved( key );
340 
342  emitSignal->trustedKeyRemoved( key );
343  }
344  catch ( const Exception & excp )
345  {
346  ERR << "Could not delete key from rpmmdb: " << excp << endl;
347  // TODO: JobReport as hotfix for bsc#1057188; should bubble up and go through some callback
349  }
350  }
351 
352  PublicKeyData KeyRing::Impl::publicKeyExists( const std::string & id, const Pathname & keyring )
353  {
354  PublicKeyData ret;
355  for ( const PublicKeyData & key : publicKeyData( keyring ) )
356  {
357  if ( key.providesKey( id ) )
358  {
359  ret = key;
360  break;
361  }
362  }
363  MIL << (ret ? "Found" : "No") << " key [" << id << "] in keyring " << keyring << endl;
364  return ret;
365  }
366 
367  PublicKey KeyRing::Impl::exportKey( const PublicKeyData & keyData, const Pathname & keyring )
368  {
369  return PublicKey( dumpPublicKeyToTmp( keyData.id(), keyring ), keyData );
370  }
371 
372  PublicKey KeyRing::Impl::exportKey( const std::string & id, const Pathname & keyring )
373  {
374  PublicKeyData keyData( publicKeyExists( id, keyring ) );
375  if ( keyData )
376  return PublicKey( dumpPublicKeyToTmp( keyData.id(), keyring ), keyData );
377 
378  // Here: key not found
379  WAR << "No key [" << id << "] to export from " << keyring << endl;
380  return PublicKey();
381  }
382 
383 
384  void KeyRing::Impl::dumpPublicKey( const std::string & id, const Pathname & keyring, std::ostream & stream )
385  {
387  if (!ctx || !ctx->setHomedir(keyring))
388  return;
389  ctx->exportKey(id, stream);
390  }
391 
392  filesystem::TmpFile KeyRing::Impl::dumpPublicKeyToTmp( const std::string & id, const Pathname & keyring )
393  {
394  filesystem::TmpFile tmpFile( _base_dir, "pubkey-"+id+"-" );
395  MIL << "Going to export key [" << id << "] from " << keyring << " to " << tmpFile.path() << endl;
396 
397  std::ofstream os( tmpFile.path().c_str() );
398  dumpPublicKey( id, keyring, os );
399  os.close();
400  return tmpFile;
401  }
402 
403  bool KeyRing::Impl::verifyFileSignatureWorkflow( const Pathname & file, const std::string & filedesc, const Pathname & signature, bool & sigValid_r, const KeyContext & context )
404  {
405  sigValid_r = false; // set true if signature is actually successfully validated!
406 
408  MIL << "Going to verify signature for " << filedesc << " ( " << file << " ) with " << signature << endl;
409 
410  // if signature does not exists, ask user if he wants to accept unsigned file.
411  if( signature.empty() || (!PathInfo( signature ).isExist()) )
412  {
413  bool res = report->askUserToAcceptUnsignedFile( filedesc, context );
414  MIL << "askUserToAcceptUnsignedFile: " << res << endl;
415  return res;
416  }
417 
418  // get the id of the signature (it might be a subkey id!)
419  std::string id = readSignatureKeyId( signature );
420 
421  // does key exists in trusted keyring
422  PublicKeyData trustedKeyData( publicKeyExists( id, trustedKeyRing() ) );
423  if ( trustedKeyData )
424  {
425  MIL << "Key is trusted: " << trustedKeyData << endl;
426 
427  // lets look if there is an updated key in the
428  // general keyring
429  PublicKeyData generalKeyData( publicKeyExists( id, generalKeyRing() ) );
430  if ( generalKeyData )
431  {
432  // bnc #393160: Comment #30: Compare at least the fingerprint
433  // in case an attacker created a key the the same id.
434  //
435  // FIXME: bsc#1008325: For keys using subkeys, we'd actually need
436  // to compare the subkey sets, to tell whether a key was updated.
437  // because created() remains unchanged if the primary key is not touched.
438  // For now we wait until a new subkey signs the data and treat it as a
439  // new key (else part below).
440  if ( trustedKeyData.fingerprint() == generalKeyData.fingerprint()
441  && trustedKeyData.created() < generalKeyData.created() )
442  {
443  MIL << "Key was updated. Saving new version into trusted keyring: " << generalKeyData << endl;
444  importKey( exportKey( generalKeyData, generalKeyRing() ), true );
445  trustedKeyData = publicKeyExists( id, trustedKeyRing() ); // re-read: invalidated by import?
446  }
447  }
448 
449  // it exists, is trusted, does it validate?
450  report->infoVerify( filedesc, trustedKeyData, context );
451  if ( verifyFile( file, signature, trustedKeyRing() ) )
452  {
453  return (sigValid_r=true); // signature is actually successfully validated!
454  }
455  else
456  {
457  bool res = report->askUserToAcceptVerificationFailed( filedesc, exportKey( trustedKeyData, trustedKeyRing() ), context );
458  MIL << "askUserToAcceptVerificationFailed: " << res << endl;
459  return res;
460  }
461  }
462  else
463  {
464  PublicKeyData generalKeyData( publicKeyExists( id, generalKeyRing() ) );
465  if ( generalKeyData )
466  {
467  PublicKey key( exportKey( generalKeyData, generalKeyRing() ) );
468  MIL << "Key [" << id << "] " << key.name() << " is not trusted" << endl;
469 
470  // ok the key is not trusted, ask the user to trust it or not
471  KeyRingReport::KeyTrust reply = report->askUserToAcceptKey( key, context );
472  if ( reply == KeyRingReport::KEY_TRUST_TEMPORARILY ||
474  {
475  MIL << "User wants to trust key [" << id << "] " << key.name() << endl;
476 
477  Pathname whichKeyring;
479  {
480  MIL << "User wants to import key [" << id << "] " << key.name() << endl;
481  importKey( key, true );
482  whichKeyring = trustedKeyRing();
483  }
484  else
485  whichKeyring = generalKeyRing();
486 
487  // does it validate?
488  report->infoVerify( filedesc, generalKeyData, context );
489  if ( verifyFile( file, signature, whichKeyring ) )
490  {
491  return (sigValid_r=true); // signature is actually successfully validated!
492  }
493  else
494  {
495  bool res = report->askUserToAcceptVerificationFailed( filedesc, key, context );
496  MIL << "askUserToAcceptVerificationFailed: " << res << endl;
497  return res;
498  }
499  }
500  else
501  {
502  MIL << "User does not want to trust key [" << id << "] " << key.name() << endl;
503  return false;
504  }
505  }
506  else
507  {
508  // signed with an unknown key...
509  MIL << "File [" << file << "] ( " << filedesc << " ) signed with unknown key [" << id << "]" << endl;
510  bool res = report->askUserToAcceptUnknownKey( filedesc, id, context );
511  MIL << "askUserToAcceptUnknownKey: " << res << endl;
512  return res;
513  }
514  }
515  return false;
516  }
517 
518  std::list<PublicKey> KeyRing::Impl::publicKeys( const Pathname & keyring )
519  {
520  const std::list<PublicKeyData> & keys( publicKeyData( keyring ) );
521  std::list<PublicKey> ret;
522 
523  for_( it, keys.begin(), keys.end() )
524  {
525  PublicKey key( exportKey( *it, keyring ) );
526  ret.push_back( key );
527  MIL << "Found key " << key << endl;
528  }
529  return ret;
530  }
531 
532  void KeyRing::Impl::importKey( const Pathname & keyfile, const Pathname & keyring )
533  {
534  if ( ! PathInfo( keyfile ).isExist() )
535  // TranslatorExplanation first %s is key name, second is keyring name
536  ZYPP_THROW(KeyRingException( str::Format(_("Tried to import not existent key %s into keyring %s"))
537  % keyfile.asString()
538  % keyring.asString() ));
539 
541  if(!ctx || !ctx->setHomedir(keyring))
542  ZYPP_THROW(KeyRingException(_("Failed to import key.")));
543 
544  cachedPublicKeyData.setDirty( keyring );
545  if(!ctx->importKey(keyfile))
546  ZYPP_THROW(KeyRingException(_("Failed to import key.")));
547  }
548 
549  void KeyRing::Impl::deleteKey( const std::string & id, const Pathname & keyring )
550  {
552  if(!ctx) {
553  ZYPP_THROW(KeyRingException(_("Failed to delete key.")));
554  }
555 
556  if(!ctx->setHomedir(keyring)) {
557  ZYPP_THROW(KeyRingException(_("Failed to delete key.")));
558  }
559 
560  if(!ctx->deleteKey(id)){
561  ZYPP_THROW(KeyRingException(_("Failed to delete key.")));
562  }
563 
564  cachedPublicKeyData.setDirty( keyring );
565  }
566 
567  std::string KeyRing::Impl::readSignatureKeyId( const Pathname & signature )
568  {
569  if ( ! PathInfo( signature ).isFile() )
570  ZYPP_THROW(KeyRingException( str::Format(_("Signature file %s not found")) % signature.asString() ));
571 
572  MIL << "Determining key id of signature " << signature << endl;
573 
575  if(!ctx) {
576  return std::string();
577  }
578 
579  std::list<std::string> fprs = ctx->readSignatureFingerprints(signature);
580  if (fprs.size()) {
581  std::string &id = fprs.back();
582  MIL << "Determined key id [" << id << "] for signature " << signature << endl;
583  return id;
584  }
585  return std::string();
586  }
587 
588  bool KeyRing::Impl::verifyFile( const Pathname & file, const Pathname & signature, const Pathname & keyring )
589  {
591  if (!ctx || !ctx->setHomedir(keyring))
592  return false;
593 
594  return ctx->verify(file, signature);
595  }
596 
598 
600  //
601  // CLASS NAME : KeyRing
602  //
604 
605  KeyRing::KeyRing( const Pathname & baseTmpDir )
606  : _pimpl( new Impl( baseTmpDir ) )
607  {}
608 
610  {}
611 
612 
613  void KeyRing::importKey( const PublicKey & key, bool trusted )
614  { _pimpl->importKey( key, trusted ); }
615 
616  void KeyRing::multiKeyImport( const Pathname & keyfile_r, bool trusted_r )
617  { _pimpl->multiKeyImport( keyfile_r, trusted_r ); }
618 
619  std::string KeyRing::readSignatureKeyId( const Pathname & signature )
620  { return _pimpl->readSignatureKeyId( signature ); }
621 
622  void KeyRing::deleteKey( const std::string & id, bool trusted )
623  { _pimpl->deleteKey( id, trusted ); }
624 
625  std::list<PublicKey> KeyRing::publicKeys()
626  { return _pimpl->publicKeys(); }
627 
628  std:: list<PublicKey> KeyRing::trustedPublicKeys()
629  { return _pimpl->trustedPublicKeys(); }
630 
631  std::list<PublicKeyData> KeyRing::publicKeyData()
632  { return _pimpl->publicKeyData(); }
633 
634  std::list<PublicKeyData> KeyRing::trustedPublicKeyData()
635  { return _pimpl->trustedPublicKeyData(); }
636 
638  { return _pimpl->trustedPublicKeyExists( id_r ); }
639 
640  bool KeyRing::verifyFileSignatureWorkflow( const Pathname & file, const std::string & filedesc, const Pathname & signature, bool & sigValid_r, const KeyContext & keycontext )
641  { return _pimpl->verifyFileSignatureWorkflow( file, filedesc, signature, sigValid_r, keycontext ); }
642 
643  bool KeyRing::verifyFileSignatureWorkflow( const Pathname & file, const std::string filedesc, const Pathname & signature, const KeyContext & keycontext )
644  { bool unused; return _pimpl->verifyFileSignatureWorkflow( file, filedesc, signature, unused, keycontext ); }
645 
646  bool KeyRing::verifyFileSignature( const Pathname & file, const Pathname & signature )
647  { return _pimpl->verifyFileSignature( file, signature ); }
648 
649  bool KeyRing::verifyFileTrustedSignature( const Pathname & file, const Pathname & signature )
650  { return _pimpl->verifyFileTrustedSignature( file, signature ); }
651 
652  void KeyRing::dumpPublicKey( const std::string & id, bool trusted, std::ostream & stream )
653  { _pimpl->dumpPublicKey( id, trusted, stream ); }
654 
656  { return _pimpl->exportPublicKey( keyData ); }
657 
659  { return _pimpl->exportTrustedPublicKey( keyData ); }
660 
661  bool KeyRing::isKeyTrusted( const std::string & id )
662  { return _pimpl->isKeyTrusted( id ); }
663 
664  bool KeyRing::isKeyKnown( const std::string & id )
665  { return _pimpl->isKeyKnown( id ); }
666 
668 } // namespace zypp
void importKey(const PublicKey &key, bool trusted=false)
imports a key from a file.
Definition: KeyRing.cc:613
const std::list< PublicKeyData > & publicKeyData()
Definition: KeyRing.cc:208
Interface to gettext.
static Ptr createForOpenPGP()
Creates a new KeyManagerCtx for PGP.
Definition: KeyManager.cc:193
#define MIL
Definition: Logger.h:64
PublicKey exportTrustedPublicKey(const PublicKeyData &keyData)
Export a trusted public key identified by its key data.
Definition: KeyRing.cc:658
PublicKey exportPublicKey(const PublicKeyData &keyData)
Definition: KeyRing.cc:214
void dumpPublicKey(const std::string &id, bool trusted, std::ostream &stream)
Definition: KeyRing.cc:211
void deleteKey(const std::string &id, bool trusted)
Definition: KeyRing.cc:323
PublicKey exportKey(const std::string &id, const Pathname &keyring)
Definition: KeyRing.cc:372
static bool error(const std::string &msg_r, const UserData &userData_r=UserData())
send error text
bool isKeyTrusted(const std::string &id)
Definition: KeyRing.cc:196
const std::list< PublicKeyData > & hiddenKeys() const
Additional keys data in case the ASCII armored blob containes multiple keys.
Definition: PublicKey.cc:511
#define ZYPP_THROW(EXCPT)
Drops a logline and throws the Exception.
Definition: Exception.h:392
const std::list< PublicKeyData > & trustedPublicKeyData()
Definition: KeyRing.cc:206
const PublicKeyData & keyData() const
The public keys data (.
Definition: PublicKey.cc:505
std::string name() const
Definition: PublicKey.cc:517
PublicKey exportKey(const PublicKey &key, const Pathname &keyring)
Definition: KeyRing.cc:235
This basically means, we knew the key, but it was not trusted.
Definition: KeyRing.h:61
PublicKey exportPublicKey(const PublicKeyData &keyData)
Export a public key identified by its key data.
Definition: KeyRing.cc:655
Class representing one GPG Public Keys data.
Definition: PublicKey.h:139
bool isKeyKnown(const std::string &id)
Definition: KeyRing.cc:198
void dumpPublicKey(const std::string &id, bool trusted, std::ostream &stream)
Definition: KeyRing.cc:652
PublicKeyData publicKeyExists(const std::string &id, const Pathname &keyring)
Get PublicKeyData for ID (false if ID is not found).
Definition: KeyRing.cc:352
void multiKeyImport(const Pathname &keyfile_r, bool trusted_r=false)
Definition: KeyRing.cc:318
std::list< PublicKey > trustedPublicKeys()
Get a list of trusted public keys in the keyring (incl.
Definition: KeyRing.cc:628
bool verifyFile(const Pathname &file, const Pathname &signature, const Pathname &keyring)
Definition: KeyRing.cc:588
virtual bool askUserToAcceptUnsignedFile(const std::string &file, const KeyContext &keycontext=KeyContext())
Definition: KeyRing.cc:63
const char * c_str() const
String representation.
Definition: Pathname.h:109
KeyRing(const Pathname &baseTmpDir)
Default ctor.
Definition: KeyRing.cc:605
std::list< PublicKeyData > trustedPublicKeyData()
Get a list of trusted public key data in the keyring (key data only)
Definition: KeyRing.cc:634
bool verifyFileSignatureWorkflow(const Pathname &file, const std::string &filedesc, const Pathname &signature, bool &sigValid_r, const KeyContext &keycontext=KeyContext())
Follows a signature verification interacting with the user.
Definition: KeyRing.cc:640
bool askUserToAcceptPackageKey(const PublicKey &key_r, const KeyContext &keycontext_r=KeyContext())
Ask user to trust and/or import the package key to trusted keyring, using ReportBase::report.
Definition: KeyRing.cc:82
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
Definition: Easy.h:27
Pathname path() const
Definition: TmpPath.cc:146
Convenient building of std::string with boost::format.
Definition: String.h:251
Provide a new empty temporary file and delete it when no longer needed.
Definition: TmpPath.h:127
virtual bool askUserToAcceptUnknownKey(const std::string &file, const std::string &id, const KeyContext &keycontext=KeyContext())
we DONT know the key, only its id, but we have never seen it, the difference with trust key is that i...
Definition: KeyRing.cc:76
CachedPublicKeyData cachedPublicKeyData
Functor returning the keyrings data (cached).
Definition: KeyRing.cc:266
#define ERR
Definition: Logger.h:66
callback::SendReport< target::rpm::KeyRingSignals > _rpmdbEmitSignal
Definition: KeyRing.cc:290
virtual void infoVerify(const std::string &file_r, const PublicKeyData &keyData_r, const KeyContext &keycontext=KeyContext())
Informal callback showing the trusted key that will be used for verification.
Definition: KeyRing.cc:60
PublicKey exportTrustedPublicKey(const PublicKeyData &keyData)
Definition: KeyRing.cc:216
virtual void report(const UserData &userData_r=UserData())
The most generic way of sending/receiving data.
Definition: Callback.h:155
KeyTrust
User reply options for the askUserToTrustKey callback.
Definition: KeyRing.h:51
bool empty() const
Test for an empty path.
Definition: Pathname.h:113
~KeyRing()
Dtor.
Definition: KeyRing.cc:609
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition: NonCopyable.h:26
Date created() const
Creation / last modification date (latest selfsig).
Definition: PublicKey.cc:301
PublicKeyData trustedPublicKeyExists(const std::string &id)
Definition: KeyRing.cc:226
static void setDefaultAccept(DefaultAccept value_r)
Set the active accept bits.
Definition: KeyRing.cc:54
Provide a new empty temporary directory and recursively delete it when no longer needed.
Definition: TmpPath.h:177
filesystem::TmpDir _trusted_tmp_dir
Definition: KeyRing.cc:256
bool verifyFileSignature(const Pathname &file, const Pathname &signature)
Definition: KeyRing.cc:221
std::list< PublicKeyData > _data
Definition: KeyRing.cc:138
bool set(const std::string &key_r, AnyType val_r)
Set the value for key (nonconst version always returns true).
Definition: UserData.h:118
const std::string & asString() const
String representation.
Definition: Pathname.h:90
bool verifyFileSignatureWorkflow(const Pathname &file, const std::string &filedesc, const Pathname &signature, bool &sigValid_r, const KeyContext &keycontext=KeyContext())
Definition: KeyRing.cc:403
bool isExist() const
Return whether valid stat info exists.
Definition: PathInfo.h:281
std::string asUserHistory() const
A single (multiline) string composed of asUserString and historyAsString.
Definition: Exception.cc:91
const Pathname generalKeyRing() const
Definition: KeyRing.cc:250
filesystem::TmpFile dumpPublicKeyToTmp(const std::string &id, const Pathname &keyring)
Definition: KeyRing.cc:392
#define WAR
Definition: Logger.h:65
IMPL_PTR_TYPE(Application)
KeyRing implementation.
Definition: KeyRing.cc:180
std::list< PublicKey > trustedPublicKeys()
Definition: KeyRing.cc:201
scoped_ptr< WatchFile > _keyringP
Definition: KeyRing.cc:142
void importKey(const PublicKey &key, bool trusted=false)
Definition: KeyRing.cc:296
#define _(MSG)
Definition: Gettext.h:29
Impl(const Pathname &baseTmpDir)
Definition: KeyRing.cc:182
bool isKeyKnown(const std::string &id)
true if the key id is knows, that means at least exist on the untrusted keyring
Definition: KeyRing.cc:664
Pathname _base_dir
Definition: KeyRing.cc:258
static constexpr const char * ACCEPT_PACKAGE_KEY_REQUEST
Definition: KeyRing.h:73
void multiKeyImport(const Pathname &keyfile_r, bool trusted_r=false)
Initial import from RpmDb.
Definition: KeyRing.cc:616
User has chosen not to trust the key.
Definition: KeyRing.h:56
std::string fingerprint() const
Key fingerprint.
Definition: PublicKey.cc:298
virtual KeyTrust askUserToAcceptKey(const PublicKey &key, const KeyContext &keycontext=KeyContext())
Ask user to trust and/or import the key to trusted keyring.
Definition: KeyRing.cc:67
scoped_ptr< WatchFile > _keyringK
Definition: KeyRing.cc:141
static DefaultAccept defaultAccept()
Get the active accept bits.
Definition: KeyRing.cc:51
RW_pointer< Impl > _pimpl
Pointer to implementation.
Definition: KeyRing.h:315
Class representing one GPG Public Key (PublicKeyData + ASCII armored in a tempfile).
Definition: PublicKey.h:272
std::list< PublicKeyData > publicKeyData()
Get a list of public key data in the keyring (key data only)
Definition: KeyRing.cc:631
Base class for Exception.
Definition: Exception.h:145
Pathname path() const
File containig the ASCII armored key.
Definition: PublicKey.cc:508
std::string id() const
Key ID.
Definition: PublicKey.cc:292
const Tp & get(const std::string &key_r) const
Pass back a const Tp & reference to key_r value.
Definition: UserData.h:175
const Pathname trustedKeyRing() const
Definition: KeyRing.cc:252
callback::SendReport< DownloadProgressReport > * report
Definition: MediaCurl.cc:203
std::list< PublicKey > publicKeys()
Definition: KeyRing.cc:203
Typesafe passing of user data via callbacks.
Definition: UserData.h:38
void deleteKey(const std::string &id, bool trusted=false)
removes a key from the keyring.
Definition: KeyRing.cc:622
bool verifyFileTrustedSignature(const Pathname &file, const Pathname &signature)
Definition: KeyRing.cc:649
bool verifyFileTrustedSignature(const Pathname &file, const Pathname &signature)
Definition: KeyRing.cc:223
shared_ptr< KeyManagerCtx > Ptr
Definition: KeyManager.h:34
Wrapper class for ::stat/::lstat.
Definition: PathInfo.h:220
const std::list< PublicKeyData > & publicKeyData(const Pathname &keyring)
Definition: KeyRing.cc:244
CacheMap _cacheMap
Definition: KeyRing.cc:170
bool hasvalue(const std::string &key_r) const
Whether key_r is in data and value is not empty.
Definition: UserData.h:101
bool isKeyTrusted(const std::string &id)
true if the key id is trusted
Definition: KeyRing.cc:661
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
callback::SendReport< KeyRingSignals > _emitSignal
Definition: KeyRing.cc:291
std::string readSignatureKeyId(const Pathname &signature)
reads the public key id from a signature
Definition: KeyRing.cc:619
bool verifyFileSignature(const Pathname &file, const Pathname &signature)
Verifies a file against a signature, with no user interaction.
Definition: KeyRing.cc:646
std::string readSignatureKeyId(const Pathname &signature)
Definition: KeyRing.cc:567
virtual bool askUserToAcceptVerificationFailed(const std::string &file, const PublicKey &key, const KeyContext &keycontext=KeyContext())
The file filedesc is signed but the verification failed.
Definition: KeyRing.cc:79
std::list< PublicKey > publicKeys()
Get a list of public keys in the keyring (incl.
Definition: KeyRing.cc:625
filesystem::TmpDir _general_tmp_dir
Definition: KeyRing.cc:257