blob: f92435d17e4c2106ad9560d5e5507de690f6b8aa [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"
Eric Biggersa701c452018-10-23 13:06:55 -070018#include "FsCrypt.h"
Paul Crowley4eac2642020-02-12 11:04:05 -080019#include "KeyUtil.h"
Jeff Sharkey9c484982015-03-31 10:35:33 -070020#include "PrivateVolume.h"
Paul Crowley14c8c072018-09-18 13:30:21 -070021#include "PublicVolume.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080022#include "Utils.h"
23#include "VolumeBase.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070024#include "VolumeManager.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080025
Elliott Hughes7e128fb2015-12-04 15:50:53 -080026#include <android-base/file.h>
Paul Crowley3b71fc52017-10-09 10:55:21 -070027#include <android-base/logging.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070028#include <android-base/parseint.h>
Jeff Sharkey46bb69f2017-06-21 13:52:23 -060029#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080030#include <android-base/stringprintf.h>
Jeff Sharkey3472e522017-10-06 18:02:53 -060031#include <android-base/strings.h>
Eric Biggersa701c452018-10-23 13:06:55 -070032#include <fscrypt/fscrypt.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080033
Greg Kaiser57f9af62018-02-16 13:13:58 -080034#include "cryptfs.h"
35
Jeff Sharkeydeb24052015-03-02 21:01:40 -080036#include <fcntl.h>
Jeff Sharkey38cfc022015-03-30 21:22:07 -070037#include <inttypes.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080038#include <stdio.h>
39#include <stdlib.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070040#include <sys/mount.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080041#include <sys/stat.h>
Elliott Hughes0e08e842017-05-18 09:08:24 -070042#include <sys/sysmacros.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070043#include <sys/types.h>
44#include <vector>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080045
Dan Albertae9e8902015-03-16 10:35:17 -070046using android::base::ReadFileToString;
47using android::base::StringPrintf;
Paul Crowley14c8c072018-09-18 13:30:21 -070048using android::base::WriteStringToFile;
Dan Albertae9e8902015-03-16 10:35:17 -070049
Jeff Sharkeydeb24052015-03-02 21:01:40 -080050namespace android {
51namespace vold {
52
53static const char* kSgdiskPath = "/system/bin/sgdisk";
54static const char* kSgdiskToken = " \t\n";
55
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060056static const char* kSysfsLoopMaxMinors = "/sys/module/loop/parameters/max_part";
Pierre-Hugues Hussonf347cd02017-11-28 15:42:56 +010057static const char* kSysfsMmcMaxMinorsDeprecated = "/sys/module/mmcblk/parameters/perdev_minors";
58static const char* kSysfsMmcMaxMinors = "/sys/module/mmc_block/parameters/perdev_minors";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080059
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060060static const unsigned int kMajorBlockLoop = 7;
Jeff Sharkeyf3ee2002015-04-19 15:55:42 -070061static const unsigned int kMajorBlockScsiA = 8;
62static const unsigned int kMajorBlockScsiB = 65;
63static const unsigned int kMajorBlockScsiC = 66;
64static const unsigned int kMajorBlockScsiD = 67;
65static const unsigned int kMajorBlockScsiE = 68;
66static const unsigned int kMajorBlockScsiF = 69;
67static const unsigned int kMajorBlockScsiG = 70;
68static const unsigned int kMajorBlockScsiH = 71;
69static const unsigned int kMajorBlockScsiI = 128;
70static const unsigned int kMajorBlockScsiJ = 129;
71static const unsigned int kMajorBlockScsiK = 130;
72static const unsigned int kMajorBlockScsiL = 131;
73static const unsigned int kMajorBlockScsiM = 132;
74static const unsigned int kMajorBlockScsiN = 133;
75static const unsigned int kMajorBlockScsiO = 134;
76static const unsigned int kMajorBlockScsiP = 135;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080077static const unsigned int kMajorBlockMmc = 179;
Yu Ning942d4e82016-01-08 17:36:47 +080078static const unsigned int kMajorBlockExperimentalMin = 240;
79static const unsigned int kMajorBlockExperimentalMax = 254;
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -070080static const unsigned int kMajorBlockDynamicMin = 234;
81static const unsigned int kMajorBlockDynamicMax = 512;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080082
83static const char* kGptBasicData = "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7";
84static const char* kGptAndroidMeta = "19A710A2-B3CA-11E4-B026-10604B889DCF";
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070085static const char* kGptAndroidExpand = "193D1EA4-B3CA-11E4-B075-10604B889DCF";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080086
87enum class Table {
88 kUnknown,
89 kMbr,
90 kGpt,
91};
92
Yu Ning942d4e82016-01-08 17:36:47 +080093static bool isVirtioBlkDevice(unsigned int major) {
94 /*
95 * The new emulator's "ranchu" virtual board no longer includes a goldfish
96 * MMC-based SD card device; instead, it emulates SD cards with virtio-blk,
97 * which has been supported by upstream kernel and QEMU for quite a while.
98 * Unfortunately, the virtio-blk block device driver does not use a fixed
99 * major number, but relies on the kernel to assign one from a specific
100 * range of block majors, which are allocated for "LOCAL/EXPERIMENAL USE"
101 * per Documentation/devices.txt. This is true even for the latest Linux
102 * kernel (4.4; see init() in drivers/block/virtio_blk.c).
103 *
104 * This makes it difficult for vold to detect a virtio-blk based SD card.
105 * The current solution checks two conditions (both must be met):
106 *
107 * a) If the running environment is the emulator;
108 * b) If the major number is an experimental block device major number (for
109 * x86/x86_64 3.10 ranchu kernels, virtio-blk always gets major number
110 * 253, but it is safer to match the range than just one value).
111 *
112 * Other conditions could be used, too, e.g. the hardware name should be
113 * "ranchu", the device's sysfs path should end with "/block/vd[d-z]", etc.
114 * But just having a) and b) is enough for now.
115 */
Paul Crowley14c8c072018-09-18 13:30:21 -0700116 return IsRunningInEmulator() && major >= kMajorBlockExperimentalMin &&
117 major <= kMajorBlockExperimentalMax;
Yu Ning942d4e82016-01-08 17:36:47 +0800118}
119
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700120static bool isNvmeBlkDevice(unsigned int major, const std::string& sysPath) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700121 return sysPath.find("nvme") != std::string::npos && major >= kMajorBlockDynamicMin &&
122 major <= kMajorBlockDynamicMax;
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700123}
124
Paul Crowley14c8c072018-09-18 13:30:21 -0700125Disk::Disk(const std::string& eventPath, dev_t device, const std::string& nickname, int flags)
126 : mDevice(device),
127 mSize(-1),
128 mNickname(nickname),
129 mFlags(flags),
130 mCreated(false),
131 mJustPartitioned(false) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700132 mId = StringPrintf("disk:%u,%u", major(device), minor(device));
133 mEventPath = eventPath;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800134 mSysPath = StringPrintf("/sys/%s", eventPath.c_str());
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700135 mDevPath = StringPrintf("/dev/block/vold/%s", mId.c_str());
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800136 CreateDeviceNode(mDevPath, mDevice);
137}
138
139Disk::~Disk() {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700140 CHECK(!mCreated);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800141 DestroyDeviceNode(mDevPath);
142}
143
144std::shared_ptr<VolumeBase> Disk::findVolume(const std::string& id) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700145 for (auto vol : mVolumes) {
146 if (vol->getId() == id) {
147 return vol;
148 }
149 auto stackedVol = vol->findVolume(id);
150 if (stackedVol != nullptr) {
151 return stackedVol;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800152 }
153 }
154 return nullptr;
155}
156
Greg Kaiseref9abab2018-12-18 08:42:08 -0800157void Disk::listVolumes(VolumeBase::Type type, std::list<std::string>& list) const {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700158 for (const auto& vol : mVolumes) {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700159 if (vol->getType() == type) {
160 list.push_back(vol->getId());
161 }
162 // TODO: consider looking at stacked volumes
163 }
164}
165
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700166status_t Disk::create() {
167 CHECK(!mCreated);
168 mCreated = true;
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600169
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600170 auto listener = VolumeManager::Instance()->getListener();
171 if (listener) listener->onDiskCreated(getId(), mFlags);
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600172
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700173 readMetadata();
174 readPartitions();
175 return OK;
176}
177
178status_t Disk::destroy() {
179 CHECK(mCreated);
180 destroyAllVolumes();
181 mCreated = false;
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600182
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600183 auto listener = VolumeManager::Instance()->getListener();
184 if (listener) listener->onDiskDestroyed(getId());
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600185
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700186 return OK;
187}
188
189void Disk::createPublicVolume(dev_t device) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700190 auto vol = std::shared_ptr<VolumeBase>(new PublicVolume(device));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700191 if (mJustPartitioned) {
192 LOG(DEBUG) << "Device just partitioned; silently formatting";
193 vol->setSilent(true);
194 vol->create();
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700195 vol->format("auto");
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700196 vol->destroy();
197 vol->setSilent(false);
198 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700199
Jeff Sharkey9c484982015-03-31 10:35:33 -0700200 mVolumes.push_back(vol);
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700201 vol->setDiskId(getId());
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700202 vol->create();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700203}
204
Jeff Sharkey9c484982015-03-31 10:35:33 -0700205void Disk::createPrivateVolume(dev_t device, const std::string& partGuid) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700206 std::string normalizedGuid;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700207 if (NormalizeHex(partGuid, normalizedGuid)) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700208 LOG(WARNING) << "Invalid GUID " << partGuid;
209 return;
210 }
Jeff Sharkey9c484982015-03-31 10:35:33 -0700211
212 std::string keyRaw;
213 if (!ReadFileToString(BuildKeyPath(normalizedGuid), &keyRaw)) {
214 PLOG(ERROR) << "Failed to load key for GUID " << normalizedGuid;
215 return;
216 }
217
218 LOG(DEBUG) << "Found key for GUID " << normalizedGuid;
219
Paul Crowley3d98f5d2020-02-07 11:49:09 -0800220 auto keyBuffer = KeyBuffer(keyRaw.begin(), keyRaw.end());
221 auto vol = std::shared_ptr<VolumeBase>(new PrivateVolume(device, keyBuffer));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700222 if (mJustPartitioned) {
223 LOG(DEBUG) << "Device just partitioned; silently formatting";
224 vol->setSilent(true);
225 vol->create();
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700226 vol->format("auto");
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700227 vol->destroy();
228 vol->setSilent(false);
229 }
Jeff Sharkey9c484982015-03-31 10:35:33 -0700230
231 mVolumes.push_back(vol);
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700232 vol->setDiskId(getId());
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700233 vol->setPartGuid(partGuid);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700234 vol->create();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700235}
236
237void Disk::destroyAllVolumes() {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700238 for (const auto& vol : mVolumes) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700239 vol->destroy();
240 }
241 mVolumes.clear();
242}
243
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800244status_t Disk::readMetadata() {
245 mSize = -1;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700246 mLabel.clear();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800247
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200248 if (GetBlockDevSize(mDevPath, &mSize) != OK) {
249 mSize = -1;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800250 }
251
Yu Ning942d4e82016-01-08 17:36:47 +0800252 unsigned int majorId = major(mDevice);
253 switch (majorId) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700254 case kMajorBlockLoop: {
Yu Ning942d4e82016-01-08 17:36:47 +0800255 mLabel = "Virtual";
256 break;
257 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700258 // clang-format off
259 case kMajorBlockScsiA: case kMajorBlockScsiB: case kMajorBlockScsiC:
260 case kMajorBlockScsiD: case kMajorBlockScsiE: case kMajorBlockScsiF:
261 case kMajorBlockScsiG: case kMajorBlockScsiH: case kMajorBlockScsiI:
262 case kMajorBlockScsiJ: case kMajorBlockScsiK: case kMajorBlockScsiL:
263 case kMajorBlockScsiM: case kMajorBlockScsiN: case kMajorBlockScsiO:
264 case kMajorBlockScsiP: {
265 // clang-format on
266 std::string path(mSysPath + "/device/vendor");
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700267 std::string tmp;
268 if (!ReadFileToString(path, &tmp)) {
269 PLOG(WARNING) << "Failed to read vendor from " << path;
270 return -errno;
271 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700272 tmp = android::base::Trim(tmp);
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700273 mLabel = tmp;
274 break;
275 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700276 case kMajorBlockMmc: {
277 std::string path(mSysPath + "/device/manfid");
278 std::string tmp;
279 if (!ReadFileToString(path, &tmp)) {
280 PLOG(WARNING) << "Failed to read manufacturer from " << path;
281 return -errno;
282 }
283 tmp = android::base::Trim(tmp);
284 int64_t manfid;
285 if (!android::base::ParseInt(tmp, &manfid)) {
286 PLOG(WARNING) << "Failed to parse manufacturer " << tmp;
287 return -EINVAL;
288 }
289 // Our goal here is to give the user a meaningful label, ideally
290 // matching whatever is silk-screened on the card. To reduce
291 // user confusion, this list doesn't contain white-label manfid.
292 switch (manfid) {
293 // clang-format off
294 case 0x000003: mLabel = "SanDisk"; break;
295 case 0x00001b: mLabel = "Samsung"; break;
296 case 0x000028: mLabel = "Lexar"; break;
297 case 0x000074: mLabel = "Transcend"; break;
298 // clang-format on
299 }
300 break;
301 }
302 default: {
303 if (isVirtioBlkDevice(majorId)) {
304 LOG(DEBUG) << "Recognized experimental block major ID " << majorId
305 << " as virtio-blk (emulator's virtual SD card device)";
306 mLabel = "Virtual";
307 break;
308 }
309 if (isNvmeBlkDevice(majorId, mSysPath)) {
310 std::string path(mSysPath + "/device/model");
311 std::string tmp;
312 if (!ReadFileToString(path, &tmp)) {
313 PLOG(WARNING) << "Failed to read vendor from " << path;
314 return -errno;
315 }
316 mLabel = tmp;
317 break;
318 }
319 LOG(WARNING) << "Unsupported block major type " << majorId;
320 return -ENOTSUP;
321 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800322 }
323
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600324 auto listener = VolumeManager::Instance()->getListener();
Paul Crowley14c8c072018-09-18 13:30:21 -0700325 if (listener) listener->onDiskMetadataChanged(getId(), mSize, mLabel, mSysPath);
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600326
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800327 return OK;
328}
329
330status_t Disk::readPartitions() {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600331 int maxMinors = getMaxMinors();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800332 if (maxMinors < 0) {
333 return -ENOTSUP;
334 }
335
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700336 destroyAllVolumes();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800337
338 // Parse partition table
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700339
340 std::vector<std::string> cmd;
341 cmd.push_back(kSgdiskPath);
342 cmd.push_back("--android-dump");
343 cmd.push_back(mDevPath);
344
345 std::vector<std::string> output;
Paul Crowleyde2d6202018-11-30 11:43:47 -0800346 status_t res = ForkExecvp(cmd, &output);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700347 if (res != OK) {
348 LOG(WARNING) << "sgdisk failed to scan " << mDevPath;
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600349
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600350 auto listener = VolumeManager::Instance()->getListener();
351 if (listener) listener->onDiskScanned(getId());
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600352
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700353 mJustPartitioned = false;
354 return res;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800355 }
356
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800357 Table table = Table::kUnknown;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700358 bool foundParts = false;
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700359 for (const auto& line : output) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600360 auto split = android::base::Split(line, kSgdiskToken);
361 auto it = split.begin();
362 if (it == split.end()) continue;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700363
Jeff Sharkey3472e522017-10-06 18:02:53 -0600364 if (*it == "DISK") {
365 if (++it == split.end()) continue;
366 if (*it == "mbr") {
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800367 table = Table::kMbr;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600368 } else if (*it == "gpt") {
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800369 table = Table::kGpt;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600370 } else {
371 LOG(WARNING) << "Invalid partition table " << *it;
372 continue;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800373 }
Jeff Sharkey3472e522017-10-06 18:02:53 -0600374 } else if (*it == "PART") {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700375 foundParts = true;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600376
377 if (++it == split.end()) continue;
378 int i = 0;
379 if (!android::base::ParseInt(*it, &i, 1, maxMinors)) {
380 LOG(WARNING) << "Invalid partition number " << *it;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800381 continue;
382 }
383 dev_t partDevice = makedev(major(mDevice), minor(mDevice) + i);
384
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800385 if (table == Table::kMbr) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600386 if (++it == split.end()) continue;
387 int type = 0;
388 if (!android::base::ParseInt("0x" + *it, &type)) {
389 LOG(WARNING) << "Invalid partition type " << *it;
390 continue;
391 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800392
Jeff Sharkey3472e522017-10-06 18:02:53 -0600393 switch (type) {
Jeff Sharkey37ba1252018-01-19 10:55:18 +0900394 case 0x06: // FAT16
395 case 0x07: // HPFS/NTFS/exFAT
396 case 0x0b: // W95 FAT32 (LBA)
397 case 0x0c: // W95 FAT32 (LBA)
398 case 0x0e: // W95 FAT16 (LBA)
399 createPublicVolume(partDevice);
400 break;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800401 }
402 } else if (table == Table::kGpt) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600403 if (++it == split.end()) continue;
404 auto typeGuid = *it;
405 if (++it == split.end()) continue;
406 auto partGuid = *it;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800407
Jeff Sharkey3472e522017-10-06 18:02:53 -0600408 if (android::base::EqualsIgnoreCase(typeGuid, kGptBasicData)) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700409 createPublicVolume(partDevice);
Jeff Sharkey3472e522017-10-06 18:02:53 -0600410 } else if (android::base::EqualsIgnoreCase(typeGuid, kGptAndroidExpand)) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700411 createPrivateVolume(partDevice, partGuid);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800412 }
413 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800414 }
415 }
416
417 // Ugly last ditch effort, treat entire disk as partition
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700418 if (table == Table::kUnknown || !foundParts) {
419 LOG(WARNING) << mId << " has unknown partition table; trying entire device";
Jeff Sharkey63123c02015-06-26 11:16:14 -0700420
421 std::string fsType;
422 std::string unused;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600423 if (ReadMetadataUntrusted(mDevPath, &fsType, &unused, &unused) == OK) {
Jeff Sharkey63123c02015-06-26 11:16:14 -0700424 createPublicVolume(mDevice);
425 } else {
426 LOG(WARNING) << mId << " failed to identify, giving up";
427 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800428 }
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700429
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600430 auto listener = VolumeManager::Instance()->getListener();
431 if (listener) listener->onDiskScanned(getId());
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -0600432
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700433 mJustPartitioned = false;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800434 return OK;
435}
436
Jeff Sharkey9c484982015-03-31 10:35:33 -0700437status_t Disk::unmountAll() {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700438 for (const auto& vol : mVolumes) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700439 vol->unmount();
440 }
441 return OK;
442}
443
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800444status_t Disk::partitionPublic() {
Jeff Sharkeydadccee2015-09-23 14:13:45 -0700445 int res;
446
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700447 destroyAllVolumes();
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700448 mJustPartitioned = true;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800449
Jeff Sharkeydadccee2015-09-23 14:13:45 -0700450 // First nuke any existing partition table
451 std::vector<std::string> cmd;
452 cmd.push_back(kSgdiskPath);
453 cmd.push_back("--zap-all");
454 cmd.push_back(mDevPath);
455
456 // Zap sometimes returns an error when it actually succeeded, so
457 // just log as warning and keep rolling forward.
458 if ((res = ForkExecvp(cmd)) != 0) {
459 LOG(WARNING) << "Failed to zap; status " << res;
460 }
461
Jeff Sharkey68f1b8b2017-10-18 14:09:52 -0600462 // Now let's build the new MBR table. We heavily rely on sgdisk to
463 // force optimal alignment on the created partitions.
464 cmd.clear();
465 cmd.push_back(kSgdiskPath);
466 cmd.push_back("--new=0:0:-0");
467 cmd.push_back("--typecode=0:0c00");
468 cmd.push_back("--gpttombr=1");
469 cmd.push_back(mDevPath);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800470
Jeff Sharkey68f1b8b2017-10-18 14:09:52 -0600471 if ((res = ForkExecvp(cmd)) != 0) {
472 LOG(ERROR) << "Failed to partition; status " << res;
473 return res;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800474 }
475
Jeff Sharkey68f1b8b2017-10-18 14:09:52 -0600476 return OK;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800477}
478
479status_t Disk::partitionPrivate() {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700480 return partitionMixed(0);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800481}
482
483status_t Disk::partitionMixed(int8_t ratio) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700484 int res;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700485
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700486 destroyAllVolumes();
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700487 mJustPartitioned = true;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700488
489 // First nuke any existing partition table
490 std::vector<std::string> cmd;
491 cmd.push_back(kSgdiskPath);
492 cmd.push_back("--zap-all");
493 cmd.push_back(mDevPath);
494
Jeff Sharkeyffeb0072015-04-14 22:22:34 -0700495 // Zap sometimes returns an error when it actually succeeded, so
496 // just log as warning and keep rolling forward.
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700497 if ((res = ForkExecvp(cmd)) != 0) {
Jeff Sharkeyffeb0072015-04-14 22:22:34 -0700498 LOG(WARNING) << "Failed to zap; status " << res;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700499 }
500
501 // We've had some success above, so generate both the private partition
502 // GUID and encryption key and persist them.
503 std::string partGuidRaw;
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600504 if (GenerateRandomUuid(partGuidRaw) != OK) {
505 LOG(ERROR) << "Failed to generate GUID";
506 return -EIO;
507 }
508
Paul Crowley4eac2642020-02-12 11:04:05 -0800509 KeyBuffer key;
510 if (!generateStorageKey(cryptfs_get_keygen(), &key)) {
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600511 LOG(ERROR) << "Failed to generate key";
Jeff Sharkey9c484982015-03-31 10:35:33 -0700512 return -EIO;
513 }
Paul Crowley4eac2642020-02-12 11:04:05 -0800514 std::string keyRaw(key.begin(), key.end());
Jeff Sharkey9c484982015-03-31 10:35:33 -0700515
516 std::string partGuid;
517 StrToHex(partGuidRaw, partGuid);
518
519 if (!WriteStringToFile(keyRaw, BuildKeyPath(partGuid))) {
520 LOG(ERROR) << "Failed to persist key";
521 return -EIO;
522 } else {
523 LOG(DEBUG) << "Persisted key for GUID " << partGuid;
524 }
525
526 // Now let's build the new GPT table. We heavily rely on sgdisk to
527 // force optimal alignment on the created partitions.
528 cmd.clear();
529 cmd.push_back(kSgdiskPath);
530
531 // If requested, create a public partition first. Mixed-mode partitioning
532 // like this is an experimental feature.
533 if (ratio > 0) {
534 if (ratio < 10 || ratio > 90) {
535 LOG(ERROR) << "Mixed partition ratio must be between 10-90%";
536 return -EINVAL;
537 }
538
539 uint64_t splitMb = ((mSize / 100) * ratio) / 1024 / 1024;
540 cmd.push_back(StringPrintf("--new=0:0:+%" PRId64 "M", splitMb));
541 cmd.push_back(StringPrintf("--typecode=0:%s", kGptBasicData));
542 cmd.push_back("--change-name=0:shared");
543 }
544
545 // Define a metadata partition which is designed for future use; there
546 // should only be one of these per physical device, even if there are
547 // multiple private volumes.
548 cmd.push_back("--new=0:0:+16M");
549 cmd.push_back(StringPrintf("--typecode=0:%s", kGptAndroidMeta));
550 cmd.push_back("--change-name=0:android_meta");
551
552 // Define a single private partition filling the rest of disk.
553 cmd.push_back("--new=0:0:-0");
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700554 cmd.push_back(StringPrintf("--typecode=0:%s", kGptAndroidExpand));
Jeff Sharkey9c484982015-03-31 10:35:33 -0700555 cmd.push_back(StringPrintf("--partition-guid=0:%s", partGuid.c_str()));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700556 cmd.push_back("--change-name=0:android_expand");
Jeff Sharkey9c484982015-03-31 10:35:33 -0700557
558 cmd.push_back(mDevPath);
559
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700560 if ((res = ForkExecvp(cmd)) != 0) {
561 LOG(ERROR) << "Failed to partition; status " << res;
562 return res;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700563 }
564
565 return OK;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800566}
567
568int Disk::getMaxMinors() {
569 // Figure out maximum partition devices supported
Yu Ning942d4e82016-01-08 17:36:47 +0800570 unsigned int majorId = major(mDevice);
571 switch (majorId) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700572 case kMajorBlockLoop: {
573 std::string tmp;
574 if (!ReadFileToString(kSysfsLoopMaxMinors, &tmp)) {
575 LOG(ERROR) << "Failed to read max minors";
576 return -errno;
577 }
578 return std::stoi(tmp);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600579 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700580 // clang-format off
581 case kMajorBlockScsiA: case kMajorBlockScsiB: case kMajorBlockScsiC:
582 case kMajorBlockScsiD: case kMajorBlockScsiE: case kMajorBlockScsiF:
583 case kMajorBlockScsiG: case kMajorBlockScsiH: case kMajorBlockScsiI:
584 case kMajorBlockScsiJ: case kMajorBlockScsiK: case kMajorBlockScsiL:
585 case kMajorBlockScsiM: case kMajorBlockScsiN: case kMajorBlockScsiO:
586 case kMajorBlockScsiP: {
587 // clang-format on
588 // Per Documentation/devices.txt this is static
Yu Ning942d4e82016-01-08 17:36:47 +0800589 return 15;
590 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700591 case kMajorBlockMmc: {
592 // Per Documentation/devices.txt this is dynamic
593 std::string tmp;
594 if (!ReadFileToString(kSysfsMmcMaxMinors, &tmp) &&
595 !ReadFileToString(kSysfsMmcMaxMinorsDeprecated, &tmp)) {
596 LOG(ERROR) << "Failed to read max minors";
597 return -errno;
598 }
599 return std::stoi(tmp);
Dmitry Shmidt06dc6e52018-05-11 17:22:42 -0700600 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700601 default: {
602 if (isVirtioBlkDevice(majorId)) {
603 // drivers/block/virtio_blk.c has "#define PART_BITS 4", so max is
604 // 2^4 - 1 = 15
605 return 15;
606 }
607 if (isNvmeBlkDevice(majorId, mSysPath)) {
608 // despite kernel nvme driver supports up to 1M minors,
609 // #define NVME_MINORS (1U << MINORBITS)
610 // sgdisk can not support more than 127 partitions, due to
611 // #define MAX_MBR_PARTS 128
612 return 127;
613 }
614 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800615 }
616
Yu Ning942d4e82016-01-08 17:36:47 +0800617 LOG(ERROR) << "Unsupported block major type " << majorId;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800618 return -ENOTSUP;
619}
620
621} // namespace vold
622} // namespace android