blob: 4a0b25010b9f4c4dc019098340d4175fa3061da8 [file] [log] [blame]
Jeff Sharkey9c484982015-03-31 10:35:33 -07001/*
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 Sharkey9c484982015-03-31 10:35:33 -070017#include "PrivateVolume.h"
Jeff Sharkey3161fb32015-04-12 16:03:33 -070018#include "EmulatedVolume.h"
Jeff Sharkey9c484982015-03-31 10:35:33 -070019#include "Utils.h"
20#include "VolumeManager.h"
Jeff Sharkey9c484982015-03-31 10:35:33 -070021#include "cryptfs.h"
Paul Crowley14c8c072018-09-18 13:30:21 -070022#include "fs/Ext4.h"
23#include "fs/F2fs.h"
Jeff Sharkey9c484982015-03-31 10:35:33 -070024
Elliott Hughes7e128fb2015-12-04 15:50:53 -080025#include <android-base/logging.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070026#include <android-base/stringprintf.h>
Jeff Sharkey9c484982015-03-31 10:35:33 -070027#include <cutils/fs.h>
Paul Crowley659b63f2020-02-07 12:15:56 -080028#include <libdm/dm.h>
Jeff Sharkey9c484982015-03-31 10:35:33 -070029#include <private/android_filesystem_config.h>
30
31#include <fcntl.h>
32#include <stdlib.h>
33#include <sys/mount.h>
Jeff Sharkey9c484982015-03-31 10:35:33 -070034#include <sys/param.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070035#include <sys/stat.h>
36#include <sys/sysmacros.h>
37#include <sys/types.h>
38#include <sys/wait.h>
Jeff Sharkey9c484982015-03-31 10:35:33 -070039
40using android::base::StringPrintf;
41
42namespace android {
43namespace vold {
44
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070045static const unsigned int kMajorBlockMmc = 179;
46
Paul Crowley3d98f5d2020-02-07 11:49:09 -080047PrivateVolume::PrivateVolume(dev_t device, const KeyBuffer& keyRaw)
Paul Crowley14c8c072018-09-18 13:30:21 -070048 : VolumeBase(Type::kPrivate), mRawDevice(device), mKeyRaw(keyRaw) {
Jeff Sharkey9c484982015-03-31 10:35:33 -070049 setId(StringPrintf("private:%u,%u", major(device), minor(device)));
50 mRawDevPath = StringPrintf("/dev/block/vold/%s", getId().c_str());
Jeff Sharkey9c484982015-03-31 10:35:33 -070051}
52
Paul Crowley14c8c072018-09-18 13:30:21 -070053PrivateVolume::~PrivateVolume() {}
Jeff Sharkey9c484982015-03-31 10:35:33 -070054
55status_t PrivateVolume::readMetadata() {
Jeff Sharkey3472e522017-10-06 18:02:53 -060056 status_t res = ReadMetadata(mDmDevPath, &mFsType, &mFsUuid, &mFsLabel);
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -060057
Jeff Sharkey814e9d32017-09-13 11:49:44 -060058 auto listener = getListener();
59 if (listener) listener->onVolumeMetadataChanged(getId(), mFsType, mFsUuid, mFsLabel);
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -060060
Jeff Sharkey9c484982015-03-31 10:35:33 -070061 return res;
62}
63
64status_t PrivateVolume::doCreate() {
65 if (CreateDeviceNode(mRawDevPath, mRawDevice)) {
66 return -EIO;
67 }
68
69 // Recover from stale vold by tearing down any old mappings
Paul Crowley659b63f2020-02-07 12:15:56 -080070 auto& dm = dm::DeviceMapper::Instance();
71 if (!dm.DeleteDeviceIfExists(getId())) {
72 PLOG(ERROR) << "Cannot remove dm device " << getId();
73 return -EIO;
74 }
Jeff Sharkey9c484982015-03-31 10:35:33 -070075
76 // TODO: figure out better SELinux labels for private volumes
77
Paul Crowley3d98f5d2020-02-07 11:49:09 -080078 int res = cryptfs_setup_ext_volume(getId().c_str(), mRawDevPath.c_str(), mKeyRaw, &mDmDevPath);
Jeff Sharkey9c484982015-03-31 10:35:33 -070079 if (res != 0) {
80 PLOG(ERROR) << getId() << " failed to setup cryptfs";
81 return -EIO;
82 }
83
84 return OK;
85}
86
87status_t PrivateVolume::doDestroy() {
Paul Crowley659b63f2020-02-07 12:15:56 -080088 auto& dm = dm::DeviceMapper::Instance();
89 if (!dm.DeleteDevice(getId())) {
90 PLOG(ERROR) << "Cannot remove dm device " << getId();
91 return -EIO;
Jeff Sharkey9c484982015-03-31 10:35:33 -070092 }
93 return DestroyDeviceNode(mRawDevPath);
94}
95
96status_t PrivateVolume::doMount() {
97 if (readMetadata()) {
98 LOG(ERROR) << getId() << " failed to read metadata";
99 return -EIO;
100 }
101
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700102 mPath = StringPrintf("/mnt/expand/%s", mFsUuid.c_str());
103 setPath(mPath);
104
105 if (PrepareDir(mPath, 0700, AID_ROOT, AID_ROOT)) {
106 PLOG(ERROR) << getId() << " failed to create mount point " << mPath;
107 return -EIO;
108 }
109
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700110 if (mFsType == "ext4") {
111 int res = ext4::Check(mDmDevPath, mPath);
112 if (res == 0 || res == 1) {
113 LOG(DEBUG) << getId() << " passed filesystem check";
114 } else {
115 PLOG(ERROR) << getId() << " failed filesystem check";
116 return -EIO;
117 }
Jeff Sharkey9c484982015-03-31 10:35:33 -0700118
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700119 if (ext4::Mount(mDmDevPath, mPath, false, false, true)) {
120 PLOG(ERROR) << getId() << " failed to mount";
121 return -EIO;
122 }
123
124 } else if (mFsType == "f2fs") {
125 int res = f2fs::Check(mDmDevPath);
126 if (res == 0) {
127 LOG(DEBUG) << getId() << " passed filesystem check";
128 } else {
129 PLOG(ERROR) << getId() << " failed filesystem check";
130 return -EIO;
131 }
132
133 if (f2fs::Mount(mDmDevPath, mPath)) {
134 PLOG(ERROR) << getId() << " failed to mount";
135 return -EIO;
136 }
137
138 } else {
139 LOG(ERROR) << getId() << " unsupported filesystem " << mFsType;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700140 return -EIO;
141 }
142
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600143 RestoreconRecursive(mPath);
Jeff Sharkey34824122015-06-09 10:59:17 -0700144
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700145 // Verify that common directories are ready to roll
146 if (PrepareDir(mPath + "/app", 0771, AID_SYSTEM, AID_SYSTEM) ||
Paul Crowley14c8c072018-09-18 13:30:21 -0700147 PrepareDir(mPath + "/user", 0711, AID_SYSTEM, AID_SYSTEM) ||
148 PrepareDir(mPath + "/user_de", 0711, AID_SYSTEM, AID_SYSTEM) ||
149 PrepareDir(mPath + "/media", 0770, AID_MEDIA_RW, AID_MEDIA_RW) ||
150 PrepareDir(mPath + "/media/0", 0770, AID_MEDIA_RW, AID_MEDIA_RW) ||
151 PrepareDir(mPath + "/local", 0751, AID_ROOT, AID_ROOT) ||
152 PrepareDir(mPath + "/local/tmp", 0771, AID_SHELL, AID_SHELL)) {
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700153 PLOG(ERROR) << getId() << " failed to prepare";
154 return -EIO;
155 }
156
Jeff Sharkey3161fb32015-04-12 16:03:33 -0700157 // Create a new emulated volume stacked above us, it will automatically
158 // be destroyed during unmount
159 std::string mediaPath(mPath + "/media");
Paul Crowley14c8c072018-09-18 13:30:21 -0700160 auto vol = std::shared_ptr<VolumeBase>(new EmulatedVolume(mediaPath, mRawDevice, mFsUuid));
Jeff Sharkey3161fb32015-04-12 16:03:33 -0700161 addVolume(vol);
162 vol->create();
163
Jeff Sharkey9c484982015-03-31 10:35:33 -0700164 return OK;
165}
166
167status_t PrivateVolume::doUnmount() {
168 ForceUnmount(mPath);
169
170 if (TEMP_FAILURE_RETRY(rmdir(mPath.c_str()))) {
171 PLOG(ERROR) << getId() << " failed to rmdir mount point " << mPath;
172 }
173
174 return OK;
175}
176
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700177status_t PrivateVolume::doFormat(const std::string& fsType) {
178 std::string resolvedFsType = fsType;
179 if (fsType == "auto") {
180 // For now, assume that all MMC devices are flash-based SD cards, and
181 // give everyone else ext4 because sysfs rotational isn't reliable.
182 if ((major(mRawDevice) == kMajorBlockMmc) && f2fs::IsSupported()) {
183 resolvedFsType = "f2fs";
184 } else {
185 resolvedFsType = "ext4";
186 }
187 LOG(DEBUG) << "Resolved auto to " << resolvedFsType;
188 }
189
190 if (resolvedFsType == "ext4") {
191 // TODO: change reported mountpoint once we have better selinux support
192 if (ext4::Format(mDmDevPath, 0, "/data")) {
193 PLOG(ERROR) << getId() << " failed to format";
194 return -EIO;
195 }
196 } else if (resolvedFsType == "f2fs") {
197 if (f2fs::Format(mDmDevPath)) {
198 PLOG(ERROR) << getId() << " failed to format";
199 return -EIO;
200 }
201 } else {
202 LOG(ERROR) << getId() << " unsupported filesystem " << fsType;
203 return -EINVAL;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700204 }
205
206 return OK;
207}
208
209} // namespace vold
210} // namespace android