Remove storage sandboxes related code.
Bug: 131115422 Test: manual Test: atest --test-mapping packages/providers/MediaProvider Test: atest cts/hostsidetests/appsecurity/src/android/appsecurity/cts/ExternalStorageHostTest.java Test: atest DownloadProviderTests Test: atest cts/tests/app/src/android/app/cts/DownloadManagerTest.java Test: atest cts/tests/app/DownloadManagerLegacyTest/src/android/app/cts/DownloadManagerLegacyTest.java Test: atest cts/tests/app/DownloadManagerApi28Test/src/android/app/cts/DownloadManagerApi28Test.java Change-Id: Ib3272a47a901ed106474039e72f123b11f5443ff
This commit is contained in:
parent
ddc55cf533
commit
4112c12cb6
9 changed files with 14 additions and 867 deletions
|
@ -147,69 +147,6 @@ binder::Status checkArgumentHex(const std::string& hex) {
|
|||
return ok();
|
||||
}
|
||||
|
||||
binder::Status checkArgumentPackageName(const std::string& packageName) {
|
||||
// This logic is borrowed from PackageParser.java
|
||||
bool hasSep = false;
|
||||
bool front = true;
|
||||
|
||||
for (size_t i = 0; i < packageName.length(); ++i) {
|
||||
char c = packageName[i];
|
||||
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {
|
||||
front = false;
|
||||
continue;
|
||||
}
|
||||
if (!front) {
|
||||
if ((c >= '0' && c <= '9') || c == '_') {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (c == '.') {
|
||||
hasSep = true;
|
||||
front = true;
|
||||
continue;
|
||||
}
|
||||
return exception(binder::Status::EX_ILLEGAL_ARGUMENT,
|
||||
StringPrintf("Bad package character %c in %s", c, packageName.c_str()));
|
||||
}
|
||||
|
||||
if (front) {
|
||||
return exception(binder::Status::EX_ILLEGAL_ARGUMENT,
|
||||
StringPrintf("Missing separator in %s", packageName.c_str()));
|
||||
}
|
||||
|
||||
return ok();
|
||||
}
|
||||
|
||||
binder::Status checkArgumentPackageNames(const std::vector<std::string>& packageNames) {
|
||||
for (size_t i = 0; i < packageNames.size(); ++i) {
|
||||
binder::Status status = checkArgumentPackageName(packageNames[i]);
|
||||
if (!status.isOk()) {
|
||||
return status;
|
||||
}
|
||||
}
|
||||
return ok();
|
||||
}
|
||||
|
||||
binder::Status checkArgumentSandboxId(const std::string& sandboxId) {
|
||||
// sandboxId will be in either the format shared-<shared-user-id> or <package-name>
|
||||
// and <shared-user-id> name has same requirements as <package-name>.
|
||||
std::size_t nameStartIndex = 0;
|
||||
if (android::base::StartsWith(sandboxId, "shared-")) {
|
||||
nameStartIndex = 7; // len("shared-")
|
||||
}
|
||||
return checkArgumentPackageName(sandboxId.substr(nameStartIndex));
|
||||
}
|
||||
|
||||
binder::Status checkArgumentSandboxIds(const std::vector<std::string>& sandboxIds) {
|
||||
for (size_t i = 0; i < sandboxIds.size(); ++i) {
|
||||
binder::Status status = checkArgumentSandboxId(sandboxIds[i]);
|
||||
if (!status.isOk()) {
|
||||
return status;
|
||||
}
|
||||
}
|
||||
return ok();
|
||||
}
|
||||
|
||||
#define ENFORCE_UID(uid) \
|
||||
{ \
|
||||
binder::Status status = checkUid((uid)); \
|
||||
|
@ -242,38 +179,6 @@ binder::Status checkArgumentSandboxIds(const std::vector<std::string>& sandboxId
|
|||
} \
|
||||
}
|
||||
|
||||
#define CHECK_ARGUMENT_PACKAGE_NAMES(packageNames) \
|
||||
{ \
|
||||
binder::Status status = checkArgumentPackageNames((packageNames)); \
|
||||
if (!status.isOk()) { \
|
||||
return status; \
|
||||
} \
|
||||
}
|
||||
|
||||
#define CHECK_ARGUMENT_SANDBOX_IDS(sandboxIds) \
|
||||
{ \
|
||||
binder::Status status = checkArgumentSandboxIds((sandboxIds)); \
|
||||
if (!status.isOk()) { \
|
||||
return status; \
|
||||
} \
|
||||
}
|
||||
|
||||
#define CHECK_ARGUMENT_PACKAGE_NAME(packageName) \
|
||||
{ \
|
||||
binder::Status status = checkArgumentPackageName((packageName)); \
|
||||
if (!status.isOk()) { \
|
||||
return status; \
|
||||
} \
|
||||
}
|
||||
|
||||
#define CHECK_ARGUMENT_SANDBOX_ID(sandboxId) \
|
||||
{ \
|
||||
binder::Status status = checkArgumentSandboxId((sandboxId)); \
|
||||
if (!status.isOk()) { \
|
||||
return status; \
|
||||
} \
|
||||
}
|
||||
|
||||
#define ACQUIRE_LOCK \
|
||||
std::lock_guard<std::mutex> lock(VolumeManager::Instance()->getLock()); \
|
||||
ATRACE_CALL();
|
||||
|
@ -357,17 +262,11 @@ binder::Status VoldNativeService::onUserRemoved(int32_t userId) {
|
|||
return translate(VolumeManager::Instance()->onUserRemoved(userId));
|
||||
}
|
||||
|
||||
binder::Status VoldNativeService::onUserStarted(int32_t userId,
|
||||
const std::vector<std::string>& packageNames,
|
||||
const std::vector<int>& appIds,
|
||||
const std::vector<std::string>& sandboxIds) {
|
||||
binder::Status VoldNativeService::onUserStarted(int32_t userId) {
|
||||
ENFORCE_UID(AID_SYSTEM);
|
||||
CHECK_ARGUMENT_PACKAGE_NAMES(packageNames);
|
||||
CHECK_ARGUMENT_SANDBOX_IDS(sandboxIds);
|
||||
ACQUIRE_LOCK;
|
||||
|
||||
return translate(
|
||||
VolumeManager::Instance()->onUserStarted(userId, packageNames, appIds, sandboxIds));
|
||||
return translate(VolumeManager::Instance()->onUserStarted(userId));
|
||||
}
|
||||
|
||||
binder::Status VoldNativeService::onUserStopped(int32_t userId) {
|
||||
|
@ -379,20 +278,12 @@ binder::Status VoldNativeService::onUserStopped(int32_t userId) {
|
|||
|
||||
binder::Status VoldNativeService::addAppIds(const std::vector<std::string>& packageNames,
|
||||
const std::vector<int32_t>& appIds) {
|
||||
ENFORCE_UID(AID_SYSTEM);
|
||||
CHECK_ARGUMENT_PACKAGE_NAMES(packageNames);
|
||||
ACQUIRE_LOCK;
|
||||
|
||||
return translate(VolumeManager::Instance()->addAppIds(packageNames, appIds));
|
||||
return ok();
|
||||
}
|
||||
|
||||
binder::Status VoldNativeService::addSandboxIds(const std::vector<int32_t>& appIds,
|
||||
const std::vector<std::string>& sandboxIds) {
|
||||
ENFORCE_UID(AID_SYSTEM);
|
||||
CHECK_ARGUMENT_SANDBOX_IDS(sandboxIds);
|
||||
ACQUIRE_LOCK;
|
||||
|
||||
return translate(VolumeManager::Instance()->addSandboxIds(appIds, sandboxIds));
|
||||
return ok();
|
||||
}
|
||||
|
||||
binder::Status VoldNativeService::onSecureKeyguardStateChanged(bool isShowing) {
|
||||
|
@ -916,25 +807,13 @@ binder::Status VoldNativeService::destroyUserStorage(const std::unique_ptr<std::
|
|||
binder::Status VoldNativeService::prepareSandboxForApp(const std::string& packageName,
|
||||
int32_t appId, const std::string& sandboxId,
|
||||
int32_t userId) {
|
||||
ENFORCE_UID(AID_SYSTEM);
|
||||
CHECK_ARGUMENT_PACKAGE_NAME(packageName);
|
||||
CHECK_ARGUMENT_SANDBOX_ID(sandboxId);
|
||||
ACQUIRE_LOCK;
|
||||
|
||||
return translate(
|
||||
VolumeManager::Instance()->prepareSandboxForApp(packageName, appId, sandboxId, userId));
|
||||
return ok();
|
||||
}
|
||||
|
||||
binder::Status VoldNativeService::destroySandboxForApp(const std::string& packageName,
|
||||
const std::string& sandboxId,
|
||||
int32_t userId) {
|
||||
ENFORCE_UID(AID_SYSTEM);
|
||||
CHECK_ARGUMENT_PACKAGE_NAME(packageName);
|
||||
CHECK_ARGUMENT_SANDBOX_ID(sandboxId);
|
||||
ACQUIRE_LOCK;
|
||||
|
||||
return translate(
|
||||
VolumeManager::Instance()->destroySandboxForApp(packageName, sandboxId, userId));
|
||||
return ok();
|
||||
}
|
||||
|
||||
binder::Status VoldNativeService::startCheckpoint(int32_t retry) {
|
||||
|
|
|
@ -39,9 +39,7 @@ class VoldNativeService : public BinderService<VoldNativeService>, public os::Bn
|
|||
|
||||
binder::Status onUserAdded(int32_t userId, int32_t userSerial);
|
||||
binder::Status onUserRemoved(int32_t userId);
|
||||
binder::Status onUserStarted(int32_t userId, const std::vector<std::string>& packageNames,
|
||||
const std::vector<int>& appIds,
|
||||
const std::vector<std::string>& sandboxIds);
|
||||
binder::Status onUserStarted(int32_t userId);
|
||||
binder::Status onUserStopped(int32_t userId);
|
||||
|
||||
binder::Status addAppIds(const std::vector<std::string>& packageNames,
|
||||
|
|
|
@ -87,8 +87,6 @@ using android::vold::VoldNativeService;
|
|||
static const char* kPathUserMount = "/mnt/user";
|
||||
static const char* kPathVirtualDisk = "/data/misc/vold/virtual_disk";
|
||||
|
||||
static const char* kIsolatedStorage = "persist.sys.isolated_storage";
|
||||
static const char* kIsolatedStorageSnapshot = "sys.isolated_storage_snapshot";
|
||||
static const char* kPropVirtualDisk = "persist.sys.virtual_disk";
|
||||
|
||||
static const std::string kEmptyString("");
|
||||
|
@ -118,11 +116,6 @@ VolumeManager::VolumeManager() {
|
|||
|
||||
VolumeManager::~VolumeManager() {}
|
||||
|
||||
static bool hasIsolatedStorage() {
|
||||
return false &&
|
||||
GetBoolProperty(kIsolatedStorageSnapshot, GetBoolProperty(kIsolatedStorage, true));
|
||||
}
|
||||
|
||||
int VolumeManager::updateVirtualDisk() {
|
||||
ATRACE_NAME("VolumeManager::updateVirtualDisk");
|
||||
if (GetBoolProperty(kPropVirtualDisk, false)) {
|
||||
|
@ -384,399 +377,6 @@ int VolumeManager::linkPrimary(userid_t userId) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::mountPkgSpecificDir(const std::string& mntSourceRoot,
|
||||
const std::string& mntTargetRoot,
|
||||
const std::string& packageName, const char* dirName) {
|
||||
std::string mntSourceDir =
|
||||
StringPrintf("%s/Android/%s/%s", mntSourceRoot.c_str(), dirName, packageName.c_str());
|
||||
if (CreateDir(mntSourceDir, 0755) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
std::string mntTargetDir =
|
||||
StringPrintf("%s/Android/%s/%s", mntTargetRoot.c_str(), dirName, packageName.c_str());
|
||||
if (CreateDir(mntTargetDir, 0755) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
return BindMount(mntSourceDir, mntTargetDir);
|
||||
}
|
||||
|
||||
int VolumeManager::mountPkgSpecificDirsForRunningProcs(
|
||||
userid_t userId, const std::vector<std::string>& packageNames,
|
||||
const std::vector<std::string>& visibleVolLabels, int remountMode) {
|
||||
std::unique_ptr<DIR, decltype(&closedir)> dirp(opendir("/proc"), closedir);
|
||||
if (!dirp) {
|
||||
PLOG(ERROR) << "Failed to opendir /proc";
|
||||
return -1;
|
||||
}
|
||||
|
||||
std::string rootName;
|
||||
// Figure out root namespace to compare against below
|
||||
if (!android::vold::Readlinkat(dirfd(dirp.get()), "1/ns/mnt", &rootName)) {
|
||||
PLOG(ERROR) << "Failed to read root namespace";
|
||||
return -1;
|
||||
}
|
||||
|
||||
struct stat mntFullSb;
|
||||
struct stat mntWriteSb;
|
||||
if (TEMP_FAILURE_RETRY(stat("/mnt/runtime/full", &mntFullSb)) == -1) {
|
||||
PLOG(ERROR) << "Failed to stat /mnt/runtime/full";
|
||||
return -1;
|
||||
}
|
||||
if (TEMP_FAILURE_RETRY(stat("/mnt/runtime/write", &mntWriteSb)) == -1) {
|
||||
PLOG(ERROR) << "Failed to stat /mnt/runtime/write";
|
||||
return -1;
|
||||
}
|
||||
|
||||
std::string obbMountDir = StringPrintf("/mnt/user/%d/obb_mount", userId);
|
||||
if (fs_prepare_dir(obbMountDir.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) {
|
||||
PLOG(ERROR) << "Failed to fs_prepare_dir " << obbMountDir;
|
||||
return -1;
|
||||
}
|
||||
const unique_fd obbMountDirFd(
|
||||
TEMP_FAILURE_RETRY(open(obbMountDir.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC)));
|
||||
if (obbMountDirFd.get() < 0) {
|
||||
PLOG(ERROR) << "Failed to open " << obbMountDir;
|
||||
return -1;
|
||||
}
|
||||
|
||||
std::unordered_set<appid_t> validAppIds;
|
||||
for (auto& package : packageNames) {
|
||||
validAppIds.insert(mAppIds[package]);
|
||||
}
|
||||
std::vector<std::string>& userPackages = mUserPackages[userId];
|
||||
|
||||
std::vector<pid_t> childPids;
|
||||
|
||||
struct dirent* de;
|
||||
// Poke through all running PIDs look for apps running in userId
|
||||
while ((de = readdir(dirp.get()))) {
|
||||
pid_t pid;
|
||||
if (de->d_type != DT_DIR) continue;
|
||||
if (!android::base::ParseInt(de->d_name, &pid)) continue;
|
||||
|
||||
const unique_fd pidFd(
|
||||
openat(dirfd(dirp.get()), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC));
|
||||
if (pidFd.get() < 0) {
|
||||
PLOG(WARNING) << "Failed to open /proc/" << pid;
|
||||
continue;
|
||||
}
|
||||
struct stat sb;
|
||||
if (fstat(pidFd.get(), &sb) != 0) {
|
||||
PLOG(WARNING) << "Failed to stat " << de->d_name;
|
||||
continue;
|
||||
}
|
||||
if (multiuser_get_user_id(sb.st_uid) != userId) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Matches so far, but refuse to touch if in root namespace
|
||||
LOG(VERBOSE) << "Found matching PID " << de->d_name;
|
||||
std::string pidName;
|
||||
if (!android::vold::Readlinkat(pidFd.get(), "ns/mnt", &pidName)) {
|
||||
PLOG(WARNING) << "Failed to read namespace for " << de->d_name;
|
||||
continue;
|
||||
}
|
||||
if (rootName == pidName) {
|
||||
LOG(WARNING) << "Skipping due to root namespace";
|
||||
continue;
|
||||
}
|
||||
|
||||
// Only update the mount points of processes running with one of validAppIds.
|
||||
// This should skip any isolated uids.
|
||||
appid_t appId = multiuser_get_app_id(sb.st_uid);
|
||||
if (validAppIds.find(appId) == validAppIds.end()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
std::vector<std::string> packagesForUid;
|
||||
for (auto& package : userPackages) {
|
||||
if (mAppIds[package] == appId) {
|
||||
packagesForUid.push_back(package);
|
||||
}
|
||||
}
|
||||
if (packagesForUid.empty()) {
|
||||
continue;
|
||||
}
|
||||
const std::string& sandboxId = mSandboxIds[appId];
|
||||
|
||||
// We purposefully leave the namespace open across the fork
|
||||
// NOLINTNEXTLINE(android-cloexec-open): Deliberately not O_CLOEXEC
|
||||
unique_fd nsFd(openat(pidFd.get(), "ns/mnt", O_RDONLY));
|
||||
if (nsFd.get() < 0) {
|
||||
PLOG(WARNING) << "Failed to open namespace for " << de->d_name;
|
||||
continue;
|
||||
}
|
||||
|
||||
pid_t child;
|
||||
if (!(child = fork())) {
|
||||
if (setns(nsFd.get(), CLONE_NEWNS) != 0) {
|
||||
PLOG(ERROR) << "Failed to setns for " << de->d_name;
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
int mountMode;
|
||||
if (remountMode == -1) {
|
||||
mountMode =
|
||||
getMountModeForRunningProc(packagesForUid, userId, mntWriteSb, mntFullSb);
|
||||
if (mountMode == -1) {
|
||||
_exit(1);
|
||||
}
|
||||
} else {
|
||||
mountMode = remountMode;
|
||||
if (handleMountModeInstaller(mountMode, obbMountDirFd.get(), obbMountDir,
|
||||
sandboxId) < 0) {
|
||||
_exit(1);
|
||||
}
|
||||
}
|
||||
if (mountMode == VoldNativeService::REMOUNT_MODE_FULL ||
|
||||
mountMode == VoldNativeService::REMOUNT_MODE_LEGACY ||
|
||||
mountMode == VoldNativeService::REMOUNT_MODE_NONE) {
|
||||
// These mount modes are not going to change dynamically, so don't bother
|
||||
// unmounting/remounting dirs.
|
||||
_exit(0);
|
||||
}
|
||||
|
||||
for (auto& volumeLabel : visibleVolLabels) {
|
||||
std::string mntSource = StringPrintf("/mnt/runtime/write/%s", volumeLabel.c_str());
|
||||
std::string mntTarget = StringPrintf("/storage/%s", volumeLabel.c_str());
|
||||
if (volumeLabel == "emulated") {
|
||||
StringAppendF(&mntSource, "/%d", userId);
|
||||
StringAppendF(&mntTarget, "/%d", userId);
|
||||
}
|
||||
|
||||
std::string sandboxSource =
|
||||
StringPrintf("%s/Android/sandbox/%s", mntSource.c_str(), sandboxId.c_str());
|
||||
if (CreateDir(sandboxSource, 0755) < 0) {
|
||||
continue;
|
||||
}
|
||||
if (BindMount(sandboxSource, mntTarget) < 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
std::string obbSourceDir = StringPrintf("%s/Android/obb", mntSource.c_str());
|
||||
std::string obbTargetDir = StringPrintf("%s/Android/obb", mntTarget.c_str());
|
||||
if (UnmountTree(obbTargetDir) < 0) {
|
||||
continue;
|
||||
}
|
||||
if (!createPkgSpecificDirRoots(mntSource) || !createPkgSpecificDirRoots(mntTarget)) {
|
||||
continue;
|
||||
}
|
||||
for (auto& package : packagesForUid) {
|
||||
mountPkgSpecificDir(mntSource, mntTarget, package, "data");
|
||||
mountPkgSpecificDir(mntSource, mntTarget, package, "media");
|
||||
if (mountMode != VoldNativeService::REMOUNT_MODE_INSTALLER) {
|
||||
mountPkgSpecificDir(mntSource, mntTarget, package, "obb");
|
||||
}
|
||||
}
|
||||
if (mountMode == VoldNativeService::REMOUNT_MODE_INSTALLER) {
|
||||
if (BindMount(obbSourceDir, obbTargetDir) < 0) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
_exit(0);
|
||||
}
|
||||
|
||||
if (child == -1) {
|
||||
PLOG(ERROR) << "Failed to fork";
|
||||
} else {
|
||||
childPids.push_back(child);
|
||||
}
|
||||
}
|
||||
for (auto& child : childPids) {
|
||||
TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::getMountModeForRunningProc(const std::vector<std::string>& packagesForUid,
|
||||
userid_t userId, struct stat& mntWriteStat,
|
||||
struct stat& mntFullStat) {
|
||||
struct stat storageSb;
|
||||
if (TEMP_FAILURE_RETRY(stat("/storage", &storageSb)) == -1) {
|
||||
PLOG(ERROR) << "Failed to stat /storage";
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Some packages have access to full external storage, identify processes belonging
|
||||
// to those packages by comparing inode no.s of /mnt/runtime/full and /storage
|
||||
if (storageSb.st_dev == mntFullStat.st_dev && storageSb.st_ino == mntFullStat.st_ino) {
|
||||
return VoldNativeService::REMOUNT_MODE_FULL;
|
||||
} else if (storageSb.st_dev == mntWriteStat.st_dev && storageSb.st_ino == mntWriteStat.st_ino) {
|
||||
return VoldNativeService::REMOUNT_MODE_LEGACY;
|
||||
}
|
||||
|
||||
std::string obbMountFile =
|
||||
StringPrintf("/mnt/user/%d/obb_mount/%s", userId, packagesForUid[0].c_str());
|
||||
if (TEMP_FAILURE_RETRY(access(obbMountFile.c_str(), F_OK)) != -1) {
|
||||
return VoldNativeService::REMOUNT_MODE_INSTALLER;
|
||||
} else if (errno != ENOENT) {
|
||||
PLOG(ERROR) << "Failed to access " << obbMountFile;
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Some packages don't have access to external storage and processes belonging to
|
||||
// those packages don't have anything mounted at /storage. So, identify those
|
||||
// processes by comparing inode no.s of /mnt/user/%d/package
|
||||
// and /storage
|
||||
std::string sandbox = StringPrintf("/mnt/user/%d/package", userId);
|
||||
struct stat sandboxStat;
|
||||
if (TEMP_FAILURE_RETRY(stat(sandbox.c_str(), &sandboxStat)) == -1) {
|
||||
PLOG(ERROR) << "Failed to stat " << sandbox;
|
||||
return -1;
|
||||
}
|
||||
if (storageSb.st_dev == sandboxStat.st_dev && storageSb.st_ino == sandboxStat.st_ino) {
|
||||
return VoldNativeService::REMOUNT_MODE_WRITE;
|
||||
}
|
||||
|
||||
return VoldNativeService::REMOUNT_MODE_NONE;
|
||||
}
|
||||
|
||||
int VolumeManager::handleMountModeInstaller(int mountMode, int obbMountDirFd,
|
||||
const std::string& obbMountDir,
|
||||
const std::string& sandboxId) {
|
||||
if (mountMode == VoldNativeService::REMOUNT_MODE_INSTALLER) {
|
||||
if (TEMP_FAILURE_RETRY(faccessat(obbMountDirFd, sandboxId.c_str(), F_OK, 0)) != -1) {
|
||||
return 0;
|
||||
} else if (errno != ENOENT) {
|
||||
PLOG(ERROR) << "Failed to access " << obbMountDir << "/" << sandboxId;
|
||||
return -errno;
|
||||
}
|
||||
const unique_fd fd(TEMP_FAILURE_RETRY(
|
||||
openat(obbMountDirFd, sandboxId.c_str(), O_RDWR | O_CREAT | O_CLOEXEC, 0600)));
|
||||
if (fd.get() < 0) {
|
||||
PLOG(ERROR) << "Failed to create " << obbMountDir << "/" << sandboxId;
|
||||
return -errno;
|
||||
}
|
||||
} else {
|
||||
if (TEMP_FAILURE_RETRY(faccessat(obbMountDirFd, sandboxId.c_str(), F_OK, 0)) != -1) {
|
||||
if (TEMP_FAILURE_RETRY(unlinkat(obbMountDirFd, sandboxId.c_str(), 0)) == -1) {
|
||||
PLOG(ERROR) << "Failed to unlink " << obbMountDir << "/" << sandboxId;
|
||||
return -errno;
|
||||
}
|
||||
} else if (errno != ENOENT) {
|
||||
PLOG(ERROR) << "Failed to access " << obbMountDir << "/" << sandboxId;
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::prepareSandboxes(userid_t userId, const std::vector<std::string>& packageNames,
|
||||
const std::vector<std::string>& visibleVolLabels) {
|
||||
if (visibleVolLabels.empty()) {
|
||||
return 0;
|
||||
}
|
||||
for (auto& volumeLabel : visibleVolLabels) {
|
||||
std::string volumeRoot(StringPrintf("/mnt/runtime/write/%s", volumeLabel.c_str()));
|
||||
bool isVolPrimaryEmulated = (volumeLabel == mPrimary->getLabel() && mPrimary->isEmulated());
|
||||
if (isVolPrimaryEmulated) {
|
||||
StringAppendF(&volumeRoot, "/%d", userId);
|
||||
if (CreateDir(volumeRoot, 0755) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
|
||||
std::string sandboxRoot =
|
||||
prepareSubDirs(volumeRoot, "Android/sandbox/", 0700, AID_ROOT, AID_ROOT);
|
||||
if (sandboxRoot.empty()) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
|
||||
if (prepareSandboxTargets(userId, visibleVolLabels) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
|
||||
if (mountPkgSpecificDirsForRunningProcs(userId, packageNames, visibleVolLabels, -1) < 0) {
|
||||
PLOG(ERROR) << "Failed to setup sandboxes for already running processes";
|
||||
return -errno;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::prepareSandboxTargets(userid_t userId,
|
||||
const std::vector<std::string>& visibleVolLabels) {
|
||||
std::string mntTargetRoot = StringPrintf("/mnt/user/%d", userId);
|
||||
if (fs_prepare_dir(mntTargetRoot.c_str(), 0751, AID_ROOT, AID_ROOT) != 0) {
|
||||
PLOG(ERROR) << "Failed to fs_prepare_dir " << mntTargetRoot;
|
||||
return -errno;
|
||||
}
|
||||
|
||||
StringAppendF(&mntTargetRoot, "/package");
|
||||
if (fs_prepare_dir(mntTargetRoot.c_str(), 0755, AID_ROOT, AID_ROOT) != 0) {
|
||||
PLOG(ERROR) << "Failed to fs_prepare_dir " << mntTargetRoot;
|
||||
return -errno;
|
||||
}
|
||||
|
||||
for (auto& volumeLabel : visibleVolLabels) {
|
||||
std::string sandboxTarget =
|
||||
StringPrintf("%s/%s", mntTargetRoot.c_str(), volumeLabel.c_str());
|
||||
if (fs_prepare_dir(sandboxTarget.c_str(), 0755, AID_ROOT, AID_ROOT) != 0) {
|
||||
PLOG(ERROR) << "Failed to fs_prepare_dir " << sandboxTarget;
|
||||
return -errno;
|
||||
}
|
||||
|
||||
if (mPrimary && volumeLabel == mPrimary->getLabel() && mPrimary->isEmulated()) {
|
||||
StringAppendF(&sandboxTarget, "/%d", userId);
|
||||
if (fs_prepare_dir(sandboxTarget.c_str(), 0755, AID_ROOT, AID_ROOT) != 0) {
|
||||
PLOG(ERROR) << "Failed to fs_prepare_dir " << sandboxTarget;
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
StringAppendF(&mntTargetRoot, "/self");
|
||||
if (fs_prepare_dir(mntTargetRoot.c_str(), 0755, AID_ROOT, AID_ROOT) != 0) {
|
||||
PLOG(ERROR) << "Failed to fs_prepare_dir " << mntTargetRoot;
|
||||
return -errno;
|
||||
}
|
||||
|
||||
if (mPrimary) {
|
||||
std::string pkgPrimarySource(mPrimary->getPath());
|
||||
if (mPrimary->isEmulated()) {
|
||||
StringAppendF(&pkgPrimarySource, "/%d", userId);
|
||||
}
|
||||
StringAppendF(&mntTargetRoot, "/primary");
|
||||
if (Symlink(pkgPrimarySource, mntTargetRoot) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
std::string VolumeManager::prepareSubDirs(const std::string& pathPrefix, const std::string& subDirs,
|
||||
mode_t mode, uid_t uid, gid_t gid) {
|
||||
std::string path(pathPrefix);
|
||||
std::vector<std::string> subDirList = android::base::Split(subDirs, "/");
|
||||
for (size_t i = 0; i < subDirList.size(); ++i) {
|
||||
std::string subDir = subDirList[i];
|
||||
if (subDir.empty()) {
|
||||
continue;
|
||||
}
|
||||
StringAppendF(&path, "/%s", subDir.c_str());
|
||||
if (CreateDir(path, mode) < 0) {
|
||||
return kEmptyString;
|
||||
}
|
||||
}
|
||||
return path;
|
||||
}
|
||||
|
||||
bool VolumeManager::createPkgSpecificDirRoots(const std::string& volumeRoot) {
|
||||
std::string volumeAndroidRoot = StringPrintf("%s/Android", volumeRoot.c_str());
|
||||
if (CreateDir(volumeAndroidRoot, 0700) < 0) {
|
||||
return false;
|
||||
}
|
||||
std::array<std::string, 3> dirs = {"data", "media", "obb"};
|
||||
for (auto& dir : dirs) {
|
||||
std::string path = StringPrintf("%s/%s", volumeAndroidRoot.c_str(), dir.c_str());
|
||||
if (CreateDir(path, 0700) < 0) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) {
|
||||
mAddedUsers[userId] = userSerialNumber;
|
||||
return 0;
|
||||
|
@ -787,9 +387,7 @@ int VolumeManager::onUserRemoved(userid_t userId) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::onUserStarted(userid_t userId, const std::vector<std::string>& packageNames,
|
||||
const std::vector<int>& appIds,
|
||||
const std::vector<std::string>& sandboxIds) {
|
||||
int VolumeManager::onUserStarted(userid_t userId) {
|
||||
LOG(VERBOSE) << "onUserStarted: " << userId;
|
||||
// Note that sometimes the system will spin up processes from Zygote
|
||||
// before actually starting the user, so we're okay if Zygote
|
||||
|
@ -798,159 +396,15 @@ int VolumeManager::onUserStarted(userid_t userId, const std::vector<std::string>
|
|||
fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
|
||||
|
||||
mStartedUsers.insert(userId);
|
||||
mUserPackages[userId] = packageNames;
|
||||
for (size_t i = 0; i < packageNames.size(); ++i) {
|
||||
mAppIds[packageNames[i]] = appIds[i];
|
||||
mSandboxIds[appIds[i]] = sandboxIds[i];
|
||||
}
|
||||
if (mPrimary) {
|
||||
linkPrimary(userId);
|
||||
}
|
||||
if (hasIsolatedStorage()) {
|
||||
std::vector<std::string> visibleVolLabels;
|
||||
for (auto& volId : mVisibleVolumeIds) {
|
||||
auto vol = findVolume(volId);
|
||||
userid_t mountUserId = vol->getMountUserId();
|
||||
if (mountUserId == userId || vol->isEmulated()) {
|
||||
visibleVolLabels.push_back(vol->getLabel());
|
||||
}
|
||||
}
|
||||
if (prepareSandboxes(userId, packageNames, visibleVolLabels) != 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::onUserStopped(userid_t userId) {
|
||||
LOG(VERBOSE) << "onUserStopped: " << userId;
|
||||
mStartedUsers.erase(userId);
|
||||
|
||||
if (hasIsolatedStorage()) {
|
||||
auto& userPackages = mUserPackages[userId];
|
||||
std::string userMntTargetRoot = StringPrintf("/mnt/user/%d", userId);
|
||||
std::string pkgPrimaryDir =
|
||||
StringPrintf("%s/package/self/primary", userMntTargetRoot.c_str());
|
||||
if (Unlink(pkgPrimaryDir) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
mUserPackages.erase(userId);
|
||||
if (DeleteDirContentsAndDir(userMntTargetRoot) < 0) {
|
||||
PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << userMntTargetRoot;
|
||||
return -errno;
|
||||
}
|
||||
LOG(VERBOSE) << "Success: DeleteDirContentsAndDir on " << userMntTargetRoot;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::addAppIds(const std::vector<std::string>& packageNames,
|
||||
const std::vector<int32_t>& appIds) {
|
||||
for (size_t i = 0; i < packageNames.size(); ++i) {
|
||||
mAppIds[packageNames[i]] = appIds[i];
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::addSandboxIds(const std::vector<int32_t>& appIds,
|
||||
const std::vector<std::string>& sandboxIds) {
|
||||
for (size_t i = 0; i < appIds.size(); ++i) {
|
||||
mSandboxIds[appIds[i]] = sandboxIds[i];
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::prepareSandboxForApp(const std::string& packageName, appid_t appId,
|
||||
const std::string& sandboxId, userid_t userId) {
|
||||
if (!hasIsolatedStorage()) {
|
||||
return 0;
|
||||
} else if (mStartedUsers.find(userId) == mStartedUsers.end()) {
|
||||
// User not started, no need to do anything now. Required bind mounts for the package will
|
||||
// be created when the user starts.
|
||||
return 0;
|
||||
}
|
||||
|
||||
auto& userPackages = mUserPackages[userId];
|
||||
if (std::find(userPackages.begin(), userPackages.end(), packageName) != userPackages.end()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
LOG(VERBOSE) << "prepareSandboxForApp: " << packageName << ", appId=" << appId
|
||||
<< ", sandboxId=" << sandboxId << ", userId=" << userId;
|
||||
mUserPackages[userId].push_back(packageName);
|
||||
mAppIds[packageName] = appId;
|
||||
mSandboxIds[appId] = sandboxId;
|
||||
|
||||
std::vector<std::string> visibleVolLabels;
|
||||
for (auto& volId : mVisibleVolumeIds) {
|
||||
auto vol = findVolume(volId);
|
||||
userid_t mountUserId = vol->getMountUserId();
|
||||
if (mountUserId == userId || vol->isEmulated()) {
|
||||
visibleVolLabels.push_back(vol->getLabel());
|
||||
}
|
||||
}
|
||||
return prepareSandboxes(userId, {packageName}, visibleVolLabels);
|
||||
}
|
||||
|
||||
int VolumeManager::destroySandboxForApp(const std::string& packageName,
|
||||
const std::string& sandboxId, userid_t userId) {
|
||||
if (!hasIsolatedStorage()) {
|
||||
return 0;
|
||||
}
|
||||
LOG(VERBOSE) << "destroySandboxForApp: " << packageName << ", sandboxId=" << sandboxId
|
||||
<< ", userId=" << userId;
|
||||
auto& userPackages = mUserPackages[userId];
|
||||
userPackages.erase(std::remove(userPackages.begin(), userPackages.end(), packageName),
|
||||
userPackages.end());
|
||||
// If the package is not uninstalled in any other users, remove appId and sandboxId
|
||||
// corresponding to it from the internal state.
|
||||
bool installedInAnyUser = false;
|
||||
for (auto& it : mUserPackages) {
|
||||
auto& packages = it.second;
|
||||
if (std::find(packages.begin(), packages.end(), packageName) != packages.end()) {
|
||||
installedInAnyUser = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!installedInAnyUser) {
|
||||
const auto& entry = mAppIds.find(packageName);
|
||||
if (entry != mAppIds.end()) {
|
||||
mSandboxIds.erase(entry->second);
|
||||
mAppIds.erase(entry);
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<std::string> visibleVolLabels;
|
||||
for (auto& volId : mVisibleVolumeIds) {
|
||||
auto vol = findVolume(volId);
|
||||
userid_t mountUserId = vol->getMountUserId();
|
||||
if (mountUserId == userId || vol->isEmulated()) {
|
||||
if (destroySandboxForAppOnVol(packageName, sandboxId, userId, vol->getLabel()) < 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::destroySandboxForAppOnVol(const std::string& packageName,
|
||||
const std::string& sandboxId, userid_t userId,
|
||||
const std::string& volLabel) {
|
||||
LOG(VERBOSE) << "destroySandboxOnVol: " << packageName << ", userId=" << userId
|
||||
<< ", volLabel=" << volLabel;
|
||||
|
||||
std::string sandboxDir = StringPrintf("/mnt/runtime/write/%s", volLabel.c_str());
|
||||
if (volLabel == mPrimary->getLabel() && mPrimary->isEmulated()) {
|
||||
StringAppendF(&sandboxDir, "/%d", userId);
|
||||
}
|
||||
StringAppendF(&sandboxDir, "/Android/sandbox/%s", sandboxId.c_str());
|
||||
|
||||
if (DeleteDirContentsAndDir(sandboxDir) < 0) {
|
||||
PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << sandboxDir;
|
||||
return -errno;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -968,86 +422,7 @@ int VolumeManager::onSecureKeyguardStateChanged(bool isShowing) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::onVolumeMounted(android::vold::VolumeBase* vol) {
|
||||
if (!hasIsolatedStorage()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_VISIBLE) == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
mVisibleVolumeIds.insert(vol->getId());
|
||||
userid_t mountUserId = vol->getMountUserId();
|
||||
if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_PRIMARY) != 0) {
|
||||
// We don't want to create another shared_ptr here because then we will end up with
|
||||
// two shared_ptrs owning the underlying pointer without sharing it.
|
||||
mPrimary = findVolume(vol->getId());
|
||||
for (userid_t userId : mStartedUsers) {
|
||||
if (linkPrimary(userId) != 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (vol->isEmulated()) {
|
||||
for (userid_t userId : mStartedUsers) {
|
||||
if (prepareSandboxes(userId, mUserPackages[userId], {vol->getLabel()}) != 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
} else if (mStartedUsers.find(mountUserId) != mStartedUsers.end()) {
|
||||
if (prepareSandboxes(mountUserId, mUserPackages[mountUserId], {vol->getLabel()}) != 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::onVolumeUnmounted(android::vold::VolumeBase* vol) {
|
||||
if (!hasIsolatedStorage()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (mVisibleVolumeIds.erase(vol->getId()) == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_PRIMARY) != 0) {
|
||||
mPrimary = nullptr;
|
||||
}
|
||||
|
||||
LOG(VERBOSE) << "visibleVolumeUnmounted: " << vol;
|
||||
userid_t mountUserId = vol->getMountUserId();
|
||||
if (vol->isEmulated()) {
|
||||
for (userid_t userId : mStartedUsers) {
|
||||
if (destroySandboxesForVol(vol, userId) != 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
} else if (mStartedUsers.find(mountUserId) != mStartedUsers.end()) {
|
||||
if (destroySandboxesForVol(vol, mountUserId) != 0) {
|
||||
return -errno;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::destroySandboxesForVol(android::vold::VolumeBase* vol, userid_t userId) {
|
||||
LOG(VERBOSE) << "destroysandboxesForVol: " << vol << " for user=" << userId;
|
||||
std::string volSandboxRoot =
|
||||
StringPrintf("/mnt/user/%d/package/%s", userId, vol->getLabel().c_str());
|
||||
if (android::vold::DeleteDirContentsAndDir(volSandboxRoot) < 0) {
|
||||
PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << volSandboxRoot;
|
||||
return -errno;
|
||||
}
|
||||
LOG(VERBOSE) << "Success: DeleteDirContentsAndDir on " << volSandboxRoot;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) {
|
||||
if (hasIsolatedStorage()) {
|
||||
return 0;
|
||||
}
|
||||
mPrimary = vol;
|
||||
for (userid_t userId : mStartedUsers) {
|
||||
linkPrimary(userId);
|
||||
|
@ -1056,37 +431,6 @@ int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>&
|
|||
}
|
||||
|
||||
int VolumeManager::remountUid(uid_t uid, int32_t mountMode) {
|
||||
if (!hasIsolatedStorage()) {
|
||||
return remountUidLegacy(uid, mountMode);
|
||||
}
|
||||
|
||||
appid_t appId = multiuser_get_app_id(uid);
|
||||
userid_t userId = multiuser_get_user_id(uid);
|
||||
std::vector<std::string> visibleVolLabels;
|
||||
for (auto& volId : mVisibleVolumeIds) {
|
||||
auto vol = findVolume(volId);
|
||||
userid_t mountUserId = vol->getMountUserId();
|
||||
if (mountUserId == userId || vol->isEmulated()) {
|
||||
visibleVolLabels.push_back(vol->getLabel());
|
||||
}
|
||||
}
|
||||
|
||||
// Finding one package with appId is enough
|
||||
std::vector<std::string> packageNames;
|
||||
for (auto it = mAppIds.begin(); it != mAppIds.end(); ++it) {
|
||||
if (it->second == appId) {
|
||||
packageNames.push_back(it->first);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (packageNames.empty()) {
|
||||
PLOG(ERROR) << "Failed to find packageName for " << uid;
|
||||
return -1;
|
||||
}
|
||||
return mountPkgSpecificDirsForRunningProcs(userId, packageNames, visibleVolLabels, mountMode);
|
||||
}
|
||||
|
||||
int VolumeManager::remountUidLegacy(uid_t uid, int32_t mountMode) {
|
||||
std::string mode;
|
||||
switch (mountMode) {
|
||||
case VoldNativeService::REMOUNT_MODE_NONE:
|
||||
|
@ -1264,15 +608,6 @@ int VolumeManager::reset() {
|
|||
}
|
||||
updateVirtualDisk();
|
||||
mAddedUsers.clear();
|
||||
|
||||
mUserPackages.clear();
|
||||
mAppIds.clear();
|
||||
mSandboxIds.clear();
|
||||
mVisibleVolumeIds.clear();
|
||||
|
||||
for (userid_t userId : mStartedUsers) {
|
||||
DeleteDirContents(StringPrintf("/mnt/user/%d/package", userId));
|
||||
}
|
||||
mStartedUsers.clear();
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -88,27 +88,14 @@ class VolumeManager {
|
|||
|
||||
int onUserAdded(userid_t userId, int userSerialNumber);
|
||||
int onUserRemoved(userid_t userId);
|
||||
int onUserStarted(userid_t userId, const std::vector<std::string>& packageNames,
|
||||
const std::vector<int>& appIds, const std::vector<std::string>& sandboxIds);
|
||||
int onUserStarted(userid_t userId);
|
||||
int onUserStopped(userid_t userId);
|
||||
|
||||
int addAppIds(const std::vector<std::string>& packageNames, const std::vector<int32_t>& appIds);
|
||||
int addSandboxIds(const std::vector<int32_t>& appIds,
|
||||
const std::vector<std::string>& sandboxIds);
|
||||
int prepareSandboxForApp(const std::string& packageName, appid_t appId,
|
||||
const std::string& sandboxId, userid_t userId);
|
||||
int destroySandboxForApp(const std::string& packageName, const std::string& sandboxId,
|
||||
userid_t userId);
|
||||
|
||||
int onVolumeMounted(android::vold::VolumeBase* vol);
|
||||
int onVolumeUnmounted(android::vold::VolumeBase* vol);
|
||||
|
||||
int onSecureKeyguardStateChanged(bool isShowing);
|
||||
|
||||
int setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol);
|
||||
|
||||
int remountUid(uid_t uid, int32_t remountMode);
|
||||
int remountUidLegacy(uid_t uid, int32_t remountMode);
|
||||
|
||||
/* Reset all internal state, typically during framework boot */
|
||||
int reset();
|
||||
|
@ -150,26 +137,6 @@ class VolumeManager {
|
|||
|
||||
int linkPrimary(userid_t userId);
|
||||
|
||||
int prepareSandboxes(userid_t userId, const std::vector<std::string>& packageNames,
|
||||
const std::vector<std::string>& visibleVolLabels);
|
||||
int prepareSandboxTargets(userid_t userId, const std::vector<std::string>& visibleVolLabels);
|
||||
int handleMountModeInstaller(int mountMode, int obbMountDirFd, const std::string& obbMountDir,
|
||||
const std::string& sandboxId);
|
||||
int mountPkgSpecificDirsForRunningProcs(userid_t userId,
|
||||
const std::vector<std::string>& packageNames,
|
||||
const std::vector<std::string>& visibleVolLabels,
|
||||
int remountMode);
|
||||
int destroySandboxesForVol(android::vold::VolumeBase* vol, userid_t userId);
|
||||
std::string prepareSubDirs(const std::string& pathPrefix, const std::string& subDirs,
|
||||
mode_t mode, uid_t uid, gid_t gid);
|
||||
bool createPkgSpecificDirRoots(const std::string& volumeRoot);
|
||||
int mountPkgSpecificDir(const std::string& mntSourceRoot, const std::string& mntTargetRoot,
|
||||
const std::string& packageName, const char* dirName);
|
||||
int destroySandboxForAppOnVol(const std::string& packageName, const std::string& sandboxId,
|
||||
userid_t userId, const std::string& volLabel);
|
||||
int getMountModeForRunningProc(const std::vector<std::string>& packagesForUid, userid_t userId,
|
||||
struct stat& mntWriteStat, struct stat& mntFullStat);
|
||||
|
||||
void handleDiskAdded(const std::shared_ptr<android::vold::Disk>& disk);
|
||||
void handleDiskChanged(dev_t device);
|
||||
void handleDiskRemoved(dev_t device);
|
||||
|
@ -193,11 +160,6 @@ class VolumeManager {
|
|||
std::shared_ptr<android::vold::VolumeBase> mInternalEmulated;
|
||||
std::shared_ptr<android::vold::VolumeBase> mPrimary;
|
||||
|
||||
std::unordered_map<std::string, appid_t> mAppIds;
|
||||
std::unordered_map<appid_t, std::string> mSandboxIds;
|
||||
std::unordered_map<userid_t, std::vector<std::string>> mUserPackages;
|
||||
std::unordered_set<std::string> mVisibleVolumeIds;
|
||||
|
||||
int mNextObbId;
|
||||
int mNextStubVolumeId;
|
||||
bool mSecureKeyguardShowing;
|
||||
|
|
|
@ -29,8 +29,7 @@ interface IVold {
|
|||
|
||||
void onUserAdded(int userId, int userSerial);
|
||||
void onUserRemoved(int userId);
|
||||
void onUserStarted(int userId, in @utf8InCpp String[] packageNames, in int[] appIds,
|
||||
in @utf8InCpp String[] sandboxIds);
|
||||
void onUserStarted(int userId);
|
||||
void onUserStopped(int userId);
|
||||
|
||||
void addAppIds(in @utf8InCpp String[] packageNames, in int[] appIds);
|
||||
|
|
|
@ -70,7 +70,6 @@ status_t EmulatedVolume::doMount() {
|
|||
|
||||
setInternalPath(mRawPath);
|
||||
setPath(StringPrintf("/storage/%s", label.c_str()));
|
||||
setLabel(label);
|
||||
|
||||
if (fs_prepare_dir(mFuseDefault.c_str(), 0700, AID_ROOT, AID_ROOT) ||
|
||||
fs_prepare_dir(mFuseRead.c_str(), 0700, AID_ROOT, AID_ROOT) ||
|
||||
|
|
|
@ -129,7 +129,6 @@ status_t PublicVolume::doMount() {
|
|||
} else {
|
||||
setPath(mRawPath);
|
||||
}
|
||||
setLabel(stableName);
|
||||
|
||||
if (fs_prepare_dir(mRawPath.c_str(), 0700, AID_ROOT, AID_ROOT)) {
|
||||
PLOG(ERROR) << getId() << " failed to create mount points";
|
||||
|
|
|
@ -143,16 +143,6 @@ status_t VolumeBase::setInternalPath(const std::string& internalPath) {
|
|||
return OK;
|
||||
}
|
||||
|
||||
status_t VolumeBase::setLabel(const std::string& label) {
|
||||
if (mState != State::kChecking) {
|
||||
LOG(WARNING) << getId() << " label change requires state checking";
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
mLabel = label;
|
||||
return OK;
|
||||
}
|
||||
|
||||
android::sp<android::os::IVoldListener> VolumeBase::getListener() const {
|
||||
if (mSilent) {
|
||||
return nullptr;
|
||||
|
@ -229,9 +219,6 @@ status_t VolumeBase::mount() {
|
|||
|
||||
setState(State::kChecking);
|
||||
status_t res = doMount();
|
||||
if (res == OK) {
|
||||
res = VolumeManager::Instance()->onVolumeMounted(this);
|
||||
}
|
||||
setState(res == OK ? State::kMounted : State::kUnmountable);
|
||||
|
||||
return res;
|
||||
|
@ -251,11 +238,8 @@ status_t VolumeBase::unmount() {
|
|||
}
|
||||
mVolumes.clear();
|
||||
|
||||
status_t res = VolumeManager::Instance()->onVolumeUnmounted(this);
|
||||
if (res == OK) {
|
||||
res = doUnmount();
|
||||
status_t res = doUnmount();
|
||||
setState(State::kUnmounted);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
|
@ -280,8 +264,8 @@ status_t VolumeBase::doFormat(const std::string& fsType) {
|
|||
}
|
||||
|
||||
std::ostream& VolumeBase::operator<<(std::ostream& stream) const {
|
||||
return stream << " VolumeBase{id=" << mId << ",label=" << mLabel
|
||||
<< ",mountFlags=" << mMountFlags << ",mountUserId=" << mMountUserId << "}";
|
||||
return stream << " VolumeBase{id=" << mId << ",mountFlags=" << mMountFlags
|
||||
<< ",mountUserId=" << mMountUserId << "}";
|
||||
}
|
||||
|
||||
} // namespace vold
|
||||
|
|
|
@ -87,7 +87,6 @@ class VolumeBase {
|
|||
State getState() const { return mState; }
|
||||
const std::string& getPath() const { return mPath; }
|
||||
const std::string& getInternalPath() const { return mInternalPath; }
|
||||
const std::string& getLabel() const { return mLabel; }
|
||||
|
||||
status_t setDiskId(const std::string& diskId);
|
||||
status_t setPartGuid(const std::string& partGuid);
|
||||
|
@ -122,7 +121,6 @@ class VolumeBase {
|
|||
status_t setId(const std::string& id);
|
||||
status_t setPath(const std::string& path);
|
||||
status_t setInternalPath(const std::string& internalPath);
|
||||
status_t setLabel(const std::string& label);
|
||||
|
||||
android::sp<android::os::IVoldListener> getListener() const;
|
||||
|
||||
|
@ -149,12 +147,6 @@ class VolumeBase {
|
|||
std::string mInternalPath;
|
||||
/* Flag indicating that volume should emit no events */
|
||||
bool mSilent;
|
||||
/**
|
||||
* Label used for representing the package sandboxes on external storage volumes.
|
||||
* For emulated volume, this would be "emulated" and for public volumes, UUID if available,
|
||||
* otherwise some other unique id.
|
||||
*/
|
||||
std::string mLabel;
|
||||
|
||||
/* Volumes stacked on top of this volume */
|
||||
std::list<std::shared_ptr<VolumeBase>> mVolumes;
|
||||
|
|
Loading…
Reference in a new issue