Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 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 | |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 17 | #include <memory> |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 18 | #include <string> |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 19 | #include <vector> |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 20 | |
| 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 23 | #include <errno.h> |
| 24 | #include <sys/types.h> |
| 25 | #include <sys/stat.h> |
| 26 | #include <fcntl.h> |
| 27 | #include <linux/fs.h> |
| 28 | #include <linux/fiemap.h> |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 29 | #include <mntent.h> |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 30 | |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 31 | #include <android-base/logging.h> |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame^] | 32 | #include <android-base/unique_fd.h> |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 33 | |
| 34 | namespace { |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 35 | |
| 36 | struct Options { |
| 37 | std::vector<std::string> targets; |
| 38 | bool unlink{true}; |
| 39 | }; |
| 40 | |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 41 | constexpr uint32_t max_extents = 32; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 42 | |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 43 | bool read_command_line(int argc, const char * const argv[], Options &options); |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 44 | void usage(const char *progname); |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 45 | bool secdiscard_path(const std::string &path); |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 46 | std::unique_ptr<struct fiemap> path_fiemap(const std::string &path, uint32_t extent_count); |
| 47 | bool check_fiemap(const struct fiemap &fiemap, const std::string &path); |
| 48 | std::unique_ptr<struct fiemap> alloc_fiemap(uint32_t extent_count); |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 49 | std::string block_device_for_path(const std::string &path); |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 50 | bool overwrite_with_zeros(int fd, off64_t start, off64_t length); |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 51 | |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 52 | } |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 53 | |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 54 | int main(int argc, const char * const argv[]) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 55 | android::base::InitLogging(const_cast<char **>(argv)); |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 56 | Options options; |
| 57 | if (!read_command_line(argc, argv, options)) { |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 58 | usage(argv[0]); |
| 59 | return -1; |
| 60 | } |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 61 | for (auto const &target: options.targets) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 62 | LOG(DEBUG) << "Securely discarding '" << target << "' unlink=" << options.unlink; |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 63 | if (!secdiscard_path(target)) { |
| 64 | LOG(ERROR) << "Secure discard failed for: " << target; |
| 65 | } |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 66 | if (options.unlink) { |
| 67 | if (unlink(target.c_str()) != 0 && errno != ENOENT) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 68 | PLOG(ERROR) << "Unable to unlink: " << target; |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 69 | } |
| 70 | } |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 71 | LOG(DEBUG) << "Discarded: " << target; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 72 | } |
| 73 | return 0; |
| 74 | } |
| 75 | |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 76 | namespace { |
| 77 | |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 78 | bool read_command_line(int argc, const char * const argv[], Options &options) { |
| 79 | for (int i = 1; i < argc; i++) { |
| 80 | if (!strcmp("--no-unlink", argv[i])) { |
| 81 | options.unlink = false; |
| 82 | } else if (!strcmp("--", argv[i])) { |
| 83 | for (int j = i+1; j < argc; j++) { |
| 84 | if (argv[j][0] != '/') return false; // Must be absolute path |
| 85 | options.targets.emplace_back(argv[j]); |
| 86 | } |
| 87 | return options.targets.size() > 0; |
| 88 | } else { |
| 89 | return false; // Unknown option |
| 90 | } |
| 91 | } |
| 92 | return false; // "--" not found |
| 93 | } |
| 94 | |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 95 | void usage(const char *progname) { |
Paul Crowley | 5ab73e9 | 2015-07-03 16:17:23 +0100 | [diff] [blame] | 96 | fprintf(stderr, "Usage: %s [--no-unlink] -- <absolute path> ...\n", progname); |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | // BLKSECDISCARD all content in "path", if it's small enough. |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 100 | bool secdiscard_path(const std::string &path) { |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 101 | auto fiemap = path_fiemap(path, max_extents); |
| 102 | if (!fiemap || !check_fiemap(*fiemap, path)) { |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 103 | return false; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 104 | } |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 105 | auto block_device = block_device_for_path(path); |
| 106 | if (block_device.empty()) { |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 107 | return false; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 108 | } |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame^] | 109 | android::base::unique_fd fs_fd(TEMP_FAILURE_RETRY(open( |
| 110 | block_device.c_str(), O_RDWR | O_LARGEFILE | O_CLOEXEC, 0))); |
| 111 | if (fs_fd == -1) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 112 | PLOG(ERROR) << "Failed to open device " << block_device; |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 113 | return false; |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 114 | } |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 115 | for (uint32_t i = 0; i < fiemap->fm_mapped_extents; i++) { |
| 116 | uint64_t range[2]; |
| 117 | range[0] = fiemap->fm_extents[i].fe_physical; |
| 118 | range[1] = fiemap->fm_extents[i].fe_length; |
| 119 | if (ioctl(fs_fd.get(), BLKSECDISCARD, range) == -1) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 120 | PLOG(ERROR) << "Unable to BLKSECDISCARD " << path; |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 121 | if (!overwrite_with_zeros(fs_fd.get(), range[0], range[1])) return false; |
| 122 | LOG(DEBUG) << "Used zero overwrite"; |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 123 | } |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 124 | } |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 125 | return true; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 126 | } |
| 127 | |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 128 | // Read the file's FIEMAP |
| 129 | std::unique_ptr<struct fiemap> path_fiemap(const std::string &path, uint32_t extent_count) |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 130 | { |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame^] | 131 | android::base::unique_fd fd(TEMP_FAILURE_RETRY(open( |
| 132 | path.c_str(), O_RDONLY | O_CLOEXEC, 0))); |
| 133 | if (fd == -1) { |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 134 | if (errno == ENOENT) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 135 | PLOG(DEBUG) << "Unable to open " << path; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 136 | } else { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 137 | PLOG(ERROR) << "Unable to open " << path; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 138 | } |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 139 | return nullptr; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 140 | } |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 141 | auto fiemap = alloc_fiemap(extent_count); |
| 142 | if (ioctl(fd.get(), FS_IOC_FIEMAP, fiemap.get()) != 0) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 143 | PLOG(ERROR) << "Unable to FIEMAP " << path; |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 144 | return nullptr; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 145 | } |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 146 | auto mapped = fiemap->fm_mapped_extents; |
| 147 | if (mapped < 1 || mapped > extent_count) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 148 | LOG(ERROR) << "Extent count not in bounds 1 <= " << mapped << " <= " << extent_count |
| 149 | << " in " << path; |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 150 | return nullptr; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 151 | } |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 152 | return fiemap; |
| 153 | } |
| 154 | |
| 155 | // Ensure that the FIEMAP covers the file and is OK to discard |
| 156 | bool check_fiemap(const struct fiemap &fiemap, const std::string &path) { |
| 157 | auto mapped = fiemap.fm_mapped_extents; |
| 158 | if (!(fiemap.fm_extents[mapped - 1].fe_flags & FIEMAP_EXTENT_LAST)) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 159 | LOG(ERROR) << "Extent " << mapped -1 << " was not the last in " << path; |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 160 | return false; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 161 | } |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 162 | for (uint32_t i = 0; i < mapped; i++) { |
| 163 | auto flags = fiemap.fm_extents[i].fe_flags; |
| 164 | if (flags & (FIEMAP_EXTENT_UNKNOWN | FIEMAP_EXTENT_DELALLOC | FIEMAP_EXTENT_NOT_ALIGNED)) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 165 | LOG(ERROR) << "Extent " << i << " has unexpected flags " << flags << ": " << path; |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 166 | return false; |
| 167 | } |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 168 | } |
Paul Crowley | 28c4df4 | 2015-07-07 17:13:17 +0100 | [diff] [blame] | 169 | return true; |
| 170 | } |
| 171 | |
| 172 | std::unique_ptr<struct fiemap> alloc_fiemap(uint32_t extent_count) |
| 173 | { |
| 174 | size_t allocsize = offsetof(struct fiemap, fm_extents[extent_count]); |
| 175 | std::unique_ptr<struct fiemap> res(new (::operator new (allocsize)) struct fiemap); |
| 176 | memset(res.get(), 0, allocsize); |
| 177 | res->fm_start = 0; |
| 178 | res->fm_length = UINT64_MAX; |
| 179 | res->fm_flags = 0; |
| 180 | res->fm_extent_count = extent_count; |
| 181 | res->fm_mapped_extents = 0; |
| 182 | return res; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 183 | } |
| 184 | |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 185 | // Given a file path, look for the corresponding block device in /proc/mount |
| 186 | std::string block_device_for_path(const std::string &path) |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 187 | { |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 188 | std::unique_ptr<FILE, int(*)(FILE*)> mnts(setmntent("/proc/mounts", "re"), endmntent); |
| 189 | if (!mnts) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 190 | PLOG(ERROR) << "Unable to open /proc/mounts"; |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 191 | return ""; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 192 | } |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 193 | std::string result; |
| 194 | size_t best_length = 0; |
| 195 | struct mntent *mnt; // getmntent returns a thread local, so it's safe. |
| 196 | while ((mnt = getmntent(mnts.get())) != nullptr) { |
| 197 | auto l = strlen(mnt->mnt_dir); |
| 198 | if (l > best_length && |
| 199 | path.size() > l && |
| 200 | path[l] == '/' && |
| 201 | path.compare(0, l, mnt->mnt_dir) == 0) { |
| 202 | result = mnt->mnt_fsname; |
| 203 | best_length = l; |
| 204 | } |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 205 | } |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 206 | if (result.empty()) { |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 207 | LOG(ERROR) <<"Didn't find a mountpoint to match path " << path; |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 208 | return ""; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 209 | } |
Paul Crowley | 8bb8fcf | 2016-01-11 12:26:44 +0000 | [diff] [blame] | 210 | LOG(DEBUG) << "For path " << path << " block device is " << result; |
Paul Crowley | 4432e73 | 2015-07-01 13:33:47 +0100 | [diff] [blame] | 211 | return result; |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 212 | } |
| 213 | |
Paul Crowley | 2143ee8 | 2016-06-28 14:24:07 -0700 | [diff] [blame] | 214 | bool overwrite_with_zeros(int fd, off64_t start, off64_t length) { |
| 215 | if (lseek64(fd, start, SEEK_SET) != start) { |
| 216 | PLOG(ERROR) << "Seek failed for zero overwrite"; |
| 217 | return false; |
| 218 | } |
| 219 | char buf[BUFSIZ]; |
| 220 | memset(buf, 0, sizeof(buf)); |
| 221 | while (length > 0) { |
| 222 | size_t wlen = static_cast<size_t>(std::min(static_cast<off64_t>(sizeof(buf)), length)); |
| 223 | auto written = write(fd, buf, wlen); |
| 224 | if (written < 1) { |
| 225 | PLOG(ERROR) << "Write of zeroes failed"; |
| 226 | return false; |
| 227 | } |
| 228 | length -= written; |
| 229 | } |
| 230 | return true; |
| 231 | } |
| 232 | |
Paul Crowley | 53af81c | 2015-05-19 17:31:39 +0100 | [diff] [blame] | 233 | } |