Bv2.1 8.5: Features must have FFEC/FFMC markers.
[libdcp.git] / tools / dcpkdm.cc
1 /*
2     Copyright (C) 2017-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     libdcp is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34 #include "encrypted_kdm.h"
35 #include "decrypted_kdm.h"
36 #include "util.h"
37 #include "exceptions.h"
38 #include "certificate_chain.h"
39 #include <boost/foreach.hpp>
40 #include <getopt.h>
41
42 using std::string;
43 using std::cout;
44 using std::cerr;
45 using boost::optional;
46
47 static void
48 help (string n)
49 {
50         cerr << "Syntax: " << n << " [OPTION] <KDM>\n"
51              << "  -h, --help         show this help\n"
52              << "  -p, --private-key  private key file\n";
53 }
54
55 static string
56 tm_to_string (struct tm t)
57 {
58         char buffer[64];
59         snprintf (buffer, 64, "%02d/%02d/%02d %02d:%02d:%02d", t.tm_mday, t.tm_mon + 1, t.tm_year + 1900, t.tm_hour, t.tm_min, t.tm_sec);
60         return buffer;
61 }
62
63 int
64 main (int argc, char* argv[])
65 try
66 {
67         dcp::init ();
68
69         optional<boost::filesystem::path> private_key_file;
70
71         int option_index = 0;
72         while (true) {
73                 struct option long_options[] = {
74                         { "help", no_argument, 0, 'h' },
75                         { "private-key", required_argument, 0, 'p'},
76                         { 0, 0, 0, 0 }
77                 };
78
79                 int c = getopt_long (argc, argv, "hp:", long_options, &option_index);
80
81                 if (c == -1) {
82                         break;
83                 }
84
85                 switch (c) {
86                 case 'h':
87                         help (argv[0]);
88                         exit (EXIT_SUCCESS);
89                 case 'p':
90                         private_key_file = optarg;
91                         break;
92                 }
93         }
94
95         if (optind >= argc) {
96                 help (argv[0]);
97                 exit (EXIT_FAILURE);
98         }
99
100         boost::filesystem::path kdm_file = argv[optind];
101
102         dcp::EncryptedKDM enc_kdm (dcp::file_to_string (kdm_file));
103
104         if (enc_kdm.annotation_text()) {
105                 cout << "Annotation:       " << enc_kdm.annotation_text().get() << "\n";
106         }
107         cout << "Content title:    " << enc_kdm.content_title_text() << "\n";
108         cout << "CPL id:           " << enc_kdm.cpl_id() << "\n";
109         cout << "Recipient:        " << enc_kdm.recipient_x509_subject_name() << "\n";
110         cout << "Not valid before: " << enc_kdm.not_valid_before().as_string() << "\n";
111         cout << "Not valid after:  " << enc_kdm.not_valid_after().as_string() << "\n";
112
113         cout << "Signer chain:\n";
114         dcp::CertificateChain signer = enc_kdm.signer_certificate_chain ();
115         BOOST_FOREACH (dcp::Certificate const & i, signer.root_to_leaf()) {
116                 cout << "\tCertificate:\n";
117                 cout << "\t\tSubject: " << i.subject() << "\n";
118                 cout << "\t\tSubject common name: " << i.subject_common_name() << "\n";
119                 cout << "\t\tSubject organization name: " << i.subject_organization_name() << "\n";
120                 cout << "\t\tSubject organizational unit name: " << i.subject_organizational_unit_name() << "\n";
121                 cout << "\t\tNot before: " << tm_to_string(i.not_before()) << "\n";
122                 cout << "\t\tNot after:  " << tm_to_string(i.not_after()) << "\n";
123                 if (i.has_utf8_strings()) {
124                         cout << "\t\tUSES INCORRECT (UTF8) STRING ENCODING\n";
125                 }
126         }
127
128         if (private_key_file) {
129                 try {
130                         dcp::DecryptedKDM dec_kdm (enc_kdm, dcp::file_to_string (private_key_file.get()));
131                         cout << "\nKeys:";
132                         BOOST_FOREACH (dcp::DecryptedKDMKey i, dec_kdm.keys ()) {
133                                 cout << "\n";
134                                 cout << "\tID:       " << i.id() << "\n";
135                                 cout << "\tStandard: " << (i.standard() == dcp::SMPTE ? "SMPTE" : "Interop") << "\n";
136                                 cout << "\tCPL ID:   " << i.cpl_id() << "\n";
137                                 if (i.type()) {
138                                         cout << "\tType:     " << i.type().get() << "\n";
139                                 }
140                                 cout << "\tKey:      " << i.key().hex() << "\n";
141                         }
142                 } catch (dcp::KDMDecryptionError& e) {
143                         cerr << e.what() << "\n";
144                         exit (EXIT_FAILURE);
145                 }
146         }
147
148         return 0;
149 }
150 catch (std::exception& e)
151 {
152         cerr << "Error: " << e.what() << "\n";
153         exit (EXIT_FAILURE);
154 }