blob: e10db05e8557b56f349531d28586fe84eccfed16 [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));
4323 return BAD_TYPE;
4324 }
4325 map = (const ResTable_map*)(((const uint8_t*)entry.type) + curOff);
4326 N++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004327
Adam Lesinskiccf25c7b2014-08-08 15:32:40 -07004328 uint32_t newName = htodl(map->name.ident);
4329 if (!Res_INTERNALID(newName)) {
4330 // Attributes don't have a resource id as the name. They specify
4331 // other data, which would be wrong to change via a lookup.
4332 if (grp->dynamicRefTable.lookupResourceId(&newName) != NO_ERROR) {
4333 ALOGE("Failed resolving ResTable_map name at %d with ident 0x%08x",
4334 (int) curOff, (int) newName);
4335 return UNKNOWN_ERROR;
4336 }
4337 }
4338
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004339 bool isInside;
4340 uint32_t oldName = 0;
4341 while ((isInside=(curEntry < set->numAttrs))
4342 && (oldName=entries[curEntry].map.name.ident) < newName) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004343 if (kDebugTableNoisy) {
4344 ALOGI("#%zu: Keeping existing attribute: 0x%08x\n",
4345 curEntry, entries[curEntry].map.name.ident);
4346 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004347 curEntry++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004348 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004349
4350 if ((!isInside) || oldName != newName) {
4351 // This is a new attribute... figure out what to do with it.
4352 if (set->numAttrs >= set->availAttrs) {
4353 // Need to alloc more memory...
4354 const size_t newAvail = set->availAttrs+N;
George Burgess IVe8efec52016-10-11 15:42:29 -07004355 void *oldSet = set;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004356 set = (bag_set*)realloc(set,
4357 sizeof(bag_set)
4358 + sizeof(bag_entry)*newAvail);
4359 if (set == NULL) {
George Burgess IVe8efec52016-10-11 15:42:29 -07004360 free(oldSet);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004361 return NO_MEMORY;
4362 }
4363 set->availAttrs = newAvail;
4364 entries = (bag_entry*)(set+1);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004365 if (kDebugTableNoisy) {
4366 ALOGI("Reallocated set %p, entries=%p, avail=%zu\n",
4367 set, entries, set->availAttrs);
4368 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004369 }
4370 if (isInside) {
4371 // Going in the middle, need to make space.
4372 memmove(entries+curEntry+1, entries+curEntry,
4373 sizeof(bag_entry)*(set->numAttrs-curEntry));
4374 set->numAttrs++;
4375 }
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004376 if (kDebugTableNoisy) {
4377 ALOGI("#%zu: Inserting new attribute: 0x%08x\n", curEntry, newName);
4378 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004379 } else {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004380 if (kDebugTableNoisy) {
4381 ALOGI("#%zu: Replacing existing attribute: 0x%08x\n", curEntry, oldName);
4382 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004383 }
4384
4385 bag_entry* cur = entries+curEntry;
4386
4387 cur->stringBlock = entry.package->header->index;
4388 cur->map.name.ident = newName;
4389 cur->map.value.copyFrom_dtoh(map->value);
4390 status_t err = grp->dynamicRefTable.lookupResourceValue(&cur->map.value);
4391 if (err != NO_ERROR) {
4392 ALOGE("Reference item(0x%08x) in bag could not be resolved.", cur->map.value.data);
4393 return UNKNOWN_ERROR;
4394 }
4395
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004396 if (kDebugTableNoisy) {
4397 ALOGI("Setting entry #%zu %p: block=%zd, name=0x%08d, type=%d, data=0x%08x\n",
4398 curEntry, cur, cur->stringBlock, cur->map.name.ident,
4399 cur->map.value.dataType, cur->map.value.data);
4400 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004401
4402 // On to the next!
4403 curEntry++;
4404 pos++;
4405 const size_t size = dtohs(map->value.size);
4406 curOff += size + sizeof(*map)-sizeof(map->value);
George Burgess IVe8efec52016-10-11 15:42:29 -07004407 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004408
4409 if (curEntry > set->numAttrs) {
4410 set->numAttrs = curEntry;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004411 }
4412
4413 // And this is it...
4414 typeSet[e] = set;
4415 if (set) {
4416 if (outTypeSpecFlags != NULL) {
4417 *outTypeSpecFlags = set->typeSpecFlags;
4418 }
4419 *outBag = (bag_entry*)(set+1);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004420 if (kDebugTableNoisy) {
4421 ALOGI("Returning %zu attrs\n", set->numAttrs);
4422 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004423 return set->numAttrs;
4424 }
4425 return BAD_INDEX;
4426}
4427
4428void ResTable::setParameters(const ResTable_config* params)
4429{
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004430 AutoMutex _lock(mLock);
4431 AutoMutex _lock2(mFilteredConfigLock);
4432
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004433 if (kDebugTableGetEntry) {
4434 ALOGI("Setting parameters: %s\n", params->toString().string());
4435 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004436 mParams = *params;
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004437 for (size_t p = 0; p < mPackageGroups.size(); p++) {
4438 PackageGroup* packageGroup = mPackageGroups.editItemAt(p);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004439 if (kDebugTableNoisy) {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004440 ALOGI("CLEARING BAGS FOR GROUP %zu!", p);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004441 }
Adam Lesinskiff5808d2016-02-23 17:49:53 -08004442 packageGroup->clearBagCache();
4443
4444 // Find which configurations match the set of parameters. This allows for a much
4445 // faster lookup in getEntry() if the set of values is narrowed down.
4446 for (size_t t = 0; t < packageGroup->types.size(); t++) {
4447 if (packageGroup->types[t].isEmpty()) {
4448 continue;
4449 }
4450
4451 TypeList& typeList = packageGroup->types.editItemAt(t);
4452
4453 // Retrieve the cache entry for this type.
4454 TypeCacheEntry& cacheEntry = packageGroup->typeCacheEntries.editItemAt(t);
4455
4456 for (size_t ts = 0; ts < typeList.size(); ts++) {
4457 Type* type = typeList.editItemAt(ts);
4458
4459 std::shared_ptr<Vector<const ResTable_type*>> newFilteredConfigs =
4460 std::make_shared<Vector<const ResTable_type*>>();
4461
4462 for (size_t ti = 0; ti < type->configs.size(); ti++) {
4463 ResTable_config config;
4464 config.copyFromDtoH(type->configs[ti]->config);
4465
4466 if (config.match(mParams)) {
4467 newFilteredConfigs->add(type->configs[ti]);
4468 }
4469 }
4470
4471 if (kDebugTableNoisy) {
4472 ALOGD("Updating pkg=%zu type=%zu with %zu filtered configs",
4473 p, t, newFilteredConfigs->size());
4474 }
4475
4476 cacheEntry.filteredConfigs.add(newFilteredConfigs);
4477 }
4478 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004479 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004480}
4481
4482void ResTable::getParameters(ResTable_config* params) const
4483{
4484 mLock.lock();
4485 *params = mParams;
4486 mLock.unlock();
4487}
4488
4489struct id_name_map {
4490 uint32_t id;
4491 size_t len;
4492 char16_t name[6];
4493};
4494
4495const static id_name_map ID_NAMES[] = {
4496 { ResTable_map::ATTR_TYPE, 5, { '^', 't', 'y', 'p', 'e' } },
4497 { ResTable_map::ATTR_L10N, 5, { '^', 'l', '1', '0', 'n' } },
4498 { ResTable_map::ATTR_MIN, 4, { '^', 'm', 'i', 'n' } },
4499 { ResTable_map::ATTR_MAX, 4, { '^', 'm', 'a', 'x' } },
4500 { ResTable_map::ATTR_OTHER, 6, { '^', 'o', 't', 'h', 'e', 'r' } },
4501 { ResTable_map::ATTR_ZERO, 5, { '^', 'z', 'e', 'r', 'o' } },
4502 { ResTable_map::ATTR_ONE, 4, { '^', 'o', 'n', 'e' } },
4503 { ResTable_map::ATTR_TWO, 4, { '^', 't', 'w', 'o' } },
4504 { ResTable_map::ATTR_FEW, 4, { '^', 'f', 'e', 'w' } },
4505 { ResTable_map::ATTR_MANY, 5, { '^', 'm', 'a', 'n', 'y' } },
4506};
4507
4508uint32_t ResTable::identifierForName(const char16_t* name, size_t nameLen,
4509 const char16_t* type, size_t typeLen,
4510 const char16_t* package,
4511 size_t packageLen,
4512 uint32_t* outTypeSpecFlags) const
4513{
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004514 if (kDebugTableSuperNoisy) {
4515 printf("Identifier for name: error=%d\n", mError);
4516 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004517
4518 // Check for internal resource identifier as the very first thing, so
4519 // that we will always find them even when there are no resources.
4520 if (name[0] == '^') {
4521 const int N = (sizeof(ID_NAMES)/sizeof(ID_NAMES[0]));
4522 size_t len;
4523 for (int i=0; i<N; i++) {
4524 const id_name_map* m = ID_NAMES + i;
4525 len = m->len;
4526 if (len != nameLen) {
4527 continue;
4528 }
4529 for (size_t j=1; j<len; j++) {
4530 if (m->name[j] != name[j]) {
4531 goto nope;
4532 }
4533 }
Dianne Hackborn426431a2011-06-09 11:29:08 -07004534 if (outTypeSpecFlags) {
4535 *outTypeSpecFlags = ResTable_typeSpec::SPEC_PUBLIC;
4536 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004537 return m->id;
4538nope:
4539 ;
4540 }
4541 if (nameLen > 7) {
4542 if (name[1] == 'i' && name[2] == 'n'
4543 && name[3] == 'd' && name[4] == 'e' && name[5] == 'x'
4544 && name[6] == '_') {
4545 int index = atoi(String8(name + 7, nameLen - 7).string());
4546 if (Res_CHECKID(index)) {
Steve Block8564c8d2012-01-05 23:22:43 +00004547 ALOGW("Array resource index: %d is too large.",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004548 index);
4549 return 0;
4550 }
Dianne Hackborn426431a2011-06-09 11:29:08 -07004551 if (outTypeSpecFlags) {
4552 *outTypeSpecFlags = ResTable_typeSpec::SPEC_PUBLIC;
4553 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004554 return Res_MAKEARRAY(index);
4555 }
4556 }
4557 return 0;
4558 }
4559
4560 if (mError != NO_ERROR) {
4561 return 0;
4562 }
4563
Dianne Hackborn426431a2011-06-09 11:29:08 -07004564 bool fakePublic = false;
4565
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004566 // Figure out the package and type we are looking in...
4567
4568 const char16_t* packageEnd = NULL;
4569 const char16_t* typeEnd = NULL;
4570 const char16_t* const nameEnd = name+nameLen;
4571 const char16_t* p = name;
4572 while (p < nameEnd) {
4573 if (*p == ':') packageEnd = p;
4574 else if (*p == '/') typeEnd = p;
4575 p++;
4576 }
Dianne Hackborn426431a2011-06-09 11:29:08 -07004577 if (*name == '@') {
4578 name++;
4579 if (*name == '*') {
4580 fakePublic = true;
4581 name++;
4582 }
4583 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004584 if (name >= nameEnd) {
4585 return 0;
4586 }
4587
4588 if (packageEnd) {
4589 package = name;
4590 packageLen = packageEnd-name;
4591 name = packageEnd+1;
4592 } else if (!package) {
4593 return 0;
4594 }
4595
4596 if (typeEnd) {
4597 type = name;
4598 typeLen = typeEnd-name;
4599 name = typeEnd+1;
4600 } else if (!type) {
4601 return 0;
4602 }
4603
4604 if (name >= nameEnd) {
4605 return 0;
4606 }
4607 nameLen = nameEnd-name;
4608
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004609 if (kDebugTableNoisy) {
4610 printf("Looking for identifier: type=%s, name=%s, package=%s\n",
4611 String8(type, typeLen).string(),
4612 String8(name, nameLen).string(),
4613 String8(package, packageLen).string());
4614 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004615
Adam Lesinski9b624c12014-11-19 17:49:26 -08004616 const String16 attr("attr");
4617 const String16 attrPrivate("^attr-private");
4618
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004619 const size_t NG = mPackageGroups.size();
4620 for (size_t ig=0; ig<NG; ig++) {
4621 const PackageGroup* group = mPackageGroups[ig];
4622
4623 if (strzcmp16(package, packageLen,
4624 group->name.string(), group->name.size())) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07004625 if (kDebugTableNoisy) {
4626 printf("Skipping package group: %s\n", String8(group->name).string());
4627 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004628 continue;
4629 }
4630
Adam Lesinskie60a87f2014-10-09 11:08:04 -07004631 const size_t packageCount = group->packages.size();
4632 for (size_t pi = 0; pi < packageCount; pi++) {
Adam Lesinski9b624c12014-11-19 17:49:26 -08004633 const char16_t* targetType = type;
4634 size_t targetTypeLen = typeLen;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004635
Adam Lesinski9b624c12014-11-19 17:49:26 -08004636 do {
4637 ssize_t ti = group->packages[pi]->typeStrings.indexOfString(
4638 targetType, targetTypeLen);
4639 if (ti < 0) {
Adam Lesinskie60a87f2014-10-09 11:08:04 -07004640 continue;
4641 }
4642
Adam Lesinski9b624c12014-11-19 17:49:26 -08004643 ti += group->packages[pi]->typeIdOffset;
Adam Lesinskie60a87f2014-10-09 11:08:04 -07004644
Adam Lesinski9b624c12014-11-19 17:49:26 -08004645 const uint32_t identifier = findEntry(group, ti, name, nameLen,
4646 outTypeSpecFlags);
4647 if (identifier != 0) {
4648 if (fakePublic && outTypeSpecFlags) {
4649 *outTypeSpecFlags |= ResTable_typeSpec::SPEC_PUBLIC;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07004650 }
Adam Lesinski9b624c12014-11-19 17:49:26 -08004651 return identifier;
4652 }
4653 } while (strzcmp16(attr.string(), attr.size(), targetType, targetTypeLen) == 0
4654 && (targetType = attrPrivate.string())
4655 && (targetTypeLen = attrPrivate.size())
4656 );
4657 }
4658 break;
4659 }
4660 return 0;
4661}
4662
4663uint32_t ResTable::findEntry(const PackageGroup* group, ssize_t typeIndex, const char16_t* name,
4664 size_t nameLen, uint32_t* outTypeSpecFlags) const {
4665 const TypeList& typeList = group->types[typeIndex];
4666 const size_t typeCount = typeList.size();
4667 for (size_t i = 0; i < typeCount; i++) {
4668 const Type* t = typeList[i];
4669 const ssize_t ei = t->package->keyStrings.indexOfString(name, nameLen);
4670 if (ei < 0) {
4671 continue;
4672 }
4673
4674 const size_t configCount = t->configs.size();
4675 for (size_t j = 0; j < configCount; j++) {
4676 const TypeVariant tv(t->configs[j]);
4677 for (TypeVariant::iterator iter = tv.beginEntries();
4678 iter != tv.endEntries();
4679 iter++) {
4680 const ResTable_entry* entry = *iter;
4681 if (entry == NULL) {
4682 continue;
4683 }
4684
4685 if (dtohl(entry->key.index) == (size_t) ei) {
4686 uint32_t resId = Res_MAKEID(group->id - 1, typeIndex, iter.index());
4687 if (outTypeSpecFlags) {
4688 Entry result;
4689 if (getEntry(group, typeIndex, iter.index(), NULL, &result) != NO_ERROR) {
4690 ALOGW("Failed to find spec flags for 0x%08x", resId);
4691 return 0;
4692 }
4693 *outTypeSpecFlags = result.specFlags;
4694 }
4695 return resId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004696 }
4697 }
4698 }
4699 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004700 return 0;
4701}
4702
Dan Albertf348c152014-09-08 18:28:00 -07004703bool ResTable::expandResourceRef(const char16_t* refStr, size_t refLen,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004704 String16* outPackage,
4705 String16* outType,
4706 String16* outName,
4707 const String16* defType,
4708 const String16* defPackage,
Dianne Hackborn426431a2011-06-09 11:29:08 -07004709 const char** outErrorMsg,
4710 bool* outPublicOnly)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004711{
4712 const char16_t* packageEnd = NULL;
4713 const char16_t* typeEnd = NULL;
4714 const char16_t* p = refStr;
4715 const char16_t* const end = p + refLen;
4716 while (p < end) {
4717 if (*p == ':') packageEnd = p;
4718 else if (*p == '/') {
4719 typeEnd = p;
4720 break;
4721 }
4722 p++;
4723 }
4724 p = refStr;
4725 if (*p == '@') p++;
4726
Dianne Hackborn426431a2011-06-09 11:29:08 -07004727 if (outPublicOnly != NULL) {
4728 *outPublicOnly = true;
4729 }
4730 if (*p == '*') {
4731 p++;
4732 if (outPublicOnly != NULL) {
4733 *outPublicOnly = false;
4734 }
4735 }
4736
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004737 if (packageEnd) {
4738 *outPackage = String16(p, packageEnd-p);
4739 p = packageEnd+1;
4740 } else {
4741 if (!defPackage) {
4742 if (outErrorMsg) {
4743 *outErrorMsg = "No resource package specified";
4744 }
4745 return false;
4746 }
4747 *outPackage = *defPackage;
4748 }
4749 if (typeEnd) {
4750 *outType = String16(p, typeEnd-p);
4751 p = typeEnd+1;
4752 } else {
4753 if (!defType) {
4754 if (outErrorMsg) {
4755 *outErrorMsg = "No resource type specified";
4756 }
4757 return false;
4758 }
4759 *outType = *defType;
4760 }
4761 *outName = String16(p, end-p);
Konstantin Lopyrevddcafcb2010-06-04 14:36:49 -07004762 if(**outPackage == 0) {
4763 if(outErrorMsg) {
4764 *outErrorMsg = "Resource package cannot be an empty string";
4765 }
4766 return false;
4767 }
4768 if(**outType == 0) {
4769 if(outErrorMsg) {
4770 *outErrorMsg = "Resource type cannot be an empty string";
4771 }
4772 return false;
4773 }
4774 if(**outName == 0) {
4775 if(outErrorMsg) {
4776 *outErrorMsg = "Resource id cannot be an empty string";
4777 }
4778 return false;
4779 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004780 return true;
4781}
4782
4783static uint32_t get_hex(char c, bool* outError)
4784{
4785 if (c >= '0' && c <= '9') {
4786 return c - '0';
4787 } else if (c >= 'a' && c <= 'f') {
4788 return c - 'a' + 0xa;
4789 } else if (c >= 'A' && c <= 'F') {
4790 return c - 'A' + 0xa;
4791 }
4792 *outError = true;
4793 return 0;
4794}
4795
4796struct unit_entry
4797{
4798 const char* name;
4799 size_t len;
4800 uint8_t type;
4801 uint32_t unit;
4802 float scale;
4803};
4804
4805static const unit_entry unitNames[] = {
4806 { "px", strlen("px"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_PX, 1.0f },
4807 { "dip", strlen("dip"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_DIP, 1.0f },
4808 { "dp", strlen("dp"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_DIP, 1.0f },
4809 { "sp", strlen("sp"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_SP, 1.0f },
4810 { "pt", strlen("pt"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_PT, 1.0f },
4811 { "in", strlen("in"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_IN, 1.0f },
4812 { "mm", strlen("mm"), Res_value::TYPE_DIMENSION, Res_value::COMPLEX_UNIT_MM, 1.0f },
4813 { "%", strlen("%"), Res_value::TYPE_FRACTION, Res_value::COMPLEX_UNIT_FRACTION, 1.0f/100 },
4814 { "%p", strlen("%p"), Res_value::TYPE_FRACTION, Res_value::COMPLEX_UNIT_FRACTION_PARENT, 1.0f/100 },
4815 { NULL, 0, 0, 0, 0 }
4816};
4817
4818static bool parse_unit(const char* str, Res_value* outValue,
4819 float* outScale, const char** outEnd)
4820{
4821 const char* end = str;
4822 while (*end != 0 && !isspace((unsigned char)*end)) {
4823 end++;
4824 }
4825 const size_t len = end-str;
4826
4827 const char* realEnd = end;
4828 while (*realEnd != 0 && isspace((unsigned char)*realEnd)) {
4829 realEnd++;
4830 }
4831 if (*realEnd != 0) {
4832 return false;
4833 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07004834
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004835 const unit_entry* cur = unitNames;
4836 while (cur->name) {
4837 if (len == cur->len && strncmp(cur->name, str, len) == 0) {
4838 outValue->dataType = cur->type;
4839 outValue->data = cur->unit << Res_value::COMPLEX_UNIT_SHIFT;
4840 *outScale = cur->scale;
4841 *outEnd = end;
4842 //printf("Found unit %s for %s\n", cur->name, str);
4843 return true;
4844 }
4845 cur++;
4846 }
4847
4848 return false;
4849}
4850
Dan Albert1b4f3162015-04-07 18:43:15 -07004851bool U16StringToInt(const char16_t* s, size_t len, Res_value* outValue)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004852{
4853 while (len > 0 && isspace16(*s)) {
4854 s++;
4855 len--;
4856 }
4857
4858 if (len <= 0) {
4859 return false;
4860 }
4861
4862 size_t i = 0;
Dan Albert1b4f3162015-04-07 18:43:15 -07004863 int64_t val = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004864 bool neg = false;
4865
4866 if (*s == '-') {
4867 neg = true;
4868 i++;
4869 }
4870
4871 if (s[i] < '0' || s[i] > '9') {
4872 return false;
4873 }
4874
Dan Albert1b4f3162015-04-07 18:43:15 -07004875 static_assert(std::is_same<uint32_t, Res_value::data_type>::value,
4876 "Res_value::data_type has changed. The range checks in this "
4877 "function are no longer correct.");
4878
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004879 // Decimal or hex?
Dan Albert1b4f3162015-04-07 18:43:15 -07004880 bool isHex;
4881 if (len > 1 && s[i] == '0' && s[i+1] == 'x') {
4882 isHex = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004883 i += 2;
Dan Albert1b4f3162015-04-07 18:43:15 -07004884
4885 if (neg) {
4886 return false;
4887 }
4888
4889 if (i == len) {
4890 // Just u"0x"
4891 return false;
4892 }
4893
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004894 bool error = false;
4895 while (i < len && !error) {
4896 val = (val*16) + get_hex(s[i], &error);
4897 i++;
Dan Albert1b4f3162015-04-07 18:43:15 -07004898
4899 if (val > std::numeric_limits<uint32_t>::max()) {
4900 return false;
4901 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004902 }
4903 if (error) {
4904 return false;
4905 }
4906 } else {
Dan Albert1b4f3162015-04-07 18:43:15 -07004907 isHex = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004908 while (i < len) {
4909 if (s[i] < '0' || s[i] > '9') {
4910 return false;
4911 }
4912 val = (val*10) + s[i]-'0';
4913 i++;
Dan Albert1b4f3162015-04-07 18:43:15 -07004914
4915 if ((neg && -val < std::numeric_limits<int32_t>::min()) ||
4916 (!neg && val > std::numeric_limits<int32_t>::max())) {
4917 return false;
4918 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004919 }
4920 }
4921
4922 if (neg) val = -val;
4923
4924 while (i < len && isspace16(s[i])) {
4925 i++;
4926 }
4927
Dan Albert1b4f3162015-04-07 18:43:15 -07004928 if (i != len) {
4929 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004930 }
4931
Dan Albert1b4f3162015-04-07 18:43:15 -07004932 if (outValue) {
4933 outValue->dataType =
4934 isHex ? outValue->TYPE_INT_HEX : outValue->TYPE_INT_DEC;
4935 outValue->data = static_cast<Res_value::data_type>(val);
4936 }
4937 return true;
4938}
4939
4940bool ResTable::stringToInt(const char16_t* s, size_t len, Res_value* outValue)
4941{
4942 return U16StringToInt(s, len, outValue);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004943}
4944
4945bool ResTable::stringToFloat(const char16_t* s, size_t len, Res_value* outValue)
4946{
4947 while (len > 0 && isspace16(*s)) {
4948 s++;
4949 len--;
4950 }
4951
4952 if (len <= 0) {
4953 return false;
4954 }
4955
4956 char buf[128];
4957 int i=0;
4958 while (len > 0 && *s != 0 && i < 126) {
4959 if (*s > 255) {
4960 return false;
4961 }
4962 buf[i++] = *s++;
4963 len--;
4964 }
4965
4966 if (len > 0) {
4967 return false;
4968 }
Torne (Richard Coles)46a807f2014-08-27 12:36:44 +01004969 if ((buf[0] < '0' || buf[0] > '9') && buf[0] != '.' && buf[0] != '-' && buf[0] != '+') {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004970 return false;
4971 }
4972
4973 buf[i] = 0;
4974 const char* end;
4975 float f = strtof(buf, (char**)&end);
4976
4977 if (*end != 0 && !isspace((unsigned char)*end)) {
4978 // Might be a unit...
4979 float scale;
4980 if (parse_unit(end, outValue, &scale, &end)) {
4981 f *= scale;
4982 const bool neg = f < 0;
4983 if (neg) f = -f;
4984 uint64_t bits = (uint64_t)(f*(1<<23)+.5f);
4985 uint32_t radix;
4986 uint32_t shift;
4987 if ((bits&0x7fffff) == 0) {
4988 // Always use 23p0 if there is no fraction, just to make
4989 // things easier to read.
4990 radix = Res_value::COMPLEX_RADIX_23p0;
4991 shift = 23;
4992 } else if ((bits&0xffffffffff800000LL) == 0) {
4993 // Magnitude is zero -- can fit in 0 bits of precision.
4994 radix = Res_value::COMPLEX_RADIX_0p23;
4995 shift = 0;
4996 } else if ((bits&0xffffffff80000000LL) == 0) {
4997 // Magnitude can fit in 8 bits of precision.
4998 radix = Res_value::COMPLEX_RADIX_8p15;
4999 shift = 8;
5000 } else if ((bits&0xffffff8000000000LL) == 0) {
5001 // Magnitude can fit in 16 bits of precision.
5002 radix = Res_value::COMPLEX_RADIX_16p7;
5003 shift = 16;
5004 } else {
5005 // Magnitude needs entire range, so no fractional part.
5006 radix = Res_value::COMPLEX_RADIX_23p0;
5007 shift = 23;
5008 }
5009 int32_t mantissa = (int32_t)(
5010 (bits>>shift) & Res_value::COMPLEX_MANTISSA_MASK);
5011 if (neg) {
5012 mantissa = (-mantissa) & Res_value::COMPLEX_MANTISSA_MASK;
5013 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005014 outValue->data |=
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005015 (radix<<Res_value::COMPLEX_RADIX_SHIFT)
5016 | (mantissa<<Res_value::COMPLEX_MANTISSA_SHIFT);
5017 //printf("Input value: %f 0x%016Lx, mult: %f, radix: %d, shift: %d, final: 0x%08x\n",
5018 // f * (neg ? -1 : 1), bits, f*(1<<23),
5019 // radix, shift, outValue->data);
5020 return true;
5021 }
5022 return false;
5023 }
5024
5025 while (*end != 0 && isspace((unsigned char)*end)) {
5026 end++;
5027 }
5028
5029 if (*end == 0) {
5030 if (outValue) {
5031 outValue->dataType = outValue->TYPE_FLOAT;
5032 *(float*)(&outValue->data) = f;
5033 return true;
5034 }
5035 }
5036
5037 return false;
5038}
5039
5040bool ResTable::stringToValue(Res_value* outValue, String16* outString,
5041 const char16_t* s, size_t len,
5042 bool preserveSpaces, bool coerceType,
5043 uint32_t attrID,
5044 const String16* defType,
5045 const String16* defPackage,
5046 Accessor* accessor,
5047 void* accessorCookie,
5048 uint32_t attrType,
5049 bool enforcePrivate) const
5050{
5051 bool localizationSetting = accessor != NULL && accessor->getLocalizationSetting();
5052 const char* errorMsg = NULL;
5053
5054 outValue->size = sizeof(Res_value);
5055 outValue->res0 = 0;
5056
5057 // First strip leading/trailing whitespace. Do this before handling
5058 // escapes, so they can be used to force whitespace into the string.
5059 if (!preserveSpaces) {
5060 while (len > 0 && isspace16(*s)) {
5061 s++;
5062 len--;
5063 }
5064 while (len > 0 && isspace16(s[len-1])) {
5065 len--;
5066 }
5067 // If the string ends with '\', then we keep the space after it.
5068 if (len > 0 && s[len-1] == '\\' && s[len] != 0) {
5069 len++;
5070 }
5071 }
5072
5073 //printf("Value for: %s\n", String8(s, len).string());
5074
5075 uint32_t l10nReq = ResTable_map::L10N_NOT_REQUIRED;
5076 uint32_t attrMin = 0x80000000, attrMax = 0x7fffffff;
5077 bool fromAccessor = false;
5078 if (attrID != 0 && !Res_INTERNALID(attrID)) {
5079 const ssize_t p = getResourcePackageIndex(attrID);
5080 const bag_entry* bag;
5081 ssize_t cnt = p >= 0 ? lockBag(attrID, &bag) : -1;
5082 //printf("For attr 0x%08x got bag of %d\n", attrID, cnt);
5083 if (cnt >= 0) {
5084 while (cnt > 0) {
5085 //printf("Entry 0x%08x = 0x%08x\n", bag->map.name.ident, bag->map.value.data);
5086 switch (bag->map.name.ident) {
5087 case ResTable_map::ATTR_TYPE:
5088 attrType = bag->map.value.data;
5089 break;
5090 case ResTable_map::ATTR_MIN:
5091 attrMin = bag->map.value.data;
5092 break;
5093 case ResTable_map::ATTR_MAX:
5094 attrMax = bag->map.value.data;
5095 break;
5096 case ResTable_map::ATTR_L10N:
5097 l10nReq = bag->map.value.data;
5098 break;
5099 }
5100 bag++;
5101 cnt--;
5102 }
5103 unlockBag(bag);
5104 } else if (accessor && accessor->getAttributeType(attrID, &attrType)) {
5105 fromAccessor = true;
5106 if (attrType == ResTable_map::TYPE_ENUM
5107 || attrType == ResTable_map::TYPE_FLAGS
5108 || attrType == ResTable_map::TYPE_INTEGER) {
5109 accessor->getAttributeMin(attrID, &attrMin);
5110 accessor->getAttributeMax(attrID, &attrMax);
5111 }
5112 if (localizationSetting) {
5113 l10nReq = accessor->getAttributeL10N(attrID);
5114 }
5115 }
5116 }
5117
5118 const bool canStringCoerce =
5119 coerceType && (attrType&ResTable_map::TYPE_STRING) != 0;
5120
5121 if (*s == '@') {
5122 outValue->dataType = outValue->TYPE_REFERENCE;
5123
5124 // Note: we don't check attrType here because the reference can
5125 // be to any other type; we just need to count on the client making
5126 // sure the referenced type is correct.
Mark Salyzyn00adb862014-03-19 11:00:06 -07005127
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005128 //printf("Looking up ref: %s\n", String8(s, len).string());
5129
5130 // It's a reference!
5131 if (len == 5 && s[1]=='n' && s[2]=='u' && s[3]=='l' && s[4]=='l') {
Alan Viverettef2969402014-10-29 17:09:36 -07005132 // Special case @null as undefined. This will be converted by
5133 // AssetManager to TYPE_NULL with data DATA_NULL_UNDEFINED.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005134 outValue->data = 0;
5135 return true;
Alan Viverettef2969402014-10-29 17:09:36 -07005136 } else if (len == 6 && s[1]=='e' && s[2]=='m' && s[3]=='p' && s[4]=='t' && s[5]=='y') {
5137 // Special case @empty as explicitly defined empty value.
5138 outValue->dataType = Res_value::TYPE_NULL;
5139 outValue->data = Res_value::DATA_NULL_EMPTY;
5140 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005141 } else {
5142 bool createIfNotFound = false;
5143 const char16_t* resourceRefName;
5144 int resourceNameLen;
5145 if (len > 2 && s[1] == '+') {
5146 createIfNotFound = true;
5147 resourceRefName = s + 2;
5148 resourceNameLen = len - 2;
5149 } else if (len > 2 && s[1] == '*') {
5150 enforcePrivate = false;
5151 resourceRefName = s + 2;
5152 resourceNameLen = len - 2;
5153 } else {
5154 createIfNotFound = false;
5155 resourceRefName = s + 1;
5156 resourceNameLen = len - 1;
5157 }
5158 String16 package, type, name;
5159 if (!expandResourceRef(resourceRefName,resourceNameLen, &package, &type, &name,
5160 defType, defPackage, &errorMsg)) {
5161 if (accessor != NULL) {
5162 accessor->reportError(accessorCookie, errorMsg);
5163 }
5164 return false;
5165 }
5166
5167 uint32_t specFlags = 0;
5168 uint32_t rid = identifierForName(name.string(), name.size(), type.string(),
5169 type.size(), package.string(), package.size(), &specFlags);
5170 if (rid != 0) {
5171 if (enforcePrivate) {
Adam Lesinski833f3cc2014-06-18 15:06:01 -07005172 if (accessor == NULL || accessor->getAssetsPackage() != package) {
5173 if ((specFlags&ResTable_typeSpec::SPEC_PUBLIC) == 0) {
5174 if (accessor != NULL) {
5175 accessor->reportError(accessorCookie, "Resource is not public.");
5176 }
5177 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005178 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005179 }
5180 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08005181
5182 if (accessor) {
5183 rid = Res_MAKEID(
5184 accessor->getRemappedPackage(Res_GETPACKAGE(rid)),
5185 Res_GETTYPE(rid), Res_GETENTRY(rid));
Andreas Gampe2204f0b2014-10-21 23:04:54 -07005186 if (kDebugTableNoisy) {
5187 ALOGI("Incl %s:%s/%s: 0x%08x\n",
5188 String8(package).string(), String8(type).string(),
5189 String8(name).string(), rid);
5190 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005191 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08005192
5193 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5194 if (packageId != APP_PACKAGE_ID && packageId != SYS_PACKAGE_ID) {
5195 outValue->dataType = Res_value::TYPE_DYNAMIC_REFERENCE;
5196 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005197 outValue->data = rid;
5198 return true;
5199 }
5200
5201 if (accessor) {
5202 uint32_t rid = accessor->getCustomResourceWithCreation(package, type, name,
5203 createIfNotFound);
5204 if (rid != 0) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07005205 if (kDebugTableNoisy) {
5206 ALOGI("Pckg %s:%s/%s: 0x%08x\n",
5207 String8(package).string(), String8(type).string(),
5208 String8(name).string(), rid);
5209 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08005210 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5211 if (packageId == 0x00) {
5212 outValue->data = rid;
5213 outValue->dataType = Res_value::TYPE_DYNAMIC_REFERENCE;
5214 return true;
5215 } else if (packageId == APP_PACKAGE_ID || packageId == SYS_PACKAGE_ID) {
5216 // We accept packageId's generated as 0x01 in order to support
5217 // building the android system resources
5218 outValue->data = rid;
5219 return true;
5220 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005221 }
5222 }
5223 }
5224
5225 if (accessor != NULL) {
5226 accessor->reportError(accessorCookie, "No resource found that matches the given name");
5227 }
5228 return false;
5229 }
5230
5231 // if we got to here, and localization is required and it's not a reference,
5232 // complain and bail.
5233 if (l10nReq == ResTable_map::L10N_SUGGESTED) {
5234 if (localizationSetting) {
5235 if (accessor != NULL) {
5236 accessor->reportError(accessorCookie, "This attribute must be localized.");
5237 }
5238 }
5239 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005240
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005241 if (*s == '#') {
5242 // It's a color! Convert to an integer of the form 0xaarrggbb.
5243 uint32_t color = 0;
5244 bool error = false;
5245 if (len == 4) {
5246 outValue->dataType = outValue->TYPE_INT_COLOR_RGB4;
5247 color |= 0xFF000000;
5248 color |= get_hex(s[1], &error) << 20;
5249 color |= get_hex(s[1], &error) << 16;
5250 color |= get_hex(s[2], &error) << 12;
5251 color |= get_hex(s[2], &error) << 8;
5252 color |= get_hex(s[3], &error) << 4;
5253 color |= get_hex(s[3], &error);
5254 } else if (len == 5) {
5255 outValue->dataType = outValue->TYPE_INT_COLOR_ARGB4;
5256 color |= get_hex(s[1], &error) << 28;
5257 color |= get_hex(s[1], &error) << 24;
5258 color |= get_hex(s[2], &error) << 20;
5259 color |= get_hex(s[2], &error) << 16;
5260 color |= get_hex(s[3], &error) << 12;
5261 color |= get_hex(s[3], &error) << 8;
5262 color |= get_hex(s[4], &error) << 4;
5263 color |= get_hex(s[4], &error);
5264 } else if (len == 7) {
5265 outValue->dataType = outValue->TYPE_INT_COLOR_RGB8;
5266 color |= 0xFF000000;
5267 color |= get_hex(s[1], &error) << 20;
5268 color |= get_hex(s[2], &error) << 16;
5269 color |= get_hex(s[3], &error) << 12;
5270 color |= get_hex(s[4], &error) << 8;
5271 color |= get_hex(s[5], &error) << 4;
5272 color |= get_hex(s[6], &error);
5273 } else if (len == 9) {
5274 outValue->dataType = outValue->TYPE_INT_COLOR_ARGB8;
5275 color |= get_hex(s[1], &error) << 28;
5276 color |= get_hex(s[2], &error) << 24;
5277 color |= get_hex(s[3], &error) << 20;
5278 color |= get_hex(s[4], &error) << 16;
5279 color |= get_hex(s[5], &error) << 12;
5280 color |= get_hex(s[6], &error) << 8;
5281 color |= get_hex(s[7], &error) << 4;
5282 color |= get_hex(s[8], &error);
5283 } else {
5284 error = true;
5285 }
5286 if (!error) {
5287 if ((attrType&ResTable_map::TYPE_COLOR) == 0) {
5288 if (!canStringCoerce) {
5289 if (accessor != NULL) {
5290 accessor->reportError(accessorCookie,
5291 "Color types not allowed");
5292 }
5293 return false;
5294 }
5295 } else {
5296 outValue->data = color;
5297 //printf("Color input=%s, output=0x%x\n", String8(s, len).string(), color);
5298 return true;
5299 }
5300 } else {
5301 if ((attrType&ResTable_map::TYPE_COLOR) != 0) {
5302 if (accessor != NULL) {
5303 accessor->reportError(accessorCookie, "Color value not valid --"
5304 " must be #rgb, #argb, #rrggbb, or #aarrggbb");
5305 }
5306 #if 0
5307 fprintf(stderr, "%s: Color ID %s value %s is not valid\n",
5308 "Resource File", //(const char*)in->getPrintableSource(),
5309 String8(*curTag).string(),
5310 String8(s, len).string());
5311 #endif
5312 return false;
5313 }
5314 }
5315 }
5316
5317 if (*s == '?') {
5318 outValue->dataType = outValue->TYPE_ATTRIBUTE;
5319
5320 // Note: we don't check attrType here because the reference can
5321 // be to any other type; we just need to count on the client making
5322 // sure the referenced type is correct.
5323
5324 //printf("Looking up attr: %s\n", String8(s, len).string());
5325
5326 static const String16 attr16("attr");
5327 String16 package, type, name;
5328 if (!expandResourceRef(s+1, len-1, &package, &type, &name,
5329 &attr16, defPackage, &errorMsg)) {
5330 if (accessor != NULL) {
5331 accessor->reportError(accessorCookie, errorMsg);
5332 }
5333 return false;
5334 }
5335
5336 //printf("Pkg: %s, Type: %s, Name: %s\n",
5337 // String8(package).string(), String8(type).string(),
5338 // String8(name).string());
5339 uint32_t specFlags = 0;
Mark Salyzyn00adb862014-03-19 11:00:06 -07005340 uint32_t rid =
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005341 identifierForName(name.string(), name.size(),
5342 type.string(), type.size(),
5343 package.string(), package.size(), &specFlags);
5344 if (rid != 0) {
5345 if (enforcePrivate) {
5346 if ((specFlags&ResTable_typeSpec::SPEC_PUBLIC) == 0) {
5347 if (accessor != NULL) {
5348 accessor->reportError(accessorCookie, "Attribute is not public.");
5349 }
5350 return false;
5351 }
5352 }
Adam Lesinski8ac51d12016-05-10 10:01:12 -07005353
5354 if (accessor) {
5355 rid = Res_MAKEID(
5356 accessor->getRemappedPackage(Res_GETPACKAGE(rid)),
5357 Res_GETTYPE(rid), Res_GETENTRY(rid));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005358 }
Adam Lesinski8ac51d12016-05-10 10:01:12 -07005359
5360 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5361 if (packageId != APP_PACKAGE_ID && packageId != SYS_PACKAGE_ID) {
5362 outValue->dataType = Res_value::TYPE_DYNAMIC_ATTRIBUTE;
5363 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005364 outValue->data = rid;
5365 return true;
5366 }
5367
5368 if (accessor) {
5369 uint32_t rid = accessor->getCustomResource(package, type, name);
5370 if (rid != 0) {
Adam Lesinski8ac51d12016-05-10 10:01:12 -07005371 uint32_t packageId = Res_GETPACKAGE(rid) + 1;
5372 if (packageId == 0x00) {
5373 outValue->data = rid;
5374 outValue->dataType = Res_value::TYPE_DYNAMIC_ATTRIBUTE;
5375 return true;
5376 } else if (packageId == APP_PACKAGE_ID || packageId == SYS_PACKAGE_ID) {
5377 // We accept packageId's generated as 0x01 in order to support
5378 // building the android system resources
5379 outValue->data = rid;
5380 return true;
5381 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005382 }
5383 }
5384
5385 if (accessor != NULL) {
5386 accessor->reportError(accessorCookie, "No resource found that matches the given name");
5387 }
5388 return false;
5389 }
5390
5391 if (stringToInt(s, len, outValue)) {
5392 if ((attrType&ResTable_map::TYPE_INTEGER) == 0) {
5393 // If this type does not allow integers, but does allow floats,
5394 // fall through on this error case because the float type should
5395 // be able to accept any integer value.
5396 if (!canStringCoerce && (attrType&ResTable_map::TYPE_FLOAT) == 0) {
5397 if (accessor != NULL) {
5398 accessor->reportError(accessorCookie, "Integer types not allowed");
5399 }
5400 return false;
5401 }
5402 } else {
5403 if (((int32_t)outValue->data) < ((int32_t)attrMin)
5404 || ((int32_t)outValue->data) > ((int32_t)attrMax)) {
5405 if (accessor != NULL) {
5406 accessor->reportError(accessorCookie, "Integer value out of range");
5407 }
5408 return false;
5409 }
5410 return true;
5411 }
5412 }
5413
5414 if (stringToFloat(s, len, outValue)) {
5415 if (outValue->dataType == Res_value::TYPE_DIMENSION) {
5416 if ((attrType&ResTable_map::TYPE_DIMENSION) != 0) {
5417 return true;
5418 }
5419 if (!canStringCoerce) {
5420 if (accessor != NULL) {
5421 accessor->reportError(accessorCookie, "Dimension types not allowed");
5422 }
5423 return false;
5424 }
5425 } else if (outValue->dataType == Res_value::TYPE_FRACTION) {
5426 if ((attrType&ResTable_map::TYPE_FRACTION) != 0) {
5427 return true;
5428 }
5429 if (!canStringCoerce) {
5430 if (accessor != NULL) {
5431 accessor->reportError(accessorCookie, "Fraction types not allowed");
5432 }
5433 return false;
5434 }
5435 } else if ((attrType&ResTable_map::TYPE_FLOAT) == 0) {
5436 if (!canStringCoerce) {
5437 if (accessor != NULL) {
5438 accessor->reportError(accessorCookie, "Float types not allowed");
5439 }
5440 return false;
5441 }
5442 } else {
5443 return true;
5444 }
5445 }
5446
5447 if (len == 4) {
5448 if ((s[0] == 't' || s[0] == 'T') &&
5449 (s[1] == 'r' || s[1] == 'R') &&
5450 (s[2] == 'u' || s[2] == 'U') &&
5451 (s[3] == 'e' || s[3] == 'E')) {
5452 if ((attrType&ResTable_map::TYPE_BOOLEAN) == 0) {
5453 if (!canStringCoerce) {
5454 if (accessor != NULL) {
5455 accessor->reportError(accessorCookie, "Boolean types not allowed");
5456 }
5457 return false;
5458 }
5459 } else {
5460 outValue->dataType = outValue->TYPE_INT_BOOLEAN;
5461 outValue->data = (uint32_t)-1;
5462 return true;
5463 }
5464 }
5465 }
5466
5467 if (len == 5) {
5468 if ((s[0] == 'f' || s[0] == 'F') &&
5469 (s[1] == 'a' || s[1] == 'A') &&
5470 (s[2] == 'l' || s[2] == 'L') &&
5471 (s[3] == 's' || s[3] == 'S') &&
5472 (s[4] == 'e' || s[4] == 'E')) {
5473 if ((attrType&ResTable_map::TYPE_BOOLEAN) == 0) {
5474 if (!canStringCoerce) {
5475 if (accessor != NULL) {
5476 accessor->reportError(accessorCookie, "Boolean types not allowed");
5477 }
5478 return false;
5479 }
5480 } else {
5481 outValue->dataType = outValue->TYPE_INT_BOOLEAN;
5482 outValue->data = 0;
5483 return true;
5484 }
5485 }
5486 }
5487
5488 if ((attrType&ResTable_map::TYPE_ENUM) != 0) {
5489 const ssize_t p = getResourcePackageIndex(attrID);
5490 const bag_entry* bag;
5491 ssize_t cnt = p >= 0 ? lockBag(attrID, &bag) : -1;
5492 //printf("Got %d for enum\n", cnt);
5493 if (cnt >= 0) {
5494 resource_name rname;
5495 while (cnt > 0) {
5496 if (!Res_INTERNALID(bag->map.name.ident)) {
5497 //printf("Trying attr #%08x\n", bag->map.name.ident);
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07005498 if (getResourceName(bag->map.name.ident, false, &rname)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005499 #if 0
5500 printf("Matching %s against %s (0x%08x)\n",
5501 String8(s, len).string(),
5502 String8(rname.name, rname.nameLen).string(),
5503 bag->map.name.ident);
5504 #endif
5505 if (strzcmp16(s, len, rname.name, rname.nameLen) == 0) {
5506 outValue->dataType = bag->map.value.dataType;
5507 outValue->data = bag->map.value.data;
5508 unlockBag(bag);
5509 return true;
5510 }
5511 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005512
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005513 }
5514 bag++;
5515 cnt--;
5516 }
5517 unlockBag(bag);
5518 }
5519
5520 if (fromAccessor) {
5521 if (accessor->getAttributeEnum(attrID, s, len, outValue)) {
5522 return true;
5523 }
5524 }
5525 }
5526
5527 if ((attrType&ResTable_map::TYPE_FLAGS) != 0) {
5528 const ssize_t p = getResourcePackageIndex(attrID);
5529 const bag_entry* bag;
5530 ssize_t cnt = p >= 0 ? lockBag(attrID, &bag) : -1;
5531 //printf("Got %d for flags\n", cnt);
5532 if (cnt >= 0) {
5533 bool failed = false;
5534 resource_name rname;
5535 outValue->dataType = Res_value::TYPE_INT_HEX;
5536 outValue->data = 0;
5537 const char16_t* end = s + len;
5538 const char16_t* pos = s;
5539 while (pos < end && !failed) {
5540 const char16_t* start = pos;
The Android Open Source Project4df24232009-03-05 14:34:35 -08005541 pos++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005542 while (pos < end && *pos != '|') {
5543 pos++;
5544 }
The Android Open Source Project4df24232009-03-05 14:34:35 -08005545 //printf("Looking for: %s\n", String8(start, pos-start).string());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005546 const bag_entry* bagi = bag;
The Android Open Source Project4df24232009-03-05 14:34:35 -08005547 ssize_t i;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005548 for (i=0; i<cnt; i++, bagi++) {
5549 if (!Res_INTERNALID(bagi->map.name.ident)) {
5550 //printf("Trying attr #%08x\n", bagi->map.name.ident);
Dianne Hackbornd45c68d2013-07-31 12:14:24 -07005551 if (getResourceName(bagi->map.name.ident, false, &rname)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005552 #if 0
5553 printf("Matching %s against %s (0x%08x)\n",
5554 String8(start,pos-start).string(),
5555 String8(rname.name, rname.nameLen).string(),
5556 bagi->map.name.ident);
5557 #endif
5558 if (strzcmp16(start, pos-start, rname.name, rname.nameLen) == 0) {
5559 outValue->data |= bagi->map.value.data;
5560 break;
5561 }
5562 }
5563 }
5564 }
5565 if (i >= cnt) {
5566 // Didn't find this flag identifier.
5567 failed = true;
5568 }
5569 if (pos < end) {
5570 pos++;
5571 }
5572 }
5573 unlockBag(bag);
5574 if (!failed) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08005575 //printf("Final flag value: 0x%lx\n", outValue->data);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005576 return true;
5577 }
5578 }
5579
5580
5581 if (fromAccessor) {
5582 if (accessor->getAttributeFlags(attrID, s, len, outValue)) {
The Android Open Source Project4df24232009-03-05 14:34:35 -08005583 //printf("Final flag value: 0x%lx\n", outValue->data);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005584 return true;
5585 }
5586 }
5587 }
5588
5589 if ((attrType&ResTable_map::TYPE_STRING) == 0) {
5590 if (accessor != NULL) {
5591 accessor->reportError(accessorCookie, "String types not allowed");
5592 }
5593 return false;
5594 }
5595
5596 // Generic string handling...
5597 outValue->dataType = outValue->TYPE_STRING;
5598 if (outString) {
5599 bool failed = collectString(outString, s, len, preserveSpaces, &errorMsg);
5600 if (accessor != NULL) {
5601 accessor->reportError(accessorCookie, errorMsg);
5602 }
5603 return failed;
5604 }
5605
5606 return true;
5607}
5608
5609bool ResTable::collectString(String16* outString,
5610 const char16_t* s, size_t len,
5611 bool preserveSpaces,
5612 const char** outErrorMsg,
5613 bool append)
5614{
5615 String16 tmp;
5616
5617 char quoted = 0;
5618 const char16_t* p = s;
5619 while (p < (s+len)) {
5620 while (p < (s+len)) {
5621 const char16_t c = *p;
5622 if (c == '\\') {
5623 break;
5624 }
5625 if (!preserveSpaces) {
5626 if (quoted == 0 && isspace16(c)
5627 && (c != ' ' || isspace16(*(p+1)))) {
5628 break;
5629 }
5630 if (c == '"' && (quoted == 0 || quoted == '"')) {
5631 break;
5632 }
5633 if (c == '\'' && (quoted == 0 || quoted == '\'')) {
Eric Fischerc87d2522009-09-01 15:20:30 -07005634 /*
5635 * In practice, when people write ' instead of \'
5636 * in a string, they are doing it by accident
5637 * instead of really meaning to use ' as a quoting
5638 * character. Warn them so they don't lose it.
5639 */
5640 if (outErrorMsg) {
5641 *outErrorMsg = "Apostrophe not preceded by \\";
5642 }
5643 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005644 }
5645 }
5646 p++;
5647 }
5648 if (p < (s+len)) {
5649 if (p > s) {
5650 tmp.append(String16(s, p-s));
5651 }
5652 if (!preserveSpaces && (*p == '"' || *p == '\'')) {
5653 if (quoted == 0) {
5654 quoted = *p;
5655 } else {
5656 quoted = 0;
5657 }
5658 p++;
5659 } else if (!preserveSpaces && isspace16(*p)) {
5660 // Space outside of a quote -- consume all spaces and
5661 // leave a single plain space char.
5662 tmp.append(String16(" "));
5663 p++;
5664 while (p < (s+len) && isspace16(*p)) {
5665 p++;
5666 }
5667 } else if (*p == '\\') {
5668 p++;
5669 if (p < (s+len)) {
5670 switch (*p) {
5671 case 't':
5672 tmp.append(String16("\t"));
5673 break;
5674 case 'n':
5675 tmp.append(String16("\n"));
5676 break;
5677 case '#':
5678 tmp.append(String16("#"));
5679 break;
5680 case '@':
5681 tmp.append(String16("@"));
5682 break;
5683 case '?':
5684 tmp.append(String16("?"));
5685 break;
5686 case '"':
5687 tmp.append(String16("\""));
5688 break;
5689 case '\'':
5690 tmp.append(String16("'"));
5691 break;
5692 case '\\':
5693 tmp.append(String16("\\"));
5694 break;
5695 case 'u':
5696 {
5697 char16_t chr = 0;
5698 int i = 0;
5699 while (i < 4 && p[1] != 0) {
5700 p++;
5701 i++;
5702 int c;
5703 if (*p >= '0' && *p <= '9') {
5704 c = *p - '0';
5705 } else if (*p >= 'a' && *p <= 'f') {
5706 c = *p - 'a' + 10;
5707 } else if (*p >= 'A' && *p <= 'F') {
5708 c = *p - 'A' + 10;
5709 } else {
5710 if (outErrorMsg) {
5711 *outErrorMsg = "Bad character in \\u unicode escape sequence";
5712 }
5713 return false;
5714 }
5715 chr = (chr<<4) | c;
5716 }
5717 tmp.append(String16(&chr, 1));
5718 } break;
5719 default:
5720 // ignore unknown escape chars.
5721 break;
5722 }
5723 p++;
5724 }
5725 }
5726 len -= (p-s);
5727 s = p;
5728 }
5729 }
5730
5731 if (tmp.size() != 0) {
5732 if (len > 0) {
5733 tmp.append(String16(s, len));
5734 }
5735 if (append) {
5736 outString->append(tmp);
5737 } else {
5738 outString->setTo(tmp);
5739 }
5740 } else {
5741 if (append) {
5742 outString->append(String16(s, len));
5743 } else {
5744 outString->setTo(s, len);
5745 }
5746 }
5747
5748 return true;
5749}
5750
5751size_t ResTable::getBasePackageCount() const
5752{
5753 if (mError != NO_ERROR) {
5754 return 0;
5755 }
5756 return mPackageGroups.size();
5757}
5758
Adam Lesinskide898ff2014-01-29 18:20:45 -08005759const String16 ResTable::getBasePackageName(size_t idx) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005760{
5761 if (mError != NO_ERROR) {
Adam Lesinskide898ff2014-01-29 18:20:45 -08005762 return String16();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005763 }
5764 LOG_FATAL_IF(idx >= mPackageGroups.size(),
5765 "Requested package index %d past package count %d",
5766 (int)idx, (int)mPackageGroups.size());
Adam Lesinskide898ff2014-01-29 18:20:45 -08005767 return mPackageGroups[idx]->name;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005768}
5769
5770uint32_t ResTable::getBasePackageId(size_t idx) const
5771{
5772 if (mError != NO_ERROR) {
5773 return 0;
5774 }
5775 LOG_FATAL_IF(idx >= mPackageGroups.size(),
5776 "Requested package index %d past package count %d",
5777 (int)idx, (int)mPackageGroups.size());
5778 return mPackageGroups[idx]->id;
5779}
5780
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005781uint32_t ResTable::getLastTypeIdForPackage(size_t idx) const
5782{
5783 if (mError != NO_ERROR) {
5784 return 0;
5785 }
5786 LOG_FATAL_IF(idx >= mPackageGroups.size(),
5787 "Requested package index %d past package count %d",
5788 (int)idx, (int)mPackageGroups.size());
5789 const PackageGroup* const group = mPackageGroups[idx];
5790 return group->largestTypeId;
5791}
5792
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005793size_t ResTable::getTableCount() const
5794{
5795 return mHeaders.size();
5796}
5797
5798const ResStringPool* ResTable::getTableStringBlock(size_t index) const
5799{
5800 return &mHeaders[index]->values;
5801}
5802
Narayan Kamath7c4887f2014-01-27 17:32:37 +00005803int32_t ResTable::getTableCookie(size_t index) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005804{
5805 return mHeaders[index]->cookie;
5806}
5807
Adam Lesinskide898ff2014-01-29 18:20:45 -08005808const DynamicRefTable* ResTable::getDynamicRefTableForCookie(int32_t cookie) const
5809{
5810 const size_t N = mPackageGroups.size();
5811 for (size_t i = 0; i < N; i++) {
5812 const PackageGroup* pg = mPackageGroups[i];
5813 size_t M = pg->packages.size();
5814 for (size_t j = 0; j < M; j++) {
5815 if (pg->packages[j]->header->cookie == cookie) {
5816 return &pg->dynamicRefTable;
5817 }
5818 }
5819 }
5820 return NULL;
5821}
5822
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005823static bool compareResTableConfig(const ResTable_config& a, const ResTable_config& b) {
5824 return a.compare(b) < 0;
5825}
5826
Adam Lesinski76da37e2016-05-19 18:25:28 -07005827template <typename Func>
5828void ResTable::forEachConfiguration(bool ignoreMipmap, bool ignoreAndroidPackage,
5829 bool includeSystemConfigs, const Func& f) const {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005830 const size_t packageCount = mPackageGroups.size();
Adam Lesinski76da37e2016-05-19 18:25:28 -07005831 const String16 android("android");
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005832 for (size_t i = 0; i < packageCount; i++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005833 const PackageGroup* packageGroup = mPackageGroups[i];
Filip Gruszczynski23493322015-07-29 17:02:59 -07005834 if (ignoreAndroidPackage && android == packageGroup->name) {
5835 continue;
5836 }
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08005837 if (!includeSystemConfigs && packageGroup->isSystemAsset) {
5838 continue;
5839 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005840 const size_t typeCount = packageGroup->types.size();
5841 for (size_t j = 0; j < typeCount; j++) {
5842 const TypeList& typeList = packageGroup->types[j];
5843 const size_t numTypes = typeList.size();
5844 for (size_t k = 0; k < numTypes; k++) {
5845 const Type* type = typeList[k];
Adam Lesinski42eea272015-01-15 17:01:39 -08005846 const ResStringPool& typeStrings = type->package->typeStrings;
5847 if (ignoreMipmap && typeStrings.string8ObjectAt(
5848 type->typeSpec->id - 1) == "mipmap") {
5849 continue;
5850 }
5851
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005852 const size_t numConfigs = type->configs.size();
5853 for (size_t m = 0; m < numConfigs; m++) {
5854 const ResTable_type* config = type->configs[m];
Narayan Kamath788fa412014-01-21 15:32:36 +00005855 ResTable_config cfg;
5856 memset(&cfg, 0, sizeof(ResTable_config));
5857 cfg.copyFromDtoH(config->config);
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005858
Adam Lesinski76da37e2016-05-19 18:25:28 -07005859 f(cfg);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005860 }
5861 }
5862 }
5863 }
5864}
5865
Adam Lesinski76da37e2016-05-19 18:25:28 -07005866void ResTable::getConfigurations(Vector<ResTable_config>* configs, bool ignoreMipmap,
5867 bool ignoreAndroidPackage, bool includeSystemConfigs) const {
5868 auto func = [&](const ResTable_config& cfg) {
5869 const auto beginIter = configs->begin();
5870 const auto endIter = configs->end();
5871
5872 auto iter = std::lower_bound(beginIter, endIter, cfg, compareResTableConfig);
5873 if (iter == endIter || iter->compare(cfg) != 0) {
5874 configs->insertAt(cfg, std::distance(beginIter, iter));
5875 }
5876 };
5877 forEachConfiguration(ignoreMipmap, ignoreAndroidPackage, includeSystemConfigs, func);
5878}
5879
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005880static bool compareString8AndCString(const String8& str, const char* cStr) {
5881 return strcmp(str.string(), cStr) < 0;
5882}
5883
Adam Lesinski76da37e2016-05-19 18:25:28 -07005884void ResTable::getLocales(Vector<String8>* locales, bool includeSystemLocales) const {
Narayan Kamath48620f12014-01-20 13:57:11 +00005885 char locale[RESTABLE_MAX_LOCALE_LEN];
Adam Lesinskib7e1ce02016-04-11 20:03:01 -07005886
Adam Lesinski76da37e2016-05-19 18:25:28 -07005887 forEachConfiguration(false, false, includeSystemLocales, [&](const ResTable_config& cfg) {
5888 if (cfg.locale != 0) {
5889 cfg.getBcp47Locale(locale);
5890
5891 const auto beginIter = locales->begin();
5892 const auto endIter = locales->end();
5893
5894 auto iter = std::lower_bound(beginIter, endIter, locale, compareString8AndCString);
5895 if (iter == endIter || strcmp(iter->string(), locale) != 0) {
5896 locales->insertAt(String8(locale), std::distance(beginIter, iter));
5897 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005898 }
Adam Lesinski76da37e2016-05-19 18:25:28 -07005899 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005900}
5901
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005902StringPoolRef::StringPoolRef(const ResStringPool* pool, uint32_t index)
5903 : mPool(pool), mIndex(index) {}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005904
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005905StringPoolRef::StringPoolRef()
5906 : mPool(NULL), mIndex(0) {}
5907
5908const char* StringPoolRef::string8(size_t* outLen) const {
5909 if (mPool != NULL) {
5910 return mPool->string8At(mIndex, outLen);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005911 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005912 if (outLen != NULL) {
5913 *outLen = 0;
5914 }
5915 return NULL;
5916}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005917
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005918const char16_t* StringPoolRef::string16(size_t* outLen) const {
5919 if (mPool != NULL) {
5920 return mPool->stringAt(mIndex, outLen);
5921 }
5922 if (outLen != NULL) {
5923 *outLen = 0;
5924 }
5925 return NULL;
5926}
5927
Adam Lesinski82a2dd82014-09-17 18:34:15 -07005928bool ResTable::getResourceFlags(uint32_t resID, uint32_t* outFlags) const {
5929 if (mError != NO_ERROR) {
5930 return false;
5931 }
5932
5933 const ssize_t p = getResourcePackageIndex(resID);
5934 const int t = Res_GETTYPE(resID);
5935 const int e = Res_GETENTRY(resID);
5936
5937 if (p < 0) {
5938 if (Res_GETPACKAGE(resID)+1 == 0) {
5939 ALOGW("No package identifier when getting flags for resource number 0x%08x", resID);
5940 } else {
5941 ALOGW("No known package when getting flags for resource number 0x%08x", resID);
5942 }
5943 return false;
5944 }
5945 if (t < 0) {
5946 ALOGW("No type identifier when getting flags for resource number 0x%08x", resID);
5947 return false;
5948 }
5949
5950 const PackageGroup* const grp = mPackageGroups[p];
5951 if (grp == NULL) {
5952 ALOGW("Bad identifier when getting flags for resource number 0x%08x", resID);
5953 return false;
5954 }
5955
5956 Entry entry;
5957 status_t err = getEntry(grp, t, e, NULL, &entry);
5958 if (err != NO_ERROR) {
5959 return false;
5960 }
5961
5962 *outFlags = entry.specFlags;
5963 return true;
5964}
5965
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005966status_t ResTable::getEntry(
5967 const PackageGroup* packageGroup, int typeIndex, int entryIndex,
5968 const ResTable_config* config,
5969 Entry* outEntry) const
5970{
5971 const TypeList& typeList = packageGroup->types[typeIndex];
5972 if (typeList.isEmpty()) {
5973 ALOGV("Skipping entry type index 0x%02x because type is NULL!\n", typeIndex);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005974 return BAD_TYPE;
5975 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07005976
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005977 const ResTable_type* bestType = NULL;
5978 uint32_t bestOffset = ResTable_type::NO_ENTRY;
5979 const Package* bestPackage = NULL;
5980 uint32_t specFlags = 0;
5981 uint8_t actualTypeIndex = typeIndex;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005982 ResTable_config bestConfig;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005983 memset(&bestConfig, 0, sizeof(bestConfig));
Mark Salyzyn00adb862014-03-19 11:00:06 -07005984
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005985 // Iterate over the Types of each package.
5986 const size_t typeCount = typeList.size();
5987 for (size_t i = 0; i < typeCount; i++) {
5988 const Type* const typeSpec = typeList[i];
Mark Salyzyn00adb862014-03-19 11:00:06 -07005989
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005990 int realEntryIndex = entryIndex;
5991 int realTypeIndex = typeIndex;
5992 bool currentTypeIsOverlay = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005993
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07005994 // Runtime overlay packages provide a mapping of app resource
5995 // ID to package resource ID.
5996 if (typeSpec->idmapEntries.hasEntries()) {
5997 uint16_t overlayEntryIndex;
5998 if (typeSpec->idmapEntries.lookup(entryIndex, &overlayEntryIndex) != NO_ERROR) {
5999 // No such mapping exists
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006000 continue;
6001 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006002 realEntryIndex = overlayEntryIndex;
6003 realTypeIndex = typeSpec->idmapEntries.overlayTypeId() - 1;
6004 currentTypeIsOverlay = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006005 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006006
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006007 if (static_cast<size_t>(realEntryIndex) >= typeSpec->entryCount) {
6008 ALOGW("For resource 0x%08x, entry index(%d) is beyond type entryCount(%d)",
6009 Res_MAKEID(packageGroup->id - 1, typeIndex, entryIndex),
6010 entryIndex, static_cast<int>(typeSpec->entryCount));
6011 // We should normally abort here, but some legacy apps declare
6012 // resources in the 'android' package (old bug in AAPT).
6013 continue;
6014 }
6015
6016 // Aggregate all the flags for each package that defines this entry.
6017 if (typeSpec->typeSpecFlags != NULL) {
6018 specFlags |= dtohl(typeSpec->typeSpecFlags[realEntryIndex]);
6019 } else {
6020 specFlags = -1;
6021 }
6022
Adam Lesinskiff5808d2016-02-23 17:49:53 -08006023 const Vector<const ResTable_type*>* candidateConfigs = &typeSpec->configs;
6024
6025 std::shared_ptr<Vector<const ResTable_type*>> filteredConfigs;
6026 if (config && memcmp(&mParams, config, sizeof(mParams)) == 0) {
6027 // Grab the lock first so we can safely get the current filtered list.
6028 AutoMutex _lock(mFilteredConfigLock);
6029
6030 // This configuration is equal to the one we have previously cached for,
6031 // so use the filtered configs.
6032
6033 const TypeCacheEntry& cacheEntry = packageGroup->typeCacheEntries[typeIndex];
6034 if (i < cacheEntry.filteredConfigs.size()) {
6035 if (cacheEntry.filteredConfigs[i]) {
6036 // Grab a reference to the shared_ptr so it doesn't get destroyed while
6037 // going through this list.
6038 filteredConfigs = cacheEntry.filteredConfigs[i];
6039
6040 // Use this filtered list.
6041 candidateConfigs = filteredConfigs.get();
6042 }
6043 }
6044 }
6045
6046 const size_t numConfigs = candidateConfigs->size();
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006047 for (size_t c = 0; c < numConfigs; c++) {
Adam Lesinskiff5808d2016-02-23 17:49:53 -08006048 const ResTable_type* const thisType = candidateConfigs->itemAt(c);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006049 if (thisType == NULL) {
6050 continue;
6051 }
6052
6053 ResTable_config thisConfig;
6054 thisConfig.copyFromDtoH(thisType->config);
6055
6056 // Check to make sure this one is valid for the current parameters.
6057 if (config != NULL && !thisConfig.match(*config)) {
6058 continue;
6059 }
6060
6061 // Check if there is the desired entry in this type.
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006062 const uint32_t* const eindex = reinterpret_cast<const uint32_t*>(
6063 reinterpret_cast<const uint8_t*>(thisType) + dtohs(thisType->header.headerSize));
6064
6065 uint32_t thisOffset = dtohl(eindex[realEntryIndex]);
6066 if (thisOffset == ResTable_type::NO_ENTRY) {
6067 // There is no entry for this index and configuration.
6068 continue;
6069 }
6070
6071 if (bestType != NULL) {
6072 // Check if this one is less specific than the last found. If so,
6073 // we will skip it. We check starting with things we most care
6074 // about to those we least care about.
6075 if (!thisConfig.isBetterThan(bestConfig, config)) {
6076 if (!currentTypeIsOverlay || thisConfig.compare(bestConfig) != 0) {
6077 continue;
6078 }
6079 }
6080 }
6081
6082 bestType = thisType;
6083 bestOffset = thisOffset;
6084 bestConfig = thisConfig;
6085 bestPackage = typeSpec->package;
6086 actualTypeIndex = realTypeIndex;
6087
6088 // If no config was specified, any type will do, so skip
6089 if (config == NULL) {
6090 break;
6091 }
6092 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006093 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006094
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006095 if (bestType == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006096 return BAD_INDEX;
6097 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006098
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006099 bestOffset += dtohl(bestType->entriesStart);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006100
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006101 if (bestOffset > (dtohl(bestType->header.size)-sizeof(ResTable_entry))) {
Steve Block8564c8d2012-01-05 23:22:43 +00006102 ALOGW("ResTable_entry at 0x%x is beyond type chunk data 0x%x",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006103 bestOffset, dtohl(bestType->header.size));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006104 return BAD_TYPE;
6105 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006106 if ((bestOffset & 0x3) != 0) {
6107 ALOGW("ResTable_entry at 0x%x is not on an integer boundary", bestOffset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006108 return BAD_TYPE;
6109 }
6110
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006111 const ResTable_entry* const entry = reinterpret_cast<const ResTable_entry*>(
6112 reinterpret_cast<const uint8_t*>(bestType) + bestOffset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006113 if (dtohs(entry->size) < sizeof(*entry)) {
Steve Block8564c8d2012-01-05 23:22:43 +00006114 ALOGW("ResTable_entry size 0x%x is too small", dtohs(entry->size));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006115 return BAD_TYPE;
6116 }
6117
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006118 if (outEntry != NULL) {
6119 outEntry->entry = entry;
6120 outEntry->config = bestConfig;
6121 outEntry->type = bestType;
6122 outEntry->specFlags = specFlags;
6123 outEntry->package = bestPackage;
6124 outEntry->typeStr = StringPoolRef(&bestPackage->typeStrings, actualTypeIndex - bestPackage->typeIdOffset);
6125 outEntry->keyStr = StringPoolRef(&bestPackage->keyStrings, dtohl(entry->key.index));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006126 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006127 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006128}
6129
6130status_t ResTable::parsePackage(const ResTable_package* const pkg,
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08006131 const Header* const header, bool appAsLib, bool isSystemAsset)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006132{
6133 const uint8_t* base = (const uint8_t*)pkg;
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006134 status_t err = validate_chunk(&pkg->header, sizeof(*pkg) - sizeof(pkg->typeIdOffset),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006135 header->dataEnd, "ResTable_package");
6136 if (err != NO_ERROR) {
6137 return (mError=err);
6138 }
6139
Patrik Bannura443dd932014-02-12 13:38:54 +01006140 const uint32_t pkgSize = dtohl(pkg->header.size);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006141
6142 if (dtohl(pkg->typeStrings) >= pkgSize) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006143 ALOGW("ResTable_package type strings at 0x%x are past chunk size 0x%x.",
6144 dtohl(pkg->typeStrings), pkgSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006145 return (mError=BAD_TYPE);
6146 }
6147 if ((dtohl(pkg->typeStrings)&0x3) != 0) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006148 ALOGW("ResTable_package type strings at 0x%x is not on an integer boundary.",
6149 dtohl(pkg->typeStrings));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006150 return (mError=BAD_TYPE);
6151 }
6152 if (dtohl(pkg->keyStrings) >= pkgSize) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006153 ALOGW("ResTable_package key strings at 0x%x are past chunk size 0x%x.",
6154 dtohl(pkg->keyStrings), pkgSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006155 return (mError=BAD_TYPE);
6156 }
6157 if ((dtohl(pkg->keyStrings)&0x3) != 0) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006158 ALOGW("ResTable_package key strings at 0x%x is not on an integer boundary.",
6159 dtohl(pkg->keyStrings));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006160 return (mError=BAD_TYPE);
6161 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006162
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006163 uint32_t id = dtohl(pkg->id);
6164 KeyedVector<uint8_t, IdmapEntries> idmapEntries;
Mark Salyzyn00adb862014-03-19 11:00:06 -07006165
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006166 if (header->resourceIDMap != NULL) {
6167 uint8_t targetPackageId = 0;
6168 status_t err = parseIdmap(header->resourceIDMap, header->resourceIDMapSize, &targetPackageId, &idmapEntries);
6169 if (err != NO_ERROR) {
6170 ALOGW("Overlay is broken");
6171 return (mError=err);
6172 }
6173 id = targetPackageId;
6174 }
6175
6176 if (id >= 256) {
6177 LOG_ALWAYS_FATAL("Package id out of range");
6178 return NO_ERROR;
Adam Lesinski25f48882016-06-14 11:05:23 -07006179 } else if (id == 0 || (id == 0x7f && appAsLib) || isSystemAsset) {
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08006180 // This is a library or a system asset, so assign an ID
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006181 id = mNextPackageId++;
6182 }
6183
6184 PackageGroup* group = NULL;
6185 Package* package = new Package(this, header, pkg);
6186 if (package == NULL) {
6187 return (mError=NO_MEMORY);
6188 }
6189
6190 err = package->typeStrings.setTo(base+dtohl(pkg->typeStrings),
6191 header->dataEnd-(base+dtohl(pkg->typeStrings)));
6192 if (err != NO_ERROR) {
6193 delete group;
6194 delete package;
6195 return (mError=err);
6196 }
6197
6198 err = package->keyStrings.setTo(base+dtohl(pkg->keyStrings),
6199 header->dataEnd-(base+dtohl(pkg->keyStrings)));
6200 if (err != NO_ERROR) {
6201 delete group;
6202 delete package;
6203 return (mError=err);
6204 }
6205
6206 size_t idx = mPackageMap[id];
6207 if (idx == 0) {
6208 idx = mPackageGroups.size() + 1;
6209
Adam Lesinski4bf58102014-11-03 11:21:19 -08006210 char16_t tmpName[sizeof(pkg->name)/sizeof(pkg->name[0])];
6211 strcpy16_dtoh(tmpName, pkg->name, sizeof(pkg->name)/sizeof(pkg->name[0]));
Roozbeh Pournader1c686f22015-12-18 14:22:14 -08006212 group = new PackageGroup(this, String16(tmpName), id, appAsLib, isSystemAsset);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006213 if (group == NULL) {
6214 delete package;
Dianne Hackborn78c40512009-07-06 11:07:40 -07006215 return (mError=NO_MEMORY);
6216 }
Adam Lesinskifab50872014-04-16 14:40:42 -07006217
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006218 err = mPackageGroups.add(group);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006219 if (err < NO_ERROR) {
6220 return (mError=err);
6221 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006222
6223 mPackageMap[id] = static_cast<uint8_t>(idx);
6224
6225 // Find all packages that reference this package
6226 size_t N = mPackageGroups.size();
6227 for (size_t i = 0; i < N; i++) {
6228 mPackageGroups[i]->dynamicRefTable.addMapping(
6229 group->name, static_cast<uint8_t>(group->id));
6230 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006231 } else {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006232 group = mPackageGroups.itemAt(idx - 1);
6233 if (group == NULL) {
6234 return (mError=UNKNOWN_ERROR);
6235 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006236 }
6237
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006238 err = group->packages.add(package);
6239 if (err < NO_ERROR) {
6240 return (mError=err);
6241 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006242
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006243 // Iterate through all chunks.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006244 const ResChunk_header* chunk =
6245 (const ResChunk_header*)(((const uint8_t*)pkg)
6246 + dtohs(pkg->header.headerSize));
6247 const uint8_t* endPos = ((const uint8_t*)pkg) + dtohs(pkg->header.size);
6248 while (((const uint8_t*)chunk) <= (endPos-sizeof(ResChunk_header)) &&
6249 ((const uint8_t*)chunk) <= (endPos-dtohl(chunk->size))) {
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006250 if (kDebugTableNoisy) {
6251 ALOGV("PackageChunk: type=0x%x, headerSize=0x%x, size=0x%x, pos=%p\n",
6252 dtohs(chunk->type), dtohs(chunk->headerSize), dtohl(chunk->size),
6253 (void*)(((const uint8_t*)chunk) - ((const uint8_t*)header->header)));
6254 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006255 const size_t csize = dtohl(chunk->size);
6256 const uint16_t ctype = dtohs(chunk->type);
6257 if (ctype == RES_TABLE_TYPE_SPEC_TYPE) {
6258 const ResTable_typeSpec* typeSpec = (const ResTable_typeSpec*)(chunk);
6259 err = validate_chunk(&typeSpec->header, sizeof(*typeSpec),
6260 endPos, "ResTable_typeSpec");
6261 if (err != NO_ERROR) {
6262 return (mError=err);
6263 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006264
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006265 const size_t typeSpecSize = dtohl(typeSpec->header.size);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006266 const size_t newEntryCount = dtohl(typeSpec->entryCount);
Mark Salyzyn00adb862014-03-19 11:00:06 -07006267
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006268 if (kDebugLoadTableNoisy) {
6269 ALOGI("TypeSpec off %p: type=0x%x, headerSize=0x%x, size=%p\n",
6270 (void*)(base-(const uint8_t*)chunk),
6271 dtohs(typeSpec->header.type),
6272 dtohs(typeSpec->header.headerSize),
6273 (void*)typeSpecSize);
6274 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006275 // look for block overrun or int overflow when multiplying by 4
6276 if ((dtohl(typeSpec->entryCount) > (INT32_MAX/sizeof(uint32_t))
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006277 || dtohs(typeSpec->header.headerSize)+(sizeof(uint32_t)*newEntryCount)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006278 > typeSpecSize)) {
Steve Block8564c8d2012-01-05 23:22:43 +00006279 ALOGW("ResTable_typeSpec entry index to %p extends beyond chunk end %p.",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006280 (void*)(dtohs(typeSpec->header.headerSize) + (sizeof(uint32_t)*newEntryCount)),
6281 (void*)typeSpecSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006282 return (mError=BAD_TYPE);
6283 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006284
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006285 if (typeSpec->id == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00006286 ALOGW("ResTable_type has an id of 0.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006287 return (mError=BAD_TYPE);
6288 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006289
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006290 if (newEntryCount > 0) {
6291 uint8_t typeIndex = typeSpec->id - 1;
6292 ssize_t idmapIndex = idmapEntries.indexOfKey(typeSpec->id);
6293 if (idmapIndex >= 0) {
6294 typeIndex = idmapEntries[idmapIndex].targetTypeId() - 1;
6295 }
6296
6297 TypeList& typeList = group->types.editItemAt(typeIndex);
6298 if (!typeList.isEmpty()) {
6299 const Type* existingType = typeList[0];
6300 if (existingType->entryCount != newEntryCount && idmapIndex < 0) {
6301 ALOGW("ResTable_typeSpec entry count inconsistent: given %d, previously %d",
6302 (int) newEntryCount, (int) existingType->entryCount);
6303 // We should normally abort here, but some legacy apps declare
6304 // resources in the 'android' package (old bug in AAPT).
6305 }
6306 }
6307
6308 Type* t = new Type(header, package, newEntryCount);
6309 t->typeSpec = typeSpec;
6310 t->typeSpecFlags = (const uint32_t*)(
6311 ((const uint8_t*)typeSpec) + dtohs(typeSpec->header.headerSize));
6312 if (idmapIndex >= 0) {
6313 t->idmapEntries = idmapEntries[idmapIndex];
6314 }
6315 typeList.add(t);
6316 group->largestTypeId = max(group->largestTypeId, typeSpec->id);
6317 } else {
6318 ALOGV("Skipping empty ResTable_typeSpec for type %d", typeSpec->id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006319 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006320
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006321 } else if (ctype == RES_TABLE_TYPE_TYPE) {
6322 const ResTable_type* type = (const ResTable_type*)(chunk);
6323 err = validate_chunk(&type->header, sizeof(*type)-sizeof(ResTable_config)+4,
6324 endPos, "ResTable_type");
6325 if (err != NO_ERROR) {
6326 return (mError=err);
6327 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006328
Patrik Bannura443dd932014-02-12 13:38:54 +01006329 const uint32_t typeSize = dtohl(type->header.size);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006330 const size_t newEntryCount = dtohl(type->entryCount);
Mark Salyzyn00adb862014-03-19 11:00:06 -07006331
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006332 if (kDebugLoadTableNoisy) {
6333 printf("Type off %p: type=0x%x, headerSize=0x%x, size=%u\n",
6334 (void*)(base-(const uint8_t*)chunk),
6335 dtohs(type->header.type),
6336 dtohs(type->header.headerSize),
6337 typeSize);
6338 }
6339 if (dtohs(type->header.headerSize)+(sizeof(uint32_t)*newEntryCount) > typeSize) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006340 ALOGW("ResTable_type entry index to %p extends beyond chunk end 0x%x.",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006341 (void*)(dtohs(type->header.headerSize) + (sizeof(uint32_t)*newEntryCount)),
6342 typeSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006343 return (mError=BAD_TYPE);
6344 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006345
6346 if (newEntryCount != 0
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006347 && dtohl(type->entriesStart) > (typeSize-sizeof(ResTable_entry))) {
Patrik Bannura443dd932014-02-12 13:38:54 +01006348 ALOGW("ResTable_type entriesStart at 0x%x extends beyond chunk end 0x%x.",
6349 dtohl(type->entriesStart), typeSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006350 return (mError=BAD_TYPE);
6351 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006353 if (type->id == 0) {
Steve Block8564c8d2012-01-05 23:22:43 +00006354 ALOGW("ResTable_type has an id of 0.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006355 return (mError=BAD_TYPE);
6356 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006357
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006358 if (newEntryCount > 0) {
6359 uint8_t typeIndex = type->id - 1;
6360 ssize_t idmapIndex = idmapEntries.indexOfKey(type->id);
6361 if (idmapIndex >= 0) {
6362 typeIndex = idmapEntries[idmapIndex].targetTypeId() - 1;
6363 }
6364
6365 TypeList& typeList = group->types.editItemAt(typeIndex);
6366 if (typeList.isEmpty()) {
6367 ALOGE("No TypeSpec for type %d", type->id);
6368 return (mError=BAD_TYPE);
6369 }
6370
6371 Type* t = typeList.editItemAt(typeList.size() - 1);
6372 if (newEntryCount != t->entryCount) {
6373 ALOGE("ResTable_type entry count inconsistent: given %d, previously %d",
6374 (int)newEntryCount, (int)t->entryCount);
6375 return (mError=BAD_TYPE);
6376 }
6377
6378 if (t->package != package) {
6379 ALOGE("No TypeSpec for type %d", type->id);
6380 return (mError=BAD_TYPE);
6381 }
6382
6383 t->configs.add(type);
6384
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006385 if (kDebugTableGetEntry) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006386 ResTable_config thisConfig;
6387 thisConfig.copyFromDtoH(type->config);
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006388 ALOGI("Adding config to type %d: %s\n", type->id,
6389 thisConfig.toString().string());
6390 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006391 } else {
6392 ALOGV("Skipping empty ResTable_type for type %d", type->id);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006393 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006394
Adam Lesinskide898ff2014-01-29 18:20:45 -08006395 } else if (ctype == RES_TABLE_LIBRARY_TYPE) {
6396 if (group->dynamicRefTable.entries().size() == 0) {
6397 status_t err = group->dynamicRefTable.load((const ResTable_lib_header*) chunk);
6398 if (err != NO_ERROR) {
6399 return (mError=err);
6400 }
6401
6402 // Fill in the reference table with the entries we already know about.
6403 size_t N = mPackageGroups.size();
6404 for (size_t i = 0; i < N; i++) {
6405 group->dynamicRefTable.addMapping(mPackageGroups[i]->name, mPackageGroups[i]->id);
6406 }
6407 } else {
6408 ALOGW("Found multiple library tables, ignoring...");
6409 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006410 } else {
6411 status_t err = validate_chunk(chunk, sizeof(ResChunk_header),
6412 endPos, "ResTable_package:unknown");
6413 if (err != NO_ERROR) {
6414 return (mError=err);
6415 }
6416 }
6417 chunk = (const ResChunk_header*)
6418 (((const uint8_t*)chunk) + csize);
6419 }
6420
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006421 return NO_ERROR;
6422}
6423
Tao Baia6d7e3f2015-09-01 18:49:54 -07006424DynamicRefTable::DynamicRefTable(uint8_t packageId, bool appAsLib)
Adam Lesinskide898ff2014-01-29 18:20:45 -08006425 : mAssignedPackageId(packageId)
Tao Baia6d7e3f2015-09-01 18:49:54 -07006426 , mAppAsLib(appAsLib)
Adam Lesinskide898ff2014-01-29 18:20:45 -08006427{
6428 memset(mLookupTable, 0, sizeof(mLookupTable));
6429
6430 // Reserved package ids
6431 mLookupTable[APP_PACKAGE_ID] = APP_PACKAGE_ID;
6432 mLookupTable[SYS_PACKAGE_ID] = SYS_PACKAGE_ID;
6433}
6434
6435status_t DynamicRefTable::load(const ResTable_lib_header* const header)
6436{
6437 const uint32_t entryCount = dtohl(header->count);
6438 const uint32_t sizeOfEntries = sizeof(ResTable_lib_entry) * entryCount;
6439 const uint32_t expectedSize = dtohl(header->header.size) - dtohl(header->header.headerSize);
6440 if (sizeOfEntries > expectedSize) {
6441 ALOGE("ResTable_lib_header size %u is too small to fit %u entries (x %u).",
6442 expectedSize, entryCount, (uint32_t)sizeof(ResTable_lib_entry));
6443 return UNKNOWN_ERROR;
6444 }
6445
6446 const ResTable_lib_entry* entry = (const ResTable_lib_entry*)(((uint8_t*) header) +
6447 dtohl(header->header.headerSize));
6448 for (uint32_t entryIndex = 0; entryIndex < entryCount; entryIndex++) {
6449 uint32_t packageId = dtohl(entry->packageId);
6450 char16_t tmpName[sizeof(entry->packageName) / sizeof(char16_t)];
6451 strcpy16_dtoh(tmpName, entry->packageName, sizeof(entry->packageName) / sizeof(char16_t));
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006452 if (kDebugLibNoisy) {
6453 ALOGV("Found lib entry %s with id %d\n", String8(tmpName).string(),
6454 dtohl(entry->packageId));
6455 }
Adam Lesinskide898ff2014-01-29 18:20:45 -08006456 if (packageId >= 256) {
6457 ALOGE("Bad package id 0x%08x", packageId);
6458 return UNKNOWN_ERROR;
6459 }
6460 mEntries.replaceValueFor(String16(tmpName), (uint8_t) packageId);
6461 entry = entry + 1;
6462 }
6463 return NO_ERROR;
6464}
6465
Adam Lesinski6022deb2014-08-20 14:59:19 -07006466status_t DynamicRefTable::addMappings(const DynamicRefTable& other) {
6467 if (mAssignedPackageId != other.mAssignedPackageId) {
6468 return UNKNOWN_ERROR;
6469 }
6470
6471 const size_t entryCount = other.mEntries.size();
6472 for (size_t i = 0; i < entryCount; i++) {
6473 ssize_t index = mEntries.indexOfKey(other.mEntries.keyAt(i));
6474 if (index < 0) {
6475 mEntries.add(other.mEntries.keyAt(i), other.mEntries[i]);
6476 } else {
6477 if (other.mEntries[i] != mEntries[index]) {
6478 return UNKNOWN_ERROR;
6479 }
6480 }
6481 }
6482
6483 // Merge the lookup table. No entry can conflict
6484 // (value of 0 means not set).
6485 for (size_t i = 0; i < 256; i++) {
6486 if (mLookupTable[i] != other.mLookupTable[i]) {
6487 if (mLookupTable[i] == 0) {
6488 mLookupTable[i] = other.mLookupTable[i];
6489 } else if (other.mLookupTable[i] != 0) {
6490 return UNKNOWN_ERROR;
6491 }
6492 }
6493 }
6494 return NO_ERROR;
6495}
6496
Adam Lesinskide898ff2014-01-29 18:20:45 -08006497status_t DynamicRefTable::addMapping(const String16& packageName, uint8_t packageId)
6498{
6499 ssize_t index = mEntries.indexOfKey(packageName);
6500 if (index < 0) {
6501 return UNKNOWN_ERROR;
6502 }
6503 mLookupTable[mEntries.valueAt(index)] = packageId;
6504 return NO_ERROR;
6505}
6506
6507status_t DynamicRefTable::lookupResourceId(uint32_t* resId) const {
6508 uint32_t res = *resId;
6509 size_t packageId = Res_GETPACKAGE(res) + 1;
6510
Tao Baia6d7e3f2015-09-01 18:49:54 -07006511 if (packageId == APP_PACKAGE_ID && !mAppAsLib) {
Adam Lesinskide898ff2014-01-29 18:20:45 -08006512 // No lookup needs to be done, app package IDs are absolute.
6513 return NO_ERROR;
6514 }
6515
Tao Baia6d7e3f2015-09-01 18:49:54 -07006516 if (packageId == 0 || (packageId == APP_PACKAGE_ID && mAppAsLib)) {
Adam Lesinskide898ff2014-01-29 18:20:45 -08006517 // The package ID is 0x00. That means that a shared library is accessing
Tao Baia6d7e3f2015-09-01 18:49:54 -07006518 // its own local resource.
6519 // Or if app resource is loaded as shared library, the resource which has
6520 // app package Id is local resources.
6521 // so we fix up those resources with the calling package ID.
6522 *resId = (0xFFFFFF & (*resId)) | (((uint32_t) mAssignedPackageId) << 24);
Adam Lesinskide898ff2014-01-29 18:20:45 -08006523 return NO_ERROR;
6524 }
6525
6526 // Do a proper lookup.
6527 uint8_t translatedId = mLookupTable[packageId];
6528 if (translatedId == 0) {
Adam Lesinskia7d1d732014-10-01 18:24:54 -07006529 ALOGV("DynamicRefTable(0x%02x): No mapping for build-time package ID 0x%02x.",
Adam Lesinskide898ff2014-01-29 18:20:45 -08006530 (uint8_t)mAssignedPackageId, (uint8_t)packageId);
6531 for (size_t i = 0; i < 256; i++) {
6532 if (mLookupTable[i] != 0) {
Adam Lesinskia7d1d732014-10-01 18:24:54 -07006533 ALOGV("e[0x%02x] -> 0x%02x", (uint8_t)i, mLookupTable[i]);
Adam Lesinskide898ff2014-01-29 18:20:45 -08006534 }
6535 }
6536 return UNKNOWN_ERROR;
6537 }
6538
6539 *resId = (res & 0x00ffffff) | (((uint32_t) translatedId) << 24);
6540 return NO_ERROR;
6541}
6542
6543status_t DynamicRefTable::lookupResourceValue(Res_value* value) const {
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006544 uint8_t resolvedType = Res_value::TYPE_REFERENCE;
6545 switch (value->dataType) {
6546 case Res_value::TYPE_ATTRIBUTE:
6547 resolvedType = Res_value::TYPE_ATTRIBUTE;
6548 // fallthrough
6549 case Res_value::TYPE_REFERENCE:
6550 if (!mAppAsLib) {
6551 return NO_ERROR;
6552 }
6553
Tao Baia6d7e3f2015-09-01 18:49:54 -07006554 // If the package is loaded as shared library, the resource reference
6555 // also need to be fixed.
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006556 break;
6557 case Res_value::TYPE_DYNAMIC_ATTRIBUTE:
6558 resolvedType = Res_value::TYPE_ATTRIBUTE;
6559 // fallthrough
6560 case Res_value::TYPE_DYNAMIC_REFERENCE:
6561 break;
6562 default:
Adam Lesinskide898ff2014-01-29 18:20:45 -08006563 return NO_ERROR;
6564 }
6565
6566 status_t err = lookupResourceId(&value->data);
6567 if (err != NO_ERROR) {
6568 return err;
6569 }
6570
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006571 value->dataType = resolvedType;
Adam Lesinskide898ff2014-01-29 18:20:45 -08006572 return NO_ERROR;
6573}
6574
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006575struct IdmapTypeMap {
6576 ssize_t overlayTypeId;
6577 size_t entryOffset;
6578 Vector<uint32_t> entryMap;
6579};
6580
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006581status_t ResTable::createIdmap(const ResTable& overlay,
6582 uint32_t targetCrc, uint32_t overlayCrc,
6583 const char* targetPath, const char* overlayPath,
6584 void** outData, size_t* outSize) const
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006585{
6586 // see README for details on the format of map
6587 if (mPackageGroups.size() == 0) {
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006588 ALOGW("idmap: target package has no package groups, cannot create idmap\n");
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006589 return UNKNOWN_ERROR;
6590 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006591
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006592 if (mPackageGroups[0]->packages.size() == 0) {
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006593 ALOGW("idmap: target package has no packages in its first package group, "
6594 "cannot create idmap\n");
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006595 return UNKNOWN_ERROR;
6596 }
6597
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006598 KeyedVector<uint8_t, IdmapTypeMap> map;
6599
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006600 // overlaid packages are assumed to contain only one package group
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006601 const PackageGroup* pg = mPackageGroups[0];
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006602
6603 // starting size is header
6604 *outSize = ResTable::IDMAP_HEADER_SIZE_BYTES;
6605
6606 // target package id and number of types in map
6607 *outSize += 2 * sizeof(uint16_t);
6608
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006609 // overlay packages are assumed to contain only one package group
Adam Lesinski4bf58102014-11-03 11:21:19 -08006610 const ResTable_package* overlayPackageStruct = overlay.mPackageGroups[0]->packages[0]->package;
6611 char16_t tmpName[sizeof(overlayPackageStruct->name)/sizeof(overlayPackageStruct->name[0])];
6612 strcpy16_dtoh(tmpName, overlayPackageStruct->name, sizeof(overlayPackageStruct->name)/sizeof(overlayPackageStruct->name[0]));
6613 const String16 overlayPackage(tmpName);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006614
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006615 for (size_t typeIndex = 0; typeIndex < pg->types.size(); ++typeIndex) {
6616 const TypeList& typeList = pg->types[typeIndex];
6617 if (typeList.isEmpty()) {
6618 continue;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006619 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006620
6621 const Type* typeConfigs = typeList[0];
6622
6623 IdmapTypeMap typeMap;
6624 typeMap.overlayTypeId = -1;
6625 typeMap.entryOffset = 0;
6626
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006627 for (size_t entryIndex = 0; entryIndex < typeConfigs->entryCount; ++entryIndex) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006628 uint32_t resID = Res_MAKEID(pg->id - 1, typeIndex, entryIndex);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006629 resource_name resName;
MÃ¥rten Kongstad65a05fd2014-01-31 14:01:52 +01006630 if (!this->getResourceName(resID, false, &resName)) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006631 if (typeMap.entryMap.isEmpty()) {
6632 typeMap.entryOffset++;
6633 }
MÃ¥rten Kongstadfcaba142011-05-19 16:02:35 +02006634 continue;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006635 }
6636
6637 const String16 overlayType(resName.type, resName.typeLen);
6638 const String16 overlayName(resName.name, resName.nameLen);
6639 uint32_t overlayResID = overlay.identifierForName(overlayName.string(),
6640 overlayName.size(),
6641 overlayType.string(),
6642 overlayType.size(),
6643 overlayPackage.string(),
6644 overlayPackage.size());
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006645 if (overlayResID == 0) {
6646 if (typeMap.entryMap.isEmpty()) {
6647 typeMap.entryOffset++;
Jean-Baptiste Queru3e2d5912012-05-01 10:00:22 -07006648 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006649 continue;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006650 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006651
6652 if (typeMap.overlayTypeId == -1) {
6653 typeMap.overlayTypeId = Res_GETTYPE(overlayResID) + 1;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006654 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006655
6656 if (Res_GETTYPE(overlayResID) + 1 != static_cast<size_t>(typeMap.overlayTypeId)) {
6657 ALOGE("idmap: can't mix type ids in entry map. Resource 0x%08x maps to 0x%08x"
Andreas Gampe2204f0b2014-10-21 23:04:54 -07006658 " but entries should map to resources of type %02zx",
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006659 resID, overlayResID, typeMap.overlayTypeId);
6660 return BAD_TYPE;
6661 }
6662
6663 if (typeMap.entryOffset + typeMap.entryMap.size() < entryIndex) {
MÃ¥rten Kongstad96198eb2014-11-07 10:56:12 +01006664 // pad with 0xffffffff's (indicating non-existing entries) before adding this entry
6665 size_t index = typeMap.entryMap.size();
6666 size_t numItems = entryIndex - (typeMap.entryOffset + index);
6667 if (typeMap.entryMap.insertAt(0xffffffff, index, numItems) < 0) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006668 return NO_MEMORY;
6669 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006670 }
MÃ¥rten Kongstad96198eb2014-11-07 10:56:12 +01006671 typeMap.entryMap.add(Res_GETENTRY(overlayResID));
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006672 }
6673
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006674 if (!typeMap.entryMap.isEmpty()) {
6675 if (map.add(static_cast<uint8_t>(typeIndex), typeMap) < 0) {
6676 return NO_MEMORY;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006677 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006678 *outSize += (4 * sizeof(uint16_t)) + (typeMap.entryMap.size() * sizeof(uint32_t));
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006679 }
6680 }
6681
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006682 if (map.isEmpty()) {
6683 ALOGW("idmap: no resources in overlay package present in base package");
6684 return UNKNOWN_ERROR;
6685 }
6686
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006687 if ((*outData = malloc(*outSize)) == NULL) {
6688 return NO_MEMORY;
6689 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006690
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006691 uint32_t* data = (uint32_t*)*outData;
6692 *data++ = htodl(IDMAP_MAGIC);
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006693 *data++ = htodl(IDMAP_CURRENT_VERSION);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006694 *data++ = htodl(targetCrc);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006695 *data++ = htodl(overlayCrc);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006696 const char* paths[] = { targetPath, overlayPath };
6697 for (int j = 0; j < 2; ++j) {
6698 char* p = (char*)data;
6699 const char* path = paths[j];
6700 const size_t I = strlen(path);
6701 if (I > 255) {
6702 ALOGV("path exceeds expected 255 characters: %s\n", path);
6703 return UNKNOWN_ERROR;
6704 }
6705 for (size_t i = 0; i < 256; ++i) {
6706 *p++ = i < I ? path[i] : '\0';
6707 }
6708 data += 256 / sizeof(uint32_t);
6709 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006710 const size_t mapSize = map.size();
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006711 uint16_t* typeData = reinterpret_cast<uint16_t*>(data);
6712 *typeData++ = htods(pg->id);
6713 *typeData++ = htods(mapSize);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006714 for (size_t i = 0; i < mapSize; ++i) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006715 uint8_t targetTypeId = map.keyAt(i);
6716 const IdmapTypeMap& typeMap = map[i];
6717 *typeData++ = htods(targetTypeId + 1);
6718 *typeData++ = htods(typeMap.overlayTypeId);
6719 *typeData++ = htods(typeMap.entryMap.size());
6720 *typeData++ = htods(typeMap.entryOffset);
6721
6722 const size_t entryCount = typeMap.entryMap.size();
6723 uint32_t* entries = reinterpret_cast<uint32_t*>(typeData);
6724 for (size_t j = 0; j < entryCount; j++) {
6725 entries[j] = htodl(typeMap.entryMap[j]);
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006726 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006727 typeData += entryCount * 2;
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006728 }
6729
6730 return NO_ERROR;
6731}
6732
6733bool ResTable::getIdmapInfo(const void* idmap, size_t sizeBytes,
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006734 uint32_t* pVersion,
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006735 uint32_t* pTargetCrc, uint32_t* pOverlayCrc,
6736 String8* pTargetPath, String8* pOverlayPath)
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006737{
6738 const uint32_t* map = (const uint32_t*)idmap;
6739 if (!assertIdmapHeader(map, sizeBytes)) {
6740 return false;
6741 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006742 if (pVersion) {
6743 *pVersion = dtohl(map[1]);
6744 }
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006745 if (pTargetCrc) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006746 *pTargetCrc = dtohl(map[2]);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006747 }
6748 if (pOverlayCrc) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006749 *pOverlayCrc = dtohl(map[3]);
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006750 }
6751 if (pTargetPath) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006752 pTargetPath->setTo(reinterpret_cast<const char*>(map + 4));
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006753 }
6754 if (pOverlayPath) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006755 pOverlayPath->setTo(reinterpret_cast<const char*>(map + 4 + 256 / sizeof(uint32_t)));
MÃ¥rten Kongstad48d22322014-01-31 14:43:27 +01006756 }
MÃ¥rten Kongstad57f4b772011-03-17 14:13:41 +01006757 return true;
6758}
6759
6760
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006761#define CHAR16_TO_CSTR(c16, len) (String8(String16(c16,len)).string())
6762
6763#define CHAR16_ARRAY_EQ(constant, var, len) \
Chih-Hung Hsiehe819d012016-05-19 15:19:22 -07006764 (((len) == (sizeof(constant)/sizeof((constant)[0]))) && (0 == memcmp((var), (constant), (len))))
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006765
Jeff Brown9d3b1a42013-07-01 19:07:15 -07006766static void print_complex(uint32_t complex, bool isFraction)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006767{
Dianne Hackborne17086b2009-06-19 15:13:28 -07006768 const float MANTISSA_MULT =
6769 1.0f / (1<<Res_value::COMPLEX_MANTISSA_SHIFT);
6770 const float RADIX_MULTS[] = {
6771 1.0f*MANTISSA_MULT, 1.0f/(1<<7)*MANTISSA_MULT,
6772 1.0f/(1<<15)*MANTISSA_MULT, 1.0f/(1<<23)*MANTISSA_MULT
6773 };
6774
6775 float value = (complex&(Res_value::COMPLEX_MANTISSA_MASK
6776 <<Res_value::COMPLEX_MANTISSA_SHIFT))
6777 * RADIX_MULTS[(complex>>Res_value::COMPLEX_RADIX_SHIFT)
6778 & Res_value::COMPLEX_RADIX_MASK];
6779 printf("%f", value);
Mark Salyzyn00adb862014-03-19 11:00:06 -07006780
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006781 if (!isFraction) {
Dianne Hackborne17086b2009-06-19 15:13:28 -07006782 switch ((complex>>Res_value::COMPLEX_UNIT_SHIFT)&Res_value::COMPLEX_UNIT_MASK) {
6783 case Res_value::COMPLEX_UNIT_PX: printf("px"); break;
6784 case Res_value::COMPLEX_UNIT_DIP: printf("dp"); break;
6785 case Res_value::COMPLEX_UNIT_SP: printf("sp"); break;
6786 case Res_value::COMPLEX_UNIT_PT: printf("pt"); break;
6787 case Res_value::COMPLEX_UNIT_IN: printf("in"); break;
6788 case Res_value::COMPLEX_UNIT_MM: printf("mm"); break;
6789 default: printf(" (unknown unit)"); break;
6790 }
6791 } else {
6792 switch ((complex>>Res_value::COMPLEX_UNIT_SHIFT)&Res_value::COMPLEX_UNIT_MASK) {
6793 case Res_value::COMPLEX_UNIT_FRACTION: printf("%%"); break;
6794 case Res_value::COMPLEX_UNIT_FRACTION_PARENT: printf("%%p"); break;
6795 default: printf(" (unknown unit)"); break;
6796 }
6797 }
6798}
6799
Shachar Shemesh9872bf42010-12-20 17:38:33 +02006800// Normalize a string for output
6801String8 ResTable::normalizeForOutput( const char *input )
6802{
6803 String8 ret;
6804 char buff[2];
6805 buff[1] = '\0';
6806
6807 while (*input != '\0') {
6808 switch (*input) {
6809 // All interesting characters are in the ASCII zone, so we are making our own lives
6810 // easier by scanning the string one byte at a time.
6811 case '\\':
6812 ret += "\\\\";
6813 break;
6814 case '\n':
6815 ret += "\\n";
6816 break;
6817 case '"':
6818 ret += "\\\"";
6819 break;
6820 default:
6821 buff[0] = *input;
6822 ret += buff;
6823 break;
6824 }
6825
6826 input++;
6827 }
6828
6829 return ret;
6830}
6831
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006832void ResTable::print_value(const Package* pkg, const Res_value& value) const
6833{
6834 if (value.dataType == Res_value::TYPE_NULL) {
Alan Viverettef2969402014-10-29 17:09:36 -07006835 if (value.data == Res_value::DATA_NULL_UNDEFINED) {
6836 printf("(null)\n");
6837 } else if (value.data == Res_value::DATA_NULL_EMPTY) {
6838 printf("(null empty)\n");
6839 } else {
6840 // This should never happen.
6841 printf("(null) 0x%08x\n", value.data);
6842 }
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006843 } else if (value.dataType == Res_value::TYPE_REFERENCE) {
6844 printf("(reference) 0x%08x\n", value.data);
Adam Lesinskide898ff2014-01-29 18:20:45 -08006845 } else if (value.dataType == Res_value::TYPE_DYNAMIC_REFERENCE) {
6846 printf("(dynamic reference) 0x%08x\n", value.data);
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006847 } else if (value.dataType == Res_value::TYPE_ATTRIBUTE) {
6848 printf("(attribute) 0x%08x\n", value.data);
Adam Lesinski8ac51d12016-05-10 10:01:12 -07006849 } else if (value.dataType == Res_value::TYPE_DYNAMIC_ATTRIBUTE) {
6850 printf("(dynamic attribute) 0x%08x\n", value.data);
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006851 } else if (value.dataType == Res_value::TYPE_STRING) {
6852 size_t len;
Kenny Root780d2a12010-02-22 22:36:26 -08006853 const char* str8 = pkg->header->values.string8At(
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006854 value.data, &len);
Kenny Root780d2a12010-02-22 22:36:26 -08006855 if (str8 != NULL) {
Shachar Shemesh9872bf42010-12-20 17:38:33 +02006856 printf("(string8) \"%s\"\n", normalizeForOutput(str8).string());
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006857 } else {
Kenny Root780d2a12010-02-22 22:36:26 -08006858 const char16_t* str16 = pkg->header->values.stringAt(
6859 value.data, &len);
6860 if (str16 != NULL) {
6861 printf("(string16) \"%s\"\n",
Shachar Shemesh9872bf42010-12-20 17:38:33 +02006862 normalizeForOutput(String8(str16, len).string()).string());
Kenny Root780d2a12010-02-22 22:36:26 -08006863 } else {
6864 printf("(string) null\n");
6865 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07006866 }
Dianne Hackbornde7faf62009-06-30 13:27:30 -07006867 } else if (value.dataType == Res_value::TYPE_FLOAT) {
6868 printf("(float) %g\n", *(const float*)&value.data);
6869 } else if (value.dataType == Res_value::TYPE_DIMENSION) {
6870 printf("(dimension) ");
6871 print_complex(value.data, false);
6872 printf("\n");
6873 } else if (value.dataType == Res_value::TYPE_FRACTION) {
6874 printf("(fraction) ");
6875 print_complex(value.data, true);
6876 printf("\n");
6877 } else if (value.dataType >= Res_value::TYPE_FIRST_COLOR_INT
6878 || value.dataType <= Res_value::TYPE_LAST_COLOR_INT) {
6879 printf("(color) #%08x\n", value.data);
6880 } else if (value.dataType == Res_value::TYPE_INT_BOOLEAN) {
6881 printf("(boolean) %s\n", value.data ? "true" : "false");
6882 } else if (value.dataType >= Res_value::TYPE_FIRST_INT
6883 || value.dataType <= Res_value::TYPE_LAST_INT) {
6884 printf("(int) 0x%08x or %d\n", value.data, value.data);
6885 } else {
6886 printf("(unknown type) t=0x%02x d=0x%08x (s=0x%04x r=0x%02x)\n",
6887 (int)value.dataType, (int)value.data,
6888 (int)value.size, (int)value.res0);
6889 }
6890}
6891
Dianne Hackborne17086b2009-06-19 15:13:28 -07006892void ResTable::print(bool inclValues) const
6893{
6894 if (mError != 0) {
6895 printf("mError=0x%x (%s)\n", mError, strerror(mError));
6896 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006897 size_t pgCount = mPackageGroups.size();
6898 printf("Package Groups (%d)\n", (int)pgCount);
6899 for (size_t pgIndex=0; pgIndex<pgCount; pgIndex++) {
6900 const PackageGroup* pg = mPackageGroups[pgIndex];
Adam Lesinski6022deb2014-08-20 14:59:19 -07006901 printf("Package Group %d id=0x%02x packageCount=%d name=%s\n",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006902 (int)pgIndex, pg->id, (int)pg->packages.size(),
6903 String8(pg->name).string());
Mark Salyzyn00adb862014-03-19 11:00:06 -07006904
Adam Lesinski6022deb2014-08-20 14:59:19 -07006905 const KeyedVector<String16, uint8_t>& refEntries = pg->dynamicRefTable.entries();
6906 const size_t refEntryCount = refEntries.size();
6907 if (refEntryCount > 0) {
6908 printf(" DynamicRefTable entryCount=%d:\n", (int) refEntryCount);
6909 for (size_t refIndex = 0; refIndex < refEntryCount; refIndex++) {
6910 printf(" 0x%02x -> %s\n",
6911 refEntries.valueAt(refIndex),
6912 String8(refEntries.keyAt(refIndex)).string());
6913 }
6914 printf("\n");
6915 }
6916
6917 int packageId = pg->id;
Adam Lesinski18560882014-08-15 17:18:21 +00006918 size_t pkgCount = pg->packages.size();
6919 for (size_t pkgIndex=0; pkgIndex<pkgCount; pkgIndex++) {
6920 const Package* pkg = pg->packages[pkgIndex];
Adam Lesinski6022deb2014-08-20 14:59:19 -07006921 // Use a package's real ID, since the ID may have been assigned
6922 // if this package is a shared library.
6923 packageId = pkg->package->id;
Adam Lesinski4bf58102014-11-03 11:21:19 -08006924 char16_t tmpName[sizeof(pkg->package->name)/sizeof(pkg->package->name[0])];
6925 strcpy16_dtoh(tmpName, pkg->package->name, sizeof(pkg->package->name)/sizeof(pkg->package->name[0]));
Adam Lesinski6022deb2014-08-20 14:59:19 -07006926 printf(" Package %d id=0x%02x name=%s\n", (int)pkgIndex,
Adam Lesinski4bf58102014-11-03 11:21:19 -08006927 pkg->package->id, String8(tmpName).string());
Adam Lesinski18560882014-08-15 17:18:21 +00006928 }
6929
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006930 for (size_t typeIndex=0; typeIndex < pg->types.size(); typeIndex++) {
6931 const TypeList& typeList = pg->types[typeIndex];
6932 if (typeList.isEmpty()) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006933 continue;
6934 }
6935 const Type* typeConfigs = typeList[0];
6936 const size_t NTC = typeConfigs->configs.size();
6937 printf(" type %d configCount=%d entryCount=%d\n",
6938 (int)typeIndex, (int)NTC, (int)typeConfigs->entryCount);
6939 if (typeConfigs->typeSpecFlags != NULL) {
6940 for (size_t entryIndex=0; entryIndex<typeConfigs->entryCount; entryIndex++) {
Adam Lesinski6022deb2014-08-20 14:59:19 -07006941 uint32_t resID = (0xff000000 & ((packageId)<<24))
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006942 | (0x00ff0000 & ((typeIndex+1)<<16))
6943 | (0x0000ffff & (entryIndex));
6944 // Since we are creating resID without actually
6945 // iterating over them, we have no idea which is a
6946 // dynamic reference. We must check.
Adam Lesinski6022deb2014-08-20 14:59:19 -07006947 if (packageId == 0) {
6948 pg->dynamicRefTable.lookupResourceId(&resID);
6949 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006950
6951 resource_name resName;
6952 if (this->getResourceName(resID, true, &resName)) {
6953 String8 type8;
6954 String8 name8;
6955 if (resName.type8 != NULL) {
6956 type8 = String8(resName.type8, resName.typeLen);
6957 } else {
6958 type8 = String8(resName.type, resName.typeLen);
6959 }
6960 if (resName.name8 != NULL) {
6961 name8 = String8(resName.name8, resName.nameLen);
6962 } else {
6963 name8 = String8(resName.name, resName.nameLen);
6964 }
6965 printf(" spec resource 0x%08x %s:%s/%s: flags=0x%08x\n",
6966 resID,
6967 CHAR16_TO_CSTR(resName.package, resName.packageLen),
6968 type8.string(), name8.string(),
6969 dtohl(typeConfigs->typeSpecFlags[entryIndex]));
6970 } else {
6971 printf(" INVALID TYPE CONFIG FOR RESOURCE 0x%08x\n", resID);
6972 }
6973 }
6974 }
6975 for (size_t configIndex=0; configIndex<NTC; configIndex++) {
6976 const ResTable_type* type = typeConfigs->configs[configIndex];
6977 if ((((uint64_t)type)&0x3) != 0) {
6978 printf(" NON-INTEGER ResTable_type ADDRESS: %p\n", type);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006979 continue;
6980 }
Adam Lesinski5b0f1be2015-07-27 16:53:14 -07006981
6982 // Always copy the config, as fields get added and we need to
6983 // set the defaults.
6984 ResTable_config thisConfig;
6985 thisConfig.copyFromDtoH(type->config);
6986
6987 String8 configStr = thisConfig.toString();
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006988 printf(" config %s:\n", configStr.size() > 0
6989 ? configStr.string() : "(default)");
6990 size_t entryCount = dtohl(type->entryCount);
6991 uint32_t entriesStart = dtohl(type->entriesStart);
6992 if ((entriesStart&0x3) != 0) {
6993 printf(" NON-INTEGER ResTable_type entriesStart OFFSET: 0x%x\n", entriesStart);
6994 continue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006995 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07006996 uint32_t typeSize = dtohl(type->header.size);
6997 if ((typeSize&0x3) != 0) {
6998 printf(" NON-INTEGER ResTable_type header.size: 0x%x\n", typeSize);
6999 continue;
7000 }
7001 for (size_t entryIndex=0; entryIndex<entryCount; entryIndex++) {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007002 const uint32_t* const eindex = (const uint32_t*)
7003 (((const uint8_t*)type) + dtohs(type->header.headerSize));
7004
7005 uint32_t thisOffset = dtohl(eindex[entryIndex]);
7006 if (thisOffset == ResTable_type::NO_ENTRY) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007007 continue;
7008 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07007009
Adam Lesinski6022deb2014-08-20 14:59:19 -07007010 uint32_t resID = (0xff000000 & ((packageId)<<24))
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007011 | (0x00ff0000 & ((typeIndex+1)<<16))
7012 | (0x0000ffff & (entryIndex));
Adam Lesinski6022deb2014-08-20 14:59:19 -07007013 if (packageId == 0) {
7014 pg->dynamicRefTable.lookupResourceId(&resID);
7015 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007016 resource_name resName;
7017 if (this->getResourceName(resID, true, &resName)) {
7018 String8 type8;
7019 String8 name8;
7020 if (resName.type8 != NULL) {
7021 type8 = String8(resName.type8, resName.typeLen);
Kenny Root33791952010-06-08 10:16:48 -07007022 } else {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007023 type8 = String8(resName.type, resName.typeLen);
Kenny Root33791952010-06-08 10:16:48 -07007024 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007025 if (resName.name8 != NULL) {
7026 name8 = String8(resName.name8, resName.nameLen);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007027 } else {
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007028 name8 = String8(resName.name, resName.nameLen);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007029 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007030 printf(" resource 0x%08x %s:%s/%s: ", resID,
7031 CHAR16_TO_CSTR(resName.package, resName.packageLen),
7032 type8.string(), name8.string());
7033 } else {
7034 printf(" INVALID RESOURCE 0x%08x: ", resID);
7035 }
7036 if ((thisOffset&0x3) != 0) {
7037 printf("NON-INTEGER OFFSET: 0x%x\n", thisOffset);
7038 continue;
7039 }
7040 if ((thisOffset+sizeof(ResTable_entry)) > typeSize) {
7041 printf("OFFSET OUT OF BOUNDS: 0x%x+0x%x (size is 0x%x)\n",
7042 entriesStart, thisOffset, typeSize);
7043 continue;
7044 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07007045
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007046 const ResTable_entry* ent = (const ResTable_entry*)
7047 (((const uint8_t*)type) + entriesStart + thisOffset);
7048 if (((entriesStart + thisOffset)&0x3) != 0) {
7049 printf("NON-INTEGER ResTable_entry OFFSET: 0x%x\n",
7050 (entriesStart + thisOffset));
7051 continue;
7052 }
Mark Salyzyn00adb862014-03-19 11:00:06 -07007053
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007054 uintptr_t esize = dtohs(ent->size);
7055 if ((esize&0x3) != 0) {
7056 printf("NON-INTEGER ResTable_entry SIZE: %p\n", (void *)esize);
7057 continue;
7058 }
7059 if ((thisOffset+esize) > typeSize) {
7060 printf("ResTable_entry OUT OF BOUNDS: 0x%x+0x%x+%p (size is 0x%x)\n",
7061 entriesStart, thisOffset, (void *)esize, typeSize);
7062 continue;
7063 }
7064
7065 const Res_value* valuePtr = NULL;
7066 const ResTable_map_entry* bagPtr = NULL;
7067 Res_value value;
7068 if ((dtohs(ent->flags)&ResTable_entry::FLAG_COMPLEX) != 0) {
7069 printf("<bag>");
7070 bagPtr = (const ResTable_map_entry*)ent;
7071 } else {
7072 valuePtr = (const Res_value*)
7073 (((const uint8_t*)ent) + esize);
7074 value.copyFrom_dtoh(*valuePtr);
7075 printf("t=0x%02x d=0x%08x (s=0x%04x r=0x%02x)",
7076 (int)value.dataType, (int)value.data,
7077 (int)value.size, (int)value.res0);
7078 }
7079
7080 if ((dtohs(ent->flags)&ResTable_entry::FLAG_PUBLIC) != 0) {
7081 printf(" (PUBLIC)");
7082 }
7083 printf("\n");
7084
7085 if (inclValues) {
7086 if (valuePtr != NULL) {
7087 printf(" ");
7088 print_value(typeConfigs->package, value);
7089 } else if (bagPtr != NULL) {
7090 const int N = dtohl(bagPtr->count);
7091 const uint8_t* baseMapPtr = (const uint8_t*)ent;
7092 size_t mapOffset = esize;
7093 const ResTable_map* mapPtr = (ResTable_map*)(baseMapPtr+mapOffset);
7094 const uint32_t parent = dtohl(bagPtr->parent.ident);
7095 uint32_t resolvedParent = parent;
Adam Lesinski6022deb2014-08-20 14:59:19 -07007096 if (Res_GETPACKAGE(resolvedParent) + 1 == 0) {
7097 status_t err = pg->dynamicRefTable.lookupResourceId(&resolvedParent);
7098 if (err != NO_ERROR) {
7099 resolvedParent = 0;
7100 }
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -07007101 }
7102 printf(" Parent=0x%08x(Resolved=0x%08x), Count=%d\n",
7103 parent, resolvedParent, N);
7104 for (int i=0; i<N && mapOffset < (typeSize-sizeof(ResTable_map)); i++) {
7105 printf(" #%i (Key=0x%08x): ",
7106 i, dtohl(mapPtr->name.ident));
7107 value.copyFrom_dtoh(mapPtr->value);
7108 print_value(typeConfigs->package, value);
7109 const size_t size = dtohs(mapPtr->value.size);
7110 mapOffset += size + sizeof(*mapPtr)-sizeof(mapPtr->value);
7111 mapPtr = (ResTable_map*)(baseMapPtr+mapOffset);
Dianne Hackborne17086b2009-06-19 15:13:28 -07007112 }
7113 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007114 }
7115 }
7116 }
7117 }
7118 }
7119}
7120
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007121} // namespace android