Fix failure to playback encrypted DCPs, introduced when adding DCPDecoder re-use...
authorCarl Hetherington <cth@carlh.net>
Sun, 22 Sep 2019 21:59:49 +0000 (23:59 +0200)
committerCarl Hetherington <cth@carlh.net>
Fri, 27 Sep 2019 20:34:00 +0000 (22:34 +0200)
src/lib/dcp.cc
src/lib/dcp.h
src/lib/dcp_decoder.cc

index 0b80a3737db0e1903cec10d64367b7b23f365669..f3b3b44969cca6aacd9657e22f1465c4f18053d1 100644 (file)
@@ -36,6 +36,31 @@ using std::list;
 using std::string;
 using boost::shared_ptr;
 
 using std::string;
 using boost::shared_ptr;
 
+dcp::DecryptedKDM
+DCP::decrypted_kdm () const
+{
+       try {
+               return dcp::DecryptedKDM (_dcp_content->kdm().get(), Config::instance()->decryption_chain()->key().get());
+       } catch (dcp::KDMDecryptionError& e) {
+               /* Try to flesh out the error a bit */
+               string const kdm_subject_name = _dcp_content->kdm()->recipient_x509_subject_name();
+               bool on_chain = false;
+               shared_ptr<const dcp::CertificateChain> dc = Config::instance()->decryption_chain();
+               BOOST_FOREACH (dcp::Certificate i, dc->root_to_leaf()) {
+                       if (i.subject() == kdm_subject_name) {
+                               on_chain = true;
+                       }
+               }
+               if (!on_chain) {
+                       throw KDMError (_("KDM was not made for DCP-o-matic's decryption certificate."), e.what());
+               } else if (on_chain && kdm_subject_name != dc->leaf().subject()) {
+                       throw KDMError (_("KDM was made for DCP-o-matic but not for its leaf certificate."), e.what());
+               } else {
+                       throw;
+               }
+       }
+}
+
 /** Find all the CPLs in our directories, cross-add assets and return the CPLs */
 list<shared_ptr<dcp::CPL> >
 DCP::cpls () const
 /** Find all the CPLs in our directories, cross-add assets and return the CPLs */
 list<shared_ptr<dcp::CPL> >
 DCP::cpls () const
@@ -63,25 +88,9 @@ DCP::cpls () const
        }
 
        if (_dcp_content->kdm ()) {
        }
 
        if (_dcp_content->kdm ()) {
+               dcp::DecryptedKDM k = decrypted_kdm ();
                BOOST_FOREACH (shared_ptr<dcp::DCP> i, dcps) {
                BOOST_FOREACH (shared_ptr<dcp::DCP> i, dcps) {
-                       try {
-                               i->add (dcp::DecryptedKDM (_dcp_content->kdm().get(), Config::instance()->decryption_chain()->key().get ()));
-                       } catch (dcp::KDMDecryptionError& e) {
-                               /* Flesh out the error a bit */
-                               string const kdm_subject_name = _dcp_content->kdm()->recipient_x509_subject_name();
-                               bool on_chain = false;
-                               shared_ptr<const dcp::CertificateChain> dc = Config::instance()->decryption_chain();
-                               BOOST_FOREACH (dcp::Certificate i, dc->root_to_leaf()) {
-                                       if (i.subject() == kdm_subject_name) {
-                                               on_chain = true;
-                                       }
-                               }
-                               if (!on_chain) {
-                                       throw KDMError (_("KDM was not made for DCP-o-matic's decryption certificate."), e.what());
-                               } else if (on_chain && kdm_subject_name != dc->leaf().subject()) {
-                                       throw KDMError (_("KDM was made for DCP-o-matic but not for its leaf certificate."), e.what());
-                               }
-                       }
+                       i->add (k);
                }
        }
 
                }
        }
 
index d449fdb39d8444e6cf0fc8d1e2b91bf1043d6ade..b98dce5d4e3f277b489d41a6d2d5d49e7c75ad51 100644 (file)
@@ -32,6 +32,7 @@ class DCP
 {
 public:
        std::list<boost::shared_ptr<dcp::CPL> > cpls () const;
 {
 public:
        std::list<boost::shared_ptr<dcp::CPL> > cpls () const;
+       dcp::DecryptedKDM decrypted_kdm () const;
 
 protected:
        explicit DCP (boost::shared_ptr<const DCPContent> content, bool tolerant)
 
 protected:
        explicit DCP (boost::shared_ptr<const DCPContent> content, bool tolerant)
index 90b730f5b5d921fb58a8d5535f230d6bb8e3e6f4..95cad926620ad9a4824b40e8ff1914331d3e776e 100644 (file)
@@ -44,6 +44,7 @@
 #include <dcp/sound_frame.h>
 #include <dcp/sound_asset_reader.h>
 #include <dcp/subtitle_image.h>
 #include <dcp/sound_frame.h>
 #include <dcp/sound_asset_reader.h>
 #include <dcp/subtitle_image.h>
+#include <dcp/decrypted_kdm.h>
 #include <boost/foreach.hpp>
 #include <iostream>
 
 #include <boost/foreach.hpp>
 #include <iostream>
 
@@ -76,6 +77,14 @@ DCPDecoder::DCPDecoder (shared_ptr<const Film> film, shared_ptr<const DCPContent
 
        if (old) {
                _reels = old->_reels;
 
        if (old) {
                _reels = old->_reels;
+
+               /* We might have gained a KDM since we made the Reel objects */
+               if (_dcp_content->kdm ()) {
+                       dcp::DecryptedKDM k = decrypted_kdm ();
+                       BOOST_FOREACH (shared_ptr<dcp::Reel> i, _reels) {
+                               i->add (k);
+                       }
+               }
        } else {
 
                list<shared_ptr<dcp::CPL> > cpl_list = cpls ();
        } else {
 
                list<shared_ptr<dcp::CPL> > cpl_list = cpls ();