Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(884)

Side by Side Diff: content/common/media/cdm_host_files.cc

Issue 2582463003: media: Verify CDM Host files (Closed)
Patch Set: comments addressed Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/media/cdm_host_files.h ('k') | content/common/media/cdm_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/common/media/cdm_host_files.h"
6
7 #include <map>
8 #include <memory>
9 #include <vector>
10
11 #include "base/command_line.h"
12 #include "base/files/file.h"
13 #include "base/files/file_path.h"
14 #include "base/lazy_instance.h"
15 #include "base/logging.h"
16 #include "base/memory/ptr_util.h"
17 #include "base/native_library.h"
18 #include "base/path_service.h"
19 #include "base/scoped_native_library.h"
20 #include "build/build_config.h"
21 #include "content/common/media/cdm_host_file.h"
22 #include "content/public/common/cdm_info.h"
23 #include "content/public/common/content_client.h"
24 #include "media/base/media_switches.h"
25 #include "media/cdm/api/content_decryption_module_ext.h"
26 #include "media/cdm/cdm_paths.h"
27
28 #if defined(POSIX_WITH_ZYGOTE)
29 #include "content/common/pepper_plugin_list.h"
30 #include "content/public/common/pepper_plugin_info.h"
31 #endif
32
33 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR.
34
35 namespace content {
36
37 namespace {
38
39 bool IgnoreMissingCdmHostFile() {
40 return base::CommandLine::ForCurrentProcess()->HasSwitch(
41 switches::kIgnoreMissingCdmHostFile);
42 }
43
44 // TODO(xhwang): Move this to a common place if needed.
45 const base::FilePath::CharType kSignatureFileExtension[] =
46 FILE_PATH_LITERAL(".sig");
47
48 // Returns the signature file path given the |file_path|. This function should
49 // only be used when the signature file and the file are located in the same
50 // directory, which is the case for the CDM and CDM adapter.
51 base::FilePath GetSigFilePath(const base::FilePath& file_path) {
52 return file_path.AddExtension(kSignatureFileExtension);
53 }
54
55 // Returns the CDM library file name given the |cdm_adapter_file_name|. Returns
56 // nullptr if |cdm_adapter_file_name| does not correspond to a known CDM.
57 const char* GetCdmFileName(const base::FilePath& cdm_adapter_file_name) {
58 #if defined(WIDEVINE_CDM_AVAILABLE)
59 if (cdm_adapter_file_name ==
60 base::FilePath::FromUTF8Unsafe(kWidevineCdmAdapterFileName))
61 return kWidevineCdmLibraryName;
62 #endif
63
64 // Clear Key CDM. For test only.
65 if (cdm_adapter_file_name ==
66 base::FilePath::FromUTF8Unsafe(media::kClearKeyCdmAdapterFileName))
67 return media::kClearKeyCdmLibraryName;
68
69 return nullptr;
70 }
71
72 // Returns the path to the CDM binary given the |cdm_adapter_path|. Returns an
73 // empty path if |cdm_adapter_path| does not correspond to a known CDM.
74 base::FilePath GetCdmPath(const base::FilePath& cdm_adapter_path) {
75 const char* cdm_file_name = GetCdmFileName(cdm_adapter_path.BaseName());
76 if (!cdm_file_name)
77 return base::FilePath();
78
79 return cdm_adapter_path.DirName().AppendASCII(
80 base::GetNativeLibraryName(cdm_file_name));
81 }
82
83 #if defined(POSIX_WITH_ZYGOTE)
84 // From the list of registered plugins, finds all registered CDMs and fills
85 // |cdm_adapter_paths| with found CDM adapters paths.
86 void GetRegisteredCdms(std::vector<base::FilePath>* cdm_adapter_paths) {
87 std::vector<PepperPluginInfo> plugins;
88 ComputePepperPluginList(&plugins);
89 for (const auto& plugin : plugins) {
90 // CDM is not an internal plugin.
91 if (plugin.is_internal)
92 continue;
93
94 if (IsCdm(plugin.path))
95 cdm_adapter_paths->push_back(plugin.path);
96 }
97 }
98
99 // A global instance used on platforms where we have to open the files in the
100 // Zygote process.
101 base::LazyInstance<std::unique_ptr<CdmHostFiles>> g_cdm_host_files =
102 LAZY_INSTANCE_INITIALIZER;
103 #endif
104
105 } // namespace
106
107 CdmHostFiles::CdmHostFiles() {
108 DVLOG(1) << __func__;
109 }
110
111 CdmHostFiles::~CdmHostFiles() {
112 DVLOG(1) << __func__;
113 }
114
115 #if defined(POSIX_WITH_ZYGOTE)
116 // static
117 void CdmHostFiles::CreateGlobalInstance() {
118 DVLOG(1) << __func__;
119 DCHECK(!g_cdm_host_files.Get().get());
120
121 std::unique_ptr<CdmHostFiles> cdm_host_files =
122 base::MakeUnique<CdmHostFiles>();
123 if (!cdm_host_files->OpenFilesForAllRegisteredCdms()) {
124 DVLOG(1) << __func__ << " failed.";
125 cdm_host_files.reset();
126 return;
127 }
128
129 g_cdm_host_files.Get().reset(cdm_host_files.release());
130 }
131
132 // static
133 std::unique_ptr<CdmHostFiles> CdmHostFiles::TakeGlobalInstance() {
134 return std::move(g_cdm_host_files.Get());
135 }
136 #endif
137
138 // static
139 std::unique_ptr<CdmHostFiles> CdmHostFiles::Create(
140 const base::FilePath& cdm_adapter_path) {
141 DVLOG(1) << __func__;
142 std::unique_ptr<CdmHostFiles> cdm_host_files =
143 base::MakeUnique<CdmHostFiles>();
144 if (!cdm_host_files->OpenFiles(cdm_adapter_path)) {
145 cdm_host_files.reset();
146 return nullptr;
147 }
148
149 return cdm_host_files;
150 }
151
152 bool CdmHostFiles::VerifyFiles(base::NativeLibrary cdm_adapter_library,
153 const base::FilePath& cdm_adapter_path) {
154 DVLOG(1) << __func__;
155 DCHECK(cdm_adapter_library);
156
157 // Get function pointer exported by the CDM.
158 // See media/cdm/api/content_decryption_module_ext.h.
159 using VerifyCdmHostFunc =
160 bool (*)(const cdm::HostFile* cdm_host_files, uint32_t num_files);
161 static const char kVerifyCdmHostFuncName[] = "VerifyCdmHost_0";
162
163 base::NativeLibrary cdm_library;
164 #if defined(OS_LINUX) || defined(OS_MACOSX)
165 // On POSIX, "the dlsym() function shall search for the named symbol in all
166 // objects loaded automatically as a result of loading the object referenced
167 // by handle". Since the CDM is loaded automatically as a result of loading
168 // the CDM adapter, we can just use the adapter to look for CDM symbols.
169 cdm_library = cdm_adapter_library;
170 #elif defined(OS_WIN)
171 // On Windows, we have manually load the CDM.
172 base::ScopedNativeLibrary scoped_cdm_library;
173 base::NativeLibraryLoadError error;
174 scoped_cdm_library.Reset(
175 base::LoadNativeLibrary(GetCdmPath(cdm_adapter_path), &error));
176 if (!scoped_cdm_library.is_valid()) {
177 LOG(ERROR) << "Failed to load CDM (error: " << error.ToString() << ")";
178 CloseAllFiles();
179 return true;
180 }
181 cdm_library = scoped_cdm_library.get();
182 #endif
183
184 VerifyCdmHostFunc verify_cdm_host_func = reinterpret_cast<VerifyCdmHostFunc>(
185 base::GetFunctionPointerFromNativeLibrary(cdm_library,
186 kVerifyCdmHostFuncName));
187 if (!verify_cdm_host_func) {
188 LOG(ERROR) << "Function " << kVerifyCdmHostFuncName << " not found.";
189 CloseAllFiles();
190 return true;
191 }
192
193 // Fills |cdm_host_files| with common and CDM specific files for
194 // |cdm_adapter_path|.
195 std::vector<cdm::HostFile> cdm_host_files;
196 if (!TakePlatformFiles(cdm_adapter_path, &cdm_host_files)) {
197 DVLOG(1) << "Failed to take platform files.";
198 CloseAllFiles();
199 return true;
200 }
201
202 // Call |verify_cdm_host_func| on the CDM with |cdm_host_files|. Note that
203 // the ownership of these files are transferred to the CDM, which will close
204 // the files immediately after use.
205 DVLOG(1) << __func__ << ": Calling " << kVerifyCdmHostFuncName << "().";
206 if (!verify_cdm_host_func(cdm_host_files.data(), cdm_host_files.size())) {
207 DVLOG(1) << "Failed to verify CDM host.";
208 CloseAllFiles();
209 return false;
210 }
211
212 // Close all files not passed to the CDM.
213 CloseAllFiles();
214 return true;
215 }
216
217 #if defined(POSIX_WITH_ZYGOTE)
218 bool CdmHostFiles::OpenFilesForAllRegisteredCdms() {
219 std::vector<base::FilePath> cdm_adapter_paths;
220 GetRegisteredCdms(&cdm_adapter_paths);
221 if (cdm_adapter_paths.empty()) {
222 DVLOG(1) << "No CDM registered.";
223 return false;
224 }
225
226 // Ignore
227 for (auto& cdm_adapter_path : cdm_adapter_paths) {
228 bool result = OpenCdmFiles(cdm_adapter_path);
229 if (!result)
230 DVLOG(1) << "CDM files cannot be opened for " << cdm_adapter_path.value();
231 // Ignore the failure and try other registered CDM.
232 }
233
234 if (cdm_specific_files_map_.empty()) {
235 DVLOG(1) << "CDM specific files cannot be opened for any registered CDM.";
236 return false;
237 }
238
239 return OpenCommonFiles();
240 }
241 #endif
242
243 bool CdmHostFiles::OpenFiles(const base::FilePath& cdm_adapter_path) {
244 if (!OpenCdmFiles(cdm_adapter_path))
245 return false;
246
247 return OpenCommonFiles();
248 }
249
250 bool CdmHostFiles::OpenCommonFiles() {
251 DCHECK(common_files_.empty());
252
253 std::vector<CdmHostFilePath> cdm_host_file_paths;
254 GetContentClient()->AddContentDecryptionModules(nullptr,
255 &cdm_host_file_paths);
256
257 for (const CdmHostFilePath& value : cdm_host_file_paths) {
258 std::unique_ptr<CdmHostFile> cdm_host_file =
259 CdmHostFile::Create(value.file_path, value.sig_file_path);
260 if (cdm_host_file) {
261 common_files_.push_back(std::move(cdm_host_file));
262 continue;
263 }
264
265 if (!IgnoreMissingCdmHostFile())
266 return false;
267 }
268
269 return true;
270 }
271
272 bool CdmHostFiles::OpenCdmFiles(const base::FilePath& cdm_adapter_path) {
273 DCHECK(!cdm_adapter_path.empty());
274 DCHECK(!cdm_specific_files_map_.count(cdm_adapter_path));
275
276 std::unique_ptr<CdmHostFile> cdm_adapter_file =
277 CdmHostFile::Create(cdm_adapter_path, GetSigFilePath(cdm_adapter_path));
278 if (!cdm_adapter_file)
279 return false;
280
281 base::FilePath cdm_path = GetCdmPath(cdm_adapter_path);
282 std::unique_ptr<CdmHostFile> cdm_file =
283 CdmHostFile::Create(cdm_path, GetSigFilePath(cdm_path));
284 if (!cdm_file)
285 return false;
286
287 ScopedFileVector cdm_specific_files;
288 cdm_specific_files.reserve(2);
289 cdm_specific_files.push_back(std::move(cdm_adapter_file));
290 cdm_specific_files.push_back(std::move(cdm_file));
291
292 cdm_specific_files_map_[cdm_adapter_path] = std::move(cdm_specific_files);
293 return true;
294 }
295
296 bool CdmHostFiles::TakePlatformFiles(
297 const base::FilePath& cdm_adapter_path,
298 std::vector<cdm::HostFile>* cdm_host_files) {
299 DCHECK(cdm_host_files->empty());
300
301 if (!IgnoreMissingCdmHostFile())
302 DCHECK(!common_files_.empty());
303
304 // Check whether CDM specific files exist.
305 const auto& iter = cdm_specific_files_map_.find(cdm_adapter_path);
306 if (iter == cdm_specific_files_map_.end()) {
307 // This could happen on Linux where CDM files fail to open for Foo CDM, but
308 // now we hit Bar CDM.
309 DVLOG(1) << "No CDM specific files for " << cdm_adapter_path.value();
310 return false;
311 }
312
313 const ScopedFileVector& cdm_specific_files = iter->second;
314
315 cdm_host_files->reserve(common_files_.size() + cdm_specific_files.size());
316
317 // Populate an array of cdm::HostFile.
318 for (const auto& file : common_files_)
319 cdm_host_files->push_back(file->TakePlatformFile());
320
321 for (const auto& file : cdm_specific_files)
322 cdm_host_files->push_back(file->TakePlatformFile());
323
324 return true;
325 }
326
327 void CdmHostFiles::CloseAllFiles() {
328 common_files_.clear();
329 cdm_specific_files_map_.clear();
330 }
331
332 // Question(xhwang): Any better way to check whether a plugin is a CDM? Maybe
333 // when we register the plugin we can set some flag explicitly?
334 bool IsCdm(const base::FilePath& cdm_adapter_path) {
335 return !GetCdmPath(cdm_adapter_path).empty();
336 }
337
338 } // namespace content
OLDNEW
« no previous file with comments | « content/common/media/cdm_host_files.h ('k') | content/common/media/cdm_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698