Bv2.1 9.2: PKL must be signed if it contains encrypted assets.
[libdcp.git] / tools / dcpdecryptmxf.cc
1 /*
2     Copyright (C) 2016 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 "crypto_context.h"
37 #include "key.h"
38 #include "util.h"
39 #include "atmos_asset.h"
40 #include "atmos_frame.h"
41 #include "atmos_asset_reader.h"
42 #include "atmos_asset_writer.h"
43 #include "exceptions.h"
44 #include <asdcp/AS_DCP.h>
45 #include <boost/foreach.hpp>
46 #include <getopt.h>
47 #include <string>
48
49 using std::string;
50 using std::cerr;
51 using std::cout;
52 using boost::optional;
53 using std::shared_ptr;
54
55 static void
56 help (string n)
57 {
58         cerr << "Syntax: " << n << " [OPTION] <MXF>]\n"
59              << "  -v, --version      show libdcp version\n"
60              << "  -h, --help         show this help\n"
61              << "  -o, --output       output filename\n"
62              << "  -k, --kdm          KDM file\n"
63              << "  -p, --private-key  private key file\n";
64 }
65
66 int
67 main (int argc, char* argv[])
68 {
69         dcp::init ();
70
71         optional<boost::filesystem::path> output_file;
72         optional<boost::filesystem::path> kdm_file;
73         optional<boost::filesystem::path> private_key_file;
74
75         int option_index = 0;
76         while (true) {
77                 struct option long_options[] = {
78                         { "version", no_argument, 0, 'v' },
79                         { "help", no_argument, 0, 'h' },
80                         { "output", required_argument, 0, 'o'},
81                         { "kdm", required_argument, 0, 'k'},
82                         { "private-key", required_argument, 0, 'p'},
83                         { 0, 0, 0, 0 }
84                 };
85
86                 int c = getopt_long (argc, argv, "vho:k:p:", long_options, &option_index);
87
88                 if (c == -1) {
89                         break;
90                 }
91
92                 switch (c) {
93                 case 'v':
94                         cout << "libdcp version " << LIBDCP_VERSION << "\n";
95                         exit (EXIT_SUCCESS);
96                 case 'h':
97                         help (argv[0]);
98                         exit (EXIT_SUCCESS);
99                 case 'o':
100                         output_file = optarg;
101                         break;
102                 case 'k':
103                         kdm_file = optarg;
104                         break;
105                 case 'p':
106                         private_key_file = optarg;
107                         break;
108                 }
109         }
110
111         if (optind >= argc) {
112                 help (argv[0]);
113                 exit (EXIT_FAILURE);
114         }
115
116         boost::filesystem::path input_file = argv[optind];
117
118         if (!output_file) {
119                 cerr << "You must specify -o or --output\n";
120                 exit (EXIT_FAILURE);
121         }
122
123         if (!kdm_file) {
124                 cerr << "You must specify -k or --kdm\n";
125                 exit (EXIT_FAILURE);
126         }
127
128         if (!private_key_file) {
129                 cerr << "You must specify -p or --private-key\n";
130                 exit (EXIT_FAILURE);
131         }
132
133         dcp::EncryptedKDM encrypted_kdm (dcp::file_to_string (kdm_file.get ()));
134         dcp::DecryptedKDM decrypted_kdm (encrypted_kdm, dcp::file_to_string (private_key_file.get()));
135
136         /* XXX: only works for Atmos! */
137
138         try {
139                 dcp::AtmosAsset in (input_file);
140                 shared_ptr<dcp::AtmosAssetReader> reader = in.start_read ();
141                 dcp::AtmosAsset out (
142                         in.edit_rate(),
143                         in.first_frame(),
144                         in.max_channel_count(),
145                         in.max_object_count(),
146                         in.atmos_version()
147                         );
148                 shared_ptr<dcp::AtmosAssetWriter> writer = out.start_write (output_file.get());
149                 for (int64_t i = 0; i < in.intrinsic_duration(); ++i) {
150                         shared_ptr<const dcp::AtmosFrame> f = reader->get_frame (i);
151                         writer->write (f->data(), f->size());
152                 }
153         } catch (dcp::ReadError& e) {
154                 cerr << "Unknown MXF format.\n";
155                 return EXIT_FAILURE;
156         }
157
158         return 0;
159 }