blob: 2a7ad614fd640f394f27144af0d168b2bd71ff64 [file] [log] [blame]
Jeff Sharkey6c2c0562016-12-07 12:12:00 -07001/*
2 * Copyright (C) 2016 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 */
Mark Salyzyna5e161b2016-09-29 08:08:05 -070016#define LOG_TAG "installed"
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070017
Alan Stokesa25d90c2017-10-16 10:56:00 +010018#include <array>
Jeff Sharkey90aff262016-12-12 14:28:24 -070019#include <fcntl.h>
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070020#include <stdlib.h>
21#include <string.h>
Jeff Sharkey90aff262016-12-12 14:28:24 -070022#include <sys/capability.h>
23#include <sys/file.h>
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070024#include <sys/stat.h>
Jeff Sharkey90aff262016-12-12 14:28:24 -070025#include <sys/time.h>
26#include <sys/types.h>
27#include <sys/resource.h>
28#include <sys/wait.h>
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070029#include <unistd.h>
30
Alan Stokesa25d90c2017-10-16 10:56:00 +010031#include <android-base/file.h>
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070032#include <android-base/logging.h>
Andreas Gampe6a9cf722017-07-24 16:49:10 -070033#include <android-base/properties.h>
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070034#include <android-base/stringprintf.h>
Jeff Sharkey90aff262016-12-12 14:28:24 -070035#include <android-base/strings.h>
36#include <android-base/unique_fd.h>
Calin Juravle80a21252017-01-17 14:43:25 -080037#include <cutils/fs.h>
Jeff Sharkey90aff262016-12-12 14:28:24 -070038#include <cutils/properties.h>
39#include <cutils/sched_policy.h>
Mark Salyzyn7823e122016-09-29 08:08:05 -070040#include <log/log.h> // TODO: Move everything to base/logging.
Alan Stokesa25d90c2017-10-16 10:56:00 +010041#include <openssl/sha.h>
Jeff Sharkey90aff262016-12-12 14:28:24 -070042#include <private/android_filesystem_config.h>
Calin Juravlecb556e32017-04-04 20:22:50 -070043#include <selinux/android.h>
Jeff Sharkey90aff262016-12-12 14:28:24 -070044#include <system/thread_defs.h>
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070045
46#include "dexopt.h"
Jeff Sharkeyc1149c92017-09-21 14:51:09 -060047#include "globals.h"
Jeff Sharkey90aff262016-12-12 14:28:24 -070048#include "installd_deps.h"
49#include "otapreopt_utils.h"
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070050#include "utils.h"
51
Jeff Sharkey90aff262016-12-12 14:28:24 -070052using android::base::EndsWith;
Alan Stokesa25d90c2017-10-16 10:56:00 +010053using android::base::ReadFully;
54using android::base::StringPrintf;
55using android::base::WriteFully;
Calin Juravle1a0af3b2017-03-09 14:33:33 -080056using android::base::unique_fd;
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070057
58namespace android {
59namespace installd {
60
Andreas Gampe2a2d7ba2017-11-02 19:39:29 -070061// Should minidebug info be included in compiled artifacts? Even if this value is
62// "true," usage might still be conditional to other constraints, e.g., system
63// property overrides.
64static constexpr bool kEnableMinidebugInfo = true;
65
66static constexpr const char* kMinidebugInfoSystemProperty = "dalvik.vm.dex2oat-minidebuginfo";
67static constexpr bool kMinidebugInfoSystemPropertyDefault = false;
68static constexpr const char* kMinidebugDex2oatFlag = "--generate-mini-debug-info";
Mathieu Chartierb41ffcc2018-01-09 00:02:17 -080069static constexpr const char* kDisableCompactDexFlag = "--compact-dex-level=none";
Andreas Gampe2a2d7ba2017-11-02 19:39:29 -070070
Calin Juravle114f0812017-03-08 19:05:07 -080071// Deleter using free() for use with std::unique_ptr<>. See also UniqueCPtr<> below.
72struct FreeDelete {
73 // NOTE: Deleting a const object is valid but free() takes a non-const pointer.
74 void operator()(const void* ptr) const {
75 free(const_cast<void*>(ptr));
76 }
77};
78
79// Alias for std::unique_ptr<> that uses the C function free() to delete objects.
80template <typename T>
81using UniqueCPtr = std::unique_ptr<T, FreeDelete>;
82
Calin Juravle1a0af3b2017-03-09 14:33:33 -080083static unique_fd invalid_unique_fd() {
84 return unique_fd(-1);
85}
86
Andreas Gampe6a9cf722017-07-24 16:49:10 -070087static bool is_debug_runtime() {
88 return android::base::GetProperty("persist.sys.dalvik.vm.lib.2", "") == "libartd.so";
89}
90
David Sehra3b5ab62017-10-25 14:27:29 -070091static bool is_debuggable_build() {
92 return android::base::GetBoolProperty("ro.debuggable", false);
93}
94
Jeff Sharkey90aff262016-12-12 14:28:24 -070095static bool clear_profile(const std::string& profile) {
Calin Juravle1a0af3b2017-03-09 14:33:33 -080096 unique_fd ufd(open(profile.c_str(), O_WRONLY | O_NOFOLLOW | O_CLOEXEC));
Jeff Sharkey90aff262016-12-12 14:28:24 -070097 if (ufd.get() < 0) {
98 if (errno != ENOENT) {
99 PLOG(WARNING) << "Could not open profile " << profile;
100 return false;
101 } else {
102 // Nothing to clear. That's ok.
103 return true;
104 }
105 }
106
107 if (flock(ufd.get(), LOCK_EX | LOCK_NB) != 0) {
108 if (errno != EWOULDBLOCK) {
109 PLOG(WARNING) << "Error locking profile " << profile;
110 }
111 // This implies that the app owning this profile is running
112 // (and has acquired the lock).
113 //
114 // If we can't acquire the lock bail out since clearing is useless anyway
115 // (the app will write again to the profile).
116 //
117 // Note:
118 // This does not impact the this is not an issue for the profiling correctness.
119 // In case this is needed because of an app upgrade, profiles will still be
120 // eventually cleared by the app itself due to checksum mismatch.
121 // If this is needed because profman advised, then keeping the data around
122 // until the next run is again not an issue.
123 //
124 // If the app attempts to acquire a lock while we've held one here,
125 // it will simply skip the current write cycle.
126 return false;
127 }
128
129 bool truncated = ftruncate(ufd.get(), 0) == 0;
130 if (!truncated) {
131 PLOG(WARNING) << "Could not truncate " << profile;
132 }
133 if (flock(ufd.get(), LOCK_UN) != 0) {
134 PLOG(WARNING) << "Error unlocking profile " << profile;
135 }
136 return truncated;
137}
138
Calin Juravle114f0812017-03-08 19:05:07 -0800139// Clear the reference profile for the given location.
Calin Juravle824a64d2018-01-18 20:23:17 -0800140// The location is the profile name for primary apks or the dex path for secondary dex files.
141static bool clear_reference_profile(const std::string& package_name, const std::string& location,
142 bool is_secondary_dex) {
143 return clear_profile(create_reference_profile_path(package_name, location, is_secondary_dex));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700144}
145
Calin Juravle114f0812017-03-08 19:05:07 -0800146// Clear the reference profile for the given location.
Calin Juravle824a64d2018-01-18 20:23:17 -0800147// The location is the profile name for primary apks or the dex path for secondary dex files.
148static bool clear_current_profile(const std::string& package_name, const std::string& location,
149 userid_t user, bool is_secondary_dex) {
150 return clear_profile(create_current_profile_path(user, package_name, location,
151 is_secondary_dex));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700152}
153
Calin Juravle114f0812017-03-08 19:05:07 -0800154// Clear the reference profile for the primary apk of the given package.
Calin Juravle824a64d2018-01-18 20:23:17 -0800155// The location is the profile name for primary apks or the dex path for secondary dex files.
156bool clear_primary_reference_profile(const std::string& package_name,
157 const std::string& location) {
158 return clear_reference_profile(package_name, location, /*is_secondary_dex*/false);
Calin Juravle114f0812017-03-08 19:05:07 -0800159}
160
161// Clear all current profile for the primary apk of the given package.
Calin Juravle824a64d2018-01-18 20:23:17 -0800162// The location is the profile name for primary apks or the dex path for secondary dex files.
163bool clear_primary_current_profiles(const std::string& package_name, const std::string& location) {
Jeff Sharkey90aff262016-12-12 14:28:24 -0700164 bool success = true;
Calin Juravle114f0812017-03-08 19:05:07 -0800165 // For secondary dex files, we don't really need the user but we use it for sanity checks.
Jeff Sharkey90aff262016-12-12 14:28:24 -0700166 std::vector<userid_t> users = get_known_users(/*volume_uuid*/ nullptr);
167 for (auto user : users) {
Calin Juravle824a64d2018-01-18 20:23:17 -0800168 success &= clear_current_profile(package_name, location, user, /*is_secondary_dex*/false);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700169 }
170 return success;
171}
172
Calin Juravle114f0812017-03-08 19:05:07 -0800173// Clear the current profile for the primary apk of the given package and user.
Calin Juravle824a64d2018-01-18 20:23:17 -0800174bool clear_primary_current_profile(const std::string& package_name, const std::string& location,
175 userid_t user) {
176 return clear_current_profile(package_name, location, user, /*is_secondary_dex*/false);
Calin Juravle114f0812017-03-08 19:05:07 -0800177}
178
Jeff Sharkey90aff262016-12-12 14:28:24 -0700179static int split_count(const char *str)
180{
181 char *ctx;
182 int count = 0;
183 char buf[kPropertyValueMax];
184
Jeff Sharkeyc1149c92017-09-21 14:51:09 -0600185 strlcpy(buf, str, sizeof(buf));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700186 char *pBuf = buf;
187
188 while(strtok_r(pBuf, " ", &ctx) != NULL) {
189 count++;
190 pBuf = NULL;
191 }
192
193 return count;
194}
195
196static int split(char *buf, const char **argv)
197{
198 char *ctx;
199 int count = 0;
200 char *tok;
201 char *pBuf = buf;
202
203 while((tok = strtok_r(pBuf, " ", &ctx)) != NULL) {
204 argv[count++] = tok;
205 pBuf = NULL;
206 }
207
208 return count;
209}
210
Jeff Hao10b8a6e2017-04-05 17:11:39 -0700211static const char* get_location_from_path(const char* path) {
212 static constexpr char kLocationSeparator = '/';
213 const char *location = strrchr(path, kLocationSeparator);
214 if (location == NULL) {
215 return path;
216 } else {
217 // Skip the separator character.
218 return location + 1;
219 }
220}
221
Jeff Sharkey90aff262016-12-12 14:28:24 -0700222static void run_dex2oat(int zip_fd, int oat_fd, int input_vdex_fd, int output_vdex_fd, int image_fd,
223 const char* input_file_name, const char* output_file_name, int swap_fd,
Nicolas Geoffraybe6ecd62017-05-03 13:21:37 +0100224 const char* instruction_set, const char* compiler_filter,
Andreas Gampea73a0cb2017-11-02 18:14:42 -0700225 bool debuggable, bool post_bootcomplete, bool background_job_compile, int profile_fd,
Calin Juravle62c5a372018-02-01 17:03:23 +0000226 const char* class_loader_context, int target_sdk_version, bool enable_hidden_api_checks,
227 int dex_metadata_fd) {
Jeff Sharkey90aff262016-12-12 14:28:24 -0700228 static const unsigned int MAX_INSTRUCTION_SET_LEN = 7;
229
230 if (strlen(instruction_set) >= MAX_INSTRUCTION_SET_LEN) {
231 ALOGE("Instruction set %s longer than max length of %d",
232 instruction_set, MAX_INSTRUCTION_SET_LEN);
233 return;
234 }
235
Jeff Hao10b8a6e2017-04-05 17:11:39 -0700236 // Get the relative path to the input file.
237 const char* relative_input_file_name = get_location_from_path(input_file_name);
238
Jeff Sharkey90aff262016-12-12 14:28:24 -0700239 char dex2oat_Xms_flag[kPropertyValueMax];
240 bool have_dex2oat_Xms_flag = get_property("dalvik.vm.dex2oat-Xms", dex2oat_Xms_flag, NULL) > 0;
241
242 char dex2oat_Xmx_flag[kPropertyValueMax];
243 bool have_dex2oat_Xmx_flag = get_property("dalvik.vm.dex2oat-Xmx", dex2oat_Xmx_flag, NULL) > 0;
244
245 char dex2oat_threads_buf[kPropertyValueMax];
246 bool have_dex2oat_threads_flag = get_property(post_bootcomplete
247 ? "dalvik.vm.dex2oat-threads"
248 : "dalvik.vm.boot-dex2oat-threads",
249 dex2oat_threads_buf,
250 NULL) > 0;
251 char dex2oat_threads_arg[kPropertyValueMax + 2];
252 if (have_dex2oat_threads_flag) {
253 sprintf(dex2oat_threads_arg, "-j%s", dex2oat_threads_buf);
254 }
255
256 char dex2oat_isa_features_key[kPropertyKeyMax];
257 sprintf(dex2oat_isa_features_key, "dalvik.vm.isa.%s.features", instruction_set);
258 char dex2oat_isa_features[kPropertyValueMax];
259 bool have_dex2oat_isa_features = get_property(dex2oat_isa_features_key,
260 dex2oat_isa_features, NULL) > 0;
261
262 char dex2oat_isa_variant_key[kPropertyKeyMax];
263 sprintf(dex2oat_isa_variant_key, "dalvik.vm.isa.%s.variant", instruction_set);
264 char dex2oat_isa_variant[kPropertyValueMax];
265 bool have_dex2oat_isa_variant = get_property(dex2oat_isa_variant_key,
266 dex2oat_isa_variant, NULL) > 0;
267
268 const char *dex2oat_norelocation = "-Xnorelocate";
269 bool have_dex2oat_relocation_skip_flag = false;
270
271 char dex2oat_flags[kPropertyValueMax];
272 int dex2oat_flags_count = get_property("dalvik.vm.dex2oat-flags",
273 dex2oat_flags, NULL) <= 0 ? 0 : split_count(dex2oat_flags);
274 ALOGV("dalvik.vm.dex2oat-flags=%s\n", dex2oat_flags);
275
Nicolas Geoffraybe6ecd62017-05-03 13:21:37 +0100276 // If we are booting without the real /data, don't spend time compiling.
Jeff Sharkey90aff262016-12-12 14:28:24 -0700277 char vold_decrypt[kPropertyValueMax];
278 bool have_vold_decrypt = get_property("vold.decrypt", vold_decrypt, "") > 0;
279 bool skip_compilation = (have_vold_decrypt &&
280 (strcmp(vold_decrypt, "trigger_restart_min_framework") == 0 ||
281 (strcmp(vold_decrypt, "1") == 0)));
282
283 bool generate_debug_info = property_get_bool("debug.generate-debug-info", false);
284
285 char app_image_format[kPropertyValueMax];
286 char image_format_arg[strlen("--image-format=") + kPropertyValueMax];
287 bool have_app_image_format =
288 image_fd >= 0 && get_property("dalvik.vm.appimageformat", app_image_format, NULL) > 0;
289 if (have_app_image_format) {
290 sprintf(image_format_arg, "--image-format=%s", app_image_format);
291 }
292
293 char dex2oat_large_app_threshold[kPropertyValueMax];
294 bool have_dex2oat_large_app_threshold =
295 get_property("dalvik.vm.dex2oat-very-large", dex2oat_large_app_threshold, NULL) > 0;
296 char dex2oat_large_app_threshold_arg[strlen("--very-large-app-threshold=") + kPropertyValueMax];
297 if (have_dex2oat_large_app_threshold) {
298 sprintf(dex2oat_large_app_threshold_arg,
299 "--very-large-app-threshold=%s",
300 dex2oat_large_app_threshold);
301 }
302
Andreas Gampe6a9cf722017-07-24 16:49:10 -0700303 // If the runtime was requested to use libartd.so, we'll run dex2oatd, otherwise dex2oat.
David Sehra3b5ab62017-10-25 14:27:29 -0700304 const char* dex2oat_bin = "/system/bin/dex2oat";
305 static const char* kDex2oatDebugPath = "/system/bin/dex2oatd";
Andreas Gampea73a0cb2017-11-02 18:14:42 -0700306 if (is_debug_runtime() || (background_job_compile && is_debuggable_build())) {
David Sehra3b5ab62017-10-25 14:27:29 -0700307 DCHECK(access(kDex2oatDebugPath, X_OK) == 0);
308 dex2oat_bin = kDex2oatDebugPath;
309 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700310
Andreas Gampe2a2d7ba2017-11-02 19:39:29 -0700311 bool generate_minidebug_info = kEnableMinidebugInfo &&
312 android::base::GetBoolProperty(kMinidebugInfoSystemProperty,
313 kMinidebugInfoSystemPropertyDefault);
314
Jeff Sharkey90aff262016-12-12 14:28:24 -0700315 static const char* RUNTIME_ARG = "--runtime-arg";
316
317 static const int MAX_INT_LEN = 12; // '-'+10dig+'\0' -OR- 0x+8dig
318
George Burgess IV36cebe772017-01-25 11:52:01 -0800319 // clang FORTIFY doesn't let us use strlen in constant array bounds, so we
320 // use arraysize instead.
321 char zip_fd_arg[arraysize("--zip-fd=") + MAX_INT_LEN];
322 char zip_location_arg[arraysize("--zip-location=") + PKG_PATH_MAX];
323 char input_vdex_fd_arg[arraysize("--input-vdex-fd=") + MAX_INT_LEN];
324 char output_vdex_fd_arg[arraysize("--output-vdex-fd=") + MAX_INT_LEN];
325 char oat_fd_arg[arraysize("--oat-fd=") + MAX_INT_LEN];
326 char oat_location_arg[arraysize("--oat-location=") + PKG_PATH_MAX];
327 char instruction_set_arg[arraysize("--instruction-set=") + MAX_INSTRUCTION_SET_LEN];
328 char instruction_set_variant_arg[arraysize("--instruction-set-variant=") + kPropertyValueMax];
329 char instruction_set_features_arg[arraysize("--instruction-set-features=") + kPropertyValueMax];
330 char dex2oat_Xms_arg[arraysize("-Xms") + kPropertyValueMax];
331 char dex2oat_Xmx_arg[arraysize("-Xmx") + kPropertyValueMax];
332 char dex2oat_compiler_filter_arg[arraysize("--compiler-filter=") + kPropertyValueMax];
Jeff Sharkey90aff262016-12-12 14:28:24 -0700333 bool have_dex2oat_swap_fd = false;
George Burgess IV36cebe772017-01-25 11:52:01 -0800334 char dex2oat_swap_fd[arraysize("--swap-fd=") + MAX_INT_LEN];
Jeff Sharkey90aff262016-12-12 14:28:24 -0700335 bool have_dex2oat_image_fd = false;
George Burgess IV36cebe772017-01-25 11:52:01 -0800336 char dex2oat_image_fd[arraysize("--app-image-fd=") + MAX_INT_LEN];
Calin Juravle52c45822017-07-13 22:50:21 -0700337 size_t class_loader_context_size = arraysize("--class-loader-context=") + PKG_PATH_MAX;
David Brazdil570d3982018-01-16 20:15:43 +0000338 char target_sdk_version_arg[arraysize("-Xtarget-sdk-version:") + MAX_INT_LEN];
Calin Juravle52c45822017-07-13 22:50:21 -0700339 char class_loader_context_arg[class_loader_context_size];
340 if (class_loader_context != nullptr) {
341 snprintf(class_loader_context_arg, class_loader_context_size, "--class-loader-context=%s",
342 class_loader_context);
343 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700344
345 sprintf(zip_fd_arg, "--zip-fd=%d", zip_fd);
Jeff Hao10b8a6e2017-04-05 17:11:39 -0700346 sprintf(zip_location_arg, "--zip-location=%s", relative_input_file_name);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700347 sprintf(input_vdex_fd_arg, "--input-vdex-fd=%d", input_vdex_fd);
348 sprintf(output_vdex_fd_arg, "--output-vdex-fd=%d", output_vdex_fd);
349 sprintf(oat_fd_arg, "--oat-fd=%d", oat_fd);
350 sprintf(oat_location_arg, "--oat-location=%s", output_file_name);
351 sprintf(instruction_set_arg, "--instruction-set=%s", instruction_set);
352 sprintf(instruction_set_variant_arg, "--instruction-set-variant=%s", dex2oat_isa_variant);
353 sprintf(instruction_set_features_arg, "--instruction-set-features=%s", dex2oat_isa_features);
354 if (swap_fd >= 0) {
355 have_dex2oat_swap_fd = true;
356 sprintf(dex2oat_swap_fd, "--swap-fd=%d", swap_fd);
357 }
358 if (image_fd >= 0) {
359 have_dex2oat_image_fd = true;
360 sprintf(dex2oat_image_fd, "--app-image-fd=%d", image_fd);
361 }
362
363 if (have_dex2oat_Xms_flag) {
364 sprintf(dex2oat_Xms_arg, "-Xms%s", dex2oat_Xms_flag);
365 }
366 if (have_dex2oat_Xmx_flag) {
367 sprintf(dex2oat_Xmx_arg, "-Xmx%s", dex2oat_Xmx_flag);
368 }
David Brazdil570d3982018-01-16 20:15:43 +0000369 sprintf(target_sdk_version_arg, "-Xtarget-sdk-version:%d", target_sdk_version);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700370
371 // Compute compiler filter.
372
Nicolas Geoffraybe6ecd62017-05-03 13:21:37 +0100373 bool have_dex2oat_compiler_filter_flag = false;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700374 if (skip_compilation) {
Jeff Sharkeyc1149c92017-09-21 14:51:09 -0600375 strlcpy(dex2oat_compiler_filter_arg, "--compiler-filter=extract",
376 sizeof(dex2oat_compiler_filter_arg));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700377 have_dex2oat_compiler_filter_flag = true;
378 have_dex2oat_relocation_skip_flag = true;
Nicolas Geoffraybe6ecd62017-05-03 13:21:37 +0100379 } else if (compiler_filter != nullptr) {
380 if (strlen(compiler_filter) + strlen("--compiler-filter=") <
Jeff Sharkey90aff262016-12-12 14:28:24 -0700381 arraysize(dex2oat_compiler_filter_arg)) {
Nicolas Geoffraybe6ecd62017-05-03 13:21:37 +0100382 sprintf(dex2oat_compiler_filter_arg, "--compiler-filter=%s", compiler_filter);
383 have_dex2oat_compiler_filter_flag = true;
384 } else {
385 ALOGW("Compiler filter name '%s' is too large (max characters is %zu)",
386 compiler_filter,
387 kPropertyValueMax);
388 }
389 }
390
391 if (!have_dex2oat_compiler_filter_flag) {
Jeff Sharkey90aff262016-12-12 14:28:24 -0700392 char dex2oat_compiler_filter_flag[kPropertyValueMax];
393 have_dex2oat_compiler_filter_flag = get_property("dalvik.vm.dex2oat-filter",
394 dex2oat_compiler_filter_flag, NULL) > 0;
395 if (have_dex2oat_compiler_filter_flag) {
396 sprintf(dex2oat_compiler_filter_arg,
397 "--compiler-filter=%s",
398 dex2oat_compiler_filter_flag);
399 }
400 }
401
402 // Check whether all apps should be compiled debuggable.
403 if (!debuggable) {
404 char prop_buf[kPropertyValueMax];
405 debuggable =
406 (get_property("dalvik.vm.always_debuggable", prop_buf, "0") > 0) &&
407 (prop_buf[0] == '1');
408 }
409 char profile_arg[strlen("--profile-file-fd=") + MAX_INT_LEN];
410 if (profile_fd != -1) {
411 sprintf(profile_arg, "--profile-file-fd=%d", profile_fd);
412 }
413
Jeff Hao10b8a6e2017-04-05 17:11:39 -0700414 // Get the directory of the apk to pass as a base classpath directory.
415 char base_dir[arraysize("--classpath-dir=") + PKG_PATH_MAX];
416 std::string apk_dir(input_file_name);
417 unsigned long dir_index = apk_dir.rfind('/');
418 bool has_base_dir = dir_index != std::string::npos;
419 if (has_base_dir) {
420 apk_dir = apk_dir.substr(0, dir_index);
421 sprintf(base_dir, "--classpath-dir=%s", apk_dir.c_str());
422 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700423
Calin Juravle62c5a372018-02-01 17:03:23 +0000424 std::string dex_metadata_fd_arg = "--dm-fd=" + std::to_string(dex_metadata_fd);
Jeff Hao10b8a6e2017-04-05 17:11:39 -0700425
Andreas Gampe6a9cf722017-07-24 16:49:10 -0700426 ALOGV("Running %s in=%s out=%s\n", dex2oat_bin, relative_input_file_name, output_file_name);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700427
Mathieu Chartierb41ffcc2018-01-09 00:02:17 -0800428 // Disable cdex if update input vdex is true since this combination of options is not
429 // supported.
Mathieu Chartier1fb463e2018-01-09 15:16:10 -0800430 // Disable cdex for non-background compiles since we don't want to regress app install until
431 // there are enough benefits to justify the tradeoff.
432 const bool disable_cdex = !background_job_compile || (input_vdex_fd == output_vdex_fd);
Mathieu Chartierb41ffcc2018-01-09 00:02:17 -0800433
Jeff Sharkey90aff262016-12-12 14:28:24 -0700434 const char* argv[9 // program name, mandatory arguments and the final NULL
435 + (have_dex2oat_isa_variant ? 1 : 0)
436 + (have_dex2oat_isa_features ? 1 : 0)
437 + (have_dex2oat_Xms_flag ? 2 : 0)
438 + (have_dex2oat_Xmx_flag ? 2 : 0)
439 + (have_dex2oat_compiler_filter_flag ? 1 : 0)
440 + (have_dex2oat_threads_flag ? 1 : 0)
441 + (have_dex2oat_swap_fd ? 1 : 0)
442 + (have_dex2oat_image_fd ? 1 : 0)
443 + (have_dex2oat_relocation_skip_flag ? 2 : 0)
444 + (generate_debug_info ? 1 : 0)
445 + (debuggable ? 1 : 0)
446 + (have_app_image_format ? 1 : 0)
447 + dex2oat_flags_count
448 + (profile_fd == -1 ? 0 : 1)
Calin Juravle52c45822017-07-13 22:50:21 -0700449 + (class_loader_context != nullptr ? 1 : 0)
Jeff Hao10b8a6e2017-04-05 17:11:39 -0700450 + (has_base_dir ? 1 : 0)
Andreas Gampe2a2d7ba2017-11-02 19:39:29 -0700451 + (have_dex2oat_large_app_threshold ? 1 : 0)
Mathieu Chartierb41ffcc2018-01-09 00:02:17 -0800452 + (disable_cdex ? 1 : 0)
David Brazdil570d3982018-01-16 20:15:43 +0000453 + (generate_minidebug_info ? 1 : 0)
David Brazdil7fcbb812018-01-17 17:05:40 +0000454 + (target_sdk_version != 0 ? 2 : 0)
Calin Juravle62c5a372018-02-01 17:03:23 +0000455 + (enable_hidden_api_checks ? 2 : 0)
456 + (dex_metadata_fd > -1 ? 1 : 0)];
Jeff Sharkey90aff262016-12-12 14:28:24 -0700457 int i = 0;
Andreas Gampe6a9cf722017-07-24 16:49:10 -0700458 argv[i++] = dex2oat_bin;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700459 argv[i++] = zip_fd_arg;
460 argv[i++] = zip_location_arg;
461 argv[i++] = input_vdex_fd_arg;
462 argv[i++] = output_vdex_fd_arg;
463 argv[i++] = oat_fd_arg;
464 argv[i++] = oat_location_arg;
465 argv[i++] = instruction_set_arg;
466 if (have_dex2oat_isa_variant) {
467 argv[i++] = instruction_set_variant_arg;
468 }
469 if (have_dex2oat_isa_features) {
470 argv[i++] = instruction_set_features_arg;
471 }
472 if (have_dex2oat_Xms_flag) {
473 argv[i++] = RUNTIME_ARG;
474 argv[i++] = dex2oat_Xms_arg;
475 }
476 if (have_dex2oat_Xmx_flag) {
477 argv[i++] = RUNTIME_ARG;
478 argv[i++] = dex2oat_Xmx_arg;
479 }
480 if (have_dex2oat_compiler_filter_flag) {
481 argv[i++] = dex2oat_compiler_filter_arg;
482 }
483 if (have_dex2oat_threads_flag) {
484 argv[i++] = dex2oat_threads_arg;
485 }
486 if (have_dex2oat_swap_fd) {
487 argv[i++] = dex2oat_swap_fd;
488 }
489 if (have_dex2oat_image_fd) {
490 argv[i++] = dex2oat_image_fd;
491 }
492 if (generate_debug_info) {
493 argv[i++] = "--generate-debug-info";
494 }
495 if (debuggable) {
496 argv[i++] = "--debuggable";
497 }
498 if (have_app_image_format) {
499 argv[i++] = image_format_arg;
500 }
501 if (have_dex2oat_large_app_threshold) {
502 argv[i++] = dex2oat_large_app_threshold_arg;
503 }
504 if (dex2oat_flags_count) {
505 i += split(dex2oat_flags, argv + i);
506 }
507 if (have_dex2oat_relocation_skip_flag) {
508 argv[i++] = RUNTIME_ARG;
509 argv[i++] = dex2oat_norelocation;
510 }
511 if (profile_fd != -1) {
512 argv[i++] = profile_arg;
513 }
Jeff Hao10b8a6e2017-04-05 17:11:39 -0700514 if (has_base_dir) {
515 argv[i++] = base_dir;
516 }
Calin Juravle52c45822017-07-13 22:50:21 -0700517 if (class_loader_context != nullptr) {
518 argv[i++] = class_loader_context_arg;
519 }
Andreas Gampe2a2d7ba2017-11-02 19:39:29 -0700520 if (generate_minidebug_info) {
521 argv[i++] = kMinidebugDex2oatFlag;
522 }
Mathieu Chartierb41ffcc2018-01-09 00:02:17 -0800523 if (disable_cdex) {
524 argv[i++] = kDisableCompactDexFlag;
525 }
David Brazdil570d3982018-01-16 20:15:43 +0000526 if (target_sdk_version != 0) {
527 argv[i++] = RUNTIME_ARG;
528 argv[i++] = target_sdk_version_arg;
529 }
David Brazdil52249162018-02-12 18:04:59 -0800530 if (enable_hidden_api_checks) {
David Brazdil7fcbb812018-01-17 17:05:40 +0000531 argv[i++] = RUNTIME_ARG;
David Brazdil52249162018-02-12 18:04:59 -0800532 argv[i++] = "-Xhidden-api-checks";
David Brazdil7fcbb812018-01-17 17:05:40 +0000533 }
Calin Juravle52c45822017-07-13 22:50:21 -0700534
Calin Juravle62c5a372018-02-01 17:03:23 +0000535 if (dex_metadata_fd > -1) {
536 argv[i++] = dex_metadata_fd_arg.c_str();
537 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700538 // Do not add after dex2oat_flags, they should override others for debugging.
539 argv[i] = NULL;
540
Andreas Gampe6a9cf722017-07-24 16:49:10 -0700541 execv(dex2oat_bin, (char * const *)argv);
542 ALOGE("execv(%s) failed: %s\n", dex2oat_bin, strerror(errno));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700543}
544
545/*
546 * Whether dexopt should use a swap file when compiling an APK.
547 *
548 * If kAlwaysProvideSwapFile, do this on all devices (dex2oat will make a more informed decision
549 * itself, anyways).
550 *
551 * Otherwise, read "dalvik.vm.dex2oat-swap". If the property exists, return whether it is "true".
552 *
553 * Otherwise, return true if this is a low-mem device.
554 *
555 * Otherwise, return default value.
556 */
557static bool kAlwaysProvideSwapFile = false;
558static bool kDefaultProvideSwapFile = true;
559
560static bool ShouldUseSwapFileForDexopt() {
561 if (kAlwaysProvideSwapFile) {
562 return true;
563 }
564
565 // Check the "override" property. If it exists, return value == "true".
566 char dex2oat_prop_buf[kPropertyValueMax];
567 if (get_property("dalvik.vm.dex2oat-swap", dex2oat_prop_buf, "") > 0) {
568 if (strcmp(dex2oat_prop_buf, "true") == 0) {
569 return true;
570 } else {
571 return false;
572 }
573 }
574
575 // Shortcut for default value. This is an implementation optimization for the process sketched
576 // above. If the default value is true, we can avoid to check whether this is a low-mem device,
577 // as low-mem is never returning false. The compiler will optimize this away if it can.
578 if (kDefaultProvideSwapFile) {
579 return true;
580 }
581
582 bool is_low_mem = property_get_bool("ro.config.low_ram", false);
583 if (is_low_mem) {
584 return true;
585 }
586
587 // Default value must be false here.
588 return kDefaultProvideSwapFile;
589}
590
Richard Uhler76cc0272016-12-08 10:46:35 +0000591static void SetDex2OatScheduling(bool set_to_bg) {
Jeff Sharkey90aff262016-12-12 14:28:24 -0700592 if (set_to_bg) {
593 if (set_sched_policy(0, SP_BACKGROUND) < 0) {
594 ALOGE("set_sched_policy failed: %s\n", strerror(errno));
595 exit(70);
596 }
597 if (setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_BACKGROUND) < 0) {
598 ALOGE("setpriority failed: %s\n", strerror(errno));
599 exit(71);
600 }
601 }
602}
603
Calin Juravle29591732017-11-20 17:46:19 -0800604static unique_fd create_profile(uid_t uid, const std::string& profile, int32_t flags) {
605 unique_fd fd(TEMP_FAILURE_RETRY(open(profile.c_str(), flags, 0600)));
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800606 if (fd.get() < 0) {
Calin Juravle29591732017-11-20 17:46:19 -0800607 if (errno != EEXIST) {
Calin Juravle114f0812017-03-08 19:05:07 -0800608 PLOG(ERROR) << "Failed to create profile " << profile;
Calin Juravle29591732017-11-20 17:46:19 -0800609 return invalid_unique_fd();
Calin Juravle114f0812017-03-08 19:05:07 -0800610 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700611 }
Calin Juravle114f0812017-03-08 19:05:07 -0800612 // Profiles should belong to the app; make sure of that by giving ownership to
613 // the app uid. If we cannot do that, there's no point in returning the fd
614 // since dex2oat/profman will fail with SElinux denials.
615 if (fchown(fd.get(), uid, uid) < 0) {
616 PLOG(ERROR) << "Could not chwon profile " << profile;
Calin Juravle29591732017-11-20 17:46:19 -0800617 return invalid_unique_fd();
Calin Juravle114f0812017-03-08 19:05:07 -0800618 }
Calin Juravle29591732017-11-20 17:46:19 -0800619 return fd;
Calin Juravle114f0812017-03-08 19:05:07 -0800620}
621
Calin Juravle29591732017-11-20 17:46:19 -0800622static unique_fd open_profile(uid_t uid, const std::string& profile, int32_t flags) {
Calin Juravle114f0812017-03-08 19:05:07 -0800623 // Do not follow symlinks when opening a profile:
624 // - primary profiles should not contain symlinks in their paths
625 // - secondary dex paths should have been already resolved and validated
626 flags |= O_NOFOLLOW;
627
Calin Juravle29591732017-11-20 17:46:19 -0800628 // Check if we need to create the profile
629 // Reference profiles and snapshots are created on the fly; so they might not exist beforehand.
630 unique_fd fd;
631 if ((flags & O_CREAT) != 0) {
632 fd = create_profile(uid, profile, flags);
633 } else {
634 fd.reset(TEMP_FAILURE_RETRY(open(profile.c_str(), flags)));
635 }
636
Calin Juravle114f0812017-03-08 19:05:07 -0800637 if (fd.get() < 0) {
638 if (errno != ENOENT) {
639 // Profiles might be missing for various reasons. For example, in a
640 // multi-user environment, the profile directory for one user can be created
641 // after we start a merge. In this case the current profile for that user
642 // will not be found.
643 // Also, the secondary dex profiles might be deleted by the app at any time,
644 // so we can't we need to prepare if they are missing.
645 PLOG(ERROR) << "Failed to open profile " << profile;
646 }
647 return invalid_unique_fd();
648 }
649
Jeff Sharkey90aff262016-12-12 14:28:24 -0700650 return fd;
651}
652
Calin Juravle824a64d2018-01-18 20:23:17 -0800653static unique_fd open_current_profile(uid_t uid, userid_t user, const std::string& package_name,
654 const std::string& location, bool is_secondary_dex) {
655 std::string profile = create_current_profile_path(user, package_name, location,
656 is_secondary_dex);
Calin Juravle29591732017-11-20 17:46:19 -0800657 return open_profile(uid, profile, O_RDONLY);
Calin Juravle114f0812017-03-08 19:05:07 -0800658}
659
Calin Juravle824a64d2018-01-18 20:23:17 -0800660static unique_fd open_reference_profile(uid_t uid, const std::string& package_name,
661 const std::string& location, bool read_write, bool is_secondary_dex) {
662 std::string profile = create_reference_profile_path(package_name, location, is_secondary_dex);
Calin Juravle29591732017-11-20 17:46:19 -0800663 return open_profile(uid, profile, read_write ? (O_CREAT | O_RDWR) : O_RDONLY);
664}
665
666static unique_fd open_spnashot_profile(uid_t uid, const std::string& package_name,
Calin Juravle824a64d2018-01-18 20:23:17 -0800667 const std::string& location) {
668 std::string profile = create_snapshot_profile_path(package_name, location);
Calin Juravle29591732017-11-20 17:46:19 -0800669 return open_profile(uid, profile, O_CREAT | O_RDWR | O_TRUNC);
Calin Juravle114f0812017-03-08 19:05:07 -0800670}
671
Calin Juravle824a64d2018-01-18 20:23:17 -0800672static void open_profile_files(uid_t uid, const std::string& package_name,
673 const std::string& location, bool is_secondary_dex,
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800674 /*out*/ std::vector<unique_fd>* profiles_fd, /*out*/ unique_fd* reference_profile_fd) {
Jeff Sharkey90aff262016-12-12 14:28:24 -0700675 // Open the reference profile in read-write mode as profman might need to save the merge.
Calin Juravle824a64d2018-01-18 20:23:17 -0800676 *reference_profile_fd = open_reference_profile(uid, package_name, location,
677 /*read_write*/ true, is_secondary_dex);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700678
Calin Juravle114f0812017-03-08 19:05:07 -0800679 // For secondary dex files, we don't really need the user but we use it for sanity checks.
680 // Note: the user owning the dex file should be the current user.
681 std::vector<userid_t> users;
682 if (is_secondary_dex){
683 users.push_back(multiuser_get_user_id(uid));
684 } else {
685 users = get_known_users(/*volume_uuid*/ nullptr);
686 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700687 for (auto user : users) {
Calin Juravle824a64d2018-01-18 20:23:17 -0800688 unique_fd profile_fd = open_current_profile(uid, user, package_name, location,
689 is_secondary_dex);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700690 // Add to the lists only if both fds are valid.
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800691 if (profile_fd.get() >= 0) {
692 profiles_fd->push_back(std::move(profile_fd));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700693 }
694 }
695}
696
697static void drop_capabilities(uid_t uid) {
698 if (setgid(uid) != 0) {
699 ALOGE("setgid(%d) failed in installd during dexopt\n", uid);
700 exit(64);
701 }
702 if (setuid(uid) != 0) {
703 ALOGE("setuid(%d) failed in installd during dexopt\n", uid);
704 exit(65);
705 }
706 // drop capabilities
707 struct __user_cap_header_struct capheader;
708 struct __user_cap_data_struct capdata[2];
709 memset(&capheader, 0, sizeof(capheader));
710 memset(&capdata, 0, sizeof(capdata));
711 capheader.version = _LINUX_CAPABILITY_VERSION_3;
712 if (capset(&capheader, &capdata[0]) < 0) {
713 ALOGE("capset failed: %s\n", strerror(errno));
714 exit(66);
715 }
716}
717
718static constexpr int PROFMAN_BIN_RETURN_CODE_COMPILE = 0;
719static constexpr int PROFMAN_BIN_RETURN_CODE_SKIP_COMPILATION = 1;
720static constexpr int PROFMAN_BIN_RETURN_CODE_BAD_PROFILES = 2;
721static constexpr int PROFMAN_BIN_RETURN_CODE_ERROR_IO = 3;
722static constexpr int PROFMAN_BIN_RETURN_CODE_ERROR_LOCKING = 4;
723
Calin Juravlef63d4792018-01-30 17:43:34 +0000724static void run_profman(const std::vector<unique_fd>& profile_fds,
725 const unique_fd& reference_profile_fd,
726 const std::vector<unique_fd>* apk_fds,
727 bool copy_and_update) {
Andreas Gampe6a9cf722017-07-24 16:49:10 -0700728 const char* profman_bin = is_debug_runtime() ? "/system/bin/profmand" : "/system/bin/profman";
Jeff Sharkey90aff262016-12-12 14:28:24 -0700729
Calin Juravlef63d4792018-01-30 17:43:34 +0000730 if (copy_and_update) {
731 CHECK_EQ(1u, profile_fds.size());
732 CHECK(apk_fds != nullptr);
733 CHECK_EQ(1u, apk_fds->size());
734 }
735 std::vector<std::string> profile_args(profile_fds.size());
736 for (size_t k = 0; k < profile_fds.size(); k++) {
737 profile_args[k] = "--profile-file-fd=" + std::to_string(profile_fds[k].get());
Jeff Sharkey90aff262016-12-12 14:28:24 -0700738 }
Calin Juravle0d0a4922018-01-23 19:54:11 -0800739 std::string reference_profile_arg = "--reference-profile-file-fd="
740 + std::to_string(reference_profile_fd.get());
741
742 std::vector<std::string> apk_args;
743 if (apk_fds != nullptr) {
744 for (size_t k = 0; k < apk_fds->size(); k++) {
745 apk_args.push_back("--apk-fd=" + std::to_string((*apk_fds)[k].get()));
746 }
747 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700748
749 // program name, reference profile fd, the final NULL and the profile fds
Calin Juravlef63d4792018-01-30 17:43:34 +0000750 const char* argv[3 + profile_args.size() + apk_args.size() + (copy_and_update ? 1 : 0)];
Jeff Sharkey90aff262016-12-12 14:28:24 -0700751 int i = 0;
Andreas Gampe6a9cf722017-07-24 16:49:10 -0700752 argv[i++] = profman_bin;
Calin Juravle0d0a4922018-01-23 19:54:11 -0800753 argv[i++] = reference_profile_arg.c_str();
Jeff Sharkey90aff262016-12-12 14:28:24 -0700754 for (size_t k = 0; k < profile_args.size(); k++) {
755 argv[i++] = profile_args[k].c_str();
756 }
Calin Juravle0d0a4922018-01-23 19:54:11 -0800757 for (size_t k = 0; k < apk_args.size(); k++) {
758 argv[i++] = apk_args[k].c_str();
759 }
Calin Juravlef63d4792018-01-30 17:43:34 +0000760 if (copy_and_update) {
761 argv[i++] = "--copy-and-update-profile-key";
762 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700763 // Do not add after dex2oat_flags, they should override others for debugging.
764 argv[i] = NULL;
765
Andreas Gampe6a9cf722017-07-24 16:49:10 -0700766 execv(profman_bin, (char * const *)argv);
767 ALOGE("execv(%s) failed: %s\n", profman_bin, strerror(errno));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700768 exit(68); /* only get here on exec failure */
769}
770
Calin Juravlef63d4792018-01-30 17:43:34 +0000771
772static void run_profman_merge(const std::vector<unique_fd>& profiles_fd,
773 const unique_fd& reference_profile_fd,
774 const std::vector<unique_fd>* apk_fds = nullptr) {
775 run_profman(profiles_fd, reference_profile_fd, apk_fds, /*copy_and_update*/false);
776}
777
778
779static void run_profman_copy_and_update(unique_fd&& profile_fd,
780 unique_fd&& reference_profile_fd,
781 unique_fd&& apk_fd) {
782 std::vector<unique_fd> profiles_fd;
783 profiles_fd.push_back(std::move(profile_fd));
784 std::vector<unique_fd> apk_fds;
785 apk_fds.push_back(std::move(apk_fd));
786
787 run_profman(profiles_fd, reference_profile_fd, &apk_fds, /*copy_and_update*/true);
788}
789
Jeff Sharkey90aff262016-12-12 14:28:24 -0700790// Decides if profile guided compilation is needed or not based on existing profiles.
Calin Juravle114f0812017-03-08 19:05:07 -0800791// The location is the package name for primary apks or the dex path for secondary dex files.
792// Returns true if there is enough information in the current profiles that makes it
793// worth to recompile the given location.
Jeff Sharkey90aff262016-12-12 14:28:24 -0700794// If the return value is true all the current profiles would have been merged into
795// the reference profiles accessible with open_reference_profile().
Calin Juravle824a64d2018-01-18 20:23:17 -0800796static bool analyze_profiles(uid_t uid, const std::string& package_name,
797 const std::string& location, bool is_secondary_dex) {
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800798 std::vector<unique_fd> profiles_fd;
799 unique_fd reference_profile_fd;
Calin Juravle824a64d2018-01-18 20:23:17 -0800800 open_profile_files(uid, package_name, location, is_secondary_dex,
801 &profiles_fd, &reference_profile_fd);
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800802 if (profiles_fd.empty() || (reference_profile_fd.get() < 0)) {
Jeff Sharkey90aff262016-12-12 14:28:24 -0700803 // Skip profile guided compilation because no profiles were found.
804 // Or if the reference profile info couldn't be opened.
Jeff Sharkey90aff262016-12-12 14:28:24 -0700805 return false;
806 }
807
Jeff Sharkey90aff262016-12-12 14:28:24 -0700808 pid_t pid = fork();
809 if (pid == 0) {
810 /* child -- drop privileges before continuing */
811 drop_capabilities(uid);
812 run_profman_merge(profiles_fd, reference_profile_fd);
813 exit(68); /* only get here on exec failure */
814 }
815 /* parent */
816 int return_code = wait_child(pid);
817 bool need_to_compile = false;
818 bool should_clear_current_profiles = false;
819 bool should_clear_reference_profile = false;
820 if (!WIFEXITED(return_code)) {
Calin Juravle114f0812017-03-08 19:05:07 -0800821 LOG(WARNING) << "profman failed for location " << location << ": " << return_code;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700822 } else {
823 return_code = WEXITSTATUS(return_code);
824 switch (return_code) {
825 case PROFMAN_BIN_RETURN_CODE_COMPILE:
826 need_to_compile = true;
827 should_clear_current_profiles = true;
828 should_clear_reference_profile = false;
829 break;
830 case PROFMAN_BIN_RETURN_CODE_SKIP_COMPILATION:
831 need_to_compile = false;
832 should_clear_current_profiles = false;
833 should_clear_reference_profile = false;
834 break;
835 case PROFMAN_BIN_RETURN_CODE_BAD_PROFILES:
Calin Juravle114f0812017-03-08 19:05:07 -0800836 LOG(WARNING) << "Bad profiles for location " << location;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700837 need_to_compile = false;
838 should_clear_current_profiles = true;
839 should_clear_reference_profile = true;
840 break;
841 case PROFMAN_BIN_RETURN_CODE_ERROR_IO: // fall-through
842 case PROFMAN_BIN_RETURN_CODE_ERROR_LOCKING:
843 // Temporary IO problem (e.g. locking). Ignore but log a warning.
Calin Juravle114f0812017-03-08 19:05:07 -0800844 LOG(WARNING) << "IO error while reading profiles for location " << location;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700845 need_to_compile = false;
846 should_clear_current_profiles = false;
847 should_clear_reference_profile = false;
848 break;
849 default:
850 // Unknown return code or error. Unlink profiles.
Calin Juravle114f0812017-03-08 19:05:07 -0800851 LOG(WARNING) << "Unknown error code while processing profiles for location "
852 << location << ": " << return_code;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700853 need_to_compile = false;
854 should_clear_current_profiles = true;
855 should_clear_reference_profile = true;
856 break;
857 }
858 }
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800859
Jeff Sharkey90aff262016-12-12 14:28:24 -0700860 if (should_clear_current_profiles) {
Calin Juravle114f0812017-03-08 19:05:07 -0800861 if (is_secondary_dex) {
862 // For secondary dex files, the owning user is the current user.
Calin Juravle824a64d2018-01-18 20:23:17 -0800863 clear_current_profile(package_name, location, multiuser_get_user_id(uid),
864 is_secondary_dex);
Calin Juravle114f0812017-03-08 19:05:07 -0800865 } else {
Calin Juravle824a64d2018-01-18 20:23:17 -0800866 clear_primary_current_profiles(package_name, location);
Calin Juravle114f0812017-03-08 19:05:07 -0800867 }
Jeff Sharkey90aff262016-12-12 14:28:24 -0700868 }
869 if (should_clear_reference_profile) {
Calin Juravle824a64d2018-01-18 20:23:17 -0800870 clear_reference_profile(package_name, location, is_secondary_dex);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700871 }
872 return need_to_compile;
873}
874
Calin Juravle114f0812017-03-08 19:05:07 -0800875// Decides if profile guided compilation is needed or not based on existing profiles.
876// The analysis is done for the primary apks of the given package.
877// Returns true if there is enough information in the current profiles that makes it
878// worth to recompile the package.
879// If the return value is true all the current profiles would have been merged into
880// the reference profiles accessible with open_reference_profile().
Calin Juravle824a64d2018-01-18 20:23:17 -0800881bool analyze_primary_profiles(uid_t uid, const std::string& package_name,
882 const std::string& profile_name) {
883 return analyze_profiles(uid, package_name, profile_name, /*is_secondary_dex*/false);
Calin Juravle114f0812017-03-08 19:05:07 -0800884}
885
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800886static void run_profman_dump(const std::vector<unique_fd>& profile_fds,
887 const unique_fd& reference_profile_fd,
Jeff Sharkey90aff262016-12-12 14:28:24 -0700888 const std::vector<std::string>& dex_locations,
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800889 const std::vector<unique_fd>& apk_fds,
890 const unique_fd& output_fd) {
Jeff Sharkey90aff262016-12-12 14:28:24 -0700891 std::vector<std::string> profman_args;
892 static const char* PROFMAN_BIN = "/system/bin/profman";
893 profman_args.push_back(PROFMAN_BIN);
894 profman_args.push_back("--dump-only");
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800895 profman_args.push_back(StringPrintf("--dump-output-to-fd=%d", output_fd.get()));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700896 if (reference_profile_fd != -1) {
897 profman_args.push_back(StringPrintf("--reference-profile-file-fd=%d",
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800898 reference_profile_fd.get()));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700899 }
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800900 for (size_t i = 0; i < profile_fds.size(); i++) {
901 profman_args.push_back(StringPrintf("--profile-file-fd=%d", profile_fds[i].get()));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700902 }
903 for (const std::string& dex_location : dex_locations) {
904 profman_args.push_back(StringPrintf("--dex-location=%s", dex_location.c_str()));
905 }
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800906 for (size_t i = 0; i < apk_fds.size(); i++) {
907 profman_args.push_back(StringPrintf("--apk-fd=%d", apk_fds[i].get()));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700908 }
909 const char **argv = new const char*[profman_args.size() + 1];
910 size_t i = 0;
911 for (const std::string& profman_arg : profman_args) {
912 argv[i++] = profman_arg.c_str();
913 }
914 argv[i] = NULL;
915
916 execv(PROFMAN_BIN, (char * const *)argv);
917 ALOGE("execv(%s) failed: %s\n", PROFMAN_BIN, strerror(errno));
918 exit(68); /* only get here on exec failure */
919}
920
Calin Juravle408cd4a2018-01-20 23:34:18 -0800921bool dump_profiles(int32_t uid, const std::string& pkgname, const std::string& profile_name,
922 const std::string& code_path) {
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800923 std::vector<unique_fd> profile_fds;
924 unique_fd reference_profile_fd;
Calin Juravle408cd4a2018-01-20 23:34:18 -0800925 std::string out_file_name = StringPrintf("/data/misc/profman/%s-%s.txt",
926 pkgname.c_str(), profile_name.c_str());
Jeff Sharkey90aff262016-12-12 14:28:24 -0700927
Calin Juravle408cd4a2018-01-20 23:34:18 -0800928 open_profile_files(uid, pkgname, profile_name, /*is_secondary_dex*/false,
Calin Juravle114f0812017-03-08 19:05:07 -0800929 &profile_fds, &reference_profile_fd);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700930
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800931 const bool has_reference_profile = (reference_profile_fd.get() != -1);
Jeff Sharkey90aff262016-12-12 14:28:24 -0700932 const bool has_profiles = !profile_fds.empty();
933
934 if (!has_reference_profile && !has_profiles) {
Calin Juravle76268c52017-03-09 13:19:42 -0800935 LOG(ERROR) << "profman dump: no profiles to dump for " << pkgname;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700936 return false;
937 }
938
Calin Juravle114f0812017-03-08 19:05:07 -0800939 unique_fd output_fd(open(out_file_name.c_str(),
940 O_WRONLY | O_CREAT | O_TRUNC | O_NOFOLLOW, 0644));
Jeff Sharkey90aff262016-12-12 14:28:24 -0700941 if (fchmod(output_fd, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH) < 0) {
Calin Juravle408cd4a2018-01-20 23:34:18 -0800942 LOG(ERROR) << "installd cannot chmod file for dump_profile" << out_file_name;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700943 return false;
944 }
Calin Juravle408cd4a2018-01-20 23:34:18 -0800945
Jeff Sharkey90aff262016-12-12 14:28:24 -0700946 std::vector<std::string> dex_locations;
Calin Juravle1a0af3b2017-03-09 14:33:33 -0800947 std::vector<unique_fd> apk_fds;
Calin Juravle408cd4a2018-01-20 23:34:18 -0800948 unique_fd apk_fd(open(code_path.c_str(), O_RDONLY | O_NOFOLLOW));
949 if (apk_fd == -1) {
950 PLOG(ERROR) << "installd cannot open " << code_path.c_str();
951 return false;
Jeff Sharkey90aff262016-12-12 14:28:24 -0700952 }
Calin Juravle408cd4a2018-01-20 23:34:18 -0800953 dex_locations.push_back(get_location_from_path(code_path.c_str()));
954 apk_fds.push_back(std::move(apk_fd));
955
Jeff Sharkey90aff262016-12-12 14:28:24 -0700956
957 pid_t pid = fork();
958 if (pid == 0) {
959 /* child -- drop privileges before continuing */
960 drop_capabilities(uid);
961 run_profman_dump(profile_fds, reference_profile_fd, dex_locations,
962 apk_fds, output_fd);
963 exit(68); /* only get here on exec failure */
964 }
965 /* parent */
Jeff Sharkey90aff262016-12-12 14:28:24 -0700966 int return_code = wait_child(pid);
967 if (!WIFEXITED(return_code)) {
968 LOG(WARNING) << "profman failed for package " << pkgname << ": "
969 << return_code;
970 return false;
971 }
972 return true;
973}
974
Mathieu Chartierf966f2a2017-05-10 12:48:37 -0700975bool copy_system_profile(const std::string& system_profile,
Calin Juravle824a64d2018-01-18 20:23:17 -0800976 uid_t packageUid, const std::string& package_name, const std::string& profile_name) {
Mathieu Chartierf966f2a2017-05-10 12:48:37 -0700977 unique_fd in_fd(open(system_profile.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC));
978 unique_fd out_fd(open_reference_profile(packageUid,
Calin Juravle824a64d2018-01-18 20:23:17 -0800979 package_name,
980 profile_name,
Mathieu Chartierf966f2a2017-05-10 12:48:37 -0700981 /*read_write*/ true,
982 /*secondary*/ false));
983 if (in_fd.get() < 0) {
984 PLOG(WARNING) << "Could not open profile " << system_profile;
985 return false;
986 }
987 if (out_fd.get() < 0) {
Calin Juravle824a64d2018-01-18 20:23:17 -0800988 PLOG(WARNING) << "Could not open profile " << package_name;
Mathieu Chartierf966f2a2017-05-10 12:48:37 -0700989 return false;
990 }
991
Mathieu Chartier78f71fe2017-06-14 13:02:26 -0700992 // As a security measure we want to write the profile information with the reduced capabilities
993 // of the package user id. So we fork and drop capabilities in the child.
Mathieu Chartierf966f2a2017-05-10 12:48:37 -0700994 pid_t pid = fork();
995 if (pid == 0) {
996 /* child -- drop privileges before continuing */
997 drop_capabilities(packageUid);
998
999 if (flock(out_fd.get(), LOCK_EX | LOCK_NB) != 0) {
1000 if (errno != EWOULDBLOCK) {
Calin Juravle824a64d2018-01-18 20:23:17 -08001001 PLOG(WARNING) << "Error locking profile " << package_name;
Mathieu Chartierf966f2a2017-05-10 12:48:37 -07001002 }
1003 // This implies that the app owning this profile is running
1004 // (and has acquired the lock).
1005 //
1006 // The app never acquires the lock for the reference profiles of primary apks.
1007 // Only dex2oat from installd will do that. Since installd is single threaded
1008 // we should not see this case. Nevertheless be prepared for it.
Calin Juravle824a64d2018-01-18 20:23:17 -08001009 PLOG(WARNING) << "Failed to flock " << package_name;
Mathieu Chartierf966f2a2017-05-10 12:48:37 -07001010 return false;
1011 }
1012
1013 bool truncated = ftruncate(out_fd.get(), 0) == 0;
1014 if (!truncated) {
Calin Juravle824a64d2018-01-18 20:23:17 -08001015 PLOG(WARNING) << "Could not truncate " << package_name;
Mathieu Chartierf966f2a2017-05-10 12:48:37 -07001016 }
1017
1018 // Copy over data.
1019 static constexpr size_t kBufferSize = 4 * 1024;
1020 char buffer[kBufferSize];
1021 while (true) {
1022 ssize_t bytes = read(in_fd.get(), buffer, kBufferSize);
1023 if (bytes == 0) {
1024 break;
1025 }
1026 write(out_fd.get(), buffer, bytes);
1027 }
1028 if (flock(out_fd.get(), LOCK_UN) != 0) {
Calin Juravle824a64d2018-01-18 20:23:17 -08001029 PLOG(WARNING) << "Error unlocking profile " << package_name;
Mathieu Chartierf966f2a2017-05-10 12:48:37 -07001030 }
Mathieu Chartier78f71fe2017-06-14 13:02:26 -07001031 // Use _exit since we don't want to run the global destructors in the child.
1032 // b/62597429
1033 _exit(0);
Mathieu Chartierf966f2a2017-05-10 12:48:37 -07001034 }
1035 /* parent */
1036 int return_code = wait_child(pid);
1037 return return_code == 0;
1038}
1039
Jeff Sharkey90aff262016-12-12 14:28:24 -07001040static std::string replace_file_extension(const std::string& oat_path, const std::string& new_ext) {
1041 // A standard dalvik-cache entry. Replace ".dex" with `new_ext`.
1042 if (EndsWith(oat_path, ".dex")) {
1043 std::string new_path = oat_path;
1044 new_path.replace(new_path.length() - strlen(".dex"), strlen(".dex"), new_ext);
Elliott Hughes969e4f82017-12-20 12:34:09 -08001045 CHECK(EndsWith(new_path, new_ext));
Jeff Sharkey90aff262016-12-12 14:28:24 -07001046 return new_path;
1047 }
1048
1049 // An odex entry. Not that this may not be an extension, e.g., in the OTA
1050 // case (where the base name will have an extension for the B artifact).
1051 size_t odex_pos = oat_path.rfind(".odex");
1052 if (odex_pos != std::string::npos) {
1053 std::string new_path = oat_path;
1054 new_path.replace(odex_pos, strlen(".odex"), new_ext);
1055 CHECK_NE(new_path.find(new_ext), std::string::npos);
1056 return new_path;
1057 }
1058
1059 // Don't know how to handle this.
1060 return "";
1061}
1062
1063// Translate the given oat path to an art (app image) path. An empty string
1064// denotes an error.
1065static std::string create_image_filename(const std::string& oat_path) {
1066 return replace_file_extension(oat_path, ".art");
1067}
1068
1069// Translate the given oat path to a vdex path. An empty string denotes an error.
1070static std::string create_vdex_filename(const std::string& oat_path) {
1071 return replace_file_extension(oat_path, ".vdex");
1072}
1073
Jeff Sharkey90aff262016-12-12 14:28:24 -07001074static int open_output_file(const char* file_name, bool recreate, int permissions) {
1075 int flags = O_RDWR | O_CREAT;
1076 if (recreate) {
1077 if (unlink(file_name) < 0) {
1078 if (errno != ENOENT) {
1079 PLOG(ERROR) << "open_output_file: Couldn't unlink " << file_name;
1080 }
1081 }
1082 flags |= O_EXCL;
1083 }
1084 return open(file_name, flags, permissions);
1085}
1086
Calin Juravle2289c0a2017-02-15 12:44:14 -08001087static bool set_permissions_and_ownership(
1088 int fd, bool is_public, int uid, const char* path, bool is_secondary_dex) {
1089 // Primary apks are owned by the system. Secondary dex files are owned by the app.
1090 int owning_uid = is_secondary_dex ? uid : AID_SYSTEM;
Jeff Sharkey90aff262016-12-12 14:28:24 -07001091 if (fchmod(fd,
1092 S_IRUSR|S_IWUSR|S_IRGRP |
1093 (is_public ? S_IROTH : 0)) < 0) {
1094 ALOGE("installd cannot chmod '%s' during dexopt\n", path);
1095 return false;
Calin Juravle2289c0a2017-02-15 12:44:14 -08001096 } else if (fchown(fd, owning_uid, uid) < 0) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001097 ALOGE("installd cannot chown '%s' during dexopt\n", path);
1098 return false;
1099 }
1100 return true;
1101}
1102
1103static bool IsOutputDalvikCache(const char* oat_dir) {
1104 // InstallerConnection.java (which invokes installd) transforms Java null arguments
1105 // into '!'. Play it safe by handling it both.
1106 // TODO: ensure we never get null.
1107 // TODO: pass a flag instead of inferring if the output is dalvik cache.
1108 return oat_dir == nullptr || oat_dir[0] == '!';
1109}
1110
Calin Juravled23dee72017-07-06 16:29:11 -07001111// Best-effort check whether we can fit the the path into our buffers.
1112// Note: the cache path will require an additional 5 bytes for ".swap", but we'll try to run
1113// without a swap file, if necessary. Reference profiles file also add an extra ".prof"
1114// extension to the cache path (5 bytes).
1115// TODO(calin): move away from char* buffers and PKG_PATH_MAX.
1116static bool validate_dex_path_size(const std::string& dex_path) {
1117 if (dex_path.size() >= (PKG_PATH_MAX - 8)) {
1118 LOG(ERROR) << "dex_path too long: " << dex_path;
1119 return false;
1120 }
1121 return true;
1122}
1123
Jeff Sharkey90aff262016-12-12 14:28:24 -07001124static bool create_oat_out_path(const char* apk_path, const char* instruction_set,
Calin Juravle80a21252017-01-17 14:43:25 -08001125 const char* oat_dir, bool is_secondary_dex, /*out*/ char* out_oat_path) {
Calin Juravled23dee72017-07-06 16:29:11 -07001126 if (!validate_dex_path_size(apk_path)) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001127 return false;
1128 }
1129
1130 if (!IsOutputDalvikCache(oat_dir)) {
Calin Juravle80a21252017-01-17 14:43:25 -08001131 // Oat dirs for secondary dex files are already validated.
1132 if (!is_secondary_dex && validate_apk_path(oat_dir)) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001133 ALOGE("cannot validate apk path with oat_dir '%s'\n", oat_dir);
1134 return false;
1135 }
1136 if (!calculate_oat_file_path(out_oat_path, oat_dir, apk_path, instruction_set)) {
1137 return false;
1138 }
1139 } else {
1140 if (!create_cache_path(out_oat_path, apk_path, instruction_set)) {
1141 return false;
1142 }
1143 }
1144 return true;
1145}
1146
1147// Helper for fd management. This is similar to a unique_fd in that it closes the file descriptor
1148// on destruction. It will also run the given cleanup (unless told not to) after closing.
1149//
1150// Usage example:
1151//
Calin Juravle7a570e82017-01-14 16:23:30 -08001152// Dex2oatFileWrapper file(open(...),
Jeff Sharkey90aff262016-12-12 14:28:24 -07001153// [name]() {
1154// unlink(name.c_str());
1155// });
1156// // Note: care needs to be taken about name, as it needs to have a lifetime longer than the
1157// wrapper if captured as a reference.
1158//
1159// if (file.get() == -1) {
1160// // Error opening...
1161// }
1162//
1163// ...
1164// if (error) {
1165// // At this point, when the Dex2oatFileWrapper is destructed, the cleanup function will run
1166// // and delete the file (after the fd is closed).
1167// return -1;
1168// }
1169//
1170// (Success case)
1171// file.SetCleanup(false);
1172// // At this point, when the Dex2oatFileWrapper is destructed, the cleanup function will not run
1173// // (leaving the file around; after the fd is closed).
1174//
Jeff Sharkey90aff262016-12-12 14:28:24 -07001175class Dex2oatFileWrapper {
1176 public:
Calin Juravle7a570e82017-01-14 16:23:30 -08001177 Dex2oatFileWrapper() : value_(-1), cleanup_(), do_cleanup_(true), auto_close_(true) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001178 }
1179
Calin Juravle7a570e82017-01-14 16:23:30 -08001180 Dex2oatFileWrapper(int value, std::function<void ()> cleanup)
1181 : value_(value), cleanup_(cleanup), do_cleanup_(true), auto_close_(true) {}
1182
1183 Dex2oatFileWrapper(Dex2oatFileWrapper&& other) {
1184 value_ = other.value_;
1185 cleanup_ = other.cleanup_;
1186 do_cleanup_ = other.do_cleanup_;
1187 auto_close_ = other.auto_close_;
1188 other.release();
1189 }
1190
1191 Dex2oatFileWrapper& operator=(Dex2oatFileWrapper&& other) {
1192 value_ = other.value_;
1193 cleanup_ = other.cleanup_;
1194 do_cleanup_ = other.do_cleanup_;
1195 auto_close_ = other.auto_close_;
1196 other.release();
1197 return *this;
1198 }
Jeff Sharkey90aff262016-12-12 14:28:24 -07001199
1200 ~Dex2oatFileWrapper() {
1201 reset(-1);
1202 }
1203
1204 int get() {
1205 return value_;
1206 }
1207
1208 void SetCleanup(bool cleanup) {
1209 do_cleanup_ = cleanup;
1210 }
1211
1212 void reset(int new_value) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001213 if (auto_close_ && value_ >= 0) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001214 close(value_);
1215 }
1216 if (do_cleanup_ && cleanup_ != nullptr) {
1217 cleanup_();
1218 }
1219
1220 value_ = new_value;
1221 }
1222
Calin Juravle7a570e82017-01-14 16:23:30 -08001223 void reset(int new_value, std::function<void ()> new_cleanup) {
1224 if (auto_close_ && value_ >= 0) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001225 close(value_);
1226 }
1227 if (do_cleanup_ && cleanup_ != nullptr) {
1228 cleanup_();
1229 }
1230
1231 value_ = new_value;
1232 cleanup_ = new_cleanup;
1233 }
1234
Calin Juravle7a570e82017-01-14 16:23:30 -08001235 void DisableAutoClose() {
1236 auto_close_ = false;
1237 }
1238
Jeff Sharkey90aff262016-12-12 14:28:24 -07001239 private:
Calin Juravle7a570e82017-01-14 16:23:30 -08001240 void release() {
1241 value_ = -1;
1242 do_cleanup_ = false;
1243 cleanup_ = nullptr;
1244 }
Jeff Sharkey90aff262016-12-12 14:28:24 -07001245 int value_;
Calin Juravle7a570e82017-01-14 16:23:30 -08001246 std::function<void ()> cleanup_;
Jeff Sharkey90aff262016-12-12 14:28:24 -07001247 bool do_cleanup_;
Calin Juravle7a570e82017-01-14 16:23:30 -08001248 bool auto_close_;
Jeff Sharkey90aff262016-12-12 14:28:24 -07001249};
1250
Calin Juravle7a570e82017-01-14 16:23:30 -08001251// (re)Creates the app image if needed.
1252Dex2oatFileWrapper maybe_open_app_image(const char* out_oat_path, bool profile_guided,
Calin Juravle2289c0a2017-02-15 12:44:14 -08001253 bool is_public, int uid, bool is_secondary_dex) {
Nicolas Geoffrayaa17ab42017-08-15 14:51:05 +01001254
1255 // We don't create an image for secondary dex files.
1256 if (is_secondary_dex) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001257 return Dex2oatFileWrapper();
1258 }
Jeff Sharkey90aff262016-12-12 14:28:24 -07001259
Calin Juravle7a570e82017-01-14 16:23:30 -08001260 const std::string image_path = create_image_filename(out_oat_path);
1261 if (image_path.empty()) {
1262 // Happens when the out_oat_path has an unknown extension.
1263 return Dex2oatFileWrapper();
1264 }
Nicolas Geoffrayaa17ab42017-08-15 14:51:05 +01001265
1266 // Use app images only if it is enabled (by a set image format) and we are compiling
1267 // profile-guided (so the app image doesn't conservatively contain all classes).
1268 if (!profile_guided) {
1269 // In case there is a stale image, remove it now. Ignore any error.
1270 unlink(image_path.c_str());
1271 return Dex2oatFileWrapper();
1272 }
Calin Juravle7a570e82017-01-14 16:23:30 -08001273 char app_image_format[kPropertyValueMax];
1274 bool have_app_image_format =
1275 get_property("dalvik.vm.appimageformat", app_image_format, NULL) > 0;
1276 if (!have_app_image_format) {
1277 return Dex2oatFileWrapper();
1278 }
1279 // Recreate is true since we do not want to modify a mapped image. If the app is
1280 // already running and we modify the image file, it can cause crashes (b/27493510).
1281 Dex2oatFileWrapper wrapper_fd(
1282 open_output_file(image_path.c_str(), true /*recreate*/, 0600 /*permissions*/),
1283 [image_path]() { unlink(image_path.c_str()); });
1284 if (wrapper_fd.get() < 0) {
1285 // Could not create application image file. Go on since we can compile without it.
1286 LOG(ERROR) << "installd could not create '" << image_path
1287 << "' for image file during dexopt";
1288 // If we have a valid image file path but no image fd, explicitly erase the image file.
1289 if (unlink(image_path.c_str()) < 0) {
1290 if (errno != ENOENT) {
1291 PLOG(ERROR) << "Couldn't unlink image file " << image_path;
1292 }
1293 }
1294 } else if (!set_permissions_and_ownership(
Calin Juravle2289c0a2017-02-15 12:44:14 -08001295 wrapper_fd.get(), is_public, uid, image_path.c_str(), is_secondary_dex)) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001296 ALOGE("installd cannot set owner '%s' for image during dexopt\n", image_path.c_str());
1297 wrapper_fd.reset(-1);
1298 }
Jeff Sharkey90aff262016-12-12 14:28:24 -07001299
Calin Juravle7a570e82017-01-14 16:23:30 -08001300 return wrapper_fd;
1301}
1302
1303// Creates the dexopt swap file if necessary and return its fd.
1304// Returns -1 if there's no need for a swap or in case of errors.
Calin Juravle1a0af3b2017-03-09 14:33:33 -08001305unique_fd maybe_open_dexopt_swap_file(const char* out_oat_path) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001306 if (!ShouldUseSwapFileForDexopt()) {
Calin Juravle1a0af3b2017-03-09 14:33:33 -08001307 return invalid_unique_fd();
Calin Juravle7a570e82017-01-14 16:23:30 -08001308 }
Jeff Sharkeyc1149c92017-09-21 14:51:09 -06001309 auto swap_file_name = std::string(out_oat_path) + ".swap";
Calin Juravle1a0af3b2017-03-09 14:33:33 -08001310 unique_fd swap_fd(open_output_file(
Jeff Sharkeyc1149c92017-09-21 14:51:09 -06001311 swap_file_name.c_str(), /*recreate*/true, /*permissions*/0600));
Calin Juravle7a570e82017-01-14 16:23:30 -08001312 if (swap_fd.get() < 0) {
1313 // Could not create swap file. Optimistically go on and hope that we can compile
1314 // without it.
Jeff Sharkeyc1149c92017-09-21 14:51:09 -06001315 ALOGE("installd could not create '%s' for swap during dexopt\n", swap_file_name.c_str());
Calin Juravle7a570e82017-01-14 16:23:30 -08001316 } else {
1317 // Immediately unlink. We don't really want to hit flash.
Jeff Sharkeyc1149c92017-09-21 14:51:09 -06001318 if (unlink(swap_file_name.c_str()) < 0) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001319 PLOG(ERROR) << "Couldn't unlink swap file " << swap_file_name;
1320 }
1321 }
1322 return swap_fd;
1323}
1324
1325// Opens the reference profiles if needed.
1326// Note that the reference profile might not exist so it's OK if the fd will be -1.
Calin Juravle114f0812017-03-08 19:05:07 -08001327Dex2oatFileWrapper maybe_open_reference_profile(const std::string& pkgname,
Calin Juravlec4f6a0b2018-02-01 01:27:24 +00001328 const std::string& dex_path, const char* profile_name, bool profile_guided,
Calin Juravle824a64d2018-01-18 20:23:17 -08001329 bool is_public, int uid, bool is_secondary_dex) {
Calin Juravle5bd1c722018-02-01 17:23:54 +00001330 // If we are not profile guided compilation, or we are compiling system server
1331 // do not bother to open the profiles; we won't be using them.
1332 if (!profile_guided || (pkgname[0] == '*')) {
1333 return Dex2oatFileWrapper();
1334 }
1335
1336 // If this is a secondary dex path which is public do not open the profile.
1337 // We cannot compile public secondary dex paths with profiles. That's because
1338 // it will expose how the dex files are used by their owner.
1339 //
1340 // Note that the PackageManager is responsible to set the is_public flag for
1341 // primary apks and we do not check it here. In some cases, e.g. when
1342 // compiling with a public profile from the .dm file the PackageManager will
1343 // set is_public toghether with the profile guided compilation.
1344 if (is_secondary_dex && is_public) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001345 return Dex2oatFileWrapper();
Jeff Sharkey90aff262016-12-12 14:28:24 -07001346 }
Calin Juravle114f0812017-03-08 19:05:07 -08001347
1348 // Open reference profile in read only mode as dex2oat does not get write permissions.
Calin Juravlec4f6a0b2018-02-01 01:27:24 +00001349 std::string location;
1350 if (is_secondary_dex) {
1351 location = dex_path;
1352 } else {
1353 if (profile_name == nullptr) {
1354 // This path is taken for system server re-compilation lunched from ZygoteInit.
1355 return Dex2oatFileWrapper();
1356 } else {
1357 location = profile_name;
1358 }
1359 }
Calin Juravle824a64d2018-01-18 20:23:17 -08001360 unique_fd ufd = open_reference_profile(uid, pkgname, location, /*read_write*/false,
1361 is_secondary_dex);
1362 const auto& cleanup = [pkgname, location, is_secondary_dex]() {
1363 clear_reference_profile(pkgname, location, is_secondary_dex);
Calin Juravle114f0812017-03-08 19:05:07 -08001364 };
1365 return Dex2oatFileWrapper(ufd.release(), cleanup);
Calin Juravle7a570e82017-01-14 16:23:30 -08001366}
Jeff Sharkey90aff262016-12-12 14:28:24 -07001367
Calin Juravle7a570e82017-01-14 16:23:30 -08001368// Opens the vdex files and assigns the input fd to in_vdex_wrapper_fd and the output fd to
1369// out_vdex_wrapper_fd. Returns true for success or false in case of errors.
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001370bool open_vdex_files_for_dex2oat(const char* apk_path, const char* out_oat_path, int dexopt_needed,
Nicolas Geoffray3c95f2d2017-04-24 13:34:59 +00001371 const char* instruction_set, bool is_public, int uid, bool is_secondary_dex,
Nicolas Geoffrayb03814f2017-06-05 12:38:10 +00001372 bool profile_guided, Dex2oatFileWrapper* in_vdex_wrapper_fd,
Calin Juravle7a570e82017-01-14 16:23:30 -08001373 Dex2oatFileWrapper* out_vdex_wrapper_fd) {
1374 CHECK(in_vdex_wrapper_fd != nullptr);
1375 CHECK(out_vdex_wrapper_fd != nullptr);
Jeff Sharkey90aff262016-12-12 14:28:24 -07001376 // Open the existing VDEX. We do this before creating the new output VDEX, which will
1377 // unlink the old one.
Richard Uhler76cc0272016-12-08 10:46:35 +00001378 char in_odex_path[PKG_PATH_MAX];
1379 int dexopt_action = abs(dexopt_needed);
1380 bool is_odex_location = dexopt_needed < 0;
Jeff Sharkey90aff262016-12-12 14:28:24 -07001381 std::string in_vdex_path_str;
Nicolas Geoffrayb03814f2017-06-05 12:38:10 +00001382
1383 // Infer the name of the output VDEX.
1384 const std::string out_vdex_path_str = create_vdex_filename(out_oat_path);
1385 if (out_vdex_path_str.empty()) {
1386 return false;
1387 }
1388
1389 bool update_vdex_in_place = false;
Nicolas Geoffray3c95f2d2017-04-24 13:34:59 +00001390 if (dexopt_action != DEX2OAT_FROM_SCRATCH) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001391 // Open the possibly existing vdex. If none exist, we pass -1 to dex2oat for input-vdex-fd.
1392 const char* path = nullptr;
1393 if (is_odex_location) {
1394 if (calculate_odex_file_path(in_odex_path, apk_path, instruction_set)) {
1395 path = in_odex_path;
1396 } else {
1397 ALOGE("installd cannot compute input vdex location for '%s'\n", apk_path);
Calin Juravle7a570e82017-01-14 16:23:30 -08001398 return false;
Jeff Sharkey90aff262016-12-12 14:28:24 -07001399 }
1400 } else {
1401 path = out_oat_path;
1402 }
1403 in_vdex_path_str = create_vdex_filename(path);
1404 if (in_vdex_path_str.empty()) {
1405 ALOGE("installd cannot compute input vdex location for '%s'\n", path);
Calin Juravle7a570e82017-01-14 16:23:30 -08001406 return false;
Jeff Sharkey90aff262016-12-12 14:28:24 -07001407 }
Nicolas Geoffrayb03814f2017-06-05 12:38:10 +00001408 // We can update in place when all these conditions are met:
1409 // 1) The vdex location to write to is the same as the vdex location to read (vdex files
1410 // on /system typically cannot be updated in place).
1411 // 2) We dex2oat due to boot image change, because we then know the existing vdex file
1412 // cannot be currently used by a running process.
1413 // 3) We are not doing a profile guided compilation, because dexlayout requires two
1414 // different vdex files to operate.
1415 update_vdex_in_place =
1416 (in_vdex_path_str == out_vdex_path_str) &&
1417 (dexopt_action == DEX2OAT_FOR_BOOT_IMAGE) &&
1418 !profile_guided;
1419 if (update_vdex_in_place) {
1420 // Open the file read-write to be able to update it.
1421 in_vdex_wrapper_fd->reset(open(in_vdex_path_str.c_str(), O_RDWR, 0));
1422 if (in_vdex_wrapper_fd->get() == -1) {
1423 // If we failed to open the file, we cannot update it in place.
1424 update_vdex_in_place = false;
1425 }
1426 } else {
1427 in_vdex_wrapper_fd->reset(open(in_vdex_path_str.c_str(), O_RDONLY, 0));
1428 }
Jeff Sharkey90aff262016-12-12 14:28:24 -07001429 }
1430
Nicolas Geoffrayb03814f2017-06-05 12:38:10 +00001431 // If we are updating the vdex in place, we do not need to recreate a vdex,
1432 // and can use the same existing one.
1433 if (update_vdex_in_place) {
1434 // We unlink the file in case the invocation of dex2oat fails, to ensure we don't
1435 // have bogus stale vdex files.
1436 out_vdex_wrapper_fd->reset(
1437 in_vdex_wrapper_fd->get(),
1438 [out_vdex_path_str]() { unlink(out_vdex_path_str.c_str()); });
1439 // Disable auto close for the in wrapper fd (it will be done when destructing the out
1440 // wrapper).
1441 in_vdex_wrapper_fd->DisableAutoClose();
1442 } else {
1443 out_vdex_wrapper_fd->reset(
1444 open_output_file(out_vdex_path_str.c_str(), /*recreate*/true, /*permissions*/0644),
1445 [out_vdex_path_str]() { unlink(out_vdex_path_str.c_str()); });
1446 if (out_vdex_wrapper_fd->get() < 0) {
1447 ALOGE("installd cannot open vdex'%s' during dexopt\n", out_vdex_path_str.c_str());
1448 return false;
1449 }
Jeff Sharkey90aff262016-12-12 14:28:24 -07001450 }
Calin Juravle7a570e82017-01-14 16:23:30 -08001451 if (!set_permissions_and_ownership(out_vdex_wrapper_fd->get(), is_public, uid,
Calin Juravle2289c0a2017-02-15 12:44:14 -08001452 out_vdex_path_str.c_str(), is_secondary_dex)) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001453 ALOGE("installd cannot set owner '%s' for vdex during dexopt\n", out_vdex_path_str.c_str());
1454 return false;
1455 }
1456
1457 // If we got here we successfully opened the vdex files.
1458 return true;
1459}
1460
1461// Opens the output oat file for the given apk.
1462// If successful it stores the output path into out_oat_path and returns true.
1463Dex2oatFileWrapper open_oat_out_file(const char* apk_path, const char* oat_dir,
Calin Juravle80a21252017-01-17 14:43:25 -08001464 bool is_public, int uid, const char* instruction_set, bool is_secondary_dex,
1465 char* out_oat_path) {
1466 if (!create_oat_out_path(apk_path, instruction_set, oat_dir, is_secondary_dex, out_oat_path)) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001467 return Dex2oatFileWrapper();
1468 }
1469 const std::string out_oat_path_str(out_oat_path);
1470 Dex2oatFileWrapper wrapper_fd(
1471 open_output_file(out_oat_path, /*recreate*/true, /*permissions*/0644),
1472 [out_oat_path_str]() { unlink(out_oat_path_str.c_str()); });
1473 if (wrapper_fd.get() < 0) {
Calin Juravle80a21252017-01-17 14:43:25 -08001474 PLOG(ERROR) << "installd cannot open output during dexopt" << out_oat_path;
Calin Juravle2289c0a2017-02-15 12:44:14 -08001475 } else if (!set_permissions_and_ownership(
1476 wrapper_fd.get(), is_public, uid, out_oat_path, is_secondary_dex)) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001477 ALOGE("installd cannot set owner '%s' for output during dexopt\n", out_oat_path);
1478 wrapper_fd.reset(-1);
1479 }
1480 return wrapper_fd;
1481}
1482
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001483// Creates RDONLY fds for oat and vdex files, if exist.
1484// Returns false if it fails to create oat out path for the given apk path.
1485// Note that the method returns true even if the files could not be opened.
1486bool maybe_open_oat_and_vdex_file(const std::string& apk_path,
1487 const std::string& oat_dir,
1488 const std::string& instruction_set,
1489 bool is_secondary_dex,
1490 unique_fd* oat_file_fd,
1491 unique_fd* vdex_file_fd) {
1492 char oat_path[PKG_PATH_MAX];
1493 if (!create_oat_out_path(apk_path.c_str(),
1494 instruction_set.c_str(),
1495 oat_dir.c_str(),
1496 is_secondary_dex,
1497 oat_path)) {
Calin Juravle7d765462017-09-04 15:57:10 -07001498 LOG(ERROR) << "Could not create oat out path for "
1499 << apk_path << " with oat dir " << oat_dir;
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001500 return false;
1501 }
1502 oat_file_fd->reset(open(oat_path, O_RDONLY));
1503 if (oat_file_fd->get() < 0) {
1504 PLOG(INFO) << "installd cannot open oat file during dexopt" << oat_path;
1505 }
1506
1507 std::string vdex_filename = create_vdex_filename(oat_path);
1508 vdex_file_fd->reset(open(vdex_filename.c_str(), O_RDONLY));
1509 if (vdex_file_fd->get() < 0) {
1510 PLOG(INFO) << "installd cannot open vdex file during dexopt" << vdex_filename;
1511 }
1512
1513 return true;
1514}
1515
Calin Juravle7a570e82017-01-14 16:23:30 -08001516// Updates the access times of out_oat_path based on those from apk_path.
1517void update_out_oat_access_times(const char* apk_path, const char* out_oat_path) {
1518 struct stat input_stat;
1519 memset(&input_stat, 0, sizeof(input_stat));
1520 if (stat(apk_path, &input_stat) != 0) {
1521 PLOG(ERROR) << "Could not stat " << apk_path << " during dexopt";
1522 return;
1523 }
1524
1525 struct utimbuf ut;
1526 ut.actime = input_stat.st_atime;
1527 ut.modtime = input_stat.st_mtime;
1528 if (utime(out_oat_path, &ut) != 0) {
1529 PLOG(WARNING) << "Could not update access times for " << apk_path << " during dexopt";
1530 }
1531}
1532
Calin Juravle80a21252017-01-17 14:43:25 -08001533// Runs (execv) dexoptanalyzer on the given arguments.
Calin Juravle114f0812017-03-08 19:05:07 -08001534// The analyzer will check if the dex_file needs to be (re)compiled to match the compiler_filter.
1535// If this is for a profile guided compilation, profile_was_updated will tell whether or not
1536// the profile has changed.
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001537static void exec_dexoptanalyzer(const std::string& dex_file, int vdex_fd, int oat_fd,
1538 int zip_fd, const std::string& instruction_set, const std::string& compiler_filter,
1539 bool profile_was_updated, bool downgrade,
Calin Juravle58cab072017-09-12 01:02:26 -07001540 const char* class_loader_context) {
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001541 CHECK_GE(zip_fd, 0);
Andreas Gampe6a9cf722017-07-24 16:49:10 -07001542 const char* dexoptanalyzer_bin =
1543 is_debug_runtime()
1544 ? "/system/bin/dexoptanalyzerd"
1545 : "/system/bin/dexoptanalyzer";
Calin Juravle80a21252017-01-17 14:43:25 -08001546 static const unsigned int MAX_INSTRUCTION_SET_LEN = 7;
1547
Calin Juravled23dee72017-07-06 16:29:11 -07001548 if (instruction_set.size() >= MAX_INSTRUCTION_SET_LEN) {
1549 LOG(ERROR) << "Instruction set " << instruction_set
1550 << " longer than max length of " << MAX_INSTRUCTION_SET_LEN;
Calin Juravle80a21252017-01-17 14:43:25 -08001551 return;
1552 }
1553
Calin Juravled23dee72017-07-06 16:29:11 -07001554 std::string dex_file_arg = "--dex-file=" + dex_file;
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001555 std::string oat_fd_arg = "--oat-fd=" + std::to_string(oat_fd);
1556 std::string vdex_fd_arg = "--vdex-fd=" + std::to_string(vdex_fd);
1557 std::string zip_fd_arg = "--zip-fd=" + std::to_string(zip_fd);
Calin Juravled23dee72017-07-06 16:29:11 -07001558 std::string isa_arg = "--isa=" + instruction_set;
1559 std::string compiler_filter_arg = "--compiler-filter=" + compiler_filter;
Calin Juravle114f0812017-03-08 19:05:07 -08001560 const char* assume_profile_changed = "--assume-profile-changed";
Shubham Ajmera54ef8622017-06-22 11:10:27 -07001561 const char* downgrade_flag = "--downgrade";
Calin Juravle58cab072017-09-12 01:02:26 -07001562 std::string class_loader_context_arg = "--class-loader-context=";
1563 if (class_loader_context != nullptr) {
1564 class_loader_context_arg += class_loader_context;
1565 }
Calin Juravle80a21252017-01-17 14:43:25 -08001566
Calin Juravle80a21252017-01-17 14:43:25 -08001567 // program name, dex file, isa, filter, the final NULL
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001568 const int argc = 6 +
Shubham Ajmera54ef8622017-06-22 11:10:27 -07001569 (profile_was_updated ? 1 : 0) +
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001570 (vdex_fd >= 0 ? 1 : 0) +
1571 (oat_fd >= 0 ? 1 : 0) +
Calin Juravle58cab072017-09-12 01:02:26 -07001572 (downgrade ? 1 : 0) +
1573 (class_loader_context != nullptr ? 1 : 0);
Shubham Ajmera54ef8622017-06-22 11:10:27 -07001574 const char* argv[argc];
Calin Juravle80a21252017-01-17 14:43:25 -08001575 int i = 0;
Andreas Gampe6a9cf722017-07-24 16:49:10 -07001576 argv[i++] = dexoptanalyzer_bin;
Calin Juravled23dee72017-07-06 16:29:11 -07001577 argv[i++] = dex_file_arg.c_str();
1578 argv[i++] = isa_arg.c_str();
1579 argv[i++] = compiler_filter_arg.c_str();
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001580 if (oat_fd >= 0) {
1581 argv[i++] = oat_fd_arg.c_str();
1582 }
1583 if (vdex_fd >= 0) {
1584 argv[i++] = vdex_fd_arg.c_str();
1585 }
1586 argv[i++] = zip_fd_arg.c_str();
Calin Juravle114f0812017-03-08 19:05:07 -08001587 if (profile_was_updated) {
1588 argv[i++] = assume_profile_changed;
1589 }
Shubham Ajmera54ef8622017-06-22 11:10:27 -07001590 if (downgrade) {
1591 argv[i++] = downgrade_flag;
1592 }
Calin Juravle58cab072017-09-12 01:02:26 -07001593 if (class_loader_context != nullptr) {
Calin Juravle91501072017-10-26 15:44:53 -07001594 argv[i++] = class_loader_context_arg.c_str();
Calin Juravle58cab072017-09-12 01:02:26 -07001595 }
Calin Juravle80a21252017-01-17 14:43:25 -08001596 argv[i] = NULL;
1597
Andreas Gampe6a9cf722017-07-24 16:49:10 -07001598 execv(dexoptanalyzer_bin, (char * const *)argv);
1599 ALOGE("execv(%s) failed: %s\n", dexoptanalyzer_bin, strerror(errno));
Calin Juravle80a21252017-01-17 14:43:25 -08001600}
1601
1602// Prepares the oat dir for the secondary dex files.
Calin Juravle114f0812017-03-08 19:05:07 -08001603static bool prepare_secondary_dex_oat_dir(const std::string& dex_path, int uid,
Calin Juravle7d765462017-09-04 15:57:10 -07001604 const char* instruction_set) {
Calin Juravle114f0812017-03-08 19:05:07 -08001605 unsigned long dirIndex = dex_path.rfind('/');
Calin Juravle80a21252017-01-17 14:43:25 -08001606 if (dirIndex == std::string::npos) {
Calin Juravlec9eab382017-01-25 01:17:17 -08001607 LOG(ERROR ) << "Unexpected dir structure for secondary dex " << dex_path;
Calin Juravle80a21252017-01-17 14:43:25 -08001608 return false;
1609 }
Calin Juravle114f0812017-03-08 19:05:07 -08001610 std::string dex_dir = dex_path.substr(0, dirIndex);
Calin Juravle80a21252017-01-17 14:43:25 -08001611
Calin Juravle80a21252017-01-17 14:43:25 -08001612 // Create oat file output directory.
Calin Juravleebc8a792017-04-04 20:21:05 -07001613 mode_t oat_dir_mode = S_IRWXU | S_IRWXG | S_IXOTH;
1614 if (prepare_app_cache_dir(dex_dir, "oat", oat_dir_mode, uid, uid) != 0) {
Calin Juravlec9eab382017-01-25 01:17:17 -08001615 LOG(ERROR) << "Could not prepare oat dir for secondary dex: " << dex_path;
Calin Juravle80a21252017-01-17 14:43:25 -08001616 return false;
1617 }
1618
1619 char oat_dir[PKG_PATH_MAX];
Calin Juravle114f0812017-03-08 19:05:07 -08001620 snprintf(oat_dir, PKG_PATH_MAX, "%s/oat", dex_dir.c_str());
Calin Juravle80a21252017-01-17 14:43:25 -08001621
Calin Juravle7d765462017-09-04 15:57:10 -07001622 if (prepare_app_cache_dir(oat_dir, instruction_set, oat_dir_mode, uid, uid) != 0) {
Calin Juravlec9eab382017-01-25 01:17:17 -08001623 LOG(ERROR) << "Could not prepare oat/isa dir for secondary dex: " << dex_path;
Calin Juravle80a21252017-01-17 14:43:25 -08001624 return false;
1625 }
1626
1627 return true;
1628}
1629
Calin Juravle7d765462017-09-04 15:57:10 -07001630// Return codes for identifying the reason why dexoptanalyzer was not invoked when processing
1631// secondary dex files. This return codes are returned by the child process created for
1632// analyzing secondary dex files in process_secondary_dex_dexopt.
Calin Juravle80a21252017-01-17 14:43:25 -08001633
Calin Juravle7d765462017-09-04 15:57:10 -07001634// The dexoptanalyzer was not invoked because of validation or IO errors.
1635static int constexpr SECONDARY_DEX_DEXOPTANALYZER_SKIPPED = 200;
1636// The dexoptanalyzer was not invoked because the dex file does not exist anymore.
1637static int constexpr SECONDARY_DEX_DEXOPTANALYZER_SKIPPED_NO_FILE = 201;
1638
1639// Verifies the result of analyzing secondary dex files from process_secondary_dex_dexopt.
Calin Juravle80a21252017-01-17 14:43:25 -08001640// If the result is valid returns true and sets dexopt_needed_out to a valid value.
1641// Returns false for errors or unexpected result values.
Calin Juravle7d765462017-09-04 15:57:10 -07001642// The result is expected to be either one of SECONDARY_DEX_* codes or a valid exit code
1643// of dexoptanalyzer.
1644static bool process_secondary_dexoptanalyzer_result(const std::string& dex_path, int result,
Calin Juravle80a21252017-01-17 14:43:25 -08001645 int* dexopt_needed_out) {
1646 // The result values are defined in dexoptanalyzer.
1647 switch (result) {
Calin Juravle7d765462017-09-04 15:57:10 -07001648 case 0: // dexoptanalyzer: no_dexopt_needed
Calin Juravle80a21252017-01-17 14:43:25 -08001649 *dexopt_needed_out = NO_DEXOPT_NEEDED; return true;
Calin Juravle7d765462017-09-04 15:57:10 -07001650 case 1: // dexoptanalyzer: dex2oat_from_scratch
Calin Juravle80a21252017-01-17 14:43:25 -08001651 *dexopt_needed_out = DEX2OAT_FROM_SCRATCH; return true;
Calin Juravle7d765462017-09-04 15:57:10 -07001652 case 5: // dexoptanalyzer: dex2oat_for_bootimage_odex
Calin Juravle80a21252017-01-17 14:43:25 -08001653 *dexopt_needed_out = -DEX2OAT_FOR_BOOT_IMAGE; return true;
Calin Juravle7d765462017-09-04 15:57:10 -07001654 case 6: // dexoptanalyzer: dex2oat_for_filter_odex
Calin Juravle80a21252017-01-17 14:43:25 -08001655 *dexopt_needed_out = -DEX2OAT_FOR_FILTER; return true;
Calin Juravle7d765462017-09-04 15:57:10 -07001656 case 7: // dexoptanalyzer: dex2oat_for_relocation_odex
Calin Juravle80a21252017-01-17 14:43:25 -08001657 *dexopt_needed_out = -DEX2OAT_FOR_RELOCATION; return true;
Calin Juravle7d765462017-09-04 15:57:10 -07001658 case 2: // dexoptanalyzer: dex2oat_for_bootimage_oat
1659 case 3: // dexoptanalyzer: dex2oat_for_filter_oat
1660 case 4: // dexoptanalyzer: dex2oat_for_relocation_oat
Calin Juravlec9eab382017-01-25 01:17:17 -08001661 LOG(ERROR) << "Dexoptnalyzer return the status of an oat file."
1662 << " Expected odex file status for secondary dex " << dex_path
Calin Juravle80a21252017-01-17 14:43:25 -08001663 << " : dexoptanalyzer result=" << result;
1664 return false;
Calin Juravle7d765462017-09-04 15:57:10 -07001665 case SECONDARY_DEX_DEXOPTANALYZER_SKIPPED_NO_FILE:
1666 // If the file does not exist there's no need for dexopt.
1667 *dexopt_needed_out = NO_DEXOPT_NEEDED;
1668 return true;
1669 case SECONDARY_DEX_DEXOPTANALYZER_SKIPPED:
1670 return false;
Calin Juravle80a21252017-01-17 14:43:25 -08001671 default:
Calin Juravle7d765462017-09-04 15:57:10 -07001672 LOG(ERROR) << "Unexpected result from analyzing secondary dex " << dex_path
1673 << " result=" << result;
Calin Juravle80a21252017-01-17 14:43:25 -08001674 return false;
1675 }
1676}
1677
Calin Juravle7d765462017-09-04 15:57:10 -07001678enum SecondaryDexAccess {
1679 kSecondaryDexAccessReadOk = 0,
1680 kSecondaryDexAccessDoesNotExist = 1,
1681 kSecondaryDexAccessPermissionError = 2,
1682 kSecondaryDexAccessIOError = 3
1683};
1684
1685static SecondaryDexAccess check_secondary_dex_access(const std::string& dex_path) {
1686 // Check if the path exists and can be read. If not, there's nothing to do.
1687 if (access(dex_path.c_str(), R_OK) == 0) {
1688 return kSecondaryDexAccessReadOk;
1689 } else {
1690 if (errno == ENOENT) {
1691 LOG(INFO) << "Secondary dex does not exist: " << dex_path;
1692 return kSecondaryDexAccessDoesNotExist;
1693 } else {
1694 PLOG(ERROR) << "Could not access secondary dex " << dex_path;
1695 return errno == EACCES
1696 ? kSecondaryDexAccessPermissionError
1697 : kSecondaryDexAccessIOError;
1698 }
1699 }
1700}
1701
1702static bool is_file_public(const std::string& filename) {
1703 struct stat file_stat;
1704 if (stat(filename.c_str(), &file_stat) == 0) {
1705 return (file_stat.st_mode & S_IROTH) != 0;
1706 }
1707 return false;
1708}
1709
1710// Create the oat file structure for the secondary dex 'dex_path' and assign
1711// the individual path component to the 'out_' parameters.
1712static bool create_secondary_dex_oat_layout(const std::string& dex_path, const std::string& isa,
1713 char* out_oat_dir, char* out_oat_isa_dir, char* out_oat_path) {
1714 size_t dirIndex = dex_path.rfind('/');
1715 if (dirIndex == std::string::npos) {
1716 LOG(ERROR) << "Unexpected dir structure for dex file " << dex_path;
1717 return false;
1718 }
1719 // TODO(calin): we have similar computations in at lest 3 other places
1720 // (InstalldNativeService, otapropt and dexopt). Unify them and get rid of snprintf by
1721 // using string append.
1722 std::string apk_dir = dex_path.substr(0, dirIndex);
1723 snprintf(out_oat_dir, PKG_PATH_MAX, "%s/oat", apk_dir.c_str());
1724 snprintf(out_oat_isa_dir, PKG_PATH_MAX, "%s/%s", out_oat_dir, isa.c_str());
1725
1726 if (!create_oat_out_path(dex_path.c_str(), isa.c_str(), out_oat_dir,
1727 /*is_secondary_dex*/true, out_oat_path)) {
1728 LOG(ERROR) << "Could not create oat path for secondary dex " << dex_path;
1729 return false;
1730 }
1731 return true;
1732}
1733
1734// Validate that the dexopt_flags contain a valid storage flag and convert that to an installd
1735// recognized storage flags (FLAG_STORAGE_CE or FLAG_STORAGE_DE).
1736static bool validate_dexopt_storage_flags(int dexopt_flags, int* out_storage_flag) {
1737 if ((dexopt_flags & DEXOPT_STORAGE_CE) != 0) {
1738 *out_storage_flag = FLAG_STORAGE_CE;
1739 if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) {
1740 LOG(ERROR) << "Ambiguous secondary dex storage flag. Both, CE and DE, flags are set";
1741 return false;
1742 }
1743 } else if ((dexopt_flags & DEXOPT_STORAGE_DE) != 0) {
1744 *out_storage_flag = FLAG_STORAGE_DE;
1745 } else {
1746 LOG(ERROR) << "Secondary dex storage flag must be set";
1747 return false;
1748 }
1749 return true;
1750}
1751
Calin Juravlec9eab382017-01-25 01:17:17 -08001752// Processes the dex_path as a secondary dex files and return true if the path dex file should
Calin Juravle80a21252017-01-17 14:43:25 -08001753// be compiled. Returns false for errors (logged) or true if the secondary dex path was process
1754// successfully.
Calin Juravleebc8a792017-04-04 20:21:05 -07001755// When returning true, the output parameters will be:
1756// - is_public_out: whether or not the oat file should not be made public
1757// - dexopt_needed_out: valid OatFileAsssitant::DexOptNeeded
1758// - oat_dir_out: the oat dir path where the oat file should be stored
Calin Juravle7d765462017-09-04 15:57:10 -07001759static bool process_secondary_dex_dexopt(const std::string& dex_path, const char* pkgname,
Calin Juravle80a21252017-01-17 14:43:25 -08001760 int dexopt_flags, const char* volume_uuid, int uid, const char* instruction_set,
Calin Juravleebc8a792017-04-04 20:21:05 -07001761 const char* compiler_filter, bool* is_public_out, int* dexopt_needed_out,
Calin Juravle7d765462017-09-04 15:57:10 -07001762 std::string* oat_dir_out, bool downgrade, const char* class_loader_context) {
1763 LOG(DEBUG) << "Processing secondary dex path " << dex_path;
Calin Juravle80a21252017-01-17 14:43:25 -08001764 int storage_flag;
Calin Juravle7d765462017-09-04 15:57:10 -07001765 if (!validate_dexopt_storage_flags(dexopt_flags, &storage_flag)) {
Calin Juravle80a21252017-01-17 14:43:25 -08001766 return false;
1767 }
Calin Juravle7d765462017-09-04 15:57:10 -07001768 // Compute the oat dir as it's not easy to extract it from the child computation.
1769 char oat_path[PKG_PATH_MAX];
1770 char oat_dir[PKG_PATH_MAX];
1771 char oat_isa_dir[PKG_PATH_MAX];
1772 if (!create_secondary_dex_oat_layout(
1773 dex_path, instruction_set, oat_dir, oat_isa_dir, oat_path)) {
1774 LOG(ERROR) << "Could not create secondary odex layout: " << dex_path;
Calin Juravled23dee72017-07-06 16:29:11 -07001775 return false;
1776 }
Calin Juravle7d765462017-09-04 15:57:10 -07001777 oat_dir_out->assign(oat_dir);
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001778
Calin Juravle80a21252017-01-17 14:43:25 -08001779 pid_t pid = fork();
1780 if (pid == 0) {
1781 // child -- drop privileges before continuing.
1782 drop_capabilities(uid);
Calin Juravle7d765462017-09-04 15:57:10 -07001783
1784 // Validate the path structure.
1785 if (!validate_secondary_dex_path(pkgname, dex_path, volume_uuid, uid, storage_flag)) {
1786 LOG(ERROR) << "Could not validate secondary dex path " << dex_path;
1787 _exit(SECONDARY_DEX_DEXOPTANALYZER_SKIPPED);
1788 }
1789
1790 // Open the dex file.
1791 unique_fd zip_fd;
1792 zip_fd.reset(open(dex_path.c_str(), O_RDONLY));
1793 if (zip_fd.get() < 0) {
1794 if (errno == ENOENT) {
1795 _exit(SECONDARY_DEX_DEXOPTANALYZER_SKIPPED_NO_FILE);
1796 } else {
1797 _exit(SECONDARY_DEX_DEXOPTANALYZER_SKIPPED);
1798 }
1799 }
1800
1801 // Prepare the oat directories.
1802 if (!prepare_secondary_dex_oat_dir(dex_path, uid, instruction_set)) {
1803 _exit(SECONDARY_DEX_DEXOPTANALYZER_SKIPPED);
1804 }
1805
1806 // Open the vdex/oat files if any.
1807 unique_fd oat_file_fd;
1808 unique_fd vdex_file_fd;
1809 if (!maybe_open_oat_and_vdex_file(dex_path,
1810 *oat_dir_out,
1811 instruction_set,
1812 true /* is_secondary_dex */,
1813 &oat_file_fd,
1814 &vdex_file_fd)) {
1815 _exit(SECONDARY_DEX_DEXOPTANALYZER_SKIPPED);
1816 }
1817
1818 // Analyze profiles.
Calin Juravle824a64d2018-01-18 20:23:17 -08001819 bool profile_was_updated = analyze_profiles(uid, pkgname, dex_path,
1820 /*is_secondary_dex*/true);
Calin Juravle7d765462017-09-04 15:57:10 -07001821
1822 // Run dexoptanalyzer to get dexopt_needed code. This is not expected to return.
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001823 exec_dexoptanalyzer(dex_path,
1824 vdex_file_fd.get(),
1825 oat_file_fd.get(),
1826 zip_fd.get(),
1827 instruction_set,
Calin Juravle7d765462017-09-04 15:57:10 -07001828 compiler_filter, profile_was_updated,
1829 downgrade,
1830 class_loader_context);
1831 PLOG(ERROR) << "Failed to exec dexoptanalyzer";
1832 _exit(SECONDARY_DEX_DEXOPTANALYZER_SKIPPED);
Calin Juravle80a21252017-01-17 14:43:25 -08001833 }
1834
1835 /* parent */
Calin Juravle80a21252017-01-17 14:43:25 -08001836 int result = wait_child(pid);
1837 if (!WIFEXITED(result)) {
Calin Juravlec9eab382017-01-25 01:17:17 -08001838 LOG(ERROR) << "dexoptanalyzer failed for path " << dex_path << ": " << result;
Calin Juravle80a21252017-01-17 14:43:25 -08001839 return false;
1840 }
1841 result = WEXITSTATUS(result);
Calin Juravle7d765462017-09-04 15:57:10 -07001842 // Check that we successfully executed dexoptanalyzer.
1843 bool success = process_secondary_dexoptanalyzer_result(dex_path, result, dexopt_needed_out);
1844
1845 LOG(DEBUG) << "Processed secondary dex file " << dex_path << " result=" << result;
1846
Calin Juravle80a21252017-01-17 14:43:25 -08001847 // Run dexopt only if needed or forced.
Calin Juravle7d765462017-09-04 15:57:10 -07001848 // Note that dexoptanalyzer is executed even if force compilation is enabled (because it
1849 // makes the code simpler; force compilation is only needed during tests).
1850 if (success &&
1851 (result != SECONDARY_DEX_DEXOPTANALYZER_SKIPPED_NO_FILE) &&
1852 ((dexopt_flags & DEXOPT_FORCE) != 0)) {
Calin Juravle80a21252017-01-17 14:43:25 -08001853 *dexopt_needed_out = DEX2OAT_FROM_SCRATCH;
1854 }
1855
Calin Juravle7d765462017-09-04 15:57:10 -07001856 // Check if we should make the oat file public.
1857 // Note that if the dex file is not public the compiled code cannot be made public.
1858 // It is ok to check this flag outside in the parent process.
1859 *is_public_out = ((dexopt_flags & DEXOPT_PUBLIC) != 0) && is_file_public(dex_path);
1860
Calin Juravle80a21252017-01-17 14:43:25 -08001861 return success;
1862}
1863
Calin Juravlec9eab382017-01-25 01:17:17 -08001864int dexopt(const char* dex_path, uid_t uid, const char* pkgname, const char* instruction_set,
Calin Juravle80a21252017-01-17 14:43:25 -08001865 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter,
Calin Juravle52c45822017-07-13 22:50:21 -07001866 const char* volume_uuid, const char* class_loader_context, const char* se_info,
Calin Juravle62c5a372018-02-01 17:03:23 +00001867 bool downgrade, int target_sdk_version, const char* profile_name,
1868 const char* dex_metadata_path) {
Calin Juravle7a570e82017-01-14 16:23:30 -08001869 CHECK(pkgname != nullptr);
1870 CHECK(pkgname[0] != 0);
1871 if ((dexopt_flags & ~DEXOPT_MASK) != 0) {
1872 LOG_FATAL("dexopt flags contains unknown fields\n");
1873 }
1874
Calin Juravled23dee72017-07-06 16:29:11 -07001875 if (!validate_dex_path_size(dex_path)) {
Calin Juravle52c45822017-07-13 22:50:21 -07001876 return -1;
1877 }
1878
1879 if (class_loader_context != nullptr && strlen(class_loader_context) > PKG_PATH_MAX) {
1880 LOG(ERROR) << "Class loader context exceeds the allowed size: " << class_loader_context;
1881 return -1;
Calin Juravled23dee72017-07-06 16:29:11 -07001882 }
1883
Calin Juravleebc8a792017-04-04 20:21:05 -07001884 bool is_public = (dexopt_flags & DEXOPT_PUBLIC) != 0;
Calin Juravle7a570e82017-01-14 16:23:30 -08001885 bool debuggable = (dexopt_flags & DEXOPT_DEBUGGABLE) != 0;
1886 bool boot_complete = (dexopt_flags & DEXOPT_BOOTCOMPLETE) != 0;
1887 bool profile_guided = (dexopt_flags & DEXOPT_PROFILE_GUIDED) != 0;
Calin Juravle80a21252017-01-17 14:43:25 -08001888 bool is_secondary_dex = (dexopt_flags & DEXOPT_SECONDARY_DEX) != 0;
Andreas Gampea73a0cb2017-11-02 18:14:42 -07001889 bool background_job_compile = (dexopt_flags & DEXOPT_IDLE_BACKGROUND_JOB) != 0;
David Brazdil52249162018-02-12 18:04:59 -08001890 bool enable_hidden_api_checks = (dexopt_flags & DEXOPT_ENABLE_HIDDEN_API_CHECKS) != 0;
Calin Juravle80a21252017-01-17 14:43:25 -08001891
1892 // Check if we're dealing with a secondary dex file and if we need to compile it.
1893 std::string oat_dir_str;
1894 if (is_secondary_dex) {
Calin Juravlec9eab382017-01-25 01:17:17 -08001895 if (process_secondary_dex_dexopt(dex_path, pkgname, dexopt_flags, volume_uuid, uid,
Calin Juravleebc8a792017-04-04 20:21:05 -07001896 instruction_set, compiler_filter, &is_public, &dexopt_needed, &oat_dir_str,
Calin Juravle7d765462017-09-04 15:57:10 -07001897 downgrade, class_loader_context)) {
Calin Juravle80a21252017-01-17 14:43:25 -08001898 oat_dir = oat_dir_str.c_str();
1899 if (dexopt_needed == NO_DEXOPT_NEEDED) {
1900 return 0; // Nothing to do, report success.
1901 }
1902 } else {
1903 return -1; // We had an error, logged in the process method.
1904 }
1905 } else {
Calin Juravlec9eab382017-01-25 01:17:17 -08001906 // Currently these flags are only use for secondary dex files.
1907 // Verify that they are not set for primary apks.
Calin Juravle80a21252017-01-17 14:43:25 -08001908 CHECK((dexopt_flags & DEXOPT_STORAGE_CE) == 0);
1909 CHECK((dexopt_flags & DEXOPT_STORAGE_DE) == 0);
1910 }
Calin Juravle7a570e82017-01-14 16:23:30 -08001911
1912 // Open the input file.
Calin Juravle1a0af3b2017-03-09 14:33:33 -08001913 unique_fd input_fd(open(dex_path, O_RDONLY, 0));
Calin Juravle7a570e82017-01-14 16:23:30 -08001914 if (input_fd.get() < 0) {
Calin Juravlec9eab382017-01-25 01:17:17 -08001915 ALOGE("installd cannot open '%s' for input during dexopt\n", dex_path);
Calin Juravle7a570e82017-01-14 16:23:30 -08001916 return -1;
1917 }
1918
1919 // Create the output OAT file.
1920 char out_oat_path[PKG_PATH_MAX];
Calin Juravlec9eab382017-01-25 01:17:17 -08001921 Dex2oatFileWrapper out_oat_fd = open_oat_out_file(dex_path, oat_dir, is_public, uid,
Calin Juravle80a21252017-01-17 14:43:25 -08001922 instruction_set, is_secondary_dex, out_oat_path);
Calin Juravle7a570e82017-01-14 16:23:30 -08001923 if (out_oat_fd.get() < 0) {
1924 return -1;
1925 }
1926
1927 // Open vdex files.
1928 Dex2oatFileWrapper in_vdex_fd;
1929 Dex2oatFileWrapper out_vdex_fd;
Shubham Ajmerab6bcd222017-10-19 10:08:03 -07001930 if (!open_vdex_files_for_dex2oat(dex_path, out_oat_path, dexopt_needed, instruction_set,
1931 is_public, uid, is_secondary_dex, profile_guided, &in_vdex_fd, &out_vdex_fd)) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07001932 return -1;
1933 }
1934
Calin Juravlecb556e32017-04-04 20:22:50 -07001935 // Ensure that the oat dir and the compiler artifacts of secondary dex files have the correct
1936 // selinux context (we generate them on the fly during the dexopt invocation and they don't
1937 // fully inherit their parent context).
1938 // Note that for primary apk the oat files are created before, in a separate installd
1939 // call which also does the restorecon. TODO(calin): unify the paths.
1940 if (is_secondary_dex) {
1941 if (selinux_android_restorecon_pkgdir(oat_dir, se_info, uid,
1942 SELINUX_ANDROID_RESTORECON_RECURSE)) {
1943 LOG(ERROR) << "Failed to restorecon " << oat_dir;
1944 return -1;
1945 }
1946 }
1947
Jeff Sharkey90aff262016-12-12 14:28:24 -07001948 // Create a swap file if necessary.
Calin Juravle1a0af3b2017-03-09 14:33:33 -08001949 unique_fd swap_fd = maybe_open_dexopt_swap_file(out_oat_path);
Jeff Sharkey90aff262016-12-12 14:28:24 -07001950
Calin Juravle7a570e82017-01-14 16:23:30 -08001951 // Create the app image file if needed.
1952 Dex2oatFileWrapper image_fd =
Calin Juravle2289c0a2017-02-15 12:44:14 -08001953 maybe_open_app_image(out_oat_path, profile_guided, is_public, uid, is_secondary_dex);
Jeff Sharkey90aff262016-12-12 14:28:24 -07001954
Calin Juravle7a570e82017-01-14 16:23:30 -08001955 // Open the reference profile if needed.
Calin Juravle114f0812017-03-08 19:05:07 -08001956 Dex2oatFileWrapper reference_profile_fd = maybe_open_reference_profile(
Calin Juravle824a64d2018-01-18 20:23:17 -08001957 pkgname, dex_path, profile_name, profile_guided, is_public, uid, is_secondary_dex);
Calin Juravle7a570e82017-01-14 16:23:30 -08001958
Calin Juravle62c5a372018-02-01 17:03:23 +00001959 unique_fd dex_metadata_fd;
1960 if (dex_metadata_path != nullptr) {
1961 dex_metadata_fd.reset(TEMP_FAILURE_RETRY(open(dex_metadata_path, O_RDONLY | O_NOFOLLOW)));
1962 if (dex_metadata_fd.get() < 0) {
1963 PLOG(ERROR) << "Failed to open dex metadata file " << dex_metadata_path;
1964 }
1965 }
1966
Calin Juravlec9eab382017-01-25 01:17:17 -08001967 ALOGV("DexInv: --- BEGIN '%s' ---\n", dex_path);
Jeff Sharkey90aff262016-12-12 14:28:24 -07001968
1969 pid_t pid = fork();
1970 if (pid == 0) {
1971 /* child -- drop privileges before continuing */
1972 drop_capabilities(uid);
1973
Richard Uhler76cc0272016-12-08 10:46:35 +00001974 SetDex2OatScheduling(boot_complete);
Jeff Sharkey90aff262016-12-12 14:28:24 -07001975 if (flock(out_oat_fd.get(), LOCK_EX | LOCK_NB) != 0) {
1976 ALOGE("flock(%s) failed: %s\n", out_oat_path, strerror(errno));
1977 _exit(67);
1978 }
1979
Richard Uhler76cc0272016-12-08 10:46:35 +00001980 run_dex2oat(input_fd.get(),
1981 out_oat_fd.get(),
1982 in_vdex_fd.get(),
Calin Juravle7a570e82017-01-14 16:23:30 -08001983 out_vdex_fd.get(),
Richard Uhler76cc0272016-12-08 10:46:35 +00001984 image_fd.get(),
Jeff Hao10b8a6e2017-04-05 17:11:39 -07001985 dex_path,
Richard Uhler76cc0272016-12-08 10:46:35 +00001986 out_oat_path,
1987 swap_fd.get(),
1988 instruction_set,
1989 compiler_filter,
Richard Uhler76cc0272016-12-08 10:46:35 +00001990 debuggable,
1991 boot_complete,
Andreas Gampea73a0cb2017-11-02 18:14:42 -07001992 background_job_compile,
Richard Uhler76cc0272016-12-08 10:46:35 +00001993 reference_profile_fd.get(),
David Brazdil570d3982018-01-16 20:15:43 +00001994 class_loader_context,
David Brazdil7fcbb812018-01-17 17:05:40 +00001995 target_sdk_version,
Calin Juravle62c5a372018-02-01 17:03:23 +00001996 enable_hidden_api_checks,
1997 dex_metadata_fd.get());
Jeff Sharkey90aff262016-12-12 14:28:24 -07001998 _exit(68); /* only get here on exec failure */
1999 } else {
2000 int res = wait_child(pid);
2001 if (res == 0) {
Calin Juravlec9eab382017-01-25 01:17:17 -08002002 ALOGV("DexInv: --- END '%s' (success) ---\n", dex_path);
Jeff Sharkey90aff262016-12-12 14:28:24 -07002003 } else {
Calin Juravlec9eab382017-01-25 01:17:17 -08002004 ALOGE("DexInv: --- END '%s' --- status=0x%04x, process failed\n", dex_path, res);
Andreas Gampe013f02e2017-03-20 18:36:54 -07002005 return res;
Jeff Sharkey90aff262016-12-12 14:28:24 -07002006 }
2007 }
2008
Calin Juravlec9eab382017-01-25 01:17:17 -08002009 update_out_oat_access_times(dex_path, out_oat_path);
Jeff Sharkey90aff262016-12-12 14:28:24 -07002010
2011 // We've been successful, don't delete output.
2012 out_oat_fd.SetCleanup(false);
Calin Juravle7a570e82017-01-14 16:23:30 -08002013 out_vdex_fd.SetCleanup(false);
Jeff Sharkey90aff262016-12-12 14:28:24 -07002014 image_fd.SetCleanup(false);
2015 reference_profile_fd.SetCleanup(false);
2016
2017 return 0;
2018}
2019
Calin Juravlec9eab382017-01-25 01:17:17 -08002020// Try to remove the given directory. Log an error if the directory exists
2021// and is empty but could not be removed.
2022static bool rmdir_if_empty(const char* dir) {
2023 if (rmdir(dir) == 0) {
2024 return true;
2025 }
2026 if (errno == ENOENT || errno == ENOTEMPTY) {
2027 return true;
2028 }
2029 PLOG(ERROR) << "Failed to remove dir: " << dir;
2030 return false;
2031}
2032
2033// Try to unlink the given file. Log an error if the file exists and could not
2034// be unlinked.
2035static bool unlink_if_exists(const std::string& file) {
2036 if (unlink(file.c_str()) == 0) {
2037 return true;
2038 }
2039 if (errno == ENOENT) {
2040 return true;
2041
2042 }
2043 PLOG(ERROR) << "Could not unlink: " << file;
2044 return false;
2045}
2046
Calin Juravle7d765462017-09-04 15:57:10 -07002047enum ReconcileSecondaryDexResult {
2048 kReconcileSecondaryDexExists = 0,
2049 kReconcileSecondaryDexCleanedUp = 1,
2050 kReconcileSecondaryDexValidationError = 2,
2051 kReconcileSecondaryDexCleanUpError = 3,
2052 kReconcileSecondaryDexAccessIOError = 4,
2053};
Calin Juravlec9eab382017-01-25 01:17:17 -08002054
2055// Reconcile the secondary dex 'dex_path' and its generated oat files.
2056// Return true if all the parameters are valid and the secondary dex file was
2057// processed successfully (i.e. the dex_path either exists, or if not, its corresponding
2058// oat/vdex/art files where deleted successfully). In this case, out_secondary_dex_exists
2059// will be true if the secondary dex file still exists. If the secondary dex file does not exist,
2060// the method cleans up any previously generated compiler artifacts (oat, vdex, art).
2061// Return false if there were errors during processing. In this case
2062// out_secondary_dex_exists will be set to false.
2063bool reconcile_secondary_dex_file(const std::string& dex_path,
2064 const std::string& pkgname, int uid, const std::vector<std::string>& isas,
2065 const std::unique_ptr<std::string>& volume_uuid, int storage_flag,
2066 /*out*/bool* out_secondary_dex_exists) {
Calin Juravle7d765462017-09-04 15:57:10 -07002067 *out_secondary_dex_exists = false; // start by assuming the file does not exist.
Calin Juravlec9eab382017-01-25 01:17:17 -08002068 if (isas.size() == 0) {
2069 LOG(ERROR) << "reconcile_secondary_dex_file called with empty isas vector";
2070 return false;
2071 }
2072
Calin Juravle7d765462017-09-04 15:57:10 -07002073 if (storage_flag != FLAG_STORAGE_CE && storage_flag != FLAG_STORAGE_DE) {
2074 LOG(ERROR) << "reconcile_secondary_dex_file called with invalid storage_flag: "
2075 << storage_flag;
Calin Juravlec9eab382017-01-25 01:17:17 -08002076 return false;
2077 }
2078
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002079 // As a security measure we want to unlink art artifacts with the reduced capabilities
2080 // of the package user id. So we fork and drop capabilities in the child.
2081 pid_t pid = fork();
2082 if (pid == 0) {
Calin Juravle7d765462017-09-04 15:57:10 -07002083 /* child -- drop privileges before continuing */
2084 drop_capabilities(uid);
2085
2086 const char* volume_uuid_cstr = volume_uuid == nullptr ? nullptr : volume_uuid->c_str();
2087 if (!validate_secondary_dex_path(pkgname.c_str(), dex_path.c_str(), volume_uuid_cstr,
2088 uid, storage_flag)) {
2089 LOG(ERROR) << "Could not validate secondary dex path " << dex_path;
2090 _exit(kReconcileSecondaryDexValidationError);
2091 }
2092
2093 SecondaryDexAccess access_check = check_secondary_dex_access(dex_path);
2094 switch (access_check) {
2095 case kSecondaryDexAccessDoesNotExist:
2096 // File does not exist. Proceed with cleaning.
2097 break;
2098 case kSecondaryDexAccessReadOk: _exit(kReconcileSecondaryDexExists);
2099 case kSecondaryDexAccessIOError: _exit(kReconcileSecondaryDexAccessIOError);
2100 case kSecondaryDexAccessPermissionError: _exit(kReconcileSecondaryDexValidationError);
2101 default:
2102 LOG(ERROR) << "Unexpected result from check_secondary_dex_access: " << access_check;
2103 _exit(kReconcileSecondaryDexValidationError);
2104 }
2105
2106 // The secondary dex does not exist anymore or it's. Clear any generated files.
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002107 char oat_path[PKG_PATH_MAX];
2108 char oat_dir[PKG_PATH_MAX];
2109 char oat_isa_dir[PKG_PATH_MAX];
2110 bool result = true;
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002111 for (size_t i = 0; i < isas.size(); i++) {
Calin Juravle7d765462017-09-04 15:57:10 -07002112 if (!create_secondary_dex_oat_layout(
2113 dex_path,isas[i], oat_dir, oat_isa_dir, oat_path)) {
2114 LOG(ERROR) << "Could not create secondary odex layout: " << dex_path;
2115 _exit(kReconcileSecondaryDexValidationError);
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002116 }
Calin Juravle51314092017-05-18 15:33:05 -07002117
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002118 // Delete oat/vdex/art files.
2119 result = unlink_if_exists(oat_path) && result;
2120 result = unlink_if_exists(create_vdex_filename(oat_path)) && result;
2121 result = unlink_if_exists(create_image_filename(oat_path)) && result;
Calin Juravlec9eab382017-01-25 01:17:17 -08002122
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002123 // Delete profiles.
2124 std::string current_profile = create_current_profile_path(
Calin Juravle824a64d2018-01-18 20:23:17 -08002125 multiuser_get_user_id(uid), pkgname, dex_path, /*is_secondary*/true);
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002126 std::string reference_profile = create_reference_profile_path(
Calin Juravle824a64d2018-01-18 20:23:17 -08002127 pkgname, dex_path, /*is_secondary*/true);
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002128 result = unlink_if_exists(current_profile) && result;
2129 result = unlink_if_exists(reference_profile) && result;
Calin Juravle51314092017-05-18 15:33:05 -07002130
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002131 // We upgraded once the location of current profile for secondary dex files.
2132 // Check for any previous left-overs and remove them as well.
2133 std::string old_current_profile = dex_path + ".prof";
2134 result = unlink_if_exists(old_current_profile);
Calin Juravle3760ad32017-07-27 16:31:55 -07002135
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002136 // Try removing the directories as well, they might be empty.
2137 result = rmdir_if_empty(oat_isa_dir) && result;
2138 result = rmdir_if_empty(oat_dir) && result;
2139 }
Calin Juravle7d765462017-09-04 15:57:10 -07002140 if (!result) {
2141 PLOG(ERROR) << "Failed to clean secondary dex artifacts for location " << dex_path;
2142 }
2143 _exit(result ? kReconcileSecondaryDexCleanedUp : kReconcileSecondaryDexAccessIOError);
Calin Juravlec9eab382017-01-25 01:17:17 -08002144 }
2145
Shubham Ajmerae6d7ad52017-08-25 13:07:44 -07002146 int return_code = wait_child(pid);
Calin Juravle7d765462017-09-04 15:57:10 -07002147 if (!WIFEXITED(return_code)) {
2148 LOG(WARNING) << "reconcile dex failed for location " << dex_path << ": " << return_code;
2149 } else {
2150 return_code = WEXITSTATUS(return_code);
2151 }
2152
2153 LOG(DEBUG) << "Reconcile secondary dex path " << dex_path << " result=" << return_code;
2154
2155 switch (return_code) {
2156 case kReconcileSecondaryDexCleanedUp:
2157 case kReconcileSecondaryDexValidationError:
2158 // If we couldn't validate assume the dex file does not exist.
2159 // This will purge the entry from the PM records.
2160 *out_secondary_dex_exists = false;
2161 return true;
2162 case kReconcileSecondaryDexExists:
2163 *out_secondary_dex_exists = true;
2164 return true;
2165 case kReconcileSecondaryDexAccessIOError:
2166 // We had an access IO error.
2167 // Return false so that we can try again.
2168 // The value of out_secondary_dex_exists does not matter in this case and by convention
2169 // is set to false.
2170 *out_secondary_dex_exists = false;
2171 return false;
2172 default:
2173 LOG(ERROR) << "Unexpected code from reconcile_secondary_dex_file: " << return_code;
2174 *out_secondary_dex_exists = false;
2175 return false;
2176 }
Calin Juravlec9eab382017-01-25 01:17:17 -08002177}
2178
Alan Stokesa25d90c2017-10-16 10:56:00 +01002179// Compute and return the hash (SHA-256) of the secondary dex file at dex_path.
2180// Returns true if all parameters are valid and the hash successfully computed and stored in
2181// out_secondary_dex_hash.
2182// Also returns true with an empty hash if the file does not currently exist or is not accessible to
2183// the app.
2184// For any other errors (e.g. if any of the parameters are invalid) returns false.
2185bool hash_secondary_dex_file(const std::string& dex_path, const std::string& pkgname, int uid,
2186 const std::unique_ptr<std::string>& volume_uuid, int storage_flag,
2187 std::vector<uint8_t>* out_secondary_dex_hash) {
2188 out_secondary_dex_hash->clear();
2189
2190 const char* volume_uuid_cstr = volume_uuid == nullptr ? nullptr : volume_uuid->c_str();
2191
2192 if (storage_flag != FLAG_STORAGE_CE && storage_flag != FLAG_STORAGE_DE) {
2193 LOG(ERROR) << "hash_secondary_dex_file called with invalid storage_flag: "
2194 << storage_flag;
2195 return false;
2196 }
2197
2198 // Pipe to get the hash result back from our child process.
2199 unique_fd pipe_read, pipe_write;
2200 if (!Pipe(&pipe_read, &pipe_write)) {
2201 PLOG(ERROR) << "Failed to create pipe";
2202 return false;
2203 }
2204
2205 // Fork so that actual access to the files is done in the app's own UID, to ensure we only
2206 // access data the app itself can access.
2207 pid_t pid = fork();
2208 if (pid == 0) {
2209 // child -- drop privileges before continuing
2210 drop_capabilities(uid);
2211 pipe_read.reset();
2212
2213 if (!validate_secondary_dex_path(pkgname, dex_path, volume_uuid_cstr, uid, storage_flag)) {
2214 LOG(ERROR) << "Could not validate secondary dex path " << dex_path;
2215 _exit(1);
2216 }
2217
2218 unique_fd fd(TEMP_FAILURE_RETRY(open(dex_path.c_str(), O_RDONLY | O_CLOEXEC | O_NOFOLLOW)));
2219 if (fd == -1) {
2220 if (errno == EACCES || errno == ENOENT) {
2221 // Not treated as an error.
2222 _exit(0);
2223 }
2224 PLOG(ERROR) << "Failed to open secondary dex " << dex_path;
2225 _exit(1);
2226 }
2227
2228 SHA256_CTX ctx;
2229 SHA256_Init(&ctx);
2230
2231 std::vector<uint8_t> buffer(65536);
2232 while (true) {
2233 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), buffer.size()));
2234 if (bytes_read == 0) {
2235 break;
2236 } else if (bytes_read == -1) {
2237 PLOG(ERROR) << "Failed to read secondary dex " << dex_path;
2238 _exit(1);
2239 }
2240
2241 SHA256_Update(&ctx, buffer.data(), bytes_read);
2242 }
2243
2244 std::array<uint8_t, SHA256_DIGEST_LENGTH> hash;
2245 SHA256_Final(hash.data(), &ctx);
2246 if (!WriteFully(pipe_write, hash.data(), hash.size())) {
2247 _exit(1);
2248 }
2249
2250 _exit(0);
2251 }
2252
2253 // parent
2254 pipe_write.reset();
2255
2256 out_secondary_dex_hash->resize(SHA256_DIGEST_LENGTH);
2257 if (!ReadFully(pipe_read, out_secondary_dex_hash->data(), out_secondary_dex_hash->size())) {
2258 out_secondary_dex_hash->clear();
2259 }
2260 return wait_child(pid) == 0;
2261}
2262
Jeff Sharkey90aff262016-12-12 14:28:24 -07002263// Helper for move_ab, so that we can have common failure-case cleanup.
2264static bool unlink_and_rename(const char* from, const char* to) {
2265 // Check whether "from" exists, and if so whether it's regular. If it is, unlink. Otherwise,
2266 // return a failure.
2267 struct stat s;
2268 if (stat(to, &s) == 0) {
2269 if (!S_ISREG(s.st_mode)) {
2270 LOG(ERROR) << from << " is not a regular file to replace for A/B.";
2271 return false;
2272 }
2273 if (unlink(to) != 0) {
2274 LOG(ERROR) << "Could not unlink " << to << " to move A/B.";
2275 return false;
2276 }
2277 } else {
2278 // This may be a permission problem. We could investigate the error code, but we'll just
2279 // let the rename failure do the work for us.
2280 }
2281
2282 // Try to rename "to" to "from."
2283 if (rename(from, to) != 0) {
2284 PLOG(ERROR) << "Could not rename " << from << " to " << to;
2285 return false;
2286 }
2287 return true;
2288}
2289
2290// Move/rename a B artifact (from) to an A artifact (to).
2291static bool move_ab_path(const std::string& b_path, const std::string& a_path) {
2292 // Check whether B exists.
2293 {
2294 struct stat s;
2295 if (stat(b_path.c_str(), &s) != 0) {
2296 // Silently ignore for now. The service calling this isn't smart enough to understand
2297 // lack of artifacts at the moment.
2298 return false;
2299 }
2300 if (!S_ISREG(s.st_mode)) {
2301 LOG(ERROR) << "A/B artifact " << b_path << " is not a regular file.";
2302 // Try to unlink, but swallow errors.
2303 unlink(b_path.c_str());
2304 return false;
2305 }
2306 }
2307
2308 // Rename B to A.
2309 if (!unlink_and_rename(b_path.c_str(), a_path.c_str())) {
2310 // Delete the b_path so we don't try again (or fail earlier).
2311 if (unlink(b_path.c_str()) != 0) {
2312 PLOG(ERROR) << "Could not unlink " << b_path;
2313 }
2314
2315 return false;
2316 }
2317
2318 return true;
2319}
2320
2321bool move_ab(const char* apk_path, const char* instruction_set, const char* oat_dir) {
2322 // Get the current slot suffix. No suffix, no A/B.
2323 std::string slot_suffix;
2324 {
2325 char buf[kPropertyValueMax];
2326 if (get_property("ro.boot.slot_suffix", buf, nullptr) <= 0) {
2327 return false;
2328 }
2329 slot_suffix = buf;
2330
2331 if (!ValidateTargetSlotSuffix(slot_suffix)) {
2332 LOG(ERROR) << "Target slot suffix not legal: " << slot_suffix;
2333 return false;
2334 }
2335 }
2336
2337 // Validate other inputs.
2338 if (validate_apk_path(apk_path) != 0) {
2339 LOG(ERROR) << "Invalid apk_path: " << apk_path;
2340 return false;
2341 }
2342 if (validate_apk_path(oat_dir) != 0) {
2343 LOG(ERROR) << "Invalid oat_dir: " << oat_dir;
2344 return false;
2345 }
2346
2347 char a_path[PKG_PATH_MAX];
2348 if (!calculate_oat_file_path(a_path, oat_dir, apk_path, instruction_set)) {
2349 return false;
2350 }
2351 const std::string a_vdex_path = create_vdex_filename(a_path);
2352 const std::string a_image_path = create_image_filename(a_path);
2353
2354 // B path = A path + slot suffix.
2355 const std::string b_path = StringPrintf("%s.%s", a_path, slot_suffix.c_str());
2356 const std::string b_vdex_path = StringPrintf("%s.%s", a_vdex_path.c_str(), slot_suffix.c_str());
2357 const std::string b_image_path = StringPrintf("%s.%s",
2358 a_image_path.c_str(),
2359 slot_suffix.c_str());
2360
2361 bool success = true;
2362 if (move_ab_path(b_path, a_path)) {
2363 if (move_ab_path(b_vdex_path, a_vdex_path)) {
2364 // Note: we can live without an app image. As such, ignore failure to move the image file.
2365 // If we decide to require the app image, or the app image being moved correctly,
2366 // then change accordingly.
2367 constexpr bool kIgnoreAppImageFailure = true;
2368
2369 if (!a_image_path.empty()) {
2370 if (!move_ab_path(b_image_path, a_image_path)) {
2371 unlink(a_image_path.c_str());
2372 if (!kIgnoreAppImageFailure) {
2373 success = false;
2374 }
2375 }
2376 }
2377 } else {
2378 // Cleanup: delete B image, ignore errors.
2379 unlink(b_image_path.c_str());
2380 success = false;
2381 }
2382 } else {
2383 // Cleanup: delete B image, ignore errors.
2384 unlink(b_vdex_path.c_str());
2385 unlink(b_image_path.c_str());
2386 success = false;
2387 }
2388 return success;
2389}
2390
2391bool delete_odex(const char* apk_path, const char* instruction_set, const char* oat_dir) {
2392 // Delete the oat/odex file.
2393 char out_path[PKG_PATH_MAX];
Calin Juravle80a21252017-01-17 14:43:25 -08002394 if (!create_oat_out_path(apk_path, instruction_set, oat_dir,
Calin Juravle114f0812017-03-08 19:05:07 -08002395 /*is_secondary_dex*/false, out_path)) {
Jeff Sharkey90aff262016-12-12 14:28:24 -07002396 return false;
2397 }
2398
2399 // In case of a permission failure report the issue. Otherwise just print a warning.
2400 auto unlink_and_check = [](const char* path) -> bool {
2401 int result = unlink(path);
2402 if (result != 0) {
2403 if (errno == EACCES || errno == EPERM) {
2404 PLOG(ERROR) << "Could not unlink " << path;
2405 return false;
2406 }
2407 PLOG(WARNING) << "Could not unlink " << path;
2408 }
2409 return true;
2410 };
2411
2412 // Delete the oat/odex file.
2413 bool return_value_oat = unlink_and_check(out_path);
2414
2415 // Derive and delete the app image.
2416 bool return_value_art = unlink_and_check(create_image_filename(out_path).c_str());
2417
Nicolas Geoffray192fb962017-05-25 13:58:06 +01002418 // Derive and delete the vdex file.
2419 bool return_value_vdex = unlink_and_check(create_vdex_filename(out_path).c_str());
2420
Jeff Sharkey90aff262016-12-12 14:28:24 -07002421 // Report success.
Nicolas Geoffray192fb962017-05-25 13:58:06 +01002422 return return_value_oat && return_value_art && return_value_vdex;
Jeff Sharkey90aff262016-12-12 14:28:24 -07002423}
2424
Jeff Sharkeyc1149c92017-09-21 14:51:09 -06002425static bool is_absolute_path(const std::string& path) {
2426 if (path.find('/') != 0 || path.find("..") != std::string::npos) {
2427 LOG(ERROR) << "Invalid absolute path " << path;
2428 return false;
2429 } else {
2430 return true;
2431 }
2432}
2433
2434static bool is_valid_instruction_set(const std::string& instruction_set) {
2435 // TODO: add explicit whitelisting of instruction sets
2436 if (instruction_set.find('/') != std::string::npos) {
2437 LOG(ERROR) << "Invalid instruction set " << instruction_set;
2438 return false;
2439 } else {
2440 return true;
2441 }
2442}
2443
2444bool calculate_oat_file_path_default(char path[PKG_PATH_MAX], const char *oat_dir,
2445 const char *apk_path, const char *instruction_set) {
2446 std::string oat_dir_ = oat_dir;
2447 std::string apk_path_ = apk_path;
2448 std::string instruction_set_ = instruction_set;
2449
2450 if (!is_absolute_path(oat_dir_)) return false;
2451 if (!is_absolute_path(apk_path_)) return false;
2452 if (!is_valid_instruction_set(instruction_set_)) return false;
2453
2454 std::string::size_type end = apk_path_.rfind('.');
2455 std::string::size_type start = apk_path_.rfind('/', end);
2456 if (end == std::string::npos || start == std::string::npos) {
2457 LOG(ERROR) << "Invalid apk_path " << apk_path_;
2458 return false;
2459 }
2460
2461 std::string res_ = oat_dir_ + '/' + instruction_set + '/'
2462 + apk_path_.substr(start + 1, end - start - 1) + ".odex";
2463 const char* res = res_.c_str();
2464 if (strlen(res) >= PKG_PATH_MAX) {
2465 LOG(ERROR) << "Result too large";
2466 return false;
2467 } else {
2468 strlcpy(path, res, PKG_PATH_MAX);
2469 return true;
2470 }
2471}
2472
2473bool calculate_odex_file_path_default(char path[PKG_PATH_MAX], const char *apk_path,
2474 const char *instruction_set) {
2475 std::string apk_path_ = apk_path;
2476 std::string instruction_set_ = instruction_set;
2477
2478 if (!is_absolute_path(apk_path_)) return false;
2479 if (!is_valid_instruction_set(instruction_set_)) return false;
2480
2481 std::string::size_type end = apk_path_.rfind('.');
2482 std::string::size_type start = apk_path_.rfind('/', end);
2483 if (end == std::string::npos || start == std::string::npos) {
2484 LOG(ERROR) << "Invalid apk_path " << apk_path_;
2485 return false;
2486 }
2487
2488 std::string oat_dir = apk_path_.substr(0, start + 1) + "oat";
2489 return calculate_oat_file_path_default(path, oat_dir.c_str(), apk_path, instruction_set);
2490}
2491
2492bool create_cache_path_default(char path[PKG_PATH_MAX], const char *src,
2493 const char *instruction_set) {
2494 std::string src_ = src;
2495 std::string instruction_set_ = instruction_set;
2496
2497 if (!is_absolute_path(src_)) return false;
2498 if (!is_valid_instruction_set(instruction_set_)) return false;
2499
2500 for (auto it = src_.begin() + 1; it < src_.end(); ++it) {
2501 if (*it == '/') {
2502 *it = '@';
2503 }
2504 }
2505
2506 std::string res_ = android_data_dir + DALVIK_CACHE + '/' + instruction_set_ + src_
2507 + DALVIK_CACHE_POSTFIX;
2508 const char* res = res_.c_str();
2509 if (strlen(res) >= PKG_PATH_MAX) {
2510 LOG(ERROR) << "Result too large";
2511 return false;
2512 } else {
2513 strlcpy(path, res, PKG_PATH_MAX);
2514 return true;
2515 }
2516}
2517
Calin Juravle0d0a4922018-01-23 19:54:11 -08002518bool open_classpath_files(const std::string& classpath, std::vector<unique_fd>* apk_fds) {
2519 std::vector<std::string> classpaths_elems = base::Split(classpath, ":");
2520 for (const std::string& elem : classpaths_elems) {
2521 unique_fd fd(TEMP_FAILURE_RETRY(open(elem.c_str(), O_RDONLY)));
2522 if (fd < 0) {
2523 PLOG(ERROR) << "Could not open classpath elem " << elem;
2524 return false;
2525 } else {
2526 apk_fds->push_back(std::move(fd));
2527 }
2528 }
2529 return true;
2530}
2531
2532static bool create_app_profile_snapshot(int32_t app_id,
2533 const std::string& package_name,
2534 const std::string& profile_name,
2535 const std::string& classpath) {
Calin Juravle29591732017-11-20 17:46:19 -08002536 int app_shared_gid = multiuser_get_shared_gid(/*user_id*/ 0, app_id);
2537
Calin Juravle824a64d2018-01-18 20:23:17 -08002538 unique_fd snapshot_fd = open_spnashot_profile(AID_SYSTEM, package_name, profile_name);
Calin Juravle29591732017-11-20 17:46:19 -08002539 if (snapshot_fd < 0) {
2540 return false;
2541 }
2542
2543 std::vector<unique_fd> profiles_fd;
2544 unique_fd reference_profile_fd;
Calin Juravle824a64d2018-01-18 20:23:17 -08002545 open_profile_files(app_shared_gid, package_name, profile_name, /*is_secondary_dex*/ false,
2546 &profiles_fd, &reference_profile_fd);
Calin Juravle29591732017-11-20 17:46:19 -08002547 if (profiles_fd.empty() || (reference_profile_fd.get() < 0)) {
2548 return false;
2549 }
2550
2551 profiles_fd.push_back(std::move(reference_profile_fd));
2552
Calin Juravle0d0a4922018-01-23 19:54:11 -08002553 // Open the class paths elements. These will be used to filter out profile data that does
2554 // not belong to the classpath during merge.
2555 std::vector<unique_fd> apk_fds;
2556 if (!open_classpath_files(classpath, &apk_fds)) {
2557 return false;
2558 }
2559
Calin Juravle29591732017-11-20 17:46:19 -08002560 pid_t pid = fork();
2561 if (pid == 0) {
2562 /* child -- drop privileges before continuing */
2563 drop_capabilities(app_shared_gid);
Calin Juravle0d0a4922018-01-23 19:54:11 -08002564 run_profman_merge(profiles_fd, snapshot_fd, &apk_fds);
Calin Juravle29591732017-11-20 17:46:19 -08002565 exit(42); /* only get here on exec failure */
2566 }
2567
2568 /* parent */
2569 int return_code = wait_child(pid);
2570 if (!WIFEXITED(return_code)) {
Calin Juravle824a64d2018-01-18 20:23:17 -08002571 LOG(WARNING) << "profman failed for " << package_name << ":" << profile_name;
Calin Juravle29591732017-11-20 17:46:19 -08002572 return false;
2573 }
2574
2575 return true;
2576}
2577
Calin Juravle0d0a4922018-01-23 19:54:11 -08002578static bool create_boot_image_profile_snapshot(const std::string& package_name,
2579 const std::string& profile_name,
2580 const std::string& classpath) {
2581 // The reference profile directory for the android package might not be prepared. Do it now.
2582 const std::string ref_profile_dir =
2583 create_primary_reference_profile_package_dir_path(package_name);
2584 if (fs_prepare_dir(ref_profile_dir.c_str(), 0770, AID_SYSTEM, AID_SYSTEM) != 0) {
2585 PLOG(ERROR) << "Failed to prepare " << ref_profile_dir;
2586 return false;
2587 }
2588
2589 // Open and create the snapshot profile.
2590 unique_fd snapshot_fd = open_spnashot_profile(AID_SYSTEM, package_name, profile_name);
2591
2592 // Collect all non empty profiles.
2593 // The collection will traverse all applications profiles and find the non empty files.
2594 // This has the potential of inspecting a large number of files and directories (depending
2595 // on the number of applications and users). So there is a slight increase in the chance
2596 // to get get occasionally I/O errors (e.g. for opening the file). When that happens do not
2597 // fail the snapshot and aggregate whatever profile we could open.
2598 //
2599 // The profile snapshot is a best effort based on available data it's ok if some data
2600 // from some apps is missing. It will be counter productive for the snapshot to fail
2601 // because we could not open or read some of the files.
2602 std::vector<std::string> profiles;
2603 if (!collect_profiles(&profiles)) {
2604 LOG(WARNING) << "There were errors while collecting the profiles for the boot image.";
2605 }
2606
2607 // If we have no profiles return early.
2608 if (profiles.empty()) {
2609 return true;
2610 }
2611
2612 // Open the classpath elements. These will be used to filter out profile data that does
2613 // not belong to the classpath during merge.
2614 std::vector<unique_fd> apk_fds;
2615 if (!open_classpath_files(classpath, &apk_fds)) {
2616 return false;
2617 }
2618
2619 // If we could not open any files from the classpath return an error.
2620 if (apk_fds.empty()) {
2621 LOG(ERROR) << "Could not open any of the classpath elements.";
2622 return false;
2623 }
2624
2625 // Aggregate the profiles in batches of kAggregationBatchSize.
2626 // We do this to avoid opening a huge a amount of files.
2627 static constexpr size_t kAggregationBatchSize = 10;
2628
2629 std::vector<unique_fd> profiles_fd;
2630 for (size_t i = 0; i < profiles.size(); ) {
2631 for (size_t k = 0; k < kAggregationBatchSize && i < profiles.size(); k++, i++) {
2632 unique_fd fd = open_profile(AID_SYSTEM, profiles[i], O_RDONLY);
2633 if (fd.get() >= 0) {
2634 profiles_fd.push_back(std::move(fd));
2635 }
2636 }
2637 pid_t pid = fork();
2638 if (pid == 0) {
2639 /* child -- drop privileges before continuing */
2640 drop_capabilities(AID_SYSTEM);
2641
2642 run_profman_merge(profiles_fd, snapshot_fd, &apk_fds);
2643 exit(42); /* only get here on exec failure */
2644 }
2645
2646 /* parent */
2647 int return_code = wait_child(pid);
2648 if (!WIFEXITED(return_code)) {
2649 PLOG(WARNING) << "profman failed for " << package_name << ":" << profile_name;
2650 return false;
2651 }
2652 return true;
2653 }
2654 return true;
2655}
2656
2657bool create_profile_snapshot(int32_t app_id, const std::string& package_name,
2658 const std::string& profile_name, const std::string& classpath) {
2659 if (app_id == -1) {
2660 return create_boot_image_profile_snapshot(package_name, profile_name, classpath);
2661 } else {
2662 return create_app_profile_snapshot(app_id, package_name, profile_name, classpath);
2663 }
2664}
2665
Calin Juravlec3b049e2018-01-18 22:32:58 -08002666bool prepare_app_profile(const std::string& package_name,
2667 userid_t user_id,
2668 appid_t app_id,
2669 const std::string& profile_name,
Calin Juravlef63d4792018-01-30 17:43:34 +00002670 const std::string& code_path,
Calin Juravlec3b049e2018-01-18 22:32:58 -08002671 const std::unique_ptr<std::string>& dex_metadata) {
2672 // Prepare the current profile.
2673 std::string cur_profile = create_current_profile_path(user_id, package_name, profile_name,
2674 /*is_secondary_dex*/ false);
2675 uid_t uid = multiuser_get_uid(user_id, app_id);
2676 if (fs_prepare_file_strict(cur_profile.c_str(), 0600, uid, uid) != 0) {
2677 PLOG(ERROR) << "Failed to prepare " << cur_profile;
2678 return false;
2679 }
2680
2681 // Check if we need to install the profile from the dex metadata.
2682 if (dex_metadata == nullptr) {
2683 return true;
2684 }
2685
2686 // We have a dex metdata. Merge the profile into the reference profile.
2687 unique_fd ref_profile_fd = open_reference_profile(uid, package_name, profile_name,
2688 /*read_write*/ true, /*is_secondary_dex*/ false);
2689 unique_fd dex_metadata_fd(TEMP_FAILURE_RETRY(
2690 open(dex_metadata->c_str(), O_RDONLY | O_NOFOLLOW)));
Calin Juravlef63d4792018-01-30 17:43:34 +00002691 unique_fd apk_fd(TEMP_FAILURE_RETRY(open(code_path.c_str(), O_RDONLY | O_NOFOLLOW)));
2692 if (apk_fd < 0) {
2693 PLOG(ERROR) << "Could not open code path " << code_path;
2694 return false;
2695 }
Calin Juravlec3b049e2018-01-18 22:32:58 -08002696
2697 pid_t pid = fork();
2698 if (pid == 0) {
2699 /* child -- drop privileges before continuing */
2700 gid_t app_shared_gid = multiuser_get_shared_gid(user_id, app_id);
2701 drop_capabilities(app_shared_gid);
2702
Calin Juravlef63d4792018-01-30 17:43:34 +00002703 // The copy and update takes ownership over the fds.
2704 run_profman_copy_and_update(std::move(dex_metadata_fd),
2705 std::move(ref_profile_fd),
2706 std::move(apk_fd));
Calin Juravlec3b049e2018-01-18 22:32:58 -08002707 exit(42); /* only get here on exec failure */
2708 }
2709
2710 /* parent */
2711 int return_code = wait_child(pid);
2712 if (!WIFEXITED(return_code)) {
2713 PLOG(WARNING) << "profman failed for " << package_name << ":" << profile_name;
2714 return false;
2715 }
2716 return true;
2717}
2718
Jeff Sharkey6c2c0562016-12-07 12:12:00 -07002719} // namespace installd
2720} // namespace android