blob: fe51990c1db9cfafd0c173d4f056bdb33172659b [file] [log] [blame]
Paul Crowley53af81c2015-05-19 17:31:39 +01001/*
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 Crowley28c4df42015-07-07 17:13:17 +010017#include <memory>
Paul Crowley53af81c2015-05-19 17:31:39 +010018#include <string>
Paul Crowley5ab73e92015-07-03 16:17:23 +010019#include <vector>
Paul Crowley53af81c2015-05-19 17:31:39 +010020
21#include <stdio.h>
22#include <stdlib.h>
Paul Crowley53af81c2015-05-19 17:31:39 +010023#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 Crowley4432e732015-07-01 13:33:47 +010029#include <mntent.h>
Paul Crowley53af81c2015-05-19 17:31:39 +010030
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000031#include <android-base/logging.h>
Paul Crowley53af81c2015-05-19 17:31:39 +010032
Paul Crowley4432e732015-07-01 13:33:47 +010033#include <AutoCloseFD.h>
34
35namespace {
Paul Crowley5ab73e92015-07-03 16:17:23 +010036
37struct Options {
38 std::vector<std::string> targets;
39 bool unlink{true};
40};
41
Paul Crowley28c4df42015-07-07 17:13:17 +010042constexpr uint32_t max_extents = 32;
Paul Crowley53af81c2015-05-19 17:31:39 +010043
Paul Crowley5ab73e92015-07-03 16:17:23 +010044bool read_command_line(int argc, const char * const argv[], Options &options);
Paul Crowley4432e732015-07-01 13:33:47 +010045void usage(const char *progname);
Paul Crowley2143ee82016-06-28 14:24:07 -070046bool secdiscard_path(const std::string &path);
Paul Crowley28c4df42015-07-07 17:13:17 +010047std::unique_ptr<struct fiemap> path_fiemap(const std::string &path, uint32_t extent_count);
48bool check_fiemap(const struct fiemap &fiemap, const std::string &path);
49std::unique_ptr<struct fiemap> alloc_fiemap(uint32_t extent_count);
Paul Crowley4432e732015-07-01 13:33:47 +010050std::string block_device_for_path(const std::string &path);
Paul Crowley2143ee82016-06-28 14:24:07 -070051bool overwrite_with_zeros(int fd, off64_t start, off64_t length);
Paul Crowley5ab73e92015-07-03 16:17:23 +010052
Paul Crowley4432e732015-07-01 13:33:47 +010053}
Paul Crowley53af81c2015-05-19 17:31:39 +010054
Paul Crowley4432e732015-07-01 13:33:47 +010055int main(int argc, const char * const argv[]) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000056 android::base::InitLogging(const_cast<char **>(argv));
Paul Crowley5ab73e92015-07-03 16:17:23 +010057 Options options;
58 if (!read_command_line(argc, argv, options)) {
Paul Crowley53af81c2015-05-19 17:31:39 +010059 usage(argv[0]);
60 return -1;
61 }
Paul Crowley2143ee82016-06-28 14:24:07 -070062 for (auto const &target: options.targets) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000063 LOG(DEBUG) << "Securely discarding '" << target << "' unlink=" << options.unlink;
Paul Crowley2143ee82016-06-28 14:24:07 -070064 if (!secdiscard_path(target)) {
65 LOG(ERROR) << "Secure discard failed for: " << target;
66 }
Paul Crowley5ab73e92015-07-03 16:17:23 +010067 if (options.unlink) {
68 if (unlink(target.c_str()) != 0 && errno != ENOENT) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000069 PLOG(ERROR) << "Unable to unlink: " << target;
Paul Crowley5ab73e92015-07-03 16:17:23 +010070 }
71 }
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000072 LOG(DEBUG) << "Discarded: " << target;
Paul Crowley53af81c2015-05-19 17:31:39 +010073 }
74 return 0;
75}
76
Paul Crowley4432e732015-07-01 13:33:47 +010077namespace {
78
Paul Crowley5ab73e92015-07-03 16:17:23 +010079bool read_command_line(int argc, const char * const argv[], Options &options) {
80 for (int i = 1; i < argc; i++) {
81 if (!strcmp("--no-unlink", argv[i])) {
82 options.unlink = false;
83 } else if (!strcmp("--", argv[i])) {
84 for (int j = i+1; j < argc; j++) {
85 if (argv[j][0] != '/') return false; // Must be absolute path
86 options.targets.emplace_back(argv[j]);
87 }
88 return options.targets.size() > 0;
89 } else {
90 return false; // Unknown option
91 }
92 }
93 return false; // "--" not found
94}
95
Paul Crowley4432e732015-07-01 13:33:47 +010096void usage(const char *progname) {
Paul Crowley5ab73e92015-07-03 16:17:23 +010097 fprintf(stderr, "Usage: %s [--no-unlink] -- <absolute path> ...\n", progname);
Paul Crowley53af81c2015-05-19 17:31:39 +010098}
99
100// BLKSECDISCARD all content in "path", if it's small enough.
Paul Crowley2143ee82016-06-28 14:24:07 -0700101bool secdiscard_path(const std::string &path) {
Paul Crowley28c4df42015-07-07 17:13:17 +0100102 auto fiemap = path_fiemap(path, max_extents);
103 if (!fiemap || !check_fiemap(*fiemap, path)) {
Paul Crowley2143ee82016-06-28 14:24:07 -0700104 return false;
Paul Crowley53af81c2015-05-19 17:31:39 +0100105 }
Paul Crowley4432e732015-07-01 13:33:47 +0100106 auto block_device = block_device_for_path(path);
107 if (block_device.empty()) {
Paul Crowley2143ee82016-06-28 14:24:07 -0700108 return false;
Paul Crowley53af81c2015-05-19 17:31:39 +0100109 }
Paul Crowley4432e732015-07-01 13:33:47 +0100110 AutoCloseFD fs_fd(block_device, O_RDWR | O_LARGEFILE);
111 if (!fs_fd) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000112 PLOG(ERROR) << "Failed to open device " << block_device;
Paul Crowley2143ee82016-06-28 14:24:07 -0700113 return false;
Paul Crowley4432e732015-07-01 13:33:47 +0100114 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100115 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 Crowley8bb8fcf2016-01-11 12:26:44 +0000120 PLOG(ERROR) << "Unable to BLKSECDISCARD " << path;
Paul Crowley2143ee82016-06-28 14:24:07 -0700121 if (!overwrite_with_zeros(fs_fd.get(), range[0], range[1])) return false;
122 LOG(DEBUG) << "Used zero overwrite";
Paul Crowley28c4df42015-07-07 17:13:17 +0100123 }
Paul Crowley53af81c2015-05-19 17:31:39 +0100124 }
Paul Crowley2143ee82016-06-28 14:24:07 -0700125 return true;
Paul Crowley53af81c2015-05-19 17:31:39 +0100126}
127
Paul Crowley28c4df42015-07-07 17:13:17 +0100128// Read the file's FIEMAP
129std::unique_ptr<struct fiemap> path_fiemap(const std::string &path, uint32_t extent_count)
Paul Crowley53af81c2015-05-19 17:31:39 +0100130{
Paul Crowley4432e732015-07-01 13:33:47 +0100131 AutoCloseFD fd(path);
132 if (!fd) {
Paul Crowley53af81c2015-05-19 17:31:39 +0100133 if (errno == ENOENT) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000134 PLOG(DEBUG) << "Unable to open " << path;
Paul Crowley53af81c2015-05-19 17:31:39 +0100135 } else {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000136 PLOG(ERROR) << "Unable to open " << path;
Paul Crowley53af81c2015-05-19 17:31:39 +0100137 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100138 return nullptr;
Paul Crowley53af81c2015-05-19 17:31:39 +0100139 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100140 auto fiemap = alloc_fiemap(extent_count);
141 if (ioctl(fd.get(), FS_IOC_FIEMAP, fiemap.get()) != 0) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000142 PLOG(ERROR) << "Unable to FIEMAP " << path;
Paul Crowley28c4df42015-07-07 17:13:17 +0100143 return nullptr;
Paul Crowley53af81c2015-05-19 17:31:39 +0100144 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100145 auto mapped = fiemap->fm_mapped_extents;
146 if (mapped < 1 || mapped > extent_count) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000147 LOG(ERROR) << "Extent count not in bounds 1 <= " << mapped << " <= " << extent_count
148 << " in " << path;
Paul Crowley28c4df42015-07-07 17:13:17 +0100149 return nullptr;
Paul Crowley53af81c2015-05-19 17:31:39 +0100150 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100151 return fiemap;
152}
153
154// Ensure that the FIEMAP covers the file and is OK to discard
155bool check_fiemap(const struct fiemap &fiemap, const std::string &path) {
156 auto mapped = fiemap.fm_mapped_extents;
157 if (!(fiemap.fm_extents[mapped - 1].fe_flags & FIEMAP_EXTENT_LAST)) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000158 LOG(ERROR) << "Extent " << mapped -1 << " was not the last in " << path;
Paul Crowley28c4df42015-07-07 17:13:17 +0100159 return false;
Paul Crowley53af81c2015-05-19 17:31:39 +0100160 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100161 for (uint32_t i = 0; i < mapped; i++) {
162 auto flags = fiemap.fm_extents[i].fe_flags;
163 if (flags & (FIEMAP_EXTENT_UNKNOWN | FIEMAP_EXTENT_DELALLOC | FIEMAP_EXTENT_NOT_ALIGNED)) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000164 LOG(ERROR) << "Extent " << i << " has unexpected flags " << flags << ": " << path;
Paul Crowley28c4df42015-07-07 17:13:17 +0100165 return false;
166 }
Paul Crowley53af81c2015-05-19 17:31:39 +0100167 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100168 return true;
169}
170
171std::unique_ptr<struct fiemap> alloc_fiemap(uint32_t extent_count)
172{
173 size_t allocsize = offsetof(struct fiemap, fm_extents[extent_count]);
174 std::unique_ptr<struct fiemap> res(new (::operator new (allocsize)) struct fiemap);
175 memset(res.get(), 0, allocsize);
176 res->fm_start = 0;
177 res->fm_length = UINT64_MAX;
178 res->fm_flags = 0;
179 res->fm_extent_count = extent_count;
180 res->fm_mapped_extents = 0;
181 return res;
Paul Crowley53af81c2015-05-19 17:31:39 +0100182}
183
Paul Crowley4432e732015-07-01 13:33:47 +0100184// Given a file path, look for the corresponding block device in /proc/mount
185std::string block_device_for_path(const std::string &path)
Paul Crowley53af81c2015-05-19 17:31:39 +0100186{
Paul Crowley4432e732015-07-01 13:33:47 +0100187 std::unique_ptr<FILE, int(*)(FILE*)> mnts(setmntent("/proc/mounts", "re"), endmntent);
188 if (!mnts) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000189 PLOG(ERROR) << "Unable to open /proc/mounts";
Paul Crowley4432e732015-07-01 13:33:47 +0100190 return "";
Paul Crowley53af81c2015-05-19 17:31:39 +0100191 }
Paul Crowley4432e732015-07-01 13:33:47 +0100192 std::string result;
193 size_t best_length = 0;
194 struct mntent *mnt; // getmntent returns a thread local, so it's safe.
195 while ((mnt = getmntent(mnts.get())) != nullptr) {
196 auto l = strlen(mnt->mnt_dir);
197 if (l > best_length &&
198 path.size() > l &&
199 path[l] == '/' &&
200 path.compare(0, l, mnt->mnt_dir) == 0) {
201 result = mnt->mnt_fsname;
202 best_length = l;
203 }
Paul Crowley53af81c2015-05-19 17:31:39 +0100204 }
Paul Crowley4432e732015-07-01 13:33:47 +0100205 if (result.empty()) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000206 LOG(ERROR) <<"Didn't find a mountpoint to match path " << path;
Paul Crowley4432e732015-07-01 13:33:47 +0100207 return "";
Paul Crowley53af81c2015-05-19 17:31:39 +0100208 }
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000209 LOG(DEBUG) << "For path " << path << " block device is " << result;
Paul Crowley4432e732015-07-01 13:33:47 +0100210 return result;
Paul Crowley53af81c2015-05-19 17:31:39 +0100211}
212
Paul Crowley2143ee82016-06-28 14:24:07 -0700213bool overwrite_with_zeros(int fd, off64_t start, off64_t length) {
214 if (lseek64(fd, start, SEEK_SET) != start) {
215 PLOG(ERROR) << "Seek failed for zero overwrite";
216 return false;
217 }
218 char buf[BUFSIZ];
219 memset(buf, 0, sizeof(buf));
220 while (length > 0) {
221 size_t wlen = static_cast<size_t>(std::min(static_cast<off64_t>(sizeof(buf)), length));
222 auto written = write(fd, buf, wlen);
223 if (written < 1) {
224 PLOG(ERROR) << "Write of zeroes failed";
225 return false;
226 }
227 length -= written;
228 }
229 return true;
230}
231
Paul Crowley53af81c2015-05-19 17:31:39 +0100232}