1 /*
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
17 #include <stdio.h>
18 #include <unistd.h>
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <fcntl.h>
22 #include <sys/wait.h>
23 #include <errno.h>
24 #include <cutils/partition_utils.h>
25 #include <sys/mount.h>
26
27 #include <android-base/properties.h>
28 #include <android-base/unique_fd.h>
29 #include <ext4_utils/ext4.h>
30 #include <ext4_utils/ext4_utils.h>
31 #include <logwrap/logwrap.h>
32 #include <selinux/android.h>
33 #include <selinux/label.h>
34 #include <selinux/selinux.h>
35
36 #include "fs_mgr_priv.h"
37
38 using android::base::unique_fd;
39
40 // Realistically, this file should be part of the android::fs_mgr namespace;
41 using namespace android::fs_mgr;
42
get_dev_sz(const std::string & fs_blkdev,uint64_t * dev_sz)43 static int get_dev_sz(const std::string& fs_blkdev, uint64_t* dev_sz) {
44 unique_fd fd(TEMP_FAILURE_RETRY(open(fs_blkdev.c_str(), O_RDONLY | O_CLOEXEC)));
45
46 if (fd < 0) {
47 PERROR << "Cannot open block device";
48 return -1;
49 }
50
51 if ((ioctl(fd, BLKGETSIZE64, dev_sz)) == -1) {
52 PERROR << "Cannot get block device size";
53 return -1;
54 }
55
56 return 0;
57 }
58
format_ext4(const std::string & fs_blkdev,const std::string & fs_mnt_point,bool needs_projid,bool needs_metadata_csum)59 static int format_ext4(const std::string& fs_blkdev, const std::string& fs_mnt_point,
60 bool needs_projid, bool needs_metadata_csum) {
61 uint64_t dev_sz;
62 int rc = 0;
63
64 rc = get_dev_sz(fs_blkdev, &dev_sz);
65 if (rc) {
66 return rc;
67 }
68
69 /* Format the partition using the calculated length */
70
71 std::string size_str = std::to_string(dev_sz / 4096);
72
73 std::vector<const char*> mke2fs_args = {"/system/bin/mke2fs", "-t", "ext4", "-b", "4096"};
74
75 // Project ID's require wider inodes. The Quotas themselves are enabled by tune2fs during boot.
76 if (needs_projid) {
77 mke2fs_args.push_back("-I");
78 mke2fs_args.push_back("512");
79 }
80 // casefolding is enabled via tune2fs during boot.
81
82 if (needs_metadata_csum) {
83 mke2fs_args.push_back("-O");
84 mke2fs_args.push_back("metadata_csum");
85 // tune2fs recommends to enable 64bit and extent:
86 // Extents are not enabled. The file extent tree can be checksummed,
87 // whereas block maps cannot. Not enabling extents reduces the coverage
88 // of metadata checksumming. Re-run with -O extent to rectify.
89 // 64-bit filesystem support is not enabled. The larger fields afforded
90 // by this feature enable full-strength checksumming. Run resize2fs -b to rectify.
91 mke2fs_args.push_back("-O");
92 mke2fs_args.push_back("64bit");
93 mke2fs_args.push_back("-O");
94 mke2fs_args.push_back("extent");
95 }
96
97 mke2fs_args.push_back(fs_blkdev.c_str());
98 mke2fs_args.push_back(size_str.c_str());
99
100 rc = logwrap_fork_execvp(mke2fs_args.size(), mke2fs_args.data(), nullptr, false, LOG_KLOG,
101 false, nullptr);
102 if (rc) {
103 LERROR << "mke2fs returned " << rc;
104 return rc;
105 }
106
107 const char* const e2fsdroid_args[] = {
108 "/system/bin/e2fsdroid", "-e", "-a", fs_mnt_point.c_str(), fs_blkdev.c_str(), nullptr};
109
110 rc = logwrap_fork_execvp(arraysize(e2fsdroid_args), e2fsdroid_args, nullptr, false, LOG_KLOG,
111 false, nullptr);
112 if (rc) {
113 LERROR << "e2fsdroid returned " << rc;
114 }
115
116 return rc;
117 }
118
format_f2fs(const std::string & fs_blkdev,uint64_t dev_sz,bool needs_projid,bool needs_casefold,bool fs_compress,const std::string & zoned_device)119 static int format_f2fs(const std::string& fs_blkdev, uint64_t dev_sz, bool needs_projid,
120 bool needs_casefold, bool fs_compress, const std::string& zoned_device) {
121 if (!dev_sz) {
122 int rc = get_dev_sz(fs_blkdev, &dev_sz);
123 if (rc) {
124 return rc;
125 }
126 }
127
128 /* Format the partition using the calculated length */
129
130 std::string size_str = std::to_string(dev_sz / 4096);
131
132 std::vector<const char*> args = {"/system/bin/make_f2fs", "-g", "android"};
133 if (needs_projid) {
134 args.push_back("-O");
135 args.push_back("project_quota,extra_attr");
136 }
137 if (needs_casefold) {
138 args.push_back("-O");
139 args.push_back("casefold");
140 args.push_back("-C");
141 args.push_back("utf8");
142 }
143 if (fs_compress) {
144 args.push_back("-O");
145 args.push_back("compression");
146 args.push_back("-O");
147 args.push_back("extra_attr");
148 }
149 if (!zoned_device.empty()) {
150 args.push_back("-c");
151 args.push_back(zoned_device.c_str());
152 args.push_back("-m");
153 args.push_back(fs_blkdev.c_str());
154 } else {
155 args.push_back(fs_blkdev.c_str());
156 args.push_back(size_str.c_str());
157 }
158
159 return logwrap_fork_execvp(args.size(), args.data(), nullptr, false, LOG_KLOG, false, nullptr);
160 }
161
fs_mgr_do_format(const FstabEntry & entry)162 int fs_mgr_do_format(const FstabEntry& entry) {
163 LERROR << __FUNCTION__ << ": Format " << entry.blk_device << " as '" << entry.fs_type << "'";
164
165 bool needs_casefold = false;
166 bool needs_projid = true;
167
168 if (entry.mount_point == "/data") {
169 needs_casefold = android::base::GetBoolProperty("external_storage.casefold.enabled", false);
170 }
171
172 if (entry.fs_type == "f2fs") {
173 return format_f2fs(entry.blk_device, entry.length, needs_projid, needs_casefold,
174 entry.fs_mgr_flags.fs_compress, entry.zoned_device);
175 } else if (entry.fs_type == "ext4") {
176 return format_ext4(entry.blk_device, entry.mount_point, needs_projid,
177 entry.fs_mgr_flags.ext_meta_csum);
178 } else {
179 LERROR << "File system type '" << entry.fs_type << "' is not supported";
180 return -EINVAL;
181 }
182 }
183