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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/*
* Copyright (C) 2018 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.
*/
#ifndef ART_LIBARTBASE_BASE_HIDDENAPI_FLAGS_H_
#define ART_LIBARTBASE_BASE_HIDDENAPI_FLAGS_H_
#include "sdk_version.h"
#include <vector>
#include "android-base/logging.h"
#include "base/bit_utils.h"
#include "base/dumpable.h"
#include "base/macros.h"
#include "base/hiddenapi_stubs.h"
namespace art {
namespace hiddenapi {
// Helper methods used inside ApiList. These were moved outside of the ApiList
// class so that they can be used in static_asserts. If they were inside, they
// would be part of an unfinished type.
namespace helper {
// Casts enum value to uint32_t.
template<typename T>
constexpr uint32_t ToUint(T val) { return static_cast<uint32_t>(val); }
// Returns uint32_t with one bit set at an index given by an enum value.
template<typename T>
constexpr uint32_t ToBit(T val) { return 1u << ToUint(val); }
// Returns a bit mask with `size` least significant bits set.
constexpr uint32_t BitMask(uint32_t size) { return (1u << size) - 1; }
// Returns a bit mask formed from an enum defining kMin and kMax. The values
// are assumed to be indices of min/max bits and the resulting bitmask has
// bits [kMin, kMax] set.
template<typename T>
constexpr uint32_t BitMask() {
return BitMask(ToUint(T::kMax) + 1) & (~BitMask(ToUint(T::kMin)));
}
// Returns true if `val` is a bitwise subset of `mask`.
constexpr bool MatchesBitMask(uint32_t val, uint32_t mask) { return (val & mask) == val; }
// Returns true if the uint32_t value of `val` is a bitwise subset of `mask`.
template<typename T>
constexpr bool MatchesBitMask(T val, uint32_t mask) { return MatchesBitMask(ToUint(val), mask); }
// Returns the number of values defined in an enum, assuming the enum defines
// kMin and kMax and no integer values are skipped between them.
template<typename T>
constexpr uint32_t NumValues() { return ToUint(T::kMax) - ToUint(T::kMin) + 1; }
// Returns enum value at position i from enum list.
template <typename T>
constexpr T GetEnumAt(uint32_t i) {
return static_cast<T>(ToUint(T::kMin) + i);
}
} // namespace helper
/*
* This class represents the information whether a field/method is in
* public API (whitelist) or if it isn't, apps targeting which SDK
* versions are allowed to access it.
*/
class ApiList {
private:
// Number of bits reserved for Value in dex flags, and the corresponding bit mask.
static constexpr uint32_t kValueBitSize = 3;
static constexpr uint32_t kValueBitMask = helper::BitMask(kValueBitSize);
enum class Value : uint32_t {
// Values independent of target SDK version of app
kWhitelist = 0,
kGreylist = 1,
kBlacklist = 2,
// Values dependent on target SDK version of app. Put these last as
// their list will be extended in future releases.
// The max release code implicitly includes all maintenance releases,
// e.g. GreylistMaxO is accessible to targetSdkVersion <= 27 (O_MR1).
kGreylistMaxO = 3,
kGreylistMaxP = 4,
kGreylistMaxQ = 5,
// Special values
kInvalid = (static_cast<uint32_t>(-1) & kValueBitMask),
kMin = kWhitelist,
kMax = kGreylistMaxQ,
};
// Additional bit flags after the first kValueBitSize bits in dex flags.
// These are used for domain-specific API.
enum class DomainApi : uint32_t {
kCorePlatformApi = kValueBitSize,
kTestApi = kValueBitSize + 1,
// Special values
kMin = kCorePlatformApi,
kMax = kTestApi,
};
// Bit mask of all domain API flags.
static constexpr uint32_t kDomainApiBitMask = helper::BitMask<DomainApi>();
// Check that Values fit in the designated number of bits.
static_assert(kValueBitSize >= MinimumBitsToStore(helper::ToUint(Value::kMax)),
"Not enough bits to store all ApiList values");
// Sanity checks that all Values are covered by kValueBitMask.
static_assert(helper::MatchesBitMask(Value::kMin, kValueBitMask));
static_assert(helper::MatchesBitMask(Value::kMax, kValueBitMask));
// Assert that Value::kInvalid is larger than the maximum Value.
static_assert(helper::ToUint(Value::kMax) < helper::ToUint(Value::kInvalid));
// Names corresponding to Values.
static constexpr const char* kValueNames[] = {
"whitelist",
"greylist",
"blacklist",
"greylist-max-o",
"greylist-max-p",
"greylist-max-q",
};
// Names corresponding to DomainApis.
static constexpr const char* kDomainApiNames[] {
"core-platform-api",
"test-api",
};
// Maximum SDK versions allowed to access ApiList of given Value.
static constexpr SdkVersion kMaxSdkVersions[] {
/* whitelist */ SdkVersion::kMax,
/* greylist */ SdkVersion::kMax,
/* blacklist */ SdkVersion::kMin,
/* greylist-max-o */ SdkVersion::kO_MR1,
/* greylist-max-p */ SdkVersion::kP,
/* greylist-max-q */ SdkVersion::kQ,
};
explicit ApiList(Value val, uint32_t domain_apis = 0u)
: dex_flags_(helper::ToUint(val) | domain_apis) {
DCHECK(GetValue() == val);
DCHECK_EQ(GetDomainApis(), domain_apis);
}
explicit ApiList(DomainApi val) : ApiList(Value::kInvalid, helper::ToBit(val)) {}
Value GetValue() const {
uint32_t value = (dex_flags_ & kValueBitMask);
// Treat all ones as invalid value
if (value == helper::ToUint(Value::kInvalid)) {
return Value::kInvalid;
} else {
DCHECK_GE(value, helper::ToUint(Value::kMin));
DCHECK_LE(value, helper::ToUint(Value::kMax));
return static_cast<Value>(value);
}
}
uint32_t GetDomainApis() const { return (dex_flags_ & kDomainApiBitMask); }
uint32_t dex_flags_;
public:
ApiList() : ApiList(Value::kInvalid) {}
explicit ApiList(uint32_t dex_flags) : dex_flags_(dex_flags) {
DCHECK_EQ(dex_flags_, (dex_flags_ & kValueBitMask) | (dex_flags_ & kDomainApiBitMask));
}
// Helpers for conveniently constructing ApiList instances.
static ApiList Whitelist() { return ApiList(Value::kWhitelist); }
static ApiList Greylist() { return ApiList(Value::kGreylist); }
static ApiList Blacklist() { return ApiList(Value::kBlacklist); }
static ApiList GreylistMaxO() { return ApiList(Value::kGreylistMaxO); }
static ApiList GreylistMaxP() { return ApiList(Value::kGreylistMaxP); }
static ApiList GreylistMaxQ() { return ApiList(Value::kGreylistMaxQ); }
static ApiList CorePlatformApi() { return ApiList(DomainApi::kCorePlatformApi); }
static ApiList TestApi() { return ApiList(DomainApi::kTestApi); }
uint32_t GetDexFlags() const { return dex_flags_; }
uint32_t GetIntValue() const { return helper::ToUint(GetValue()) - helper::ToUint(Value::kMin); }
// Returns the ApiList with a flag of a given name, or an empty ApiList if not matched.
static ApiList FromName(const std::string& str) {
for (uint32_t i = 0; i < kValueCount; ++i) {
if (str == kValueNames[i]) {
return ApiList(helper::GetEnumAt<Value>(i));
}
}
for (uint32_t i = 0; i < kDomainApiCount; ++i) {
if (str == kDomainApiNames[i]) {
return ApiList(helper::GetEnumAt<DomainApi>(i));
}
}
return ApiList();
}
// Parses a vector of flag names into a single ApiList value. If successful,
// returns true and assigns the new ApiList to `out_api_list`.
static bool FromNames(std::vector<std::string>::iterator begin,
std::vector<std::string>::iterator end,
/* out */ ApiList* out_api_list) {
ApiList api_list;
for (std::vector<std::string>::iterator it = begin; it != end; it++) {
ApiList current = FromName(*it);
if (current.IsEmpty() || !api_list.CanCombineWith(current)) {
if (ApiStubs::IsStubsFlag(*it)) {
// Ignore flags which correspond to the stubs from where the api
// originates (i.e. system-api, test-api, public-api), as they are not
// relevant at runtime
continue;
}
return false;
}
api_list |= current;
}
if (out_api_list != nullptr) {
*out_api_list = api_list;
}
return true;
}
bool operator==(const ApiList& other) const { return dex_flags_ == other.dex_flags_; }
bool operator!=(const ApiList& other) const { return !(*this == other); }
bool operator<(const ApiList& other) const { return dex_flags_ < other.dex_flags_; }
// Returns true if combining this ApiList with `other` will succeed.
bool CanCombineWith(const ApiList& other) const {
const Value val1 = GetValue();
const Value val2 = other.GetValue();
return (val1 == val2) || (val1 == Value::kInvalid) || (val2 == Value::kInvalid);
}
// Combine two ApiList instances.
ApiList operator|(const ApiList& other) {
// DomainApis are not mutually exclusive. Simply OR them.
const uint32_t domain_apis = GetDomainApis() | other.GetDomainApis();
// Values are mutually exclusive. Check if `this` and `other` have the same Value
// or if at most one is set.
const Value val1 = GetValue();
const Value val2 = other.GetValue();
if (val1 == val2) {
return ApiList(val1, domain_apis);
} else if (val1 == Value::kInvalid) {
return ApiList(val2, domain_apis);
} else if (val2 == Value::kInvalid) {
return ApiList(val1, domain_apis);
} else {
LOG(FATAL) << "Invalid combination of values " << Dumpable(ApiList(val1))
<< " and " << Dumpable(ApiList(val2));
UNREACHABLE();
}
}
const ApiList& operator|=(const ApiList& other) {
(*this) = (*this) | other;
return *this;
}
// Returns true if all flags set in `other` are also set in `this`.
bool Contains(const ApiList& other) const {
return ((other.GetValue() == Value::kInvalid) || (GetValue() == other.GetValue())) &&
helper::MatchesBitMask(other.GetDomainApis(), GetDomainApis());
}
// Returns true whether the configuration is valid for runtime use.
bool IsValid() const { return GetValue() != Value::kInvalid; }
// Returns true when no ApiList is specified and no domain_api flags either.
bool IsEmpty() const { return (GetValue() == Value::kInvalid) && (GetDomainApis() == 0); }
// Returns true if the ApiList is on blacklist.
bool IsBlacklisted() const {
return GetValue() == Value::kBlacklist;
}
// Returns true if the ApiList is a test API.
bool IsTestApi() const {
return helper::MatchesBitMask(helper::ToBit(DomainApi::kTestApi), dex_flags_);
}
// Returns the maximum target SDK version allowed to access this ApiList.
SdkVersion GetMaxAllowedSdkVersion() const { return kMaxSdkVersions[GetIntValue()]; }
void Dump(std::ostream& os) const {
bool is_first = true;
if (IsEmpty()) {
os << "invalid";
return;
}
if (GetValue() != Value::kInvalid) {
os << kValueNames[GetIntValue()];
is_first = false;
}
const uint32_t domain_apis = GetDomainApis();
for (uint32_t i = 0; i < kDomainApiCount; i++) {
if (helper::MatchesBitMask(helper::ToBit(helper::GetEnumAt<DomainApi>(i)), domain_apis)) {
if (is_first) {
is_first = false;
} else {
os << ",";
}
os << kDomainApiNames[i];
}
}
DCHECK_EQ(IsEmpty(), is_first);
}
// Number of valid enum values in Value.
static constexpr uint32_t kValueCount = helper::NumValues<Value>();
// Number of valid enum values in DomainApi.
static constexpr uint32_t kDomainApiCount = helper::NumValues<DomainApi>();
// Total number of possible enum values, including invalid, in Value.
static constexpr uint32_t kValueSize = (1u << kValueBitSize) + 1;
// Check min and max values are calculated correctly.
static_assert(Value::kMin == helper::GetEnumAt<Value>(0));
static_assert(Value::kMax == helper::GetEnumAt<Value>(kValueCount - 1));
static_assert(DomainApi::kMin == helper::GetEnumAt<DomainApi>(0));
static_assert(DomainApi::kMax == helper::GetEnumAt<DomainApi>(kDomainApiCount - 1));
};
inline std::ostream& operator<<(std::ostream& os, ApiList value) {
value.Dump(os);
return os;
}
} // namespace hiddenapi
} // namespace art
#endif // ART_LIBARTBASE_BASE_HIDDENAPI_FLAGS_H_
|