blob: df06c83a5b8cc261517a65ab9bcec8550e2eff40 [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>
San Mehatf1b736b2009-10-10 17:22:08 -070019#include <string.h>
San Mehatfd7f5872009-10-12 11:32:47 -070020#include <errno.h>
San Mehatf1b736b2009-10-10 17:22:08 -070021
San Mehata2677e42009-12-13 10:40:18 -080022#include <linux/kdev_t.h>
23
24#define LOG_TAG "DirectVolume"
San Mehatf1b736b2009-10-10 17:22:08 -070025
26#include <cutils/log.h>
San Mehatfd7f5872009-10-12 11:32:47 -070027#include <sysutils/NetlinkEvent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070028
San Mehatae10b912009-10-12 14:57:05 -070029#include "DirectVolume.h"
San Mehata2677e42009-12-13 10:40:18 -080030#include "VolumeManager.h"
31#include "ResponseCode.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070032#include "cryptfs.h"
San Mehatf1b736b2009-10-10 17:22:08 -070033
San Mehata2677e42009-12-13 10:40:18 -080034// #define PARTITION_DEBUG
35
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -070036DirectVolume::DirectVolume(VolumeManager *vm, const fstab_rec* rec, int flags) :
37 Volume(vm, rec, flags) {
San Mehatf1b736b2009-10-10 17:22:08 -070038 mPaths = new PathCollection();
San Mehatdd9b8e92009-10-21 11:06:52 -070039 for (int i = 0; i < MAX_PARTITIONS; i++)
40 mPartMinors[i] = -1;
San Mehata2677e42009-12-13 10:40:18 -080041 mPendingPartMap = 0;
42 mDiskMajor = -1;
43 mDiskMinor = -1;
44 mDiskNumParts = 0;
45
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -070046 if (strcmp(rec->mount_point, "auto") != 0) {
47 ALOGE("Vold managed volumes must have auto mount point; ignoring %s",
48 rec->mount_point);
49 }
50
51 char mount[PATH_MAX];
52
53 snprintf(mount, PATH_MAX, "%s/%s", Volume::MEDIA_DIR, rec->label);
54 mMountpoint = strdup(mount);
55 snprintf(mount, PATH_MAX, "%s/%s", Volume::FUSE_DIR, rec->label);
56 mFuseMountpoint = strdup(mount);
57
San Mehata2677e42009-12-13 10:40:18 -080058 setState(Volume::State_NoMedia);
San Mehatf1b736b2009-10-10 17:22:08 -070059}
60
San Mehatae10b912009-10-12 14:57:05 -070061DirectVolume::~DirectVolume() {
San Mehatf1b736b2009-10-10 17:22:08 -070062 PathCollection::iterator it;
63
64 for (it = mPaths->begin(); it != mPaths->end(); ++it)
65 free(*it);
66 delete mPaths;
67}
68
San Mehatae10b912009-10-12 14:57:05 -070069int DirectVolume::addPath(const char *path) {
San Mehatf1b736b2009-10-10 17:22:08 -070070 mPaths->push_back(strdup(path));
71 return 0;
72}
73
San Mehata2677e42009-12-13 10:40:18 -080074dev_t DirectVolume::getDiskDevice() {
75 return MKDEV(mDiskMajor, mDiskMinor);
76}
77
Mike Lockwood2dfe2972010-09-17 18:50:51 -040078dev_t DirectVolume::getShareDevice() {
79 if (mPartIdx != -1) {
80 return MKDEV(mDiskMajor, mPartIdx);
81 } else {
82 return MKDEV(mDiskMajor, mDiskMinor);
83 }
84}
85
San Mehata2677e42009-12-13 10:40:18 -080086void DirectVolume::handleVolumeShared() {
87 setState(Volume::State_Shared);
88}
89
90void DirectVolume::handleVolumeUnshared() {
91 setState(Volume::State_Idle);
92}
93
San Mehatae10b912009-10-12 14:57:05 -070094int DirectVolume::handleBlockEvent(NetlinkEvent *evt) {
San Mehatfd7f5872009-10-12 11:32:47 -070095 const char *dp = evt->findParam("DEVPATH");
San Mehatf1b736b2009-10-10 17:22:08 -070096
San Mehatfd7f5872009-10-12 11:32:47 -070097 PathCollection::iterator it;
San Mehatf1b736b2009-10-10 17:22:08 -070098 for (it = mPaths->begin(); it != mPaths->end(); ++it) {
San Mehatf1b736b2009-10-10 17:22:08 -070099 if (!strncmp(dp, *it, strlen(*it))) {
San Mehatfd7f5872009-10-12 11:32:47 -0700100 /* We can handle this disk */
101 int action = evt->getAction();
102 const char *devtype = evt->findParam("DEVTYPE");
103
San Mehata2677e42009-12-13 10:40:18 -0800104 if (action == NetlinkEvent::NlActionAdd) {
105 int major = atoi(evt->findParam("MAJOR"));
106 int minor = atoi(evt->findParam("MINOR"));
107 char nodepath[255];
108
109 snprintf(nodepath,
110 sizeof(nodepath), "/dev/block/vold/%d:%d",
111 major, minor);
112 if (createDeviceNode(nodepath, major, minor)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700113 SLOGE("Error making device node '%s' (%s)", nodepath,
San Mehata2677e42009-12-13 10:40:18 -0800114 strerror(errno));
115 }
116 if (!strcmp(devtype, "disk")) {
San Mehatfd7f5872009-10-12 11:32:47 -0700117 handleDiskAdded(dp, evt);
San Mehata2677e42009-12-13 10:40:18 -0800118 } else {
San Mehatfd7f5872009-10-12 11:32:47 -0700119 handlePartitionAdded(dp, evt);
San Mehata2677e42009-12-13 10:40:18 -0800120 }
Magnus Malmborn3dafc262011-01-19 12:26:52 +0100121 /* Send notification iff disk is ready (ie all partitions found) */
122 if (getState() == Volume::State_Idle) {
123 char msg[255];
124
125 snprintf(msg, sizeof(msg),
126 "Volume %s %s disk inserted (%d:%d)", getLabel(),
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -0700127 getFuseMountpoint(), mDiskMajor, mDiskMinor);
Magnus Malmborn3dafc262011-01-19 12:26:52 +0100128 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeDiskInserted,
129 msg, false);
130 }
San Mehata2677e42009-12-13 10:40:18 -0800131 } else if (action == NetlinkEvent::NlActionRemove) {
132 if (!strcmp(devtype, "disk")) {
133 handleDiskRemoved(dp, evt);
134 } else {
San Mehatfd7f5872009-10-12 11:32:47 -0700135 handlePartitionRemoved(dp, evt);
San Mehata2677e42009-12-13 10:40:18 -0800136 }
137 } else if (action == NetlinkEvent::NlActionChange) {
138 if (!strcmp(devtype, "disk")) {
139 handleDiskChanged(dp, evt);
140 } else {
141 handlePartitionChanged(dp, evt);
142 }
143 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700144 SLOGW("Ignoring non add/remove/change event");
San Mehatf1b736b2009-10-10 17:22:08 -0700145 }
San Mehatfd7f5872009-10-12 11:32:47 -0700146
San Mehatf1b736b2009-10-10 17:22:08 -0700147 return 0;
148 }
149 }
150 errno = ENODEV;
151 return -1;
152}
San Mehatfd7f5872009-10-12 11:32:47 -0700153
Mark Salyzyn5eecc442014-02-12 14:16:14 -0800154void DirectVolume::handleDiskAdded(const char * /*devpath*/,
155 NetlinkEvent *evt) {
Kenny Rootda62e7c2010-03-24 20:18:00 -0700156 mDiskMajor = atoi(evt->findParam("MAJOR"));
157 mDiskMinor = atoi(evt->findParam("MINOR"));
San Mehat7b8f2db2010-01-04 14:03:36 -0800158
159 const char *tmp = evt->findParam("NPARTS");
160 if (tmp) {
161 mDiskNumParts = atoi(tmp);
162 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700163 SLOGW("Kernel block uevent missing 'NPARTS'");
San Mehat7b8f2db2010-01-04 14:03:36 -0800164 mDiskNumParts = 1;
165 }
166
San Mehatfd7f5872009-10-12 11:32:47 -0700167 int partmask = 0;
168 int i;
San Mehat59abc3c2009-10-12 14:48:47 -0700169 for (i = 1; i <= mDiskNumParts; i++) {
San Mehatfd7f5872009-10-12 11:32:47 -0700170 partmask |= (1 << i);
171 }
172 mPendingPartMap = partmask;
173
174 if (mDiskNumParts == 0) {
San Mehata2677e42009-12-13 10:40:18 -0800175#ifdef PARTITION_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700176 SLOGD("Dv::diskIns - No partitions - good to go son!");
San Mehata2677e42009-12-13 10:40:18 -0800177#endif
San Mehatfd7f5872009-10-12 11:32:47 -0700178 setState(Volume::State_Idle);
179 } else {
San Mehata2677e42009-12-13 10:40:18 -0800180#ifdef PARTITION_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700181 SLOGD("Dv::diskIns - waiting for %d partitions (mask 0x%x)",
San Mehatfd7f5872009-10-12 11:32:47 -0700182 mDiskNumParts, mPendingPartMap);
San Mehata2677e42009-12-13 10:40:18 -0800183#endif
San Mehatfd7f5872009-10-12 11:32:47 -0700184 setState(Volume::State_Pending);
185 }
186}
187
San Mehatae10b912009-10-12 14:57:05 -0700188void DirectVolume::handlePartitionAdded(const char *devpath, NetlinkEvent *evt) {
Kenny Rootda62e7c2010-03-24 20:18:00 -0700189 int major = atoi(evt->findParam("MAJOR"));
190 int minor = atoi(evt->findParam("MINOR"));
San Mehat7b8f2db2010-01-04 14:03:36 -0800191
192 int part_num;
193
194 const char *tmp = evt->findParam("PARTN");
195
196 if (tmp) {
197 part_num = atoi(tmp);
198 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700199 SLOGW("Kernel block uevent missing 'PARTN'");
San Mehat7b8f2db2010-01-04 14:03:36 -0800200 part_num = 1;
201 }
San Mehat59abc3c2009-10-12 14:48:47 -0700202
Nick Kralevichf3d3ce52011-04-18 11:16:13 -0700203 if (part_num > MAX_PARTITIONS || part_num < 1) {
Nick Kralevichcc8e96c2011-04-29 16:07:45 -0700204 SLOGE("Invalid 'PARTN' value");
205 return;
Nick Kralevichf3d3ce52011-04-18 11:16:13 -0700206 }
207
San Mehat2a5b8ce2010-03-10 12:48:57 -0800208 if (part_num > mDiskNumParts) {
209 mDiskNumParts = part_num;
210 }
211
San Mehatdd9b8e92009-10-21 11:06:52 -0700212 if (major != mDiskMajor) {
San Mehat97ac40e2010-03-24 10:24:19 -0700213 SLOGE("Partition '%s' has a different major than its disk!", devpath);
San Mehatdd9b8e92009-10-21 11:06:52 -0700214 return;
215 }
San Mehata2677e42009-12-13 10:40:18 -0800216#ifdef PARTITION_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700217 SLOGD("Dv:partAdd: part_num = %d, minor = %d\n", part_num, minor);
San Mehata2677e42009-12-13 10:40:18 -0800218#endif
Bruce Beared11b8332010-07-22 13:23:33 -0700219 if (part_num >= MAX_PARTITIONS) {
220 SLOGE("Dv:partAdd: ignoring part_num = %d (max: %d)\n", part_num, MAX_PARTITIONS-1);
Bruce Beared7660902010-07-22 13:23:33 -0700221 } else {
222 mPartMinors[part_num -1] = minor;
223 }
San Mehat59abc3c2009-10-12 14:48:47 -0700224 mPendingPartMap &= ~(1 << part_num);
Bruce Beared7660902010-07-22 13:23:33 -0700225
San Mehat59abc3c2009-10-12 14:48:47 -0700226 if (!mPendingPartMap) {
San Mehata2677e42009-12-13 10:40:18 -0800227#ifdef PARTITION_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700228 SLOGD("Dv:partAdd: Got all partitions - ready to rock!");
San Mehata2677e42009-12-13 10:40:18 -0800229#endif
San Mehat2a5b8ce2010-03-10 12:48:57 -0800230 if (getState() != Volume::State_Formatting) {
231 setState(Volume::State_Idle);
Joseph Lehrer507d31b2011-04-11 15:02:50 -0700232 if (mRetryMount == true) {
233 mRetryMount = false;
234 mountVol();
235 }
San Mehat2a5b8ce2010-03-10 12:48:57 -0800236 }
San Mehat59abc3c2009-10-12 14:48:47 -0700237 } else {
San Mehata2677e42009-12-13 10:40:18 -0800238#ifdef PARTITION_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700239 SLOGD("Dv:partAdd: pending mask now = 0x%x", mPendingPartMap);
San Mehata2677e42009-12-13 10:40:18 -0800240#endif
San Mehat59abc3c2009-10-12 14:48:47 -0700241 }
San Mehatfd7f5872009-10-12 11:32:47 -0700242}
243
Mark Salyzyn5eecc442014-02-12 14:16:14 -0800244void DirectVolume::handleDiskChanged(const char * /*devpath*/,
245 NetlinkEvent *evt) {
Kenny Rootda62e7c2010-03-24 20:18:00 -0700246 int major = atoi(evt->findParam("MAJOR"));
247 int minor = atoi(evt->findParam("MINOR"));
San Mehata2677e42009-12-13 10:40:18 -0800248
249 if ((major != mDiskMajor) || (minor != mDiskMinor)) {
250 return;
251 }
252
San Mehat97ac40e2010-03-24 10:24:19 -0700253 SLOGI("Volume %s disk has changed", getLabel());
San Mehat7b8f2db2010-01-04 14:03:36 -0800254 const char *tmp = evt->findParam("NPARTS");
255 if (tmp) {
256 mDiskNumParts = atoi(tmp);
257 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700258 SLOGW("Kernel block uevent missing 'NPARTS'");
San Mehat7b8f2db2010-01-04 14:03:36 -0800259 mDiskNumParts = 1;
260 }
261
San Mehata2677e42009-12-13 10:40:18 -0800262 int partmask = 0;
263 int i;
264 for (i = 1; i <= mDiskNumParts; i++) {
265 partmask |= (1 << i);
266 }
267 mPendingPartMap = partmask;
268
San Mehat2a5b8ce2010-03-10 12:48:57 -0800269 if (getState() != Volume::State_Formatting) {
270 if (mDiskNumParts == 0) {
271 setState(Volume::State_Idle);
272 } else {
273 setState(Volume::State_Pending);
274 }
San Mehata2677e42009-12-13 10:40:18 -0800275 }
San Mehata2677e42009-12-13 10:40:18 -0800276}
277
Mark Salyzyn5eecc442014-02-12 14:16:14 -0800278void DirectVolume::handlePartitionChanged(const char * /*devpath*/,
279 NetlinkEvent *evt) {
Kenny Rootda62e7c2010-03-24 20:18:00 -0700280 int major = atoi(evt->findParam("MAJOR"));
281 int minor = atoi(evt->findParam("MINOR"));
San Mehat97ac40e2010-03-24 10:24:19 -0700282 SLOGD("Volume %s %s partition %d:%d changed\n", getLabel(), getMountpoint(), major, minor);
San Mehata2677e42009-12-13 10:40:18 -0800283}
284
Mark Salyzyn5eecc442014-02-12 14:16:14 -0800285void DirectVolume::handleDiskRemoved(const char * /*devpath*/,
286 NetlinkEvent *evt) {
Kenny Rootda62e7c2010-03-24 20:18:00 -0700287 int major = atoi(evt->findParam("MAJOR"));
288 int minor = atoi(evt->findParam("MINOR"));
San Mehata2677e42009-12-13 10:40:18 -0800289 char msg[255];
Lars Svensson62736612011-04-07 15:17:43 +0200290 bool enabled;
291
Robert Chiras961d20d2014-05-27 10:40:37 +0300292 SLOGD("Volume %s %s disk %d:%d removed\n", getLabel(), getMountpoint(), major, minor);
293 if ((dev_t) MKDEV(major, minor) == mCurrentlyMountedKdev) {
294 /*
295 * Yikes, our mounted disk is going away!
296 */
297
298 doUnmount(major, minor);
299 } else if (mVm->shareEnabled(getLabel(), "ums", &enabled) == 0 && enabled) {
Lars Svensson62736612011-04-07 15:17:43 +0200300 mVm->unshareVolume(getLabel(), "ums");
301 }
San Mehata2677e42009-12-13 10:40:18 -0800302
San Mehata2677e42009-12-13 10:40:18 -0800303 snprintf(msg, sizeof(msg), "Volume %s %s disk removed (%d:%d)",
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -0700304 getLabel(), getFuseMountpoint(), major, minor);
San Mehata2677e42009-12-13 10:40:18 -0800305 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeDiskRemoved,
306 msg, false);
307 setState(Volume::State_NoMedia);
San Mehatfd7f5872009-10-12 11:32:47 -0700308}
309
Mark Salyzyn5eecc442014-02-12 14:16:14 -0800310void DirectVolume::handlePartitionRemoved(const char * /*devpath*/,
311 NetlinkEvent *evt) {
Kenny Rootda62e7c2010-03-24 20:18:00 -0700312 int major = atoi(evt->findParam("MAJOR"));
313 int minor = atoi(evt->findParam("MINOR"));
San Mehata2677e42009-12-13 10:40:18 -0800314 char msg[255];
Ethan75a3e1a2010-07-21 23:07:51 +0800315 int state;
San Mehata2677e42009-12-13 10:40:18 -0800316
San Mehat97ac40e2010-03-24 10:24:19 -0700317 SLOGD("Volume %s %s partition %d:%d removed\n", getLabel(), getMountpoint(), major, minor);
San Mehata2677e42009-12-13 10:40:18 -0800318
319 /*
320 * The framework doesn't need to get notified of
321 * partition removal unless it's mounted. Otherwise
322 * the removal notification will be sent on the Disk
323 * itself
324 */
Ethan75a3e1a2010-07-21 23:07:51 +0800325 state = getState();
326 if (state != Volume::State_Mounted && state != Volume::State_Shared) {
San Mehata2677e42009-12-13 10:40:18 -0800327 return;
328 }
Robert Chiras961d20d2014-05-27 10:40:37 +0300329
San Mehata2677e42009-12-13 10:40:18 -0800330 if ((dev_t) MKDEV(major, minor) == mCurrentlyMountedKdev) {
331 /*
332 * Yikes, our mounted partition is going away!
333 */
Robert Chiras961d20d2014-05-27 10:40:37 +0300334 doUnmount(major, minor);
Ethan75a3e1a2010-07-21 23:07:51 +0800335 } else if (state == Volume::State_Shared) {
336 /* removed during mass storage */
337 snprintf(msg, sizeof(msg), "Volume %s bad removal (%d:%d)",
338 getLabel(), major, minor);
339 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeBadRemoval,
340 msg, false);
341
342 if (mVm->unshareVolume(getLabel(), "ums")) {
343 SLOGE("Failed to unshare volume on bad removal (%s)",
344 strerror(errno));
345 } else {
346 SLOGD("Crisis averted");
347 }
San Mehata2677e42009-12-13 10:40:18 -0800348 }
San Mehatfd7f5872009-10-12 11:32:47 -0700349}
San Mehat49e2bce2009-10-12 16:29:01 -0700350
Robert Chiras961d20d2014-05-27 10:40:37 +0300351void DirectVolume::doUnmount(int major, int minor) {
352 char msg[255];
353 bool providesAsec = (getFlags() & VOL_PROVIDES_ASEC) != 0;
354 if (providesAsec && mVm->cleanupAsec(this, true)) {
355 SLOGE("Failed to cleanup ASEC - unmount will probably fail!");
356 }
357
358 snprintf(msg, sizeof(msg), "Volume %s %s bad removal (%d:%d)",
359 getLabel(), getFuseMountpoint(), major, minor);
360 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeBadRemoval,
361 msg, false);
362
363 if (Volume::unmountVol(true, false)) {
364 SLOGE("Failed to unmount volume on bad removal (%s)",
365 strerror(errno));
366 // XXX: At this point we're screwed for now
367 } else {
368 SLOGD("Crisis averted");
369 }
370}
371
San Mehatdd9b8e92009-10-21 11:06:52 -0700372/*
San Mehata2677e42009-12-13 10:40:18 -0800373 * Called from base to get a list of devicenodes for mounting
San Mehatdd9b8e92009-10-21 11:06:52 -0700374 */
San Mehata2677e42009-12-13 10:40:18 -0800375int DirectVolume::getDeviceNodes(dev_t *devs, int max) {
San Mehatdd9b8e92009-10-21 11:06:52 -0700376
377 if (mPartIdx == -1) {
San Mehata2677e42009-12-13 10:40:18 -0800378 // If the disk has no partitions, try the disk itself
San Mehatdd9b8e92009-10-21 11:06:52 -0700379 if (!mDiskNumParts) {
San Mehata2677e42009-12-13 10:40:18 -0800380 devs[0] = MKDEV(mDiskMajor, mDiskMinor);
381 return 1;
San Mehatdd9b8e92009-10-21 11:06:52 -0700382 }
383
San Mehata2677e42009-12-13 10:40:18 -0800384 int i;
385 for (i = 0; i < mDiskNumParts; i++) {
386 if (i == max)
387 break;
388 devs[i] = MKDEV(mDiskMajor, mPartMinors[i]);
389 }
390 return mDiskNumParts;
San Mehatdd9b8e92009-10-21 11:06:52 -0700391 }
San Mehata2677e42009-12-13 10:40:18 -0800392 devs[0] = MKDEV(mDiskMajor, mPartMinors[mPartIdx -1]);
393 return 1;
San Mehat49e2bce2009-10-12 16:29:01 -0700394}
Ken Sumrall29d8da82011-05-18 17:20:07 -0700395
396/*
397 * Called from base to update device info,
398 * e.g. When setting up an dm-crypt mapping for the sd card.
399 */
400int DirectVolume::updateDeviceInfo(char *new_path, int new_major, int new_minor)
401{
402 PathCollection::iterator it;
403
404 if (mPartIdx == -1) {
405 SLOGE("Can only change device info on a partition\n");
406 return -1;
407 }
408
409 /*
410 * This is to change the sysfs path associated with a partition, in particular,
411 * for an internal SD card partition that is encrypted. Thus, the list is
412 * expected to be only 1 entry long. Check that and bail if not.
413 */
414 if (mPaths->size() != 1) {
415 SLOGE("Cannot change path if there are more than one for a volume\n");
416 return -1;
417 }
418
419 it = mPaths->begin();
420 free(*it); /* Free the string storage */
421 mPaths->erase(it); /* Remove it from the list */
422 addPath(new_path); /* Put the new path on the list */
423
Ken Sumrall0b8b5972011-08-31 16:14:23 -0700424 /* Save away original info so we can restore it when doing factory reset.
425 * Then, when doing the format, it will format the original device in the
426 * clear, otherwise it just formats the encrypted device which is not
427 * readable when the device boots unencrypted after the reset.
428 */
429 mOrigDiskMajor = mDiskMajor;
430 mOrigDiskMinor = mDiskMinor;
431 mOrigPartIdx = mPartIdx;
432 memcpy(mOrigPartMinors, mPartMinors, sizeof(mPartMinors));
433
Ken Sumrall29d8da82011-05-18 17:20:07 -0700434 mDiskMajor = new_major;
435 mDiskMinor = new_minor;
436 /* Ugh, virual block devices don't use minor 0 for whole disk and minor > 0 for
437 * partition number. They don't have partitions, they are just virtual block
438 * devices, and minor number 0 is the first dm-crypt device. Luckily the first
439 * dm-crypt device is for the userdata partition, which gets minor number 0, and
440 * it is not managed by vold. So the next device is minor number one, which we
441 * will call partition one.
442 */
443 mPartIdx = new_minor;
444 mPartMinors[new_minor-1] = new_minor;
445
446 mIsDecrypted = 1;
447
448 return 0;
449}
450
451/*
Ken Sumrall0b8b5972011-08-31 16:14:23 -0700452 * Called from base to revert device info to the way it was before a
453 * crypto mapping was created for it.
454 */
455void DirectVolume::revertDeviceInfo(void)
456{
457 if (mIsDecrypted) {
458 mDiskMajor = mOrigDiskMajor;
459 mDiskMinor = mOrigDiskMinor;
460 mPartIdx = mOrigPartIdx;
461 memcpy(mPartMinors, mOrigPartMinors, sizeof(mPartMinors));
462
463 mIsDecrypted = 0;
464 }
465
466 return;
467}
468
469/*
Ken Sumrall29d8da82011-05-18 17:20:07 -0700470 * Called from base to give cryptfs all the info it needs to encrypt eligible volumes
471 */
472int DirectVolume::getVolInfo(struct volume_info *v)
473{
474 strcpy(v->label, mLabel);
475 strcpy(v->mnt_point, mMountpoint);
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -0700476 v->flags = getFlags();
Ken Sumrall29d8da82011-05-18 17:20:07 -0700477 /* Other fields of struct volume_info are filled in by the caller or cryptfs.c */
478
479 return 0;
480}