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