blob: a36bd4ae4023c614007945e8b6e2921318066d47 [file] [log] [blame]
aimitakeshid074e302010-07-29 10:12:27 +09001/*
2 * Copyright (C) 2010 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
Takeshi Aimidc549d62010-09-20 23:40:41 +090017//#define LOG_NDEBUG 0
aimitakeshid074e302010-07-29 10:12:27 +090018#define LOG_TAG "DrmManagerClientImpl(Native)"
19#include <utils/Log.h>
20
21#include <utils/String8.h>
22#include <utils/Vector.h>
23#include <binder/IServiceManager.h>
24
25#include "DrmManagerClientImpl.h"
26
27using namespace android;
28
29#define INVALID_VALUE -1
30
Gloria Wang5c96c652011-03-15 10:52:28 -070031Mutex DrmManagerClientImpl::sMutex;
32sp<IDrmManagerService> DrmManagerClientImpl::sDrmManagerService;
33sp<DrmManagerClientImpl::DeathNotifier> DrmManagerClientImpl::sDeathNotifier;
aimitakeshid074e302010-07-29 10:12:27 +090034const String8 DrmManagerClientImpl::EMPTY_STRING("");
35
36DrmManagerClientImpl* DrmManagerClientImpl::create(int* pUniqueId) {
37 if (0 == *pUniqueId) {
Takeshi Aimidc549d62010-09-20 23:40:41 +090038 int uniqueId = getDrmManagerService()->addUniqueId(*pUniqueId);
aimitakeshid074e302010-07-29 10:12:27 +090039 *pUniqueId = uniqueId;
Takeshi Aimidc549d62010-09-20 23:40:41 +090040 } else {
41 getDrmManagerService()->addUniqueId(*pUniqueId);
aimitakeshid074e302010-07-29 10:12:27 +090042 }
aimitakeshid074e302010-07-29 10:12:27 +090043 return new DrmManagerClientImpl();
44}
45
46void DrmManagerClientImpl::remove(int uniqueId) {
Takeshi Aimidc549d62010-09-20 23:40:41 +090047 getDrmManagerService()->removeUniqueId(uniqueId);
aimitakeshid074e302010-07-29 10:12:27 +090048}
49
aimitakeshid074e302010-07-29 10:12:27 +090050const sp<IDrmManagerService>& DrmManagerClientImpl::getDrmManagerService() {
Gloria Wang5c96c652011-03-15 10:52:28 -070051 Mutex::Autolock lock(sMutex);
52 if (NULL == sDrmManagerService.get()) {
aimitakeshid074e302010-07-29 10:12:27 +090053 sp<IServiceManager> sm = defaultServiceManager();
54 sp<IBinder> binder;
55 do {
56 binder = sm->getService(String16("drm.drmManager"));
57 if (binder != 0) {
58 break;
59 }
60 LOGW("DrmManagerService not published, waiting...");
61 struct timespec reqt;
62 reqt.tv_sec = 0;
63 reqt.tv_nsec = 500000000; //0.5 sec
64 nanosleep(&reqt, NULL);
65 } while (true);
Gloria Wang5c96c652011-03-15 10:52:28 -070066 if (NULL == sDeathNotifier.get()) {
67 sDeathNotifier = new DeathNotifier();
68 }
69 binder->linkToDeath(sDeathNotifier);
70 sDrmManagerService = interface_cast<IDrmManagerService>(binder);
aimitakeshid074e302010-07-29 10:12:27 +090071 }
Gloria Wang5c96c652011-03-15 10:52:28 -070072 return sDrmManagerService;
aimitakeshid074e302010-07-29 10:12:27 +090073}
74
Takeshi Aimic7b3ccc2010-10-08 23:05:49 +090075void DrmManagerClientImpl::addClient(int uniqueId) {
76 getDrmManagerService()->addClient(uniqueId);
aimitakeshid074e302010-07-29 10:12:27 +090077}
78
Takeshi Aimic7b3ccc2010-10-08 23:05:49 +090079void DrmManagerClientImpl::removeClient(int uniqueId) {
80 getDrmManagerService()->removeClient(uniqueId);
aimitakeshid074e302010-07-29 10:12:27 +090081}
82
83status_t DrmManagerClientImpl::setOnInfoListener(
Gloria Wangae775272011-02-24 16:40:57 -080084 int uniqueId,
85 const sp<DrmManagerClient::OnInfoListener>& infoListener) {
aimitakeshid074e302010-07-29 10:12:27 +090086 Mutex::Autolock _l(mLock);
87 mOnInfoListener = infoListener;
Takeshi Aimif05913a2010-11-30 16:27:42 +090088 return getDrmManagerService()->setDrmServiceListener(uniqueId,
89 (NULL != infoListener.get()) ? this : NULL);
aimitakeshid074e302010-07-29 10:12:27 +090090}
91
Gloria Wangae775272011-02-24 16:40:57 -080092status_t DrmManagerClientImpl::installDrmEngine(
93 int uniqueId, const String8& drmEngineFile) {
aimitakeshid074e302010-07-29 10:12:27 +090094 status_t status = DRM_ERROR_UNKNOWN;
95 if (EMPTY_STRING != drmEngineFile) {
96 status = getDrmManagerService()->installDrmEngine(uniqueId, drmEngineFile);
97 }
98 return status;
99}
100
101DrmConstraints* DrmManagerClientImpl::getConstraints(
102 int uniqueId, const String8* path, const int action) {
103 DrmConstraints *drmConstraints = NULL;
104 if ((NULL != path) && (EMPTY_STRING != *path)) {
Gloria Wangae775272011-02-24 16:40:57 -0800105 drmConstraints =
106 getDrmManagerService()->getConstraints(uniqueId, path, action);
aimitakeshid074e302010-07-29 10:12:27 +0900107 }
108 return drmConstraints;
109}
110
Takeshi Aimidc9186562010-11-16 13:56:11 +0900111DrmMetadata* DrmManagerClientImpl::getMetadata(int uniqueId, const String8* path) {
112 DrmMetadata *drmMetadata = NULL;
113 if ((NULL != path) && (EMPTY_STRING != *path)) {
114 drmMetadata = getDrmManagerService()->getMetadata(uniqueId, path);
115 }
116 return drmMetadata;
117}
118
Gloria Wangae775272011-02-24 16:40:57 -0800119bool DrmManagerClientImpl::canHandle(
120 int uniqueId, const String8& path, const String8& mimeType) {
aimitakeshid074e302010-07-29 10:12:27 +0900121 bool retCode = false;
122 if ((EMPTY_STRING != path) || (EMPTY_STRING != mimeType)) {
123 retCode = getDrmManagerService()->canHandle(uniqueId, path, mimeType);
124 }
125 return retCode;
126}
127
Gloria Wangae775272011-02-24 16:40:57 -0800128DrmInfoStatus* DrmManagerClientImpl::processDrmInfo(
129 int uniqueId, const DrmInfo* drmInfo) {
aimitakeshid074e302010-07-29 10:12:27 +0900130 DrmInfoStatus *drmInfoStatus = NULL;
131 if (NULL != drmInfo) {
132 drmInfoStatus = getDrmManagerService()->processDrmInfo(uniqueId, drmInfo);
133 }
134 return drmInfoStatus;
135}
136
Gloria Wangae775272011-02-24 16:40:57 -0800137DrmInfo* DrmManagerClientImpl::acquireDrmInfo(
138 int uniqueId, const DrmInfoRequest* drmInfoRequest) {
aimitakeshid074e302010-07-29 10:12:27 +0900139 DrmInfo* drmInfo = NULL;
140 if (NULL != drmInfoRequest) {
141 drmInfo = getDrmManagerService()->acquireDrmInfo(uniqueId, drmInfoRequest);
142 }
143 return drmInfo;
144}
145
Takeshi Aimidc549d62010-09-20 23:40:41 +0900146status_t DrmManagerClientImpl::saveRights(int uniqueId, const DrmRights& drmRights,
aimitakeshid074e302010-07-29 10:12:27 +0900147 const String8& rightsPath, const String8& contentPath) {
Gloria Wang5c96c652011-03-15 10:52:28 -0700148 return getDrmManagerService()->saveRights(
Gloria Wangae775272011-02-24 16:40:57 -0800149 uniqueId, drmRights, rightsPath, contentPath);
aimitakeshid074e302010-07-29 10:12:27 +0900150}
151
Gloria Wangae775272011-02-24 16:40:57 -0800152String8 DrmManagerClientImpl::getOriginalMimeType(
153 int uniqueId, const String8& path) {
aimitakeshid074e302010-07-29 10:12:27 +0900154 String8 mimeType = EMPTY_STRING;
155 if (EMPTY_STRING != path) {
156 mimeType = getDrmManagerService()->getOriginalMimeType(uniqueId, path);
157 }
158 return mimeType;
159}
160
161int DrmManagerClientImpl::getDrmObjectType(
162 int uniqueId, const String8& path, const String8& mimeType) {
163 int drmOjectType = DrmObjectType::UNKNOWN;
164 if ((EMPTY_STRING != path) || (EMPTY_STRING != mimeType)) {
Gloria Wangae775272011-02-24 16:40:57 -0800165 drmOjectType =
166 getDrmManagerService()->getDrmObjectType(uniqueId, path, mimeType);
aimitakeshid074e302010-07-29 10:12:27 +0900167 }
168 return drmOjectType;
169}
170
171int DrmManagerClientImpl::checkRightsStatus(
172 int uniqueId, const String8& path, int action) {
173 int rightsStatus = RightsStatus::RIGHTS_INVALID;
174 if (EMPTY_STRING != path) {
Gloria Wangae775272011-02-24 16:40:57 -0800175 rightsStatus =
176 getDrmManagerService()->checkRightsStatus(uniqueId, path, action);
aimitakeshid074e302010-07-29 10:12:27 +0900177 }
178 return rightsStatus;
179}
180
Takeshi Aimidc549d62010-09-20 23:40:41 +0900181status_t DrmManagerClientImpl::consumeRights(
Gloria Wangae775272011-02-24 16:40:57 -0800182 int uniqueId, sp<DecryptHandle> &decryptHandle,
183 int action, bool reserve) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900184 status_t status = DRM_ERROR_UNKNOWN;
Gloria Wangae775272011-02-24 16:40:57 -0800185 if (NULL != decryptHandle.get()) {
186 status = getDrmManagerService()->consumeRights(
187 uniqueId, decryptHandle.get(), action, reserve);
aimitakeshid074e302010-07-29 10:12:27 +0900188 }
Takeshi Aimidc549d62010-09-20 23:40:41 +0900189 return status;
aimitakeshid074e302010-07-29 10:12:27 +0900190}
191
Takeshi Aimidc549d62010-09-20 23:40:41 +0900192status_t DrmManagerClientImpl::setPlaybackStatus(
Gloria Wangae775272011-02-24 16:40:57 -0800193 int uniqueId, sp<DecryptHandle> &decryptHandle,
194 int playbackStatus, int64_t position) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900195 status_t status = DRM_ERROR_UNKNOWN;
Gloria Wangae775272011-02-24 16:40:57 -0800196 if (NULL != decryptHandle.get()) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900197 status = getDrmManagerService()->setPlaybackStatus(
Gloria Wangae775272011-02-24 16:40:57 -0800198 uniqueId, decryptHandle.get(), playbackStatus, position);
aimitakeshid074e302010-07-29 10:12:27 +0900199 }
Takeshi Aimidc549d62010-09-20 23:40:41 +0900200 return status;
aimitakeshid074e302010-07-29 10:12:27 +0900201}
202
203bool DrmManagerClientImpl::validateAction(
Gloria Wangae775272011-02-24 16:40:57 -0800204 int uniqueId, const String8& path,
205 int action, const ActionDescription& description) {
aimitakeshid074e302010-07-29 10:12:27 +0900206 bool retCode = false;
207 if (EMPTY_STRING != path) {
Gloria Wangae775272011-02-24 16:40:57 -0800208 retCode = getDrmManagerService()->validateAction(
209 uniqueId, path, action, description);
aimitakeshid074e302010-07-29 10:12:27 +0900210 }
211 return retCode;
212}
213
Takeshi Aimidc549d62010-09-20 23:40:41 +0900214status_t DrmManagerClientImpl::removeRights(int uniqueId, const String8& path) {
215 status_t status = DRM_ERROR_UNKNOWN;
aimitakeshid074e302010-07-29 10:12:27 +0900216 if (EMPTY_STRING != path) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900217 status = getDrmManagerService()->removeRights(uniqueId, path);
aimitakeshid074e302010-07-29 10:12:27 +0900218 }
Takeshi Aimidc549d62010-09-20 23:40:41 +0900219 return status;
aimitakeshid074e302010-07-29 10:12:27 +0900220}
221
Takeshi Aimidc549d62010-09-20 23:40:41 +0900222status_t DrmManagerClientImpl::removeAllRights(int uniqueId) {
223 return getDrmManagerService()->removeAllRights(uniqueId);
aimitakeshid074e302010-07-29 10:12:27 +0900224}
225
Gloria Wangae775272011-02-24 16:40:57 -0800226int DrmManagerClientImpl::openConvertSession(
227 int uniqueId, const String8& mimeType) {
aimitakeshid074e302010-07-29 10:12:27 +0900228 int retCode = INVALID_VALUE;
229 if (EMPTY_STRING != mimeType) {
230 retCode = getDrmManagerService()->openConvertSession(uniqueId, mimeType);
231 }
232 return retCode;
233}
234
235DrmConvertedStatus* DrmManagerClientImpl::convertData(
236 int uniqueId, int convertId, const DrmBuffer* inputData) {
237 DrmConvertedStatus* drmConvertedStatus = NULL;
238 if (NULL != inputData) {
Gloria Wangae775272011-02-24 16:40:57 -0800239 drmConvertedStatus =
240 getDrmManagerService()->convertData(uniqueId, convertId, inputData);
aimitakeshid074e302010-07-29 10:12:27 +0900241 }
242 return drmConvertedStatus;
243}
244
Gloria Wangae775272011-02-24 16:40:57 -0800245DrmConvertedStatus* DrmManagerClientImpl::closeConvertSession(
246 int uniqueId, int convertId) {
aimitakeshid074e302010-07-29 10:12:27 +0900247 return getDrmManagerService()->closeConvertSession(uniqueId, convertId);
248}
249
250status_t DrmManagerClientImpl::getAllSupportInfo(
251 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
252 status_t status = DRM_ERROR_UNKNOWN;
253 if ((NULL != drmSupportInfoArray) && (NULL != length)) {
Gloria Wangae775272011-02-24 16:40:57 -0800254 status = getDrmManagerService()->getAllSupportInfo(
255 uniqueId, length, drmSupportInfoArray);
aimitakeshid074e302010-07-29 10:12:27 +0900256 }
257 return status;
258}
259
Gloria Wangae775272011-02-24 16:40:57 -0800260sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession(
Gloria Wang5fc3edb2010-11-19 15:19:36 -0800261 int uniqueId, int fd, off64_t offset, off64_t length) {
aimitakeshid074e302010-07-29 10:12:27 +0900262 return getDrmManagerService()->openDecryptSession(uniqueId, fd, offset, length);
263}
264
Gloria Wangae775272011-02-24 16:40:57 -0800265sp<DecryptHandle> DrmManagerClientImpl::openDecryptSession(
266 int uniqueId, const char* uri) {
Takeshi Aimic7b3ccc2010-10-08 23:05:49 +0900267 DecryptHandle* handle = NULL;
268 if (NULL != uri) {
269 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri);
270 }
271 return handle;
272}
273
Gloria Wangae775272011-02-24 16:40:57 -0800274status_t DrmManagerClientImpl::closeDecryptSession(
275 int uniqueId, sp<DecryptHandle> &decryptHandle) {
aimitakeshid074e302010-07-29 10:12:27 +0900276 status_t status = DRM_ERROR_UNKNOWN;
Gloria Wangae775272011-02-24 16:40:57 -0800277 if (NULL != decryptHandle.get()) {
278 status = getDrmManagerService()->closeDecryptSession(
279 uniqueId, decryptHandle.get());
aimitakeshid074e302010-07-29 10:12:27 +0900280 }
281 return status;
282}
283
Gloria Wangae775272011-02-24 16:40:57 -0800284status_t DrmManagerClientImpl::initializeDecryptUnit(
285 int uniqueId, sp<DecryptHandle> &decryptHandle,
286 int decryptUnitId, const DrmBuffer* headerInfo) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900287 status_t status = DRM_ERROR_UNKNOWN;
Gloria Wangae775272011-02-24 16:40:57 -0800288 if ((NULL != decryptHandle.get()) && (NULL != headerInfo)) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900289 status = getDrmManagerService()->initializeDecryptUnit(
Gloria Wangae775272011-02-24 16:40:57 -0800290 uniqueId, decryptHandle.get(), decryptUnitId, headerInfo);
aimitakeshid074e302010-07-29 10:12:27 +0900291 }
Takeshi Aimidc549d62010-09-20 23:40:41 +0900292 return status;
293}
294
Gloria Wangae775272011-02-24 16:40:57 -0800295status_t DrmManagerClientImpl::decrypt(
296 int uniqueId, sp<DecryptHandle> &decryptHandle,
297 int decryptUnitId, const DrmBuffer* encBuffer,
298 DrmBuffer** decBuffer, DrmBuffer* IV) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900299 status_t status = DRM_ERROR_UNKNOWN;
Gloria Wangae775272011-02-24 16:40:57 -0800300 if ((NULL != decryptHandle.get()) && (NULL != encBuffer)
Takeshi Aimidc549d62010-09-20 23:40:41 +0900301 && (NULL != decBuffer) && (NULL != *decBuffer)) {
302 status = getDrmManagerService()->decrypt(
Gloria Wangae775272011-02-24 16:40:57 -0800303 uniqueId, decryptHandle.get(), decryptUnitId,
304 encBuffer, decBuffer, IV);
Takeshi Aimidc549d62010-09-20 23:40:41 +0900305 }
306 return status;
307}
308
309status_t DrmManagerClientImpl::finalizeDecryptUnit(
Gloria Wangae775272011-02-24 16:40:57 -0800310 int uniqueId, sp<DecryptHandle> &decryptHandle, int decryptUnitId) {
Takeshi Aimidc549d62010-09-20 23:40:41 +0900311 status_t status = DRM_ERROR_UNKNOWN;
Gloria Wangae775272011-02-24 16:40:57 -0800312 if (NULL != decryptHandle.get()) {
313 status = getDrmManagerService()->finalizeDecryptUnit(
314 uniqueId, decryptHandle.get(), decryptUnitId);
Takeshi Aimidc549d62010-09-20 23:40:41 +0900315 }
316 return status;
aimitakeshid074e302010-07-29 10:12:27 +0900317}
318
Gloria Wangae775272011-02-24 16:40:57 -0800319ssize_t DrmManagerClientImpl::pread(int uniqueId, sp<DecryptHandle> &decryptHandle,
Gloria Wang5fc3edb2010-11-19 15:19:36 -0800320 void* buffer, ssize_t numBytes, off64_t offset) {
aimitakeshid074e302010-07-29 10:12:27 +0900321 ssize_t retCode = INVALID_VALUE;
Gloria Wangae775272011-02-24 16:40:57 -0800322 if ((NULL != decryptHandle.get()) && (NULL != buffer) && (0 < numBytes)) {
323 retCode = getDrmManagerService()->pread(
324 uniqueId, decryptHandle.get(), buffer, numBytes, offset);
aimitakeshid074e302010-07-29 10:12:27 +0900325 }
326 return retCode;
327}
328
329status_t DrmManagerClientImpl::notify(const DrmInfoEvent& event) {
330 if (NULL != mOnInfoListener.get()) {
331 Mutex::Autolock _l(mLock);
332 sp<DrmManagerClient::OnInfoListener> listener = mOnInfoListener;
333 listener->onInfo(event);
334 }
335 return DRM_NO_ERROR;
336}
337
Gloria Wang5c96c652011-03-15 10:52:28 -0700338DrmManagerClientImpl::DeathNotifier::~DeathNotifier() {
339 Mutex::Autolock lock(sMutex);
340 if (NULL != sDrmManagerService.get()) {
341 sDrmManagerService->asBinder()->unlinkToDeath(this);
342 }
343}
344
345void DrmManagerClientImpl::DeathNotifier::binderDied(const wp<IBinder>& who) {
346 Mutex::Autolock lock(sMutex);
347 DrmManagerClientImpl::sDrmManagerService.clear();
348 LOGW("DrmManager server died!");
349}
350