blob: 0aa8c51e17c469bca9ea8184a98f4ffe89f80034 [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
17#include <stdio.h>
San Mehatfd7f5872009-10-12 11:32:47 -070018#include <stdlib.h>
19#include <string.h>
San Mehatf1b736b2009-10-10 17:22:08 -070020#include <errno.h>
San Mehata2677e42009-12-13 10:40:18 -080021#include <fcntl.h>
San Mehata19b2502010-01-06 10:33:53 -080022#include <sys/stat.h>
23#include <sys/types.h>
24#include <sys/mount.h>
25
San Mehata2677e42009-12-13 10:40:18 -080026#include <linux/kdev_t.h>
San Mehatf1b736b2009-10-10 17:22:08 -070027
28#define LOG_TAG "Vold"
29
30#include <cutils/log.h>
31
San Mehatfd7f5872009-10-12 11:32:47 -070032#include <sysutils/NetlinkEvent.h>
33
San Mehatf1b736b2009-10-10 17:22:08 -070034#include "VolumeManager.h"
San Mehatae10b912009-10-12 14:57:05 -070035#include "DirectVolume.h"
San Mehata2677e42009-12-13 10:40:18 -080036#include "ResponseCode.h"
San Mehata19b2502010-01-06 10:33:53 -080037#include "Loop.h"
38#include "Fat.h"
San Mehatb78a32c2010-01-10 13:02:12 -080039#include "Devmapper.h"
San Mehat586536c2010-02-16 17:12:00 -080040#include "Process.h"
San Mehat23969932010-01-09 07:08:06 -080041
San Mehatf1b736b2009-10-10 17:22:08 -070042VolumeManager *VolumeManager::sInstance = NULL;
43
44VolumeManager *VolumeManager::Instance() {
45 if (!sInstance)
46 sInstance = new VolumeManager();
47 return sInstance;
48}
49
50VolumeManager::VolumeManager() {
51 mBlockDevices = new BlockDeviceCollection();
52 mVolumes = new VolumeCollection();
San Mehat88705162010-01-15 09:26:28 -080053 mActiveContainers = new AsecIdCollection();
San Mehatf1b736b2009-10-10 17:22:08 -070054 mBroadcaster = NULL;
San Mehata2677e42009-12-13 10:40:18 -080055 mUsbMassStorageConnected = false;
San Mehatf1b736b2009-10-10 17:22:08 -070056}
57
58VolumeManager::~VolumeManager() {
59 delete mBlockDevices;
San Mehat88705162010-01-15 09:26:28 -080060 delete mVolumes;
61 delete mActiveContainers;
San Mehatf1b736b2009-10-10 17:22:08 -070062}
63
64int VolumeManager::start() {
65 return 0;
66}
67
68int VolumeManager::stop() {
69 return 0;
70}
71
72int VolumeManager::addVolume(Volume *v) {
73 mVolumes->push_back(v);
74 return 0;
75}
76
San Mehata2677e42009-12-13 10:40:18 -080077void VolumeManager::notifyUmsConnected(bool connected) {
78 char msg[255];
79
80 if (connected) {
81 mUsbMassStorageConnected = true;
82 } else {
83 mUsbMassStorageConnected = false;
84 }
85 snprintf(msg, sizeof(msg), "Share method ums now %s",
86 (connected ? "available" : "unavailable"));
87
88 getBroadcaster()->sendBroadcast(ResponseCode::ShareAvailabilityChange,
89 msg, false);
90}
91
92void VolumeManager::handleSwitchEvent(NetlinkEvent *evt) {
San Mehat0cde53c2009-12-22 08:32:33 -080093 const char *devpath = evt->findParam("DEVPATH");
San Mehata2677e42009-12-13 10:40:18 -080094 const char *name = evt->findParam("SWITCH_NAME");
95 const char *state = evt->findParam("SWITCH_STATE");
96
San Mehat0cde53c2009-12-22 08:32:33 -080097 if (!name || !state) {
98 LOGW("Switch %s event missing name/state info", devpath);
99 return;
100 }
101
San Mehata2677e42009-12-13 10:40:18 -0800102 if (!strcmp(name, "usb_mass_storage")) {
103
104 if (!strcmp(state, "online")) {
105 notifyUmsConnected(true);
106 } else {
107 notifyUmsConnected(false);
108 }
109 } else {
110 LOGW("Ignoring unknown switch '%s'", name);
111 }
112}
113
San Mehatfd7f5872009-10-12 11:32:47 -0700114void VolumeManager::handleBlockEvent(NetlinkEvent *evt) {
115 const char *devpath = evt->findParam("DEVPATH");
San Mehatf1b736b2009-10-10 17:22:08 -0700116
San Mehatfd7f5872009-10-12 11:32:47 -0700117 /* Lookup a volume to handle this device */
San Mehatf1b736b2009-10-10 17:22:08 -0700118 VolumeCollection::iterator it;
119 bool hit = false;
120 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
San Mehatfd7f5872009-10-12 11:32:47 -0700121 if (!(*it)->handleBlockEvent(evt)) {
San Mehata2677e42009-12-13 10:40:18 -0800122#ifdef NETLINK_DEBUG
123 LOGD("Device '%s' event handled by volume %s\n", devpath, (*it)->getLabel());
124#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700125 hit = true;
San Mehatf1b736b2009-10-10 17:22:08 -0700126 break;
127 }
128 }
129
130 if (!hit) {
San Mehata2677e42009-12-13 10:40:18 -0800131#ifdef NETLINK_DEBUG
San Mehatfd7f5872009-10-12 11:32:47 -0700132 LOGW("No volumes handled block event for '%s'", devpath);
San Mehata2677e42009-12-13 10:40:18 -0800133#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700134 }
135}
136
San Mehatf1b736b2009-10-10 17:22:08 -0700137int VolumeManager::listVolumes(SocketClient *cli) {
138 VolumeCollection::iterator i;
139
140 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
141 char *buffer;
142 asprintf(&buffer, "%s %s %d",
143 (*i)->getLabel(), (*i)->getMountpoint(),
144 (*i)->getState());
San Mehata2677e42009-12-13 10:40:18 -0800145 cli->sendMsg(ResponseCode::VolumeListResult, buffer, false);
San Mehatf1b736b2009-10-10 17:22:08 -0700146 free(buffer);
147 }
San Mehata2677e42009-12-13 10:40:18 -0800148 cli->sendMsg(ResponseCode::CommandOkay, "Volumes listed.", false);
San Mehatf1b736b2009-10-10 17:22:08 -0700149 return 0;
150}
San Mehat49e2bce2009-10-12 16:29:01 -0700151
San Mehata2677e42009-12-13 10:40:18 -0800152int VolumeManager::formatVolume(const char *label) {
153 Volume *v = lookupVolume(label);
154
155 if (!v) {
156 errno = ENOENT;
157 return -1;
158 }
159
160 return v->formatVol();
161}
162
San Mehata19b2502010-01-06 10:33:53 -0800163int VolumeManager::getAsecMountPath(const char *id, char *buffer, int maxlen) {
San Mehata19b2502010-01-06 10:33:53 -0800164
San Mehat3bb60202010-02-19 18:14:36 -0800165 snprintf(buffer, maxlen, "%s/%s", Volume::ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800166 return 0;
167}
168
San Mehat8b8f71b2010-01-11 09:17:25 -0800169int VolumeManager::createAsec(const char *id, unsigned int numSectors,
San Mehata19b2502010-01-06 10:33:53 -0800170 const char *fstype, const char *key, int ownerUid) {
171
San Mehatd31e3802010-02-18 08:37:45 -0800172 if (numSectors < ((1024*1024)/512)) {
173 LOGE("Invalid container size specified (%d sectors)", numSectors);
174 errno = EINVAL;
175 return -1;
176 }
177
San Mehata19b2502010-01-06 10:33:53 -0800178 if (lookupVolume(id)) {
San Mehat3bb60202010-02-19 18:14:36 -0800179 LOGE("ASEC id '%s' currently exists", id);
San Mehata19b2502010-01-06 10:33:53 -0800180 errno = EADDRINUSE;
181 return -1;
182 }
183
184 char asecFileName[255];
San Mehat3bb60202010-02-19 18:14:36 -0800185 snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", Volume::SEC_ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800186
187 if (!access(asecFileName, F_OK)) {
188 LOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
189 asecFileName, strerror(errno));
190 errno = EADDRINUSE;
191 return -1;
192 }
193
San Mehat8b8f71b2010-01-11 09:17:25 -0800194 if (Loop::createImageFile(asecFileName, numSectors)) {
San Mehata19b2502010-01-06 10:33:53 -0800195 LOGE("ASEC image file creation failed (%s)", strerror(errno));
196 return -1;
197 }
198
199 char loopDevice[255];
San Mehat8da6bcb2010-01-09 12:24:05 -0800200 if (Loop::create(asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehata19b2502010-01-06 10:33:53 -0800201 LOGE("ASEC loop device creation failed (%s)", strerror(errno));
202 unlink(asecFileName);
203 return -1;
204 }
205
San Mehatb78a32c2010-01-10 13:02:12 -0800206 char dmDevice[255];
207 bool cleanupDm = false;
San Mehata19b2502010-01-06 10:33:53 -0800208
San Mehatb78a32c2010-01-10 13:02:12 -0800209 if (strcmp(key, "none")) {
San Mehat8b8f71b2010-01-11 09:17:25 -0800210 if (Devmapper::create(id, loopDevice, key, numSectors, dmDevice,
San Mehatb78a32c2010-01-10 13:02:12 -0800211 sizeof(dmDevice))) {
212 LOGE("ASEC device mapping failed (%s)", strerror(errno));
213 Loop::destroyByDevice(loopDevice);
214 unlink(asecFileName);
215 return -1;
216 }
217 cleanupDm = true;
218 } else {
219 strcpy(dmDevice, loopDevice);
220 }
221
222 if (Fat::format(dmDevice)) {
San Mehata19b2502010-01-06 10:33:53 -0800223 LOGE("ASEC FAT format failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800224 if (cleanupDm) {
225 Devmapper::destroy(id);
226 }
San Mehata19b2502010-01-06 10:33:53 -0800227 Loop::destroyByDevice(loopDevice);
228 unlink(asecFileName);
229 return -1;
230 }
231
232 char mountPoint[255];
233
San Mehat3bb60202010-02-19 18:14:36 -0800234 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800235 if (mkdir(mountPoint, 0777)) {
San Mehateb13a902010-01-07 12:12:50 -0800236 if (errno != EEXIST) {
237 LOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800238 if (cleanupDm) {
239 Devmapper::destroy(id);
240 }
San Mehateb13a902010-01-07 12:12:50 -0800241 Loop::destroyByDevice(loopDevice);
242 unlink(asecFileName);
243 return -1;
244 }
San Mehata19b2502010-01-06 10:33:53 -0800245 }
246
San Mehatb78a32c2010-01-10 13:02:12 -0800247 if (Fat::doMount(dmDevice, mountPoint, false, false, ownerUid,
San Mehatcff5ec32010-01-08 12:31:44 -0800248 0, 0000, false)) {
249// 0, 0007, false)) {
San Mehata19b2502010-01-06 10:33:53 -0800250 LOGE("ASEC FAT mount failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800251 if (cleanupDm) {
252 Devmapper::destroy(id);
253 }
San Mehata19b2502010-01-06 10:33:53 -0800254 Loop::destroyByDevice(loopDevice);
255 unlink(asecFileName);
256 return -1;
257 }
San Mehat88705162010-01-15 09:26:28 -0800258
259 mActiveContainers->push_back(strdup(id));
San Mehata19b2502010-01-06 10:33:53 -0800260 return 0;
261}
262
263int VolumeManager::finalizeAsec(const char *id) {
264 char asecFileName[255];
265 char loopDevice[255];
266 char mountPoint[255];
267
San Mehat3bb60202010-02-19 18:14:36 -0800268 snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", Volume::SEC_ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800269
270 if (Loop::lookupActive(asecFileName, loopDevice, sizeof(loopDevice))) {
271 LOGE("Unable to finalize %s (%s)", id, strerror(errno));
272 return -1;
273 }
274
San Mehat3bb60202010-02-19 18:14:36 -0800275 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
San Mehatfff0b472010-01-06 19:19:46 -0800276 // XXX:
277 if (Fat::doMount(loopDevice, mountPoint, true, true, 0, 0, 0227, false)) {
San Mehata19b2502010-01-06 10:33:53 -0800278 LOGE("ASEC finalize mount failed (%s)", strerror(errno));
279 return -1;
280 }
281
282 LOGD("ASEC %s finalized", id);
283 return 0;
284}
285
San Mehat048b0802010-01-23 08:17:06 -0800286int VolumeManager::renameAsec(const char *id1, const char *id2) {
287 char *asecFilename1;
288 char *asecFilename2;
289 char mountPoint[255];
290
San Mehat3bb60202010-02-19 18:14:36 -0800291 asprintf(&asecFilename1, "%s/%s.asec", Volume::SEC_ASECDIR, id1);
292 asprintf(&asecFilename2, "%s/%s.asec", Volume::SEC_ASECDIR, id2);
San Mehat048b0802010-01-23 08:17:06 -0800293
San Mehat3bb60202010-02-19 18:14:36 -0800294 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id1);
San Mehat048b0802010-01-23 08:17:06 -0800295 if (isMountpointMounted(mountPoint)) {
296 LOGW("Rename attempt when src mounted");
297 errno = EBUSY;
298 goto out_err;
299 }
300
San Mehat96956ed2010-02-24 08:42:51 -0800301 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id2);
302 if (isMountpointMounted(mountPoint)) {
303 LOGW("Rename attempt when dst mounted");
304 errno = EBUSY;
305 goto out_err;
306 }
307
San Mehat048b0802010-01-23 08:17:06 -0800308 if (!access(asecFilename2, F_OK)) {
309 LOGE("Rename attempt when dst exists");
310 errno = EADDRINUSE;
311 goto out_err;
312 }
313
314 if (rename(asecFilename1, asecFilename2)) {
315 LOGE("Rename of '%s' to '%s' failed (%s)", asecFilename1, asecFilename2, strerror(errno));
316 goto out_err;
317 }
318
319 free(asecFilename1);
320 free(asecFilename2);
321 return 0;
322
323out_err:
324 free(asecFilename1);
325 free(asecFilename2);
326 return -1;
327}
328
San Mehat4ba89482010-02-18 09:00:18 -0800329#define ASEC_UNMOUNT_RETRIES 5
330int VolumeManager::unmountAsec(const char *id, bool force) {
San Mehata19b2502010-01-06 10:33:53 -0800331 char asecFileName[255];
332 char mountPoint[255];
333
San Mehat3bb60202010-02-19 18:14:36 -0800334 snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", Volume::SEC_ASECDIR, id);
335 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800336
San Mehat0586d542010-01-12 15:38:59 -0800337 if (!isMountpointMounted(mountPoint)) {
San Mehatb78a32c2010-01-10 13:02:12 -0800338 LOGE("Unmount request for ASEC %s when not mounted", id);
339 errno = EINVAL;
340 return -1;
341 }
San Mehat23969932010-01-09 07:08:06 -0800342
San Mehatb78a32c2010-01-10 13:02:12 -0800343 int i, rc;
San Mehat8c940ef2010-02-13 14:19:53 -0800344 for (i = 1; i <= ASEC_UNMOUNT_RETRIES; i++) {
San Mehatb78a32c2010-01-10 13:02:12 -0800345 rc = umount(mountPoint);
346 if (!rc) {
347 break;
San Mehata19b2502010-01-06 10:33:53 -0800348 }
San Mehatb78a32c2010-01-10 13:02:12 -0800349 if (rc && (errno == EINVAL || errno == ENOENT)) {
350 rc = 0;
351 break;
San Mehata19b2502010-01-06 10:33:53 -0800352 }
San Mehatb78a32c2010-01-10 13:02:12 -0800353 LOGW("ASEC %s unmount attempt %d failed (%s)",
San Mehat8c940ef2010-02-13 14:19:53 -0800354 id, i, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800355
San Mehat4ba89482010-02-18 09:00:18 -0800356 int action = 0; // default is to just complain
357
358 if (force) {
359 if (i > (ASEC_UNMOUNT_RETRIES - 2))
360 action = 2; // SIGKILL
361 else if (i > (ASEC_UNMOUNT_RETRIES - 3))
362 action = 1; // SIGHUP
363 }
San Mehat8c940ef2010-02-13 14:19:53 -0800364
San Mehat586536c2010-02-16 17:12:00 -0800365 Process::killProcessesWithOpenFiles(mountPoint, action);
San Mehat8c940ef2010-02-13 14:19:53 -0800366 usleep(1000 * 1000);
San Mehatb78a32c2010-01-10 13:02:12 -0800367 }
368
369 if (rc) {
San Mehat4ba89482010-02-18 09:00:18 -0800370 errno = EBUSY;
371 LOGE("Failed to unmount container %s (%s)", id, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800372 return -1;
373 }
374
San Mehatf5c61982010-02-03 11:04:46 -0800375 if (rmdir(mountPoint)) {
376 LOGE("Failed to rmdir mountpoint (%s)", strerror(errno));
377 }
San Mehat88705162010-01-15 09:26:28 -0800378
San Mehatb78a32c2010-01-10 13:02:12 -0800379 if (Devmapper::destroy(id) && errno != ENXIO) {
380 LOGE("Failed to destroy devmapper instance (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800381 }
382
383 char loopDevice[255];
384 if (!Loop::lookupActive(asecFileName, loopDevice, sizeof(loopDevice))) {
385 Loop::destroyByDevice(loopDevice);
386 }
San Mehat88705162010-01-15 09:26:28 -0800387
388 AsecIdCollection::iterator it;
389 for (it = mActiveContainers->begin(); it != mActiveContainers->end(); ++it) {
390 if (!strcmp(*it, id)) {
391 free(*it);
392 mActiveContainers->erase(it);
393 break;
394 }
395 }
396 if (it == mActiveContainers->end()) {
397 LOGW("mActiveContainers is inconsistent!");
398 }
San Mehatb78a32c2010-01-10 13:02:12 -0800399 return 0;
400}
401
San Mehat4ba89482010-02-18 09:00:18 -0800402int VolumeManager::destroyAsec(const char *id, bool force) {
San Mehatb78a32c2010-01-10 13:02:12 -0800403 char asecFileName[255];
404 char mountPoint[255];
405
San Mehat3bb60202010-02-19 18:14:36 -0800406 snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", Volume::SEC_ASECDIR, id);
San Mehatb78a32c2010-01-10 13:02:12 -0800407
San Mehat0586d542010-01-12 15:38:59 -0800408 if (isMountpointMounted(mountPoint)) {
San Mehat68f8ebd2010-01-23 07:21:21 -0800409 LOGD("Unmounting container before destroy");
San Mehat4ba89482010-02-18 09:00:18 -0800410 if (unmountAsec(id, force)) {
San Mehat0586d542010-01-12 15:38:59 -0800411 LOGE("Failed to unmount asec %s for destroy (%s)", id, strerror(errno));
412 return -1;
413 }
414 }
San Mehata19b2502010-01-06 10:33:53 -0800415
San Mehat0586d542010-01-12 15:38:59 -0800416 if (unlink(asecFileName)) {
San Mehat68f8ebd2010-01-23 07:21:21 -0800417 LOGE("Failed to unlink asec '%s' (%s)", asecFileName, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -0800418 return -1;
419 }
San Mehata19b2502010-01-06 10:33:53 -0800420
421 LOGD("ASEC %s destroyed", id);
422 return 0;
423}
424
425int VolumeManager::mountAsec(const char *id, const char *key, int ownerUid) {
426 char asecFileName[255];
427 char mountPoint[255];
428
San Mehat3bb60202010-02-19 18:14:36 -0800429 snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", Volume::SEC_ASECDIR, id);
430 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800431
432 if (isMountpointMounted(mountPoint)) {
433 LOGE("ASEC %s already mounted", id);
434 errno = EBUSY;
435 return -1;
436 }
437
438 char loopDevice[255];
439 if (Loop::lookupActive(asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehat8da6bcb2010-01-09 12:24:05 -0800440 if (Loop::create(asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehata19b2502010-01-06 10:33:53 -0800441 LOGE("ASEC loop device creation failed (%s)", strerror(errno));
442 return -1;
443 }
San Mehatb78a32c2010-01-10 13:02:12 -0800444 LOGD("New loop device created at %s", loopDevice);
445 } else {
446 LOGD("Found active loopback for %s at %s", asecFileName, loopDevice);
447 }
448
449 char dmDevice[255];
450 bool cleanupDm = false;
451 if (strcmp(key, "none")) {
452 if (Devmapper::lookupActive(id, dmDevice, sizeof(dmDevice))) {
453 unsigned int nr_sec = 0;
454 int fd;
455
456 if ((fd = open(loopDevice, O_RDWR)) < 0) {
457 LOGE("Failed to open loopdevice (%s)", strerror(errno));
458 Loop::destroyByDevice(loopDevice);
459 return -1;
460 }
461
462 if (ioctl(fd, BLKGETSIZE, &nr_sec)) {
463 LOGE("Failed to get loop size (%s)", strerror(errno));
464 Loop::destroyByDevice(loopDevice);
465 close(fd);
466 return -1;
467 }
468 close(fd);
San Mehat8b8f71b2010-01-11 09:17:25 -0800469 if (Devmapper::create(id, loopDevice, key, nr_sec,
San Mehatb78a32c2010-01-10 13:02:12 -0800470 dmDevice, sizeof(dmDevice))) {
471 LOGE("ASEC device mapping failed (%s)", strerror(errno));
472 Loop::destroyByDevice(loopDevice);
473 return -1;
474 }
475 LOGD("New devmapper instance created at %s", dmDevice);
476 } else {
477 LOGD("Found active devmapper for %s at %s", asecFileName, dmDevice);
478 }
479 cleanupDm = true;
480 } else {
481 strcpy(dmDevice, loopDevice);
San Mehata19b2502010-01-06 10:33:53 -0800482 }
483
484 if (mkdir(mountPoint, 0777)) {
San Mehatb78a32c2010-01-10 13:02:12 -0800485 if (errno != EEXIST) {
486 LOGE("Mountpoint creation failed (%s)", strerror(errno));
487 if (cleanupDm) {
488 Devmapper::destroy(id);
489 }
490 Loop::destroyByDevice(loopDevice);
491 return -1;
492 }
San Mehata19b2502010-01-06 10:33:53 -0800493 }
494
San Mehatb78a32c2010-01-10 13:02:12 -0800495 if (Fat::doMount(dmDevice, mountPoint, true, false, ownerUid, 0,
San Mehatcff5ec32010-01-08 12:31:44 -0800496 0222, false)) {
497// 0227, false)) {
San Mehata19b2502010-01-06 10:33:53 -0800498 LOGE("ASEC mount failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800499 if (cleanupDm) {
500 Devmapper::destroy(id);
501 }
502 Loop::destroyByDevice(loopDevice);
San Mehata19b2502010-01-06 10:33:53 -0800503 return -1;
504 }
505
San Mehat88705162010-01-15 09:26:28 -0800506 mActiveContainers->push_back(strdup(id));
San Mehata19b2502010-01-06 10:33:53 -0800507 LOGD("ASEC %s mounted", id);
508 return 0;
509}
510
San Mehat49e2bce2009-10-12 16:29:01 -0700511int VolumeManager::mountVolume(const char *label) {
512 Volume *v = lookupVolume(label);
513
514 if (!v) {
515 errno = ENOENT;
516 return -1;
517 }
518
San Mehata2677e42009-12-13 10:40:18 -0800519 return v->mountVol();
520}
521
522int VolumeManager::shareAvailable(const char *method, bool *avail) {
523
524 if (strcmp(method, "ums")) {
525 errno = ENOSYS;
526 return -1;
527 }
528
529 if (mUsbMassStorageConnected)
530 *avail = true;
531 else
532 *avail = false;
533 return 0;
534}
535
San Mehateba65e92010-01-29 05:15:16 -0800536int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) {
537 Volume *v = lookupVolume(label);
538
539 if (!v) {
540 errno = ENOENT;
541 return -1;
542 }
543
544 if (strcmp(method, "ums")) {
545 errno = ENOSYS;
546 return -1;
547 }
548
549 if (v->getState() != Volume::State_Shared) {
San Mehateba65e92010-01-29 05:15:16 -0800550 *enabled = false;
San Mehatb9aed742010-02-04 15:07:01 -0800551 } else {
552 *enabled = true;
San Mehateba65e92010-01-29 05:15:16 -0800553 }
554 return 0;
555}
556
San Mehata2677e42009-12-13 10:40:18 -0800557int VolumeManager::simulate(const char *cmd, const char *arg) {
558
559 if (!strcmp(cmd, "ums")) {
560 if (!strcmp(arg, "connect")) {
561 notifyUmsConnected(true);
562 } else if (!strcmp(arg, "disconnect")) {
563 notifyUmsConnected(false);
564 } else {
565 errno = EINVAL;
566 return -1;
567 }
568 } else {
569 errno = EINVAL;
570 return -1;
571 }
572 return 0;
573}
574
575int VolumeManager::shareVolume(const char *label, const char *method) {
576 Volume *v = lookupVolume(label);
577
578 if (!v) {
579 errno = ENOENT;
580 return -1;
581 }
582
583 /*
584 * Eventually, we'll want to support additional share back-ends,
585 * some of which may work while the media is mounted. For now,
586 * we just support UMS
587 */
588 if (strcmp(method, "ums")) {
589 errno = ENOSYS;
590 return -1;
591 }
592
593 if (v->getState() == Volume::State_NoMedia) {
594 errno = ENODEV;
595 return -1;
596 }
597
San Mehat49e2bce2009-10-12 16:29:01 -0700598 if (v->getState() != Volume::State_Idle) {
San Mehata2677e42009-12-13 10:40:18 -0800599 // You need to unmount manually befoe sharing
San Mehat49e2bce2009-10-12 16:29:01 -0700600 errno = EBUSY;
601 return -1;
602 }
603
San Mehata2677e42009-12-13 10:40:18 -0800604 dev_t d = v->getDiskDevice();
605 if ((MAJOR(d) == 0) && (MINOR(d) == 0)) {
606 // This volume does not support raw disk access
607 errno = EINVAL;
608 return -1;
609 }
610
611 int fd;
612 char nodepath[255];
613 snprintf(nodepath,
614 sizeof(nodepath), "/dev/block/vold/%d:%d",
615 MAJOR(d), MINOR(d));
616
San Mehat0cde53c2009-12-22 08:32:33 -0800617 if ((fd = open("/sys/devices/platform/usb_mass_storage/lun0/file",
618 O_WRONLY)) < 0) {
San Mehata2677e42009-12-13 10:40:18 -0800619 LOGE("Unable to open ums lunfile (%s)", strerror(errno));
620 return -1;
621 }
622
623 if (write(fd, nodepath, strlen(nodepath)) < 0) {
624 LOGE("Unable to write to ums lunfile (%s)", strerror(errno));
625 close(fd);
626 return -1;
627 }
628
629 close(fd);
630 v->handleVolumeShared();
631 return 0;
632}
633
634int VolumeManager::unshareVolume(const char *label, const char *method) {
635 Volume *v = lookupVolume(label);
636
637 if (!v) {
638 errno = ENOENT;
639 return -1;
640 }
641
642 if (strcmp(method, "ums")) {
643 errno = ENOSYS;
644 return -1;
645 }
646
647 if (v->getState() != Volume::State_Shared) {
648 errno = EINVAL;
649 return -1;
650 }
651
652 dev_t d = v->getDiskDevice();
653
654 int fd;
655 char nodepath[255];
656 snprintf(nodepath,
657 sizeof(nodepath), "/dev/block/vold/%d:%d",
658 MAJOR(d), MINOR(d));
659
San Mehat0cde53c2009-12-22 08:32:33 -0800660 if ((fd = open("/sys/devices/platform/usb_mass_storage/lun0/file", O_WRONLY)) < 0) {
San Mehata2677e42009-12-13 10:40:18 -0800661 LOGE("Unable to open ums lunfile (%s)", strerror(errno));
662 return -1;
663 }
664
665 char ch = 0;
666 if (write(fd, &ch, 1) < 0) {
667 LOGE("Unable to write to ums lunfile (%s)", strerror(errno));
668 close(fd);
669 return -1;
670 }
671
672 close(fd);
673 v->handleVolumeUnshared();
674 return 0;
San Mehat49e2bce2009-10-12 16:29:01 -0700675}
676
San Mehat4ba89482010-02-18 09:00:18 -0800677int VolumeManager::unmountVolume(const char *label, bool force) {
San Mehat49e2bce2009-10-12 16:29:01 -0700678 Volume *v = lookupVolume(label);
679
680 if (!v) {
681 errno = ENOENT;
682 return -1;
683 }
684
San Mehata2677e42009-12-13 10:40:18 -0800685 if (v->getState() == Volume::State_NoMedia) {
686 errno = ENODEV;
687 return -1;
688 }
689
San Mehat49e2bce2009-10-12 16:29:01 -0700690 if (v->getState() != Volume::State_Mounted) {
San Mehata2677e42009-12-13 10:40:18 -0800691 LOGW("Attempt to unmount volume which isn't mounted (%d)\n",
692 v->getState());
San Mehat49e2bce2009-10-12 16:29:01 -0700693 errno = EBUSY;
694 return -1;
695 }
696
San Mehat88705162010-01-15 09:26:28 -0800697 while(mActiveContainers->size()) {
698 AsecIdCollection::iterator it = mActiveContainers->begin();
699 LOGI("Unmounting ASEC %s (dependant on %s)", *it, v->getMountpoint());
San Mehat4ba89482010-02-18 09:00:18 -0800700 if (unmountAsec(*it, force)) {
San Mehat0e382532010-02-24 08:25:55 -0800701 LOGE("Failed to unmount ASEC %s (%s)", *it, strerror(errno), v->getMountpoint());
702 return -1;
San Mehat88705162010-01-15 09:26:28 -0800703 }
704 }
705
San Mehat4ba89482010-02-18 09:00:18 -0800706 return v->unmountVol(force);
San Mehat49e2bce2009-10-12 16:29:01 -0700707}
708
San Mehata2677e42009-12-13 10:40:18 -0800709/*
710 * Looks up a volume by it's label or mount-point
711 */
San Mehat49e2bce2009-10-12 16:29:01 -0700712Volume *VolumeManager::lookupVolume(const char *label) {
713 VolumeCollection::iterator i;
714
715 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
San Mehata2677e42009-12-13 10:40:18 -0800716 if (label[0] == '/') {
717 if (!strcmp(label, (*i)->getMountpoint()))
718 return (*i);
719 } else {
720 if (!strcmp(label, (*i)->getLabel()))
721 return (*i);
722 }
San Mehat49e2bce2009-10-12 16:29:01 -0700723 }
724 return NULL;
725}
San Mehata19b2502010-01-06 10:33:53 -0800726
727bool VolumeManager::isMountpointMounted(const char *mp)
728{
729 char device[256];
730 char mount_path[256];
731 char rest[256];
732 FILE *fp;
733 char line[1024];
734
735 if (!(fp = fopen("/proc/mounts", "r"))) {
736 LOGE("Error opening /proc/mounts (%s)", strerror(errno));
737 return false;
738 }
739
740 while(fgets(line, sizeof(line), fp)) {
741 line[strlen(line)-1] = '\0';
742 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
743 if (!strcmp(mount_path, mp)) {
744 fclose(fp);
745 return true;
746 }
747
748 }
749
750 fclose(fp);
751 return false;
752}
753