blob: 4659eedd90744cbdf47fd966c95c9038b8ca0de2 [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
Paul Crowley14c8c072018-09-18 13:30:21 -070021#include <errno.h>
22#include <fcntl.h>
23#include <linux/fiemap.h>
24#include <linux/fs.h>
25#include <mntent.h>
Paul Crowley53af81c2015-05-19 17:31:39 +010026#include <stdio.h>
27#include <stdlib.h>
Paul Crowley53af81c2015-05-19 17:31:39 +010028#include <sys/stat.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070029#include <sys/types.h>
Paul Crowley53af81c2015-05-19 17:31:39 +010030
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000031#include <android-base/logging.h>
Paul Crowleye4c93da2017-06-16 09:21:18 -070032#include <android-base/unique_fd.h>
Paul Crowley4432e732015-07-01 13:33:47 +010033
Paul Crowley03f89d32017-06-16 09:37:31 -070034#include "FileDeviceUtils.h"
35
Paul Crowley4432e732015-07-01 13:33:47 +010036namespace {
Paul Crowley5ab73e92015-07-03 16:17:23 +010037
38struct Options {
39 std::vector<std::string> targets;
40 bool unlink{true};
41};
42
Paul Crowley28c4df42015-07-07 17:13:17 +010043constexpr uint32_t max_extents = 32;
Paul Crowley53af81c2015-05-19 17:31:39 +010044
Paul Crowley14c8c072018-09-18 13:30:21 -070045bool read_command_line(int argc, const char* const argv[], Options& options);
46void usage(const char* progname);
47bool secdiscard_path(const std::string& path);
48bool check_fiemap(const struct fiemap& fiemap, const std::string& path);
Paul Crowley2143ee82016-06-28 14:24:07 -070049bool overwrite_with_zeros(int fd, off64_t start, off64_t length);
Paul Crowley5ab73e92015-07-03 16:17:23 +010050
Paul Crowley14c8c072018-09-18 13:30:21 -070051} // namespace
Paul Crowley53af81c2015-05-19 17:31:39 +010052
Paul Crowley14c8c072018-09-18 13:30:21 -070053int main(int argc, const char* const argv[]) {
54 android::base::InitLogging(const_cast<char**>(argv));
Paul Crowley5ab73e92015-07-03 16:17:23 +010055 Options options;
56 if (!read_command_line(argc, argv, options)) {
Paul Crowley53af81c2015-05-19 17:31:39 +010057 usage(argv[0]);
58 return -1;
59 }
Jaegeuk Kimab515b22018-08-02 12:41:45 -070060
Paul Crowley14c8c072018-09-18 13:30:21 -070061 for (auto const& target : options.targets) {
Jaegeuk Kimab515b22018-08-02 12:41:45 -070062// F2FS-specific ioctl
63// It requires the below kernel commit merged in v4.16-rc1.
64// 1ad71a27124c ("f2fs: add an ioctl to disable GC for specific file")
65// In android-4.4,
66// 56ee1e817908 ("f2fs: updates on v4.16-rc1")
67// In android-4.9,
68// 2f17e34672a8 ("f2fs: updates on v4.16-rc1")
69// In android-4.14,
70// ce767d9a55bc ("f2fs: updates on v4.16-rc1")
71#ifndef F2FS_IOC_SET_PIN_FILE
72#ifndef F2FS_IOCTL_MAGIC
Paul Crowley14c8c072018-09-18 13:30:21 -070073#define F2FS_IOCTL_MAGIC 0xf5
Jaegeuk Kimab515b22018-08-02 12:41:45 -070074#endif
Paul Crowley14c8c072018-09-18 13:30:21 -070075#define F2FS_IOC_SET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 13, __u32)
76#define F2FS_IOC_GET_PIN_FILE _IOR(F2FS_IOCTL_MAGIC, 14, __u32)
Jaegeuk Kimab515b22018-08-02 12:41:45 -070077#endif
Nick Kraleviche7e89ac2019-03-29 16:03:51 -070078 android::base::unique_fd fd(
79 TEMP_FAILURE_RETRY(open(target.c_str(), O_WRONLY | O_CLOEXEC, 0)));
Jaegeuk Kimab515b22018-08-02 12:41:45 -070080 if (fd == -1) {
81 LOG(ERROR) << "Secure discard open failed for: " << target;
82 return 0;
83 }
84 __u32 set = 1;
85 ioctl(fd, F2FS_IOC_SET_PIN_FILE, &set);
86
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000087 LOG(DEBUG) << "Securely discarding '" << target << "' unlink=" << options.unlink;
Paul Crowley2143ee82016-06-28 14:24:07 -070088 if (!secdiscard_path(target)) {
89 LOG(ERROR) << "Secure discard failed for: " << target;
90 }
Paul Crowley5ab73e92015-07-03 16:17:23 +010091 if (options.unlink) {
92 if (unlink(target.c_str()) != 0 && errno != ENOENT) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +000093 PLOG(ERROR) << "Unable to unlink: " << target;
Paul Crowley5ab73e92015-07-03 16:17:23 +010094 }
95 }
Jaegeuk Kimab515b22018-08-02 12:41:45 -070096 set = 0;
97 ioctl(fd, F2FS_IOC_SET_PIN_FILE, &set);
Paul Crowley53af81c2015-05-19 17:31:39 +010098 }
99 return 0;
100}
101
Paul Crowley4432e732015-07-01 13:33:47 +0100102namespace {
103
Paul Crowley14c8c072018-09-18 13:30:21 -0700104bool read_command_line(int argc, const char* const argv[], Options& options) {
Paul Crowley5ab73e92015-07-03 16:17:23 +0100105 for (int i = 1; i < argc; i++) {
106 if (!strcmp("--no-unlink", argv[i])) {
107 options.unlink = false;
108 } else if (!strcmp("--", argv[i])) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700109 for (int j = i + 1; j < argc; j++) {
110 if (argv[j][0] != '/') return false; // Must be absolute path
Paul Crowley5ab73e92015-07-03 16:17:23 +0100111 options.targets.emplace_back(argv[j]);
112 }
113 return options.targets.size() > 0;
114 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700115 return false; // Unknown option
Paul Crowley5ab73e92015-07-03 16:17:23 +0100116 }
117 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700118 return false; // "--" not found
Paul Crowley5ab73e92015-07-03 16:17:23 +0100119}
120
Paul Crowley14c8c072018-09-18 13:30:21 -0700121void usage(const char* progname) {
Paul Crowley5ab73e92015-07-03 16:17:23 +0100122 fprintf(stderr, "Usage: %s [--no-unlink] -- <absolute path> ...\n", progname);
Paul Crowley53af81c2015-05-19 17:31:39 +0100123}
124
125// BLKSECDISCARD all content in "path", if it's small enough.
Paul Crowley14c8c072018-09-18 13:30:21 -0700126bool secdiscard_path(const std::string& path) {
Paul Crowley03f89d32017-06-16 09:37:31 -0700127 auto fiemap = android::vold::PathFiemap(path, max_extents);
Paul Crowley28c4df42015-07-07 17:13:17 +0100128 if (!fiemap || !check_fiemap(*fiemap, path)) {
Paul Crowley2143ee82016-06-28 14:24:07 -0700129 return false;
Paul Crowley53af81c2015-05-19 17:31:39 +0100130 }
Paul Crowley03f89d32017-06-16 09:37:31 -0700131 auto block_device = android::vold::BlockDeviceForPath(path);
Paul Crowley4432e732015-07-01 13:33:47 +0100132 if (block_device.empty()) {
Paul Crowley2143ee82016-06-28 14:24:07 -0700133 return false;
Paul Crowley53af81c2015-05-19 17:31:39 +0100134 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700135 android::base::unique_fd fs_fd(
136 TEMP_FAILURE_RETRY(open(block_device.c_str(), O_RDWR | O_LARGEFILE | O_CLOEXEC, 0)));
Paul Crowleye4c93da2017-06-16 09:21:18 -0700137 if (fs_fd == -1) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000138 PLOG(ERROR) << "Failed to open device " << block_device;
Paul Crowley2143ee82016-06-28 14:24:07 -0700139 return false;
Paul Crowley4432e732015-07-01 13:33:47 +0100140 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100141 for (uint32_t i = 0; i < fiemap->fm_mapped_extents; i++) {
142 uint64_t range[2];
143 range[0] = fiemap->fm_extents[i].fe_physical;
144 range[1] = fiemap->fm_extents[i].fe_length;
145 if (ioctl(fs_fd.get(), BLKSECDISCARD, range) == -1) {
Rubin Xuf2e846f2019-03-21 18:13:40 +0000146 // Use zero overwrite as a fallback for BLKSECDISCARD
Paul Crowley2143ee82016-06-28 14:24:07 -0700147 if (!overwrite_with_zeros(fs_fd.get(), range[0], range[1])) return false;
Paul Crowley28c4df42015-07-07 17:13:17 +0100148 }
Paul Crowley53af81c2015-05-19 17:31:39 +0100149 }
Jaegeuk Kim6c5e4532019-08-08 09:07:58 -0700150 // Should wait for overwrites completion. Otherwise after unlink(),
151 // filesystem can allocate these blocks and IO can be reordered, resulting
152 // in making zero blocks to filesystem blocks.
153 fsync(fs_fd.get());
Paul Crowley2143ee82016-06-28 14:24:07 -0700154 return true;
Paul Crowley53af81c2015-05-19 17:31:39 +0100155}
156
Paul Crowley28c4df42015-07-07 17:13:17 +0100157// Ensure that the FIEMAP covers the file and is OK to discard
Paul Crowley14c8c072018-09-18 13:30:21 -0700158bool check_fiemap(const struct fiemap& fiemap, const std::string& path) {
Paul Crowley28c4df42015-07-07 17:13:17 +0100159 auto mapped = fiemap.fm_mapped_extents;
160 if (!(fiemap.fm_extents[mapped - 1].fe_flags & FIEMAP_EXTENT_LAST)) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700161 LOG(ERROR) << "Extent " << mapped - 1 << " was not the last in " << path;
Paul Crowley28c4df42015-07-07 17:13:17 +0100162 return false;
Paul Crowley53af81c2015-05-19 17:31:39 +0100163 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100164 for (uint32_t i = 0; i < mapped; i++) {
165 auto flags = fiemap.fm_extents[i].fe_flags;
166 if (flags & (FIEMAP_EXTENT_UNKNOWN | FIEMAP_EXTENT_DELALLOC | FIEMAP_EXTENT_NOT_ALIGNED)) {
Paul Crowley8bb8fcf2016-01-11 12:26:44 +0000167 LOG(ERROR) << "Extent " << i << " has unexpected flags " << flags << ": " << path;
Paul Crowley28c4df42015-07-07 17:13:17 +0100168 return false;
169 }
Paul Crowley53af81c2015-05-19 17:31:39 +0100170 }
Paul Crowley28c4df42015-07-07 17:13:17 +0100171 return true;
172}
173
Paul Crowley2143ee82016-06-28 14:24:07 -0700174bool overwrite_with_zeros(int fd, off64_t start, off64_t length) {
175 if (lseek64(fd, start, SEEK_SET) != start) {
176 PLOG(ERROR) << "Seek failed for zero overwrite";
177 return false;
178 }
179 char buf[BUFSIZ];
180 memset(buf, 0, sizeof(buf));
181 while (length > 0) {
182 size_t wlen = static_cast<size_t>(std::min(static_cast<off64_t>(sizeof(buf)), length));
183 auto written = write(fd, buf, wlen);
184 if (written < 1) {
185 PLOG(ERROR) << "Write of zeroes failed";
186 return false;
187 }
188 length -= written;
189 }
190 return true;
191}
192
Paul Crowley14c8c072018-09-18 13:30:21 -0700193} // namespace