blob: aa344271be9e9597cbdf1d3274317b810adc657b [file] [log] [blame]
Andreas Gampe80f5fe52018-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 Kamathe453a8d2018-04-03 15:23:46 +010019#include <nativehelper/scoped_local_ref.h>
20
Andreas Gampe80f5fe52018-03-28 16:23:24 -070021#include "base/dumpable.h"
Narayan Kamathe453a8d2018-04-03 15:23:46 +010022#include "thread-current-inl.h"
23#include "well_known_classes.h"
Andreas Gampe80f5fe52018-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 Brazdil54a99cf2018-04-05 16:57:32 +010030 case kNone:
31 LOG(FATAL) << "Internal access to hidden API should not be logged";
32 UNREACHABLE();
Andreas Gampe80f5fe52018-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(
52 EnumsEqual(EnforcementPolicy::kAllLists, HiddenApiAccessFlags::kLightGreylist) &&
53 EnumsEqual(EnforcementPolicy::kDarkGreyAndBlackList, HiddenApiAccessFlags::kDarkGreylist) &&
54 EnumsEqual(EnforcementPolicy::kBlacklistOnly, HiddenApiAccessFlags::kBlacklist),
55 "Mismatch between EnforcementPolicy and ApiList enums");
56static_assert(
57 EnforcementPolicy::kAllLists < EnforcementPolicy::kDarkGreyAndBlackList &&
58 EnforcementPolicy::kDarkGreyAndBlackList < EnforcementPolicy::kBlacklistOnly,
59 "EnforcementPolicy values ordering not correct");
60
61namespace detail {
62
63MemberSignature::MemberSignature(ArtField* field) {
64 member_type_ = "field";
65 signature_parts_ = {
66 field->GetDeclaringClass()->GetDescriptor(&tmp_),
67 "->",
68 field->GetName(),
69 ":",
70 field->GetTypeDescriptor()
71 };
72}
73
74MemberSignature::MemberSignature(ArtMethod* method) {
75 member_type_ = "method";
76 signature_parts_ = {
77 method->GetDeclaringClass()->GetDescriptor(&tmp_),
78 "->",
79 method->GetName(),
80 method->GetSignature().ToString()
81 };
82}
83
84bool MemberSignature::DoesPrefixMatch(const std::string& prefix) const {
85 size_t pos = 0;
86 for (const std::string& part : signature_parts_) {
87 size_t count = std::min(prefix.length() - pos, part.length());
88 if (prefix.compare(pos, count, part, 0, count) == 0) {
89 pos += count;
90 } else {
91 return false;
92 }
93 }
94 // We have a complete match if all parts match (we exit the loop without
95 // returning) AND we've matched the whole prefix.
96 return pos == prefix.length();
97}
98
99bool MemberSignature::IsExempted(const std::vector<std::string>& exemptions) {
100 for (const std::string& exemption : exemptions) {
101 if (DoesPrefixMatch(exemption)) {
102 return true;
103 }
104 }
105 return false;
106}
107
108void MemberSignature::Dump(std::ostream& os) const {
109 for (std::string part : signature_parts_) {
110 os << part;
111 }
112}
113
114void MemberSignature::WarnAboutAccess(AccessMethod access_method,
115 HiddenApiAccessFlags::ApiList list) {
116 LOG(WARNING) << "Accessing hidden " << member_type_ << " " << Dumpable<MemberSignature>(*this)
117 << " (" << list << ", " << access_method << ")";
118}
119
120template<typename T>
Narayan Kamathe453a8d2018-04-03 15:23:46 +0100121Action GetMemberActionImpl(T* member, Action action, AccessMethod access_method) {
David Brazdil54a99cf2018-04-05 16:57:32 +0100122 DCHECK_NE(action, kAllow);
123
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700124 // Get the signature, we need it later.
125 MemberSignature member_signature(member);
126
127 Runtime* runtime = Runtime::Current();
128
129 if (action == kDeny) {
130 // If we were about to deny, check for an exemption first.
131 // Exempted APIs are treated as light grey list.
132 if (member_signature.IsExempted(runtime->GetHiddenApiExemptions())) {
133 action = kAllowButWarn;
134 // Avoid re-examining the exemption list next time.
135 // Note this results in the warning below showing "light greylist", which
136 // seems like what one would expect. Exemptions effectively add new members to
137 // the light greylist.
138 member->SetAccessFlags(HiddenApiAccessFlags::EncodeForRuntime(
139 member->GetAccessFlags(), HiddenApiAccessFlags::kLightGreylist));
140 }
141 }
142
David Brazdil54a99cf2018-04-05 16:57:32 +0100143 if (access_method != kNone) {
144 // Print a log message with information about this class member access.
145 // We do this regardless of whether we block the access or not.
146 member_signature.WarnAboutAccess(access_method,
147 HiddenApiAccessFlags::DecodeFromRuntime(member->GetAccessFlags()));
148 }
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700149
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700150 if (action == kDeny) {
151 // Block access
Narayan Kamathe453a8d2018-04-03 15:23:46 +0100152 return action;
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700153 }
154
155 // Allow access to this member but print a warning.
156 DCHECK(action == kAllowButWarn || action == kAllowButWarnAndToast);
157
David Brazdil54a99cf2018-04-05 16:57:32 +0100158 if (access_method != kNone) {
159 // Depending on a runtime flag, we might move the member into whitelist and
160 // skip the warning the next time the member is accessed.
161 if (runtime->ShouldDedupeHiddenApiWarnings()) {
162 member->SetAccessFlags(HiddenApiAccessFlags::EncodeForRuntime(
163 member->GetAccessFlags(), HiddenApiAccessFlags::kWhitelist));
164 }
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700165
David Brazdil54a99cf2018-04-05 16:57:32 +0100166 // If this action requires a UI warning, set the appropriate flag.
167 if (action == kAllowButWarnAndToast || runtime->ShouldAlwaysSetHiddenApiWarningFlag()) {
168 runtime->SetPendingHiddenApiWarning(true);
169 }
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700170 }
171
Narayan Kamathe453a8d2018-04-03 15:23:46 +0100172 return action;
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700173}
174
175// Need to instantiate this.
Narayan Kamathe453a8d2018-04-03 15:23:46 +0100176template Action GetMemberActionImpl<ArtField>(ArtField* member,
177 Action action,
178 AccessMethod access_method);
179template Action GetMemberActionImpl<ArtMethod>(ArtMethod* member,
180 Action action,
181 AccessMethod access_method);
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700182} // namespace detail
Narayan Kamathe453a8d2018-04-03 15:23:46 +0100183
184template<typename T>
185void NotifyHiddenApiListener(T* member) {
186 Runtime* runtime = Runtime::Current();
187 if (!runtime->IsAotCompiler()) {
188 ScopedObjectAccessUnchecked soa(Thread::Current());
189
190 ScopedLocalRef<jobject> consumer_object(soa.Env(),
191 soa.Env()->GetStaticObjectField(
192 WellKnownClasses::dalvik_system_VMRuntime,
193 WellKnownClasses::dalvik_system_VMRuntime_nonSdkApiUsageConsumer));
194 // If the consumer is non-null, we call back to it to let it know that we
195 // have encountered an API that's in one of our lists.
196 if (consumer_object != nullptr) {
197 detail::MemberSignature member_signature(member);
198 std::ostringstream member_signature_str;
199 member_signature.Dump(member_signature_str);
200
201 ScopedLocalRef<jobject> signature_str(
202 soa.Env(),
203 soa.Env()->NewStringUTF(member_signature_str.str().c_str()));
204
205 // Call through to Consumer.accept(String memberSignature);
206 soa.Env()->CallVoidMethod(consumer_object.get(),
207 WellKnownClasses::java_util_function_Consumer_accept,
208 signature_str.get());
209 }
210 }
211}
212
213template void NotifyHiddenApiListener<ArtMethod>(ArtMethod* member);
214template void NotifyHiddenApiListener<ArtField>(ArtField* member);
215
Andreas Gampe80f5fe52018-03-28 16:23:24 -0700216} // namespace hiddenapi
217} // namespace art