blob: 38d2a588b594562ae4f04353a645d9d0a50fe444 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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#define LOG_TAG "ResourceType"
18//#define LOG_NDEBUG 0
19
Dan Albert1b4f3162015-04-07 18:43:15 -070020#include <ctype.h>
21#include <memory.h>
22#include <stddef.h>
23#include <stdint.h>
24#include <stdlib.h>
25#include <string.h>
26
Adam Lesinskib7e1ce02016-04-11 20:03:01 -070027#include <algorithm>
Dan Albert1b4f3162015-04-07 18:43:15 -070028#include <limits>
Adam Lesinskiff5808d2016-02-23 17:49:53 -080029#include <memory>
Dan Albert1b4f3162015-04-07 18:43:15 -070030#include <type_traits>
31
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070032#include <androidfw/ByteBucketArray.h>
Mathias Agopianb13b9bd2012-02-17 18:27:36 -080033#include <androidfw/ResourceTypes.h>
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070034#include <androidfw/TypeWrappers.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035#include <utils/Atomic.h>
36#include <utils/ByteOrder.h>
37#include <utils/Debug.h>
Mathias Agopianb13b9bd2012-02-17 18:27:36 -080038#include <utils/Log.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039#include <utils/String16.h>
40#include <utils/String8.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041
Dan Albert1b4f3162015-04-07 18:43:15 -070042#ifdef __ANDROID__
Andreas Gampe2204f0b2014-10-21 23:04:54 -070043#include <binder/TextOutput.h>
44#endif
45
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046#ifndef INT32_MAX
47#define INT32_MAX ((int32_t)(2147483647))
48#endif
49
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050namespace android {
51
Elliott Hughes59cbe8d2015-07-29 17:49:27 -070052#if defined(_WIN32)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053#undef nhtol
54#undef htonl
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055#define ntohl(x) ( ((x) << 24) | (((x) >> 24) & 255) | (((x) << 8) & 0xff0000) | (((x) >> 8) & 0xff00) )
56#define htonl(x) ntohl(x)
57#define ntohs(x) ( (((x) << 8) & 0xff00) | (((x) >> 8) & 255) )
58#define htons(x) ntohs(x)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059#endif
60
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070061#define IDMAP_MAGIC 0x504D4449
62#define IDMAP_CURRENT_VERSION 0x00000001
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +010063
Adam Lesinskide898ff2014-01-29 18:20:45 -080064#define APP_PACKAGE_ID 0x7f
65#define SYS_PACKAGE_ID 0x01
66
Andreas Gampe2204f0b2014-10-21 23:04:54 -070067static const bool kDebugStringPoolNoisy = false;
68static const bool kDebugXMLNoisy = false;
69static const bool kDebugTableNoisy = false;
70static const bool kDebugTableGetEntry = false;
71static const bool kDebugTableSuperNoisy = false;
72static const bool kDebugLoadTableNoisy = false;
73static const bool kDebugLoadTableSuperNoisy = false;
74static const bool kDebugTableTheme = false;
75static const bool kDebugResXMLTree = false;
76static const bool kDebugLibNoisy = false;
77
78// TODO: This code uses 0xFFFFFFFF converted to bag_set* as a sentinel value. This is bad practice.
79
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080// Standard C isspace() is only required to look at the low byte of its input, so
81// produces incorrect results for UTF-16 characters. For safety's sake, assume that
82// any high-byte UTF-16 code point is not whitespace.
83inline int isspace16(char16_t c) {
84 return (c < 0x0080 && isspace(c));
85}
86
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070087template<typename T>
88inline static T max(T a, T b) {
89 return a > b ? a : b;
90}
91
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092// range checked; guaranteed to NUL-terminate within the stated number of available slots
93// NOTE: if this truncates the dst string due to running out of space, no attempt is
94// made to avoid splitting surrogate pairs.
Adam Lesinski4bf58102014-11-03 11:21:19 -080095static void strcpy16_dtoh(char16_t* dst, const uint16_t* src, size_t avail)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096{
Dan Albertf348c152014-09-08 18:28:00 -070097 char16_t* last = dst + avail - 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 while (*src && (dst < last)) {
Adam Lesinski4bf58102014-11-03 11:21:19 -080099 char16_t s = dtohs(static_cast<char16_t>(*src));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 *dst++ = s;
101 src++;
102 }
103 *dst = 0;
104}
105
106static status_t validate_chunk(const ResChunk_header* chunk,
107 size_t minSize,
108 const uint8_t* dataEnd,
109 const char* name)
110{
111 const uint16_t headerSize = dtohs(chunk->headerSize);
112 const uint32_t size = dtohl(chunk->size);
113
114 if (headerSize >= minSize) {
115 if (headerSize <= size) {
116 if (((headerSize|size)&0x3) == 0) {
Adam Lesinski7322ea72014-05-14 11:43:26 -0700117 if ((size_t)size <= (size_t)(dataEnd-((const uint8_t*)chunk))) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 return NO_ERROR;
119 }
Patrik Bannura443dd932014-02-12 13:38:54 +0100120 ALOGW("%s data size 0x%x extends beyond resource end %p.",
121 name, size, (void*)(dataEnd-((const uint8_t*)chunk)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 return BAD_TYPE;
123 }
Steve Block8564c8d2012-01-05 23:22:43 +0000124 ALOGW("%s size 0x%x or headerSize 0x%x is not on an integer boundary.",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125 name, (int)size, (int)headerSize);
126 return BAD_TYPE;
127 }
Patrik Bannura443dd932014-02-12 13:38:54 +0100128 ALOGW("%s size 0x%x is smaller than header size 0x%x.",
129 name, size, headerSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 return BAD_TYPE;
131 }
Adam Lesinskide898ff2014-01-29 18:20:45 -0800132 ALOGW("%s header size 0x%04x is too small.",
Patrik Bannura443dd932014-02-12 13:38:54 +0100133 name, headerSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 return BAD_TYPE;
135}
136
Narayan Kamath6381dd42014-03-03 17:12:03 +0000137static void fill9patchOffsets(Res_png_9patch* patch) {
138 patch->xDivsOffset = sizeof(Res_png_9patch);
139 patch->yDivsOffset = patch->xDivsOffset + (patch->numXDivs * sizeof(int32_t));
140 patch->colorsOffset = patch->yDivsOffset + (patch->numYDivs * sizeof(int32_t));
141}
142
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143inline void Res_value::copyFrom_dtoh(const Res_value& src)
144{
145 size = dtohs(src.size);
146 res0 = src.res0;
147 dataType = src.dataType;
148 data = dtohl(src.data);
149}
150
151void Res_png_9patch::deviceToFile()
152{
Narayan Kamath6381dd42014-03-03 17:12:03 +0000153 int32_t* xDivs = getXDivs();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 for (int i = 0; i < numXDivs; i++) {
155 xDivs[i] = htonl(xDivs[i]);
156 }
Narayan Kamath6381dd42014-03-03 17:12:03 +0000157 int32_t* yDivs = getYDivs();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 for (int i = 0; i < numYDivs; i++) {
159 yDivs[i] = htonl(yDivs[i]);
160 }
161 paddingLeft = htonl(paddingLeft);
162 paddingRight = htonl(paddingRight);
163 paddingTop = htonl(paddingTop);
164 paddingBottom = htonl(paddingBottom);
Narayan Kamath6381dd42014-03-03 17:12:03 +0000165 uint32_t* colors = getColors();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166 for (int i=0; i<numColors; i++) {
167 colors[i] = htonl(colors[i]);
168 }
169}
170
171void Res_png_9patch::fileToDevice()
172{
Narayan Kamath6381dd42014-03-03 17:12:03 +0000173 int32_t* xDivs = getXDivs();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 for (int i = 0; i < numXDivs; i++) {
175 xDivs[i] = ntohl(xDivs[i]);
176 }
Narayan Kamath6381dd42014-03-03 17:12:03 +0000177 int32_t* yDivs = getYDivs();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 for (int i = 0; i < numYDivs; i++) {
179 yDivs[i] = ntohl(yDivs[i]);
180 }
181 paddingLeft = ntohl(paddingLeft);
182 paddingRight = ntohl(paddingRight);
183 paddingTop = ntohl(paddingTop);
184 paddingBottom = ntohl(paddingBottom);
Narayan Kamath6381dd42014-03-03 17:12:03 +0000185 uint32_t* colors = getColors();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 for (int i=0; i<numColors; i++) {
187 colors[i] = ntohl(colors[i]);
188 }
189}
190
Narayan Kamath6381dd42014-03-03 17:12:03 +0000191size_t Res_png_9patch::serializedSize() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192{
193 // The size of this struct is 32 bytes on the 32-bit target system
194 // 4 * int8_t
195 // 4 * int32_t
Narayan Kamath6381dd42014-03-03 17:12:03 +0000196 // 3 * uint32_t
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 return 32
198 + numXDivs * sizeof(int32_t)
199 + numYDivs * sizeof(int32_t)
200 + numColors * sizeof(uint32_t);
201}
202
Narayan Kamath6381dd42014-03-03 17:12:03 +0000203void* Res_png_9patch::serialize(const Res_png_9patch& patch, const int32_t* xDivs,
204 const int32_t* yDivs, const uint32_t* colors)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205{
The Android Open Source Project4df24232009-03-05 14:34:35 -0800206 // Use calloc since we're going to leave a few holes in the data
207 // and want this to run cleanly under valgrind
Narayan Kamath6381dd42014-03-03 17:12:03 +0000208 void* newData = calloc(1, patch.serializedSize());
209 serialize(patch, xDivs, yDivs, colors, newData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800210 return newData;
211}
212
Narayan Kamath6381dd42014-03-03 17:12:03 +0000213void Res_png_9patch::serialize(const Res_png_9patch& patch, const int32_t* xDivs,
214 const int32_t* yDivs, const uint32_t* colors, void* outData)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215{
Narayan Kamath6381dd42014-03-03 17:12:03 +0000216 uint8_t* data = (uint8_t*) outData;
217 memcpy(data, &patch.wasDeserialized, 4); // copy wasDeserialized, numXDivs, numYDivs, numColors
218 memcpy(data + 12, &patch.paddingLeft, 16); // copy paddingXXXX
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219 data += 32;
220
Narayan Kamath6381dd42014-03-03 17:12:03 +0000221 memcpy(data, xDivs, patch.numXDivs * sizeof(int32_t));
222 data += patch.numXDivs * sizeof(int32_t);
223 memcpy(data, yDivs, patch.numYDivs * sizeof(int32_t));
224 data += patch.numYDivs * sizeof(int32_t);
225 memcpy(data, colors, patch.numColors * sizeof(uint32_t));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226
Narayan Kamath6381dd42014-03-03 17:12:03 +0000227 fill9patchOffsets(reinterpret_cast<Res_png_9patch*>(outData));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800228}
229
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700230static bool assertIdmapHeader(const void* idmap, size_t size) {
231 if (reinterpret_cast<uintptr_t>(idmap) & 0x03) {
232 ALOGE("idmap: header is not word aligned");
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100233 return false;
234 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700235
236 if (size < ResTable::IDMAP_HEADER_SIZE_BYTES) {
237 ALOGW("idmap: header too small (%d bytes)", (uint32_t) size);
238 return false;
239 }
240
241 const uint32_t magic = htodl(*reinterpret_cast<const uint32_t*>(idmap));
242 if (magic != IDMAP_MAGIC) {
243 ALOGW("idmap: no magic found in header (is 0x%08x, expected 0x%08x)",
244 magic, IDMAP_MAGIC);
245 return false;
246 }
247
248 const uint32_t version = htodl(*(reinterpret_cast<const uint32_t*>(idmap) + 1));
249 if (version != IDMAP_CURRENT_VERSION) {
250 // We are strict about versions because files with this format are
251 // auto-generated and don't need backwards compatibility.
252 ALOGW("idmap: version mismatch in header (is 0x%08x, expected 0x%08x)",
253 version, IDMAP_CURRENT_VERSION);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100254 return false;
255 }
256 return true;
257}
258
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700259class IdmapEntries {
260public:
261 IdmapEntries() : mData(NULL) {}
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100262
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700263 bool hasEntries() const {
264 if (mData == NULL) {
265 return false;
266 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100267
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700268 return (dtohs(*mData) > 0);
269 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100270
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700271 size_t byteSize() const {
272 if (mData == NULL) {
273 return 0;
274 }
275 uint16_t entryCount = dtohs(mData[2]);
276 return (sizeof(uint16_t) * 4) + (sizeof(uint32_t) * static_cast<size_t>(entryCount));
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100277 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700278
279 uint8_t targetTypeId() const {
280 if (mData == NULL) {
281 return 0;
282 }
283 return dtohs(mData[0]);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +0100284 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700285
286 uint8_t overlayTypeId() const {
287 if (mData == NULL) {
288 return 0;
289 }
290 return dtohs(mData[1]);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +0100291 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700292
293 status_t setTo(const void* entryHeader, size_t size) {
294 if (reinterpret_cast<uintptr_t>(entryHeader) & 0x03) {
295 ALOGE("idmap: entry header is not word aligned");
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +0100296 return UNKNOWN_ERROR;
297 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700298
299 if (size < sizeof(uint16_t) * 4) {
300 ALOGE("idmap: entry header is too small (%u bytes)", (uint32_t) size);
301 return UNKNOWN_ERROR;
302 }
303
304 const uint16_t* header = reinterpret_cast<const uint16_t*>(entryHeader);
305 const uint16_t targetTypeId = dtohs(header[0]);
306 const uint16_t overlayTypeId = dtohs(header[1]);
307 if (targetTypeId == 0 || overlayTypeId == 0 || targetTypeId > 255 || overlayTypeId > 255) {
308 ALOGE("idmap: invalid type map (%u -> %u)", targetTypeId, overlayTypeId);
309 return UNKNOWN_ERROR;
310 }
311
312 uint16_t entryCount = dtohs(header[2]);
313 if (size < sizeof(uint32_t) * (entryCount + 2)) {
314 ALOGE("idmap: too small (%u bytes) for the number of entries (%u)",
315 (uint32_t) size, (uint32_t) entryCount);
316 return UNKNOWN_ERROR;
317 }
318 mData = header;
319 return NO_ERROR;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100320 }
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +0100321
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700322 status_t lookup(uint16_t entryId, uint16_t* outEntryId) const {
323 uint16_t entryCount = dtohs(mData[2]);
324 uint16_t offset = dtohs(mData[3]);
325
326 if (entryId < offset) {
327 // The entry is not present in this idmap
328 return BAD_INDEX;
329 }
330
331 entryId -= offset;
332
333 if (entryId >= entryCount) {
334 // The entry is not present in this idmap
335 return BAD_INDEX;
336 }
337
338 // It is safe to access the type here without checking the size because
339 // we have checked this when it was first loaded.
340 const uint32_t* entries = reinterpret_cast<const uint32_t*>(mData) + 2;
341 uint32_t mappedEntry = dtohl(entries[entryId]);
342 if (mappedEntry == 0xffffffff) {
343 // This entry is not present in this idmap
344 return BAD_INDEX;
345 }
346 *outEntryId = static_cast<uint16_t>(mappedEntry);
347 return NO_ERROR;
348 }
349
350private:
351 const uint16_t* mData;
352};
353
354status_t parseIdmap(const void* idmap, size_t size, uint8_t* outPackageId, KeyedVector<uint8_t, IdmapEntries>* outMap) {
355 if (!assertIdmapHeader(idmap, size)) {
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +0100356 return UNKNOWN_ERROR;
357 }
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +0100358
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -0700359 size -= ResTable::IDMAP_HEADER_SIZE_BYTES;
360 if (size < sizeof(uint16_t) * 2) {
361 ALOGE("idmap: too small to contain any mapping");
362 return UNKNOWN_ERROR;
363 }
364
365 const uint16_t* data = reinterpret_cast<const uint16_t*>(
366 reinterpret_cast<const uint8_t*>(idmap) + ResTable::IDMAP_HEADER_SIZE_BYTES);
367
368 uint16_t targetPackageId = dtohs(*(data++));
369 if (targetPackageId == 0 || targetPackageId > 255) {
370 ALOGE("idmap: target package ID is invalid (%02x)", targetPackageId);
371 return UNKNOWN_ERROR;
372 }
373
374 uint16_t mapCount = dtohs(*(data++));
375 if (mapCount == 0) {
376 ALOGE("idmap: no mappings");
377 return UNKNOWN_ERROR;
378 }
379
380 if (mapCount > 255) {
381 ALOGW("idmap: too many mappings. Only 255 are possible but %u are present", (uint32_t) mapCount);
382 }
383
384 while (size > sizeof(uint16_t) * 4) {
385 IdmapEntries entries;
386 status_t err = entries.setTo(data, size);
387 if (err != NO_ERROR) {
388 return err;
389 }
390
391 ssize_t index = outMap->add(entries.overlayTypeId(), entries);
392 if (index < 0) {
393 return NO_MEMORY;
394 }
395
396 data += entries.byteSize() / sizeof(uint16_t);
397 size -= entries.byteSize();
398 }
399
400 if (outPackageId != NULL) {
401 *outPackageId = static_cast<uint8_t>(targetPackageId);
402 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +0100403 return NO_ERROR;
404}
405
Narayan Kamath6381dd42014-03-03 17:12:03 +0000406Res_png_9patch* Res_png_9patch::deserialize(void* inData)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800407{
Narayan Kamath6381dd42014-03-03 17:12:03 +0000408
409 Res_png_9patch* patch = reinterpret_cast<Res_png_9patch*>(inData);
410 patch->wasDeserialized = true;
411 fill9patchOffsets(patch);
412
413 return patch;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414}
415
416// --------------------------------------------------------------------
417// --------------------------------------------------------------------
418// --------------------------------------------------------------------
419
420ResStringPool::ResStringPool()
Kenny Root19138462009-12-04 09:38:48 -0800421 : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800422{
423}
424
425ResStringPool::ResStringPool(const void* data, size_t size, bool copyData)
Kenny Root19138462009-12-04 09:38:48 -0800426 : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800427{
428 setTo(data, size, copyData);
429}
430
431ResStringPool::~ResStringPool()
432{
433 uninit();
434}
435
Adam Lesinskide898ff2014-01-29 18:20:45 -0800436void ResStringPool::setToEmpty()
437{
438 uninit();
439
440 mOwnedData = calloc(1, sizeof(ResStringPool_header));
441 ResStringPool_header* header = (ResStringPool_header*) mOwnedData;
442 mSize = 0;
443 mEntries = NULL;
444 mStrings = NULL;
445 mStringPoolSize = 0;
446 mEntryStyles = NULL;
447 mStyles = NULL;
448 mStylePoolSize = 0;
449 mHeader = (const ResStringPool_header*) header;
450}
451
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452status_t ResStringPool::setTo(const void* data, size_t size, bool copyData)
453{
454 if (!data || !size) {
455 return (mError=BAD_TYPE);
456 }
457
458 uninit();
459
460 const bool notDeviceEndian = htods(0xf0) != 0xf0;
461
462 if (copyData || notDeviceEndian) {
463 mOwnedData = malloc(size);
464 if (mOwnedData == NULL) {
465 return (mError=NO_MEMORY);
466 }
467 memcpy(mOwnedData, data, size);
468 data = mOwnedData;
469 }
470
471 mHeader = (const ResStringPool_header*)data;
472
473 if (notDeviceEndian) {
474 ResStringPool_header* h = const_cast<ResStringPool_header*>(mHeader);
475 h->header.headerSize = dtohs(mHeader->header.headerSize);
476 h->header.type = dtohs(mHeader->header.type);
477 h->header.size = dtohl(mHeader->header.size);
478 h->stringCount = dtohl(mHeader->stringCount);
479 h->styleCount = dtohl(mHeader->styleCount);
480 h->flags = dtohl(mHeader->flags);
481 h->stringsStart = dtohl(mHeader->stringsStart);
482 h->stylesStart = dtohl(mHeader->stylesStart);
483 }
484
485 if (mHeader->header.headerSize > mHeader->header.size
486 || mHeader->header.size > size) {
Steve Block8564c8d2012-01-05 23:22:43 +0000487 ALOGW("Bad string block: header size %d or total size %d is larger than data size %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800488 (int)mHeader->header.headerSize, (int)mHeader->header.size, (int)size);
489 return (mError=BAD_TYPE);
490 }
491 mSize = mHeader->header.size;
492 mEntries = (const uint32_t*)
493 (((const uint8_t*)data)+mHeader->header.headerSize);
494
495 if (mHeader->stringCount > 0) {
496 if ((mHeader->stringCount*sizeof(uint32_t) < mHeader->stringCount) // uint32 overflow?
497 || (mHeader->header.headerSize+(mHeader->stringCount*sizeof(uint32_t)))
498 > size) {
Steve Block8564c8d2012-01-05 23:22:43 +0000499 ALOGW("Bad string block: entry of %d items extends past data size %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800500 (int)(mHeader->header.headerSize+(mHeader->stringCount*sizeof(uint32_t))),
501 (int)size);
502 return (mError=BAD_TYPE);
503 }
Kenny Root19138462009-12-04 09:38:48 -0800504
505 size_t charSize;
506 if (mHeader->flags&ResStringPool_header::UTF8_FLAG) {
507 charSize = sizeof(uint8_t);
Kenny Root19138462009-12-04 09:38:48 -0800508 } else {
Adam Lesinski4bf58102014-11-03 11:21:19 -0800509 charSize = sizeof(uint16_t);
Kenny Root19138462009-12-04 09:38:48 -0800510 }
511
Adam Lesinskif28d5052014-07-25 15:25:04 -0700512 // There should be at least space for the smallest string
513 // (2 bytes length, null terminator).
514 if (mHeader->stringsStart >= (mSize - sizeof(uint16_t))) {
Steve Block8564c8d2012-01-05 23:22:43 +0000515 ALOGW("Bad string block: string pool starts at %d, after total size %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800516 (int)mHeader->stringsStart, (int)mHeader->header.size);
517 return (mError=BAD_TYPE);
518 }
Adam Lesinskif28d5052014-07-25 15:25:04 -0700519
520 mStrings = (const void*)
521 (((const uint8_t*)data) + mHeader->stringsStart);
522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 if (mHeader->styleCount == 0) {
Adam Lesinskif28d5052014-07-25 15:25:04 -0700524 mStringPoolSize = (mSize - mHeader->stringsStart) / charSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525 } else {
Kenny Root5e4d9a02010-06-08 12:34:43 -0700526 // check invariant: styles starts before end of data
Adam Lesinskif28d5052014-07-25 15:25:04 -0700527 if (mHeader->stylesStart >= (mSize - sizeof(uint16_t))) {
Steve Block8564c8d2012-01-05 23:22:43 +0000528 ALOGW("Bad style block: style block starts at %d past data size of %d\n",
Kenny Root5e4d9a02010-06-08 12:34:43 -0700529 (int)mHeader->stylesStart, (int)mHeader->header.size);
530 return (mError=BAD_TYPE);
531 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800532 // check invariant: styles follow the strings
533 if (mHeader->stylesStart <= mHeader->stringsStart) {
Steve Block8564c8d2012-01-05 23:22:43 +0000534 ALOGW("Bad style block: style block starts at %d, before strings at %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535 (int)mHeader->stylesStart, (int)mHeader->stringsStart);
536 return (mError=BAD_TYPE);
537 }
538 mStringPoolSize =
Kenny Root19138462009-12-04 09:38:48 -0800539 (mHeader->stylesStart-mHeader->stringsStart)/charSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540 }
541
542 // check invariant: stringCount > 0 requires a string pool to exist
543 if (mStringPoolSize == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +0000544 ALOGW("Bad string block: stringCount is %d but pool size is 0\n", (int)mHeader->stringCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800545 return (mError=BAD_TYPE);
546 }
547
548 if (notDeviceEndian) {
549 size_t i;
550 uint32_t* e = const_cast<uint32_t*>(mEntries);
551 for (i=0; i<mHeader->stringCount; i++) {
552 e[i] = dtohl(mEntries[i]);
553 }
Kenny Root19138462009-12-04 09:38:48 -0800554 if (!(mHeader->flags&ResStringPool_header::UTF8_FLAG)) {
Adam Lesinski4bf58102014-11-03 11:21:19 -0800555 const uint16_t* strings = (const uint16_t*)mStrings;
556 uint16_t* s = const_cast<uint16_t*>(strings);
Kenny Root19138462009-12-04 09:38:48 -0800557 for (i=0; i<mStringPoolSize; i++) {
558 s[i] = dtohs(strings[i]);
559 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800560 }
561 }
562
Kenny Root19138462009-12-04 09:38:48 -0800563 if ((mHeader->flags&ResStringPool_header::UTF8_FLAG &&
564 ((uint8_t*)mStrings)[mStringPoolSize-1] != 0) ||
Adam Lesinski666b6fb2016-04-21 10:05:06 -0700565 (!(mHeader->flags&ResStringPool_header::UTF8_FLAG) &&
Adam Lesinski4bf58102014-11-03 11:21:19 -0800566 ((uint16_t*)mStrings)[mStringPoolSize-1] != 0)) {
Steve Block8564c8d2012-01-05 23:22:43 +0000567 ALOGW("Bad string block: last string is not 0-terminated\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 return (mError=BAD_TYPE);
569 }
570 } else {
571 mStrings = NULL;
572 mStringPoolSize = 0;
573 }
574
575 if (mHeader->styleCount > 0) {
576 mEntryStyles = mEntries + mHeader->stringCount;
577 // invariant: integer overflow in calculating mEntryStyles
578 if (mEntryStyles < mEntries) {
Steve Block8564c8d2012-01-05 23:22:43 +0000579 ALOGW("Bad string block: integer overflow finding styles\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 return (mError=BAD_TYPE);
581 }
582
583 if (((const uint8_t*)mEntryStyles-(const uint8_t*)mHeader) > (int)size) {
Steve Block8564c8d2012-01-05 23:22:43 +0000584 ALOGW("Bad string block: entry of %d styles extends past data size %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585 (int)((const uint8_t*)mEntryStyles-(const uint8_t*)mHeader),
586 (int)size);
587 return (mError=BAD_TYPE);
588 }
589 mStyles = (const uint32_t*)
590 (((const uint8_t*)data)+mHeader->stylesStart);
591 if (mHeader->stylesStart >= mHeader->header.size) {
Steve Block8564c8d2012-01-05 23:22:43 +0000592 ALOGW("Bad string block: style pool starts %d, after total size %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593 (int)mHeader->stylesStart, (int)mHeader->header.size);
594 return (mError=BAD_TYPE);
595 }
596 mStylePoolSize =
597 (mHeader->header.size-mHeader->stylesStart)/sizeof(uint32_t);
598
599 if (notDeviceEndian) {
600 size_t i;
601 uint32_t* e = const_cast<uint32_t*>(mEntryStyles);
602 for (i=0; i<mHeader->styleCount; i++) {
603 e[i] = dtohl(mEntryStyles[i]);
604 }
605 uint32_t* s = const_cast<uint32_t*>(mStyles);
606 for (i=0; i<mStylePoolSize; i++) {
607 s[i] = dtohl(mStyles[i]);
608 }
609 }
610
611 const ResStringPool_span endSpan = {
612 { htodl(ResStringPool_span::END) },
613 htodl(ResStringPool_span::END), htodl(ResStringPool_span::END)
614 };
615 if (memcmp(&mStyles[mStylePoolSize-(sizeof(endSpan)/sizeof(uint32_t))],
616 &endSpan, sizeof(endSpan)) != 0) {
Steve Block8564c8d2012-01-05 23:22:43 +0000617 ALOGW("Bad string block: last style is not 0xFFFFFFFF-terminated\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 return (mError=BAD_TYPE);
619 }
620 } else {
621 mEntryStyles = NULL;
622 mStyles = NULL;
623 mStylePoolSize = 0;
624 }
625
626 return (mError=NO_ERROR);
627}
628
629status_t ResStringPool::getError() const
630{
631 return mError;
632}
633
634void ResStringPool::uninit()
635{
636 mError = NO_INIT;
Kenny Root19138462009-12-04 09:38:48 -0800637 if (mHeader != NULL && mCache != NULL) {
638 for (size_t x = 0; x < mHeader->stringCount; x++) {
639 if (mCache[x] != NULL) {
640 free(mCache[x]);
641 mCache[x] = NULL;
642 }
643 }
644 free(mCache);
645 mCache = NULL;
646 }
Chris Dearmana1d82ff32012-10-08 12:22:02 -0700647 if (mOwnedData) {
648 free(mOwnedData);
649 mOwnedData = NULL;
650 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800651}
652
Kenny Root300ba682010-11-09 14:37:23 -0800653/**
654 * Strings in UTF-16 format have length indicated by a length encoded in the
655 * stored data. It is either 1 or 2 characters of length data. This allows a
656 * maximum length of 0x7FFFFFF (2147483647 bytes), but if you're storing that
657 * much data in a string, you're abusing them.
658 *
659 * If the high bit is set, then there are two characters or 4 bytes of length
660 * data encoded. In that case, drop the high bit of the first character and
661 * add it together with the next character.
662 */
663static inline size_t
Adam Lesinski4bf58102014-11-03 11:21:19 -0800664decodeLength(const uint16_t** str)
Kenny Root300ba682010-11-09 14:37:23 -0800665{
666 size_t len = **str;
667 if ((len & 0x8000) != 0) {
668 (*str)++;
669 len = ((len & 0x7FFF) << 16) | **str;
670 }
671 (*str)++;
672 return len;
673}
Kenny Root19138462009-12-04 09:38:48 -0800674
Kenny Root300ba682010-11-09 14:37:23 -0800675/**
676 * Strings in UTF-8 format have length indicated by a length encoded in the
677 * stored data. It is either 1 or 2 characters of length data. This allows a
678 * maximum length of 0x7FFF (32767 bytes), but you should consider storing
679 * text in another way if you're using that much data in a single string.
680 *
681 * If the high bit is set, then there are two characters or 2 bytes of length
682 * data encoded. In that case, drop the high bit of the first character and
683 * add it together with the next character.
684 */
685static inline size_t
686decodeLength(const uint8_t** str)
687{
688 size_t len = **str;
689 if ((len & 0x80) != 0) {
690 (*str)++;
691 len = ((len & 0x7F) << 8) | **str;
692 }
693 (*str)++;
694 return len;
695}
696
Dan Albertf348c152014-09-08 18:28:00 -0700697const char16_t* ResStringPool::stringAt(size_t idx, size_t* u16len) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800698{
699 if (mError == NO_ERROR && idx < mHeader->stringCount) {
Kenny Root19138462009-12-04 09:38:48 -0800700 const bool isUTF8 = (mHeader->flags&ResStringPool_header::UTF8_FLAG) != 0;
Adam Lesinski4bf58102014-11-03 11:21:19 -0800701 const uint32_t off = mEntries[idx]/(isUTF8?sizeof(uint8_t):sizeof(uint16_t));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800702 if (off < (mStringPoolSize-1)) {
Kenny Root19138462009-12-04 09:38:48 -0800703 if (!isUTF8) {
Adam Lesinski4bf58102014-11-03 11:21:19 -0800704 const uint16_t* strings = (uint16_t*)mStrings;
705 const uint16_t* str = strings+off;
Kenny Root300ba682010-11-09 14:37:23 -0800706
707 *u16len = decodeLength(&str);
708 if ((uint32_t)(str+*u16len-strings) < mStringPoolSize) {
Vishwath Mohan6521a1b2015-03-11 16:08:37 -0700709 // Reject malformed (non null-terminated) strings
710 if (str[*u16len] != 0x0000) {
711 ALOGW("Bad string block: string #%d is not null-terminated",
712 (int)idx);
713 return NULL;
714 }
Adam Lesinski4bf58102014-11-03 11:21:19 -0800715 return reinterpret_cast<const char16_t*>(str);
Kenny Root19138462009-12-04 09:38:48 -0800716 } else {
Steve Block8564c8d2012-01-05 23:22:43 +0000717 ALOGW("Bad string block: string #%d extends to %d, past end at %d\n",
Kenny Root300ba682010-11-09 14:37:23 -0800718 (int)idx, (int)(str+*u16len-strings), (int)mStringPoolSize);
Kenny Root19138462009-12-04 09:38:48 -0800719 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800720 } else {
Kenny Root19138462009-12-04 09:38:48 -0800721 const uint8_t* strings = (uint8_t*)mStrings;
Kenny Root300ba682010-11-09 14:37:23 -0800722 const uint8_t* u8str = strings+off;
723
724 *u16len = decodeLength(&u8str);
725 size_t u8len = decodeLength(&u8str);
726
727 // encLen must be less than 0x7FFF due to encoding.
728 if ((uint32_t)(u8str+u8len-strings) < mStringPoolSize) {
Kenny Root19138462009-12-04 09:38:48 -0800729 AutoMutex lock(mDecodeLock);
Kenny Root300ba682010-11-09 14:37:23 -0800730
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700731 if (mCache == NULL) {
Elliott Hughesba3fe562015-08-12 14:49:53 -0700732#ifndef __ANDROID__
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700733 if (kDebugStringPoolNoisy) {
734 ALOGI("CREATING STRING CACHE OF %zu bytes",
735 mHeader->stringCount*sizeof(char16_t**));
736 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700737#else
738 // We do not want to be in this case when actually running Android.
Andreas Gampe25df5fb2014-11-07 22:24:57 -0800739 ALOGW("CREATING STRING CACHE OF %zu bytes",
740 static_cast<size_t>(mHeader->stringCount*sizeof(char16_t**)));
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700741#endif
George Burgess IVe8efec52016-10-11 15:42:29 -0700742 mCache = (char16_t**)calloc(mHeader->stringCount, sizeof(char16_t*));
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700743 if (mCache == NULL) {
744 ALOGW("No memory trying to allocate decode cache table of %d bytes\n",
745 (int)(mHeader->stringCount*sizeof(char16_t**)));
746 return NULL;
747 }
748 }
749
Kenny Root19138462009-12-04 09:38:48 -0800750 if (mCache[idx] != NULL) {
751 return mCache[idx];
752 }
Kenny Root300ba682010-11-09 14:37:23 -0800753
754 ssize_t actualLen = utf8_to_utf16_length(u8str, u8len);
755 if (actualLen < 0 || (size_t)actualLen != *u16len) {
Steve Block8564c8d2012-01-05 23:22:43 +0000756 ALOGW("Bad string block: string #%lld decoded length is not correct "
Kenny Root300ba682010-11-09 14:37:23 -0800757 "%lld vs %llu\n",
758 (long long)idx, (long long)actualLen, (long long)*u16len);
759 return NULL;
760 }
761
Vishwath Mohan6521a1b2015-03-11 16:08:37 -0700762 // Reject malformed (non null-terminated) strings
763 if (u8str[u8len] != 0x00) {
764 ALOGW("Bad string block: string #%d is not null-terminated",
765 (int)idx);
766 return NULL;
767 }
768
Kenny Root300ba682010-11-09 14:37:23 -0800769 char16_t *u16str = (char16_t *)calloc(*u16len+1, sizeof(char16_t));
Kenny Root19138462009-12-04 09:38:48 -0800770 if (!u16str) {
Steve Block8564c8d2012-01-05 23:22:43 +0000771 ALOGW("No memory when trying to allocate decode cache for string #%d\n",
Kenny Root19138462009-12-04 09:38:48 -0800772 (int)idx);
773 return NULL;
774 }
Kenny Root300ba682010-11-09 14:37:23 -0800775
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700776 if (kDebugStringPoolNoisy) {
777 ALOGI("Caching UTF8 string: %s", u8str);
778 }
Sergio Giro8f7b8a12016-07-21 14:44:07 +0100779 utf8_to_utf16(u8str, u8len, u16str, *u16len + 1);
Kenny Root19138462009-12-04 09:38:48 -0800780 mCache[idx] = u16str;
781 return u16str;
782 } else {
Steve Block8564c8d2012-01-05 23:22:43 +0000783 ALOGW("Bad string block: string #%lld extends to %lld, past end at %lld\n",
Kenny Root300ba682010-11-09 14:37:23 -0800784 (long long)idx, (long long)(u8str+u8len-strings),
785 (long long)mStringPoolSize);
Kenny Root19138462009-12-04 09:38:48 -0800786 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800787 }
788 } else {
Steve Block8564c8d2012-01-05 23:22:43 +0000789 ALOGW("Bad string block: string #%d entry is at %d, past end at %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 (int)idx, (int)(off*sizeof(uint16_t)),
791 (int)(mStringPoolSize*sizeof(uint16_t)));
792 }
793 }
794 return NULL;
795}
796
Kenny Root780d2a12010-02-22 22:36:26 -0800797const char* ResStringPool::string8At(size_t idx, size_t* outLen) const
798{
799 if (mError == NO_ERROR && idx < mHeader->stringCount) {
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700800 if ((mHeader->flags&ResStringPool_header::UTF8_FLAG) == 0) {
801 return NULL;
802 }
803 const uint32_t off = mEntries[idx]/sizeof(char);
Kenny Root780d2a12010-02-22 22:36:26 -0800804 if (off < (mStringPoolSize-1)) {
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700805 const uint8_t* strings = (uint8_t*)mStrings;
806 const uint8_t* str = strings+off;
807 *outLen = decodeLength(&str);
808 size_t encLen = decodeLength(&str);
809 if ((uint32_t)(str+encLen-strings) < mStringPoolSize) {
810 return (const char*)str;
811 } else {
812 ALOGW("Bad string block: string #%d extends to %d, past end at %d\n",
813 (int)idx, (int)(str+encLen-strings), (int)mStringPoolSize);
Kenny Root780d2a12010-02-22 22:36:26 -0800814 }
815 } else {
Steve Block8564c8d2012-01-05 23:22:43 +0000816 ALOGW("Bad string block: string #%d entry is at %d, past end at %d\n",
Kenny Root780d2a12010-02-22 22:36:26 -0800817 (int)idx, (int)(off*sizeof(uint16_t)),
818 (int)(mStringPoolSize*sizeof(uint16_t)));
819 }
820 }
821 return NULL;
822}
823
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800824const String8 ResStringPool::string8ObjectAt(size_t idx) const
825{
826 size_t len;
Adam Lesinski4b2d0f22014-08-14 17:58:37 -0700827 const char *str = string8At(idx, &len);
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800828 if (str != NULL) {
Adam Lesinski4b2d0f22014-08-14 17:58:37 -0700829 return String8(str, len);
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800830 }
Adam Lesinski4b2d0f22014-08-14 17:58:37 -0700831
832 const char16_t *str16 = stringAt(idx, &len);
833 if (str16 != NULL) {
834 return String8(str16, len);
835 }
836 return String8();
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800837}
838
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800839const ResStringPool_span* ResStringPool::styleAt(const ResStringPool_ref& ref) const
840{
841 return styleAt(ref.index);
842}
843
844const ResStringPool_span* ResStringPool::styleAt(size_t idx) const
845{
846 if (mError == NO_ERROR && idx < mHeader->styleCount) {
847 const uint32_t off = (mEntryStyles[idx]/sizeof(uint32_t));
848 if (off < mStylePoolSize) {
849 return (const ResStringPool_span*)(mStyles+off);
850 } else {
Steve Block8564c8d2012-01-05 23:22:43 +0000851 ALOGW("Bad string block: style #%d entry is at %d, past end at %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852 (int)idx, (int)(off*sizeof(uint32_t)),
853 (int)(mStylePoolSize*sizeof(uint32_t)));
854 }
855 }
856 return NULL;
857}
858
859ssize_t ResStringPool::indexOfString(const char16_t* str, size_t strLen) const
860{
861 if (mError != NO_ERROR) {
862 return mError;
863 }
864
865 size_t len;
866
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700867 if ((mHeader->flags&ResStringPool_header::UTF8_FLAG) != 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700868 if (kDebugStringPoolNoisy) {
869 ALOGI("indexOfString UTF-8: %s", String8(str, strLen).string());
870 }
Kenny Root19138462009-12-04 09:38:48 -0800871
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700872 // The string pool contains UTF 8 strings; we don't want to cause
873 // temporary UTF-16 strings to be created as we search.
874 if (mHeader->flags&ResStringPool_header::SORTED_FLAG) {
875 // Do a binary search for the string... this is a little tricky,
876 // because the strings are sorted with strzcmp16(). So to match
877 // the ordering, we need to convert strings in the pool to UTF-16.
878 // But we don't want to hit the cache, so instead we will have a
879 // local temporary allocation for the conversions.
Sergio Giro8f7b8a12016-07-21 14:44:07 +0100880 size_t convBufferLen = strLen + 4;
881 char16_t* convBuffer = (char16_t*)calloc(convBufferLen, sizeof(char16_t));
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700882 ssize_t l = 0;
883 ssize_t h = mHeader->stringCount-1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800884
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700885 ssize_t mid;
886 while (l <= h) {
887 mid = l + (h - l)/2;
888 const uint8_t* s = (const uint8_t*)string8At(mid, &len);
889 int c;
890 if (s != NULL) {
Sergio Giro8f7b8a12016-07-21 14:44:07 +0100891 char16_t* end = utf8_to_utf16(s, len, convBuffer, convBufferLen);
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700892 c = strzcmp16(convBuffer, end-convBuffer, str, strLen);
893 } else {
894 c = -1;
895 }
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700896 if (kDebugStringPoolNoisy) {
897 ALOGI("Looking at %s, cmp=%d, l/mid/h=%d/%d/%d\n",
898 (const char*)s, c, (int)l, (int)mid, (int)h);
899 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700900 if (c == 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700901 if (kDebugStringPoolNoisy) {
902 ALOGI("MATCH!");
903 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700904 free(convBuffer);
905 return mid;
906 } else if (c < 0) {
907 l = mid + 1;
908 } else {
909 h = mid - 1;
910 }
911 }
912 free(convBuffer);
913 } else {
914 // It is unusual to get the ID from an unsorted string block...
915 // most often this happens because we want to get IDs for style
916 // span tags; since those always appear at the end of the string
917 // block, start searching at the back.
918 String8 str8(str, strLen);
919 const size_t str8Len = str8.size();
920 for (int i=mHeader->stringCount-1; i>=0; i--) {
921 const char* s = string8At(i, &len);
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700922 if (kDebugStringPoolNoisy) {
923 ALOGI("Looking at %s, i=%d\n", String8(s).string(), i);
924 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700925 if (s && str8Len == len && memcmp(s, str8.string(), str8Len) == 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700926 if (kDebugStringPoolNoisy) {
927 ALOGI("MATCH!");
928 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700929 return i;
930 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800931 }
932 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700933
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800934 } else {
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700935 if (kDebugStringPoolNoisy) {
936 ALOGI("indexOfString UTF-16: %s", String8(str, strLen).string());
937 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700938
939 if (mHeader->flags&ResStringPool_header::SORTED_FLAG) {
940 // Do a binary search for the string...
941 ssize_t l = 0;
942 ssize_t h = mHeader->stringCount-1;
943
944 ssize_t mid;
945 while (l <= h) {
946 mid = l + (h - l)/2;
947 const char16_t* s = stringAt(mid, &len);
948 int c = s ? strzcmp16(s, len, str, strLen) : -1;
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700949 if (kDebugStringPoolNoisy) {
950 ALOGI("Looking at %s, cmp=%d, l/mid/h=%d/%d/%d\n",
951 String8(s).string(), c, (int)l, (int)mid, (int)h);
952 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700953 if (c == 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700954 if (kDebugStringPoolNoisy) {
955 ALOGI("MATCH!");
956 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700957 return mid;
958 } else if (c < 0) {
959 l = mid + 1;
960 } else {
961 h = mid - 1;
962 }
963 }
964 } else {
965 // It is unusual to get the ID from an unsorted string block...
966 // most often this happens because we want to get IDs for style
967 // span tags; since those always appear at the end of the string
968 // block, start searching at the back.
969 for (int i=mHeader->stringCount-1; i>=0; i--) {
970 const char16_t* s = stringAt(i, &len);
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700971 if (kDebugStringPoolNoisy) {
972 ALOGI("Looking at %s, i=%d\n", String8(s).string(), i);
973 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700974 if (s && strLen == len && strzcmp16(s, len, str, strLen) == 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -0700975 if (kDebugStringPoolNoisy) {
976 ALOGI("MATCH!");
977 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -0700978 return i;
979 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800980 }
981 }
982 }
983
984 return NAME_NOT_FOUND;
985}
986
987size_t ResStringPool::size() const
988{
989 return (mError == NO_ERROR) ? mHeader->stringCount : 0;
990}
991
Dianne Hackborn6c997a92012-01-31 11:27:43 -0800992size_t ResStringPool::styleCount() const
993{
994 return (mError == NO_ERROR) ? mHeader->styleCount : 0;
995}
996
997size_t ResStringPool::bytes() const
998{
999 return (mError == NO_ERROR) ? mHeader->header.size : 0;
1000}
1001
1002bool ResStringPool::isSorted() const
1003{
1004 return (mHeader->flags&ResStringPool_header::SORTED_FLAG)!=0;
1005}
1006
Kenny Rootbb79f642009-12-10 14:20:15 -08001007bool ResStringPool::isUTF8() const
1008{
1009 return (mHeader->flags&ResStringPool_header::UTF8_FLAG)!=0;
1010}
Kenny Rootbb79f642009-12-10 14:20:15 -08001011
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001012// --------------------------------------------------------------------
1013// --------------------------------------------------------------------
1014// --------------------------------------------------------------------
1015
1016ResXMLParser::ResXMLParser(const ResXMLTree& tree)
1017 : mTree(tree), mEventCode(BAD_DOCUMENT)
1018{
1019}
1020
1021void ResXMLParser::restart()
1022{
1023 mCurNode = NULL;
1024 mEventCode = mTree.mError == NO_ERROR ? START_DOCUMENT : BAD_DOCUMENT;
1025}
Dianne Hackborncf244ad2010-03-09 15:00:30 -08001026const ResStringPool& ResXMLParser::getStrings() const
1027{
1028 return mTree.mStrings;
1029}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001030
1031ResXMLParser::event_code_t ResXMLParser::getEventType() const
1032{
1033 return mEventCode;
1034}
1035
1036ResXMLParser::event_code_t ResXMLParser::next()
1037{
1038 if (mEventCode == START_DOCUMENT) {
1039 mCurNode = mTree.mRootNode;
1040 mCurExt = mTree.mRootExt;
1041 return (mEventCode=mTree.mRootCode);
1042 } else if (mEventCode >= FIRST_CHUNK_CODE) {
1043 return nextNode();
1044 }
1045 return mEventCode;
1046}
1047
Mathias Agopian5f910972009-06-22 02:35:32 -07001048int32_t ResXMLParser::getCommentID() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049{
1050 return mCurNode != NULL ? dtohl(mCurNode->comment.index) : -1;
1051}
1052
Dan Albertf348c152014-09-08 18:28:00 -07001053const char16_t* ResXMLParser::getComment(size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001054{
1055 int32_t id = getCommentID();
1056 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1057}
1058
Mathias Agopian5f910972009-06-22 02:35:32 -07001059uint32_t ResXMLParser::getLineNumber() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001060{
1061 return mCurNode != NULL ? dtohl(mCurNode->lineNumber) : -1;
1062}
1063
Mathias Agopian5f910972009-06-22 02:35:32 -07001064int32_t ResXMLParser::getTextID() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065{
1066 if (mEventCode == TEXT) {
1067 return dtohl(((const ResXMLTree_cdataExt*)mCurExt)->data.index);
1068 }
1069 return -1;
1070}
1071
Dan Albertf348c152014-09-08 18:28:00 -07001072const char16_t* ResXMLParser::getText(size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001073{
1074 int32_t id = getTextID();
1075 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1076}
1077
1078ssize_t ResXMLParser::getTextValue(Res_value* outValue) const
1079{
1080 if (mEventCode == TEXT) {
1081 outValue->copyFrom_dtoh(((const ResXMLTree_cdataExt*)mCurExt)->typedData);
1082 return sizeof(Res_value);
1083 }
1084 return BAD_TYPE;
1085}
1086
Mathias Agopian5f910972009-06-22 02:35:32 -07001087int32_t ResXMLParser::getNamespacePrefixID() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001088{
1089 if (mEventCode == START_NAMESPACE || mEventCode == END_NAMESPACE) {
1090 return dtohl(((const ResXMLTree_namespaceExt*)mCurExt)->prefix.index);
1091 }
1092 return -1;
1093}
1094
Dan Albertf348c152014-09-08 18:28:00 -07001095const char16_t* ResXMLParser::getNamespacePrefix(size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001096{
1097 int32_t id = getNamespacePrefixID();
1098 //printf("prefix=%d event=%p\n", id, mEventCode);
1099 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1100}
1101
Mathias Agopian5f910972009-06-22 02:35:32 -07001102int32_t ResXMLParser::getNamespaceUriID() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001103{
1104 if (mEventCode == START_NAMESPACE || mEventCode == END_NAMESPACE) {
1105 return dtohl(((const ResXMLTree_namespaceExt*)mCurExt)->uri.index);
1106 }
1107 return -1;
1108}
1109
Dan Albertf348c152014-09-08 18:28:00 -07001110const char16_t* ResXMLParser::getNamespaceUri(size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111{
1112 int32_t id = getNamespaceUriID();
1113 //printf("uri=%d event=%p\n", id, mEventCode);
1114 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1115}
1116
Mathias Agopian5f910972009-06-22 02:35:32 -07001117int32_t ResXMLParser::getElementNamespaceID() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001118{
1119 if (mEventCode == START_TAG) {
1120 return dtohl(((const ResXMLTree_attrExt*)mCurExt)->ns.index);
1121 }
1122 if (mEventCode == END_TAG) {
1123 return dtohl(((const ResXMLTree_endElementExt*)mCurExt)->ns.index);
1124 }
1125 return -1;
1126}
1127
Dan Albertf348c152014-09-08 18:28:00 -07001128const char16_t* ResXMLParser::getElementNamespace(size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001129{
1130 int32_t id = getElementNamespaceID();
1131 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1132}
1133
Mathias Agopian5f910972009-06-22 02:35:32 -07001134int32_t ResXMLParser::getElementNameID() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001135{
1136 if (mEventCode == START_TAG) {
1137 return dtohl(((const ResXMLTree_attrExt*)mCurExt)->name.index);
1138 }
1139 if (mEventCode == END_TAG) {
1140 return dtohl(((const ResXMLTree_endElementExt*)mCurExt)->name.index);
1141 }
1142 return -1;
1143}
1144
Dan Albertf348c152014-09-08 18:28:00 -07001145const char16_t* ResXMLParser::getElementName(size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146{
1147 int32_t id = getElementNameID();
1148 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1149}
1150
1151size_t ResXMLParser::getAttributeCount() const
1152{
1153 if (mEventCode == START_TAG) {
1154 return dtohs(((const ResXMLTree_attrExt*)mCurExt)->attributeCount);
1155 }
1156 return 0;
1157}
1158
Mathias Agopian5f910972009-06-22 02:35:32 -07001159int32_t ResXMLParser::getAttributeNamespaceID(size_t idx) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001160{
1161 if (mEventCode == START_TAG) {
1162 const ResXMLTree_attrExt* tag = (const ResXMLTree_attrExt*)mCurExt;
1163 if (idx < dtohs(tag->attributeCount)) {
1164 const ResXMLTree_attribute* attr = (const ResXMLTree_attribute*)
1165 (((const uint8_t*)tag)
1166 + dtohs(tag->attributeStart)
1167 + (dtohs(tag->attributeSize)*idx));
1168 return dtohl(attr->ns.index);
1169 }
1170 }
1171 return -2;
1172}
1173
Dan Albertf348c152014-09-08 18:28:00 -07001174const char16_t* ResXMLParser::getAttributeNamespace(size_t idx, size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001175{
1176 int32_t id = getAttributeNamespaceID(idx);
1177 //printf("attribute namespace=%d idx=%d event=%p\n", id, idx, mEventCode);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001178 if (kDebugXMLNoisy) {
1179 printf("getAttributeNamespace 0x%zx=0x%x\n", idx, id);
1180 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001181 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1182}
1183
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001184const char* ResXMLParser::getAttributeNamespace8(size_t idx, size_t* outLen) const
1185{
1186 int32_t id = getAttributeNamespaceID(idx);
1187 //printf("attribute namespace=%d idx=%d event=%p\n", id, idx, mEventCode);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001188 if (kDebugXMLNoisy) {
1189 printf("getAttributeNamespace 0x%zx=0x%x\n", idx, id);
1190 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001191 return id >= 0 ? mTree.mStrings.string8At(id, outLen) : NULL;
1192}
1193
Mathias Agopian5f910972009-06-22 02:35:32 -07001194int32_t ResXMLParser::getAttributeNameID(size_t idx) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001195{
1196 if (mEventCode == START_TAG) {
1197 const ResXMLTree_attrExt* tag = (const ResXMLTree_attrExt*)mCurExt;
1198 if (idx < dtohs(tag->attributeCount)) {
1199 const ResXMLTree_attribute* attr = (const ResXMLTree_attribute*)
1200 (((const uint8_t*)tag)
1201 + dtohs(tag->attributeStart)
1202 + (dtohs(tag->attributeSize)*idx));
1203 return dtohl(attr->name.index);
1204 }
1205 }
1206 return -1;
1207}
1208
Dan Albertf348c152014-09-08 18:28:00 -07001209const char16_t* ResXMLParser::getAttributeName(size_t idx, size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001210{
1211 int32_t id = getAttributeNameID(idx);
1212 //printf("attribute name=%d idx=%d event=%p\n", id, idx, mEventCode);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001213 if (kDebugXMLNoisy) {
1214 printf("getAttributeName 0x%zx=0x%x\n", idx, id);
1215 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001216 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1217}
1218
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001219const char* ResXMLParser::getAttributeName8(size_t idx, size_t* outLen) const
1220{
1221 int32_t id = getAttributeNameID(idx);
1222 //printf("attribute name=%d idx=%d event=%p\n", id, idx, mEventCode);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001223 if (kDebugXMLNoisy) {
1224 printf("getAttributeName 0x%zx=0x%x\n", idx, id);
1225 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001226 return id >= 0 ? mTree.mStrings.string8At(id, outLen) : NULL;
1227}
1228
Mathias Agopian5f910972009-06-22 02:35:32 -07001229uint32_t ResXMLParser::getAttributeNameResID(size_t idx) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230{
1231 int32_t id = getAttributeNameID(idx);
1232 if (id >= 0 && (size_t)id < mTree.mNumResIds) {
Adam Lesinskia7d1d732014-10-01 18:24:54 -07001233 uint32_t resId = dtohl(mTree.mResIds[id]);
1234 if (mTree.mDynamicRefTable != NULL) {
1235 mTree.mDynamicRefTable->lookupResourceId(&resId);
1236 }
1237 return resId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001238 }
1239 return 0;
1240}
1241
Mathias Agopian5f910972009-06-22 02:35:32 -07001242int32_t ResXMLParser::getAttributeValueStringID(size_t idx) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243{
1244 if (mEventCode == START_TAG) {
1245 const ResXMLTree_attrExt* tag = (const ResXMLTree_attrExt*)mCurExt;
1246 if (idx < dtohs(tag->attributeCount)) {
1247 const ResXMLTree_attribute* attr = (const ResXMLTree_attribute*)
1248 (((const uint8_t*)tag)
1249 + dtohs(tag->attributeStart)
1250 + (dtohs(tag->attributeSize)*idx));
1251 return dtohl(attr->rawValue.index);
1252 }
1253 }
1254 return -1;
1255}
1256
Dan Albertf348c152014-09-08 18:28:00 -07001257const char16_t* ResXMLParser::getAttributeStringValue(size_t idx, size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001258{
1259 int32_t id = getAttributeValueStringID(idx);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001260 if (kDebugXMLNoisy) {
1261 printf("getAttributeValue 0x%zx=0x%x\n", idx, id);
1262 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001263 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
1264}
1265
1266int32_t ResXMLParser::getAttributeDataType(size_t idx) const
1267{
1268 if (mEventCode == START_TAG) {
1269 const ResXMLTree_attrExt* tag = (const ResXMLTree_attrExt*)mCurExt;
1270 if (idx < dtohs(tag->attributeCount)) {
1271 const ResXMLTree_attribute* attr = (const ResXMLTree_attribute*)
1272 (((const uint8_t*)tag)
1273 + dtohs(tag->attributeStart)
1274 + (dtohs(tag->attributeSize)*idx));
Adam Lesinskide898ff2014-01-29 18:20:45 -08001275 uint8_t type = attr->typedValue.dataType;
1276 if (type != Res_value::TYPE_DYNAMIC_REFERENCE) {
1277 return type;
1278 }
1279
1280 // This is a dynamic reference. We adjust those references
1281 // to regular references at this level, so lie to the caller.
1282 return Res_value::TYPE_REFERENCE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001283 }
1284 }
1285 return Res_value::TYPE_NULL;
1286}
1287
1288int32_t ResXMLParser::getAttributeData(size_t idx) const
1289{
1290 if (mEventCode == START_TAG) {
1291 const ResXMLTree_attrExt* tag = (const ResXMLTree_attrExt*)mCurExt;
1292 if (idx < dtohs(tag->attributeCount)) {
1293 const ResXMLTree_attribute* attr = (const ResXMLTree_attribute*)
1294 (((const uint8_t*)tag)
1295 + dtohs(tag->attributeStart)
1296 + (dtohs(tag->attributeSize)*idx));
Adam Lesinskide898ff2014-01-29 18:20:45 -08001297 if (attr->typedValue.dataType != Res_value::TYPE_DYNAMIC_REFERENCE ||
1298 mTree.mDynamicRefTable == NULL) {
1299 return dtohl(attr->typedValue.data);
1300 }
1301
1302 uint32_t data = dtohl(attr->typedValue.data);
1303 if (mTree.mDynamicRefTable->lookupResourceId(&data) == NO_ERROR) {
1304 return data;
1305 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001306 }
1307 }
1308 return 0;
1309}
1310
1311ssize_t ResXMLParser::getAttributeValue(size_t idx, Res_value* outValue) const
1312{
1313 if (mEventCode == START_TAG) {
1314 const ResXMLTree_attrExt* tag = (const ResXMLTree_attrExt*)mCurExt;
1315 if (idx < dtohs(tag->attributeCount)) {
1316 const ResXMLTree_attribute* attr = (const ResXMLTree_attribute*)
1317 (((const uint8_t*)tag)
1318 + dtohs(tag->attributeStart)
1319 + (dtohs(tag->attributeSize)*idx));
1320 outValue->copyFrom_dtoh(attr->typedValue);
Adam Lesinskide898ff2014-01-29 18:20:45 -08001321 if (mTree.mDynamicRefTable != NULL &&
1322 mTree.mDynamicRefTable->lookupResourceValue(outValue) != NO_ERROR) {
1323 return BAD_TYPE;
1324 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001325 return sizeof(Res_value);
1326 }
1327 }
1328 return BAD_TYPE;
1329}
1330
1331ssize_t ResXMLParser::indexOfAttribute(const char* ns, const char* attr) const
1332{
1333 String16 nsStr(ns != NULL ? ns : "");
1334 String16 attrStr(attr);
1335 return indexOfAttribute(ns ? nsStr.string() : NULL, ns ? nsStr.size() : 0,
1336 attrStr.string(), attrStr.size());
1337}
1338
1339ssize_t ResXMLParser::indexOfAttribute(const char16_t* ns, size_t nsLen,
1340 const char16_t* attr, size_t attrLen) const
1341{
1342 if (mEventCode == START_TAG) {
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001343 if (attr == NULL) {
1344 return NAME_NOT_FOUND;
1345 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001346 const size_t N = getAttributeCount();
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001347 if (mTree.mStrings.isUTF8()) {
1348 String8 ns8, attr8;
1349 if (ns != NULL) {
1350 ns8 = String8(ns, nsLen);
1351 }
1352 attr8 = String8(attr, attrLen);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001353 if (kDebugStringPoolNoisy) {
1354 ALOGI("indexOfAttribute UTF8 %s (%zu) / %s (%zu)", ns8.string(), nsLen,
1355 attr8.string(), attrLen);
1356 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001357 for (size_t i=0; i<N; i++) {
1358 size_t curNsLen = 0, curAttrLen = 0;
1359 const char* curNs = getAttributeNamespace8(i, &curNsLen);
1360 const char* curAttr = getAttributeName8(i, &curAttrLen);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001361 if (kDebugStringPoolNoisy) {
1362 ALOGI(" curNs=%s (%zu), curAttr=%s (%zu)", curNs, curNsLen, curAttr, curAttrLen);
1363 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001364 if (curAttr != NULL && curNsLen == nsLen && curAttrLen == attrLen
1365 && memcmp(attr8.string(), curAttr, attrLen) == 0) {
1366 if (ns == NULL) {
1367 if (curNs == NULL) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001368 if (kDebugStringPoolNoisy) {
1369 ALOGI(" FOUND!");
1370 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001371 return i;
1372 }
1373 } else if (curNs != NULL) {
1374 //printf(" --> ns=%s, curNs=%s\n",
1375 // String8(ns).string(), String8(curNs).string());
1376 if (memcmp(ns8.string(), curNs, nsLen) == 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001377 if (kDebugStringPoolNoisy) {
1378 ALOGI(" FOUND!");
1379 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001380 return i;
1381 }
1382 }
1383 }
1384 }
1385 } else {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001386 if (kDebugStringPoolNoisy) {
1387 ALOGI("indexOfAttribute UTF16 %s (%zu) / %s (%zu)",
1388 String8(ns, nsLen).string(), nsLen,
1389 String8(attr, attrLen).string(), attrLen);
1390 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001391 for (size_t i=0; i<N; i++) {
1392 size_t curNsLen = 0, curAttrLen = 0;
1393 const char16_t* curNs = getAttributeNamespace(i, &curNsLen);
1394 const char16_t* curAttr = getAttributeName(i, &curAttrLen);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001395 if (kDebugStringPoolNoisy) {
1396 ALOGI(" curNs=%s (%zu), curAttr=%s (%zu)",
1397 String8(curNs, curNsLen).string(), curNsLen,
1398 String8(curAttr, curAttrLen).string(), curAttrLen);
1399 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001400 if (curAttr != NULL && curNsLen == nsLen && curAttrLen == attrLen
1401 && (memcmp(attr, curAttr, attrLen*sizeof(char16_t)) == 0)) {
1402 if (ns == NULL) {
1403 if (curNs == NULL) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001404 if (kDebugStringPoolNoisy) {
1405 ALOGI(" FOUND!");
1406 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001407 return i;
1408 }
1409 } else if (curNs != NULL) {
1410 //printf(" --> ns=%s, curNs=%s\n",
1411 // String8(ns).string(), String8(curNs).string());
1412 if (memcmp(ns, curNs, nsLen*sizeof(char16_t)) == 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001413 if (kDebugStringPoolNoisy) {
1414 ALOGI(" FOUND!");
1415 }
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07001416 return i;
1417 }
1418 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001419 }
1420 }
1421 }
1422 }
1423
1424 return NAME_NOT_FOUND;
1425}
1426
1427ssize_t ResXMLParser::indexOfID() const
1428{
1429 if (mEventCode == START_TAG) {
1430 const ssize_t idx = dtohs(((const ResXMLTree_attrExt*)mCurExt)->idIndex);
1431 if (idx > 0) return (idx-1);
1432 }
1433 return NAME_NOT_FOUND;
1434}
1435
1436ssize_t ResXMLParser::indexOfClass() const
1437{
1438 if (mEventCode == START_TAG) {
1439 const ssize_t idx = dtohs(((const ResXMLTree_attrExt*)mCurExt)->classIndex);
1440 if (idx > 0) return (idx-1);
1441 }
1442 return NAME_NOT_FOUND;
1443}
1444
1445ssize_t ResXMLParser::indexOfStyle() const
1446{
1447 if (mEventCode == START_TAG) {
1448 const ssize_t idx = dtohs(((const ResXMLTree_attrExt*)mCurExt)->styleIndex);
1449 if (idx > 0) return (idx-1);
1450 }
1451 return NAME_NOT_FOUND;
1452}
1453
1454ResXMLParser::event_code_t ResXMLParser::nextNode()
1455{
1456 if (mEventCode < 0) {
1457 return mEventCode;
1458 }
1459
1460 do {
1461 const ResXMLTree_node* next = (const ResXMLTree_node*)
1462 (((const uint8_t*)mCurNode) + dtohl(mCurNode->header.size));
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001463 if (kDebugXMLNoisy) {
1464 ALOGI("Next node: prev=%p, next=%p\n", mCurNode, next);
1465 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07001466
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001467 if (((const uint8_t*)next) >= mTree.mDataEnd) {
1468 mCurNode = NULL;
1469 return (mEventCode=END_DOCUMENT);
1470 }
1471
1472 if (mTree.validateNode(next) != NO_ERROR) {
1473 mCurNode = NULL;
1474 return (mEventCode=BAD_DOCUMENT);
1475 }
1476
1477 mCurNode = next;
1478 const uint16_t headerSize = dtohs(next->header.headerSize);
1479 const uint32_t totalSize = dtohl(next->header.size);
1480 mCurExt = ((const uint8_t*)next) + headerSize;
1481 size_t minExtSize = 0;
1482 event_code_t eventCode = (event_code_t)dtohs(next->header.type);
1483 switch ((mEventCode=eventCode)) {
1484 case RES_XML_START_NAMESPACE_TYPE:
1485 case RES_XML_END_NAMESPACE_TYPE:
1486 minExtSize = sizeof(ResXMLTree_namespaceExt);
1487 break;
1488 case RES_XML_START_ELEMENT_TYPE:
1489 minExtSize = sizeof(ResXMLTree_attrExt);
1490 break;
1491 case RES_XML_END_ELEMENT_TYPE:
1492 minExtSize = sizeof(ResXMLTree_endElementExt);
1493 break;
1494 case RES_XML_CDATA_TYPE:
1495 minExtSize = sizeof(ResXMLTree_cdataExt);
1496 break;
1497 default:
Steve Block8564c8d2012-01-05 23:22:43 +00001498 ALOGW("Unknown XML block: header type %d in node at %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001499 (int)dtohs(next->header.type),
1500 (int)(((const uint8_t*)next)-((const uint8_t*)mTree.mHeader)));
1501 continue;
1502 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07001503
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001504 if ((totalSize-headerSize) < minExtSize) {
Steve Block8564c8d2012-01-05 23:22:43 +00001505 ALOGW("Bad XML block: header type 0x%x in node at 0x%x has size %d, need %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001506 (int)dtohs(next->header.type),
1507 (int)(((const uint8_t*)next)-((const uint8_t*)mTree.mHeader)),
1508 (int)(totalSize-headerSize), (int)minExtSize);
1509 return (mEventCode=BAD_DOCUMENT);
1510 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07001511
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001512 //printf("CurNode=%p, CurExt=%p, headerSize=%d, minExtSize=%d\n",
1513 // mCurNode, mCurExt, headerSize, minExtSize);
Mark Salyzyn00adb862014-03-19 11:00:06 -07001514
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001515 return eventCode;
1516 } while (true);
1517}
1518
1519void ResXMLParser::getPosition(ResXMLParser::ResXMLPosition* pos) const
1520{
1521 pos->eventCode = mEventCode;
1522 pos->curNode = mCurNode;
1523 pos->curExt = mCurExt;
1524}
1525
1526void ResXMLParser::setPosition(const ResXMLParser::ResXMLPosition& pos)
1527{
1528 mEventCode = pos.eventCode;
1529 mCurNode = pos.curNode;
1530 mCurExt = pos.curExt;
1531}
1532
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001533// --------------------------------------------------------------------
1534
1535static volatile int32_t gCount = 0;
1536
Adam Lesinskide898ff2014-01-29 18:20:45 -08001537ResXMLTree::ResXMLTree(const DynamicRefTable* dynamicRefTable)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001538 : ResXMLParser(*this)
Adam Lesinskide898ff2014-01-29 18:20:45 -08001539 , mDynamicRefTable(dynamicRefTable)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001540 , mError(NO_INIT), mOwnedData(NULL)
1541{
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001542 if (kDebugResXMLTree) {
1543 ALOGI("Creating ResXMLTree %p #%d\n", this, android_atomic_inc(&gCount)+1);
1544 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001545 restart();
1546}
1547
Adam Lesinskide898ff2014-01-29 18:20:45 -08001548ResXMLTree::ResXMLTree()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001549 : ResXMLParser(*this)
Adam Lesinskide898ff2014-01-29 18:20:45 -08001550 , mDynamicRefTable(NULL)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001551 , mError(NO_INIT), mOwnedData(NULL)
1552{
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001553 if (kDebugResXMLTree) {
1554 ALOGI("Creating ResXMLTree %p #%d\n", this, android_atomic_inc(&gCount)+1);
1555 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08001556 restart();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001557}
1558
1559ResXMLTree::~ResXMLTree()
1560{
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001561 if (kDebugResXMLTree) {
1562 ALOGI("Destroying ResXMLTree in %p #%d\n", this, android_atomic_dec(&gCount)-1);
1563 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001564 uninit();
1565}
1566
1567status_t ResXMLTree::setTo(const void* data, size_t size, bool copyData)
1568{
1569 uninit();
1570 mEventCode = START_DOCUMENT;
1571
Kenny Root32d6aef2012-10-10 10:23:47 -07001572 if (!data || !size) {
1573 return (mError=BAD_TYPE);
1574 }
1575
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001576 if (copyData) {
1577 mOwnedData = malloc(size);
1578 if (mOwnedData == NULL) {
1579 return (mError=NO_MEMORY);
1580 }
1581 memcpy(mOwnedData, data, size);
1582 data = mOwnedData;
1583 }
1584
1585 mHeader = (const ResXMLTree_header*)data;
1586 mSize = dtohl(mHeader->header.size);
1587 if (dtohs(mHeader->header.headerSize) > mSize || mSize > size) {
Steve Block8564c8d2012-01-05 23:22:43 +00001588 ALOGW("Bad XML block: header size %d or total size %d is larger than data size %d\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001589 (int)dtohs(mHeader->header.headerSize),
1590 (int)dtohl(mHeader->header.size), (int)size);
1591 mError = BAD_TYPE;
1592 restart();
1593 return mError;
1594 }
1595 mDataEnd = ((const uint8_t*)mHeader) + mSize;
1596
1597 mStrings.uninit();
1598 mRootNode = NULL;
1599 mResIds = NULL;
1600 mNumResIds = 0;
1601
1602 // First look for a couple interesting chunks: the string block
1603 // and first XML node.
1604 const ResChunk_header* chunk =
1605 (const ResChunk_header*)(((const uint8_t*)mHeader) + dtohs(mHeader->header.headerSize));
1606 const ResChunk_header* lastChunk = chunk;
1607 while (((const uint8_t*)chunk) < (mDataEnd-sizeof(ResChunk_header)) &&
1608 ((const uint8_t*)chunk) < (mDataEnd-dtohl(chunk->size))) {
1609 status_t err = validate_chunk(chunk, sizeof(ResChunk_header), mDataEnd, "XML");
1610 if (err != NO_ERROR) {
1611 mError = err;
1612 goto done;
1613 }
1614 const uint16_t type = dtohs(chunk->type);
1615 const size_t size = dtohl(chunk->size);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001616 if (kDebugXMLNoisy) {
1617 printf("Scanning @ %p: type=0x%x, size=0x%zx\n",
1618 (void*)(((uintptr_t)chunk)-((uintptr_t)mHeader)), type, size);
1619 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001620 if (type == RES_STRING_POOL_TYPE) {
1621 mStrings.setTo(chunk, size);
1622 } else if (type == RES_XML_RESOURCE_MAP_TYPE) {
1623 mResIds = (const uint32_t*)
1624 (((const uint8_t*)chunk)+dtohs(chunk->headerSize));
1625 mNumResIds = (dtohl(chunk->size)-dtohs(chunk->headerSize))/sizeof(uint32_t);
1626 } else if (type >= RES_XML_FIRST_CHUNK_TYPE
1627 && type <= RES_XML_LAST_CHUNK_TYPE) {
1628 if (validateNode((const ResXMLTree_node*)chunk) != NO_ERROR) {
1629 mError = BAD_TYPE;
1630 goto done;
1631 }
1632 mCurNode = (const ResXMLTree_node*)lastChunk;
1633 if (nextNode() == BAD_DOCUMENT) {
1634 mError = BAD_TYPE;
1635 goto done;
1636 }
1637 mRootNode = mCurNode;
1638 mRootExt = mCurExt;
1639 mRootCode = mEventCode;
1640 break;
1641 } else {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07001642 if (kDebugXMLNoisy) {
1643 printf("Skipping unknown chunk!\n");
1644 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001645 }
1646 lastChunk = chunk;
1647 chunk = (const ResChunk_header*)
1648 (((const uint8_t*)chunk) + size);
1649 }
1650
1651 if (mRootNode == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00001652 ALOGW("Bad XML block: no root element node found\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001653 mError = BAD_TYPE;
1654 goto done;
1655 }
1656
1657 mError = mStrings.getError();
1658
1659done:
1660 restart();
1661 return mError;
1662}
1663
1664status_t ResXMLTree::getError() const
1665{
1666 return mError;
1667}
1668
1669void ResXMLTree::uninit()
1670{
1671 mError = NO_INIT;
Kenny Root19138462009-12-04 09:38:48 -08001672 mStrings.uninit();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001673 if (mOwnedData) {
1674 free(mOwnedData);
1675 mOwnedData = NULL;
1676 }
1677 restart();
1678}
1679
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001680status_t ResXMLTree::validateNode(const ResXMLTree_node* node) const
1681{
1682 const uint16_t eventCode = dtohs(node->header.type);
1683
1684 status_t err = validate_chunk(
1685 &node->header, sizeof(ResXMLTree_node),
1686 mDataEnd, "ResXMLTree_node");
1687
1688 if (err >= NO_ERROR) {
1689 // Only perform additional validation on START nodes
1690 if (eventCode != RES_XML_START_ELEMENT_TYPE) {
1691 return NO_ERROR;
1692 }
1693
1694 const uint16_t headerSize = dtohs(node->header.headerSize);
1695 const uint32_t size = dtohl(node->header.size);
1696 const ResXMLTree_attrExt* attrExt = (const ResXMLTree_attrExt*)
1697 (((const uint8_t*)node) + headerSize);
1698 // check for sensical values pulled out of the stream so far...
1699 if ((size >= headerSize + sizeof(ResXMLTree_attrExt))
1700 && ((void*)attrExt > (void*)node)) {
1701 const size_t attrSize = ((size_t)dtohs(attrExt->attributeSize))
1702 * dtohs(attrExt->attributeCount);
1703 if ((dtohs(attrExt->attributeStart)+attrSize) <= (size-headerSize)) {
1704 return NO_ERROR;
1705 }
Steve Block8564c8d2012-01-05 23:22:43 +00001706 ALOGW("Bad XML block: node attributes use 0x%x bytes, only have 0x%x bytes\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001707 (unsigned int)(dtohs(attrExt->attributeStart)+attrSize),
1708 (unsigned int)(size-headerSize));
1709 }
1710 else {
Steve Block8564c8d2012-01-05 23:22:43 +00001711 ALOGW("Bad XML start block: node header size 0x%x, size 0x%x\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001712 (unsigned int)headerSize, (unsigned int)size);
1713 }
1714 return BAD_TYPE;
1715 }
1716
1717 return err;
1718
1719#if 0
1720 const bool isStart = dtohs(node->header.type) == RES_XML_START_ELEMENT_TYPE;
1721
1722 const uint16_t headerSize = dtohs(node->header.headerSize);
1723 const uint32_t size = dtohl(node->header.size);
1724
1725 if (headerSize >= (isStart ? sizeof(ResXMLTree_attrNode) : sizeof(ResXMLTree_node))) {
1726 if (size >= headerSize) {
1727 if (((const uint8_t*)node) <= (mDataEnd-size)) {
1728 if (!isStart) {
1729 return NO_ERROR;
1730 }
1731 if ((((size_t)dtohs(node->attributeSize))*dtohs(node->attributeCount))
1732 <= (size-headerSize)) {
1733 return NO_ERROR;
1734 }
Steve Block8564c8d2012-01-05 23:22:43 +00001735 ALOGW("Bad XML block: node attributes use 0x%x bytes, only have 0x%x bytes\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001736 ((int)dtohs(node->attributeSize))*dtohs(node->attributeCount),
1737 (int)(size-headerSize));
1738 return BAD_TYPE;
1739 }
Steve Block8564c8d2012-01-05 23:22:43 +00001740 ALOGW("Bad XML block: node at 0x%x extends beyond data end 0x%x\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001741 (int)(((const uint8_t*)node)-((const uint8_t*)mHeader)), (int)mSize);
1742 return BAD_TYPE;
1743 }
Steve Block8564c8d2012-01-05 23:22:43 +00001744 ALOGW("Bad XML block: node at 0x%x header size 0x%x smaller than total size 0x%x\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001745 (int)(((const uint8_t*)node)-((const uint8_t*)mHeader)),
1746 (int)headerSize, (int)size);
1747 return BAD_TYPE;
1748 }
Steve Block8564c8d2012-01-05 23:22:43 +00001749 ALOGW("Bad XML block: node at 0x%x header size 0x%x too small\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001750 (int)(((const uint8_t*)node)-((const uint8_t*)mHeader)),
1751 (int)headerSize);
1752 return BAD_TYPE;
1753#endif
1754}
1755
1756// --------------------------------------------------------------------
1757// --------------------------------------------------------------------
1758// --------------------------------------------------------------------
1759
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001760void ResTable_config::copyFromDeviceNoSwap(const ResTable_config& o) {
1761 const size_t size = dtohl(o.size);
1762 if (size >= sizeof(ResTable_config)) {
1763 *this = o;
1764 } else {
1765 memcpy(this, &o, size);
1766 memset(((uint8_t*)this)+size, 0, sizeof(ResTable_config)-size);
1767 }
1768}
1769
Narayan Kamath48620f12014-01-20 13:57:11 +00001770/* static */ size_t unpackLanguageOrRegion(const char in[2], const char base,
1771 char out[4]) {
1772 if (in[0] & 0x80) {
1773 // The high bit is "1", which means this is a packed three letter
1774 // language code.
1775
1776 // The smallest 5 bits of the second char are the first alphabet.
1777 const uint8_t first = in[1] & 0x1f;
1778 // The last three bits of the second char and the first two bits
1779 // of the first char are the second alphabet.
1780 const uint8_t second = ((in[1] & 0xe0) >> 5) + ((in[0] & 0x03) << 3);
1781 // Bits 3 to 7 (inclusive) of the first char are the third alphabet.
1782 const uint8_t third = (in[0] & 0x7c) >> 2;
1783
1784 out[0] = first + base;
1785 out[1] = second + base;
1786 out[2] = third + base;
1787 out[3] = 0;
1788
1789 return 3;
1790 }
1791
1792 if (in[0]) {
1793 memcpy(out, in, 2);
1794 memset(out + 2, 0, 2);
1795 return 2;
1796 }
1797
1798 memset(out, 0, 4);
1799 return 0;
1800}
1801
Narayan Kamath788fa412014-01-21 15:32:36 +00001802/* static */ void packLanguageOrRegion(const char* in, const char base,
Narayan Kamath48620f12014-01-20 13:57:11 +00001803 char out[2]) {
Narayan Kamath788fa412014-01-21 15:32:36 +00001804 if (in[2] == 0 || in[2] == '-') {
Narayan Kamath48620f12014-01-20 13:57:11 +00001805 out[0] = in[0];
1806 out[1] = in[1];
1807 } else {
Narayan Kamathb2975912014-06-30 15:59:39 +01001808 uint8_t first = (in[0] - base) & 0x007f;
1809 uint8_t second = (in[1] - base) & 0x007f;
1810 uint8_t third = (in[2] - base) & 0x007f;
Narayan Kamath48620f12014-01-20 13:57:11 +00001811
1812 out[0] = (0x80 | (third << 2) | (second >> 3));
1813 out[1] = ((second << 5) | first);
1814 }
1815}
1816
1817
Narayan Kamath788fa412014-01-21 15:32:36 +00001818void ResTable_config::packLanguage(const char* language) {
Narayan Kamath48620f12014-01-20 13:57:11 +00001819 packLanguageOrRegion(language, 'a', this->language);
1820}
1821
Narayan Kamath788fa412014-01-21 15:32:36 +00001822void ResTable_config::packRegion(const char* region) {
Narayan Kamath48620f12014-01-20 13:57:11 +00001823 packLanguageOrRegion(region, '0', this->country);
1824}
1825
1826size_t ResTable_config::unpackLanguage(char language[4]) const {
1827 return unpackLanguageOrRegion(this->language, 'a', language);
1828}
1829
1830size_t ResTable_config::unpackRegion(char region[4]) const {
1831 return unpackLanguageOrRegion(this->country, '0', region);
1832}
1833
1834
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001835void ResTable_config::copyFromDtoH(const ResTable_config& o) {
1836 copyFromDeviceNoSwap(o);
1837 size = sizeof(ResTable_config);
1838 mcc = dtohs(mcc);
1839 mnc = dtohs(mnc);
1840 density = dtohs(density);
1841 screenWidth = dtohs(screenWidth);
1842 screenHeight = dtohs(screenHeight);
1843 sdkVersion = dtohs(sdkVersion);
1844 minorVersion = dtohs(minorVersion);
1845 smallestScreenWidthDp = dtohs(smallestScreenWidthDp);
1846 screenWidthDp = dtohs(screenWidthDp);
1847 screenHeightDp = dtohs(screenHeightDp);
1848}
1849
1850void ResTable_config::swapHtoD() {
1851 size = htodl(size);
1852 mcc = htods(mcc);
1853 mnc = htods(mnc);
1854 density = htods(density);
1855 screenWidth = htods(screenWidth);
1856 screenHeight = htods(screenHeight);
1857 sdkVersion = htods(sdkVersion);
1858 minorVersion = htods(minorVersion);
1859 smallestScreenWidthDp = htods(smallestScreenWidthDp);
1860 screenWidthDp = htods(screenWidthDp);
1861 screenHeightDp = htods(screenHeightDp);
1862}
1863
Narayan Kamath48620f12014-01-20 13:57:11 +00001864/* static */ inline int compareLocales(const ResTable_config &l, const ResTable_config &r) {
1865 if (l.locale != r.locale) {
1866 // NOTE: This is the old behaviour with respect to comparison orders.
1867 // The diff value here doesn't make much sense (given our bit packing scheme)
1868 // but it's stable, and that's all we need.
1869 return l.locale - r.locale;
1870 }
1871
1872 // The language & region are equal, so compare the scripts and variants.
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08001873 const char emptyScript[sizeof(l.localeScript)] = {'\0', '\0', '\0', '\0'};
Roozbeh Pournader79608982016-03-03 15:06:46 -08001874 const char *lScript = l.localeScriptWasComputed ? emptyScript : l.localeScript;
1875 const char *rScript = r.localeScriptWasComputed ? emptyScript : r.localeScript;
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08001876 int script = memcmp(lScript, rScript, sizeof(l.localeScript));
Narayan Kamath48620f12014-01-20 13:57:11 +00001877 if (script) {
1878 return script;
1879 }
1880
1881 // The language, region and script are equal, so compare variants.
1882 //
1883 // This should happen very infrequently (if at all.)
1884 return memcmp(l.localeVariant, r.localeVariant, sizeof(l.localeVariant));
1885}
1886
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001887int ResTable_config::compare(const ResTable_config& o) const {
1888 int32_t diff = (int32_t)(imsi - o.imsi);
1889 if (diff != 0) return diff;
Narayan Kamath48620f12014-01-20 13:57:11 +00001890 diff = compareLocales(*this, o);
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001891 if (diff != 0) return diff;
1892 diff = (int32_t)(screenType - o.screenType);
1893 if (diff != 0) return diff;
1894 diff = (int32_t)(input - o.input);
1895 if (diff != 0) return diff;
1896 diff = (int32_t)(screenSize - o.screenSize);
1897 if (diff != 0) return diff;
1898 diff = (int32_t)(version - o.version);
1899 if (diff != 0) return diff;
1900 diff = (int32_t)(screenLayout - o.screenLayout);
1901 if (diff != 0) return diff;
Adam Lesinski2738c962015-05-14 14:25:36 -07001902 diff = (int32_t)(screenLayout2 - o.screenLayout2);
1903 if (diff != 0) return diff;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001904 diff = (int32_t)(uiMode - o.uiMode);
1905 if (diff != 0) return diff;
1906 diff = (int32_t)(smallestScreenWidthDp - o.smallestScreenWidthDp);
1907 if (diff != 0) return diff;
1908 diff = (int32_t)(screenSizeDp - o.screenSizeDp);
1909 return (int)diff;
1910}
1911
1912int ResTable_config::compareLogical(const ResTable_config& o) const {
1913 if (mcc != o.mcc) {
1914 return mcc < o.mcc ? -1 : 1;
1915 }
1916 if (mnc != o.mnc) {
1917 return mnc < o.mnc ? -1 : 1;
1918 }
Narayan Kamath48620f12014-01-20 13:57:11 +00001919
1920 int diff = compareLocales(*this, o);
1921 if (diff < 0) {
1922 return -1;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001923 }
Narayan Kamath48620f12014-01-20 13:57:11 +00001924 if (diff > 0) {
1925 return 1;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001926 }
Narayan Kamath48620f12014-01-20 13:57:11 +00001927
Fabrice Di Meglio5f797992012-06-15 20:16:41 -07001928 if ((screenLayout & MASK_LAYOUTDIR) != (o.screenLayout & MASK_LAYOUTDIR)) {
1929 return (screenLayout & MASK_LAYOUTDIR) < (o.screenLayout & MASK_LAYOUTDIR) ? -1 : 1;
1930 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001931 if (smallestScreenWidthDp != o.smallestScreenWidthDp) {
1932 return smallestScreenWidthDp < o.smallestScreenWidthDp ? -1 : 1;
1933 }
1934 if (screenWidthDp != o.screenWidthDp) {
1935 return screenWidthDp < o.screenWidthDp ? -1 : 1;
1936 }
1937 if (screenHeightDp != o.screenHeightDp) {
1938 return screenHeightDp < o.screenHeightDp ? -1 : 1;
1939 }
1940 if (screenWidth != o.screenWidth) {
1941 return screenWidth < o.screenWidth ? -1 : 1;
1942 }
1943 if (screenHeight != o.screenHeight) {
1944 return screenHeight < o.screenHeight ? -1 : 1;
1945 }
1946 if (density != o.density) {
1947 return density < o.density ? -1 : 1;
1948 }
1949 if (orientation != o.orientation) {
1950 return orientation < o.orientation ? -1 : 1;
1951 }
1952 if (touchscreen != o.touchscreen) {
1953 return touchscreen < o.touchscreen ? -1 : 1;
1954 }
1955 if (input != o.input) {
1956 return input < o.input ? -1 : 1;
1957 }
1958 if (screenLayout != o.screenLayout) {
1959 return screenLayout < o.screenLayout ? -1 : 1;
1960 }
Adam Lesinski2738c962015-05-14 14:25:36 -07001961 if (screenLayout2 != o.screenLayout2) {
1962 return screenLayout2 < o.screenLayout2 ? -1 : 1;
1963 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001964 if (uiMode != o.uiMode) {
1965 return uiMode < o.uiMode ? -1 : 1;
1966 }
1967 if (version != o.version) {
1968 return version < o.version ? -1 : 1;
1969 }
1970 return 0;
1971}
1972
1973int ResTable_config::diff(const ResTable_config& o) const {
1974 int diffs = 0;
1975 if (mcc != o.mcc) diffs |= CONFIG_MCC;
1976 if (mnc != o.mnc) diffs |= CONFIG_MNC;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001977 if (orientation != o.orientation) diffs |= CONFIG_ORIENTATION;
1978 if (density != o.density) diffs |= CONFIG_DENSITY;
1979 if (touchscreen != o.touchscreen) diffs |= CONFIG_TOUCHSCREEN;
1980 if (((inputFlags^o.inputFlags)&(MASK_KEYSHIDDEN|MASK_NAVHIDDEN)) != 0)
1981 diffs |= CONFIG_KEYBOARD_HIDDEN;
1982 if (keyboard != o.keyboard) diffs |= CONFIG_KEYBOARD;
1983 if (navigation != o.navigation) diffs |= CONFIG_NAVIGATION;
1984 if (screenSize != o.screenSize) diffs |= CONFIG_SCREEN_SIZE;
1985 if (version != o.version) diffs |= CONFIG_VERSION;
Fabrice Di Meglio35099352012-12-12 11:52:03 -08001986 if ((screenLayout & MASK_LAYOUTDIR) != (o.screenLayout & MASK_LAYOUTDIR)) diffs |= CONFIG_LAYOUTDIR;
1987 if ((screenLayout & ~MASK_LAYOUTDIR) != (o.screenLayout & ~MASK_LAYOUTDIR)) diffs |= CONFIG_SCREEN_LAYOUT;
Adam Lesinski2738c962015-05-14 14:25:36 -07001988 if ((screenLayout2 & MASK_SCREENROUND) != (o.screenLayout2 & MASK_SCREENROUND)) diffs |= CONFIG_SCREEN_ROUND;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001989 if (uiMode != o.uiMode) diffs |= CONFIG_UI_MODE;
1990 if (smallestScreenWidthDp != o.smallestScreenWidthDp) diffs |= CONFIG_SMALLEST_SCREEN_SIZE;
1991 if (screenSizeDp != o.screenSizeDp) diffs |= CONFIG_SCREEN_SIZE;
Narayan Kamath48620f12014-01-20 13:57:11 +00001992
1993 const int diff = compareLocales(*this, o);
1994 if (diff) diffs |= CONFIG_LOCALE;
1995
Dianne Hackborn6c997a92012-01-31 11:27:43 -08001996 return diffs;
1997}
1998
Narayan Kamath48620f12014-01-20 13:57:11 +00001999int ResTable_config::isLocaleMoreSpecificThan(const ResTable_config& o) const {
2000 if (locale || o.locale) {
2001 if (language[0] != o.language[0]) {
2002 if (!language[0]) return -1;
2003 if (!o.language[0]) return 1;
2004 }
2005
2006 if (country[0] != o.country[0]) {
2007 if (!country[0]) return -1;
2008 if (!o.country[0]) return 1;
2009 }
2010 }
2011
2012 // There isn't a well specified "importance" order between variants and
2013 // scripts. We can't easily tell whether, say "en-Latn-US" is more or less
2014 // specific than "en-US-POSIX".
2015 //
2016 // We therefore arbitrarily decide to give priority to variants over
2017 // scripts since it seems more useful to do so. We will consider
2018 // "en-US-POSIX" to be more specific than "en-Latn-US".
2019
Roozbeh Pournader79608982016-03-03 15:06:46 -08002020 const int score = ((localeScript[0] != '\0' && !localeScriptWasComputed) ? 1 : 0) +
2021 ((localeVariant[0] != '\0') ? 2 : 0);
Narayan Kamath48620f12014-01-20 13:57:11 +00002022
Roozbeh Pournader79608982016-03-03 15:06:46 -08002023 const int oScore = (o.localeScript[0] != '\0' && !o.localeScriptWasComputed ? 1 : 0) +
2024 ((o.localeVariant[0] != '\0') ? 2 : 0);
Narayan Kamath48620f12014-01-20 13:57:11 +00002025
2026 return score - oScore;
2027
2028}
2029
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002030bool ResTable_config::isMoreSpecificThan(const ResTable_config& o) const {
2031 // The order of the following tests defines the importance of one
2032 // configuration parameter over another. Those tests first are more
2033 // important, trumping any values in those following them.
2034 if (imsi || o.imsi) {
2035 if (mcc != o.mcc) {
2036 if (!mcc) return false;
2037 if (!o.mcc) return true;
2038 }
2039
2040 if (mnc != o.mnc) {
2041 if (!mnc) return false;
2042 if (!o.mnc) return true;
2043 }
2044 }
2045
2046 if (locale || o.locale) {
Narayan Kamath48620f12014-01-20 13:57:11 +00002047 const int diff = isLocaleMoreSpecificThan(o);
2048 if (diff < 0) {
2049 return false;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002050 }
2051
Narayan Kamath48620f12014-01-20 13:57:11 +00002052 if (diff > 0) {
2053 return true;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002054 }
2055 }
2056
Fabrice Di Meglio5f797992012-06-15 20:16:41 -07002057 if (screenLayout || o.screenLayout) {
2058 if (((screenLayout^o.screenLayout) & MASK_LAYOUTDIR) != 0) {
2059 if (!(screenLayout & MASK_LAYOUTDIR)) return false;
2060 if (!(o.screenLayout & MASK_LAYOUTDIR)) return true;
2061 }
2062 }
2063
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002064 if (smallestScreenWidthDp || o.smallestScreenWidthDp) {
2065 if (smallestScreenWidthDp != o.smallestScreenWidthDp) {
2066 if (!smallestScreenWidthDp) return false;
2067 if (!o.smallestScreenWidthDp) return true;
2068 }
2069 }
2070
2071 if (screenSizeDp || o.screenSizeDp) {
2072 if (screenWidthDp != o.screenWidthDp) {
2073 if (!screenWidthDp) return false;
2074 if (!o.screenWidthDp) return true;
2075 }
2076
2077 if (screenHeightDp != o.screenHeightDp) {
2078 if (!screenHeightDp) return false;
2079 if (!o.screenHeightDp) return true;
2080 }
2081 }
2082
2083 if (screenLayout || o.screenLayout) {
2084 if (((screenLayout^o.screenLayout) & MASK_SCREENSIZE) != 0) {
2085 if (!(screenLayout & MASK_SCREENSIZE)) return false;
2086 if (!(o.screenLayout & MASK_SCREENSIZE)) return true;
2087 }
2088 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0) {
2089 if (!(screenLayout & MASK_SCREENLONG)) return false;
2090 if (!(o.screenLayout & MASK_SCREENLONG)) return true;
2091 }
2092 }
2093
Adam Lesinski2738c962015-05-14 14:25:36 -07002094 if (screenLayout2 || o.screenLayout2) {
2095 if (((screenLayout2^o.screenLayout2) & MASK_SCREENROUND) != 0) {
2096 if (!(screenLayout2 & MASK_SCREENROUND)) return false;
2097 if (!(o.screenLayout2 & MASK_SCREENROUND)) return true;
2098 }
2099 }
2100
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002101 if (orientation != o.orientation) {
2102 if (!orientation) return false;
2103 if (!o.orientation) return true;
2104 }
2105
2106 if (uiMode || o.uiMode) {
2107 if (((uiMode^o.uiMode) & MASK_UI_MODE_TYPE) != 0) {
2108 if (!(uiMode & MASK_UI_MODE_TYPE)) return false;
2109 if (!(o.uiMode & MASK_UI_MODE_TYPE)) return true;
2110 }
2111 if (((uiMode^o.uiMode) & MASK_UI_MODE_NIGHT) != 0) {
2112 if (!(uiMode & MASK_UI_MODE_NIGHT)) return false;
2113 if (!(o.uiMode & MASK_UI_MODE_NIGHT)) return true;
2114 }
2115 }
2116
2117 // density is never 'more specific'
2118 // as the default just equals 160
2119
2120 if (touchscreen != o.touchscreen) {
2121 if (!touchscreen) return false;
2122 if (!o.touchscreen) return true;
2123 }
2124
2125 if (input || o.input) {
2126 if (((inputFlags^o.inputFlags) & MASK_KEYSHIDDEN) != 0) {
2127 if (!(inputFlags & MASK_KEYSHIDDEN)) return false;
2128 if (!(o.inputFlags & MASK_KEYSHIDDEN)) return true;
2129 }
2130
2131 if (((inputFlags^o.inputFlags) & MASK_NAVHIDDEN) != 0) {
2132 if (!(inputFlags & MASK_NAVHIDDEN)) return false;
2133 if (!(o.inputFlags & MASK_NAVHIDDEN)) return true;
2134 }
2135
2136 if (keyboard != o.keyboard) {
2137 if (!keyboard) return false;
2138 if (!o.keyboard) return true;
2139 }
2140
2141 if (navigation != o.navigation) {
2142 if (!navigation) return false;
2143 if (!o.navigation) return true;
2144 }
2145 }
2146
2147 if (screenSize || o.screenSize) {
2148 if (screenWidth != o.screenWidth) {
2149 if (!screenWidth) return false;
2150 if (!o.screenWidth) return true;
2151 }
2152
2153 if (screenHeight != o.screenHeight) {
2154 if (!screenHeight) return false;
2155 if (!o.screenHeight) return true;
2156 }
2157 }
2158
2159 if (version || o.version) {
2160 if (sdkVersion != o.sdkVersion) {
2161 if (!sdkVersion) return false;
2162 if (!o.sdkVersion) return true;
2163 }
2164
2165 if (minorVersion != o.minorVersion) {
2166 if (!minorVersion) return false;
2167 if (!o.minorVersion) return true;
2168 }
2169 }
2170 return false;
2171}
2172
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002173bool ResTable_config::isLocaleBetterThan(const ResTable_config& o,
2174 const ResTable_config* requested) const {
2175 if (requested->locale == 0) {
2176 // The request doesn't have a locale, so no resource is better
2177 // than the other.
2178 return false;
2179 }
2180
2181 if (locale == 0 && o.locale == 0) {
2182 // The locales parts of both resources are empty, so no one is better
2183 // than the other.
2184 return false;
2185 }
2186
2187 // Non-matching locales have been filtered out, so both resources
2188 // match the requested locale.
2189 //
2190 // Because of the locale-related checks in match() and the checks, we know
2191 // that:
2192 // 1) The resource languages are either empty or match the request;
2193 // and
2194 // 2) If the request's script is known, the resource scripts are either
2195 // unknown or match the request.
2196
2197 if (language[0] != o.language[0]) {
2198 // The languages of the two resources are not the same. We can only
2199 // assume that one of the two resources matched the request because one
2200 // doesn't have a language and the other has a matching language.
Roozbeh Pournader27953c32016-02-01 13:49:52 -08002201 //
2202 // We consider the one that has the language specified a better match.
2203 //
2204 // The exception is that we consider no-language resources a better match
2205 // for US English and similar locales than locales that are a descendant
2206 // of Internatinal English (en-001), since no-language resources are
2207 // where the US English resource have traditionally lived for most apps.
2208 if (requested->language[0] == 'e' && requested->language[1] == 'n') {
2209 if (requested->country[0] == 'U' && requested->country[1] == 'S') {
2210 // For US English itself, we consider a no-locale resource a
2211 // better match if the other resource has a country other than
2212 // US specified.
2213 if (language[0] != '\0') {
2214 return country[0] == '\0' || (country[0] == 'U' && country[1] == 'S');
2215 } else {
2216 return !(o.country[0] == '\0' || (o.country[0] == 'U' && o.country[1] == 'S'));
2217 }
2218 } else if (localeDataIsCloseToUsEnglish(requested->country)) {
2219 if (language[0] != '\0') {
2220 return localeDataIsCloseToUsEnglish(country);
2221 } else {
2222 return !localeDataIsCloseToUsEnglish(o.country);
2223 }
2224 }
2225 }
2226 return (language[0] != '\0');
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002227 }
2228
2229 // If we are here, both the resources have the same non-empty language as
2230 // the request.
2231 //
2232 // Because the languages are the same, computeScript() always
2233 // returns a non-empty script for languages it knows about, and we have passed
2234 // the script checks in match(), the scripts are either all unknown or are
2235 // all the same. So we can't gain anything by checking the scripts. We need
2236 // to check the region and variant.
2237
2238 // See if any of the regions is better than the other
2239 const int region_comparison = localeDataCompareRegions(
2240 country, o.country,
Roozbeh Pournader4de45962016-02-11 17:58:24 -08002241 language, requested->localeScript, requested->country);
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002242 if (region_comparison != 0) {
2243 return (region_comparison > 0);
2244 }
2245
2246 // The regions are the same. Try the variant.
2247 if (requested->localeVariant[0] != '\0'
2248 && strncmp(localeVariant, requested->localeVariant, sizeof(localeVariant)) == 0) {
2249 return (strncmp(o.localeVariant, requested->localeVariant, sizeof(localeVariant)) != 0);
2250 }
2251
2252 return false;
2253}
2254
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002255bool ResTable_config::isBetterThan(const ResTable_config& o,
2256 const ResTable_config* requested) const {
2257 if (requested) {
2258 if (imsi || o.imsi) {
2259 if ((mcc != o.mcc) && requested->mcc) {
2260 return (mcc);
2261 }
2262
2263 if ((mnc != o.mnc) && requested->mnc) {
2264 return (mnc);
2265 }
2266 }
2267
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002268 if (isLocaleBetterThan(o, requested)) {
2269 return true;
Narayan Kamath48620f12014-01-20 13:57:11 +00002270 }
2271
Fabrice Di Meglio5f797992012-06-15 20:16:41 -07002272 if (screenLayout || o.screenLayout) {
2273 if (((screenLayout^o.screenLayout) & MASK_LAYOUTDIR) != 0
2274 && (requested->screenLayout & MASK_LAYOUTDIR)) {
2275 int myLayoutDir = screenLayout & MASK_LAYOUTDIR;
2276 int oLayoutDir = o.screenLayout & MASK_LAYOUTDIR;
2277 return (myLayoutDir > oLayoutDir);
2278 }
2279 }
2280
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002281 if (smallestScreenWidthDp || o.smallestScreenWidthDp) {
2282 // The configuration closest to the actual size is best.
2283 // We assume that larger configs have already been filtered
2284 // out at this point. That means we just want the largest one.
Dianne Hackborn5c6dfeb2012-03-09 13:17:17 -08002285 if (smallestScreenWidthDp != o.smallestScreenWidthDp) {
2286 return smallestScreenWidthDp > o.smallestScreenWidthDp;
2287 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002288 }
2289
2290 if (screenSizeDp || o.screenSizeDp) {
2291 // "Better" is based on the sum of the difference between both
2292 // width and height from the requested dimensions. We are
2293 // assuming the invalid configs (with smaller dimens) have
2294 // already been filtered. Note that if a particular dimension
2295 // is unspecified, we will end up with a large value (the
2296 // difference between 0 and the requested dimension), which is
2297 // good since we will prefer a config that has specified a
2298 // dimension value.
2299 int myDelta = 0, otherDelta = 0;
2300 if (requested->screenWidthDp) {
2301 myDelta += requested->screenWidthDp - screenWidthDp;
2302 otherDelta += requested->screenWidthDp - o.screenWidthDp;
2303 }
2304 if (requested->screenHeightDp) {
2305 myDelta += requested->screenHeightDp - screenHeightDp;
2306 otherDelta += requested->screenHeightDp - o.screenHeightDp;
2307 }
Andreas Gampe2204f0b2014-10-21 23:04:54 -07002308 if (kDebugTableSuperNoisy) {
2309 ALOGI("Comparing this %dx%d to other %dx%d in %dx%d: myDelta=%d otherDelta=%d",
2310 screenWidthDp, screenHeightDp, o.screenWidthDp, o.screenHeightDp,
2311 requested->screenWidthDp, requested->screenHeightDp, myDelta, otherDelta);
2312 }
Dianne Hackborn5c6dfeb2012-03-09 13:17:17 -08002313 if (myDelta != otherDelta) {
2314 return myDelta < otherDelta;
2315 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002316 }
2317
2318 if (screenLayout || o.screenLayout) {
2319 if (((screenLayout^o.screenLayout) & MASK_SCREENSIZE) != 0
2320 && (requested->screenLayout & MASK_SCREENSIZE)) {
2321 // A little backwards compatibility here: undefined is
2322 // considered equivalent to normal. But only if the
2323 // requested size is at least normal; otherwise, small
2324 // is better than the default.
2325 int mySL = (screenLayout & MASK_SCREENSIZE);
2326 int oSL = (o.screenLayout & MASK_SCREENSIZE);
2327 int fixedMySL = mySL;
2328 int fixedOSL = oSL;
2329 if ((requested->screenLayout & MASK_SCREENSIZE) >= SCREENSIZE_NORMAL) {
2330 if (fixedMySL == 0) fixedMySL = SCREENSIZE_NORMAL;
2331 if (fixedOSL == 0) fixedOSL = SCREENSIZE_NORMAL;
2332 }
2333 // For screen size, the best match is the one that is
2334 // closest to the requested screen size, but not over
2335 // (the not over part is dealt with in match() below).
2336 if (fixedMySL == fixedOSL) {
2337 // If the two are the same, but 'this' is actually
2338 // undefined, then the other is really a better match.
2339 if (mySL == 0) return false;
2340 return true;
2341 }
Dianne Hackborn5c6dfeb2012-03-09 13:17:17 -08002342 if (fixedMySL != fixedOSL) {
2343 return fixedMySL > fixedOSL;
2344 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002345 }
2346 if (((screenLayout^o.screenLayout) & MASK_SCREENLONG) != 0
2347 && (requested->screenLayout & MASK_SCREENLONG)) {
2348 return (screenLayout & MASK_SCREENLONG);
2349 }
2350 }
2351
Adam Lesinski2738c962015-05-14 14:25:36 -07002352 if (screenLayout2 || o.screenLayout2) {
2353 if (((screenLayout2^o.screenLayout2) & MASK_SCREENROUND) != 0 &&
2354 (requested->screenLayout2 & MASK_SCREENROUND)) {
2355 return screenLayout2 & MASK_SCREENROUND;
2356 }
2357 }
2358
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002359 if ((orientation != o.orientation) && requested->orientation) {
2360 return (orientation);
2361 }
2362
2363 if (uiMode || o.uiMode) {
2364 if (((uiMode^o.uiMode) & MASK_UI_MODE_TYPE) != 0
2365 && (requested->uiMode & MASK_UI_MODE_TYPE)) {
2366 return (uiMode & MASK_UI_MODE_TYPE);
2367 }
2368 if (((uiMode^o.uiMode) & MASK_UI_MODE_NIGHT) != 0
2369 && (requested->uiMode & MASK_UI_MODE_NIGHT)) {
2370 return (uiMode & MASK_UI_MODE_NIGHT);
2371 }
2372 }
2373
2374 if (screenType || o.screenType) {
2375 if (density != o.density) {
Adam Lesinski31245b42014-08-22 19:10:56 -07002376 // Use the system default density (DENSITY_MEDIUM, 160dpi) if none specified.
2377 const int thisDensity = density ? density : int(ResTable_config::DENSITY_MEDIUM);
2378 const int otherDensity = o.density ? o.density : int(ResTable_config::DENSITY_MEDIUM);
2379
2380 // We always prefer DENSITY_ANY over scaling a density bucket.
2381 if (thisDensity == ResTable_config::DENSITY_ANY) {
2382 return true;
2383 } else if (otherDensity == ResTable_config::DENSITY_ANY) {
2384 return false;
2385 }
2386
2387 int requestedDensity = requested->density;
2388 if (requested->density == 0 ||
2389 requested->density == ResTable_config::DENSITY_ANY) {
2390 requestedDensity = ResTable_config::DENSITY_MEDIUM;
2391 }
2392
2393 // DENSITY_ANY is now dealt with. We should look to
2394 // pick a density bucket and potentially scale it.
2395 // Any density is potentially useful
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002396 // because the system will scale it. Scaling down
2397 // is generally better than scaling up.
Adam Lesinski31245b42014-08-22 19:10:56 -07002398 int h = thisDensity;
2399 int l = otherDensity;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002400 bool bImBigger = true;
2401 if (l > h) {
2402 int t = h;
2403 h = l;
2404 l = t;
2405 bImBigger = false;
2406 }
2407
Adam Lesinski31245b42014-08-22 19:10:56 -07002408 if (requestedDensity >= h) {
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002409 // requested value higher than both l and h, give h
2410 return bImBigger;
2411 }
Adam Lesinski31245b42014-08-22 19:10:56 -07002412 if (l >= requestedDensity) {
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002413 // requested value lower than both l and h, give l
2414 return !bImBigger;
2415 }
2416 // saying that scaling down is 2x better than up
Adam Lesinski31245b42014-08-22 19:10:56 -07002417 if (((2 * l) - requestedDensity) * h > requestedDensity * requestedDensity) {
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002418 return !bImBigger;
2419 } else {
2420 return bImBigger;
2421 }
2422 }
2423
2424 if ((touchscreen != o.touchscreen) && requested->touchscreen) {
2425 return (touchscreen);
2426 }
2427 }
2428
2429 if (input || o.input) {
2430 const int keysHidden = inputFlags & MASK_KEYSHIDDEN;
2431 const int oKeysHidden = o.inputFlags & MASK_KEYSHIDDEN;
2432 if (keysHidden != oKeysHidden) {
2433 const int reqKeysHidden =
2434 requested->inputFlags & MASK_KEYSHIDDEN;
2435 if (reqKeysHidden) {
2436
2437 if (!keysHidden) return false;
2438 if (!oKeysHidden) return true;
2439 // For compatibility, we count KEYSHIDDEN_NO as being
2440 // the same as KEYSHIDDEN_SOFT. Here we disambiguate
2441 // these by making an exact match more specific.
2442 if (reqKeysHidden == keysHidden) return true;
2443 if (reqKeysHidden == oKeysHidden) return false;
2444 }
2445 }
2446
2447 const int navHidden = inputFlags & MASK_NAVHIDDEN;
2448 const int oNavHidden = o.inputFlags & MASK_NAVHIDDEN;
2449 if (navHidden != oNavHidden) {
2450 const int reqNavHidden =
2451 requested->inputFlags & MASK_NAVHIDDEN;
2452 if (reqNavHidden) {
2453
2454 if (!navHidden) return false;
2455 if (!oNavHidden) return true;
2456 }
2457 }
2458
2459 if ((keyboard != o.keyboard) && requested->keyboard) {
2460 return (keyboard);
2461 }
2462
2463 if ((navigation != o.navigation) && requested->navigation) {
2464 return (navigation);
2465 }
2466 }
2467
2468 if (screenSize || o.screenSize) {
2469 // "Better" is based on the sum of the difference between both
2470 // width and height from the requested dimensions. We are
2471 // assuming the invalid configs (with smaller sizes) have
2472 // already been filtered. Note that if a particular dimension
2473 // is unspecified, we will end up with a large value (the
2474 // difference between 0 and the requested dimension), which is
2475 // good since we will prefer a config that has specified a
2476 // size value.
2477 int myDelta = 0, otherDelta = 0;
2478 if (requested->screenWidth) {
2479 myDelta += requested->screenWidth - screenWidth;
2480 otherDelta += requested->screenWidth - o.screenWidth;
2481 }
2482 if (requested->screenHeight) {
2483 myDelta += requested->screenHeight - screenHeight;
2484 otherDelta += requested->screenHeight - o.screenHeight;
2485 }
Dianne Hackborn5c6dfeb2012-03-09 13:17:17 -08002486 if (myDelta != otherDelta) {
2487 return myDelta < otherDelta;
2488 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002489 }
2490
2491 if (version || o.version) {
2492 if ((sdkVersion != o.sdkVersion) && requested->sdkVersion) {
2493 return (sdkVersion > o.sdkVersion);
2494 }
2495
2496 if ((minorVersion != o.minorVersion) &&
2497 requested->minorVersion) {
2498 return (minorVersion);
2499 }
2500 }
2501
2502 return false;
2503 }
2504 return isMoreSpecificThan(o);
2505}
2506
2507bool ResTable_config::match(const ResTable_config& settings) const {
2508 if (imsi != 0) {
2509 if (mcc != 0 && mcc != settings.mcc) {
2510 return false;
2511 }
2512 if (mnc != 0 && mnc != settings.mnc) {
2513 return false;
2514 }
2515 }
2516 if (locale != 0) {
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002517 // Don't consider country and variants when deciding matches.
2518 // (Theoretically, the variant can also affect the script. For
2519 // example, "ar-alalc97" probably implies the Latin script, but since
2520 // CLDR doesn't support getting likely scripts for that, we'll assume
2521 // the variant doesn't change the script.)
Narayan Kamath48620f12014-01-20 13:57:11 +00002522 //
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002523 // If two configs differ only in their country and variant,
2524 // they can be weeded out in the isMoreSpecificThan test.
2525 if (language[0] != settings.language[0] || language[1] != settings.language[1]) {
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002526 return false;
2527 }
Narayan Kamath48620f12014-01-20 13:57:11 +00002528
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002529 // For backward compatibility and supporting private-use locales, we
2530 // fall back to old behavior if we couldn't determine the script for
Roozbeh Pournader4de45962016-02-11 17:58:24 -08002531 // either of the desired locale or the provided locale. But if we could determine
2532 // the scripts, they should be the same for the locales to match.
2533 bool countriesMustMatch = false;
2534 char computed_script[4];
2535 const char* script;
2536 if (settings.localeScript[0] == '\0') { // could not determine the request's script
2537 countriesMustMatch = true;
2538 } else {
Roozbeh Pournader79608982016-03-03 15:06:46 -08002539 if (localeScript[0] == '\0' && !localeScriptWasComputed) {
2540 // script was not provided or computed, so we try to compute it
Roozbeh Pournader4de45962016-02-11 17:58:24 -08002541 localeDataComputeScript(computed_script, language, country);
2542 if (computed_script[0] == '\0') { // we could not compute the script
2543 countriesMustMatch = true;
2544 } else {
2545 script = computed_script;
2546 }
2547 } else { // script was provided, so just use it
2548 script = localeScript;
2549 }
2550 }
2551
2552 if (countriesMustMatch) {
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002553 if (country[0] != '\0'
2554 && (country[0] != settings.country[0]
2555 || country[1] != settings.country[1])) {
2556 return false;
2557 }
2558 } else {
Roozbeh Pournader4de45962016-02-11 17:58:24 -08002559 if (memcmp(script, settings.localeScript, sizeof(settings.localeScript)) != 0) {
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002560 return false;
2561 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002562 }
2563 }
Narayan Kamath48620f12014-01-20 13:57:11 +00002564
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002565 if (screenConfig != 0) {
Fabrice Di Meglio5f797992012-06-15 20:16:41 -07002566 const int layoutDir = screenLayout&MASK_LAYOUTDIR;
2567 const int setLayoutDir = settings.screenLayout&MASK_LAYOUTDIR;
2568 if (layoutDir != 0 && layoutDir != setLayoutDir) {
2569 return false;
2570 }
2571
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002572 const int screenSize = screenLayout&MASK_SCREENSIZE;
2573 const int setScreenSize = settings.screenLayout&MASK_SCREENSIZE;
2574 // Any screen sizes for larger screens than the setting do not
2575 // match.
2576 if (screenSize != 0 && screenSize > setScreenSize) {
2577 return false;
2578 }
2579
2580 const int screenLong = screenLayout&MASK_SCREENLONG;
2581 const int setScreenLong = settings.screenLayout&MASK_SCREENLONG;
2582 if (screenLong != 0 && screenLong != setScreenLong) {
2583 return false;
2584 }
2585
2586 const int uiModeType = uiMode&MASK_UI_MODE_TYPE;
2587 const int setUiModeType = settings.uiMode&MASK_UI_MODE_TYPE;
2588 if (uiModeType != 0 && uiModeType != setUiModeType) {
2589 return false;
2590 }
2591
2592 const int uiModeNight = uiMode&MASK_UI_MODE_NIGHT;
2593 const int setUiModeNight = settings.uiMode&MASK_UI_MODE_NIGHT;
2594 if (uiModeNight != 0 && uiModeNight != setUiModeNight) {
2595 return false;
2596 }
2597
2598 if (smallestScreenWidthDp != 0
2599 && smallestScreenWidthDp > settings.smallestScreenWidthDp) {
2600 return false;
2601 }
2602 }
Adam Lesinski2738c962015-05-14 14:25:36 -07002603
2604 if (screenConfig2 != 0) {
2605 const int screenRound = screenLayout2 & MASK_SCREENROUND;
2606 const int setScreenRound = settings.screenLayout2 & MASK_SCREENROUND;
2607 if (screenRound != 0 && screenRound != setScreenRound) {
2608 return false;
2609 }
2610 }
2611
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002612 if (screenSizeDp != 0) {
2613 if (screenWidthDp != 0 && screenWidthDp > settings.screenWidthDp) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07002614 if (kDebugTableSuperNoisy) {
2615 ALOGI("Filtering out width %d in requested %d", screenWidthDp,
2616 settings.screenWidthDp);
2617 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002618 return false;
2619 }
2620 if (screenHeightDp != 0 && screenHeightDp > settings.screenHeightDp) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07002621 if (kDebugTableSuperNoisy) {
2622 ALOGI("Filtering out height %d in requested %d", screenHeightDp,
2623 settings.screenHeightDp);
2624 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002625 return false;
2626 }
2627 }
2628 if (screenType != 0) {
2629 if (orientation != 0 && orientation != settings.orientation) {
2630 return false;
2631 }
2632 // density always matches - we can scale it. See isBetterThan
2633 if (touchscreen != 0 && touchscreen != settings.touchscreen) {
2634 return false;
2635 }
2636 }
2637 if (input != 0) {
2638 const int keysHidden = inputFlags&MASK_KEYSHIDDEN;
2639 const int setKeysHidden = settings.inputFlags&MASK_KEYSHIDDEN;
2640 if (keysHidden != 0 && keysHidden != setKeysHidden) {
2641 // For compatibility, we count a request for KEYSHIDDEN_NO as also
2642 // matching the more recent KEYSHIDDEN_SOFT. Basically
2643 // KEYSHIDDEN_NO means there is some kind of keyboard available.
Andreas Gampe2204f0b2014-10-21 23:04:54 -07002644 if (kDebugTableSuperNoisy) {
2645 ALOGI("Matching keysHidden: have=%d, config=%d\n", keysHidden, setKeysHidden);
2646 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002647 if (keysHidden != KEYSHIDDEN_NO || setKeysHidden != KEYSHIDDEN_SOFT) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07002648 if (kDebugTableSuperNoisy) {
2649 ALOGI("No match!");
2650 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002651 return false;
2652 }
2653 }
2654 const int navHidden = inputFlags&MASK_NAVHIDDEN;
2655 const int setNavHidden = settings.inputFlags&MASK_NAVHIDDEN;
2656 if (navHidden != 0 && navHidden != setNavHidden) {
2657 return false;
2658 }
2659 if (keyboard != 0 && keyboard != settings.keyboard) {
2660 return false;
2661 }
2662 if (navigation != 0 && navigation != settings.navigation) {
2663 return false;
2664 }
2665 }
2666 if (screenSize != 0) {
2667 if (screenWidth != 0 && screenWidth > settings.screenWidth) {
2668 return false;
2669 }
2670 if (screenHeight != 0 && screenHeight > settings.screenHeight) {
2671 return false;
2672 }
2673 }
2674 if (version != 0) {
2675 if (sdkVersion != 0 && sdkVersion > settings.sdkVersion) {
2676 return false;
2677 }
2678 if (minorVersion != 0 && minorVersion != settings.minorVersion) {
2679 return false;
2680 }
2681 }
2682 return true;
2683}
2684
Adam Lesinski8a9355a2015-03-10 16:55:43 -07002685void ResTable_config::appendDirLocale(String8& out) const {
2686 if (!language[0]) {
2687 return;
2688 }
Roozbeh Pournader79608982016-03-03 15:06:46 -08002689 const bool scriptWasProvided = localeScript[0] != '\0' && !localeScriptWasComputed;
2690 if (!scriptWasProvided && !localeVariant[0]) {
Adam Lesinski8a9355a2015-03-10 16:55:43 -07002691 // Legacy format.
2692 if (out.size() > 0) {
2693 out.append("-");
2694 }
2695
2696 char buf[4];
2697 size_t len = unpackLanguage(buf);
2698 out.append(buf, len);
2699
2700 if (country[0]) {
2701 out.append("-r");
2702 len = unpackRegion(buf);
2703 out.append(buf, len);
2704 }
2705 return;
2706 }
2707
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002708 // We are writing the modified BCP 47 tag.
Adam Lesinski8a9355a2015-03-10 16:55:43 -07002709 // It starts with 'b+' and uses '+' as a separator.
2710
2711 if (out.size() > 0) {
2712 out.append("-");
2713 }
2714 out.append("b+");
2715
2716 char buf[4];
2717 size_t len = unpackLanguage(buf);
2718 out.append(buf, len);
2719
Roozbeh Pournader79608982016-03-03 15:06:46 -08002720 if (scriptWasProvided) {
Adam Lesinski8a9355a2015-03-10 16:55:43 -07002721 out.append("+");
2722 out.append(localeScript, sizeof(localeScript));
2723 }
2724
2725 if (country[0]) {
2726 out.append("+");
2727 len = unpackRegion(buf);
2728 out.append(buf, len);
2729 }
2730
2731 if (localeVariant[0]) {
2732 out.append("+");
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002733 out.append(localeVariant, strnlen(localeVariant, sizeof(localeVariant)));
Adam Lesinski8a9355a2015-03-10 16:55:43 -07002734 }
2735}
2736
Narayan Kamath788fa412014-01-21 15:32:36 +00002737void ResTable_config::getBcp47Locale(char str[RESTABLE_MAX_LOCALE_LEN]) const {
Narayan Kamath48620f12014-01-20 13:57:11 +00002738 memset(str, 0, RESTABLE_MAX_LOCALE_LEN);
2739
2740 // This represents the "any" locale value, which has traditionally been
2741 // represented by the empty string.
2742 if (!language[0] && !country[0]) {
2743 return;
2744 }
2745
2746 size_t charsWritten = 0;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002747 if (language[0]) {
Narayan Kamath788fa412014-01-21 15:32:36 +00002748 charsWritten += unpackLanguage(str);
Narayan Kamath48620f12014-01-20 13:57:11 +00002749 }
2750
Roozbeh Pournader79608982016-03-03 15:06:46 -08002751 if (localeScript[0] && !localeScriptWasComputed) {
Narayan Kamath48620f12014-01-20 13:57:11 +00002752 if (charsWritten) {
Narayan Kamath788fa412014-01-21 15:32:36 +00002753 str[charsWritten++] = '-';
Narayan Kamath48620f12014-01-20 13:57:11 +00002754 }
2755 memcpy(str + charsWritten, localeScript, sizeof(localeScript));
Narayan Kamath788fa412014-01-21 15:32:36 +00002756 charsWritten += sizeof(localeScript);
2757 }
2758
2759 if (country[0]) {
2760 if (charsWritten) {
2761 str[charsWritten++] = '-';
2762 }
2763 charsWritten += unpackRegion(str + charsWritten);
Narayan Kamath48620f12014-01-20 13:57:11 +00002764 }
2765
2766 if (localeVariant[0]) {
2767 if (charsWritten) {
Narayan Kamath788fa412014-01-21 15:32:36 +00002768 str[charsWritten++] = '-';
Narayan Kamath48620f12014-01-20 13:57:11 +00002769 }
2770 memcpy(str + charsWritten, localeVariant, sizeof(localeVariant));
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002771 }
2772}
2773
Narayan Kamath788fa412014-01-21 15:32:36 +00002774/* static */ inline bool assignLocaleComponent(ResTable_config* config,
2775 const char* start, size_t size) {
2776
2777 switch (size) {
2778 case 0:
2779 return false;
2780 case 2:
2781 case 3:
2782 config->language[0] ? config->packRegion(start) : config->packLanguage(start);
2783 break;
2784 case 4:
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002785 if ('0' <= start[0] && start[0] <= '9') {
2786 // this is a variant, so fall through
2787 } else {
2788 config->localeScript[0] = toupper(start[0]);
2789 for (size_t i = 1; i < 4; ++i) {
2790 config->localeScript[i] = tolower(start[i]);
2791 }
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002792 break;
Narayan Kamath788fa412014-01-21 15:32:36 +00002793 }
Narayan Kamath788fa412014-01-21 15:32:36 +00002794 case 5:
2795 case 6:
2796 case 7:
2797 case 8:
2798 for (size_t i = 0; i < size; ++i) {
2799 config->localeVariant[i] = tolower(start[i]);
2800 }
2801 break;
2802 default:
2803 return false;
2804 }
2805
2806 return true;
2807}
2808
2809void ResTable_config::setBcp47Locale(const char* in) {
2810 locale = 0;
2811 memset(localeScript, 0, sizeof(localeScript));
2812 memset(localeVariant, 0, sizeof(localeVariant));
2813
2814 const char* separator = in;
2815 const char* start = in;
2816 while ((separator = strchr(start, '-')) != NULL) {
2817 const size_t size = separator - start;
2818 if (!assignLocaleComponent(this, start, size)) {
2819 fprintf(stderr, "Invalid BCP-47 locale string: %s", in);
2820 }
2821
2822 start = (separator + 1);
2823 }
2824
2825 const size_t size = in + strlen(in) - start;
2826 assignLocaleComponent(this, start, size);
Roozbeh Pournader79608982016-03-03 15:06:46 -08002827 localeScriptWasComputed = (localeScript[0] == '\0');
2828 if (localeScriptWasComputed) {
Roozbeh Pournaderb927c552016-01-15 11:23:42 -08002829 computeScript();
Roozbeh Pournader79608982016-03-03 15:06:46 -08002830 }
Narayan Kamath788fa412014-01-21 15:32:36 +00002831}
2832
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002833String8 ResTable_config::toString() const {
2834 String8 res;
2835
2836 if (mcc != 0) {
2837 if (res.size() > 0) res.append("-");
Adam Lesinskifab50872014-04-16 14:40:42 -07002838 res.appendFormat("mcc%d", dtohs(mcc));
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002839 }
2840 if (mnc != 0) {
2841 if (res.size() > 0) res.append("-");
Adam Lesinskifab50872014-04-16 14:40:42 -07002842 res.appendFormat("mnc%d", dtohs(mnc));
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002843 }
Adam Lesinskifab50872014-04-16 14:40:42 -07002844
Adam Lesinski8a9355a2015-03-10 16:55:43 -07002845 appendDirLocale(res);
Narayan Kamath48620f12014-01-20 13:57:11 +00002846
Fabrice Di Meglio5f797992012-06-15 20:16:41 -07002847 if ((screenLayout&MASK_LAYOUTDIR) != 0) {
2848 if (res.size() > 0) res.append("-");
2849 switch (screenLayout&ResTable_config::MASK_LAYOUTDIR) {
2850 case ResTable_config::LAYOUTDIR_LTR:
Fabrice Di Meglio8a802db2012-09-05 13:12:02 -07002851 res.append("ldltr");
Fabrice Di Meglio5f797992012-06-15 20:16:41 -07002852 break;
2853 case ResTable_config::LAYOUTDIR_RTL:
Fabrice Di Meglio8a802db2012-09-05 13:12:02 -07002854 res.append("ldrtl");
Fabrice Di Meglio5f797992012-06-15 20:16:41 -07002855 break;
2856 default:
2857 res.appendFormat("layoutDir=%d",
2858 dtohs(screenLayout&ResTable_config::MASK_LAYOUTDIR));
2859 break;
2860 }
2861 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002862 if (smallestScreenWidthDp != 0) {
2863 if (res.size() > 0) res.append("-");
2864 res.appendFormat("sw%ddp", dtohs(smallestScreenWidthDp));
2865 }
2866 if (screenWidthDp != 0) {
2867 if (res.size() > 0) res.append("-");
2868 res.appendFormat("w%ddp", dtohs(screenWidthDp));
2869 }
2870 if (screenHeightDp != 0) {
2871 if (res.size() > 0) res.append("-");
2872 res.appendFormat("h%ddp", dtohs(screenHeightDp));
2873 }
2874 if ((screenLayout&MASK_SCREENSIZE) != SCREENSIZE_ANY) {
2875 if (res.size() > 0) res.append("-");
2876 switch (screenLayout&ResTable_config::MASK_SCREENSIZE) {
2877 case ResTable_config::SCREENSIZE_SMALL:
2878 res.append("small");
2879 break;
2880 case ResTable_config::SCREENSIZE_NORMAL:
2881 res.append("normal");
2882 break;
2883 case ResTable_config::SCREENSIZE_LARGE:
2884 res.append("large");
2885 break;
2886 case ResTable_config::SCREENSIZE_XLARGE:
2887 res.append("xlarge");
2888 break;
2889 default:
2890 res.appendFormat("screenLayoutSize=%d",
2891 dtohs(screenLayout&ResTable_config::MASK_SCREENSIZE));
2892 break;
2893 }
2894 }
2895 if ((screenLayout&MASK_SCREENLONG) != 0) {
2896 if (res.size() > 0) res.append("-");
2897 switch (screenLayout&ResTable_config::MASK_SCREENLONG) {
2898 case ResTable_config::SCREENLONG_NO:
2899 res.append("notlong");
2900 break;
2901 case ResTable_config::SCREENLONG_YES:
2902 res.append("long");
2903 break;
2904 default:
2905 res.appendFormat("screenLayoutLong=%d",
2906 dtohs(screenLayout&ResTable_config::MASK_SCREENLONG));
2907 break;
2908 }
2909 }
Adam Lesinski2738c962015-05-14 14:25:36 -07002910 if ((screenLayout2&MASK_SCREENROUND) != 0) {
2911 if (res.size() > 0) res.append("-");
2912 switch (screenLayout2&MASK_SCREENROUND) {
2913 case SCREENROUND_NO:
2914 res.append("notround");
2915 break;
2916 case SCREENROUND_YES:
2917 res.append("round");
2918 break;
2919 default:
2920 res.appendFormat("screenRound=%d", dtohs(screenLayout2&MASK_SCREENROUND));
2921 break;
2922 }
2923 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002924 if (orientation != ORIENTATION_ANY) {
2925 if (res.size() > 0) res.append("-");
2926 switch (orientation) {
2927 case ResTable_config::ORIENTATION_PORT:
2928 res.append("port");
2929 break;
2930 case ResTable_config::ORIENTATION_LAND:
2931 res.append("land");
2932 break;
2933 case ResTable_config::ORIENTATION_SQUARE:
2934 res.append("square");
2935 break;
2936 default:
2937 res.appendFormat("orientation=%d", dtohs(orientation));
2938 break;
2939 }
2940 }
2941 if ((uiMode&MASK_UI_MODE_TYPE) != UI_MODE_TYPE_ANY) {
2942 if (res.size() > 0) res.append("-");
2943 switch (uiMode&ResTable_config::MASK_UI_MODE_TYPE) {
2944 case ResTable_config::UI_MODE_TYPE_DESK:
2945 res.append("desk");
2946 break;
2947 case ResTable_config::UI_MODE_TYPE_CAR:
2948 res.append("car");
2949 break;
2950 case ResTable_config::UI_MODE_TYPE_TELEVISION:
2951 res.append("television");
2952 break;
2953 case ResTable_config::UI_MODE_TYPE_APPLIANCE:
2954 res.append("appliance");
2955 break;
John Spurlock6c191292014-04-03 16:37:27 -04002956 case ResTable_config::UI_MODE_TYPE_WATCH:
2957 res.append("watch");
2958 break;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08002959 default:
2960 res.appendFormat("uiModeType=%d",
2961 dtohs(screenLayout&ResTable_config::MASK_UI_MODE_TYPE));
2962 break;
2963 }
2964 }
2965 if ((uiMode&MASK_UI_MODE_NIGHT) != 0) {
2966 if (res.size() > 0) res.append("-");
2967 switch (uiMode&ResTable_config::MASK_UI_MODE_NIGHT) {
2968 case ResTable_config::UI_MODE_NIGHT_NO:
2969 res.append("notnight");
2970 break;
2971 case ResTable_config::UI_MODE_NIGHT_YES:
2972 res.append("night");
2973 break;
2974 default:
2975 res.appendFormat("uiModeNight=%d",
2976 dtohs(uiMode&MASK_UI_MODE_NIGHT));
2977 break;
2978 }
2979 }
2980 if (density != DENSITY_DEFAULT) {
2981 if (res.size() > 0) res.append("-");
2982 switch (density) {
2983 case ResTable_config::DENSITY_LOW:
2984 res.append("ldpi");
2985 break;
2986 case ResTable_config::DENSITY_MEDIUM:
2987 res.append("mdpi");
2988 break;
2989 case ResTable_config::DENSITY_TV:
2990 res.append("tvdpi");
2991 break;
2992 case ResTable_config::DENSITY_HIGH:
2993 res.append("hdpi");
2994 break;
2995 case ResTable_config::DENSITY_XHIGH:
2996 res.append("xhdpi");
2997 break;
2998 case ResTable_config::DENSITY_XXHIGH:
2999 res.append("xxhdpi");
3000 break;
Adam Lesinski8d5667d2014-08-13 21:02:57 -07003001 case ResTable_config::DENSITY_XXXHIGH:
3002 res.append("xxxhdpi");
3003 break;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003004 case ResTable_config::DENSITY_NONE:
3005 res.append("nodpi");
3006 break;
Adam Lesinski31245b42014-08-22 19:10:56 -07003007 case ResTable_config::DENSITY_ANY:
3008 res.append("anydpi");
3009 break;
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003010 default:
Dianne Hackborn5c6dfeb2012-03-09 13:17:17 -08003011 res.appendFormat("%ddpi", dtohs(density));
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003012 break;
3013 }
3014 }
3015 if (touchscreen != TOUCHSCREEN_ANY) {
3016 if (res.size() > 0) res.append("-");
3017 switch (touchscreen) {
3018 case ResTable_config::TOUCHSCREEN_NOTOUCH:
3019 res.append("notouch");
3020 break;
3021 case ResTable_config::TOUCHSCREEN_FINGER:
3022 res.append("finger");
3023 break;
3024 case ResTable_config::TOUCHSCREEN_STYLUS:
3025 res.append("stylus");
3026 break;
3027 default:
3028 res.appendFormat("touchscreen=%d", dtohs(touchscreen));
3029 break;
3030 }
3031 }
Adam Lesinskifab50872014-04-16 14:40:42 -07003032 if ((inputFlags&MASK_KEYSHIDDEN) != 0) {
3033 if (res.size() > 0) res.append("-");
3034 switch (inputFlags&MASK_KEYSHIDDEN) {
3035 case ResTable_config::KEYSHIDDEN_NO:
3036 res.append("keysexposed");
3037 break;
3038 case ResTable_config::KEYSHIDDEN_YES:
3039 res.append("keyshidden");
3040 break;
3041 case ResTable_config::KEYSHIDDEN_SOFT:
3042 res.append("keyssoft");
3043 break;
3044 }
3045 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003046 if (keyboard != KEYBOARD_ANY) {
3047 if (res.size() > 0) res.append("-");
3048 switch (keyboard) {
3049 case ResTable_config::KEYBOARD_NOKEYS:
3050 res.append("nokeys");
3051 break;
3052 case ResTable_config::KEYBOARD_QWERTY:
3053 res.append("qwerty");
3054 break;
3055 case ResTable_config::KEYBOARD_12KEY:
3056 res.append("12key");
3057 break;
3058 default:
3059 res.appendFormat("keyboard=%d", dtohs(keyboard));
3060 break;
3061 }
3062 }
Adam Lesinskifab50872014-04-16 14:40:42 -07003063 if ((inputFlags&MASK_NAVHIDDEN) != 0) {
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003064 if (res.size() > 0) res.append("-");
Adam Lesinskifab50872014-04-16 14:40:42 -07003065 switch (inputFlags&MASK_NAVHIDDEN) {
3066 case ResTable_config::NAVHIDDEN_NO:
3067 res.append("navexposed");
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003068 break;
Adam Lesinskifab50872014-04-16 14:40:42 -07003069 case ResTable_config::NAVHIDDEN_YES:
3070 res.append("navhidden");
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003071 break;
Adam Lesinskifab50872014-04-16 14:40:42 -07003072 default:
3073 res.appendFormat("inputFlagsNavHidden=%d",
3074 dtohs(inputFlags&MASK_NAVHIDDEN));
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003075 break;
3076 }
3077 }
3078 if (navigation != NAVIGATION_ANY) {
3079 if (res.size() > 0) res.append("-");
3080 switch (navigation) {
3081 case ResTable_config::NAVIGATION_NONAV:
3082 res.append("nonav");
3083 break;
3084 case ResTable_config::NAVIGATION_DPAD:
3085 res.append("dpad");
3086 break;
3087 case ResTable_config::NAVIGATION_TRACKBALL:
3088 res.append("trackball");
3089 break;
3090 case ResTable_config::NAVIGATION_WHEEL:
3091 res.append("wheel");
3092 break;
3093 default:
3094 res.appendFormat("navigation=%d", dtohs(navigation));
3095 break;
3096 }
3097 }
Dianne Hackborn6c997a92012-01-31 11:27:43 -08003098 if (screenSize != 0) {
3099 if (res.size() > 0) res.append("-");
3100 res.appendFormat("%dx%d", dtohs(screenWidth), dtohs(screenHeight));
3101 }
3102 if (version != 0) {
3103 if (res.size() > 0) res.append("-");
3104 res.appendFormat("v%d", dtohs(sdkVersion));
3105 if (minorVersion != 0) {
3106 res.appendFormat(".%d", dtohs(minorVersion));
3107 }
3108 }
3109
3110 return res;
3111}
3112
3113// --------------------------------------------------------------------
3114// --------------------------------------------------------------------
3115// --------------------------------------------------------------------
3116
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003117struct ResTable::Header
3118{
Chih-Hung Hsiehc6baf562016-04-27 11:29:23 -07003119 explicit Header(ResTable* _owner) : owner(_owner), ownedData(NULL), header(NULL),
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01003120 resourceIDMap(NULL), resourceIDMapSize(0) { }
3121
3122 ~Header()
3123 {
3124 free(resourceIDMap);
3125 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003126
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003127 const ResTable* const owner;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003128 void* ownedData;
3129 const ResTable_header* header;
3130 size_t size;
3131 const uint8_t* dataEnd;
3132 size_t index;
Narayan Kamath7c4887f2014-01-27 17:32:37 +00003133 int32_t cookie;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003134
3135 ResStringPool values;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01003136 uint32_t* resourceIDMap;
3137 size_t resourceIDMapSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003138};
3139
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003140struct ResTable::Entry {
3141 ResTable_config config;
3142 const ResTable_entry* entry;
3143 const ResTable_type* type;
3144 uint32_t specFlags;
3145 const Package* package;
3146
3147 StringPoolRef typeStr;
3148 StringPoolRef keyStr;
3149};
3150
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003151struct ResTable::Type
3152{
3153 Type(const Header* _header, const Package* _package, size_t count)
3154 : header(_header), package(_package), entryCount(count),
3155 typeSpec(NULL), typeSpecFlags(NULL) { }
3156 const Header* const header;
3157 const Package* const package;
3158 const size_t entryCount;
3159 const ResTable_typeSpec* typeSpec;
3160 const uint32_t* typeSpecFlags;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003161 IdmapEntries idmapEntries;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003162 Vector<const ResTable_type*> configs;
3163};
3164
3165struct ResTable::Package
3166{
Dianne Hackborn78c40512009-07-06 11:07:40 -07003167 Package(ResTable* _owner, const Header* _header, const ResTable_package* _package)
Adam Lesinski18560882014-08-15 17:18:21 +00003168 : owner(_owner), header(_header), package(_package), typeIdOffset(0) {
Wan He3ff42262016-11-17 17:49:37 +08003169 if (dtohs(package->header.headerSize) == sizeof(*package)) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003170 // The package structure is the same size as the definition.
3171 // This means it contains the typeIdOffset field.
Adam Lesinski18560882014-08-15 17:18:21 +00003172 typeIdOffset = package->typeIdOffset;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003173 }
3174 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003175
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003176 const ResTable* const owner;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003177 const Header* const header;
Adam Lesinski18560882014-08-15 17:18:21 +00003178 const ResTable_package* const package;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003179
Dianne Hackborn78c40512009-07-06 11:07:40 -07003180 ResStringPool typeStrings;
3181 ResStringPool keyStrings;
Mark Salyzyn00adb862014-03-19 11:00:06 -07003182
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003183 size_t typeIdOffset;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003184};
3185
3186// A group of objects describing a particular resource package.
3187// The first in 'package' is always the root object (from the resource
3188// table that defined the package); the ones after are skins on top of it.
3189struct ResTable::PackageGroup
3190{
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003191 PackageGroup(
3192 ResTable* _owner, const String16& _name, uint32_t _id,
3193 bool appAsLib, bool _isSystemAsset)
Adam Lesinskide898ff2014-01-29 18:20:45 -08003194 : owner(_owner)
3195 , name(_name)
3196 , id(_id)
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003197 , largestTypeId(0)
Tao Baia6d7e3f2015-09-01 18:49:54 -07003198 , dynamicRefTable(static_cast<uint8_t>(_id), appAsLib)
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003199 , isSystemAsset(_isSystemAsset)
Adam Lesinskide898ff2014-01-29 18:20:45 -08003200 { }
3201
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003202 ~PackageGroup() {
3203 clearBagCache();
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003204 const size_t numTypes = types.size();
3205 for (size_t i = 0; i < numTypes; i++) {
3206 const TypeList& typeList = types[i];
3207 const size_t numInnerTypes = typeList.size();
3208 for (size_t j = 0; j < numInnerTypes; j++) {
3209 if (typeList[j]->package->owner == owner) {
3210 delete typeList[j];
3211 }
3212 }
3213 }
3214
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003215 const size_t N = packages.size();
3216 for (size_t i=0; i<N; i++) {
Dianne Hackborn78c40512009-07-06 11:07:40 -07003217 Package* pkg = packages[i];
3218 if (pkg->owner == owner) {
3219 delete pkg;
3220 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003221 }
3222 }
3223
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003224 /**
3225 * Clear all cache related data that depends on parameters/configuration.
3226 * This includes the bag caches and filtered types.
3227 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003228 void clearBagCache() {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003229 for (size_t i = 0; i < typeCacheEntries.size(); i++) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003230 if (kDebugTableNoisy) {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003231 printf("type=%zu\n", i);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003232 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003233 const TypeList& typeList = types[i];
3234 if (!typeList.isEmpty()) {
3235 TypeCacheEntry& cacheEntry = typeCacheEntries.editItemAt(i);
3236
3237 // Reset the filtered configurations.
3238 cacheEntry.filteredConfigs.clear();
3239
3240 bag_set** typeBags = cacheEntry.cachedBags;
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003241 if (kDebugTableNoisy) {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003242 printf("typeBags=%p\n", typeBags);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003243 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003244
3245 if (typeBags) {
3246 const size_t N = typeList[0]->entryCount;
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003247 if (kDebugTableNoisy) {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003248 printf("type->entryCount=%zu\n", N);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003249 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003250 for (size_t j = 0; j < N; j++) {
3251 if (typeBags[j] && typeBags[j] != (bag_set*)0xFFFFFFFF) {
3252 free(typeBags[j]);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003253 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003254 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003255 free(typeBags);
3256 cacheEntry.cachedBags = NULL;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003257 }
3258 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003259 }
3260 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003261
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003262 ssize_t findType16(const char16_t* type, size_t len) const {
3263 const size_t N = packages.size();
3264 for (size_t i = 0; i < N; i++) {
3265 ssize_t index = packages[i]->typeStrings.indexOfString(type, len);
3266 if (index >= 0) {
3267 return index + packages[i]->typeIdOffset;
3268 }
3269 }
3270 return -1;
3271 }
3272
3273 const ResTable* const owner;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003274 String16 const name;
3275 uint32_t const id;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003276
3277 // This is mainly used to keep track of the loaded packages
3278 // and to clean them up properly. Accessing resources happens from
3279 // the 'types' array.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003280 Vector<Package*> packages;
Mark Salyzyn00adb862014-03-19 11:00:06 -07003281
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003282 ByteBucketArray<TypeList> types;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003283
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003284 uint8_t largestTypeId;
Mark Salyzyn00adb862014-03-19 11:00:06 -07003285
Adam Lesinskiff5808d2016-02-23 17:49:53 -08003286 // Cached objects dependent on the parameters/configuration of this ResTable.
3287 // Gets cleared whenever the parameters/configuration changes.
3288 // These are stored here in a parallel structure because the data in `types` may
3289 // be shared by other ResTable's (framework resources are shared this way).
3290 ByteBucketArray<TypeCacheEntry> typeCacheEntries;
Adam Lesinskide898ff2014-01-29 18:20:45 -08003291
3292 // The table mapping dynamic references to resolved references for
3293 // this package group.
3294 // TODO: We may be able to support dynamic references in overlays
3295 // by having these tables in a per-package scope rather than
3296 // per-package-group.
3297 DynamicRefTable dynamicRefTable;
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003298
3299 // If the package group comes from a system asset. Used in
3300 // determining non-system locales.
3301 const bool isSystemAsset;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003302};
3303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003304ResTable::Theme::Theme(const ResTable& table)
3305 : mTable(table)
Alan Viverettec1d52792015-05-05 09:49:03 -07003306 , mTypeSpecFlags(0)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003307{
3308 memset(mPackages, 0, sizeof(mPackages));
3309}
3310
3311ResTable::Theme::~Theme()
3312{
3313 for (size_t i=0; i<Res_MAXPACKAGE; i++) {
3314 package_info* pi = mPackages[i];
3315 if (pi != NULL) {
3316 free_package(pi);
3317 }
3318 }
3319}
3320
3321void ResTable::Theme::free_package(package_info* pi)
3322{
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003323 for (size_t j = 0; j <= Res_MAXTYPE; j++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003324 theme_entry* te = pi->types[j].entries;
3325 if (te != NULL) {
3326 free(te);
3327 }
3328 }
3329 free(pi);
3330}
3331
3332ResTable::Theme::package_info* ResTable::Theme::copy_package(package_info* pi)
3333{
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003334 package_info* newpi = (package_info*)malloc(sizeof(package_info));
3335 for (size_t j = 0; j <= Res_MAXTYPE; j++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003336 size_t cnt = pi->types[j].numEntries;
3337 newpi->types[j].numEntries = cnt;
3338 theme_entry* te = pi->types[j].entries;
Vishwath Mohan6a2c23d2015-03-09 18:55:11 -07003339 size_t cnt_max = SIZE_MAX / sizeof(theme_entry);
3340 if (te != NULL && (cnt < 0xFFFFFFFF-1) && (cnt < cnt_max)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003341 theme_entry* newte = (theme_entry*)malloc(cnt*sizeof(theme_entry));
3342 newpi->types[j].entries = newte;
3343 memcpy(newte, te, cnt*sizeof(theme_entry));
3344 } else {
3345 newpi->types[j].entries = NULL;
3346 }
3347 }
3348 return newpi;
3349}
3350
3351status_t ResTable::Theme::applyStyle(uint32_t resID, bool force)
3352{
3353 const bag_entry* bag;
3354 uint32_t bagTypeSpecFlags = 0;
3355 mTable.lock();
3356 const ssize_t N = mTable.getBagLocked(resID, &bag, &bagTypeSpecFlags);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003357 if (kDebugTableNoisy) {
3358 ALOGV("Applying style 0x%08x to theme %p, count=%zu", resID, this, N);
3359 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003360 if (N < 0) {
3361 mTable.unlock();
3362 return N;
3363 }
3364
Alan Viverettec1d52792015-05-05 09:49:03 -07003365 mTypeSpecFlags |= bagTypeSpecFlags;
3366
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003367 uint32_t curPackage = 0xffffffff;
3368 ssize_t curPackageIndex = 0;
3369 package_info* curPI = NULL;
3370 uint32_t curType = 0xffffffff;
3371 size_t numEntries = 0;
3372 theme_entry* curEntries = NULL;
3373
3374 const bag_entry* end = bag + N;
3375 while (bag < end) {
3376 const uint32_t attrRes = bag->map.name.ident;
3377 const uint32_t p = Res_GETPACKAGE(attrRes);
3378 const uint32_t t = Res_GETTYPE(attrRes);
3379 const uint32_t e = Res_GETENTRY(attrRes);
3380
3381 if (curPackage != p) {
3382 const ssize_t pidx = mTable.getResourcePackageIndex(attrRes);
3383 if (pidx < 0) {
Steve Block3762c312012-01-06 19:20:56 +00003384 ALOGE("Style contains key with bad package: 0x%08x\n", attrRes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003385 bag++;
3386 continue;
3387 }
3388 curPackage = p;
3389 curPackageIndex = pidx;
3390 curPI = mPackages[pidx];
3391 if (curPI == NULL) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003392 curPI = (package_info*)malloc(sizeof(package_info));
3393 memset(curPI, 0, sizeof(*curPI));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003394 mPackages[pidx] = curPI;
3395 }
3396 curType = 0xffffffff;
3397 }
3398 if (curType != t) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003399 if (t > Res_MAXTYPE) {
Steve Block3762c312012-01-06 19:20:56 +00003400 ALOGE("Style contains key with bad type: 0x%08x\n", attrRes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003401 bag++;
3402 continue;
3403 }
3404 curType = t;
3405 curEntries = curPI->types[t].entries;
3406 if (curEntries == NULL) {
3407 PackageGroup* const grp = mTable.mPackageGroups[curPackageIndex];
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003408 const TypeList& typeList = grp->types[t];
Vishwath Mohan6a2c23d2015-03-09 18:55:11 -07003409 size_t cnt = typeList.isEmpty() ? 0 : typeList[0]->entryCount;
3410 size_t cnt_max = SIZE_MAX / sizeof(theme_entry);
3411 size_t buff_size = (cnt < cnt_max && cnt < 0xFFFFFFFF-1) ?
3412 cnt*sizeof(theme_entry) : 0;
3413 curEntries = (theme_entry*)malloc(buff_size);
3414 memset(curEntries, Res_value::TYPE_NULL, buff_size);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003415 curPI->types[t].numEntries = cnt;
3416 curPI->types[t].entries = curEntries;
3417 }
3418 numEntries = curPI->types[t].numEntries;
3419 }
3420 if (e >= numEntries) {
Steve Block3762c312012-01-06 19:20:56 +00003421 ALOGE("Style contains key with bad entry: 0x%08x\n", attrRes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003422 bag++;
3423 continue;
3424 }
3425 theme_entry* curEntry = curEntries + e;
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003426 if (kDebugTableNoisy) {
3427 ALOGV("Attr 0x%08x: type=0x%x, data=0x%08x; curType=0x%x",
3428 attrRes, bag->map.value.dataType, bag->map.value.data,
3429 curEntry->value.dataType);
3430 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003431 if (force || curEntry->value.dataType == Res_value::TYPE_NULL) {
3432 curEntry->stringBlock = bag->stringBlock;
3433 curEntry->typeSpecFlags |= bagTypeSpecFlags;
3434 curEntry->value = bag->map.value;
3435 }
3436
3437 bag++;
3438 }
3439
3440 mTable.unlock();
3441
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003442 if (kDebugTableTheme) {
3443 ALOGI("Applying style 0x%08x (force=%d) theme %p...\n", resID, force, this);
3444 dumpToLog();
3445 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003446
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003447 return NO_ERROR;
3448}
3449
3450status_t ResTable::Theme::setTo(const Theme& other)
3451{
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003452 if (kDebugTableTheme) {
3453 ALOGI("Setting theme %p from theme %p...\n", this, &other);
3454 dumpToLog();
3455 other.dumpToLog();
3456 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003458 if (&mTable == &other.mTable) {
3459 for (size_t i=0; i<Res_MAXPACKAGE; i++) {
3460 if (mPackages[i] != NULL) {
3461 free_package(mPackages[i]);
3462 }
3463 if (other.mPackages[i] != NULL) {
3464 mPackages[i] = copy_package(other.mPackages[i]);
3465 } else {
3466 mPackages[i] = NULL;
3467 }
3468 }
3469 } else {
3470 // @todo: need to really implement this, not just copy
3471 // the system package (which is still wrong because it isn't
3472 // fixing up resource references).
3473 for (size_t i=0; i<Res_MAXPACKAGE; i++) {
3474 if (mPackages[i] != NULL) {
3475 free_package(mPackages[i]);
3476 }
3477 if (i == 0 && other.mPackages[i] != NULL) {
3478 mPackages[i] = copy_package(other.mPackages[i]);
3479 } else {
3480 mPackages[i] = NULL;
3481 }
3482 }
3483 }
3484
Alan Viverettec1d52792015-05-05 09:49:03 -07003485 mTypeSpecFlags = other.mTypeSpecFlags;
3486
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003487 if (kDebugTableTheme) {
3488 ALOGI("Final theme:");
3489 dumpToLog();
3490 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003491
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003492 return NO_ERROR;
3493}
3494
Alan Viverettee54d2452015-05-06 10:41:43 -07003495status_t ResTable::Theme::clear()
3496{
3497 if (kDebugTableTheme) {
3498 ALOGI("Clearing theme %p...\n", this);
3499 dumpToLog();
3500 }
3501
3502 for (size_t i = 0; i < Res_MAXPACKAGE; i++) {
3503 if (mPackages[i] != NULL) {
3504 free_package(mPackages[i]);
3505 mPackages[i] = NULL;
3506 }
3507 }
3508
3509 mTypeSpecFlags = 0;
3510
3511 if (kDebugTableTheme) {
3512 ALOGI("Final theme:");
3513 dumpToLog();
3514 }
3515
3516 return NO_ERROR;
3517}
3518
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003519ssize_t ResTable::Theme::getAttribute(uint32_t resID, Res_value* outValue,
3520 uint32_t* outTypeSpecFlags) const
3521{
3522 int cnt = 20;
3523
3524 if (outTypeSpecFlags != NULL) *outTypeSpecFlags = 0;
Mark Salyzyn00adb862014-03-19 11:00:06 -07003525
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003526 do {
3527 const ssize_t p = mTable.getResourcePackageIndex(resID);
3528 const uint32_t t = Res_GETTYPE(resID);
3529 const uint32_t e = Res_GETENTRY(resID);
3530
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003531 if (kDebugTableTheme) {
3532 ALOGI("Looking up attr 0x%08x in theme %p", resID, this);
3533 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003534
3535 if (p >= 0) {
3536 const package_info* const pi = mPackages[p];
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003537 if (kDebugTableTheme) {
3538 ALOGI("Found package: %p", pi);
3539 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003540 if (pi != NULL) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003541 if (kDebugTableTheme) {
John Reck03b5d502016-11-03 16:16:47 -07003542 ALOGI("Desired type index is %u in avail %zu", t, Res_MAXTYPE + 1);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003543 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003544 if (t <= Res_MAXTYPE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003545 const type_info& ti = pi->types[t];
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003546 if (kDebugTableTheme) {
3547 ALOGI("Desired entry index is %u in avail %zu", e, ti.numEntries);
3548 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003549 if (e < ti.numEntries) {
3550 const theme_entry& te = ti.entries[e];
Dianne Hackbornb8d81672009-11-20 14:26:42 -08003551 if (outTypeSpecFlags != NULL) {
3552 *outTypeSpecFlags |= te.typeSpecFlags;
3553 }
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003554 if (kDebugTableTheme) {
3555 ALOGI("Theme value: type=0x%x, data=0x%08x",
3556 te.value.dataType, te.value.data);
3557 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003558 const uint8_t type = te.value.dataType;
3559 if (type == Res_value::TYPE_ATTRIBUTE) {
3560 if (cnt > 0) {
3561 cnt--;
3562 resID = te.value.data;
3563 continue;
3564 }
Steve Block8564c8d2012-01-05 23:22:43 +00003565 ALOGW("Too many attribute references, stopped at: 0x%08x\n", resID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003566 return BAD_INDEX;
3567 } else if (type != Res_value::TYPE_NULL) {
3568 *outValue = te.value;
3569 return te.stringBlock;
3570 }
3571 return BAD_INDEX;
3572 }
3573 }
3574 }
3575 }
3576 break;
3577
3578 } while (true);
3579
3580 return BAD_INDEX;
3581}
3582
3583ssize_t ResTable::Theme::resolveAttributeReference(Res_value* inOutValue,
3584 ssize_t blockIndex, uint32_t* outLastRef,
Dianne Hackborn0d221012009-07-29 15:41:19 -07003585 uint32_t* inoutTypeSpecFlags, ResTable_config* inoutConfig) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003586{
3587 //printf("Resolving type=0x%x\n", inOutValue->dataType);
3588 if (inOutValue->dataType == Res_value::TYPE_ATTRIBUTE) {
3589 uint32_t newTypeSpecFlags;
3590 blockIndex = getAttribute(inOutValue->data, inOutValue, &newTypeSpecFlags);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003591 if (kDebugTableTheme) {
3592 ALOGI("Resolving attr reference: blockIndex=%d, type=0x%x, data=0x%x\n",
3593 (int)blockIndex, (int)inOutValue->dataType, inOutValue->data);
3594 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003595 if (inoutTypeSpecFlags != NULL) *inoutTypeSpecFlags |= newTypeSpecFlags;
3596 //printf("Retrieved attribute new type=0x%x\n", inOutValue->dataType);
3597 if (blockIndex < 0) {
3598 return blockIndex;
3599 }
3600 }
Dianne Hackborn0d221012009-07-29 15:41:19 -07003601 return mTable.resolveReference(inOutValue, blockIndex, outLastRef,
3602 inoutTypeSpecFlags, inoutConfig);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003603}
3604
Alan Viverettec1d52792015-05-05 09:49:03 -07003605uint32_t ResTable::Theme::getChangingConfigurations() const
3606{
3607 return mTypeSpecFlags;
3608}
3609
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003610void ResTable::Theme::dumpToLog() const
3611{
Steve Block6215d3f2012-01-04 20:05:49 +00003612 ALOGI("Theme %p:\n", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003613 for (size_t i=0; i<Res_MAXPACKAGE; i++) {
3614 package_info* pi = mPackages[i];
3615 if (pi == NULL) continue;
Mark Salyzyn00adb862014-03-19 11:00:06 -07003616
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003617 ALOGI(" Package #0x%02x:\n", (int)(i + 1));
3618 for (size_t j = 0; j <= Res_MAXTYPE; j++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003619 type_info& ti = pi->types[j];
3620 if (ti.numEntries == 0) continue;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003621 ALOGI(" Type #0x%02x:\n", (int)(j + 1));
3622 for (size_t k = 0; k < ti.numEntries; k++) {
3623 const theme_entry& te = ti.entries[k];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003624 if (te.value.dataType == Res_value::TYPE_NULL) continue;
Steve Block6215d3f2012-01-04 20:05:49 +00003625 ALOGI(" 0x%08x: t=0x%x, d=0x%08x (block=%d)\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003626 (int)Res_MAKEID(i, j, k),
3627 te.value.dataType, (int)te.value.data, (int)te.stringBlock);
3628 }
3629 }
3630 }
3631}
3632
3633ResTable::ResTable()
Adam Lesinskide898ff2014-01-29 18:20:45 -08003634 : mError(NO_INIT), mNextPackageId(2)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003635{
3636 memset(&mParams, 0, sizeof(mParams));
3637 memset(mPackageMap, 0, sizeof(mPackageMap));
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003638 if (kDebugTableSuperNoisy) {
3639 ALOGI("Creating ResTable %p\n", this);
3640 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003641}
3642
Narayan Kamath7c4887f2014-01-27 17:32:37 +00003643ResTable::ResTable(const void* data, size_t size, const int32_t cookie, bool copyData)
Adam Lesinskide898ff2014-01-29 18:20:45 -08003644 : mError(NO_INIT), mNextPackageId(2)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003645{
3646 memset(&mParams, 0, sizeof(mParams));
3647 memset(mPackageMap, 0, sizeof(mPackageMap));
Tao Baia6d7e3f2015-09-01 18:49:54 -07003648 addInternal(data, size, NULL, 0, false, cookie, copyData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003649 LOG_FATAL_IF(mError != NO_ERROR, "Error parsing resource table");
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003650 if (kDebugTableSuperNoisy) {
3651 ALOGI("Creating ResTable %p\n", this);
3652 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003653}
3654
3655ResTable::~ResTable()
3656{
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003657 if (kDebugTableSuperNoisy) {
3658 ALOGI("Destroying ResTable in %p\n", this);
3659 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003660 uninit();
3661}
3662
3663inline ssize_t ResTable::getResourcePackageIndex(uint32_t resID) const
3664{
3665 return ((ssize_t)mPackageMap[Res_GETPACKAGE(resID)+1])-1;
3666}
3667
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003668status_t ResTable::add(const void* data, size_t size, const int32_t cookie, bool copyData) {
Tao Baia6d7e3f2015-09-01 18:49:54 -07003669 return addInternal(data, size, NULL, 0, false, cookie, copyData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003670}
3671
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003672status_t ResTable::add(const void* data, size_t size, const void* idmapData, size_t idmapDataSize,
Tao Baia6d7e3f2015-09-01 18:49:54 -07003673 const int32_t cookie, bool copyData, bool appAsLib) {
3674 return addInternal(data, size, idmapData, idmapDataSize, appAsLib, cookie, copyData);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003675}
3676
3677status_t ResTable::add(Asset* asset, const int32_t cookie, bool copyData) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003678 const void* data = asset->getBuffer(true);
3679 if (data == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00003680 ALOGW("Unable to get buffer of resource asset file");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003681 return UNKNOWN_ERROR;
3682 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003683
Tao Baia6d7e3f2015-09-01 18:49:54 -07003684 return addInternal(data, static_cast<size_t>(asset->getLength()), NULL, false, 0, cookie,
3685 copyData);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003686}
3687
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003688status_t ResTable::add(
3689 Asset* asset, Asset* idmapAsset, const int32_t cookie, bool copyData,
3690 bool appAsLib, bool isSystemAsset) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003691 const void* data = asset->getBuffer(true);
3692 if (data == NULL) {
3693 ALOGW("Unable to get buffer of resource asset file");
3694 return UNKNOWN_ERROR;
3695 }
3696
3697 size_t idmapSize = 0;
3698 const void* idmapData = NULL;
3699 if (idmapAsset != NULL) {
3700 idmapData = idmapAsset->getBuffer(true);
3701 if (idmapData == NULL) {
3702 ALOGW("Unable to get buffer of idmap asset file");
3703 return UNKNOWN_ERROR;
3704 }
3705 idmapSize = static_cast<size_t>(idmapAsset->getLength());
3706 }
3707
3708 return addInternal(data, static_cast<size_t>(asset->getLength()),
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003709 idmapData, idmapSize, appAsLib, cookie, copyData, isSystemAsset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003710}
3711
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003712status_t ResTable::add(ResTable* src, bool isSystemAsset)
Dianne Hackborn78c40512009-07-06 11:07:40 -07003713{
3714 mError = src->mError;
Mark Salyzyn00adb862014-03-19 11:00:06 -07003715
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003716 for (size_t i=0; i < src->mHeaders.size(); i++) {
Dianne Hackborn78c40512009-07-06 11:07:40 -07003717 mHeaders.add(src->mHeaders[i]);
3718 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003719
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003720 for (size_t i=0; i < src->mPackageGroups.size(); i++) {
Dianne Hackborn78c40512009-07-06 11:07:40 -07003721 PackageGroup* srcPg = src->mPackageGroups[i];
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003722 PackageGroup* pg = new PackageGroup(this, srcPg->name, srcPg->id,
3723 false /* appAsLib */, isSystemAsset || srcPg->isSystemAsset);
Dianne Hackborn78c40512009-07-06 11:07:40 -07003724 for (size_t j=0; j<srcPg->packages.size(); j++) {
3725 pg->packages.add(srcPg->packages[j]);
3726 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003727
3728 for (size_t j = 0; j < srcPg->types.size(); j++) {
3729 if (srcPg->types[j].isEmpty()) {
3730 continue;
3731 }
3732
3733 TypeList& typeList = pg->types.editItemAt(j);
3734 typeList.appendVector(srcPg->types[j]);
3735 }
Adam Lesinski6022deb2014-08-20 14:59:19 -07003736 pg->dynamicRefTable.addMappings(srcPg->dynamicRefTable);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003737 pg->largestTypeId = max(pg->largestTypeId, srcPg->largestTypeId);
Dianne Hackborn78c40512009-07-06 11:07:40 -07003738 mPackageGroups.add(pg);
3739 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003740
Dianne Hackborn78c40512009-07-06 11:07:40 -07003741 memcpy(mPackageMap, src->mPackageMap, sizeof(mPackageMap));
Mark Salyzyn00adb862014-03-19 11:00:06 -07003742
Dianne Hackborn78c40512009-07-06 11:07:40 -07003743 return mError;
3744}
3745
Adam Lesinskide898ff2014-01-29 18:20:45 -08003746status_t ResTable::addEmpty(const int32_t cookie) {
3747 Header* header = new Header(this);
3748 header->index = mHeaders.size();
3749 header->cookie = cookie;
3750 header->values.setToEmpty();
3751 header->ownedData = calloc(1, sizeof(ResTable_header));
3752
3753 ResTable_header* resHeader = (ResTable_header*) header->ownedData;
3754 resHeader->header.type = RES_TABLE_TYPE;
3755 resHeader->header.headerSize = sizeof(ResTable_header);
3756 resHeader->header.size = sizeof(ResTable_header);
3757
3758 header->header = (const ResTable_header*) resHeader;
3759 mHeaders.add(header);
Adam Lesinski961dda72014-06-09 17:10:29 -07003760 return (mError=NO_ERROR);
Adam Lesinskide898ff2014-01-29 18:20:45 -08003761}
3762
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003763status_t ResTable::addInternal(const void* data, size_t dataSize, const void* idmapData, size_t idmapDataSize,
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003764 bool appAsLib, const int32_t cookie, bool copyData, bool isSystemAsset)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003765{
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003766 if (!data) {
3767 return NO_ERROR;
3768 }
3769
Adam Lesinskif28d5052014-07-25 15:25:04 -07003770 if (dataSize < sizeof(ResTable_header)) {
3771 ALOGE("Invalid data. Size(%d) is smaller than a ResTable_header(%d).",
3772 (int) dataSize, (int) sizeof(ResTable_header));
3773 return UNKNOWN_ERROR;
3774 }
3775
Dianne Hackborn78c40512009-07-06 11:07:40 -07003776 Header* header = new Header(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003777 header->index = mHeaders.size();
3778 header->cookie = cookie;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003779 if (idmapData != NULL) {
3780 header->resourceIDMap = (uint32_t*) malloc(idmapDataSize);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01003781 if (header->resourceIDMap == NULL) {
3782 delete header;
3783 return (mError = NO_MEMORY);
3784 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003785 memcpy(header->resourceIDMap, idmapData, idmapDataSize);
3786 header->resourceIDMapSize = idmapDataSize;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01003787 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003788 mHeaders.add(header);
3789
3790 const bool notDeviceEndian = htods(0xf0) != 0xf0;
3791
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003792 if (kDebugLoadTableNoisy) {
3793 ALOGV("Adding resources to ResTable: data=%p, size=%zu, cookie=%d, copy=%d "
3794 "idmap=%p\n", data, dataSize, cookie, copyData, idmapData);
3795 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07003796
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003797 if (copyData || notDeviceEndian) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003798 header->ownedData = malloc(dataSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003799 if (header->ownedData == NULL) {
3800 return (mError=NO_MEMORY);
3801 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003802 memcpy(header->ownedData, data, dataSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003803 data = header->ownedData;
3804 }
3805
3806 header->header = (const ResTable_header*)data;
3807 header->size = dtohl(header->header->header.size);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003808 if (kDebugLoadTableSuperNoisy) {
3809 ALOGI("Got size %zu, again size 0x%x, raw size 0x%x\n", header->size,
3810 dtohl(header->header->header.size), header->header->header.size);
3811 }
3812 if (kDebugLoadTableNoisy) {
3813 ALOGV("Loading ResTable @%p:\n", header->header);
3814 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003815 if (dtohs(header->header->header.headerSize) > header->size
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003816 || header->size > dataSize) {
Steve Block8564c8d2012-01-05 23:22:43 +00003817 ALOGW("Bad resource table: header size 0x%x or total size 0x%x is larger than data size 0x%x\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003818 (int)dtohs(header->header->header.headerSize),
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003819 (int)header->size, (int)dataSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003820 return (mError=BAD_TYPE);
3821 }
3822 if (((dtohs(header->header->header.headerSize)|header->size)&0x3) != 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00003823 ALOGW("Bad resource table: header size 0x%x or total size 0x%x is not on an integer boundary\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003824 (int)dtohs(header->header->header.headerSize),
3825 (int)header->size);
3826 return (mError=BAD_TYPE);
3827 }
3828 header->dataEnd = ((const uint8_t*)header->header) + header->size;
3829
3830 // Iterate through all chunks.
3831 size_t curPackage = 0;
3832
3833 const ResChunk_header* chunk =
3834 (const ResChunk_header*)(((const uint8_t*)header->header)
3835 + dtohs(header->header->header.headerSize));
3836 while (((const uint8_t*)chunk) <= (header->dataEnd-sizeof(ResChunk_header)) &&
3837 ((const uint8_t*)chunk) <= (header->dataEnd-dtohl(chunk->size))) {
3838 status_t err = validate_chunk(chunk, sizeof(ResChunk_header), header->dataEnd, "ResTable");
3839 if (err != NO_ERROR) {
3840 return (mError=err);
3841 }
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003842 if (kDebugTableNoisy) {
3843 ALOGV("Chunk: type=0x%x, headerSize=0x%x, size=0x%x, pos=%p\n",
3844 dtohs(chunk->type), dtohs(chunk->headerSize), dtohl(chunk->size),
3845 (void*)(((const uint8_t*)chunk) - ((const uint8_t*)header->header)));
3846 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003847 const size_t csize = dtohl(chunk->size);
3848 const uint16_t ctype = dtohs(chunk->type);
3849 if (ctype == RES_STRING_POOL_TYPE) {
3850 if (header->values.getError() != NO_ERROR) {
3851 // Only use the first string chunk; ignore any others that
3852 // may appear.
3853 status_t err = header->values.setTo(chunk, csize);
3854 if (err != NO_ERROR) {
3855 return (mError=err);
3856 }
3857 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00003858 ALOGW("Multiple string chunks found in resource table.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003859 }
3860 } else if (ctype == RES_TABLE_PACKAGE_TYPE) {
3861 if (curPackage >= dtohl(header->header->packageCount)) {
Steve Block8564c8d2012-01-05 23:22:43 +00003862 ALOGW("More package chunks were found than the %d declared in the header.",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003863 dtohl(header->header->packageCount));
3864 return (mError=BAD_TYPE);
3865 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003866
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08003867 if (parsePackage(
3868 (ResTable_package*)chunk, header, appAsLib, isSystemAsset) != NO_ERROR) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003869 return mError;
3870 }
3871 curPackage++;
3872 } else {
Patrik Bannura443dd932014-02-12 13:38:54 +01003873 ALOGW("Unknown chunk type 0x%x in table at %p.\n",
3874 ctype,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003875 (void*)(((const uint8_t*)chunk) - ((const uint8_t*)header->header)));
3876 }
3877 chunk = (const ResChunk_header*)
3878 (((const uint8_t*)chunk) + csize);
3879 }
3880
3881 if (curPackage < dtohl(header->header->packageCount)) {
Steve Block8564c8d2012-01-05 23:22:43 +00003882 ALOGW("Fewer package chunks (%d) were found than the %d declared in the header.",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003883 (int)curPackage, dtohl(header->header->packageCount));
3884 return (mError=BAD_TYPE);
3885 }
3886 mError = header->values.getError();
3887 if (mError != NO_ERROR) {
Steve Block8564c8d2012-01-05 23:22:43 +00003888 ALOGW("No string values found in resource table!");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003889 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01003890
Andreas Gampe2204f0b2014-10-21 23:04:54 -07003891 if (kDebugTableNoisy) {
3892 ALOGV("Returning from add with mError=%d\n", mError);
3893 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003894 return mError;
3895}
3896
3897status_t ResTable::getError() const
3898{
3899 return mError;
3900}
3901
3902void ResTable::uninit()
3903{
3904 mError = NO_INIT;
3905 size_t N = mPackageGroups.size();
3906 for (size_t i=0; i<N; i++) {
3907 PackageGroup* g = mPackageGroups[i];
3908 delete g;
3909 }
3910 N = mHeaders.size();
3911 for (size_t i=0; i<N; i++) {
3912 Header* header = mHeaders[i];
Dianne Hackborn78c40512009-07-06 11:07:40 -07003913 if (header->owner == this) {
3914 if (header->ownedData) {
3915 free(header->ownedData);
3916 }
3917 delete header;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003918 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003919 }
3920
3921 mPackageGroups.clear();
3922 mHeaders.clear();
3923}
3924
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07003925bool ResTable::getResourceName(uint32_t resID, bool allowUtf8, resource_name* outName) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003926{
3927 if (mError != NO_ERROR) {
3928 return false;
3929 }
3930
3931 const ssize_t p = getResourcePackageIndex(resID);
3932 const int t = Res_GETTYPE(resID);
3933 const int e = Res_GETENTRY(resID);
3934
3935 if (p < 0) {
Dianne Hackborn6cca1592009-09-20 12:40:03 -07003936 if (Res_GETPACKAGE(resID)+1 == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00003937 ALOGW("No package identifier when getting name for resource number 0x%08x", resID);
Dianne Hackborn6cca1592009-09-20 12:40:03 -07003938 } else {
Adam Lesinski1d7172e2016-03-30 16:22:33 -07003939#ifndef STATIC_ANDROIDFW_FOR_TOOLS
Steve Block8564c8d2012-01-05 23:22:43 +00003940 ALOGW("No known package when getting name for resource number 0x%08x", resID);
Adam Lesinski1d7172e2016-03-30 16:22:33 -07003941#endif
Dianne Hackborn6cca1592009-09-20 12:40:03 -07003942 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003943 return false;
3944 }
3945 if (t < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00003946 ALOGW("No type identifier when getting name for resource number 0x%08x", resID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003947 return false;
3948 }
3949
3950 const PackageGroup* const grp = mPackageGroups[p];
3951 if (grp == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00003952 ALOGW("Bad identifier when getting name for resource number 0x%08x", resID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003953 return false;
3954 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003955
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003956 Entry entry;
3957 status_t err = getEntry(grp, t, e, NULL, &entry);
3958 if (err != NO_ERROR) {
3959 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003960 }
3961
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07003962 outName->package = grp->name.string();
3963 outName->packageLen = grp->name.size();
3964 if (allowUtf8) {
3965 outName->type8 = entry.typeStr.string8(&outName->typeLen);
3966 outName->name8 = entry.keyStr.string8(&outName->nameLen);
3967 } else {
3968 outName->type8 = NULL;
3969 outName->name8 = NULL;
3970 }
3971 if (outName->type8 == NULL) {
3972 outName->type = entry.typeStr.string16(&outName->typeLen);
3973 // If we have a bad index for some reason, we should abort.
3974 if (outName->type == NULL) {
3975 return false;
3976 }
3977 }
3978 if (outName->name8 == NULL) {
3979 outName->name = entry.keyStr.string16(&outName->nameLen);
3980 // If we have a bad index for some reason, we should abort.
3981 if (outName->name == NULL) {
3982 return false;
3983 }
3984 }
3985
3986 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003987}
3988
Kenny Root55fc8502010-10-28 14:47:01 -07003989ssize_t ResTable::getResource(uint32_t resID, Res_value* outValue, bool mayBeBag, uint16_t density,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003990 uint32_t* outSpecFlags, ResTable_config* outConfig) const
3991{
3992 if (mError != NO_ERROR) {
3993 return mError;
3994 }
3995
3996 const ssize_t p = getResourcePackageIndex(resID);
3997 const int t = Res_GETTYPE(resID);
3998 const int e = Res_GETENTRY(resID);
3999
4000 if (p < 0) {
Dianne Hackborn6cca1592009-09-20 12:40:03 -07004001 if (Res_GETPACKAGE(resID)+1 == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00004002 ALOGW("No package identifier when getting value for resource number 0x%08x", resID);
Dianne Hackborn6cca1592009-09-20 12:40:03 -07004003 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00004004 ALOGW("No known package when getting value for resource number 0x%08x", resID);
Dianne Hackborn6cca1592009-09-20 12:40:03 -07004005 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004006 return BAD_INDEX;
4007 }
4008 if (t < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00004009 ALOGW("No type identifier when getting value for resource number 0x%08x", resID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004010 return BAD_INDEX;
4011 }
4012
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004013 const PackageGroup* const grp = mPackageGroups[p];
4014 if (grp == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00004015 ALOGW("Bad identifier when getting value for resource number 0x%08x", resID);
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08004016 return BAD_INDEX;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004017 }
Kenny Root55fc8502010-10-28 14:47:01 -07004018
4019 // Allow overriding density
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004020 ResTable_config desiredConfig = mParams;
Kenny Root55fc8502010-10-28 14:47:01 -07004021 if (density > 0) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004022 desiredConfig.density = density;
Kenny Root55fc8502010-10-28 14:47:01 -07004023 }
4024
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004025 Entry entry;
4026 status_t err = getEntry(grp, t, e, &desiredConfig, &entry);
4027 if (err != NO_ERROR) {
Adam Lesinskide7de472014-11-03 12:03:08 -08004028 // Only log the failure when we're not running on the host as
4029 // part of a tool. The caller will do its own logging.
4030#ifndef STATIC_ANDROIDFW_FOR_TOOLS
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004031 ALOGW("Failure getting entry for 0x%08x (t=%d e=%d) (error %d)\n",
4032 resID, t, e, err);
Adam Lesinskide7de472014-11-03 12:03:08 -08004033#endif
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004034 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004035 }
4036
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004037 if ((dtohs(entry.entry->flags) & ResTable_entry::FLAG_COMPLEX) != 0) {
4038 if (!mayBeBag) {
4039 ALOGW("Requesting resource 0x%08x failed because it is complex\n", resID);
Adam Lesinskide898ff2014-01-29 18:20:45 -08004040 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004041 return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004042 }
4043
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004044 const Res_value* value = reinterpret_cast<const Res_value*>(
4045 reinterpret_cast<const uint8_t*>(entry.entry) + entry.entry->size);
4046
4047 outValue->size = dtohs(value->size);
4048 outValue->res0 = value->res0;
4049 outValue->dataType = value->dataType;
4050 outValue->data = dtohl(value->data);
4051
4052 // The reference may be pointing to a resource in a shared library. These
4053 // references have build-time generated package IDs. These ids may not match
4054 // the actual package IDs of the corresponding packages in this ResTable.
4055 // We need to fix the package ID based on a mapping.
4056 if (grp->dynamicRefTable.lookupResourceValue(outValue) != NO_ERROR) {
4057 ALOGW("Failed to resolve referenced package: 0x%08x", outValue->data);
4058 return BAD_VALUE;
Kenny Root55fc8502010-10-28 14:47:01 -07004059 }
4060
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004061 if (kDebugTableNoisy) {
4062 size_t len;
4063 printf("Found value: pkg=%zu, type=%d, str=%s, int=%d\n",
4064 entry.package->header->index,
4065 outValue->dataType,
4066 outValue->dataType == Res_value::TYPE_STRING ?
4067 String8(entry.package->header->values.stringAt(outValue->data, &len)).string() :
4068 "",
4069 outValue->data);
4070 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004071
4072 if (outSpecFlags != NULL) {
4073 *outSpecFlags = entry.specFlags;
4074 }
4075
4076 if (outConfig != NULL) {
4077 *outConfig = entry.config;
4078 }
4079
4080 return entry.package->header->index;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004081}
4082
4083ssize_t ResTable::resolveReference(Res_value* value, ssize_t blockIndex,
Dianne Hackborn0d221012009-07-29 15:41:19 -07004084 uint32_t* outLastRef, uint32_t* inoutTypeSpecFlags,
4085 ResTable_config* outConfig) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004086{
4087 int count=0;
Adam Lesinskide898ff2014-01-29 18:20:45 -08004088 while (blockIndex >= 0 && value->dataType == Res_value::TYPE_REFERENCE
4089 && value->data != 0 && count < 20) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004090 if (outLastRef) *outLastRef = value->data;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004091 uint32_t newFlags = 0;
Kenny Root55fc8502010-10-28 14:47:01 -07004092 const ssize_t newIndex = getResource(value->data, value, true, 0, &newFlags,
Dianne Hackborn0d221012009-07-29 15:41:19 -07004093 outConfig);
Dianne Hackborn20cb56e2010-03-04 00:58:29 -08004094 if (newIndex == BAD_INDEX) {
4095 return BAD_INDEX;
4096 }
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004097 if (kDebugTableTheme) {
4098 ALOGI("Resolving reference 0x%x: newIndex=%d, type=0x%x, data=0x%x\n",
4099 value->data, (int)newIndex, (int)value->dataType, value->data);
4100 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004101 //printf("Getting reference 0x%08x: newIndex=%d\n", value->data, newIndex);
4102 if (inoutTypeSpecFlags != NULL) *inoutTypeSpecFlags |= newFlags;
4103 if (newIndex < 0) {
4104 // This can fail if the resource being referenced is a style...
4105 // in this case, just return the reference, and expect the
4106 // caller to deal with.
4107 return blockIndex;
4108 }
4109 blockIndex = newIndex;
4110 count++;
4111 }
4112 return blockIndex;
4113}
4114
4115const char16_t* ResTable::valueToString(
4116 const Res_value* value, size_t stringBlock,
Adam Lesinskiad2d07d2014-08-27 16:21:08 -07004117 char16_t /*tmpBuffer*/ [TMP_BUFFER_SIZE], size_t* outLen) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004118{
4119 if (!value) {
4120 return NULL;
4121 }
4122 if (value->dataType == value->TYPE_STRING) {
4123 return getTableStringBlock(stringBlock)->stringAt(value->data, outLen);
4124 }
4125 // XXX do int to string conversions.
4126 return NULL;
4127}
4128
4129ssize_t ResTable::lockBag(uint32_t resID, const bag_entry** outBag) const
4130{
4131 mLock.lock();
4132 ssize_t err = getBagLocked(resID, outBag);
4133 if (err < NO_ERROR) {
4134 //printf("*** get failed! unlocking\n");
4135 mLock.unlock();
4136 }
4137 return err;
4138}
4139
Mark Salyzyn00adb862014-03-19 11:00:06 -07004140void ResTable::unlockBag(const bag_entry* /*bag*/) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004141{
4142 //printf("<<< unlockBag %p\n", this);
4143 mLock.unlock();
4144}
4145
4146void ResTable::lock() const
4147{
4148 mLock.lock();
4149}
4150
4151void ResTable::unlock() const
4152{
4153 mLock.unlock();
4154}
4155
4156ssize_t ResTable::getBagLocked(uint32_t resID, const bag_entry** outBag,
4157 uint32_t* outTypeSpecFlags) const
4158{
4159 if (mError != NO_ERROR) {
4160 return mError;
4161 }
4162
4163 const ssize_t p = getResourcePackageIndex(resID);
4164 const int t = Res_GETTYPE(resID);
4165 const int e = Res_GETENTRY(resID);
4166
4167 if (p < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00004168 ALOGW("Invalid package identifier when getting bag for resource number 0x%08x", resID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004169 return BAD_INDEX;
4170 }
4171 if (t < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00004172 ALOGW("No type identifier when getting bag for resource number 0x%08x", resID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004173 return BAD_INDEX;
4174 }
4175
4176 //printf("Get bag: id=0x%08x, p=%d, t=%d\n", resID, p, t);
4177 PackageGroup* const grp = mPackageGroups[p];
4178 if (grp == NULL) {
Steve Block8564c8d2012-01-05 23:22:43 +00004179 ALOGW("Bad identifier when getting bag for resource number 0x%08x", resID);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004180 return BAD_INDEX;
4181 }
4182
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004183 const TypeList& typeConfigs = grp->types[t];
4184 if (typeConfigs.isEmpty()) {
4185 ALOGW("Type identifier 0x%x does not exist.", t+1);
4186 return BAD_INDEX;
4187 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004188
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004189 const size_t NENTRY = typeConfigs[0]->entryCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004190 if (e >= (int)NENTRY) {
Steve Block8564c8d2012-01-05 23:22:43 +00004191 ALOGW("Entry identifier 0x%x is larger than entry count 0x%x",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004192 e, (int)typeConfigs[0]->entryCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004193 return BAD_INDEX;
4194 }
4195
4196 // First see if we've already computed this bag...
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004197 TypeCacheEntry& cacheEntry = grp->typeCacheEntries.editItemAt(t);
4198 bag_set** typeSet = cacheEntry.cachedBags;
4199 if (typeSet) {
4200 bag_set* set = typeSet[e];
4201 if (set) {
4202 if (set != (bag_set*)0xFFFFFFFF) {
4203 if (outTypeSpecFlags != NULL) {
4204 *outTypeSpecFlags = set->typeSpecFlags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004205 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004206 *outBag = (bag_entry*)(set+1);
4207 if (kDebugTableSuperNoisy) {
4208 ALOGI("Found existing bag for: 0x%x\n", resID);
4209 }
4210 return set->numAttrs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004211 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004212 ALOGW("Attempt to retrieve bag 0x%08x which is invalid or in a cycle.",
4213 resID);
4214 return BAD_INDEX;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004215 }
4216 }
4217
4218 // Bag not found, we need to compute it!
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004219 if (!typeSet) {
Iliyan Malchev7e1d3952012-02-17 12:15:58 -08004220 typeSet = (bag_set**)calloc(NENTRY, sizeof(bag_set*));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004221 if (!typeSet) return NO_MEMORY;
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004222 cacheEntry.cachedBags = typeSet;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004223 }
4224
4225 // Mark that we are currently working on this one.
4226 typeSet[e] = (bag_set*)0xFFFFFFFF;
4227
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004228 if (kDebugTableNoisy) {
4229 ALOGI("Building bag: %x\n", resID);
4230 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004231
4232 // Now collect all bag attributes
4233 Entry entry;
4234 status_t err = getEntry(grp, t, e, &mParams, &entry);
4235 if (err != NO_ERROR) {
4236 return err;
4237 }
4238
4239 const uint16_t entrySize = dtohs(entry.entry->size);
4240 const uint32_t parent = entrySize >= sizeof(ResTable_map_entry)
4241 ? dtohl(((const ResTable_map_entry*)entry.entry)->parent.ident) : 0;
4242 const uint32_t count = entrySize >= sizeof(ResTable_map_entry)
4243 ? dtohl(((const ResTable_map_entry*)entry.entry)->count) : 0;
4244
4245 size_t N = count;
4246
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004247 if (kDebugTableNoisy) {
4248 ALOGI("Found map: size=%x parent=%x count=%d\n", entrySize, parent, count);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004249
4250 // If this map inherits from another, we need to start
4251 // with its parent's values. Otherwise start out empty.
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004252 ALOGI("Creating new bag, entrySize=0x%08x, parent=0x%08x\n", entrySize, parent);
4253 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004254
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004255 // This is what we are building.
4256 bag_set* set = NULL;
4257
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004258 if (parent) {
4259 uint32_t resolvedParent = parent;
Mark Salyzyn00adb862014-03-19 11:00:06 -07004260
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004261 // Bags encode a parent reference without using the standard
4262 // Res_value structure. That means we must always try to
4263 // resolve a parent reference in case it is actually a
4264 // TYPE_DYNAMIC_REFERENCE.
4265 status_t err = grp->dynamicRefTable.lookupResourceId(&resolvedParent);
4266 if (err != NO_ERROR) {
4267 ALOGE("Failed resolving bag parent id 0x%08x", parent);
4268 return UNKNOWN_ERROR;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01004269 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004270
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004271 const bag_entry* parentBag;
4272 uint32_t parentTypeSpecFlags = 0;
4273 const ssize_t NP = getBagLocked(resolvedParent, &parentBag, &parentTypeSpecFlags);
4274 const size_t NT = ((NP >= 0) ? NP : 0) + N;
4275 set = (bag_set*)malloc(sizeof(bag_set)+sizeof(bag_entry)*NT);
4276 if (set == NULL) {
4277 return NO_MEMORY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004278 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004279 if (NP > 0) {
4280 memcpy(set+1, parentBag, NP*sizeof(bag_entry));
4281 set->numAttrs = NP;
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004282 if (kDebugTableNoisy) {
4283 ALOGI("Initialized new bag with %zd inherited attributes.\n", NP);
4284 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01004285 } else {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004286 if (kDebugTableNoisy) {
4287 ALOGI("Initialized new bag with no inherited attributes.\n");
4288 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01004289 set->numAttrs = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004290 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004291 set->availAttrs = NT;
4292 set->typeSpecFlags = parentTypeSpecFlags;
4293 } else {
4294 set = (bag_set*)malloc(sizeof(bag_set)+sizeof(bag_entry)*N);
4295 if (set == NULL) {
4296 return NO_MEMORY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004297 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004298 set->numAttrs = 0;
4299 set->availAttrs = N;
4300 set->typeSpecFlags = 0;
4301 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07004302
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004303 set->typeSpecFlags |= entry.specFlags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004304
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004305 // Now merge in the new attributes...
4306 size_t curOff = (reinterpret_cast<uintptr_t>(entry.entry) - reinterpret_cast<uintptr_t>(entry.type))
4307 + dtohs(entry.entry->size);
4308 const ResTable_map* map;
4309 bag_entry* entries = (bag_entry*)(set+1);
4310 size_t curEntry = 0;
4311 uint32_t pos = 0;
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004312 if (kDebugTableNoisy) {
4313 ALOGI("Starting with set %p, entries=%p, avail=%zu\n", set, entries, set->availAttrs);
4314 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004315 while (pos < count) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004316 if (kDebugTableNoisy) {
4317 ALOGI("Now at %p\n", (void*)curOff);
4318 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004319
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004320 if (curOff > (dtohl(entry.type->header.size)-sizeof(ResTable_map))) {
4321 ALOGW("ResTable_map at %d is beyond type chunk data %d",
4322 (int)curOff, dtohl(entry.type->header.size));
Yunlian Jianga7645bd2016-12-13 19:42:30 -08004323 free(set);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004324 return BAD_TYPE;
4325 }
4326 map = (const ResTable_map*)(((const uint8_t*)entry.type) + curOff);
4327 N++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004328
Adam Lesinskiccf25c7b2014-08-08 15:32:40 -07004329 uint32_t newName = htodl(map->name.ident);
4330 if (!Res_INTERNALID(newName)) {
4331 // Attributes don't have a resource id as the name. They specify
4332 // other data, which would be wrong to change via a lookup.
4333 if (grp->dynamicRefTable.lookupResourceId(&newName) != NO_ERROR) {
4334 ALOGE("Failed resolving ResTable_map name at %d with ident 0x%08x",
4335 (int) curOff, (int) newName);
Yunlian Jianga7645bd2016-12-13 19:42:30 -08004336 free(set);
Adam Lesinskiccf25c7b2014-08-08 15:32:40 -07004337 return UNKNOWN_ERROR;
4338 }
4339 }
4340
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004341 bool isInside;
4342 uint32_t oldName = 0;
4343 while ((isInside=(curEntry < set->numAttrs))
4344 && (oldName=entries[curEntry].map.name.ident) < newName) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004345 if (kDebugTableNoisy) {
4346 ALOGI("#%zu: Keeping existing attribute: 0x%08x\n",
4347 curEntry, entries[curEntry].map.name.ident);
4348 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004349 curEntry++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004350 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004351
4352 if ((!isInside) || oldName != newName) {
4353 // This is a new attribute... figure out what to do with it.
4354 if (set->numAttrs >= set->availAttrs) {
4355 // Need to alloc more memory...
4356 const size_t newAvail = set->availAttrs+N;
George Burgess IVe8efec52016-10-11 15:42:29 -07004357 void *oldSet = set;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004358 set = (bag_set*)realloc(set,
4359 sizeof(bag_set)
4360 + sizeof(bag_entry)*newAvail);
4361 if (set == NULL) {
George Burgess IVe8efec52016-10-11 15:42:29 -07004362 free(oldSet);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004363 return NO_MEMORY;
4364 }
4365 set->availAttrs = newAvail;
4366 entries = (bag_entry*)(set+1);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004367 if (kDebugTableNoisy) {
4368 ALOGI("Reallocated set %p, entries=%p, avail=%zu\n",
4369 set, entries, set->availAttrs);
4370 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004371 }
4372 if (isInside) {
4373 // Going in the middle, need to make space.
4374 memmove(entries+curEntry+1, entries+curEntry,
4375 sizeof(bag_entry)*(set->numAttrs-curEntry));
4376 set->numAttrs++;
4377 }
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004378 if (kDebugTableNoisy) {
4379 ALOGI("#%zu: Inserting new attribute: 0x%08x\n", curEntry, newName);
4380 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004381 } else {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004382 if (kDebugTableNoisy) {
4383 ALOGI("#%zu: Replacing existing attribute: 0x%08x\n", curEntry, oldName);
4384 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004385 }
4386
4387 bag_entry* cur = entries+curEntry;
4388
4389 cur->stringBlock = entry.package->header->index;
4390 cur->map.name.ident = newName;
4391 cur->map.value.copyFrom_dtoh(map->value);
4392 status_t err = grp->dynamicRefTable.lookupResourceValue(&cur->map.value);
4393 if (err != NO_ERROR) {
4394 ALOGE("Reference item(0x%08x) in bag could not be resolved.", cur->map.value.data);
4395 return UNKNOWN_ERROR;
4396 }
4397
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004398 if (kDebugTableNoisy) {
4399 ALOGI("Setting entry #%zu %p: block=%zd, name=0x%08d, type=%d, data=0x%08x\n",
4400 curEntry, cur, cur->stringBlock, cur->map.name.ident,
4401 cur->map.value.dataType, cur->map.value.data);
4402 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004403
4404 // On to the next!
4405 curEntry++;
4406 pos++;
4407 const size_t size = dtohs(map->value.size);
4408 curOff += size + sizeof(*map)-sizeof(map->value);
George Burgess IVe8efec52016-10-11 15:42:29 -07004409 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004410
4411 if (curEntry > set->numAttrs) {
4412 set->numAttrs = curEntry;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004413 }
4414
4415 // And this is it...
4416 typeSet[e] = set;
4417 if (set) {
4418 if (outTypeSpecFlags != NULL) {
4419 *outTypeSpecFlags = set->typeSpecFlags;
4420 }
4421 *outBag = (bag_entry*)(set+1);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004422 if (kDebugTableNoisy) {
4423 ALOGI("Returning %zu attrs\n", set->numAttrs);
4424 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004425 return set->numAttrs;
4426 }
4427 return BAD_INDEX;
4428}
4429
4430void ResTable::setParameters(const ResTable_config* params)
4431{
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004432 AutoMutex _lock(mLock);
4433 AutoMutex _lock2(mFilteredConfigLock);
4434
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004435 if (kDebugTableGetEntry) {
4436 ALOGI("Setting parameters: %s\n", params->toString().string());
4437 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004438 mParams = *params;
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004439 for (size_t p = 0; p < mPackageGroups.size(); p++) {
4440 PackageGroup* packageGroup = mPackageGroups.editItemAt(p);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004441 if (kDebugTableNoisy) {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004442 ALOGI("CLEARING BAGS FOR GROUP %zu!", p);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004443 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004444 packageGroup->clearBagCache();
4445
4446 // Find which configurations match the set of parameters. This allows for a much
4447 // faster lookup in getEntry() if the set of values is narrowed down.
4448 for (size_t t = 0; t < packageGroup->types.size(); t++) {
4449 if (packageGroup->types[t].isEmpty()) {
4450 continue;
4451 }
4452
4453 TypeList& typeList = packageGroup->types.editItemAt(t);
4454
4455 // Retrieve the cache entry for this type.
4456 TypeCacheEntry& cacheEntry = packageGroup->typeCacheEntries.editItemAt(t);
4457
4458 for (size_t ts = 0; ts < typeList.size(); ts++) {
4459 Type* type = typeList.editItemAt(ts);
4460
4461 std::shared_ptr<Vector<const ResTable_type*>> newFilteredConfigs =
4462 std::make_shared<Vector<const ResTable_type*>>();
4463
4464 for (size_t ti = 0; ti < type->configs.size(); ti++) {
4465 ResTable_config config;
4466 config.copyFromDtoH(type->configs[ti]->config);
4467
4468 if (config.match(mParams)) {
4469 newFilteredConfigs->add(type->configs[ti]);
4470 }
4471 }
4472
4473 if (kDebugTableNoisy) {
4474 ALOGD("Updating pkg=%zu type=%zu with %zu filtered configs",
4475 p, t, newFilteredConfigs->size());
4476 }
4477
4478 cacheEntry.filteredConfigs.add(newFilteredConfigs);
4479 }
4480 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004481 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004482}
4483
4484void ResTable::getParameters(ResTable_config* params) const
4485{
4486 mLock.lock();
4487 *params = mParams;
4488 mLock.unlock();
4489}
4490
4491struct id_name_map {
4492 uint32_t id;
4493 size_t len;
4494 char16_t name[6];
4495};
4496
4497const static id_name_map ID_NAMES[] = {
4498 { ResTable_map::ATTR_TYPE, 5, { '^', 't', 'y', 'p', 'e' } },
4499 { ResTable_map::ATTR_L10N, 5, { '^', 'l', '1', '0', 'n' } },
4500 { ResTable_map::ATTR_MIN, 4, { '^', 'm', 'i', 'n' } },
4501 { ResTable_map::ATTR_MAX, 4, { '^', 'm', 'a', 'x' } },
4502 { ResTable_map::ATTR_OTHER, 6, { '^', 'o', 't', 'h', 'e', 'r' } },
4503 { ResTable_map::ATTR_ZERO, 5, { '^', 'z', 'e', 'r', 'o' } },
4504 { ResTable_map::ATTR_ONE, 4, { '^', 'o', 'n', 'e' } },
4505 { ResTable_map::ATTR_TWO, 4, { '^', 't', 'w', 'o' } },
4506 { ResTable_map::ATTR_FEW, 4, { '^', 'f', 'e', 'w' } },
4507 { ResTable_map::ATTR_MANY, 5, { '^', 'm', 'a', 'n', 'y' } },
4508};
4509
4510uint32_t ResTable::identifierForName(const char16_t* name, size_t nameLen,
4511 const char16_t* type, size_t typeLen,
4512 const char16_t* package,
4513 size_t packageLen,
4514 uint32_t* outTypeSpecFlags) const
4515{
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004516 if (kDebugTableSuperNoisy) {
4517 printf("Identifier for name: error=%d\n", mError);
4518 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004519
4520 // Check for internal resource identifier as the very first thing, so
4521 // that we will always find them even when there are no resources.
4522 if (name[0] == '^') {
4523 const int N = (sizeof(ID_NAMES)/sizeof(ID_NAMES[0]));
4524 size_t len;
4525 for (int i=0; i<N; i++) {
4526 const id_name_map* m = ID_NAMES + i;
4527 len = m->len;
4528 if (len != nameLen) {
4529 continue;
4530 }
4531 for (size_t j=1; j<len; j++) {
4532 if (m->name[j] != name[j]) {
4533 goto nope;
4534 }
4535 }
Dianne Hackborn426431a2011-06-09 11:29:08 -07004536 if (outTypeSpecFlags) {
4537 *outTypeSpecFlags = ResTable_typeSpec::SPEC_PUBLIC;
4538 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004539 return m->id;
4540nope:
4541 ;
4542 }
4543 if (nameLen > 7) {
4544 if (name[1] == 'i' && name[2] == 'n'
4545 && name[3] == 'd' && name[4] == 'e' && name[5] == 'x'
4546 && name[6] == '_') {
4547 int index = atoi(String8(name + 7, nameLen - 7).string());
4548 if (Res_CHECKID(index)) {
Steve Block8564c8d2012-01-05 23:22:43 +00004549 ALOGW("Array resource index: %d is too large.",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004550 index);
4551 return 0;
4552 }
Dianne Hackborn426431a2011-06-09 11:29:08 -07004553 if (outTypeSpecFlags) {
4554 *outTypeSpecFlags = ResTable_typeSpec::SPEC_PUBLIC;
4555 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004556 return Res_MAKEARRAY(index);
4557 }
4558 }
4559 return 0;
4560 }
4561
4562 if (mError != NO_ERROR) {
4563 return 0;
4564 }
4565
Dianne Hackborn426431a2011-06-09 11:29:08 -07004566 bool fakePublic = false;
4567
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004568 // Figure out the package and type we are looking in...
4569
4570 const char16_t* packageEnd = NULL;
4571 const char16_t* typeEnd = NULL;
4572 const char16_t* const nameEnd = name+nameLen;
4573 const char16_t* p = name;
4574 while (p < nameEnd) {
4575 if (*p == ':') packageEnd = p;
4576 else if (*p == '/') typeEnd = p;
4577 p++;
4578 }
Dianne Hackborn426431a2011-06-09 11:29:08 -07004579 if (*name == '@') {
4580 name++;
4581 if (*name == '*') {
4582 fakePublic = true;
4583 name++;
4584 }
4585 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004586 if (name >= nameEnd) {
4587 return 0;
4588 }
4589
4590 if (packageEnd) {
4591 package = name;
4592 packageLen = packageEnd-name;
4593 name = packageEnd+1;
4594 } else if (!package) {
4595 return 0;
4596 }
4597
4598 if (typeEnd) {
4599 type = name;
4600 typeLen = typeEnd-name;
4601 name = typeEnd+1;
4602 } else if (!type) {
4603 return 0;
4604 }
4605
4606 if (name >= nameEnd) {
4607 return 0;
4608 }
4609 nameLen = nameEnd-name;
4610
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004611 if (kDebugTableNoisy) {
4612 printf("Looking for identifier: type=%s, name=%s, package=%s\n",
4613 String8(type, typeLen).string(),
4614 String8(name, nameLen).string(),
4615 String8(package, packageLen).string());
4616 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004617
Adam Lesinski9b624c12014-11-19 17:49:26 -08004618 const String16 attr("attr");
4619 const String16 attrPrivate("^attr-private");
4620
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004621 const size_t NG = mPackageGroups.size();
4622 for (size_t ig=0; ig<NG; ig++) {
4623 const PackageGroup* group = mPackageGroups[ig];
4624
4625 if (strzcmp16(package, packageLen,
4626 group->name.string(), group->name.size())) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004627 if (kDebugTableNoisy) {
4628 printf("Skipping package group: %s\n", String8(group->name).string());
4629 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004630 continue;
4631 }
4632
Adam Lesinskie60a87f2014-10-09 11:08:04 -07004633 const size_t packageCount = group->packages.size();
4634 for (size_t pi = 0; pi < packageCount; pi++) {
Adam Lesinski9b624c12014-11-19 17:49:26 -08004635 const char16_t* targetType = type;
4636 size_t targetTypeLen = typeLen;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004637
Adam Lesinski9b624c12014-11-19 17:49:26 -08004638 do {
4639 ssize_t ti = group->packages[pi]->typeStrings.indexOfString(
4640 targetType, targetTypeLen);
4641 if (ti < 0) {
Adam Lesinskie60a87f2014-10-09 11:08:04 -07004642 continue;
4643 }
4644
Adam Lesinski9b624c12014-11-19 17:49:26 -08004645 ti += group->packages[pi]->typeIdOffset;
Adam Lesinskie60a87f2014-10-09 11:08:04 -07004646
Adam Lesinski9b624c12014-11-19 17:49:26 -08004647 const uint32_t identifier = findEntry(group, ti, name, nameLen,
4648 outTypeSpecFlags);
4649 if (identifier != 0) {
4650 if (fakePublic && outTypeSpecFlags) {
4651 *outTypeSpecFlags |= ResTable_typeSpec::SPEC_PUBLIC;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004652 }
Adam Lesinski9b624c12014-11-19 17:49:26 -08004653 return identifier;
4654 }
4655 } while (strzcmp16(attr.string(), attr.size(), targetType, targetTypeLen) == 0
4656 && (targetType = attrPrivate.string())
4657 && (targetTypeLen = attrPrivate.size())
4658 );
4659 }
4660 break;
4661 }
4662 return 0;
4663}
4664
4665uint32_t ResTable::findEntry(const PackageGroup* group, ssize_t typeIndex, const char16_t* name,
4666 size_t nameLen, uint32_t* outTypeSpecFlags) const {
4667 const TypeList& typeList = group->types[typeIndex];
4668 const size_t typeCount = typeList.size();
4669 for (size_t i = 0; i < typeCount; i++) {
4670 const Type* t = typeList[i];
4671 const ssize_t ei = t->package->keyStrings.indexOfString(name, nameLen);
4672 if (ei < 0) {
4673 continue;
4674 }
4675
4676 const size_t configCount = t->configs.size();
4677 for (size_t j = 0; j < configCount; j++) {
4678 const TypeVariant tv(t->configs[j]);
4679 for (TypeVariant::iterator iter = tv.beginEntries();
4680 iter != tv.endEntries();
4681 iter++) {
4682 const ResTable_entry* entry = *iter;
4683 if (entry == NULL) {
4684 continue;
4685 }
4686
4687 if (dtohl(entry->key.index) == (size_t) ei) {
4688 uint32_t resId = Res_MAKEID(group->id - 1, typeIndex, iter.index());
4689 if (outTypeSpecFlags) {
4690 Entry result;
4691 if (getEntry(group, typeIndex, iter.index(), NULL, &result) != NO_ERROR) {
4692 ALOGW("Failed to find spec flags for 0x%08x", resId);
4693 return 0;
4694 }
4695 *outTypeSpecFlags = result.specFlags;
4696 }
4697 return resId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004698 }
4699 }
4700 }
4701 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004702 return 0;
4703}
4704
Dan Albertf348c152014-09-08 18:28:00 -07004705bool ResTable::expandResourceRef(const char16_t* refStr, size_t refLen,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004706 String16* outPackage,
4707 String16* outType,
4708 String16* outName,
4709 const String16* defType,
4710 const String16* defPackage,
Dianne Hackborn426431a2011-06-09 11:29:08 -07004711 const char** outErrorMsg,
4712 bool* outPublicOnly)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004713{
4714 const char16_t* packageEnd = NULL;
4715 const char16_t* typeEnd = NULL;
4716 const char16_t* p = refStr;
4717 const char16_t* const end = p + refLen;
4718 while (p < end) {
4719 if (*p == ':') packageEnd = p;
4720 else if (*p == '/') {
4721 typeEnd = p;
4722 break;
4723 }
4724 p++;
4725 }
4726 p = refStr;
4727 if (*p == '@') p++;
4728
Dianne Hackborn426431a2011-06-09 11:29:08 -07004729 if (outPublicOnly != NULL) {
4730 *outPublicOnly = true;
4731 }
4732 if (*p == '*') {
4733 p++;
4734 if (outPublicOnly != NULL) {
4735 *outPublicOnly = false;
4736 }
4737 }
4738
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004739 if (packageEnd) {
4740 *outPackage = String16(p, packageEnd-p);
4741 p = packageEnd+1;
4742 } else {
4743 if (!defPackage) {
4744 if (outErrorMsg) {
4745 *outErrorMsg = "No resource package specified";
4746 }
4747 return false;
4748 }
4749 *outPackage = *defPackage;
4750 }
4751 if (typeEnd) {
4752 *outType = String16(p, typeEnd-p);
4753 p = typeEnd+1;
4754 } else {
4755 if (!defType) {
4756 if (outErrorMsg) {
4757 *outErrorMsg = "No resource type specified";
4758 }
4759 return false;
4760 }
4761 *outType = *defType;
4762 }
4763 *outName = String16(p, end-p);
Konstantin Lopyrevddcafcb2010-06-04 14:36:49 -07004764 if(**outPackage == 0) {
4765 if(outErrorMsg) {
4766 *outErrorMsg = "Resource package cannot be an empty string";
4767 }
4768 return false;
4769 }
4770 if(**outType == 0) {
4771 if(outErrorMsg) {
4772 *outErrorMsg = "Resource type cannot be an empty string";
4773 }
4774 return false;
4775 }
4776 if(**outName == 0) {
4777 if(outErrorMsg) {
4778 *outErrorMsg = "Resource id cannot be an empty string";
4779 }
4780 return false;
4781 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004782 return true;
4783}
4784
4785static uint32_t get_hex(char c, bool* outError)
4786{
4787 if (c >= '0' && c <= '9') {
4788 return c - '0';
4789 } else if (c >= 'a' && c <= 'f') {
4790 return c - 'a' + 0xa;
4791 } else if (c >= 'A' && c <= 'F') {
4792 return c - 'A' + 0xa;
4793 }
4794 *outError = true;
4795 return 0;
4796}
4797
4798struct unit_entry
4799{
4800 const char* name;
4801 size_t len;
4802 uint8_t type;
4803 uint32_t unit;
4804 float scale;
4805};
4806
4807static const unit_entry unitNames[] = {
4808 { "px", strlen("px"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_PX, 1.0f },
4809 { "dip", strlen("dip"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_DIP, 1.0f },
4810 { "dp", strlen("dp"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_DIP, 1.0f },
4811 { "sp", strlen("sp"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_SP, 1.0f },
4812 { "pt", strlen("pt"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_PT, 1.0f },
4813 { "in", strlen("in"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_IN, 1.0f },
4814 { "mm", strlen("mm"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_MM, 1.0f },
4815 { "%", strlen("%"), Res_value::TYPE_FRACTION, Res_value::COMPLEX_UNIT_FRACTION, 1.0f/100 },
4816 { "%p", strlen("%p"), Res_value::TYPE_FRACTION, Res_value::COMPLEX_UNIT_FRACTION_PARENT, 1.0f/100 },
4817 { NULL, 0, 0, 0, 0 }
4818};
4819
4820static bool parse_unit(const char* str, Res_value* outValue,
4821 float* outScale, const char** outEnd)
4822{
4823 const char* end = str;
4824 while (*end != 0 && !isspace((unsigned char)*end)) {
4825 end++;
4826 }
4827 const size_t len = end-str;
4828
4829 const char* realEnd = end;
4830 while (*realEnd != 0 && isspace((unsigned char)*realEnd)) {
4831 realEnd++;
4832 }
4833 if (*realEnd != 0) {
4834 return false;
4835 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07004836
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004837 const unit_entry* cur = unitNames;
4838 while (cur->name) {
4839 if (len == cur->len && strncmp(cur->name, str, len) == 0) {
4840 outValue->dataType = cur->type;
4841 outValue->data = cur->unit << Res_value::COMPLEX_UNIT_SHIFT;
4842 *outScale = cur->scale;
4843 *outEnd = end;
4844 //printf("Found unit %s for %s\n", cur->name, str);
4845 return true;
4846 }
4847 cur++;
4848 }
4849
4850 return false;
4851}
4852
Dan Albert1b4f3162015-04-07 18:43:15 -07004853bool U16StringToInt(const char16_t* s, size_t len, Res_value* outValue)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004854{
4855 while (len > 0 && isspace16(*s)) {
4856 s++;
4857 len--;
4858 }
4859
4860 if (len <= 0) {
4861 return false;
4862 }
4863
4864 size_t i = 0;
Dan Albert1b4f3162015-04-07 18:43:15 -07004865 int64_t val = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004866 bool neg = false;
4867
4868 if (*s == '-') {
4869 neg = true;
4870 i++;
4871 }
4872
4873 if (s[i] < '0' || s[i] > '9') {
4874 return false;
4875 }
4876
Dan Albert1b4f3162015-04-07 18:43:15 -07004877 static_assert(std::is_same<uint32_t, Res_value::data_type>::value,
4878 "Res_value::data_type has changed. The range checks in this "
4879 "function are no longer correct.");
4880
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004881 // Decimal or hex?
Dan Albert1b4f3162015-04-07 18:43:15 -07004882 bool isHex;
4883 if (len > 1 && s[i] == '0' && s[i+1] == 'x') {
4884 isHex = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004885 i += 2;
Dan Albert1b4f3162015-04-07 18:43:15 -07004886
4887 if (neg) {
4888 return false;
4889 }
4890
4891 if (i == len) {
4892 // Just u"0x"
4893 return false;
4894 }
4895
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004896 bool error = false;
4897 while (i < len && !error) {
4898 val = (val*16) + get_hex(s[i], &error);
4899 i++;
Dan Albert1b4f3162015-04-07 18:43:15 -07004900
4901 if (val > std::numeric_limits<uint32_t>::max()) {
4902 return false;
4903 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004904 }
4905 if (error) {
4906 return false;
4907 }
4908 } else {
Dan Albert1b4f3162015-04-07 18:43:15 -07004909 isHex = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004910 while (i < len) {
4911 if (s[i] < '0' || s[i] > '9') {
4912 return false;
4913 }
4914 val = (val*10) + s[i]-'0';
4915 i++;
Dan Albert1b4f3162015-04-07 18:43:15 -07004916
4917 if ((neg && -val < std::numeric_limits<int32_t>::min()) ||
4918 (!neg && val > std::numeric_limits<int32_t>::max())) {
4919 return false;
4920 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004921 }
4922 }
4923
4924 if (neg) val = -val;
4925
4926 while (i < len && isspace16(s[i])) {
4927 i++;
4928 }
4929
Dan Albert1b4f3162015-04-07 18:43:15 -07004930 if (i != len) {
4931 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004932 }
4933
Dan Albert1b4f3162015-04-07 18:43:15 -07004934 if (outValue) {
4935 outValue->dataType =
4936 isHex ? outValue->TYPE_INT_HEX : outValue->TYPE_INT_DEC;
4937 outValue->data = static_cast<Res_value::data_type>(val);
4938 }
4939 return true;
4940}
4941
4942bool ResTable::stringToInt(const char16_t* s, size_t len, Res_value* outValue)
4943{
4944 return U16StringToInt(s, len, outValue);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004945}
4946
4947bool ResTable::stringToFloat(const char16_t* s, size_t len, Res_value* outValue)
4948{
4949 while (len > 0 && isspace16(*s)) {
4950 s++;
4951 len--;
4952 }
4953
4954 if (len <= 0) {
4955 return false;
4956 }
4957
4958 char buf[128];
4959 int i=0;
4960 while (len > 0 && *s != 0 && i < 126) {
4961 if (*s > 255) {
4962 return false;
4963 }
4964 buf[i++] = *s++;
4965 len--;
4966 }
4967
4968 if (len > 0) {
4969 return false;
4970 }
Torne (Richard Coles)46a807f2014-08-27 12:36:44 +01004971 if ((buf[0] < '0' || buf[0] > '9') && buf[0] != '.' && buf[0] != '-' && buf[0] != '+') {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004972 return false;
4973 }
4974
4975 buf[i] = 0;
4976 const char* end;
4977 float f = strtof(buf, (char**)&end);
4978
4979 if (*end != 0 && !isspace((unsigned char)*end)) {
4980 // Might be a unit...
4981 float scale;
4982 if (parse_unit(end, outValue, &scale, &end)) {
4983 f *= scale;
4984 const bool neg = f < 0;
4985 if (neg) f = -f;
4986 uint64_t bits = (uint64_t)(f*(1<<23)+.5f);
4987 uint32_t radix;
4988 uint32_t shift;
4989 if ((bits&0x7fffff) == 0) {
4990 // Always use 23p0 if there is no fraction, just to make
4991 // things easier to read.
4992 radix = Res_value::COMPLEX_RADIX_23p0;
4993 shift = 23;
4994 } else if ((bits&0xffffffffff800000LL) == 0) {
4995 // Magnitude is zero -- can fit in 0 bits of precision.
4996 radix = Res_value::COMPLEX_RADIX_0p23;
4997 shift = 0;
4998 } else if ((bits&0xffffffff80000000LL) == 0) {
4999 // Magnitude can fit in 8 bits of precision.
5000 radix = Res_value::COMPLEX_RADIX_8p15;
5001 shift = 8;
5002 } else if ((bits&0xffffff8000000000LL) == 0) {
5003 // Magnitude can fit in 16 bits of precision.
5004 radix = Res_value::COMPLEX_RADIX_16p7;
5005 shift = 16;
5006 } else {
5007 // Magnitude needs entire range, so no fractional part.
5008 radix = Res_value::COMPLEX_RADIX_23p0;
5009 shift = 23;
5010 }
5011 int32_t mantissa = (int32_t)(
5012 (bits>>shift) & Res_value::COMPLEX_MANTISSA_MASK);
5013 if (neg) {
5014 mantissa = (-mantissa) & Res_value::COMPLEX_MANTISSA_MASK;
5015 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005016 outValue->data |=
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005017 (radix<<Res_value::COMPLEX_RADIX_SHIFT)
5018 | (mantissa<<Res_value::COMPLEX_MANTISSA_SHIFT);
5019 //printf("Input value: %f 0x%016Lx, mult: %f, radix: %d, shift: %d, final: 0x%08x\n",
5020 // f * (neg ? -1 : 1), bits, f*(1<<23),
5021 // radix, shift, outValue->data);
5022 return true;
5023 }
5024 return false;
5025 }
5026
5027 while (*end != 0 && isspace((unsigned char)*end)) {
5028 end++;
5029 }
5030
5031 if (*end == 0) {
5032 if (outValue) {
5033 outValue->dataType = outValue->TYPE_FLOAT;
5034 *(float*)(&outValue->data) = f;
5035 return true;
5036 }
5037 }
5038
5039 return false;
5040}
5041
5042bool ResTable::stringToValue(Res_value* outValue, String16* outString,
5043 const char16_t* s, size_t len,
5044 bool preserveSpaces, bool coerceType,
5045 uint32_t attrID,
5046 const String16* defType,
5047 const String16* defPackage,
5048 Accessor* accessor,
5049 void* accessorCookie,
5050 uint32_t attrType,
5051 bool enforcePrivate) const
5052{
5053 bool localizationSetting = accessor != NULL && accessor->getLocalizationSetting();
5054 const char* errorMsg = NULL;
5055
5056 outValue->size = sizeof(Res_value);
5057 outValue->res0 = 0;
5058
5059 // First strip leading/trailing whitespace. Do this before handling
5060 // escapes, so they can be used to force whitespace into the string.
5061 if (!preserveSpaces) {
5062 while (len > 0 && isspace16(*s)) {
5063 s++;
5064 len--;
5065 }
5066 while (len > 0 && isspace16(s[len-1])) {
5067 len--;
5068 }
5069 // If the string ends with '\', then we keep the space after it.
5070 if (len > 0 && s[len-1] == '\\' && s[len] != 0) {
5071 len++;
5072 }
5073 }
5074
5075 //printf("Value for: %s\n", String8(s, len).string());
5076
5077 uint32_t l10nReq = ResTable_map::L10N_NOT_REQUIRED;
5078 uint32_t attrMin = 0x80000000, attrMax = 0x7fffffff;
5079 bool fromAccessor = false;
5080 if (attrID != 0 && !Res_INTERNALID(attrID)) {
5081 const ssize_t p = getResourcePackageIndex(attrID);
5082 const bag_entry* bag;
5083 ssize_t cnt = p >= 0 ? lockBag(attrID, &bag) : -1;
5084 //printf("For attr 0x%08x got bag of %d\n", attrID, cnt);
5085 if (cnt >= 0) {
5086 while (cnt > 0) {
5087 //printf("Entry 0x%08x = 0x%08x\n", bag->map.name.ident, bag->map.value.data);
5088 switch (bag->map.name.ident) {
5089 case ResTable_map::ATTR_TYPE:
5090 attrType = bag->map.value.data;
5091 break;
5092 case ResTable_map::ATTR_MIN:
5093 attrMin = bag->map.value.data;
5094 break;
5095 case ResTable_map::ATTR_MAX:
5096 attrMax = bag->map.value.data;
5097 break;
5098 case ResTable_map::ATTR_L10N:
5099 l10nReq = bag->map.value.data;
5100 break;
5101 }
5102 bag++;
5103 cnt--;
5104 }
5105 unlockBag(bag);
5106 } else if (accessor && accessor->getAttributeType(attrID, &attrType)) {
5107 fromAccessor = true;
5108 if (attrType == ResTable_map::TYPE_ENUM
5109 || attrType == ResTable_map::TYPE_FLAGS
5110 || attrType == ResTable_map::TYPE_INTEGER) {
5111 accessor->getAttributeMin(attrID, &attrMin);
5112 accessor->getAttributeMax(attrID, &attrMax);
5113 }
5114 if (localizationSetting) {
5115 l10nReq = accessor->getAttributeL10N(attrID);
5116 }
5117 }
5118 }
5119
5120 const bool canStringCoerce =
5121 coerceType && (attrType&ResTable_map::TYPE_STRING) != 0;
5122
5123 if (*s == '@') {
5124 outValue->dataType = outValue->TYPE_REFERENCE;
5125
5126 // Note: we don't check attrType here because the reference can
5127 // be to any other type; we just need to count on the client making
5128 // sure the referenced type is correct.
Mark Salyzyn00adb862014-03-19 11:00:06 -07005129
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005130 //printf("Looking up ref: %s\n", String8(s, len).string());
5131
5132 // It's a reference!
5133 if (len == 5 && s[1]=='n' && s[2]=='u' && s[3]=='l' && s[4]=='l') {
Alan Viverettef2969402014-10-29 17:09:36 -07005134 // Special case @null as undefined. This will be converted by
5135 // AssetManager to TYPE_NULL with data DATA_NULL_UNDEFINED.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005136 outValue->data = 0;
5137 return true;
Alan Viverettef2969402014-10-29 17:09:36 -07005138 } else if (len == 6 && s[1]=='e' && s[2]=='m' && s[3]=='p' && s[4]=='t' && s[5]=='y') {
5139 // Special case @empty as explicitly defined empty value.
5140 outValue->dataType = Res_value::TYPE_NULL;
5141 outValue->data = Res_value::DATA_NULL_EMPTY;
5142 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005143 } else {
5144 bool createIfNotFound = false;
5145 const char16_t* resourceRefName;
5146 int resourceNameLen;
5147 if (len > 2 && s[1] == '+') {
5148 createIfNotFound = true;
5149 resourceRefName = s + 2;
5150 resourceNameLen = len - 2;
5151 } else if (len > 2 && s[1] == '*') {
5152 enforcePrivate = false;
5153 resourceRefName = s + 2;
5154 resourceNameLen = len - 2;
5155 } else {
5156 createIfNotFound = false;
5157 resourceRefName = s + 1;
5158 resourceNameLen = len - 1;
5159 }
5160 String16 package, type, name;
5161 if (!expandResourceRef(resourceRefName,resourceNameLen, &package, &type, &name,
5162 defType, defPackage, &errorMsg)) {
5163 if (accessor != NULL) {
5164 accessor->reportError(accessorCookie, errorMsg);
5165 }
5166 return false;
5167 }
5168
5169 uint32_t specFlags = 0;
5170 uint32_t rid = identifierForName(name.string(), name.size(), type.string(),
5171 type.size(), package.string(), package.size(), &specFlags);
5172 if (rid != 0) {
5173 if (enforcePrivate) {
Adam Lesinski833f3cc2014-06-18 15:06:01 -07005174 if (accessor == NULL || accessor->getAssetsPackage() != package) {
5175 if ((specFlags&ResTable_typeSpec::SPEC_PUBLIC) == 0) {
5176 if (accessor != NULL) {
5177 accessor->reportError(accessorCookie, "Resource is not public.");
5178 }
5179 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005180 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005181 }
5182 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08005183
5184 if (accessor) {
5185 rid = Res_MAKEID(
5186 accessor->getRemappedPackage(Res_GETPACKAGE(rid)),
5187 Res_GETTYPE(rid), Res_GETENTRY(rid));
Andreas Gampe2204f0b2014-10-21 23:04:54 -07005188 if (kDebugTableNoisy) {
5189 ALOGI("Incl %s:%s/%s: 0x%08x\n",
5190 String8(package).string(), String8(type).string(),
5191 String8(name).string(), rid);
5192 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005193 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08005194
5195 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5196 if (packageId != APP_PACKAGE_ID && packageId != SYS_PACKAGE_ID) {
5197 outValue->dataType = Res_value::TYPE_DYNAMIC_REFERENCE;
5198 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005199 outValue->data = rid;
5200 return true;
5201 }
5202
5203 if (accessor) {
5204 uint32_t rid = accessor->getCustomResourceWithCreation(package, type, name,
5205 createIfNotFound);
5206 if (rid != 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07005207 if (kDebugTableNoisy) {
5208 ALOGI("Pckg %s:%s/%s: 0x%08x\n",
5209 String8(package).string(), String8(type).string(),
5210 String8(name).string(), rid);
5211 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08005212 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5213 if (packageId == 0x00) {
5214 outValue->data = rid;
5215 outValue->dataType = Res_value::TYPE_DYNAMIC_REFERENCE;
5216 return true;
5217 } else if (packageId == APP_PACKAGE_ID || packageId == SYS_PACKAGE_ID) {
5218 // We accept packageId's generated as 0x01 in order to support
5219 // building the android system resources
5220 outValue->data = rid;
5221 return true;
5222 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005223 }
5224 }
5225 }
5226
5227 if (accessor != NULL) {
5228 accessor->reportError(accessorCookie, "No resource found that matches the given name");
5229 }
5230 return false;
5231 }
5232
5233 // if we got to here, and localization is required and it's not a reference,
5234 // complain and bail.
5235 if (l10nReq == ResTable_map::L10N_SUGGESTED) {
5236 if (localizationSetting) {
5237 if (accessor != NULL) {
5238 accessor->reportError(accessorCookie, "This attribute must be localized.");
5239 }
5240 }
5241 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005242
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005243 if (*s == '#') {
5244 // It's a color! Convert to an integer of the form 0xaarrggbb.
5245 uint32_t color = 0;
5246 bool error = false;
5247 if (len == 4) {
5248 outValue->dataType = outValue->TYPE_INT_COLOR_RGB4;
5249 color |= 0xFF000000;
5250 color |= get_hex(s[1], &error) << 20;
5251 color |= get_hex(s[1], &error) << 16;
5252 color |= get_hex(s[2], &error) << 12;
5253 color |= get_hex(s[2], &error) << 8;
5254 color |= get_hex(s[3], &error) << 4;
5255 color |= get_hex(s[3], &error);
5256 } else if (len == 5) {
5257 outValue->dataType = outValue->TYPE_INT_COLOR_ARGB4;
5258 color |= get_hex(s[1], &error) << 28;
5259 color |= get_hex(s[1], &error) << 24;
5260 color |= get_hex(s[2], &error) << 20;
5261 color |= get_hex(s[2], &error) << 16;
5262 color |= get_hex(s[3], &error) << 12;
5263 color |= get_hex(s[3], &error) << 8;
5264 color |= get_hex(s[4], &error) << 4;
5265 color |= get_hex(s[4], &error);
5266 } else if (len == 7) {
5267 outValue->dataType = outValue->TYPE_INT_COLOR_RGB8;
5268 color |= 0xFF000000;
5269 color |= get_hex(s[1], &error) << 20;
5270 color |= get_hex(s[2], &error) << 16;
5271 color |= get_hex(s[3], &error) << 12;
5272 color |= get_hex(s[4], &error) << 8;
5273 color |= get_hex(s[5], &error) << 4;
5274 color |= get_hex(s[6], &error);
5275 } else if (len == 9) {
5276 outValue->dataType = outValue->TYPE_INT_COLOR_ARGB8;
5277 color |= get_hex(s[1], &error) << 28;
5278 color |= get_hex(s[2], &error) << 24;
5279 color |= get_hex(s[3], &error) << 20;
5280 color |= get_hex(s[4], &error) << 16;
5281 color |= get_hex(s[5], &error) << 12;
5282 color |= get_hex(s[6], &error) << 8;
5283 color |= get_hex(s[7], &error) << 4;
5284 color |= get_hex(s[8], &error);
5285 } else {
5286 error = true;
5287 }
5288 if (!error) {
5289 if ((attrType&ResTable_map::TYPE_COLOR) == 0) {
5290 if (!canStringCoerce) {
5291 if (accessor != NULL) {
5292 accessor->reportError(accessorCookie,
5293 "Color types not allowed");
5294 }
5295 return false;
5296 }
5297 } else {
5298 outValue->data = color;
5299 //printf("Color input=%s, output=0x%x\n", String8(s, len).string(), color);
5300 return true;
5301 }
5302 } else {
5303 if ((attrType&ResTable_map::TYPE_COLOR) != 0) {
5304 if (accessor != NULL) {
5305 accessor->reportError(accessorCookie, "Color value not valid --"
5306 " must be #rgb, #argb, #rrggbb, or #aarrggbb");
5307 }
5308 #if 0
5309 fprintf(stderr, "%s: Color ID %s value %s is not valid\n",
5310 "Resource File", //(const char*)in->getPrintableSource(),
5311 String8(*curTag).string(),
5312 String8(s, len).string());
5313 #endif
5314 return false;
5315 }
5316 }
5317 }
5318
5319 if (*s == '?') {
5320 outValue->dataType = outValue->TYPE_ATTRIBUTE;
5321
5322 // Note: we don't check attrType here because the reference can
5323 // be to any other type; we just need to count on the client making
5324 // sure the referenced type is correct.
5325
5326 //printf("Looking up attr: %s\n", String8(s, len).string());
5327
5328 static const String16 attr16("attr");
5329 String16 package, type, name;
5330 if (!expandResourceRef(s+1, len-1, &package, &type, &name,
5331 &attr16, defPackage, &errorMsg)) {
5332 if (accessor != NULL) {
5333 accessor->reportError(accessorCookie, errorMsg);
5334 }
5335 return false;
5336 }
5337
5338 //printf("Pkg: %s, Type: %s, Name: %s\n",
5339 // String8(package).string(), String8(type).string(),
5340 // String8(name).string());
5341 uint32_t specFlags = 0;
Mark Salyzyn00adb862014-03-19 11:00:06 -07005342 uint32_t rid =
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005343 identifierForName(name.string(), name.size(),
5344 type.string(), type.size(),
5345 package.string(), package.size(), &specFlags);
5346 if (rid != 0) {
5347 if (enforcePrivate) {
5348 if ((specFlags&ResTable_typeSpec::SPEC_PUBLIC) == 0) {
5349 if (accessor != NULL) {
5350 accessor->reportError(accessorCookie, "Attribute is not public.");
5351 }
5352 return false;
5353 }
5354 }
Adam Lesinski8ac51d12016-05-10 10:01:12 -07005355
5356 if (accessor) {
5357 rid = Res_MAKEID(
5358 accessor->getRemappedPackage(Res_GETPACKAGE(rid)),
5359 Res_GETTYPE(rid), Res_GETENTRY(rid));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005360 }
Adam Lesinski8ac51d12016-05-10 10:01:12 -07005361
5362 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5363 if (packageId != APP_PACKAGE_ID && packageId != SYS_PACKAGE_ID) {
5364 outValue->dataType = Res_value::TYPE_DYNAMIC_ATTRIBUTE;
5365 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005366 outValue->data = rid;
5367 return true;
5368 }
5369
5370 if (accessor) {
5371 uint32_t rid = accessor->getCustomResource(package, type, name);
5372 if (rid != 0) {
Adam Lesinski8ac51d12016-05-10 10:01:12 -07005373 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5374 if (packageId == 0x00) {
5375 outValue->data = rid;
5376 outValue->dataType = Res_value::TYPE_DYNAMIC_ATTRIBUTE;
5377 return true;
5378 } else if (packageId == APP_PACKAGE_ID || packageId == SYS_PACKAGE_ID) {
5379 // We accept packageId's generated as 0x01 in order to support
5380 // building the android system resources
5381 outValue->data = rid;
5382 return true;
5383 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005384 }
5385 }
5386
5387 if (accessor != NULL) {
5388 accessor->reportError(accessorCookie, "No resource found that matches the given name");
5389 }
5390 return false;
5391 }
5392
5393 if (stringToInt(s, len, outValue)) {
5394 if ((attrType&ResTable_map::TYPE_INTEGER) == 0) {
5395 // If this type does not allow integers, but does allow floats,
5396 // fall through on this error case because the float type should
5397 // be able to accept any integer value.
5398 if (!canStringCoerce && (attrType&ResTable_map::TYPE_FLOAT) == 0) {
5399 if (accessor != NULL) {
5400 accessor->reportError(accessorCookie, "Integer types not allowed");
5401 }
5402 return false;
5403 }
5404 } else {
5405 if (((int32_t)outValue->data) < ((int32_t)attrMin)
5406 || ((int32_t)outValue->data) > ((int32_t)attrMax)) {
5407 if (accessor != NULL) {
5408 accessor->reportError(accessorCookie, "Integer value out of range");
5409 }
5410 return false;
5411 }
5412 return true;
5413 }
5414 }
5415
5416 if (stringToFloat(s, len, outValue)) {
5417 if (outValue->dataType == Res_value::TYPE_DIMENSION) {
5418 if ((attrType&ResTable_map::TYPE_DIMENSION) != 0) {
5419 return true;
5420 }
5421 if (!canStringCoerce) {
5422 if (accessor != NULL) {
5423 accessor->reportError(accessorCookie, "Dimension types not allowed");
5424 }
5425 return false;
5426 }
5427 } else if (outValue->dataType == Res_value::TYPE_FRACTION) {
5428 if ((attrType&ResTable_map::TYPE_FRACTION) != 0) {
5429 return true;
5430 }
5431 if (!canStringCoerce) {
5432 if (accessor != NULL) {
5433 accessor->reportError(accessorCookie, "Fraction types not allowed");
5434 }
5435 return false;
5436 }
5437 } else if ((attrType&ResTable_map::TYPE_FLOAT) == 0) {
5438 if (!canStringCoerce) {
5439 if (accessor != NULL) {
5440 accessor->reportError(accessorCookie, "Float types not allowed");
5441 }
5442 return false;
5443 }
5444 } else {
5445 return true;
5446 }
5447 }
5448
5449 if (len == 4) {
5450 if ((s[0] == 't' || s[0] == 'T') &&
5451 (s[1] == 'r' || s[1] == 'R') &&
5452 (s[2] == 'u' || s[2] == 'U') &&
5453 (s[3] == 'e' || s[3] == 'E')) {
5454 if ((attrType&ResTable_map::TYPE_BOOLEAN) == 0) {
5455 if (!canStringCoerce) {
5456 if (accessor != NULL) {
5457 accessor->reportError(accessorCookie, "Boolean types not allowed");
5458 }
5459 return false;
5460 }
5461 } else {
5462 outValue->dataType = outValue->TYPE_INT_BOOLEAN;
5463 outValue->data = (uint32_t)-1;
5464 return true;
5465 }
5466 }
5467 }
5468
5469 if (len == 5) {
5470 if ((s[0] == 'f' || s[0] == 'F') &&
5471 (s[1] == 'a' || s[1] == 'A') &&
5472 (s[2] == 'l' || s[2] == 'L') &&
5473 (s[3] == 's' || s[3] == 'S') &&
5474 (s[4] == 'e' || s[4] == 'E')) {
5475 if ((attrType&ResTable_map::TYPE_BOOLEAN) == 0) {
5476 if (!canStringCoerce) {
5477 if (accessor != NULL) {
5478 accessor->reportError(accessorCookie, "Boolean types not allowed");
5479 }
5480 return false;
5481 }
5482 } else {
5483 outValue->dataType = outValue->TYPE_INT_BOOLEAN;
5484 outValue->data = 0;
5485 return true;
5486 }
5487 }
5488 }
5489
5490 if ((attrType&ResTable_map::TYPE_ENUM) != 0) {
5491 const ssize_t p = getResourcePackageIndex(attrID);
5492 const bag_entry* bag;
5493 ssize_t cnt = p >= 0 ? lockBag(attrID, &bag) : -1;
5494 //printf("Got %d for enum\n", cnt);
5495 if (cnt >= 0) {
5496 resource_name rname;
5497 while (cnt > 0) {
5498 if (!Res_INTERNALID(bag->map.name.ident)) {
5499 //printf("Trying attr #%08x\n", bag->map.name.ident);
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07005500 if (getResourceName(bag->map.name.ident, false, &rname)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005501 #if 0
5502 printf("Matching %s against %s (0x%08x)\n",
5503 String8(s, len).string(),
5504 String8(rname.name, rname.nameLen).string(),
5505 bag->map.name.ident);
5506 #endif
5507 if (strzcmp16(s, len, rname.name, rname.nameLen) == 0) {
5508 outValue->dataType = bag->map.value.dataType;
5509 outValue->data = bag->map.value.data;
5510 unlockBag(bag);
5511 return true;
5512 }
5513 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005514
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005515 }
5516 bag++;
5517 cnt--;
5518 }
5519 unlockBag(bag);
5520 }
5521
5522 if (fromAccessor) {
5523 if (accessor->getAttributeEnum(attrID, s, len, outValue)) {
5524 return true;
5525 }
5526 }
5527 }
5528
5529 if ((attrType&ResTable_map::TYPE_FLAGS) != 0) {
5530 const ssize_t p = getResourcePackageIndex(attrID);
5531 const bag_entry* bag;
5532 ssize_t cnt = p >= 0 ? lockBag(attrID, &bag) : -1;
5533 //printf("Got %d for flags\n", cnt);
5534 if (cnt >= 0) {
5535 bool failed = false;
5536 resource_name rname;
5537 outValue->dataType = Res_value::TYPE_INT_HEX;
5538 outValue->data = 0;
5539 const char16_t* end = s + len;
5540 const char16_t* pos = s;
5541 while (pos < end && !failed) {
5542 const char16_t* start = pos;
The Android Open Source Project4df24232009-03-05 14:34:35 -08005543 pos++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005544 while (pos < end && *pos != '|') {
5545 pos++;
5546 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08005547 //printf("Looking for: %s\n", String8(start, pos-start).string());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005548 const bag_entry* bagi = bag;
The Android Open Source Project4df24232009-03-05 14:34:35 -08005549 ssize_t i;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005550 for (i=0; i<cnt; i++, bagi++) {
5551 if (!Res_INTERNALID(bagi->map.name.ident)) {
5552 //printf("Trying attr #%08x\n", bagi->map.name.ident);
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07005553 if (getResourceName(bagi->map.name.ident, false, &rname)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005554 #if 0
5555 printf("Matching %s against %s (0x%08x)\n",
5556 String8(start,pos-start).string(),
5557 String8(rname.name, rname.nameLen).string(),
5558 bagi->map.name.ident);
5559 #endif
5560 if (strzcmp16(start, pos-start, rname.name, rname.nameLen) == 0) {
5561 outValue->data |= bagi->map.value.data;
5562 break;
5563 }
5564 }
5565 }
5566 }
5567 if (i >= cnt) {
5568 // Didn't find this flag identifier.
5569 failed = true;
5570 }
5571 if (pos < end) {
5572 pos++;
5573 }
5574 }
5575 unlockBag(bag);
5576 if (!failed) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08005577 //printf("Final flag value: 0x%lx\n", outValue->data);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005578 return true;
5579 }
5580 }
5581
5582
5583 if (fromAccessor) {
5584 if (accessor->getAttributeFlags(attrID, s, len, outValue)) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08005585 //printf("Final flag value: 0x%lx\n", outValue->data);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005586 return true;
5587 }
5588 }
5589 }
5590
5591 if ((attrType&ResTable_map::TYPE_STRING) == 0) {
5592 if (accessor != NULL) {
5593 accessor->reportError(accessorCookie, "String types not allowed");
5594 }
5595 return false;
5596 }
5597
5598 // Generic string handling...
5599 outValue->dataType = outValue->TYPE_STRING;
5600 if (outString) {
5601 bool failed = collectString(outString, s, len, preserveSpaces, &errorMsg);
5602 if (accessor != NULL) {
5603 accessor->reportError(accessorCookie, errorMsg);
5604 }
5605 return failed;
5606 }
5607
5608 return true;
5609}
5610
5611bool ResTable::collectString(String16* outString,
5612 const char16_t* s, size_t len,
5613 bool preserveSpaces,
5614 const char** outErrorMsg,
5615 bool append)
5616{
5617 String16 tmp;
5618
5619 char quoted = 0;
5620 const char16_t* p = s;
5621 while (p < (s+len)) {
5622 while (p < (s+len)) {
5623 const char16_t c = *p;
5624 if (c == '\\') {
5625 break;
5626 }
5627 if (!preserveSpaces) {
5628 if (quoted == 0 && isspace16(c)
5629 && (c != ' ' || isspace16(*(p+1)))) {
5630 break;
5631 }
5632 if (c == '"' && (quoted == 0 || quoted == '"')) {
5633 break;
5634 }
5635 if (c == '\'' && (quoted == 0 || quoted == '\'')) {
Eric Fischerc87d2522009-09-01 15:20:30 -07005636 /*
5637 * In practice, when people write ' instead of \'
5638 * in a string, they are doing it by accident
5639 * instead of really meaning to use ' as a quoting
5640 * character. Warn them so they don't lose it.
5641 */
5642 if (outErrorMsg) {
5643 *outErrorMsg = "Apostrophe not preceded by \\";
5644 }
5645 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005646 }
5647 }
5648 p++;
5649 }
5650 if (p < (s+len)) {
5651 if (p > s) {
5652 tmp.append(String16(s, p-s));
5653 }
5654 if (!preserveSpaces && (*p == '"' || *p == '\'')) {
5655 if (quoted == 0) {
5656 quoted = *p;
5657 } else {
5658 quoted = 0;
5659 }
5660 p++;
5661 } else if (!preserveSpaces && isspace16(*p)) {
5662 // Space outside of a quote -- consume all spaces and
5663 // leave a single plain space char.
5664 tmp.append(String16(" "));
5665 p++;
5666 while (p < (s+len) && isspace16(*p)) {
5667 p++;
5668 }
5669 } else if (*p == '\\') {
5670 p++;
5671 if (p < (s+len)) {
5672 switch (*p) {
5673 case 't':
5674 tmp.append(String16("\t"));
5675 break;
5676 case 'n':
5677 tmp.append(String16("\n"));
5678 break;
5679 case '#':
5680 tmp.append(String16("#"));
5681 break;
5682 case '@':
5683 tmp.append(String16("@"));
5684 break;
5685 case '?':
5686 tmp.append(String16("?"));
5687 break;
5688 case '"':
5689 tmp.append(String16("\""));
5690 break;
5691 case '\'':
5692 tmp.append(String16("'"));
5693 break;
5694 case '\\':
5695 tmp.append(String16("\\"));
5696 break;
5697 case 'u':
5698 {
5699 char16_t chr = 0;
5700 int i = 0;
5701 while (i < 4 && p[1] != 0) {
5702 p++;
5703 i++;
5704 int c;
5705 if (*p >= '0' && *p <= '9') {
5706 c = *p - '0';
5707 } else if (*p >= 'a' && *p <= 'f') {
5708 c = *p - 'a' + 10;
5709 } else if (*p >= 'A' && *p <= 'F') {
5710 c = *p - 'A' + 10;
5711 } else {
5712 if (outErrorMsg) {
5713 *outErrorMsg = "Bad character in \\u unicode escape sequence";
5714 }
5715 return false;
5716 }
5717 chr = (chr<<4) | c;
5718 }
5719 tmp.append(String16(&chr, 1));
5720 } break;
5721 default:
5722 // ignore unknown escape chars.
5723 break;
5724 }
5725 p++;
5726 }
5727 }
5728 len -= (p-s);
5729 s = p;
5730 }
5731 }
5732
5733 if (tmp.size() != 0) {
5734 if (len > 0) {
5735 tmp.append(String16(s, len));
5736 }
5737 if (append) {
5738 outString->append(tmp);
5739 } else {
5740 outString->setTo(tmp);
5741 }
5742 } else {
5743 if (append) {
5744 outString->append(String16(s, len));
5745 } else {
5746 outString->setTo(s, len);
5747 }
5748 }
5749
5750 return true;
5751}
5752
5753size_t ResTable::getBasePackageCount() const
5754{
5755 if (mError != NO_ERROR) {
5756 return 0;
5757 }
5758 return mPackageGroups.size();
5759}
5760
Adam Lesinskide898ff2014-01-29 18:20:45 -08005761const String16 ResTable::getBasePackageName(size_t idx) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005762{
5763 if (mError != NO_ERROR) {
Adam Lesinskide898ff2014-01-29 18:20:45 -08005764 return String16();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005765 }
5766 LOG_FATAL_IF(idx >= mPackageGroups.size(),
5767 "Requested package index %d past package count %d",
5768 (int)idx, (int)mPackageGroups.size());
Adam Lesinskide898ff2014-01-29 18:20:45 -08005769 return mPackageGroups[idx]->name;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005770}
5771
5772uint32_t ResTable::getBasePackageId(size_t idx) const
5773{
5774 if (mError != NO_ERROR) {
5775 return 0;
5776 }
5777 LOG_FATAL_IF(idx >= mPackageGroups.size(),
5778 "Requested package index %d past package count %d",
5779 (int)idx, (int)mPackageGroups.size());
5780 return mPackageGroups[idx]->id;
5781}
5782
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005783uint32_t ResTable::getLastTypeIdForPackage(size_t idx) const
5784{
5785 if (mError != NO_ERROR) {
5786 return 0;
5787 }
5788 LOG_FATAL_IF(idx >= mPackageGroups.size(),
5789 "Requested package index %d past package count %d",
5790 (int)idx, (int)mPackageGroups.size());
5791 const PackageGroup* const group = mPackageGroups[idx];
5792 return group->largestTypeId;
5793}
5794
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005795size_t ResTable::getTableCount() const
5796{
5797 return mHeaders.size();
5798}
5799
5800const ResStringPool* ResTable::getTableStringBlock(size_t index) const
5801{
5802 return &mHeaders[index]->values;
5803}
5804
Narayan Kamath7c4887f2014-01-27 17:32:37 +00005805int32_t ResTable::getTableCookie(size_t index) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005806{
5807 return mHeaders[index]->cookie;
5808}
5809
Adam Lesinskide898ff2014-01-29 18:20:45 -08005810const DynamicRefTable* ResTable::getDynamicRefTableForCookie(int32_t cookie) const
5811{
5812 const size_t N = mPackageGroups.size();
5813 for (size_t i = 0; i < N; i++) {
5814 const PackageGroup* pg = mPackageGroups[i];
5815 size_t M = pg->packages.size();
5816 for (size_t j = 0; j < M; j++) {
5817 if (pg->packages[j]->header->cookie == cookie) {
5818 return &pg->dynamicRefTable;
5819 }
5820 }
5821 }
5822 return NULL;
5823}
5824
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005825static bool compareResTableConfig(const ResTable_config& a, const ResTable_config& b) {
5826 return a.compare(b) < 0;
5827}
5828
Adam Lesinski76da37e2016-05-19 18:25:28 -07005829template <typename Func>
5830void ResTable::forEachConfiguration(bool ignoreMipmap, bool ignoreAndroidPackage,
5831 bool includeSystemConfigs, const Func& f) const {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005832 const size_t packageCount = mPackageGroups.size();
Adam Lesinski76da37e2016-05-19 18:25:28 -07005833 const String16 android("android");
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005834 for (size_t i = 0; i < packageCount; i++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005835 const PackageGroup* packageGroup = mPackageGroups[i];
Filip Gruszczynski23493322015-07-29 17:02:59 -07005836 if (ignoreAndroidPackage && android == packageGroup->name) {
5837 continue;
5838 }
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08005839 if (!includeSystemConfigs && packageGroup->isSystemAsset) {
5840 continue;
5841 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005842 const size_t typeCount = packageGroup->types.size();
5843 for (size_t j = 0; j < typeCount; j++) {
5844 const TypeList& typeList = packageGroup->types[j];
5845 const size_t numTypes = typeList.size();
5846 for (size_t k = 0; k < numTypes; k++) {
5847 const Type* type = typeList[k];
Adam Lesinski42eea272015-01-15 17:01:39 -08005848 const ResStringPool& typeStrings = type->package->typeStrings;
5849 if (ignoreMipmap && typeStrings.string8ObjectAt(
5850 type->typeSpec->id - 1) == "mipmap") {
5851 continue;
5852 }
5853
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005854 const size_t numConfigs = type->configs.size();
5855 for (size_t m = 0; m < numConfigs; m++) {
5856 const ResTable_type* config = type->configs[m];
Narayan Kamath788fa412014-01-21 15:32:36 +00005857 ResTable_config cfg;
5858 memset(&cfg, 0, sizeof(ResTable_config));
5859 cfg.copyFromDtoH(config->config);
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005860
Adam Lesinski76da37e2016-05-19 18:25:28 -07005861 f(cfg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005862 }
5863 }
5864 }
5865 }
5866}
5867
Adam Lesinski76da37e2016-05-19 18:25:28 -07005868void ResTable::getConfigurations(Vector<ResTable_config>* configs, bool ignoreMipmap,
5869 bool ignoreAndroidPackage, bool includeSystemConfigs) const {
5870 auto func = [&](const ResTable_config& cfg) {
5871 const auto beginIter = configs->begin();
5872 const auto endIter = configs->end();
5873
5874 auto iter = std::lower_bound(beginIter, endIter, cfg, compareResTableConfig);
5875 if (iter == endIter || iter->compare(cfg) != 0) {
5876 configs->insertAt(cfg, std::distance(beginIter, iter));
5877 }
5878 };
5879 forEachConfiguration(ignoreMipmap, ignoreAndroidPackage, includeSystemConfigs, func);
5880}
5881
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005882static bool compareString8AndCString(const String8& str, const char* cStr) {
5883 return strcmp(str.string(), cStr) < 0;
5884}
5885
Adam Lesinski76da37e2016-05-19 18:25:28 -07005886void ResTable::getLocales(Vector<String8>* locales, bool includeSystemLocales) const {
Narayan Kamath48620f12014-01-20 13:57:11 +00005887 char locale[RESTABLE_MAX_LOCALE_LEN];
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005888
Adam Lesinski76da37e2016-05-19 18:25:28 -07005889 forEachConfiguration(false, false, includeSystemLocales, [&](const ResTable_config& cfg) {
5890 if (cfg.locale != 0) {
5891 cfg.getBcp47Locale(locale);
5892
5893 const auto beginIter = locales->begin();
5894 const auto endIter = locales->end();
5895
5896 auto iter = std::lower_bound(beginIter, endIter, locale, compareString8AndCString);
5897 if (iter == endIter || strcmp(iter->string(), locale) != 0) {
5898 locales->insertAt(String8(locale), std::distance(beginIter, iter));
5899 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005900 }
Adam Lesinski76da37e2016-05-19 18:25:28 -07005901 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005902}
5903
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005904StringPoolRef::StringPoolRef(const ResStringPool* pool, uint32_t index)
5905 : mPool(pool), mIndex(index) {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005906
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005907StringPoolRef::StringPoolRef()
5908 : mPool(NULL), mIndex(0) {}
5909
5910const char* StringPoolRef::string8(size_t* outLen) const {
5911 if (mPool != NULL) {
5912 return mPool->string8At(mIndex, outLen);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005913 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005914 if (outLen != NULL) {
5915 *outLen = 0;
5916 }
5917 return NULL;
5918}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005919
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005920const char16_t* StringPoolRef::string16(size_t* outLen) const {
5921 if (mPool != NULL) {
5922 return mPool->stringAt(mIndex, outLen);
5923 }
5924 if (outLen != NULL) {
5925 *outLen = 0;
5926 }
5927 return NULL;
5928}
5929
Adam Lesinski82a2dd82014-09-17 18:34:15 -07005930bool ResTable::getResourceFlags(uint32_t resID, uint32_t* outFlags) const {
5931 if (mError != NO_ERROR) {
5932 return false;
5933 }
5934
5935 const ssize_t p = getResourcePackageIndex(resID);
5936 const int t = Res_GETTYPE(resID);
5937 const int e = Res_GETENTRY(resID);
5938
5939 if (p < 0) {
5940 if (Res_GETPACKAGE(resID)+1 == 0) {
5941 ALOGW("No package identifier when getting flags for resource number 0x%08x", resID);
5942 } else {
5943 ALOGW("No known package when getting flags for resource number 0x%08x", resID);
5944 }
5945 return false;
5946 }
5947 if (t < 0) {
5948 ALOGW("No type identifier when getting flags for resource number 0x%08x", resID);
5949 return false;
5950 }
5951
5952 const PackageGroup* const grp = mPackageGroups[p];
5953 if (grp == NULL) {
5954 ALOGW("Bad identifier when getting flags for resource number 0x%08x", resID);
5955 return false;
5956 }
5957
5958 Entry entry;
5959 status_t err = getEntry(grp, t, e, NULL, &entry);
5960 if (err != NO_ERROR) {
5961 return false;
5962 }
5963
5964 *outFlags = entry.specFlags;
5965 return true;
5966}
5967
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005968status_t ResTable::getEntry(
5969 const PackageGroup* packageGroup, int typeIndex, int entryIndex,
5970 const ResTable_config* config,
5971 Entry* outEntry) const
5972{
5973 const TypeList& typeList = packageGroup->types[typeIndex];
5974 if (typeList.isEmpty()) {
5975 ALOGV("Skipping entry type index 0x%02x because type is NULL!\n", typeIndex);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005976 return BAD_TYPE;
5977 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005978
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005979 const ResTable_type* bestType = NULL;
5980 uint32_t bestOffset = ResTable_type::NO_ENTRY;
5981 const Package* bestPackage = NULL;
5982 uint32_t specFlags = 0;
5983 uint8_t actualTypeIndex = typeIndex;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005984 ResTable_config bestConfig;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005985 memset(&bestConfig, 0, sizeof(bestConfig));
Mark Salyzyn00adb862014-03-19 11:00:06 -07005986
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005987 // Iterate over the Types of each package.
5988 const size_t typeCount = typeList.size();
5989 for (size_t i = 0; i < typeCount; i++) {
5990 const Type* const typeSpec = typeList[i];
Mark Salyzyn00adb862014-03-19 11:00:06 -07005991
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005992 int realEntryIndex = entryIndex;
5993 int realTypeIndex = typeIndex;
5994 bool currentTypeIsOverlay = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005995
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005996 // Runtime overlay packages provide a mapping of app resource
5997 // ID to package resource ID.
5998 if (typeSpec->idmapEntries.hasEntries()) {
5999 uint16_t overlayEntryIndex;
6000 if (typeSpec->idmapEntries.lookup(entryIndex, &overlayEntryIndex) != NO_ERROR) {
6001 // No such mapping exists
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006002 continue;
6003 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006004 realEntryIndex = overlayEntryIndex;
6005 realTypeIndex = typeSpec->idmapEntries.overlayTypeId() - 1;
6006 currentTypeIsOverlay = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006007 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006008
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006009 if (static_cast<size_t>(realEntryIndex) >= typeSpec->entryCount) {
6010 ALOGW("For resource 0x%08x, entry index(%d) is beyond type entryCount(%d)",
6011 Res_MAKEID(packageGroup->id - 1, typeIndex, entryIndex),
6012 entryIndex, static_cast<int>(typeSpec->entryCount));
6013 // We should normally abort here, but some legacy apps declare
6014 // resources in the 'android' package (old bug in AAPT).
6015 continue;
6016 }
6017
6018 // Aggregate all the flags for each package that defines this entry.
6019 if (typeSpec->typeSpecFlags != NULL) {
6020 specFlags |= dtohl(typeSpec->typeSpecFlags[realEntryIndex]);
6021 } else {
6022 specFlags = -1;
6023 }
6024
Adam Lesinskiff5808d2016-02-23 17:49:53 -08006025 const Vector<const ResTable_type*>* candidateConfigs = &typeSpec->configs;
6026
6027 std::shared_ptr<Vector<const ResTable_type*>> filteredConfigs;
6028 if (config && memcmp(&mParams, config, sizeof(mParams)) == 0) {
6029 // Grab the lock first so we can safely get the current filtered list.
6030 AutoMutex _lock(mFilteredConfigLock);
6031
6032 // This configuration is equal to the one we have previously cached for,
6033 // so use the filtered configs.
6034
6035 const TypeCacheEntry& cacheEntry = packageGroup->typeCacheEntries[typeIndex];
6036 if (i < cacheEntry.filteredConfigs.size()) {
6037 if (cacheEntry.filteredConfigs[i]) {
6038 // Grab a reference to the shared_ptr so it doesn't get destroyed while
6039 // going through this list.
6040 filteredConfigs = cacheEntry.filteredConfigs[i];
6041
6042 // Use this filtered list.
6043 candidateConfigs = filteredConfigs.get();
6044 }
6045 }
6046 }
6047
6048 const size_t numConfigs = candidateConfigs->size();
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006049 for (size_t c = 0; c < numConfigs; c++) {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08006050 const ResTable_type* const thisType = candidateConfigs->itemAt(c);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006051 if (thisType == NULL) {
6052 continue;
6053 }
6054
6055 ResTable_config thisConfig;
6056 thisConfig.copyFromDtoH(thisType->config);
6057
6058 // Check to make sure this one is valid for the current parameters.
6059 if (config != NULL && !thisConfig.match(*config)) {
6060 continue;
6061 }
6062
6063 // Check if there is the desired entry in this type.
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006064 const uint32_t* const eindex = reinterpret_cast<const uint32_t*>(
6065 reinterpret_cast<const uint8_t*>(thisType) + dtohs(thisType->header.headerSize));
6066
6067 uint32_t thisOffset = dtohl(eindex[realEntryIndex]);
6068 if (thisOffset == ResTable_type::NO_ENTRY) {
6069 // There is no entry for this index and configuration.
6070 continue;
6071 }
6072
6073 if (bestType != NULL) {
6074 // Check if this one is less specific than the last found. If so,
6075 // we will skip it. We check starting with things we most care
6076 // about to those we least care about.
6077 if (!thisConfig.isBetterThan(bestConfig, config)) {
6078 if (!currentTypeIsOverlay || thisConfig.compare(bestConfig) != 0) {
6079 continue;
6080 }
6081 }
6082 }
6083
6084 bestType = thisType;
6085 bestOffset = thisOffset;
6086 bestConfig = thisConfig;
6087 bestPackage = typeSpec->package;
6088 actualTypeIndex = realTypeIndex;
6089
6090 // If no config was specified, any type will do, so skip
6091 if (config == NULL) {
6092 break;
6093 }
6094 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006095 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006096
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006097 if (bestType == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006098 return BAD_INDEX;
6099 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006100
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006101 bestOffset += dtohl(bestType->entriesStart);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006102
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006103 if (bestOffset > (dtohl(bestType->header.size)-sizeof(ResTable_entry))) {
Steve Block8564c8d2012-01-05 23:22:43 +00006104 ALOGW("ResTable_entry at 0x%x is beyond type chunk data 0x%x",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006105 bestOffset, dtohl(bestType->header.size));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006106 return BAD_TYPE;
6107 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006108 if ((bestOffset & 0x3) != 0) {
6109 ALOGW("ResTable_entry at 0x%x is not on an integer boundary", bestOffset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006110 return BAD_TYPE;
6111 }
6112
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006113 const ResTable_entry* const entry = reinterpret_cast<const ResTable_entry*>(
6114 reinterpret_cast<const uint8_t*>(bestType) + bestOffset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006115 if (dtohs(entry->size) < sizeof(*entry)) {
Steve Block8564c8d2012-01-05 23:22:43 +00006116 ALOGW("ResTable_entry size 0x%x is too small", dtohs(entry->size));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006117 return BAD_TYPE;
6118 }
6119
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006120 if (outEntry != NULL) {
6121 outEntry->entry = entry;
6122 outEntry->config = bestConfig;
6123 outEntry->type = bestType;
6124 outEntry->specFlags = specFlags;
6125 outEntry->package = bestPackage;
6126 outEntry->typeStr = StringPoolRef(&bestPackage->typeStrings, actualTypeIndex - bestPackage->typeIdOffset);
6127 outEntry->keyStr = StringPoolRef(&bestPackage->keyStrings, dtohl(entry->key.index));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006128 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006129 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006130}
6131
6132status_t ResTable::parsePackage(const ResTable_package* const pkg,
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08006133 const Header* const header, bool appAsLib, bool isSystemAsset)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006134{
6135 const uint8_t* base = (const uint8_t*)pkg;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006136 status_t err = validate_chunk(&pkg->header, sizeof(*pkg) - sizeof(pkg->typeIdOffset),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006137 header->dataEnd, "ResTable_package");
6138 if (err != NO_ERROR) {
6139 return (mError=err);
6140 }
6141
Patrik Bannura443dd932014-02-12 13:38:54 +01006142 const uint32_t pkgSize = dtohl(pkg->header.size);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006143
6144 if (dtohl(pkg->typeStrings) >= pkgSize) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006145 ALOGW("ResTable_package type strings at 0x%x are past chunk size 0x%x.",
6146 dtohl(pkg->typeStrings), pkgSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006147 return (mError=BAD_TYPE);
6148 }
6149 if ((dtohl(pkg->typeStrings)&0x3) != 0) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006150 ALOGW("ResTable_package type strings at 0x%x is not on an integer boundary.",
6151 dtohl(pkg->typeStrings));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006152 return (mError=BAD_TYPE);
6153 }
6154 if (dtohl(pkg->keyStrings) >= pkgSize) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006155 ALOGW("ResTable_package key strings at 0x%x are past chunk size 0x%x.",
6156 dtohl(pkg->keyStrings), pkgSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006157 return (mError=BAD_TYPE);
6158 }
6159 if ((dtohl(pkg->keyStrings)&0x3) != 0) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006160 ALOGW("ResTable_package key strings at 0x%x is not on an integer boundary.",
6161 dtohl(pkg->keyStrings));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006162 return (mError=BAD_TYPE);
6163 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006164
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006165 uint32_t id = dtohl(pkg->id);
6166 KeyedVector<uint8_t, IdmapEntries> idmapEntries;
Mark Salyzyn00adb862014-03-19 11:00:06 -07006167
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006168 if (header->resourceIDMap != NULL) {
6169 uint8_t targetPackageId = 0;
6170 status_t err = parseIdmap(header->resourceIDMap, header->resourceIDMapSize, &targetPackageId, &idmapEntries);
6171 if (err != NO_ERROR) {
6172 ALOGW("Overlay is broken");
6173 return (mError=err);
6174 }
6175 id = targetPackageId;
6176 }
6177
6178 if (id >= 256) {
6179 LOG_ALWAYS_FATAL("Package id out of range");
6180 return NO_ERROR;
Adam Lesinski25f48882016-06-14 11:05:23 -07006181 } else if (id == 0 || (id == 0x7f && appAsLib) || isSystemAsset) {
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08006182 // This is a library or a system asset, so assign an ID
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006183 id = mNextPackageId++;
6184 }
6185
6186 PackageGroup* group = NULL;
6187 Package* package = new Package(this, header, pkg);
6188 if (package == NULL) {
6189 return (mError=NO_MEMORY);
6190 }
6191
6192 err = package->typeStrings.setTo(base+dtohl(pkg->typeStrings),
6193 header->dataEnd-(base+dtohl(pkg->typeStrings)));
6194 if (err != NO_ERROR) {
6195 delete group;
6196 delete package;
6197 return (mError=err);
6198 }
6199
6200 err = package->keyStrings.setTo(base+dtohl(pkg->keyStrings),
6201 header->dataEnd-(base+dtohl(pkg->keyStrings)));
6202 if (err != NO_ERROR) {
6203 delete group;
6204 delete package;
6205 return (mError=err);
6206 }
6207
6208 size_t idx = mPackageMap[id];
6209 if (idx == 0) {
6210 idx = mPackageGroups.size() + 1;
6211
Adam Lesinski4bf58102014-11-03 11:21:19 -08006212 char16_t tmpName[sizeof(pkg->name)/sizeof(pkg->name[0])];
6213 strcpy16_dtoh(tmpName, pkg->name, sizeof(pkg->name)/sizeof(pkg->name[0]));
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08006214 group = new PackageGroup(this, String16(tmpName), id, appAsLib, isSystemAsset);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006215 if (group == NULL) {
6216 delete package;
Dianne Hackborn78c40512009-07-06 11:07:40 -07006217 return (mError=NO_MEMORY);
6218 }
Adam Lesinskifab50872014-04-16 14:40:42 -07006219
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006220 err = mPackageGroups.add(group);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006221 if (err < NO_ERROR) {
6222 return (mError=err);
6223 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006224
6225 mPackageMap[id] = static_cast<uint8_t>(idx);
6226
6227 // Find all packages that reference this package
6228 size_t N = mPackageGroups.size();
6229 for (size_t i = 0; i < N; i++) {
6230 mPackageGroups[i]->dynamicRefTable.addMapping(
6231 group->name, static_cast<uint8_t>(group->id));
6232 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006233 } else {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006234 group = mPackageGroups.itemAt(idx - 1);
6235 if (group == NULL) {
6236 return (mError=UNKNOWN_ERROR);
6237 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006238 }
6239
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006240 err = group->packages.add(package);
6241 if (err < NO_ERROR) {
6242 return (mError=err);
6243 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006244
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006245 // Iterate through all chunks.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006246 const ResChunk_header* chunk =
6247 (const ResChunk_header*)(((const uint8_t*)pkg)
6248 + dtohs(pkg->header.headerSize));
6249 const uint8_t* endPos = ((const uint8_t*)pkg) + dtohs(pkg->header.size);
6250 while (((const uint8_t*)chunk) <= (endPos-sizeof(ResChunk_header)) &&
6251 ((const uint8_t*)chunk) <= (endPos-dtohl(chunk->size))) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006252 if (kDebugTableNoisy) {
6253 ALOGV("PackageChunk: type=0x%x, headerSize=0x%x, size=0x%x, pos=%p\n",
6254 dtohs(chunk->type), dtohs(chunk->headerSize), dtohl(chunk->size),
6255 (void*)(((const uint8_t*)chunk) - ((const uint8_t*)header->header)));
6256 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006257 const size_t csize = dtohl(chunk->size);
6258 const uint16_t ctype = dtohs(chunk->type);
6259 if (ctype == RES_TABLE_TYPE_SPEC_TYPE) {
6260 const ResTable_typeSpec* typeSpec = (const ResTable_typeSpec*)(chunk);
6261 err = validate_chunk(&typeSpec->header, sizeof(*typeSpec),
6262 endPos, "ResTable_typeSpec");
6263 if (err != NO_ERROR) {
6264 return (mError=err);
6265 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006267 const size_t typeSpecSize = dtohl(typeSpec->header.size);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006268 const size_t newEntryCount = dtohl(typeSpec->entryCount);
Mark Salyzyn00adb862014-03-19 11:00:06 -07006269
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006270 if (kDebugLoadTableNoisy) {
6271 ALOGI("TypeSpec off %p: type=0x%x, headerSize=0x%x, size=%p\n",
6272 (void*)(base-(const uint8_t*)chunk),
6273 dtohs(typeSpec->header.type),
6274 dtohs(typeSpec->header.headerSize),
6275 (void*)typeSpecSize);
6276 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006277 // look for block overrun or int overflow when multiplying by 4
6278 if ((dtohl(typeSpec->entryCount) > (INT32_MAX/sizeof(uint32_t))
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006279 || dtohs(typeSpec->header.headerSize)+(sizeof(uint32_t)*newEntryCount)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006280 > typeSpecSize)) {
Steve Block8564c8d2012-01-05 23:22:43 +00006281 ALOGW("ResTable_typeSpec entry index to %p extends beyond chunk end %p.",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006282 (void*)(dtohs(typeSpec->header.headerSize) + (sizeof(uint32_t)*newEntryCount)),
6283 (void*)typeSpecSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006284 return (mError=BAD_TYPE);
6285 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006287 if (typeSpec->id == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00006288 ALOGW("ResTable_type has an id of 0.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006289 return (mError=BAD_TYPE);
6290 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006291
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006292 if (newEntryCount > 0) {
6293 uint8_t typeIndex = typeSpec->id - 1;
6294 ssize_t idmapIndex = idmapEntries.indexOfKey(typeSpec->id);
6295 if (idmapIndex >= 0) {
6296 typeIndex = idmapEntries[idmapIndex].targetTypeId() - 1;
6297 }
6298
6299 TypeList& typeList = group->types.editItemAt(typeIndex);
6300 if (!typeList.isEmpty()) {
6301 const Type* existingType = typeList[0];
6302 if (existingType->entryCount != newEntryCount && idmapIndex < 0) {
6303 ALOGW("ResTable_typeSpec entry count inconsistent: given %d, previously %d",
6304 (int) newEntryCount, (int) existingType->entryCount);
6305 // We should normally abort here, but some legacy apps declare
6306 // resources in the 'android' package (old bug in AAPT).
6307 }
6308 }
6309
6310 Type* t = new Type(header, package, newEntryCount);
6311 t->typeSpec = typeSpec;
6312 t->typeSpecFlags = (const uint32_t*)(
6313 ((const uint8_t*)typeSpec) + dtohs(typeSpec->header.headerSize));
6314 if (idmapIndex >= 0) {
6315 t->idmapEntries = idmapEntries[idmapIndex];
6316 }
6317 typeList.add(t);
6318 group->largestTypeId = max(group->largestTypeId, typeSpec->id);
6319 } else {
6320 ALOGV("Skipping empty ResTable_typeSpec for type %d", typeSpec->id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006321 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006322
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006323 } else if (ctype == RES_TABLE_TYPE_TYPE) {
6324 const ResTable_type* type = (const ResTable_type*)(chunk);
6325 err = validate_chunk(&type->header, sizeof(*type)-sizeof(ResTable_config)+4,
6326 endPos, "ResTable_type");
6327 if (err != NO_ERROR) {
6328 return (mError=err);
6329 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006330
Patrik Bannura443dd932014-02-12 13:38:54 +01006331 const uint32_t typeSize = dtohl(type->header.size);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006332 const size_t newEntryCount = dtohl(type->entryCount);
Mark Salyzyn00adb862014-03-19 11:00:06 -07006333
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006334 if (kDebugLoadTableNoisy) {
6335 printf("Type off %p: type=0x%x, headerSize=0x%x, size=%u\n",
6336 (void*)(base-(const uint8_t*)chunk),
6337 dtohs(type->header.type),
6338 dtohs(type->header.headerSize),
6339 typeSize);
6340 }
6341 if (dtohs(type->header.headerSize)+(sizeof(uint32_t)*newEntryCount) > typeSize) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006342 ALOGW("ResTable_type entry index to %p extends beyond chunk end 0x%x.",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006343 (void*)(dtohs(type->header.headerSize) + (sizeof(uint32_t)*newEntryCount)),
6344 typeSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006345 return (mError=BAD_TYPE);
6346 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006347
6348 if (newEntryCount != 0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006349 && dtohl(type->entriesStart) > (typeSize-sizeof(ResTable_entry))) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006350 ALOGW("ResTable_type entriesStart at 0x%x extends beyond chunk end 0x%x.",
6351 dtohl(type->entriesStart), typeSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006352 return (mError=BAD_TYPE);
6353 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006354
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006355 if (type->id == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00006356 ALOGW("ResTable_type has an id of 0.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006357 return (mError=BAD_TYPE);
6358 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006359
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006360 if (newEntryCount > 0) {
6361 uint8_t typeIndex = type->id - 1;
6362 ssize_t idmapIndex = idmapEntries.indexOfKey(type->id);
6363 if (idmapIndex >= 0) {
6364 typeIndex = idmapEntries[idmapIndex].targetTypeId() - 1;
6365 }
6366
6367 TypeList& typeList = group->types.editItemAt(typeIndex);
6368 if (typeList.isEmpty()) {
6369 ALOGE("No TypeSpec for type %d", type->id);
6370 return (mError=BAD_TYPE);
6371 }
6372
6373 Type* t = typeList.editItemAt(typeList.size() - 1);
6374 if (newEntryCount != t->entryCount) {
6375 ALOGE("ResTable_type entry count inconsistent: given %d, previously %d",
6376 (int)newEntryCount, (int)t->entryCount);
6377 return (mError=BAD_TYPE);
6378 }
6379
6380 if (t->package != package) {
6381 ALOGE("No TypeSpec for type %d", type->id);
6382 return (mError=BAD_TYPE);
6383 }
6384
6385 t->configs.add(type);
6386
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006387 if (kDebugTableGetEntry) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006388 ResTable_config thisConfig;
6389 thisConfig.copyFromDtoH(type->config);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006390 ALOGI("Adding config to type %d: %s\n", type->id,
6391 thisConfig.toString().string());
6392 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006393 } else {
6394 ALOGV("Skipping empty ResTable_type for type %d", type->id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006395 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006396
Adam Lesinskide898ff2014-01-29 18:20:45 -08006397 } else if (ctype == RES_TABLE_LIBRARY_TYPE) {
6398 if (group->dynamicRefTable.entries().size() == 0) {
6399 status_t err = group->dynamicRefTable.load((const ResTable_lib_header*) chunk);
6400 if (err != NO_ERROR) {
6401 return (mError=err);
6402 }
6403
6404 // Fill in the reference table with the entries we already know about.
6405 size_t N = mPackageGroups.size();
6406 for (size_t i = 0; i < N; i++) {
6407 group->dynamicRefTable.addMapping(mPackageGroups[i]->name, mPackageGroups[i]->id);
6408 }
6409 } else {
6410 ALOGW("Found multiple library tables, ignoring...");
6411 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006412 } else {
6413 status_t err = validate_chunk(chunk, sizeof(ResChunk_header),
6414 endPos, "ResTable_package:unknown");
6415 if (err != NO_ERROR) {
6416 return (mError=err);
6417 }
6418 }
6419 chunk = (const ResChunk_header*)
6420 (((const uint8_t*)chunk) + csize);
6421 }
6422
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006423 return NO_ERROR;
6424}
6425
Tao Baia6d7e3f2015-09-01 18:49:54 -07006426DynamicRefTable::DynamicRefTable(uint8_t packageId, bool appAsLib)
Adam Lesinskide898ff2014-01-29 18:20:45 -08006427 : mAssignedPackageId(packageId)
Tao Baia6d7e3f2015-09-01 18:49:54 -07006428 , mAppAsLib(appAsLib)
Adam Lesinskide898ff2014-01-29 18:20:45 -08006429{
6430 memset(mLookupTable, 0, sizeof(mLookupTable));
6431
6432 // Reserved package ids
6433 mLookupTable[APP_PACKAGE_ID] = APP_PACKAGE_ID;
6434 mLookupTable[SYS_PACKAGE_ID] = SYS_PACKAGE_ID;
6435}
6436
6437status_t DynamicRefTable::load(const ResTable_lib_header* const header)
6438{
6439 const uint32_t entryCount = dtohl(header->count);
6440 const uint32_t sizeOfEntries = sizeof(ResTable_lib_entry) * entryCount;
6441 const uint32_t expectedSize = dtohl(header->header.size) - dtohl(header->header.headerSize);
6442 if (sizeOfEntries > expectedSize) {
6443 ALOGE("ResTable_lib_header size %u is too small to fit %u entries (x %u).",
6444 expectedSize, entryCount, (uint32_t)sizeof(ResTable_lib_entry));
6445 return UNKNOWN_ERROR;
6446 }
6447
6448 const ResTable_lib_entry* entry = (const ResTable_lib_entry*)(((uint8_t*) header) +
6449 dtohl(header->header.headerSize));
6450 for (uint32_t entryIndex = 0; entryIndex < entryCount; entryIndex++) {
6451 uint32_t packageId = dtohl(entry->packageId);
6452 char16_t tmpName[sizeof(entry->packageName) / sizeof(char16_t)];
6453 strcpy16_dtoh(tmpName, entry->packageName, sizeof(entry->packageName) / sizeof(char16_t));
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006454 if (kDebugLibNoisy) {
6455 ALOGV("Found lib entry %s with id %d\n", String8(tmpName).string(),
6456 dtohl(entry->packageId));
6457 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08006458 if (packageId >= 256) {
6459 ALOGE("Bad package id 0x%08x", packageId);
6460 return UNKNOWN_ERROR;
6461 }
6462 mEntries.replaceValueFor(String16(tmpName), (uint8_t) packageId);
6463 entry = entry + 1;
6464 }
6465 return NO_ERROR;
6466}
6467
Adam Lesinski6022deb2014-08-20 14:59:19 -07006468status_t DynamicRefTable::addMappings(const DynamicRefTable& other) {
6469 if (mAssignedPackageId != other.mAssignedPackageId) {
6470 return UNKNOWN_ERROR;
6471 }
6472
6473 const size_t entryCount = other.mEntries.size();
6474 for (size_t i = 0; i < entryCount; i++) {
6475 ssize_t index = mEntries.indexOfKey(other.mEntries.keyAt(i));
6476 if (index < 0) {
6477 mEntries.add(other.mEntries.keyAt(i), other.mEntries[i]);
6478 } else {
6479 if (other.mEntries[i] != mEntries[index]) {
6480 return UNKNOWN_ERROR;
6481 }
6482 }
6483 }
6484
6485 // Merge the lookup table. No entry can conflict
6486 // (value of 0 means not set).
6487 for (size_t i = 0; i < 256; i++) {
6488 if (mLookupTable[i] != other.mLookupTable[i]) {
6489 if (mLookupTable[i] == 0) {
6490 mLookupTable[i] = other.mLookupTable[i];
6491 } else if (other.mLookupTable[i] != 0) {
6492 return UNKNOWN_ERROR;
6493 }
6494 }
6495 }
6496 return NO_ERROR;
6497}
6498
Adam Lesinskide898ff2014-01-29 18:20:45 -08006499status_t DynamicRefTable::addMapping(const String16& packageName, uint8_t packageId)
6500{
6501 ssize_t index = mEntries.indexOfKey(packageName);
6502 if (index < 0) {
6503 return UNKNOWN_ERROR;
6504 }
6505 mLookupTable[mEntries.valueAt(index)] = packageId;
6506 return NO_ERROR;
6507}
6508
6509status_t DynamicRefTable::lookupResourceId(uint32_t* resId) const {
6510 uint32_t res = *resId;
6511 size_t packageId = Res_GETPACKAGE(res) + 1;
6512
Tao Baia6d7e3f2015-09-01 18:49:54 -07006513 if (packageId == APP_PACKAGE_ID && !mAppAsLib) {
Adam Lesinskide898ff2014-01-29 18:20:45 -08006514 // No lookup needs to be done, app package IDs are absolute.
6515 return NO_ERROR;
6516 }
6517
Tao Baia6d7e3f2015-09-01 18:49:54 -07006518 if (packageId == 0 || (packageId == APP_PACKAGE_ID && mAppAsLib)) {
Adam Lesinskide898ff2014-01-29 18:20:45 -08006519 // The package ID is 0x00. That means that a shared library is accessing
Tao Baia6d7e3f2015-09-01 18:49:54 -07006520 // its own local resource.
6521 // Or if app resource is loaded as shared library, the resource which has
6522 // app package Id is local resources.
6523 // so we fix up those resources with the calling package ID.
6524 *resId = (0xFFFFFF & (*resId)) | (((uint32_t) mAssignedPackageId) << 24);
Adam Lesinskide898ff2014-01-29 18:20:45 -08006525 return NO_ERROR;
6526 }
6527
6528 // Do a proper lookup.
6529 uint8_t translatedId = mLookupTable[packageId];
6530 if (translatedId == 0) {
Adam Lesinskia7d1d732014-10-01 18:24:54 -07006531 ALOGV("DynamicRefTable(0x%02x): No mapping for build-time package ID 0x%02x.",
Adam Lesinskide898ff2014-01-29 18:20:45 -08006532 (uint8_t)mAssignedPackageId, (uint8_t)packageId);
6533 for (size_t i = 0; i < 256; i++) {
6534 if (mLookupTable[i] != 0) {
Adam Lesinskia7d1d732014-10-01 18:24:54 -07006535 ALOGV("e[0x%02x] -> 0x%02x", (uint8_t)i, mLookupTable[i]);
Adam Lesinskide898ff2014-01-29 18:20:45 -08006536 }
6537 }
6538 return UNKNOWN_ERROR;
6539 }
6540
6541 *resId = (res & 0x00ffffff) | (((uint32_t) translatedId) << 24);
6542 return NO_ERROR;
6543}
6544
6545status_t DynamicRefTable::lookupResourceValue(Res_value* value) const {
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006546 uint8_t resolvedType = Res_value::TYPE_REFERENCE;
6547 switch (value->dataType) {
6548 case Res_value::TYPE_ATTRIBUTE:
6549 resolvedType = Res_value::TYPE_ATTRIBUTE;
6550 // fallthrough
6551 case Res_value::TYPE_REFERENCE:
6552 if (!mAppAsLib) {
6553 return NO_ERROR;
6554 }
6555
Tao Baia6d7e3f2015-09-01 18:49:54 -07006556 // If the package is loaded as shared library, the resource reference
6557 // also need to be fixed.
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006558 break;
6559 case Res_value::TYPE_DYNAMIC_ATTRIBUTE:
6560 resolvedType = Res_value::TYPE_ATTRIBUTE;
6561 // fallthrough
6562 case Res_value::TYPE_DYNAMIC_REFERENCE:
6563 break;
6564 default:
Adam Lesinskide898ff2014-01-29 18:20:45 -08006565 return NO_ERROR;
6566 }
6567
6568 status_t err = lookupResourceId(&value->data);
6569 if (err != NO_ERROR) {
6570 return err;
6571 }
6572
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006573 value->dataType = resolvedType;
Adam Lesinskide898ff2014-01-29 18:20:45 -08006574 return NO_ERROR;
6575}
6576
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006577struct IdmapTypeMap {
6578 ssize_t overlayTypeId;
6579 size_t entryOffset;
6580 Vector<uint32_t> entryMap;
6581};
6582
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006583status_t ResTable::createIdmap(const ResTable& overlay,
6584 uint32_t targetCrc, uint32_t overlayCrc,
6585 const char* targetPath, const char* overlayPath,
6586 void** outData, size_t* outSize) const
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006587{
6588 // see README for details on the format of map
6589 if (mPackageGroups.size() == 0) {
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006590 ALOGW("idmap: target package has no package groups, cannot create idmap\n");
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006591 return UNKNOWN_ERROR;
6592 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006593
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006594 if (mPackageGroups[0]->packages.size() == 0) {
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006595 ALOGW("idmap: target package has no packages in its first package group, "
6596 "cannot create idmap\n");
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006597 return UNKNOWN_ERROR;
6598 }
6599
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006600 KeyedVector<uint8_t, IdmapTypeMap> map;
6601
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006602 // overlaid packages are assumed to contain only one package group
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006603 const PackageGroup* pg = mPackageGroups[0];
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006604
6605 // starting size is header
6606 *outSize = ResTable::IDMAP_HEADER_SIZE_BYTES;
6607
6608 // target package id and number of types in map
6609 *outSize += 2 * sizeof(uint16_t);
6610
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006611 // overlay packages are assumed to contain only one package group
Adam Lesinski4bf58102014-11-03 11:21:19 -08006612 const ResTable_package* overlayPackageStruct = overlay.mPackageGroups[0]->packages[0]->package;
6613 char16_t tmpName[sizeof(overlayPackageStruct->name)/sizeof(overlayPackageStruct->name[0])];
6614 strcpy16_dtoh(tmpName, overlayPackageStruct->name, sizeof(overlayPackageStruct->name)/sizeof(overlayPackageStruct->name[0]));
6615 const String16 overlayPackage(tmpName);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006616
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006617 for (size_t typeIndex = 0; typeIndex < pg->types.size(); ++typeIndex) {
6618 const TypeList& typeList = pg->types[typeIndex];
6619 if (typeList.isEmpty()) {
6620 continue;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006621 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006622
6623 const Type* typeConfigs = typeList[0];
6624
6625 IdmapTypeMap typeMap;
6626 typeMap.overlayTypeId = -1;
6627 typeMap.entryOffset = 0;
6628
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006629 for (size_t entryIndex = 0; entryIndex < typeConfigs->entryCount; ++entryIndex) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006630 uint32_t resID = Res_MAKEID(pg->id - 1, typeIndex, entryIndex);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006631 resource_name resName;
MÃ¥rten Kongstad65a05fd2014-01-31 14:01:52 +01006632 if (!this->getResourceName(resID, false, &resName)) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006633 if (typeMap.entryMap.isEmpty()) {
6634 typeMap.entryOffset++;
6635 }
MÃ¥rten Kongstadfcaba142011-05-19 16:02:35 +02006636 continue;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006637 }
6638
6639 const String16 overlayType(resName.type, resName.typeLen);
6640 const String16 overlayName(resName.name, resName.nameLen);
6641 uint32_t overlayResID = overlay.identifierForName(overlayName.string(),
6642 overlayName.size(),
6643 overlayType.string(),
6644 overlayType.size(),
6645 overlayPackage.string(),
6646 overlayPackage.size());
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006647 if (overlayResID == 0) {
6648 if (typeMap.entryMap.isEmpty()) {
6649 typeMap.entryOffset++;
Jean-Baptiste Queru3e2d5912012-05-01 10:00:22 -07006650 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006651 continue;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006652 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006653
6654 if (typeMap.overlayTypeId == -1) {
6655 typeMap.overlayTypeId = Res_GETTYPE(overlayResID) + 1;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006656 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006657
6658 if (Res_GETTYPE(overlayResID) + 1 != static_cast<size_t>(typeMap.overlayTypeId)) {
6659 ALOGE("idmap: can't mix type ids in entry map. Resource 0x%08x maps to 0x%08x"
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006660 " but entries should map to resources of type %02zx",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006661 resID, overlayResID, typeMap.overlayTypeId);
6662 return BAD_TYPE;
6663 }
6664
6665 if (typeMap.entryOffset + typeMap.entryMap.size() < entryIndex) {
MÃ¥rten Kongstad96198eb2014-11-07 10:56:12 +01006666 // pad with 0xffffffff's (indicating non-existing entries) before adding this entry
6667 size_t index = typeMap.entryMap.size();
6668 size_t numItems = entryIndex - (typeMap.entryOffset + index);
6669 if (typeMap.entryMap.insertAt(0xffffffff, index, numItems) < 0) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006670 return NO_MEMORY;
6671 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006672 }
MÃ¥rten Kongstad96198eb2014-11-07 10:56:12 +01006673 typeMap.entryMap.add(Res_GETENTRY(overlayResID));
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006674 }
6675
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006676 if (!typeMap.entryMap.isEmpty()) {
6677 if (map.add(static_cast<uint8_t>(typeIndex), typeMap) < 0) {
6678 return NO_MEMORY;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006679 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006680 *outSize += (4 * sizeof(uint16_t)) + (typeMap.entryMap.size() * sizeof(uint32_t));
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006681 }
6682 }
6683
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006684 if (map.isEmpty()) {
6685 ALOGW("idmap: no resources in overlay package present in base package");
6686 return UNKNOWN_ERROR;
6687 }
6688
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006689 if ((*outData = malloc(*outSize)) == NULL) {
6690 return NO_MEMORY;
6691 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006692
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006693 uint32_t* data = (uint32_t*)*outData;
6694 *data++ = htodl(IDMAP_MAGIC);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006695 *data++ = htodl(IDMAP_CURRENT_VERSION);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006696 *data++ = htodl(targetCrc);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006697 *data++ = htodl(overlayCrc);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006698 const char* paths[] = { targetPath, overlayPath };
6699 for (int j = 0; j < 2; ++j) {
6700 char* p = (char*)data;
6701 const char* path = paths[j];
6702 const size_t I = strlen(path);
6703 if (I > 255) {
6704 ALOGV("path exceeds expected 255 characters: %s\n", path);
6705 return UNKNOWN_ERROR;
6706 }
6707 for (size_t i = 0; i < 256; ++i) {
6708 *p++ = i < I ? path[i] : '\0';
6709 }
6710 data += 256 / sizeof(uint32_t);
6711 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006712 const size_t mapSize = map.size();
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006713 uint16_t* typeData = reinterpret_cast<uint16_t*>(data);
6714 *typeData++ = htods(pg->id);
6715 *typeData++ = htods(mapSize);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006716 for (size_t i = 0; i < mapSize; ++i) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006717 uint8_t targetTypeId = map.keyAt(i);
6718 const IdmapTypeMap& typeMap = map[i];
6719 *typeData++ = htods(targetTypeId + 1);
6720 *typeData++ = htods(typeMap.overlayTypeId);
6721 *typeData++ = htods(typeMap.entryMap.size());
6722 *typeData++ = htods(typeMap.entryOffset);
6723
6724 const size_t entryCount = typeMap.entryMap.size();
6725 uint32_t* entries = reinterpret_cast<uint32_t*>(typeData);
6726 for (size_t j = 0; j < entryCount; j++) {
6727 entries[j] = htodl(typeMap.entryMap[j]);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006728 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006729 typeData += entryCount * 2;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006730 }
6731
6732 return NO_ERROR;
6733}
6734
6735bool ResTable::getIdmapInfo(const void* idmap, size_t sizeBytes,
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006736 uint32_t* pVersion,
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006737 uint32_t* pTargetCrc, uint32_t* pOverlayCrc,
6738 String8* pTargetPath, String8* pOverlayPath)
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006739{
6740 const uint32_t* map = (const uint32_t*)idmap;
6741 if (!assertIdmapHeader(map, sizeBytes)) {
6742 return false;
6743 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006744 if (pVersion) {
6745 *pVersion = dtohl(map[1]);
6746 }
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006747 if (pTargetCrc) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006748 *pTargetCrc = dtohl(map[2]);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006749 }
6750 if (pOverlayCrc) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006751 *pOverlayCrc = dtohl(map[3]);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006752 }
6753 if (pTargetPath) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006754 pTargetPath->setTo(reinterpret_cast<const char*>(map + 4));
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006755 }
6756 if (pOverlayPath) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006757 pOverlayPath->setTo(reinterpret_cast<const char*>(map + 4 + 256 / sizeof(uint32_t)));
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006758 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006759 return true;
6760}
6761
6762
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006763#define CHAR16_TO_CSTR(c16, len) (String8(String16(c16,len)).string())
6764
6765#define CHAR16_ARRAY_EQ(constant, var, len) \
Chih-Hung Hsiehe819d012016-05-19 15:19:22 -07006766 (((len) == (sizeof(constant)/sizeof((constant)[0]))) && (0 == memcmp((var), (constant), (len))))
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006767
Jeff Brown9d3b1a42013-07-01 19:07:15 -07006768static void print_complex(uint32_t complex, bool isFraction)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006769{
Dianne Hackborne17086b2009-06-19 15:13:28 -07006770 const float MANTISSA_MULT =
6771 1.0f / (1<<Res_value::COMPLEX_MANTISSA_SHIFT);
6772 const float RADIX_MULTS[] = {
6773 1.0f*MANTISSA_MULT, 1.0f/(1<<7)*MANTISSA_MULT,
6774 1.0f/(1<<15)*MANTISSA_MULT, 1.0f/(1<<23)*MANTISSA_MULT
6775 };
6776
6777 float value = (complex&(Res_value::COMPLEX_MANTISSA_MASK
6778 <<Res_value::COMPLEX_MANTISSA_SHIFT))
6779 * RADIX_MULTS[(complex>>Res_value::COMPLEX_RADIX_SHIFT)
6780 & Res_value::COMPLEX_RADIX_MASK];
6781 printf("%f", value);
Mark Salyzyn00adb862014-03-19 11:00:06 -07006782
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006783 if (!isFraction) {
Dianne Hackborne17086b2009-06-19 15:13:28 -07006784 switch ((complex>>Res_value::COMPLEX_UNIT_SHIFT)&Res_value::COMPLEX_UNIT_MASK) {
6785 case Res_value::COMPLEX_UNIT_PX: printf("px"); break;
6786 case Res_value::COMPLEX_UNIT_DIP: printf("dp"); break;
6787 case Res_value::COMPLEX_UNIT_SP: printf("sp"); break;
6788 case Res_value::COMPLEX_UNIT_PT: printf("pt"); break;
6789 case Res_value::COMPLEX_UNIT_IN: printf("in"); break;
6790 case Res_value::COMPLEX_UNIT_MM: printf("mm"); break;
6791 default: printf(" (unknown unit)"); break;
6792 }
6793 } else {
6794 switch ((complex>>Res_value::COMPLEX_UNIT_SHIFT)&Res_value::COMPLEX_UNIT_MASK) {
6795 case Res_value::COMPLEX_UNIT_FRACTION: printf("%%"); break;
6796 case Res_value::COMPLEX_UNIT_FRACTION_PARENT: printf("%%p"); break;
6797 default: printf(" (unknown unit)"); break;
6798 }
6799 }
6800}
6801
Shachar Shemesh9872bf42010-12-20 17:38:33 +02006802// Normalize a string for output
6803String8 ResTable::normalizeForOutput( const char *input )
6804{
6805 String8 ret;
6806 char buff[2];
6807 buff[1] = '\0';
6808
6809 while (*input != '\0') {
6810 switch (*input) {
6811 // All interesting characters are in the ASCII zone, so we are making our own lives
6812 // easier by scanning the string one byte at a time.
6813 case '\\':
6814 ret += "\\\\";
6815 break;
6816 case '\n':
6817 ret += "\\n";
6818 break;
6819 case '"':
6820 ret += "\\\"";
6821 break;
6822 default:
6823 buff[0] = *input;
6824 ret += buff;
6825 break;
6826 }
6827
6828 input++;
6829 }
6830
6831 return ret;
6832}
6833
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006834void ResTable::print_value(const Package* pkg, const Res_value& value) const
6835{
6836 if (value.dataType == Res_value::TYPE_NULL) {
Alan Viverettef2969402014-10-29 17:09:36 -07006837 if (value.data == Res_value::DATA_NULL_UNDEFINED) {
6838 printf("(null)\n");
6839 } else if (value.data == Res_value::DATA_NULL_EMPTY) {
6840 printf("(null empty)\n");
6841 } else {
6842 // This should never happen.
6843 printf("(null) 0x%08x\n", value.data);
6844 }
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006845 } else if (value.dataType == Res_value::TYPE_REFERENCE) {
6846 printf("(reference) 0x%08x\n", value.data);
Adam Lesinskide898ff2014-01-29 18:20:45 -08006847 } else if (value.dataType == Res_value::TYPE_DYNAMIC_REFERENCE) {
6848 printf("(dynamic reference) 0x%08x\n", value.data);
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006849 } else if (value.dataType == Res_value::TYPE_ATTRIBUTE) {
6850 printf("(attribute) 0x%08x\n", value.data);
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006851 } else if (value.dataType == Res_value::TYPE_DYNAMIC_ATTRIBUTE) {
6852 printf("(dynamic attribute) 0x%08x\n", value.data);
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006853 } else if (value.dataType == Res_value::TYPE_STRING) {
6854 size_t len;
Kenny Root780d2a12010-02-22 22:36:26 -08006855 const char* str8 = pkg->header->values.string8At(
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006856 value.data, &len);
Kenny Root780d2a12010-02-22 22:36:26 -08006857 if (str8 != NULL) {
Shachar Shemesh9872bf42010-12-20 17:38:33 +02006858 printf("(string8) \"%s\"\n", normalizeForOutput(str8).string());
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006859 } else {
Kenny Root780d2a12010-02-22 22:36:26 -08006860 const char16_t* str16 = pkg->header->values.stringAt(
6861 value.data, &len);
6862 if (str16 != NULL) {
6863 printf("(string16) \"%s\"\n",
Shachar Shemesh9872bf42010-12-20 17:38:33 +02006864 normalizeForOutput(String8(str16, len).string()).string());
Kenny Root780d2a12010-02-22 22:36:26 -08006865 } else {
6866 printf("(string) null\n");
6867 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006868 }
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006869 } else if (value.dataType == Res_value::TYPE_FLOAT) {
6870 printf("(float) %g\n", *(const float*)&value.data);
6871 } else if (value.dataType == Res_value::TYPE_DIMENSION) {
6872 printf("(dimension) ");
6873 print_complex(value.data, false);
6874 printf("\n");
6875 } else if (value.dataType == Res_value::TYPE_FRACTION) {
6876 printf("(fraction) ");
6877 print_complex(value.data, true);
6878 printf("\n");
6879 } else if (value.dataType >= Res_value::TYPE_FIRST_COLOR_INT
6880 || value.dataType <= Res_value::TYPE_LAST_COLOR_INT) {
6881 printf("(color) #%08x\n", value.data);
6882 } else if (value.dataType == Res_value::TYPE_INT_BOOLEAN) {
6883 printf("(boolean) %s\n", value.data ? "true" : "false");
6884 } else if (value.dataType >= Res_value::TYPE_FIRST_INT
6885 || value.dataType <= Res_value::TYPE_LAST_INT) {
6886 printf("(int) 0x%08x or %d\n", value.data, value.data);
6887 } else {
6888 printf("(unknown type) t=0x%02x d=0x%08x (s=0x%04x r=0x%02x)\n",
6889 (int)value.dataType, (int)value.data,
6890 (int)value.size, (int)value.res0);
6891 }
6892}
6893
Dianne Hackborne17086b2009-06-19 15:13:28 -07006894void ResTable::print(bool inclValues) const
6895{
6896 if (mError != 0) {
6897 printf("mError=0x%x (%s)\n", mError, strerror(mError));
6898 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006899 size_t pgCount = mPackageGroups.size();
6900 printf("Package Groups (%d)\n", (int)pgCount);
6901 for (size_t pgIndex=0; pgIndex<pgCount; pgIndex++) {
6902 const PackageGroup* pg = mPackageGroups[pgIndex];
Adam Lesinski6022deb2014-08-20 14:59:19 -07006903 printf("Package Group %d id=0x%02x packageCount=%d name=%s\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006904 (int)pgIndex, pg->id, (int)pg->packages.size(),
6905 String8(pg->name).string());
Mark Salyzyn00adb862014-03-19 11:00:06 -07006906
Adam Lesinski6022deb2014-08-20 14:59:19 -07006907 const KeyedVector<String16, uint8_t>& refEntries = pg->dynamicRefTable.entries();
6908 const size_t refEntryCount = refEntries.size();
6909 if (refEntryCount > 0) {
6910 printf(" DynamicRefTable entryCount=%d:\n", (int) refEntryCount);
6911 for (size_t refIndex = 0; refIndex < refEntryCount; refIndex++) {
6912 printf(" 0x%02x -> %s\n",
6913 refEntries.valueAt(refIndex),
6914 String8(refEntries.keyAt(refIndex)).string());
6915 }
6916 printf("\n");
6917 }
6918
6919 int packageId = pg->id;
Adam Lesinski18560882014-08-15 17:18:21 +00006920 size_t pkgCount = pg->packages.size();
6921 for (size_t pkgIndex=0; pkgIndex<pkgCount; pkgIndex++) {
6922 const Package* pkg = pg->packages[pkgIndex];
Adam Lesinski6022deb2014-08-20 14:59:19 -07006923 // Use a package's real ID, since the ID may have been assigned
6924 // if this package is a shared library.
6925 packageId = pkg->package->id;
Adam Lesinski4bf58102014-11-03 11:21:19 -08006926 char16_t tmpName[sizeof(pkg->package->name)/sizeof(pkg->package->name[0])];
6927 strcpy16_dtoh(tmpName, pkg->package->name, sizeof(pkg->package->name)/sizeof(pkg->package->name[0]));
Adam Lesinski6022deb2014-08-20 14:59:19 -07006928 printf(" Package %d id=0x%02x name=%s\n", (int)pkgIndex,
Adam Lesinski4bf58102014-11-03 11:21:19 -08006929 pkg->package->id, String8(tmpName).string());
Adam Lesinski18560882014-08-15 17:18:21 +00006930 }
6931
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006932 for (size_t typeIndex=0; typeIndex < pg->types.size(); typeIndex++) {
6933 const TypeList& typeList = pg->types[typeIndex];
6934 if (typeList.isEmpty()) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006935 continue;
6936 }
6937 const Type* typeConfigs = typeList[0];
6938 const size_t NTC = typeConfigs->configs.size();
6939 printf(" type %d configCount=%d entryCount=%d\n",
6940 (int)typeIndex, (int)NTC, (int)typeConfigs->entryCount);
6941 if (typeConfigs->typeSpecFlags != NULL) {
6942 for (size_t entryIndex=0; entryIndex<typeConfigs->entryCount; entryIndex++) {
Adam Lesinski6022deb2014-08-20 14:59:19 -07006943 uint32_t resID = (0xff000000 & ((packageId)<<24))
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006944 | (0x00ff0000 & ((typeIndex+1)<<16))
6945 | (0x0000ffff & (entryIndex));
6946 // Since we are creating resID without actually
6947 // iterating over them, we have no idea which is a
6948 // dynamic reference. We must check.
Adam Lesinski6022deb2014-08-20 14:59:19 -07006949 if (packageId == 0) {
6950 pg->dynamicRefTable.lookupResourceId(&resID);
6951 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006952
6953 resource_name resName;
6954 if (this->getResourceName(resID, true, &resName)) {
6955 String8 type8;
6956 String8 name8;
6957 if (resName.type8 != NULL) {
6958 type8 = String8(resName.type8, resName.typeLen);
6959 } else {
6960 type8 = String8(resName.type, resName.typeLen);
6961 }
6962 if (resName.name8 != NULL) {
6963 name8 = String8(resName.name8, resName.nameLen);
6964 } else {
6965 name8 = String8(resName.name, resName.nameLen);
6966 }
6967 printf(" spec resource 0x%08x %s:%s/%s: flags=0x%08x\n",
6968 resID,
6969 CHAR16_TO_CSTR(resName.package, resName.packageLen),
6970 type8.string(), name8.string(),
6971 dtohl(typeConfigs->typeSpecFlags[entryIndex]));
6972 } else {
6973 printf(" INVALID TYPE CONFIG FOR RESOURCE 0x%08x\n", resID);
6974 }
6975 }
6976 }
6977 for (size_t configIndex=0; configIndex<NTC; configIndex++) {
6978 const ResTable_type* type = typeConfigs->configs[configIndex];
6979 if ((((uint64_t)type)&0x3) != 0) {
6980 printf(" NON-INTEGER ResTable_type ADDRESS: %p\n", type);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006981 continue;
6982 }
Adam Lesinski5b0f1be2015-07-27 16:53:14 -07006983
6984 // Always copy the config, as fields get added and we need to
6985 // set the defaults.
6986 ResTable_config thisConfig;
6987 thisConfig.copyFromDtoH(type->config);
6988
6989 String8 configStr = thisConfig.toString();
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006990 printf(" config %s:\n", configStr.size() > 0
6991 ? configStr.string() : "(default)");
6992 size_t entryCount = dtohl(type->entryCount);
6993 uint32_t entriesStart = dtohl(type->entriesStart);
6994 if ((entriesStart&0x3) != 0) {
6995 printf(" NON-INTEGER ResTable_type entriesStart OFFSET: 0x%x\n", entriesStart);
6996 continue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006997 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006998 uint32_t typeSize = dtohl(type->header.size);
6999 if ((typeSize&0x3) != 0) {
7000 printf(" NON-INTEGER ResTable_type header.size: 0x%x\n", typeSize);
7001 continue;
7002 }
7003 for (size_t entryIndex=0; entryIndex<entryCount; entryIndex++) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007004 const uint32_t* const eindex = (const uint32_t*)
7005 (((const uint8_t*)type) + dtohs(type->header.headerSize));
7006
7007 uint32_t thisOffset = dtohl(eindex[entryIndex]);
7008 if (thisOffset == ResTable_type::NO_ENTRY) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007009 continue;
7010 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07007011
Adam Lesinski6022deb2014-08-20 14:59:19 -07007012 uint32_t resID = (0xff000000 & ((packageId)<<24))
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007013 | (0x00ff0000 & ((typeIndex+1)<<16))
7014 | (0x0000ffff & (entryIndex));
Adam Lesinski6022deb2014-08-20 14:59:19 -07007015 if (packageId == 0) {
7016 pg->dynamicRefTable.lookupResourceId(&resID);
7017 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007018 resource_name resName;
7019 if (this->getResourceName(resID, true, &resName)) {
7020 String8 type8;
7021 String8 name8;
7022 if (resName.type8 != NULL) {
7023 type8 = String8(resName.type8, resName.typeLen);
Kenny Root33791952010-06-08 10:16:48 -07007024 } else {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007025 type8 = String8(resName.type, resName.typeLen);
Kenny Root33791952010-06-08 10:16:48 -07007026 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007027 if (resName.name8 != NULL) {
7028 name8 = String8(resName.name8, resName.nameLen);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007029 } else {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007030 name8 = String8(resName.name, resName.nameLen);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007031 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007032 printf(" resource 0x%08x %s:%s/%s: ", resID,
7033 CHAR16_TO_CSTR(resName.package, resName.packageLen),
7034 type8.string(), name8.string());
7035 } else {
7036 printf(" INVALID RESOURCE 0x%08x: ", resID);
7037 }
7038 if ((thisOffset&0x3) != 0) {
7039 printf("NON-INTEGER OFFSET: 0x%x\n", thisOffset);
7040 continue;
7041 }
7042 if ((thisOffset+sizeof(ResTable_entry)) > typeSize) {
7043 printf("OFFSET OUT OF BOUNDS: 0x%x+0x%x (size is 0x%x)\n",
7044 entriesStart, thisOffset, typeSize);
7045 continue;
7046 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07007047
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007048 const ResTable_entry* ent = (const ResTable_entry*)
7049 (((const uint8_t*)type) + entriesStart + thisOffset);
7050 if (((entriesStart + thisOffset)&0x3) != 0) {
7051 printf("NON-INTEGER ResTable_entry OFFSET: 0x%x\n",
7052 (entriesStart + thisOffset));
7053 continue;
7054 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07007055
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007056 uintptr_t esize = dtohs(ent->size);
7057 if ((esize&0x3) != 0) {
7058 printf("NON-INTEGER ResTable_entry SIZE: %p\n", (void *)esize);
7059 continue;
7060 }
7061 if ((thisOffset+esize) > typeSize) {
7062 printf("ResTable_entry OUT OF BOUNDS: 0x%x+0x%x+%p (size is 0x%x)\n",
7063 entriesStart, thisOffset, (void *)esize, typeSize);
7064 continue;
7065 }
7066
7067 const Res_value* valuePtr = NULL;
7068 const ResTable_map_entry* bagPtr = NULL;
7069 Res_value value;
7070 if ((dtohs(ent->flags)&ResTable_entry::FLAG_COMPLEX) != 0) {
7071 printf("<bag>");
7072 bagPtr = (const ResTable_map_entry*)ent;
7073 } else {
7074 valuePtr = (const Res_value*)
7075 (((const uint8_t*)ent) + esize);
7076 value.copyFrom_dtoh(*valuePtr);
7077 printf("t=0x%02x d=0x%08x (s=0x%04x r=0x%02x)",
7078 (int)value.dataType, (int)value.data,
7079 (int)value.size, (int)value.res0);
7080 }
7081
7082 if ((dtohs(ent->flags)&ResTable_entry::FLAG_PUBLIC) != 0) {
7083 printf(" (PUBLIC)");
7084 }
7085 printf("\n");
7086
7087 if (inclValues) {
7088 if (valuePtr != NULL) {
7089 printf(" ");
7090 print_value(typeConfigs->package, value);
7091 } else if (bagPtr != NULL) {
7092 const int N = dtohl(bagPtr->count);
7093 const uint8_t* baseMapPtr = (const uint8_t*)ent;
7094 size_t mapOffset = esize;
7095 const ResTable_map* mapPtr = (ResTable_map*)(baseMapPtr+mapOffset);
7096 const uint32_t parent = dtohl(bagPtr->parent.ident);
7097 uint32_t resolvedParent = parent;
Adam Lesinski6022deb2014-08-20 14:59:19 -07007098 if (Res_GETPACKAGE(resolvedParent) + 1 == 0) {
7099 status_t err = pg->dynamicRefTable.lookupResourceId(&resolvedParent);
7100 if (err != NO_ERROR) {
7101 resolvedParent = 0;
7102 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007103 }
7104 printf(" Parent=0x%08x(Resolved=0x%08x), Count=%d\n",
7105 parent, resolvedParent, N);
7106 for (int i=0; i<N && mapOffset < (typeSize-sizeof(ResTable_map)); i++) {
7107 printf(" #%i (Key=0x%08x): ",
7108 i, dtohl(mapPtr->name.ident));
7109 value.copyFrom_dtoh(mapPtr->value);
7110 print_value(typeConfigs->package, value);
7111 const size_t size = dtohs(mapPtr->value.size);
7112 mapOffset += size + sizeof(*mapPtr)-sizeof(mapPtr->value);
7113 mapPtr = (ResTable_map*)(baseMapPtr+mapOffset);
Dianne Hackborne17086b2009-06-19 15:13:28 -07007114 }
7115 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007116 }
7117 }
7118 }
7119 }
7120 }
7121}
7122
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007123} // namespace android