blob: 5dd25639cad89021da77eb7b0a34b05d12807424 [file] [log] [blame]
Jeff Tinkera53d6552017-01-20 00:31:46 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18#define LOG_TAG "CryptoHal"
19#include <utils/Log.h>
Jeff Tinkera53d6552017-01-20 00:31:46 -080020
21#include <android/hardware/drm/1.0/types.h>
Jeff Tinkerabeb36a2017-02-17 09:42:46 -080022#include <android/hidl/manager/1.0/IServiceManager.h>
Jeff Tinkera53d6552017-01-20 00:31:46 -080023
24#include <binder/IMemory.h>
25#include <cutils/native_handle.h>
26#include <media/CryptoHal.h>
27#include <media/hardware/CryptoAPI.h>
28#include <media/stagefright/foundation/ADebug.h>
29#include <media/stagefright/foundation/AString.h>
30#include <media/stagefright/foundation/hexdump.h>
31#include <media/stagefright/MediaErrors.h>
32
33using ::android::hardware::drm::V1_0::BufferType;
34using ::android::hardware::drm::V1_0::DestinationBuffer;
35using ::android::hardware::drm::V1_0::ICryptoFactory;
36using ::android::hardware::drm::V1_0::ICryptoPlugin;
37using ::android::hardware::drm::V1_0::Mode;
38using ::android::hardware::drm::V1_0::Pattern;
39using ::android::hardware::drm::V1_0::SharedBuffer;
40using ::android::hardware::drm::V1_0::Status;
41using ::android::hardware::drm::V1_0::SubSample;
42using ::android::hardware::hidl_array;
43using ::android::hardware::hidl_handle;
44using ::android::hardware::hidl_memory;
45using ::android::hardware::hidl_string;
46using ::android::hardware::hidl_vec;
47using ::android::hardware::Return;
48using ::android::hardware::Void;
Jeff Tinkerabeb36a2017-02-17 09:42:46 -080049using ::android::hidl::manager::V1_0::IServiceManager;
Jeff Tinkera53d6552017-01-20 00:31:46 -080050using ::android::sp;
51
52
53namespace android {
54
55static status_t toStatusT(Status status) {
56 switch (status) {
57 case Status::OK:
58 return OK;
59 case Status::ERROR_DRM_NO_LICENSE:
60 return ERROR_DRM_NO_LICENSE;
61 case Status::ERROR_DRM_LICENSE_EXPIRED:
62 return ERROR_DRM_LICENSE_EXPIRED;
63 case Status::ERROR_DRM_RESOURCE_BUSY:
64 return ERROR_DRM_RESOURCE_BUSY;
65 case Status::ERROR_DRM_INSUFFICIENT_OUTPUT_PROTECTION:
66 return ERROR_DRM_INSUFFICIENT_OUTPUT_PROTECTION;
67 case Status::ERROR_DRM_SESSION_NOT_OPENED:
68 return ERROR_DRM_SESSION_NOT_OPENED;
69 case Status::ERROR_DRM_CANNOT_HANDLE:
70 return ERROR_DRM_CANNOT_HANDLE;
Jeff Tinkerd0cb8312017-03-15 11:17:00 -070071 case Status::ERROR_DRM_DECRYPT:
72 return ERROR_DRM_DECRYPT;
Jeff Tinkera53d6552017-01-20 00:31:46 -080073 default:
74 return UNKNOWN_ERROR;
75 }
76}
77
78
79static hidl_vec<uint8_t> toHidlVec(const Vector<uint8_t> &vector) {
80 hidl_vec<uint8_t> vec;
81 vec.setToExternal(const_cast<uint8_t *>(vector.array()), vector.size());
82 return vec;
83}
84
85static hidl_vec<uint8_t> toHidlVec(const void *ptr, size_t size) {
86 hidl_vec<uint8_t> vec;
87 vec.resize(size);
88 memcpy(vec.data(), ptr, size);
89 return vec;
90}
91
92static hidl_array<uint8_t, 16> toHidlArray16(const uint8_t *ptr) {
93 if (!ptr) {
94 return hidl_array<uint8_t, 16>();
95 }
96 return hidl_array<uint8_t, 16>(ptr);
97}
98
99
Jeff Tinkera53d6552017-01-20 00:31:46 -0800100static String8 toString8(hidl_string hString) {
101 return String8(hString.c_str());
102}
103
104
105CryptoHal::CryptoHal()
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800106 : mFactories(makeCryptoFactories()),
107 mInitCheck((mFactories.size() == 0) ? ERROR_UNSUPPORTED : NO_INIT),
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700108 mNextBufferId(0),
109 mHeapSeqNum(0) {
Jeff Tinkera53d6552017-01-20 00:31:46 -0800110}
111
112CryptoHal::~CryptoHal() {
113}
114
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800115Vector<sp<ICryptoFactory>> CryptoHal::makeCryptoFactories() {
116 Vector<sp<ICryptoFactory>> factories;
Jeff Tinkera53d6552017-01-20 00:31:46 -0800117
Jeff Tinker6a4921a2017-03-09 23:26:01 -0800118 auto manager = ::IServiceManager::getService();
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800119 if (manager != NULL) {
120 manager->listByInterface(ICryptoFactory::descriptor,
121 [&factories](const hidl_vec<hidl_string> &registered) {
122 for (const auto &instance : registered) {
123 auto factory = ICryptoFactory::getService(instance);
124 if (factory != NULL) {
125 factories.push_back(factory);
126 ALOGI("makeCryptoFactories: factory instance %s is %s",
127 instance.c_str(),
128 factory->isRemote() ? "Remote" : "Not Remote");
129 }
130 }
131 }
132 );
Jeff Tinkera53d6552017-01-20 00:31:46 -0800133 }
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800134
135 if (factories.size() == 0) {
136 // must be in passthrough mode, load the default passthrough service
Jeff Tinkere309b222017-04-05 08:01:28 -0700137 auto passthrough = ICryptoFactory::getService();
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800138 if (passthrough != NULL) {
139 ALOGI("makeCryptoFactories: using default crypto instance");
140 factories.push_back(passthrough);
141 } else {
142 ALOGE("Failed to find any crypto factories");
143 }
144 }
145 return factories;
Jeff Tinkera53d6552017-01-20 00:31:46 -0800146}
147
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800148sp<ICryptoPlugin> CryptoHal::makeCryptoPlugin(const sp<ICryptoFactory>& factory,
149 const uint8_t uuid[16], const void *initData, size_t initDataSize) {
Jeff Tinkera53d6552017-01-20 00:31:46 -0800150
151 sp<ICryptoPlugin> plugin;
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800152 Return<void> hResult = factory->createPlugin(toHidlArray16(uuid),
Jeff Tinkera53d6552017-01-20 00:31:46 -0800153 toHidlVec(initData, initDataSize),
154 [&](Status status, const sp<ICryptoPlugin>& hPlugin) {
155 if (status != Status::OK) {
156 ALOGE("Failed to make crypto plugin");
157 return;
158 }
159 plugin = hPlugin;
160 }
161 );
162 return plugin;
163}
164
165
166status_t CryptoHal::initCheck() const {
167 return mInitCheck;
168}
169
170
171bool CryptoHal::isCryptoSchemeSupported(const uint8_t uuid[16]) {
172 Mutex::Autolock autoLock(mLock);
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800173
174 for (size_t i = 0; i < mFactories.size(); i++) {
175 if (mFactories[i]->isCryptoSchemeSupported(uuid)) {
176 return true;
177 }
Jeff Tinkera53d6552017-01-20 00:31:46 -0800178 }
179 return false;
180}
181
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800182status_t CryptoHal::createPlugin(const uint8_t uuid[16], const void *data,
183 size_t size) {
Jeff Tinkera53d6552017-01-20 00:31:46 -0800184 Mutex::Autolock autoLock(mLock);
185
Jeff Tinkerabeb36a2017-02-17 09:42:46 -0800186 for (size_t i = 0; i < mFactories.size(); i++) {
187 if (mFactories[i]->isCryptoSchemeSupported(uuid)) {
188 mPlugin = makeCryptoPlugin(mFactories[i], uuid, data, size);
189 }
190 }
Jeff Tinkera53d6552017-01-20 00:31:46 -0800191
192 if (mPlugin == NULL) {
193 mInitCheck = ERROR_UNSUPPORTED;
194 } else {
195 mInitCheck = OK;
196 }
197
198 return mInitCheck;
199}
200
201status_t CryptoHal::destroyPlugin() {
202 Mutex::Autolock autoLock(mLock);
203
204 if (mInitCheck != OK) {
205 return mInitCheck;
206 }
207
208 mPlugin.clear();
209 return OK;
210}
211
212bool CryptoHal::requiresSecureDecoderComponent(const char *mime) const {
213 Mutex::Autolock autoLock(mLock);
214
215 if (mInitCheck != OK) {
216 return mInitCheck;
217 }
218
219 return mPlugin->requiresSecureDecoderComponent(hidl_string(mime));
220}
221
222
223/**
224 * If the heap base isn't set, get the heap base from the IMemory
225 * and send it to the HAL so it can map a remote heap of the same
226 * size. Once the heap base is established, shared memory buffers
227 * are sent by providing an offset into the heap and a buffer size.
228 */
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700229int32_t CryptoHal::setHeapBase(const sp<IMemoryHeap>& heap) {
230 if (heap == NULL) {
231 ALOGE("setHeapBase(): heap is NULL");
232 return -1;
233 }
Jeff Tinker3cb53162017-02-16 12:06:32 -0800234 native_handle_t* nativeHandle = native_handle_create(1, 0);
235 if (!nativeHandle) {
Chong Zhangd07c9272017-03-28 11:02:06 -0700236 ALOGE("setHeapBase(), failed to create native handle");
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700237 return -1;
Jeff Tinkera53d6552017-01-20 00:31:46 -0800238 }
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700239
240 Mutex::Autolock autoLock(mLock);
241
242 int32_t seqNum = mHeapSeqNum++;
Jeff Tinker9a9c3ab2018-04-19 16:23:21 -0700243
Jeff Tinker3cb53162017-02-16 12:06:32 -0800244 int fd = heap->getHeapID();
245 nativeHandle->data[0] = fd;
246 auto hidlHandle = hidl_handle(nativeHandle);
247 auto hidlMemory = hidl_memory("ashmem", hidlHandle, heap->getSize());
Jeff Tinker9a9c3ab2018-04-19 16:23:21 -0700248 mHeapBases.add(seqNum, HeapBase(mNextBufferId, heap->getSize()));
Jeff Tinker3cb53162017-02-16 12:06:32 -0800249 Return<void> hResult = mPlugin->setSharedBufferBase(hidlMemory, mNextBufferId++);
250 ALOGE_IF(!hResult.isOk(), "setSharedBufferBase(): remote call failed");
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700251 return seqNum;
Jeff Tinker3cb53162017-02-16 12:06:32 -0800252}
253
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700254void CryptoHal::clearHeapBase(int32_t seqNum) {
255 Mutex::Autolock autoLock(mLock);
256
257 mHeapBases.removeItem(seqNum);
Chong Zhangd07c9272017-03-28 11:02:06 -0700258}
259
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700260status_t CryptoHal::toSharedBuffer(const sp<IMemory>& memory, int32_t seqNum, ::SharedBuffer* buffer) {
Jeff Tinker3cb53162017-02-16 12:06:32 -0800261 ssize_t offset;
262 size_t size;
263
264 if (memory == NULL && buffer == NULL) {
265 return UNEXPECTED_NULL;
266 }
267
268 sp<IMemoryHeap> heap = memory->getMemory(&offset, &size);
269 if (heap == NULL) {
270 return UNEXPECTED_NULL;
271 }
272
Jeff Tinker9a9c3ab2018-04-19 16:23:21 -0700273 // memory must be in one of the heaps that have been set
274 if (mHeapBases.indexOfKey(seqNum) < 0) {
275 return UNKNOWN_ERROR;
276 }
Jeff Tinker3cb53162017-02-16 12:06:32 -0800277
Jeff Tinker9a9c3ab2018-04-19 16:23:21 -0700278 // heap must be the same size as the one that was set in setHeapBase
279 if (mHeapBases.valueFor(seqNum).getSize() != heap->getSize()) {
280 android_errorWriteLog(0x534e4554, "76221123");
281 return UNKNOWN_ERROR;
282 }
283
284 // memory must be within the address space of the heap
285 if (memory->pointer() != static_cast<uint8_t *>(heap->getBase()) + memory->offset() ||
286 heap->getSize() < memory->offset() + memory->size() ||
287 SIZE_MAX - memory->offset() < memory->size()) {
288 android_errorWriteLog(0x534e4554, "76221123");
289 return UNKNOWN_ERROR;
290 }
291
292 buffer->bufferId = mHeapBases.valueFor(seqNum).getBufferId();
Jeff Tinker3cb53162017-02-16 12:06:32 -0800293 buffer->offset = offset >= 0 ? offset : 0;
294 buffer->size = size;
Jeff Tinkera53d6552017-01-20 00:31:46 -0800295 return OK;
296}
297
298ssize_t CryptoHal::decrypt(const uint8_t keyId[16], const uint8_t iv[16],
299 CryptoPlugin::Mode mode, const CryptoPlugin::Pattern &pattern,
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700300 const ICrypto::SourceBuffer &source, size_t offset,
Jeff Tinkera53d6552017-01-20 00:31:46 -0800301 const CryptoPlugin::SubSample *subSamples, size_t numSubSamples,
302 const ICrypto::DestinationBuffer &destination, AString *errorDetailMsg) {
303 Mutex::Autolock autoLock(mLock);
304
305 if (mInitCheck != OK) {
306 return mInitCheck;
307 }
308
Jeff Tinkera53d6552017-01-20 00:31:46 -0800309 Mode hMode;
310 switch(mode) {
311 case CryptoPlugin::kMode_Unencrypted:
312 hMode = Mode::UNENCRYPTED ;
313 break;
314 case CryptoPlugin::kMode_AES_CTR:
315 hMode = Mode::AES_CTR;
316 break;
317 case CryptoPlugin::kMode_AES_WV:
318 hMode = Mode::AES_CBC_CTS;
319 break;
320 case CryptoPlugin::kMode_AES_CBC:
321 hMode = Mode::AES_CBC;
322 break;
323 default:
324 return UNKNOWN_ERROR;
325 }
326
327 Pattern hPattern;
328 hPattern.encryptBlocks = pattern.mEncryptBlocks;
329 hPattern.skipBlocks = pattern.mSkipBlocks;
330
331 std::vector<SubSample> stdSubSamples;
332 for (size_t i = 0; i < numSubSamples; i++) {
333 SubSample subSample;
334 subSample.numBytesOfClearData = subSamples[i].mNumBytesOfClearData;
335 subSample.numBytesOfEncryptedData = subSamples[i].mNumBytesOfEncryptedData;
336 stdSubSamples.push_back(subSample);
337 }
338 auto hSubSamples = hidl_vec<SubSample>(stdSubSamples);
339
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700340 int32_t heapSeqNum = source.mHeapSeqNum;
Jeff Tinkera53d6552017-01-20 00:31:46 -0800341 bool secure;
342 ::DestinationBuffer hDestination;
343 if (destination.mType == kDestinationTypeSharedMemory) {
344 hDestination.type = BufferType::SHARED_MEMORY;
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700345 status_t status = toSharedBuffer(destination.mSharedMemory, heapSeqNum,
Jeff Tinker3cb53162017-02-16 12:06:32 -0800346 &hDestination.nonsecureMemory);
347 if (status != OK) {
348 return status;
349 }
Jeff Tinkera53d6552017-01-20 00:31:46 -0800350 secure = false;
Jeff Tinker24420472018-01-11 17:46:16 -0800351 } else if (destination.mType == kDestinationTypeNativeHandle) {
Jeff Tinkera53d6552017-01-20 00:31:46 -0800352 hDestination.type = BufferType::NATIVE_HANDLE;
353 hDestination.secureMemory = hidl_handle(destination.mHandle);
354 secure = true;
Jeff Tinker24420472018-01-11 17:46:16 -0800355 } else {
356 android_errorWriteLog(0x534e4554, "70526702");
357 return UNKNOWN_ERROR;
Jeff Tinkera53d6552017-01-20 00:31:46 -0800358 }
359
Jeff Tinker3cb53162017-02-16 12:06:32 -0800360 ::SharedBuffer hSource;
Chong Zhang6dcab2b2017-03-28 14:18:27 -0700361 status_t status = toSharedBuffer(source.mSharedMemory, heapSeqNum, &hSource);
Jeff Tinker3cb53162017-02-16 12:06:32 -0800362 if (status != OK) {
363 return status;
364 }
Jeff Tinkera53d6552017-01-20 00:31:46 -0800365
366 status_t err = UNKNOWN_ERROR;
367 uint32_t bytesWritten = 0;
368
369 Return<void> hResult = mPlugin->decrypt(secure, toHidlArray16(keyId), toHidlArray16(iv), hMode,
Jeff Tinker3cb53162017-02-16 12:06:32 -0800370 hPattern, hSubSamples, hSource, offset, hDestination,
Jeff Tinkera53d6552017-01-20 00:31:46 -0800371 [&](Status status, uint32_t hBytesWritten, hidl_string hDetailedError) {
372 if (status == Status::OK) {
373 bytesWritten = hBytesWritten;
374 *errorDetailMsg = toString8(hDetailedError);
375 }
376 err = toStatusT(status);
377 }
378 );
379
380 if (!hResult.isOk()) {
381 err = DEAD_OBJECT;
382 }
383
384 if (err == OK) {
385 return bytesWritten;
386 }
387 return err;
388}
389
390void CryptoHal::notifyResolution(uint32_t width, uint32_t height) {
391 Mutex::Autolock autoLock(mLock);
392
393 if (mInitCheck != OK) {
394 return;
395 }
396
397 mPlugin->notifyResolution(width, height);
398}
399
400status_t CryptoHal::setMediaDrmSession(const Vector<uint8_t> &sessionId) {
401 Mutex::Autolock autoLock(mLock);
402
403 if (mInitCheck != OK) {
404 return mInitCheck;
405 }
406
407 return toStatusT(mPlugin->setMediaDrmSession(toHidlVec(sessionId)));
408}
409
410} // namespace android