Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 1 | /* |
| 2 | ** |
| 3 | ** Copyright 2008, The Android Open Source Project |
| 4 | ** |
Jeff Sharkey | f3e30b9 | 2016-12-09 17:06:57 -0700 | [diff] [blame] | 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 8 | ** |
Jeff Sharkey | f3e30b9 | 2016-12-09 17:06:57 -0700 | [diff] [blame] | 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 10 | ** |
Jeff Sharkey | f3e30b9 | 2016-12-09 17:06:57 -0700 | [diff] [blame] | 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #ifndef COMMANDS_H_ |
| 19 | #define COMMANDS_H_ |
| 20 | |
| 21 | #include <inttypes.h> |
| 22 | #include <unistd.h> |
| 23 | |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 24 | #include <vector> |
Jeff Sharkey | 66b1a12 | 2017-01-16 20:57:45 -0700 | [diff] [blame] | 25 | #include <unordered_map> |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 26 | |
Jeff Sharkey | 88ddd94 | 2017-01-17 18:05:54 -0700 | [diff] [blame] | 27 | #include <android-base/macros.h> |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 28 | #include <binder/BinderService.h> |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 29 | #include <cutils/multiuser.h> |
| 30 | |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 31 | #include "android/os/BnInstalld.h" |
| 32 | #include "installd_constants.h" |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 33 | |
| 34 | namespace android { |
| 35 | namespace installd { |
| 36 | |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 37 | class InstalldNativeService : public BinderService<InstalldNativeService>, public os::BnInstalld { |
| 38 | public: |
| 39 | static status_t start(); |
| 40 | static char const* getServiceName() { return "installd"; } |
| 41 | virtual status_t dump(int fd, const Vector<String16> &args) override; |
Andreas Gampe | d089ca1 | 2016-06-27 14:25:30 -0700 | [diff] [blame] | 42 | |
Jeff Sharkey | c1e93e7 | 2016-12-05 23:39:32 -0700 | [diff] [blame] | 43 | binder::Status createUserData(const std::unique_ptr<std::string>& uuid, int32_t userId, |
| 44 | int32_t userSerial, int32_t flags); |
| 45 | binder::Status destroyUserData(const std::unique_ptr<std::string>& uuid, int32_t userId, |
| 46 | int32_t flags); |
| 47 | |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 48 | binder::Status createAppData(const std::unique_ptr<std::string>& uuid, |
| 49 | const std::string& packageName, int32_t userId, int32_t flags, int32_t appId, |
Jeff Sharkey | 36a900a | 2016-12-19 16:39:18 -0700 | [diff] [blame] | 50 | const std::string& seInfo, int32_t targetSdkVersion, int64_t* _aidl_return); |
Jeff Sharkey | c1e93e7 | 2016-12-05 23:39:32 -0700 | [diff] [blame] | 51 | binder::Status restoreconAppData(const std::unique_ptr<std::string>& uuid, |
| 52 | const std::string& packageName, int32_t userId, int32_t flags, int32_t appId, |
| 53 | const std::string& seInfo); |
| 54 | binder::Status migrateAppData(const std::unique_ptr<std::string>& uuid, |
| 55 | const std::string& packageName, int32_t userId, int32_t flags); |
| 56 | binder::Status clearAppData(const std::unique_ptr<std::string>& uuid, |
| 57 | const std::string& packageName, int32_t userId, int32_t flags, int64_t ceDataInode); |
| 58 | binder::Status destroyAppData(const std::unique_ptr<std::string>& uuid, |
| 59 | const std::string& packageName, int32_t userId, int32_t flags, int64_t ceDataInode); |
Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 60 | |
Jeff Sharkey | e12d596 | 2017-04-03 16:41:02 -0600 | [diff] [blame] | 61 | binder::Status fixupAppData(const std::unique_ptr<std::string>& uuid, int32_t flags); |
| 62 | |
Narayan Kamath | e63ca7d | 2019-01-14 15:21:52 +0000 | [diff] [blame] | 63 | binder::Status snapshotAppData(const std::unique_ptr<std::string>& volumeUuid, |
Nikita Ioffe | b68f0d1 | 2019-02-04 11:06:37 +0000 | [diff] [blame] | 64 | const std::string& packageName, const int32_t user, const int32_t snapshotId, |
| 65 | int32_t storageFlags, int64_t* _aidl_return); |
Narayan Kamath | e63ca7d | 2019-01-14 15:21:52 +0000 | [diff] [blame] | 66 | binder::Status restoreAppDataSnapshot(const std::unique_ptr<std::string>& volumeUuid, |
Nikita Ioffe | b68f0d1 | 2019-02-04 11:06:37 +0000 | [diff] [blame] | 67 | const std::string& packageName, const int32_t appId, const std::string& seInfo, |
| 68 | const int32_t user, const int32_t snapshotId, int32_t storageFlags); |
Nikita Ioffe | 77be2ed | 2019-01-25 13:54:43 +0000 | [diff] [blame] | 69 | binder::Status destroyAppDataSnapshot(const std::unique_ptr<std::string> &volumeUuid, |
| 70 | const std::string& packageName, const int32_t user, const int64_t ceSnapshotInode, |
Nikita Ioffe | b68f0d1 | 2019-02-04 11:06:37 +0000 | [diff] [blame] | 71 | const int32_t snapshotId, int32_t storageFlags); |
Narayan Kamath | e63ca7d | 2019-01-14 15:21:52 +0000 | [diff] [blame] | 72 | |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 73 | binder::Status getAppSize(const std::unique_ptr<std::string>& uuid, |
Jeff Sharkey | df2d754 | 2017-01-07 09:19:35 -0700 | [diff] [blame] | 74 | const std::vector<std::string>& packageNames, int32_t userId, int32_t flags, |
| 75 | int32_t appId, const std::vector<int64_t>& ceDataInodes, |
| 76 | const std::vector<std::string>& codePaths, std::vector<int64_t>* _aidl_return); |
| 77 | binder::Status getUserSize(const std::unique_ptr<std::string>& uuid, |
| 78 | int32_t userId, int32_t flags, const std::vector<int32_t>& appIds, |
| 79 | std::vector<int64_t>* _aidl_return); |
| 80 | binder::Status getExternalSize(const std::unique_ptr<std::string>& uuid, |
Jeff Sharkey | a084fcd | 2017-04-17 16:44:41 -0600 | [diff] [blame] | 81 | int32_t userId, int32_t flags, const std::vector<int32_t>& appIds, |
| 82 | std::vector<int64_t>* _aidl_return); |
Jeff Sharkey | c1e93e7 | 2016-12-05 23:39:32 -0700 | [diff] [blame] | 83 | |
Felka Chang | 2a0a246 | 2019-11-20 14:20:40 +0800 | [diff] [blame] | 84 | binder::Status getAppCrates(const std::unique_ptr<std::string>& uuid, |
| 85 | const std::vector<std::string>& packageNames, |
| 86 | int32_t userId, |
| 87 | std::unique_ptr<std::vector<std::unique_ptr<android::os::storage::CrateMetadata>>>* |
| 88 | _aidl_return); |
| 89 | binder::Status getUserCrates( |
| 90 | const std::unique_ptr<std::string>& uuid, int32_t userId, |
| 91 | std::unique_ptr<std::vector<std::unique_ptr<android::os::storage::CrateMetadata>>>* |
| 92 | _aidl_return); |
| 93 | |
Jeff Sharkey | 88ddd94 | 2017-01-17 18:05:54 -0700 | [diff] [blame] | 94 | binder::Status setAppQuota(const std::unique_ptr<std::string>& uuid, |
| 95 | int32_t userId, int32_t appId, int64_t cacheQuota); |
| 96 | |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 97 | binder::Status moveCompleteApp(const std::unique_ptr<std::string>& fromUuid, |
| 98 | const std::unique_ptr<std::string>& toUuid, const std::string& packageName, |
| 99 | const std::string& dataAppName, int32_t appId, const std::string& seInfo, |
Songchun Fan | aed3337 | 2020-02-05 12:02:22 -0800 | [diff] [blame^] | 100 | int32_t targetSdkVersion, const std::string& fromCodePath); |
Jeff Sharkey | 475c6f9 | 2016-12-07 10:37:27 -0700 | [diff] [blame] | 101 | |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 102 | binder::Status dexopt(const std::string& apkPath, int32_t uid, |
| 103 | const std::unique_ptr<std::string>& packageName, const std::string& instructionSet, |
| 104 | int32_t dexoptNeeded, const std::unique_ptr<std::string>& outputPath, int32_t dexFlags, |
| 105 | const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid, |
Calin Juravle | 1d66761 | 2017-07-13 22:50:21 -0700 | [diff] [blame] | 106 | const std::unique_ptr<std::string>& classLoaderContext, |
David Brazdil | 570d398 | 2018-01-16 20:15:43 +0000 | [diff] [blame] | 107 | const std::unique_ptr<std::string>& seInfo, bool downgrade, |
Calin Juravle | cc3b8ae | 2018-02-01 17:03:23 +0000 | [diff] [blame] | 108 | int32_t targetSdkVersion, const std::unique_ptr<std::string>& profileName, |
Calin Juravle | dcccd83 | 2018-02-13 18:31:32 -0800 | [diff] [blame] | 109 | const std::unique_ptr<std::string>& dexMetadataPath, |
| 110 | const std::unique_ptr<std::string>& compilationReason); |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 111 | |
Eric Holk | 0ebbe0f | 2019-01-09 18:17:27 -0800 | [diff] [blame] | 112 | binder::Status compileLayouts(const std::string& apkPath, const std::string& packageName, |
| 113 | const std::string& outDexFile, int uid, bool* _aidl_return); |
| 114 | |
Jeff Sharkey | 475c6f9 | 2016-12-07 10:37:27 -0700 | [diff] [blame] | 115 | binder::Status rmdex(const std::string& codePath, const std::string& instructionSet); |
| 116 | |
Calin Juravle | 562de81 | 2018-01-20 23:34:18 -0800 | [diff] [blame] | 117 | binder::Status mergeProfiles(int32_t uid, const std::string& packageName, |
| 118 | const std::string& profileName, bool* _aidl_return); |
Jeff Sharkey | 475c6f9 | 2016-12-07 10:37:27 -0700 | [diff] [blame] | 119 | binder::Status dumpProfiles(int32_t uid, const std::string& packageName, |
Calin Juravle | 562de81 | 2018-01-20 23:34:18 -0800 | [diff] [blame] | 120 | const std::string& profileName, const std::string& codePath, bool* _aidl_return); |
Mathieu Chartier | f966f2a | 2017-05-10 12:48:37 -0700 | [diff] [blame] | 121 | binder::Status copySystemProfile(const std::string& systemProfile, |
Calin Juravle | 562de81 | 2018-01-20 23:34:18 -0800 | [diff] [blame] | 122 | int32_t uid, const std::string& packageName, const std::string& profileName, |
| 123 | bool* _aidl_return); |
| 124 | binder::Status clearAppProfiles(const std::string& packageName, const std::string& profileName); |
Jeff Sharkey | 475c6f9 | 2016-12-07 10:37:27 -0700 | [diff] [blame] | 125 | binder::Status destroyAppProfiles(const std::string& packageName); |
| 126 | |
Calin Juravle | c41dac2 | 2017-12-05 12:29:15 -0800 | [diff] [blame] | 127 | binder::Status createProfileSnapshot(int32_t appId, const std::string& packageName, |
Calin Juravle | e61189e | 2018-01-23 19:54:11 -0800 | [diff] [blame] | 128 | const std::string& profileName, const std::string& classpath, bool* _aidl_return); |
Calin Juravle | 2959173 | 2017-11-20 17:46:19 -0800 | [diff] [blame] | 129 | binder::Status destroyProfileSnapshot(const std::string& packageName, |
Calin Juravle | 562de81 | 2018-01-20 23:34:18 -0800 | [diff] [blame] | 130 | const std::string& profileName); |
Calin Juravle | 2959173 | 2017-11-20 17:46:19 -0800 | [diff] [blame] | 131 | |
Jeff Sharkey | 475c6f9 | 2016-12-07 10:37:27 -0700 | [diff] [blame] | 132 | binder::Status rmPackageDir(const std::string& packageDir); |
Jeff Sharkey | 60f8a53 | 2017-05-30 14:38:42 -0600 | [diff] [blame] | 133 | binder::Status freeCache(const std::unique_ptr<std::string>& uuid, int64_t targetFreeBytes, |
| 134 | int64_t cacheReservedBytes, int32_t flags); |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 135 | binder::Status linkNativeLibraryDirectory(const std::unique_ptr<std::string>& uuid, |
| 136 | const std::string& packageName, const std::string& nativeLibPath32, int32_t userId); |
Jeff Sharkey | 475c6f9 | 2016-12-07 10:37:27 -0700 | [diff] [blame] | 137 | binder::Status createOatDir(const std::string& oatDir, const std::string& instructionSet); |
Jeff Sharkey | 6c2c056 | 2016-12-07 12:12:00 -0700 | [diff] [blame] | 138 | binder::Status linkFile(const std::string& relativePath, const std::string& fromBase, |
| 139 | const std::string& toBase); |
| 140 | binder::Status moveAb(const std::string& apkPath, const std::string& instructionSet, |
| 141 | const std::string& outputPath); |
| 142 | binder::Status deleteOdex(const std::string& apkPath, const std::string& instructionSet, |
Andreas Gampe | c523409 | 2017-05-31 16:39:58 -0700 | [diff] [blame] | 143 | const std::unique_ptr<std::string>& outputPath); |
Victor Hsieh | 99de516 | 2017-10-06 14:44:14 -0700 | [diff] [blame] | 144 | binder::Status installApkVerity(const std::string& filePath, |
Jiyong Park | 3b25ae1 | 2019-11-25 11:06:16 +0900 | [diff] [blame] | 145 | android::base::unique_fd verityInput, int32_t contentSize); |
Victor Hsieh | c6d738a | 2018-01-20 15:06:39 -0800 | [diff] [blame] | 146 | binder::Status assertFsverityRootHashMatches(const std::string& filePath, |
| 147 | const std::vector<uint8_t>& expectedHash); |
Calin Juravle | bd96836 | 2017-01-25 01:17:17 -0800 | [diff] [blame] | 148 | binder::Status reconcileSecondaryDexFile(const std::string& dexPath, |
| 149 | const std::string& packageName, int32_t uid, const std::vector<std::string>& isa, |
| 150 | const std::unique_ptr<std::string>& volumeUuid, int32_t storage_flag, bool* _aidl_return); |
Alan Stokes | 753dc71 | 2017-10-16 10:56:00 +0100 | [diff] [blame] | 151 | binder::Status hashSecondaryDexFile(const std::string& dexPath, |
| 152 | const std::string& packageName, int32_t uid, const std::unique_ptr<std::string>& volumeUuid, |
| 153 | int32_t storageFlag, std::vector<uint8_t>* _aidl_return); |
Jeff Sharkey | 7a9059e | 2017-01-16 19:07:18 -0700 | [diff] [blame] | 154 | |
Jeff Sharkey | 66b1a12 | 2017-01-16 20:57:45 -0700 | [diff] [blame] | 155 | binder::Status invalidateMounts(); |
Jeff Sharkey | 325b8c9 | 2017-02-21 10:00:53 -0700 | [diff] [blame] | 156 | binder::Status isQuotaSupported(const std::unique_ptr<std::string>& volumeUuid, |
| 157 | bool* _aidl_return); |
Ricky Wai | ff9d3ea | 2019-11-18 18:18:24 +0000 | [diff] [blame] | 158 | binder::Status onPrivateVolumeMounted(const std::unique_ptr<std::string>& volumeUuid); |
| 159 | binder::Status onPrivateVolumeRemoved(const std::unique_ptr<std::string>& volumeUuid); |
Jeff Sharkey | 66b1a12 | 2017-01-16 20:57:45 -0700 | [diff] [blame] | 160 | |
Calin Juravle | bc5ab87 | 2018-01-18 22:32:58 -0800 | [diff] [blame] | 161 | binder::Status prepareAppProfile(const std::string& packageName, |
| 162 | int32_t userId, int32_t appId, const std::string& profileName, |
| 163 | const std::string& codePath, const std::unique_ptr<std::string>& dexMetadata, |
| 164 | bool* _aidl_return); |
| 165 | |
Narayan Kamath | 28ab93b | 2019-05-15 18:29:44 +0100 | [diff] [blame] | 166 | binder::Status migrateLegacyObbData(); |
| 167 | |
Jeff Sharkey | 7a9059e | 2017-01-16 19:07:18 -0700 | [diff] [blame] | 168 | private: |
| 169 | std::recursive_mutex mLock; |
Jeff Sharkey | 66b1a12 | 2017-01-16 20:57:45 -0700 | [diff] [blame] | 170 | |
Jeff Sharkey | d712f0c | 2017-05-03 11:36:42 -0600 | [diff] [blame] | 171 | std::recursive_mutex mMountsLock; |
| 172 | std::recursive_mutex mQuotasLock; |
Jeff Sharkey | b26786d | 2017-03-11 19:40:29 -0700 | [diff] [blame] | 173 | |
Jeff Sharkey | d712f0c | 2017-05-03 11:36:42 -0600 | [diff] [blame] | 174 | /* Map of all storage mounts from source to target */ |
| 175 | std::unordered_map<std::string, std::string> mStorageMounts; |
Jeff Sharkey | d712f0c | 2017-05-03 11:36:42 -0600 | [diff] [blame] | 176 | |
Jeff Sharkey | 88ddd94 | 2017-01-17 18:05:54 -0700 | [diff] [blame] | 177 | /* Map from UID to cache quota size */ |
| 178 | std::unordered_map<uid_t, int64_t> mCacheQuotas; |
Jeff Sharkey | 66b1a12 | 2017-01-16 20:57:45 -0700 | [diff] [blame] | 179 | |
Jeff Sharkey | d712f0c | 2017-05-03 11:36:42 -0600 | [diff] [blame] | 180 | std::string findDataMediaPath(const std::unique_ptr<std::string>& uuid, userid_t userid); |
Jeff Sharkey | 0274c97 | 2016-12-06 09:32:04 -0700 | [diff] [blame] | 181 | }; |
| 182 | |
Andreas Gampe | 02d0de5 | 2015-11-11 20:43:16 -0800 | [diff] [blame] | 183 | } // namespace installd |
| 184 | } // namespace android |
| 185 | |
| 186 | #endif // COMMANDS_H_ |