Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 16 | |
| 17 | #ifndef DEXOPT_H_ |
| 18 | #define DEXOPT_H_ |
| 19 | |
Jeff Sharkey | c1149c9 | 2017-09-21 14:51:09 -0600 | [diff] [blame] | 20 | #include "installd_constants.h" |
| 21 | |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 22 | #include <sys/types.h> |
| 23 | |
Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 24 | #include <cutils/multiuser.h> |
| 25 | |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 26 | namespace android { |
| 27 | namespace installd { |
| 28 | |
Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 29 | /* dexopt needed flags matching those in dalvik.system.DexFile */ |
Calin Juravle | 80a2125 | 2017-01-17 14:43:25 -0800 | [diff] [blame] | 30 | static constexpr int NO_DEXOPT_NEEDED = 0; |
Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 31 | static constexpr int DEX2OAT_FROM_SCRATCH = 1; |
| 32 | static constexpr int DEX2OAT_FOR_BOOT_IMAGE = 2; |
| 33 | static constexpr int DEX2OAT_FOR_FILTER = 3; |
| 34 | static constexpr int DEX2OAT_FOR_RELOCATION = 4; |
Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 35 | |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 36 | // Clear the reference profile identified by the given profile name. |
| 37 | bool clear_primary_reference_profile(const std::string& pkgname, const std::string& profile_name); |
| 38 | // Clear the current profile identified by the given profile name (for single user). |
| 39 | bool clear_primary_current_profile(const std::string& pkgname, const std::string& profile_name, |
| 40 | userid_t user); |
| 41 | // Clear all current profiles identified by the given profile name (all users). |
| 42 | bool clear_primary_current_profiles(const std::string& pkgname, const std::string& profile_name); |
Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 43 | |
Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 44 | // Decide if profile guided compilation is needed or not based on existing profiles. |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 45 | // The analysis is done for a single profile name (which corresponds to a single code path). |
Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 46 | // Returns true if there is enough information in the current profiles that makes it |
| 47 | // worth to recompile the package. |
| 48 | // If the return value is true all the current profiles would have been merged into |
| 49 | // the reference profiles accessible with open_reference_profile(). |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 50 | bool analyze_primary_profiles(uid_t uid, |
| 51 | const std::string& pkgname, |
| 52 | const std::string& profile_name); |
Calin Juravle | 114f081 | 2017-03-08 19:05:07 -0800 | [diff] [blame] | 53 | |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 54 | // Create a snapshot of the profile information for the given package profile. |
Calin Juravle | 2959173 | 2017-11-20 17:46:19 -0800 | [diff] [blame] | 55 | // The profile snapshot is the aggregation of all existing profiles (all current user |
| 56 | // profiles & the reference profile) and is meant to capture the all the profile information |
| 57 | // without performing a merge into the reference profile which might impact future dex2oat |
| 58 | // compilations. |
| 59 | // The snapshot is created next to the reference profile of the package and the |
| 60 | // ownership is assigned to AID_SYSTEM. |
| 61 | // The snapshot location is reference_profile_location.snapshot. If a snapshot is already |
| 62 | // there, it will be truncated and overwritten. |
Calin Juravle | c3596c3 | 2017-12-05 12:29:15 -0800 | [diff] [blame] | 63 | bool create_profile_snapshot(int32_t app_id, const std::string& package, |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 64 | const std::string& profile_name); |
Calin Juravle | 2959173 | 2017-11-20 17:46:19 -0800 | [diff] [blame] | 65 | |
Calin Juravle | 76268c5 | 2017-03-09 13:19:42 -0800 | [diff] [blame] | 66 | bool dump_profiles(int32_t uid, const std::string& pkgname, const char* code_paths); |
Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 67 | |
Mathieu Chartier | f966f2a | 2017-05-10 12:48:37 -0700 | [diff] [blame] | 68 | bool copy_system_profile(const std::string& system_profile, |
| 69 | uid_t packageUid, |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 70 | const std::string& pkgname, |
| 71 | const std::string& profile_name); |
Mathieu Chartier | f966f2a | 2017-05-10 12:48:37 -0700 | [diff] [blame] | 72 | |
Jeff Sharkey | 90aff26 | 2016-12-12 14:28:24 -0700 | [diff] [blame] | 73 | bool delete_odex(const char* apk_path, const char* instruction_set, const char* output_path); |
| 74 | |
Calin Juravle | c9eab38 | 2017-01-25 01:17:17 -0800 | [diff] [blame] | 75 | bool reconcile_secondary_dex_file(const std::string& dex_path, |
| 76 | const std::string& pkgname, int uid, const std::vector<std::string>& isas, |
| 77 | const std::unique_ptr<std::string>& volumeUuid, int storage_flag, |
| 78 | /*out*/bool* out_secondary_dex_exists); |
| 79 | |
Alan Stokes | a25d90c | 2017-10-16 10:56:00 +0100 | [diff] [blame] | 80 | bool hash_secondary_dex_file(const std::string& dex_path, |
| 81 | const std::string& pkgname, int uid, const std::unique_ptr<std::string>& volume_uuid, |
| 82 | int storage_flag, std::vector<uint8_t>* out_secondary_dex_hash); |
| 83 | |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 84 | int dexopt(const char *apk_path, uid_t uid, const char *pkgName, const char *instruction_set, |
| 85 | int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter, |
Calin Juravle | 52c4582 | 2017-07-13 22:50:21 -0700 | [diff] [blame] | 86 | const char* volume_uuid, const char* class_loader_context, const char* se_info, |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 87 | bool downgrade, int target_sdk_version, const char* profile_name); |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 88 | |
Jeff Sharkey | c1149c9 | 2017-09-21 14:51:09 -0600 | [diff] [blame] | 89 | bool calculate_oat_file_path_default(char path[PKG_PATH_MAX], const char *oat_dir, |
| 90 | const char *apk_path, const char *instruction_set); |
| 91 | |
| 92 | bool calculate_odex_file_path_default(char path[PKG_PATH_MAX], const char *apk_path, |
| 93 | const char *instruction_set); |
| 94 | |
| 95 | bool create_cache_path_default(char path[PKG_PATH_MAX], const char *src, |
| 96 | const char *instruction_set); |
| 97 | |
Calin Juravle | 824a64d | 2018-01-18 20:23:17 -0800 | [diff] [blame^] | 98 | bool move_ab(const char* apk_path, const char* instruction_set, const char* output_path); |
| 99 | |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 100 | } // namespace installd |
| 101 | } // namespace android |
| 102 | |
| 103 | #endif // DEXOPT_H_ |