blob: e92c121272eb79ce3ed71d88f0b4cd7b06b0847e [file] [log] [blame]
Shane Farmer0a5b2012017-06-22 12:24:12 -07001/*
2 * Copyright (C) 2017 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 "MultiApkGenerator.h"
18
19#include <algorithm>
Shane Farmer3ff44432017-09-29 11:59:25 -070020#include <regex>
Shane Farmer0a5b2012017-06-22 12:24:12 -070021#include <string>
22
23#include "androidfw/StringPiece.h"
24
25#include "LoadedApk.h"
Shane Farmer3edd4722017-09-01 14:34:22 -070026#include "ResourceUtils.h"
Shane Farmer810fd182017-09-21 14:37:44 -070027#include "ValueVisitor.h"
Shane Farmer0a5b2012017-06-22 12:24:12 -070028#include "configuration/ConfigurationParser.h"
Ryan Mitchell5fa2bb12018-07-12 11:24:51 -070029#include "cmd/Util.h"
Shane Farmer0a5b2012017-06-22 12:24:12 -070030#include "filter/AbiFilter.h"
31#include "filter/Filter.h"
Adam Lesinski46708052017-09-29 14:49:15 -070032#include "format/Archive.h"
33#include "format/binary/XmlFlattener.h"
Shane Farmerefe45392017-08-21 14:39:28 -070034#include "optimize/VersionCollapser.h"
Shane Farmer0a5b2012017-06-22 12:24:12 -070035#include "process/IResourceTableConsumer.h"
36#include "split/TableSplitter.h"
37#include "util/Files.h"
Shane Farmer3edd4722017-09-01 14:34:22 -070038#include "xml/XmlDom.h"
Shane Farmer810fd182017-09-21 14:37:44 -070039#include "xml/XmlUtil.h"
Shane Farmer0a5b2012017-06-22 12:24:12 -070040
41namespace aapt {
42
Shane Farmerefe45392017-08-21 14:39:28 -070043using ::aapt::configuration::AndroidSdk;
Shane Farmercb6c3f92017-11-27 13:19:36 -080044using ::aapt::configuration::OutputArtifact;
Shane Farmer810fd182017-09-21 14:37:44 -070045using ::aapt::xml::kSchemaAndroid;
Shane Farmer3edd4722017-09-01 14:34:22 -070046using ::aapt::xml::XmlResource;
Shane Farmer0a5b2012017-06-22 12:24:12 -070047using ::android::StringPiece;
48
Shane Farmerefe45392017-08-21 14:39:28 -070049/**
50 * Context wrapper that allows the min Android SDK value to be overridden.
51 */
52class ContextWrapper : public IAaptContext {
53 public:
54 explicit ContextWrapper(IAaptContext* context)
55 : context_(context), min_sdk_(context_->GetMinSdkVersion()) {
56 }
57
58 PackageType GetPackageType() override {
59 return context_->GetPackageType();
60 }
61
62 SymbolTable* GetExternalSymbols() override {
63 return context_->GetExternalSymbols();
64 }
65
66 IDiagnostics* GetDiagnostics() override {
Shane Farmer20ac0342017-11-29 16:55:05 -080067 if (source_diag_) {
68 return source_diag_.get();
69 }
Shane Farmerefe45392017-08-21 14:39:28 -070070 return context_->GetDiagnostics();
71 }
72
73 const std::string& GetCompilationPackage() override {
74 return context_->GetCompilationPackage();
75 }
76
77 uint8_t GetPackageId() override {
78 return context_->GetPackageId();
79 }
80
81 NameMangler* GetNameMangler() override {
82 return context_->GetNameMangler();
83 }
84
85 bool IsVerbose() override {
86 return context_->IsVerbose();
87 }
88
89 int GetMinSdkVersion() override {
90 return min_sdk_;
91 }
92
93 void SetMinSdkVersion(int min_sdk) {
94 min_sdk_ = min_sdk;
95 }
96
Shane Farmercb6c3f92017-11-27 13:19:36 -080097 void SetSource(const std::string& source) {
98 source_diag_ =
99 util::make_unique<SourcePathDiagnostics>(Source{source}, context_->GetDiagnostics());
Shane Farmer20ac0342017-11-29 16:55:05 -0800100 }
101
Shane Farmerefe45392017-08-21 14:39:28 -0700102 private:
103 IAaptContext* context_;
Shane Farmer20ac0342017-11-29 16:55:05 -0800104 std::unique_ptr<SourcePathDiagnostics> source_diag_;
Shane Farmerefe45392017-08-21 14:39:28 -0700105
106 int min_sdk_ = -1;
107};
108
Shane Farmer3ff44432017-09-29 11:59:25 -0700109class SignatureFilter : public IPathFilter {
110 bool Keep(const std::string& path) override {
111 static std::regex signature_regex(R"regex(^META-INF/.*\.(RSA|DSA|EC|SF)$)regex");
112 if (std::regex_search(path, signature_regex)) {
113 return false;
114 }
115 return !(path == "META-INF/MANIFEST.MF");
116 }
117};
118
Shane Farmer0a5b2012017-06-22 12:24:12 -0700119MultiApkGenerator::MultiApkGenerator(LoadedApk* apk, IAaptContext* context)
120 : apk_(apk), context_(context) {
121}
122
Shane Farmerefe45392017-08-21 14:39:28 -0700123bool MultiApkGenerator::FromBaseApk(const MultiApkGeneratorOptions& options) {
Shane Farmer666de342017-11-29 16:07:51 -0800124 std::unordered_set<std::string> artifacts_to_keep = options.kept_artifacts;
125 std::unordered_set<std::string> filtered_artifacts;
126 std::unordered_set<std::string> kept_artifacts;
127
Shane Farmer0a5b2012017-06-22 12:24:12 -0700128 // For now, just write out the stripped APK since ABI splitting doesn't modify anything else.
Shane Farmercb6c3f92017-11-27 13:19:36 -0800129 for (const OutputArtifact& artifact : options.apk_artifacts) {
Shane Farmer0a5b2012017-06-22 12:24:12 -0700130 FilterChain filters;
Shane Farmer0a5b2012017-06-22 12:24:12 -0700131
Shane Farmer20ac0342017-11-29 16:55:05 -0800132 ContextWrapper wrapped_context{context_};
Shane Farmercb6c3f92017-11-27 13:19:36 -0800133 wrapped_context.SetSource(artifact.name);
Shane Farmer20ac0342017-11-29 16:55:05 -0800134
Shane Farmer666de342017-11-29 16:07:51 -0800135 if (!options.kept_artifacts.empty()) {
Shane Farmercb6c3f92017-11-27 13:19:36 -0800136 const auto& it = artifacts_to_keep.find(artifact.name);
Shane Farmer666de342017-11-29 16:07:51 -0800137 if (it == artifacts_to_keep.end()) {
Shane Farmercb6c3f92017-11-27 13:19:36 -0800138 filtered_artifacts.insert(artifact.name);
Shane Farmer666de342017-11-29 16:07:51 -0800139 if (context_->IsVerbose()) {
Shane Farmercb6c3f92017-11-27 13:19:36 -0800140 context_->GetDiagnostics()->Note(DiagMessage(artifact.name) << "skipping artifact");
Shane Farmer666de342017-11-29 16:07:51 -0800141 }
142 continue;
143 } else {
144 artifacts_to_keep.erase(it);
Shane Farmercb6c3f92017-11-27 13:19:36 -0800145 kept_artifacts.insert(artifact.name);
Shane Farmer666de342017-11-29 16:07:51 -0800146 }
147 }
148
Shane Farmerefe45392017-08-21 14:39:28 -0700149 std::unique_ptr<ResourceTable> table =
Shane Farmercb6c3f92017-11-27 13:19:36 -0800150 FilterTable(context_, artifact, *apk_->GetResourceTable(), &filters);
Shane Farmerefe45392017-08-21 14:39:28 -0700151 if (!table) {
152 return false;
Shane Farmer0a5b2012017-06-22 12:24:12 -0700153 }
154
Shane Farmercb6c3f92017-11-27 13:19:36 -0800155 IDiagnostics* diag = wrapped_context.GetDiagnostics();
156
Shane Farmer3edd4722017-09-01 14:34:22 -0700157 std::unique_ptr<XmlResource> manifest;
Shane Farmercb6c3f92017-11-27 13:19:36 -0800158 if (!UpdateManifest(artifact, &manifest, diag)) {
159 diag->Error(DiagMessage() << "could not update AndroidManifest.xml for output artifact");
Shane Farmer810fd182017-09-21 14:37:44 -0700160 return false;
Shane Farmer3edd4722017-09-01 14:34:22 -0700161 }
162
Shane Farmerefe45392017-08-21 14:39:28 -0700163 std::string out = options.out_dir;
Shane Farmer3d66afe2017-08-24 11:04:35 -0700164 if (!file::mkdirs(out)) {
Shane Farmercb6c3f92017-11-27 13:19:36 -0800165 diag->Warn(DiagMessage() << "could not create out dir: " << out);
Shane Farmer3d66afe2017-08-24 11:04:35 -0700166 }
Shane Farmercb6c3f92017-11-27 13:19:36 -0800167 file::AppendPath(&out, artifact.name);
Shane Farmer0a5b2012017-06-22 12:24:12 -0700168
Shane Farmerefe45392017-08-21 14:39:28 -0700169 if (context_->IsVerbose()) {
Shane Farmercb6c3f92017-11-27 13:19:36 -0800170 diag->Note(DiagMessage() << "Generating split: " << out);
Shane Farmerefe45392017-08-21 14:39:28 -0700171 }
172
Shane Farmercb6c3f92017-11-27 13:19:36 -0800173 std::unique_ptr<IArchiveWriter> writer = CreateZipFileArchiveWriter(diag, out);
Shane Farmer0a5b2012017-06-22 12:24:12 -0700174
175 if (context_->IsVerbose()) {
Shane Farmercb6c3f92017-11-27 13:19:36 -0800176 diag->Note(DiagMessage() << "Writing output: " << out);
Shane Farmer0a5b2012017-06-22 12:24:12 -0700177 }
178
Shane Farmer3ff44432017-09-29 11:59:25 -0700179 filters.AddFilter(util::make_unique<SignatureFilter>());
Shane Farmer20ac0342017-11-29 16:55:05 -0800180 if (!apk_->WriteToArchive(&wrapped_context, table.get(), options.table_flattener_options,
181 &filters, writer.get(), manifest.get())) {
Shane Farmer0a5b2012017-06-22 12:24:12 -0700182 return false;
183 }
184 }
185
Shane Farmer666de342017-11-29 16:07:51 -0800186 // Make sure all of the requested artifacts were valid. If there are any kept artifacts left,
187 // either the config or the command line was wrong.
188 if (!artifacts_to_keep.empty()) {
189 context_->GetDiagnostics()->Error(
190 DiagMessage() << "The configuration and command line to filter artifacts do not match");
191
192 context_->GetDiagnostics()->Error(DiagMessage() << kept_artifacts.size() << " kept:");
193 for (const auto& artifact : kept_artifacts) {
194 context_->GetDiagnostics()->Error(DiagMessage() << " " << artifact);
195 }
196
197 context_->GetDiagnostics()->Error(DiagMessage() << filtered_artifacts.size() << " filtered:");
198 for (const auto& artifact : filtered_artifacts) {
199 context_->GetDiagnostics()->Error(DiagMessage() << " " << artifact);
200 }
201
202 context_->GetDiagnostics()->Error(DiagMessage() << artifacts_to_keep.size() << " missing:");
203 for (const auto& artifact : artifacts_to_keep) {
204 context_->GetDiagnostics()->Error(DiagMessage() << " " << artifact);
205 }
206
207 return false;
208 }
209
Shane Farmer0a5b2012017-06-22 12:24:12 -0700210 return true;
211}
212
Shane Farmercb6c3f92017-11-27 13:19:36 -0800213std::unique_ptr<ResourceTable> MultiApkGenerator::FilterTable(IAaptContext* context,
214 const OutputArtifact& artifact,
215 const ResourceTable& old_table,
216 FilterChain* filters) {
Shane Farmerefe45392017-08-21 14:39:28 -0700217 TableSplitterOptions splits;
218 AxisConfigFilter axis_filter;
Shane Farmer20ac0342017-11-29 16:55:05 -0800219 ContextWrapper wrapped_context{context};
Shane Farmercb6c3f92017-11-27 13:19:36 -0800220 wrapped_context.SetSource(artifact.name);
Shane Farmerefe45392017-08-21 14:39:28 -0700221
Shane Farmercb6c3f92017-11-27 13:19:36 -0800222 if (!artifact.abis.empty()) {
223 filters->AddFilter(AbiFilter::FromAbiList(artifact.abis));
Shane Farmerefe45392017-08-21 14:39:28 -0700224 }
225
Shane Farmercb6c3f92017-11-27 13:19:36 -0800226 if (!artifact.screen_densities.empty()) {
227 for (const auto& density_config : artifact.screen_densities) {
Shane Farmerefe45392017-08-21 14:39:28 -0700228 splits.preferred_densities.push_back(density_config.density);
229 }
230 }
231
Shane Farmercb6c3f92017-11-27 13:19:36 -0800232 if (!artifact.locales.empty()) {
233 for (const auto& locale : artifact.locales) {
Shane Farmerefe45392017-08-21 14:39:28 -0700234 axis_filter.AddConfig(locale);
235 }
236 splits.config_filter = &axis_filter;
237 }
238
Shane Farmer78c43d72017-12-04 09:08:38 -0800239 if (artifact.android_sdk) {
240 wrapped_context.SetMinSdkVersion(artifact.android_sdk.value().min_sdk_version);
Shane Farmerefe45392017-08-21 14:39:28 -0700241 }
242
243 std::unique_ptr<ResourceTable> table = old_table.Clone();
244
245 VersionCollapser collapser;
Shane Farmer20ac0342017-11-29 16:55:05 -0800246 if (!collapser.Consume(&wrapped_context, table.get())) {
247 context->GetDiagnostics()->Error(DiagMessage() << "Failed to strip versioned resources");
Shane Farmerefe45392017-08-21 14:39:28 -0700248 return {};
249 }
250
251 TableSplitter splitter{{}, splits};
252 splitter.SplitTable(table.get());
253 return table;
254}
255
Shane Farmercb6c3f92017-11-27 13:19:36 -0800256bool MultiApkGenerator::UpdateManifest(const OutputArtifact& artifact,
Shane Farmer810fd182017-09-21 14:37:44 -0700257 std::unique_ptr<XmlResource>* updated_manifest,
258 IDiagnostics* diag) {
Adam Lesinski8780eb62017-10-31 17:44:39 -0700259 const xml::XmlResource* apk_manifest = apk_->GetManifest();
260 if (apk_manifest == nullptr) {
Shane Farmer810fd182017-09-21 14:37:44 -0700261 return false;
262 }
263
Adam Lesinski8780eb62017-10-31 17:44:39 -0700264 *updated_manifest = apk_manifest->Clone();
265 XmlResource* manifest = updated_manifest->get();
266
Shane Farmer810fd182017-09-21 14:37:44 -0700267 // Make sure the first element is <manifest> with package attribute.
268 xml::Element* manifest_el = manifest->root.get();
Ryan Mitchell5fa2bb12018-07-12 11:24:51 -0700269 if (!manifest_el) {
Shane Farmer810fd182017-09-21 14:37:44 -0700270 return false;
271 }
272
273 if (!manifest_el->namespace_uri.empty() || manifest_el->name != "manifest") {
274 diag->Error(DiagMessage(manifest->file.source) << "root tag must be <manifest>");
275 return false;
276 }
277
Ryan Mitchell5fa2bb12018-07-12 11:24:51 -0700278 // Retrieve the versionCode attribute.
279 auto version_code = manifest_el->FindAttribute(kSchemaAndroid, "versionCode");
280 if (!version_code) {
Shane Farmer810fd182017-09-21 14:37:44 -0700281 diag->Error(DiagMessage(manifest->file.source) << "manifest must have a versionCode attribute");
282 return false;
283 }
284
Ryan Mitchell5fa2bb12018-07-12 11:24:51 -0700285 auto version_code_value = ValueCast<BinaryPrimitive>(version_code->compiled_value.get());
286 if (!version_code_value) {
Shane Farmer810fd182017-09-21 14:37:44 -0700287 diag->Error(DiagMessage(manifest->file.source) << "versionCode is invalid");
288 return false;
289 }
290
Ryan Mitchell5fa2bb12018-07-12 11:24:51 -0700291 // Retrieve the versionCodeMajor attribute.
292 auto version_code_major = manifest_el->FindAttribute(kSchemaAndroid, "versionCodeMajor");
293 BinaryPrimitive* version_code_major_value = nullptr;
294 if (version_code_major) {
295 version_code_major_value = ValueCast<BinaryPrimitive>(version_code_major->compiled_value.get());
296 if (!version_code_major_value) {
297 diag->Error(DiagMessage(manifest->file.source) << "versionCodeMajor is invalid");
298 return false;
299 }
300 }
301
302 // Calculate and set the updated version code
303 uint64_t major = (version_code_major_value)
304 ? ((uint64_t) version_code_major_value->value.data) << 32 : 0;
305 uint64_t new_version = (major | version_code_value->value.data) + artifact.version;
306 SetLongVersionCode(manifest_el, new_version);
Shane Farmer810fd182017-09-21 14:37:44 -0700307
308 // Check to see if the minSdkVersion needs to be updated.
Shane Farmercb6c3f92017-11-27 13:19:36 -0800309 if (artifact.android_sdk) {
Shane Farmer810fd182017-09-21 14:37:44 -0700310 // TODO(safarmer): Handle the rest of the Android SDK.
Shane Farmercb6c3f92017-11-27 13:19:36 -0800311 const AndroidSdk& android_sdk = artifact.android_sdk.value();
Shane Farmer810fd182017-09-21 14:37:44 -0700312
313 if (xml::Element* uses_sdk_el = manifest_el->FindChild({}, "uses-sdk")) {
314 if (xml::Attribute* min_sdk_attr =
315 uses_sdk_el->FindAttribute(xml::kSchemaAndroid, "minSdkVersion")) {
316 // Populate with a pre-compiles attribute to we don't need to relink etc.
Shane Farmer78c43d72017-12-04 09:08:38 -0800317 const std::string& min_sdk_str = std::to_string(android_sdk.min_sdk_version);
Shane Farmer810fd182017-09-21 14:37:44 -0700318 min_sdk_attr->compiled_value = ResourceUtils::TryParseInt(min_sdk_str);
319 } else {
320 // There was no minSdkVersion. This is strange since at this point we should have been
321 // through the manifest fixer which sets the default minSdkVersion.
322 diag->Error(DiagMessage(manifest->file.source) << "missing minSdkVersion from <uses-sdk>");
323 return false;
324 }
325 } else {
326 // No uses-sdk present. This is strange since at this point we should have been
327 // through the manifest fixer which should have added it.
328 diag->Error(DiagMessage(manifest->file.source) << "missing <uses-sdk> from <manifest>");
329 return false;
330 }
331 }
332
Shane Farmercb6c3f92017-11-27 13:19:36 -0800333 if (!artifact.screen_densities.empty()) {
Shane Farmere1799352017-09-25 14:19:03 -0700334 xml::Element* screens_el = manifest_el->FindChild({}, "compatible-screens");
335 if (!screens_el) {
336 // create a new element.
337 std::unique_ptr<xml::Element> new_screens_el = util::make_unique<xml::Element>();
338 new_screens_el->name = "compatible-screens";
339 screens_el = new_screens_el.get();
Shane Farmerd05b9132018-02-14 15:40:35 -0800340 manifest_el->AppendChild(std::move(new_screens_el));
Shane Farmere1799352017-09-25 14:19:03 -0700341 } else {
342 // clear out the old element.
343 screens_el->GetChildElements().clear();
344 }
345
Shane Farmercb6c3f92017-11-27 13:19:36 -0800346 for (const auto& density : artifact.screen_densities) {
Shane Farmerd05b9132018-02-14 15:40:35 -0800347 AddScreens(density, screens_el);
Shane Farmere1799352017-09-25 14:19:03 -0700348 }
349 }
Shane Farmer810fd182017-09-21 14:37:44 -0700350
351 return true;
352}
353
Shane Farmerd05b9132018-02-14 15:40:35 -0800354/**
355 * Adds a screen element with both screenSize and screenDensity set. Since we only know the density
356 * we add it for all screen sizes.
357 *
358 * This requires the resource IDs for the attributes from the framework library. Since these IDs are
359 * a part of the public API (and in public.xml) we hard code the values.
360 *
361 * The excert from the framework is as follows:
362 * <public type="attr" name="screenSize" id="0x010102ca" />
363 * <public type="attr" name="screenDensity" id="0x010102cb" />
364 */
365void MultiApkGenerator::AddScreens(const ConfigDescription& config, xml::Element* parent) {
366 // Hard coded integer representation of the supported screen sizes:
367 // small = 200
368 // normal = 300
369 // large = 400
370 // xlarge = 500
371 constexpr const uint32_t kScreenSizes[4] = {200, 300, 400, 500,};
372 constexpr const uint32_t kScreenSizeResourceId = 0x010102ca;
373 constexpr const uint32_t kScreenDensityResourceId = 0x010102cb;
374
375 for (uint32_t screen_size : kScreenSizes) {
376 std::unique_ptr<xml::Element> screen = util::make_unique<xml::Element>();
377 screen->name = "screen";
378
379 xml::Attribute* size = screen->FindOrCreateAttribute(kSchemaAndroid, "screenSize");
380 size->compiled_attribute = xml::AaptAttribute(Attribute(), {kScreenSizeResourceId});
381 size->compiled_value = ResourceUtils::MakeInt(screen_size);
382
383 xml::Attribute* density = screen->FindOrCreateAttribute(kSchemaAndroid, "screenDensity");
384 density->compiled_attribute = xml::AaptAttribute(Attribute(), {kScreenDensityResourceId});
385 density->compiled_value = ResourceUtils::MakeInt(config.density);
386
387
388 parent->AppendChild(std::move(screen));
389 }
390}
391
Shane Farmer0a5b2012017-06-22 12:24:12 -0700392} // namespace aapt