summaryrefslogtreecommitdiff
path: root/src/lib/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-09-22 23:59:49 +0200
committerCarl Hetherington <cth@carlh.net>2019-09-27 22:34:00 +0200
commit19f51503621a57794bd79bac053c9e6549a69f46 (patch)
treecde206b74b2d0dea3303f3e17fe986a88bd181be /src/lib/dcp.cc
parentc4f83cc70c38fc9aa887bbf54b48a21bd0c9881a (diff)
Fix failure to playback encrypted DCPs, introduced when adding DCPDecoder re-use optimisation.
Diffstat (limited to 'src/lib/dcp.cc')
-rw-r--r--src/lib/dcp.cc45
1 files changed, 27 insertions, 18 deletions
diff --git a/src/lib/dcp.cc b/src/lib/dcp.cc
index 0b80a3737..f3b3b4496 100644
--- a/src/lib/dcp.cc
+++ b/src/lib/dcp.cc
@@ -36,6 +36,31 @@ using std::list;
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
@@ -63,25 +88,9 @@ DCP::cpls () const
}
if (_dcp_content->kdm ()) {
+ dcp::DecryptedKDM k = decrypted_kdm ();
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);
}
}