1 /*
2 * pass1.c -- pass #1 of e2fsck: sequential scan of the inode table
3 *
4 * Copyright (C) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
10 *
11 * Pass 1 of e2fsck iterates over all the inodes in the filesystems,
12 * and applies the following tests to each inode:
13 *
14 * - The mode field of the inode must be legal.
15 * - The size and block count fields of the inode are correct.
16 * - A data block must not be used by another inode
17 *
18 * Pass 1 also gathers the collects the following information:
19 *
20 * - A bitmap of which inodes are in use. (inode_used_map)
21 * - A bitmap of which inodes are directories. (inode_dir_map)
22 * - A bitmap of which inodes are regular files. (inode_reg_map)
23 * - A bitmap of which inodes have bad fields. (inode_bad_map)
24 * - A bitmap of which inodes are in bad blocks. (inode_bb_map)
25 * - A bitmap of which inodes are imagic inodes. (inode_imagic_map)
26 * - A bitmap of which blocks are in use. (block_found_map)
27 * - A bitmap of which blocks are in use by two inodes (block_dup_map)
28 * - The data blocks of the directory inodes. (dir_map)
29 * - Ref counts for ea_inodes. (ea_inode_refs)
30 *
31 * Pass 1 is designed to stash away enough information so that the
32 * other passes should not need to read in the inode information
33 * during the normal course of a filesystem check. (Although if an
34 * inconsistency is detected, other passes may need to read in an
35 * inode to fix it.)
36 *
37 * Note that pass 1B will be invoked if there are any duplicate blocks
38 * found.
39 */
40
41 #define _GNU_SOURCE 1 /* get strnlen() */
42 #include "config.h"
43 #include <string.h>
44 #include <time.h>
45 #ifdef HAVE_ERRNO_H
46 #include <errno.h>
47 #endif
48
49 #include "e2fsck.h"
50 #include <ext2fs/ext2_ext_attr.h>
51 #include <e2p/e2p.h>
52
53 #include "problem.h"
54
55 #ifdef NO_INLINE_FUNCS
56 #define _INLINE_
57 #else
58 #define _INLINE_ inline
59 #endif
60
61 #undef DEBUG
62
63 struct ea_quota {
64 blk64_t blocks;
65 __u64 inodes;
66 };
67
68 static int process_block(ext2_filsys fs, blk64_t *blocknr,
69 e2_blkcnt_t blockcnt, blk64_t ref_blk,
70 int ref_offset, void *priv_data);
71 static int process_bad_block(ext2_filsys fs, blk64_t *block_nr,
72 e2_blkcnt_t blockcnt, blk64_t ref_blk,
73 int ref_offset, void *priv_data);
74 static void check_blocks(e2fsck_t ctx, struct problem_context *pctx,
75 char *block_buf,
76 const struct ea_quota *ea_ibody_quota);
77 static void mark_table_blocks(e2fsck_t ctx);
78 static void alloc_bb_map(e2fsck_t ctx);
79 static void alloc_imagic_map(e2fsck_t ctx);
80 static void mark_inode_bad(e2fsck_t ctx, ino_t ino);
81 static void add_encrypted_dir(e2fsck_t ctx, ino_t ino);
82 static void add_casefolded_dir(e2fsck_t ctx, ino_t ino);
83 static void handle_fs_bad_blocks(e2fsck_t ctx);
84 static void process_inodes(e2fsck_t ctx, char *block_buf);
85 static EXT2_QSORT_TYPE process_inode_cmp(const void *a, const void *b);
86 static errcode_t scan_callback(ext2_filsys fs, ext2_inode_scan scan,
87 dgrp_t group, void * priv_data);
88 static void adjust_extattr_refcount(e2fsck_t ctx, ext2_refcount_t refcount,
89 char *block_buf, int adjust_sign);
90 /* static char *describe_illegal_block(ext2_filsys fs, blk64_t block); */
91
92 struct process_block_struct {
93 ext2_ino_t ino;
94 unsigned is_dir:1, is_reg:1, clear:1, suppress:1,
95 fragmented:1, compressed:1, bbcheck:1,
96 inode_modified:1;
97 blk64_t num_blocks;
98 blk64_t max_blocks;
99 blk64_t last_block;
100 e2_blkcnt_t last_init_lblock;
101 e2_blkcnt_t last_db_block;
102 int num_illegal_blocks;
103 blk64_t previous_block;
104 struct ext2_inode *inode;
105 struct problem_context *pctx;
106 ext2fs_block_bitmap fs_meta_blocks;
107 e2fsck_t ctx;
108 blk64_t next_lblock;
109 struct extent_tree_info eti;
110 };
111
112 struct process_inode_block {
113 ext2_ino_t ino;
114 struct ea_quota ea_ibody_quota;
115 struct ext2_inode_large inode;
116 };
117
118 struct scan_callback_struct {
119 e2fsck_t ctx;
120 char *block_buf;
121 };
122
123 /*
124 * For the inodes to process list.
125 */
126 static struct process_inode_block *inodes_to_process;
127 static int process_inode_count;
128
129 static __u64 ext2_max_sizes[EXT2_MAX_BLOCK_LOG_SIZE -
130 EXT2_MIN_BLOCK_LOG_SIZE + 1];
131
132 /*
133 * Free all memory allocated by pass1 in preparation for restarting
134 * things.
135 */
unwind_pass1(ext2_filsys fs EXT2FS_ATTR ((unused)))136 static void unwind_pass1(ext2_filsys fs EXT2FS_ATTR((unused)))
137 {
138 ext2fs_free_mem(&inodes_to_process);
139 inodes_to_process = 0;
140 }
141
142 /*
143 * Check to make sure a device inode is real. Returns 1 if the device
144 * checks out, 0 if not.
145 *
146 * Note: this routine is now also used to check FIFO's and Sockets,
147 * since they have the same requirement; the i_block fields should be
148 * zero.
149 */
e2fsck_pass1_check_device_inode(ext2_filsys fs EXT2FS_ATTR ((unused)),struct ext2_inode * inode)150 int e2fsck_pass1_check_device_inode(ext2_filsys fs EXT2FS_ATTR((unused)),
151 struct ext2_inode *inode)
152 {
153 int i;
154
155 /*
156 * If the index or extents flag is set, then this is a bogus
157 * device/fifo/socket
158 */
159 if (inode->i_flags & (EXT2_INDEX_FL | EXT4_EXTENTS_FL))
160 return 0;
161
162 /*
163 * We should be able to do the test below all the time, but
164 * because the kernel doesn't forcibly clear the device
165 * inode's additional i_block fields, there are some rare
166 * occasions when a legitimate device inode will have non-zero
167 * additional i_block fields. So for now, we only complain
168 * when the immutable flag is set, which should never happen
169 * for devices. (And that's when the problem is caused, since
170 * you can't set or clear immutable flags for devices.) Once
171 * the kernel has been fixed we can change this...
172 */
173 if (inode->i_flags & (EXT2_IMMUTABLE_FL | EXT2_APPEND_FL)) {
174 for (i=4; i < EXT2_N_BLOCKS; i++)
175 if (inode->i_block[i])
176 return 0;
177 }
178 return 1;
179 }
180
181 /*
182 * Check to make sure a symlink inode is real. Returns 1 if the symlink
183 * checks out, 0 if not.
184 */
e2fsck_pass1_check_symlink(ext2_filsys fs,ext2_ino_t ino,struct ext2_inode * inode,char * buf)185 int e2fsck_pass1_check_symlink(ext2_filsys fs, ext2_ino_t ino,
186 struct ext2_inode *inode, char *buf)
187 {
188 unsigned int buflen;
189 unsigned int len;
190
191 if ((inode->i_size_high || inode->i_size == 0) ||
192 (inode->i_flags & EXT2_INDEX_FL))
193 return 0;
194
195 if (inode->i_flags & EXT4_INLINE_DATA_FL) {
196 size_t inline_size;
197
198 if (inode->i_flags & EXT4_EXTENTS_FL)
199 return 0;
200 if (ext2fs_inline_data_size(fs, ino, &inline_size))
201 return 0;
202 if (inode->i_size != inline_size)
203 return 0;
204
205 return 1;
206 }
207
208 if (ext2fs_is_fast_symlink(inode)) {
209 if (inode->i_flags & EXT4_EXTENTS_FL)
210 return 0;
211 buf = (char *)inode->i_block;
212 buflen = sizeof(inode->i_block);
213 } else {
214 ext2_extent_handle_t handle;
215 struct ext2_extent_info info;
216 struct ext2fs_extent extent;
217 blk64_t blk;
218 int i;
219
220 if (inode->i_flags & EXT4_EXTENTS_FL) {
221 if (ext2fs_extent_open2(fs, ino, inode, &handle))
222 return 0;
223 if (ext2fs_extent_get_info(handle, &info) ||
224 (info.num_entries != 1) ||
225 (info.max_depth != 0)) {
226 ext2fs_extent_free(handle);
227 return 0;
228 }
229 if (ext2fs_extent_get(handle, EXT2_EXTENT_ROOT,
230 &extent) ||
231 (extent.e_lblk != 0) ||
232 (extent.e_len != 1)) {
233 ext2fs_extent_free(handle);
234 return 0;
235 }
236 blk = extent.e_pblk;
237 ext2fs_extent_free(handle);
238 } else {
239 blk = inode->i_block[0];
240
241 for (i = 1; i < EXT2_N_BLOCKS; i++)
242 if (inode->i_block[i])
243 return 0;
244 }
245
246 if (blk < fs->super->s_first_data_block ||
247 blk >= ext2fs_blocks_count(fs->super))
248 return 0;
249
250 if (io_channel_read_blk64(fs->io, blk, 1, buf))
251 return 0;
252
253 buflen = fs->blocksize;
254 }
255
256 if (inode->i_flags & EXT4_ENCRYPT_FL)
257 len = ext2fs_le16_to_cpu(*(__u16 *)buf) + 2;
258 else
259 len = strnlen(buf, buflen);
260
261 if (len >= buflen)
262 return 0;
263
264 if (len != inode->i_size)
265 return 0;
266 return 1;
267 }
268
269 /*
270 * If the extents or inlinedata flags are set on the inode, offer to clear 'em.
271 */
272 #define BAD_SPECIAL_FLAGS (EXT4_EXTENTS_FL | EXT4_INLINE_DATA_FL)
check_extents_inlinedata(e2fsck_t ctx,struct problem_context * pctx)273 static void check_extents_inlinedata(e2fsck_t ctx,
274 struct problem_context *pctx)
275 {
276 if (!(pctx->inode->i_flags & BAD_SPECIAL_FLAGS))
277 return;
278
279 if (!fix_problem(ctx, PR_1_SPECIAL_EXTENTS_IDATA, pctx))
280 return;
281
282 pctx->inode->i_flags &= ~BAD_SPECIAL_FLAGS;
283 e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
284 }
285 #undef BAD_SPECIAL_FLAGS
286
287 /*
288 * If the immutable (or append-only) flag is set on the inode, offer
289 * to clear it.
290 */
291 #define BAD_SPECIAL_FLAGS (EXT2_IMMUTABLE_FL | EXT2_APPEND_FL)
check_immutable(e2fsck_t ctx,struct problem_context * pctx)292 static void check_immutable(e2fsck_t ctx, struct problem_context *pctx)
293 {
294 if (!(pctx->inode->i_flags & BAD_SPECIAL_FLAGS))
295 return;
296
297 if (!fix_problem(ctx, PR_1_SET_IMMUTABLE, pctx))
298 return;
299
300 pctx->inode->i_flags &= ~BAD_SPECIAL_FLAGS;
301 e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
302 }
303
304 /*
305 * If device, fifo or socket, check size is zero -- if not offer to
306 * clear it
307 */
check_size(e2fsck_t ctx,struct problem_context * pctx)308 static void check_size(e2fsck_t ctx, struct problem_context *pctx)
309 {
310 struct ext2_inode *inode = pctx->inode;
311
312 if (EXT2_I_SIZE(inode) == 0)
313 return;
314
315 if (!fix_problem(ctx, PR_1_SET_NONZSIZE, pctx))
316 return;
317
318 ext2fs_inode_size_set(ctx->fs, inode, 0);
319 e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
320 }
321
322 /*
323 * For a given size, calculate how many blocks would be charged towards quota.
324 */
size_to_quota_blocks(ext2_filsys fs,size_t size)325 static blk64_t size_to_quota_blocks(ext2_filsys fs, size_t size)
326 {
327 blk64_t clusters;
328
329 clusters = DIV_ROUND_UP(size, fs->blocksize << fs->cluster_ratio_bits);
330 return EXT2FS_C2B(fs, clusters);
331 }
332
333 /*
334 * Check validity of EA inode. Return 0 if EA inode is valid, otherwise return
335 * the problem code.
336 */
check_large_ea_inode(e2fsck_t ctx,struct ext2_ext_attr_entry * entry,struct problem_context * pctx,blk64_t * quota_blocks)337 static problem_t check_large_ea_inode(e2fsck_t ctx,
338 struct ext2_ext_attr_entry *entry,
339 struct problem_context *pctx,
340 blk64_t *quota_blocks)
341 {
342 struct ext2_inode inode;
343 __u32 hash;
344 errcode_t retval;
345
346 /* Check if inode is within valid range */
347 if ((entry->e_value_inum < EXT2_FIRST_INODE(ctx->fs->super)) ||
348 (entry->e_value_inum > ctx->fs->super->s_inodes_count)) {
349 pctx->num = entry->e_value_inum;
350 return PR_1_ATTR_VALUE_EA_INODE;
351 }
352
353 e2fsck_read_inode(ctx, entry->e_value_inum, &inode, "pass1");
354
355 retval = ext2fs_ext_attr_hash_entry2(ctx->fs, entry, NULL, &hash);
356 if (retval) {
357 com_err("check_large_ea_inode", retval,
358 _("while hashing entry with e_value_inum = %u"),
359 entry->e_value_inum);
360 fatal_error(ctx, 0);
361 }
362
363 if (hash == entry->e_hash) {
364 *quota_blocks = size_to_quota_blocks(ctx->fs,
365 entry->e_value_size);
366 } else {
367 /* This might be an old Lustre-style ea_inode reference. */
368 if (inode.i_mtime == pctx->ino &&
369 inode.i_generation == pctx->inode->i_generation) {
370 *quota_blocks = 0;
371 } else {
372 /* If target inode is also missing EA_INODE flag,
373 * this is likely to be a bad reference.
374 */
375 if (!(inode.i_flags & EXT4_EA_INODE_FL)) {
376 pctx->num = entry->e_value_inum;
377 return PR_1_ATTR_VALUE_EA_INODE;
378 } else {
379 pctx->num = entry->e_hash;
380 return PR_1_ATTR_HASH;
381 }
382 }
383 }
384
385 if (!(inode.i_flags & EXT4_EA_INODE_FL)) {
386 pctx->num = entry->e_value_inum;
387 if (fix_problem(ctx, PR_1_ATTR_SET_EA_INODE_FL, pctx)) {
388 inode.i_flags |= EXT4_EA_INODE_FL;
389 ext2fs_write_inode(ctx->fs, entry->e_value_inum,
390 &inode);
391 } else {
392 return PR_1_ATTR_NO_EA_INODE_FL;
393 }
394 }
395 return 0;
396 }
397
inc_ea_inode_refs(e2fsck_t ctx,struct problem_context * pctx,struct ext2_ext_attr_entry * first,void * end)398 static void inc_ea_inode_refs(e2fsck_t ctx, struct problem_context *pctx,
399 struct ext2_ext_attr_entry *first, void *end)
400 {
401 struct ext2_ext_attr_entry *entry;
402
403 for (entry = first;
404 (void *)entry < end && !EXT2_EXT_IS_LAST_ENTRY(entry);
405 entry = EXT2_EXT_ATTR_NEXT(entry)) {
406 if (!entry->e_value_inum)
407 continue;
408 if (!ctx->ea_inode_refs) {
409 pctx->errcode = ea_refcount_create(0,
410 &ctx->ea_inode_refs);
411 if (pctx->errcode) {
412 pctx->num = 4;
413 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
414 ctx->flags |= E2F_FLAG_ABORT;
415 return;
416 }
417 }
418 ea_refcount_increment(ctx->ea_inode_refs, entry->e_value_inum,
419 0);
420 }
421 }
422
check_ea_in_inode(e2fsck_t ctx,struct problem_context * pctx,struct ea_quota * ea_ibody_quota)423 static void check_ea_in_inode(e2fsck_t ctx, struct problem_context *pctx,
424 struct ea_quota *ea_ibody_quota)
425 {
426 struct ext2_super_block *sb = ctx->fs->super;
427 struct ext2_inode_large *inode;
428 struct ext2_ext_attr_entry *entry;
429 char *start, *header, *end;
430 unsigned int storage_size, remain;
431 problem_t problem = 0;
432 region_t region = 0;
433
434 ea_ibody_quota->blocks = 0;
435 ea_ibody_quota->inodes = 0;
436
437 inode = (struct ext2_inode_large *) pctx->inode;
438 storage_size = EXT2_INODE_SIZE(ctx->fs->super) - EXT2_GOOD_OLD_INODE_SIZE -
439 inode->i_extra_isize;
440 header = ((char *) inode) + EXT2_GOOD_OLD_INODE_SIZE +
441 inode->i_extra_isize;
442 end = header + storage_size;
443 start = header + sizeof(__u32);
444 entry = (struct ext2_ext_attr_entry *) start;
445
446 /* scan all entry's headers first */
447
448 /* take finish entry 0UL into account */
449 remain = storage_size - sizeof(__u32);
450
451 region = region_create(0, storage_size);
452 if (!region) {
453 fix_problem(ctx, PR_1_EA_ALLOC_REGION_ABORT, pctx);
454 problem = 0;
455 ctx->flags |= E2F_FLAG_ABORT;
456 return;
457 }
458 if (region_allocate(region, 0, sizeof(__u32))) {
459 problem = PR_1_INODE_EA_ALLOC_COLLISION;
460 goto fix;
461 }
462
463 while (remain >= sizeof(struct ext2_ext_attr_entry) &&
464 !EXT2_EXT_IS_LAST_ENTRY(entry)) {
465 __u32 hash;
466
467 if (region_allocate(region, (char *)entry - (char *)header,
468 EXT2_EXT_ATTR_LEN(entry->e_name_len))) {
469 problem = PR_1_INODE_EA_ALLOC_COLLISION;
470 goto fix;
471 }
472
473 /* header eats this space */
474 remain -= sizeof(struct ext2_ext_attr_entry);
475
476 /* is attribute name valid? */
477 if (EXT2_EXT_ATTR_SIZE(entry->e_name_len) > remain) {
478 pctx->num = entry->e_name_len;
479 problem = PR_1_ATTR_NAME_LEN;
480 goto fix;
481 }
482
483 /* attribute len eats this space */
484 remain -= EXT2_EXT_ATTR_SIZE(entry->e_name_len);
485
486 if (entry->e_value_inum == 0) {
487 /* check value size */
488 if (entry->e_value_size > remain) {
489 pctx->num = entry->e_value_size;
490 problem = PR_1_ATTR_VALUE_SIZE;
491 goto fix;
492 }
493
494 if (entry->e_value_size &&
495 region_allocate(region,
496 sizeof(__u32) + entry->e_value_offs,
497 EXT2_EXT_ATTR_SIZE(
498 entry->e_value_size))) {
499 problem = PR_1_INODE_EA_ALLOC_COLLISION;
500 goto fix;
501 }
502
503 hash = ext2fs_ext_attr_hash_entry(entry,
504 start + entry->e_value_offs);
505
506 /* e_hash may be 0 in older inode's ea */
507 if (entry->e_hash != 0 && entry->e_hash != hash) {
508 pctx->num = entry->e_hash;
509 problem = PR_1_ATTR_HASH;
510 goto fix;
511 }
512 } else {
513 blk64_t quota_blocks;
514
515 problem = check_large_ea_inode(ctx, entry, pctx,
516 "a_blocks);
517 if (problem != 0)
518 goto fix;
519
520 ea_ibody_quota->blocks += quota_blocks;
521 ea_ibody_quota->inodes++;
522 }
523
524 /* If EA value is stored in external inode then it does not
525 * consume space here */
526 if (entry->e_value_inum == 0)
527 remain -= entry->e_value_size;
528
529 entry = EXT2_EXT_ATTR_NEXT(entry);
530 }
531
532 if (region_allocate(region, (char *)entry - (char *)header,
533 sizeof(__u32))) {
534 problem = PR_1_INODE_EA_ALLOC_COLLISION;
535 goto fix;
536 }
537 fix:
538 if (region)
539 region_free(region);
540 /*
541 * it seems like a corruption. it's very unlikely we could repair
542 * EA(s) in automatic fashion -bzzz
543 */
544 if (problem == 0 || !fix_problem(ctx, problem, pctx)) {
545 inc_ea_inode_refs(ctx, pctx,
546 (struct ext2_ext_attr_entry *)start, end);
547 return;
548 }
549
550 /* simply remove all possible EA(s) */
551 *((__u32 *)header) = 0UL;
552 e2fsck_write_inode_full(ctx, pctx->ino, pctx->inode,
553 EXT2_INODE_SIZE(sb), "pass1");
554 ea_ibody_quota->blocks = 0;
555 ea_ibody_quota->inodes = 0;
556 }
557
check_inode_extra_negative_epoch(__u32 xtime,__u32 extra)558 static int check_inode_extra_negative_epoch(__u32 xtime, __u32 extra) {
559 return (xtime & (1U << 31)) != 0 &&
560 (extra & EXT4_EPOCH_MASK) == EXT4_EPOCH_MASK;
561 }
562
563 #define CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, xtime) \
564 check_inode_extra_negative_epoch(inode->i_##xtime, \
565 inode->i_##xtime##_extra)
566
567 /* When today's date is earlier than 2242, we assume that atimes,
568 * ctimes, crtimes, and mtimes with years in the range 2310..2378 are
569 * actually pre-1970 dates mis-encoded.
570 */
571 #define EXT4_EXTRA_NEGATIVE_DATE_CUTOFF 2 * (1LL << 32)
572
check_inode_extra_space(e2fsck_t ctx,struct problem_context * pctx,struct ea_quota * ea_ibody_quota)573 static void check_inode_extra_space(e2fsck_t ctx, struct problem_context *pctx,
574 struct ea_quota *ea_ibody_quota)
575 {
576 struct ext2_super_block *sb = ctx->fs->super;
577 struct ext2_inode_large *inode;
578 __u32 *eamagic;
579 int min, max;
580
581 ea_ibody_quota->blocks = 0;
582 ea_ibody_quota->inodes = 0;
583
584 inode = (struct ext2_inode_large *) pctx->inode;
585 if (EXT2_INODE_SIZE(sb) == EXT2_GOOD_OLD_INODE_SIZE) {
586 /* this isn't large inode. so, nothing to check */
587 return;
588 }
589
590 #if 0
591 printf("inode #%u, i_extra_size %d\n", pctx->ino,
592 inode->i_extra_isize);
593 #endif
594 /* i_extra_isize must cover i_extra_isize + i_checksum_hi at least */
595 min = sizeof(inode->i_extra_isize) + sizeof(inode->i_checksum_hi);
596 max = EXT2_INODE_SIZE(sb) - EXT2_GOOD_OLD_INODE_SIZE;
597 /*
598 * For now we will allow i_extra_isize to be 0, but really
599 * implementations should never allow i_extra_isize to be 0
600 */
601 if (inode->i_extra_isize &&
602 (inode->i_extra_isize < min || inode->i_extra_isize > max ||
603 inode->i_extra_isize & 3)) {
604 if (!fix_problem(ctx, PR_1_EXTRA_ISIZE, pctx))
605 return;
606 if (inode->i_extra_isize < min || inode->i_extra_isize > max)
607 inode->i_extra_isize = sb->s_want_extra_isize;
608 else
609 inode->i_extra_isize = (inode->i_extra_isize + 3) & ~3;
610 e2fsck_write_inode_full(ctx, pctx->ino, pctx->inode,
611 EXT2_INODE_SIZE(sb), "pass1");
612 }
613
614 /* check if there is no place for an EA header */
615 if (inode->i_extra_isize >= max - sizeof(__u32))
616 return;
617
618 eamagic = (__u32 *) (((char *) inode) + EXT2_GOOD_OLD_INODE_SIZE +
619 inode->i_extra_isize);
620 if (*eamagic == EXT2_EXT_ATTR_MAGIC) {
621 /* it seems inode has an extended attribute(s) in body */
622 check_ea_in_inode(ctx, pctx, ea_ibody_quota);
623 }
624
625 /*
626 * If the inode's extended atime (ctime, crtime, mtime) is stored in
627 * the old, invalid format, repair it.
628 */
629 if (((sizeof(time_t) <= 4) ||
630 (((sizeof(time_t) > 4) &&
631 ctx->now < EXT4_EXTRA_NEGATIVE_DATE_CUTOFF))) &&
632 (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, atime) ||
633 CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, ctime) ||
634 CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, crtime) ||
635 CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, mtime))) {
636
637 if (!fix_problem(ctx, PR_1_EA_TIME_OUT_OF_RANGE, pctx))
638 return;
639
640 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, atime))
641 inode->i_atime_extra &= ~EXT4_EPOCH_MASK;
642 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, ctime))
643 inode->i_ctime_extra &= ~EXT4_EPOCH_MASK;
644 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, crtime))
645 inode->i_crtime_extra &= ~EXT4_EPOCH_MASK;
646 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, mtime))
647 inode->i_mtime_extra &= ~EXT4_EPOCH_MASK;
648 e2fsck_write_inode_full(ctx, pctx->ino, pctx->inode,
649 EXT2_INODE_SIZE(sb), "pass1");
650 }
651
652 }
653
654 /*
655 * Check to see if the inode might really be a directory, despite i_mode
656 *
657 * This is a lot of complexity for something for which I'm not really
658 * convinced happens frequently in the wild. If for any reason this
659 * causes any problems, take this code out.
660 * [tytso:20070331.0827EDT]
661 */
check_is_really_dir(e2fsck_t ctx,struct problem_context * pctx,char * buf)662 static void check_is_really_dir(e2fsck_t ctx, struct problem_context *pctx,
663 char *buf)
664 {
665 struct ext2_inode *inode = pctx->inode;
666 struct ext2_dir_entry *dirent;
667 errcode_t retval;
668 blk64_t blk;
669 unsigned int i, rec_len, not_device = 0;
670 int extent_fs;
671 int inlinedata_fs;
672
673 /*
674 * If the mode looks OK, we believe it. If the first block in
675 * the i_block array is 0, this cannot be a directory. If the
676 * inode is extent-mapped, it is still the case that the latter
677 * cannot be 0 - the magic number in the extent header would make
678 * it nonzero.
679 */
680 if (LINUX_S_ISDIR(inode->i_mode) || LINUX_S_ISREG(inode->i_mode) ||
681 LINUX_S_ISLNK(inode->i_mode) || inode->i_block[0] == 0)
682 return;
683
684 /*
685 * Check the block numbers in the i_block array for validity:
686 * zero blocks are skipped (but the first one cannot be zero -
687 * see above), other blocks are checked against the first and
688 * max data blocks (from the the superblock) and against the
689 * block bitmap. Any invalid block found means this cannot be
690 * a directory.
691 *
692 * If there are non-zero blocks past the fourth entry, then
693 * this cannot be a device file: we remember that for the next
694 * check.
695 *
696 * For extent mapped files, we don't do any sanity checking:
697 * just try to get the phys block of logical block 0 and run
698 * with it.
699 *
700 * For inline data files, we just try to get the size of inline
701 * data. If it's true, we will treat it as a directory.
702 */
703
704 extent_fs = ext2fs_has_feature_extents(ctx->fs->super);
705 inlinedata_fs = ext2fs_has_feature_inline_data(ctx->fs->super);
706 if (inlinedata_fs && (inode->i_flags & EXT4_INLINE_DATA_FL)) {
707 size_t size;
708 __u32 dotdot;
709 unsigned int rec_len2;
710 struct ext2_dir_entry de;
711
712 if (ext2fs_inline_data_size(ctx->fs, pctx->ino, &size))
713 return;
714 /*
715 * If the size isn't a multiple of 4, it's probably not a
716 * directory??
717 */
718 if (size & 3)
719 return;
720 /*
721 * If the first 10 bytes don't look like a directory entry,
722 * it's probably not a directory.
723 */
724 memcpy(&dotdot, inode->i_block, sizeof(dotdot));
725 memcpy(&de, ((char *)inode->i_block) + EXT4_INLINE_DATA_DOTDOT_SIZE,
726 EXT2_DIR_REC_LEN(0));
727 dotdot = ext2fs_le32_to_cpu(dotdot);
728 de.inode = ext2fs_le32_to_cpu(de.inode);
729 de.rec_len = ext2fs_le16_to_cpu(de.rec_len);
730 ext2fs_get_rec_len(ctx->fs, &de, &rec_len2);
731 if (dotdot >= ctx->fs->super->s_inodes_count ||
732 (dotdot < EXT2_FIRST_INO(ctx->fs->super) &&
733 dotdot != EXT2_ROOT_INO) ||
734 de.inode >= ctx->fs->super->s_inodes_count ||
735 (de.inode < EXT2_FIRST_INO(ctx->fs->super) &&
736 de.inode != 0) ||
737 rec_len2 > EXT4_MIN_INLINE_DATA_SIZE -
738 EXT4_INLINE_DATA_DOTDOT_SIZE)
739 return;
740 /* device files never have a "system.data" entry */
741 goto isdir;
742 } else if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) {
743 /* extent mapped */
744 if (ext2fs_bmap2(ctx->fs, pctx->ino, inode, 0, 0, 0, 0,
745 &blk))
746 return;
747 /* device files are never extent mapped */
748 not_device++;
749 } else {
750 for (i=0; i < EXT2_N_BLOCKS; i++) {
751 blk = inode->i_block[i];
752 if (!blk)
753 continue;
754 if (i >= 4)
755 not_device++;
756
757 if (blk < ctx->fs->super->s_first_data_block ||
758 blk >= ext2fs_blocks_count(ctx->fs->super) ||
759 ext2fs_fast_test_block_bitmap2(ctx->block_found_map,
760 blk))
761 return; /* Invalid block, can't be dir */
762 }
763 blk = inode->i_block[0];
764 }
765
766 /*
767 * If the mode says this is a device file and the i_links_count field
768 * is sane and we have not ruled it out as a device file previously,
769 * we declare it a device file, not a directory.
770 */
771 if ((LINUX_S_ISCHR(inode->i_mode) || LINUX_S_ISBLK(inode->i_mode)) &&
772 (inode->i_links_count == 1) && !not_device)
773 return;
774
775 /* read the first block */
776 ehandler_operation(_("reading directory block"));
777 retval = ext2fs_read_dir_block4(ctx->fs, blk, buf, 0, pctx->ino);
778 ehandler_operation(0);
779 if (retval)
780 return;
781
782 dirent = (struct ext2_dir_entry *) buf;
783 retval = ext2fs_get_rec_len(ctx->fs, dirent, &rec_len);
784 if (retval)
785 return;
786 if ((ext2fs_dirent_name_len(dirent) != 1) ||
787 (dirent->name[0] != '.') ||
788 (dirent->inode != pctx->ino) ||
789 (rec_len < 12) ||
790 (rec_len % 4) ||
791 (rec_len >= ctx->fs->blocksize - 12))
792 return;
793
794 dirent = (struct ext2_dir_entry *) (buf + rec_len);
795 retval = ext2fs_get_rec_len(ctx->fs, dirent, &rec_len);
796 if (retval)
797 return;
798 if ((ext2fs_dirent_name_len(dirent) != 2) ||
799 (dirent->name[0] != '.') ||
800 (dirent->name[1] != '.') ||
801 (rec_len < 12) ||
802 (rec_len % 4))
803 return;
804
805 isdir:
806 if (fix_problem(ctx, PR_1_TREAT_AS_DIRECTORY, pctx)) {
807 inode->i_mode = (inode->i_mode & 07777) | LINUX_S_IFDIR;
808 e2fsck_write_inode_full(ctx, pctx->ino, inode,
809 EXT2_INODE_SIZE(ctx->fs->super),
810 "check_is_really_dir");
811 }
812 }
813
e2fsck_setup_icount(e2fsck_t ctx,const char * icount_name,int flags,ext2_icount_t hint,ext2_icount_t * ret)814 extern errcode_t e2fsck_setup_icount(e2fsck_t ctx, const char *icount_name,
815 int flags, ext2_icount_t hint,
816 ext2_icount_t *ret)
817 {
818 unsigned int threshold;
819 unsigned int save_type;
820 ext2_ino_t num_dirs;
821 errcode_t retval;
822 char *tdb_dir;
823 int enable;
824
825 *ret = 0;
826
827 profile_get_string(ctx->profile, "scratch_files", "directory", 0, 0,
828 &tdb_dir);
829 profile_get_uint(ctx->profile, "scratch_files",
830 "numdirs_threshold", 0, 0, &threshold);
831 profile_get_boolean(ctx->profile, "scratch_files",
832 "icount", 0, 1, &enable);
833
834 retval = ext2fs_get_num_dirs(ctx->fs, &num_dirs);
835 if (retval)
836 num_dirs = 1024; /* Guess */
837
838 if (enable && tdb_dir && !access(tdb_dir, W_OK) &&
839 (!threshold || num_dirs > threshold)) {
840 retval = ext2fs_create_icount_tdb(ctx->fs, tdb_dir,
841 flags, ret);
842 if (retval == 0)
843 return 0;
844 }
845 e2fsck_set_bitmap_type(ctx->fs, EXT2FS_BMAP64_RBTREE, icount_name,
846 &save_type);
847 if (ctx->options & E2F_OPT_ICOUNT_FULLMAP)
848 flags |= EXT2_ICOUNT_OPT_FULLMAP;
849 retval = ext2fs_create_icount2(ctx->fs, flags, 0, hint, ret);
850 ctx->fs->default_bitmap_type = save_type;
851 return retval;
852 }
853
recheck_bad_inode_checksum(ext2_filsys fs,ext2_ino_t ino,e2fsck_t ctx,struct problem_context * pctx)854 static errcode_t recheck_bad_inode_checksum(ext2_filsys fs, ext2_ino_t ino,
855 e2fsck_t ctx,
856 struct problem_context *pctx)
857 {
858 errcode_t retval;
859 struct ext2_inode_large inode;
860
861 /*
862 * Reread inode. If we don't see checksum error, then this inode
863 * has been fixed elsewhere.
864 */
865 ctx->stashed_ino = 0;
866 retval = ext2fs_read_inode_full(fs, ino, (struct ext2_inode *)&inode,
867 sizeof(inode));
868 if (retval && retval != EXT2_ET_INODE_CSUM_INVALID)
869 return retval;
870 if (!retval)
871 return 0;
872
873 /*
874 * Checksum still doesn't match. That implies that the inode passes
875 * all the sanity checks, so maybe the checksum is simply corrupt.
876 * See if the user will go for fixing that.
877 */
878 if (!fix_problem(ctx, PR_1_INODE_ONLY_CSUM_INVALID, pctx))
879 return 0;
880
881 retval = ext2fs_write_inode_full(fs, ino, (struct ext2_inode *)&inode,
882 sizeof(inode));
883 return retval;
884 }
885
reserve_block_for_root_repair(e2fsck_t ctx)886 static void reserve_block_for_root_repair(e2fsck_t ctx)
887 {
888 blk64_t blk = 0;
889 errcode_t err;
890 ext2_filsys fs = ctx->fs;
891
892 ctx->root_repair_block = 0;
893 if (ext2fs_test_inode_bitmap2(ctx->inode_used_map, EXT2_ROOT_INO))
894 return;
895
896 err = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
897 if (err)
898 return;
899 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
900 ctx->root_repair_block = blk;
901 }
902
reserve_block_for_lnf_repair(e2fsck_t ctx)903 static void reserve_block_for_lnf_repair(e2fsck_t ctx)
904 {
905 blk64_t blk = 0;
906 errcode_t err;
907 ext2_filsys fs = ctx->fs;
908 static const char name[] = "lost+found";
909 ext2_ino_t ino;
910
911 ctx->lnf_repair_block = 0;
912 if (!ext2fs_lookup(fs, EXT2_ROOT_INO, name, sizeof(name)-1, 0, &ino))
913 return;
914
915 err = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
916 if (err)
917 return;
918 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
919 ctx->lnf_repair_block = blk;
920 }
921
get_inline_data_ea_size(ext2_filsys fs,ext2_ino_t ino,size_t * sz)922 static errcode_t get_inline_data_ea_size(ext2_filsys fs, ext2_ino_t ino,
923 size_t *sz)
924 {
925 void *p;
926 struct ext2_xattr_handle *handle;
927 errcode_t retval;
928
929 retval = ext2fs_xattrs_open(fs, ino, &handle);
930 if (retval)
931 return retval;
932
933 retval = ext2fs_xattrs_read(handle);
934 if (retval)
935 goto err;
936
937 retval = ext2fs_xattr_get(handle, "system.data", &p, sz);
938 if (retval)
939 goto err;
940 ext2fs_free_mem(&p);
941 err:
942 (void) ext2fs_xattrs_close(&handle);
943 return retval;
944 }
945
finish_processing_inode(e2fsck_t ctx,ext2_ino_t ino,struct problem_context * pctx,int failed_csum)946 static void finish_processing_inode(e2fsck_t ctx, ext2_ino_t ino,
947 struct problem_context *pctx,
948 int failed_csum)
949 {
950 if (!failed_csum)
951 return;
952
953 /*
954 * If the inode failed the checksum and the user didn't
955 * clear the inode, test the checksum again -- if it still
956 * fails, ask the user if the checksum should be corrected.
957 */
958 pctx->errcode = recheck_bad_inode_checksum(ctx->fs, ino, ctx, pctx);
959 if (pctx->errcode)
960 ctx->flags |= E2F_FLAG_ABORT;
961 }
962 #define FINISH_INODE_LOOP(ctx, ino, pctx, failed_csum) \
963 do { \
964 finish_processing_inode((ctx), (ino), (pctx), (failed_csum)); \
965 if ((ctx)->flags & E2F_FLAG_ABORT) \
966 return; \
967 } while (0)
968
could_be_block_map(ext2_filsys fs,struct ext2_inode * inode)969 static int could_be_block_map(ext2_filsys fs, struct ext2_inode *inode)
970 {
971 __u32 x;
972 int i;
973
974 for (i = 0; i < EXT2_N_BLOCKS; i++) {
975 x = inode->i_block[i];
976 #ifdef WORDS_BIGENDIAN
977 x = ext2fs_swab32(x);
978 #endif
979 if (x >= ext2fs_blocks_count(fs->super))
980 return 0;
981 }
982
983 return 1;
984 }
985
986 /*
987 * Figure out what to do with an inode that has both extents and inline data
988 * inode flags set. Returns -1 if we decide to erase the inode, 0 otherwise.
989 */
fix_inline_data_extents_file(e2fsck_t ctx,ext2_ino_t ino,struct ext2_inode * inode,int inode_size,struct problem_context * pctx)990 static int fix_inline_data_extents_file(e2fsck_t ctx,
991 ext2_ino_t ino,
992 struct ext2_inode *inode,
993 int inode_size,
994 struct problem_context *pctx)
995 {
996 size_t max_inline_ea_size;
997 ext2_filsys fs = ctx->fs;
998 int dirty = 0;
999
1000 /* Both feature flags not set? Just run the regular checks */
1001 if (!ext2fs_has_feature_extents(fs->super) &&
1002 !ext2fs_has_feature_inline_data(fs->super))
1003 return 0;
1004
1005 /* Clear both flags if it's a special file */
1006 if (LINUX_S_ISCHR(inode->i_mode) ||
1007 LINUX_S_ISBLK(inode->i_mode) ||
1008 LINUX_S_ISFIFO(inode->i_mode) ||
1009 LINUX_S_ISSOCK(inode->i_mode)) {
1010 check_extents_inlinedata(ctx, pctx);
1011 return 0;
1012 }
1013
1014 /* If it looks like an extent tree, try to clear inlinedata */
1015 if (ext2fs_extent_header_verify(inode->i_block,
1016 sizeof(inode->i_block)) == 0 &&
1017 fix_problem(ctx, PR_1_CLEAR_INLINE_DATA_FOR_EXTENT, pctx)) {
1018 inode->i_flags &= ~EXT4_INLINE_DATA_FL;
1019 dirty = 1;
1020 goto out;
1021 }
1022
1023 /* If it looks short enough to be inline data, try to clear extents */
1024 if (inode_size > EXT2_GOOD_OLD_INODE_SIZE)
1025 max_inline_ea_size = inode_size -
1026 (EXT2_GOOD_OLD_INODE_SIZE +
1027 ((struct ext2_inode_large *)inode)->i_extra_isize);
1028 else
1029 max_inline_ea_size = 0;
1030 if (EXT2_I_SIZE(inode) <
1031 EXT4_MIN_INLINE_DATA_SIZE + max_inline_ea_size &&
1032 fix_problem(ctx, PR_1_CLEAR_EXTENT_FOR_INLINE_DATA, pctx)) {
1033 inode->i_flags &= ~EXT4_EXTENTS_FL;
1034 dirty = 1;
1035 goto out;
1036 }
1037
1038 /*
1039 * Too big for inline data, but no evidence of extent tree -
1040 * maybe it's a block map file? If the mappings all look valid?
1041 */
1042 if (could_be_block_map(fs, inode) &&
1043 fix_problem(ctx, PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS, pctx)) {
1044 #ifdef WORDS_BIGENDIAN
1045 int i;
1046
1047 for (i = 0; i < EXT2_N_BLOCKS; i++)
1048 inode->i_block[i] = ext2fs_swab32(inode->i_block[i]);
1049 #endif
1050
1051 inode->i_flags &= ~(EXT4_EXTENTS_FL | EXT4_INLINE_DATA_FL);
1052 dirty = 1;
1053 goto out;
1054 }
1055
1056 /* Oh well, just clear the busted inode. */
1057 if (fix_problem(ctx, PR_1_CLEAR_EXTENT_INLINE_DATA_INODE, pctx)) {
1058 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1059 return -1;
1060 }
1061
1062 out:
1063 if (dirty)
1064 e2fsck_write_inode(ctx, ino, inode, "pass1");
1065
1066 return 0;
1067 }
1068
pass1_readahead(e2fsck_t ctx,dgrp_t * group,ext2_ino_t * next_ino)1069 static void pass1_readahead(e2fsck_t ctx, dgrp_t *group, ext2_ino_t *next_ino)
1070 {
1071 ext2_ino_t inodes_in_group = 0, inodes_per_block, inodes_per_buffer;
1072 dgrp_t start = *group, grp;
1073 blk64_t blocks_to_read = 0;
1074 errcode_t err = EXT2_ET_INVALID_ARGUMENT;
1075
1076 if (ctx->readahead_kb == 0)
1077 goto out;
1078
1079 /* Keep iterating groups until we have enough to readahead */
1080 inodes_per_block = EXT2_INODES_PER_BLOCK(ctx->fs->super);
1081 for (grp = start; grp < ctx->fs->group_desc_count; grp++) {
1082 if (ext2fs_bg_flags_test(ctx->fs, grp, EXT2_BG_INODE_UNINIT))
1083 continue;
1084 inodes_in_group = ctx->fs->super->s_inodes_per_group -
1085 ext2fs_bg_itable_unused(ctx->fs, grp);
1086 blocks_to_read += (inodes_in_group + inodes_per_block - 1) /
1087 inodes_per_block;
1088 if (blocks_to_read * ctx->fs->blocksize >
1089 ctx->readahead_kb * 1024)
1090 break;
1091 }
1092
1093 err = e2fsck_readahead(ctx->fs, E2FSCK_READA_ITABLE, start,
1094 grp - start + 1);
1095 if (err == EAGAIN) {
1096 ctx->readahead_kb /= 2;
1097 err = 0;
1098 }
1099
1100 out:
1101 if (err) {
1102 /* Error; disable itable readahead */
1103 *group = ctx->fs->group_desc_count;
1104 *next_ino = ctx->fs->super->s_inodes_count;
1105 } else {
1106 /*
1107 * Don't do more readahead until we've reached the first inode
1108 * of the last inode scan buffer block for the last group.
1109 */
1110 *group = grp + 1;
1111 inodes_per_buffer = (ctx->inode_buffer_blocks ?
1112 ctx->inode_buffer_blocks :
1113 EXT2_INODE_SCAN_DEFAULT_BUFFER_BLOCKS) *
1114 ctx->fs->blocksize /
1115 EXT2_INODE_SIZE(ctx->fs->super);
1116 inodes_in_group--;
1117 *next_ino = inodes_in_group -
1118 (inodes_in_group % inodes_per_buffer) + 1 +
1119 (grp * ctx->fs->super->s_inodes_per_group);
1120 }
1121 }
1122
1123 /*
1124 * Check if the passed ino is one of the used superblock quota inodes.
1125 *
1126 * Before the quota inodes were journaled, older superblock quota inodes
1127 * were just regular files in the filesystem and not reserved inodes. This
1128 * checks if the passed ino is one of the s_*_quota_inum superblock fields,
1129 * which may not always be the same as the EXT4_*_QUOTA_INO fields.
1130 */
quota_inum_is_super(struct ext2_super_block * sb,ext2_ino_t ino)1131 static int quota_inum_is_super(struct ext2_super_block *sb, ext2_ino_t ino)
1132 {
1133 enum quota_type qtype;
1134
1135 for (qtype = 0; qtype < MAXQUOTAS; qtype++)
1136 if (*quota_sb_inump(sb, qtype) == ino)
1137 return 1;
1138
1139 return 0;
1140 }
1141
1142 /*
1143 * Check if the passed ino is one of the reserved quota inodes.
1144 * This checks if the inode number is one of the reserved EXT4_*_QUOTA_INO
1145 * inodes. These inodes may or may not be in use by the quota feature.
1146 */
quota_inum_is_reserved(ext2_filsys fs,ext2_ino_t ino)1147 static int quota_inum_is_reserved(ext2_filsys fs, ext2_ino_t ino)
1148 {
1149 enum quota_type qtype;
1150
1151 for (qtype = 0; qtype < MAXQUOTAS; qtype++)
1152 if (quota_type2inum(qtype, fs->super) == ino)
1153 return 1;
1154
1155 return 0;
1156 }
1157
e2fsck_pass1(e2fsck_t ctx)1158 void e2fsck_pass1(e2fsck_t ctx)
1159 {
1160 int i;
1161 __u64 max_sizes;
1162 ext2_filsys fs = ctx->fs;
1163 ext2_ino_t ino = 0;
1164 struct ext2_inode *inode = NULL;
1165 ext2_inode_scan scan = NULL;
1166 char *block_buf = NULL;
1167 #ifdef RESOURCE_TRACK
1168 struct resource_track rtrack;
1169 #endif
1170 unsigned char frag, fsize;
1171 struct problem_context pctx;
1172 struct scan_callback_struct scan_struct;
1173 struct ext2_super_block *sb = ctx->fs->super;
1174 const char *old_op;
1175 int imagic_fs, extent_fs, inlinedata_fs, casefold_fs;
1176 int low_dtime_check = 1;
1177 unsigned int inode_size = EXT2_INODE_SIZE(fs->super);
1178 unsigned int bufsize;
1179 int failed_csum = 0;
1180 ext2_ino_t ino_threshold = 0;
1181 dgrp_t ra_group = 0;
1182 struct ea_quota ea_ibody_quota;
1183
1184 init_resource_track(&rtrack, ctx->fs->io);
1185 clear_problem_context(&pctx);
1186
1187 /* If we can do readahead, figure out how many groups to pull in. */
1188 if (!e2fsck_can_readahead(ctx->fs))
1189 ctx->readahead_kb = 0;
1190 else if (ctx->readahead_kb == ~0ULL)
1191 ctx->readahead_kb = e2fsck_guess_readahead(ctx->fs);
1192 pass1_readahead(ctx, &ra_group, &ino_threshold);
1193
1194 if (!(ctx->options & E2F_OPT_PREEN))
1195 fix_problem(ctx, PR_1_PASS_HEADER, &pctx);
1196
1197 if (ext2fs_has_feature_dir_index(fs->super) &&
1198 !(ctx->options & E2F_OPT_NO)) {
1199 if (ext2fs_u32_list_create(&ctx->dirs_to_hash, 50))
1200 ctx->dirs_to_hash = 0;
1201 }
1202
1203 #ifdef MTRACE
1204 mtrace_print("Pass 1");
1205 #endif
1206
1207 #define EXT2_BPP(bits) (1ULL << ((bits) - 2))
1208
1209 for (i = EXT2_MIN_BLOCK_LOG_SIZE; i <= EXT2_MAX_BLOCK_LOG_SIZE; i++) {
1210 max_sizes = EXT2_NDIR_BLOCKS + EXT2_BPP(i);
1211 max_sizes = max_sizes + EXT2_BPP(i) * EXT2_BPP(i);
1212 max_sizes = max_sizes + EXT2_BPP(i) * EXT2_BPP(i) * EXT2_BPP(i);
1213 max_sizes = (max_sizes * (1UL << i));
1214 ext2_max_sizes[i - EXT2_MIN_BLOCK_LOG_SIZE] = max_sizes;
1215 }
1216 #undef EXT2_BPP
1217
1218 imagic_fs = ext2fs_has_feature_imagic_inodes(sb);
1219 extent_fs = ext2fs_has_feature_extents(sb);
1220 inlinedata_fs = ext2fs_has_feature_inline_data(sb);
1221 casefold_fs = ext2fs_has_feature_casefold(sb);
1222
1223 /*
1224 * Allocate bitmaps structures
1225 */
1226 pctx.errcode = e2fsck_allocate_inode_bitmap(fs, _("in-use inode map"),
1227 EXT2FS_BMAP64_RBTREE,
1228 "inode_used_map",
1229 &ctx->inode_used_map);
1230 if (pctx.errcode) {
1231 pctx.num = 1;
1232 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1233 ctx->flags |= E2F_FLAG_ABORT;
1234 return;
1235 }
1236 pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
1237 _("directory inode map"),
1238 EXT2FS_BMAP64_AUTODIR,
1239 "inode_dir_map", &ctx->inode_dir_map);
1240 if (pctx.errcode) {
1241 pctx.num = 2;
1242 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1243 ctx->flags |= E2F_FLAG_ABORT;
1244 return;
1245 }
1246 pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
1247 _("regular file inode map"), EXT2FS_BMAP64_RBTREE,
1248 "inode_reg_map", &ctx->inode_reg_map);
1249 if (pctx.errcode) {
1250 pctx.num = 6;
1251 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1252 ctx->flags |= E2F_FLAG_ABORT;
1253 return;
1254 }
1255 pctx.errcode = e2fsck_allocate_subcluster_bitmap(fs,
1256 _("in-use block map"), EXT2FS_BMAP64_RBTREE,
1257 "block_found_map", &ctx->block_found_map);
1258 if (pctx.errcode) {
1259 pctx.num = 1;
1260 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1261 ctx->flags |= E2F_FLAG_ABORT;
1262 return;
1263 }
1264 pctx.errcode = e2fsck_allocate_block_bitmap(fs,
1265 _("metadata block map"), EXT2FS_BMAP64_RBTREE,
1266 "block_metadata_map", &ctx->block_metadata_map);
1267 if (pctx.errcode) {
1268 pctx.num = 1;
1269 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1270 ctx->flags |= E2F_FLAG_ABORT;
1271 return;
1272 }
1273 pctx.errcode = e2fsck_setup_icount(ctx, "inode_link_info", 0, NULL,
1274 &ctx->inode_link_info);
1275 if (pctx.errcode) {
1276 fix_problem(ctx, PR_1_ALLOCATE_ICOUNT, &pctx);
1277 ctx->flags |= E2F_FLAG_ABORT;
1278 return;
1279 }
1280 bufsize = inode_size;
1281 if (bufsize < sizeof(struct ext2_inode_large))
1282 bufsize = sizeof(struct ext2_inode_large);
1283 inode = (struct ext2_inode *)
1284 e2fsck_allocate_memory(ctx, bufsize, "scratch inode");
1285
1286 inodes_to_process = (struct process_inode_block *)
1287 e2fsck_allocate_memory(ctx,
1288 (ctx->process_inode_size *
1289 sizeof(struct process_inode_block)),
1290 "array of inodes to process");
1291 process_inode_count = 0;
1292
1293 pctx.errcode = ext2fs_init_dblist(fs, 0);
1294 if (pctx.errcode) {
1295 fix_problem(ctx, PR_1_ALLOCATE_DBCOUNT, &pctx);
1296 ctx->flags |= E2F_FLAG_ABORT;
1297 goto endit;
1298 }
1299
1300 /*
1301 * If the last orphan field is set, clear it, since the pass1
1302 * processing will automatically find and clear the orphans.
1303 * In the future, we may want to try using the last_orphan
1304 * linked list ourselves, but for now, we clear it so that the
1305 * ext3 mount code won't get confused.
1306 */
1307 if (!(ctx->options & E2F_OPT_READONLY)) {
1308 if (fs->super->s_last_orphan) {
1309 fs->super->s_last_orphan = 0;
1310 ext2fs_mark_super_dirty(fs);
1311 }
1312 }
1313
1314 mark_table_blocks(ctx);
1315 pctx.errcode = ext2fs_convert_subcluster_bitmap(fs,
1316 &ctx->block_found_map);
1317 if (pctx.errcode) {
1318 fix_problem(ctx, PR_1_CONVERT_SUBCLUSTER, &pctx);
1319 ctx->flags |= E2F_FLAG_ABORT;
1320 goto endit;
1321 }
1322 block_buf = (char *) e2fsck_allocate_memory(ctx, fs->blocksize * 3,
1323 "block interate buffer");
1324 if (EXT2_INODE_SIZE(fs->super) == EXT2_GOOD_OLD_INODE_SIZE)
1325 e2fsck_use_inode_shortcuts(ctx, 1);
1326 e2fsck_intercept_block_allocations(ctx);
1327 old_op = ehandler_operation(_("opening inode scan"));
1328 pctx.errcode = ext2fs_open_inode_scan(fs, ctx->inode_buffer_blocks,
1329 &scan);
1330 ehandler_operation(old_op);
1331 if (pctx.errcode) {
1332 fix_problem(ctx, PR_1_ISCAN_ERROR, &pctx);
1333 ctx->flags |= E2F_FLAG_ABORT;
1334 goto endit;
1335 }
1336 ext2fs_inode_scan_flags(scan, EXT2_SF_SKIP_MISSING_ITABLE |
1337 EXT2_SF_WARN_GARBAGE_INODES, 0);
1338 ctx->stashed_inode = inode;
1339 scan_struct.ctx = ctx;
1340 scan_struct.block_buf = block_buf;
1341 ext2fs_set_inode_callback(scan, scan_callback, &scan_struct);
1342 if (ctx->progress && ((ctx->progress)(ctx, 1, 0,
1343 ctx->fs->group_desc_count)))
1344 goto endit;
1345 if ((fs->super->s_wtime &&
1346 fs->super->s_wtime < fs->super->s_inodes_count) ||
1347 (fs->super->s_mtime &&
1348 fs->super->s_mtime < fs->super->s_inodes_count) ||
1349 (fs->super->s_mkfs_time &&
1350 fs->super->s_mkfs_time < fs->super->s_inodes_count))
1351 low_dtime_check = 0;
1352
1353 if (ext2fs_has_feature_mmp(fs->super) &&
1354 fs->super->s_mmp_block > fs->super->s_first_data_block &&
1355 fs->super->s_mmp_block < ext2fs_blocks_count(fs->super))
1356 ext2fs_mark_block_bitmap2(ctx->block_found_map,
1357 fs->super->s_mmp_block);
1358
1359 /* Set up ctx->lost_and_found if possible */
1360 (void) e2fsck_get_lost_and_found(ctx, 0);
1361
1362 while (1) {
1363 if (ino % (fs->super->s_inodes_per_group * 4) == 1) {
1364 if (e2fsck_mmp_update(fs))
1365 fatal_error(ctx, 0);
1366 }
1367 old_op = ehandler_operation(_("getting next inode from scan"));
1368 pctx.errcode = ext2fs_get_next_inode_full(scan, &ino,
1369 inode, inode_size);
1370 if (ino > ino_threshold)
1371 pass1_readahead(ctx, &ra_group, &ino_threshold);
1372 ehandler_operation(old_op);
1373 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
1374 goto endit;
1375 if (pctx.errcode == EXT2_ET_BAD_BLOCK_IN_INODE_TABLE) {
1376 /*
1377 * If badblocks says badblocks is bad, offer to clear
1378 * the list, update the in-core bb list, and restart
1379 * the inode scan.
1380 */
1381 if (ino == EXT2_BAD_INO &&
1382 fix_problem(ctx, PR_1_BADBLOCKS_IN_BADBLOCKS,
1383 &pctx)) {
1384 errcode_t err;
1385
1386 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1387 ext2fs_badblocks_list_free(ctx->fs->badblocks);
1388 ctx->fs->badblocks = NULL;
1389 err = ext2fs_read_bb_inode(ctx->fs,
1390 &ctx->fs->badblocks);
1391 if (err) {
1392 fix_problem(ctx, PR_1_ISCAN_ERROR,
1393 &pctx);
1394 ctx->flags |= E2F_FLAG_ABORT;
1395 goto endit;
1396 }
1397 err = ext2fs_inode_scan_goto_blockgroup(scan,
1398 0);
1399 if (err) {
1400 fix_problem(ctx, PR_1_ISCAN_ERROR,
1401 &pctx);
1402 ctx->flags |= E2F_FLAG_ABORT;
1403 goto endit;
1404 }
1405 continue;
1406 }
1407 if (!ctx->inode_bb_map)
1408 alloc_bb_map(ctx);
1409 ext2fs_mark_inode_bitmap2(ctx->inode_bb_map, ino);
1410 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1411 continue;
1412 }
1413 if (pctx.errcode &&
1414 pctx.errcode != EXT2_ET_INODE_CSUM_INVALID &&
1415 pctx.errcode != EXT2_ET_INODE_IS_GARBAGE) {
1416 fix_problem(ctx, PR_1_ISCAN_ERROR, &pctx);
1417 ctx->flags |= E2F_FLAG_ABORT;
1418 goto endit;
1419 }
1420 if (!ino)
1421 break;
1422 pctx.ino = ino;
1423 pctx.inode = inode;
1424 ctx->stashed_ino = ino;
1425
1426 /* Clear trashed inode? */
1427 if (pctx.errcode == EXT2_ET_INODE_IS_GARBAGE &&
1428 inode->i_links_count > 0 &&
1429 fix_problem(ctx, PR_1_INODE_IS_GARBAGE, &pctx)) {
1430 pctx.errcode = 0;
1431 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1432 }
1433 failed_csum = pctx.errcode != 0;
1434
1435 /*
1436 * Check for inodes who might have been part of the
1437 * orphaned list linked list. They should have gotten
1438 * dealt with by now, unless the list had somehow been
1439 * corrupted.
1440 *
1441 * FIXME: In the future, inodes which are still in use
1442 * (and which are therefore) pending truncation should
1443 * be handled specially. Right now we just clear the
1444 * dtime field, and the normal e2fsck handling of
1445 * inodes where i_size and the inode blocks are
1446 * inconsistent is to fix i_size, instead of releasing
1447 * the extra blocks. This won't catch the inodes that
1448 * was at the end of the orphan list, but it's better
1449 * than nothing. The right answer is that there
1450 * shouldn't be any bugs in the orphan list handling. :-)
1451 */
1452 if (inode->i_dtime && low_dtime_check &&
1453 inode->i_dtime < ctx->fs->super->s_inodes_count) {
1454 if (fix_problem(ctx, PR_1_LOW_DTIME, &pctx)) {
1455 inode->i_dtime = inode->i_links_count ?
1456 0 : ctx->now;
1457 e2fsck_write_inode(ctx, ino, inode,
1458 "pass1");
1459 failed_csum = 0;
1460 }
1461 }
1462
1463 if (inode->i_links_count) {
1464 pctx.errcode = ext2fs_icount_store(ctx->inode_link_info,
1465 ino, inode->i_links_count);
1466 if (pctx.errcode) {
1467 pctx.num = inode->i_links_count;
1468 fix_problem(ctx, PR_1_ICOUNT_STORE, &pctx);
1469 ctx->flags |= E2F_FLAG_ABORT;
1470 goto endit;
1471 }
1472 } else if ((ino >= EXT2_FIRST_INODE(fs->super)) &&
1473 !quota_inum_is_reserved(fs, ino)) {
1474 if (!inode->i_dtime && inode->i_mode) {
1475 if (fix_problem(ctx,
1476 PR_1_ZERO_DTIME, &pctx)) {
1477 inode->i_dtime = ctx->now;
1478 e2fsck_write_inode(ctx, ino, inode,
1479 "pass1");
1480 failed_csum = 0;
1481 }
1482 }
1483 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1484 continue;
1485 }
1486
1487 if ((inode->i_flags & EXT4_CASEFOLD_FL) &&
1488 ((!LINUX_S_ISDIR(inode->i_mode) &&
1489 fix_problem(ctx, PR_1_CASEFOLD_NONDIR, &pctx)) ||
1490 (!casefold_fs &&
1491 fix_problem(ctx, PR_1_CASEFOLD_FEATURE, &pctx)))) {
1492 inode->i_flags &= ~EXT4_CASEFOLD_FL;
1493 e2fsck_write_inode(ctx, ino, inode, "pass1");
1494 }
1495
1496 /* Conflicting inlinedata/extents inode flags? */
1497 if ((inode->i_flags & EXT4_INLINE_DATA_FL) &&
1498 (inode->i_flags & EXT4_EXTENTS_FL)) {
1499 int res = fix_inline_data_extents_file(ctx, ino, inode,
1500 inode_size,
1501 &pctx);
1502 if (res < 0) {
1503 /* skip FINISH_INODE_LOOP */
1504 continue;
1505 }
1506 }
1507
1508 /* Test for incorrect inline_data flags settings. */
1509 if ((inode->i_flags & EXT4_INLINE_DATA_FL) && !inlinedata_fs &&
1510 (ino >= EXT2_FIRST_INODE(fs->super))) {
1511 size_t size = 0;
1512
1513 pctx.errcode = get_inline_data_ea_size(fs, ino, &size);
1514 if (!pctx.errcode &&
1515 fix_problem(ctx, PR_1_INLINE_DATA_FEATURE, &pctx)) {
1516 ext2fs_set_feature_inline_data(sb);
1517 ext2fs_mark_super_dirty(fs);
1518 inlinedata_fs = 1;
1519 } else if (fix_problem(ctx, PR_1_INLINE_DATA_SET, &pctx)) {
1520 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1521 /* skip FINISH_INODE_LOOP */
1522 continue;
1523 }
1524 }
1525
1526 /* Test for inline data flag but no attr */
1527 if ((inode->i_flags & EXT4_INLINE_DATA_FL) && inlinedata_fs &&
1528 (ino >= EXT2_FIRST_INODE(fs->super))) {
1529 size_t size = 0;
1530 errcode_t err;
1531 int flags;
1532
1533 flags = fs->flags;
1534 if (failed_csum)
1535 fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
1536 err = get_inline_data_ea_size(fs, ino, &size);
1537 fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
1538 (fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
1539
1540 switch (err) {
1541 case 0:
1542 /* Everything is awesome... */
1543 break;
1544 case EXT2_ET_BAD_EA_BLOCK_NUM:
1545 case EXT2_ET_BAD_EA_HASH:
1546 case EXT2_ET_BAD_EA_HEADER:
1547 case EXT2_ET_EA_BAD_NAME_LEN:
1548 case EXT2_ET_EA_BAD_VALUE_SIZE:
1549 case EXT2_ET_EA_KEY_NOT_FOUND:
1550 case EXT2_ET_EA_NO_SPACE:
1551 case EXT2_ET_MISSING_EA_FEATURE:
1552 case EXT2_ET_INLINE_DATA_CANT_ITERATE:
1553 case EXT2_ET_INLINE_DATA_NO_BLOCK:
1554 case EXT2_ET_INLINE_DATA_NO_SPACE:
1555 case EXT2_ET_NO_INLINE_DATA:
1556 case EXT2_ET_EXT_ATTR_CSUM_INVALID:
1557 case EXT2_ET_EA_BAD_VALUE_OFFSET:
1558 case EXT2_ET_EA_INODE_CORRUPTED:
1559 /* broken EA or no system.data EA; truncate */
1560 if (fix_problem(ctx, PR_1_INLINE_DATA_NO_ATTR,
1561 &pctx)) {
1562 err = ext2fs_inode_size_set(fs, inode, 0);
1563 if (err) {
1564 pctx.errcode = err;
1565 ctx->flags |= E2F_FLAG_ABORT;
1566 goto endit;
1567 }
1568 inode->i_flags &= ~EXT4_INLINE_DATA_FL;
1569 memset(&inode->i_block, 0,
1570 sizeof(inode->i_block));
1571 e2fsck_write_inode(ctx, ino, inode,
1572 "pass1");
1573 failed_csum = 0;
1574 }
1575 break;
1576 default:
1577 /* Some other kind of non-xattr error? */
1578 pctx.errcode = err;
1579 ctx->flags |= E2F_FLAG_ABORT;
1580 goto endit;
1581 }
1582 }
1583
1584 /*
1585 * Test for incorrect extent flag settings.
1586 *
1587 * On big-endian machines we must be careful:
1588 * When the inode is read, the i_block array is not swapped
1589 * if the extent flag is set. Therefore if we are testing
1590 * for or fixing a wrongly-set flag, we must potentially
1591 * (un)swap before testing, or after fixing.
1592 */
1593
1594 /*
1595 * In this case the extents flag was set when read, so
1596 * extent_header_verify is ok. If the inode is cleared,
1597 * no need to swap... so no extra swapping here.
1598 */
1599 if ((inode->i_flags & EXT4_EXTENTS_FL) && !extent_fs &&
1600 (inode->i_links_count || (ino == EXT2_BAD_INO) ||
1601 (ino == EXT2_ROOT_INO) || (ino == EXT2_JOURNAL_INO))) {
1602 if ((ext2fs_extent_header_verify(inode->i_block,
1603 sizeof(inode->i_block)) == 0) &&
1604 fix_problem(ctx, PR_1_EXTENT_FEATURE, &pctx)) {
1605 ext2fs_set_feature_extents(sb);
1606 ext2fs_mark_super_dirty(fs);
1607 extent_fs = 1;
1608 } else if (fix_problem(ctx, PR_1_EXTENTS_SET, &pctx)) {
1609 clear_inode:
1610 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1611 if (ino == EXT2_BAD_INO)
1612 ext2fs_mark_inode_bitmap2(ctx->inode_used_map,
1613 ino);
1614 /* skip FINISH_INODE_LOOP */
1615 continue;
1616 }
1617 }
1618
1619 /*
1620 * For big-endian machines:
1621 * If the inode didn't have the extents flag set when it
1622 * was read, then the i_blocks array was swapped. To test
1623 * as an extents header, we must swap it back first.
1624 * IF we then set the extents flag, the entire i_block
1625 * array must be un/re-swapped to make it proper extents data.
1626 */
1627 if (extent_fs && !(inode->i_flags & EXT4_EXTENTS_FL) &&
1628 (inode->i_links_count || (ino == EXT2_BAD_INO) ||
1629 (ino == EXT2_ROOT_INO) || (ino == EXT2_JOURNAL_INO)) &&
1630 (LINUX_S_ISREG(inode->i_mode) ||
1631 LINUX_S_ISDIR(inode->i_mode))) {
1632 void *ehp;
1633 #ifdef WORDS_BIGENDIAN
1634 __u32 tmp_block[EXT2_N_BLOCKS];
1635
1636 for (i = 0; i < EXT2_N_BLOCKS; i++)
1637 tmp_block[i] = ext2fs_swab32(inode->i_block[i]);
1638 ehp = tmp_block;
1639 #else
1640 ehp = inode->i_block;
1641 #endif
1642 if ((ext2fs_extent_header_verify(ehp,
1643 sizeof(inode->i_block)) == 0) &&
1644 (fix_problem(ctx, PR_1_UNSET_EXTENT_FL, &pctx))) {
1645 inode->i_flags |= EXT4_EXTENTS_FL;
1646 #ifdef WORDS_BIGENDIAN
1647 memcpy(inode->i_block, tmp_block,
1648 sizeof(inode->i_block));
1649 #endif
1650 e2fsck_write_inode(ctx, ino, inode, "pass1");
1651 failed_csum = 0;
1652 }
1653 }
1654
1655 if (ino == EXT2_BAD_INO) {
1656 struct process_block_struct pb;
1657
1658 if ((failed_csum || inode->i_mode || inode->i_uid ||
1659 inode->i_gid || inode->i_links_count ||
1660 (inode->i_flags & EXT4_INLINE_DATA_FL) ||
1661 inode->i_file_acl) &&
1662 fix_problem(ctx, PR_1_INVALID_BAD_INODE, &pctx)) {
1663 memset(inode, 0, sizeof(struct ext2_inode));
1664 e2fsck_write_inode(ctx, ino, inode,
1665 "clear bad inode");
1666 failed_csum = 0;
1667 }
1668
1669 pctx.errcode = ext2fs_copy_bitmap(ctx->block_found_map,
1670 &pb.fs_meta_blocks);
1671 if (pctx.errcode) {
1672 pctx.num = 4;
1673 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1674 ctx->flags |= E2F_FLAG_ABORT;
1675 goto endit;
1676 }
1677 pb.ino = EXT2_BAD_INO;
1678 pb.num_blocks = pb.last_block = 0;
1679 pb.last_db_block = -1;
1680 pb.num_illegal_blocks = 0;
1681 pb.suppress = 0; pb.clear = 0; pb.is_dir = 0;
1682 pb.is_reg = 0; pb.fragmented = 0; pb.bbcheck = 0;
1683 pb.inode = inode;
1684 pb.pctx = &pctx;
1685 pb.ctx = ctx;
1686 pctx.errcode = ext2fs_block_iterate3(fs, ino, 0,
1687 block_buf, process_bad_block, &pb);
1688 ext2fs_free_block_bitmap(pb.fs_meta_blocks);
1689 if (pctx.errcode) {
1690 fix_problem(ctx, PR_1_BLOCK_ITERATE, &pctx);
1691 ctx->flags |= E2F_FLAG_ABORT;
1692 goto endit;
1693 }
1694 if (pb.bbcheck)
1695 if (!fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK_PROMPT, &pctx)) {
1696 ctx->flags |= E2F_FLAG_ABORT;
1697 goto endit;
1698 }
1699 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1700 clear_problem_context(&pctx);
1701 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1702 continue;
1703 } else if (ino == EXT2_ROOT_INO) {
1704 /*
1705 * Make sure the root inode is a directory; if
1706 * not, offer to clear it. It will be
1707 * regenerated in pass #3.
1708 */
1709 if (!LINUX_S_ISDIR(inode->i_mode)) {
1710 if (fix_problem(ctx, PR_1_ROOT_NO_DIR, &pctx))
1711 goto clear_inode;
1712 }
1713 /*
1714 * If dtime is set, offer to clear it. mke2fs
1715 * version 0.2b created filesystems with the
1716 * dtime field set for the root and lost+found
1717 * directories. We won't worry about
1718 * /lost+found, since that can be regenerated
1719 * easily. But we will fix the root directory
1720 * as a special case.
1721 */
1722 if (inode->i_dtime && inode->i_links_count) {
1723 if (fix_problem(ctx, PR_1_ROOT_DTIME, &pctx)) {
1724 inode->i_dtime = 0;
1725 e2fsck_write_inode(ctx, ino, inode,
1726 "pass1");
1727 failed_csum = 0;
1728 }
1729 }
1730 } else if (ino == EXT2_JOURNAL_INO) {
1731 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1732 if (fs->super->s_journal_inum == EXT2_JOURNAL_INO) {
1733 if (!LINUX_S_ISREG(inode->i_mode) &&
1734 fix_problem(ctx, PR_1_JOURNAL_BAD_MODE,
1735 &pctx)) {
1736 inode->i_mode = LINUX_S_IFREG;
1737 e2fsck_write_inode(ctx, ino, inode,
1738 "pass1");
1739 failed_csum = 0;
1740 }
1741 check_blocks(ctx, &pctx, block_buf, NULL);
1742 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1743 continue;
1744 }
1745 if ((inode->i_links_count ||
1746 inode->i_blocks || inode->i_block[0]) &&
1747 fix_problem(ctx, PR_1_JOURNAL_INODE_NOT_CLEAR,
1748 &pctx)) {
1749 memset(inode, 0, inode_size);
1750 ext2fs_icount_store(ctx->inode_link_info,
1751 ino, 0);
1752 e2fsck_write_inode_full(ctx, ino, inode,
1753 inode_size, "pass1");
1754 failed_csum = 0;
1755 }
1756 } else if (quota_inum_is_reserved(fs, ino)) {
1757 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1758 if (ext2fs_has_feature_quota(fs->super) &&
1759 quota_inum_is_super(fs->super, ino)) {
1760 if (!LINUX_S_ISREG(inode->i_mode) &&
1761 fix_problem(ctx, PR_1_QUOTA_BAD_MODE,
1762 &pctx)) {
1763 inode->i_mode = LINUX_S_IFREG;
1764 e2fsck_write_inode(ctx, ino, inode,
1765 "pass1");
1766 failed_csum = 0;
1767 }
1768 check_blocks(ctx, &pctx, block_buf, NULL);
1769 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1770 continue;
1771 }
1772 if ((inode->i_links_count ||
1773 inode->i_blocks || inode->i_block[0]) &&
1774 fix_problem(ctx, PR_1_QUOTA_INODE_NOT_CLEAR,
1775 &pctx)) {
1776 memset(inode, 0, inode_size);
1777 ext2fs_icount_store(ctx->inode_link_info,
1778 ino, 0);
1779 e2fsck_write_inode_full(ctx, ino, inode,
1780 inode_size, "pass1");
1781 failed_csum = 0;
1782 }
1783 } else if (ino < EXT2_FIRST_INODE(fs->super)) {
1784 problem_t problem = 0;
1785
1786 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1787 if (ino == EXT2_BOOT_LOADER_INO) {
1788 if (LINUX_S_ISDIR(inode->i_mode))
1789 problem = PR_1_RESERVED_BAD_MODE;
1790 } else if (ino == EXT2_RESIZE_INO) {
1791 if (inode->i_mode &&
1792 !LINUX_S_ISREG(inode->i_mode))
1793 problem = PR_1_RESERVED_BAD_MODE;
1794 } else {
1795 if (inode->i_mode != 0)
1796 problem = PR_1_RESERVED_BAD_MODE;
1797 }
1798 if (problem) {
1799 if (fix_problem(ctx, problem, &pctx)) {
1800 inode->i_mode = 0;
1801 e2fsck_write_inode(ctx, ino, inode,
1802 "pass1");
1803 failed_csum = 0;
1804 }
1805 }
1806 check_blocks(ctx, &pctx, block_buf, NULL);
1807 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1808 continue;
1809 }
1810
1811 if (!inode->i_links_count) {
1812 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1813 continue;
1814 }
1815 /*
1816 * n.b. 0.3c ext2fs code didn't clear i_links_count for
1817 * deleted files. Oops.
1818 *
1819 * Since all new ext2 implementations get this right,
1820 * we now assume that the case of non-zero
1821 * i_links_count and non-zero dtime means that we
1822 * should keep the file, not delete it.
1823 *
1824 */
1825 if (inode->i_dtime) {
1826 if (fix_problem(ctx, PR_1_SET_DTIME, &pctx)) {
1827 inode->i_dtime = 0;
1828 e2fsck_write_inode(ctx, ino, inode, "pass1");
1829 failed_csum = 0;
1830 }
1831 }
1832
1833 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1834 switch (fs->super->s_creator_os) {
1835 case EXT2_OS_HURD:
1836 frag = inode->osd2.hurd2.h_i_frag;
1837 fsize = inode->osd2.hurd2.h_i_fsize;
1838 break;
1839 default:
1840 frag = fsize = 0;
1841 }
1842
1843 if (inode->i_faddr || frag || fsize ||
1844 (!ext2fs_has_feature_largedir(fs->super) &&
1845 (LINUX_S_ISDIR(inode->i_mode) && inode->i_size_high)))
1846 mark_inode_bad(ctx, ino);
1847 if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
1848 !ext2fs_has_feature_64bit(fs->super) &&
1849 inode->osd2.linux2.l_i_file_acl_high != 0)
1850 mark_inode_bad(ctx, ino);
1851 if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
1852 !ext2fs_has_feature_huge_file(fs->super) &&
1853 (inode->osd2.linux2.l_i_blocks_hi != 0))
1854 mark_inode_bad(ctx, ino);
1855 if (inode->i_flags & EXT2_IMAGIC_FL) {
1856 if (imagic_fs) {
1857 if (!ctx->inode_imagic_map)
1858 alloc_imagic_map(ctx);
1859 ext2fs_mark_inode_bitmap2(ctx->inode_imagic_map,
1860 ino);
1861 } else {
1862 if (fix_problem(ctx, PR_1_SET_IMAGIC, &pctx)) {
1863 inode->i_flags &= ~EXT2_IMAGIC_FL;
1864 e2fsck_write_inode(ctx, ino,
1865 inode, "pass1");
1866 failed_csum = 0;
1867 }
1868 }
1869 }
1870
1871 check_inode_extra_space(ctx, &pctx, &ea_ibody_quota);
1872 check_is_really_dir(ctx, &pctx, block_buf);
1873
1874 /*
1875 * ext2fs_inode_has_valid_blocks2 does not actually look
1876 * at i_block[] values, so not endian-sensitive here.
1877 */
1878 if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL) &&
1879 LINUX_S_ISLNK(inode->i_mode) &&
1880 !ext2fs_inode_has_valid_blocks2(fs, inode) &&
1881 fix_problem(ctx, PR_1_FAST_SYMLINK_EXTENT_FL, &pctx)) {
1882 inode->i_flags &= ~EXT4_EXTENTS_FL;
1883 e2fsck_write_inode(ctx, ino, inode, "pass1");
1884 failed_csum = 0;
1885 }
1886
1887 if (LINUX_S_ISDIR(inode->i_mode)) {
1888 ext2fs_mark_inode_bitmap2(ctx->inode_dir_map, ino);
1889 e2fsck_add_dir_info(ctx, ino, 0);
1890 ctx->fs_directory_count++;
1891 if (inode->i_flags & EXT4_ENCRYPT_FL)
1892 add_encrypted_dir(ctx, ino);
1893 if (inode->i_flags & EXT4_CASEFOLD_FL)
1894 add_casefolded_dir(ctx, ino);
1895 } else if (LINUX_S_ISREG (inode->i_mode)) {
1896 ext2fs_mark_inode_bitmap2(ctx->inode_reg_map, ino);
1897 ctx->fs_regular_count++;
1898 } else if (LINUX_S_ISCHR (inode->i_mode) &&
1899 e2fsck_pass1_check_device_inode(fs, inode)) {
1900 check_extents_inlinedata(ctx, &pctx);
1901 check_immutable(ctx, &pctx);
1902 check_size(ctx, &pctx);
1903 ctx->fs_chardev_count++;
1904 } else if (LINUX_S_ISBLK (inode->i_mode) &&
1905 e2fsck_pass1_check_device_inode(fs, inode)) {
1906 check_extents_inlinedata(ctx, &pctx);
1907 check_immutable(ctx, &pctx);
1908 check_size(ctx, &pctx);
1909 ctx->fs_blockdev_count++;
1910 } else if (LINUX_S_ISLNK (inode->i_mode) &&
1911 e2fsck_pass1_check_symlink(fs, ino, inode,
1912 block_buf)) {
1913 check_immutable(ctx, &pctx);
1914 ctx->fs_symlinks_count++;
1915 if (inode->i_flags & EXT4_INLINE_DATA_FL) {
1916 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1917 continue;
1918 } else if (ext2fs_is_fast_symlink(inode)) {
1919 ctx->fs_fast_symlinks_count++;
1920 check_blocks(ctx, &pctx, block_buf,
1921 &ea_ibody_quota);
1922 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1923 continue;
1924 }
1925 }
1926 else if (LINUX_S_ISFIFO (inode->i_mode) &&
1927 e2fsck_pass1_check_device_inode(fs, inode)) {
1928 check_extents_inlinedata(ctx, &pctx);
1929 check_immutable(ctx, &pctx);
1930 check_size(ctx, &pctx);
1931 ctx->fs_fifo_count++;
1932 } else if ((LINUX_S_ISSOCK (inode->i_mode)) &&
1933 e2fsck_pass1_check_device_inode(fs, inode)) {
1934 check_extents_inlinedata(ctx, &pctx);
1935 check_immutable(ctx, &pctx);
1936 check_size(ctx, &pctx);
1937 ctx->fs_sockets_count++;
1938 } else
1939 mark_inode_bad(ctx, ino);
1940 if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
1941 !(inode->i_flags & EXT4_INLINE_DATA_FL)) {
1942 if (inode->i_block[EXT2_IND_BLOCK])
1943 ctx->fs_ind_count++;
1944 if (inode->i_block[EXT2_DIND_BLOCK])
1945 ctx->fs_dind_count++;
1946 if (inode->i_block[EXT2_TIND_BLOCK])
1947 ctx->fs_tind_count++;
1948 }
1949 if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
1950 !(inode->i_flags & EXT4_INLINE_DATA_FL) &&
1951 (inode->i_block[EXT2_IND_BLOCK] ||
1952 inode->i_block[EXT2_DIND_BLOCK] ||
1953 inode->i_block[EXT2_TIND_BLOCK] ||
1954 ext2fs_file_acl_block(fs, inode))) {
1955 struct process_inode_block *itp;
1956
1957 itp = &inodes_to_process[process_inode_count];
1958 itp->ino = ino;
1959 itp->ea_ibody_quota = ea_ibody_quota;
1960 if (inode_size < sizeof(struct ext2_inode_large))
1961 memcpy(&itp->inode, inode, inode_size);
1962 else
1963 memcpy(&itp->inode, inode, sizeof(itp->inode));
1964 process_inode_count++;
1965 } else
1966 check_blocks(ctx, &pctx, block_buf, &ea_ibody_quota);
1967
1968 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1969
1970 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
1971 goto endit;
1972
1973 if (process_inode_count >= ctx->process_inode_size) {
1974 process_inodes(ctx, block_buf);
1975
1976 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
1977 goto endit;
1978 }
1979 }
1980 process_inodes(ctx, block_buf);
1981 ext2fs_close_inode_scan(scan);
1982 scan = NULL;
1983
1984 reserve_block_for_root_repair(ctx);
1985 reserve_block_for_lnf_repair(ctx);
1986
1987 /*
1988 * If any extended attribute blocks' reference counts need to
1989 * be adjusted, either up (ctx->refcount_extra), or down
1990 * (ctx->refcount), then fix them.
1991 */
1992 if (ctx->refcount) {
1993 adjust_extattr_refcount(ctx, ctx->refcount, block_buf, -1);
1994 ea_refcount_free(ctx->refcount);
1995 ctx->refcount = 0;
1996 }
1997 if (ctx->refcount_extra) {
1998 adjust_extattr_refcount(ctx, ctx->refcount_extra,
1999 block_buf, +1);
2000 ea_refcount_free(ctx->refcount_extra);
2001 ctx->refcount_extra = 0;
2002 }
2003
2004 if (ctx->ea_block_quota_blocks) {
2005 ea_refcount_free(ctx->ea_block_quota_blocks);
2006 ctx->ea_block_quota_blocks = 0;
2007 }
2008
2009 if (ctx->ea_block_quota_inodes) {
2010 ea_refcount_free(ctx->ea_block_quota_inodes);
2011 ctx->ea_block_quota_inodes = 0;
2012 }
2013
2014 if (ctx->invalid_bitmaps)
2015 handle_fs_bad_blocks(ctx);
2016
2017 /* We don't need the block_ea_map any more */
2018 if (ctx->block_ea_map) {
2019 ext2fs_free_block_bitmap(ctx->block_ea_map);
2020 ctx->block_ea_map = 0;
2021 }
2022
2023 if (ctx->flags & E2F_FLAG_RESIZE_INODE) {
2024 clear_problem_context(&pctx);
2025 pctx.errcode = ext2fs_create_resize_inode(fs);
2026 if (pctx.errcode) {
2027 if (!fix_problem(ctx, PR_1_RESIZE_INODE_CREATE,
2028 &pctx)) {
2029 ctx->flags |= E2F_FLAG_ABORT;
2030 goto endit;
2031 }
2032 pctx.errcode = 0;
2033 }
2034 if (!pctx.errcode) {
2035 e2fsck_read_inode(ctx, EXT2_RESIZE_INO, inode,
2036 "recreate inode");
2037 inode->i_mtime = ctx->now;
2038 e2fsck_write_inode(ctx, EXT2_RESIZE_INO, inode,
2039 "recreate inode");
2040 }
2041 ctx->flags &= ~E2F_FLAG_RESIZE_INODE;
2042 }
2043
2044 if (ctx->flags & E2F_FLAG_RESTART) {
2045 /*
2046 * Only the master copy of the superblock and block
2047 * group descriptors are going to be written during a
2048 * restart, so set the superblock to be used to be the
2049 * master superblock.
2050 */
2051 ctx->use_superblock = 0;
2052 unwind_pass1(fs);
2053 goto endit;
2054 }
2055
2056 if (ctx->block_dup_map) {
2057 if (ctx->options & E2F_OPT_PREEN) {
2058 clear_problem_context(&pctx);
2059 fix_problem(ctx, PR_1_DUP_BLOCKS_PREENSTOP, &pctx);
2060 }
2061 e2fsck_pass1_dupblocks(ctx, block_buf);
2062 }
2063 ctx->flags |= E2F_FLAG_ALLOC_OK;
2064 ext2fs_free_mem(&inodes_to_process);
2065 endit:
2066 e2fsck_use_inode_shortcuts(ctx, 0);
2067
2068 if (scan)
2069 ext2fs_close_inode_scan(scan);
2070 if (block_buf)
2071 ext2fs_free_mem(&block_buf);
2072 if (inode)
2073 ext2fs_free_mem(&inode);
2074
2075 /*
2076 * The l+f inode may have been cleared, so zap it now and
2077 * later passes will recalculate it if necessary
2078 */
2079 ctx->lost_and_found = 0;
2080
2081 if ((ctx->flags & E2F_FLAG_SIGNAL_MASK) == 0)
2082 print_resource_track(ctx, _("Pass 1"), &rtrack, ctx->fs->io);
2083 else
2084 ctx->invalid_bitmaps++;
2085 }
2086 #undef FINISH_INODE_LOOP
2087
2088 /*
2089 * When the inode_scan routines call this callback at the end of the
2090 * glock group, call process_inodes.
2091 */
scan_callback(ext2_filsys fs,ext2_inode_scan scan EXT2FS_ATTR ((unused)),dgrp_t group,void * priv_data)2092 static errcode_t scan_callback(ext2_filsys fs,
2093 ext2_inode_scan scan EXT2FS_ATTR((unused)),
2094 dgrp_t group, void * priv_data)
2095 {
2096 struct scan_callback_struct *scan_struct;
2097 e2fsck_t ctx;
2098
2099 scan_struct = (struct scan_callback_struct *) priv_data;
2100 ctx = scan_struct->ctx;
2101
2102 process_inodes((e2fsck_t) fs->priv_data, scan_struct->block_buf);
2103
2104 if (ctx->progress)
2105 if ((ctx->progress)(ctx, 1, group+1,
2106 ctx->fs->group_desc_count))
2107 return EXT2_ET_CANCEL_REQUESTED;
2108
2109 return 0;
2110 }
2111
2112 /*
2113 * Process the inodes in the "inodes to process" list.
2114 */
process_inodes(e2fsck_t ctx,char * block_buf)2115 static void process_inodes(e2fsck_t ctx, char *block_buf)
2116 {
2117 int i;
2118 struct ext2_inode *old_stashed_inode;
2119 ext2_ino_t old_stashed_ino;
2120 const char *old_operation;
2121 char buf[80];
2122 struct problem_context pctx;
2123
2124 #if 0
2125 printf("begin process_inodes: ");
2126 #endif
2127 if (process_inode_count == 0)
2128 return;
2129 old_operation = ehandler_operation(0);
2130 old_stashed_inode = ctx->stashed_inode;
2131 old_stashed_ino = ctx->stashed_ino;
2132 qsort(inodes_to_process, process_inode_count,
2133 sizeof(struct process_inode_block), process_inode_cmp);
2134 clear_problem_context(&pctx);
2135 for (i=0; i < process_inode_count; i++) {
2136 pctx.inode = ctx->stashed_inode =
2137 (struct ext2_inode *) &inodes_to_process[i].inode;
2138 pctx.ino = ctx->stashed_ino = inodes_to_process[i].ino;
2139
2140 #if 0
2141 printf("%u ", pctx.ino);
2142 #endif
2143 sprintf(buf, _("reading indirect blocks of inode %u"),
2144 pctx.ino);
2145 ehandler_operation(buf);
2146 check_blocks(ctx, &pctx, block_buf,
2147 &inodes_to_process[i].ea_ibody_quota);
2148 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
2149 break;
2150 }
2151 ctx->stashed_inode = old_stashed_inode;
2152 ctx->stashed_ino = old_stashed_ino;
2153 process_inode_count = 0;
2154 #if 0
2155 printf("end process inodes\n");
2156 #endif
2157 ehandler_operation(old_operation);
2158 }
2159
process_inode_cmp(const void * a,const void * b)2160 static EXT2_QSORT_TYPE process_inode_cmp(const void *a, const void *b)
2161 {
2162 const struct process_inode_block *ib_a =
2163 (const struct process_inode_block *) a;
2164 const struct process_inode_block *ib_b =
2165 (const struct process_inode_block *) b;
2166 int ret;
2167
2168 ret = (ib_a->inode.i_block[EXT2_IND_BLOCK] -
2169 ib_b->inode.i_block[EXT2_IND_BLOCK]);
2170 if (ret == 0)
2171 /*
2172 * We only call process_inodes() for non-extent
2173 * inodes, so it's OK to pass NULL to
2174 * ext2fs_file_acl_block() here.
2175 */
2176 ret = ext2fs_file_acl_block(0, ext2fs_const_inode(&ib_a->inode)) -
2177 ext2fs_file_acl_block(0, ext2fs_const_inode(&ib_b->inode));
2178 if (ret == 0)
2179 ret = ib_a->ino - ib_b->ino;
2180 return ret;
2181 }
2182
2183 /*
2184 * Mark an inode as being bad in some what
2185 */
mark_inode_bad(e2fsck_t ctx,ino_t ino)2186 static void mark_inode_bad(e2fsck_t ctx, ino_t ino)
2187 {
2188 struct problem_context pctx;
2189
2190 if (!ctx->inode_bad_map) {
2191 clear_problem_context(&pctx);
2192
2193 pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
2194 _("bad inode map"), EXT2FS_BMAP64_RBTREE,
2195 "inode_bad_map", &ctx->inode_bad_map);
2196 if (pctx.errcode) {
2197 pctx.num = 3;
2198 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
2199 /* Should never get here */
2200 ctx->flags |= E2F_FLAG_ABORT;
2201 return;
2202 }
2203 }
2204 ext2fs_mark_inode_bitmap2(ctx->inode_bad_map, ino);
2205 }
2206
add_encrypted_dir(e2fsck_t ctx,ino_t ino)2207 static void add_encrypted_dir(e2fsck_t ctx, ino_t ino)
2208 {
2209 struct problem_context pctx;
2210
2211 if (!ctx->encrypted_dirs) {
2212 pctx.errcode = ext2fs_u32_list_create(&ctx->encrypted_dirs, 0);
2213 if (pctx.errcode)
2214 goto error;
2215 }
2216 pctx.errcode = ext2fs_u32_list_add(ctx->encrypted_dirs, ino);
2217 if (pctx.errcode == 0)
2218 return;
2219 error:
2220 fix_problem(ctx, PR_1_ALLOCATE_ENCRYPTED_DIRLIST, &pctx);
2221 /* Should never get here */
2222 ctx->flags |= E2F_FLAG_ABORT;
2223 }
2224
add_casefolded_dir(e2fsck_t ctx,ino_t ino)2225 static void add_casefolded_dir(e2fsck_t ctx, ino_t ino)
2226 {
2227 struct problem_context pctx;
2228
2229 if (!ctx->casefolded_dirs) {
2230 pctx.errcode = ext2fs_u32_list_create(&ctx->casefolded_dirs, 0);
2231 if (pctx.errcode)
2232 goto error;
2233 }
2234 pctx.errcode = ext2fs_u32_list_add(ctx->casefolded_dirs, ino);
2235 if (pctx.errcode == 0)
2236 return;
2237 error:
2238 fix_problem(ctx, PR_1_ALLOCATE_CASEFOLDED_DIRLIST, &pctx);
2239 /* Should never get here */
2240 ctx->flags |= E2F_FLAG_ABORT;
2241 }
2242
2243 /*
2244 * This procedure will allocate the inode "bb" (badblock) map table
2245 */
alloc_bb_map(e2fsck_t ctx)2246 static void alloc_bb_map(e2fsck_t ctx)
2247 {
2248 struct problem_context pctx;
2249
2250 clear_problem_context(&pctx);
2251 pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
2252 _("inode in bad block map"), EXT2FS_BMAP64_RBTREE,
2253 "inode_bb_map", &ctx->inode_bb_map);
2254 if (pctx.errcode) {
2255 pctx.num = 4;
2256 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
2257 /* Should never get here */
2258 ctx->flags |= E2F_FLAG_ABORT;
2259 return;
2260 }
2261 }
2262
2263 /*
2264 * This procedure will allocate the inode imagic table
2265 */
alloc_imagic_map(e2fsck_t ctx)2266 static void alloc_imagic_map(e2fsck_t ctx)
2267 {
2268 struct problem_context pctx;
2269
2270 clear_problem_context(&pctx);
2271 pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
2272 _("imagic inode map"), EXT2FS_BMAP64_RBTREE,
2273 "inode_imagic_map", &ctx->inode_imagic_map);
2274 if (pctx.errcode) {
2275 pctx.num = 5;
2276 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
2277 /* Should never get here */
2278 ctx->flags |= E2F_FLAG_ABORT;
2279 return;
2280 }
2281 }
2282
2283 /*
2284 * Marks a block as in use, setting the dup_map if it's been set
2285 * already. Called by process_block and process_bad_block.
2286 *
2287 * WARNING: Assumes checks have already been done to make sure block
2288 * is valid. This is true in both process_block and process_bad_block.
2289 */
mark_block_used(e2fsck_t ctx,blk64_t block)2290 static _INLINE_ void mark_block_used(e2fsck_t ctx, blk64_t block)
2291 {
2292 struct problem_context pctx;
2293
2294 clear_problem_context(&pctx);
2295
2296 if (ext2fs_fast_test_block_bitmap2(ctx->block_found_map, block)) {
2297 if (ext2fs_has_feature_shared_blocks(ctx->fs->super) &&
2298 !(ctx->options & E2F_OPT_UNSHARE_BLOCKS)) {
2299 return;
2300 }
2301 if (!ctx->block_dup_map) {
2302 pctx.errcode = e2fsck_allocate_block_bitmap(ctx->fs,
2303 _("multiply claimed block map"),
2304 EXT2FS_BMAP64_RBTREE, "block_dup_map",
2305 &ctx->block_dup_map);
2306 if (pctx.errcode) {
2307 pctx.num = 3;
2308 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR,
2309 &pctx);
2310 /* Should never get here */
2311 ctx->flags |= E2F_FLAG_ABORT;
2312 return;
2313 }
2314 }
2315 ext2fs_fast_mark_block_bitmap2(ctx->block_dup_map, block);
2316 } else {
2317 ext2fs_fast_mark_block_bitmap2(ctx->block_found_map, block);
2318 }
2319 }
2320
2321 /*
2322 * When cluster size is greater than one block, it is caller's responsibility
2323 * to make sure block parameter starts at a cluster boundary.
2324 */
mark_blocks_used(e2fsck_t ctx,blk64_t block,unsigned int num)2325 static _INLINE_ void mark_blocks_used(e2fsck_t ctx, blk64_t block,
2326 unsigned int num)
2327 {
2328 if (ext2fs_test_block_bitmap_range2(ctx->block_found_map, block, num))
2329 ext2fs_mark_block_bitmap_range2(ctx->block_found_map, block, num);
2330 else {
2331 unsigned int i;
2332
2333 for (i = 0; i < num; i += EXT2FS_CLUSTER_RATIO(ctx->fs))
2334 mark_block_used(ctx, block + i);
2335 }
2336 }
2337
2338 /*
2339 * Adjust the extended attribute block's reference counts at the end
2340 * of pass 1, either by subtracting out references for EA blocks that
2341 * are still referenced in ctx->refcount, or by adding references for
2342 * EA blocks that had extra references as accounted for in
2343 * ctx->refcount_extra.
2344 */
adjust_extattr_refcount(e2fsck_t ctx,ext2_refcount_t refcount,char * block_buf,int adjust_sign)2345 static void adjust_extattr_refcount(e2fsck_t ctx, ext2_refcount_t refcount,
2346 char *block_buf, int adjust_sign)
2347 {
2348 struct ext2_ext_attr_header *header;
2349 struct problem_context pctx;
2350 ext2_filsys fs = ctx->fs;
2351 blk64_t blk;
2352 __u32 should_be;
2353 ea_value_t count;
2354
2355 clear_problem_context(&pctx);
2356
2357 ea_refcount_intr_begin(refcount);
2358 while (1) {
2359 if ((blk = ea_refcount_intr_next(refcount, &count)) == 0)
2360 break;
2361 pctx.blk = blk;
2362 pctx.errcode = ext2fs_read_ext_attr3(fs, blk, block_buf,
2363 pctx.ino);
2364 if (pctx.errcode) {
2365 fix_problem(ctx, PR_1_EXTATTR_READ_ABORT, &pctx);
2366 return;
2367 }
2368 header = (struct ext2_ext_attr_header *) block_buf;
2369 pctx.blkcount = header->h_refcount;
2370 should_be = header->h_refcount + adjust_sign * (int)count;
2371 pctx.num = should_be;
2372 if (fix_problem(ctx, PR_1_EXTATTR_REFCOUNT, &pctx)) {
2373 header->h_refcount = should_be;
2374 pctx.errcode = ext2fs_write_ext_attr3(fs, blk,
2375 block_buf,
2376 pctx.ino);
2377 if (pctx.errcode) {
2378 fix_problem(ctx, PR_1_EXTATTR_WRITE_ABORT,
2379 &pctx);
2380 continue;
2381 }
2382 }
2383 }
2384 }
2385
2386 /*
2387 * Handle processing the extended attribute blocks
2388 */
check_ext_attr(e2fsck_t ctx,struct problem_context * pctx,char * block_buf,struct ea_quota * ea_block_quota)2389 static int check_ext_attr(e2fsck_t ctx, struct problem_context *pctx,
2390 char *block_buf, struct ea_quota *ea_block_quota)
2391 {
2392 ext2_filsys fs = ctx->fs;
2393 ext2_ino_t ino = pctx->ino;
2394 struct ext2_inode *inode = pctx->inode;
2395 blk64_t blk;
2396 char * end;
2397 struct ext2_ext_attr_header *header;
2398 struct ext2_ext_attr_entry *first, *entry;
2399 blk64_t quota_blocks = EXT2FS_C2B(fs, 1);
2400 __u64 quota_inodes = 0;
2401 region_t region = 0;
2402 int failed_csum = 0;
2403
2404 ea_block_quota->blocks = 0;
2405 ea_block_quota->inodes = 0;
2406
2407 blk = ext2fs_file_acl_block(fs, inode);
2408 if (blk == 0)
2409 return 0;
2410
2411 /*
2412 * If the Extended attribute flag isn't set, then a non-zero
2413 * file acl means that the inode is corrupted.
2414 *
2415 * Or if the extended attribute block is an invalid block,
2416 * then the inode is also corrupted.
2417 */
2418 if (!ext2fs_has_feature_xattr(fs->super) ||
2419 (blk < fs->super->s_first_data_block) ||
2420 (blk >= ext2fs_blocks_count(fs->super))) {
2421 mark_inode_bad(ctx, ino);
2422 return 0;
2423 }
2424
2425 /* If ea bitmap hasn't been allocated, create it */
2426 if (!ctx->block_ea_map) {
2427 pctx->errcode = e2fsck_allocate_block_bitmap(fs,
2428 _("ext attr block map"),
2429 EXT2FS_BMAP64_RBTREE, "block_ea_map",
2430 &ctx->block_ea_map);
2431 if (pctx->errcode) {
2432 pctx->num = 2;
2433 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, pctx);
2434 ctx->flags |= E2F_FLAG_ABORT;
2435 return 0;
2436 }
2437 }
2438
2439 /* Create the EA refcount structure if necessary */
2440 if (!ctx->refcount) {
2441 pctx->errcode = ea_refcount_create(0, &ctx->refcount);
2442 if (pctx->errcode) {
2443 pctx->num = 1;
2444 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
2445 ctx->flags |= E2F_FLAG_ABORT;
2446 return 0;
2447 }
2448 }
2449
2450 #if 0
2451 /* Debugging text */
2452 printf("Inode %u has EA block %u\n", ino, blk);
2453 #endif
2454
2455 /* Have we seen this EA block before? */
2456 if (ext2fs_fast_test_block_bitmap2(ctx->block_ea_map, blk)) {
2457 ea_block_quota->blocks = EXT2FS_C2B(fs, 1);
2458 ea_block_quota->inodes = 0;
2459
2460 if (ctx->ea_block_quota_blocks) {
2461 ea_refcount_fetch(ctx->ea_block_quota_blocks, blk,
2462 "a_blocks);
2463 if (quota_blocks)
2464 ea_block_quota->blocks = quota_blocks;
2465 }
2466
2467 if (ctx->ea_block_quota_inodes)
2468 ea_refcount_fetch(ctx->ea_block_quota_inodes, blk,
2469 &ea_block_quota->inodes);
2470
2471 if (ea_refcount_decrement(ctx->refcount, blk, 0) == 0)
2472 return 1;
2473 /* Ooops, this EA was referenced more than it stated */
2474 if (!ctx->refcount_extra) {
2475 pctx->errcode = ea_refcount_create(0,
2476 &ctx->refcount_extra);
2477 if (pctx->errcode) {
2478 pctx->num = 2;
2479 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
2480 ctx->flags |= E2F_FLAG_ABORT;
2481 return 0;
2482 }
2483 }
2484 ea_refcount_increment(ctx->refcount_extra, blk, 0);
2485 return 1;
2486 }
2487
2488 /*
2489 * OK, we haven't seen this EA block yet. So we need to
2490 * validate it
2491 */
2492 pctx->blk = blk;
2493 pctx->errcode = ext2fs_read_ext_attr3(fs, blk, block_buf, pctx->ino);
2494 if (pctx->errcode == EXT2_ET_EXT_ATTR_CSUM_INVALID) {
2495 pctx->errcode = 0;
2496 failed_csum = 1;
2497 } else if (pctx->errcode == EXT2_ET_BAD_EA_HEADER)
2498 pctx->errcode = 0;
2499
2500 if (pctx->errcode &&
2501 fix_problem(ctx, PR_1_READ_EA_BLOCK, pctx)) {
2502 pctx->errcode = 0;
2503 goto clear_extattr;
2504 }
2505 header = (struct ext2_ext_attr_header *) block_buf;
2506 pctx->blk = ext2fs_file_acl_block(fs, inode);
2507 if (((ctx->ext_attr_ver == 1) &&
2508 (header->h_magic != EXT2_EXT_ATTR_MAGIC_v1)) ||
2509 ((ctx->ext_attr_ver == 2) &&
2510 (header->h_magic != EXT2_EXT_ATTR_MAGIC))) {
2511 if (fix_problem(ctx, PR_1_BAD_EA_BLOCK, pctx))
2512 goto clear_extattr;
2513 }
2514
2515 if (header->h_blocks != 1) {
2516 if (fix_problem(ctx, PR_1_EA_MULTI_BLOCK, pctx))
2517 goto clear_extattr;
2518 }
2519
2520 if (pctx->errcode && fix_problem(ctx, PR_1_READ_EA_BLOCK, pctx))
2521 goto clear_extattr;
2522
2523 region = region_create(0, fs->blocksize);
2524 if (!region) {
2525 fix_problem(ctx, PR_1_EA_ALLOC_REGION_ABORT, pctx);
2526 ctx->flags |= E2F_FLAG_ABORT;
2527 return 0;
2528 }
2529 if (region_allocate(region, 0, sizeof(struct ext2_ext_attr_header))) {
2530 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
2531 goto clear_extattr;
2532 }
2533
2534 first = (struct ext2_ext_attr_entry *)(header+1);
2535 end = block_buf + fs->blocksize;
2536 entry = first;
2537 while ((char *)entry < end && *(__u32 *)entry) {
2538 __u32 hash;
2539
2540 if (region_allocate(region, (char *)entry - (char *)header,
2541 EXT2_EXT_ATTR_LEN(entry->e_name_len))) {
2542 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
2543 goto clear_extattr;
2544 break;
2545 }
2546 if ((ctx->ext_attr_ver == 1 &&
2547 (entry->e_name_len == 0 || entry->e_name_index != 0)) ||
2548 (ctx->ext_attr_ver == 2 &&
2549 entry->e_name_index == 0)) {
2550 if (fix_problem(ctx, PR_1_EA_BAD_NAME, pctx))
2551 goto clear_extattr;
2552 break;
2553 }
2554 if (entry->e_value_inum == 0) {
2555 if (entry->e_value_offs + entry->e_value_size >
2556 fs->blocksize) {
2557 if (fix_problem(ctx, PR_1_EA_BAD_VALUE, pctx))
2558 goto clear_extattr;
2559 break;
2560 }
2561 if (entry->e_value_size &&
2562 region_allocate(region, entry->e_value_offs,
2563 EXT2_EXT_ATTR_SIZE(entry->e_value_size))) {
2564 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION,
2565 pctx))
2566 goto clear_extattr;
2567 }
2568
2569 hash = ext2fs_ext_attr_hash_entry(entry, block_buf +
2570 entry->e_value_offs);
2571
2572 if (entry->e_hash != hash) {
2573 pctx->num = entry->e_hash;
2574 if (fix_problem(ctx, PR_1_ATTR_HASH, pctx))
2575 goto clear_extattr;
2576 entry->e_hash = hash;
2577 }
2578 } else {
2579 problem_t problem;
2580 blk64_t entry_quota_blocks;
2581
2582 problem = check_large_ea_inode(ctx, entry, pctx,
2583 &entry_quota_blocks);
2584 if (problem && fix_problem(ctx, problem, pctx))
2585 goto clear_extattr;
2586
2587 quota_blocks += entry_quota_blocks;
2588 quota_inodes++;
2589 }
2590
2591 entry = EXT2_EXT_ATTR_NEXT(entry);
2592 }
2593 if (region_allocate(region, (char *)entry - (char *)header, 4)) {
2594 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
2595 goto clear_extattr;
2596 }
2597 region_free(region);
2598
2599 /*
2600 * We only get here if there was no other errors that were fixed.
2601 * If there was a checksum fail, ask to correct it.
2602 */
2603 if (failed_csum &&
2604 fix_problem(ctx, PR_1_EA_BLOCK_ONLY_CSUM_INVALID, pctx)) {
2605 pctx->errcode = ext2fs_write_ext_attr3(fs, blk, block_buf,
2606 pctx->ino);
2607 if (pctx->errcode)
2608 return 0;
2609 }
2610
2611 if (quota_blocks != EXT2FS_C2B(fs, 1U)) {
2612 if (!ctx->ea_block_quota_blocks) {
2613 pctx->errcode = ea_refcount_create(0,
2614 &ctx->ea_block_quota_blocks);
2615 if (pctx->errcode) {
2616 pctx->num = 3;
2617 goto refcount_fail;
2618 }
2619 }
2620 ea_refcount_store(ctx->ea_block_quota_blocks, blk,
2621 quota_blocks);
2622 }
2623
2624 if (quota_inodes) {
2625 if (!ctx->ea_block_quota_inodes) {
2626 pctx->errcode = ea_refcount_create(0,
2627 &ctx->ea_block_quota_inodes);
2628 if (pctx->errcode) {
2629 pctx->num = 4;
2630 refcount_fail:
2631 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
2632 ctx->flags |= E2F_FLAG_ABORT;
2633 return 0;
2634 }
2635 }
2636
2637 ea_refcount_store(ctx->ea_block_quota_inodes, blk,
2638 quota_inodes);
2639 }
2640 ea_block_quota->blocks = quota_blocks;
2641 ea_block_quota->inodes = quota_inodes;
2642
2643 inc_ea_inode_refs(ctx, pctx, first, end);
2644 ea_refcount_store(ctx->refcount, blk, header->h_refcount - 1);
2645 mark_block_used(ctx, blk);
2646 ext2fs_fast_mark_block_bitmap2(ctx->block_ea_map, blk);
2647 return 1;
2648
2649 clear_extattr:
2650 if (region)
2651 region_free(region);
2652 ext2fs_file_acl_block_set(fs, inode, 0);
2653 e2fsck_write_inode(ctx, ino, inode, "check_ext_attr");
2654 return 0;
2655 }
2656
2657 /* Returns 1 if bad htree, 0 if OK */
handle_htree(e2fsck_t ctx,struct problem_context * pctx,ext2_ino_t ino,struct ext2_inode * inode,char * block_buf)2658 static int handle_htree(e2fsck_t ctx, struct problem_context *pctx,
2659 ext2_ino_t ino, struct ext2_inode *inode,
2660 char *block_buf)
2661 {
2662 struct ext2_dx_root_info *root;
2663 ext2_filsys fs = ctx->fs;
2664 errcode_t retval;
2665 blk64_t blk;
2666
2667 if ((!LINUX_S_ISDIR(inode->i_mode) &&
2668 fix_problem(ctx, PR_1_HTREE_NODIR, pctx)) ||
2669 (!ext2fs_has_feature_dir_index(fs->super) &&
2670 fix_problem(ctx, PR_1_HTREE_SET, pctx)))
2671 return 1;
2672
2673 pctx->errcode = ext2fs_bmap2(fs, ino, inode, 0, 0, 0, 0, &blk);
2674
2675 if ((pctx->errcode) ||
2676 (blk == 0) ||
2677 (blk < fs->super->s_first_data_block) ||
2678 (blk >= ext2fs_blocks_count(fs->super))) {
2679 if (fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
2680 return 1;
2681 else
2682 return 0;
2683 }
2684
2685 retval = io_channel_read_blk64(fs->io, blk, 1, block_buf);
2686 if (retval && fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
2687 return 1;
2688
2689 /* XXX should check that beginning matches a directory */
2690 root = (struct ext2_dx_root_info *) (block_buf + 24);
2691
2692 if ((root->reserved_zero || root->info_length < 8) &&
2693 fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
2694 return 1;
2695
2696 pctx->num = root->hash_version;
2697 if ((root->hash_version != EXT2_HASH_LEGACY) &&
2698 (root->hash_version != EXT2_HASH_HALF_MD4) &&
2699 (root->hash_version != EXT2_HASH_TEA) &&
2700 (root->hash_version != EXT2_HASH_SIPHASH) &&
2701 fix_problem(ctx, PR_1_HTREE_HASHV, pctx))
2702 return 1;
2703
2704 if (ext4_hash_in_dirent(inode)) {
2705 if (root->hash_version != EXT2_HASH_SIPHASH &&
2706 fix_problem(ctx, PR_1_HTREE_NEEDS_SIPHASH, pctx))
2707 return 1;
2708 } else {
2709 if (root->hash_version == EXT2_HASH_SIPHASH &&
2710 fix_problem(ctx, PR_1_HTREE_CANNOT_SIPHASH, pctx))
2711 return 1;
2712 }
2713
2714 if ((root->unused_flags & EXT2_HASH_FLAG_INCOMPAT) &&
2715 fix_problem(ctx, PR_1_HTREE_INCOMPAT, pctx))
2716 return 1;
2717
2718 pctx->num = root->indirect_levels;
2719 if ((root->indirect_levels > ext2_dir_htree_level(fs)) &&
2720 fix_problem(ctx, PR_1_HTREE_DEPTH, pctx))
2721 return 1;
2722
2723 return 0;
2724 }
2725
e2fsck_clear_inode(e2fsck_t ctx,ext2_ino_t ino,struct ext2_inode * inode,int restart_flag,const char * source)2726 void e2fsck_clear_inode(e2fsck_t ctx, ext2_ino_t ino,
2727 struct ext2_inode *inode, int restart_flag,
2728 const char *source)
2729 {
2730 inode->i_flags = 0;
2731 inode->i_links_count = 0;
2732 ext2fs_icount_store(ctx->inode_link_info, ino, 0);
2733 inode->i_dtime = ctx->now;
2734
2735 /*
2736 * If a special inode has such rotten block mappings that we
2737 * want to clear the whole inode, be sure to actually zap
2738 * the block maps because i_links_count isn't checked for
2739 * special inodes, and we'll end up right back here the next
2740 * time we run fsck.
2741 */
2742 if (ino < EXT2_FIRST_INODE(ctx->fs->super))
2743 memset(inode->i_block, 0, sizeof(inode->i_block));
2744
2745 ext2fs_unmark_inode_bitmap2(ctx->inode_dir_map, ino);
2746 ext2fs_unmark_inode_bitmap2(ctx->inode_used_map, ino);
2747 if (ctx->inode_reg_map)
2748 ext2fs_unmark_inode_bitmap2(ctx->inode_reg_map, ino);
2749 if (ctx->inode_bad_map)
2750 ext2fs_unmark_inode_bitmap2(ctx->inode_bad_map, ino);
2751
2752 /*
2753 * If the inode was partially accounted for before processing
2754 * was aborted, we need to restart the pass 1 scan.
2755 */
2756 ctx->flags |= restart_flag;
2757
2758 if (ino == EXT2_BAD_INO)
2759 memset(inode, 0, sizeof(struct ext2_inode));
2760
2761 e2fsck_write_inode(ctx, ino, inode, source);
2762 }
2763
2764 /*
2765 * Use the multiple-blocks reclamation code to fix alignment problems in
2766 * a bigalloc filesystem. We want a logical cluster to map to *only* one
2767 * physical cluster, and we want the block offsets within that cluster to
2768 * line up.
2769 */
has_unaligned_cluster_map(e2fsck_t ctx,blk64_t last_pblk,blk64_t last_lblk,blk64_t pblk,blk64_t lblk)2770 static int has_unaligned_cluster_map(e2fsck_t ctx,
2771 blk64_t last_pblk, blk64_t last_lblk,
2772 blk64_t pblk, blk64_t lblk)
2773 {
2774 blk64_t cluster_mask;
2775
2776 if (!ctx->fs->cluster_ratio_bits)
2777 return 0;
2778 cluster_mask = EXT2FS_CLUSTER_MASK(ctx->fs);
2779
2780 /*
2781 * If the block in the logical cluster doesn't align with the block in
2782 * the physical cluster...
2783 */
2784 if ((lblk & cluster_mask) != (pblk & cluster_mask))
2785 return 1;
2786
2787 /*
2788 * If we cross a physical cluster boundary within a logical cluster...
2789 */
2790 if (last_pblk && (lblk & cluster_mask) != 0 &&
2791 EXT2FS_B2C(ctx->fs, lblk) == EXT2FS_B2C(ctx->fs, last_lblk) &&
2792 EXT2FS_B2C(ctx->fs, pblk) != EXT2FS_B2C(ctx->fs, last_pblk))
2793 return 1;
2794
2795 return 0;
2796 }
2797
scan_extent_node(e2fsck_t ctx,struct problem_context * pctx,struct process_block_struct * pb,blk64_t start_block,blk64_t end_block,blk64_t eof_block,ext2_extent_handle_t ehandle,int try_repairs)2798 static void scan_extent_node(e2fsck_t ctx, struct problem_context *pctx,
2799 struct process_block_struct *pb,
2800 blk64_t start_block, blk64_t end_block,
2801 blk64_t eof_block,
2802 ext2_extent_handle_t ehandle,
2803 int try_repairs)
2804 {
2805 struct ext2fs_extent extent;
2806 blk64_t blk, last_lblk;
2807 unsigned int i, n;
2808 int is_dir, is_leaf;
2809 problem_t problem;
2810 struct ext2_extent_info info;
2811 int failed_csum = 0;
2812
2813 if (pctx->errcode == EXT2_ET_EXTENT_CSUM_INVALID)
2814 failed_csum = 1;
2815
2816 pctx->errcode = ext2fs_extent_get_info(ehandle, &info);
2817 if (pctx->errcode)
2818 return;
2819 if (!(ctx->options & E2F_OPT_FIXES_ONLY) &&
2820 !pb->eti.force_rebuild) {
2821 struct extent_tree_level *etl;
2822
2823 etl = pb->eti.ext_info + info.curr_level;
2824 etl->num_extents += info.num_entries;
2825 etl->max_extents += info.max_entries;
2826 /*
2827 * Implementation wart: Splitting extent blocks when appending
2828 * will leave the old block with one free entry. Therefore
2829 * unless the node is totally full, pretend that a non-root
2830 * extent block can hold one fewer entry than it actually does,
2831 * so that we don't repeatedly rebuild the extent tree.
2832 */
2833 if (info.curr_level && info.num_entries < info.max_entries)
2834 etl->max_extents--;
2835 }
2836
2837 pctx->errcode = ext2fs_extent_get(ehandle, EXT2_EXTENT_FIRST_SIB,
2838 &extent);
2839 while ((pctx->errcode == 0 ||
2840 pctx->errcode == EXT2_ET_EXTENT_CSUM_INVALID) &&
2841 info.num_entries-- > 0) {
2842 is_leaf = extent.e_flags & EXT2_EXTENT_FLAGS_LEAF;
2843 is_dir = LINUX_S_ISDIR(pctx->inode->i_mode);
2844 last_lblk = extent.e_lblk + extent.e_len - 1;
2845
2846 problem = 0;
2847 pctx->blk = extent.e_pblk;
2848 pctx->blk2 = extent.e_lblk;
2849 pctx->num = extent.e_len;
2850 pctx->blkcount = extent.e_lblk + extent.e_len;
2851
2852 if (extent.e_pblk == 0 ||
2853 extent.e_pblk < ctx->fs->super->s_first_data_block ||
2854 extent.e_pblk >= ext2fs_blocks_count(ctx->fs->super))
2855 problem = PR_1_EXTENT_BAD_START_BLK;
2856 else if (extent.e_lblk < start_block)
2857 problem = PR_1_OUT_OF_ORDER_EXTENTS;
2858 else if ((end_block && last_lblk > end_block) &&
2859 !(last_lblk > eof_block &&
2860 ((extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) ||
2861 (pctx->inode->i_flags & EXT4_VERITY_FL))))
2862 problem = PR_1_EXTENT_END_OUT_OF_BOUNDS;
2863 else if (is_leaf && extent.e_len == 0)
2864 problem = PR_1_EXTENT_LENGTH_ZERO;
2865 else if (is_leaf &&
2866 (extent.e_pblk + extent.e_len) >
2867 ext2fs_blocks_count(ctx->fs->super))
2868 problem = PR_1_EXTENT_ENDS_BEYOND;
2869 else if (is_leaf && is_dir &&
2870 ((extent.e_lblk + extent.e_len) >
2871 (1U << (21 - ctx->fs->super->s_log_block_size))))
2872 problem = PR_1_TOOBIG_DIR;
2873
2874 if (is_leaf && problem == 0 && extent.e_len > 0) {
2875 #if 0
2876 printf("extent_region(ino=%u, expect=%llu, "
2877 "lblk=%llu, len=%u)\n",
2878 pb->ino, pb->next_lblock,
2879 extent.e_lblk, extent.e_len);
2880 #endif
2881 if (extent.e_lblk < pb->next_lblock)
2882 problem = PR_1_EXTENT_COLLISION;
2883 else if (extent.e_lblk + extent.e_len > pb->next_lblock)
2884 pb->next_lblock = extent.e_lblk + extent.e_len;
2885 }
2886
2887 /*
2888 * Uninitialized blocks in a directory? Clear the flag and
2889 * we'll interpret the blocks later.
2890 */
2891 if (try_repairs && is_dir && problem == 0 &&
2892 (extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) &&
2893 fix_problem(ctx, PR_1_UNINIT_DBLOCK, pctx)) {
2894 extent.e_flags &= ~EXT2_EXTENT_FLAGS_UNINIT;
2895 pb->inode_modified = 1;
2896 pctx->errcode = ext2fs_extent_replace(ehandle, 0,
2897 &extent);
2898 if (pctx->errcode)
2899 return;
2900 failed_csum = 0;
2901 }
2902
2903 if (try_repairs && problem) {
2904 report_problem:
2905 if (fix_problem(ctx, problem, pctx)) {
2906 if (ctx->invalid_bitmaps) {
2907 /*
2908 * If fsck knows the bitmaps are bad,
2909 * skip to the next extent and
2910 * try to clear this extent again
2911 * after fixing the bitmaps, by
2912 * restarting fsck.
2913 */
2914 pctx->errcode = ext2fs_extent_get(
2915 ehandle,
2916 EXT2_EXTENT_NEXT_SIB,
2917 &extent);
2918 ctx->flags |= E2F_FLAG_RESTART_LATER;
2919 if (pctx->errcode ==
2920 EXT2_ET_NO_CURRENT_NODE) {
2921 pctx->errcode = 0;
2922 break;
2923 }
2924 continue;
2925 }
2926 e2fsck_read_bitmaps(ctx);
2927 pb->inode_modified = 1;
2928 pctx->errcode =
2929 ext2fs_extent_delete(ehandle, 0);
2930 if (pctx->errcode) {
2931 pctx->str = "ext2fs_extent_delete";
2932 return;
2933 }
2934 pctx->errcode = ext2fs_extent_fix_parents(ehandle);
2935 if (pctx->errcode &&
2936 pctx->errcode != EXT2_ET_NO_CURRENT_NODE) {
2937 pctx->str = "ext2fs_extent_fix_parents";
2938 return;
2939 }
2940 pctx->errcode = ext2fs_extent_get(ehandle,
2941 EXT2_EXTENT_CURRENT,
2942 &extent);
2943 if (pctx->errcode == EXT2_ET_NO_CURRENT_NODE) {
2944 pctx->errcode = 0;
2945 break;
2946 }
2947 failed_csum = 0;
2948 continue;
2949 }
2950 goto next;
2951 }
2952
2953 if (!is_leaf) {
2954 blk64_t lblk = extent.e_lblk;
2955 int next_try_repairs = 1;
2956
2957 blk = extent.e_pblk;
2958
2959 /*
2960 * If this lower extent block collides with critical
2961 * metadata, don't try to repair the damage. Pass 1b
2962 * will reallocate the block; then we can try again.
2963 */
2964 if (pb->ino != EXT2_RESIZE_INO &&
2965 extent.e_pblk < ctx->fs->super->s_blocks_count &&
2966 ext2fs_test_block_bitmap2(ctx->block_metadata_map,
2967 extent.e_pblk)) {
2968 next_try_repairs = 0;
2969 pctx->blk = blk;
2970 fix_problem(ctx,
2971 PR_1_CRITICAL_METADATA_COLLISION,
2972 pctx);
2973 if ((ctx->options & E2F_OPT_NO) == 0)
2974 ctx->flags |= E2F_FLAG_RESTART_LATER;
2975 }
2976 pctx->errcode = ext2fs_extent_get(ehandle,
2977 EXT2_EXTENT_DOWN, &extent);
2978 if (pctx->errcode &&
2979 pctx->errcode != EXT2_ET_EXTENT_CSUM_INVALID) {
2980 pctx->str = "EXT2_EXTENT_DOWN";
2981 problem = PR_1_EXTENT_HEADER_INVALID;
2982 if (!next_try_repairs)
2983 return;
2984 if (pctx->errcode == EXT2_ET_EXTENT_HEADER_BAD)
2985 goto report_problem;
2986 return;
2987 }
2988 /* The next extent should match this index's logical start */
2989 if (extent.e_lblk != lblk) {
2990 struct ext2_extent_info e_info;
2991
2992 ext2fs_extent_get_info(ehandle, &e_info);
2993 pctx->blk = lblk;
2994 pctx->blk2 = extent.e_lblk;
2995 pctx->num = e_info.curr_level - 1;
2996 problem = PR_1_EXTENT_INDEX_START_INVALID;
2997 if (fix_problem(ctx, problem, pctx)) {
2998 pb->inode_modified = 1;
2999 pctx->errcode =
3000 ext2fs_extent_fix_parents(ehandle);
3001 if (pctx->errcode) {
3002 pctx->str = "ext2fs_extent_fix_parents";
3003 return;
3004 }
3005 }
3006 }
3007 scan_extent_node(ctx, pctx, pb, extent.e_lblk,
3008 last_lblk, eof_block, ehandle,
3009 next_try_repairs);
3010 if (pctx->errcode)
3011 return;
3012 pctx->errcode = ext2fs_extent_get(ehandle,
3013 EXT2_EXTENT_UP, &extent);
3014 if (pctx->errcode) {
3015 pctx->str = "EXT2_EXTENT_UP";
3016 return;
3017 }
3018 mark_block_used(ctx, blk);
3019 pb->num_blocks++;
3020 goto next;
3021 }
3022
3023 if ((pb->previous_block != 0) &&
3024 (pb->previous_block+1 != extent.e_pblk)) {
3025 if (ctx->options & E2F_OPT_FRAGCHECK) {
3026 char type = '?';
3027
3028 if (pb->is_dir)
3029 type = 'd';
3030 else if (pb->is_reg)
3031 type = 'f';
3032
3033 printf(("%6lu(%c): expecting %6lu "
3034 "actual extent "
3035 "phys %6lu log %lu len %lu\n"),
3036 (unsigned long) pctx->ino, type,
3037 (unsigned long) pb->previous_block+1,
3038 (unsigned long) extent.e_pblk,
3039 (unsigned long) extent.e_lblk,
3040 (unsigned long) extent.e_len);
3041 }
3042 pb->fragmented = 1;
3043 }
3044 /*
3045 * If we notice a gap in the logical block mappings of an
3046 * extent-mapped directory, offer to close the hole by
3047 * moving the logical block down, otherwise we'll go mad in
3048 * pass 3 allocating empty directory blocks to fill the hole.
3049 */
3050 if (try_repairs && is_dir &&
3051 pb->last_block + 1 < extent.e_lblk) {
3052 blk64_t new_lblk;
3053
3054 new_lblk = pb->last_block + 1;
3055 if (EXT2FS_CLUSTER_RATIO(ctx->fs) > 1)
3056 new_lblk = ((new_lblk +
3057 EXT2FS_CLUSTER_RATIO(ctx->fs) - 1) &
3058 ~EXT2FS_CLUSTER_MASK(ctx->fs)) |
3059 (extent.e_pblk &
3060 EXT2FS_CLUSTER_MASK(ctx->fs));
3061 pctx->blk = extent.e_lblk;
3062 pctx->blk2 = new_lblk;
3063 if (fix_problem(ctx, PR_1_COLLAPSE_DBLOCK, pctx)) {
3064 extent.e_lblk = new_lblk;
3065 pb->inode_modified = 1;
3066 pctx->errcode = ext2fs_extent_replace(ehandle,
3067 0, &extent);
3068 if (pctx->errcode) {
3069 pctx->errcode = 0;
3070 goto alloc_later;
3071 }
3072 pctx->errcode = ext2fs_extent_fix_parents(ehandle);
3073 if (pctx->errcode)
3074 goto failed_add_dir_block;
3075 pctx->errcode = ext2fs_extent_goto(ehandle,
3076 extent.e_lblk);
3077 if (pctx->errcode)
3078 goto failed_add_dir_block;
3079 last_lblk = extent.e_lblk + extent.e_len - 1;
3080 failed_csum = 0;
3081 }
3082 }
3083 alloc_later:
3084 if (is_dir) {
3085 while (++pb->last_db_block <
3086 (e2_blkcnt_t) extent.e_lblk) {
3087 pctx->errcode = ext2fs_add_dir_block2(
3088 ctx->fs->dblist,
3089 pb->ino, 0,
3090 pb->last_db_block);
3091 if (pctx->errcode) {
3092 pctx->blk = 0;
3093 pctx->num = pb->last_db_block;
3094 goto failed_add_dir_block;
3095 }
3096 }
3097
3098 for (i = 0; i < extent.e_len; i++) {
3099 pctx->errcode = ext2fs_add_dir_block2(
3100 ctx->fs->dblist,
3101 pctx->ino,
3102 extent.e_pblk + i,
3103 extent.e_lblk + i);
3104 if (pctx->errcode) {
3105 pctx->blk = extent.e_pblk + i;
3106 pctx->num = extent.e_lblk + i;
3107 failed_add_dir_block:
3108 fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
3109 /* Should never get here */
3110 ctx->flags |= E2F_FLAG_ABORT;
3111 return;
3112 }
3113 }
3114 if (extent.e_len > 0)
3115 pb->last_db_block = extent.e_lblk + extent.e_len - 1;
3116 }
3117 if (has_unaligned_cluster_map(ctx, pb->previous_block,
3118 pb->last_block,
3119 extent.e_pblk,
3120 extent.e_lblk)) {
3121 for (i = 0; i < extent.e_len; i++) {
3122 pctx->blk = extent.e_lblk + i;
3123 pctx->blk2 = extent.e_pblk + i;
3124 fix_problem(ctx, PR_1_MISALIGNED_CLUSTER, pctx);
3125 mark_block_used(ctx, extent.e_pblk + i);
3126 mark_block_used(ctx, extent.e_pblk + i);
3127 }
3128 }
3129
3130 /*
3131 * Check whether first cluster got marked in previous iteration.
3132 */
3133 if (ctx->fs->cluster_ratio_bits &&
3134 pb->previous_block &&
3135 (EXT2FS_B2C(ctx->fs, extent.e_pblk) ==
3136 EXT2FS_B2C(ctx->fs, pb->previous_block)))
3137 /* Set blk to the beginning of next cluster. */
3138 blk = EXT2FS_C2B(
3139 ctx->fs,
3140 EXT2FS_B2C(ctx->fs, extent.e_pblk) + 1);
3141 else
3142 /* Set blk to the beginning of current cluster. */
3143 blk = EXT2FS_C2B(ctx->fs,
3144 EXT2FS_B2C(ctx->fs, extent.e_pblk));
3145
3146 if (blk < extent.e_pblk + extent.e_len) {
3147 mark_blocks_used(ctx, blk,
3148 extent.e_pblk + extent.e_len - blk);
3149 n = DIV_ROUND_UP(extent.e_pblk + extent.e_len - blk,
3150 EXT2FS_CLUSTER_RATIO(ctx->fs));
3151 pb->num_blocks += n;
3152 }
3153 pb->last_block = extent.e_lblk + extent.e_len - 1;
3154 pb->previous_block = extent.e_pblk + extent.e_len - 1;
3155 start_block = pb->last_block = last_lblk;
3156 if (is_leaf && !is_dir &&
3157 !(extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT))
3158 pb->last_init_lblock = last_lblk;
3159 next:
3160 pctx->errcode = ext2fs_extent_get(ehandle,
3161 EXT2_EXTENT_NEXT_SIB,
3162 &extent);
3163 }
3164
3165 /* Failed csum but passes checks? Ask to fix checksum. */
3166 if (failed_csum &&
3167 fix_problem(ctx, PR_1_EXTENT_ONLY_CSUM_INVALID, pctx)) {
3168 pb->inode_modified = 1;
3169 pctx->errcode = ext2fs_extent_replace(ehandle, 0, &extent);
3170 if (pctx->errcode)
3171 return;
3172 }
3173
3174 if (pctx->errcode == EXT2_ET_EXTENT_NO_NEXT)
3175 pctx->errcode = 0;
3176 }
3177
check_blocks_extents(e2fsck_t ctx,struct problem_context * pctx,struct process_block_struct * pb)3178 static void check_blocks_extents(e2fsck_t ctx, struct problem_context *pctx,
3179 struct process_block_struct *pb)
3180 {
3181 struct ext2_extent_info info;
3182 struct ext2_inode *inode = pctx->inode;
3183 ext2_extent_handle_t ehandle;
3184 ext2_filsys fs = ctx->fs;
3185 ext2_ino_t ino = pctx->ino;
3186 errcode_t retval;
3187 blk64_t eof_lblk;
3188 struct ext3_extent_header *eh;
3189
3190 /* Check for a proper extent header... */
3191 eh = (struct ext3_extent_header *) &inode->i_block[0];
3192 retval = ext2fs_extent_header_verify(eh, sizeof(inode->i_block));
3193 if (retval) {
3194 if (fix_problem(ctx, PR_1_MISSING_EXTENT_HEADER, pctx))
3195 e2fsck_clear_inode(ctx, ino, inode, 0,
3196 "check_blocks_extents");
3197 pctx->errcode = 0;
3198 return;
3199 }
3200
3201 /* ...since this function doesn't fail if i_block is zeroed. */
3202 pctx->errcode = ext2fs_extent_open2(fs, ino, inode, &ehandle);
3203 if (pctx->errcode) {
3204 if (fix_problem(ctx, PR_1_READ_EXTENT, pctx))
3205 e2fsck_clear_inode(ctx, ino, inode, 0,
3206 "check_blocks_extents");
3207 pctx->errcode = 0;
3208 return;
3209 }
3210
3211 retval = ext2fs_extent_get_info(ehandle, &info);
3212 if (retval == 0) {
3213 int max_depth = info.max_depth;
3214
3215 if (max_depth >= MAX_EXTENT_DEPTH_COUNT)
3216 max_depth = MAX_EXTENT_DEPTH_COUNT-1;
3217 ctx->extent_depth_count[max_depth]++;
3218 }
3219
3220 /* Check maximum extent depth */
3221 pctx->blk = info.max_depth;
3222 pctx->blk2 = ext2fs_max_extent_depth(ehandle);
3223 if (pctx->blk2 < pctx->blk &&
3224 fix_problem(ctx, PR_1_EXTENT_BAD_MAX_DEPTH, pctx))
3225 pb->eti.force_rebuild = 1;
3226
3227 /* Can we collect extent tree level stats? */
3228 pctx->blk = MAX_EXTENT_DEPTH_COUNT;
3229 if (pctx->blk2 > pctx->blk)
3230 fix_problem(ctx, PR_1E_MAX_EXTENT_TREE_DEPTH, pctx);
3231 memset(pb->eti.ext_info, 0, sizeof(pb->eti.ext_info));
3232 pb->eti.ino = pb->ino;
3233
3234 pb->next_lblock = 0;
3235
3236 eof_lblk = ((EXT2_I_SIZE(inode) + fs->blocksize - 1) >>
3237 EXT2_BLOCK_SIZE_BITS(fs->super)) - 1;
3238 scan_extent_node(ctx, pctx, pb, 0, 0, eof_lblk, ehandle, 1);
3239 if (pctx->errcode &&
3240 fix_problem(ctx, PR_1_EXTENT_ITERATE_FAILURE, pctx)) {
3241 pb->num_blocks = 0;
3242 inode->i_blocks = 0;
3243 e2fsck_clear_inode(ctx, ino, inode, E2F_FLAG_RESTART,
3244 "check_blocks_extents");
3245 pctx->errcode = 0;
3246 }
3247 ext2fs_extent_free(ehandle);
3248
3249 /* Rebuild unless it's a dir and we're rehashing it */
3250 if (LINUX_S_ISDIR(inode->i_mode) &&
3251 e2fsck_dir_will_be_rehashed(ctx, ino))
3252 return;
3253
3254 if (ctx->options & E2F_OPT_CONVERT_BMAP)
3255 e2fsck_rebuild_extents_later(ctx, ino);
3256 else
3257 e2fsck_should_rebuild_extents(ctx, pctx, &pb->eti, &info);
3258 }
3259
3260 /*
3261 * In fact we don't need to check blocks for an inode with inline data
3262 * because this inode doesn't have any blocks. In this function all
3263 * we need to do is add this inode into dblist when it is a directory.
3264 */
check_blocks_inline_data(e2fsck_t ctx,struct problem_context * pctx,struct process_block_struct * pb)3265 static void check_blocks_inline_data(e2fsck_t ctx, struct problem_context *pctx,
3266 struct process_block_struct *pb)
3267 {
3268 int flags;
3269 size_t inline_data_size = 0;
3270
3271 if (!pb->is_dir) {
3272 pctx->errcode = 0;
3273 return;
3274 }
3275
3276 /* Process the dirents in i_block[] as the "first" block. */
3277 pctx->errcode = ext2fs_add_dir_block2(ctx->fs->dblist, pb->ino, 0, 0);
3278 if (pctx->errcode)
3279 goto err;
3280
3281 /* Process the dirents in the EA as a "second" block. */
3282 flags = ctx->fs->flags;
3283 ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
3284 pctx->errcode = ext2fs_inline_data_size(ctx->fs, pb->ino,
3285 &inline_data_size);
3286 ctx->fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
3287 (ctx->fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
3288 if (pctx->errcode) {
3289 pctx->errcode = 0;
3290 return;
3291 }
3292
3293 if (inline_data_size <= EXT4_MIN_INLINE_DATA_SIZE)
3294 return;
3295
3296 pctx->errcode = ext2fs_add_dir_block2(ctx->fs->dblist, pb->ino, 0, 1);
3297 if (pctx->errcode)
3298 goto err;
3299
3300 return;
3301 err:
3302 pctx->blk = 0;
3303 pctx->num = 0;
3304 fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
3305 ctx->flags |= E2F_FLAG_ABORT;
3306 }
3307
3308 /*
3309 * This subroutine is called on each inode to account for all of the
3310 * blocks used by that inode.
3311 */
check_blocks(e2fsck_t ctx,struct problem_context * pctx,char * block_buf,const struct ea_quota * ea_ibody_quota)3312 static void check_blocks(e2fsck_t ctx, struct problem_context *pctx,
3313 char *block_buf, const struct ea_quota *ea_ibody_quota)
3314 {
3315 ext2_filsys fs = ctx->fs;
3316 struct process_block_struct pb;
3317 ext2_ino_t ino = pctx->ino;
3318 struct ext2_inode *inode = pctx->inode;
3319 unsigned bad_size = 0;
3320 int dirty_inode = 0;
3321 int extent_fs;
3322 int inlinedata_fs;
3323 __u64 size;
3324 struct ea_quota ea_block_quota;
3325
3326 pb.ino = ino;
3327 pb.num_blocks = EXT2FS_B2C(ctx->fs,
3328 ea_ibody_quota ? ea_ibody_quota->blocks : 0);
3329 pb.last_block = ~0;
3330 pb.last_init_lblock = -1;
3331 pb.last_db_block = -1;
3332 pb.num_illegal_blocks = 0;
3333 pb.suppress = 0; pb.clear = 0;
3334 pb.fragmented = 0;
3335 pb.compressed = 0;
3336 pb.previous_block = 0;
3337 pb.is_dir = LINUX_S_ISDIR(inode->i_mode);
3338 pb.is_reg = LINUX_S_ISREG(inode->i_mode);
3339 pb.max_blocks = 1U << (31 - fs->super->s_log_block_size);
3340 pb.inode = inode;
3341 pb.pctx = pctx;
3342 pb.ctx = ctx;
3343 pb.inode_modified = 0;
3344 pb.eti.force_rebuild = 0;
3345 pctx->ino = ino;
3346 pctx->errcode = 0;
3347
3348 extent_fs = ext2fs_has_feature_extents(ctx->fs->super);
3349 inlinedata_fs = ext2fs_has_feature_inline_data(ctx->fs->super);
3350
3351 if (check_ext_attr(ctx, pctx, block_buf, &ea_block_quota)) {
3352 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
3353 goto out;
3354 pb.num_blocks += EXT2FS_B2C(ctx->fs, ea_block_quota.blocks);
3355 }
3356
3357 if (inlinedata_fs && (inode->i_flags & EXT4_INLINE_DATA_FL))
3358 check_blocks_inline_data(ctx, pctx, &pb);
3359 else if (ext2fs_inode_has_valid_blocks2(fs, inode)) {
3360 if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL))
3361 check_blocks_extents(ctx, pctx, &pb);
3362 else {
3363 int flags;
3364 /*
3365 * If we've modified the inode, write it out before
3366 * iterate() tries to use it.
3367 */
3368 if (dirty_inode) {
3369 e2fsck_write_inode(ctx, ino, inode,
3370 "check_blocks");
3371 dirty_inode = 0;
3372 }
3373 flags = fs->flags;
3374 fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
3375 pctx->errcode = ext2fs_block_iterate3(fs, ino,
3376 pb.is_dir ? BLOCK_FLAG_HOLE : 0,
3377 block_buf, process_block, &pb);
3378 /*
3379 * We do not have uninitialized extents in non extent
3380 * files.
3381 */
3382 pb.last_init_lblock = pb.last_block;
3383 /*
3384 * If iterate() changed a block mapping, we have to
3385 * re-read the inode. If we decide to clear the
3386 * inode after clearing some stuff, we'll re-write the
3387 * bad mappings into the inode!
3388 */
3389 if (pb.inode_modified)
3390 e2fsck_read_inode(ctx, ino, inode,
3391 "check_blocks");
3392 fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
3393 (fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
3394
3395 if (ctx->options & E2F_OPT_CONVERT_BMAP) {
3396 #ifdef DEBUG
3397 printf("bmap rebuild ino=%d\n", ino);
3398 #endif
3399 if (!LINUX_S_ISDIR(inode->i_mode) ||
3400 !e2fsck_dir_will_be_rehashed(ctx, ino))
3401 e2fsck_rebuild_extents_later(ctx, ino);
3402 }
3403 }
3404 }
3405 end_problem_latch(ctx, PR_LATCH_BLOCK);
3406 end_problem_latch(ctx, PR_LATCH_TOOBIG);
3407 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
3408 goto out;
3409 if (pctx->errcode)
3410 fix_problem(ctx, PR_1_BLOCK_ITERATE, pctx);
3411
3412 if (pb.fragmented && pb.num_blocks < fs->super->s_blocks_per_group) {
3413 if (LINUX_S_ISDIR(inode->i_mode))
3414 ctx->fs_fragmented_dir++;
3415 else
3416 ctx->fs_fragmented++;
3417 }
3418
3419 if (pb.clear) {
3420 e2fsck_clear_inode(ctx, ino, inode, E2F_FLAG_RESTART,
3421 "check_blocks");
3422 return;
3423 }
3424
3425 if (inode->i_flags & EXT2_INDEX_FL) {
3426 if (handle_htree(ctx, pctx, ino, inode, block_buf)) {
3427 inode->i_flags &= ~EXT2_INDEX_FL;
3428 dirty_inode++;
3429 } else {
3430 e2fsck_add_dx_dir(ctx, ino, inode, pb.last_block+1);
3431 }
3432 }
3433
3434 if (!pb.num_blocks && pb.is_dir &&
3435 !(inode->i_flags & EXT4_INLINE_DATA_FL)) {
3436 if (fix_problem(ctx, PR_1_ZERO_LENGTH_DIR, pctx)) {
3437 e2fsck_clear_inode(ctx, ino, inode, 0, "check_blocks");
3438 ctx->fs_directory_count--;
3439 return;
3440 }
3441 }
3442
3443 if (ino != quota_type2inum(PRJQUOTA, fs->super) &&
3444 (ino == EXT2_ROOT_INO || ino >= EXT2_FIRST_INODE(ctx->fs->super)) &&
3445 !(inode->i_flags & EXT4_EA_INODE_FL)) {
3446 quota_data_add(ctx->qctx, (struct ext2_inode_large *) inode,
3447 ino,
3448 pb.num_blocks * EXT2_CLUSTER_SIZE(fs->super));
3449 quota_data_inodes(ctx->qctx, (struct ext2_inode_large *) inode,
3450 ino, (ea_ibody_quota ?
3451 ea_ibody_quota->inodes : 0) +
3452 ea_block_quota.inodes + 1);
3453 }
3454
3455 if (!ext2fs_has_feature_huge_file(fs->super) ||
3456 !(inode->i_flags & EXT4_HUGE_FILE_FL))
3457 pb.num_blocks *= (fs->blocksize / 512);
3458 pb.num_blocks *= EXT2FS_CLUSTER_RATIO(fs);
3459 #if 0
3460 printf("inode %u, i_size = %u, last_block = %llu, i_blocks=%llu, num_blocks = %llu\n",
3461 ino, inode->i_size, pb.last_block, ext2fs_inode_i_blocks(fs, inode),
3462 pb.num_blocks);
3463 #endif
3464 if (pb.is_dir) {
3465 unsigned nblock = inode->i_size >> EXT2_BLOCK_SIZE_BITS(fs->super);
3466 if (inode->i_flags & EXT4_INLINE_DATA_FL) {
3467 int flags;
3468 size_t sz = 0;
3469 errcode_t err;
3470
3471 flags = ctx->fs->flags;
3472 ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
3473 err = ext2fs_inline_data_size(ctx->fs, pctx->ino,
3474 &sz);
3475 ctx->fs->flags = (flags &
3476 EXT2_FLAG_IGNORE_CSUM_ERRORS) |
3477 (ctx->fs->flags &
3478 ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
3479 if (err || sz != inode->i_size) {
3480 bad_size = 7;
3481 pctx->num = sz;
3482 }
3483 } else if (inode->i_size & (fs->blocksize - 1))
3484 bad_size = 5;
3485 else if (nblock > (pb.last_block + 1))
3486 bad_size = 1;
3487 else if (nblock < (pb.last_block + 1)) {
3488 if (((pb.last_block + 1) - nblock) >
3489 fs->super->s_prealloc_dir_blocks)
3490 bad_size = 2;
3491 }
3492 } else {
3493 size = EXT2_I_SIZE(inode);
3494 if ((pb.last_init_lblock >= 0) &&
3495 /* Do not allow initialized allocated blocks past i_size*/
3496 (size < (__u64)pb.last_init_lblock * fs->blocksize) &&
3497 !(inode->i_flags & EXT4_VERITY_FL))
3498 bad_size = 3;
3499 else if (!(extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) &&
3500 size > ext2_max_sizes[fs->super->s_log_block_size])
3501 /* too big for a direct/indirect-mapped file */
3502 bad_size = 4;
3503 else if ((extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) &&
3504 size >
3505 ((1ULL << (32 + EXT2_BLOCK_SIZE_BITS(fs->super))) - 1))
3506 /* too big for an extent-based file - 32bit ee_block */
3507 bad_size = 6;
3508 }
3509 /* i_size for symlinks is checked elsewhere */
3510 if (bad_size && !LINUX_S_ISLNK(inode->i_mode)) {
3511 /* Did inline_data set pctx->num earlier? */
3512 if (bad_size != 7)
3513 pctx->num = (pb.last_block + 1) * fs->blocksize;
3514 pctx->group = bad_size;
3515 if (fix_problem(ctx, PR_1_BAD_I_SIZE, pctx)) {
3516 if (LINUX_S_ISDIR(inode->i_mode))
3517 pctx->num &= 0xFFFFFFFFULL;
3518 ext2fs_inode_size_set(fs, inode, pctx->num);
3519 if (EXT2_I_SIZE(inode) == 0 &&
3520 (inode->i_flags & EXT4_INLINE_DATA_FL)) {
3521 memset(inode->i_block, 0,
3522 sizeof(inode->i_block));
3523 inode->i_flags &= ~EXT4_INLINE_DATA_FL;
3524 }
3525 dirty_inode++;
3526 }
3527 pctx->num = 0;
3528 }
3529 if (LINUX_S_ISREG(inode->i_mode) &&
3530 ext2fs_needs_large_file_feature(EXT2_I_SIZE(inode)))
3531 ctx->large_files++;
3532 if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
3533 ((pb.num_blocks != ext2fs_inode_i_blocks(fs, inode)) ||
3534 (ext2fs_has_feature_huge_file(fs->super) &&
3535 (inode->i_flags & EXT4_HUGE_FILE_FL) &&
3536 (inode->osd2.linux2.l_i_blocks_hi != 0)))) {
3537 pctx->num = pb.num_blocks;
3538 if (fix_problem(ctx, PR_1_BAD_I_BLOCKS, pctx)) {
3539 inode->i_blocks = pb.num_blocks;
3540 inode->osd2.linux2.l_i_blocks_hi = pb.num_blocks >> 32;
3541 dirty_inode++;
3542 }
3543 pctx->num = 0;
3544 }
3545
3546 /*
3547 * The kernel gets mad if we ask it to allocate bigalloc clusters to
3548 * a block mapped file, so rebuild it as an extent file. We can skip
3549 * symlinks because they're never rewritten.
3550 */
3551 if (ext2fs_has_feature_bigalloc(fs->super) &&
3552 (LINUX_S_ISREG(inode->i_mode) || LINUX_S_ISDIR(inode->i_mode)) &&
3553 ext2fs_inode_data_blocks2(fs, inode) > 0 &&
3554 (ino == EXT2_ROOT_INO || ino >= EXT2_FIRST_INO(fs->super)) &&
3555 !(inode->i_flags & (EXT4_EXTENTS_FL | EXT4_INLINE_DATA_FL)) &&
3556 fix_problem(ctx, PR_1_NO_BIGALLOC_BLOCKMAP_FILES, pctx)) {
3557 pctx->errcode = e2fsck_rebuild_extents_later(ctx, ino);
3558 if (pctx->errcode)
3559 goto out;
3560 }
3561
3562 if (ctx->dirs_to_hash && pb.is_dir &&
3563 !(ctx->lost_and_found && ctx->lost_and_found == ino) &&
3564 !(inode->i_flags & EXT2_INDEX_FL) &&
3565 ((inode->i_size / fs->blocksize) >= 3))
3566 e2fsck_rehash_dir_later(ctx, ino);
3567
3568 out:
3569 if (dirty_inode)
3570 e2fsck_write_inode(ctx, ino, inode, "check_blocks");
3571 }
3572
3573 #if 0
3574 /*
3575 * Helper function called by process block when an illegal block is
3576 * found. It returns a description about why the block is illegal
3577 */
3578 static char *describe_illegal_block(ext2_filsys fs, blk64_t block)
3579 {
3580 blk64_t super;
3581 int i;
3582 static char problem[80];
3583
3584 super = fs->super->s_first_data_block;
3585 strcpy(problem, "PROGRAMMING ERROR: Unknown reason for illegal block");
3586 if (block < super) {
3587 sprintf(problem, "< FIRSTBLOCK (%u)", super);
3588 return(problem);
3589 } else if (block >= ext2fs_blocks_count(fs->super)) {
3590 sprintf(problem, "> BLOCKS (%u)", ext2fs_blocks_count(fs->super));
3591 return(problem);
3592 }
3593 for (i = 0; i < fs->group_desc_count; i++) {
3594 if (block == super) {
3595 sprintf(problem, "is the superblock in group %d", i);
3596 break;
3597 }
3598 if (block > super &&
3599 block <= (super + fs->desc_blocks)) {
3600 sprintf(problem, "is in the group descriptors "
3601 "of group %d", i);
3602 break;
3603 }
3604 if (block == ext2fs_block_bitmap_loc(fs, i)) {
3605 sprintf(problem, "is the block bitmap of group %d", i);
3606 break;
3607 }
3608 if (block == ext2fs_inode_bitmap_loc(fs, i)) {
3609 sprintf(problem, "is the inode bitmap of group %d", i);
3610 break;
3611 }
3612 if (block >= ext2fs_inode_table_loc(fs, i) &&
3613 (block < ext2fs_inode_table_loc(fs, i)
3614 + fs->inode_blocks_per_group)) {
3615 sprintf(problem, "is in the inode table of group %d",
3616 i);
3617 break;
3618 }
3619 super += fs->super->s_blocks_per_group;
3620 }
3621 return(problem);
3622 }
3623 #endif
3624
3625 /*
3626 * This is a helper function for check_blocks().
3627 */
process_block(ext2_filsys fs,blk64_t * block_nr,e2_blkcnt_t blockcnt,blk64_t ref_block EXT2FS_ATTR ((unused)),int ref_offset EXT2FS_ATTR ((unused)),void * priv_data)3628 static int process_block(ext2_filsys fs,
3629 blk64_t *block_nr,
3630 e2_blkcnt_t blockcnt,
3631 blk64_t ref_block EXT2FS_ATTR((unused)),
3632 int ref_offset EXT2FS_ATTR((unused)),
3633 void *priv_data)
3634 {
3635 struct process_block_struct *p;
3636 struct problem_context *pctx;
3637 blk64_t blk = *block_nr;
3638 int ret_code = 0;
3639 problem_t problem = 0;
3640 e2fsck_t ctx;
3641
3642 p = (struct process_block_struct *) priv_data;
3643 pctx = p->pctx;
3644 ctx = p->ctx;
3645
3646 /*
3647 * For a directory, add logical block zero for processing even if it's
3648 * not mapped or we'll be perennially stuck with broken "." and ".."
3649 * entries.
3650 */
3651 if (p->is_dir && blockcnt == 0 && blk == 0) {
3652 pctx->errcode = ext2fs_add_dir_block2(fs->dblist, p->ino, 0, 0);
3653 if (pctx->errcode) {
3654 pctx->blk = blk;
3655 pctx->num = blockcnt;
3656 goto failed_add_dir_block;
3657 }
3658 p->last_db_block++;
3659 }
3660
3661 if (blk == 0)
3662 return 0;
3663
3664 #if 0
3665 printf("Process_block, inode %lu, block %u, #%d\n", p->ino, blk,
3666 blockcnt);
3667 #endif
3668
3669 /*
3670 * Simplistic fragmentation check. We merely require that the
3671 * file be contiguous. (Which can never be true for really
3672 * big files that are greater than a block group.)
3673 */
3674 if (p->previous_block && p->ino != EXT2_RESIZE_INO) {
3675 if (p->previous_block+1 != blk) {
3676 if (ctx->options & E2F_OPT_FRAGCHECK) {
3677 char type = '?';
3678
3679 if (p->is_dir)
3680 type = 'd';
3681 else if (p->is_reg)
3682 type = 'f';
3683
3684 printf(_("%6lu(%c): expecting %6lu "
3685 "got phys %6lu (blkcnt %lld)\n"),
3686 (unsigned long) pctx->ino, type,
3687 (unsigned long) p->previous_block+1,
3688 (unsigned long) blk,
3689 blockcnt);
3690 }
3691 p->fragmented = 1;
3692 }
3693 }
3694
3695 if (p->is_dir && !ext2fs_has_feature_largedir(fs->super) &&
3696 blockcnt > (1 << (21 - fs->super->s_log_block_size)))
3697 problem = PR_1_TOOBIG_DIR;
3698 if (p->is_dir && p->num_blocks + 1 >= p->max_blocks)
3699 problem = PR_1_TOOBIG_DIR;
3700 if (p->is_reg && p->num_blocks + 1 >= p->max_blocks)
3701 problem = PR_1_TOOBIG_REG;
3702 if (!p->is_dir && !p->is_reg && blockcnt > 0)
3703 problem = PR_1_TOOBIG_SYMLINK;
3704
3705 if (blk < fs->super->s_first_data_block ||
3706 blk >= ext2fs_blocks_count(fs->super))
3707 problem = PR_1_ILLEGAL_BLOCK_NUM;
3708
3709 /*
3710 * If this IND/DIND/TIND block is squatting atop some critical metadata
3711 * (group descriptors, superblock, bitmap, inode table), any write to
3712 * "fix" mapping problems will destroy the metadata. We'll let pass 1b
3713 * fix that and restart fsck.
3714 */
3715 if (blockcnt < 0 &&
3716 p->ino != EXT2_RESIZE_INO &&
3717 blk < ctx->fs->super->s_blocks_count &&
3718 ext2fs_test_block_bitmap2(ctx->block_metadata_map, blk)) {
3719 pctx->blk = blk;
3720 fix_problem(ctx, PR_1_CRITICAL_METADATA_COLLISION, pctx);
3721 if ((ctx->options & E2F_OPT_NO) == 0)
3722 ctx->flags |= E2F_FLAG_RESTART_LATER;
3723 }
3724
3725 if (problem) {
3726 p->num_illegal_blocks++;
3727 /*
3728 * A bit of subterfuge here -- we're trying to fix a block
3729 * mapping, but the IND/DIND/TIND block could have collided
3730 * with some critical metadata. So, fix the in-core mapping so
3731 * iterate won't go insane, but return 0 instead of
3732 * BLOCK_CHANGED so that it won't write the remapping out to
3733 * our multiply linked block.
3734 *
3735 * Even if we previously determined that an *IND block
3736 * conflicts with critical metadata, we must still try to
3737 * iterate the *IND block as if it is an *IND block to find and
3738 * mark the blocks it points to. Better to be overly cautious
3739 * with the used_blocks map so that we don't move the *IND
3740 * block to a block that's really in use!
3741 */
3742 if (p->ino != EXT2_RESIZE_INO &&
3743 ref_block != 0 &&
3744 ext2fs_test_block_bitmap2(ctx->block_metadata_map,
3745 ref_block)) {
3746 *block_nr = 0;
3747 return 0;
3748 }
3749 if (!p->suppress && (p->num_illegal_blocks % 12) == 0) {
3750 if (fix_problem(ctx, PR_1_TOO_MANY_BAD_BLOCKS, pctx)) {
3751 p->clear = 1;
3752 return BLOCK_ABORT;
3753 }
3754 if (fix_problem(ctx, PR_1_SUPPRESS_MESSAGES, pctx)) {
3755 p->suppress = 1;
3756 set_latch_flags(PR_LATCH_BLOCK,
3757 PRL_SUPPRESS, 0);
3758 }
3759 }
3760 pctx->blk = blk;
3761 pctx->blkcount = blockcnt;
3762 if (fix_problem(ctx, problem, pctx)) {
3763 blk = *block_nr = 0;
3764 ret_code = BLOCK_CHANGED;
3765 p->inode_modified = 1;
3766 /*
3767 * If the directory block is too big and is beyond the
3768 * end of the FS, don't bother trying to add it for
3769 * processing -- the kernel would never have created a
3770 * directory this large, and we risk an ENOMEM abort.
3771 * In any case, the toobig handler for extent-based
3772 * directories also doesn't feed toobig blocks to
3773 * pass 2.
3774 */
3775 if (problem == PR_1_TOOBIG_DIR)
3776 return ret_code;
3777 goto mark_dir;
3778 } else
3779 return 0;
3780 }
3781
3782 if (p->ino == EXT2_RESIZE_INO) {
3783 /*
3784 * The resize inode has already be sanity checked
3785 * during pass #0 (the superblock checks). All we
3786 * have to do is mark the double indirect block as
3787 * being in use; all of the other blocks are handled
3788 * by mark_table_blocks()).
3789 */
3790 if (blockcnt == BLOCK_COUNT_DIND)
3791 mark_block_used(ctx, blk);
3792 p->num_blocks++;
3793 } else if (!(ctx->fs->cluster_ratio_bits &&
3794 p->previous_block &&
3795 (EXT2FS_B2C(ctx->fs, blk) ==
3796 EXT2FS_B2C(ctx->fs, p->previous_block)) &&
3797 (blk & EXT2FS_CLUSTER_MASK(ctx->fs)) ==
3798 ((unsigned) blockcnt & EXT2FS_CLUSTER_MASK(ctx->fs)))) {
3799 mark_block_used(ctx, blk);
3800 p->num_blocks++;
3801 } else if (has_unaligned_cluster_map(ctx, p->previous_block,
3802 p->last_block, blk, blockcnt)) {
3803 pctx->blk = blockcnt;
3804 pctx->blk2 = blk;
3805 fix_problem(ctx, PR_1_MISALIGNED_CLUSTER, pctx);
3806 mark_block_used(ctx, blk);
3807 mark_block_used(ctx, blk);
3808 }
3809 if (blockcnt >= 0)
3810 p->last_block = blockcnt;
3811 p->previous_block = blk;
3812 mark_dir:
3813 if (p->is_dir && (blockcnt >= 0)) {
3814 while (++p->last_db_block < blockcnt) {
3815 pctx->errcode = ext2fs_add_dir_block2(fs->dblist,
3816 p->ino, 0,
3817 p->last_db_block);
3818 if (pctx->errcode) {
3819 pctx->blk = 0;
3820 pctx->num = p->last_db_block;
3821 goto failed_add_dir_block;
3822 }
3823 }
3824 pctx->errcode = ext2fs_add_dir_block2(fs->dblist, p->ino,
3825 blk, blockcnt);
3826 if (pctx->errcode) {
3827 pctx->blk = blk;
3828 pctx->num = blockcnt;
3829 failed_add_dir_block:
3830 fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
3831 /* Should never get here */
3832 ctx->flags |= E2F_FLAG_ABORT;
3833 return BLOCK_ABORT;
3834 }
3835 }
3836 return ret_code;
3837 }
3838
process_bad_block(ext2_filsys fs,blk64_t * block_nr,e2_blkcnt_t blockcnt,blk64_t ref_block EXT2FS_ATTR ((unused)),int ref_offset EXT2FS_ATTR ((unused)),void * priv_data)3839 static int process_bad_block(ext2_filsys fs,
3840 blk64_t *block_nr,
3841 e2_blkcnt_t blockcnt,
3842 blk64_t ref_block EXT2FS_ATTR((unused)),
3843 int ref_offset EXT2FS_ATTR((unused)),
3844 void *priv_data)
3845 {
3846 struct process_block_struct *p;
3847 blk64_t blk = *block_nr;
3848 blk64_t first_block;
3849 dgrp_t i;
3850 struct problem_context *pctx;
3851 e2fsck_t ctx;
3852
3853 if (!blk)
3854 return 0;
3855
3856 p = (struct process_block_struct *) priv_data;
3857 ctx = p->ctx;
3858 pctx = p->pctx;
3859
3860 pctx->ino = EXT2_BAD_INO;
3861 pctx->blk = blk;
3862 pctx->blkcount = blockcnt;
3863
3864 if ((blk < fs->super->s_first_data_block) ||
3865 (blk >= ext2fs_blocks_count(fs->super))) {
3866 if (fix_problem(ctx, PR_1_BB_ILLEGAL_BLOCK_NUM, pctx)) {
3867 *block_nr = 0;
3868 return BLOCK_CHANGED;
3869 } else
3870 return 0;
3871 }
3872
3873 if (blockcnt < 0) {
3874 if (ext2fs_test_block_bitmap2(p->fs_meta_blocks, blk)) {
3875 p->bbcheck = 1;
3876 if (fix_problem(ctx, PR_1_BB_FS_BLOCK, pctx)) {
3877 *block_nr = 0;
3878 return BLOCK_CHANGED;
3879 }
3880 } else if (ext2fs_test_block_bitmap2(ctx->block_found_map,
3881 blk)) {
3882 p->bbcheck = 1;
3883 if (fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK,
3884 pctx)) {
3885 *block_nr = 0;
3886 return BLOCK_CHANGED;
3887 }
3888 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
3889 return BLOCK_ABORT;
3890 } else
3891 mark_block_used(ctx, blk);
3892 return 0;
3893 }
3894 #if 0
3895 printf ("DEBUG: Marking %u as bad.\n", blk);
3896 #endif
3897 ctx->fs_badblocks_count++;
3898 /*
3899 * If the block is not used, then mark it as used and return.
3900 * If it is already marked as found, this must mean that
3901 * there's an overlap between the filesystem table blocks
3902 * (bitmaps and inode table) and the bad block list.
3903 */
3904 if (!ext2fs_test_block_bitmap2(ctx->block_found_map, blk)) {
3905 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
3906 return 0;
3907 }
3908 /*
3909 * Try to find the where the filesystem block was used...
3910 */
3911 first_block = fs->super->s_first_data_block;
3912
3913 for (i = 0; i < fs->group_desc_count; i++ ) {
3914 pctx->group = i;
3915 pctx->blk = blk;
3916 if (!ext2fs_bg_has_super(fs, i))
3917 goto skip_super;
3918 if (blk == first_block) {
3919 if (i == 0) {
3920 if (fix_problem(ctx,
3921 PR_1_BAD_PRIMARY_SUPERBLOCK,
3922 pctx)) {
3923 *block_nr = 0;
3924 return BLOCK_CHANGED;
3925 }
3926 return 0;
3927 }
3928 fix_problem(ctx, PR_1_BAD_SUPERBLOCK, pctx);
3929 return 0;
3930 }
3931 if ((blk > first_block) &&
3932 (blk <= first_block + fs->desc_blocks)) {
3933 if (i == 0) {
3934 pctx->blk = *block_nr;
3935 if (fix_problem(ctx,
3936 PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR, pctx)) {
3937 *block_nr = 0;
3938 return BLOCK_CHANGED;
3939 }
3940 return 0;
3941 }
3942 fix_problem(ctx, PR_1_BAD_GROUP_DESCRIPTORS, pctx);
3943 return 0;
3944 }
3945 skip_super:
3946 if (blk == ext2fs_block_bitmap_loc(fs, i)) {
3947 if (fix_problem(ctx, PR_1_BB_BAD_BLOCK, pctx)) {
3948 ctx->invalid_block_bitmap_flag[i]++;
3949 ctx->invalid_bitmaps++;
3950 }
3951 return 0;
3952 }
3953 if (blk == ext2fs_inode_bitmap_loc(fs, i)) {
3954 if (fix_problem(ctx, PR_1_IB_BAD_BLOCK, pctx)) {
3955 ctx->invalid_inode_bitmap_flag[i]++;
3956 ctx->invalid_bitmaps++;
3957 }
3958 return 0;
3959 }
3960 if ((blk >= ext2fs_inode_table_loc(fs, i)) &&
3961 (blk < (ext2fs_inode_table_loc(fs, i) +
3962 fs->inode_blocks_per_group))) {
3963 /*
3964 * If there are bad blocks in the inode table,
3965 * the inode scan code will try to do
3966 * something reasonable automatically.
3967 */
3968 return 0;
3969 }
3970 first_block += fs->super->s_blocks_per_group;
3971 }
3972 /*
3973 * If we've gotten to this point, then the only
3974 * possibility is that the bad block inode meta data
3975 * is using a bad block.
3976 */
3977 if ((blk == p->inode->i_block[EXT2_IND_BLOCK]) ||
3978 (blk == p->inode->i_block[EXT2_DIND_BLOCK]) ||
3979 (blk == p->inode->i_block[EXT2_TIND_BLOCK])) {
3980 p->bbcheck = 1;
3981 if (fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK, pctx)) {
3982 *block_nr = 0;
3983 return BLOCK_CHANGED;
3984 }
3985 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
3986 return BLOCK_ABORT;
3987 return 0;
3988 }
3989
3990 pctx->group = -1;
3991
3992 /* Warn user that the block wasn't claimed */
3993 fix_problem(ctx, PR_1_PROGERR_CLAIMED_BLOCK, pctx);
3994
3995 return 0;
3996 }
3997
new_table_block(e2fsck_t ctx,blk64_t first_block,dgrp_t group,const char * name,int num,blk64_t * new_block)3998 static void new_table_block(e2fsck_t ctx, blk64_t first_block, dgrp_t group,
3999 const char *name, int num, blk64_t *new_block)
4000 {
4001 ext2_filsys fs = ctx->fs;
4002 dgrp_t last_grp;
4003 blk64_t old_block = *new_block;
4004 blk64_t last_block;
4005 dgrp_t flexbg;
4006 unsigned flexbg_size;
4007 int i, is_flexbg;
4008 char *buf;
4009 struct problem_context pctx;
4010
4011 clear_problem_context(&pctx);
4012
4013 pctx.group = group;
4014 pctx.blk = old_block;
4015 pctx.str = name;
4016
4017 /*
4018 * For flex_bg filesystems, first try to allocate the metadata
4019 * within the flex_bg, and if that fails then try finding the
4020 * space anywhere in the filesystem.
4021 */
4022 is_flexbg = ext2fs_has_feature_flex_bg(fs->super);
4023 if (is_flexbg) {
4024 flexbg_size = 1 << fs->super->s_log_groups_per_flex;
4025 flexbg = group / flexbg_size;
4026 first_block = ext2fs_group_first_block2(fs,
4027 flexbg_size * flexbg);
4028 last_grp = group | (flexbg_size - 1);
4029 if (last_grp >= fs->group_desc_count)
4030 last_grp = fs->group_desc_count - 1;
4031 last_block = ext2fs_group_last_block2(fs, last_grp);
4032 } else
4033 last_block = ext2fs_group_last_block2(fs, group);
4034 pctx.errcode = ext2fs_get_free_blocks2(fs, first_block, last_block,
4035 num, ctx->block_found_map,
4036 new_block);
4037 if (is_flexbg && (pctx.errcode == EXT2_ET_BLOCK_ALLOC_FAIL))
4038 pctx.errcode = ext2fs_get_free_blocks2(fs,
4039 fs->super->s_first_data_block,
4040 ext2fs_blocks_count(fs->super),
4041 num, ctx->block_found_map, new_block);
4042 if (pctx.errcode) {
4043 pctx.num = num;
4044 fix_problem(ctx, PR_1_RELOC_BLOCK_ALLOCATE, &pctx);
4045 ext2fs_unmark_valid(fs);
4046 ctx->flags |= E2F_FLAG_ABORT;
4047 return;
4048 }
4049 pctx.errcode = ext2fs_get_mem(fs->blocksize, &buf);
4050 if (pctx.errcode) {
4051 fix_problem(ctx, PR_1_RELOC_MEMORY_ALLOCATE, &pctx);
4052 ext2fs_unmark_valid(fs);
4053 ctx->flags |= E2F_FLAG_ABORT;
4054 return;
4055 }
4056 ext2fs_mark_super_dirty(fs);
4057 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
4058 pctx.blk2 = *new_block;
4059 fix_problem(ctx, (old_block ? PR_1_RELOC_FROM_TO :
4060 PR_1_RELOC_TO), &pctx);
4061 pctx.blk2 = 0;
4062 for (i = 0; i < num; i++) {
4063 pctx.blk = i;
4064 ext2fs_mark_block_bitmap2(ctx->block_found_map, (*new_block)+i);
4065 if (old_block) {
4066 pctx.errcode = io_channel_read_blk64(fs->io,
4067 old_block + i, 1, buf);
4068 if (pctx.errcode)
4069 fix_problem(ctx, PR_1_RELOC_READ_ERR, &pctx);
4070 pctx.blk = (*new_block) + i;
4071 pctx.errcode = io_channel_write_blk64(fs->io, pctx.blk,
4072 1, buf);
4073 } else {
4074 pctx.blk = (*new_block) + i;
4075 pctx.errcode = ext2fs_zero_blocks2(fs, pctx.blk, 1,
4076 NULL, NULL);
4077 }
4078
4079 if (pctx.errcode)
4080 fix_problem(ctx, PR_1_RELOC_WRITE_ERR, &pctx);
4081 }
4082 ext2fs_free_mem(&buf);
4083 }
4084
4085 /*
4086 * This routine gets called at the end of pass 1 if bad blocks are
4087 * detected in the superblock, group descriptors, inode_bitmaps, or
4088 * block bitmaps. At this point, all of the blocks have been mapped
4089 * out, so we can try to allocate new block(s) to replace the bad
4090 * blocks.
4091 */
handle_fs_bad_blocks(e2fsck_t ctx)4092 static void handle_fs_bad_blocks(e2fsck_t ctx)
4093 {
4094 ext2_filsys fs = ctx->fs;
4095 dgrp_t i;
4096 blk64_t first_block;
4097 blk64_t new_blk;
4098
4099 for (i = 0; i < fs->group_desc_count; i++) {
4100 first_block = ext2fs_group_first_block2(fs, i);
4101
4102 if (ctx->invalid_block_bitmap_flag[i]) {
4103 new_blk = ext2fs_block_bitmap_loc(fs, i);
4104 new_table_block(ctx, first_block, i, _("block bitmap"),
4105 1, &new_blk);
4106 ext2fs_block_bitmap_loc_set(fs, i, new_blk);
4107 }
4108 if (ctx->invalid_inode_bitmap_flag[i]) {
4109 new_blk = ext2fs_inode_bitmap_loc(fs, i);
4110 new_table_block(ctx, first_block, i, _("inode bitmap"),
4111 1, &new_blk);
4112 ext2fs_inode_bitmap_loc_set(fs, i, new_blk);
4113 }
4114 if (ctx->invalid_inode_table_flag[i]) {
4115 new_blk = ext2fs_inode_table_loc(fs, i);
4116 new_table_block(ctx, first_block, i, _("inode table"),
4117 fs->inode_blocks_per_group,
4118 &new_blk);
4119 ext2fs_inode_table_loc_set(fs, i, new_blk);
4120 ctx->flags |= E2F_FLAG_RESTART;
4121 }
4122 }
4123 ctx->invalid_bitmaps = 0;
4124 }
4125
4126 /*
4127 * This routine marks all blocks which are used by the superblock,
4128 * group descriptors, inode bitmaps, and block bitmaps.
4129 */
mark_table_blocks(e2fsck_t ctx)4130 static void mark_table_blocks(e2fsck_t ctx)
4131 {
4132 ext2_filsys fs = ctx->fs;
4133 blk64_t b;
4134 dgrp_t i;
4135 unsigned int j;
4136 struct problem_context pctx;
4137
4138 clear_problem_context(&pctx);
4139
4140 for (i = 0; i < fs->group_desc_count; i++) {
4141 pctx.group = i;
4142
4143 ext2fs_reserve_super_and_bgd(fs, i, ctx->block_found_map);
4144 ext2fs_reserve_super_and_bgd(fs, i, ctx->block_metadata_map);
4145
4146 /*
4147 * Mark the blocks used for the inode table
4148 */
4149 if (ext2fs_inode_table_loc(fs, i)) {
4150 for (j = 0, b = ext2fs_inode_table_loc(fs, i);
4151 j < fs->inode_blocks_per_group;
4152 j++, b++) {
4153 if (ext2fs_test_block_bitmap2(ctx->block_found_map,
4154 b)) {
4155 pctx.blk = b;
4156 if (!ctx->invalid_inode_table_flag[i] &&
4157 fix_problem(ctx,
4158 PR_1_ITABLE_CONFLICT, &pctx)) {
4159 ctx->invalid_inode_table_flag[i]++;
4160 ctx->invalid_bitmaps++;
4161 }
4162 } else {
4163 ext2fs_mark_block_bitmap2(
4164 ctx->block_found_map, b);
4165 ext2fs_mark_block_bitmap2(
4166 ctx->block_metadata_map, b);
4167 }
4168 }
4169 }
4170
4171 /*
4172 * Mark block used for the block bitmap
4173 */
4174 if (ext2fs_block_bitmap_loc(fs, i)) {
4175 if (ext2fs_test_block_bitmap2(ctx->block_found_map,
4176 ext2fs_block_bitmap_loc(fs, i))) {
4177 pctx.blk = ext2fs_block_bitmap_loc(fs, i);
4178 if (fix_problem(ctx, PR_1_BB_CONFLICT, &pctx)) {
4179 ctx->invalid_block_bitmap_flag[i]++;
4180 ctx->invalid_bitmaps++;
4181 }
4182 } else {
4183 ext2fs_mark_block_bitmap2(ctx->block_found_map,
4184 ext2fs_block_bitmap_loc(fs, i));
4185 ext2fs_mark_block_bitmap2(ctx->block_metadata_map,
4186 ext2fs_block_bitmap_loc(fs, i));
4187 }
4188 }
4189 /*
4190 * Mark block used for the inode bitmap
4191 */
4192 if (ext2fs_inode_bitmap_loc(fs, i)) {
4193 if (ext2fs_test_block_bitmap2(ctx->block_found_map,
4194 ext2fs_inode_bitmap_loc(fs, i))) {
4195 pctx.blk = ext2fs_inode_bitmap_loc(fs, i);
4196 if (fix_problem(ctx, PR_1_IB_CONFLICT, &pctx)) {
4197 ctx->invalid_inode_bitmap_flag[i]++;
4198 ctx->invalid_bitmaps++;
4199 }
4200 } else {
4201 ext2fs_mark_block_bitmap2(ctx->block_metadata_map,
4202 ext2fs_inode_bitmap_loc(fs, i));
4203 ext2fs_mark_block_bitmap2(ctx->block_found_map,
4204 ext2fs_inode_bitmap_loc(fs, i));
4205 }
4206 }
4207 }
4208 }
4209
4210 /*
4211 * These subroutines short circuits ext2fs_get_blocks and
4212 * ext2fs_check_directory; we use them since we already have the inode
4213 * structure, so there's no point in letting the ext2fs library read
4214 * the inode again.
4215 */
pass1_get_blocks(ext2_filsys fs,ext2_ino_t ino,blk_t * blocks)4216 static errcode_t pass1_get_blocks(ext2_filsys fs, ext2_ino_t ino,
4217 blk_t *blocks)
4218 {
4219 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4220 int i;
4221
4222 if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
4223 return EXT2_ET_CALLBACK_NOTHANDLED;
4224
4225 for (i=0; i < EXT2_N_BLOCKS; i++)
4226 blocks[i] = ctx->stashed_inode->i_block[i];
4227 return 0;
4228 }
4229
pass1_read_inode(ext2_filsys fs,ext2_ino_t ino,struct ext2_inode * inode)4230 static errcode_t pass1_read_inode(ext2_filsys fs, ext2_ino_t ino,
4231 struct ext2_inode *inode)
4232 {
4233 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4234
4235 if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
4236 return EXT2_ET_CALLBACK_NOTHANDLED;
4237 *inode = *ctx->stashed_inode;
4238 return 0;
4239 }
4240
pass1_write_inode(ext2_filsys fs,ext2_ino_t ino,struct ext2_inode * inode)4241 static errcode_t pass1_write_inode(ext2_filsys fs, ext2_ino_t ino,
4242 struct ext2_inode *inode)
4243 {
4244 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4245
4246 if ((ino == ctx->stashed_ino) && ctx->stashed_inode &&
4247 (inode != ctx->stashed_inode))
4248 *ctx->stashed_inode = *inode;
4249 return EXT2_ET_CALLBACK_NOTHANDLED;
4250 }
4251
pass1_check_directory(ext2_filsys fs,ext2_ino_t ino)4252 static errcode_t pass1_check_directory(ext2_filsys fs, ext2_ino_t ino)
4253 {
4254 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4255
4256 if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
4257 return EXT2_ET_CALLBACK_NOTHANDLED;
4258
4259 if (!LINUX_S_ISDIR(ctx->stashed_inode->i_mode))
4260 return EXT2_ET_NO_DIRECTORY;
4261 return 0;
4262 }
4263
e2fsck_get_alloc_block(ext2_filsys fs,blk64_t goal,blk64_t * ret)4264 static errcode_t e2fsck_get_alloc_block(ext2_filsys fs, blk64_t goal,
4265 blk64_t *ret)
4266 {
4267 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4268 errcode_t retval;
4269 blk64_t new_block;
4270
4271 if (ctx->block_found_map) {
4272 retval = ext2fs_new_block2(fs, goal, ctx->block_found_map,
4273 &new_block);
4274 if (retval)
4275 return retval;
4276 if (fs->block_map) {
4277 ext2fs_mark_block_bitmap2(fs->block_map, new_block);
4278 ext2fs_mark_bb_dirty(fs);
4279 }
4280 } else {
4281 if (!fs->block_map) {
4282 retval = ext2fs_read_block_bitmap(fs);
4283 if (retval)
4284 return retval;
4285 }
4286
4287 retval = ext2fs_new_block2(fs, goal, fs->block_map, &new_block);
4288 if (retval)
4289 return retval;
4290 }
4291
4292 *ret = new_block;
4293 return (0);
4294 }
4295
e2fsck_new_range(ext2_filsys fs,int flags,blk64_t goal,blk64_t len,blk64_t * pblk,blk64_t * plen)4296 static errcode_t e2fsck_new_range(ext2_filsys fs, int flags, blk64_t goal,
4297 blk64_t len, blk64_t *pblk, blk64_t *plen)
4298 {
4299 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4300 errcode_t retval;
4301
4302 if (ctx->block_found_map)
4303 return ext2fs_new_range(fs, flags, goal, len,
4304 ctx->block_found_map, pblk, plen);
4305
4306 if (!fs->block_map) {
4307 retval = ext2fs_read_block_bitmap(fs);
4308 if (retval)
4309 return retval;
4310 }
4311
4312 return ext2fs_new_range(fs, flags, goal, len, fs->block_map,
4313 pblk, plen);
4314 }
4315
e2fsck_block_alloc_stats(ext2_filsys fs,blk64_t blk,int inuse)4316 static void e2fsck_block_alloc_stats(ext2_filsys fs, blk64_t blk, int inuse)
4317 {
4318 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4319
4320 /* Never free a critical metadata block */
4321 if (ctx->block_found_map &&
4322 ctx->block_metadata_map &&
4323 inuse < 0 &&
4324 ext2fs_test_block_bitmap2(ctx->block_metadata_map, blk))
4325 return;
4326
4327 if (ctx->block_found_map) {
4328 if (inuse > 0)
4329 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
4330 else
4331 ext2fs_unmark_block_bitmap2(ctx->block_found_map, blk);
4332 }
4333 }
4334
e2fsck_block_alloc_stats_range(ext2_filsys fs,blk64_t blk,blk_t num,int inuse)4335 static void e2fsck_block_alloc_stats_range(ext2_filsys fs, blk64_t blk,
4336 blk_t num, int inuse)
4337 {
4338 e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4339
4340 /* Never free a critical metadata block */
4341 if (ctx->block_found_map &&
4342 ctx->block_metadata_map &&
4343 inuse < 0 &&
4344 ext2fs_test_block_bitmap_range2(ctx->block_metadata_map, blk, num))
4345 return;
4346
4347 if (ctx->block_found_map) {
4348 if (inuse > 0)
4349 ext2fs_mark_block_bitmap_range2(ctx->block_found_map,
4350 blk, num);
4351 else
4352 ext2fs_unmark_block_bitmap_range2(ctx->block_found_map,
4353 blk, num);
4354 }
4355 }
4356
e2fsck_use_inode_shortcuts(e2fsck_t ctx,int use_shortcuts)4357 void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts)
4358 {
4359 ext2_filsys fs = ctx->fs;
4360
4361 if (use_shortcuts) {
4362 fs->get_blocks = pass1_get_blocks;
4363 fs->check_directory = pass1_check_directory;
4364 fs->read_inode = pass1_read_inode;
4365 fs->write_inode = pass1_write_inode;
4366 ctx->stashed_ino = 0;
4367 } else {
4368 fs->get_blocks = 0;
4369 fs->check_directory = 0;
4370 fs->read_inode = 0;
4371 fs->write_inode = 0;
4372 }
4373 }
4374
e2fsck_intercept_block_allocations(e2fsck_t ctx)4375 void e2fsck_intercept_block_allocations(e2fsck_t ctx)
4376 {
4377 ext2fs_set_alloc_block_callback(ctx->fs, e2fsck_get_alloc_block, 0);
4378 ext2fs_set_block_alloc_stats_callback(ctx->fs,
4379 e2fsck_block_alloc_stats, 0);
4380 ext2fs_set_new_range_callback(ctx->fs, e2fsck_new_range, NULL);
4381 ext2fs_set_block_alloc_stats_range_callback(ctx->fs,
4382 e2fsck_block_alloc_stats_range, NULL);
4383 }
4384