blob: 98feb4d8edcaebe374b94f8854d2492543649e8e [file] [log] [blame]
Andreas Gampeaa120012018-03-28 16:23:24 -07001/*
2 * Copyright (C) 2018 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#include "hidden_api.h"
18
Narayan Kamathf5f1f802018-04-03 15:23:46 +010019#include <nativehelper/scoped_local_ref.h>
20
Andreas Gampeaa120012018-03-28 16:23:24 -070021#include "base/dumpable.h"
Narayan Kamathf5f1f802018-04-03 15:23:46 +010022#include "thread-current-inl.h"
23#include "well_known_classes.h"
Andreas Gampeaa120012018-03-28 16:23:24 -070024
25namespace art {
26namespace hiddenapi {
27
28static inline std::ostream& operator<<(std::ostream& os, AccessMethod value) {
29 switch (value) {
David Brazdil4525e0b2018-04-05 16:57:32 +010030 case kNone:
31 LOG(FATAL) << "Internal access to hidden API should not be logged";
32 UNREACHABLE();
Andreas Gampeaa120012018-03-28 16:23:24 -070033 case kReflection:
34 os << "reflection";
35 break;
36 case kJNI:
37 os << "JNI";
38 break;
39 case kLinking:
40 os << "linking";
41 break;
42 }
43 return os;
44}
45
46static constexpr bool EnumsEqual(EnforcementPolicy policy, HiddenApiAccessFlags::ApiList apiList) {
47 return static_cast<int>(policy) == static_cast<int>(apiList);
48}
49
50// GetMemberAction-related static_asserts.
51static_assert(
Andreas Gampeaa120012018-03-28 16:23:24 -070052 EnumsEqual(EnforcementPolicy::kDarkGreyAndBlackList, HiddenApiAccessFlags::kDarkGreylist) &&
53 EnumsEqual(EnforcementPolicy::kBlacklistOnly, HiddenApiAccessFlags::kBlacklist),
54 "Mismatch between EnforcementPolicy and ApiList enums");
55static_assert(
Mathew Inwooda8503d92018-04-05 16:10:25 +010056 EnforcementPolicy::kJustWarn < EnforcementPolicy::kDarkGreyAndBlackList &&
Andreas Gampeaa120012018-03-28 16:23:24 -070057 EnforcementPolicy::kDarkGreyAndBlackList < EnforcementPolicy::kBlacklistOnly,
58 "EnforcementPolicy values ordering not correct");
59
60namespace detail {
61
62MemberSignature::MemberSignature(ArtField* field) {
63 member_type_ = "field";
64 signature_parts_ = {
65 field->GetDeclaringClass()->GetDescriptor(&tmp_),
66 "->",
67 field->GetName(),
68 ":",
69 field->GetTypeDescriptor()
70 };
71}
72
73MemberSignature::MemberSignature(ArtMethod* method) {
74 member_type_ = "method";
75 signature_parts_ = {
76 method->GetDeclaringClass()->GetDescriptor(&tmp_),
77 "->",
78 method->GetName(),
79 method->GetSignature().ToString()
80 };
81}
82
83bool MemberSignature::DoesPrefixMatch(const std::string& prefix) const {
84 size_t pos = 0;
85 for (const std::string& part : signature_parts_) {
86 size_t count = std::min(prefix.length() - pos, part.length());
87 if (prefix.compare(pos, count, part, 0, count) == 0) {
88 pos += count;
89 } else {
90 return false;
91 }
92 }
93 // We have a complete match if all parts match (we exit the loop without
94 // returning) AND we've matched the whole prefix.
95 return pos == prefix.length();
96}
97
98bool MemberSignature::IsExempted(const std::vector<std::string>& exemptions) {
99 for (const std::string& exemption : exemptions) {
100 if (DoesPrefixMatch(exemption)) {
101 return true;
102 }
103 }
104 return false;
105}
106
107void MemberSignature::Dump(std::ostream& os) const {
108 for (std::string part : signature_parts_) {
109 os << part;
110 }
111}
112
113void MemberSignature::WarnAboutAccess(AccessMethod access_method,
114 HiddenApiAccessFlags::ApiList list) {
115 LOG(WARNING) << "Accessing hidden " << member_type_ << " " << Dumpable<MemberSignature>(*this)
116 << " (" << list << ", " << access_method << ")";
117}
118
119template<typename T>
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100120Action GetMemberActionImpl(T* member, Action action, AccessMethod access_method) {
David Brazdil4525e0b2018-04-05 16:57:32 +0100121 DCHECK_NE(action, kAllow);
122
Andreas Gampeaa120012018-03-28 16:23:24 -0700123 // Get the signature, we need it later.
124 MemberSignature member_signature(member);
125
126 Runtime* runtime = Runtime::Current();
127
Mathew Inwood9a819452018-04-05 13:58:55 +0100128 // Check for an exemption first. Exempted APIs are treated as white list.
129 // We only do this if we're about to deny, or if the app is debuggable. This is because:
130 // - we only print a warning for light greylist violations for debuggable apps
131 // - for non-debuggable apps, there is no distinction between light grey & whitelisted APIs.
132 // - we want to avoid the overhead of checking for exemptions for light greylisted APIs whenever
133 // possible.
134 if (action == kDeny || runtime->IsJavaDebuggable()) {
Andreas Gampeaa120012018-03-28 16:23:24 -0700135 if (member_signature.IsExempted(runtime->GetHiddenApiExemptions())) {
Mathew Inwood9a819452018-04-05 13:58:55 +0100136 action = kAllow;
Andreas Gampeaa120012018-03-28 16:23:24 -0700137 // Avoid re-examining the exemption list next time.
Mathew Inwood9a819452018-04-05 13:58:55 +0100138 // Note this results in no warning for the member, which seems like what one would expect.
139 // Exemptions effectively adds new members to the whitelist.
Mathew Inwood9a13d422018-04-09 12:24:55 +0100140 if (runtime->ShouldDedupeHiddenApiWarnings()) {
141 member->SetAccessFlags(HiddenApiAccessFlags::EncodeForRuntime(
142 member->GetAccessFlags(), HiddenApiAccessFlags::kWhitelist));
143 }
Mathew Inwood9a819452018-04-05 13:58:55 +0100144 return kAllow;
Andreas Gampeaa120012018-03-28 16:23:24 -0700145 }
Andreas Gampeaa120012018-03-28 16:23:24 -0700146
Mathew Inwood9a819452018-04-05 13:58:55 +0100147 if (access_method != kNone) {
148 // Print a log message with information about this class member access.
149 // We do this if we're about to block access, or the app is debuggable.
150 member_signature.WarnAboutAccess(access_method,
151 HiddenApiAccessFlags::DecodeFromRuntime(member->GetAccessFlags()));
152 }
David Brazdil4525e0b2018-04-05 16:57:32 +0100153 }
Andreas Gampeaa120012018-03-28 16:23:24 -0700154
Andreas Gampeaa120012018-03-28 16:23:24 -0700155 if (action == kDeny) {
156 // Block access
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100157 return action;
Andreas Gampeaa120012018-03-28 16:23:24 -0700158 }
159
160 // Allow access to this member but print a warning.
161 DCHECK(action == kAllowButWarn || action == kAllowButWarnAndToast);
162
David Brazdil4525e0b2018-04-05 16:57:32 +0100163 if (access_method != kNone) {
164 // Depending on a runtime flag, we might move the member into whitelist and
165 // skip the warning the next time the member is accessed.
166 if (runtime->ShouldDedupeHiddenApiWarnings()) {
167 member->SetAccessFlags(HiddenApiAccessFlags::EncodeForRuntime(
168 member->GetAccessFlags(), HiddenApiAccessFlags::kWhitelist));
169 }
Andreas Gampeaa120012018-03-28 16:23:24 -0700170
David Brazdil4525e0b2018-04-05 16:57:32 +0100171 // If this action requires a UI warning, set the appropriate flag.
172 if (action == kAllowButWarnAndToast || runtime->ShouldAlwaysSetHiddenApiWarningFlag()) {
173 runtime->SetPendingHiddenApiWarning(true);
174 }
Andreas Gampeaa120012018-03-28 16:23:24 -0700175 }
176
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100177 return action;
Andreas Gampeaa120012018-03-28 16:23:24 -0700178}
179
180// Need to instantiate this.
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100181template Action GetMemberActionImpl<ArtField>(ArtField* member,
182 Action action,
183 AccessMethod access_method);
184template Action GetMemberActionImpl<ArtMethod>(ArtMethod* member,
185 Action action,
186 AccessMethod access_method);
Andreas Gampeaa120012018-03-28 16:23:24 -0700187} // namespace detail
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100188
189template<typename T>
190void NotifyHiddenApiListener(T* member) {
191 Runtime* runtime = Runtime::Current();
192 if (!runtime->IsAotCompiler()) {
193 ScopedObjectAccessUnchecked soa(Thread::Current());
194
195 ScopedLocalRef<jobject> consumer_object(soa.Env(),
196 soa.Env()->GetStaticObjectField(
197 WellKnownClasses::dalvik_system_VMRuntime,
198 WellKnownClasses::dalvik_system_VMRuntime_nonSdkApiUsageConsumer));
199 // If the consumer is non-null, we call back to it to let it know that we
200 // have encountered an API that's in one of our lists.
201 if (consumer_object != nullptr) {
202 detail::MemberSignature member_signature(member);
203 std::ostringstream member_signature_str;
204 member_signature.Dump(member_signature_str);
205
206 ScopedLocalRef<jobject> signature_str(
207 soa.Env(),
208 soa.Env()->NewStringUTF(member_signature_str.str().c_str()));
209
210 // Call through to Consumer.accept(String memberSignature);
211 soa.Env()->CallVoidMethod(consumer_object.get(),
212 WellKnownClasses::java_util_function_Consumer_accept,
213 signature_str.get());
214 }
215 }
216}
217
218template void NotifyHiddenApiListener<ArtMethod>(ArtMethod* member);
219template void NotifyHiddenApiListener<ArtField>(ArtField* member);
220
Andreas Gampeaa120012018-03-28 16:23:24 -0700221} // namespace hiddenapi
222} // namespace art