blob: 39015265e41b10206ea181bb3d8c548cdc53fe41 [file] [log] [blame]
Jeff Sharkeydeb24052015-03-02 21:01:40 -08001/*
2 * Copyright (C) 2015 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
Jeff Sharkeydeb24052015-03-02 21:01:40 -080017#include "Disk.h"
18#include "PublicVolume.h"
Jeff Sharkey9c484982015-03-31 10:35:33 -070019#include "PrivateVolume.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080020#include "Utils.h"
21#include "VolumeBase.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070022#include "VolumeManager.h"
23#include "ResponseCode.h"
Jeff Sharkey15717512016-08-23 13:48:50 -060024#include "Ext4Crypt.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080025
Elliott Hughes7e128fb2015-12-04 15:50:53 -080026#include <android-base/file.h>
Jeff Sharkey46bb69f2017-06-21 13:52:23 -060027#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080028#include <android-base/stringprintf.h>
29#include <android-base/logging.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080030#include <diskconfig/diskconfig.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080031
Jeff Sharkey9c484982015-03-31 10:35:33 -070032#include <vector>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080033#include <fcntl.h>
Jeff Sharkey38cfc022015-03-30 21:22:07 -070034#include <inttypes.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080035#include <stdio.h>
36#include <stdlib.h>
37#include <sys/types.h>
38#include <sys/stat.h>
Elliott Hughes0e08e842017-05-18 09:08:24 -070039#include <sys/sysmacros.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080040#include <sys/mount.h>
41
Dan Albertae9e8902015-03-16 10:35:17 -070042using android::base::ReadFileToString;
Jeff Sharkey9c484982015-03-31 10:35:33 -070043using android::base::WriteStringToFile;
Dan Albertae9e8902015-03-16 10:35:17 -070044using android::base::StringPrintf;
45
Jeff Sharkeydeb24052015-03-02 21:01:40 -080046namespace android {
47namespace vold {
48
49static const char* kSgdiskPath = "/system/bin/sgdisk";
50static const char* kSgdiskToken = " \t\n";
51
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060052static const char* kSysfsLoopMaxMinors = "/sys/module/loop/parameters/max_part";
Pierre-Hugues Hussonf347cd02017-11-28 15:42:56 +010053static const char* kSysfsMmcMaxMinorsDeprecated = "/sys/module/mmcblk/parameters/perdev_minors";
54static const char* kSysfsMmcMaxMinors = "/sys/module/mmc_block/parameters/perdev_minors";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080055
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060056static const unsigned int kMajorBlockLoop = 7;
Jeff Sharkeyf3ee2002015-04-19 15:55:42 -070057static const unsigned int kMajorBlockScsiA = 8;
58static const unsigned int kMajorBlockScsiB = 65;
59static const unsigned int kMajorBlockScsiC = 66;
60static const unsigned int kMajorBlockScsiD = 67;
61static const unsigned int kMajorBlockScsiE = 68;
62static const unsigned int kMajorBlockScsiF = 69;
63static const unsigned int kMajorBlockScsiG = 70;
64static const unsigned int kMajorBlockScsiH = 71;
65static const unsigned int kMajorBlockScsiI = 128;
66static const unsigned int kMajorBlockScsiJ = 129;
67static const unsigned int kMajorBlockScsiK = 130;
68static const unsigned int kMajorBlockScsiL = 131;
69static const unsigned int kMajorBlockScsiM = 132;
70static const unsigned int kMajorBlockScsiN = 133;
71static const unsigned int kMajorBlockScsiO = 134;
72static const unsigned int kMajorBlockScsiP = 135;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080073static const unsigned int kMajorBlockMmc = 179;
Yu Ning942d4e82016-01-08 17:36:47 +080074static const unsigned int kMajorBlockExperimentalMin = 240;
75static const unsigned int kMajorBlockExperimentalMax = 254;
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -070076static const unsigned int kMajorBlockDynamicMin = 234;
77static const unsigned int kMajorBlockDynamicMax = 512;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080078
79static const char* kGptBasicData = "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7";
80static const char* kGptAndroidMeta = "19A710A2-B3CA-11E4-B026-10604B889DCF";
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070081static const char* kGptAndroidExpand = "193D1EA4-B3CA-11E4-B075-10604B889DCF";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080082
83enum class Table {
84 kUnknown,
85 kMbr,
86 kGpt,
87};
88
Yu Ning942d4e82016-01-08 17:36:47 +080089static bool isVirtioBlkDevice(unsigned int major) {
90 /*
91 * The new emulator's "ranchu" virtual board no longer includes a goldfish
92 * MMC-based SD card device; instead, it emulates SD cards with virtio-blk,
93 * which has been supported by upstream kernel and QEMU for quite a while.
94 * Unfortunately, the virtio-blk block device driver does not use a fixed
95 * major number, but relies on the kernel to assign one from a specific
96 * range of block majors, which are allocated for "LOCAL/EXPERIMENAL USE"
97 * per Documentation/devices.txt. This is true even for the latest Linux
98 * kernel (4.4; see init() in drivers/block/virtio_blk.c).
99 *
100 * This makes it difficult for vold to detect a virtio-blk based SD card.
101 * The current solution checks two conditions (both must be met):
102 *
103 * a) If the running environment is the emulator;
104 * b) If the major number is an experimental block device major number (for
105 * x86/x86_64 3.10 ranchu kernels, virtio-blk always gets major number
106 * 253, but it is safer to match the range than just one value).
107 *
108 * Other conditions could be used, too, e.g. the hardware name should be
109 * "ranchu", the device's sysfs path should end with "/block/vd[d-z]", etc.
110 * But just having a) and b) is enough for now.
111 */
112 return IsRunningInEmulator() && major >= kMajorBlockExperimentalMin
113 && major <= kMajorBlockExperimentalMax;
114}
115
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700116static bool isNvmeBlkDevice(unsigned int major, const std::string& sysPath) {
117 return sysPath.find("nvme") != std::string::npos
118 && major >= kMajorBlockDynamicMin
119 && major <= kMajorBlockDynamicMax;
120}
121
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700122Disk::Disk(const std::string& eventPath, dev_t device,
123 const std::string& nickname, int flags) :
124 mDevice(device), mSize(-1), mNickname(nickname), mFlags(flags), mCreated(
125 false), mJustPartitioned(false) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700126 mId = StringPrintf("disk:%u,%u", major(device), minor(device));
127 mEventPath = eventPath;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800128 mSysPath = StringPrintf("/sys/%s", eventPath.c_str());
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700129 mDevPath = StringPrintf("/dev/block/vold/%s", mId.c_str());
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800130 CreateDeviceNode(mDevPath, mDevice);
131}
132
133Disk::~Disk() {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700134 CHECK(!mCreated);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800135 DestroyDeviceNode(mDevPath);
136}
137
138std::shared_ptr<VolumeBase> Disk::findVolume(const std::string& id) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700139 for (auto vol : mVolumes) {
140 if (vol->getId() == id) {
141 return vol;
142 }
143 auto stackedVol = vol->findVolume(id);
144 if (stackedVol != nullptr) {
145 return stackedVol;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800146 }
147 }
148 return nullptr;
149}
150
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700151void Disk::listVolumes(VolumeBase::Type type, std::list<std::string>& list) {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700152 for (const auto& vol : mVolumes) {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700153 if (vol->getType() == type) {
154 list.push_back(vol->getId());
155 }
156 // TODO: consider looking at stacked volumes
157 }
158}
159
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700160status_t Disk::create() {
161 CHECK(!mCreated);
162 mCreated = true;
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700163 notifyEvent(ResponseCode::DiskCreated, StringPrintf("%d", mFlags));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700164 readMetadata();
165 readPartitions();
166 return OK;
167}
168
169status_t Disk::destroy() {
170 CHECK(mCreated);
171 destroyAllVolumes();
172 mCreated = false;
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700173 notifyEvent(ResponseCode::DiskDestroyed);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700174 return OK;
175}
176
177void Disk::createPublicVolume(dev_t device) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700178 auto vol = std::shared_ptr<VolumeBase>(new PublicVolume(device));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700179 if (mJustPartitioned) {
180 LOG(DEBUG) << "Device just partitioned; silently formatting";
181 vol->setSilent(true);
182 vol->create();
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700183 vol->format("auto");
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700184 vol->destroy();
185 vol->setSilent(false);
186 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700187
Jeff Sharkey9c484982015-03-31 10:35:33 -0700188 mVolumes.push_back(vol);
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700189 vol->setDiskId(getId());
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700190 vol->create();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700191}
192
Jeff Sharkey9c484982015-03-31 10:35:33 -0700193void Disk::createPrivateVolume(dev_t device, const std::string& partGuid) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700194 std::string normalizedGuid;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700195 if (NormalizeHex(partGuid, normalizedGuid)) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700196 LOG(WARNING) << "Invalid GUID " << partGuid;
197 return;
198 }
Jeff Sharkey9c484982015-03-31 10:35:33 -0700199
200 std::string keyRaw;
201 if (!ReadFileToString(BuildKeyPath(normalizedGuid), &keyRaw)) {
202 PLOG(ERROR) << "Failed to load key for GUID " << normalizedGuid;
203 return;
204 }
205
206 LOG(DEBUG) << "Found key for GUID " << normalizedGuid;
207
208 auto vol = std::shared_ptr<VolumeBase>(new PrivateVolume(device, keyRaw));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700209 if (mJustPartitioned) {
210 LOG(DEBUG) << "Device just partitioned; silently formatting";
211 vol->setSilent(true);
212 vol->create();
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700213 vol->format("auto");
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700214 vol->destroy();
215 vol->setSilent(false);
216 }
Jeff Sharkey9c484982015-03-31 10:35:33 -0700217
218 mVolumes.push_back(vol);
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700219 vol->setDiskId(getId());
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700220 vol->setPartGuid(partGuid);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700221 vol->create();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700222}
223
224void Disk::destroyAllVolumes() {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700225 for (const auto& vol : mVolumes) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700226 vol->destroy();
227 }
228 mVolumes.clear();
229}
230
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800231status_t Disk::readMetadata() {
232 mSize = -1;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700233 mLabel.clear();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800234
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700235 int fd = open(mDevPath.c_str(), O_RDONLY | O_CLOEXEC);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700236 if (fd != -1) {
237 if (ioctl(fd, BLKGETSIZE64, &mSize)) {
238 mSize = -1;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800239 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700240 close(fd);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800241 }
242
Yu Ning942d4e82016-01-08 17:36:47 +0800243 unsigned int majorId = major(mDevice);
244 switch (majorId) {
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600245 case kMajorBlockLoop: {
246 mLabel = "Virtual";
247 break;
248 }
Jeff Sharkeyf3ee2002015-04-19 15:55:42 -0700249 case kMajorBlockScsiA: case kMajorBlockScsiB: case kMajorBlockScsiC: case kMajorBlockScsiD:
250 case kMajorBlockScsiE: case kMajorBlockScsiF: case kMajorBlockScsiG: case kMajorBlockScsiH:
251 case kMajorBlockScsiI: case kMajorBlockScsiJ: case kMajorBlockScsiK: case kMajorBlockScsiL:
252 case kMajorBlockScsiM: case kMajorBlockScsiN: case kMajorBlockScsiO: case kMajorBlockScsiP: {
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800253 std::string path(mSysPath + "/device/vendor");
254 std::string tmp;
255 if (!ReadFileToString(path, &tmp)) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700256 PLOG(WARNING) << "Failed to read vendor from " << path;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800257 return -errno;
258 }
259 mLabel = tmp;
260 break;
261 }
262 case kMajorBlockMmc: {
263 std::string path(mSysPath + "/device/manfid");
264 std::string tmp;
265 if (!ReadFileToString(path, &tmp)) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700266 PLOG(WARNING) << "Failed to read manufacturer from " << path;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800267 return -errno;
268 }
269 uint64_t manfid = strtoll(tmp.c_str(), nullptr, 16);
270 // Our goal here is to give the user a meaningful label, ideally
271 // matching whatever is silk-screened on the card. To reduce
272 // user confusion, this list doesn't contain white-label manfid.
273 switch (manfid) {
274 case 0x000003: mLabel = "SanDisk"; break;
275 case 0x00001b: mLabel = "Samsung"; break;
276 case 0x000028: mLabel = "Lexar"; break;
277 case 0x000074: mLabel = "Transcend"; break;
278 }
279 break;
280 }
281 default: {
Yu Ning942d4e82016-01-08 17:36:47 +0800282 if (isVirtioBlkDevice(majorId)) {
283 LOG(DEBUG) << "Recognized experimental block major ID " << majorId
284 << " as virtio-blk (emulator's virtual SD card device)";
285 mLabel = "Virtual";
286 break;
287 }
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700288 if (isNvmeBlkDevice(majorId, mSysPath)) {
289 std::string path(mSysPath + "/device/model");
290 std::string tmp;
291 if (!ReadFileToString(path, &tmp)) {
292 PLOG(WARNING) << "Failed to read vendor from " << path;
293 return -errno;
294 }
295 mLabel = tmp;
296 break;
297 }
Yu Ning942d4e82016-01-08 17:36:47 +0800298 LOG(WARNING) << "Unsupported block major type " << majorId;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800299 return -ENOTSUP;
300 }
301 }
302
Jeff Sharkeyd087bbc2016-03-10 12:11:09 -0700303 notifyEvent(ResponseCode::DiskSizeChanged, StringPrintf("%" PRIu64, mSize));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700304 notifyEvent(ResponseCode::DiskLabelChanged, mLabel);
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700305 notifyEvent(ResponseCode::DiskSysPathChanged, mSysPath);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800306 return OK;
307}
308
309status_t Disk::readPartitions() {
310 int8_t maxMinors = getMaxMinors();
311 if (maxMinors < 0) {
312 return -ENOTSUP;
313 }
314
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700315 destroyAllVolumes();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800316
317 // Parse partition table
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700318
319 std::vector<std::string> cmd;
320 cmd.push_back(kSgdiskPath);
321 cmd.push_back("--android-dump");
322 cmd.push_back(mDevPath);
323
324 std::vector<std::string> output;
325 status_t res = ForkExecvp(cmd, output);
326 if (res != OK) {
327 LOG(WARNING) << "sgdisk failed to scan " << mDevPath;
Jeff Sharkeyba6747f2015-04-28 21:17:43 -0700328 notifyEvent(ResponseCode::DiskScanned);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700329 mJustPartitioned = false;
330 return res;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800331 }
332
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800333 Table table = Table::kUnknown;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700334 bool foundParts = false;
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700335 for (const auto& line : output) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700336 char* cline = (char*) line.c_str();
337 char* token = strtok(cline, kSgdiskToken);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700338 if (token == nullptr) continue;
339
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800340 if (!strcmp(token, "DISK")) {
341 const char* type = strtok(nullptr, kSgdiskToken);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800342 if (!strcmp(type, "mbr")) {
343 table = Table::kMbr;
344 } else if (!strcmp(type, "gpt")) {
345 table = Table::kGpt;
346 }
347 } else if (!strcmp(token, "PART")) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700348 foundParts = true;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800349 int i = strtol(strtok(nullptr, kSgdiskToken), nullptr, 10);
350 if (i <= 0 || i > maxMinors) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700351 LOG(WARNING) << mId << " is ignoring partition " << i
352 << " beyond max supported devices";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800353 continue;
354 }
355 dev_t partDevice = makedev(major(mDevice), minor(mDevice) + i);
356
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800357 if (table == Table::kMbr) {
358 const char* type = strtok(nullptr, kSgdiskToken);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800359
360 switch (strtol(type, nullptr, 16)) {
361 case 0x06: // FAT16
362 case 0x0b: // W95 FAT32 (LBA)
363 case 0x0c: // W95 FAT32 (LBA)
364 case 0x0e: // W95 FAT16 (LBA)
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700365 createPublicVolume(partDevice);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800366 break;
367 }
368 } else if (table == Table::kGpt) {
369 const char* typeGuid = strtok(nullptr, kSgdiskToken);
370 const char* partGuid = strtok(nullptr, kSgdiskToken);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800371
372 if (!strcasecmp(typeGuid, kGptBasicData)) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700373 createPublicVolume(partDevice);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700374 } else if (!strcasecmp(typeGuid, kGptAndroidExpand)) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700375 createPrivateVolume(partDevice, partGuid);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800376 }
377 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800378 }
379 }
380
381 // Ugly last ditch effort, treat entire disk as partition
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700382 if (table == Table::kUnknown || !foundParts) {
383 LOG(WARNING) << mId << " has unknown partition table; trying entire device";
Jeff Sharkey63123c02015-06-26 11:16:14 -0700384
385 std::string fsType;
386 std::string unused;
387 if (ReadMetadataUntrusted(mDevPath, fsType, unused, unused) == OK) {
388 createPublicVolume(mDevice);
389 } else {
390 LOG(WARNING) << mId << " failed to identify, giving up";
391 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800392 }
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700393
Jeff Sharkey613b26f2015-04-19 14:57:55 -0700394 notifyEvent(ResponseCode::DiskScanned);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700395 mJustPartitioned = false;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800396 return OK;
397}
398
Jeff Sharkey9c484982015-03-31 10:35:33 -0700399status_t Disk::unmountAll() {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700400 for (const auto& vol : mVolumes) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700401 vol->unmount();
402 }
403 return OK;
404}
405
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800406status_t Disk::partitionPublic() {
Jeff Sharkeydadccee2015-09-23 14:13:45 -0700407 int res;
408
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800409 // TODO: improve this code
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700410 destroyAllVolumes();
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700411 mJustPartitioned = true;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800412
Jeff Sharkeydadccee2015-09-23 14:13:45 -0700413 // First nuke any existing partition table
414 std::vector<std::string> cmd;
415 cmd.push_back(kSgdiskPath);
416 cmd.push_back("--zap-all");
417 cmd.push_back(mDevPath);
418
419 // Zap sometimes returns an error when it actually succeeded, so
420 // just log as warning and keep rolling forward.
421 if ((res = ForkExecvp(cmd)) != 0) {
422 LOG(WARNING) << "Failed to zap; status " << res;
423 }
424
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800425 struct disk_info dinfo;
426 memset(&dinfo, 0, sizeof(dinfo));
427
428 if (!(dinfo.part_lst = (struct part_info *) malloc(
429 MAX_NUM_PARTS * sizeof(struct part_info)))) {
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800430 return -1;
431 }
432
433 memset(dinfo.part_lst, 0, MAX_NUM_PARTS * sizeof(struct part_info));
434 dinfo.device = strdup(mDevPath.c_str());
435 dinfo.scheme = PART_SCHEME_MBR;
436 dinfo.sect_size = 512;
437 dinfo.skip_lba = 2048;
438 dinfo.num_lba = 0;
439 dinfo.num_parts = 1;
440
441 struct part_info *pinfo = &dinfo.part_lst[0];
442
443 pinfo->name = strdup("android_sdcard");
444 pinfo->flags |= PART_ACTIVE_FLAG;
445 pinfo->type = PC_PART_TYPE_FAT32;
446 pinfo->len_kb = -1;
447
448 int rc = apply_disk_config(&dinfo, 0);
449 if (rc) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700450 LOG(ERROR) << "Failed to apply disk configuration: " << rc;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800451 goto out;
452 }
453
454out:
455 free(pinfo->name);
456 free(dinfo.device);
457 free(dinfo.part_lst);
458
459 return rc;
460}
461
462status_t Disk::partitionPrivate() {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700463 return partitionMixed(0);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800464}
465
466status_t Disk::partitionMixed(int8_t ratio) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700467 int res;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700468
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600469 if (e4crypt_is_native()
470 && !android::base::GetBoolProperty("persist.sys.adoptable_fbe", false)) {
Jeff Sharkey15717512016-08-23 13:48:50 -0600471 LOG(ERROR) << "Private volumes not yet supported on FBE devices";
472 return -EINVAL;
473 }
474
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700475 destroyAllVolumes();
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700476 mJustPartitioned = true;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700477
478 // First nuke any existing partition table
479 std::vector<std::string> cmd;
480 cmd.push_back(kSgdiskPath);
481 cmd.push_back("--zap-all");
482 cmd.push_back(mDevPath);
483
Jeff Sharkeyffeb0072015-04-14 22:22:34 -0700484 // Zap sometimes returns an error when it actually succeeded, so
485 // just log as warning and keep rolling forward.
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700486 if ((res = ForkExecvp(cmd)) != 0) {
Jeff Sharkeyffeb0072015-04-14 22:22:34 -0700487 LOG(WARNING) << "Failed to zap; status " << res;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700488 }
489
490 // We've had some success above, so generate both the private partition
491 // GUID and encryption key and persist them.
492 std::string partGuidRaw;
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600493 if (GenerateRandomUuid(partGuidRaw) != OK) {
494 LOG(ERROR) << "Failed to generate GUID";
495 return -EIO;
496 }
497
Jeff Sharkey9c484982015-03-31 10:35:33 -0700498 std::string keyRaw;
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600499 if (ReadRandomBytes(16, keyRaw) != OK) {
500 LOG(ERROR) << "Failed to generate key";
Jeff Sharkey9c484982015-03-31 10:35:33 -0700501 return -EIO;
502 }
503
504 std::string partGuid;
505 StrToHex(partGuidRaw, partGuid);
506
507 if (!WriteStringToFile(keyRaw, BuildKeyPath(partGuid))) {
508 LOG(ERROR) << "Failed to persist key";
509 return -EIO;
510 } else {
511 LOG(DEBUG) << "Persisted key for GUID " << partGuid;
512 }
513
514 // Now let's build the new GPT table. We heavily rely on sgdisk to
515 // force optimal alignment on the created partitions.
516 cmd.clear();
517 cmd.push_back(kSgdiskPath);
518
519 // If requested, create a public partition first. Mixed-mode partitioning
520 // like this is an experimental feature.
521 if (ratio > 0) {
522 if (ratio < 10 || ratio > 90) {
523 LOG(ERROR) << "Mixed partition ratio must be between 10-90%";
524 return -EINVAL;
525 }
526
527 uint64_t splitMb = ((mSize / 100) * ratio) / 1024 / 1024;
528 cmd.push_back(StringPrintf("--new=0:0:+%" PRId64 "M", splitMb));
529 cmd.push_back(StringPrintf("--typecode=0:%s", kGptBasicData));
530 cmd.push_back("--change-name=0:shared");
531 }
532
533 // Define a metadata partition which is designed for future use; there
534 // should only be one of these per physical device, even if there are
535 // multiple private volumes.
536 cmd.push_back("--new=0:0:+16M");
537 cmd.push_back(StringPrintf("--typecode=0:%s", kGptAndroidMeta));
538 cmd.push_back("--change-name=0:android_meta");
539
540 // Define a single private partition filling the rest of disk.
541 cmd.push_back("--new=0:0:-0");
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700542 cmd.push_back(StringPrintf("--typecode=0:%s", kGptAndroidExpand));
Jeff Sharkey9c484982015-03-31 10:35:33 -0700543 cmd.push_back(StringPrintf("--partition-guid=0:%s", partGuid.c_str()));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700544 cmd.push_back("--change-name=0:android_expand");
Jeff Sharkey9c484982015-03-31 10:35:33 -0700545
546 cmd.push_back(mDevPath);
547
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700548 if ((res = ForkExecvp(cmd)) != 0) {
549 LOG(ERROR) << "Failed to partition; status " << res;
550 return res;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700551 }
552
553 return OK;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800554}
555
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700556void Disk::notifyEvent(int event) {
557 VolumeManager::Instance()->getBroadcaster()->sendBroadcast(event,
558 getId().c_str(), false);
559}
560
561void Disk::notifyEvent(int event, const std::string& value) {
562 VolumeManager::Instance()->getBroadcaster()->sendBroadcast(event,
563 StringPrintf("%s %s", getId().c_str(), value.c_str()).c_str(), false);
564}
565
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800566int Disk::getMaxMinors() {
567 // Figure out maximum partition devices supported
Yu Ning942d4e82016-01-08 17:36:47 +0800568 unsigned int majorId = major(mDevice);
569 switch (majorId) {
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600570 case kMajorBlockLoop: {
571 std::string tmp;
572 if (!ReadFileToString(kSysfsLoopMaxMinors, &tmp)) {
573 LOG(ERROR) << "Failed to read max minors";
574 return -errno;
575 }
576 return atoi(tmp.c_str());
577 }
Jeff Sharkeyf3ee2002015-04-19 15:55:42 -0700578 case kMajorBlockScsiA: case kMajorBlockScsiB: case kMajorBlockScsiC: case kMajorBlockScsiD:
579 case kMajorBlockScsiE: case kMajorBlockScsiF: case kMajorBlockScsiG: case kMajorBlockScsiH:
580 case kMajorBlockScsiI: case kMajorBlockScsiJ: case kMajorBlockScsiK: case kMajorBlockScsiL:
581 case kMajorBlockScsiM: case kMajorBlockScsiN: case kMajorBlockScsiO: case kMajorBlockScsiP: {
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800582 // Per Documentation/devices.txt this is static
583 return 15;
584 }
585 case kMajorBlockMmc: {
586 // Per Documentation/devices.txt this is dynamic
587 std::string tmp;
Pierre-Hugues Hussonf347cd02017-11-28 15:42:56 +0100588 if (!ReadFileToString(kSysfsMmcMaxMinors, &tmp) &&
589 !ReadFileToString(kSysfsMmcMaxMinorsDeprecated, &tmp)) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700590 LOG(ERROR) << "Failed to read max minors";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800591 return -errno;
592 }
593 return atoi(tmp.c_str());
594 }
Yu Ning942d4e82016-01-08 17:36:47 +0800595 default: {
596 if (isVirtioBlkDevice(majorId)) {
597 // drivers/block/virtio_blk.c has "#define PART_BITS 4", so max is
598 // 2^4 - 1 = 15
599 return 15;
600 }
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700601 if (isNvmeBlkDevice(majorId, mSysPath)) {
602 // despite kernel nvme driver supports up to 1M minors,
603 // #define NVME_MINORS (1U << MINORBITS)
604 // sgdisk can not support more than 127 partitions, due to
605 // #define MAX_MBR_PARTS 128
606 return 127;
607 }
Yu Ning942d4e82016-01-08 17:36:47 +0800608 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800609 }
610
Yu Ning942d4e82016-01-08 17:36:47 +0800611 LOG(ERROR) << "Unsupported block major type " << majorId;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800612 return -ENOTSUP;
613}
614
615} // namespace vold
616} // namespace android