blob: d3f4e72de0486e911958a7e79d373f3e81c9bba4 [file] [log] [blame]
Mike Lockwood94afecf2012-10-24 10:45:23 -07001/*
2** Copyright 2008, The Android Open Source Project
3**
Dave Allisond9370732014-01-30 14:19:23 -08004** 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
Mike Lockwood94afecf2012-10-24 10:45:23 -07007**
Dave Allisond9370732014-01-30 14:19:23 -08008** http://www.apache.org/licenses/LICENSE-2.0
Mike Lockwood94afecf2012-10-24 10:45:23 -07009**
Dave Allisond9370732014-01-30 14:19:23 -080010** 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
Mike Lockwood94afecf2012-10-24 10:45:23 -070014** limitations under the License.
15*/
16
Jeff Sharkeyf3e30b92016-12-09 17:06:57 -070017#include "InstalldNativeService.h"
Andreas Gampe02d0de52015-11-11 20:43:16 -080018
19#include <errno.h>
20#include <inttypes.h>
Andreas Gamped089ca12016-06-27 14:25:30 -070021#include <regex>
Andreas Gampe02d0de52015-11-11 20:43:16 -080022#include <stdlib.h>
23#include <sys/capability.h>
24#include <sys/file.h>
25#include <sys/resource.h>
26#include <sys/stat.h>
Jeff Sharkeycc6281c2016-02-06 19:46:09 -070027#include <sys/types.h>
Calin Juravle6a1648e2016-02-01 12:12:16 +000028#include <sys/wait.h>
Jeff Sharkeycc6281c2016-02-06 19:46:09 -070029#include <sys/xattr.h>
Andreas Gampe02d0de52015-11-11 20:43:16 -080030#include <unistd.h>
Jeff Sharkey41ea4242015-04-09 11:34:03 -070031
Andreas Gampe6fb5a012016-06-03 16:09:32 -070032#include <android-base/logging.h>
Elliott Hughese4ec9eb2015-12-04 15:39:32 -080033#include <android-base/stringprintf.h>
David Sehr6727c2d2016-05-17 16:06:22 -070034#include <android-base/strings.h>
Roland Levillain64b59cc2016-04-05 16:41:12 +010035#include <android-base/unique_fd.h>
Andreas Gampe02d0de52015-11-11 20:43:16 -080036#include <cutils/fs.h>
37#include <cutils/log.h> // TODO: Move everything to base/logging.
Jeff Sharkey90aff262016-12-12 14:28:24 -070038#include <cutils/properties.h>
Jeff Sharkeye3637242015-04-08 20:56:42 -070039#include <cutils/sched_policy.h>
40#include <diskusage/dirsize.h>
41#include <logwrap/logwrap.h>
Andreas Gampe02d0de52015-11-11 20:43:16 -080042#include <private/android_filesystem_config.h>
Jeff Sharkeye3637242015-04-08 20:56:42 -070043#include <selinux/android.h>
Andreas Gampe02d0de52015-11-11 20:43:16 -080044#include <system/thread_defs.h>
Jeff Sharkeye3637242015-04-08 20:56:42 -070045
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070046#include "dexopt.h"
Jeff Sharkeyf3e30b92016-12-09 17:06:57 -070047#include "globals.h"
48#include "installd_deps.h"
49#include "otapreopt_utils.h"
50#include "utils.h"
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070051
Andreas Gampe02d0de52015-11-11 20:43:16 -080052#ifndef LOG_TAG
53#define LOG_TAG "installd"
54#endif
Jeff Sharkey41ea4242015-04-09 11:34:03 -070055
56using android::base::StringPrintf;
Mike Lockwood94afecf2012-10-24 10:45:23 -070057
Andreas Gampe02d0de52015-11-11 20:43:16 -080058namespace android {
59namespace installd {
Mike Lockwood94afecf2012-10-24 10:45:23 -070060
Jeff Sharkeycc6281c2016-02-06 19:46:09 -070061static constexpr const char* kCpPath = "/system/bin/cp";
62static constexpr const char* kXattrDefault = "user.default";
Jeff Sharkeye3637242015-04-08 20:56:42 -070063
Andreas Gamped089ca12016-06-27 14:25:30 -070064static constexpr const char* PKG_LIB_POSTFIX = "/lib";
65static constexpr const char* CACHE_DIR_POSTFIX = "/cache";
66static constexpr const char* CODE_CACHE_DIR_POSTFIX = "/code_cache";
67
68static constexpr const char* IDMAP_PREFIX = "/data/resource-cache/";
69static constexpr const char* IDMAP_SUFFIX = "@idmap";
70
71// NOTE: keep in sync with StorageManager
72static constexpr int FLAG_STORAGE_DE = 1 << 0;
73static constexpr int FLAG_STORAGE_CE = 1 << 1;
74
75// NOTE: keep in sync with Installer
76static constexpr int FLAG_CLEAR_CACHE_ONLY = 1 << 8;
77static constexpr int FLAG_CLEAR_CODE_CACHE_ONLY = 1 << 9;
78
Andreas Gamped089ca12016-06-27 14:25:30 -070079
Janis Danisevskiseecb2d22016-01-12 14:45:55 +000080#define MIN_RESTRICTED_HOME_SDK_VERSION 24 // > M
Jeff Sharkey0274c972016-12-06 09:32:04 -070081namespace {
82
83constexpr const char* kDump = "android.permission.DUMP";
84
Jeff Sharkey423e7462016-12-09 18:18:43 -070085static binder::Status ok() {
86 return binder::Status::ok();
87}
88
89static binder::Status exception(uint32_t code, const std::string& msg) {
90 return binder::Status::fromExceptionCode(code, String8(msg.c_str()));
91}
92
93static binder::Status error() {
94 return binder::Status::fromServiceSpecificError(errno);
95}
96
97static binder::Status error(const std::string& msg) {
98 PLOG(ERROR) << msg;
99 return binder::Status::fromServiceSpecificError(errno, String8(msg.c_str()));
100}
101
102static binder::Status error(uint32_t code, const std::string& msg) {
103 LOG(ERROR) << msg << " (" << code << ")";
104 return binder::Status::fromServiceSpecificError(code, String8(msg.c_str()));
105}
106
Jeff Sharkey0274c972016-12-06 09:32:04 -0700107binder::Status checkPermission(const char* permission) {
108 pid_t pid;
109 uid_t uid;
110
111 if (checkCallingPermission(String16(permission), reinterpret_cast<int32_t*>(&pid),
112 reinterpret_cast<int32_t*>(&uid))) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700113 return ok();
Jeff Sharkey0274c972016-12-06 09:32:04 -0700114 } else {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700115 return exception(binder::Status::EX_SECURITY,
116 StringPrintf("UID %d / PID %d lacks permission %s", uid, pid, permission));
Jeff Sharkey0274c972016-12-06 09:32:04 -0700117 }
118}
119
120binder::Status checkUid(uid_t expectedUid) {
121 uid_t uid = IPCThreadState::self()->getCallingUid();
122 if (uid == expectedUid || uid == AID_ROOT) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700123 return ok();
Jeff Sharkey0274c972016-12-06 09:32:04 -0700124 } else {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700125 return exception(binder::Status::EX_SECURITY,
126 StringPrintf("UID %d is not expected UID %d", uid, expectedUid));
127 }
128}
129
130binder::Status checkArgumentUuid(const std::unique_ptr<std::string>& uuid) {
131 if (!uuid || is_valid_filename(*uuid)) {
132 return ok();
133 } else {
134 return exception(binder::Status::EX_ILLEGAL_ARGUMENT,
135 StringPrintf("UUID %s is malformed", uuid->c_str()));
136 }
137}
138
139binder::Status checkArgumentPackageName(const std::string& packageName) {
140 if (is_valid_package_name(packageName.c_str())) {
141 return ok();
142 } else {
143 return exception(binder::Status::EX_ILLEGAL_ARGUMENT,
144 StringPrintf("Package name %s is malformed", packageName.c_str()));
Jeff Sharkey0274c972016-12-06 09:32:04 -0700145 }
146}
147
148#define ENFORCE_UID(uid) { \
149 binder::Status status = checkUid((uid)); \
150 if (!status.isOk()) { \
151 return status; \
152 } \
153}
154
Jeff Sharkey423e7462016-12-09 18:18:43 -0700155#define CHECK_ARGUMENT_UUID(uuid) { \
156 binder::Status status = checkArgumentUuid((uuid)); \
157 if (!status.isOk()) { \
158 return status; \
159 } \
160}
161
162#define CHECK_ARGUMENT_PACKAGE_NAME(packageName) { \
163 binder::Status status = \
164 checkArgumentPackageName((packageName)); \
165 if (!status.isOk()) { \
166 return status; \
167 } \
168}
169
Jeff Sharkey0274c972016-12-06 09:32:04 -0700170} // namespace
171
172status_t InstalldNativeService::start() {
173 IPCThreadState::self()->disableBackgroundScheduling(true);
174 status_t ret = BinderService<InstalldNativeService>::publish();
175 if (ret != android::OK) {
176 return ret;
177 }
178 sp<ProcessState> ps(ProcessState::self());
179 ps->startThreadPool();
180 ps->giveThreadPoolName();
181 return android::OK;
182}
183
184status_t InstalldNativeService::dump(int fd, const Vector<String16> & /* args */) {
185 const binder::Status dump_permission = checkPermission(kDump);
186 if (!dump_permission.isOk()) {
187 const String8 msg(dump_permission.toString8());
188 write(fd, msg.string(), msg.size());
189 return PERMISSION_DENIED;
190 }
191
192 std::string msg = "installd is happy\n";
193 write(fd, msg.c_str(), strlen(msg.c_str()));
194 return NO_ERROR;
195}
196
Jeff Sharkey7db60412016-09-20 18:21:42 -0600197/**
198 * Perform restorecon of the given path, but only perform recursive restorecon
199 * if the label of that top-level file actually changed. This can save us
200 * significant time by avoiding no-op traversals of large filesystem trees.
201 */
Jeff Sharkey0274c972016-12-06 09:32:04 -0700202static int restorecon_app_data_lazy(const std::string& path, const std::string& seInfo, uid_t uid) {
Jeff Sharkey7db60412016-09-20 18:21:42 -0600203 int res = 0;
204 char* before = nullptr;
205 char* after = nullptr;
206
207 // Note that SELINUX_ANDROID_RESTORECON_DATADATA flag is set by
208 // libselinux. Not needed here.
209
Jeff Sharkey95d9ac62016-10-31 11:22:19 -0600210 if (lgetfilecon(path.c_str(), &before) < 0) {
Jeff Sharkey7db60412016-09-20 18:21:42 -0600211 PLOG(ERROR) << "Failed before getfilecon for " << path;
212 goto fail;
213 }
Jeff Sharkey0274c972016-12-06 09:32:04 -0700214 if (selinux_android_restorecon_pkgdir(path.c_str(), seInfo.c_str(), uid, 0) < 0) {
Jeff Sharkey7db60412016-09-20 18:21:42 -0600215 PLOG(ERROR) << "Failed top-level restorecon for " << path;
216 goto fail;
217 }
Jeff Sharkey95d9ac62016-10-31 11:22:19 -0600218 if (lgetfilecon(path.c_str(), &after) < 0) {
Jeff Sharkey7db60412016-09-20 18:21:42 -0600219 PLOG(ERROR) << "Failed after getfilecon for " << path;
220 goto fail;
221 }
222
223 // If the initial top-level restorecon above changed the label, then go
224 // back and restorecon everything recursively
225 if (strcmp(before, after)) {
226 LOG(DEBUG) << "Detected label change from " << before << " to " << after << " at " << path
227 << "; running recursive restorecon";
Jeff Sharkey0274c972016-12-06 09:32:04 -0700228 if (selinux_android_restorecon_pkgdir(path.c_str(), seInfo.c_str(), uid,
Jeff Sharkey7db60412016-09-20 18:21:42 -0600229 SELINUX_ANDROID_RESTORECON_RECURSE) < 0) {
230 PLOG(ERROR) << "Failed recursive restorecon for " << path;
231 goto fail;
232 }
233 }
234
235 goto done;
236fail:
237 res = -1;
238done:
239 free(before);
240 free(after);
241 return res;
242}
243
Jeff Sharkey0274c972016-12-06 09:32:04 -0700244static int restorecon_app_data_lazy(const std::string& parent, const char* name,
245 const std::string& seInfo, uid_t uid) {
246 return restorecon_app_data_lazy(StringPrintf("%s/%s", parent.c_str(), name), seInfo, uid);
Jeff Sharkey95d9ac62016-10-31 11:22:19 -0600247}
248
Jeff Sharkey7db60412016-09-20 18:21:42 -0600249static int prepare_app_dir(const std::string& path, mode_t target_mode, uid_t uid) {
Jeff Sharkey9a998f42016-07-14 18:16:22 -0600250 if (fs_prepare_dir_strict(path.c_str(), target_mode, uid, uid) != 0) {
251 PLOG(ERROR) << "Failed to prepare " << path;
252 return -1;
253 }
Jeff Sharkey9a998f42016-07-14 18:16:22 -0600254 return 0;
255}
256
257static int prepare_app_dir(const std::string& parent, const char* name, mode_t target_mode,
Jeff Sharkey7db60412016-09-20 18:21:42 -0600258 uid_t uid) {
259 return prepare_app_dir(StringPrintf("%s/%s", parent.c_str(), name), target_mode, uid);
Jeff Sharkey9a998f42016-07-14 18:16:22 -0600260}
261
Jeff Sharkey0274c972016-12-06 09:32:04 -0700262binder::Status InstalldNativeService::createAppData(const std::unique_ptr<std::string>& uuid,
263 const std::string& packageName, int32_t userId, int32_t flags, int32_t appId,
Jeff Sharkey36a900a2016-12-19 16:39:18 -0700264 const std::string& seInfo, int32_t targetSdkVersion, int64_t* _aidl_return) {
Jeff Sharkey0274c972016-12-06 09:32:04 -0700265 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700266 CHECK_ARGUMENT_UUID(uuid);
267 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
Jeff Sharkey0274c972016-12-06 09:32:04 -0700268
269 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
270 const char* pkgname = packageName.c_str();
271
Jeff Sharkey36a900a2016-12-19 16:39:18 -0700272 // Assume invalid inode unless filled in below
273 if (_aidl_return != nullptr) *_aidl_return = -1;
274
Jeff Sharkey0274c972016-12-06 09:32:04 -0700275 uid_t uid = multiuser_get_uid(userId, appId);
276 mode_t target_mode = targetSdkVersion >= MIN_RESTRICTED_HOME_SDK_VERSION ? 0700 : 0751;
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -0700277 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkey0274c972016-12-06 09:32:04 -0700278 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname);
Jeff Sharkey7db60412016-09-20 18:21:42 -0600279 if (prepare_app_dir(path, target_mode, uid) ||
280 prepare_app_dir(path, "cache", 0771, uid) ||
281 prepare_app_dir(path, "code_cache", 0771, uid)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700282 return error("Failed to prepare " + path);
Jeff Sharkey7db60412016-09-20 18:21:42 -0600283 }
284
285 // Consider restorecon over contents if label changed
Jeff Sharkey0274c972016-12-06 09:32:04 -0700286 if (restorecon_app_data_lazy(path, seInfo, uid) ||
287 restorecon_app_data_lazy(path, "cache", seInfo, uid) ||
288 restorecon_app_data_lazy(path, "code_cache", seInfo, uid)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700289 return error("Failed to restorecon " + path);
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700290 }
Jeff Sharkey9a998f42016-07-14 18:16:22 -0600291
292 // Remember inode numbers of cache directories so that we can clear
293 // contents while CE storage is locked
294 if (write_path_inode(path, "cache", kXattrInodeCache) ||
295 write_path_inode(path, "code_cache", kXattrInodeCodeCache)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700296 return error("Failed to write_path_inode for " + path);
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700297 }
Jeff Sharkey36a900a2016-12-19 16:39:18 -0700298
299 // And return the CE inode of the top-level data directory so we can
300 // clear contents while CE storage is locked
301 if ((_aidl_return != nullptr)
302 && get_path_inode(path, reinterpret_cast<ino_t*>(_aidl_return)) != 0) {
303 return error("Failed to get_path_inode for " + path);
304 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700305 }
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -0700306 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkey0274c972016-12-06 09:32:04 -0700307 auto path = create_data_user_de_package_path(uuid_, userId, pkgname);
Jeff Sharkey7db60412016-09-20 18:21:42 -0600308 if (prepare_app_dir(path, target_mode, uid)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700309 return error("Failed to prepare " + path);
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700310 }
Calin Juravle6a1648e2016-02-01 12:12:16 +0000311
Jeff Sharkey7db60412016-09-20 18:21:42 -0600312 // Consider restorecon over contents if label changed
Jeff Sharkey0274c972016-12-06 09:32:04 -0700313 if (restorecon_app_data_lazy(path, seInfo, uid)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700314 return error("Failed to restorecon " + path);
Jeff Sharkey7db60412016-09-20 18:21:42 -0600315 }
316
Jeff Sharkey90aff262016-12-12 14:28:24 -0700317 if (property_get_bool("dalvik.vm.usejitprofiles", false)) {
Jeff Sharkey0274c972016-12-06 09:32:04 -0700318 const std::string profile_path = create_data_user_profile_package_path(userId, pkgname);
Calin Juravle6a1648e2016-02-01 12:12:16 +0000319 // read-write-execute only for the app user.
320 if (fs_prepare_dir_strict(profile_path.c_str(), 0700, uid, uid) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700321 return error("Failed to prepare " + profile_path);
Calin Juravle6a1648e2016-02-01 12:12:16 +0000322 }
Calin Juravlebc56e7d2016-05-24 15:33:12 +0100323 std::string profile_file = create_primary_profile(profile_path);
324 // read-write only for the app user.
325 if (fs_prepare_file_strict(profile_file.c_str(), 0600, uid, uid) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700326 return error("Failed to prepare " + profile_path);
Calin Juravlebc56e7d2016-05-24 15:33:12 +0100327 }
Calin Juravle6a1648e2016-02-01 12:12:16 +0000328 const std::string ref_profile_path = create_data_ref_profile_package_path(pkgname);
329 // dex2oat/profman runs under the shared app gid and it needs to read/write reference
330 // profiles.
Jeff Sharkey2e6dc9b2016-12-15 14:50:11 -0700331 int shared_app_gid = multiuser_get_shared_app_gid(uid);
332 if ((shared_app_gid != -1) && fs_prepare_dir_strict(
Calin Juravle6a1648e2016-02-01 12:12:16 +0000333 ref_profile_path.c_str(), 0700, shared_app_gid, shared_app_gid) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700334 return error("Failed to prepare " + ref_profile_path);
Calin Juravle6a1648e2016-02-01 12:12:16 +0000335 }
336 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700337 }
Jeff Sharkey423e7462016-12-09 18:18:43 -0700338 return ok();
Mike Lockwood94afecf2012-10-24 10:45:23 -0700339}
340
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700341binder::Status InstalldNativeService::migrateAppData(const std::unique_ptr<std::string>& uuid,
342 const std::string& packageName, int32_t userId, int32_t flags) {
343 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700344 CHECK_ARGUMENT_UUID(uuid);
345 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
346
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700347 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
348 const char* pkgname = packageName.c_str();
349
Jeff Sharkeycc6281c2016-02-06 19:46:09 -0700350 // This method only exists to upgrade system apps that have requested
351 // forceDeviceEncrypted, so their default storage always lives in a
352 // consistent location. This only works on non-FBE devices, since we
353 // never want to risk exposing data on a device with real CE/DE storage.
354
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700355 auto ce_path = create_data_user_ce_package_path(uuid_, userId, pkgname);
356 auto de_path = create_data_user_de_package_path(uuid_, userId, pkgname);
Jeff Sharkeycc6281c2016-02-06 19:46:09 -0700357
358 // If neither directory is marked as default, assume CE is default
359 if (getxattr(ce_path.c_str(), kXattrDefault, nullptr, 0) == -1
360 && getxattr(de_path.c_str(), kXattrDefault, nullptr, 0) == -1) {
361 if (setxattr(ce_path.c_str(), kXattrDefault, nullptr, 0, 0) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700362 return error("Failed to mark default storage " + ce_path);
Jeff Sharkeycc6281c2016-02-06 19:46:09 -0700363 }
364 }
365
366 // Migrate default data location if needed
367 auto target = (flags & FLAG_STORAGE_DE) ? de_path : ce_path;
368 auto source = (flags & FLAG_STORAGE_DE) ? ce_path : de_path;
369
370 if (getxattr(target.c_str(), kXattrDefault, nullptr, 0) == -1) {
371 LOG(WARNING) << "Requested default storage " << target
372 << " is not active; migrating from " << source;
373 if (delete_dir_contents_and_dir(target) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700374 return error("Failed to delete " + target);
Jeff Sharkeycc6281c2016-02-06 19:46:09 -0700375 }
376 if (rename(source.c_str(), target.c_str()) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700377 return error("Failed to rename " + source + " to " + target);
Jeff Sharkeycc6281c2016-02-06 19:46:09 -0700378 }
379 }
380
Jeff Sharkey423e7462016-12-09 18:18:43 -0700381 return ok();
Jeff Sharkeycc6281c2016-02-06 19:46:09 -0700382}
383
Calin Juravle6a1648e2016-02-01 12:12:16 +0000384
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700385binder::Status InstalldNativeService::clearAppProfiles(const std::string& packageName) {
386 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700387 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
388
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700389 const char* pkgname = packageName.c_str();
Jeff Sharkey423e7462016-12-09 18:18:43 -0700390 binder::Status res = ok();
391 if (!clear_reference_profile(pkgname)) {
392 res = error("Failed to clear reference profile for " + packageName);
393 }
394 if (!clear_current_profiles(pkgname)) {
395 res = error("Failed to clear current profiles for " + packageName);
396 }
397 return res;
Calin Juravle6a1648e2016-02-01 12:12:16 +0000398}
399
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700400binder::Status InstalldNativeService::clearAppData(const std::unique_ptr<std::string>& uuid,
401 const std::string& packageName, int32_t userId, int32_t flags, int64_t ceDataInode) {
402 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700403 CHECK_ARGUMENT_UUID(uuid);
404 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
405
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700406 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
407 const char* pkgname = packageName.c_str();
408
Jeff Sharkey423e7462016-12-09 18:18:43 -0700409 binder::Status res = ok();
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -0700410 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700411 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname, ceDataInode);
Jeff Sharkey9a998f42016-07-14 18:16:22 -0600412 if (flags & FLAG_CLEAR_CACHE_ONLY) {
413 path = read_path_inode(path, "cache", kXattrInodeCache);
414 } else if (flags & FLAG_CLEAR_CODE_CACHE_ONLY) {
415 path = read_path_inode(path, "code_cache", kXattrInodeCodeCache);
416 }
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700417 if (access(path.c_str(), F_OK) == 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700418 if (delete_dir_contents(path) != 0) {
419 res = error("Failed to delete contents of " + path);
420 }
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700421 }
422 }
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -0700423 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkey9a998f42016-07-14 18:16:22 -0600424 std::string suffix = "";
425 bool only_cache = false;
426 if (flags & FLAG_CLEAR_CACHE_ONLY) {
427 suffix = CACHE_DIR_POSTFIX;
428 only_cache = true;
429 } else if (flags & FLAG_CLEAR_CODE_CACHE_ONLY) {
430 suffix = CODE_CACHE_DIR_POSTFIX;
431 only_cache = true;
432 }
433
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700434 auto path = create_data_user_de_package_path(uuid_, userId, pkgname) + suffix;
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700435 if (access(path.c_str(), F_OK) == 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700436 if (delete_dir_contents(path) != 0) {
437 res = error("Failed to delete contents of " + path);
438 }
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700439 }
Calin Juravleedae6692016-03-23 13:55:31 +0000440 if (!only_cache) {
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700441 if (!clear_current_profile(pkgname, userId)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700442 res = error("Failed to clear current profile for " + packageName);
Calin Juravleedae6692016-03-23 13:55:31 +0000443 }
444 }
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700445 }
Jeff Sharkey423e7462016-12-09 18:18:43 -0700446 return res;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700447}
448
Calin Juravle7535e8e2016-03-29 16:05:40 +0100449static int destroy_app_reference_profile(const char *pkgname) {
450 return delete_dir_contents_and_dir(
451 create_data_ref_profile_package_path(pkgname),
452 /*ignore_if_missing*/ true);
453}
454
Calin Juravleedae6692016-03-23 13:55:31 +0000455static int destroy_app_current_profiles(const char *pkgname, userid_t userid) {
Calin Juravleb06f98a2016-03-28 15:11:01 +0100456 return delete_dir_contents_and_dir(
457 create_data_user_profile_package_path(userid, pkgname),
458 /*ignore_if_missing*/ true);
Calin Juravleedae6692016-03-23 13:55:31 +0000459}
460
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700461binder::Status InstalldNativeService::destroyAppProfiles(const std::string& packageName) {
462 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700463 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
464
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700465 const char* pkgname = packageName.c_str();
Jeff Sharkey423e7462016-12-09 18:18:43 -0700466 binder::Status res = ok();
Calin Juravleedae6692016-03-23 13:55:31 +0000467 std::vector<userid_t> users = get_known_users(/*volume_uuid*/ nullptr);
468 for (auto user : users) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700469 if (destroy_app_current_profiles(pkgname, user) != 0) {
470 res = error("Failed to destroy current profiles for " + packageName);
471 }
Calin Juravleedae6692016-03-23 13:55:31 +0000472 }
Jeff Sharkey423e7462016-12-09 18:18:43 -0700473 if (destroy_app_reference_profile(pkgname) != 0) {
474 res = error("Failed to destroy reference profile for " + packageName);
475 }
476 return res;
Calin Juravlecaa6b802016-03-22 14:15:52 +0000477}
478
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700479binder::Status InstalldNativeService::destroyAppData(const std::unique_ptr<std::string>& uuid,
480 const std::string& packageName, int32_t userId, int32_t flags, int64_t ceDataInode) {
481 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700482 CHECK_ARGUMENT_UUID(uuid);
483 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
484
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700485 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
486 const char* pkgname = packageName.c_str();
487
Jeff Sharkey423e7462016-12-09 18:18:43 -0700488 binder::Status res = ok();
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -0700489 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700490 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname, ceDataInode);
491 if (delete_dir_contents_and_dir(path) != 0) {
492 res = error("Failed to delete " + path);
493 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700494 }
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -0700495 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700496 auto path = create_data_user_de_package_path(uuid_, userId, pkgname);
497 if (delete_dir_contents_and_dir(path) != 0) {
498 res = error("Failed to delete " + path);
499 }
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700500 destroy_app_current_profiles(pkgname, userId);
Calin Juravle7535e8e2016-03-29 16:05:40 +0100501 // TODO(calin): If the package is still installed by other users it's probably
502 // beneficial to keep the reference profile around.
503 // Verify if it's ok to do that.
504 destroy_app_reference_profile(pkgname);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700505 }
Jeff Sharkey423e7462016-12-09 18:18:43 -0700506 return res;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700507}
508
Jeff Sharkey0274c972016-12-06 09:32:04 -0700509binder::Status InstalldNativeService::moveCompleteApp(const std::unique_ptr<std::string>& fromUuid,
510 const std::unique_ptr<std::string>& toUuid, const std::string& packageName,
511 const std::string& dataAppName, int32_t appId, const std::string& seInfo,
512 int32_t targetSdkVersion) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700513 ENFORCE_UID(AID_SYSTEM);
514 CHECK_ARGUMENT_UUID(fromUuid);
515 CHECK_ARGUMENT_UUID(toUuid);
516 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
Jeff Sharkey0274c972016-12-06 09:32:04 -0700517
518 const char* from_uuid = fromUuid ? fromUuid->c_str() : nullptr;
519 const char* to_uuid = toUuid ? toUuid->c_str() : nullptr;
520 const char* package_name = packageName.c_str();
521 const char* data_app_name = dataAppName.c_str();
Jeff Sharkey0274c972016-12-06 09:32:04 -0700522
Jeff Sharkey423e7462016-12-09 18:18:43 -0700523 binder::Status res = ok();
Jeff Sharkeye3637242015-04-08 20:56:42 -0700524 std::vector<userid_t> users = get_known_users(from_uuid);
525
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700526 // Copy app
527 {
Jeff Sharkey51c94492016-05-10 17:46:39 -0600528 auto from = create_data_app_package_path(from_uuid, data_app_name);
529 auto to = create_data_app_package_path(to_uuid, data_app_name);
530 auto to_parent = create_data_app_path(to_uuid);
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700531
532 char *argv[] = {
533 (char*) kCpPath,
534 (char*) "-F", /* delete any existing destination file first (--remove-destination) */
535 (char*) "-p", /* preserve timestamps, ownership, and permissions */
536 (char*) "-R", /* recurse into subdirectories (DEST must be a directory) */
537 (char*) "-P", /* Do not follow symlinks [default] */
538 (char*) "-d", /* don't dereference symlinks */
539 (char*) from.c_str(),
540 (char*) to_parent.c_str()
541 };
542
543 LOG(DEBUG) << "Copying " << from << " to " << to;
544 int rc = android_fork_execvp(ARRAY_SIZE(argv), argv, NULL, false, true);
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700545 if (rc != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700546 res = error(rc, "Failed copying " + from + " to " + to);
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700547 goto fail;
548 }
549
550 if (selinux_android_restorecon(to.c_str(), SELINUX_ANDROID_RESTORECON_RECURSE) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700551 res = error("Failed to restorecon " + to);
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700552 goto fail;
553 }
554 }
555
556 // Copy private data for all known users
Jeff Sharkeye3637242015-04-08 20:56:42 -0700557 for (auto user : users) {
Jeff Sharkeye3637242015-04-08 20:56:42 -0700558
559 // Data source may not exist for all users; that's okay
Jeff Sharkey51c94492016-05-10 17:46:39 -0600560 auto from_ce = create_data_user_ce_package_path(from_uuid, user, package_name);
561 if (access(from_ce.c_str(), F_OK) != 0) {
562 LOG(INFO) << "Missing source " << from_ce;
Jeff Sharkeye3637242015-04-08 20:56:42 -0700563 continue;
564 }
565
Jeff Sharkey0274c972016-12-06 09:32:04 -0700566 if (!createAppData(toUuid, packageName, user, FLAG_STORAGE_CE | FLAG_STORAGE_DE, appId,
Jeff Sharkey36a900a2016-12-19 16:39:18 -0700567 seInfo, targetSdkVersion, nullptr).isOk()) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700568 res = error("Failed to create package target");
Jeff Sharkeye3637242015-04-08 20:56:42 -0700569 goto fail;
570 }
571
572 char *argv[] = {
573 (char*) kCpPath,
574 (char*) "-F", /* delete any existing destination file first (--remove-destination) */
575 (char*) "-p", /* preserve timestamps, ownership, and permissions */
576 (char*) "-R", /* recurse into subdirectories (DEST must be a directory) */
577 (char*) "-P", /* Do not follow symlinks [default] */
578 (char*) "-d", /* don't dereference symlinks */
Jeff Sharkey51c94492016-05-10 17:46:39 -0600579 nullptr,
580 nullptr
Jeff Sharkeye3637242015-04-08 20:56:42 -0700581 };
582
Jeff Sharkey51c94492016-05-10 17:46:39 -0600583 {
584 auto from = create_data_user_de_package_path(from_uuid, user, package_name);
585 auto to = create_data_user_de_path(to_uuid, user);
586 argv[6] = (char*) from.c_str();
587 argv[7] = (char*) to.c_str();
Jeff Sharkeye3637242015-04-08 20:56:42 -0700588
Jeff Sharkey51c94492016-05-10 17:46:39 -0600589 LOG(DEBUG) << "Copying " << from << " to " << to;
590 int rc = android_fork_execvp(ARRAY_SIZE(argv), argv, NULL, false, true);
591 if (rc != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700592 res = error(rc, "Failed copying " + from + " to " + to);
Jeff Sharkey51c94492016-05-10 17:46:39 -0600593 goto fail;
594 }
595 }
596 {
597 auto from = create_data_user_ce_package_path(from_uuid, user, package_name);
598 auto to = create_data_user_ce_path(to_uuid, user);
599 argv[6] = (char*) from.c_str();
600 argv[7] = (char*) to.c_str();
601
602 LOG(DEBUG) << "Copying " << from << " to " << to;
603 int rc = android_fork_execvp(ARRAY_SIZE(argv), argv, NULL, false, true);
604 if (rc != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700605 res = error(rc, "Failed copying " + from + " to " + to);
Jeff Sharkey51c94492016-05-10 17:46:39 -0600606 goto fail;
607 }
Jeff Sharkeye3637242015-04-08 20:56:42 -0700608 }
609
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700610 if (!restoreconAppData(toUuid, packageName, user, FLAG_STORAGE_CE | FLAG_STORAGE_DE,
611 appId, seInfo).isOk()) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700612 res = error("Failed to restorecon");
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -0700613 goto fail;
614 }
Jeff Sharkeye3637242015-04-08 20:56:42 -0700615 }
616
Jeff Sharkey31f08982015-07-07 13:31:37 -0700617 // We let the framework scan the new location and persist that before
618 // deleting the data in the old location; this ordering ensures that
619 // we can recover from things like battery pulls.
Jeff Sharkey423e7462016-12-09 18:18:43 -0700620 return ok();
Jeff Sharkeye3637242015-04-08 20:56:42 -0700621
622fail:
623 // Nuke everything we might have already copied
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700624 {
Jeff Sharkey51c94492016-05-10 17:46:39 -0600625 auto to = create_data_app_package_path(to_uuid, data_app_name);
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700626 if (delete_dir_contents(to.c_str(), 1, NULL) != 0) {
627 LOG(WARNING) << "Failed to rollback " << to;
628 }
629 }
Jeff Sharkeye3637242015-04-08 20:56:42 -0700630 for (auto user : users) {
Jeff Sharkey51c94492016-05-10 17:46:39 -0600631 {
632 auto to = create_data_user_de_package_path(to_uuid, user, package_name);
633 if (delete_dir_contents(to.c_str(), 1, NULL) != 0) {
634 LOG(WARNING) << "Failed to rollback " << to;
635 }
636 }
637 {
638 auto to = create_data_user_ce_package_path(to_uuid, user, package_name);
639 if (delete_dir_contents(to.c_str(), 1, NULL) != 0) {
640 LOG(WARNING) << "Failed to rollback " << to;
641 }
Jeff Sharkeye3637242015-04-08 20:56:42 -0700642 }
643 }
Jeff Sharkey423e7462016-12-09 18:18:43 -0700644 return res;
Jeff Sharkeye3637242015-04-08 20:56:42 -0700645}
646
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700647binder::Status InstalldNativeService::createUserData(const std::unique_ptr<std::string>& uuid,
648 int32_t userId, int32_t userSerial ATTRIBUTE_UNUSED, int32_t flags) {
649 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700650 CHECK_ARGUMENT_UUID(uuid);
651
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700652 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
Jeff Sharkey379a12b2016-04-14 20:45:06 -0600653 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700654 if (uuid_ == nullptr) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700655 if (ensure_config_user_dirs(userId) != 0) {
Jeff Sharkey7be5ead2016-12-12 13:18:46 -0700656 return error(StringPrintf("Failed to ensure dirs for %d", userId));
Jeff Sharkey423e7462016-12-09 18:18:43 -0700657 }
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700658 }
659 }
Jeff Sharkey7be5ead2016-12-12 13:18:46 -0700660 return ok();
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700661}
662
663binder::Status InstalldNativeService::destroyUserData(const std::unique_ptr<std::string>& uuid,
664 int32_t userId, int32_t flags) {
665 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700666 CHECK_ARGUMENT_UUID(uuid);
667
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700668 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
Jeff Sharkey423e7462016-12-09 18:18:43 -0700669 binder::Status res = ok();
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700670 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700671 auto path = create_data_user_de_path(uuid_, userId);
672 if (delete_dir_contents_and_dir(path, true) != 0) {
673 res = error("Failed to delete " + path);
674 }
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -0700675 if (uuid_ == nullptr) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700676 path = create_data_misc_legacy_path(userId);
677 if (delete_dir_contents_and_dir(path, true) != 0) {
678 res = error("Failed to delete " + path);
679 }
680 path = create_data_user_profiles_path(userId);
681 if (delete_dir_contents_and_dir(path, true) != 0) {
682 res = error("Failed to delete " + path);
683 }
Jeff Sharkey41ea4242015-04-09 11:34:03 -0700684 }
Robin Lee095c7632014-04-25 15:05:19 +0100685 }
Jeff Sharkey379a12b2016-04-14 20:45:06 -0600686 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700687 auto path = create_data_user_ce_path(uuid_, userId);
688 if (delete_dir_contents_and_dir(path, true) != 0) {
689 res = error("Failed to delete " + path);
690 }
691 path = create_data_media_path(uuid_, userId);
692 if (delete_dir_contents_and_dir(path, true) != 0) {
693 res = error("Failed to delete " + path);
694 }
Jeff Sharkey379a12b2016-04-14 20:45:06 -0600695 }
Jeff Sharkey423e7462016-12-09 18:18:43 -0700696 return res;
Robin Lee095c7632014-04-25 15:05:19 +0100697}
698
Mike Lockwood94afecf2012-10-24 10:45:23 -0700699/* Try to ensure free_size bytes of storage are available.
700 * Returns 0 on success.
701 * This is rather simple-minded because doing a full LRU would
702 * be potentially memory-intensive, and without atime it would
703 * also require that apps constantly modify file metadata even
704 * when just reading from the cache, which is pretty awful.
705 */
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700706binder::Status InstalldNativeService::freeCache(const std::unique_ptr<std::string>& uuid,
707 int64_t freeStorageSize) {
708 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700709 CHECK_ARGUMENT_UUID(uuid);
710
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700711 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700712 cache_t* cache;
713 int64_t avail;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700714
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700715 auto data_path = create_data_path(uuid_);
Jeff Sharkey41ea4242015-04-09 11:34:03 -0700716
717 avail = data_disk_free(data_path);
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700718 if (avail < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700719 return error("Failed to determine free space for " + data_path);
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700720 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700721
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700722 ALOGI("free_cache(%" PRId64 ") avail %" PRId64 "\n", freeStorageSize, avail);
723 if (avail >= freeStorageSize) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700724 return ok();
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700725 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700726
727 cache = start_cache_collection();
728
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700729 auto users = get_known_users(uuid_);
Jeff Sharkey54e292e2016-05-10 17:21:13 -0600730 for (auto user : users) {
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700731 add_cache_files(cache, create_data_user_ce_path(uuid_, user));
732 add_cache_files(cache, create_data_user_de_path(uuid_, user));
Jeff Sharkey54e292e2016-05-10 17:21:13 -0600733 add_cache_files(cache,
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700734 StringPrintf("%s/Android/data", create_data_media_path(uuid_, user).c_str()));
Mike Lockwood94afecf2012-10-24 10:45:23 -0700735 }
736
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700737 clear_cache_files(data_path, cache, freeStorageSize);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700738 finish_cache_collection(cache);
739
Jeff Sharkey423e7462016-12-09 18:18:43 -0700740 avail = data_disk_free(data_path);
741 if (avail >= freeStorageSize) {
742 return ok();
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700743 } else {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700744 return error(StringPrintf("Failed to free up %" PRId64 " on %s; final free space %" PRId64,
745 freeStorageSize, data_path.c_str(), avail));
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700746 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700747}
748
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700749binder::Status InstalldNativeService::rmdex(const std::string& codePath,
750 const std::string& instructionSet) {
751 ENFORCE_UID(AID_SYSTEM);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700752 char dex_path[PKG_PATH_MAX];
753
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700754 const char* path = codePath.c_str();
755 const char* instruction_set = instructionSet.c_str();
756
Jeff Sharkey770180a2014-09-08 17:14:26 -0700757 if (validate_apk_path(path) && validate_system_app_path(path)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700758 return error("Invalid path " + codePath);
Jeff Sharkey770180a2014-09-08 17:14:26 -0700759 }
760
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700761 if (!create_cache_path(dex_path, path, instruction_set)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700762 return error("Failed to create cache path for " + codePath);
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700763 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700764
765 ALOGV("unlink %s\n", dex_path);
766 if (unlink(dex_path) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700767 return error(StringPrintf("Failed to unlink %s", dex_path));
Mike Lockwood94afecf2012-10-24 10:45:23 -0700768 } else {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700769 return ok();
Mike Lockwood94afecf2012-10-24 10:45:23 -0700770 }
771}
772
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600773static void add_app_data_size(std::string& path, int64_t *codesize, int64_t *datasize,
774 int64_t *cachesize) {
Mike Lockwood94afecf2012-10-24 10:45:23 -0700775 DIR *d;
776 int dfd;
777 struct dirent *de;
778 struct stat s;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700779
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600780 d = opendir(path.c_str());
781 if (d == nullptr) {
782 PLOG(WARNING) << "Failed to open " << path;
783 return;
784 }
785 dfd = dirfd(d);
786 while ((de = readdir(d))) {
787 const char *name = de->d_name;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700788
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600789 int64_t statsize = 0;
790 if (fstatat(dfd, name, &s, AT_SYMLINK_NOFOLLOW) == 0) {
791 statsize = stat_size(&s);
792 }
793
794 if (de->d_type == DT_DIR) {
795 int subfd;
796 int64_t dirsize = 0;
797 /* always skip "." and ".." */
798 if (name[0] == '.') {
799 if (name[1] == 0) continue;
800 if ((name[1] == '.') && (name[2] == 0)) continue;
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700801 }
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600802 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY);
803 if (subfd >= 0) {
804 dirsize = calculate_dir_size(subfd);
805 close(subfd);
806 }
807 // TODO: check xattrs!
808 if (!strcmp(name, "cache") || !strcmp(name, "code_cache")) {
809 *datasize += statsize;
810 *cachesize += dirsize;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700811 } else {
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600812 *datasize += dirsize + statsize;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700813 }
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600814 } else if (de->d_type == DT_LNK && !strcmp(name, "lib")) {
815 *codesize += statsize;
816 } else {
817 *datasize += statsize;
Mike Lockwood94afecf2012-10-24 10:45:23 -0700818 }
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600819 }
820 closedir(d);
821}
822
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700823binder::Status InstalldNativeService::getAppSize(const std::unique_ptr<std::string>& uuid,
Jeff Sharkey423e7462016-12-09 18:18:43 -0700824 const std::string& packageName, int32_t userId, int32_t flags, int64_t ceDataInode,
825 const std::string& codePath, std::vector<int64_t>* _aidl_return) {
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700826 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700827 CHECK_ARGUMENT_UUID(uuid);
828 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
829
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700830 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
831 const char* pkgname = packageName.c_str();
832 const char* code_path = codePath.c_str();
833
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600834 DIR *d;
835 int dfd;
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700836 int64_t codesize = 0;
837 int64_t datasize = 0;
838 int64_t cachesize = 0;
839 int64_t asecsize = 0;
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600840
841 d = opendir(code_path);
842 if (d != nullptr) {
843 dfd = dirfd(d);
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700844 codesize += calculate_dir_size(dfd);
Jeff Sharkeyd7921182015-04-30 15:58:19 -0700845 closedir(d);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700846 }
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600847
848 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700849 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname, ceDataInode);
850 add_app_data_size(path, &codesize, &datasize, &cachesize);
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600851 }
852 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700853 auto path = create_data_user_de_package_path(uuid_, userId, pkgname);
854 add_app_data_size(path, &codesize, &datasize, &cachesize);
Jeff Sharkey2f720f72016-04-10 20:51:40 -0600855 }
856
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700857 std::vector<int64_t> res;
858 res.push_back(codesize);
859 res.push_back(datasize);
860 res.push_back(cachesize);
861 res.push_back(asecsize);
862 *_aidl_return = res;
Jeff Sharkey423e7462016-12-09 18:18:43 -0700863 return ok();
Mike Lockwood94afecf2012-10-24 10:45:23 -0700864}
865
David Sehr6727c2d2016-05-17 16:06:22 -0700866// Dumps the contents of a profile file, using pkgname's dex files for pretty
867// printing the result.
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700868binder::Status InstalldNativeService::dumpProfiles(int32_t uid, const std::string& packageName,
869 const std::string& codePaths, bool* _aidl_return) {
870 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700871 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700872
873 const char* pkgname = packageName.c_str();
Jeff Sharkey90aff262016-12-12 14:28:24 -0700874 const char* code_paths = codePaths.c_str();
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700875
Jeff Sharkey90aff262016-12-12 14:28:24 -0700876 *_aidl_return = dump_profiles(uid, pkgname, code_paths);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700877 return ok();
David Sehr6727c2d2016-05-17 16:06:22 -0700878}
879
Andreas Gampe4d0f8252016-03-20 11:30:28 -0700880// TODO: Consider returning error codes.
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700881binder::Status InstalldNativeService::mergeProfiles(int32_t uid, const std::string& packageName,
Jeff Sharkey423e7462016-12-09 18:18:43 -0700882 bool* _aidl_return) {
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700883 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700884 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
885
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700886 const char* pkgname = packageName.c_str();
887 *_aidl_return = analyse_profiles(uid, pkgname);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700888 return ok();
Andreas Gampe4d0f8252016-03-20 11:30:28 -0700889}
890
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700891binder::Status InstalldNativeService::dexopt(const std::string& apkPath, int32_t uid,
892 const std::unique_ptr<std::string>& packageName, const std::string& instructionSet,
893 int32_t dexoptNeeded, const std::unique_ptr<std::string>& outputPath, int32_t dexFlags,
894 const std::string& compilerFilter, const std::unique_ptr<std::string>& uuid,
895 const std::unique_ptr<std::string>& sharedLibraries) {
896 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700897 CHECK_ARGUMENT_UUID(uuid);
898 if (packageName && *packageName != "*") {
899 CHECK_ARGUMENT_PACKAGE_NAME(*packageName);
900 }
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700901
902 const char* apk_path = apkPath.c_str();
903 const char* pkgname = packageName ? packageName->c_str() : "*";
904 const char* instruction_set = instructionSet.c_str();
905 const char* oat_dir = outputPath ? outputPath->c_str() : nullptr;
906 const char* compiler_filter = compilerFilter.c_str();
907 const char* volume_uuid = uuid ? uuid->c_str() : nullptr;
908 const char* shared_libraries = sharedLibraries ? sharedLibraries->c_str() : nullptr;
909
910 int res = android::installd::dexopt(apk_path, uid, pkgname, instruction_set, dexoptNeeded,
911 oat_dir, dexFlags, compiler_filter, volume_uuid, shared_libraries);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700912 return res ? error(res, "Failed to dexopt") : ok();
Jeff Sharkey6c2c0562016-12-07 12:12:00 -0700913}
914
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700915binder::Status InstalldNativeService::markBootComplete(const std::string& instructionSet) {
916 ENFORCE_UID(AID_SYSTEM);
917 const char* instruction_set = instructionSet.c_str();
918
919 char boot_marker_path[PKG_PATH_MAX];
920 sprintf(boot_marker_path,
Andreas Gampe02d0de52015-11-11 20:43:16 -0800921 "%s/%s/%s/.booting",
922 android_data_dir.path,
923 DALVIK_CACHE,
924 instruction_set);
Narayan Kamath091ea772014-11-10 15:03:46 +0000925
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700926 ALOGV("mark_boot_complete : %s", boot_marker_path);
927 if (unlink(boot_marker_path) != 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700928 return error(StringPrintf("Failed to unlink %s", boot_marker_path));
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700929 }
Jeff Sharkey423e7462016-12-09 18:18:43 -0700930 return ok();
Narayan Kamath091ea772014-11-10 15:03:46 +0000931}
932
Mike Lockwood94afecf2012-10-24 10:45:23 -0700933void mkinnerdirs(char* path, int basepos, mode_t mode, int uid, int gid,
934 struct stat* statbuf)
935{
936 while (path[basepos] != 0) {
937 if (path[basepos] == '/') {
938 path[basepos] = 0;
939 if (lstat(path, statbuf) < 0) {
940 ALOGV("Making directory: %s\n", path);
941 if (mkdir(path, mode) == 0) {
942 chown(path, uid, gid);
943 } else {
944 ALOGW("Unable to make directory %s: %s\n", path, strerror(errno));
945 }
946 }
947 path[basepos] = '/';
948 basepos++;
949 }
950 basepos++;
951 }
952}
953
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700954binder::Status InstalldNativeService::linkNativeLibraryDirectory(
955 const std::unique_ptr<std::string>& uuid, const std::string& packageName,
956 const std::string& nativeLibPath32, int32_t userId) {
957 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -0700958 CHECK_ARGUMENT_UUID(uuid);
959 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
960
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700961 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
962 const char* pkgname = packageName.c_str();
963 const char* asecLibDir = nativeLibPath32.c_str();
Mike Lockwood94afecf2012-10-24 10:45:23 -0700964 struct stat s, libStat;
Jeff Sharkey423e7462016-12-09 18:18:43 -0700965 binder::Status res = ok();
Mike Lockwood94afecf2012-10-24 10:45:23 -0700966
Jeff Sharkey423e7462016-12-09 18:18:43 -0700967 auto _pkgdir = create_data_user_ce_package_path(uuid_, userId, pkgname);
968 auto _libsymlink = _pkgdir + PKG_LIB_POSTFIX;
Jeff Sharkeyc03de092015-04-07 18:14:05 -0700969
970 const char* pkgdir = _pkgdir.c_str();
971 const char* libsymlink = _libsymlink.c_str();
Mike Lockwood94afecf2012-10-24 10:45:23 -0700972
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700973 if (stat(pkgdir, &s) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700974 return error("Failed to stat " + _pkgdir);
Jeff Sharkey475c6f92016-12-07 10:37:27 -0700975 }
Mike Lockwood94afecf2012-10-24 10:45:23 -0700976
977 if (chown(pkgdir, AID_INSTALL, AID_INSTALL) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700978 return error("Failed to chown " + _pkgdir);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700979 }
980
981 if (chmod(pkgdir, 0700) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700982 res = error("Failed to chmod " + _pkgdir);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700983 goto out;
984 }
985
986 if (lstat(libsymlink, &libStat) < 0) {
987 if (errno != ENOENT) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700988 res = error("Failed to stat " + _libsymlink);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700989 goto out;
990 }
991 } else {
992 if (S_ISDIR(libStat.st_mode)) {
Narayan Kamath3aee2c52014-06-10 13:16:47 +0100993 if (delete_dir_contents(libsymlink, 1, NULL) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700994 res = error("Failed to delete " + _libsymlink);
Mike Lockwood94afecf2012-10-24 10:45:23 -0700995 goto out;
996 }
997 } else if (S_ISLNK(libStat.st_mode)) {
998 if (unlink(libsymlink) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -0700999 res = error("Failed to unlink " + _libsymlink);
Mike Lockwood94afecf2012-10-24 10:45:23 -07001000 goto out;
1001 }
1002 }
1003 }
1004
1005 if (symlink(asecLibDir, libsymlink) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001006 res = error("Failed to symlink " + _libsymlink + " to " + nativeLibPath32);
Mike Lockwood94afecf2012-10-24 10:45:23 -07001007 goto out;
1008 }
1009
1010out:
1011 if (chmod(pkgdir, s.st_mode) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001012 auto msg = "Failed to cleanup chmod " + _pkgdir;
1013 if (res.isOk()) {
1014 res = error(msg);
1015 } else {
1016 PLOG(ERROR) << msg;
1017 }
Mike Lockwood94afecf2012-10-24 10:45:23 -07001018 }
1019
1020 if (chown(pkgdir, s.st_uid, s.st_gid) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001021 auto msg = "Failed to cleanup chown " + _pkgdir;
1022 if (res.isOk()) {
1023 res = error(msg);
1024 } else {
1025 PLOG(ERROR) << msg;
1026 }
Mike Lockwood94afecf2012-10-24 10:45:23 -07001027 }
1028
Jeff Sharkey423e7462016-12-09 18:18:43 -07001029 return res;
Mike Lockwood94afecf2012-10-24 10:45:23 -07001030}
MÃ¥rten Kongstad63568b12014-01-31 14:42:59 +01001031
1032static void run_idmap(const char *target_apk, const char *overlay_apk, int idmap_fd)
1033{
1034 static const char *IDMAP_BIN = "/system/bin/idmap";
1035 static const size_t MAX_INT_LEN = 32;
1036 char idmap_str[MAX_INT_LEN];
1037
1038 snprintf(idmap_str, sizeof(idmap_str), "%d", idmap_fd);
1039
1040 execl(IDMAP_BIN, IDMAP_BIN, "--fd", target_apk, overlay_apk, idmap_str, (char*)NULL);
1041 ALOGE("execl(%s) failed: %s\n", IDMAP_BIN, strerror(errno));
1042}
1043
1044// Transform string /a/b/c.apk to (prefix)/a@b@c.apk@(suffix)
1045// eg /a/b/c.apk to /data/resource-cache/a@b@c.apk@idmap
1046static int flatten_path(const char *prefix, const char *suffix,
1047 const char *overlay_path, char *idmap_path, size_t N)
1048{
1049 if (overlay_path == NULL || idmap_path == NULL) {
1050 return -1;
1051 }
1052 const size_t len_overlay_path = strlen(overlay_path);
1053 // will access overlay_path + 1 further below; requires absolute path
1054 if (len_overlay_path < 2 || *overlay_path != '/') {
1055 return -1;
1056 }
1057 const size_t len_idmap_root = strlen(prefix);
1058 const size_t len_suffix = strlen(suffix);
1059 if (SIZE_MAX - len_idmap_root < len_overlay_path ||
1060 SIZE_MAX - (len_idmap_root + len_overlay_path) < len_suffix) {
1061 // additions below would cause overflow
1062 return -1;
1063 }
1064 if (N < len_idmap_root + len_overlay_path + len_suffix) {
1065 return -1;
1066 }
1067 memset(idmap_path, 0, N);
1068 snprintf(idmap_path, N, "%s%s%s", prefix, overlay_path + 1, suffix);
1069 char *ch = idmap_path + len_idmap_root;
1070 while (*ch != '\0') {
1071 if (*ch == '/') {
1072 *ch = '@';
1073 }
1074 ++ch;
1075 }
1076 return 0;
1077}
1078
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001079binder::Status InstalldNativeService::idmap(const std::string& targetApkPath,
1080 const std::string& overlayApkPath, int32_t uid) {
1081 ENFORCE_UID(AID_SYSTEM);
1082 const char* target_apk = targetApkPath.c_str();
1083 const char* overlay_apk = overlayApkPath.c_str();
MÃ¥rten Kongstad63568b12014-01-31 14:42:59 +01001084 ALOGV("idmap target_apk=%s overlay_apk=%s uid=%d\n", target_apk, overlay_apk, uid);
1085
1086 int idmap_fd = -1;
1087 char idmap_path[PATH_MAX];
1088
1089 if (flatten_path(IDMAP_PREFIX, IDMAP_SUFFIX, overlay_apk,
1090 idmap_path, sizeof(idmap_path)) == -1) {
1091 ALOGE("idmap cannot generate idmap path for overlay %s\n", overlay_apk);
1092 goto fail;
1093 }
1094
1095 unlink(idmap_path);
1096 idmap_fd = open(idmap_path, O_RDWR | O_CREAT | O_EXCL, 0644);
1097 if (idmap_fd < 0) {
1098 ALOGE("idmap cannot open '%s' for output: %s\n", idmap_path, strerror(errno));
1099 goto fail;
1100 }
1101 if (fchown(idmap_fd, AID_SYSTEM, uid) < 0) {
1102 ALOGE("idmap cannot chown '%s'\n", idmap_path);
1103 goto fail;
1104 }
1105 if (fchmod(idmap_fd, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) < 0) {
1106 ALOGE("idmap cannot chmod '%s'\n", idmap_path);
1107 goto fail;
1108 }
1109
1110 pid_t pid;
1111 pid = fork();
1112 if (pid == 0) {
1113 /* child -- drop privileges before continuing */
1114 if (setgid(uid) != 0) {
1115 ALOGE("setgid(%d) failed during idmap\n", uid);
1116 exit(1);
1117 }
1118 if (setuid(uid) != 0) {
1119 ALOGE("setuid(%d) failed during idmap\n", uid);
1120 exit(1);
1121 }
1122 if (flock(idmap_fd, LOCK_EX | LOCK_NB) != 0) {
1123 ALOGE("flock(%s) failed during idmap: %s\n", idmap_path, strerror(errno));
1124 exit(1);
1125 }
1126
1127 run_idmap(target_apk, overlay_apk, idmap_fd);
1128 exit(1); /* only if exec call to idmap failed */
1129 } else {
1130 int status = wait_child(pid);
1131 if (status != 0) {
1132 ALOGE("idmap failed, status=0x%04x\n", status);
1133 goto fail;
1134 }
1135 }
1136
1137 close(idmap_fd);
Jeff Sharkey423e7462016-12-09 18:18:43 -07001138 return ok();
MÃ¥rten Kongstad63568b12014-01-31 14:42:59 +01001139fail:
1140 if (idmap_fd >= 0) {
1141 close(idmap_fd);
1142 unlink(idmap_path);
1143 }
Jeff Sharkey423e7462016-12-09 18:18:43 -07001144 return error();
MÃ¥rten Kongstad63568b12014-01-31 14:42:59 +01001145}
Robert Craige9887e42014-02-20 10:25:56 -05001146
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -07001147binder::Status InstalldNativeService::restoreconAppData(const std::unique_ptr<std::string>& uuid,
1148 const std::string& packageName, int32_t userId, int32_t flags, int32_t appId,
1149 const std::string& seInfo) {
1150 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -07001151 CHECK_ARGUMENT_UUID(uuid);
1152 CHECK_ARGUMENT_PACKAGE_NAME(packageName);
1153
1154 binder::Status res = ok();
Robert Craige9887e42014-02-20 10:25:56 -05001155
Robert Craigda30dc72014-03-27 10:21:12 -04001156 // SELINUX_ANDROID_RESTORECON_DATADATA flag is set by libselinux. Not needed here.
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -07001157 unsigned int seflags = SELINUX_ANDROID_RESTORECON_RECURSE;
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -07001158 const char* uuid_ = uuid ? uuid->c_str() : nullptr;
1159 const char* pkgName = packageName.c_str();
1160 const char* seinfo = seInfo.c_str();
Robert Craigda30dc72014-03-27 10:21:12 -04001161
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -07001162 uid_t uid = multiuser_get_uid(userId, appId);
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -07001163 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -07001164 auto path = create_data_user_ce_package_path(uuid_, userId, pkgName);
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -07001165 if (selinux_android_restorecon_pkgdir(path.c_str(), seinfo, uid, seflags) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001166 res = error("restorecon failed for " + path);
Jeff Sharkeyebf728f2015-11-18 14:15:17 -07001167 }
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -07001168 }
Jeff Sharkeyaa7ddfd2016-02-03 14:03:16 -07001169 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeyc1e93e72016-12-05 23:39:32 -07001170 auto path = create_data_user_de_package_path(uuid_, userId, pkgName);
Jeff Sharkeyc7d1b222016-01-11 13:07:09 -07001171 if (selinux_android_restorecon_pkgdir(path.c_str(), seinfo, uid, seflags) < 0) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001172 res = error("restorecon failed for " + path);
Jeff Sharkey41ea4242015-04-09 11:34:03 -07001173 }
Robert Craige9887e42014-02-20 10:25:56 -05001174 }
Jeff Sharkey423e7462016-12-09 18:18:43 -07001175 return res;
Robert Craige9887e42014-02-20 10:25:56 -05001176}
Narayan Kamath3aee2c52014-06-10 13:16:47 +01001177
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001178binder::Status InstalldNativeService::createOatDir(const std::string& oatDir,
1179 const std::string& instructionSet) {
1180 ENFORCE_UID(AID_SYSTEM);
1181 const char* oat_dir = oatDir.c_str();
1182 const char* instruction_set = instructionSet.c_str();
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001183 char oat_instr_dir[PKG_PATH_MAX];
1184
1185 if (validate_apk_path(oat_dir)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001186 return error("Invalid path " + oatDir);
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001187 }
Fyodor Kupolov8eed7e62015-04-06 19:09:02 -07001188 if (fs_prepare_dir(oat_dir, S_IRWXU | S_IRWXG | S_IXOTH, AID_SYSTEM, AID_INSTALL)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001189 return error("Failed to prepare " + oatDir);
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001190 }
1191 if (selinux_android_restorecon(oat_dir, 0)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001192 return error("Failed to restorecon " + oatDir);
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001193 }
1194 snprintf(oat_instr_dir, PKG_PATH_MAX, "%s/%s", oat_dir, instruction_set);
Fyodor Kupolov8eed7e62015-04-06 19:09:02 -07001195 if (fs_prepare_dir(oat_instr_dir, S_IRWXU | S_IRWXG | S_IXOTH, AID_SYSTEM, AID_INSTALL)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001196 return error(StringPrintf("Failed to prepare %s", oat_instr_dir));
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001197 }
Jeff Sharkey423e7462016-12-09 18:18:43 -07001198 return ok();
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001199}
1200
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001201binder::Status InstalldNativeService::rmPackageDir(const std::string& packageDir) {
1202 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey423e7462016-12-09 18:18:43 -07001203 if (validate_apk_path(packageDir.c_str())) {
1204 return error("Invalid path " + packageDir);
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001205 }
Jeff Sharkey423e7462016-12-09 18:18:43 -07001206 if (delete_dir_contents_and_dir(packageDir) != 0) {
1207 return error("Failed to delete " + packageDir);
1208 }
1209 return ok();
Fyodor Kupolov88ce4ff2015-03-03 12:25:29 -08001210}
1211
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001212binder::Status InstalldNativeService::linkFile(const std::string& relativePath,
1213 const std::string& fromBase, const std::string& toBase) {
1214 ENFORCE_UID(AID_SYSTEM);
1215 const char* relative_path = relativePath.c_str();
1216 const char* from_base = fromBase.c_str();
1217 const char* to_base = toBase.c_str();
Narayan Kamathd845c962015-06-04 13:20:27 +01001218 char from_path[PKG_PATH_MAX];
1219 char to_path[PKG_PATH_MAX];
1220 snprintf(from_path, PKG_PATH_MAX, "%s/%s", from_base, relative_path);
1221 snprintf(to_path, PKG_PATH_MAX, "%s/%s", to_base, relative_path);
1222
1223 if (validate_apk_path_subdirs(from_path)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001224 return error(StringPrintf("Invalid from path %s", from_path));
Narayan Kamathd845c962015-06-04 13:20:27 +01001225 }
1226
1227 if (validate_apk_path_subdirs(to_path)) {
Jeff Sharkey423e7462016-12-09 18:18:43 -07001228 return error(StringPrintf("Invalid to path %s", to_path));
Narayan Kamathd845c962015-06-04 13:20:27 +01001229 }
1230
Jeff Sharkey423e7462016-12-09 18:18:43 -07001231 if (link(from_path, to_path) < 0) {
1232 return error(StringPrintf("Failed to link from %s to %s", from_path, to_path));
Narayan Kamathd845c962015-06-04 13:20:27 +01001233 }
1234
Jeff Sharkey423e7462016-12-09 18:18:43 -07001235 return ok();
Narayan Kamathd845c962015-06-04 13:20:27 +01001236}
1237
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001238binder::Status InstalldNativeService::moveAb(const std::string& apkPath,
1239 const std::string& instructionSet, const std::string& outputPath) {
1240 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey90aff262016-12-12 14:28:24 -07001241
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001242 const char* apk_path = apkPath.c_str();
1243 const char* instruction_set = instructionSet.c_str();
1244 const char* oat_dir = outputPath.c_str();
Andreas Gamped089ca12016-06-27 14:25:30 -07001245
Jeff Sharkey90aff262016-12-12 14:28:24 -07001246 bool success = move_ab(apk_path, instruction_set, oat_dir);
Jeff Sharkey423e7462016-12-09 18:18:43 -07001247 return success ? ok() : error();
Andreas Gampee65b4fa2016-03-01 11:46:45 -08001248}
1249
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001250binder::Status InstalldNativeService::deleteOdex(const std::string& apkPath,
1251 const std::string& instructionSet, const std::string& outputPath) {
1252 ENFORCE_UID(AID_SYSTEM);
Jeff Sharkey90aff262016-12-12 14:28:24 -07001253
Jeff Sharkey475c6f92016-12-07 10:37:27 -07001254 const char* apk_path = apkPath.c_str();
1255 const char* instruction_set = instructionSet.c_str();
1256 const char* oat_dir = outputPath.c_str();
1257
Jeff Sharkey90aff262016-12-12 14:28:24 -07001258 bool res = delete_odex(apk_path, instruction_set, oat_dir);
1259 return res ? ok() : error();
Andreas Gampeb31206b2016-09-09 17:07:04 -07001260}
1261
Andreas Gampe02d0de52015-11-11 20:43:16 -08001262} // namespace installd
1263} // namespace android