1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
media / cdm / win / test / media_foundation_clear_key_input_trust_authority.cc [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/cdm/win/test/media_foundation_clear_key_input_trust_authority.h"
#include <mfapi.h>
#include <mferror.h>
#include <nserror.h>
#include <wrl/client.h>
#include <wrl/implements.h>
#include <memory>
#include "base/notreached.h"
#include "media/base/win/mf_helpers.h"
#include "media/cdm/win/test/media_foundation_clear_key_activate.h"
#include "media/cdm/win/test/media_foundation_clear_key_decryptor.h"
#include "media/cdm/win/test/media_foundation_clear_key_guids.h"
namespace media {
using Microsoft::WRL::ComPtr;
using Microsoft::WRL::MakeAndInitialize;
MediaFoundationClearKeyInputTrustAuthority::
MediaFoundationClearKeyInputTrustAuthority() = default;
MediaFoundationClearKeyInputTrustAuthority::
~MediaFoundationClearKeyInputTrustAuthority() {
DVLOG_FUNC(1);
}
HRESULT MediaFoundationClearKeyInputTrustAuthority::RuntimeClassInitialize(
_In_ UINT32 stream_id,
_In_ scoped_refptr<AesDecryptor> aes_decryptor) {
DVLOG_FUNC(1) << "stream_id=" << stream_id;
aes_decryptor_ = std::move(aes_decryptor);
return S_OK;
}
// IMFInputTrustAuthority
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::GetDecrypter(
REFIID riid,
void** ppv) {
DVLOG_FUNC(1);
RETURN_IF_FAILED(GetShutdownStatus());
ComPtr<IMFTransform> mf_decryptor;
RETURN_IF_FAILED(
(MakeAndInitialize<MediaFoundationClearKeyDecryptor, IMFTransform>(
&mf_decryptor, aes_decryptor_)));
RETURN_IF_FAILED(mf_decryptor.CopyTo(riid, ppv));
return S_OK;
}
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::RequestAccess(
_In_ MFPOLICYMANAGER_ACTION action,
_COM_Outptr_ IMFActivate** content_enabler_activate) {
DVLOG_FUNC(1);
RETURN_IF_FAILED(GetShutdownStatus());
*content_enabler_activate = nullptr;
// The ITA only allows the PLAY, EXTRACT and NO actions
// NOTE: Topology created only on the basis of EXTRACT or NO action will NOT
// decrypt content.
if (PEACTION_EXTRACT == action || PEACTION_NO == action) {
return S_OK;
}
if (PEACTION_PLAY != action) {
return MF_E_ITA_UNSUPPORTED_ACTION;
}
ComPtr<IMFActivate> activate;
RETURN_IF_FAILED(
MakeAndInitialize<MediaFoundationClearKeyActivate>(&activate));
*content_enabler_activate = activate.Detach();
// Return S_OK to pretend the user has permission to perform this action.
return S_OK;
}
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::GetPolicy(
_In_ MFPOLICYMANAGER_ACTION action,
_COM_Outptr_ IMFOutputPolicy** policy) {
DVLOG_FUNC(1);
RETURN_IF_FAILED(GetShutdownStatus());
// For testing purpose, we don't need to set the output policy for now.
*policy = nullptr;
return S_OK;
}
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::BindAccess(
_In_ MFINPUTTRUSTAUTHORITY_ACCESS_PARAMS* params) {
DVLOG_FUNC(1);
RETURN_IF_FAILED(GetShutdownStatus());
if (params == nullptr || params->dwVer != 0) {
return E_INVALIDARG;
}
for (DWORD i = 0; i < params->cActions; ++i) {
MFPOLICYMANAGER_ACTION action = params->rgOutputActions[i].Action;
if (action != PEACTION_PLAY && action != PEACTION_EXTRACT &&
action != PEACTION_NO) {
return MF_E_UNEXPECTED;
}
}
return S_OK;
}
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::UpdateAccess(
_In_ MFINPUTTRUSTAUTHORITY_ACCESS_PARAMS* params) {
DVLOG_FUNC(1);
return BindAccess(params);
}
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::Reset() {
DVLOG_FUNC(1);
// API not used.
NOTIMPLEMENTED();
return E_NOTIMPL;
}
// IMFShutdown
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::GetShutdownStatus(
_Out_ MFSHUTDOWN_STATUS* status) {
DVLOG_FUNC(1);
base::AutoLock lock(lock_);
if (is_shutdown_) {
*status = MFSHUTDOWN_COMPLETED;
return S_OK;
}
return MF_E_INVALIDREQUEST;
}
STDMETHODIMP MediaFoundationClearKeyInputTrustAuthority::Shutdown() {
DVLOG_FUNC(1);
base::AutoLock lock(lock_);
if (is_shutdown_) {
return MF_E_SHUTDOWN;
}
is_shutdown_ = true;
return S_OK;
}
} // namespace media