1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/android/media_drm_bridge.h"
#include <algorithm>
#include "base/android/build_info.h"
#include "base/android/jni_array.h"
#include "base/android/jni_string.h"
#include "base/callback_helpers.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/strings/string_util.h"
#include "jni/MediaDrmBridge_jni.h"
#include "media/base/android/media_player_manager.h"
#include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR.
using base::android::AttachCurrentThread;
using base::android::ConvertUTF8ToJavaString;
using base::android::ConvertJavaStringToUTF8;
using base::android::JavaByteArrayToByteVector;
using base::android::ScopedJavaLocalRef;
namespace media {
static uint32 ReadUint32(const uint8_t* data) {
uint32 value = 0;
for (int i = 0; i < 4; ++i)
value = (value << 8) | data[i];
return value;
}
static uint64 ReadUint64(const uint8_t* data) {
uint64 value = 0;
for (int i = 0; i < 8; ++i)
value = (value << 8) | data[i];
return value;
}
// The structure of an ISO CENC Protection System Specific Header (PSSH) box is
// as follows. (See ISO/IEC FDIS 23001-7:2011(E).)
// Note: ISO boxes use big-endian values.
//
// PSSH {
// uint32 Size
// uint32 Type
// uint64 LargeSize # Field is only present if value(Size) == 1.
// uint32 VersionAndFlags
// uint8[16] SystemId
// uint32 DataSize
// uint8[DataSize] Data
// }
const int kBoxHeaderSize = 8; // Box's header contains Size and Type.
const int kBoxLargeSizeSize = 8;
const int kPsshVersionFlagSize = 4;
const int kPsshSystemIdSize = 16;
const int kPsshDataSizeSize = 4;
const uint32 kTencType = 0x74656e63;
const uint32 kPsshType = 0x70737368;
const uint8 kWidevineUuid[16] = {
0xED, 0xEF, 0x8B, 0xA9, 0x79, 0xD6, 0x4A, 0xCE,
0xA3, 0xC8, 0x27, 0xDC, 0xD5, 0x1D, 0x21, 0xED };
static std::vector<uint8> GetUUID(const std::string& key_system) {
// For security reasons, we only do exact string comparisons here - we don't
// try to parse the |key_system| in any way.
if (key_system == kWidevineKeySystem) {
return std::vector<uint8>(kWidevineUuid,
kWidevineUuid + arraysize(kWidevineUuid));
}
return std::vector<uint8>();
}
// Tries to find a PSSH box whose "SystemId" is |uuid| in |data|, parses the
// "Data" of the box and put it in |pssh_data|. Returns true if such a box is
// found and successfully parsed. Returns false otherwise.
// Notes:
// 1, If multiple PSSH boxes are found,the "Data" of the first matching PSSH box
// will be set in |pssh_data|.
// 2, Only PSSH and TENC boxes are allowed in |data|. TENC boxes are skipped.
static bool GetPsshData(const uint8* data, int data_size,
const std::vector<uint8>& uuid,
std::vector<uint8>* pssh_data) {
const uint8* cur = data;
const uint8* data_end = data + data_size;
int bytes_left = data_size;
while (bytes_left > 0) {
const uint8* box_head = cur;
if (bytes_left < kBoxHeaderSize)
return false;
uint64_t box_size = ReadUint32(cur);
uint32 type = ReadUint32(cur + 4);
cur += kBoxHeaderSize;
bytes_left -= kBoxHeaderSize;
if (box_size == 1) { // LargeSize is present.
if (bytes_left < kBoxLargeSizeSize)
return false;
box_size = ReadUint64(cur);
cur += kBoxLargeSizeSize;
bytes_left -= kBoxLargeSizeSize;
} else if (box_size == 0) {
box_size = bytes_left + kBoxHeaderSize;
}
const uint8* box_end = box_head + box_size;
if (data_end < box_end)
return false;
if (type == kTencType) {
// Skip 'tenc' box.
cur = box_end;
bytes_left = data_end - cur;
continue;
} else if (type != kPsshType) {
return false;
}
const int kPsshBoxMinimumSize =
kPsshVersionFlagSize + kPsshSystemIdSize + kPsshDataSizeSize;
if (box_end < cur + kPsshBoxMinimumSize)
return false;
uint32 version_and_flags = ReadUint32(cur);
cur += kPsshVersionFlagSize;
bytes_left -= kPsshVersionFlagSize;
if (version_and_flags != 0)
return false;
DCHECK_GE(bytes_left, kPsshSystemIdSize);
if (!std::equal(uuid.begin(), uuid.end(), cur)) {
cur = box_end;
bytes_left = data_end - cur;
continue;
}
cur += kPsshSystemIdSize;
bytes_left -= kPsshSystemIdSize;
uint32 data_size = ReadUint32(cur);
cur += kPsshDataSizeSize;
bytes_left -= kPsshDataSizeSize;
if (box_end < cur + data_size)
return false;
pssh_data->assign(cur, cur + data_size);
return true;
}
return false;
}
static MediaDrmBridge::SecurityLevel GetSecurityLevelFromString(
const std::string& security_level_str) {
if (0 == security_level_str.compare("L1"))
return MediaDrmBridge::SECURITY_LEVEL_1;
if (0 == security_level_str.compare("L3"))
return MediaDrmBridge::SECURITY_LEVEL_3;
DCHECK(security_level_str.empty());
return MediaDrmBridge::SECURITY_LEVEL_NONE;
}
static std::string GetSecurityLevelString(
MediaDrmBridge::SecurityLevel security_level) {
switch (security_level) {
case MediaDrmBridge::SECURITY_LEVEL_NONE:
return "";
case MediaDrmBridge::SECURITY_LEVEL_1:
return "L1";
case MediaDrmBridge::SECURITY_LEVEL_3:
return "L3";
}
return "";
}
// Checks whether |key_system| is supported with |container_mime_type|. Only
// checks |key_system| support if |container_mime_type| is empty.
// TODO(xhwang): The |container_mime_type| is not the same as contentType in
// the EME spec. Revisit this once the spec issue with initData type is
// resolved.
static bool IsKeySystemSupportedWithTypeImpl(
const std::string& key_system,
const std::string& container_mime_type) {
if (!MediaDrmBridge::IsAvailable())
return false;
std::vector<uint8> scheme_uuid = GetUUID(key_system);
if (scheme_uuid.empty())
return false;
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jbyteArray> j_scheme_uuid =
base::android::ToJavaByteArray(env, &scheme_uuid[0], scheme_uuid.size());
ScopedJavaLocalRef<jstring> j_container_mime_type =
ConvertUTF8ToJavaString(env, container_mime_type);
return Java_MediaDrmBridge_isCryptoSchemeSupported(
env, j_scheme_uuid.obj(), j_container_mime_type.obj());
}
// static
bool MediaDrmBridge::IsAvailable() {
return base::android::BuildInfo::GetInstance()->sdk_int() >= 19;
}
// static
bool MediaDrmBridge::IsSecureDecoderRequired(SecurityLevel security_level) {
DCHECK(IsAvailable());
return SECURITY_LEVEL_1 == security_level;
}
// static
bool MediaDrmBridge::IsSecurityLevelSupported(const std::string& key_system,
SecurityLevel security_level) {
if (!IsAvailable())
return false;
// Pass 0 as |cdm_id| and NULL as |manager| as they are not used in
// creation time of MediaDrmBridge.
scoped_ptr<MediaDrmBridge> media_drm_bridge =
MediaDrmBridge::Create(0, key_system, GURL(), NULL);
if (!media_drm_bridge)
return false;
return media_drm_bridge->SetSecurityLevel(security_level);
}
// static
bool MediaDrmBridge::IsKeySystemSupported(const std::string& key_system) {
DCHECK(!key_system.empty());
return IsKeySystemSupportedWithTypeImpl(key_system, "");
}
// static
bool MediaDrmBridge::IsKeySystemSupportedWithType(
const std::string& key_system,
const std::string& container_mime_type) {
DCHECK(!key_system.empty() && !container_mime_type.empty());
return IsKeySystemSupportedWithTypeImpl(key_system, container_mime_type);
}
bool MediaDrmBridge::RegisterMediaDrmBridge(JNIEnv* env) {
return RegisterNativesImpl(env);
}
MediaDrmBridge::MediaDrmBridge(int cdm_id,
const std::vector<uint8>& scheme_uuid,
const GURL& security_origin,
MediaPlayerManager* manager)
: cdm_id_(cdm_id),
scheme_uuid_(scheme_uuid),
security_origin_(security_origin),
manager_(manager) {
JNIEnv* env = AttachCurrentThread();
CHECK(env);
ScopedJavaLocalRef<jbyteArray> j_scheme_uuid =
base::android::ToJavaByteArray(env, &scheme_uuid[0], scheme_uuid.size());
j_media_drm_.Reset(Java_MediaDrmBridge_create(
env, j_scheme_uuid.obj(), reinterpret_cast<intptr_t>(this)));
}
MediaDrmBridge::~MediaDrmBridge() {
JNIEnv* env = AttachCurrentThread();
if (!j_media_drm_.is_null())
Java_MediaDrmBridge_release(env, j_media_drm_.obj());
}
// static
scoped_ptr<MediaDrmBridge> MediaDrmBridge::Create(int cdm_id,
const std::string& key_system,
const GURL& security_origin,
MediaPlayerManager* manager) {
scoped_ptr<MediaDrmBridge> media_drm_bridge;
if (!IsAvailable())
return media_drm_bridge.Pass();
std::vector<uint8> scheme_uuid = GetUUID(key_system);
if (scheme_uuid.empty())
return media_drm_bridge.Pass();
media_drm_bridge.reset(
new MediaDrmBridge(cdm_id, scheme_uuid, security_origin, manager));
if (media_drm_bridge->j_media_drm_.is_null())
media_drm_bridge.reset();
return media_drm_bridge.Pass();
}
bool MediaDrmBridge::SetSecurityLevel(SecurityLevel security_level) {
JNIEnv* env = AttachCurrentThread();
std::string security_level_str = GetSecurityLevelString(security_level);
if (security_level_str.empty())
return false;
ScopedJavaLocalRef<jstring> j_security_level =
ConvertUTF8ToJavaString(env, security_level_str);
return Java_MediaDrmBridge_setSecurityLevel(
env, j_media_drm_.obj(), j_security_level.obj());
}
bool MediaDrmBridge::CreateSession(uint32 session_id,
const std::string& content_type,
const uint8* init_data,
int init_data_length) {
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jbyteArray> j_init_data;
// Caller should always use "video/*" content types.
DCHECK_EQ(0u, content_type.find("video/"));
// Widevine MediaDrm plugin only accepts the "data" part of the PSSH box as
// the init data when using MP4 container.
if (std::equal(scheme_uuid_.begin(), scheme_uuid_.end(), kWidevineUuid) &&
content_type == "video/mp4") {
std::vector<uint8> pssh_data;
if (!GetPsshData(init_data, init_data_length, scheme_uuid_, &pssh_data))
return false;
j_init_data =
base::android::ToJavaByteArray(env, &pssh_data[0], pssh_data.size());
} else {
j_init_data =
base::android::ToJavaByteArray(env, init_data, init_data_length);
}
ScopedJavaLocalRef<jstring> j_mime =
ConvertUTF8ToJavaString(env, content_type);
Java_MediaDrmBridge_createSession(
env, j_media_drm_.obj(), session_id, j_init_data.obj(), j_mime.obj());
return true;
}
void MediaDrmBridge::LoadSession(uint32 session_id,
const std::string& web_session_id) {
// MediaDrmBridge doesn't support loading sessions.
NOTREACHED();
}
void MediaDrmBridge::UpdateSession(uint32 session_id,
const uint8* response,
int response_length) {
DVLOG(1) << __FUNCTION__;
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jbyteArray> j_response =
base::android::ToJavaByteArray(env, response, response_length);
Java_MediaDrmBridge_updateSession(
env, j_media_drm_.obj(), session_id, j_response.obj());
}
void MediaDrmBridge::ReleaseSession(uint32 session_id) {
DVLOG(1) << __FUNCTION__;
JNIEnv* env = AttachCurrentThread();
Java_MediaDrmBridge_releaseSession(env, j_media_drm_.obj(), session_id);
}
void MediaDrmBridge::SetMediaCryptoReadyCB(const base::Closure& closure) {
if (closure.is_null()) {
media_crypto_ready_cb_.Reset();
return;
}
DCHECK(media_crypto_ready_cb_.is_null());
if (!GetMediaCrypto().is_null()) {
base::MessageLoopProxy::current()->PostTask(FROM_HERE, closure);
return;
}
media_crypto_ready_cb_ = closure;
}
void MediaDrmBridge::OnMediaCryptoReady(JNIEnv* env, jobject) {
DCHECK(!GetMediaCrypto().is_null());
if (!media_crypto_ready_cb_.is_null())
base::ResetAndReturn(&media_crypto_ready_cb_).Run();
}
void MediaDrmBridge::OnSessionCreated(JNIEnv* env,
jobject j_media_drm,
jint j_session_id,
jstring j_web_session_id) {
uint32 session_id = j_session_id;
std::string web_session_id = ConvertJavaStringToUTF8(env, j_web_session_id);
manager_->OnSessionCreated(cdm_id_, session_id, web_session_id);
}
void MediaDrmBridge::OnSessionMessage(JNIEnv* env,
jobject j_media_drm,
jint j_session_id,
jbyteArray j_message,
jstring j_destination_url) {
uint32 session_id = j_session_id;
std::vector<uint8> message;
JavaByteArrayToByteVector(env, j_message, &message);
std::string destination_url = ConvertJavaStringToUTF8(env, j_destination_url);
GURL destination_gurl(destination_url);
if (!destination_gurl.is_valid() && !destination_gurl.is_empty()) {
DLOG(WARNING) << "SessionMessage destination_url is invalid : "
<< destination_gurl.possibly_invalid_spec();
destination_gurl = GURL::EmptyGURL(); // Replace invalid destination_url.
}
manager_->OnSessionMessage(cdm_id_, session_id, message, destination_gurl);
}
void MediaDrmBridge::OnSessionReady(JNIEnv* env,
jobject j_media_drm,
jint j_session_id) {
uint32 session_id = j_session_id;
manager_->OnSessionReady(cdm_id_, session_id);
}
void MediaDrmBridge::OnSessionClosed(JNIEnv* env,
jobject j_media_drm,
jint j_session_id) {
uint32 session_id = j_session_id;
manager_->OnSessionClosed(cdm_id_, session_id);
}
void MediaDrmBridge::OnSessionError(JNIEnv* env,
jobject j_media_drm,
jint j_session_id) {
uint32 session_id = j_session_id;
manager_->OnSessionError(cdm_id_, session_id, MediaKeys::kUnknownError, 0);
}
ScopedJavaLocalRef<jobject> MediaDrmBridge::GetMediaCrypto() {
JNIEnv* env = AttachCurrentThread();
return Java_MediaDrmBridge_getMediaCrypto(env, j_media_drm_.obj());
}
MediaDrmBridge::SecurityLevel MediaDrmBridge::GetSecurityLevel() {
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jstring> j_security_level =
Java_MediaDrmBridge_getSecurityLevel(env, j_media_drm_.obj());
std::string security_level_str =
ConvertJavaStringToUTF8(env, j_security_level.obj());
return GetSecurityLevelFromString(security_level_str);
}
bool MediaDrmBridge::IsProtectedSurfaceRequired() {
return IsSecureDecoderRequired(GetSecurityLevel());
}
void MediaDrmBridge::ResetDeviceCredentials(
const ResetCredentialsCB& callback) {
DCHECK(reset_credentials_cb_.is_null());
reset_credentials_cb_ = callback;
JNIEnv* env = AttachCurrentThread();
Java_MediaDrmBridge_resetDeviceCredentials(env, j_media_drm_.obj());
}
void MediaDrmBridge::OnResetDeviceCredentialsCompleted(
JNIEnv* env, jobject, bool success) {
base::ResetAndReturn(&reset_credentials_cb_).Run(success);
}
} // namespace media
|