ac7d8fe36f
Previously, to associate a MediaDrm session with MediaCrypto, the MediaDrm sessionId was passed as initData to the MediaCrypto constructor. This is not ideal for two reasons: it's pretty obscure and you can't change the association without tearing down the MediaCodec/MediaCrypto and starting all over. Use cases like key rotation require being able to update the MediaDrm session post-construction. This CL addresses both of these issues. bug: 19570317 Change-Id: Iede35e73e9007df13254edaa5877cb4832b28646
116 lines
3.8 KiB
C++
116 lines
3.8 KiB
C++
/*
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <media/stagefright/MediaErrors.h>
|
|
#include <utils/Errors.h>
|
|
#include <utils/Vector.h>
|
|
|
|
#ifndef CRYPTO_API_H_
|
|
|
|
#define CRYPTO_API_H_
|
|
|
|
namespace android {
|
|
|
|
struct AString;
|
|
struct CryptoPlugin;
|
|
|
|
struct CryptoFactory {
|
|
CryptoFactory() {}
|
|
virtual ~CryptoFactory() {}
|
|
|
|
virtual bool isCryptoSchemeSupported(const uint8_t uuid[16]) const = 0;
|
|
|
|
virtual status_t createPlugin(
|
|
const uint8_t uuid[16], const void *data, size_t size,
|
|
CryptoPlugin **plugin) = 0;
|
|
|
|
private:
|
|
CryptoFactory(const CryptoFactory &);
|
|
CryptoFactory &operator=(const CryptoFactory &);
|
|
};
|
|
|
|
struct CryptoPlugin {
|
|
enum Mode {
|
|
kMode_Unencrypted = 0,
|
|
kMode_AES_CTR = 1,
|
|
|
|
// Neither key nor iv are being used in this mode.
|
|
// Each subsample is encrypted w/ an iv of all zeroes.
|
|
kMode_AES_WV = 2, // FIX constant
|
|
};
|
|
|
|
struct SubSample {
|
|
uint32_t mNumBytesOfClearData;
|
|
uint32_t mNumBytesOfEncryptedData;
|
|
};
|
|
|
|
CryptoPlugin() {}
|
|
virtual ~CryptoPlugin() {}
|
|
|
|
// If this method returns false, a non-secure decoder will be used to
|
|
// decode the data after decryption. The decrypt API below will have
|
|
// to support insecure decryption of the data (secure = false) for
|
|
// media data of the given mime type.
|
|
virtual bool requiresSecureDecoderComponent(const char *mime) const = 0;
|
|
|
|
// To implement resolution constraints, the crypto plugin needs to know
|
|
// the resolution of the video being decrypted. The media player should
|
|
// call this method when the resolution is determined and any time it
|
|
// is subsequently changed.
|
|
|
|
virtual void notifyResolution(uint32_t /* width */, uint32_t /* height */) {}
|
|
|
|
// A MediaDrm session may be associated with a MediaCrypto session. The
|
|
// associated MediaDrm session is used to load decryption keys
|
|
// into the crypto/drm plugin. The keys are then referenced by key-id
|
|
// in the 'key' parameter to the decrypt() method.
|
|
// Should return NO_ERROR on success, ERROR_DRM_SESSION_NOT_OPENED if
|
|
// the session is not opened and a code from MediaErrors.h otherwise.
|
|
virtual status_t setMediaDrmSession(const Vector<uint8_t> & /*sessionId */) {
|
|
return ERROR_UNSUPPORTED;
|
|
}
|
|
|
|
// If the error returned falls into the range
|
|
// ERROR_DRM_VENDOR_MIN..ERROR_DRM_VENDOR_MAX, errorDetailMsg should be
|
|
// filled in with an appropriate string.
|
|
// At the java level these special errors will then trigger a
|
|
// MediaCodec.CryptoException that gives clients access to both
|
|
// the error code and the errorDetailMsg.
|
|
// Returns a non-negative result to indicate the number of bytes written
|
|
// to the dstPtr, or a negative result to indicate an error.
|
|
virtual ssize_t decrypt(
|
|
bool secure,
|
|
const uint8_t key[16],
|
|
const uint8_t iv[16],
|
|
Mode mode,
|
|
const void *srcPtr,
|
|
const SubSample *subSamples, size_t numSubSamples,
|
|
void *dstPtr,
|
|
AString *errorDetailMsg) = 0;
|
|
|
|
private:
|
|
CryptoPlugin(const CryptoPlugin &);
|
|
CryptoPlugin &operator=(const CryptoPlugin &);
|
|
};
|
|
|
|
} // namespace android
|
|
|
|
extern "C" {
|
|
extern android::CryptoFactory *createCryptoFactory();
|
|
}
|
|
|
|
#endif // CRYPTO_API_H_
|