blob: 4c1bb737511eda41106fa143dcef38363b572bd1 [file] [log] [blame]
Paul Crowleyf71ace32016-06-02 11:01:19 -07001/*
2 * Copyright (C) 2016 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 "EncryptInplace.h"
18
Paul Crowleyf71ace32016-06-02 11:01:19 -070019#include <ext4_utils/ext4.h>
20#include <ext4_utils/ext4_utils.h>
21#include <f2fs_sparseblock.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070022#include <fcntl.h>
23#include <inttypes.h>
24#include <stdint.h>
25#include <stdio.h>
26#include <sys/stat.h>
27#include <sys/types.h>
28#include <time.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070029
30#include <algorithm>
31
Paul Crowley772cc852018-02-01 09:53:27 -080032#include <android-base/logging.h>
33#include <android-base/properties.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070034
Paul Crowleyf71ace32016-06-02 11:01:19 -070035// FIXME horrible cut-and-paste code
Paul Crowley14c8c072018-09-18 13:30:21 -070036static inline int unix_read(int fd, void* buff, int len) {
Paul Crowleyf71ace32016-06-02 11:01:19 -070037 return TEMP_FAILURE_RETRY(read(fd, buff, len));
38}
39
Paul Crowley14c8c072018-09-18 13:30:21 -070040static inline int unix_write(int fd, const void* buff, int len) {
Paul Crowleyf71ace32016-06-02 11:01:19 -070041 return TEMP_FAILURE_RETRY(write(fd, buff, len));
42}
43
44#define CRYPT_SECTORS_PER_BUFSIZE (CRYPT_INPLACE_BUFSIZE / CRYPT_SECTOR_SIZE)
45
46/* aligned 32K writes tends to make flash happy.
47 * SD card association recommends it.
48 */
Paul Crowleyf71ace32016-06-02 11:01:19 -070049#define BLOCKS_AT_A_TIME 8
Paul Crowleyf71ace32016-06-02 11:01:19 -070050
Paul Crowley14c8c072018-09-18 13:30:21 -070051struct encryptGroupsData {
Paul Crowleyf71ace32016-06-02 11:01:19 -070052 int realfd;
53 int cryptofd;
Paul Crowleyf71ace32016-06-02 11:01:19 -070054 off64_t one_pct, cur_pct, new_pct;
Eric Biggersc01995e2020-11-03 14:11:00 -080055 off64_t blocks_already_done;
Paul Crowleyf71ace32016-06-02 11:01:19 -070056 off64_t used_blocks_already_done, tot_used_blocks;
Paul Lawrence236e5e82019-06-25 14:44:33 -070057 const char* real_blkdev;
58 const char* crypto_blkdev;
Paul Crowleyf71ace32016-06-02 11:01:19 -070059 int count;
60 off64_t offset;
61 char* buffer;
Paul Crowleyf71ace32016-06-02 11:01:19 -070062 time_t time_started;
63 int remaining_time;
Paul Crowley0fd26262018-01-30 09:48:19 -080064 bool set_progress_properties;
Paul Crowleyf71ace32016-06-02 11:01:19 -070065};
66
Paul Crowley14c8c072018-09-18 13:30:21 -070067static void update_progress(struct encryptGroupsData* data, int is_used) {
Paul Crowleyf71ace32016-06-02 11:01:19 -070068 data->blocks_already_done++;
69
70 if (is_used) {
71 data->used_blocks_already_done++;
72 }
73 if (data->tot_used_blocks) {
74 data->new_pct = data->used_blocks_already_done / data->one_pct;
75 } else {
76 data->new_pct = data->blocks_already_done / data->one_pct;
77 }
78
Paul Crowley0fd26262018-01-30 09:48:19 -080079 if (!data->set_progress_properties) return;
80
Paul Crowleyf71ace32016-06-02 11:01:19 -070081 if (data->new_pct > data->cur_pct) {
82 char buf[8];
83 data->cur_pct = data->new_pct;
84 snprintf(buf, sizeof(buf), "%" PRId64, data->cur_pct);
Paul Crowley772cc852018-02-01 09:53:27 -080085 android::base::SetProperty("vold.encrypt_progress", buf);
Paul Crowleyf71ace32016-06-02 11:01:19 -070086 }
87
88 if (data->cur_pct >= 5) {
89 struct timespec time_now;
90 if (clock_gettime(CLOCK_MONOTONIC, &time_now)) {
Paul Crowley772cc852018-02-01 09:53:27 -080091 LOG(WARNING) << "Error getting time";
Paul Crowleyf71ace32016-06-02 11:01:19 -070092 } else {
93 double elapsed_time = difftime(time_now.tv_sec, data->time_started);
Paul Crowley14c8c072018-09-18 13:30:21 -070094 off64_t remaining_blocks = data->tot_used_blocks - data->used_blocks_already_done;
95 int remaining_time =
96 (int)(elapsed_time * remaining_blocks / data->used_blocks_already_done);
Paul Crowleyf71ace32016-06-02 11:01:19 -070097
98 // Change time only if not yet set, lower, or a lot higher for
99 // best user experience
Paul Crowley14c8c072018-09-18 13:30:21 -0700100 if (data->remaining_time == -1 || remaining_time < data->remaining_time ||
101 remaining_time > data->remaining_time + 60) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700102 char buf[8];
103 snprintf(buf, sizeof(buf), "%d", remaining_time);
Paul Crowley772cc852018-02-01 09:53:27 -0800104 android::base::SetProperty("vold.encrypt_time_remaining", buf);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700105 data->remaining_time = remaining_time;
106 }
107 }
108 }
109}
110
Paul Crowley14c8c072018-09-18 13:30:21 -0700111static void log_progress(struct encryptGroupsData const* data, bool completed) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700112 // Precondition - if completed data = 0 else data != 0
113
114 // Track progress so we can skip logging blocks
115 static off64_t offset = -1;
116
117 // Need to close existing 'Encrypting from' log?
118 if (completed || (offset != -1 && data->offset != offset)) {
Paul Crowley772cc852018-02-01 09:53:27 -0800119 LOG(INFO) << "Encrypted to sector " << offset / info.block_size * CRYPT_SECTOR_SIZE;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700120 offset = -1;
121 }
122
123 // Need to start new 'Encrypting from' log?
124 if (!completed && offset != data->offset) {
Paul Crowley772cc852018-02-01 09:53:27 -0800125 LOG(INFO) << "Encrypting from sector " << data->offset / info.block_size * CRYPT_SECTOR_SIZE;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700126 }
127
128 // Update offset
129 if (!completed) {
130 offset = data->offset + (off64_t)data->count * info.block_size;
131 }
132}
133
Paul Crowley14c8c072018-09-18 13:30:21 -0700134static int flush_outstanding_data(struct encryptGroupsData* data) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700135 if (data->count == 0) {
136 return 0;
137 }
138
Sudheer Shanka4b6ca4e2018-09-21 10:54:54 -0700139 LOG(DEBUG) << "Copying " << data->count << " blocks at offset " << data->offset;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700140
Paul Crowley772cc852018-02-01 09:53:27 -0800141 if (pread64(data->realfd, data->buffer, info.block_size * data->count, data->offset) <= 0) {
142 LOG(ERROR) << "Error reading real_blkdev " << data->real_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700143 return -1;
144 }
145
Paul Crowley772cc852018-02-01 09:53:27 -0800146 if (pwrite64(data->cryptofd, data->buffer, info.block_size * data->count, data->offset) <= 0) {
147 LOG(ERROR) << "Error writing crypto_blkdev " << data->crypto_blkdev
148 << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700149 return -1;
150 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700151 log_progress(data, false);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700152 }
153
154 data->count = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700155 return 0;
156}
157
Paul Crowley14c8c072018-09-18 13:30:21 -0700158static int encrypt_groups(struct encryptGroupsData* data) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700159 unsigned int i;
Paul Crowley14c8c072018-09-18 13:30:21 -0700160 u8* block_bitmap = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700161 unsigned int block;
162 off64_t ret;
163 int rc = -1;
164
Paul Crowley14c8c072018-09-18 13:30:21 -0700165 data->buffer = (char*)malloc(info.block_size * BLOCKS_AT_A_TIME);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700166 if (!data->buffer) {
Paul Crowley772cc852018-02-01 09:53:27 -0800167 LOG(ERROR) << "Failed to allocate crypto buffer";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700168 goto errout;
169 }
170
Paul Crowley14c8c072018-09-18 13:30:21 -0700171 block_bitmap = (u8*)malloc(info.block_size);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700172 if (!block_bitmap) {
Paul Crowley772cc852018-02-01 09:53:27 -0800173 LOG(ERROR) << "failed to allocate block bitmap";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700174 goto errout;
175 }
176
177 for (i = 0; i < aux_info.groups; ++i) {
Paul Crowley772cc852018-02-01 09:53:27 -0800178 LOG(INFO) << "Encrypting group " << i;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700179
180 u32 first_block = aux_info.first_data_block + i * info.blocks_per_group;
Paul Crowley14c8c072018-09-18 13:30:21 -0700181 u32 block_count = std::min(info.blocks_per_group, (u32)(aux_info.len_blocks - first_block));
Paul Crowleyf71ace32016-06-02 11:01:19 -0700182
Paul Crowley14c8c072018-09-18 13:30:21 -0700183 off64_t offset = (u64)info.block_size * aux_info.bg_desc[i].bg_block_bitmap;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700184
185 ret = pread64(data->realfd, block_bitmap, info.block_size, offset);
186 if (ret != (int)info.block_size) {
Paul Crowley772cc852018-02-01 09:53:27 -0800187 LOG(ERROR) << "failed to read all of block group bitmap " << i;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700188 goto errout;
189 }
190
191 offset = (u64)info.block_size * first_block;
192
193 data->count = 0;
194
195 for (block = 0; block < block_count; block++) {
Will Shiu4ac43f02020-07-29 17:03:17 +0800196 int used;
197
198 if (aux_info.bg_desc[i].bg_flags & EXT4_BG_BLOCK_UNINIT) {
199 // In block groups with an uninitialized block bitmap, we only
200 // need to encrypt the backup superblock (if one is present).
201 used = (ext4_bg_has_super_block(i) && block < 1 + aux_info.bg_desc_blocks);
202 } else {
203 used = bitmap_get_bit(block_bitmap, block);
204 }
205
Paul Crowleyf71ace32016-06-02 11:01:19 -0700206 update_progress(data, used);
207 if (used) {
208 if (data->count == 0) {
209 data->offset = offset;
210 }
211 data->count++;
212 } else {
213 if (flush_outstanding_data(data)) {
214 goto errout;
215 }
216 }
217
218 offset += info.block_size;
219
220 /* Write data if we are aligned or buffer size reached */
Paul Crowley14c8c072018-09-18 13:30:21 -0700221 if (offset % (info.block_size * BLOCKS_AT_A_TIME) == 0 ||
222 data->count == BLOCKS_AT_A_TIME) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700223 if (flush_outstanding_data(data)) {
224 goto errout;
225 }
226 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700227 }
228 if (flush_outstanding_data(data)) {
229 goto errout;
230 }
231 }
232
Paul Crowleyf71ace32016-06-02 11:01:19 -0700233 rc = 0;
234
235errout:
236 log_progress(0, true);
237 free(data->buffer);
238 free(block_bitmap);
239 return rc;
240}
241
Paul Lawrence236e5e82019-06-25 14:44:33 -0700242static int cryptfs_enable_inplace_ext4(const char* crypto_blkdev, const char* real_blkdev,
Eric Biggersc01995e2020-11-03 14:11:00 -0800243 off64_t size, bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700244 u32 i;
245 struct encryptGroupsData data;
Paul Crowley14c8c072018-09-18 13:30:21 -0700246 int rc; // Can't initialize without causing warning -Wclobbered
Paul Crowleyf71ace32016-06-02 11:01:19 -0700247 int retries = RETRY_MOUNT_ATTEMPTS;
248 struct timespec time_started = {0};
249
Paul Crowleyf71ace32016-06-02 11:01:19 -0700250 memset(&data, 0, sizeof(data));
251 data.real_blkdev = real_blkdev;
252 data.crypto_blkdev = crypto_blkdev;
Paul Crowley0fd26262018-01-30 09:48:19 -0800253 data.set_progress_properties = set_progress_properties;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700254
Paul Crowley0fd26262018-01-30 09:48:19 -0800255 LOG(DEBUG) << "Opening" << real_blkdev;
Paul Crowley14c8c072018-09-18 13:30:21 -0700256 if ((data.realfd = open(real_blkdev, O_RDWR | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800257 PLOG(ERROR) << "Error opening real_blkdev " << real_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700258 rc = -1;
259 goto errout;
260 }
261
Paul Crowley0fd26262018-01-30 09:48:19 -0800262 LOG(DEBUG) << "Opening" << crypto_blkdev;
Eric Biggers69520d22020-11-03 14:11:01 -0800263 if ((data.cryptofd = open(crypto_blkdev, O_WRONLY | O_CLOEXEC)) < 0) {
264 PLOG(ERROR) << "Error opening crypto_blkdev " << crypto_blkdev << " for inplace encrypt";
265 rc = -1;
266 goto errout;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700267 }
268
Paul Crowley14c8c072018-09-18 13:30:21 -0700269 if (setjmp(setjmp_env)) { // NOLINT
Paul Crowley772cc852018-02-01 09:53:27 -0800270 LOG(ERROR) << "Reading ext4 extent caused an exception";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700271 rc = -1;
272 goto errout;
273 }
274
275 if (read_ext(data.realfd, 0) != 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800276 LOG(ERROR) << "Failed to read ext4 extent";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700277 rc = -1;
278 goto errout;
279 }
280
Eric Biggersc01995e2020-11-03 14:11:00 -0800281 data.blocks_already_done = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700282
Paul Crowley772cc852018-02-01 09:53:27 -0800283 LOG(INFO) << "Encrypting ext4 filesystem in place...";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700284
Eric Biggersc01995e2020-11-03 14:11:00 -0800285 data.tot_used_blocks = size / CRYPT_SECTORS_PER_BUFSIZE;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700286 for (i = 0; i < aux_info.groups; ++i) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700287 data.tot_used_blocks -= aux_info.bg_desc[i].bg_free_blocks_count;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700288 }
289
290 data.one_pct = data.tot_used_blocks / 100;
291 data.cur_pct = 0;
292
293 if (clock_gettime(CLOCK_MONOTONIC, &time_started)) {
Paul Crowley772cc852018-02-01 09:53:27 -0800294 LOG(WARNING) << "Error getting time at start";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700295 // Note - continue anyway - we'll run with 0
296 }
297 data.time_started = time_started.tv_sec;
298 data.remaining_time = -1;
299
300 rc = encrypt_groups(&data);
301 if (rc) {
Paul Crowley772cc852018-02-01 09:53:27 -0800302 LOG(ERROR) << "Error encrypting groups";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700303 goto errout;
304 }
305
Paul Crowleyf71ace32016-06-02 11:01:19 -0700306 rc = 0;
307
308errout:
309 close(data.realfd);
310 close(data.cryptofd);
311
312 return rc;
313}
314
Paul Crowley14c8c072018-09-18 13:30:21 -0700315static void log_progress_f2fs(u64 block, bool completed) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700316 // Precondition - if completed data = 0 else data != 0
317
318 // Track progress so we can skip logging blocks
319 static u64 last_block = (u64)-1;
320
321 // Need to close existing 'Encrypting from' log?
322 if (completed || (last_block != (u64)-1 && block != last_block + 1)) {
Paul Crowley772cc852018-02-01 09:53:27 -0800323 LOG(INFO) << "Encrypted to block " << last_block;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700324 last_block = -1;
325 }
326
327 // Need to start new 'Encrypting from' log?
328 if (!completed && (last_block == (u64)-1 || block != last_block + 1)) {
Paul Crowley772cc852018-02-01 09:53:27 -0800329 LOG(INFO) << "Encrypting from block " << block;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700330 }
331
332 // Update offset
333 if (!completed) {
334 last_block = block;
335 }
336}
337
Paul Crowley14c8c072018-09-18 13:30:21 -0700338static int encrypt_one_block_f2fs(u64 pos, void* data) {
339 struct encryptGroupsData* priv_dat = (struct encryptGroupsData*)data;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700340
341 priv_dat->blocks_already_done = pos - 1;
342 update_progress(priv_dat, 1);
343
344 off64_t offset = pos * CRYPT_INPLACE_BUFSIZE;
345
346 if (pread64(priv_dat->realfd, priv_dat->buffer, CRYPT_INPLACE_BUFSIZE, offset) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800347 LOG(ERROR) << "Error reading real_blkdev " << priv_dat->crypto_blkdev
348 << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700349 return -1;
350 }
351
352 if (pwrite64(priv_dat->cryptofd, priv_dat->buffer, CRYPT_INPLACE_BUFSIZE, offset) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800353 LOG(ERROR) << "Error writing crypto_blkdev " << priv_dat->crypto_blkdev
354 << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700355 return -1;
356 } else {
357 log_progress_f2fs(pos, false);
358 }
359
360 return 0;
361}
362
Paul Lawrence236e5e82019-06-25 14:44:33 -0700363static int cryptfs_enable_inplace_f2fs(const char* crypto_blkdev, const char* real_blkdev,
Eric Biggersc01995e2020-11-03 14:11:00 -0800364 off64_t size, bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700365 struct encryptGroupsData data;
Paul Crowley14c8c072018-09-18 13:30:21 -0700366 struct f2fs_info* f2fs_info = NULL;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700367 int rc = ENABLE_INPLACE_ERR_OTHER;
Denis Hsu1740eff2019-12-26 16:06:37 +0800368 struct timespec time_started = {0};
369
Paul Crowleyf71ace32016-06-02 11:01:19 -0700370 memset(&data, 0, sizeof(data));
371 data.real_blkdev = real_blkdev;
372 data.crypto_blkdev = crypto_blkdev;
Paul Crowley0fd26262018-01-30 09:48:19 -0800373 data.set_progress_properties = set_progress_properties;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700374 data.realfd = -1;
375 data.cryptofd = -1;
Paul Crowley14c8c072018-09-18 13:30:21 -0700376 if ((data.realfd = open64(real_blkdev, O_RDWR | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800377 PLOG(ERROR) << "Error opening real_blkdev " << real_blkdev << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700378 goto errout;
379 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700380 if ((data.cryptofd = open64(crypto_blkdev, O_WRONLY | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800381 PLOG(ERROR) << "Error opening crypto_blkdev " << crypto_blkdev
382 << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700383 goto errout;
384 }
385
386 f2fs_info = generate_f2fs_info(data.realfd);
Paul Crowley14c8c072018-09-18 13:30:21 -0700387 if (!f2fs_info) goto errout;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700388
Eric Biggersc01995e2020-11-03 14:11:00 -0800389 data.blocks_already_done = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700390
391 data.tot_used_blocks = get_num_blocks_used(f2fs_info);
392
393 data.one_pct = data.tot_used_blocks / 100;
394 data.cur_pct = 0;
Denis Hsu1740eff2019-12-26 16:06:37 +0800395 if (clock_gettime(CLOCK_MONOTONIC, &time_started)) {
396 LOG(WARNING) << "Error getting time at start";
397 // Note - continue anyway - we'll run with 0
398 }
399 data.time_started = time_started.tv_sec;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700400 data.remaining_time = -1;
401
Denis Hsu1740eff2019-12-26 16:06:37 +0800402
Paul Crowley14c8c072018-09-18 13:30:21 -0700403 data.buffer = (char*)malloc(f2fs_info->block_size);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700404 if (!data.buffer) {
Paul Crowley772cc852018-02-01 09:53:27 -0800405 LOG(ERROR) << "Failed to allocate crypto buffer";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700406 goto errout;
407 }
408
409 data.count = 0;
410
411 /* Currently, this either runs to completion, or hits a nonrecoverable error */
412 rc = run_on_used_blocks(data.blocks_already_done, f2fs_info, &encrypt_one_block_f2fs, &data);
413
414 if (rc) {
Paul Crowley772cc852018-02-01 09:53:27 -0800415 LOG(ERROR) << "Error in running over f2fs blocks";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700416 rc = ENABLE_INPLACE_ERR_OTHER;
417 goto errout;
418 }
419
Paul Crowleyf71ace32016-06-02 11:01:19 -0700420 rc = 0;
421
422errout:
Paul Crowley772cc852018-02-01 09:53:27 -0800423 if (rc) LOG(ERROR) << "Failed to encrypt f2fs filesystem on " << real_blkdev;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700424
425 log_progress_f2fs(0, true);
426 free(f2fs_info);
427 free(data.buffer);
428 close(data.realfd);
429 close(data.cryptofd);
430
431 return rc;
432}
433
Paul Lawrence236e5e82019-06-25 14:44:33 -0700434static int cryptfs_enable_inplace_full(const char* crypto_blkdev, const char* real_blkdev,
Eric Biggersc01995e2020-11-03 14:11:00 -0800435 off64_t size, bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700436 int realfd, cryptofd;
Paul Crowley14c8c072018-09-18 13:30:21 -0700437 char* buf[CRYPT_INPLACE_BUFSIZE];
Paul Crowleyf71ace32016-06-02 11:01:19 -0700438 int rc = ENABLE_INPLACE_ERR_OTHER;
439 off64_t numblocks, i, remainder;
440 off64_t one_pct, cur_pct, new_pct;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700441
Paul Crowley14c8c072018-09-18 13:30:21 -0700442 if ((realfd = open(real_blkdev, O_RDONLY | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800443 PLOG(ERROR) << "Error opening real_blkdev " << real_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700444 return ENABLE_INPLACE_ERR_OTHER;
445 }
446
Paul Crowley14c8c072018-09-18 13:30:21 -0700447 if ((cryptofd = open(crypto_blkdev, O_WRONLY | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800448 PLOG(ERROR) << "Error opening crypto_blkdev " << crypto_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700449 close(realfd);
Eric Biggers69520d22020-11-03 14:11:01 -0800450 return ENABLE_INPLACE_ERR_OTHER;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700451 }
452
453 /* This is pretty much a simple loop of reading 4K, and writing 4K.
454 * The size passed in is the number of 512 byte sectors in the filesystem.
455 * So compute the number of whole 4K blocks we should read/write,
456 * and the remainder.
457 */
458 numblocks = size / CRYPT_SECTORS_PER_BUFSIZE;
459 remainder = size % CRYPT_SECTORS_PER_BUFSIZE;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700460
Paul Crowley772cc852018-02-01 09:53:27 -0800461 LOG(ERROR) << "Encrypting filesystem in place...";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700462
Eric Biggersc01995e2020-11-03 14:11:00 -0800463 one_pct = numblocks / 100;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700464 cur_pct = 0;
465 /* process the majority of the filesystem in blocks */
Eric Biggersc01995e2020-11-03 14:11:00 -0800466 for (i = 0; i < numblocks; i++) {
467 new_pct = i / one_pct;
Paul Crowley0fd26262018-01-30 09:48:19 -0800468 if (set_progress_properties && new_pct > cur_pct) {
Greg Kaisere0691cc2018-12-18 12:34:07 -0800469 char property_buf[8];
Paul Crowleyf71ace32016-06-02 11:01:19 -0700470
471 cur_pct = new_pct;
Greg Kaisere0691cc2018-12-18 12:34:07 -0800472 snprintf(property_buf, sizeof(property_buf), "%" PRId64, cur_pct);
473 android::base::SetProperty("vold.encrypt_progress", property_buf);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700474 }
475 if (unix_read(realfd, buf, CRYPT_INPLACE_BUFSIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800476 PLOG(ERROR) << "Error reading real_blkdev " << real_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700477 goto errout;
478 }
479 if (unix_write(cryptofd, buf, CRYPT_INPLACE_BUFSIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800480 PLOG(ERROR) << "Error writing crypto_blkdev " << crypto_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700481 goto errout;
482 } else {
Paul Crowley772cc852018-02-01 09:53:27 -0800483 LOG(DEBUG) << "Encrypted " << CRYPT_SECTORS_PER_BUFSIZE << " block at "
484 << i * CRYPT_SECTORS_PER_BUFSIZE;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700485 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700486 }
487
488 /* Do any remaining sectors */
Paul Crowley14c8c072018-09-18 13:30:21 -0700489 for (i = 0; i < remainder; i++) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700490 if (unix_read(realfd, buf, CRYPT_SECTOR_SIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800491 LOG(ERROR) << "Error reading final sectors from real_blkdev " << real_blkdev
492 << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700493 goto errout;
494 }
495 if (unix_write(cryptofd, buf, CRYPT_SECTOR_SIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800496 LOG(ERROR) << "Error writing final sectors to crypto_blkdev " << crypto_blkdev
497 << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700498 goto errout;
499 } else {
Paul Crowley772cc852018-02-01 09:53:27 -0800500 LOG(INFO) << "Encrypted 1 block at next location";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700501 }
502 }
503
Paul Crowleyf71ace32016-06-02 11:01:19 -0700504 rc = 0;
505
506errout:
507 close(realfd);
508 close(cryptofd);
509
510 return rc;
511}
512
513/* returns on of the ENABLE_INPLACE_* return codes */
Paul Lawrence236e5e82019-06-25 14:44:33 -0700514int cryptfs_enable_inplace(const char* crypto_blkdev, const char* real_blkdev, off64_t size,
Eric Biggersc01995e2020-11-03 14:11:00 -0800515 bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700516 int rc_ext4, rc_f2fs, rc_full;
Paul Crowley0fd26262018-01-30 09:48:19 -0800517 LOG(DEBUG) << "cryptfs_enable_inplace(" << crypto_blkdev << ", " << real_blkdev << ", " << size
Paul Crowley0fd26262018-01-30 09:48:19 -0800518 << ", " << set_progress_properties << ")";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700519
520 /* TODO: identify filesystem type.
521 * As is, cryptfs_enable_inplace_ext4 will fail on an f2fs partition, and
522 * then we will drop down to cryptfs_enable_inplace_f2fs.
523 * */
Eric Biggersc01995e2020-11-03 14:11:00 -0800524 if ((rc_ext4 = cryptfs_enable_inplace_ext4(crypto_blkdev, real_blkdev, size,
Paul Crowley0fd26262018-01-30 09:48:19 -0800525 set_progress_properties)) == 0) {
526 LOG(DEBUG) << "cryptfs_enable_inplace_ext4 success";
527 return 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700528 }
Paul Crowley772cc852018-02-01 09:53:27 -0800529 LOG(DEBUG) << "cryptfs_enable_inplace_ext4()=" << rc_ext4;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700530
Eric Biggersc01995e2020-11-03 14:11:00 -0800531 if ((rc_f2fs = cryptfs_enable_inplace_f2fs(crypto_blkdev, real_blkdev, size,
Paul Crowley0fd26262018-01-30 09:48:19 -0800532 set_progress_properties)) == 0) {
533 LOG(DEBUG) << "cryptfs_enable_inplace_f2fs success";
534 return 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700535 }
Paul Crowley772cc852018-02-01 09:53:27 -0800536 LOG(DEBUG) << "cryptfs_enable_inplace_f2fs()=" << rc_f2fs;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700537
Paul Crowley0fd26262018-01-30 09:48:19 -0800538 rc_full =
Eric Biggersc01995e2020-11-03 14:11:00 -0800539 cryptfs_enable_inplace_full(crypto_blkdev, real_blkdev, size, set_progress_properties);
Paul Crowley772cc852018-02-01 09:53:27 -0800540 LOG(DEBUG) << "cryptfs_enable_inplace_full()=" << rc_full;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700541 return rc_full;
542}