2014-05-08 20:53:08 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/formats/mp4/encrypting_fragmenter.h"
|
2014-05-08 20:53:08 +00:00
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/base/aes_encryptor.h"
|
|
|
|
#include "packager/media/base/buffer_reader.h"
|
|
|
|
#include "packager/media/base/key_source.h"
|
|
|
|
#include "packager/media/base/media_sample.h"
|
2015-11-20 19:28:45 +00:00
|
|
|
#include "packager/media/filters/vp8_parser.h"
|
2015-11-18 19:51:15 +00:00
|
|
|
#include "packager/media/filters/vp9_parser.h"
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/formats/mp4/box_definitions.h"
|
2014-05-08 20:53:08 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
// Generate 64bit IV by default.
|
|
|
|
const size_t kDefaultIvSize = 8u;
|
2016-01-05 00:18:34 +00:00
|
|
|
const size_t kCencBlockSize = 16u;
|
2014-05-08 20:53:08 +00:00
|
|
|
} // namespace
|
|
|
|
|
2014-09-19 20:41:13 +00:00
|
|
|
namespace edash_packager {
|
2014-05-08 20:53:08 +00:00
|
|
|
namespace media {
|
|
|
|
namespace mp4 {
|
|
|
|
|
|
|
|
EncryptingFragmenter::EncryptingFragmenter(
|
|
|
|
TrackFragment* traf,
|
|
|
|
scoped_ptr<EncryptionKey> encryption_key,
|
2014-09-30 21:52:21 +00:00
|
|
|
int64_t clear_time,
|
2015-11-18 19:51:15 +00:00
|
|
|
VideoCodec video_codec,
|
2014-09-30 21:52:21 +00:00
|
|
|
uint8_t nalu_length_size)
|
2014-07-16 23:41:54 +00:00
|
|
|
: Fragmenter(traf),
|
2014-05-08 20:53:08 +00:00
|
|
|
encryption_key_(encryption_key.Pass()),
|
2015-11-18 19:51:15 +00:00
|
|
|
video_codec_(video_codec),
|
2014-05-08 20:53:08 +00:00
|
|
|
nalu_length_size_(nalu_length_size),
|
|
|
|
clear_time_(clear_time) {
|
|
|
|
DCHECK(encryption_key_);
|
2015-11-20 19:28:45 +00:00
|
|
|
if (video_codec == kCodecVP8) {
|
|
|
|
vpx_parser_.reset(new VP8Parser);
|
|
|
|
} else if (video_codec == kCodecVP9) {
|
|
|
|
vpx_parser_.reset(new VP9Parser);
|
|
|
|
}
|
2014-05-08 20:53:08 +00:00
|
|
|
}
|
|
|
|
|
2015-11-18 19:51:15 +00:00
|
|
|
EncryptingFragmenter::~EncryptingFragmenter() {}
|
2014-05-08 20:53:08 +00:00
|
|
|
|
|
|
|
Status EncryptingFragmenter::AddSample(scoped_refptr<MediaSample> sample) {
|
|
|
|
DCHECK(sample);
|
2014-06-30 16:32:06 +00:00
|
|
|
if (!fragment_initialized()) {
|
|
|
|
Status status = InitializeFragment(sample->dts());
|
|
|
|
if (!status.ok())
|
|
|
|
return status;
|
|
|
|
}
|
2014-05-08 20:53:08 +00:00
|
|
|
if (encryptor_) {
|
|
|
|
Status status = EncryptSample(sample);
|
|
|
|
if (!status.ok())
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
return Fragmenter::AddSample(sample);
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
Status EncryptingFragmenter::InitializeFragment(int64_t first_sample_dts) {
|
2014-06-30 16:32:06 +00:00
|
|
|
Status status = Fragmenter::InitializeFragment(first_sample_dts);
|
2014-05-08 20:53:08 +00:00
|
|
|
if (!status.ok())
|
|
|
|
return status;
|
|
|
|
|
2014-05-08 21:50:38 +00:00
|
|
|
traf()->auxiliary_size.sample_info_sizes.clear();
|
|
|
|
traf()->auxiliary_offset.offsets.clear();
|
2015-02-06 20:31:46 +00:00
|
|
|
if (IsSubsampleEncryptionRequired()) {
|
|
|
|
traf()->sample_encryption.flags |=
|
|
|
|
SampleEncryption::kUseSubsampleEncryption;
|
|
|
|
}
|
|
|
|
traf()->sample_encryption.sample_encryption_entries.clear();
|
2014-05-08 20:53:08 +00:00
|
|
|
|
2014-05-08 21:50:38 +00:00
|
|
|
const bool enable_encryption = clear_time_ <= 0;
|
|
|
|
if (!enable_encryption) {
|
|
|
|
// This fragment should be in clear text.
|
|
|
|
// At most two sample description entries, an encrypted entry and a clear
|
|
|
|
// entry, are generated. The 1-based clear entry index is always 2.
|
2014-09-30 21:52:21 +00:00
|
|
|
const uint32_t kClearSampleDescriptionIndex = 2;
|
2014-05-08 20:53:08 +00:00
|
|
|
|
2014-05-08 21:50:38 +00:00
|
|
|
traf()->header.flags |=
|
|
|
|
TrackFragmentHeader::kSampleDescriptionIndexPresentMask;
|
|
|
|
traf()->header.sample_description_index = kClearSampleDescriptionIndex;
|
|
|
|
}
|
|
|
|
return PrepareFragmentForEncryption(enable_encryption);
|
2014-05-08 20:53:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EncryptingFragmenter::FinalizeFragment() {
|
|
|
|
if (encryptor_) {
|
|
|
|
DCHECK_LE(clear_time_, 0);
|
|
|
|
FinalizeFragmentForEncryption();
|
|
|
|
} else {
|
|
|
|
DCHECK_GT(clear_time_, 0);
|
|
|
|
clear_time_ -= fragment_duration();
|
|
|
|
}
|
|
|
|
Fragmenter::FinalizeFragment();
|
|
|
|
}
|
|
|
|
|
2014-05-08 21:50:38 +00:00
|
|
|
Status EncryptingFragmenter::PrepareFragmentForEncryption(
|
|
|
|
bool enable_encryption) {
|
|
|
|
return (!enable_encryption || encryptor_) ? Status::OK : CreateEncryptor();
|
2014-05-08 20:53:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EncryptingFragmenter::FinalizeFragmentForEncryption() {
|
|
|
|
// The offset will be adjusted in Segmenter after knowing moof size.
|
|
|
|
traf()->auxiliary_offset.offsets.push_back(0);
|
|
|
|
|
|
|
|
// Optimize saiz box.
|
|
|
|
SampleAuxiliaryInformationSize& saiz = traf()->auxiliary_size;
|
|
|
|
saiz.sample_count = traf()->runs[0].sample_sizes.size();
|
|
|
|
if (!saiz.sample_info_sizes.empty()) {
|
|
|
|
if (!OptimizeSampleEntries(&saiz.sample_info_sizes,
|
|
|
|
&saiz.default_sample_info_size)) {
|
|
|
|
saiz.default_sample_info_size = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// |sample_info_sizes| table is filled in only for subsample encryption,
|
|
|
|
// otherwise |sample_info_size| is just the IV size.
|
|
|
|
DCHECK(!IsSubsampleEncryptionRequired());
|
|
|
|
saiz.default_sample_info_size = encryptor_->iv().size();
|
|
|
|
}
|
2015-02-06 20:31:46 +00:00
|
|
|
traf()->sample_encryption.iv_size = encryptor_->iv().size();
|
2014-05-08 20:53:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Status EncryptingFragmenter::CreateEncryptor() {
|
|
|
|
DCHECK(encryption_key_);
|
|
|
|
|
|
|
|
scoped_ptr<AesCtrEncryptor> encryptor(new AesCtrEncryptor());
|
|
|
|
const bool initialized = encryption_key_->iv.empty()
|
|
|
|
? encryptor->InitializeWithRandomIv(
|
|
|
|
encryption_key_->key, kDefaultIvSize)
|
|
|
|
: encryptor->InitializeWithIv(
|
|
|
|
encryption_key_->key, encryption_key_->iv);
|
|
|
|
if (!initialized)
|
|
|
|
return Status(error::MUXER_FAILURE, "Failed to create the encryptor.");
|
|
|
|
encryptor_ = encryptor.Pass();
|
|
|
|
return Status::OK;
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
void EncryptingFragmenter::EncryptBytes(uint8_t* data, uint32_t size) {
|
2014-05-08 20:53:08 +00:00
|
|
|
DCHECK(encryptor_);
|
|
|
|
CHECK(encryptor_->Encrypt(data, size, data));
|
|
|
|
}
|
|
|
|
|
|
|
|
Status EncryptingFragmenter::EncryptSample(scoped_refptr<MediaSample> sample) {
|
|
|
|
DCHECK(encryptor_);
|
|
|
|
|
2015-02-06 20:31:46 +00:00
|
|
|
SampleEncryptionEntry sample_encryption_entry;
|
|
|
|
sample_encryption_entry.initialization_vector = encryptor_->iv();
|
2014-09-30 21:52:21 +00:00
|
|
|
uint8_t* data = sample->writable_data();
|
2015-11-18 19:51:15 +00:00
|
|
|
if (IsSubsampleEncryptionRequired()) {
|
2015-11-20 19:28:45 +00:00
|
|
|
if (vpx_parser_) {
|
2015-11-18 19:51:15 +00:00
|
|
|
std::vector<VPxFrameInfo> vpx_frames;
|
2015-11-20 19:28:45 +00:00
|
|
|
if (!vpx_parser_->Parse(sample->data(), sample->data_size(),
|
2015-11-18 19:51:15 +00:00
|
|
|
&vpx_frames)) {
|
2015-11-20 19:28:45 +00:00
|
|
|
return Status(error::MUXER_FAILURE, "Failed to parse vpx frame.");
|
2015-11-18 19:51:15 +00:00
|
|
|
}
|
2016-01-05 00:18:34 +00:00
|
|
|
|
|
|
|
const bool is_superframe = vpx_frames.size() > 1;
|
2015-11-18 19:51:15 +00:00
|
|
|
for (const VPxFrameInfo& frame : vpx_frames) {
|
|
|
|
SubsampleEntry subsample;
|
|
|
|
subsample.clear_bytes = frame.uncompressed_header_size;
|
|
|
|
subsample.cipher_bytes =
|
|
|
|
frame.frame_size - frame.uncompressed_header_size;
|
2016-01-05 00:18:34 +00:00
|
|
|
|
|
|
|
// "VP Codec ISO Media File Format Binding" document requires that the
|
|
|
|
// encrypted bytes of each frame within the superframe must be block
|
|
|
|
// aligned so that the counter state can be computed for each frame
|
|
|
|
// within the superframe.
|
|
|
|
if (is_superframe) {
|
|
|
|
uint16_t misalign_bytes = subsample.cipher_bytes % kCencBlockSize;
|
|
|
|
subsample.clear_bytes += misalign_bytes;
|
|
|
|
subsample.cipher_bytes -= misalign_bytes;
|
|
|
|
}
|
|
|
|
|
2015-02-06 20:31:46 +00:00
|
|
|
sample_encryption_entry.subsamples.push_back(subsample);
|
2015-11-18 19:51:15 +00:00
|
|
|
if (subsample.cipher_bytes > 0)
|
|
|
|
EncryptBytes(data + subsample.clear_bytes, subsample.cipher_bytes);
|
|
|
|
data += frame.frame_size;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
BufferReader reader(data, sample->data_size());
|
|
|
|
while (reader.HasBytes(1)) {
|
|
|
|
uint64_t nalu_length;
|
|
|
|
if (!reader.ReadNBytesInto8(&nalu_length, nalu_length_size_))
|
|
|
|
return Status(error::MUXER_FAILURE, "Fail to read nalu_length.");
|
|
|
|
|
|
|
|
if (!reader.SkipBytes(nalu_length)) {
|
|
|
|
return Status(error::MUXER_FAILURE,
|
|
|
|
"Sample size does not match nalu_length.");
|
|
|
|
}
|
|
|
|
|
2015-02-06 20:31:46 +00:00
|
|
|
SubsampleEntry subsample;
|
|
|
|
subsample.clear_bytes = nalu_length_size_ + 1;
|
|
|
|
subsample.cipher_bytes = nalu_length - 1;
|
|
|
|
sample_encryption_entry.subsamples.push_back(subsample);
|
|
|
|
|
2015-11-18 19:51:15 +00:00
|
|
|
EncryptBytes(data + subsample.clear_bytes, subsample.cipher_bytes);
|
|
|
|
data += nalu_length_size_ + nalu_length;
|
2014-05-08 20:53:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The length of per-sample auxiliary datum, defined in CENC ch. 7.
|
2015-02-06 20:31:46 +00:00
|
|
|
traf()->auxiliary_size.sample_info_sizes.push_back(
|
|
|
|
sample_encryption_entry.ComputeSize());
|
2015-11-18 19:51:15 +00:00
|
|
|
} else {
|
|
|
|
EncryptBytes(data, sample->data_size());
|
2014-05-08 20:53:08 +00:00
|
|
|
}
|
|
|
|
|
2015-02-06 20:31:46 +00:00
|
|
|
traf()->sample_encryption.sample_encryption_entries.push_back(
|
|
|
|
sample_encryption_entry);
|
2014-05-08 20:53:08 +00:00
|
|
|
encryptor_->UpdateIv();
|
|
|
|
return Status::OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mp4
|
|
|
|
} // namespace media
|
2014-09-19 20:41:13 +00:00
|
|
|
} // namespace edash_packager
|