Ryan Mitchell | 2ed8bfa | 2021-01-08 13:34:28 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2021 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "idmap2/ResourceContainer.h" |
| 18 | |
Mårten Kongstad | 1195a6b | 2021-05-11 12:57:01 +0000 | [diff] [blame] | 19 | #include <memory> |
| 20 | #include <string> |
| 21 | #include <utility> |
| 22 | #include <vector> |
| 23 | |
Ryan Mitchell | 2ed8bfa | 2021-01-08 13:34:28 -0800 | [diff] [blame] | 24 | #include "androidfw/ApkAssets.h" |
| 25 | #include "androidfw/AssetManager.h" |
| 26 | #include "androidfw/Util.h" |
| 27 | #include "idmap2/FabricatedOverlay.h" |
| 28 | #include "idmap2/XmlParser.h" |
| 29 | |
| 30 | namespace android::idmap2 { |
| 31 | namespace { |
| 32 | #define REWRITE_PACKAGE(resid, package_id) \ |
| 33 | (((resid)&0x00ffffffU) | (((uint32_t)(package_id)) << 24U)) |
| 34 | |
| 35 | #define EXTRACT_PACKAGE(resid) ((0xff000000 & (resid)) >> 24) |
| 36 | |
| 37 | constexpr ResourceId kAttrName = 0x01010003; |
| 38 | constexpr ResourceId kAttrResourcesMap = 0x01010609; |
| 39 | constexpr ResourceId kAttrTargetName = 0x0101044d; |
| 40 | constexpr ResourceId kAttrTargetPackage = 0x01010021; |
| 41 | |
| 42 | // idmap version 0x01 naively assumes that the package to use is always the first ResTable_package |
| 43 | // in the resources.arsc blob. In most cases, there is only a single ResTable_package anyway, so |
| 44 | // this assumption tends to work out. That said, the correct thing to do is to scan |
| 45 | // resources.arsc for a package with a given name as read from the package manifest instead of |
| 46 | // relying on a hard-coded index. This however requires storing the package name in the idmap |
| 47 | // header, which in turn requires incrementing the idmap version. Because the initial version of |
| 48 | // idmap2 is compatible with idmap, this will have to wait for now. |
| 49 | const LoadedPackage* GetPackageAtIndex0(const LoadedArsc* loaded_arsc) { |
| 50 | const std::vector<std::unique_ptr<const LoadedPackage>>& packages = loaded_arsc->GetPackages(); |
| 51 | if (packages.empty()) { |
| 52 | return nullptr; |
| 53 | } |
| 54 | return loaded_arsc->GetPackageById(packages[0]->GetPackageId()); |
| 55 | } |
| 56 | |
| 57 | Result<uint32_t> CalculateCrc(const ZipAssetsProvider* zip_assets) { |
| 58 | constexpr const char* kResourcesArsc = "resources.arsc"; |
| 59 | std::optional<uint32_t> res_crc = zip_assets->GetCrc(kResourcesArsc); |
| 60 | if (!res_crc) { |
| 61 | return Error("failed to get CRC for '%s'", kResourcesArsc); |
| 62 | } |
| 63 | |
| 64 | constexpr const char* kManifest = "AndroidManifest.xml"; |
| 65 | std::optional<uint32_t> man_crc = zip_assets->GetCrc(kManifest); |
| 66 | if (!man_crc) { |
| 67 | return Error("failed to get CRC for '%s'", kManifest); |
| 68 | } |
| 69 | |
| 70 | return *res_crc ^ *man_crc; |
| 71 | } |
| 72 | |
| 73 | Result<XmlParser> OpenXmlParser(const std::string& entry_path, const ZipAssetsProvider* zip) { |
| 74 | auto manifest = zip->Open(entry_path); |
| 75 | if (manifest == nullptr) { |
| 76 | return Error("failed to find %s ", entry_path.c_str()); |
| 77 | } |
| 78 | |
| 79 | auto size = manifest->getLength(); |
| 80 | auto buffer = manifest->getIncFsBuffer(true /* aligned */).convert<uint8_t>(); |
| 81 | if (!buffer.verify(size)) { |
| 82 | return Error("failed to read entire %s", entry_path.c_str()); |
| 83 | } |
| 84 | |
| 85 | return XmlParser::Create(buffer.unsafe_ptr(), size, true /* copyData */); |
| 86 | } |
| 87 | |
| 88 | Result<XmlParser> OpenXmlParser(ResourceId id, const ZipAssetsProvider* zip, |
| 89 | const AssetManager2* am) { |
| 90 | const auto ref_table = am->GetDynamicRefTableForCookie(0); |
| 91 | if (ref_table == nullptr) { |
| 92 | return Error("failed to find dynamic ref table for cookie 0"); |
| 93 | } |
| 94 | |
| 95 | ref_table->lookupResourceId(&id); |
| 96 | auto value = am->GetResource(id); |
| 97 | if (!value.has_value()) { |
| 98 | return Error("failed to find resource for id 0x%08x", id); |
| 99 | } |
| 100 | |
| 101 | if (value->type != Res_value::TYPE_STRING) { |
| 102 | return Error("resource for is 0x%08x is not a file", id); |
| 103 | } |
| 104 | |
| 105 | auto string_pool = am->GetStringPoolForCookie(value->cookie); |
| 106 | auto file = string_pool->string8ObjectAt(value->data); |
| 107 | if (!file.has_value()) { |
| 108 | return Error("failed to find string for index %d", value->data); |
| 109 | } |
| 110 | |
| 111 | return OpenXmlParser(file->c_str(), zip); |
| 112 | } |
| 113 | |
| 114 | Result<OverlayManifestInfo> ExtractOverlayManifestInfo(const ZipAssetsProvider* zip, |
| 115 | const std::string& name) { |
| 116 | Result<XmlParser> xml = OpenXmlParser("AndroidManifest.xml", zip); |
| 117 | if (!xml) { |
| 118 | return xml.GetError(); |
| 119 | } |
| 120 | |
| 121 | auto manifest_it = xml->tree_iterator(); |
| 122 | if (manifest_it->event() != XmlParser::Event::START_TAG || manifest_it->name() != "manifest") { |
| 123 | return Error("root element tag is not <manifest> in AndroidManifest.xml"); |
| 124 | } |
| 125 | |
Ryan Mitchell | 6a2ca78 | 2021-01-19 13:51:15 -0800 | [diff] [blame] | 126 | std::string package_name; |
| 127 | if (auto result_str = manifest_it->GetAttributeStringValue("package")) { |
| 128 | package_name = *result_str; |
| 129 | } else { |
| 130 | return result_str.GetError(); |
| 131 | } |
| 132 | |
Ryan Mitchell | 2ed8bfa | 2021-01-08 13:34:28 -0800 | [diff] [blame] | 133 | for (auto&& it : manifest_it) { |
| 134 | if (it.event() != XmlParser::Event::START_TAG || it.name() != "overlay") { |
| 135 | continue; |
| 136 | } |
| 137 | |
| 138 | OverlayManifestInfo info{}; |
Ryan Mitchell | 6a2ca78 | 2021-01-19 13:51:15 -0800 | [diff] [blame] | 139 | info.package_name = package_name; |
Ryan Mitchell | 2ed8bfa | 2021-01-08 13:34:28 -0800 | [diff] [blame] | 140 | if (auto result_str = it.GetAttributeStringValue(kAttrName, "android:name")) { |
| 141 | if (*result_str != name) { |
Ryan Mitchell | 6a2ca78 | 2021-01-19 13:51:15 -0800 | [diff] [blame] | 142 | // A value for android:name was found, but either a the name does not match the requested |
Ryan Mitchell | 2ed8bfa | 2021-01-08 13:34:28 -0800 | [diff] [blame] | 143 | // name, or an <overlay> tag with no name was requested. |
| 144 | continue; |
| 145 | } |
| 146 | info.name = *result_str; |
| 147 | } else if (!name.empty()) { |
| 148 | // This tag does not have a value for android:name, but an <overlay> tag with a specific name |
| 149 | // has been requested. |
| 150 | continue; |
| 151 | } |
| 152 | |
| 153 | if (auto result_str = it.GetAttributeStringValue(kAttrTargetPackage, "android:targetPackage")) { |
| 154 | info.target_package = *result_str; |
| 155 | } else { |
| 156 | return Error("android:targetPackage missing from <overlay> in AndroidManifest.xml"); |
| 157 | } |
| 158 | |
| 159 | if (auto result_str = it.GetAttributeStringValue(kAttrTargetName, "android:targetName")) { |
| 160 | info.target_name = *result_str; |
| 161 | } |
| 162 | |
| 163 | if (auto result_value = it.GetAttributeValue(kAttrResourcesMap, "android:resourcesMap")) { |
| 164 | if (utils::IsReference((*result_value).dataType)) { |
| 165 | info.resource_mapping = (*result_value).data; |
| 166 | } else { |
| 167 | return Error("android:resourcesMap is not a reference in AndroidManifest.xml"); |
| 168 | } |
| 169 | } |
| 170 | return info; |
| 171 | } |
| 172 | |
| 173 | return Error("<overlay> with android:name \"%s\" missing from AndroidManifest.xml", name.c_str()); |
| 174 | } |
| 175 | |
| 176 | Result<OverlayData> CreateResourceMapping(ResourceId id, const ZipAssetsProvider* zip, |
| 177 | const AssetManager2* overlay_am, |
| 178 | const LoadedArsc* overlay_arsc, |
| 179 | const LoadedPackage* overlay_package) { |
| 180 | auto parser = OpenXmlParser(id, zip, overlay_am); |
| 181 | if (!parser) { |
| 182 | return parser.GetError(); |
| 183 | } |
| 184 | |
| 185 | OverlayData overlay_data{}; |
| 186 | const uint32_t string_pool_offset = overlay_arsc->GetStringPool()->size(); |
| 187 | const uint8_t package_id = overlay_package->GetPackageId(); |
| 188 | auto root_it = parser->tree_iterator(); |
| 189 | if (root_it->event() != XmlParser::Event::START_TAG || root_it->name() != "overlay") { |
| 190 | return Error("root element is not <overlay> tag"); |
| 191 | } |
| 192 | |
| 193 | auto overlay_it_end = root_it.end(); |
| 194 | for (auto overlay_it = root_it.begin(); overlay_it != overlay_it_end; ++overlay_it) { |
| 195 | if (overlay_it->event() == XmlParser::Event::BAD_DOCUMENT) { |
| 196 | return Error("failed to parse overlay xml document"); |
| 197 | } |
| 198 | |
| 199 | if (overlay_it->event() != XmlParser::Event::START_TAG) { |
| 200 | continue; |
| 201 | } |
| 202 | |
| 203 | if (overlay_it->name() != "item") { |
| 204 | return Error("unexpected tag <%s> in <overlay>", overlay_it->name().c_str()); |
| 205 | } |
| 206 | |
| 207 | Result<std::string> target_resource = overlay_it->GetAttributeStringValue("target"); |
| 208 | if (!target_resource) { |
| 209 | return Error(R"(<item> tag missing expected attribute "target")"); |
| 210 | } |
| 211 | |
| 212 | Result<android::Res_value> overlay_resource = overlay_it->GetAttributeValue("value"); |
| 213 | if (!overlay_resource) { |
| 214 | return Error(R"(<item> tag missing expected attribute "value")"); |
| 215 | } |
| 216 | |
| 217 | if (overlay_resource->dataType == Res_value::TYPE_STRING) { |
| 218 | overlay_resource->data += string_pool_offset; |
| 219 | } |
| 220 | |
| 221 | if (utils::IsReference(overlay_resource->dataType)) { |
| 222 | // Only rewrite resources defined within the overlay package to their corresponding target |
| 223 | // resource ids at runtime. |
| 224 | bool rewrite_id = package_id == EXTRACT_PACKAGE(overlay_resource->data); |
| 225 | overlay_data.pairs.emplace_back(OverlayData::Value{ |
| 226 | *target_resource, OverlayData::ResourceIdValue{overlay_resource->data, rewrite_id}}); |
| 227 | } else { |
| 228 | overlay_data.pairs.emplace_back( |
| 229 | OverlayData::Value{*target_resource, TargetValue{.data_type = overlay_resource->dataType, |
| 230 | .data_value = overlay_resource->data}}); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | const auto& string_pool = parser->get_strings(); |
| 235 | const uint32_t string_pool_data_length = string_pool.bytes(); |
| 236 | overlay_data.string_pool_data = OverlayData::InlineStringPoolData{ |
| 237 | .data = std::unique_ptr<uint8_t[]>(new uint8_t[string_pool_data_length]), |
| 238 | .data_length = string_pool_data_length, |
| 239 | .string_pool_offset = string_pool_offset, |
| 240 | }; |
| 241 | |
| 242 | // Overlays should not be incrementally installed, so calling unsafe_ptr is fine here. |
| 243 | memcpy(overlay_data.string_pool_data->data.get(), string_pool.data().unsafe_ptr(), |
| 244 | string_pool_data_length); |
| 245 | return overlay_data; |
| 246 | } |
| 247 | |
| 248 | OverlayData CreateResourceMappingLegacy(const AssetManager2* overlay_am, |
| 249 | const LoadedPackage* overlay_package) { |
| 250 | OverlayData overlay_data{}; |
| 251 | for (const ResourceId overlay_resid : *overlay_package) { |
| 252 | if (auto name = utils::ResToTypeEntryName(*overlay_am, overlay_resid)) { |
| 253 | // Disable rewriting. Overlays did not support internal references before |
| 254 | // android:resourcesMap. Do not introduce new behavior. |
| 255 | overlay_data.pairs.emplace_back(OverlayData::Value{ |
| 256 | *name, OverlayData::ResourceIdValue{overlay_resid, false /* rewrite_id */}}); |
| 257 | } |
| 258 | } |
| 259 | return overlay_data; |
| 260 | } |
| 261 | |
| 262 | struct ResState { |
| 263 | std::unique_ptr<ApkAssets> apk_assets; |
| 264 | const LoadedArsc* arsc; |
| 265 | const LoadedPackage* package; |
| 266 | std::unique_ptr<AssetManager2> am; |
| 267 | ZipAssetsProvider* zip_assets; |
| 268 | |
| 269 | static Result<ResState> Initialize(std::unique_ptr<ZipAssetsProvider> zip) { |
| 270 | ResState state; |
| 271 | state.zip_assets = zip.get(); |
| 272 | if ((state.apk_assets = ApkAssets::Load(std::move(zip))) == nullptr) { |
| 273 | return Error("failed to load apk asset"); |
| 274 | } |
| 275 | |
| 276 | if ((state.arsc = state.apk_assets->GetLoadedArsc()) == nullptr) { |
| 277 | return Error("failed to retrieve loaded arsc"); |
| 278 | } |
| 279 | |
| 280 | if ((state.package = GetPackageAtIndex0(state.arsc)) == nullptr) { |
| 281 | return Error("failed to retrieve loaded package at index 0"); |
| 282 | } |
| 283 | |
| 284 | state.am = std::make_unique<AssetManager2>(); |
| 285 | if (!state.am->SetApkAssets({state.apk_assets.get()})) { |
| 286 | return Error("failed to create asset manager"); |
| 287 | } |
| 288 | |
| 289 | return state; |
| 290 | } |
| 291 | }; |
| 292 | |
| 293 | } // namespace |
| 294 | |
| 295 | struct ApkResourceContainer : public TargetResourceContainer, public OverlayResourceContainer { |
| 296 | static Result<std::unique_ptr<ApkResourceContainer>> FromPath(const std::string& path); |
| 297 | |
| 298 | // inherited from TargetResourceContainer |
| 299 | Result<bool> DefinesOverlayable() const override; |
| 300 | Result<const android::OverlayableInfo*> GetOverlayableInfo(ResourceId id) const override; |
| 301 | Result<ResourceId> GetResourceId(const std::string& name) const override; |
| 302 | |
| 303 | // inherited from OverlayResourceContainer |
| 304 | Result<OverlayData> GetOverlayData(const OverlayManifestInfo& info) const override; |
| 305 | Result<OverlayManifestInfo> FindOverlayInfo(const std::string& name) const override; |
| 306 | |
| 307 | // inherited from ResourceContainer |
| 308 | Result<uint32_t> GetCrc() const override; |
| 309 | Result<std::string> GetResourceName(ResourceId id) const override; |
| 310 | const std::string& GetPath() const override; |
| 311 | |
| 312 | ~ApkResourceContainer() override = default; |
| 313 | |
| 314 | private: |
| 315 | ApkResourceContainer(std::unique_ptr<ZipAssetsProvider> zip_assets, std::string path); |
| 316 | |
| 317 | Result<const ResState*> GetState() const; |
| 318 | ZipAssetsProvider* GetZipAssets() const; |
| 319 | |
| 320 | mutable std::variant<std::unique_ptr<ZipAssetsProvider>, ResState> state_; |
| 321 | std::string path_; |
| 322 | }; |
| 323 | |
| 324 | ApkResourceContainer::ApkResourceContainer(std::unique_ptr<ZipAssetsProvider> zip_assets, |
| 325 | std::string path) |
| 326 | : state_(std::move(zip_assets)), path_(std::move(path)) { |
| 327 | } |
| 328 | |
| 329 | Result<std::unique_ptr<ApkResourceContainer>> ApkResourceContainer::FromPath( |
| 330 | const std::string& path) { |
Ryan Mitchell | c041669 | 2021-05-11 12:21:29 -0700 | [diff] [blame] | 331 | auto zip_assets = ZipAssetsProvider::Create(path, 0 /* flags */); |
Ryan Mitchell | 2ed8bfa | 2021-01-08 13:34:28 -0800 | [diff] [blame] | 332 | if (zip_assets == nullptr) { |
| 333 | return Error("failed to load zip assets"); |
| 334 | } |
| 335 | return std::unique_ptr<ApkResourceContainer>( |
| 336 | new ApkResourceContainer(std::move(zip_assets), path)); |
| 337 | } |
| 338 | |
| 339 | Result<const ResState*> ApkResourceContainer::GetState() const { |
| 340 | if (auto state = std::get_if<ResState>(&state_); state != nullptr) { |
| 341 | return state; |
| 342 | } |
| 343 | |
| 344 | auto state = |
| 345 | ResState::Initialize(std::move(std::get<std::unique_ptr<ZipAssetsProvider>>(state_))); |
| 346 | if (!state) { |
| 347 | return state.GetError(); |
| 348 | } |
| 349 | |
| 350 | state_ = std::move(*state); |
| 351 | return &std::get<ResState>(state_); |
| 352 | } |
| 353 | |
| 354 | ZipAssetsProvider* ApkResourceContainer::GetZipAssets() const { |
| 355 | if (auto zip = std::get_if<std::unique_ptr<ZipAssetsProvider>>(&state_); zip != nullptr) { |
| 356 | return zip->get(); |
| 357 | } |
| 358 | return std::get<ResState>(state_).zip_assets; |
| 359 | } |
| 360 | |
| 361 | Result<bool> ApkResourceContainer::DefinesOverlayable() const { |
| 362 | auto state = GetState(); |
| 363 | if (!state) { |
| 364 | return state.GetError(); |
| 365 | } |
| 366 | return (*state)->package->DefinesOverlayable(); |
| 367 | } |
| 368 | |
| 369 | Result<const android::OverlayableInfo*> ApkResourceContainer::GetOverlayableInfo( |
| 370 | ResourceId id) const { |
| 371 | auto state = GetState(); |
| 372 | if (!state) { |
| 373 | return state.GetError(); |
| 374 | } |
| 375 | return (*state)->package->GetOverlayableInfo(id); |
| 376 | } |
| 377 | |
| 378 | Result<OverlayManifestInfo> ApkResourceContainer::FindOverlayInfo(const std::string& name) const { |
| 379 | return ExtractOverlayManifestInfo(GetZipAssets(), name); |
| 380 | } |
| 381 | |
| 382 | Result<OverlayData> ApkResourceContainer::GetOverlayData(const OverlayManifestInfo& info) const { |
| 383 | const auto state = GetState(); |
| 384 | if (!state) { |
| 385 | return state.GetError(); |
| 386 | } |
| 387 | |
| 388 | if (info.resource_mapping != 0) { |
| 389 | return CreateResourceMapping(info.resource_mapping, GetZipAssets(), (*state)->am.get(), |
| 390 | (*state)->arsc, (*state)->package); |
| 391 | } |
| 392 | return CreateResourceMappingLegacy((*state)->am.get(), (*state)->package); |
| 393 | } |
| 394 | |
| 395 | Result<uint32_t> ApkResourceContainer::GetCrc() const { |
| 396 | return CalculateCrc(GetZipAssets()); |
| 397 | } |
| 398 | |
| 399 | const std::string& ApkResourceContainer::GetPath() const { |
| 400 | return path_; |
| 401 | } |
| 402 | |
| 403 | Result<ResourceId> ApkResourceContainer::GetResourceId(const std::string& name) const { |
| 404 | auto state = GetState(); |
| 405 | if (!state) { |
| 406 | return state.GetError(); |
| 407 | } |
| 408 | auto id = (*state)->am->GetResourceId(name, "", (*state)->package->GetPackageName()); |
| 409 | if (!id.has_value()) { |
| 410 | return Error("failed to find resource '%s'", name.c_str()); |
| 411 | } |
| 412 | |
| 413 | // Retrieve the compile-time resource id of the target resource. |
| 414 | return REWRITE_PACKAGE(*id, (*state)->package->GetPackageId()); |
| 415 | } |
| 416 | |
| 417 | Result<std::string> ApkResourceContainer::GetResourceName(ResourceId id) const { |
| 418 | auto state = GetState(); |
| 419 | if (!state) { |
| 420 | return state.GetError(); |
| 421 | } |
| 422 | return utils::ResToTypeEntryName(*(*state)->am, id); |
| 423 | } |
| 424 | |
| 425 | Result<std::unique_ptr<TargetResourceContainer>> TargetResourceContainer::FromPath( |
| 426 | std::string path) { |
| 427 | auto result = ApkResourceContainer::FromPath(path); |
| 428 | if (!result) { |
| 429 | return result.GetError(); |
| 430 | } |
| 431 | return std::unique_ptr<TargetResourceContainer>(result->release()); |
| 432 | } |
| 433 | |
| 434 | Result<std::unique_ptr<OverlayResourceContainer>> OverlayResourceContainer::FromPath( |
| 435 | std::string path) { |
| 436 | // Load the path as a fabricated overlay if the file magic indicates this is a fabricated overlay. |
| 437 | if (android::IsFabricatedOverlay(path)) { |
| 438 | auto result = FabricatedOverlayContainer::FromPath(path); |
| 439 | if (!result) { |
| 440 | return result.GetError(); |
| 441 | } |
| 442 | return std::unique_ptr<OverlayResourceContainer>(result->release()); |
| 443 | } |
| 444 | |
| 445 | // Fallback to loading the container as an APK. |
| 446 | auto result = ApkResourceContainer::FromPath(path); |
| 447 | if (!result) { |
| 448 | return result.GetError(); |
| 449 | } |
| 450 | return std::unique_ptr<OverlayResourceContainer>(result->release()); |
| 451 | } |
| 452 | |
Mårten Kongstad | 1195a6b | 2021-05-11 12:57:01 +0000 | [diff] [blame] | 453 | } // namespace android::idmap2 |