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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
|
/*
* Copyright (C) 2015 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.
*/
#include "BigBuffer.h"
#include "ConfigDescription.h"
#include "Logger.h"
#include "ResourceTable.h"
#include "ResourceTypeExtensions.h"
#include "ResourceValues.h"
#include "StringPool.h"
#include "TableFlattener.h"
#include "Util.h"
#include <algorithm>
#include <androidfw/ResourceTypes.h>
#include <sstream>
namespace aapt {
struct FlatEntry {
const ResourceEntry* entry;
const Value* value;
uint32_t entryKey;
uint32_t sourcePathKey;
uint32_t sourceLine;
};
/**
* Visitor that knows how to encode Map values.
*/
class MapFlattener : public ConstValueVisitor {
public:
MapFlattener(BigBuffer* out, const FlatEntry& flatEntry, SymbolEntryVector* symbols) :
mOut(out), mSymbols(symbols) {
mMap = mOut->nextBlock<android::ResTable_map_entry>();
mMap->key.index = flatEntry.entryKey;
mMap->flags = android::ResTable_entry::FLAG_COMPLEX;
if (flatEntry.entry->publicStatus.isPublic) {
mMap->flags |= android::ResTable_entry::FLAG_PUBLIC;
}
if (flatEntry.value->isWeak()) {
mMap->flags |= android::ResTable_entry::FLAG_WEAK;
}
ResTable_entry_source* sourceBlock = mOut->nextBlock<ResTable_entry_source>();
sourceBlock->pathIndex = flatEntry.sourcePathKey;
sourceBlock->line = flatEntry.sourceLine;
mMap->size = sizeof(*mMap) + sizeof(*sourceBlock);
}
void flattenParent(const Reference& ref) {
if (!ref.id.isValid()) {
mSymbols->push_back({
ResourceNameRef(ref.name),
(mOut->size() - mMap->size) + sizeof(*mMap) - sizeof(android::ResTable_entry)
});
}
mMap->parent.ident = ref.id.id;
}
void flattenEntry(const Reference& key, const Item& value) {
mMap->count++;
android::ResTable_map* outMapEntry = mOut->nextBlock<android::ResTable_map>();
// Write the key.
if (!Res_INTERNALID(key.id.id) && !key.id.isValid()) {
assert(!key.name.entry.empty());
mSymbols->push_back(std::make_pair(ResourceNameRef(key.name),
mOut->size() - sizeof(*outMapEntry)));
}
outMapEntry->name.ident = key.id.id;
// Write the value.
value.flatten(outMapEntry->value);
if (outMapEntry->value.data == 0x0) {
visitFunc<Reference>(value, [&](const Reference& reference) {
mSymbols->push_back(std::make_pair(ResourceNameRef(reference.name),
mOut->size() - sizeof(outMapEntry->value.data)));
});
}
outMapEntry->value.size = sizeof(outMapEntry->value);
}
void flattenValueOnly(const Item& value) {
mMap->count++;
android::ResTable_map* outMapEntry = mOut->nextBlock<android::ResTable_map>();
// Write the value.
value.flatten(outMapEntry->value);
if (outMapEntry->value.data == 0x0) {
visitFunc<Reference>(value, [&](const Reference& reference) {
mSymbols->push_back(std::make_pair(ResourceNameRef(reference.name),
mOut->size() - sizeof(outMapEntry->value.data)));
});
}
outMapEntry->value.size = sizeof(outMapEntry->value);
}
static bool compareStyleEntries(const Style::Entry* lhs, const Style::Entry* rhs) {
return lhs->key.id < rhs->key.id;
}
void visit(const Style& style, ValueVisitorArgs&) override {
if (style.parent.name.isValid()) {
flattenParent(style.parent);
}
// First sort the entries by ID.
std::vector<const Style::Entry*> sortedEntries;
for (const auto& styleEntry : style.entries) {
auto iter = std::lower_bound(sortedEntries.begin(), sortedEntries.end(),
&styleEntry, compareStyleEntries);
sortedEntries.insert(iter, &styleEntry);
}
for (const Style::Entry* styleEntry : sortedEntries) {
flattenEntry(styleEntry->key, *styleEntry->value);
}
}
void visit(const Attribute& attr, ValueVisitorArgs&) override {
android::Res_value tempVal;
tempVal.dataType = android::Res_value::TYPE_INT_DEC;
tempVal.data = attr.typeMask;
flattenEntry(Reference(ResourceId{android::ResTable_map::ATTR_TYPE}),
BinaryPrimitive(tempVal));
for (const auto& symbol : attr.symbols) {
tempVal.data = symbol.value;
flattenEntry(symbol.symbol, BinaryPrimitive(tempVal));
}
}
void visit(const Styleable& styleable, ValueVisitorArgs&) override {
for (const auto& attr : styleable.entries) {
flattenEntry(attr, BinaryPrimitive(android::Res_value{}));
}
}
void visit(const Array& array, ValueVisitorArgs&) override {
for (const auto& item : array.items) {
flattenValueOnly(*item);
}
}
void visit(const Plural& plural, ValueVisitorArgs&) override {
const size_t count = plural.values.size();
for (size_t i = 0; i < count; i++) {
if (!plural.values[i]) {
continue;
}
ResourceId q;
switch (i) {
case Plural::Zero:
q.id = android::ResTable_map::ATTR_ZERO;
break;
case Plural::One:
q.id = android::ResTable_map::ATTR_ONE;
break;
case Plural::Two:
q.id = android::ResTable_map::ATTR_TWO;
break;
case Plural::Few:
q.id = android::ResTable_map::ATTR_FEW;
break;
case Plural::Many:
q.id = android::ResTable_map::ATTR_MANY;
break;
case Plural::Other:
q.id = android::ResTable_map::ATTR_OTHER;
break;
default:
assert(false);
break;
}
flattenEntry(Reference(q), *plural.values[i]);
}
}
private:
BigBuffer* mOut;
SymbolEntryVector* mSymbols;
android::ResTable_map_entry* mMap;
};
/**
* Flattens a value, with special handling for References.
*/
struct ValueFlattener : ConstValueVisitor {
ValueFlattener(BigBuffer* out, SymbolEntryVector* symbols) :
result(false), mOut(out), mOutValue(nullptr), mSymbols(symbols) {
mOutValue = mOut->nextBlock<android::Res_value>();
}
virtual void visit(const Reference& ref, ValueVisitorArgs& a) override {
visitItem(ref, a);
if (mOutValue->data == 0x0) {
mSymbols->push_back({
ResourceNameRef(ref.name),
mOut->size() - sizeof(mOutValue->data)});
}
}
virtual void visitItem(const Item& item, ValueVisitorArgs&) override {
result = item.flatten(*mOutValue);
mOutValue->res0 = 0;
mOutValue->size = sizeof(*mOutValue);
}
bool result;
private:
BigBuffer* mOut;
android::Res_value* mOutValue;
SymbolEntryVector* mSymbols;
};
TableFlattener::TableFlattener(Options options)
: mOptions(options) {
}
bool TableFlattener::flattenValue(BigBuffer* out, const FlatEntry& flatEntry,
SymbolEntryVector* symbols) {
if (flatEntry.value->isItem()) {
android::ResTable_entry* entry = out->nextBlock<android::ResTable_entry>();
if (flatEntry.entry->publicStatus.isPublic) {
entry->flags |= android::ResTable_entry::FLAG_PUBLIC;
}
if (flatEntry.value->isWeak()) {
entry->flags |= android::ResTable_entry::FLAG_WEAK;
}
entry->key.index = flatEntry.entryKey;
entry->size = sizeof(*entry);
if (mOptions.useExtendedChunks) {
// Write the extra source block. This will be ignored by
// the Android runtime.
ResTable_entry_source* sourceBlock = out->nextBlock<ResTable_entry_source>();
sourceBlock->pathIndex = flatEntry.sourcePathKey;
sourceBlock->line = flatEntry.sourceLine;
entry->size += sizeof(*sourceBlock);
}
const Item* item = static_cast<const Item*>(flatEntry.value);
ValueFlattener flattener(out, symbols);
item->accept(flattener, {});
return flattener.result;
}
MapFlattener flattener(out, flatEntry, symbols);
flatEntry.value->accept(flattener, {});
return true;
}
bool TableFlattener::flatten(BigBuffer* out, const ResourceTable& table) {
const size_t beginning = out->size();
if (table.getPackageId() == ResourceTable::kUnsetPackageId) {
Logger::error()
<< "ResourceTable has no package ID set."
<< std::endl;
return false;
}
SymbolEntryVector symbolEntries;
StringPool typePool;
StringPool keyPool;
StringPool sourcePool;
// Sort the types by their IDs. They will be inserted into the StringPool
// in this order.
std::vector<ResourceTableType*> sortedTypes;
for (const auto& type : table) {
if (type->type == ResourceType::kStyleable && !mOptions.useExtendedChunks) {
continue;
}
auto iter = std::lower_bound(std::begin(sortedTypes), std::end(sortedTypes), type.get(),
[](const ResourceTableType* lhs, const ResourceTableType* rhs) -> bool {
return lhs->typeId < rhs->typeId;
});
sortedTypes.insert(iter, type.get());
}
BigBuffer typeBlock(1024);
size_t expectedTypeId = 1;
for (const ResourceTableType* type : sortedTypes) {
if (type->typeId == ResourceTableType::kUnsetTypeId
|| type->typeId == 0) {
Logger::error()
<< "resource type '"
<< type->type
<< "' from package '"
<< table.getPackage()
<< "' has no ID."
<< std::endl;
return false;
}
// If there is a gap in the type IDs, fill in the StringPool
// with empty values until we reach the ID we expect.
while (type->typeId > expectedTypeId) {
std::u16string typeName(u"?");
typeName += expectedTypeId;
typePool.makeRef(typeName);
expectedTypeId++;
}
expectedTypeId++;
typePool.makeRef(toString(type->type));
android::ResTable_typeSpec* spec = typeBlock.nextBlock<android::ResTable_typeSpec>();
spec->header.type = android::RES_TABLE_TYPE_SPEC_TYPE;
spec->header.headerSize = sizeof(*spec);
spec->header.size = spec->header.headerSize + (type->entries.size() * sizeof(uint32_t));
spec->id = type->typeId;
spec->entryCount = type->entries.size();
if (type->entries.empty()) {
continue;
}
// Reserve space for the masks of each resource in this type. These
// show for which configuration axis the resource changes.
uint32_t* configMasks = typeBlock.nextBlock<uint32_t>(type->entries.size());
// Sort the entries by entry ID and write their configuration masks.
std::vector<ResourceEntry*> entries;
const size_t entryCount = type->entries.size();
for (size_t entryIndex = 0; entryIndex < entryCount; entryIndex++) {
const auto& entry = type->entries[entryIndex];
if (entry->entryId == ResourceEntry::kUnsetEntryId) {
Logger::error()
<< "resource '"
<< ResourceName{ table.getPackage(), type->type, entry->name }
<< "' has no ID."
<< std::endl;
return false;
}
auto iter = std::lower_bound(std::begin(entries), std::end(entries), entry.get(),
[](const ResourceEntry* lhs, const ResourceEntry* rhs) -> bool {
return lhs->entryId < rhs->entryId;
});
entries.insert(iter, entry.get());
// Populate the config masks for this entry.
if (entry->publicStatus.isPublic) {
configMasks[entry->entryId] |= android::ResTable_typeSpec::SPEC_PUBLIC;
}
const size_t configCount = entry->values.size();
for (size_t i = 0; i < configCount; i++) {
const ConfigDescription& config = entry->values[i].config;
for (size_t j = i + 1; j < configCount; j++) {
configMasks[entry->entryId] |= config.diff(entry->values[j].config);
}
}
}
const size_t beforePublicHeader = typeBlock.size();
Public_header* publicHeader = nullptr;
if (mOptions.useExtendedChunks) {
publicHeader = typeBlock.nextBlock<Public_header>();
publicHeader->header.type = RES_TABLE_PUBLIC_TYPE;
publicHeader->header.headerSize = sizeof(*publicHeader);
publicHeader->typeId = type->typeId;
}
// The binary resource table lists resource entries for each configuration.
// We store them inverted, where a resource entry lists the values for each
// configuration available. Here we reverse this to match the binary table.
std::map<ConfigDescription, std::vector<FlatEntry>> data;
for (const ResourceEntry* entry : entries) {
size_t keyIndex = keyPool.makeRef(entry->name).getIndex();
if (keyIndex > std::numeric_limits<uint32_t>::max()) {
Logger::error()
<< "resource key string pool exceeded max size."
<< std::endl;
return false;
}
if (publicHeader && entry->publicStatus.isPublic) {
// Write the public status of this entry.
Public_entry* publicEntry = typeBlock.nextBlock<Public_entry>();
publicEntry->entryId = static_cast<uint32_t>(entry->entryId);
publicEntry->key.index = static_cast<uint32_t>(keyIndex);
publicEntry->source.index = static_cast<uint32_t>(sourcePool.makeRef(
util::utf8ToUtf16(entry->publicStatus.source.path)).getIndex());
publicEntry->sourceLine = static_cast<uint32_t>(entry->publicStatus.source.line);
publicHeader->count += 1;
}
for (const auto& configValue : entry->values) {
data[configValue.config].push_back(FlatEntry{
entry,
configValue.value.get(),
static_cast<uint32_t>(keyIndex),
static_cast<uint32_t>(sourcePool.makeRef(util::utf8ToUtf16(
configValue.source.path)).getIndex()),
static_cast<uint32_t>(configValue.source.line)
});
}
}
if (publicHeader) {
typeBlock.align4();
publicHeader->header.size =
static_cast<uint32_t>(typeBlock.size() - beforePublicHeader);
}
// Begin flattening a configuration for the current type.
for (const auto& entry : data) {
const size_t typeHeaderStart = typeBlock.size();
android::ResTable_type* typeHeader = typeBlock.nextBlock<android::ResTable_type>();
typeHeader->header.type = android::RES_TABLE_TYPE_TYPE;
typeHeader->header.headerSize = sizeof(*typeHeader);
typeHeader->id = type->typeId;
typeHeader->entryCount = type->entries.size();
typeHeader->entriesStart = typeHeader->header.headerSize
+ (sizeof(uint32_t) * type->entries.size());
typeHeader->config = entry.first;
uint32_t* indices = typeBlock.nextBlock<uint32_t>(type->entries.size());
memset(indices, 0xff, type->entries.size() * sizeof(uint32_t));
const size_t entryStart = typeBlock.size();
for (const FlatEntry& flatEntry : entry.second) {
assert(flatEntry.entry->entryId < type->entries.size());
indices[flatEntry.entry->entryId] = typeBlock.size() - entryStart;
if (!flattenValue(&typeBlock, flatEntry, &symbolEntries)) {
Logger::error()
<< "failed to flatten resource '"
<< ResourceNameRef {
table.getPackage(), type->type, flatEntry.entry->name }
<< "' for configuration '"
<< entry.first
<< "'."
<< std::endl;
return false;
}
}
typeBlock.align4();
typeHeader->header.size = typeBlock.size() - typeHeaderStart;
}
}
const size_t beforeTable = out->size();
android::ResTable_header* header = out->nextBlock<android::ResTable_header>();
header->header.type = android::RES_TABLE_TYPE;
header->header.headerSize = sizeof(*header);
header->packageCount = 1;
SymbolTable_entry* symbolEntryData = nullptr;
if (!symbolEntries.empty() && mOptions.useExtendedChunks) {
const size_t beforeSymbolTable = out->size();
StringPool symbolPool;
SymbolTable_header* symbolHeader = out->nextBlock<SymbolTable_header>();
symbolHeader->header.type = RES_TABLE_SYMBOL_TABLE_TYPE;
symbolHeader->header.headerSize = sizeof(*symbolHeader);
symbolHeader->count = symbolEntries.size();
symbolEntryData = out->nextBlock<SymbolTable_entry>(symbolHeader->count);
size_t i = 0;
for (const auto& entry : symbolEntries) {
symbolEntryData[i].offset = entry.second;
StringPool::Ref ref = symbolPool.makeRef(
entry.first.package.toString() + u":" +
toString(entry.first.type).toString() + u"/" +
entry.first.entry.toString());
symbolEntryData[i].stringIndex = ref.getIndex();
i++;
}
StringPool::flattenUtf8(out, symbolPool);
out->align4();
symbolHeader->header.size = out->size() - beforeSymbolTable;
}
if (sourcePool.size() > 0 && mOptions.useExtendedChunks) {
const size_t beforeSourcePool = out->size();
android::ResChunk_header* sourceHeader = out->nextBlock<android::ResChunk_header>();
sourceHeader->type = RES_TABLE_SOURCE_POOL_TYPE;
sourceHeader->headerSize = sizeof(*sourceHeader);
StringPool::flattenUtf8(out, sourcePool);
out->align4();
sourceHeader->size = out->size() - beforeSourcePool;
}
StringPool::flattenUtf8(out, table.getValueStringPool());
const size_t beforePackageIndex = out->size();
android::ResTable_package* package = out->nextBlock<android::ResTable_package>();
package->header.type = android::RES_TABLE_PACKAGE_TYPE;
package->header.headerSize = sizeof(*package);
if (table.getPackageId() > std::numeric_limits<uint8_t>::max()) {
Logger::error()
<< "package ID 0x'"
<< std::hex << table.getPackageId() << std::dec
<< "' is invalid."
<< std::endl;
return false;
}
package->id = table.getPackageId();
if (table.getPackage().size() >= sizeof(package->name) / sizeof(package->name[0])) {
Logger::error()
<< "package name '"
<< table.getPackage()
<< "' is too long."
<< std::endl;
return false;
}
memcpy(package->name, reinterpret_cast<const uint16_t*>(table.getPackage().data()),
table.getPackage().length() * sizeof(char16_t));
package->name[table.getPackage().length()] = 0;
package->typeStrings = package->header.headerSize;
StringPool::flattenUtf16(out, typePool);
package->keyStrings = out->size() - beforePackageIndex;
StringPool::flattenUtf16(out, keyPool);
if (symbolEntryData != nullptr) {
for (size_t i = 0; i < symbolEntries.size(); i++) {
symbolEntryData[i].offset += out->size() - beginning;
}
}
out->appendBuffer(std::move(typeBlock));
package->header.size = out->size() - beforePackageIndex;
header->header.size = out->size() - beforeTable;
return true;
}
} // namespace aapt
|