blob: 9dc250b3fb0550cfe31b20f17b6015806b04fdd5 [file] [log] [blame]
San Mehatf1b736b2009-10-10 17:22:08 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yabin Cuid1104f72015-01-02 13:28:28 -080017#include <dirent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070018#include <errno.h>
San Mehata2677e42009-12-13 10:40:18 -080019#include <fcntl.h>
Kenny Root344ca102012-04-03 17:23:01 -070020#include <fts.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080021#include <mntent.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/ioctl.h>
26#include <sys/mount.h>
San Mehata19b2502010-01-06 10:33:53 -080027#include <sys/stat.h>
28#include <sys/types.h>
Jeff Sharkey66270a22015-06-24 11:49:24 -070029#include <sys/wait.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080030#include <unistd.h>
San Mehata19b2502010-01-06 10:33:53 -080031
San Mehata2677e42009-12-13 10:40:18 -080032#include <linux/kdev_t.h>
San Mehatf1b736b2009-10-10 17:22:08 -070033
34#define LOG_TAG "Vold"
35
Kenny Root7b18a7b2010-03-15 13:13:41 -070036#include <openssl/md5.h>
37
Elliott Hughes7e128fb2015-12-04 15:50:53 -080038#include <android-base/logging.h>
39#include <android-base/stringprintf.h>
Jeff Sharkey71ebe152013-09-17 17:24:38 -070040#include <cutils/fs.h>
San Mehatf1b736b2009-10-10 17:22:08 -070041#include <cutils/log.h>
42
Robert Craigb9e3ba52014-02-04 10:53:00 -050043#include <selinux/android.h>
44
San Mehatfd7f5872009-10-12 11:32:47 -070045#include <sysutils/NetlinkEvent.h>
46
Kenny Root344ca102012-04-03 17:23:01 -070047#include <private/android_filesystem_config.h>
48
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070049#include "Benchmark.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070050#include "EmulatedVolume.h"
San Mehatf1b736b2009-10-10 17:22:08 -070051#include "VolumeManager.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070052#include "NetlinkManager.h"
San Mehata2677e42009-12-13 10:40:18 -080053#include "ResponseCode.h"
San Mehata19b2502010-01-06 10:33:53 -080054#include "Loop.h"
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070055#include "fs/Ext4.h"
56#include "fs/Vfat.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070057#include "Utils.h"
San Mehatb78a32c2010-01-10 13:02:12 -080058#include "Devmapper.h"
San Mehat586536c2010-02-16 17:12:00 -080059#include "Process.h"
San Mehatfcf24fe2010-03-03 12:37:32 -080060#include "Asec.h"
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +090061#include "VoldUtil.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070062#include "cryptfs.h"
San Mehat23969932010-01-09 07:08:06 -080063
Mike Lockwood97f2fc12011-06-07 10:51:38 -070064#define MASS_STORAGE_FILE_PATH "/sys/class/android_usb/android0/f_mass_storage/lun/file"
65
Chih-Hung Hsiehcc5d5802016-05-11 15:05:05 -070066#define ROUND_UP_POWER_OF_2(number, po2) (((!!((number) & ((1U << (po2)) - 1))) << (po2))\
67 + ((number) & (~((1U << (po2)) - 1))))
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -070068
Jeff Sharkey36801cc2015-03-13 16:09:20 -070069using android::base::StringPrintf;
70
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070071/*
72 * Path to external storage where *only* root can access ASEC image files
73 */
74const char *VolumeManager::SEC_ASECDIR_EXT = "/mnt/secure/asec";
75
76/*
77 * Path to internal storage where *only* root can access ASEC image files
78 */
79const char *VolumeManager::SEC_ASECDIR_INT = "/data/app-asec";
80
81/*
82 * Path to where secure containers are mounted
83 */
84const char *VolumeManager::ASECDIR = "/mnt/asec";
85
86/*
87 * Path to where OBBs are mounted
88 */
89const char *VolumeManager::LOOPDIR = "/mnt/obb";
90
Jeff Sharkey36801cc2015-03-13 16:09:20 -070091static const char* kUserMountPath = "/mnt/user";
92
Jeff Sharkey36801cc2015-03-13 16:09:20 -070093static const unsigned int kMajorBlockMmc = 179;
Yu Ning942d4e82016-01-08 17:36:47 +080094static const unsigned int kMajorBlockExperimentalMin = 240;
95static const unsigned int kMajorBlockExperimentalMax = 254;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070096
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -070097/* writes superblock at end of file or device given by name */
98static int writeSuperBlock(const char* name, struct asec_superblock *sb, unsigned int numImgSectors) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070099 int sbfd = open(name, O_RDWR | O_CLOEXEC);
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700100 if (sbfd < 0) {
101 SLOGE("Failed to open %s for superblock write (%s)", name, strerror(errno));
102 return -1;
103 }
104
105 if (lseek(sbfd, (numImgSectors * 512), SEEK_SET) < 0) {
106 SLOGE("Failed to lseek for superblock (%s)", strerror(errno));
107 close(sbfd);
108 return -1;
109 }
110
111 if (write(sbfd, sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
112 SLOGE("Failed to write superblock (%s)", strerror(errno));
113 close(sbfd);
114 return -1;
115 }
116 close(sbfd);
117 return 0;
118}
119
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200120static unsigned long adjustSectorNumExt4(unsigned long numSectors) {
Daniel Rosenberge9196fe2014-06-10 17:16:03 -0700121 // Ext4 started to reserve 2% or 4096 clusters, whichever is smaller for
122 // preventing costly operations or unexpected ENOSPC error.
123 // Ext4::format() uses default block size without clustering.
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200124 unsigned long clusterSectors = 4096 / 512;
125 unsigned long reservedSectors = (numSectors * 2)/100 + (numSectors % 50 > 0);
Daniel Rosenberge9196fe2014-06-10 17:16:03 -0700126 numSectors += reservedSectors > (4096 * clusterSectors) ? (4096 * clusterSectors) : reservedSectors;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700127 return ROUND_UP_POWER_OF_2(numSectors, 3);
128}
129
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200130static unsigned long adjustSectorNumFAT(unsigned long numSectors) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700131 /*
132 * Add some headroom
133 */
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200134 unsigned long fatSize = (((numSectors * 4) / 512) + 1) * 2;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700135 numSectors += fatSize + 2;
136 /*
137 * FAT is aligned to 32 kb with 512b sectors.
138 */
139 return ROUND_UP_POWER_OF_2(numSectors, 6);
140}
141
142static int setupLoopDevice(char* buffer, size_t len, const char* asecFileName, const char* idHash, bool debug) {
143 if (Loop::lookupActive(idHash, buffer, len)) {
144 if (Loop::create(idHash, asecFileName, buffer, len)) {
145 SLOGE("ASEC loop device creation failed for %s (%s)", asecFileName, strerror(errno));
146 return -1;
147 }
148 if (debug) {
149 SLOGD("New loop device created at %s", buffer);
150 }
151 } else {
152 if (debug) {
153 SLOGD("Found active loopback for %s at %s", asecFileName, buffer);
154 }
155 }
156 return 0;
157}
158
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200159static int setupDevMapperDevice(char* buffer, size_t len, const char* loopDevice, const char* asecFileName, const char* key, const char* idHash , unsigned long numImgSectors, bool* createdDMDevice, bool debug) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700160 if (strcmp(key, "none")) {
161 if (Devmapper::lookupActive(idHash, buffer, len)) {
162 if (Devmapper::create(idHash, loopDevice, key, numImgSectors,
163 buffer, len)) {
164 SLOGE("ASEC device mapping failed for %s (%s)", asecFileName, strerror(errno));
165 return -1;
166 }
167 if (debug) {
168 SLOGD("New devmapper instance created at %s", buffer);
169 }
170 } else {
171 if (debug) {
172 SLOGD("Found active devmapper for %s at %s", asecFileName, buffer);
173 }
174 }
175 *createdDMDevice = true;
176 } else {
177 strcpy(buffer, loopDevice);
178 *createdDMDevice = false;
179 }
180 return 0;
181}
182
183static void waitForDevMapper(const char *dmDevice) {
184 /*
185 * Wait for the device mapper node to be created. Sometimes it takes a
186 * while. Wait for up to 1 second. We could also inspect incoming uevents,
187 * but that would take more effort.
188 */
189 int tries = 25;
190 while (tries--) {
191 if (!access(dmDevice, F_OK) || errno != ENOENT) {
192 break;
193 }
194 usleep(40 * 1000);
195 }
196}
197
San Mehatf1b736b2009-10-10 17:22:08 -0700198VolumeManager *VolumeManager::sInstance = NULL;
199
200VolumeManager *VolumeManager::Instance() {
201 if (!sInstance)
202 sInstance = new VolumeManager();
203 return sInstance;
204}
205
206VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -0800207 mDebug = false;
San Mehat88705162010-01-15 09:26:28 -0800208 mActiveContainers = new AsecIdCollection();
San Mehatf1b736b2009-10-10 17:22:08 -0700209 mBroadcaster = NULL;
Mike Lockwooda28056b2010-10-28 15:21:24 -0400210 mUmsSharingCount = 0;
211 mSavedDirtyRatio = -1;
212 // set dirty ratio to 0 when UMS is active
213 mUmsDirtyRatio = 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700214}
215
216VolumeManager::~VolumeManager() {
San Mehat88705162010-01-15 09:26:28 -0800217 delete mActiveContainers;
San Mehatf1b736b2009-10-10 17:22:08 -0700218}
219
Kenny Root7b18a7b2010-03-15 13:13:41 -0700220char *VolumeManager::asecHash(const char *id, char *buffer, size_t len) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700221 static const char* digits = "0123456789abcdef";
222
Kenny Root7b18a7b2010-03-15 13:13:41 -0700223 unsigned char sig[MD5_DIGEST_LENGTH];
224
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700225 if (buffer == NULL) {
226 SLOGE("Destination buffer is NULL");
227 errno = ESPIPE;
228 return NULL;
229 } else if (id == NULL) {
230 SLOGE("Source buffer is NULL");
231 errno = ESPIPE;
232 return NULL;
233 } else if (len < MD5_ASCII_LENGTH_PLUS_NULL) {
Colin Cross59846b62014-02-06 20:34:29 -0800234 SLOGE("Target hash buffer size < %d bytes (%zu)",
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700235 MD5_ASCII_LENGTH_PLUS_NULL, len);
San Mehatd9a4e352010-03-12 13:32:47 -0800236 errno = ESPIPE;
237 return NULL;
238 }
Kenny Root7b18a7b2010-03-15 13:13:41 -0700239
240 MD5(reinterpret_cast<const unsigned char*>(id), strlen(id), sig);
San Mehatd9a4e352010-03-12 13:32:47 -0800241
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700242 char *p = buffer;
Kenny Root7b18a7b2010-03-15 13:13:41 -0700243 for (int i = 0; i < MD5_DIGEST_LENGTH; i++) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700244 *p++ = digits[sig[i] >> 4];
245 *p++ = digits[sig[i] & 0x0F];
San Mehatd9a4e352010-03-12 13:32:47 -0800246 }
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700247 *p = '\0';
San Mehatd9a4e352010-03-12 13:32:47 -0800248
249 return buffer;
250}
251
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700252int VolumeManager::setDebug(bool enable) {
San Mehatd9a4e352010-03-12 13:32:47 -0800253 mDebug = enable;
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700254 return 0;
San Mehatd9a4e352010-03-12 13:32:47 -0800255}
256
San Mehatf1b736b2009-10-10 17:22:08 -0700257int VolumeManager::start() {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700258 // Always start from a clean slate by unmounting everything in
259 // directories that we own, in case we crashed.
Jeff Sharkey9c484982015-03-31 10:35:33 -0700260 unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700261
262 // Assume that we always have an emulated volume on internal
263 // storage; the framework will decide if it should be mounted.
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700264 CHECK(mInternalEmulated == nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700265 mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>(
Jeff Sharkey3161fb32015-04-12 16:03:33 -0700266 new android::vold::EmulatedVolume("/data/media"));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700267 mInternalEmulated->create();
268
San Mehatf1b736b2009-10-10 17:22:08 -0700269 return 0;
270}
271
272int VolumeManager::stop() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700273 CHECK(mInternalEmulated != nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700274 mInternalEmulated->destroy();
275 mInternalEmulated = nullptr;
San Mehatf1b736b2009-10-10 17:22:08 -0700276 return 0;
277}
278
San Mehatfd7f5872009-10-12 11:32:47 -0700279void VolumeManager::handleBlockEvent(NetlinkEvent *evt) {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700280 std::lock_guard<std::mutex> lock(mLock);
281
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700282 if (mDebug) {
283 LOG(VERBOSE) << "----------------";
284 LOG(VERBOSE) << "handleBlockEvent with action " << (int) evt->getAction();
285 evt->dump();
286 }
San Mehatf1b736b2009-10-10 17:22:08 -0700287
Mateusz Nowak64403792015-08-03 16:39:19 +0200288 std::string eventPath(evt->findParam("DEVPATH")?evt->findParam("DEVPATH"):"");
289 std::string devType(evt->findParam("DEVTYPE")?evt->findParam("DEVTYPE"):"");
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700290
291 if (devType != "disk") return;
292
293 int major = atoi(evt->findParam("MAJOR"));
294 int minor = atoi(evt->findParam("MINOR"));
295 dev_t device = makedev(major, minor);
296
297 switch (evt->getAction()) {
298 case NetlinkEvent::Action::kAdd: {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700299 for (const auto& source : mDiskSources) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700300 if (source->matches(eventPath)) {
Yu Ning942d4e82016-01-08 17:36:47 +0800301 // For now, assume that MMC and virtio-blk (the latter is
302 // emulator-specific; see Disk.cpp for details) devices are SD,
303 // and that everything else is USB
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700304 int flags = source->getFlags();
Yu Ning942d4e82016-01-08 17:36:47 +0800305 if (major == kMajorBlockMmc
306 || (android::vold::IsRunningInEmulator()
307 && major >= (int) kMajorBlockExperimentalMin
308 && major <= (int) kMajorBlockExperimentalMax)) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700309 flags |= android::vold::Disk::Flags::kSd;
310 } else {
311 flags |= android::vold::Disk::Flags::kUsb;
312 }
313
314 auto disk = new android::vold::Disk(eventPath, device,
315 source->getNickname(), flags);
316 disk->create();
317 mDisks.push_back(std::shared_ptr<android::vold::Disk>(disk));
318 break;
319 }
320 }
321 break;
322 }
323 case NetlinkEvent::Action::kChange: {
Jeff Sharkey7d9d0112015-04-14 23:14:23 -0700324 LOG(DEBUG) << "Disk at " << major << ":" << minor << " changed";
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700325 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700326 if (disk->getDevice() == device) {
327 disk->readMetadata();
328 disk->readPartitions();
329 }
330 }
331 break;
332 }
333 case NetlinkEvent::Action::kRemove: {
334 auto i = mDisks.begin();
335 while (i != mDisks.end()) {
336 if ((*i)->getDevice() == device) {
337 (*i)->destroy();
338 i = mDisks.erase(i);
339 } else {
340 ++i;
341 }
342 }
343 break;
344 }
345 default: {
346 LOG(WARNING) << "Unexpected block event action " << (int) evt->getAction();
347 break;
348 }
349 }
350}
351
352void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) {
Wei Wang6b455c22017-01-20 11:52:33 -0800353 std::lock_guard<std::mutex> lock(mLock);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700354 mDiskSources.push_back(diskSource);
355}
356
357std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) {
358 for (auto disk : mDisks) {
359 if (disk->getId() == id) {
360 return disk;
San Mehatf1b736b2009-10-10 17:22:08 -0700361 }
362 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700363 return nullptr;
364}
San Mehatf1b736b2009-10-10 17:22:08 -0700365
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700366std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) {
367 if (mInternalEmulated->getId() == id) {
368 return mInternalEmulated;
San Mehatf1b736b2009-10-10 17:22:08 -0700369 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700370 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700371 auto vol = disk->findVolume(id);
372 if (vol != nullptr) {
373 return vol;
374 }
375 }
376 return nullptr;
377}
378
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700379void VolumeManager::listVolumes(android::vold::VolumeBase::Type type,
380 std::list<std::string>& list) {
381 list.clear();
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700382 for (const auto& disk : mDisks) {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700383 disk->listVolumes(type, list);
384 }
385}
386
387nsecs_t VolumeManager::benchmarkPrivate(const std::string& id) {
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700388 std::string path;
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700389 if (id == "private" || id == "null") {
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700390 path = "/data";
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700391 } else {
392 auto vol = findVolume(id);
393 if (vol != nullptr && vol->getState() == android::vold::VolumeBase::State::kMounted) {
394 path = vol->getPath();
395 }
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700396 }
397
398 if (path.empty()) {
399 LOG(WARNING) << "Failed to find volume for " << id;
400 return -1;
401 }
402
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700403 return android::vold::BenchmarkPrivate(path);
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700404}
405
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700406int VolumeManager::forgetPartition(const std::string& partGuid) {
407 std::string normalizedGuid;
408 if (android::vold::NormalizeHex(partGuid, normalizedGuid)) {
409 LOG(WARNING) << "Invalid GUID " << partGuid;
410 return -1;
411 }
412
413 std::string keyPath = android::vold::BuildKeyPath(normalizedGuid);
414 if (unlink(keyPath.c_str()) != 0) {
415 LOG(ERROR) << "Failed to unlink " << keyPath;
416 return -1;
417 }
418
419 return 0;
420}
421
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700422int VolumeManager::linkPrimary(userid_t userId) {
423 std::string source(mPrimary->getPath());
424 if (mPrimary->getType() == android::vold::VolumeBase::Type::kEmulated) {
425 source = StringPrintf("%s/%d", source.c_str(), userId);
Jeff Sharkey32679a82015-07-21 14:22:01 -0700426 fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700427 }
428
429 std::string target(StringPrintf("/mnt/user/%d/primary", userId));
430 if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) {
431 if (errno != ENOENT) {
432 SLOGW("Failed to unlink %s: %s", target.c_str(), strerror(errno));
433 }
434 }
Jeff Sharkey1bfb3752015-04-29 15:22:23 -0700435 LOG(DEBUG) << "Linking " << source << " to " << target;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700436 if (TEMP_FAILURE_RETRY(symlink(source.c_str(), target.c_str()))) {
437 SLOGW("Failed to link %s to %s: %s", source.c_str(), target.c_str(),
438 strerror(errno));
439 return -errno;
440 }
441 return 0;
442}
443
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700444int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) {
445 mAddedUsers[userId] = userSerialNumber;
446 return 0;
447}
448
449int VolumeManager::onUserRemoved(userid_t userId) {
450 mAddedUsers.erase(userId);
451 return 0;
452}
453
454int VolumeManager::onUserStarted(userid_t userId) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700455 // Note that sometimes the system will spin up processes from Zygote
456 // before actually starting the user, so we're okay if Zygote
457 // already created this directory.
458 std::string path(StringPrintf("%s/%d", kUserMountPath, userId));
459 fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
460
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700461 mStartedUsers.insert(userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700462 if (mPrimary) {
463 linkPrimary(userId);
464 }
465 return 0;
466}
467
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700468int VolumeManager::onUserStopped(userid_t userId) {
469 mStartedUsers.erase(userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700470 return 0;
471}
472
473int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) {
474 mPrimary = vol;
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700475 for (userid_t userId : mStartedUsers) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700476 linkPrimary(userId);
477 }
478 return 0;
479}
480
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700481static int unmount_tree(const char* path) {
482 size_t path_len = strlen(path);
483
484 FILE* fp = setmntent("/proc/mounts", "r");
485 if (fp == NULL) {
486 ALOGE("Error opening /proc/mounts: %s", strerror(errno));
487 return -errno;
488 }
489
490 // Some volumes can be stacked on each other, so force unmount in
491 // reverse order to give us the best chance of success.
492 std::list<std::string> toUnmount;
493 mntent* mentry;
494 while ((mentry = getmntent(fp)) != NULL) {
495 if (strncmp(mentry->mnt_dir, path, path_len) == 0) {
496 toUnmount.push_front(std::string(mentry->mnt_dir));
497 }
498 }
499 endmntent(fp);
500
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700501 for (const auto& path : toUnmount) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700502 if (umount2(path.c_str(), MNT_DETACH)) {
503 ALOGW("Failed to unmount %s: %s", path.c_str(), strerror(errno));
504 }
505 }
506 return 0;
507}
508
Jeff Sharkey66270a22015-06-24 11:49:24 -0700509int VolumeManager::remountUid(uid_t uid, const std::string& mode) {
510 LOG(DEBUG) << "Remounting " << uid << " as mode " << mode;
511
512 DIR* dir;
513 struct dirent* de;
514 char rootName[PATH_MAX];
515 char pidName[PATH_MAX];
516 int pidFd;
517 int nsFd;
518 struct stat sb;
519 pid_t child;
520
521 if (!(dir = opendir("/proc"))) {
522 PLOG(ERROR) << "Failed to opendir";
523 return -1;
524 }
525
526 // Figure out root namespace to compare against below
Daichi Hirono10d34882016-01-29 14:33:51 +0900527 if (android::vold::SaneReadLinkAt(dirfd(dir), "1/ns/mnt", rootName, PATH_MAX) == -1) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700528 PLOG(ERROR) << "Failed to readlink";
529 closedir(dir);
530 return -1;
531 }
532
533 // Poke through all running PIDs look for apps running as UID
534 while ((de = readdir(dir))) {
535 pidFd = -1;
536 nsFd = -1;
537
538 pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
539 if (pidFd < 0) {
540 goto next;
541 }
542 if (fstat(pidFd, &sb) != 0) {
543 PLOG(WARNING) << "Failed to stat " << de->d_name;
544 goto next;
545 }
546 if (sb.st_uid != uid) {
547 goto next;
548 }
549
550 // Matches so far, but refuse to touch if in root namespace
551 LOG(DEBUG) << "Found matching PID " << de->d_name;
Daichi Hirono10d34882016-01-29 14:33:51 +0900552 if (android::vold::SaneReadLinkAt(pidFd, "ns/mnt", pidName, PATH_MAX) == -1) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700553 PLOG(WARNING) << "Failed to read namespace for " << de->d_name;
554 goto next;
555 }
556 if (!strcmp(rootName, pidName)) {
557 LOG(WARNING) << "Skipping due to root namespace";
558 goto next;
559 }
560
561 // We purposefully leave the namespace open across the fork
562 nsFd = openat(pidFd, "ns/mnt", O_RDONLY);
563 if (nsFd < 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700564 PLOG(WARNING) << "Failed to open namespace for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700565 goto next;
566 }
567
568 if (!(child = fork())) {
569 if (setns(nsFd, CLONE_NEWNS) != 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700570 PLOG(ERROR) << "Failed to setns for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700571 _exit(1);
572 }
573
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700574 unmount_tree("/storage");
Jeff Sharkey66270a22015-06-24 11:49:24 -0700575
576 std::string storageSource;
577 if (mode == "default") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700578 storageSource = "/mnt/runtime/default";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700579 } else if (mode == "read") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700580 storageSource = "/mnt/runtime/read";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700581 } else if (mode == "write") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700582 storageSource = "/mnt/runtime/write";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700583 } else {
584 // Sane default of no storage visible
585 _exit(0);
586 }
587 if (TEMP_FAILURE_RETRY(mount(storageSource.c_str(), "/storage",
Hidehiko Abe674bed12016-03-09 16:42:10 +0900588 NULL, MS_BIND | MS_REC, NULL)) == -1) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700589 PLOG(ERROR) << "Failed to mount " << storageSource << " for "
590 << de->d_name;
591 _exit(1);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700592 }
Hidehiko Abe674bed12016-03-09 16:42:10 +0900593 if (TEMP_FAILURE_RETRY(mount(NULL, "/storage", NULL,
594 MS_REC | MS_SLAVE, NULL)) == -1) {
595 PLOG(ERROR) << "Failed to set MS_SLAVE to /storage for "
596 << de->d_name;
597 _exit(1);
598 }
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700599
600 // Mount user-specific symlink helper into place
601 userid_t user_id = multiuser_get_user_id(uid);
602 std::string userSource(StringPrintf("/mnt/user/%d", user_id));
603 if (TEMP_FAILURE_RETRY(mount(userSource.c_str(), "/storage/self",
604 NULL, MS_BIND, NULL)) == -1) {
605 PLOG(ERROR) << "Failed to mount " << userSource << " for "
606 << de->d_name;
607 _exit(1);
608 }
609
Jeff Sharkey66270a22015-06-24 11:49:24 -0700610 _exit(0);
611 }
612
613 if (child == -1) {
614 PLOG(ERROR) << "Failed to fork";
615 goto next;
616 } else {
617 TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0));
618 }
619
620next:
621 close(nsFd);
622 close(pidFd);
623 }
624 closedir(dir);
625 return 0;
626}
627
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700628int VolumeManager::reset() {
629 // Tear down all existing disks/volumes and start from a blank slate so
630 // newly connected framework hears all events.
631 mInternalEmulated->destroy();
632 mInternalEmulated->create();
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700633 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700634 disk->destroy();
635 disk->create();
636 }
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700637 mAddedUsers.clear();
638 mStartedUsers.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700639 return 0;
640}
641
642int VolumeManager::shutdown() {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700643 mInternalEmulated->destroy();
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700644 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700645 disk->destroy();
646 }
647 mDisks.clear();
648 return 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700649}
650
Jeff Sharkey9c484982015-03-31 10:35:33 -0700651int VolumeManager::unmountAll() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700652 std::lock_guard<std::mutex> lock(mLock);
653
Jeff Sharkey9c484982015-03-31 10:35:33 -0700654 // First, try gracefully unmounting all known devices
655 if (mInternalEmulated != nullptr) {
656 mInternalEmulated->unmount();
657 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700658 for (const auto& disk : mDisks) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700659 disk->unmountAll();
660 }
661
662 // Worst case we might have some stale mounts lurking around, so
663 // force unmount those just to be safe.
664 FILE* fp = setmntent("/proc/mounts", "r");
665 if (fp == NULL) {
666 SLOGE("Error opening /proc/mounts: %s", strerror(errno));
667 return -errno;
668 }
669
670 // Some volumes can be stacked on each other, so force unmount in
671 // reverse order to give us the best chance of success.
672 std::list<std::string> toUnmount;
673 mntent* mentry;
674 while ((mentry = getmntent(fp)) != NULL) {
675 if (strncmp(mentry->mnt_dir, "/mnt/", 5) == 0
676 || strncmp(mentry->mnt_dir, "/storage/", 9) == 0) {
677 toUnmount.push_front(std::string(mentry->mnt_dir));
678 }
679 }
680 endmntent(fp);
681
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700682 for (const auto& path : toUnmount) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700683 SLOGW("Tearing down stale mount %s", path.c_str());
684 android::vold::ForceUnmount(path);
685 }
686
687 return 0;
688}
689
Kenny Root508c0e12010-07-12 09:59:49 -0700690int VolumeManager::getObbMountPath(const char *sourceFile, char *mountPath, int mountPathLen) {
691 char idHash[33];
692 if (!asecHash(sourceFile, idHash, sizeof(idHash))) {
693 SLOGE("Hash of '%s' failed (%s)", sourceFile, strerror(errno));
694 return -1;
695 }
696
697 memset(mountPath, 0, mountPathLen);
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700698 int written = snprintf(mountPath, mountPathLen, "%s/%s", VolumeManager::LOOPDIR, idHash);
rpcraigd1c226f2012-10-09 06:58:16 -0400699 if ((written < 0) || (written >= mountPathLen)) {
700 errno = EINVAL;
701 return -1;
702 }
Kenny Root508c0e12010-07-12 09:59:49 -0700703
704 if (access(mountPath, F_OK)) {
705 errno = ENOENT;
706 return -1;
707 }
708
709 return 0;
710}
711
San Mehata19b2502010-01-06 10:33:53 -0800712int VolumeManager::getAsecMountPath(const char *id, char *buffer, int maxlen) {
San Mehat88ac2c02010-03-23 11:15:58 -0700713 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700714
Nick Kralevich0de7c612014-01-27 14:58:06 -0800715 if (!isLegalAsecId(id)) {
716 SLOGE("getAsecMountPath: Invalid asec id \"%s\"", id);
717 errno = EINVAL;
718 return -1;
719 }
720
Kenny Root344ca102012-04-03 17:23:01 -0700721 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
722 SLOGE("Couldn't find ASEC %s", id);
723 return -1;
724 }
San Mehat88ac2c02010-03-23 11:15:58 -0700725
726 memset(buffer, 0, maxlen);
727 if (access(asecFileName, F_OK)) {
728 errno = ENOENT;
729 return -1;
730 }
San Mehata19b2502010-01-06 10:33:53 -0800731
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700732 int written = snprintf(buffer, maxlen, "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -0400733 if ((written < 0) || (written >= maxlen)) {
734 SLOGE("getAsecMountPath failed for %s: couldn't construct path in buffer", id);
735 errno = EINVAL;
736 return -1;
737 }
738
San Mehata19b2502010-01-06 10:33:53 -0800739 return 0;
740}
741
Dianne Hackborn736910c2011-06-27 13:37:07 -0700742int VolumeManager::getAsecFilesystemPath(const char *id, char *buffer, int maxlen) {
743 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700744
Nick Kralevich0de7c612014-01-27 14:58:06 -0800745 if (!isLegalAsecId(id)) {
746 SLOGE("getAsecFilesystemPath: Invalid asec id \"%s\"", id);
747 errno = EINVAL;
748 return -1;
749 }
750
Kenny Root344ca102012-04-03 17:23:01 -0700751 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
752 SLOGE("Couldn't find ASEC %s", id);
753 return -1;
754 }
Dianne Hackborn736910c2011-06-27 13:37:07 -0700755
756 memset(buffer, 0, maxlen);
757 if (access(asecFileName, F_OK)) {
758 errno = ENOENT;
759 return -1;
760 }
761
rpcraigd1c226f2012-10-09 06:58:16 -0400762 int written = snprintf(buffer, maxlen, "%s", asecFileName);
763 if ((written < 0) || (written >= maxlen)) {
764 errno = EINVAL;
765 return -1;
766 }
767
Dianne Hackborn736910c2011-06-27 13:37:07 -0700768 return 0;
769}
770
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200771int VolumeManager::createAsec(const char *id, unsigned long numSectors, const char *fstype,
Kenny Root344ca102012-04-03 17:23:01 -0700772 const char *key, const int ownerUid, bool isExternal) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800773 struct asec_superblock sb;
774 memset(&sb, 0, sizeof(sb));
775
Nick Kralevich0de7c612014-01-27 14:58:06 -0800776 if (!isLegalAsecId(id)) {
777 SLOGE("createAsec: Invalid asec id \"%s\"", id);
778 errno = EINVAL;
779 return -1;
780 }
781
Kenny Root344ca102012-04-03 17:23:01 -0700782 const bool wantFilesystem = strcmp(fstype, "none");
783 bool usingExt4 = false;
784 if (wantFilesystem) {
785 usingExt4 = !strcmp(fstype, "ext4");
786 if (usingExt4) {
787 sb.c_opts |= ASEC_SB_C_OPTS_EXT4;
788 } else if (strcmp(fstype, "fat")) {
789 SLOGE("Invalid filesystem type %s", fstype);
790 errno = EINVAL;
791 return -1;
792 }
793 }
794
San Mehatfcf24fe2010-03-03 12:37:32 -0800795 sb.magic = ASEC_SB_MAGIC;
796 sb.ver = ASEC_SB_VER;
San Mehata19b2502010-01-06 10:33:53 -0800797
San Mehatd31e3802010-02-18 08:37:45 -0800798 if (numSectors < ((1024*1024)/512)) {
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200799 SLOGE("Invalid container size specified (%lu sectors)", numSectors);
San Mehatd31e3802010-02-18 08:37:45 -0800800 errno = EINVAL;
801 return -1;
802 }
803
San Mehata19b2502010-01-06 10:33:53 -0800804 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700805
806 if (!findAsec(id, asecFileName, sizeof(asecFileName))) {
807 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
808 asecFileName, strerror(errno));
809 errno = EADDRINUSE;
810 return -1;
811 }
812
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700813 const char *asecDir = isExternal ? VolumeManager::SEC_ASECDIR_EXT : VolumeManager::SEC_ASECDIR_INT;
Kenny Root344ca102012-04-03 17:23:01 -0700814
rpcraigd1c226f2012-10-09 06:58:16 -0400815 int written = snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", asecDir, id);
816 if ((written < 0) || (size_t(written) >= sizeof(asecFileName))) {
817 errno = EINVAL;
818 return -1;
819 }
San Mehata19b2502010-01-06 10:33:53 -0800820
821 if (!access(asecFileName, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700822 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
Kenny Root344ca102012-04-03 17:23:01 -0700823 asecFileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800824 errno = EADDRINUSE;
825 return -1;
826 }
827
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200828 unsigned long numImgSectors;
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700829 if (usingExt4)
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700830 numImgSectors = adjustSectorNumExt4(numSectors);
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700831 else
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700832 numImgSectors = adjustSectorNumFAT(numSectors);
San Mehatfcf24fe2010-03-03 12:37:32 -0800833
834 // Add +1 for our superblock which is at the end
835 if (Loop::createImageFile(asecFileName, numImgSectors + 1)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700836 SLOGE("ASEC image file creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800837 return -1;
838 }
839
San Mehatd9a4e352010-03-12 13:32:47 -0800840 char idHash[33];
841 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700842 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800843 unlink(asecFileName);
844 return -1;
845 }
846
San Mehata19b2502010-01-06 10:33:53 -0800847 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -0800848 if (Loop::create(idHash, asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700849 SLOGE("ASEC loop device creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800850 unlink(asecFileName);
851 return -1;
852 }
853
San Mehatb78a32c2010-01-10 13:02:12 -0800854 char dmDevice[255];
855 bool cleanupDm = false;
San Mehata19b2502010-01-06 10:33:53 -0800856
San Mehatb78a32c2010-01-10 13:02:12 -0800857 if (strcmp(key, "none")) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800858 // XXX: This is all we support for now
859 sb.c_cipher = ASEC_SB_C_CIPHER_TWOFISH;
San Mehatd9a4e352010-03-12 13:32:47 -0800860 if (Devmapper::create(idHash, loopDevice, key, numImgSectors, dmDevice,
San Mehatb78a32c2010-01-10 13:02:12 -0800861 sizeof(dmDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700862 SLOGE("ASEC device mapping failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800863 Loop::destroyByDevice(loopDevice);
864 unlink(asecFileName);
865 return -1;
866 }
867 cleanupDm = true;
868 } else {
San Mehatfcf24fe2010-03-03 12:37:32 -0800869 sb.c_cipher = ASEC_SB_C_CIPHER_NONE;
San Mehatb78a32c2010-01-10 13:02:12 -0800870 strcpy(dmDevice, loopDevice);
871 }
872
San Mehatfcf24fe2010-03-03 12:37:32 -0800873 /*
874 * Drop down the superblock at the end of the file
875 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700876 if (writeSuperBlock(loopDevice, &sb, numImgSectors)) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800877 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800878 Devmapper::destroy(idHash);
San Mehatfcf24fe2010-03-03 12:37:32 -0800879 }
880 Loop::destroyByDevice(loopDevice);
881 unlink(asecFileName);
882 return -1;
883 }
884
Kenny Root344ca102012-04-03 17:23:01 -0700885 if (wantFilesystem) {
886 int formatStatus;
rpcraiga54e13a2012-09-21 14:17:08 -0400887 char mountPoint[255];
888
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700889 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -0400890 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
891 SLOGE("ASEC fs format failed: couldn't construct mountPoint");
892 if (cleanupDm) {
893 Devmapper::destroy(idHash);
894 }
895 Loop::destroyByDevice(loopDevice);
896 unlink(asecFileName);
897 return -1;
898 }
rpcraiga54e13a2012-09-21 14:17:08 -0400899
Kenny Root344ca102012-04-03 17:23:01 -0700900 if (usingExt4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700901 formatStatus = android::vold::ext4::Format(dmDevice, numImgSectors, mountPoint);
Kenny Root344ca102012-04-03 17:23:01 -0700902 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700903 formatStatus = android::vold::vfat::Format(dmDevice, numImgSectors);
San Mehatb78a32c2010-01-10 13:02:12 -0800904 }
San Mehata19b2502010-01-06 10:33:53 -0800905
Kenny Root344ca102012-04-03 17:23:01 -0700906 if (formatStatus < 0) {
907 SLOGE("ASEC fs format failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800908 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800909 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -0800910 }
San Mehateb13a902010-01-07 12:12:50 -0800911 Loop::destroyByDevice(loopDevice);
912 unlink(asecFileName);
913 return -1;
914 }
Kenny Root344ca102012-04-03 17:23:01 -0700915
Kenny Root344ca102012-04-03 17:23:01 -0700916 if (mkdir(mountPoint, 0000)) {
San Mehata1091cb2010-02-28 20:17:20 -0800917 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -0700918 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800919 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800920 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800921 }
922 Loop::destroyByDevice(loopDevice);
923 unlink(asecFileName);
924 return -1;
925 }
San Mehatb78a32c2010-01-10 13:02:12 -0800926 }
San Mehata1091cb2010-02-28 20:17:20 -0800927
Kenny Root344ca102012-04-03 17:23:01 -0700928 int mountStatus;
929 if (usingExt4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700930 mountStatus = android::vold::ext4::Mount(dmDevice, mountPoint,
931 false, false, false);
Kenny Root344ca102012-04-03 17:23:01 -0700932 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700933 mountStatus = android::vold::vfat::Mount(dmDevice, mountPoint,
934 false, false, false, ownerUid, 0, 0000, false);
Kenny Root344ca102012-04-03 17:23:01 -0700935 }
936
937 if (mountStatus) {
San Mehat97ac40e2010-03-24 10:24:19 -0700938 SLOGE("ASEC FAT mount failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800939 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800940 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800941 }
942 Loop::destroyByDevice(loopDevice);
943 unlink(asecFileName);
944 return -1;
945 }
Kenny Root344ca102012-04-03 17:23:01 -0700946
947 if (usingExt4) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700948 int dirfd = open(mountPoint, O_DIRECTORY | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -0700949 if (dirfd >= 0) {
950 if (fchown(dirfd, ownerUid, AID_SYSTEM)
951 || fchmod(dirfd, S_IRUSR | S_IWUSR | S_IXUSR | S_ISGID | S_IRGRP | S_IXGRP)) {
952 SLOGI("Cannot chown/chmod new ASEC mount point %s", mountPoint);
953 }
954 close(dirfd);
955 }
956 }
San Mehata1091cb2010-02-28 20:17:20 -0800957 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700958 SLOGI("Created raw secure container %s (no filesystem)", id);
San Mehata19b2502010-01-06 10:33:53 -0800959 }
San Mehat88705162010-01-15 09:26:28 -0800960
Kenny Rootcbacf782010-09-24 15:11:48 -0700961 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehata19b2502010-01-06 10:33:53 -0800962 return 0;
963}
964
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200965int VolumeManager::resizeAsec(const char *id, unsigned long numSectors, const char *key) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700966 char asecFileName[255];
967 char mountPoint[255];
968 bool cleanupDm = false;
969
970 if (!isLegalAsecId(id)) {
971 SLOGE("resizeAsec: Invalid asec id \"%s\"", id);
972 errno = EINVAL;
973 return -1;
974 }
975
976 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
977 SLOGE("Couldn't find ASEC %s", id);
978 return -1;
979 }
980
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700981 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700982 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
983 SLOGE("ASEC resize failed for %s: couldn't construct mountpoint", id);
984 return -1;
985 }
986
987 if (isMountpointMounted(mountPoint)) {
988 SLOGE("ASEC %s mounted. Unmount before resizing", id);
989 errno = EBUSY;
990 return -1;
991 }
992
993 struct asec_superblock sb;
994 int fd;
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200995 unsigned long oldNumSec = 0;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700996
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700997 if ((fd = open(asecFileName, O_RDONLY | O_CLOEXEC)) < 0) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700998 SLOGE("Failed to open ASEC file (%s)", strerror(errno));
999 return -1;
1000 }
1001
1002 struct stat info;
1003 if (fstat(fd, &info) < 0) {
1004 SLOGE("Failed to get file size (%s)", strerror(errno));
1005 close(fd);
1006 return -1;
1007 }
1008
1009 oldNumSec = info.st_size / 512;
1010
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001011 /*
1012 * Try to read superblock.
1013 */
1014 memset(&sb, 0, sizeof(struct asec_superblock));
1015 if (lseek(fd, ((oldNumSec - 1) * 512), SEEK_SET) < 0) {
1016 SLOGE("lseek failed (%s)", strerror(errno));
1017 close(fd);
1018 return -1;
1019 }
1020 if (read(fd, &sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
1021 SLOGE("superblock read failed (%s)", strerror(errno));
1022 close(fd);
1023 return -1;
1024 }
1025 close(fd);
1026
1027 if (mDebug) {
1028 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
1029 }
1030 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
1031 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
1032 errno = EMEDIUMTYPE;
1033 return -1;
1034 }
1035
Daniel Rosenberge4c291a2016-04-20 14:07:32 -07001036 unsigned long numImgSectors;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001037 if (!(sb.c_opts & ASEC_SB_C_OPTS_EXT4)) {
1038 SLOGE("Only ext4 partitions are supported for resize");
1039 errno = EINVAL;
1040 return -1;
Daniel Rosenberge4c291a2016-04-20 14:07:32 -07001041 } else {
1042 numImgSectors = adjustSectorNumExt4(numSectors);
1043 }
1044
1045 /*
1046 * add one block for the superblock
1047 */
1048 SLOGD("Resizing from %lu sectors to %lu sectors", oldNumSec, numImgSectors + 1);
1049 if (oldNumSec == numImgSectors + 1) {
1050 SLOGW("Size unchanged; ignoring resize request");
1051 return 0;
1052 } else if (oldNumSec > numImgSectors + 1) {
1053 SLOGE("Only growing is currently supported.");
1054 close(fd);
1055 return -1;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001056 }
1057
1058 if (Loop::resizeImageFile(asecFileName, numImgSectors + 1)) {
1059 SLOGE("Resize of ASEC image file failed. Could not resize %s", id);
1060 return -1;
1061 }
1062
1063 /*
1064 * Drop down a copy of the superblock at the end of the file
1065 */
1066 if (writeSuperBlock(asecFileName, &sb, numImgSectors))
1067 goto fail;
1068
1069 char idHash[33];
1070 if (!asecHash(id, idHash, sizeof(idHash))) {
1071 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
1072 goto fail;
1073 }
1074
1075 char loopDevice[255];
1076 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
1077 goto fail;
1078
1079 char dmDevice[255];
1080
1081 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash, numImgSectors, &cleanupDm, mDebug)) {
1082 Loop::destroyByDevice(loopDevice);
1083 goto fail;
1084 }
1085
1086 /*
1087 * Wait for the device mapper node to be created.
1088 */
1089 waitForDevMapper(dmDevice);
1090
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001091 if (android::vold::ext4::Resize(dmDevice, numImgSectors)) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001092 SLOGE("Unable to resize %s (%s)", id, strerror(errno));
1093 if (cleanupDm) {
1094 Devmapper::destroy(idHash);
1095 }
1096 Loop::destroyByDevice(loopDevice);
1097 goto fail;
1098 }
1099
1100 return 0;
1101fail:
1102 Loop::resizeImageFile(asecFileName, oldNumSec);
1103 return -1;
1104}
1105
San Mehata19b2502010-01-06 10:33:53 -08001106int VolumeManager::finalizeAsec(const char *id) {
1107 char asecFileName[255];
1108 char loopDevice[255];
1109 char mountPoint[255];
1110
Nick Kralevich0de7c612014-01-27 14:58:06 -08001111 if (!isLegalAsecId(id)) {
1112 SLOGE("finalizeAsec: Invalid asec id \"%s\"", id);
1113 errno = EINVAL;
1114 return -1;
1115 }
1116
Kenny Root344ca102012-04-03 17:23:01 -07001117 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1118 SLOGE("Couldn't find ASEC %s", id);
1119 return -1;
1120 }
San Mehata19b2502010-01-06 10:33:53 -08001121
San Mehatd9a4e352010-03-12 13:32:47 -08001122 char idHash[33];
1123 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001124 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001125 return -1;
1126 }
1127
1128 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001129 SLOGE("Unable to finalize %s (%s)", id, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001130 return -1;
1131 }
1132
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001133 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -07001134 struct asec_superblock sb;
1135
1136 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1137 return -1;
1138 }
1139
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001140 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001141 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1142 SLOGE("ASEC finalize failed: couldn't construct mountPoint");
1143 return -1;
1144 }
Kenny Root344ca102012-04-03 17:23:01 -07001145
1146 int result = 0;
1147 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001148 result = android::vold::ext4::Mount(loopDevice, mountPoint,
1149 true, true, true);
Kenny Root344ca102012-04-03 17:23:01 -07001150 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001151 result = android::vold::vfat::Mount(loopDevice, mountPoint,
1152 true, true, true, 0, 0, 0227, false);
Kenny Root344ca102012-04-03 17:23:01 -07001153 }
1154
1155 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -07001156 SLOGE("ASEC finalize mount failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001157 return -1;
1158 }
1159
San Mehatd9a4e352010-03-12 13:32:47 -08001160 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001161 SLOGD("ASEC %s finalized", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001162 }
San Mehata19b2502010-01-06 10:33:53 -08001163 return 0;
1164}
1165
Kenny Root344ca102012-04-03 17:23:01 -07001166int VolumeManager::fixupAsecPermissions(const char *id, gid_t gid, const char* filename) {
1167 char asecFileName[255];
1168 char loopDevice[255];
1169 char mountPoint[255];
1170
1171 if (gid < AID_APP) {
1172 SLOGE("Group ID is not in application range");
1173 return -1;
1174 }
1175
Nick Kralevich0de7c612014-01-27 14:58:06 -08001176 if (!isLegalAsecId(id)) {
1177 SLOGE("fixupAsecPermissions: Invalid asec id \"%s\"", id);
1178 errno = EINVAL;
1179 return -1;
1180 }
1181
Kenny Root344ca102012-04-03 17:23:01 -07001182 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1183 SLOGE("Couldn't find ASEC %s", id);
1184 return -1;
1185 }
1186
1187 char idHash[33];
1188 if (!asecHash(id, idHash, sizeof(idHash))) {
1189 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
1190 return -1;
1191 }
1192
1193 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
1194 SLOGE("Unable fix permissions during lookup on %s (%s)", id, strerror(errno));
1195 return -1;
1196 }
1197
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001198 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -07001199 struct asec_superblock sb;
1200
1201 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1202 return -1;
1203 }
1204
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001205 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001206 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1207 SLOGE("Unable remount to fix permissions for %s: couldn't construct mountpoint", id);
1208 return -1;
1209 }
Kenny Root344ca102012-04-03 17:23:01 -07001210
1211 int result = 0;
1212 if ((sb.c_opts & ASEC_SB_C_OPTS_EXT4) == 0) {
1213 return 0;
1214 }
1215
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001216 int ret = android::vold::ext4::Mount(loopDevice, mountPoint,
Kenny Root344ca102012-04-03 17:23:01 -07001217 false /* read-only */,
1218 true /* remount */,
1219 false /* executable */);
1220 if (ret) {
1221 SLOGE("Unable remount to fix permissions for %s (%s)", id, strerror(errno));
1222 return -1;
1223 }
1224
1225 char *paths[] = { mountPoint, NULL };
1226
1227 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL);
1228 if (fts) {
1229 // Traverse the entire hierarchy and chown to system UID.
1230 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
1231 // We don't care about the lost+found directory.
1232 if (!strcmp(ftsent->fts_name, "lost+found")) {
1233 continue;
1234 }
1235
1236 /*
1237 * There can only be one file marked as private right now.
1238 * This should be more robust, but it satisfies the requirements
1239 * we have for right now.
1240 */
1241 const bool privateFile = !strcmp(ftsent->fts_name, filename);
1242
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001243 int fd = open(ftsent->fts_accpath, O_NOFOLLOW | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -07001244 if (fd < 0) {
1245 SLOGE("Couldn't open file %s: %s", ftsent->fts_accpath, strerror(errno));
1246 result = -1;
1247 continue;
1248 }
1249
1250 result |= fchown(fd, AID_SYSTEM, privateFile? gid : AID_SYSTEM);
1251
1252 if (ftsent->fts_info & FTS_D) {
Kenny Root1a673c82012-05-10 16:45:29 -07001253 result |= fchmod(fd, 0755);
Kenny Root348c8ab2012-05-10 15:39:53 -07001254 } else if (ftsent->fts_info & FTS_F) {
Kenny Root344ca102012-04-03 17:23:01 -07001255 result |= fchmod(fd, privateFile ? 0640 : 0644);
1256 }
Robert Craigb9e3ba52014-02-04 10:53:00 -05001257
Stephen Smalley5093e612014-02-12 09:43:08 -05001258 if (selinux_android_restorecon(ftsent->fts_path, 0) < 0) {
Robert Craigb9e3ba52014-02-04 10:53:00 -05001259 SLOGE("restorecon failed for %s: %s\n", ftsent->fts_path, strerror(errno));
1260 result |= -1;
1261 }
1262
Kenny Root344ca102012-04-03 17:23:01 -07001263 close(fd);
1264 }
1265 fts_close(fts);
1266
1267 // Finally make the directory readable by everyone.
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001268 int dirfd = open(mountPoint, O_DIRECTORY | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -07001269 if (dirfd < 0 || fchmod(dirfd, 0755)) {
1270 SLOGE("Couldn't change owner of existing directory %s: %s", mountPoint, strerror(errno));
1271 result |= -1;
1272 }
1273 close(dirfd);
1274 } else {
1275 result |= -1;
1276 }
1277
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001278 result |= android::vold::ext4::Mount(loopDevice, mountPoint,
Kenny Root344ca102012-04-03 17:23:01 -07001279 true /* read-only */,
1280 true /* remount */,
1281 true /* execute */);
1282
1283 if (result) {
1284 SLOGE("ASEC fix permissions failed (%s)", strerror(errno));
1285 return -1;
1286 }
1287
1288 if (mDebug) {
1289 SLOGD("ASEC %s permissions fixed", id);
1290 }
1291 return 0;
1292}
1293
San Mehat048b0802010-01-23 08:17:06 -08001294int VolumeManager::renameAsec(const char *id1, const char *id2) {
Kenny Root344ca102012-04-03 17:23:01 -07001295 char asecFilename1[255];
San Mehat048b0802010-01-23 08:17:06 -08001296 char *asecFilename2;
1297 char mountPoint[255];
1298
Kenny Root344ca102012-04-03 17:23:01 -07001299 const char *dir;
1300
Nick Kralevich0de7c612014-01-27 14:58:06 -08001301 if (!isLegalAsecId(id1)) {
1302 SLOGE("renameAsec: Invalid asec id1 \"%s\"", id1);
1303 errno = EINVAL;
1304 return -1;
1305 }
1306
1307 if (!isLegalAsecId(id2)) {
1308 SLOGE("renameAsec: Invalid asec id2 \"%s\"", id2);
1309 errno = EINVAL;
1310 return -1;
1311 }
1312
Kenny Root344ca102012-04-03 17:23:01 -07001313 if (findAsec(id1, asecFilename1, sizeof(asecFilename1), &dir)) {
1314 SLOGE("Couldn't find ASEC %s", id1);
1315 return -1;
1316 }
1317
1318 asprintf(&asecFilename2, "%s/%s.asec", dir, id2);
San Mehat048b0802010-01-23 08:17:06 -08001319
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001320 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id1);
rpcraigd1c226f2012-10-09 06:58:16 -04001321 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1322 SLOGE("Rename failed: couldn't construct mountpoint");
1323 goto out_err;
1324 }
1325
San Mehat048b0802010-01-23 08:17:06 -08001326 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001327 SLOGW("Rename attempt when src mounted");
San Mehat048b0802010-01-23 08:17:06 -08001328 errno = EBUSY;
1329 goto out_err;
1330 }
1331
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001332 written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id2);
rpcraigd1c226f2012-10-09 06:58:16 -04001333 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1334 SLOGE("Rename failed: couldn't construct mountpoint2");
1335 goto out_err;
1336 }
1337
San Mehat96956ed2010-02-24 08:42:51 -08001338 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001339 SLOGW("Rename attempt when dst mounted");
San Mehat96956ed2010-02-24 08:42:51 -08001340 errno = EBUSY;
1341 goto out_err;
1342 }
1343
San Mehat048b0802010-01-23 08:17:06 -08001344 if (!access(asecFilename2, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001345 SLOGE("Rename attempt when dst exists");
San Mehat048b0802010-01-23 08:17:06 -08001346 errno = EADDRINUSE;
1347 goto out_err;
1348 }
1349
1350 if (rename(asecFilename1, asecFilename2)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001351 SLOGE("Rename of '%s' to '%s' failed (%s)", asecFilename1, asecFilename2, strerror(errno));
San Mehat048b0802010-01-23 08:17:06 -08001352 goto out_err;
1353 }
1354
San Mehat048b0802010-01-23 08:17:06 -08001355 free(asecFilename2);
1356 return 0;
1357
1358out_err:
San Mehat048b0802010-01-23 08:17:06 -08001359 free(asecFilename2);
1360 return -1;
1361}
1362
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001363#define UNMOUNT_RETRIES 5
1364#define UNMOUNT_SLEEP_BETWEEN_RETRY_MS (1000 * 1000)
San Mehat4ba89482010-02-18 09:00:18 -08001365int VolumeManager::unmountAsec(const char *id, bool force) {
San Mehata19b2502010-01-06 10:33:53 -08001366 char asecFileName[255];
1367 char mountPoint[255];
1368
Nick Kralevich0de7c612014-01-27 14:58:06 -08001369 if (!isLegalAsecId(id)) {
1370 SLOGE("unmountAsec: Invalid asec id \"%s\"", id);
1371 errno = EINVAL;
1372 return -1;
1373 }
1374
Kenny Root344ca102012-04-03 17:23:01 -07001375 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1376 SLOGE("Couldn't find ASEC %s", id);
1377 return -1;
1378 }
1379
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001380 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001381 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1382 SLOGE("ASEC unmount failed for %s: couldn't construct mountpoint", id);
1383 return -1;
1384 }
San Mehata19b2502010-01-06 10:33:53 -08001385
San Mehatd9a4e352010-03-12 13:32:47 -08001386 char idHash[33];
1387 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001388 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001389 return -1;
1390 }
1391
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001392 return unmountLoopImage(id, idHash, asecFileName, mountPoint, force);
1393}
1394
Kenny Root508c0e12010-07-12 09:59:49 -07001395int VolumeManager::unmountObb(const char *fileName, bool force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001396 char mountPoint[255];
1397
1398 char idHash[33];
1399 if (!asecHash(fileName, idHash, sizeof(idHash))) {
1400 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno));
1401 return -1;
1402 }
1403
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001404 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::LOOPDIR, idHash);
rpcraigd1c226f2012-10-09 06:58:16 -04001405 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1406 SLOGE("OBB unmount failed for %s: couldn't construct mountpoint", fileName);
1407 return -1;
1408 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001409
1410 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force);
1411}
1412
1413int VolumeManager::unmountLoopImage(const char *id, const char *idHash,
1414 const char *fileName, const char *mountPoint, bool force) {
San Mehat0586d542010-01-12 15:38:59 -08001415 if (!isMountpointMounted(mountPoint)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001416 SLOGE("Unmount request for %s when not mounted", id);
Kenny Root918e5f92010-09-30 18:00:52 -07001417 errno = ENOENT;
San Mehatb78a32c2010-01-10 13:02:12 -08001418 return -1;
1419 }
San Mehat23969932010-01-09 07:08:06 -08001420
San Mehatb78a32c2010-01-10 13:02:12 -08001421 int i, rc;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001422 for (i = 1; i <= UNMOUNT_RETRIES; i++) {
San Mehatb78a32c2010-01-10 13:02:12 -08001423 rc = umount(mountPoint);
1424 if (!rc) {
1425 break;
San Mehata19b2502010-01-06 10:33:53 -08001426 }
San Mehatb78a32c2010-01-10 13:02:12 -08001427 if (rc && (errno == EINVAL || errno == ENOENT)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001428 SLOGI("Container %s unmounted OK", id);
San Mehatb78a32c2010-01-10 13:02:12 -08001429 rc = 0;
1430 break;
San Mehata19b2502010-01-06 10:33:53 -08001431 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001432 SLOGW("%s unmount attempt %d failed (%s)",
San Mehat8c940ef2010-02-13 14:19:53 -08001433 id, i, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001434
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001435 int signal = 0; // default is to just complain
San Mehat4ba89482010-02-18 09:00:18 -08001436
1437 if (force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001438 if (i > (UNMOUNT_RETRIES - 2))
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001439 signal = SIGKILL;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001440 else if (i > (UNMOUNT_RETRIES - 3))
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001441 signal = SIGTERM;
San Mehat4ba89482010-02-18 09:00:18 -08001442 }
San Mehat8c940ef2010-02-13 14:19:53 -08001443
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001444 Process::killProcessesWithOpenFiles(mountPoint, signal);
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001445 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehatb78a32c2010-01-10 13:02:12 -08001446 }
1447
1448 if (rc) {
San Mehat4ba89482010-02-18 09:00:18 -08001449 errno = EBUSY;
San Mehat97ac40e2010-03-24 10:24:19 -07001450 SLOGE("Failed to unmount container %s (%s)", id, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001451 return -1;
1452 }
1453
San Mehat12f4b892010-02-24 11:43:22 -08001454 int retries = 10;
1455
1456 while(retries--) {
1457 if (!rmdir(mountPoint)) {
1458 break;
1459 }
1460
San Mehat97ac40e2010-03-24 10:24:19 -07001461 SLOGW("Failed to rmdir %s (%s)", mountPoint, strerror(errno));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001462 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehat12f4b892010-02-24 11:43:22 -08001463 }
1464
1465 if (!retries) {
San Mehat97ac40e2010-03-24 10:24:19 -07001466 SLOGE("Timed out trying to rmdir %s (%s)", mountPoint, strerror(errno));
San Mehatf5c61982010-02-03 11:04:46 -08001467 }
San Mehat88705162010-01-15 09:26:28 -08001468
Paul Lawrence60dec162014-09-02 10:52:15 -07001469 for (i=1; i <= UNMOUNT_RETRIES; i++) {
1470 if (Devmapper::destroy(idHash) && errno != ENXIO) {
1471 SLOGE("Failed to destroy devmapper instance (%s)", strerror(errno));
1472 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
1473 continue;
1474 } else {
1475 break;
1476 }
San Mehata19b2502010-01-06 10:33:53 -08001477 }
1478
1479 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -08001480 if (!Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehata19b2502010-01-06 10:33:53 -08001481 Loop::destroyByDevice(loopDevice);
San Mehatd9a4e352010-03-12 13:32:47 -08001482 } else {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001483 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001484 }
San Mehat88705162010-01-15 09:26:28 -08001485
1486 AsecIdCollection::iterator it;
1487 for (it = mActiveContainers->begin(); it != mActiveContainers->end(); ++it) {
Kenny Rootcbacf782010-09-24 15:11:48 -07001488 ContainerData* cd = *it;
1489 if (!strcmp(cd->id, id)) {
San Mehat88705162010-01-15 09:26:28 -08001490 free(*it);
1491 mActiveContainers->erase(it);
1492 break;
1493 }
1494 }
1495 if (it == mActiveContainers->end()) {
San Mehat97ac40e2010-03-24 10:24:19 -07001496 SLOGW("mActiveContainers is inconsistent!");
San Mehat88705162010-01-15 09:26:28 -08001497 }
San Mehatb78a32c2010-01-10 13:02:12 -08001498 return 0;
1499}
1500
San Mehat4ba89482010-02-18 09:00:18 -08001501int VolumeManager::destroyAsec(const char *id, bool force) {
San Mehatb78a32c2010-01-10 13:02:12 -08001502 char asecFileName[255];
1503 char mountPoint[255];
1504
Nick Kralevich0de7c612014-01-27 14:58:06 -08001505 if (!isLegalAsecId(id)) {
1506 SLOGE("destroyAsec: Invalid asec id \"%s\"", id);
1507 errno = EINVAL;
1508 return -1;
1509 }
1510
Kenny Root344ca102012-04-03 17:23:01 -07001511 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1512 SLOGE("Couldn't find ASEC %s", id);
1513 return -1;
1514 }
1515
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001516 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001517 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1518 SLOGE("ASEC destroy failed for %s: couldn't construct mountpoint", id);
1519 return -1;
1520 }
San Mehatb78a32c2010-01-10 13:02:12 -08001521
San Mehat0586d542010-01-12 15:38:59 -08001522 if (isMountpointMounted(mountPoint)) {
San Mehatd9a4e352010-03-12 13:32:47 -08001523 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001524 SLOGD("Unmounting container before destroy");
San Mehatd9a4e352010-03-12 13:32:47 -08001525 }
San Mehat4ba89482010-02-18 09:00:18 -08001526 if (unmountAsec(id, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001527 SLOGE("Failed to unmount asec %s for destroy (%s)", id, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001528 return -1;
1529 }
1530 }
San Mehata19b2502010-01-06 10:33:53 -08001531
San Mehat0586d542010-01-12 15:38:59 -08001532 if (unlink(asecFileName)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001533 SLOGE("Failed to unlink asec '%s' (%s)", asecFileName, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001534 return -1;
1535 }
San Mehata19b2502010-01-06 10:33:53 -08001536
San Mehatd9a4e352010-03-12 13:32:47 -08001537 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001538 SLOGD("ASEC %s destroyed", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001539 }
San Mehata19b2502010-01-06 10:33:53 -08001540 return 0;
1541}
1542
Nick Kralevich0de7c612014-01-27 14:58:06 -08001543/*
1544 * Legal ASEC ids consist of alphanumeric characters, '-',
1545 * '_', or '.'. ".." is not allowed. The first or last character
1546 * of the ASEC id cannot be '.' (dot).
1547 */
1548bool VolumeManager::isLegalAsecId(const char *id) const {
1549 size_t i;
1550 size_t len = strlen(id);
1551
1552 if (len == 0) {
1553 return false;
1554 }
1555 if ((id[0] == '.') || (id[len - 1] == '.')) {
1556 return false;
1557 }
1558
1559 for (i = 0; i < len; i++) {
1560 if (id[i] == '.') {
1561 // i=0 is guaranteed never to have a dot. See above.
1562 if (id[i-1] == '.') return false;
1563 continue;
1564 }
1565 if (id[i] == '_' || id[i] == '-') continue;
1566 if (id[i] >= 'a' && id[i] <= 'z') continue;
1567 if (id[i] >= 'A' && id[i] <= 'Z') continue;
1568 if (id[i] >= '0' && id[i] <= '9') continue;
1569 return false;
1570 }
1571
1572 return true;
1573}
1574
Kenny Root344ca102012-04-03 17:23:01 -07001575bool VolumeManager::isAsecInDirectory(const char *dir, const char *asecName) const {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001576 int dirfd = open(dir, O_DIRECTORY | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -07001577 if (dirfd < 0) {
1578 SLOGE("Couldn't open internal ASEC dir (%s)", strerror(errno));
Nick Kralevich25e581a2015-02-06 08:55:08 -08001579 return false;
Kenny Root344ca102012-04-03 17:23:01 -07001580 }
1581
Nick Kralevich25e581a2015-02-06 08:55:08 -08001582 struct stat sb;
1583 bool ret = (fstatat(dirfd, asecName, &sb, AT_SYMLINK_NOFOLLOW) == 0)
1584 && S_ISREG(sb.st_mode);
Kenny Root344ca102012-04-03 17:23:01 -07001585
1586 close(dirfd);
1587
1588 return ret;
1589}
1590
1591int VolumeManager::findAsec(const char *id, char *asecPath, size_t asecPathLen,
1592 const char **directory) const {
Kenny Root344ca102012-04-03 17:23:01 -07001593 char *asecName;
1594
Nick Kralevich0de7c612014-01-27 14:58:06 -08001595 if (!isLegalAsecId(id)) {
1596 SLOGE("findAsec: Invalid asec id \"%s\"", id);
1597 errno = EINVAL;
1598 return -1;
1599 }
1600
Kenny Root344ca102012-04-03 17:23:01 -07001601 if (asprintf(&asecName, "%s.asec", id) < 0) {
1602 SLOGE("Couldn't allocate string to write ASEC name");
1603 return -1;
1604 }
1605
1606 const char *dir;
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001607 if (isAsecInDirectory(VolumeManager::SEC_ASECDIR_INT, asecName)) {
1608 dir = VolumeManager::SEC_ASECDIR_INT;
1609 } else if (isAsecInDirectory(VolumeManager::SEC_ASECDIR_EXT, asecName)) {
1610 dir = VolumeManager::SEC_ASECDIR_EXT;
Kenny Root344ca102012-04-03 17:23:01 -07001611 } else {
1612 free(asecName);
1613 return -1;
1614 }
1615
1616 if (directory != NULL) {
1617 *directory = dir;
1618 }
1619
1620 if (asecPath != NULL) {
1621 int written = snprintf(asecPath, asecPathLen, "%s/%s", dir, asecName);
rpcraigd1c226f2012-10-09 06:58:16 -04001622 if ((written < 0) || (size_t(written) >= asecPathLen)) {
1623 SLOGE("findAsec failed for %s: couldn't construct ASEC path", id);
Kenny Root344ca102012-04-03 17:23:01 -07001624 free(asecName);
1625 return -1;
1626 }
1627 }
1628
1629 free(asecName);
1630 return 0;
1631}
1632
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001633int VolumeManager::mountAsec(const char *id, const char *key, int ownerUid, bool readOnly) {
San Mehata19b2502010-01-06 10:33:53 -08001634 char asecFileName[255];
1635 char mountPoint[255];
1636
Nick Kralevich0de7c612014-01-27 14:58:06 -08001637 if (!isLegalAsecId(id)) {
1638 SLOGE("mountAsec: Invalid asec id \"%s\"", id);
1639 errno = EINVAL;
1640 return -1;
1641 }
1642
Kenny Root344ca102012-04-03 17:23:01 -07001643 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1644 SLOGE("Couldn't find ASEC %s", id);
1645 return -1;
1646 }
1647
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001648 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001649 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001650 SLOGE("ASEC mount failed for %s: couldn't construct mountpoint", id);
rpcraigd1c226f2012-10-09 06:58:16 -04001651 return -1;
1652 }
San Mehata19b2502010-01-06 10:33:53 -08001653
1654 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001655 SLOGE("ASEC %s already mounted", id);
San Mehata19b2502010-01-06 10:33:53 -08001656 errno = EBUSY;
1657 return -1;
1658 }
1659
San Mehatd9a4e352010-03-12 13:32:47 -08001660 char idHash[33];
1661 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001662 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001663 return -1;
1664 }
Kenny Root7b18a7b2010-03-15 13:13:41 -07001665
San Mehata19b2502010-01-06 10:33:53 -08001666 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001667 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
1668 return -1;
San Mehatb78a32c2010-01-10 13:02:12 -08001669
1670 char dmDevice[255];
1671 bool cleanupDm = false;
Tim Murray8439dc92014-12-15 11:56:11 -08001672
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001673 unsigned long nr_sec = 0;
San Mehatfcf24fe2010-03-03 12:37:32 -08001674 struct asec_superblock sb;
San Mehatfcf24fe2010-03-03 12:37:32 -08001675
Kenny Root344ca102012-04-03 17:23:01 -07001676 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1677 return -1;
1678 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001679
San Mehatd9a4e352010-03-12 13:32:47 -08001680 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001681 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatd9a4e352010-03-12 13:32:47 -08001682 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001683 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
San Mehat97ac40e2010-03-24 10:24:19 -07001684 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatfcf24fe2010-03-03 12:37:32 -08001685 Loop::destroyByDevice(loopDevice);
1686 errno = EMEDIUMTYPE;
1687 return -1;
1688 }
1689 nr_sec--; // We don't want the devmapping to extend onto our superblock
1690
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001691 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash , nr_sec, &cleanupDm, mDebug)) {
1692 Loop::destroyByDevice(loopDevice);
1693 return -1;
San Mehata19b2502010-01-06 10:33:53 -08001694 }
1695
Kenny Root344ca102012-04-03 17:23:01 -07001696 if (mkdir(mountPoint, 0000)) {
San Mehatb78a32c2010-01-10 13:02:12 -08001697 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -07001698 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001699 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001700 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001701 }
1702 Loop::destroyByDevice(loopDevice);
1703 return -1;
1704 }
San Mehata19b2502010-01-06 10:33:53 -08001705 }
1706
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001707 /*
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001708 * Wait for the device mapper node to be created.
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001709 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001710 waitForDevMapper(dmDevice);
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001711
Kenny Root344ca102012-04-03 17:23:01 -07001712 int result;
1713 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001714 result = android::vold::ext4::Mount(dmDevice, mountPoint,
1715 readOnly, false, readOnly);
Kenny Root344ca102012-04-03 17:23:01 -07001716 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001717 result = android::vold::vfat::Mount(dmDevice, mountPoint,
1718 readOnly, false, readOnly, ownerUid, 0, 0222, false);
Kenny Root344ca102012-04-03 17:23:01 -07001719 }
1720
1721 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -07001722 SLOGE("ASEC mount failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001723 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001724 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001725 }
1726 Loop::destroyByDevice(loopDevice);
San Mehata19b2502010-01-06 10:33:53 -08001727 return -1;
1728 }
1729
Kenny Rootcbacf782010-09-24 15:11:48 -07001730 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehatd9a4e352010-03-12 13:32:47 -08001731 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001732 SLOGD("ASEC %s mounted", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001733 }
San Mehata19b2502010-01-06 10:33:53 -08001734 return 0;
1735}
1736
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001737/**
1738 * Mounts an image file <code>img</code>.
1739 */
Jeff Sharkey69479042012-09-25 16:14:57 -07001740int VolumeManager::mountObb(const char *img, const char *key, int ownerGid) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001741 char mountPoint[255];
1742
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001743 char idHash[33];
1744 if (!asecHash(img, idHash, sizeof(idHash))) {
1745 SLOGE("Hash of '%s' failed (%s)", img, strerror(errno));
1746 return -1;
1747 }
1748
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001749 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::LOOPDIR, idHash);
rpcraigd1c226f2012-10-09 06:58:16 -04001750 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001751 SLOGE("OBB mount failed for %s: couldn't construct mountpoint", img);
rpcraigd1c226f2012-10-09 06:58:16 -04001752 return -1;
1753 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001754
1755 if (isMountpointMounted(mountPoint)) {
1756 SLOGE("Image %s already mounted", img);
1757 errno = EBUSY;
1758 return -1;
1759 }
1760
1761 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001762 if (setupLoopDevice(loopDevice, sizeof(loopDevice), img, idHash, mDebug))
1763 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001764
1765 char dmDevice[255];
1766 bool cleanupDm = false;
1767 int fd;
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001768 unsigned long nr_sec = 0;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001769
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001770 if ((fd = open(loopDevice, O_RDWR | O_CLOEXEC)) < 0) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001771 SLOGE("Failed to open loopdevice (%s)", strerror(errno));
1772 Loop::destroyByDevice(loopDevice);
1773 return -1;
1774 }
1775
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001776 get_blkdev_size(fd, &nr_sec);
1777 if (nr_sec == 0) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001778 SLOGE("Failed to get loop size (%s)", strerror(errno));
1779 Loop::destroyByDevice(loopDevice);
1780 close(fd);
1781 return -1;
1782 }
1783
1784 close(fd);
1785
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001786 if (setupDevMapperDevice(dmDevice, sizeof(loopDevice), loopDevice, img,key, idHash, nr_sec, &cleanupDm, mDebug)) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001787 Loop::destroyByDevice(loopDevice);
1788 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001789 }
1790
1791 if (mkdir(mountPoint, 0755)) {
1792 if (errno != EEXIST) {
1793 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
1794 if (cleanupDm) {
1795 Devmapper::destroy(idHash);
1796 }
1797 Loop::destroyByDevice(loopDevice);
1798 return -1;
1799 }
1800 }
1801
yoshiyuki hama476a6272015-01-28 16:37:23 +09001802 /*
1803 * Wait for the device mapper node to be created.
1804 */
1805 waitForDevMapper(dmDevice);
1806
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001807 if (android::vold::vfat::Mount(dmDevice, mountPoint,
1808 true, false, true, 0, ownerGid, 0227, false)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001809 SLOGE("Image mount failed (%s)", strerror(errno));
1810 if (cleanupDm) {
1811 Devmapper::destroy(idHash);
1812 }
1813 Loop::destroyByDevice(loopDevice);
1814 return -1;
1815 }
1816
Kenny Rootcbacf782010-09-24 15:11:48 -07001817 mActiveContainers->push_back(new ContainerData(strdup(img), OBB));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001818 if (mDebug) {
1819 SLOGD("Image %s mounted", img);
1820 }
1821 return 0;
1822}
1823
Kenny Root508c0e12010-07-12 09:59:49 -07001824int VolumeManager::listMountedObbs(SocketClient* cli) {
Yabin Cuid1104f72015-01-02 13:28:28 -08001825 FILE *fp = setmntent("/proc/mounts", "r");
1826 if (fp == NULL) {
Kenny Root508c0e12010-07-12 09:59:49 -07001827 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
1828 return -1;
1829 }
1830
1831 // Create a string to compare against that has a trailing slash
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001832 int loopDirLen = strlen(VolumeManager::LOOPDIR);
Kenny Root508c0e12010-07-12 09:59:49 -07001833 char loopDir[loopDirLen + 2];
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001834 strcpy(loopDir, VolumeManager::LOOPDIR);
Kenny Root508c0e12010-07-12 09:59:49 -07001835 loopDir[loopDirLen++] = '/';
1836 loopDir[loopDirLen] = '\0';
1837
Yabin Cuid1104f72015-01-02 13:28:28 -08001838 mntent* mentry;
1839 while ((mentry = getmntent(fp)) != NULL) {
1840 if (!strncmp(mentry->mnt_dir, loopDir, loopDirLen)) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001841 int fd = open(mentry->mnt_fsname, O_RDONLY | O_CLOEXEC);
Kenny Root508c0e12010-07-12 09:59:49 -07001842 if (fd >= 0) {
1843 struct loop_info64 li;
1844 if (ioctl(fd, LOOP_GET_STATUS64, &li) >= 0) {
1845 cli->sendMsg(ResponseCode::AsecListResult,
1846 (const char*) li.lo_file_name, false);
1847 }
1848 close(fd);
1849 }
1850 }
1851 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001852 endmntent(fp);
Kenny Root508c0e12010-07-12 09:59:49 -07001853 return 0;
1854}
1855
Jeff Sharkey9c484982015-03-31 10:35:33 -07001856extern "C" int vold_unmountAll(void) {
Ken Sumrall425524d2012-06-14 20:55:28 -07001857 VolumeManager *vm = VolumeManager::Instance();
Jeff Sharkey9c484982015-03-31 10:35:33 -07001858 return vm->unmountAll();
Ken Sumrall425524d2012-06-14 20:55:28 -07001859}
1860
San Mehata19b2502010-01-06 10:33:53 -08001861bool VolumeManager::isMountpointMounted(const char *mp)
1862{
Yabin Cuid1104f72015-01-02 13:28:28 -08001863 FILE *fp = setmntent("/proc/mounts", "r");
1864 if (fp == NULL) {
San Mehat97ac40e2010-03-24 10:24:19 -07001865 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001866 return false;
1867 }
1868
Yabin Cuid1104f72015-01-02 13:28:28 -08001869 bool found_mp = false;
1870 mntent* mentry;
1871 while ((mentry = getmntent(fp)) != NULL) {
1872 if (strcmp(mentry->mnt_dir, mp) == 0) {
1873 found_mp = true;
1874 break;
San Mehata19b2502010-01-06 10:33:53 -08001875 }
San Mehata19b2502010-01-06 10:33:53 -08001876 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001877 endmntent(fp);
1878 return found_mp;
San Mehata19b2502010-01-06 10:33:53 -08001879}
1880
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001881int VolumeManager::mkdirs(char* path) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001882 // Only offer to create directories for paths managed by vold
1883 if (strncmp(path, "/storage/", 9) == 0) {
1884 // fs_mkdirs() does symlink checking and relative path enforcement
1885 return fs_mkdirs(path, 0700);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001886 } else {
Cylen Yao27cfee32014-05-02 19:23:42 +08001887 SLOGE("Failed to find mounted volume for %s", path);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001888 return -EINVAL;
1889 }
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001890}