blob: 471daefda09ff986907a06874a7a5c3d31bf7f90 [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
Eric Biggers7e70d692020-11-03 14:11:01 -0800158static uint64_t first_block_in_group(uint32_t group) {
159 return aux_info.first_data_block + (group * (uint64_t)info.blocks_per_group);
160}
161
162static uint32_t num_blocks_in_group(uint32_t group) {
163 uint64_t remaining = aux_info.len_blocks - first_block_in_group(group);
164 return std::min<uint64_t>(info.blocks_per_group, remaining);
165}
166
167// In block groups with an uninitialized block bitmap, we only need to encrypt
168// the backup superblock and the block group descriptors (if they are present).
169static uint32_t num_base_meta_blocks_in_group(uint64_t group) {
170 if (!ext4_bg_has_super_block(group)) return 0;
171 return 1 + aux_info.bg_desc_blocks;
172}
173
Paul Crowley14c8c072018-09-18 13:30:21 -0700174static int encrypt_groups(struct encryptGroupsData* data) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700175 unsigned int i;
Paul Crowley14c8c072018-09-18 13:30:21 -0700176 u8* block_bitmap = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700177 unsigned int block;
178 off64_t ret;
179 int rc = -1;
180
Paul Crowley14c8c072018-09-18 13:30:21 -0700181 data->buffer = (char*)malloc(info.block_size * BLOCKS_AT_A_TIME);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700182 if (!data->buffer) {
Paul Crowley772cc852018-02-01 09:53:27 -0800183 LOG(ERROR) << "Failed to allocate crypto buffer";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700184 goto errout;
185 }
186
Paul Crowley14c8c072018-09-18 13:30:21 -0700187 block_bitmap = (u8*)malloc(info.block_size);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700188 if (!block_bitmap) {
Paul Crowley772cc852018-02-01 09:53:27 -0800189 LOG(ERROR) << "failed to allocate block bitmap";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700190 goto errout;
191 }
192
193 for (i = 0; i < aux_info.groups; ++i) {
Paul Crowley772cc852018-02-01 09:53:27 -0800194 LOG(INFO) << "Encrypting group " << i;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700195
Eric Biggers7e70d692020-11-03 14:11:01 -0800196 u32 block_count = num_blocks_in_group(i);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700197
Paul Crowley14c8c072018-09-18 13:30:21 -0700198 off64_t offset = (u64)info.block_size * aux_info.bg_desc[i].bg_block_bitmap;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700199
200 ret = pread64(data->realfd, block_bitmap, info.block_size, offset);
201 if (ret != (int)info.block_size) {
Paul Crowley772cc852018-02-01 09:53:27 -0800202 LOG(ERROR) << "failed to read all of block group bitmap " << i;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700203 goto errout;
204 }
205
Eric Biggers7e70d692020-11-03 14:11:01 -0800206 offset = (u64)info.block_size * first_block_in_group(i);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700207
208 data->count = 0;
209
210 for (block = 0; block < block_count; block++) {
Will Shiu4ac43f02020-07-29 17:03:17 +0800211 int used;
212
Eric Biggers7e70d692020-11-03 14:11:01 -0800213 if (aux_info.bg_desc[i].bg_flags & EXT4_BG_BLOCK_UNINIT)
214 used = (block < num_base_meta_blocks_in_group(i));
215 else
Will Shiu4ac43f02020-07-29 17:03:17 +0800216 used = bitmap_get_bit(block_bitmap, block);
Will Shiu4ac43f02020-07-29 17:03:17 +0800217
Paul Crowleyf71ace32016-06-02 11:01:19 -0700218 update_progress(data, used);
219 if (used) {
220 if (data->count == 0) {
221 data->offset = offset;
222 }
223 data->count++;
224 } else {
225 if (flush_outstanding_data(data)) {
226 goto errout;
227 }
228 }
229
230 offset += info.block_size;
231
232 /* Write data if we are aligned or buffer size reached */
Paul Crowley14c8c072018-09-18 13:30:21 -0700233 if (offset % (info.block_size * BLOCKS_AT_A_TIME) == 0 ||
234 data->count == BLOCKS_AT_A_TIME) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700235 if (flush_outstanding_data(data)) {
236 goto errout;
237 }
238 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700239 }
240 if (flush_outstanding_data(data)) {
241 goto errout;
242 }
243 }
244
Paul Crowleyf71ace32016-06-02 11:01:19 -0700245 rc = 0;
246
247errout:
248 log_progress(0, true);
249 free(data->buffer);
250 free(block_bitmap);
251 return rc;
252}
253
Paul Lawrence236e5e82019-06-25 14:44:33 -0700254static int cryptfs_enable_inplace_ext4(const char* crypto_blkdev, const char* real_blkdev,
Eric Biggersc01995e2020-11-03 14:11:00 -0800255 off64_t size, bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700256 u32 i;
257 struct encryptGroupsData data;
Paul Crowley14c8c072018-09-18 13:30:21 -0700258 int rc; // Can't initialize without causing warning -Wclobbered
Paul Crowleyf71ace32016-06-02 11:01:19 -0700259 int retries = RETRY_MOUNT_ATTEMPTS;
260 struct timespec time_started = {0};
261
Paul Crowleyf71ace32016-06-02 11:01:19 -0700262 memset(&data, 0, sizeof(data));
263 data.real_blkdev = real_blkdev;
264 data.crypto_blkdev = crypto_blkdev;
Paul Crowley0fd26262018-01-30 09:48:19 -0800265 data.set_progress_properties = set_progress_properties;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700266
Paul Crowley0fd26262018-01-30 09:48:19 -0800267 LOG(DEBUG) << "Opening" << real_blkdev;
Paul Crowley14c8c072018-09-18 13:30:21 -0700268 if ((data.realfd = open(real_blkdev, O_RDWR | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800269 PLOG(ERROR) << "Error opening real_blkdev " << real_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700270 rc = -1;
271 goto errout;
272 }
273
Paul Crowley0fd26262018-01-30 09:48:19 -0800274 LOG(DEBUG) << "Opening" << crypto_blkdev;
Eric Biggers69520d22020-11-03 14:11:01 -0800275 if ((data.cryptofd = open(crypto_blkdev, O_WRONLY | O_CLOEXEC)) < 0) {
276 PLOG(ERROR) << "Error opening crypto_blkdev " << crypto_blkdev << " for inplace encrypt";
277 rc = -1;
278 goto errout;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700279 }
280
Paul Crowley14c8c072018-09-18 13:30:21 -0700281 if (setjmp(setjmp_env)) { // NOLINT
Paul Crowley772cc852018-02-01 09:53:27 -0800282 LOG(ERROR) << "Reading ext4 extent caused an exception";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700283 rc = -1;
284 goto errout;
285 }
286
287 if (read_ext(data.realfd, 0) != 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800288 LOG(ERROR) << "Failed to read ext4 extent";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700289 rc = -1;
290 goto errout;
291 }
292
Eric Biggersc01995e2020-11-03 14:11:00 -0800293 data.blocks_already_done = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700294
Paul Crowley772cc852018-02-01 09:53:27 -0800295 LOG(INFO) << "Encrypting ext4 filesystem in place...";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700296
Eric Biggers7e70d692020-11-03 14:11:01 -0800297 data.tot_used_blocks = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700298 for (i = 0; i < aux_info.groups; ++i) {
Eric Biggers7e70d692020-11-03 14:11:01 -0800299 if (aux_info.bg_desc[i].bg_flags & EXT4_BG_BLOCK_UNINIT)
300 data.tot_used_blocks += num_base_meta_blocks_in_group(i);
301 else
302 data.tot_used_blocks +=
303 (num_blocks_in_group(i) - aux_info.bg_desc[i].bg_free_blocks_count);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700304 }
305
306 data.one_pct = data.tot_used_blocks / 100;
307 data.cur_pct = 0;
308
309 if (clock_gettime(CLOCK_MONOTONIC, &time_started)) {
Paul Crowley772cc852018-02-01 09:53:27 -0800310 LOG(WARNING) << "Error getting time at start";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700311 // Note - continue anyway - we'll run with 0
312 }
313 data.time_started = time_started.tv_sec;
314 data.remaining_time = -1;
315
316 rc = encrypt_groups(&data);
317 if (rc) {
Paul Crowley772cc852018-02-01 09:53:27 -0800318 LOG(ERROR) << "Error encrypting groups";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700319 goto errout;
320 }
321
Paul Crowleyf71ace32016-06-02 11:01:19 -0700322 rc = 0;
323
324errout:
325 close(data.realfd);
326 close(data.cryptofd);
327
328 return rc;
329}
330
Paul Crowley14c8c072018-09-18 13:30:21 -0700331static void log_progress_f2fs(u64 block, bool completed) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700332 // Precondition - if completed data = 0 else data != 0
333
334 // Track progress so we can skip logging blocks
335 static u64 last_block = (u64)-1;
336
337 // Need to close existing 'Encrypting from' log?
338 if (completed || (last_block != (u64)-1 && block != last_block + 1)) {
Paul Crowley772cc852018-02-01 09:53:27 -0800339 LOG(INFO) << "Encrypted to block " << last_block;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700340 last_block = -1;
341 }
342
343 // Need to start new 'Encrypting from' log?
344 if (!completed && (last_block == (u64)-1 || block != last_block + 1)) {
Paul Crowley772cc852018-02-01 09:53:27 -0800345 LOG(INFO) << "Encrypting from block " << block;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700346 }
347
348 // Update offset
349 if (!completed) {
350 last_block = block;
351 }
352}
353
Paul Crowley14c8c072018-09-18 13:30:21 -0700354static int encrypt_one_block_f2fs(u64 pos, void* data) {
355 struct encryptGroupsData* priv_dat = (struct encryptGroupsData*)data;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700356
357 priv_dat->blocks_already_done = pos - 1;
358 update_progress(priv_dat, 1);
359
360 off64_t offset = pos * CRYPT_INPLACE_BUFSIZE;
361
362 if (pread64(priv_dat->realfd, priv_dat->buffer, CRYPT_INPLACE_BUFSIZE, offset) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800363 LOG(ERROR) << "Error reading real_blkdev " << priv_dat->crypto_blkdev
364 << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700365 return -1;
366 }
367
368 if (pwrite64(priv_dat->cryptofd, priv_dat->buffer, CRYPT_INPLACE_BUFSIZE, offset) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800369 LOG(ERROR) << "Error writing crypto_blkdev " << priv_dat->crypto_blkdev
370 << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700371 return -1;
372 } else {
373 log_progress_f2fs(pos, false);
374 }
375
376 return 0;
377}
378
Paul Lawrence236e5e82019-06-25 14:44:33 -0700379static int cryptfs_enable_inplace_f2fs(const char* crypto_blkdev, const char* real_blkdev,
Eric Biggersc01995e2020-11-03 14:11:00 -0800380 off64_t size, bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700381 struct encryptGroupsData data;
Paul Crowley14c8c072018-09-18 13:30:21 -0700382 struct f2fs_info* f2fs_info = NULL;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700383 int rc = ENABLE_INPLACE_ERR_OTHER;
Denis Hsu1740eff2019-12-26 16:06:37 +0800384 struct timespec time_started = {0};
385
Paul Crowleyf71ace32016-06-02 11:01:19 -0700386 memset(&data, 0, sizeof(data));
387 data.real_blkdev = real_blkdev;
388 data.crypto_blkdev = crypto_blkdev;
Paul Crowley0fd26262018-01-30 09:48:19 -0800389 data.set_progress_properties = set_progress_properties;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700390 data.realfd = -1;
391 data.cryptofd = -1;
Paul Crowley14c8c072018-09-18 13:30:21 -0700392 if ((data.realfd = open64(real_blkdev, O_RDWR | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800393 PLOG(ERROR) << "Error opening real_blkdev " << real_blkdev << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700394 goto errout;
395 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700396 if ((data.cryptofd = open64(crypto_blkdev, O_WRONLY | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800397 PLOG(ERROR) << "Error opening crypto_blkdev " << crypto_blkdev
398 << " for f2fs inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700399 goto errout;
400 }
401
402 f2fs_info = generate_f2fs_info(data.realfd);
Paul Crowley14c8c072018-09-18 13:30:21 -0700403 if (!f2fs_info) goto errout;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700404
Eric Biggersc01995e2020-11-03 14:11:00 -0800405 data.blocks_already_done = 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700406
407 data.tot_used_blocks = get_num_blocks_used(f2fs_info);
408
409 data.one_pct = data.tot_used_blocks / 100;
410 data.cur_pct = 0;
Denis Hsu1740eff2019-12-26 16:06:37 +0800411 if (clock_gettime(CLOCK_MONOTONIC, &time_started)) {
412 LOG(WARNING) << "Error getting time at start";
413 // Note - continue anyway - we'll run with 0
414 }
415 data.time_started = time_started.tv_sec;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700416 data.remaining_time = -1;
417
Denis Hsu1740eff2019-12-26 16:06:37 +0800418
Paul Crowley14c8c072018-09-18 13:30:21 -0700419 data.buffer = (char*)malloc(f2fs_info->block_size);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700420 if (!data.buffer) {
Paul Crowley772cc852018-02-01 09:53:27 -0800421 LOG(ERROR) << "Failed to allocate crypto buffer";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700422 goto errout;
423 }
424
425 data.count = 0;
426
427 /* Currently, this either runs to completion, or hits a nonrecoverable error */
428 rc = run_on_used_blocks(data.blocks_already_done, f2fs_info, &encrypt_one_block_f2fs, &data);
429
430 if (rc) {
Paul Crowley772cc852018-02-01 09:53:27 -0800431 LOG(ERROR) << "Error in running over f2fs blocks";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700432 rc = ENABLE_INPLACE_ERR_OTHER;
433 goto errout;
434 }
435
Paul Crowleyf71ace32016-06-02 11:01:19 -0700436 rc = 0;
437
438errout:
Paul Crowley772cc852018-02-01 09:53:27 -0800439 if (rc) LOG(ERROR) << "Failed to encrypt f2fs filesystem on " << real_blkdev;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700440
441 log_progress_f2fs(0, true);
Eric Biggersb3ba0872020-11-03 14:11:01 -0800442 free_f2fs_info(f2fs_info);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700443 free(data.buffer);
444 close(data.realfd);
445 close(data.cryptofd);
446
447 return rc;
448}
449
Paul Lawrence236e5e82019-06-25 14:44:33 -0700450static int cryptfs_enable_inplace_full(const char* crypto_blkdev, const char* real_blkdev,
Eric Biggersc01995e2020-11-03 14:11:00 -0800451 off64_t size, bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700452 int realfd, cryptofd;
Paul Crowley14c8c072018-09-18 13:30:21 -0700453 char* buf[CRYPT_INPLACE_BUFSIZE];
Paul Crowleyf71ace32016-06-02 11:01:19 -0700454 int rc = ENABLE_INPLACE_ERR_OTHER;
455 off64_t numblocks, i, remainder;
456 off64_t one_pct, cur_pct, new_pct;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700457
Paul Crowley14c8c072018-09-18 13:30:21 -0700458 if ((realfd = open(real_blkdev, O_RDONLY | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800459 PLOG(ERROR) << "Error opening real_blkdev " << real_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700460 return ENABLE_INPLACE_ERR_OTHER;
461 }
462
Paul Crowley14c8c072018-09-18 13:30:21 -0700463 if ((cryptofd = open(crypto_blkdev, O_WRONLY | O_CLOEXEC)) < 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800464 PLOG(ERROR) << "Error opening crypto_blkdev " << crypto_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700465 close(realfd);
Eric Biggers69520d22020-11-03 14:11:01 -0800466 return ENABLE_INPLACE_ERR_OTHER;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700467 }
468
469 /* This is pretty much a simple loop of reading 4K, and writing 4K.
470 * The size passed in is the number of 512 byte sectors in the filesystem.
471 * So compute the number of whole 4K blocks we should read/write,
472 * and the remainder.
473 */
474 numblocks = size / CRYPT_SECTORS_PER_BUFSIZE;
475 remainder = size % CRYPT_SECTORS_PER_BUFSIZE;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700476
Paul Crowley772cc852018-02-01 09:53:27 -0800477 LOG(ERROR) << "Encrypting filesystem in place...";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700478
Eric Biggersc01995e2020-11-03 14:11:00 -0800479 one_pct = numblocks / 100;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700480 cur_pct = 0;
481 /* process the majority of the filesystem in blocks */
Eric Biggersc01995e2020-11-03 14:11:00 -0800482 for (i = 0; i < numblocks; i++) {
483 new_pct = i / one_pct;
Paul Crowley0fd26262018-01-30 09:48:19 -0800484 if (set_progress_properties && new_pct > cur_pct) {
Greg Kaisere0691cc2018-12-18 12:34:07 -0800485 char property_buf[8];
Paul Crowleyf71ace32016-06-02 11:01:19 -0700486
487 cur_pct = new_pct;
Greg Kaisere0691cc2018-12-18 12:34:07 -0800488 snprintf(property_buf, sizeof(property_buf), "%" PRId64, cur_pct);
489 android::base::SetProperty("vold.encrypt_progress", property_buf);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700490 }
491 if (unix_read(realfd, buf, CRYPT_INPLACE_BUFSIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800492 PLOG(ERROR) << "Error reading real_blkdev " << real_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700493 goto errout;
494 }
495 if (unix_write(cryptofd, buf, CRYPT_INPLACE_BUFSIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800496 PLOG(ERROR) << "Error writing crypto_blkdev " << crypto_blkdev << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700497 goto errout;
498 } else {
Paul Crowley772cc852018-02-01 09:53:27 -0800499 LOG(DEBUG) << "Encrypted " << CRYPT_SECTORS_PER_BUFSIZE << " block at "
500 << i * CRYPT_SECTORS_PER_BUFSIZE;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700501 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700502 }
503
504 /* Do any remaining sectors */
Paul Crowley14c8c072018-09-18 13:30:21 -0700505 for (i = 0; i < remainder; i++) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700506 if (unix_read(realfd, buf, CRYPT_SECTOR_SIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800507 LOG(ERROR) << "Error reading final sectors from real_blkdev " << real_blkdev
508 << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700509 goto errout;
510 }
511 if (unix_write(cryptofd, buf, CRYPT_SECTOR_SIZE) <= 0) {
Paul Crowley772cc852018-02-01 09:53:27 -0800512 LOG(ERROR) << "Error writing final sectors to crypto_blkdev " << crypto_blkdev
513 << " for inplace encrypt";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700514 goto errout;
515 } else {
Paul Crowley772cc852018-02-01 09:53:27 -0800516 LOG(INFO) << "Encrypted 1 block at next location";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700517 }
518 }
519
Paul Crowleyf71ace32016-06-02 11:01:19 -0700520 rc = 0;
521
522errout:
523 close(realfd);
524 close(cryptofd);
525
526 return rc;
527}
528
529/* returns on of the ENABLE_INPLACE_* return codes */
Paul Lawrence236e5e82019-06-25 14:44:33 -0700530int cryptfs_enable_inplace(const char* crypto_blkdev, const char* real_blkdev, off64_t size,
Eric Biggersc01995e2020-11-03 14:11:00 -0800531 bool set_progress_properties) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700532 int rc_ext4, rc_f2fs, rc_full;
Paul Crowley0fd26262018-01-30 09:48:19 -0800533 LOG(DEBUG) << "cryptfs_enable_inplace(" << crypto_blkdev << ", " << real_blkdev << ", " << size
Paul Crowley0fd26262018-01-30 09:48:19 -0800534 << ", " << set_progress_properties << ")";
Paul Crowleyf71ace32016-06-02 11:01:19 -0700535
536 /* TODO: identify filesystem type.
537 * As is, cryptfs_enable_inplace_ext4 will fail on an f2fs partition, and
538 * then we will drop down to cryptfs_enable_inplace_f2fs.
539 * */
Eric Biggersc01995e2020-11-03 14:11:00 -0800540 if ((rc_ext4 = cryptfs_enable_inplace_ext4(crypto_blkdev, real_blkdev, size,
Paul Crowley0fd26262018-01-30 09:48:19 -0800541 set_progress_properties)) == 0) {
542 LOG(DEBUG) << "cryptfs_enable_inplace_ext4 success";
543 return 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700544 }
Paul Crowley772cc852018-02-01 09:53:27 -0800545 LOG(DEBUG) << "cryptfs_enable_inplace_ext4()=" << rc_ext4;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700546
Eric Biggersc01995e2020-11-03 14:11:00 -0800547 if ((rc_f2fs = cryptfs_enable_inplace_f2fs(crypto_blkdev, real_blkdev, size,
Paul Crowley0fd26262018-01-30 09:48:19 -0800548 set_progress_properties)) == 0) {
549 LOG(DEBUG) << "cryptfs_enable_inplace_f2fs success";
550 return 0;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700551 }
Paul Crowley772cc852018-02-01 09:53:27 -0800552 LOG(DEBUG) << "cryptfs_enable_inplace_f2fs()=" << rc_f2fs;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700553
Paul Crowley0fd26262018-01-30 09:48:19 -0800554 rc_full =
Eric Biggersc01995e2020-11-03 14:11:00 -0800555 cryptfs_enable_inplace_full(crypto_blkdev, real_blkdev, size, set_progress_properties);
Paul Crowley772cc852018-02-01 09:53:27 -0800556 LOG(DEBUG) << "cryptfs_enable_inplace_full()=" << rc_full;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700557 return rc_full;
558}