[ Merge of http://go/wvgerrit/81743 and http://go/ag/7747989 ] This fixes some failures in tests. A platform property has been added which controls whether an offline license can be restored if a release request has been previously made. This behaviour was introduced by CE CDM in b/113167010 but is not permitted for android. The tests failures addressed are * ProvisioningTestWithServiceCertificate * ReleaseRetryOfflineKeyTest * ReleaseRetryL3OfflineKeyTest * ReleaseRetryL3OfflineKeySessionUsageDisable Bug: 119428680 Bug: 133684744 Test: WV unit/integration tests Change-Id: I5beacecea32f26c8a319a6d73a45cc36f04d8aa1
116 lines
3.6 KiB
C++
116 lines
3.6 KiB
C++
// Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine Master
|
|
// License Agreement.
|
|
|
|
#include "properties.h"
|
|
|
|
#include "log.h"
|
|
#include "wv_cdm_constants.h"
|
|
|
|
namespace {
|
|
const char* kSecurityLevelDirs[] = {"L1/", "L3/"};
|
|
} // namespace
|
|
|
|
namespace wvcdm {
|
|
std::mutex Properties::init_mutex_;
|
|
bool Properties::is_initialized_ = false;
|
|
bool Properties::oem_crypto_use_secure_buffers_;
|
|
bool Properties::oem_crypto_use_fifo_;
|
|
bool Properties::oem_crypto_use_userspace_buffers_;
|
|
bool Properties::provisioning_messages_are_binary_;
|
|
bool Properties::allow_service_certificate_requests_;
|
|
bool Properties::device_files_is_a_real_filesystem_;
|
|
bool Properties::allow_restore_of_offline_licenses_with_release_;
|
|
std::unique_ptr<CdmClientPropertySetMap> Properties::session_property_set_;
|
|
|
|
bool Properties::AddSessionPropertySet(const CdmSessionId& session_id,
|
|
CdmClientPropertySet* property_set) {
|
|
if (NULL == session_property_set_.get()) {
|
|
return false;
|
|
}
|
|
std::pair<CdmClientPropertySetMap::iterator, bool> result =
|
|
session_property_set_->insert(
|
|
std::pair<const CdmSessionId, CdmClientPropertySet*>(session_id,
|
|
property_set));
|
|
return result.second;
|
|
}
|
|
|
|
bool Properties::RemoveSessionPropertySet(const CdmSessionId& session_id) {
|
|
if (NULL == session_property_set_.get()) {
|
|
return false;
|
|
}
|
|
return (1 == session_property_set_->erase(session_id));
|
|
}
|
|
|
|
CdmClientPropertySet* Properties::GetCdmClientPropertySet(
|
|
const CdmSessionId& session_id) {
|
|
if (NULL != session_property_set_.get()) {
|
|
CdmClientPropertySetMap::iterator it =
|
|
session_property_set_->find(session_id);
|
|
if (it != session_property_set_->end()) {
|
|
return it->second;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
bool Properties::GetApplicationId(const CdmSessionId& session_id,
|
|
std::string* app_id) {
|
|
const CdmClientPropertySet* property_set =
|
|
GetCdmClientPropertySet(session_id);
|
|
if (NULL == property_set) {
|
|
return false;
|
|
}
|
|
*app_id = property_set->app_id();
|
|
return true;
|
|
}
|
|
|
|
bool Properties::GetServiceCertificate(const CdmSessionId& session_id,
|
|
std::string* service_certificate) {
|
|
const CdmClientPropertySet* property_set =
|
|
GetCdmClientPropertySet(session_id);
|
|
if (property_set == NULL) {
|
|
return false;
|
|
}
|
|
*service_certificate = property_set->service_certificate();
|
|
return true;
|
|
}
|
|
|
|
bool Properties::SetServiceCertificate(const CdmSessionId& session_id,
|
|
const std::string& service_certificate) {
|
|
CdmClientPropertySet* property_set = GetCdmClientPropertySet(session_id);
|
|
if (property_set == NULL) {
|
|
return false;
|
|
}
|
|
property_set->set_service_certificate(service_certificate);
|
|
return true;
|
|
}
|
|
|
|
bool Properties::UsePrivacyMode(const CdmSessionId& session_id) {
|
|
const CdmClientPropertySet* property_set =
|
|
GetCdmClientPropertySet(session_id);
|
|
if (NULL == property_set) {
|
|
return false;
|
|
}
|
|
return property_set->use_privacy_mode();
|
|
}
|
|
|
|
uint32_t Properties::GetSessionSharingId(const CdmSessionId& session_id) {
|
|
const CdmClientPropertySet* property_set =
|
|
GetCdmClientPropertySet(session_id);
|
|
if (NULL == property_set) {
|
|
return 0;
|
|
}
|
|
return property_set->session_sharing_id();
|
|
}
|
|
|
|
bool Properties::GetSecurityLevelDirectories(std::vector<std::string>* dirs) {
|
|
dirs->resize(sizeof(kSecurityLevelDirs) / sizeof(const char*));
|
|
for (size_t i = 0; i < dirs->size(); ++i) {
|
|
(*dirs)[i] = kSecurityLevelDirs[i];
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace wvcdm
|