7 #include "packager/media/base/widevine_key_source.h"
11 #include "packager/base/base64.h"
12 #include "packager/base/bind.h"
13 #include "packager/base/json/json_reader.h"
14 #include "packager/base/json/json_writer.h"
15 #include "packager/base/strings/string_number_conversions.h"
16 #include "packager/media/base/fixed_key_source.h"
17 #include "packager/media/base/http_key_fetcher.h"
18 #include "packager/media/base/network_util.h"
19 #include "packager/media/base/producer_consumer_queue.h"
20 #include "packager/media/base/protection_system_specific_info.h"
21 #include "packager/media/base/rcheck.h"
22 #include "packager/media/base/request_signer.h"
23 #include "packager/media/base/widevine_pssh_data.pb.h"
29 const bool kEnableKeyRotation =
true;
31 const char kLicenseStatusOK[] =
"OK";
34 const char kLicenseStatusTransientError[] =
"INTERNAL_ERROR";
38 const int kNumTransientErrorRetries = 5;
39 const int kFirstRetryDelayMilliseconds = 1000;
43 const int kDefaultCryptoPeriodCount = 10;
44 const int kGetKeyTimeoutInSeconds = 5 * 60;
45 const int kKeyFetchTimeoutInSeconds = 60;
47 std::vector<uint8_t> StringToBytes(
const std::string&
string) {
48 return std::vector<uint8_t>(
string.begin(),
string.end());
51 std::vector<uint8_t> WidevinePsshFromKeyId(
52 const std::vector<std::vector<uint8_t>>& key_ids) {
53 media::WidevinePsshData widevine_pssh_data;
54 for (
const std::vector<uint8_t>& key_id : key_ids)
55 widevine_pssh_data.add_key_id(key_id.data(), key_id.size());
56 return StringToBytes(widevine_pssh_data.SerializeAsString());
59 bool Base64StringToBytes(
const std::string& base64_string,
60 std::vector<uint8_t>* bytes) {
63 if (!base::Base64Decode(base64_string, &str))
65 bytes->assign(str.begin(), str.end());
69 void BytesToBase64String(
const std::vector<uint8_t>& bytes,
70 std::string* base64_string) {
71 DCHECK(base64_string);
72 base::Base64Encode(base::StringPiece(reinterpret_cast<const char*>
73 (bytes.data()), bytes.size()),
77 bool GetKeyFromTrack(
const base::DictionaryValue& track_dict,
78 std::vector<uint8_t>* key) {
80 std::string key_base64_string;
81 RCHECK(track_dict.GetString(
"key", &key_base64_string));
82 VLOG(2) <<
"Key:" << key_base64_string;
83 RCHECK(Base64StringToBytes(key_base64_string, key));
87 bool GetKeyIdFromTrack(
const base::DictionaryValue& track_dict,
88 std::vector<uint8_t>* key_id) {
90 std::string key_id_base64_string;
91 RCHECK(track_dict.GetString(
"key_id", &key_id_base64_string));
92 VLOG(2) <<
"Keyid:" << key_id_base64_string;
93 RCHECK(Base64StringToBytes(key_id_base64_string, key_id));
97 bool GetPsshDataFromTrack(
const base::DictionaryValue& track_dict,
98 std::vector<uint8_t>* pssh_data) {
101 const base::ListValue* pssh_list;
102 RCHECK(track_dict.GetList(
"pssh", &pssh_list));
105 DCHECK_EQ(1u, pssh_list->GetSize());
107 const base::DictionaryValue* pssh_dict;
108 RCHECK(pssh_list->GetDictionary(0, &pssh_dict));
109 std::string drm_type;
110 RCHECK(pssh_dict->GetString(
"drm_type", &drm_type));
111 if (drm_type !=
"WIDEVINE") {
112 LOG(ERROR) <<
"Expecting drm_type 'WIDEVINE', get '" << drm_type <<
"'.";
115 std::string pssh_data_base64_string;
116 RCHECK(pssh_dict->GetString(
"data", &pssh_data_base64_string));
118 VLOG(2) <<
"Pssh Data:" << pssh_data_base64_string;
119 RCHECK(Base64StringToBytes(pssh_data_base64_string, pssh_data));
123 bool IsProtectionSchemeValid(FourCC protection_scheme) {
124 return protection_scheme == FOURCC_cenc || protection_scheme == FOURCC_cbcs ||
125 protection_scheme == FOURCC_cbc1 || protection_scheme == FOURCC_cens;
131 bool add_common_pssh)
132 : key_production_thread_(
"KeyProductionThread",
134 base::Unretained(this))),
136 server_url_(server_url),
137 crypto_period_count_(kDefaultCryptoPeriodCount),
138 protection_scheme_(FOURCC_cenc),
139 add_common_pssh_(add_common_pssh),
140 key_production_started_(false),
141 start_key_production_(base::WaitableEvent::ResetPolicy::AUTOMATIC,
142 base::WaitableEvent::InitialState::NOT_SIGNALED),
143 first_crypto_period_index_(0) {
144 key_production_thread_.Start();
147 WidevineKeySource::~WidevineKeySource() {
150 if (key_production_thread_.HasBeenStarted()) {
153 start_key_production_.Signal();
154 key_production_thread_.Join();
159 const std::string& policy) {
160 base::AutoLock scoped_lock(lock_);
161 request_dict_.Clear();
162 std::string content_id_base64_string;
163 BytesToBase64String(content_id, &content_id_base64_string);
164 request_dict_.SetString(
"content_id", content_id_base64_string);
165 request_dict_.SetString(
"policy", policy);
167 FourCC protection_scheme = protection_scheme_;
169 if (protection_scheme == kAppleSampleAesProtectionScheme)
170 protection_scheme = FOURCC_cbcs;
171 if (IsProtectionSchemeValid(protection_scheme)) {
172 request_dict_.SetInteger(
"protection_scheme", protection_scheme);
174 LOG(WARNING) <<
"Ignore unrecognized protection scheme "
175 << FourCCToString(protection_scheme);
178 return FetchKeysInternal(!kEnableKeyRotation, 0,
false);
182 const std::vector<uint8_t>& init_data) {
183 std::vector<uint8_t> pssh_data;
184 uint32_t asset_id = 0;
185 switch (init_data_type) {
186 case EmeInitDataType::CENC: {
187 const std::vector<uint8_t> widevine_system_id(
188 kWidevineSystemId, kWidevineSystemId + arraysize(kWidevineSystemId));
189 std::vector<ProtectionSystemSpecificInfo> protection_systems_info;
191 init_data.data(), init_data.size(), &protection_systems_info)) {
192 return Status(error::PARSER_FAILURE,
"Error parsing the PSSH boxes.");
194 for (
const auto& info: protection_systems_info) {
197 if (info.system_id() == widevine_system_id) {
198 pssh_data = info.pssh_data();
200 }
else if (pssh_data.empty() && !info.key_ids().empty()) {
201 pssh_data = WidevinePsshFromKeyId(info.key_ids());
207 if (pssh_data.empty())
208 return Status(error::INVALID_ARGUMENT,
"No supported PSSHs found.");
211 case EmeInitDataType::WEBM:
212 pssh_data = WidevinePsshFromKeyId({init_data});
214 case EmeInitDataType::WIDEVINE_CLASSIC:
215 if (init_data.size() <
sizeof(asset_id))
216 return Status(error::INVALID_ARGUMENT,
"Invalid asset id.");
217 asset_id = ntohlFromBuffer(init_data.data());
220 LOG(ERROR) <<
"Init data type " <<
static_cast<int>(init_data_type)
221 <<
" not supported.";
222 return Status(error::INVALID_ARGUMENT,
"Unsupported init data type.");
224 const bool widevine_classic =
225 init_data_type == EmeInitDataType::WIDEVINE_CLASSIC;
226 base::AutoLock scoped_lock(lock_);
227 request_dict_.Clear();
228 if (widevine_classic) {
231 request_dict_.SetDouble(
"asset_id", asset_id);
233 std::string pssh_data_base64_string;
234 BytesToBase64String(pssh_data, &pssh_data_base64_string);
235 request_dict_.SetString(
"pssh_data", pssh_data_base64_string);
237 return FetchKeysInternal(!kEnableKeyRotation, 0, widevine_classic);
243 if (encryption_key_map_.find(stream_label) == encryption_key_map_.end()) {
244 return Status(error::INTERNAL_ERROR,
245 "Cannot find key for '" + stream_label +
"'.");
247 *key = *encryption_key_map_[stream_label];
254 for (
const auto& pair : encryption_key_map_) {
255 if (pair.second->key_id == key_id) {
260 return Status(error::INTERNAL_ERROR,
261 "Cannot find key with specified key ID");
265 const std::string& stream_label,
267 DCHECK(key_production_thread_.HasBeenStarted());
270 base::AutoLock scoped_lock(lock_);
271 if (!key_production_started_) {
274 first_crypto_period_index_ =
275 crypto_period_index ? crypto_period_index - 1 : 0;
278 first_crypto_period_index_));
279 start_key_production_.Signal();
280 key_production_started_ =
true;
283 return GetKeyInternal(crypto_period_index, stream_label, key);
287 signer_ = std::move(signer);
291 std::unique_ptr<KeyFetcher> key_fetcher) {
292 key_fetcher_ = std::move(key_fetcher);
295 Status WidevineKeySource::GetKeyInternal(uint32_t crypto_period_index,
296 const std::string& stream_label,
301 std::shared_ptr<EncryptionKeyMap> encryption_key_map;
302 Status status = key_pool_->Peek(crypto_period_index, &encryption_key_map,
303 kGetKeyTimeoutInSeconds * 1000);
305 if (status.error_code() == error::STOPPED) {
306 CHECK(!common_encryption_request_status_.ok());
307 return common_encryption_request_status_;
312 if (encryption_key_map->find(stream_label) == encryption_key_map->end()) {
313 return Status(error::INTERNAL_ERROR,
314 "Cannot find key for '" + stream_label +
"'.");
316 *key = *encryption_key_map->at(stream_label);
320 void WidevineKeySource::FetchKeysTask() {
322 start_key_production_.Wait();
323 if (!key_pool_ || key_pool_->Stopped())
326 Status status = FetchKeysInternal(kEnableKeyRotation,
327 first_crypto_period_index_,
329 while (status.ok()) {
330 first_crypto_period_index_ += crypto_period_count_;
331 status = FetchKeysInternal(kEnableKeyRotation,
332 first_crypto_period_index_,
335 common_encryption_request_status_ = status;
339 Status WidevineKeySource::FetchKeysInternal(
bool enable_key_rotation,
340 uint32_t first_crypto_period_index,
341 bool widevine_classic) {
343 FillRequest(enable_key_rotation,
344 first_crypto_period_index,
348 Status status = GenerateKeyMessage(request, &message);
351 VLOG(1) <<
"Message: " << message;
353 std::string raw_response;
354 int64_t sleep_duration = kFirstRetryDelayMilliseconds;
358 for (
int i = 0; i < kNumTransientErrorRetries; ++i) {
359 status = key_fetcher_->FetchKeys(server_url_, message, &raw_response);
361 VLOG(1) <<
"Retry [" << i <<
"] Response:" << raw_response;
363 std::string response;
364 if (!DecodeResponse(raw_response, &response)) {
365 return Status(error::SERVER_ERROR,
366 "Failed to decode response '" + raw_response +
"'.");
369 bool transient_error =
false;
370 if (ExtractEncryptionKey(enable_key_rotation,
376 if (!transient_error) {
379 "Failed to extract encryption key from '" + response +
"'.");
381 }
else if (status.error_code() != error::TIME_OUT) {
386 if (i != kNumTransientErrorRetries - 1) {
387 base::PlatformThread::Sleep(
388 base::TimeDelta::FromMilliseconds(sleep_duration));
392 return Status(error::SERVER_ERROR,
393 "Failed to recover from server internal error.");
396 void WidevineKeySource::FillRequest(
bool enable_key_rotation,
397 uint32_t first_crypto_period_index,
398 std::string* request) {
400 DCHECK(!request_dict_.empty());
403 base::ListValue* tracks =
new base::ListValue();
405 base::DictionaryValue* track_sd =
new base::DictionaryValue();
406 track_sd->SetString(
"type",
"SD");
407 tracks->Append(track_sd);
408 base::DictionaryValue* track_hd =
new base::DictionaryValue();
409 track_hd->SetString(
"type",
"HD");
410 tracks->Append(track_hd);
411 base::DictionaryValue* track_uhd1 =
new base::DictionaryValue();
412 track_uhd1->SetString(
"type",
"UHD1");
413 tracks->Append(track_uhd1);
414 base::DictionaryValue* track_uhd2 =
new base::DictionaryValue();
415 track_uhd2->SetString(
"type",
"UHD2");
416 tracks->Append(track_uhd2);
417 base::DictionaryValue* track_audio =
new base::DictionaryValue();
418 track_audio->SetString(
"type",
"AUDIO");
419 tracks->Append(track_audio);
421 request_dict_.Set(
"tracks", tracks);
424 base::ListValue* drm_types =
new base::ListValue();
425 drm_types->AppendString(
"WIDEVINE");
426 request_dict_.Set(
"drm_types", drm_types);
429 if (enable_key_rotation) {
432 request_dict_.SetDouble(
"first_crypto_period_index",
433 first_crypto_period_index);
434 request_dict_.SetInteger(
"crypto_period_count", crypto_period_count_);
437 base::JSONWriter::WriteWithOptions(
441 base::JSONWriter::OPTIONS_OMIT_DOUBLE_TYPE_PRESERVATION, request);
444 Status WidevineKeySource::GenerateKeyMessage(
const std::string& request,
445 std::string* message) {
448 std::string request_base64_string;
449 base::Base64Encode(request, &request_base64_string);
451 base::DictionaryValue request_dict;
452 request_dict.SetString(
"request", request_base64_string);
456 std::string signature;
457 if (!signer_->GenerateSignature(request, &signature))
458 return Status(error::INTERNAL_ERROR,
"Signature generation failed.");
460 std::string signature_base64_string;
461 base::Base64Encode(signature, &signature_base64_string);
463 request_dict.SetString(
"signature", signature_base64_string);
464 request_dict.SetString(
"signer", signer_->signer_name());
467 base::JSONWriter::Write(request_dict, message);
471 bool WidevineKeySource::DecodeResponse(
472 const std::string& raw_response,
473 std::string* response) {
477 std::unique_ptr<base::Value> root(base::JSONReader::Read(raw_response));
479 LOG(ERROR) <<
"'" << raw_response <<
"' is not in JSON format.";
482 const base::DictionaryValue* response_dict = NULL;
483 RCHECK(root->GetAsDictionary(&response_dict));
485 std::string response_base64_string;
486 RCHECK(response_dict->GetString(
"response", &response_base64_string));
487 RCHECK(base::Base64Decode(response_base64_string, response));
491 bool WidevineKeySource::ExtractEncryptionKey(
492 bool enable_key_rotation,
493 bool widevine_classic,
494 const std::string& response,
495 bool* transient_error) {
496 DCHECK(transient_error);
497 *transient_error =
false;
499 std::unique_ptr<base::Value> root(base::JSONReader::Read(response));
501 LOG(ERROR) <<
"'" << response <<
"' is not in JSON format.";
505 const base::DictionaryValue* license_dict = NULL;
506 RCHECK(root->GetAsDictionary(&license_dict));
508 std::string license_status;
509 RCHECK(license_dict->GetString(
"status", &license_status));
510 if (license_status != kLicenseStatusOK) {
511 LOG(ERROR) <<
"Received non-OK license response: " << response;
512 *transient_error = (license_status == kLicenseStatusTransientError);
516 const base::ListValue* tracks;
517 RCHECK(license_dict->GetList(
"tracks", &tracks));
519 RCHECK(enable_key_rotation ? tracks->GetSize() >= 1 * crypto_period_count_
520 : tracks->GetSize() >= 1);
522 int current_crypto_period_index = first_crypto_period_index_;
524 EncryptionKeyMap encryption_key_map;
525 for (
size_t i = 0; i < tracks->GetSize(); ++i) {
526 const base::DictionaryValue* track_dict;
527 RCHECK(tracks->GetDictionary(i, &track_dict));
529 if (enable_key_rotation) {
530 int crypto_period_index;
532 track_dict->GetInteger(
"crypto_period_index", &crypto_period_index));
533 if (crypto_period_index != current_crypto_period_index) {
534 if (crypto_period_index != current_crypto_period_index + 1) {
535 LOG(ERROR) <<
"Expecting crypto period index "
536 << current_crypto_period_index <<
" or "
537 << current_crypto_period_index + 1 <<
"; Seen "
538 << crypto_period_index <<
" at track " << i;
541 if (!PushToKeyPool(&encryption_key_map))
543 ++current_crypto_period_index;
547 std::string stream_label;
548 RCHECK(track_dict->GetString(
"type", &stream_label));
549 RCHECK(encryption_key_map.find(stream_label) == encryption_key_map.end());
551 std::unique_ptr<EncryptionKey> encryption_key(
new EncryptionKey());
553 if (!GetKeyFromTrack(*track_dict, &encryption_key->key))
557 if (!widevine_classic) {
558 if (!GetKeyIdFromTrack(*track_dict, &encryption_key->key_id))
561 ProtectionSystemSpecificInfo info;
562 info.add_key_id(encryption_key->key_id);
563 info.set_system_id(kWidevineSystemId, arraysize(kWidevineSystemId));
564 info.set_pssh_box_version(0);
566 std::vector<uint8_t> pssh_data;
567 if (!GetPsshDataFromTrack(*track_dict, &pssh_data))
569 info.set_pssh_data(pssh_data);
571 encryption_key->key_system_info.push_back(info);
573 encryption_key_map[stream_label] = std::move(encryption_key);
578 if (add_common_pssh_ && !widevine_classic) {
579 std::set<std::vector<uint8_t>> key_ids;
580 for (
const EncryptionKeyMap::value_type& pair : encryption_key_map) {
581 key_ids.insert(pair.second->key_id);
585 ProtectionSystemSpecificInfo info;
586 info.set_system_id(kCommonSystemId, arraysize(kCommonSystemId));
587 info.set_pssh_box_version(1);
588 for (
const std::vector<uint8_t>& key_id : key_ids) {
589 info.add_key_id(key_id);
592 for (
const EncryptionKeyMap::value_type& pair : encryption_key_map) {
593 pair.second->key_system_info.push_back(info);
597 DCHECK(!encryption_key_map.empty());
598 if (!enable_key_rotation) {
600 for (
auto& pair : encryption_key_map)
601 encryption_key_map_[pair.first] = std::move(pair.second);
604 return PushToKeyPool(&encryption_key_map);
607 bool WidevineKeySource::PushToKeyPool(
608 EncryptionKeyMap* encryption_key_map) {
610 DCHECK(encryption_key_map);
611 auto encryption_key_map_shared = std::make_shared<EncryptionKeyMap>();
612 encryption_key_map_shared->swap(*encryption_key_map);
613 Status status = key_pool_->Push(encryption_key_map_shared, kInfiniteTimeout);
615 DCHECK_EQ(error::STOPPED, status.error_code());