Fixed race condition in closeSession am: 97bbc07174
Original change: https://googleplex-android-review.googlesource.com/c/platform/vendor/widevine/+/20899856 Change-Id: I06263def49d360c37b8103c137a3e2ce95cce733 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -7,15 +7,17 @@
|
|||||||
#ifndef WV_DRM_PLUGIN_H_
|
#ifndef WV_DRM_PLUGIN_H_
|
||||||
#define WV_DRM_PLUGIN_H_
|
#define WV_DRM_PLUGIN_H_
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <mutex>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "OEMCryptoCENC.h"
|
||||||
|
#include "WVGenericCryptoInterface.h"
|
||||||
#include "cdm_client_property_set.h"
|
#include "cdm_client_property_set.h"
|
||||||
#include "cdm_identifier.h"
|
#include "cdm_identifier.h"
|
||||||
#include "media/drm/DrmAPI.h"
|
#include "media/drm/DrmAPI.h"
|
||||||
#include "media/stagefright/foundation/ABase.h"
|
#include "media/stagefright/foundation/ABase.h"
|
||||||
#include "media/stagefright/foundation/AString.h"
|
#include "media/stagefright/foundation/AString.h"
|
||||||
#include "OEMCryptoCENC.h"
|
|
||||||
#include "utils/Errors.h"
|
#include "utils/Errors.h"
|
||||||
#include "utils/KeyedVector.h"
|
#include "utils/KeyedVector.h"
|
||||||
#include "utils/List.h"
|
#include "utils/List.h"
|
||||||
@@ -24,7 +26,6 @@
|
|||||||
#include "utils/Vector.h"
|
#include "utils/Vector.h"
|
||||||
#include "wv_cdm_event_listener.h"
|
#include "wv_cdm_event_listener.h"
|
||||||
#include "wv_content_decryption_module.h"
|
#include "wv_content_decryption_module.h"
|
||||||
#include "WVGenericCryptoInterface.h"
|
|
||||||
|
|
||||||
namespace wvdrm {
|
namespace wvdrm {
|
||||||
|
|
||||||
@@ -36,8 +37,8 @@ using android::Vector;
|
|||||||
using std::map;
|
using std::map;
|
||||||
using wvcdm::CdmIdentifier;
|
using wvcdm::CdmIdentifier;
|
||||||
using wvcdm::CdmKeyStatusMap;
|
using wvcdm::CdmKeyStatusMap;
|
||||||
using wvcdm::CdmSessionId;
|
|
||||||
using wvcdm::CdmResponseType;
|
using wvcdm::CdmResponseType;
|
||||||
|
using wvcdm::CdmSessionId;
|
||||||
using wvcdm::WvContentDecryptionModule;
|
using wvcdm::WvContentDecryptionModule;
|
||||||
|
|
||||||
const OEMCrypto_Algorithm kInvalidCryptoAlgorithm =
|
const OEMCrypto_Algorithm kInvalidCryptoAlgorithm =
|
||||||
@@ -265,9 +266,46 @@ class WVDrmPlugin : public android::DrmPlugin,
|
|||||||
const std::string mEmptyString;
|
const std::string mEmptyString;
|
||||||
} mPropertySet;
|
} mPropertySet;
|
||||||
|
|
||||||
|
class CryptoSessionMap {
|
||||||
|
public:
|
||||||
|
std::map<CdmSessionId, std::shared_ptr<CryptoSession>> clear() {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
auto copy = mMap;
|
||||||
|
mMap.clear();
|
||||||
|
return copy;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<CryptoSession> get(const CdmSessionId& sid) {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
if (mMap.count(sid)) {
|
||||||
|
return mMap[sid];
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool empty() {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
return mMap.empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
void erase(const CdmSessionId& sid) {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
mMap.erase(sid);
|
||||||
|
}
|
||||||
|
|
||||||
|
void insert(const CdmSessionId& sid, OEMCrypto_SESSION osid) {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
mMap[sid] = std::make_shared<CryptoSession>(osid);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::mutex mLock;
|
||||||
|
std::map<CdmSessionId, std::shared_ptr<CryptoSession>> mMap;
|
||||||
|
};
|
||||||
|
|
||||||
android::sp<wvcdm::WvContentDecryptionModule> const mCDM;
|
android::sp<wvcdm::WvContentDecryptionModule> const mCDM;
|
||||||
WVGenericCryptoInterface* mCrypto;
|
WVGenericCryptoInterface* mCrypto;
|
||||||
map<CdmSessionId, CryptoSession> mCryptoSessions;
|
CryptoSessionMap mCryptoSessions;
|
||||||
|
|
||||||
CdmIdentifier mCdmIdentifier;
|
CdmIdentifier mCdmIdentifier;
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
#define WV_DRM_PLUGIN_H_
|
#define WV_DRM_PLUGIN_H_
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
#include "cdm_client_property_set.h"
|
#include "cdm_client_property_set.h"
|
||||||
#include "cdm_identifier.h"
|
#include "cdm_identifier.h"
|
||||||
@@ -431,9 +432,46 @@ struct WVDrmPlugin : public IDrmPlugin, IDrmPluginListener,
|
|||||||
uint32_t getNextUniqueId();
|
uint32_t getNextUniqueId();
|
||||||
} mCdmIdentifierBuilder;
|
} mCdmIdentifierBuilder;
|
||||||
|
|
||||||
|
class CryptoSessionMap {
|
||||||
|
public:
|
||||||
|
std::map<CdmSessionId, std::shared_ptr<CryptoSession>> clear() {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
auto copy = mMap;
|
||||||
|
mMap.clear();
|
||||||
|
return copy;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<CryptoSession> get(const CdmSessionId& sid) {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
if (mMap.count(sid)) {
|
||||||
|
return mMap[sid];
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool empty() {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
return mMap.empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
void erase(const CdmSessionId& sid) {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
mMap.erase(sid);
|
||||||
|
}
|
||||||
|
|
||||||
|
void insert(const CdmSessionId& sid, OEMCrypto_SESSION osid) {
|
||||||
|
std::unique_lock<std::mutex> auto_lock(mLock);
|
||||||
|
mMap[sid] = std::make_shared<CryptoSession>(osid);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::mutex mLock;
|
||||||
|
std::map<CdmSessionId, std::shared_ptr<CryptoSession>> mMap;
|
||||||
|
};
|
||||||
|
|
||||||
sp<wvcdm::WvContentDecryptionModule> const mCDM;
|
sp<wvcdm::WvContentDecryptionModule> const mCDM;
|
||||||
WVGenericCryptoInterface* mCrypto;
|
WVGenericCryptoInterface* mCrypto;
|
||||||
map<CdmSessionId, CryptoSession> mCryptoSessions;
|
CryptoSessionMap mCryptoSessions;
|
||||||
sp<IDrmPluginListener> mListener;
|
sp<IDrmPluginListener> mListener;
|
||||||
sp<IDrmPluginListener_V1_2> mListenerV1_2;
|
sp<IDrmPluginListener_V1_2> mListenerV1_2;
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ namespace {
|
|||||||
|
|
||||||
namespace wvdrm {
|
namespace wvdrm {
|
||||||
|
|
||||||
|
using std::shared_ptr;
|
||||||
|
|
||||||
using namespace android;
|
using namespace android;
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace wvcdm;
|
using namespace wvcdm;
|
||||||
@@ -85,16 +87,17 @@ WVDrmPlugin::WVDrmPlugin(const sp<WvContentDecryptionModule>& cdm,
|
|||||||
mCdmIdentifier(kDefaultCdmIdentifier) {}
|
mCdmIdentifier(kDefaultCdmIdentifier) {}
|
||||||
|
|
||||||
WVDrmPlugin::~WVDrmPlugin() {
|
WVDrmPlugin::~WVDrmPlugin() {
|
||||||
typedef map<CdmSessionId, CryptoSession>::iterator mapIterator;
|
typedef map<CdmSessionId, shared_ptr<CryptoSession>>::iterator mapIterator;
|
||||||
for (mapIterator iter = mCryptoSessions.begin();
|
auto cryptoSessions = mCryptoSessions.clear();
|
||||||
iter != mCryptoSessions.end();
|
for (mapIterator iter = cryptoSessions.begin();
|
||||||
++iter) {
|
iter != cryptoSessions.end(); ++iter) {
|
||||||
CdmResponseType res = mCDM->CloseSession(iter->first);
|
CdmResponseType res = mCDM->CloseSession(iter->first);
|
||||||
if (!isCdmResponseTypeSuccess(res)) {
|
if (!isCdmResponseTypeSuccess(res)) {
|
||||||
ALOGE("Failed to close session while destroying WVDrmPlugin");
|
ALOGE("Failed to close session while destroying WVDrmPlugin");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mCryptoSessions.clear();
|
// clear local copy of cryptoSessions map
|
||||||
|
cryptoSessions.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
status_t WVDrmPlugin::openSession(Vector<uint8_t>& sessionId) {
|
status_t WVDrmPlugin::openSession(Vector<uint8_t>& sessionId) {
|
||||||
@@ -117,7 +120,7 @@ status_t WVDrmPlugin::openSession(Vector<uint8_t>& sessionId) {
|
|||||||
info.count(QUERY_KEY_OEMCRYPTO_SESSION_ID)) {
|
info.count(QUERY_KEY_OEMCRYPTO_SESSION_ID)) {
|
||||||
OEMCrypto_SESSION oecSessionId =
|
OEMCrypto_SESSION oecSessionId =
|
||||||
std::stoul(info[QUERY_KEY_OEMCRYPTO_SESSION_ID]);
|
std::stoul(info[QUERY_KEY_OEMCRYPTO_SESSION_ID]);
|
||||||
mCryptoSessions[cdmSessionId] = CryptoSession(oecSessionId);
|
mCryptoSessions.insert(cdmSessionId, oecSessionId);
|
||||||
success = true;
|
success = true;
|
||||||
} else {
|
} else {
|
||||||
ALOGE("Unable to query key control info.");
|
ALOGE("Unable to query key control info.");
|
||||||
@@ -599,7 +602,7 @@ status_t WVDrmPlugin::getPropertyByteArray(const String8& name,
|
|||||||
status_t WVDrmPlugin::setPropertyString(const String8& name,
|
status_t WVDrmPlugin::setPropertyString(const String8& name,
|
||||||
const String8& value) {
|
const String8& value) {
|
||||||
if (name == "securityLevel") {
|
if (name == "securityLevel") {
|
||||||
if (mCryptoSessions.size() == 0) {
|
if (mCryptoSessions.empty()) {
|
||||||
if (value == QUERY_VALUE_SECURITY_LEVEL_L3.c_str()) {
|
if (value == QUERY_VALUE_SECURITY_LEVEL_L3.c_str()) {
|
||||||
mPropertySet.set_security_level(QUERY_VALUE_SECURITY_LEVEL_L3);
|
mPropertySet.set_security_level(QUERY_VALUE_SECURITY_LEVEL_L3);
|
||||||
} else if (value == QUERY_VALUE_SECURITY_LEVEL_L1.c_str()) {
|
} else if (value == QUERY_VALUE_SECURITY_LEVEL_L1.c_str()) {
|
||||||
@@ -636,7 +639,7 @@ status_t WVDrmPlugin::setPropertyString(const String8& name,
|
|||||||
return android::BAD_VALUE;
|
return android::BAD_VALUE;
|
||||||
}
|
}
|
||||||
} else if (name == "sessionSharing") {
|
} else if (name == "sessionSharing") {
|
||||||
if (mCryptoSessions.size() == 0) {
|
if (mCryptoSessions.empty()) {
|
||||||
if (value == kEnable) {
|
if (value == kEnable) {
|
||||||
mPropertySet.set_is_session_sharing_enabled(true);
|
mPropertySet.set_is_session_sharing_enabled(true);
|
||||||
} else if (value == kDisable) {
|
} else if (value == kDisable) {
|
||||||
@@ -650,14 +653,14 @@ status_t WVDrmPlugin::setPropertyString(const String8& name,
|
|||||||
return kErrorSessionIsOpen;
|
return kErrorSessionIsOpen;
|
||||||
}
|
}
|
||||||
} else if (name == "appId") {
|
} else if (name == "appId") {
|
||||||
if (mCryptoSessions.size() == 0) {
|
if (mCryptoSessions.empty()) {
|
||||||
mPropertySet.set_app_id(value.string());
|
mPropertySet.set_app_id(value.string());
|
||||||
} else {
|
} else {
|
||||||
ALOGE("App tried to set the application id while sessions are opened.");
|
ALOGE("App tried to set the application id while sessions are opened.");
|
||||||
return kErrorSessionIsOpen;
|
return kErrorSessionIsOpen;
|
||||||
}
|
}
|
||||||
} else if (name == "origin") {
|
} else if (name == "origin") {
|
||||||
if (mCryptoSessions.size() != 0) {
|
if (!mCryptoSessions.empty()) {
|
||||||
ALOGE("App tried to set the origin while sessions are opened.");
|
ALOGE("App tried to set the origin while sessions are opened.");
|
||||||
return kErrorSessionIsOpen;
|
return kErrorSessionIsOpen;
|
||||||
} else {
|
} else {
|
||||||
@@ -720,14 +723,13 @@ status_t WVDrmPlugin::setCipherAlgorithm(const Vector<uint8_t>& sessionId,
|
|||||||
return android::BAD_VALUE;
|
return android::BAD_VALUE;
|
||||||
}
|
}
|
||||||
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
|
||||||
|
|
||||||
if (algorithm == "AES/CBC/NoPadding") {
|
if (algorithm == "AES/CBC/NoPadding") {
|
||||||
cryptoSession.setCipherAlgorithm(OEMCrypto_AES_CBC_128_NO_PADDING);
|
cryptoSession->setCipherAlgorithm(OEMCrypto_AES_CBC_128_NO_PADDING);
|
||||||
} else {
|
} else {
|
||||||
return android::ERROR_DRM_CANNOT_HANDLE;
|
return android::ERROR_DRM_CANNOT_HANDLE;
|
||||||
}
|
}
|
||||||
@@ -741,14 +743,13 @@ status_t WVDrmPlugin::setMacAlgorithm(const Vector<uint8_t>& sessionId,
|
|||||||
return android::BAD_VALUE;
|
return android::BAD_VALUE;
|
||||||
}
|
}
|
||||||
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
|
||||||
|
|
||||||
if (algorithm == "HmacSHA256") {
|
if (algorithm == "HmacSHA256") {
|
||||||
cryptoSession.setMacAlgorithm(OEMCrypto_HMAC_SHA256);
|
cryptoSession->setMacAlgorithm(OEMCrypto_HMAC_SHA256);
|
||||||
} else {
|
} else {
|
||||||
return android::ERROR_DRM_CANNOT_HANDLE;
|
return android::ERROR_DRM_CANNOT_HANDLE;
|
||||||
}
|
}
|
||||||
@@ -762,17 +763,16 @@ status_t WVDrmPlugin::encrypt(const Vector<uint8_t>& sessionId,
|
|||||||
const Vector<uint8_t>& iv,
|
const Vector<uint8_t>& iv,
|
||||||
Vector<uint8_t>& output) {
|
Vector<uint8_t>& output) {
|
||||||
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
return android::NO_INIT;
|
return android::NO_INIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
keyId.array(), keyId.size());
|
keyId.array(), keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -782,9 +782,9 @@ status_t WVDrmPlugin::encrypt(const Vector<uint8_t>& sessionId,
|
|||||||
|
|
||||||
output.resize(input.size());
|
output.resize(input.size());
|
||||||
|
|
||||||
res = mCrypto->encrypt(cryptoSession.oecSessionId(), input.array(),
|
res = mCrypto->encrypt(cryptoSession->oecSessionId(), input.array(),
|
||||||
input.size(), iv.array(),
|
input.size(), iv.array(),
|
||||||
cryptoSession.cipherAlgorithm(), output.editArray());
|
cryptoSession->cipherAlgorithm(), output.editArray());
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
return android::OK;
|
return android::OK;
|
||||||
@@ -800,17 +800,16 @@ status_t WVDrmPlugin::decrypt(const Vector<uint8_t>& sessionId,
|
|||||||
const Vector<uint8_t>& iv,
|
const Vector<uint8_t>& iv,
|
||||||
Vector<uint8_t>& output) {
|
Vector<uint8_t>& output) {
|
||||||
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
return android::NO_INIT;
|
return android::NO_INIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
keyId.array(), keyId.size());
|
keyId.array(), keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -820,9 +819,9 @@ status_t WVDrmPlugin::decrypt(const Vector<uint8_t>& sessionId,
|
|||||||
|
|
||||||
output.resize(input.size());
|
output.resize(input.size());
|
||||||
|
|
||||||
res = mCrypto->decrypt(cryptoSession.oecSessionId(), input.array(),
|
res = mCrypto->decrypt(cryptoSession->oecSessionId(), input.array(),
|
||||||
input.size(), iv.array(),
|
input.size(), iv.array(),
|
||||||
cryptoSession.cipherAlgorithm(), output.editArray());
|
cryptoSession->cipherAlgorithm(), output.editArray());
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
return android::OK;
|
return android::OK;
|
||||||
@@ -837,17 +836,16 @@ status_t WVDrmPlugin::sign(const Vector<uint8_t>& sessionId,
|
|||||||
const Vector<uint8_t>& message,
|
const Vector<uint8_t>& message,
|
||||||
Vector<uint8_t>& signature) {
|
Vector<uint8_t>& signature) {
|
||||||
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->macAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.macAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
return android::NO_INIT;
|
return android::NO_INIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
keyId.array(), keyId.size());
|
keyId.array(), keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -857,8 +855,8 @@ status_t WVDrmPlugin::sign(const Vector<uint8_t>& sessionId,
|
|||||||
|
|
||||||
size_t signatureSize = 0;
|
size_t signatureSize = 0;
|
||||||
|
|
||||||
res = mCrypto->sign(cryptoSession.oecSessionId(), message.array(),
|
res = mCrypto->sign(cryptoSession->oecSessionId(), message.array(),
|
||||||
message.size(), cryptoSession.macAlgorithm(),
|
message.size(), cryptoSession->macAlgorithm(),
|
||||||
NULL, &signatureSize);
|
NULL, &signatureSize);
|
||||||
|
|
||||||
if (res != OEMCrypto_ERROR_SHORT_BUFFER) {
|
if (res != OEMCrypto_ERROR_SHORT_BUFFER) {
|
||||||
@@ -873,8 +871,8 @@ status_t WVDrmPlugin::sign(const Vector<uint8_t>& sessionId,
|
|||||||
|
|
||||||
signature.resize(signatureSize);
|
signature.resize(signatureSize);
|
||||||
|
|
||||||
res = mCrypto->sign(cryptoSession.oecSessionId(), message.array(),
|
res = mCrypto->sign(cryptoSession->oecSessionId(), message.array(),
|
||||||
message.size(), cryptoSession.macAlgorithm(),
|
message.size(), cryptoSession->macAlgorithm(),
|
||||||
signature.editArray(), &signatureSize);
|
signature.editArray(), &signatureSize);
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
@@ -891,17 +889,16 @@ status_t WVDrmPlugin::verify(const Vector<uint8_t>& sessionId,
|
|||||||
const Vector<uint8_t>& signature,
|
const Vector<uint8_t>& signature,
|
||||||
bool& match) {
|
bool& match) {
|
||||||
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
CdmSessionId cdmSessionId(sessionId.begin(), sessionId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
return android::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->macAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.macAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
return android::NO_INIT;
|
return android::NO_INIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
keyId.array(), keyId.size());
|
keyId.array(), keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -909,8 +906,8 @@ status_t WVDrmPlugin::verify(const Vector<uint8_t>& sessionId,
|
|||||||
return mapAndNotifyOfOEMCryptoResult(sessionId, res);
|
return mapAndNotifyOfOEMCryptoResult(sessionId, res);
|
||||||
}
|
}
|
||||||
|
|
||||||
res = mCrypto->verify(cryptoSession.oecSessionId(), message.array(),
|
res = mCrypto->verify(cryptoSession->oecSessionId(), message.array(),
|
||||||
message.size(), cryptoSession.macAlgorithm(),
|
message.size(), cryptoSession->macAlgorithm(),
|
||||||
signature.array(), signature.size());
|
signature.array(), signature.size());
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
|
|||||||
@@ -43,6 +43,8 @@ namespace drm {
|
|||||||
namespace V1_2 {
|
namespace V1_2 {
|
||||||
namespace widevine {
|
namespace widevine {
|
||||||
|
|
||||||
|
using std::shared_ptr;
|
||||||
|
|
||||||
using android::hardware::drm::V1_2::widevine::toHidlVec;
|
using android::hardware::drm::V1_2::widevine::toHidlVec;
|
||||||
using android::hardware::drm::V1_2::widevine::toVector;
|
using android::hardware::drm::V1_2::widevine::toVector;
|
||||||
using wvcdm::kDefaultCdmIdentifier;
|
using wvcdm::kDefaultCdmIdentifier;
|
||||||
@@ -197,16 +199,18 @@ WVDrmPlugin::WVDrmPlugin(const sp<WvContentDecryptionModule>& cdm,
|
|||||||
mAppPackageName(appPackageName) {}
|
mAppPackageName(appPackageName) {}
|
||||||
|
|
||||||
WVDrmPlugin::~WVDrmPlugin() {
|
WVDrmPlugin::~WVDrmPlugin() {
|
||||||
typedef map<CdmSessionId, CryptoSession>::iterator mapIterator;
|
typedef map<CdmSessionId, shared_ptr<CryptoSession>>::iterator mapIterator;
|
||||||
for (mapIterator iter = mCryptoSessions.begin();
|
auto cryptoSessions = mCryptoSessions.clear();
|
||||||
iter != mCryptoSessions.end();
|
for (mapIterator iter = cryptoSessions.begin();
|
||||||
++iter) {
|
iter != cryptoSessions.end(); ++iter) {
|
||||||
CdmResponseType res = mCDM->CloseSession(iter->first);
|
CdmResponseType res = mCDM->CloseSession(iter->first);
|
||||||
if (!isCdmResponseTypeSuccess(res)) {
|
if (!isCdmResponseTypeSuccess(res)) {
|
||||||
ALOGE("Failed to close session while destroying WVDrmPlugin");
|
ALOGE("Failed to close session while destroying WVDrmPlugin");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mCryptoSessions.clear();
|
// clear local copy of cryptoSessions map
|
||||||
|
cryptoSessions.clear();
|
||||||
|
|
||||||
if (mCdmIdentifierBuilder.is_sealed()) {
|
if (mCdmIdentifierBuilder.is_sealed()) {
|
||||||
CdmIdentifier identifier;
|
CdmIdentifier identifier;
|
||||||
Status status = mCdmIdentifierBuilder.getCdmIdentifier(&identifier);
|
Status status = mCdmIdentifierBuilder.getCdmIdentifier(&identifier);
|
||||||
@@ -250,7 +254,7 @@ Status WVDrmPlugin::openSessionCommon(std::vector<uint8_t>& sessionId) {
|
|||||||
info.count(wvcdm::QUERY_KEY_OEMCRYPTO_SESSION_ID)) {
|
info.count(wvcdm::QUERY_KEY_OEMCRYPTO_SESSION_ID)) {
|
||||||
OEMCrypto_SESSION oecSessionId =
|
OEMCrypto_SESSION oecSessionId =
|
||||||
std::stoul(info[wvcdm::QUERY_KEY_OEMCRYPTO_SESSION_ID]);
|
std::stoul(info[wvcdm::QUERY_KEY_OEMCRYPTO_SESSION_ID]);
|
||||||
mCryptoSessions[cdmSessionId] = CryptoSession(oecSessionId);
|
mCryptoSessions.insert(cdmSessionId, oecSessionId);
|
||||||
success = true;
|
success = true;
|
||||||
} else {
|
} else {
|
||||||
ALOGE("Unable to query key control info.");
|
ALOGE("Unable to query key control info.");
|
||||||
@@ -1343,7 +1347,7 @@ Return<Status> WVDrmPlugin::setPropertyString(const hidl_string& propertyName,
|
|||||||
std::string _value(value.c_str());
|
std::string _value(value.c_str());
|
||||||
|
|
||||||
if (name == "securityLevel") {
|
if (name == "securityLevel") {
|
||||||
if (mCryptoSessions.size() == 0) {
|
if (mCryptoSessions.empty()) {
|
||||||
if (_value == wvcdm::QUERY_VALUE_SECURITY_LEVEL_L3.c_str()) {
|
if (_value == wvcdm::QUERY_VALUE_SECURITY_LEVEL_L3.c_str()) {
|
||||||
mPropertySet.set_security_level(wvcdm::QUERY_VALUE_SECURITY_LEVEL_L3);
|
mPropertySet.set_security_level(wvcdm::QUERY_VALUE_SECURITY_LEVEL_L3);
|
||||||
} else if (_value == wvcdm::QUERY_VALUE_SECURITY_LEVEL_L1.c_str()) {
|
} else if (_value == wvcdm::QUERY_VALUE_SECURITY_LEVEL_L1.c_str()) {
|
||||||
@@ -1383,7 +1387,7 @@ Return<Status> WVDrmPlugin::setPropertyString(const hidl_string& propertyName,
|
|||||||
return Status::BAD_VALUE;
|
return Status::BAD_VALUE;
|
||||||
}
|
}
|
||||||
} else if (name == "sessionSharing") {
|
} else if (name == "sessionSharing") {
|
||||||
if (mCryptoSessions.size() == 0) {
|
if (mCryptoSessions.empty()) {
|
||||||
if (_value == kEnable) {
|
if (_value == kEnable) {
|
||||||
mPropertySet.set_is_session_sharing_enabled(true);
|
mPropertySet.set_is_session_sharing_enabled(true);
|
||||||
} else if (_value == kDisable) {
|
} else if (_value == kDisable) {
|
||||||
@@ -1398,7 +1402,7 @@ Return<Status> WVDrmPlugin::setPropertyString(const hidl_string& propertyName,
|
|||||||
return Status::ERROR_DRM_UNKNOWN;
|
return Status::ERROR_DRM_UNKNOWN;
|
||||||
}
|
}
|
||||||
} else if (name == "appId") {
|
} else if (name == "appId") {
|
||||||
if (mCryptoSessions.size() == 0) {
|
if (mCryptoSessions.empty()) {
|
||||||
mPropertySet.set_app_id(_value.c_str());
|
mPropertySet.set_app_id(_value.c_str());
|
||||||
} else {
|
} else {
|
||||||
ALOGE("App tried to set the application id while sessions are opened.");
|
ALOGE("App tried to set the application id while sessions are opened.");
|
||||||
@@ -1406,7 +1410,7 @@ Return<Status> WVDrmPlugin::setPropertyString(const hidl_string& propertyName,
|
|||||||
return Status::ERROR_DRM_UNKNOWN;
|
return Status::ERROR_DRM_UNKNOWN;
|
||||||
}
|
}
|
||||||
} else if (name == "origin") {
|
} else if (name == "origin") {
|
||||||
if (mCryptoSessions.size() != 0) {
|
if (!mCryptoSessions.empty()) {
|
||||||
ALOGE("App tried to set the origin while sessions are opened.");
|
ALOGE("App tried to set the origin while sessions are opened.");
|
||||||
ALOGW("Returns UNKNOWN error for legacy status kErrorSessionIsOpen");
|
ALOGW("Returns UNKNOWN error for legacy status kErrorSessionIsOpen");
|
||||||
return Status::ERROR_DRM_UNKNOWN;
|
return Status::ERROR_DRM_UNKNOWN;
|
||||||
@@ -1488,14 +1492,13 @@ Return<Status> WVDrmPlugin::setCipherAlgorithm(
|
|||||||
std::vector<uint8_t> sId = toVector(sessionId);
|
std::vector<uint8_t> sId = toVector(sessionId);
|
||||||
|
|
||||||
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return Status::ERROR_DRM_SESSION_NOT_OPENED;
|
return Status::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
|
||||||
|
|
||||||
if (algo == "AES/CBC/NoPadding") {
|
if (algo == "AES/CBC/NoPadding") {
|
||||||
cryptoSession.setCipherAlgorithm(OEMCrypto_AES_CBC_128_NO_PADDING);
|
cryptoSession->setCipherAlgorithm(OEMCrypto_AES_CBC_128_NO_PADDING);
|
||||||
} else {
|
} else {
|
||||||
return Status::ERROR_DRM_CANNOT_HANDLE;
|
return Status::ERROR_DRM_CANNOT_HANDLE;
|
||||||
}
|
}
|
||||||
@@ -1513,14 +1516,13 @@ Return<Status> WVDrmPlugin::setMacAlgorithm(
|
|||||||
std::vector<uint8_t> sId = toVector(sessionId);
|
std::vector<uint8_t> sId = toVector(sessionId);
|
||||||
|
|
||||||
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
return Status::ERROR_DRM_SESSION_NOT_OPENED;
|
return Status::ERROR_DRM_SESSION_NOT_OPENED;
|
||||||
}
|
}
|
||||||
|
|
||||||
CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
|
||||||
|
|
||||||
if (algo == "HmacSHA256") {
|
if (algo == "HmacSHA256") {
|
||||||
cryptoSession.setMacAlgorithm(OEMCrypto_HMAC_SHA256);
|
cryptoSession->setMacAlgorithm(OEMCrypto_HMAC_SHA256);
|
||||||
} else {
|
} else {
|
||||||
return Status::ERROR_DRM_CANNOT_HANDLE;
|
return Status::ERROR_DRM_CANNOT_HANDLE;
|
||||||
}
|
}
|
||||||
@@ -1539,21 +1541,20 @@ Return<void> WVDrmPlugin::encrypt(
|
|||||||
std::vector<uint8_t> output;
|
std::vector<uint8_t> output;
|
||||||
|
|
||||||
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, toHidlVec(output));
|
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, toHidlVec(output));
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
||||||
_hidl_cb(Status::ERROR_DRM_UNKNOWN, toHidlVec(output));
|
_hidl_cb(Status::ERROR_DRM_UNKNOWN, toHidlVec(output));
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<uint8_t> _keyId = toVector(keyId);
|
const std::vector<uint8_t> _keyId = toVector(keyId);
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
_keyId.data(), _keyId.size());
|
_keyId.data(), _keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -1567,9 +1568,9 @@ Return<void> WVDrmPlugin::encrypt(
|
|||||||
const std::vector<uint8_t> _iv = toVector(iv);
|
const std::vector<uint8_t> _iv = toVector(iv);
|
||||||
output.resize(_input.size());
|
output.resize(_input.size());
|
||||||
|
|
||||||
res = mCrypto->encrypt(cryptoSession.oecSessionId(), _input.data(),
|
res = mCrypto->encrypt(cryptoSession->oecSessionId(), _input.data(),
|
||||||
_input.size(), _iv.data(),
|
_input.size(), _iv.data(),
|
||||||
cryptoSession.cipherAlgorithm(), output.data());
|
cryptoSession->cipherAlgorithm(), output.data());
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
_hidl_cb(Status::OK, toHidlVec(output));
|
_hidl_cb(Status::OK, toHidlVec(output));
|
||||||
@@ -1592,21 +1593,20 @@ Return<void> WVDrmPlugin::decrypt(
|
|||||||
std::vector<uint8_t> output;
|
std::vector<uint8_t> output;
|
||||||
|
|
||||||
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, toHidlVec(output));
|
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, toHidlVec(output));
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.cipherAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
||||||
_hidl_cb(Status::ERROR_DRM_UNKNOWN, toHidlVec(output));
|
_hidl_cb(Status::ERROR_DRM_UNKNOWN, toHidlVec(output));
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<uint8_t> _keyId = toVector(keyId);
|
const std::vector<uint8_t> _keyId = toVector(keyId);
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
_keyId.data(), _keyId.size());
|
_keyId.data(), _keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -1620,9 +1620,9 @@ Return<void> WVDrmPlugin::decrypt(
|
|||||||
const std::vector<uint8_t> _iv = toVector(iv);
|
const std::vector<uint8_t> _iv = toVector(iv);
|
||||||
output.resize(_input.size());
|
output.resize(_input.size());
|
||||||
|
|
||||||
res = mCrypto->decrypt(cryptoSession.oecSessionId(), _input.data(),
|
res = mCrypto->decrypt(cryptoSession->oecSessionId(), _input.data(),
|
||||||
_input.size(), _iv.data(),
|
_input.size(), _iv.data(),
|
||||||
cryptoSession.cipherAlgorithm(), output.data());
|
cryptoSession->cipherAlgorithm(), output.data());
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
_hidl_cb(Status::OK, toHidlVec(output));
|
_hidl_cb(Status::OK, toHidlVec(output));
|
||||||
@@ -1644,21 +1644,20 @@ Return<void> WVDrmPlugin::sign(
|
|||||||
std::vector<uint8_t> signature;
|
std::vector<uint8_t> signature;
|
||||||
|
|
||||||
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, toHidlVec(signature));
|
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, toHidlVec(signature));
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->macAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.macAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
||||||
_hidl_cb(Status::ERROR_DRM_UNKNOWN, toHidlVec(signature));
|
_hidl_cb(Status::ERROR_DRM_UNKNOWN, toHidlVec(signature));
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<uint8_t> _keyId = toVector(keyId);
|
const std::vector<uint8_t> _keyId = toVector(keyId);
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
_keyId.data(), _keyId.size());
|
_keyId.data(), _keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -1671,8 +1670,8 @@ Return<void> WVDrmPlugin::sign(
|
|||||||
size_t signatureSize = 0;
|
size_t signatureSize = 0;
|
||||||
|
|
||||||
const std::vector<uint8_t> msg = toVector(message);
|
const std::vector<uint8_t> msg = toVector(message);
|
||||||
res = mCrypto->sign(cryptoSession.oecSessionId(), msg.data(),
|
res = mCrypto->sign(cryptoSession->oecSessionId(), msg.data(),
|
||||||
msg.size(), cryptoSession.macAlgorithm(),
|
msg.size(), cryptoSession->macAlgorithm(),
|
||||||
NULL, &signatureSize);
|
NULL, &signatureSize);
|
||||||
|
|
||||||
if (res != OEMCrypto_ERROR_SHORT_BUFFER) {
|
if (res != OEMCrypto_ERROR_SHORT_BUFFER) {
|
||||||
@@ -1689,8 +1688,8 @@ Return<void> WVDrmPlugin::sign(
|
|||||||
|
|
||||||
signature.resize(signatureSize);
|
signature.resize(signatureSize);
|
||||||
|
|
||||||
res = mCrypto->sign(cryptoSession.oecSessionId(), msg.data(),
|
res = mCrypto->sign(cryptoSession->oecSessionId(), msg.data(),
|
||||||
msg.size(), cryptoSession.macAlgorithm(),
|
msg.size(), cryptoSession->macAlgorithm(),
|
||||||
signature.data(), &signatureSize);
|
signature.data(), &signatureSize);
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
@@ -1714,21 +1713,20 @@ Return<void> WVDrmPlugin::verify(
|
|||||||
const std::vector<uint8_t> sId = toVector(sessionId);
|
const std::vector<uint8_t> sId = toVector(sessionId);
|
||||||
|
|
||||||
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
CdmSessionId cdmSessionId(sId.begin(), sId.end());
|
||||||
if (!mCryptoSessions.count(cdmSessionId)) {
|
const shared_ptr<CryptoSession> cryptoSession = mCryptoSessions.get(cdmSessionId);
|
||||||
|
if (cryptoSession == nullptr) {
|
||||||
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, match);
|
_hidl_cb(Status::ERROR_DRM_SESSION_NOT_OPENED, match);
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const CryptoSession& cryptoSession = mCryptoSessions[cdmSessionId];
|
if (cryptoSession->macAlgorithm() == kInvalidCryptoAlgorithm) {
|
||||||
|
|
||||||
if (cryptoSession.macAlgorithm() == kInvalidCryptoAlgorithm) {
|
|
||||||
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
ALOGW("Returns UNKNOWN error for legacy status NO_INIT");
|
||||||
_hidl_cb(Status::ERROR_DRM_UNKNOWN, match);
|
_hidl_cb(Status::ERROR_DRM_UNKNOWN, match);
|
||||||
return Void();
|
return Void();
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<uint8_t> _keyId = toVector(keyId);
|
const std::vector<uint8_t> _keyId = toVector(keyId);
|
||||||
OEMCryptoResult res = mCrypto->selectKey(cryptoSession.oecSessionId(),
|
OEMCryptoResult res = mCrypto->selectKey(cryptoSession->oecSessionId(),
|
||||||
_keyId.data(), _keyId.size());
|
_keyId.data(), _keyId.size());
|
||||||
|
|
||||||
if (res != OEMCrypto_SUCCESS) {
|
if (res != OEMCrypto_SUCCESS) {
|
||||||
@@ -1739,8 +1737,8 @@ Return<void> WVDrmPlugin::verify(
|
|||||||
|
|
||||||
const std::vector<uint8_t> _message = toVector(message);
|
const std::vector<uint8_t> _message = toVector(message);
|
||||||
const std::vector<uint8_t> _signature = toVector(signature);
|
const std::vector<uint8_t> _signature = toVector(signature);
|
||||||
res = mCrypto->verify(cryptoSession.oecSessionId(), _message.data(),
|
res = mCrypto->verify(cryptoSession->oecSessionId(), _message.data(),
|
||||||
_message.size(), cryptoSession.macAlgorithm(),
|
_message.size(), cryptoSession->macAlgorithm(),
|
||||||
_signature.data(), _signature.size());
|
_signature.data(), _signature.size());
|
||||||
|
|
||||||
if (res == OEMCrypto_SUCCESS) {
|
if (res == OEMCrypto_SUCCESS) {
|
||||||
|
|||||||
Reference in New Issue
Block a user