Whamcloud - gitweb
e2fsck: do not change global variables
[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 #include <assert.h>
51 #ifdef HAVE_PTHREAD
52 #include <pthread.h>
53 #endif
54
55 #include "e2fsck.h"
56 #include <ext2fs/ext2_ext_attr.h>
57 /* todo remove this finally */
58 #include <ext2fs/ext2fsP.h>
59 #include <e2p/e2p.h>
60
61 #include "problem.h"
62
63 #ifdef NO_INLINE_FUNCS
64 #define _INLINE_
65 #else
66 #define _INLINE_ inline
67 #endif
68
69 #undef DEBUG
70
71 struct ea_quota {
72         blk64_t blocks;
73         __u64 inodes;
74 };
75
76 static int process_block(ext2_filsys fs, blk64_t        *blocknr,
77                          e2_blkcnt_t blockcnt, blk64_t ref_blk,
78                          int ref_offset, void *priv_data);
79 static int process_bad_block(ext2_filsys fs, blk64_t *block_nr,
80                              e2_blkcnt_t blockcnt, blk64_t ref_blk,
81                              int ref_offset, void *priv_data);
82 static void check_blocks(e2fsck_t ctx, struct problem_context *pctx,
83                          char *block_buf,
84                          const struct ea_quota *ea_ibody_quota);
85 static void mark_table_blocks(e2fsck_t ctx);
86 static void alloc_bb_map(e2fsck_t ctx);
87 static void alloc_imagic_map(e2fsck_t ctx);
88 static void mark_inode_bad(e2fsck_t ctx, ino_t ino);
89 static void add_casefolded_dir(e2fsck_t ctx, ino_t ino);
90 static void handle_fs_bad_blocks(e2fsck_t ctx);
91 static EXT2_QSORT_TYPE process_inode_cmp(const void *a, const void *b);
92 static errcode_t scan_callback(ext2_filsys fs, ext2_inode_scan scan,
93                                   dgrp_t group, void * priv_data);
94 static void adjust_extattr_refcount(e2fsck_t ctx, ext2_refcount_t refcount,
95                                     char *block_buf, int adjust_sign);
96 /* static char *describe_illegal_block(ext2_filsys fs, blk64_t block); */
97
98 struct process_block_struct {
99         ext2_ino_t      ino;
100         unsigned        is_dir:1, is_reg:1, clear:1, suppress:1,
101                                 fragmented:1, compressed:1, bbcheck:1,
102                                 inode_modified:1;
103         blk64_t         num_blocks;
104         blk64_t         max_blocks;
105         blk64_t         last_block;
106         e2_blkcnt_t     last_init_lblock;
107         e2_blkcnt_t     last_db_block;
108         int             num_illegal_blocks;
109         blk64_t         previous_block;
110         struct ext2_inode *inode;
111         struct problem_context *pctx;
112         ext2fs_block_bitmap fs_meta_blocks;
113         e2fsck_t        ctx;
114         blk64_t         next_lblock;
115         struct extent_tree_info eti;
116 };
117
118 struct process_inode_block {
119         ext2_ino_t ino;
120         struct ea_quota ea_ibody_quota;
121         struct ext2_inode_large inode;
122 };
123
124 struct scan_callback_struct {
125         e2fsck_t                         ctx;
126         char                            *block_buf;
127         struct process_inode_block      *inodes_to_process;
128         int                             *process_inode_count;
129 };
130
131 static void process_inodes(e2fsck_t ctx, char *block_buf,
132                            struct process_inode_block *inodes_to_process,
133                            int *process_inode_count);
134
135 static __u64 ext2_max_sizes[EXT2_MAX_BLOCK_LOG_SIZE -
136                             EXT2_MIN_BLOCK_LOG_SIZE + 1];
137
138 /*
139  * Check to make sure a device inode is real.  Returns 1 if the device
140  * checks out, 0 if not.
141  *
142  * Note: this routine is now also used to check FIFO's and Sockets,
143  * since they have the same requirement; the i_block fields should be
144  * zero.
145  */
146 int e2fsck_pass1_check_device_inode(ext2_filsys fs EXT2FS_ATTR((unused)),
147                                     struct ext2_inode *inode)
148 {
149         int     i;
150
151         /*
152          * If the index or extents flag is set, then this is a bogus
153          * device/fifo/socket
154          */
155         if (inode->i_flags & (EXT2_INDEX_FL | EXT4_EXTENTS_FL))
156                 return 0;
157
158         /*
159          * We should be able to do the test below all the time, but
160          * because the kernel doesn't forcibly clear the device
161          * inode's additional i_block fields, there are some rare
162          * occasions when a legitimate device inode will have non-zero
163          * additional i_block fields.  So for now, we only complain
164          * when the immutable flag is set, which should never happen
165          * for devices.  (And that's when the problem is caused, since
166          * you can't set or clear immutable flags for devices.)  Once
167          * the kernel has been fixed we can change this...
168          */
169         if (inode->i_flags & (EXT2_IMMUTABLE_FL | EXT2_APPEND_FL)) {
170                 for (i=4; i < EXT2_N_BLOCKS; i++)
171                         if (inode->i_block[i])
172                                 return 0;
173         }
174         return 1;
175 }
176
177 /*
178  * Check to make sure a symlink inode is real.  Returns 1 if the symlink
179  * checks out, 0 if not.
180  */
181 int e2fsck_pass1_check_symlink(ext2_filsys fs, ext2_ino_t ino,
182                                struct ext2_inode *inode, char *buf)
183 {
184         unsigned int buflen;
185         unsigned int len;
186
187         if ((inode->i_size_high || inode->i_size == 0) ||
188             (inode->i_flags & EXT2_INDEX_FL))
189                 return 0;
190
191         if (inode->i_flags & EXT4_INLINE_DATA_FL) {
192                 size_t inline_size;
193
194                 if (inode->i_flags & EXT4_EXTENTS_FL)
195                         return 0;
196                 if (ext2fs_inline_data_size(fs, ino, &inline_size))
197                         return 0;
198                 if (inode->i_size != inline_size)
199                         return 0;
200
201                 return 1;
202         }
203
204         if (ext2fs_is_fast_symlink(inode)) {
205                 if (inode->i_flags & EXT4_EXTENTS_FL)
206                         return 0;
207                 buf = (char *)inode->i_block;
208                 buflen = sizeof(inode->i_block);
209         } else {
210                 ext2_extent_handle_t    handle;
211                 struct ext2_extent_info info;
212                 struct ext2fs_extent    extent;
213                 blk64_t blk;
214                 int i;
215
216                 if (inode->i_flags & EXT4_EXTENTS_FL) {
217                         if (ext2fs_extent_open2(fs, ino, inode, &handle))
218                                 return 0;
219                         if (ext2fs_extent_get_info(handle, &info) ||
220                             (info.num_entries != 1) ||
221                             (info.max_depth != 0)) {
222                                 ext2fs_extent_free(handle);
223                                 return 0;
224                         }
225                         if (ext2fs_extent_get(handle, EXT2_EXTENT_ROOT,
226                                               &extent) ||
227                             (extent.e_lblk != 0) ||
228                             (extent.e_len != 1)) {
229                                 ext2fs_extent_free(handle);
230                                 return 0;
231                         }
232                         blk = extent.e_pblk;
233                         ext2fs_extent_free(handle);
234                 } else {
235                         blk = inode->i_block[0];
236
237                         for (i = 1; i < EXT2_N_BLOCKS; i++)
238                                 if (inode->i_block[i])
239                                         return 0;
240                 }
241
242                 if (blk < fs->super->s_first_data_block ||
243                     blk >= ext2fs_blocks_count(fs->super))
244                         return 0;
245
246                 if (io_channel_read_blk64(fs->io, blk, 1, buf))
247                         return 0;
248
249                 buflen = fs->blocksize;
250         }
251
252         if (inode->i_flags & EXT4_ENCRYPT_FL)
253                 len = ext2fs_le16_to_cpu(*(__u16 *)buf) + 2;
254         else
255                 len = strnlen(buf, buflen);
256
257         if (len >= buflen)
258                 return 0;
259
260         if (len != inode->i_size)
261                 return 0;
262         return 1;
263 }
264
265 /*
266  * If the extents or inlinedata flags are set on the inode, offer to clear 'em.
267  */
268 #define BAD_SPECIAL_FLAGS (EXT4_EXTENTS_FL | EXT4_INLINE_DATA_FL)
269 static void check_extents_inlinedata(e2fsck_t ctx,
270                                      struct problem_context *pctx)
271 {
272         if (!(pctx->inode->i_flags & BAD_SPECIAL_FLAGS))
273                 return;
274
275         if (!fix_problem(ctx, PR_1_SPECIAL_EXTENTS_IDATA, pctx))
276                 return;
277
278         pctx->inode->i_flags &= ~BAD_SPECIAL_FLAGS;
279         e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
280 }
281 #undef BAD_SPECIAL_FLAGS
282
283 /*
284  * If the immutable (or append-only) flag is set on the inode, offer
285  * to clear it.
286  */
287 #define BAD_SPECIAL_FLAGS (EXT2_IMMUTABLE_FL | EXT2_APPEND_FL)
288 static void check_immutable(e2fsck_t ctx, struct problem_context *pctx)
289 {
290         if (!(pctx->inode->i_flags & BAD_SPECIAL_FLAGS))
291                 return;
292
293         if (!fix_problem(ctx, PR_1_SET_IMMUTABLE, pctx))
294                 return;
295
296         pctx->inode->i_flags &= ~BAD_SPECIAL_FLAGS;
297         e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
298 }
299
300 /*
301  * If device, fifo or socket, check size is zero -- if not offer to
302  * clear it
303  */
304 static void check_size(e2fsck_t ctx, struct problem_context *pctx)
305 {
306         struct ext2_inode *inode = pctx->inode;
307
308         if (EXT2_I_SIZE(inode) == 0)
309                 return;
310
311         if (!fix_problem(ctx, PR_1_SET_NONZSIZE, pctx))
312                 return;
313
314         ext2fs_inode_size_set(ctx->fs, inode, 0);
315         e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
316 }
317
318 /*
319  * For a given size, calculate how many blocks would be charged towards quota.
320  */
321 static blk64_t size_to_quota_blocks(ext2_filsys fs, size_t size)
322 {
323         blk64_t clusters;
324
325         clusters = DIV_ROUND_UP(size, fs->blocksize << fs->cluster_ratio_bits);
326         return EXT2FS_C2B(fs, clusters);
327 }
328
329 /*
330  * Check validity of EA inode. Return 0 if EA inode is valid, otherwise return
331  * the problem code.
332  */
333 static problem_t check_large_ea_inode(e2fsck_t ctx,
334                                       struct ext2_ext_attr_entry *entry,
335                                       struct problem_context *pctx,
336                                       blk64_t *quota_blocks)
337 {
338         struct ext2_inode inode;
339         __u32 hash;
340         errcode_t retval;
341
342         /* Check if inode is within valid range */
343         if ((entry->e_value_inum < EXT2_FIRST_INODE(ctx->fs->super)) ||
344             (entry->e_value_inum > ctx->fs->super->s_inodes_count)) {
345                 pctx->num = entry->e_value_inum;
346                 return PR_1_ATTR_VALUE_EA_INODE;
347         }
348
349         e2fsck_read_inode(ctx, entry->e_value_inum, &inode, "pass1");
350
351         retval = ext2fs_ext_attr_hash_entry2(ctx->fs, entry, NULL, &hash);
352         if (retval) {
353                 com_err("check_large_ea_inode", retval,
354                         _("while hashing entry with e_value_inum = %u"),
355                         entry->e_value_inum);
356                 fatal_error(ctx, 0);
357         }
358
359         if (hash == entry->e_hash) {
360                 *quota_blocks = size_to_quota_blocks(ctx->fs,
361                                                      entry->e_value_size);
362         } else {
363                 /* This might be an old Lustre-style ea_inode reference. */
364                 if (inode.i_mtime == pctx->ino &&
365                     inode.i_generation == pctx->inode->i_generation) {
366                         *quota_blocks = 0;
367                 } else {
368                         /* If target inode is also missing EA_INODE flag,
369                          * this is likely to be a bad reference.
370                          */
371                         if (!(inode.i_flags & EXT4_EA_INODE_FL)) {
372                                 pctx->num = entry->e_value_inum;
373                                 return PR_1_ATTR_VALUE_EA_INODE;
374                         } else {
375                                 pctx->num = entry->e_hash;
376                                 return PR_1_ATTR_HASH;
377                         }
378                 }
379         }
380
381         if (!(inode.i_flags & EXT4_EA_INODE_FL)) {
382                 pctx->num = entry->e_value_inum;
383                 if (fix_problem(ctx, PR_1_ATTR_SET_EA_INODE_FL, pctx)) {
384                         inode.i_flags |= EXT4_EA_INODE_FL;
385                         ext2fs_write_inode(ctx->fs, entry->e_value_inum,
386                                            &inode);
387                 } else {
388                         return PR_1_ATTR_NO_EA_INODE_FL;
389                 }
390         }
391         return 0;
392 }
393
394 static void inc_ea_inode_refs(e2fsck_t ctx, struct problem_context *pctx,
395                               struct ext2_ext_attr_entry *first, void *end)
396 {
397         struct ext2_ext_attr_entry *entry;
398
399         for (entry = first;
400              (void *)entry < end && !EXT2_EXT_IS_LAST_ENTRY(entry);
401              entry = EXT2_EXT_ATTR_NEXT(entry)) {
402                 if (!entry->e_value_inum)
403                         continue;
404                 if (!ctx->ea_inode_refs) {
405                         pctx->errcode = ea_refcount_create(0,
406                                                            &ctx->ea_inode_refs);
407                         if (pctx->errcode) {
408                                 pctx->num = 4;
409                                 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
410                                 ctx->flags |= E2F_FLAG_ABORT;
411                                 return;
412                         }
413                 }
414                 ea_refcount_increment(ctx->ea_inode_refs, entry->e_value_inum,
415                                       0);
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_run(e2fsck_t ctx)
1170 {
1171         int     i;
1172         ext2_filsys fs = ctx->fs;
1173         ext2_ino_t      ino = 0;
1174         struct ext2_inode *inode = NULL;
1175         ext2_inode_scan scan = NULL;
1176         char            *block_buf = NULL;
1177 #ifdef RESOURCE_TRACK
1178         struct resource_track   rtrack;
1179 #endif
1180         unsigned char   frag, fsize;
1181         struct          problem_context pctx;
1182         struct          scan_callback_struct scan_struct;
1183         struct ext2_super_block *sb = ctx->fs->super;
1184         const char      *old_op;
1185         const char      *eop_next_inode = _("getting next inode from scan");
1186         int             imagic_fs, extent_fs, inlinedata_fs, casefold_fs;
1187         int             low_dtime_check = 1;
1188         unsigned int    inode_size = EXT2_INODE_SIZE(fs->super);
1189         unsigned int    bufsize;
1190         int             failed_csum = 0;
1191         ext2_ino_t      ino_threshold = 0;
1192         dgrp_t          ra_group = 0;
1193         struct ea_quota ea_ibody_quota;
1194         struct process_inode_block *inodes_to_process;
1195         int             process_inode_count;
1196
1197         init_resource_track(&rtrack, ctx->fs->io);
1198         clear_problem_context(&pctx);
1199
1200         /* If we can do readahead, figure out how many groups to pull in. */
1201         if (!e2fsck_can_readahead(ctx->fs))
1202                 ctx->readahead_kb = 0;
1203         else if (ctx->readahead_kb == ~0ULL)
1204                 ctx->readahead_kb = e2fsck_guess_readahead(ctx->fs);
1205         pass1_readahead(ctx, &ra_group, &ino_threshold);
1206
1207         if (!(ctx->options & E2F_OPT_PREEN))
1208                 fix_problem(ctx, PR_1_PASS_HEADER, &pctx);
1209
1210         if (ext2fs_has_feature_dir_index(fs->super) &&
1211             !(ctx->options & E2F_OPT_NO)) {
1212                 if (ext2fs_u32_list_create(&ctx->dirs_to_hash, 50))
1213                         ctx->dirs_to_hash = 0;
1214         }
1215
1216 #ifdef MTRACE
1217         mtrace_print("Pass 1");
1218 #endif
1219
1220         imagic_fs = ext2fs_has_feature_imagic_inodes(sb);
1221         extent_fs = ext2fs_has_feature_extents(sb);
1222         inlinedata_fs = ext2fs_has_feature_inline_data(sb);
1223         casefold_fs = ext2fs_has_feature_casefold(sb);
1224
1225         /*
1226          * Allocate bitmaps structures
1227          */
1228         pctx.errcode = e2fsck_allocate_inode_bitmap(fs, _("in-use inode map"),
1229                                                     EXT2FS_BMAP64_RBTREE,
1230                                                     "inode_used_map",
1231                                                     &ctx->inode_used_map);
1232         if (pctx.errcode) {
1233                 pctx.num = 1;
1234                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1235                 ctx->flags |= E2F_FLAG_ABORT;
1236                 return;
1237         }
1238         pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
1239                         _("directory inode map"),
1240                         EXT2FS_BMAP64_AUTODIR,
1241                         "inode_dir_map", &ctx->inode_dir_map);
1242         if (pctx.errcode) {
1243                 pctx.num = 2;
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                         _("regular file inode map"), EXT2FS_BMAP64_RBTREE,
1250                         "inode_reg_map", &ctx->inode_reg_map);
1251         if (pctx.errcode) {
1252                 pctx.num = 6;
1253                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1254                 ctx->flags |= E2F_FLAG_ABORT;
1255                 return;
1256         }
1257         pctx.errcode = e2fsck_allocate_subcluster_bitmap(fs,
1258                         _("in-use block map"), EXT2FS_BMAP64_RBTREE,
1259                         "block_found_map", &ctx->block_found_map);
1260         if (pctx.errcode) {
1261                 pctx.num = 1;
1262                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1263                 ctx->flags |= E2F_FLAG_ABORT;
1264                 return;
1265         }
1266         pctx.errcode = e2fsck_allocate_block_bitmap(fs,
1267                         _("metadata block map"), EXT2FS_BMAP64_RBTREE,
1268                         "block_metadata_map", &ctx->block_metadata_map);
1269         if (pctx.errcode) {
1270                 pctx.num = 1;
1271                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1272                 ctx->flags |= E2F_FLAG_ABORT;
1273                 return;
1274         }
1275         if (casefold_fs) {
1276                 pctx.errcode =
1277                         e2fsck_allocate_inode_bitmap(fs,
1278                                                      _("inode casefold map"),
1279                                                      EXT2FS_BMAP64_RBTREE,
1280                                                      "inode_casefold_map",
1281                                                      &ctx->inode_casefold_map);
1282                 if (pctx.errcode) {
1283                         pctx.num = 1;
1284                         fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1285                         ctx->flags |= E2F_FLAG_ABORT;
1286                         return;
1287                 }
1288         }
1289         pctx.errcode = e2fsck_setup_icount(ctx, "inode_link_info", 0, NULL,
1290                                            &ctx->inode_link_info);
1291         if (pctx.errcode) {
1292                 fix_problem(ctx, PR_1_ALLOCATE_ICOUNT, &pctx);
1293                 ctx->flags |= E2F_FLAG_ABORT;
1294                 return;
1295         }
1296         bufsize = inode_size;
1297         if (bufsize < sizeof(struct ext2_inode_large))
1298                 bufsize = sizeof(struct ext2_inode_large);
1299         inode = (struct ext2_inode *)
1300                 e2fsck_allocate_memory(ctx, bufsize, "scratch inode");
1301
1302         inodes_to_process = (struct process_inode_block *)
1303                 e2fsck_allocate_memory(ctx,
1304                                        (ctx->process_inode_size *
1305                                         sizeof(struct process_inode_block)),
1306                                        "array of inodes to process");
1307         process_inode_count = 0;
1308
1309         pctx.errcode = ext2fs_init_dblist(fs, 0);
1310         if (pctx.errcode) {
1311                 fix_problem(ctx, PR_1_ALLOCATE_DBCOUNT, &pctx);
1312                 ctx->flags |= E2F_FLAG_ABORT;
1313                 goto endit;
1314         }
1315
1316         /*
1317          * If the last orphan field is set, clear it, since the pass1
1318          * processing will automatically find and clear the orphans.
1319          * In the future, we may want to try using the last_orphan
1320          * linked list ourselves, but for now, we clear it so that the
1321          * ext3 mount code won't get confused.
1322          */
1323         if (!(ctx->options & E2F_OPT_READONLY)) {
1324                 if (fs->super->s_last_orphan) {
1325                         fs->super->s_last_orphan = 0;
1326                         ext2fs_mark_super_dirty(fs);
1327                 }
1328         }
1329
1330         mark_table_blocks(ctx);
1331         pctx.errcode = ext2fs_convert_subcluster_bitmap(fs,
1332                                                 &ctx->block_found_map);
1333         if (pctx.errcode) {
1334                 fix_problem(ctx, PR_1_CONVERT_SUBCLUSTER, &pctx);
1335                 ctx->flags |= E2F_FLAG_ABORT;
1336                 goto endit;
1337         }
1338         block_buf = (char *) e2fsck_allocate_memory(ctx, fs->blocksize * 3,
1339                                                     "block interate buffer");
1340         if (EXT2_INODE_SIZE(fs->super) == EXT2_GOOD_OLD_INODE_SIZE)
1341                 e2fsck_use_inode_shortcuts(ctx, 1);
1342         e2fsck_intercept_block_allocations(ctx);
1343         old_op = ehandler_operation(_("opening inode scan"));
1344         pctx.errcode = ext2fs_open_inode_scan(fs, ctx->inode_buffer_blocks,
1345                                               &scan);
1346         ehandler_operation(old_op);
1347         if (pctx.errcode) {
1348                 fix_problem(ctx, PR_1_ISCAN_ERROR, &pctx);
1349                 ctx->flags |= E2F_FLAG_ABORT;
1350                 goto endit;
1351         }
1352         ext2fs_inode_scan_flags(scan, EXT2_SF_SKIP_MISSING_ITABLE |
1353                                       EXT2_SF_WARN_GARBAGE_INODES, 0);
1354         ctx->stashed_inode = inode;
1355         scan_struct.ctx = ctx;
1356         scan_struct.block_buf = block_buf;
1357         scan_struct.inodes_to_process = inodes_to_process;
1358         scan_struct.process_inode_count = &process_inode_count;
1359         ext2fs_set_inode_callback(scan, scan_callback, &scan_struct);
1360         if (ctx->progress && ((ctx->progress)(ctx, 1, 0,
1361                                               ctx->fs->group_desc_count)))
1362                 goto endit;
1363         if ((fs->super->s_wtime &&
1364              fs->super->s_wtime < fs->super->s_inodes_count) ||
1365             (fs->super->s_mtime &&
1366              fs->super->s_mtime < fs->super->s_inodes_count) ||
1367             (fs->super->s_mkfs_time &&
1368              fs->super->s_mkfs_time < fs->super->s_inodes_count))
1369                 low_dtime_check = 0;
1370
1371         if (ext2fs_has_feature_mmp(fs->super) &&
1372             fs->super->s_mmp_block > fs->super->s_first_data_block &&
1373             fs->super->s_mmp_block < ext2fs_blocks_count(fs->super))
1374                 ext2fs_mark_block_bitmap2(ctx->block_found_map,
1375                                           fs->super->s_mmp_block);
1376
1377         /* Set up ctx->lost_and_found if possible */
1378         (void) e2fsck_get_lost_and_found(ctx, 0);
1379
1380 #ifdef HAVE_PTHREAD
1381         if (ctx->global_ctx) {
1382                 if (ctx->options & E2F_OPT_DEBUG &&
1383                     ctx->options & E2F_OPT_MULTITHREAD)
1384                         fprintf(stderr, "thread %d jumping to group %d\n",
1385                                         ctx->thread_info.et_thread_index,
1386                                         ctx->thread_info.et_group_start);
1387                 pctx.errcode = ext2fs_inode_scan_goto_blockgroup(scan,
1388                                         ctx->thread_info.et_group_start);
1389                 if (pctx.errcode) {
1390                         fix_problem(ctx, PR_1_PASS_HEADER, &pctx);
1391                         ctx->flags |= E2F_FLAG_ABORT;
1392                         goto endit;
1393                 }
1394         }
1395 #endif
1396
1397         while (1) {
1398                 if (ino % (fs->super->s_inodes_per_group * 4) == 1) {
1399                         if (e2fsck_mmp_update(fs))
1400                                 fatal_error(ctx, 0);
1401                 }
1402                 old_op = ehandler_operation(eop_next_inode);
1403                 pctx.errcode = ext2fs_get_next_inode_full(scan, &ino,
1404                                                           inode, inode_size);
1405                 if (ino > ino_threshold)
1406                         pass1_readahead(ctx, &ra_group, &ino_threshold);
1407                 ehandler_operation(old_op);
1408                 if (e2fsck_should_abort(ctx))
1409                         goto endit;
1410                 if (pctx.errcode == EXT2_ET_BAD_BLOCK_IN_INODE_TABLE) {
1411                         /*
1412                          * If badblocks says badblocks is bad, offer to clear
1413                          * the list, update the in-core bb list, and restart
1414                          * the inode scan.
1415                          */
1416                         if (ino == EXT2_BAD_INO &&
1417                             fix_problem(ctx, PR_1_BADBLOCKS_IN_BADBLOCKS,
1418                                         &pctx)) {
1419                                 errcode_t err;
1420
1421                                 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1422                                 ext2fs_badblocks_list_free(ctx->fs->badblocks);
1423                                 ctx->fs->badblocks = NULL;
1424                                 err = ext2fs_read_bb_inode(ctx->fs,
1425                                                         &ctx->fs->badblocks);
1426                                 if (err) {
1427                                         fix_problem(ctx, PR_1_ISCAN_ERROR,
1428                                                     &pctx);
1429                                         ctx->flags |= E2F_FLAG_ABORT;
1430                                 } else
1431                                         ctx->flags |= E2F_FLAG_RESTART;
1432                                 goto endit;
1433                         }
1434                         if (!ctx->inode_bb_map)
1435                                 alloc_bb_map(ctx);
1436                         ext2fs_mark_inode_bitmap2(ctx->inode_bb_map, ino);
1437                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1438                         continue;
1439                 }
1440                 if (pctx.errcode == EXT2_ET_SCAN_FINISHED)
1441                         break;
1442                 if (pctx.errcode &&
1443                     pctx.errcode != EXT2_ET_INODE_CSUM_INVALID &&
1444                     pctx.errcode != EXT2_ET_INODE_IS_GARBAGE) {
1445                         fix_problem(ctx, PR_1_ISCAN_ERROR, &pctx);
1446                         ctx->flags |= E2F_FLAG_ABORT;
1447                         goto endit;
1448                 }
1449                 if (!ino)
1450                         break;
1451 #ifdef HAVE_PTHREAD
1452                 if (ctx->global_ctx)
1453                         ctx->thread_info.et_inode_number++;
1454 #endif
1455                 pctx.ino = ino;
1456                 pctx.inode = inode;
1457                 ctx->stashed_ino = ino;
1458
1459                 /* Clear trashed inode? */
1460                 if (pctx.errcode == EXT2_ET_INODE_IS_GARBAGE &&
1461                     inode->i_links_count > 0 &&
1462                     fix_problem(ctx, PR_1_INODE_IS_GARBAGE, &pctx)) {
1463                         pctx.errcode = 0;
1464                         e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1465                 }
1466                 failed_csum = pctx.errcode != 0;
1467
1468                 /*
1469                  * Check for inodes who might have been part of the
1470                  * orphaned list linked list.  They should have gotten
1471                  * dealt with by now, unless the list had somehow been
1472                  * corrupted.
1473                  *
1474                  * FIXME: In the future, inodes which are still in use
1475                  * (and which are therefore) pending truncation should
1476                  * be handled specially.  Right now we just clear the
1477                  * dtime field, and the normal e2fsck handling of
1478                  * inodes where i_size and the inode blocks are
1479                  * inconsistent is to fix i_size, instead of releasing
1480                  * the extra blocks.  This won't catch the inodes that
1481                  * was at the end of the orphan list, but it's better
1482                  * than nothing.  The right answer is that there
1483                  * shouldn't be any bugs in the orphan list handling.  :-)
1484                  */
1485                 if (inode->i_dtime && low_dtime_check &&
1486                     inode->i_dtime < ctx->fs->super->s_inodes_count) {
1487                         if (fix_problem(ctx, PR_1_LOW_DTIME, &pctx)) {
1488                                 inode->i_dtime = inode->i_links_count ?
1489                                         0 : ctx->now;
1490                                 e2fsck_write_inode(ctx, ino, inode,
1491                                                    "pass1");
1492                                 failed_csum = 0;
1493                         }
1494                 }
1495
1496                 if (inode->i_links_count) {
1497                         pctx.errcode = ext2fs_icount_store(ctx->inode_link_info,
1498                                            ino, inode->i_links_count);
1499                         if (pctx.errcode) {
1500                                 pctx.num = inode->i_links_count;
1501                                 fix_problem(ctx, PR_1_ICOUNT_STORE, &pctx);
1502                                 ctx->flags |= E2F_FLAG_ABORT;
1503                                 goto endit;
1504                         }
1505                 } else if ((ino >= EXT2_FIRST_INODE(fs->super)) &&
1506                            !quota_inum_is_reserved(fs, ino)) {
1507                         if (!inode->i_dtime && inode->i_mode) {
1508                                 if (fix_problem(ctx,
1509                                             PR_1_ZERO_DTIME, &pctx)) {
1510                                         inode->i_dtime = ctx->now;
1511                                         e2fsck_write_inode(ctx, ino, inode,
1512                                                            "pass1");
1513                                         failed_csum = 0;
1514                                 }
1515                         }
1516                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1517                         continue;
1518                 }
1519
1520                 if ((inode->i_flags & EXT4_CASEFOLD_FL) &&
1521                     ((!LINUX_S_ISDIR(inode->i_mode) &&
1522                       fix_problem(ctx, PR_1_CASEFOLD_NONDIR, &pctx)) ||
1523                      (!casefold_fs &&
1524                       fix_problem(ctx, PR_1_CASEFOLD_FEATURE, &pctx)))) {
1525                         inode->i_flags &= ~EXT4_CASEFOLD_FL;
1526                         e2fsck_write_inode(ctx, ino, inode, "pass1");
1527                 }
1528
1529                 /* Conflicting inlinedata/extents inode flags? */
1530                 if ((inode->i_flags & EXT4_INLINE_DATA_FL) &&
1531                     (inode->i_flags & EXT4_EXTENTS_FL)) {
1532                         int res = fix_inline_data_extents_file(ctx, ino, inode,
1533                                                                inode_size,
1534                                                                &pctx);
1535                         if (res < 0) {
1536                                 /* skip FINISH_INODE_LOOP */
1537                                 continue;
1538                         }
1539                 }
1540
1541                 /* Test for incorrect inline_data flags settings. */
1542                 if ((inode->i_flags & EXT4_INLINE_DATA_FL) && !inlinedata_fs &&
1543                     (ino >= EXT2_FIRST_INODE(fs->super))) {
1544                         size_t size = 0;
1545
1546                         pctx.errcode = get_inline_data_ea_size(fs, ino, &size);
1547                         if (!pctx.errcode &&
1548                             fix_problem(ctx, PR_1_INLINE_DATA_FEATURE, &pctx)) {
1549                                 ext2fs_set_feature_inline_data(sb);
1550                                 ext2fs_mark_super_dirty(fs);
1551                                 inlinedata_fs = 1;
1552                         } else if (fix_problem(ctx, PR_1_INLINE_DATA_SET, &pctx)) {
1553                                 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1554                                 /* skip FINISH_INODE_LOOP */
1555                                 continue;
1556                         }
1557                 }
1558
1559                 /* Test for inline data flag but no attr */
1560                 if ((inode->i_flags & EXT4_INLINE_DATA_FL) && inlinedata_fs &&
1561                     (ino >= EXT2_FIRST_INODE(fs->super))) {
1562                         size_t size = 0;
1563                         errcode_t err;
1564                         int flags;
1565
1566                         flags = fs->flags;
1567                         if (failed_csum)
1568                                 fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
1569                         err = get_inline_data_ea_size(fs, ino, &size);
1570                         fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
1571                                     (fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
1572
1573                         switch (err) {
1574                         case 0:
1575                                 /* Everything is awesome... */
1576                                 break;
1577                         case EXT2_ET_BAD_EA_BLOCK_NUM:
1578                         case EXT2_ET_BAD_EA_HASH:
1579                         case EXT2_ET_BAD_EA_HEADER:
1580                         case EXT2_ET_EA_BAD_NAME_LEN:
1581                         case EXT2_ET_EA_BAD_VALUE_SIZE:
1582                         case EXT2_ET_EA_KEY_NOT_FOUND:
1583                         case EXT2_ET_EA_NO_SPACE:
1584                         case EXT2_ET_MISSING_EA_FEATURE:
1585                         case EXT2_ET_INLINE_DATA_CANT_ITERATE:
1586                         case EXT2_ET_INLINE_DATA_NO_BLOCK:
1587                         case EXT2_ET_INLINE_DATA_NO_SPACE:
1588                         case EXT2_ET_NO_INLINE_DATA:
1589                         case EXT2_ET_EXT_ATTR_CSUM_INVALID:
1590                         case EXT2_ET_EA_BAD_VALUE_OFFSET:
1591                         case EXT2_ET_EA_INODE_CORRUPTED:
1592                                 /* broken EA or no system.data EA; truncate */
1593                                 if (fix_problem(ctx, PR_1_INLINE_DATA_NO_ATTR,
1594                                                 &pctx)) {
1595                                         err = ext2fs_inode_size_set(fs, inode, 0);
1596                                         if (err) {
1597                                                 pctx.errcode = err;
1598                                                 ctx->flags |= E2F_FLAG_ABORT;
1599                                                 goto endit;
1600                                         }
1601                                         inode->i_flags &= ~EXT4_INLINE_DATA_FL;
1602                                         memset(&inode->i_block, 0,
1603                                                sizeof(inode->i_block));
1604                                         e2fsck_write_inode(ctx, ino, inode,
1605                                                            "pass1");
1606                                         failed_csum = 0;
1607                                 }
1608                                 break;
1609                         default:
1610                                 /* Some other kind of non-xattr error? */
1611                                 pctx.errcode = err;
1612                                 ctx->flags |= E2F_FLAG_ABORT;
1613                                 goto endit;
1614                         }
1615                 }
1616
1617                 /*
1618                  * Test for incorrect extent flag settings.
1619                  *
1620                  * On big-endian machines we must be careful:
1621                  * When the inode is read, the i_block array is not swapped
1622                  * if the extent flag is set.  Therefore if we are testing
1623                  * for or fixing a wrongly-set flag, we must potentially
1624                  * (un)swap before testing, or after fixing.
1625                  */
1626
1627                 /*
1628                  * In this case the extents flag was set when read, so
1629                  * extent_header_verify is ok.  If the inode is cleared,
1630                  * no need to swap... so no extra swapping here.
1631                  */
1632                 if ((inode->i_flags & EXT4_EXTENTS_FL) && !extent_fs &&
1633                     (inode->i_links_count || (ino == EXT2_BAD_INO) ||
1634                      (ino == EXT2_ROOT_INO) || (ino == EXT2_JOURNAL_INO))) {
1635                         if ((ext2fs_extent_header_verify(inode->i_block,
1636                                                  sizeof(inode->i_block)) == 0) &&
1637                             fix_problem(ctx, PR_1_EXTENT_FEATURE, &pctx)) {
1638                                 ext2fs_set_feature_extents(sb);
1639                                 ext2fs_mark_super_dirty(fs);
1640                                 extent_fs = 1;
1641                         } else if (fix_problem(ctx, PR_1_EXTENTS_SET, &pctx)) {
1642                         clear_inode:
1643                                 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1644                                 if (ino == EXT2_BAD_INO)
1645                                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map,
1646                                                                  ino);
1647                                 /* skip FINISH_INODE_LOOP */
1648                                 continue;
1649                         }
1650                 }
1651
1652                 /*
1653                  * For big-endian machines:
1654                  * If the inode didn't have the extents flag set when it
1655                  * was read, then the i_blocks array was swapped.  To test
1656                  * as an extents header, we must swap it back first.
1657                  * IF we then set the extents flag, the entire i_block
1658                  * array must be un/re-swapped to make it proper extents data.
1659                  */
1660                 if (extent_fs && !(inode->i_flags & EXT4_EXTENTS_FL) &&
1661                     (inode->i_links_count || (ino == EXT2_BAD_INO) ||
1662                      (ino == EXT2_ROOT_INO) || (ino == EXT2_JOURNAL_INO)) &&
1663                     (LINUX_S_ISREG(inode->i_mode) ||
1664                      LINUX_S_ISDIR(inode->i_mode))) {
1665                         void *ehp;
1666 #ifdef WORDS_BIGENDIAN
1667                         __u32 tmp_block[EXT2_N_BLOCKS];
1668
1669                         for (i = 0; i < EXT2_N_BLOCKS; i++)
1670                                 tmp_block[i] = ext2fs_swab32(inode->i_block[i]);
1671                         ehp = tmp_block;
1672 #else
1673                         ehp = inode->i_block;
1674 #endif
1675                         if ((ext2fs_extent_header_verify(ehp,
1676                                          sizeof(inode->i_block)) == 0) &&
1677                             (fix_problem(ctx, PR_1_UNSET_EXTENT_FL, &pctx))) {
1678                                 inode->i_flags |= EXT4_EXTENTS_FL;
1679 #ifdef WORDS_BIGENDIAN
1680                                 memcpy(inode->i_block, tmp_block,
1681                                        sizeof(inode->i_block));
1682 #endif
1683                                 e2fsck_write_inode(ctx, ino, inode, "pass1");
1684                                 failed_csum = 0;
1685                         }
1686                 }
1687
1688                 if (ino == EXT2_BAD_INO) {
1689                         struct process_block_struct pb;
1690
1691                         if ((failed_csum || inode->i_mode || inode->i_uid ||
1692                              inode->i_gid || inode->i_links_count ||
1693                              (inode->i_flags & EXT4_INLINE_DATA_FL) ||
1694                              inode->i_file_acl) &&
1695                             fix_problem(ctx, PR_1_INVALID_BAD_INODE, &pctx)) {
1696                                 memset(inode, 0, sizeof(struct ext2_inode));
1697                                 e2fsck_write_inode(ctx, ino, inode,
1698                                                    "clear bad inode");
1699                                 failed_csum = 0;
1700                         }
1701
1702                         pctx.errcode = ext2fs_copy_bitmap(ctx->block_found_map,
1703                                                           &pb.fs_meta_blocks);
1704                         if (pctx.errcode) {
1705                                 pctx.num = 4;
1706                                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1707                                 ctx->flags |= E2F_FLAG_ABORT;
1708                                 goto endit;
1709                         }
1710                         pb.ino = EXT2_BAD_INO;
1711                         pb.num_blocks = pb.last_block = 0;
1712                         pb.last_db_block = -1;
1713                         pb.num_illegal_blocks = 0;
1714                         pb.suppress = 0; pb.clear = 0; pb.is_dir = 0;
1715                         pb.is_reg = 0; pb.fragmented = 0; pb.bbcheck = 0;
1716                         pb.inode = inode;
1717                         pb.pctx = &pctx;
1718                         pb.ctx = ctx;
1719                         pctx.errcode = ext2fs_block_iterate3(fs, ino, 0,
1720                                      block_buf, process_bad_block, &pb);
1721                         ext2fs_free_block_bitmap(pb.fs_meta_blocks);
1722                         if (pctx.errcode) {
1723                                 fix_problem(ctx, PR_1_BLOCK_ITERATE, &pctx);
1724                                 ctx->flags |= E2F_FLAG_ABORT;
1725                                 goto endit;
1726                         }
1727                         if (pb.bbcheck)
1728                                 if (!fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK_PROMPT, &pctx)) {
1729                                 ctx->flags |= E2F_FLAG_ABORT;
1730                                 goto endit;
1731                         }
1732                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1733                         clear_problem_context(&pctx);
1734                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1735                         continue;
1736                 } else if (ino == EXT2_ROOT_INO) {
1737                         /*
1738                          * Make sure the root inode is a directory; if
1739                          * not, offer to clear it.  It will be
1740                          * regenerated in pass #3.
1741                          */
1742                         if (!LINUX_S_ISDIR(inode->i_mode)) {
1743                                 if (fix_problem(ctx, PR_1_ROOT_NO_DIR, &pctx))
1744                                         goto clear_inode;
1745                         }
1746                         /*
1747                          * If dtime is set, offer to clear it.  mke2fs
1748                          * version 0.2b created filesystems with the
1749                          * dtime field set for the root and lost+found
1750                          * directories.  We won't worry about
1751                          * /lost+found, since that can be regenerated
1752                          * easily.  But we will fix the root directory
1753                          * as a special case.
1754                          */
1755                         if (inode->i_dtime && inode->i_links_count) {
1756                                 if (fix_problem(ctx, PR_1_ROOT_DTIME, &pctx)) {
1757                                         inode->i_dtime = 0;
1758                                         e2fsck_write_inode(ctx, ino, inode,
1759                                                            "pass1");
1760                                         failed_csum = 0;
1761                                 }
1762                         }
1763                 } else if (ino == EXT2_JOURNAL_INO) {
1764                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1765                         if (fs->super->s_journal_inum == EXT2_JOURNAL_INO) {
1766                                 if (!LINUX_S_ISREG(inode->i_mode) &&
1767                                     fix_problem(ctx, PR_1_JOURNAL_BAD_MODE,
1768                                                 &pctx)) {
1769                                         inode->i_mode = LINUX_S_IFREG;
1770                                         e2fsck_write_inode(ctx, ino, inode,
1771                                                            "pass1");
1772                                         failed_csum = 0;
1773                                 }
1774                                 check_blocks(ctx, &pctx, block_buf, NULL);
1775                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1776                                 continue;
1777                         }
1778                         if ((inode->i_links_count ||
1779                              inode->i_blocks || inode->i_block[0]) &&
1780                             fix_problem(ctx, PR_1_JOURNAL_INODE_NOT_CLEAR,
1781                                         &pctx)) {
1782                                 memset(inode, 0, inode_size);
1783                                 ext2fs_icount_store(ctx->inode_link_info,
1784                                                     ino, 0);
1785                                 e2fsck_write_inode_full(ctx, ino, inode,
1786                                                         inode_size, "pass1");
1787                                 failed_csum = 0;
1788                         }
1789                 } else if (quota_inum_is_reserved(fs, ino)) {
1790                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1791                         if (ext2fs_has_feature_quota(fs->super) &&
1792                             quota_inum_is_super(fs->super, ino)) {
1793                                 if (!LINUX_S_ISREG(inode->i_mode) &&
1794                                     fix_problem(ctx, PR_1_QUOTA_BAD_MODE,
1795                                                         &pctx)) {
1796                                         inode->i_mode = LINUX_S_IFREG;
1797                                         e2fsck_write_inode(ctx, ino, inode,
1798                                                         "pass1");
1799                                         failed_csum = 0;
1800                                 }
1801                                 check_blocks(ctx, &pctx, block_buf, NULL);
1802                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1803                                 continue;
1804                         }
1805                         if ((inode->i_links_count ||
1806                              inode->i_blocks || inode->i_block[0]) &&
1807                             fix_problem(ctx, PR_1_QUOTA_INODE_NOT_CLEAR,
1808                                         &pctx)) {
1809                                 memset(inode, 0, inode_size);
1810                                 ext2fs_icount_store(ctx->inode_link_info,
1811                                                     ino, 0);
1812                                 e2fsck_write_inode_full(ctx, ino, inode,
1813                                                         inode_size, "pass1");
1814                                 failed_csum = 0;
1815                         }
1816                 } else if (ino < EXT2_FIRST_INODE(fs->super)) {
1817                         problem_t problem = 0;
1818
1819                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1820                         if (ino == EXT2_BOOT_LOADER_INO) {
1821                                 if (LINUX_S_ISDIR(inode->i_mode))
1822                                         problem = PR_1_RESERVED_BAD_MODE;
1823                         } else if (ino == EXT2_RESIZE_INO) {
1824                                 if (inode->i_mode &&
1825                                     !LINUX_S_ISREG(inode->i_mode))
1826                                         problem = PR_1_RESERVED_BAD_MODE;
1827                         } else {
1828                                 if (inode->i_mode != 0)
1829                                         problem = PR_1_RESERVED_BAD_MODE;
1830                         }
1831                         if (problem) {
1832                                 if (fix_problem(ctx, problem, &pctx)) {
1833                                         inode->i_mode = 0;
1834                                         e2fsck_write_inode(ctx, ino, inode,
1835                                                            "pass1");
1836                                         failed_csum = 0;
1837                                 }
1838                         }
1839                         check_blocks(ctx, &pctx, block_buf, NULL);
1840                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1841                         continue;
1842                 }
1843
1844                 if (!inode->i_links_count) {
1845                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1846                         continue;
1847                 }
1848                 /*
1849                  * n.b.  0.3c ext2fs code didn't clear i_links_count for
1850                  * deleted files.  Oops.
1851                  *
1852                  * Since all new ext2 implementations get this right,
1853                  * we now assume that the case of non-zero
1854                  * i_links_count and non-zero dtime means that we
1855                  * should keep the file, not delete it.
1856                  *
1857                  */
1858                 if (inode->i_dtime) {
1859                         if (fix_problem(ctx, PR_1_SET_DTIME, &pctx)) {
1860                                 inode->i_dtime = 0;
1861                                 e2fsck_write_inode(ctx, ino, inode, "pass1");
1862                                 failed_csum = 0;
1863                         }
1864                 }
1865
1866                 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1867                 switch (fs->super->s_creator_os) {
1868                     case EXT2_OS_HURD:
1869                         frag = inode->osd2.hurd2.h_i_frag;
1870                         fsize = inode->osd2.hurd2.h_i_fsize;
1871                         break;
1872                     default:
1873                         frag = fsize = 0;
1874                 }
1875
1876                 if (inode->i_faddr || frag || fsize ||
1877                     (!ext2fs_has_feature_largedir(fs->super) &&
1878                     (LINUX_S_ISDIR(inode->i_mode) && inode->i_size_high)))
1879                         mark_inode_bad(ctx, ino);
1880                 if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
1881                     !ext2fs_has_feature_64bit(fs->super) &&
1882                     inode->osd2.linux2.l_i_file_acl_high != 0)
1883                         mark_inode_bad(ctx, ino);
1884                 if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
1885                     !ext2fs_has_feature_huge_file(fs->super) &&
1886                     (inode->osd2.linux2.l_i_blocks_hi != 0))
1887                         mark_inode_bad(ctx, ino);
1888                 if (inode->i_flags & EXT2_IMAGIC_FL) {
1889                         if (imagic_fs) {
1890                                 if (!ctx->inode_imagic_map)
1891                                         alloc_imagic_map(ctx);
1892                                 ext2fs_mark_inode_bitmap2(ctx->inode_imagic_map,
1893                                                          ino);
1894                         } else {
1895                                 if (fix_problem(ctx, PR_1_SET_IMAGIC, &pctx)) {
1896                                         inode->i_flags &= ~EXT2_IMAGIC_FL;
1897                                         e2fsck_write_inode(ctx, ino,
1898                                                            inode, "pass1");
1899                                         failed_csum = 0;
1900                                 }
1901                         }
1902                 }
1903
1904                 check_inode_extra_space(ctx, &pctx, &ea_ibody_quota);
1905                 check_is_really_dir(ctx, &pctx, block_buf);
1906
1907                 /*
1908                  * ext2fs_inode_has_valid_blocks2 does not actually look
1909                  * at i_block[] values, so not endian-sensitive here.
1910                  */
1911                 if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL) &&
1912                     LINUX_S_ISLNK(inode->i_mode) &&
1913                     !ext2fs_inode_has_valid_blocks2(fs, inode) &&
1914                     fix_problem(ctx, PR_1_FAST_SYMLINK_EXTENT_FL, &pctx)) {
1915                         inode->i_flags &= ~EXT4_EXTENTS_FL;
1916                         e2fsck_write_inode(ctx, ino, inode, "pass1");
1917                         failed_csum = 0;
1918                 }
1919
1920                 if ((inode->i_flags & EXT4_ENCRYPT_FL) &&
1921                     add_encrypted_file(ctx, &pctx) < 0)
1922                         goto clear_inode;
1923
1924                 if (casefold_fs && inode->i_flags & EXT4_CASEFOLD_FL)
1925                         ext2fs_mark_inode_bitmap2(ctx->inode_casefold_map, ino);
1926
1927                 if (LINUX_S_ISDIR(inode->i_mode)) {
1928                         ext2fs_mark_inode_bitmap2(ctx->inode_dir_map, ino);
1929                         e2fsck_add_dir_info(ctx, ino, 0);
1930                         ctx->fs_directory_count++;
1931                         if (inode->i_flags & EXT4_CASEFOLD_FL)
1932                                 add_casefolded_dir(ctx, ino);
1933                 } else if (LINUX_S_ISREG (inode->i_mode)) {
1934                         ext2fs_mark_inode_bitmap2(ctx->inode_reg_map, ino);
1935                         ctx->fs_regular_count++;
1936                 } else if (LINUX_S_ISCHR (inode->i_mode) &&
1937                            e2fsck_pass1_check_device_inode(fs, inode)) {
1938                         check_extents_inlinedata(ctx, &pctx);
1939                         check_immutable(ctx, &pctx);
1940                         check_size(ctx, &pctx);
1941                         ctx->fs_chardev_count++;
1942                 } else if (LINUX_S_ISBLK (inode->i_mode) &&
1943                            e2fsck_pass1_check_device_inode(fs, inode)) {
1944                         check_extents_inlinedata(ctx, &pctx);
1945                         check_immutable(ctx, &pctx);
1946                         check_size(ctx, &pctx);
1947                         ctx->fs_blockdev_count++;
1948                 } else if (LINUX_S_ISLNK (inode->i_mode) &&
1949                            e2fsck_pass1_check_symlink(fs, ino, inode,
1950                                                       block_buf)) {
1951                         check_immutable(ctx, &pctx);
1952                         ctx->fs_symlinks_count++;
1953                         if (inode->i_flags & EXT4_INLINE_DATA_FL) {
1954                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1955                                 continue;
1956                         } else if (ext2fs_is_fast_symlink(inode)) {
1957                                 ctx->fs_fast_symlinks_count++;
1958                                 check_blocks(ctx, &pctx, block_buf,
1959                                              &ea_ibody_quota);
1960                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1961                                 continue;
1962                         }
1963                 }
1964                 else if (LINUX_S_ISFIFO (inode->i_mode) &&
1965                          e2fsck_pass1_check_device_inode(fs, inode)) {
1966                         check_extents_inlinedata(ctx, &pctx);
1967                         check_immutable(ctx, &pctx);
1968                         check_size(ctx, &pctx);
1969                         ctx->fs_fifo_count++;
1970                 } else if ((LINUX_S_ISSOCK (inode->i_mode)) &&
1971                            e2fsck_pass1_check_device_inode(fs, inode)) {
1972                         check_extents_inlinedata(ctx, &pctx);
1973                         check_immutable(ctx, &pctx);
1974                         check_size(ctx, &pctx);
1975                         ctx->fs_sockets_count++;
1976                 } else
1977                         mark_inode_bad(ctx, ino);
1978                 if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
1979                     !(inode->i_flags & EXT4_INLINE_DATA_FL)) {
1980                         if (inode->i_block[EXT2_IND_BLOCK])
1981                                 ctx->fs_ind_count++;
1982                         if (inode->i_block[EXT2_DIND_BLOCK])
1983                                 ctx->fs_dind_count++;
1984                         if (inode->i_block[EXT2_TIND_BLOCK])
1985                                 ctx->fs_tind_count++;
1986                 }
1987                 if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
1988                     !(inode->i_flags & EXT4_INLINE_DATA_FL) &&
1989                     (inode->i_block[EXT2_IND_BLOCK] ||
1990                      inode->i_block[EXT2_DIND_BLOCK] ||
1991                      inode->i_block[EXT2_TIND_BLOCK] ||
1992                      ext2fs_file_acl_block(fs, inode))) {
1993                         struct process_inode_block *itp;
1994
1995                         itp = &inodes_to_process[process_inode_count];
1996                         itp->ino = ino;
1997                         itp->ea_ibody_quota = ea_ibody_quota;
1998                         if (inode_size < sizeof(struct ext2_inode_large))
1999                                 memcpy(&itp->inode, inode, inode_size);
2000                         else
2001                                 memcpy(&itp->inode, inode, sizeof(itp->inode));
2002                         process_inode_count++;
2003                 } else
2004                         check_blocks(ctx, &pctx, block_buf, &ea_ibody_quota);
2005
2006                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2007
2008                 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
2009                         goto endit;
2010
2011                 if (process_inode_count >= ctx->process_inode_size) {
2012                         process_inodes(ctx, block_buf, inodes_to_process,
2013                                        &process_inode_count);
2014
2015                         if (e2fsck_should_abort(ctx))
2016                                 goto endit;
2017                 }
2018         }
2019         process_inodes(ctx, block_buf, inodes_to_process,
2020                        &process_inode_count);
2021         ext2fs_close_inode_scan(scan);
2022         scan = NULL;
2023
2024         reserve_block_for_root_repair(ctx);
2025         reserve_block_for_lnf_repair(ctx);
2026
2027         /*
2028          * If any extended attribute blocks' reference counts need to
2029          * be adjusted, either up (ctx->refcount_extra), or down
2030          * (ctx->refcount), then fix them.
2031          */
2032         if (ctx->refcount) {
2033                 adjust_extattr_refcount(ctx, ctx->refcount, block_buf, -1);
2034                 ea_refcount_free(ctx->refcount);
2035                 ctx->refcount = 0;
2036         }
2037         if (ctx->refcount_extra) {
2038                 adjust_extattr_refcount(ctx, ctx->refcount_extra,
2039                                         block_buf, +1);
2040                 ea_refcount_free(ctx->refcount_extra);
2041                 ctx->refcount_extra = 0;
2042         }
2043
2044         if (ctx->ea_block_quota_blocks) {
2045                 ea_refcount_free(ctx->ea_block_quota_blocks);
2046                 ctx->ea_block_quota_blocks = 0;
2047         }
2048
2049         if (ctx->ea_block_quota_inodes) {
2050                 ea_refcount_free(ctx->ea_block_quota_inodes);
2051                 ctx->ea_block_quota_inodes = 0;
2052         }
2053
2054         if (ctx->invalid_bitmaps)
2055                 handle_fs_bad_blocks(ctx);
2056
2057         /* We don't need the block_ea_map any more */
2058         if (ctx->block_ea_map) {
2059                 ext2fs_free_block_bitmap(ctx->block_ea_map);
2060                 ctx->block_ea_map = 0;
2061         }
2062
2063         /* We don't need the encryption policy => ID map any more */
2064         destroy_encryption_policy_map(ctx);
2065
2066         if (ctx->flags & E2F_FLAG_RESIZE_INODE) {
2067                 clear_problem_context(&pctx);
2068                 pctx.errcode = ext2fs_create_resize_inode(fs);
2069                 if (pctx.errcode) {
2070                         if (!fix_problem(ctx, PR_1_RESIZE_INODE_CREATE,
2071                                          &pctx)) {
2072                                 ctx->flags |= E2F_FLAG_ABORT;
2073                                 goto endit;
2074                         }
2075                         pctx.errcode = 0;
2076                 }
2077                 if (!pctx.errcode) {
2078                         e2fsck_read_inode(ctx, EXT2_RESIZE_INO, inode,
2079                                           "recreate inode");
2080                         inode->i_mtime = ctx->now;
2081                         e2fsck_write_inode(ctx, EXT2_RESIZE_INO, inode,
2082                                            "recreate inode");
2083                 }
2084                 ctx->flags &= ~E2F_FLAG_RESIZE_INODE;
2085         }
2086
2087         if (ctx->flags & E2F_FLAG_RESTART) {
2088                 /*
2089                  * Only the master copy of the superblock and block
2090                  * group descriptors are going to be written during a
2091                  * restart, so set the superblock to be used to be the
2092                  * master superblock.
2093                  */
2094                 ctx->use_superblock = 0;
2095                 goto endit;
2096         }
2097
2098         if (ctx->large_dirs && !ext2fs_has_feature_largedir(ctx->fs->super)) {
2099                 ext2_filsys fs = ctx->fs;
2100
2101                 if (fix_problem(ctx, PR_2_FEATURE_LARGE_DIRS, &pctx)) {
2102                         ext2fs_set_feature_largedir(fs->super);
2103                         fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
2104                         ext2fs_mark_super_dirty(fs);
2105                 }
2106                 if (fs->super->s_rev_level == EXT2_GOOD_OLD_REV &&
2107                     fix_problem(ctx, PR_1_FS_REV_LEVEL, &pctx)) {
2108                         ext2fs_update_dynamic_rev(fs);
2109                         ext2fs_mark_super_dirty(fs);
2110                 }
2111         }
2112
2113         if (ctx->block_dup_map) {
2114                 if (ctx->options & E2F_OPT_PREEN) {
2115                         clear_problem_context(&pctx);
2116                         fix_problem(ctx, PR_1_DUP_BLOCKS_PREENSTOP, &pctx);
2117                 }
2118                 e2fsck_pass1_dupblocks(ctx, block_buf);
2119         }
2120         ctx->flags |= E2F_FLAG_ALLOC_OK;
2121 endit:
2122         e2fsck_use_inode_shortcuts(ctx, 0);
2123         ext2fs_free_mem(&inodes_to_process);
2124         inodes_to_process = 0;
2125
2126         if (scan)
2127                 ext2fs_close_inode_scan(scan);
2128         if (block_buf)
2129                 ext2fs_free_mem(&block_buf);
2130         if (inode)
2131                 ext2fs_free_mem(&inode);
2132
2133         /*
2134          * The l+f inode may have been cleared, so zap it now and
2135          * later passes will recalculate it if necessary
2136          */
2137         ctx->lost_and_found = 0;
2138
2139         if ((ctx->flags & E2F_FLAG_SIGNAL_MASK) == 0)
2140                 print_resource_track(ctx, _("Pass 1"), &rtrack, ctx->fs->io);
2141         else
2142                 ctx->invalid_bitmaps++;
2143 }
2144
2145 static void init_ext2_max_sizes()
2146 {
2147         int     i;
2148         __u64   max_sizes;
2149
2150         /*
2151          * Init ext2_max_sizes which will be immutable and shared between
2152          * threads
2153          */
2154 #define EXT2_BPP(bits) (1ULL << ((bits) - 2))
2155
2156         for (i = EXT2_MIN_BLOCK_LOG_SIZE; i <= EXT2_MAX_BLOCK_LOG_SIZE; i++) {
2157                 max_sizes = EXT2_NDIR_BLOCKS + EXT2_BPP(i);
2158                 max_sizes = max_sizes + EXT2_BPP(i) * EXT2_BPP(i);
2159                 max_sizes = max_sizes + EXT2_BPP(i) * EXT2_BPP(i) * EXT2_BPP(i);
2160                 max_sizes = (max_sizes * (1UL << i));
2161                 ext2_max_sizes[i - EXT2_MIN_BLOCK_LOG_SIZE] = max_sizes;
2162         }
2163 #undef EXT2_BPP
2164 }
2165
2166 #ifdef HAVE_PTHREAD
2167 static errcode_t e2fsck_pass1_copy_bitmap(ext2_filsys fs, ext2fs_generic_bitmap *src,
2168                                           ext2fs_generic_bitmap *dest)
2169 {
2170         errcode_t ret;
2171
2172         ret = ext2fs_copy_bitmap(*src, dest);
2173         if (ret)
2174                 return ret;
2175
2176         (*dest)->fs = fs;
2177
2178         return 0;
2179 }
2180
2181 static void e2fsck_pass1_free_bitmap(ext2fs_generic_bitmap *bitmap)
2182 {
2183         if (*bitmap) {
2184                 ext2fs_free_generic_bmap(*bitmap);
2185                 *bitmap = NULL;
2186         }
2187
2188 }
2189
2190 static errcode_t e2fsck_pass1_merge_bitmap(ext2_filsys fs, ext2fs_generic_bitmap *src,
2191                                           ext2fs_generic_bitmap *dest)
2192 {
2193         errcode_t ret = 0;
2194
2195         if (*src) {
2196                 if (*dest == NULL) {
2197                         *dest = *src;
2198                         *src = NULL;
2199                 } else {
2200                         ret = ext2fs_merge_bitmap(*src, *dest, NULL, NULL);
2201                         if (ret)
2202                                 return ret;
2203                 }
2204                 (*dest)->fs = fs;
2205         }
2206
2207         return 0;
2208 }
2209
2210 static errcode_t e2fsck_pass1_copy_fs(ext2_filsys dest, e2fsck_t src_context,
2211                                       ext2_filsys src)
2212 {
2213         errcode_t       retval;
2214
2215         memcpy(dest, src, sizeof(struct struct_ext2_filsys));
2216         dest->inode_map = NULL;
2217         dest->block_map = NULL;
2218         if (dest->dblist)
2219                 dest->dblist->fs = dest;
2220         if (src->block_map) {
2221                 retval = e2fsck_pass1_copy_bitmap(dest, &src->block_map,
2222                                                   &dest->block_map);
2223                 if (retval)
2224                         return retval;
2225         }
2226         if (src->inode_map) {
2227                 retval = e2fsck_pass1_copy_bitmap(dest, &src->inode_map,
2228                                                   &dest->inode_map);
2229                 if (retval)
2230                         return retval;
2231         }
2232
2233         if (src->badblocks) {
2234                 retval = ext2fs_badblocks_copy(src->badblocks, &dest->badblocks);
2235                 if (retval)
2236                         return retval;
2237         }
2238
2239         /* disable it for now */
2240         src_context->openfs_flags &= ~EXT2_FLAG_EXCLUSIVE;
2241         retval = ext2fs_open_channel(dest, src_context->io_options,
2242                                      src_context->io_manager,
2243                                      src_context->openfs_flags,
2244                                      src->io->block_size);
2245         if (retval)
2246                 return retval;
2247
2248         /* Block size might not be default */
2249         io_channel_set_blksize(dest->io, src->io->block_size);
2250         ehandler_init(dest->io);
2251
2252         assert(dest->io->magic == src->io->magic);
2253         assert(dest->io->manager == src->io->manager);
2254         assert(strcmp(dest->io->name, src->io->name) == 0);
2255         assert(dest->io->block_size == src->io->block_size);
2256         assert(dest->io->read_error == src->io->read_error);
2257         assert(dest->io->write_error == src->io->write_error);
2258         assert(dest->io->refcount == src->io->refcount);
2259         assert(dest->io->flags == src->io->flags);
2260         assert(dest->io->app_data == dest);
2261         assert(src->io->app_data == src);
2262         assert(dest->io->align == src->io->align);
2263
2264         /* The data should be written to disk immediately */
2265         dest->io->flags |= CHANNEL_FLAGS_WRITETHROUGH;
2266         /* icache will be rebuilt if needed, so do not copy from @src */
2267         src->icache = NULL;
2268         return 0;
2269 }
2270
2271 static int e2fsck_pass1_merge_fs(ext2_filsys dest, ext2_filsys src)
2272 {
2273         struct ext2_inode_cache *icache = dest->icache;
2274         errcode_t retval = 0;
2275         io_channel dest_io;
2276         io_channel dest_image_io;
2277         ext2fs_inode_bitmap inode_map;
2278         ext2fs_block_bitmap block_map;
2279
2280         dest_io = dest->io;
2281         dest_image_io = dest->image_io;
2282         inode_map = dest->inode_map;
2283         block_map = dest->block_map;
2284
2285         memcpy(dest, src, sizeof(struct struct_ext2_filsys));
2286         dest->io = dest_io;
2287         dest->image_io = dest_image_io;
2288         dest->icache = icache;
2289         dest->inode_map = inode_map;
2290         dest->block_map = block_map;
2291         if (dest->dblist)
2292                 dest->dblist->fs = dest;
2293
2294         if (src->icache) {
2295                 ext2fs_free_inode_cache(src->icache);
2296                 src->icache = NULL;
2297         }
2298
2299         retval = e2fsck_pass1_merge_bitmap(dest, &src->inode_map,
2300                                            &dest->inode_map);
2301         if (retval)
2302                 goto out;
2303
2304         retval = e2fsck_pass1_merge_bitmap(dest, &src->block_map,
2305                                           &dest->block_map);
2306         if (retval)
2307                 goto out;
2308
2309         if (src->badblocks) {
2310                 retval = ext2fs_badblocks_copy(src->badblocks, &dest->badblocks);
2311
2312                 ext2fs_badblocks_list_free(src->badblocks);
2313                 src->badblocks = NULL;
2314         }
2315 out:
2316         io_channel_close(src->io);
2317         if (src->inode_map)
2318                 ext2fs_free_generic_bmap(src->inode_map);
2319         if (src->block_map)
2320                 ext2fs_free_generic_bmap(src->block_map);
2321         return retval;
2322 }
2323
2324 static errcode_t e2fsck_pass1_thread_prepare(e2fsck_t global_ctx, e2fsck_t *thread_ctx,
2325                                              int thread_index, int num_threads)
2326 {
2327         errcode_t               retval;
2328         e2fsck_t                thread_context;
2329         ext2_filsys             thread_fs;
2330         ext2_filsys             global_fs = global_ctx->fs;
2331         struct e2fsck_thread    *tinfo;
2332         dgrp_t                  average_group;
2333
2334         assert(global_ctx->inode_used_map == NULL);
2335         assert(global_ctx->inode_dir_map == NULL);
2336         assert(global_ctx->inode_bb_map == NULL);
2337         assert(global_ctx->inode_imagic_map == NULL);
2338         assert(global_ctx->inode_reg_map == NULL);
2339         assert(global_ctx->inodes_to_rebuild == NULL);
2340
2341         assert(global_ctx->block_found_map == NULL);
2342         assert(global_ctx->block_dup_map == NULL);
2343         assert(global_ctx->block_ea_map == NULL);
2344         assert(global_ctx->block_metadata_map == NULL);
2345         assert(global_ctx->fs->dblist == NULL);
2346
2347         retval = ext2fs_get_mem(sizeof(struct e2fsck_struct), &thread_context);
2348         if (retval) {
2349                 com_err(global_ctx->program_name, retval, "while allocating memory");
2350                 return retval;
2351         }
2352         memcpy(thread_context, global_ctx, sizeof(struct e2fsck_struct));
2353         thread_context->global_ctx = global_ctx;
2354
2355         retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &thread_fs);
2356         if (retval) {
2357                 com_err(global_ctx->program_name, retval, "while allocating memory");
2358                 goto out_context;
2359         }
2360
2361         io_channel_flush_cleanup(global_fs->io);
2362         retval = e2fsck_pass1_copy_fs(thread_fs, global_ctx, global_fs);
2363         if (retval) {
2364                 com_err(global_ctx->program_name, retval, "while copying fs");
2365                 goto out_fs;
2366         }
2367         thread_fs->priv_data = thread_context;
2368
2369         thread_context->thread_info.et_thread_index = thread_index;
2370         set_up_logging(thread_context);
2371
2372         /*
2373          * Distribute work to multiple threads:
2374          * Each thread work on fs->group_desc_count / nthread groups.
2375          */
2376         tinfo = &thread_context->thread_info;
2377         average_group = thread_fs->group_desc_count / num_threads;
2378         if (average_group == 0)
2379                 average_group = 1;
2380         tinfo->et_group_start = average_group * thread_index;
2381         if (thread_index == num_threads - 1)
2382                 tinfo->et_group_end = thread_fs->group_desc_count;
2383         else
2384                 tinfo->et_group_end = average_group * (thread_index + 1);
2385         tinfo->et_group_next = tinfo->et_group_start;
2386         tinfo->et_inode_number = 0;
2387         tinfo->et_log_buf[0] = '\0';
2388         tinfo->et_log_length = 0;
2389         if (thread_context->options & E2F_OPT_MULTITHREAD)
2390                 log_out(thread_context, _("Scan group range [%d, %d)\n"),
2391                         tinfo->et_group_start, tinfo->et_group_end);
2392         thread_context->fs = thread_fs;
2393         *thread_ctx = thread_context;
2394         return 0;
2395 out_fs:
2396         ext2fs_free_mem(&thread_fs);
2397 out_context:
2398         ext2fs_free_mem(&thread_context);
2399         return retval;
2400 }
2401
2402 static int e2fsck_pass1_thread_join_one(e2fsck_t global_ctx, e2fsck_t thread_ctx)
2403 {
2404         errcode_t        retval;
2405         int              flags = global_ctx->flags;
2406         ext2_filsys      thread_fs = thread_ctx->fs;
2407         ext2_filsys      global_fs = global_ctx->fs;
2408         FILE            *global_logf = global_ctx->logf;
2409         FILE            *global_problem_logf = global_ctx->problem_logf;
2410         ext2fs_inode_bitmap inode_bad_map = global_ctx->inode_bad_map;
2411         ext2fs_inode_bitmap inode_used_map = global_ctx->inode_used_map;
2412         ext2fs_inode_bitmap inode_dir_map = global_ctx->inode_dir_map;
2413         ext2fs_inode_bitmap inode_bb_map = global_ctx->inode_bb_map;
2414         ext2fs_inode_bitmap inode_imagic_map = global_ctx->inode_imagic_map;
2415         ext2fs_inode_bitmap inode_reg_map = global_ctx->inode_reg_map;
2416         ext2fs_block_bitmap block_found_map = global_ctx->block_found_map;
2417         ext2fs_block_bitmap block_dup_map = global_ctx->block_dup_map;
2418         ext2fs_block_bitmap block_ea_map = global_ctx->block_ea_map;
2419         ext2fs_block_bitmap block_metadata_map = global_ctx->block_metadata_map;
2420         ext2fs_block_bitmap inodes_to_rebuild = global_ctx->inodes_to_rebuild;
2421
2422 #ifdef HAVE_SETJMP_H
2423         jmp_buf          old_jmp;
2424
2425         memcpy(old_jmp, global_ctx->abort_loc, sizeof(jmp_buf));
2426 #endif
2427         memcpy(global_ctx, thread_ctx, sizeof(struct e2fsck_struct));
2428 #ifdef HAVE_SETJMP_H
2429         memcpy(global_ctx->abort_loc, old_jmp, sizeof(jmp_buf));
2430 #endif
2431
2432         global_ctx->inode_used_map = inode_used_map;
2433         global_ctx->inode_bad_map = inode_bad_map;
2434         global_ctx->inode_dir_map = inode_dir_map;
2435         global_ctx->inode_bb_map = inode_bb_map;
2436         global_ctx->inode_imagic_map = inode_imagic_map;
2437         global_ctx->inodes_to_rebuild = inodes_to_rebuild;
2438         global_ctx->inode_reg_map = inode_reg_map;
2439         global_ctx->block_found_map = block_found_map;
2440         global_ctx->block_dup_map = block_dup_map;
2441         global_ctx->block_ea_map = block_ea_map;
2442         global_ctx->block_metadata_map = block_metadata_map;
2443
2444         /* Keep the global singal flags*/
2445         global_ctx->flags |= (flags & E2F_FLAG_SIGNAL_MASK) |
2446                              (global_ctx->flags & E2F_FLAG_SIGNAL_MASK);
2447
2448         retval = e2fsck_pass1_merge_fs(global_fs, thread_fs);
2449         if (retval) {
2450                 com_err(global_ctx->program_name, 0, _("while merging fs\n"));
2451                 return retval;
2452         }
2453         global_fs->priv_data = global_ctx;
2454         global_ctx->fs = global_fs;
2455         global_ctx->logf = global_logf;
2456         global_ctx->problem_logf = global_problem_logf;
2457         global_ctx->global_ctx = NULL;
2458
2459         retval = e2fsck_pass1_merge_bitmap(global_fs,
2460                                 &thread_ctx->inode_used_map,
2461                                 &global_ctx->inode_used_map);
2462         if (retval)
2463                 return retval;
2464
2465         retval = e2fsck_pass1_merge_bitmap(global_fs,
2466                                 &thread_ctx->inode_bad_map,
2467                                 &global_ctx->inode_bad_map);
2468         if (retval)
2469                 return retval;
2470         retval = e2fsck_pass1_merge_bitmap(global_fs,
2471                                         &thread_ctx->inode_dir_map,
2472                                         &global_ctx->inode_dir_map);
2473         if (retval)
2474                 return retval;
2475         retval = e2fsck_pass1_merge_bitmap(global_fs,
2476                                 &thread_ctx->inode_bb_map,
2477                                 &global_ctx->inode_bb_map);
2478         if (retval)
2479                 return retval;
2480         retval = e2fsck_pass1_merge_bitmap(global_fs,
2481                                 &thread_ctx->inode_imagic_map,
2482                                 &global_ctx->inode_imagic_map);
2483         if (retval)
2484                 return retval;
2485         retval = e2fsck_pass1_merge_bitmap(global_fs,
2486                                 &thread_ctx->inode_reg_map,
2487                                 &global_ctx->inode_reg_map);
2488         if (retval)
2489                 return retval;
2490         retval = e2fsck_pass1_merge_bitmap(global_fs,
2491                                 &thread_ctx->inodes_to_rebuild,
2492                                 &global_ctx->inodes_to_rebuild);
2493         if (retval)
2494                 return retval;
2495         retval = e2fsck_pass1_merge_bitmap(global_fs,
2496                                 &thread_ctx->block_found_map,
2497                                 &global_ctx->block_found_map);
2498         if (retval)
2499                 return retval;
2500         retval = e2fsck_pass1_merge_bitmap(global_fs,
2501                                 &thread_ctx->block_dup_map,
2502                                 &global_ctx->block_dup_map);
2503         if (retval)
2504                 return retval;
2505         retval = e2fsck_pass1_merge_bitmap(global_fs,
2506                                 &thread_ctx->block_ea_map,
2507                                 &global_ctx->block_ea_map);
2508         if (retval)
2509                 return retval;
2510         retval = e2fsck_pass1_merge_bitmap(global_fs,
2511                                 &thread_ctx->block_metadata_map,
2512                                 &global_ctx->block_metadata_map);
2513         if (retval)
2514                 return retval;
2515
2516         return 0;
2517 }
2518
2519 static int e2fsck_pass1_thread_join(e2fsck_t global_ctx, e2fsck_t thread_ctx)
2520 {
2521         errcode_t       retval;
2522
2523         retval = e2fsck_pass1_thread_join_one(global_ctx, thread_ctx);
2524         ext2fs_free_mem(&thread_ctx->fs);
2525         if (thread_ctx->logf)
2526                 fclose(thread_ctx->logf);
2527         if (thread_ctx->problem_logf) {
2528                 fputs("</problem_log>\n", thread_ctx->problem_logf);
2529                 fclose(thread_ctx->problem_logf);
2530         }
2531         e2fsck_pass1_free_bitmap(&thread_ctx->inode_used_map);
2532         e2fsck_pass1_free_bitmap(&thread_ctx->inode_bad_map);
2533         e2fsck_pass1_free_bitmap(&thread_ctx->inode_dir_map);
2534         e2fsck_pass1_free_bitmap(&thread_ctx->inode_bb_map);
2535         e2fsck_pass1_free_bitmap(&thread_ctx->inode_imagic_map);
2536         e2fsck_pass1_free_bitmap(&thread_ctx->inode_reg_map);
2537         e2fsck_pass1_free_bitmap(&thread_ctx->inodes_to_rebuild);
2538         e2fsck_pass1_free_bitmap(&thread_ctx->block_found_map);
2539         e2fsck_pass1_free_bitmap(&thread_ctx->block_dup_map);
2540         e2fsck_pass1_free_bitmap(&thread_ctx->block_ea_map);
2541         e2fsck_pass1_free_bitmap(&thread_ctx->block_metadata_map);
2542         ext2fs_free_mem(&thread_ctx);
2543
2544         return retval;
2545 }
2546
2547 static int e2fsck_pass1_threads_join(struct e2fsck_thread_info *infos,
2548                                       int num_threads, e2fsck_t global_ctx)
2549 {
2550         errcode_t                        rc;
2551         errcode_t                        ret = 0;
2552         int                              i;
2553         struct e2fsck_thread_info       *pinfo;
2554
2555         for (i = 0; i < num_threads; i++) {
2556                 pinfo = &infos[i];
2557
2558                 if (!pinfo->eti_started)
2559                         continue;
2560
2561                 rc = pthread_join(pinfo->eti_thread_id, NULL);
2562                 if (rc) {
2563                         com_err(global_ctx->program_name, rc,
2564                                 _("while joining thread\n"));
2565                         if (ret == 0)
2566                                 ret = rc;
2567                 }
2568                 rc = e2fsck_pass1_thread_join(global_ctx, infos[i].eti_thread_ctx);
2569                 if (rc) {
2570                         com_err(global_ctx->program_name, rc,
2571                                 _("while joining pass1 thread\n"));
2572                         if (ret == 0)
2573                                 ret = rc;
2574                 }
2575         }
2576         free(infos);
2577
2578         return ret;
2579 }
2580
2581 static void *e2fsck_pass1_thread(void *arg)
2582 {
2583         struct e2fsck_thread_info       *info = arg;
2584         e2fsck_t                         thread_ctx = info->eti_thread_ctx;
2585
2586 #ifdef HAVE_SETJMP_H
2587         /*
2588          * When fatal_error() happens, jump to here. The thread
2589          * context's flags will be saved, but its abort_loc will
2590          * be overwritten by original jump buffer for the later
2591          * tests.
2592          */
2593         if (setjmp(thread_ctx->abort_loc)) {
2594                 thread_ctx->flags &= ~E2F_FLAG_SETJMP_OK;
2595                 goto out;
2596         }
2597         thread_ctx->flags |= E2F_FLAG_SETJMP_OK;
2598 #endif
2599
2600         e2fsck_pass1_run(thread_ctx);
2601
2602 out:
2603         if (thread_ctx->options & E2F_OPT_MULTITHREAD)
2604                 log_out(thread_ctx,
2605                         _("Scanned group range [%lu, %lu), inodes %lu\n"),
2606                         thread_ctx->thread_info.et_group_start,
2607                         thread_ctx->thread_info.et_group_end,
2608                         thread_ctx->thread_info.et_inode_number);
2609         return NULL;
2610 }
2611
2612 static int e2fsck_pass1_threads_start(struct e2fsck_thread_info **pinfo,
2613                                       int num_threads, e2fsck_t global_ctx)
2614 {
2615         struct e2fsck_thread_info       *infos;
2616         pthread_attr_t                   attr;
2617         errcode_t                        retval;
2618         errcode_t                        ret;
2619         struct e2fsck_thread_info       *tmp_pinfo;
2620         int                              i;
2621         e2fsck_t                         thread_ctx;
2622
2623         retval = pthread_attr_init(&attr);
2624         if (retval) {
2625                 com_err(global_ctx->program_name, retval,
2626                         _("while setting pthread attribute\n"));
2627                 return retval;
2628         }
2629
2630         infos = calloc(num_threads, sizeof(struct e2fsck_thread_info));
2631         if (infos == NULL) {
2632                 retval = -ENOMEM;
2633                 com_err(global_ctx->program_name, retval,
2634                         _("while allocating memory for threads\n"));
2635                 pthread_attr_destroy(&attr);
2636                 return retval;
2637         }
2638
2639         for (i = 0; i < num_threads; i++) {
2640                 tmp_pinfo = &infos[i];
2641                 tmp_pinfo->eti_thread_index = i;
2642                 retval = e2fsck_pass1_thread_prepare(global_ctx, &thread_ctx,
2643                                                      i, num_threads);
2644                 if (retval) {
2645                         com_err(global_ctx->program_name, retval,
2646                                 _("while preparing pass1 thread\n"));
2647                         break;
2648                 }
2649                 tmp_pinfo->eti_thread_ctx = thread_ctx;
2650
2651                 retval = pthread_create(&tmp_pinfo->eti_thread_id, &attr,
2652                                         &e2fsck_pass1_thread, tmp_pinfo);
2653                 if (retval) {
2654                         com_err(global_ctx->program_name, retval,
2655                                 _("while creating thread\n"));
2656                         e2fsck_pass1_thread_join(global_ctx, thread_ctx);
2657                         break;
2658                 }
2659
2660                 tmp_pinfo->eti_started = 1;
2661         }
2662
2663         /* destroy the thread attribute object, since it is no longer needed */
2664         ret = pthread_attr_destroy(&attr);
2665         if (ret) {
2666                 com_err(global_ctx->program_name, ret,
2667                         _("while destroying thread attribute\n"));
2668                 if (retval == 0)
2669                         retval = ret;
2670         }
2671
2672         if (retval) {
2673                 e2fsck_pass1_threads_join(infos, num_threads, global_ctx);
2674                 return retval;
2675         }
2676         *pinfo = infos;
2677         return 0;
2678 }
2679
2680 static void e2fsck_pass1_multithread(e2fsck_t global_ctx)
2681 {
2682         struct e2fsck_thread_info       *infos = NULL;
2683         int                              num_threads = 1;
2684         errcode_t                        retval;
2685
2686         retval = e2fsck_pass1_threads_start(&infos, num_threads, global_ctx);
2687         if (retval) {
2688                 com_err(global_ctx->program_name, retval,
2689                         _("while starting pass1 threads\n"));
2690                 goto out_abort;
2691         }
2692
2693         retval = e2fsck_pass1_threads_join(infos, num_threads, global_ctx);
2694         if (retval) {
2695                 com_err(global_ctx->program_name, retval,
2696                         _("while joining pass1 threads\n"));
2697                 goto out_abort;
2698         }
2699         return;
2700 out_abort:
2701         global_ctx->flags |= E2F_FLAG_ABORT;
2702         return;
2703 }
2704 #endif
2705
2706 void e2fsck_pass1(e2fsck_t ctx)
2707 {
2708
2709         init_ext2_max_sizes();
2710 #ifdef HAVE_PTHREAD
2711         e2fsck_pass1_multithread(ctx);
2712 #else
2713         e2fsck_pass1_run(ctx);
2714 #endif
2715 }
2716
2717 #undef FINISH_INODE_LOOP
2718
2719 /*
2720  * When the inode_scan routines call this callback at the end of the
2721  * glock group, call process_inodes.
2722  */
2723 static errcode_t scan_callback(ext2_filsys fs,
2724                                ext2_inode_scan scan EXT2FS_ATTR((unused)),
2725                                dgrp_t group, void * priv_data)
2726 {
2727         struct scan_callback_struct *scan_struct;
2728         e2fsck_t ctx;
2729         struct e2fsck_thread *tinfo;
2730
2731         scan_struct = (struct scan_callback_struct *) priv_data;
2732         ctx = scan_struct->ctx;
2733
2734         process_inodes((e2fsck_t) fs->priv_data, scan_struct->block_buf,
2735                        scan_struct->inodes_to_process,
2736                        scan_struct->process_inode_count);
2737
2738         if (ctx->progress)
2739                 if ((ctx->progress)(ctx, 1, group+1,
2740                                     ctx->fs->group_desc_count))
2741                         return EXT2_ET_CANCEL_REQUESTED;
2742
2743 #ifdef HAVE_PTHREAD
2744         if (ctx->global_ctx) {
2745                 tinfo = &ctx->thread_info;
2746                 tinfo->et_group_next++;
2747                 if (ctx->options & E2F_OPT_DEBUG &&
2748                     ctx->options & E2F_OPT_MULTITHREAD)
2749                         log_out(ctx, _("group %d finished\n"),
2750                                 tinfo->et_group_next);
2751                 if (tinfo->et_group_next >= tinfo->et_group_end)
2752                         return EXT2_ET_SCAN_FINISHED;
2753         }
2754 #endif
2755
2756         return 0;
2757 }
2758
2759 /*
2760  * Process the inodes in the "inodes to process" list.
2761  */
2762 static void process_inodes(e2fsck_t ctx, char *block_buf,
2763                            struct process_inode_block *inodes_to_process,
2764                            int *process_inode_count)
2765 {
2766         int                     i;
2767         struct ext2_inode       *old_stashed_inode;
2768         ext2_ino_t              old_stashed_ino;
2769         const char              *old_operation;
2770         char                    buf[80];
2771         struct problem_context  pctx;
2772
2773 #if 0
2774         printf("begin process_inodes: ");
2775 #endif
2776         if (*process_inode_count == 0)
2777                 return;
2778         old_operation = ehandler_operation(0);
2779         old_stashed_inode = ctx->stashed_inode;
2780         old_stashed_ino = ctx->stashed_ino;
2781         qsort(inodes_to_process, *process_inode_count,
2782                       sizeof(struct process_inode_block), process_inode_cmp);
2783         clear_problem_context(&pctx);
2784         for (i=0; i < *process_inode_count; i++) {
2785                 pctx.inode = ctx->stashed_inode =
2786                         (struct ext2_inode *) &inodes_to_process[i].inode;
2787                 pctx.ino = ctx->stashed_ino = inodes_to_process[i].ino;
2788
2789 #if 0
2790                 printf("%u ", pctx.ino);
2791 #endif
2792                 sprintf(buf, _("reading indirect blocks of inode %u"),
2793                         pctx.ino);
2794                 ehandler_operation(buf);
2795                 check_blocks(ctx, &pctx, block_buf,
2796                              &inodes_to_process[i].ea_ibody_quota);
2797                 if (e2fsck_should_abort(ctx))
2798                         break;
2799         }
2800         ctx->stashed_inode = old_stashed_inode;
2801         ctx->stashed_ino = old_stashed_ino;
2802         *process_inode_count = 0;
2803 #if 0
2804         printf("end process inodes\n");
2805 #endif
2806         ehandler_operation(old_operation);
2807 }
2808
2809 static EXT2_QSORT_TYPE process_inode_cmp(const void *a, const void *b)
2810 {
2811         const struct process_inode_block *ib_a =
2812                 (const struct process_inode_block *) a;
2813         const struct process_inode_block *ib_b =
2814                 (const struct process_inode_block *) b;
2815         int     ret;
2816
2817         ret = (ib_a->inode.i_block[EXT2_IND_BLOCK] -
2818                ib_b->inode.i_block[EXT2_IND_BLOCK]);
2819         if (ret == 0)
2820                 /*
2821                  * We only call process_inodes() for non-extent
2822                  * inodes, so it's OK to pass NULL to
2823                  * ext2fs_file_acl_block() here.
2824                  */
2825                 ret = ext2fs_file_acl_block(0, ext2fs_const_inode(&ib_a->inode)) -
2826                         ext2fs_file_acl_block(0, ext2fs_const_inode(&ib_b->inode));
2827         if (ret == 0)
2828                 ret = ib_a->ino - ib_b->ino;
2829         return ret;
2830 }
2831
2832 /*
2833  * Mark an inode as being bad in some what
2834  */
2835 static void mark_inode_bad(e2fsck_t ctx, ino_t ino)
2836 {
2837         struct          problem_context pctx;
2838
2839         if (!ctx->inode_bad_map) {
2840                 clear_problem_context(&pctx);
2841
2842                 pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
2843                                 _("bad inode map"), EXT2FS_BMAP64_RBTREE,
2844                                 "inode_bad_map", &ctx->inode_bad_map);
2845                 if (pctx.errcode) {
2846                         pctx.num = 3;
2847                         fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
2848                         /* Should never get here */
2849                         ctx->flags |= E2F_FLAG_ABORT;
2850                         return;
2851                 }
2852         }
2853         ext2fs_mark_inode_bitmap2(ctx->inode_bad_map, ino);
2854 }
2855
2856 static void add_casefolded_dir(e2fsck_t ctx, ino_t ino)
2857 {
2858         struct          problem_context pctx;
2859
2860         if (!ctx->casefolded_dirs) {
2861                 pctx.errcode = ext2fs_u32_list_create(&ctx->casefolded_dirs, 0);
2862                 if (pctx.errcode)
2863                         goto error;
2864         }
2865         pctx.errcode = ext2fs_u32_list_add(ctx->casefolded_dirs, ino);
2866         if (pctx.errcode == 0)
2867                 return;
2868 error:
2869         fix_problem(ctx, PR_1_ALLOCATE_CASEFOLDED_DIRLIST, &pctx);
2870         /* Should never get here */
2871         ctx->flags |= E2F_FLAG_ABORT;
2872 }
2873
2874 /*
2875  * This procedure will allocate the inode "bb" (badblock) map table
2876  */
2877 static void alloc_bb_map(e2fsck_t ctx)
2878 {
2879         struct          problem_context pctx;
2880
2881         clear_problem_context(&pctx);
2882         pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
2883                         _("inode in bad block map"), EXT2FS_BMAP64_RBTREE,
2884                         "inode_bb_map", &ctx->inode_bb_map);
2885         if (pctx.errcode) {
2886                 pctx.num = 4;
2887                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
2888                 /* Should never get here */
2889                 ctx->flags |= E2F_FLAG_ABORT;
2890                 return;
2891         }
2892 }
2893
2894 /*
2895  * This procedure will allocate the inode imagic table
2896  */
2897 static void alloc_imagic_map(e2fsck_t ctx)
2898 {
2899         struct          problem_context pctx;
2900
2901         clear_problem_context(&pctx);
2902         pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
2903                         _("imagic inode map"), EXT2FS_BMAP64_RBTREE,
2904                         "inode_imagic_map", &ctx->inode_imagic_map);
2905         if (pctx.errcode) {
2906                 pctx.num = 5;
2907                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
2908                 /* Should never get here */
2909                 ctx->flags |= E2F_FLAG_ABORT;
2910                 return;
2911         }
2912 }
2913
2914 /*
2915  * Marks a block as in use, setting the dup_map if it's been set
2916  * already.  Called by process_block and process_bad_block.
2917  *
2918  * WARNING: Assumes checks have already been done to make sure block
2919  * is valid.  This is true in both process_block and process_bad_block.
2920  */
2921 static _INLINE_ void mark_block_used(e2fsck_t ctx, blk64_t block)
2922 {
2923         struct          problem_context pctx;
2924
2925         clear_problem_context(&pctx);
2926
2927         if (ext2fs_fast_test_block_bitmap2(ctx->block_found_map, block)) {
2928                 if (ext2fs_has_feature_shared_blocks(ctx->fs->super) &&
2929                     !(ctx->options & E2F_OPT_UNSHARE_BLOCKS)) {
2930                         return;
2931                 }
2932                 if (!ctx->block_dup_map) {
2933                         pctx.errcode = e2fsck_allocate_block_bitmap(ctx->fs,
2934                                         _("multiply claimed block map"),
2935                                         EXT2FS_BMAP64_RBTREE, "block_dup_map",
2936                                         &ctx->block_dup_map);
2937                         if (pctx.errcode) {
2938                                 pctx.num = 3;
2939                                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR,
2940                                             &pctx);
2941                                 /* Should never get here */
2942                                 ctx->flags |= E2F_FLAG_ABORT;
2943                                 return;
2944                         }
2945                 }
2946                 ext2fs_fast_mark_block_bitmap2(ctx->block_dup_map, block);
2947         } else {
2948                 ext2fs_fast_mark_block_bitmap2(ctx->block_found_map, block);
2949         }
2950 }
2951
2952 /*
2953  * When cluster size is greater than one block, it is caller's responsibility
2954  * to make sure block parameter starts at a cluster boundary.
2955  */
2956 static _INLINE_ void mark_blocks_used(e2fsck_t ctx, blk64_t block,
2957                                       unsigned int num)
2958 {
2959         if (ext2fs_test_block_bitmap_range2(ctx->block_found_map, block, num))
2960                 ext2fs_mark_block_bitmap_range2(ctx->block_found_map, block, num);
2961         else {
2962                 unsigned int i;
2963
2964                 for (i = 0; i < num; i += EXT2FS_CLUSTER_RATIO(ctx->fs))
2965                         mark_block_used(ctx, block + i);
2966         }
2967 }
2968
2969 /*
2970  * Adjust the extended attribute block's reference counts at the end
2971  * of pass 1, either by subtracting out references for EA blocks that
2972  * are still referenced in ctx->refcount, or by adding references for
2973  * EA blocks that had extra references as accounted for in
2974  * ctx->refcount_extra.
2975  */
2976 static void adjust_extattr_refcount(e2fsck_t ctx, ext2_refcount_t refcount,
2977                                     char *block_buf, int adjust_sign)
2978 {
2979         struct ext2_ext_attr_header     *header;
2980         struct problem_context          pctx;
2981         ext2_filsys                     fs = ctx->fs;
2982         blk64_t                         blk;
2983         __u32                           should_be;
2984         ea_value_t                      count;
2985
2986         clear_problem_context(&pctx);
2987
2988         ea_refcount_intr_begin(refcount);
2989         while (1) {
2990                 if ((blk = ea_refcount_intr_next(refcount, &count)) == 0)
2991                         break;
2992                 pctx.blk = blk;
2993                 pctx.errcode = ext2fs_read_ext_attr3(fs, blk, block_buf,
2994                                                      pctx.ino);
2995                 if (pctx.errcode) {
2996                         fix_problem(ctx, PR_1_EXTATTR_READ_ABORT, &pctx);
2997                         return;
2998                 }
2999                 header = (struct ext2_ext_attr_header *) block_buf;
3000                 pctx.blkcount = header->h_refcount;
3001                 should_be = header->h_refcount + adjust_sign * (int)count;
3002                 pctx.num = should_be;
3003                 if (fix_problem(ctx, PR_1_EXTATTR_REFCOUNT, &pctx)) {
3004                         header->h_refcount = should_be;
3005                         pctx.errcode = ext2fs_write_ext_attr3(fs, blk,
3006                                                              block_buf,
3007                                                              pctx.ino);
3008                         if (pctx.errcode) {
3009                                 fix_problem(ctx, PR_1_EXTATTR_WRITE_ABORT,
3010                                             &pctx);
3011                                 continue;
3012                         }
3013                 }
3014         }
3015 }
3016
3017 /*
3018  * Handle processing the extended attribute blocks
3019  */
3020 static int check_ext_attr(e2fsck_t ctx, struct problem_context *pctx,
3021                            char *block_buf, struct ea_quota *ea_block_quota)
3022 {
3023         ext2_filsys fs = ctx->fs;
3024         ext2_ino_t      ino = pctx->ino;
3025         struct ext2_inode *inode = pctx->inode;
3026         blk64_t         blk;
3027         char *          end;
3028         struct ext2_ext_attr_header *header;
3029         struct ext2_ext_attr_entry *first, *entry;
3030         blk64_t         quota_blocks = EXT2FS_C2B(fs, 1);
3031         __u64           quota_inodes = 0;
3032         region_t        region = 0;
3033         int             failed_csum = 0;
3034
3035         ea_block_quota->blocks = 0;
3036         ea_block_quota->inodes = 0;
3037
3038         blk = ext2fs_file_acl_block(fs, inode);
3039         if (blk == 0)
3040                 return 0;
3041
3042         /*
3043          * If the Extended attribute flag isn't set, then a non-zero
3044          * file acl means that the inode is corrupted.
3045          *
3046          * Or if the extended attribute block is an invalid block,
3047          * then the inode is also corrupted.
3048          */
3049         if (!ext2fs_has_feature_xattr(fs->super) ||
3050             (blk < fs->super->s_first_data_block) ||
3051             (blk >= ext2fs_blocks_count(fs->super))) {
3052                 mark_inode_bad(ctx, ino);
3053                 return 0;
3054         }
3055
3056         /* If ea bitmap hasn't been allocated, create it */
3057         if (!ctx->block_ea_map) {
3058                 pctx->errcode = e2fsck_allocate_block_bitmap(fs,
3059                                         _("ext attr block map"),
3060                                         EXT2FS_BMAP64_RBTREE, "block_ea_map",
3061                                         &ctx->block_ea_map);
3062                 if (pctx->errcode) {
3063                         pctx->num = 2;
3064                         fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, pctx);
3065                         ctx->flags |= E2F_FLAG_ABORT;
3066                         return 0;
3067                 }
3068         }
3069
3070         /* Create the EA refcount structure if necessary */
3071         if (!ctx->refcount) {
3072                 pctx->errcode = ea_refcount_create(0, &ctx->refcount);
3073                 if (pctx->errcode) {
3074                         pctx->num = 1;
3075                         fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
3076                         ctx->flags |= E2F_FLAG_ABORT;
3077                         return 0;
3078                 }
3079         }
3080
3081 #if 0
3082         /* Debugging text */
3083         printf("Inode %u has EA block %u\n", ino, blk);
3084 #endif
3085
3086         /* Have we seen this EA block before? */
3087         if (ext2fs_fast_test_block_bitmap2(ctx->block_ea_map, blk)) {
3088                 ea_block_quota->blocks = EXT2FS_C2B(fs, 1);
3089                 ea_block_quota->inodes = 0;
3090
3091                 if (ctx->ea_block_quota_blocks) {
3092                         ea_refcount_fetch(ctx->ea_block_quota_blocks, blk,
3093                                           &quota_blocks);
3094                         if (quota_blocks)
3095                                 ea_block_quota->blocks = quota_blocks;
3096                 }
3097
3098                 if (ctx->ea_block_quota_inodes)
3099                         ea_refcount_fetch(ctx->ea_block_quota_inodes, blk,
3100                                           &ea_block_quota->inodes);
3101
3102                 if (ea_refcount_decrement(ctx->refcount, blk, 0) == 0)
3103                         return 1;
3104                 /* Ooops, this EA was referenced more than it stated */
3105                 if (!ctx->refcount_extra) {
3106                         pctx->errcode = ea_refcount_create(0,
3107                                            &ctx->refcount_extra);
3108                         if (pctx->errcode) {
3109                                 pctx->num = 2;
3110                                 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
3111                                 ctx->flags |= E2F_FLAG_ABORT;
3112                                 return 0;
3113                         }
3114                 }
3115                 ea_refcount_increment(ctx->refcount_extra, blk, 0);
3116                 return 1;
3117         }
3118
3119         /*
3120          * OK, we haven't seen this EA block yet.  So we need to
3121          * validate it
3122          */
3123         pctx->blk = blk;
3124         pctx->errcode = ext2fs_read_ext_attr3(fs, blk, block_buf, pctx->ino);
3125         if (pctx->errcode == EXT2_ET_EXT_ATTR_CSUM_INVALID) {
3126                 pctx->errcode = 0;
3127                 failed_csum = 1;
3128         } else if (pctx->errcode == EXT2_ET_BAD_EA_HEADER)
3129                 pctx->errcode = 0;
3130
3131         if (pctx->errcode &&
3132             fix_problem(ctx, PR_1_READ_EA_BLOCK, pctx)) {
3133                 pctx->errcode = 0;
3134                 goto clear_extattr;
3135         }
3136         header = (struct ext2_ext_attr_header *) block_buf;
3137         pctx->blk = ext2fs_file_acl_block(fs, inode);
3138         if (((ctx->ext_attr_ver == 1) &&
3139              (header->h_magic != EXT2_EXT_ATTR_MAGIC_v1)) ||
3140             ((ctx->ext_attr_ver == 2) &&
3141              (header->h_magic != EXT2_EXT_ATTR_MAGIC))) {
3142                 if (fix_problem(ctx, PR_1_BAD_EA_BLOCK, pctx))
3143                         goto clear_extattr;
3144         }
3145
3146         if (header->h_blocks != 1) {
3147                 if (fix_problem(ctx, PR_1_EA_MULTI_BLOCK, pctx))
3148                         goto clear_extattr;
3149         }
3150
3151         if (pctx->errcode && fix_problem(ctx, PR_1_READ_EA_BLOCK, pctx))
3152                 goto clear_extattr;
3153
3154         region = region_create(0, fs->blocksize);
3155         if (!region) {
3156                 fix_problem(ctx, PR_1_EA_ALLOC_REGION_ABORT, pctx);
3157                 ctx->flags |= E2F_FLAG_ABORT;
3158                 return 0;
3159         }
3160         if (region_allocate(region, 0, sizeof(struct ext2_ext_attr_header))) {
3161                 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
3162                         goto clear_extattr;
3163         }
3164
3165         first = (struct ext2_ext_attr_entry *)(header+1);
3166         end = block_buf + fs->blocksize;
3167         entry = first;
3168         while ((char *)entry < end && *(__u32 *)entry) {
3169                 __u32 hash;
3170
3171                 if (region_allocate(region, (char *)entry - (char *)header,
3172                                    EXT2_EXT_ATTR_LEN(entry->e_name_len))) {
3173                         if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
3174                                 goto clear_extattr;
3175                         break;
3176                 }
3177                 if ((ctx->ext_attr_ver == 1 &&
3178                      (entry->e_name_len == 0 || entry->e_name_index != 0)) ||
3179                     (ctx->ext_attr_ver == 2 &&
3180                      entry->e_name_index == 0)) {
3181                         if (fix_problem(ctx, PR_1_EA_BAD_NAME, pctx))
3182                                 goto clear_extattr;
3183                         break;
3184                 }
3185                 if (entry->e_value_inum == 0) {
3186                         if (entry->e_value_offs + entry->e_value_size >
3187                             fs->blocksize) {
3188                                 if (fix_problem(ctx, PR_1_EA_BAD_VALUE, pctx))
3189                                         goto clear_extattr;
3190                                 break;
3191                         }
3192                         if (entry->e_value_size &&
3193                             region_allocate(region, entry->e_value_offs,
3194                                             EXT2_EXT_ATTR_SIZE(entry->e_value_size))) {
3195                                 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION,
3196                                                 pctx))
3197                                         goto clear_extattr;
3198                         }
3199
3200                         hash = ext2fs_ext_attr_hash_entry(entry, block_buf +
3201                                                           entry->e_value_offs);
3202
3203                         if (entry->e_hash != hash) {
3204                                 pctx->num = entry->e_hash;
3205                                 if (fix_problem(ctx, PR_1_ATTR_HASH, pctx))
3206                                         goto clear_extattr;
3207                                 entry->e_hash = hash;
3208                         }
3209                 } else {
3210                         problem_t problem;
3211                         blk64_t entry_quota_blocks;
3212
3213                         problem = check_large_ea_inode(ctx, entry, pctx,
3214                                                        &entry_quota_blocks);
3215                         if (problem && fix_problem(ctx, problem, pctx))
3216                                 goto clear_extattr;
3217
3218                         quota_blocks += entry_quota_blocks;
3219                         quota_inodes++;
3220                 }
3221
3222                 entry = EXT2_EXT_ATTR_NEXT(entry);
3223         }
3224         if (region_allocate(region, (char *)entry - (char *)header, 4)) {
3225                 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
3226                         goto clear_extattr;
3227         }
3228         region_free(region);
3229
3230         /*
3231          * We only get here if there was no other errors that were fixed.
3232          * If there was a checksum fail, ask to correct it.
3233          */
3234         if (failed_csum &&
3235             fix_problem(ctx, PR_1_EA_BLOCK_ONLY_CSUM_INVALID, pctx)) {
3236                 pctx->errcode = ext2fs_write_ext_attr3(fs, blk, block_buf,
3237                                                        pctx->ino);
3238                 if (pctx->errcode)
3239                         return 0;
3240         }
3241
3242         if (quota_blocks != EXT2FS_C2B(fs, 1U)) {
3243                 if (!ctx->ea_block_quota_blocks) {
3244                         pctx->errcode = ea_refcount_create(0,
3245                                                 &ctx->ea_block_quota_blocks);
3246                         if (pctx->errcode) {
3247                                 pctx->num = 3;
3248                                 goto refcount_fail;
3249                         }
3250                 }
3251                 ea_refcount_store(ctx->ea_block_quota_blocks, blk,
3252                                   quota_blocks);
3253         }
3254
3255         if (quota_inodes) {
3256                 if (!ctx->ea_block_quota_inodes) {
3257                         pctx->errcode = ea_refcount_create(0,
3258                                                 &ctx->ea_block_quota_inodes);
3259                         if (pctx->errcode) {
3260                                 pctx->num = 4;
3261 refcount_fail:
3262                                 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
3263                                 ctx->flags |= E2F_FLAG_ABORT;
3264                                 return 0;
3265                         }
3266                 }
3267
3268                 ea_refcount_store(ctx->ea_block_quota_inodes, blk,
3269                                   quota_inodes);
3270         }
3271         ea_block_quota->blocks = quota_blocks;
3272         ea_block_quota->inodes = quota_inodes;
3273
3274         inc_ea_inode_refs(ctx, pctx, first, end);
3275         ea_refcount_store(ctx->refcount, blk, header->h_refcount - 1);
3276         mark_block_used(ctx, blk);
3277         ext2fs_fast_mark_block_bitmap2(ctx->block_ea_map, blk);
3278         return 1;
3279
3280 clear_extattr:
3281         if (region)
3282                 region_free(region);
3283         ext2fs_file_acl_block_set(fs, inode, 0);
3284         e2fsck_write_inode(ctx, ino, inode, "check_ext_attr");
3285         return 0;
3286 }
3287
3288 /* Returns 1 if bad htree, 0 if OK */
3289 static int handle_htree(e2fsck_t ctx, struct problem_context *pctx,
3290                         ext2_ino_t ino, struct ext2_inode *inode,
3291                         char *block_buf)
3292 {
3293         struct ext2_dx_root_info        *root;
3294         ext2_filsys                     fs = ctx->fs;
3295         errcode_t                       retval;
3296         blk64_t                         blk;
3297
3298         if ((!LINUX_S_ISDIR(inode->i_mode) &&
3299              fix_problem(ctx, PR_1_HTREE_NODIR, pctx)) ||
3300             (!ext2fs_has_feature_dir_index(fs->super) &&
3301              fix_problem(ctx, PR_1_HTREE_SET, pctx)))
3302                 return 1;
3303
3304         pctx->errcode = ext2fs_bmap2(fs, ino, inode, 0, 0, 0, 0, &blk);
3305
3306         if ((pctx->errcode) ||
3307             (blk == 0) ||
3308             (blk < fs->super->s_first_data_block) ||
3309             (blk >= ext2fs_blocks_count(fs->super))) {
3310                 if (fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
3311                         return 1;
3312                 else
3313                         return 0;
3314         }
3315
3316         retval = io_channel_read_blk64(fs->io, blk, 1, block_buf);
3317         if (retval && fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
3318                 return 1;
3319
3320         /* XXX should check that beginning matches a directory */
3321         root = (struct ext2_dx_root_info *) (block_buf + 24);
3322
3323         if ((root->reserved_zero || root->info_length < 8) &&
3324             fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
3325                 return 1;
3326
3327         pctx->num = root->hash_version;
3328         if ((root->hash_version != EXT2_HASH_LEGACY) &&
3329             (root->hash_version != EXT2_HASH_HALF_MD4) &&
3330             (root->hash_version != EXT2_HASH_TEA) &&
3331             (root->hash_version != EXT2_HASH_SIPHASH) &&
3332             fix_problem(ctx, PR_1_HTREE_HASHV, pctx))
3333                 return 1;
3334
3335         if (ext4_hash_in_dirent(inode)) {
3336                 if (root->hash_version != EXT2_HASH_SIPHASH &&
3337                     fix_problem(ctx, PR_1_HTREE_NEEDS_SIPHASH, pctx))
3338                         return 1;
3339         } else {
3340                 if (root->hash_version == EXT2_HASH_SIPHASH &&
3341                    fix_problem(ctx, PR_1_HTREE_CANNOT_SIPHASH, pctx))
3342                         return 1;
3343         }
3344
3345         if ((root->unused_flags & EXT2_HASH_FLAG_INCOMPAT) &&
3346             fix_problem(ctx, PR_1_HTREE_INCOMPAT, pctx))
3347                 return 1;
3348
3349         pctx->num = root->indirect_levels;
3350         /* if htree level is clearly too high, consider it to be broken */
3351         if (root->indirect_levels > EXT4_HTREE_LEVEL &&
3352             fix_problem(ctx, PR_1_HTREE_DEPTH, pctx))
3353                 return 1;
3354
3355         /* if level is only maybe too high, LARGE_DIR feature could be unset */
3356         if (root->indirect_levels > ext2_dir_htree_level(fs) &&
3357             !ext2fs_has_feature_largedir(fs->super)) {
3358                 int blockbits = EXT2_BLOCK_SIZE_BITS(fs->super) + 10;
3359                 int idx_pb = 1 << (blockbits - 3);
3360
3361                 /* compare inode size/blocks vs. max-sized 2-level htree */
3362                 if (EXT2_I_SIZE(pctx->inode) <
3363                     (idx_pb - 1) * (idx_pb - 2) << blockbits &&
3364                     pctx->inode->i_blocks <
3365                     (idx_pb - 1) * (idx_pb - 2) << (blockbits - 9) &&
3366                     fix_problem(ctx, PR_1_HTREE_DEPTH, pctx))
3367                         return 1;
3368         }
3369
3370         if (root->indirect_levels > EXT4_HTREE_LEVEL_COMPAT ||
3371             ext2fs_needs_large_file_feature(EXT2_I_SIZE(inode)))
3372                 ctx->large_dirs++;
3373
3374         return 0;
3375 }
3376
3377 void e2fsck_clear_inode(e2fsck_t ctx, ext2_ino_t ino,
3378                         struct ext2_inode *inode, int restart_flag,
3379                         const char *source)
3380 {
3381         inode->i_flags = 0;
3382         inode->i_links_count = 0;
3383         ext2fs_icount_store(ctx->inode_link_info, ino, 0);
3384         inode->i_dtime = ctx->now;
3385
3386         /*
3387          * If a special inode has such rotten block mappings that we
3388          * want to clear the whole inode, be sure to actually zap
3389          * the block maps because i_links_count isn't checked for
3390          * special inodes, and we'll end up right back here the next
3391          * time we run fsck.
3392          */
3393         if (ino < EXT2_FIRST_INODE(ctx->fs->super))
3394                 memset(inode->i_block, 0, sizeof(inode->i_block));
3395
3396         ext2fs_unmark_inode_bitmap2(ctx->inode_dir_map, ino);
3397         ext2fs_unmark_inode_bitmap2(ctx->inode_used_map, ino);
3398         if (ctx->inode_reg_map)
3399                 ext2fs_unmark_inode_bitmap2(ctx->inode_reg_map, ino);
3400         if (ctx->inode_bad_map)
3401                 ext2fs_unmark_inode_bitmap2(ctx->inode_bad_map, ino);
3402
3403         /*
3404          * If the inode was partially accounted for before processing
3405          * was aborted, we need to restart the pass 1 scan.
3406          */
3407         ctx->flags |= restart_flag;
3408
3409         if (ino == EXT2_BAD_INO)
3410                 memset(inode, 0, sizeof(struct ext2_inode));
3411
3412         e2fsck_write_inode(ctx, ino, inode, source);
3413 }
3414
3415 /*
3416  * Use the multiple-blocks reclamation code to fix alignment problems in
3417  * a bigalloc filesystem.  We want a logical cluster to map to *only* one
3418  * physical cluster, and we want the block offsets within that cluster to
3419  * line up.
3420  */
3421 static int has_unaligned_cluster_map(e2fsck_t ctx,
3422                                      blk64_t last_pblk, blk64_t last_lblk,
3423                                      blk64_t pblk, blk64_t lblk)
3424 {
3425         blk64_t cluster_mask;
3426
3427         if (!ctx->fs->cluster_ratio_bits)
3428                 return 0;
3429         cluster_mask = EXT2FS_CLUSTER_MASK(ctx->fs);
3430
3431         /*
3432          * If the block in the logical cluster doesn't align with the block in
3433          * the physical cluster...
3434          */
3435         if ((lblk & cluster_mask) != (pblk & cluster_mask))
3436                 return 1;
3437
3438         /*
3439          * If we cross a physical cluster boundary within a logical cluster...
3440          */
3441         if (last_pblk && (lblk & cluster_mask) != 0 &&
3442             EXT2FS_B2C(ctx->fs, lblk) == EXT2FS_B2C(ctx->fs, last_lblk) &&
3443             EXT2FS_B2C(ctx->fs, pblk) != EXT2FS_B2C(ctx->fs, last_pblk))
3444                 return 1;
3445
3446         return 0;
3447 }
3448
3449 static void scan_extent_node(e2fsck_t ctx, struct problem_context *pctx,
3450                              struct process_block_struct *pb,
3451                              blk64_t start_block, blk64_t end_block,
3452                              blk64_t eof_block,
3453                              ext2_extent_handle_t ehandle,
3454                              int try_repairs)
3455 {
3456         struct ext2fs_extent    extent;
3457         blk64_t                 blk, last_lblk;
3458         unsigned int            i, n;
3459         int                     is_dir, is_leaf;
3460         problem_t               problem;
3461         struct ext2_extent_info info;
3462         int                     failed_csum = 0;
3463
3464         if (pctx->errcode == EXT2_ET_EXTENT_CSUM_INVALID)
3465                 failed_csum = 1;
3466
3467         pctx->errcode = ext2fs_extent_get_info(ehandle, &info);
3468         if (pctx->errcode)
3469                 return;
3470         if (!(ctx->options & E2F_OPT_FIXES_ONLY) &&
3471             !pb->eti.force_rebuild) {
3472                 struct extent_tree_level *etl;
3473
3474                 etl = pb->eti.ext_info + info.curr_level;
3475                 etl->num_extents += info.num_entries;
3476                 etl->max_extents += info.max_entries;
3477                 /*
3478                  * Implementation wart: Splitting extent blocks when appending
3479                  * will leave the old block with one free entry.  Therefore
3480                  * unless the node is totally full, pretend that a non-root
3481                  * extent block can hold one fewer entry than it actually does,
3482                  * so that we don't repeatedly rebuild the extent tree.
3483                  */
3484                 if (info.curr_level && info.num_entries < info.max_entries)
3485                         etl->max_extents--;
3486         }
3487
3488         pctx->errcode = ext2fs_extent_get(ehandle, EXT2_EXTENT_FIRST_SIB,
3489                                           &extent);
3490         while ((pctx->errcode == 0 ||
3491                 pctx->errcode == EXT2_ET_EXTENT_CSUM_INVALID) &&
3492                info.num_entries-- > 0) {
3493                 is_leaf = extent.e_flags & EXT2_EXTENT_FLAGS_LEAF;
3494                 is_dir = LINUX_S_ISDIR(pctx->inode->i_mode);
3495                 last_lblk = extent.e_lblk + extent.e_len - 1;
3496
3497                 problem = 0;
3498                 pctx->blk = extent.e_pblk;
3499                 pctx->blk2 = extent.e_lblk;
3500                 pctx->num = extent.e_len;
3501                 pctx->blkcount = extent.e_lblk + extent.e_len;
3502
3503                 if (extent.e_pblk == 0 ||
3504                     extent.e_pblk < ctx->fs->super->s_first_data_block ||
3505                     extent.e_pblk >= ext2fs_blocks_count(ctx->fs->super))
3506                         problem = PR_1_EXTENT_BAD_START_BLK;
3507                 else if (extent.e_lblk < start_block)
3508                         problem = PR_1_OUT_OF_ORDER_EXTENTS;
3509                 else if ((end_block && last_lblk > end_block) &&
3510                          !(last_lblk > eof_block &&
3511                            ((extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) ||
3512                             (pctx->inode->i_flags & EXT4_VERITY_FL))))
3513                         problem = PR_1_EXTENT_END_OUT_OF_BOUNDS;
3514                 else if (is_leaf && extent.e_len == 0)
3515                         problem = PR_1_EXTENT_LENGTH_ZERO;
3516                 else if (is_leaf &&
3517                          (extent.e_pblk + extent.e_len) >
3518                          ext2fs_blocks_count(ctx->fs->super))
3519                         problem = PR_1_EXTENT_ENDS_BEYOND;
3520                 else if (is_leaf && is_dir && !pctx->inode->i_size_high &&
3521                          !ext2fs_has_feature_largedir(ctx->fs->super) &&
3522                          ((extent.e_lblk + extent.e_len) >
3523                           (1U << (21 - ctx->fs->super->s_log_block_size))))
3524                         problem = PR_1_TOOBIG_DIR;
3525
3526                 if (is_leaf && problem == 0 && extent.e_len > 0) {
3527 #if 0
3528                         printf("extent_region(ino=%u, expect=%llu, "
3529                                "lblk=%llu, len=%u)\n", pb->ino,
3530                                (unsigned long long) pb->next_lblock,
3531                                (unsigned long long) extent.e_lblk,
3532                                extent.e_len);
3533 #endif
3534                         if (extent.e_lblk < pb->next_lblock)
3535                                 problem = PR_1_EXTENT_COLLISION;
3536                         else if (extent.e_lblk + extent.e_len > pb->next_lblock)
3537                                 pb->next_lblock = extent.e_lblk + extent.e_len;
3538                 }
3539
3540                 /*
3541                  * Uninitialized blocks in a directory?  Clear the flag and
3542                  * we'll interpret the blocks later.
3543                  */
3544                 if (try_repairs && is_dir && problem == 0 &&
3545                     (extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) &&
3546                     fix_problem(ctx, PR_1_UNINIT_DBLOCK, pctx)) {
3547                         extent.e_flags &= ~EXT2_EXTENT_FLAGS_UNINIT;
3548                         pb->inode_modified = 1;
3549                         pctx->errcode = ext2fs_extent_replace(ehandle, 0,
3550                                                               &extent);
3551                         if (pctx->errcode)
3552                                 return;
3553                         failed_csum = 0;
3554                 }
3555 #ifdef CONFIG_DEVELOPER_FEATURES
3556                 if (try_repairs && !is_dir && problem == 0 &&
3557                     (ctx->options & E2F_OPT_CLEAR_UNINIT) &&
3558                     (extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) &&
3559                     fix_problem(ctx, PR_1_CLEAR_UNINIT_EXTENT, pctx)) {
3560                         extent.e_flags &= ~EXT2_EXTENT_FLAGS_UNINIT;
3561                         pb->inode_modified = 1;
3562                         pctx->errcode = ext2fs_extent_replace(ehandle, 0,
3563                                                               &extent);
3564                         if (pctx->errcode)
3565                                 return;
3566                         failed_csum = 0;
3567                 }
3568 #endif
3569                 if (try_repairs && problem) {
3570 report_problem:
3571                         if (fix_problem(ctx, problem, pctx)) {
3572                                 if (ctx->invalid_bitmaps) {
3573                                         /*
3574                                          * If fsck knows the bitmaps are bad,
3575                                          * skip to the next extent and
3576                                          * try to clear this extent again
3577                                          * after fixing the bitmaps, by
3578                                          * restarting fsck.
3579                                          */
3580                                         pctx->errcode = ext2fs_extent_get(
3581                                                           ehandle,
3582                                                           EXT2_EXTENT_NEXT_SIB,
3583                                                           &extent);
3584                                         ctx->flags |= E2F_FLAG_RESTART_LATER;
3585                                         if (pctx->errcode ==
3586                                                     EXT2_ET_NO_CURRENT_NODE) {
3587                                                 pctx->errcode = 0;
3588                                                 break;
3589                                         }
3590                                         continue;
3591                                 }
3592                                 e2fsck_read_bitmaps(ctx);
3593                                 pb->inode_modified = 1;
3594                                 pctx->errcode =
3595                                         ext2fs_extent_delete(ehandle, 0);
3596                                 if (pctx->errcode) {
3597                                         pctx->str = "ext2fs_extent_delete";
3598                                         return;
3599                                 }
3600                                 pctx->errcode = ext2fs_extent_fix_parents(ehandle);
3601                                 if (pctx->errcode &&
3602                                     pctx->errcode != EXT2_ET_NO_CURRENT_NODE) {
3603                                         pctx->str = "ext2fs_extent_fix_parents";
3604                                         return;
3605                                 }
3606                                 pctx->errcode = ext2fs_extent_get(ehandle,
3607                                                                   EXT2_EXTENT_CURRENT,
3608                                                                   &extent);
3609                                 if (pctx->errcode == EXT2_ET_NO_CURRENT_NODE) {
3610                                         pctx->errcode = 0;
3611                                         break;
3612                                 }
3613                                 failed_csum = 0;
3614                                 continue;
3615                         }
3616                         goto next;
3617                 }
3618
3619                 if (!is_leaf) {
3620                         blk64_t lblk = extent.e_lblk;
3621                         int next_try_repairs = 1;
3622
3623                         blk = extent.e_pblk;
3624
3625                         /*
3626                          * If this lower extent block collides with critical
3627                          * metadata, don't try to repair the damage.  Pass 1b
3628                          * will reallocate the block; then we can try again.
3629                          */
3630                         if (pb->ino != EXT2_RESIZE_INO &&
3631                             extent.e_pblk < ctx->fs->super->s_blocks_count &&
3632                             ext2fs_test_block_bitmap2(ctx->block_metadata_map,
3633                                                       extent.e_pblk)) {
3634                                 next_try_repairs = 0;
3635                                 pctx->blk = blk;
3636                                 fix_problem(ctx,
3637                                             PR_1_CRITICAL_METADATA_COLLISION,
3638                                             pctx);
3639                                 if ((ctx->options & E2F_OPT_NO) == 0)
3640                                         ctx->flags |= E2F_FLAG_RESTART_LATER;
3641                         }
3642                         pctx->errcode = ext2fs_extent_get(ehandle,
3643                                                   EXT2_EXTENT_DOWN, &extent);
3644                         if (pctx->errcode &&
3645                             pctx->errcode != EXT2_ET_EXTENT_CSUM_INVALID) {
3646                                 pctx->str = "EXT2_EXTENT_DOWN";
3647                                 problem = PR_1_EXTENT_HEADER_INVALID;
3648                                 if (!next_try_repairs)
3649                                         return;
3650                                 if (pctx->errcode == EXT2_ET_EXTENT_HEADER_BAD)
3651                                         goto report_problem;
3652                                 return;
3653                         }
3654                         /* The next extent should match this index's logical start */
3655                         if (extent.e_lblk != lblk) {
3656                                 struct ext2_extent_info e_info;
3657
3658                                 pctx->errcode = ext2fs_extent_get_info(ehandle,
3659                                                                        &e_info);
3660                                 if (pctx->errcode) {
3661                                         pctx->str = "ext2fs_extent_get_info";
3662                                         return;
3663                                 }
3664                                 pctx->blk = lblk;
3665                                 pctx->blk2 = extent.e_lblk;
3666                                 pctx->num = e_info.curr_level - 1;
3667                                 problem = PR_1_EXTENT_INDEX_START_INVALID;
3668                                 if (fix_problem(ctx, problem, pctx)) {
3669                                         pb->inode_modified = 1;
3670                                         pctx->errcode =
3671                                                 ext2fs_extent_fix_parents(ehandle);
3672                                         if (pctx->errcode) {
3673                                                 pctx->str = "ext2fs_extent_fix_parents";
3674                                                 return;
3675                                         }
3676                                 }
3677                         }
3678                         scan_extent_node(ctx, pctx, pb, extent.e_lblk,
3679                                          last_lblk, eof_block, ehandle,
3680                                          next_try_repairs);
3681                         if (pctx->errcode)
3682                                 return;
3683                         pctx->errcode = ext2fs_extent_get(ehandle,
3684                                                   EXT2_EXTENT_UP, &extent);
3685                         if (pctx->errcode) {
3686                                 pctx->str = "EXT2_EXTENT_UP";
3687                                 return;
3688                         }
3689                         mark_block_used(ctx, blk);
3690                         pb->num_blocks++;
3691                         goto next;
3692                 }
3693
3694                 if ((pb->previous_block != 0) &&
3695                     (pb->previous_block+1 != extent.e_pblk)) {
3696                         if (ctx->options & E2F_OPT_FRAGCHECK) {
3697                                 char type = '?';
3698
3699                                 if (pb->is_dir)
3700                                         type = 'd';
3701                                 else if (pb->is_reg)
3702                                         type = 'f';
3703
3704                                 printf(("%6lu(%c): expecting %6lu "
3705                                         "actual extent "
3706                                         "phys %6lu log %lu len %lu\n"),
3707                                        (unsigned long) pctx->ino, type,
3708                                        (unsigned long) pb->previous_block+1,
3709                                        (unsigned long) extent.e_pblk,
3710                                        (unsigned long) extent.e_lblk,
3711                                        (unsigned long) extent.e_len);
3712                         }
3713                         pb->fragmented = 1;
3714                 }
3715                 /*
3716                  * If we notice a gap in the logical block mappings of an
3717                  * extent-mapped directory, offer to close the hole by
3718                  * moving the logical block down, otherwise we'll go mad in
3719                  * pass 3 allocating empty directory blocks to fill the hole.
3720                  */
3721                 if (try_repairs && is_dir &&
3722                     pb->last_block + 1 < extent.e_lblk) {
3723                         blk64_t new_lblk;
3724
3725                         new_lblk = pb->last_block + 1;
3726                         if (EXT2FS_CLUSTER_RATIO(ctx->fs) > 1)
3727                                 new_lblk = ((new_lblk +
3728                                              EXT2FS_CLUSTER_RATIO(ctx->fs) - 1) &
3729                                             ~EXT2FS_CLUSTER_MASK(ctx->fs)) |
3730                                            (extent.e_pblk &
3731                                             EXT2FS_CLUSTER_MASK(ctx->fs));
3732                         pctx->blk = extent.e_lblk;
3733                         pctx->blk2 = new_lblk;
3734                         if (fix_problem(ctx, PR_1_COLLAPSE_DBLOCK, pctx)) {
3735                                 extent.e_lblk = new_lblk;
3736                                 pb->inode_modified = 1;
3737                                 pctx->errcode = ext2fs_extent_replace(ehandle,
3738                                                                 0, &extent);
3739                                 if (pctx->errcode) {
3740                                         pctx->errcode = 0;
3741                                         goto alloc_later;
3742                                 }
3743                                 pctx->errcode = ext2fs_extent_fix_parents(ehandle);
3744                                 if (pctx->errcode)
3745                                         goto failed_add_dir_block;
3746                                 pctx->errcode = ext2fs_extent_goto(ehandle,
3747                                                                 extent.e_lblk);
3748                                 if (pctx->errcode)
3749                                         goto failed_add_dir_block;
3750                                 last_lblk = extent.e_lblk + extent.e_len - 1;
3751                                 failed_csum = 0;
3752                         }
3753                 }
3754 alloc_later:
3755                 if (is_dir) {
3756                         while (++pb->last_db_block <
3757                                (e2_blkcnt_t) extent.e_lblk) {
3758                                 pctx->errcode = ext2fs_add_dir_block2(
3759                                                         ctx->fs->dblist,
3760                                                         pb->ino, 0,
3761                                                         pb->last_db_block);
3762                                 if (pctx->errcode) {
3763                                         pctx->blk = 0;
3764                                         pctx->num = pb->last_db_block;
3765                                         goto failed_add_dir_block;
3766                                 }
3767                         }
3768
3769                         for (i = 0; i < extent.e_len; i++) {
3770                                 pctx->errcode = ext2fs_add_dir_block2(
3771                                                         ctx->fs->dblist,
3772                                                         pctx->ino,
3773                                                         extent.e_pblk + i,
3774                                                         extent.e_lblk + i);
3775                                 if (pctx->errcode) {
3776                                         pctx->blk = extent.e_pblk + i;
3777                                         pctx->num = extent.e_lblk + i;
3778                                 failed_add_dir_block:
3779                                         fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
3780                                         /* Should never get here */
3781                                         ctx->flags |= E2F_FLAG_ABORT;
3782                                         return;
3783                                 }
3784                         }
3785                         if (extent.e_len > 0)
3786                                 pb->last_db_block = extent.e_lblk + extent.e_len - 1;
3787                 }
3788                 if (has_unaligned_cluster_map(ctx, pb->previous_block,
3789                                               pb->last_block,
3790                                               extent.e_pblk,
3791                                               extent.e_lblk)) {
3792                         for (i = 0; i < extent.e_len; i++) {
3793                                 pctx->blk = extent.e_lblk + i;
3794                                 pctx->blk2 = extent.e_pblk + i;
3795                                 fix_problem(ctx, PR_1_MISALIGNED_CLUSTER, pctx);
3796                                 mark_block_used(ctx, extent.e_pblk + i);
3797                                 mark_block_used(ctx, extent.e_pblk + i);
3798                         }
3799                 }
3800
3801                 /*
3802                  * Check whether first cluster got marked in previous iteration.
3803                  */
3804                 if (ctx->fs->cluster_ratio_bits &&
3805                     pb->previous_block &&
3806                     (EXT2FS_B2C(ctx->fs, extent.e_pblk) ==
3807                      EXT2FS_B2C(ctx->fs, pb->previous_block)))
3808                         /* Set blk to the beginning of next cluster. */
3809                         blk = EXT2FS_C2B(
3810                                 ctx->fs,
3811                                 EXT2FS_B2C(ctx->fs, extent.e_pblk) + 1);
3812                 else
3813                         /* Set blk to the beginning of current cluster. */
3814                         blk = EXT2FS_C2B(ctx->fs,
3815                                          EXT2FS_B2C(ctx->fs, extent.e_pblk));
3816
3817                 if (blk < extent.e_pblk + extent.e_len) {
3818                         mark_blocks_used(ctx, blk,
3819                                          extent.e_pblk + extent.e_len - blk);
3820                         n = DIV_ROUND_UP(extent.e_pblk + extent.e_len - blk,
3821                                          EXT2FS_CLUSTER_RATIO(ctx->fs));
3822                         pb->num_blocks += n;
3823                 }
3824                 pb->last_block = extent.e_lblk + extent.e_len - 1;
3825                 pb->previous_block = extent.e_pblk + extent.e_len - 1;
3826                 start_block = pb->last_block = last_lblk;
3827                 if (is_leaf && !is_dir &&
3828                     !(extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT))
3829                         pb->last_init_lblock = last_lblk;
3830         next:
3831                 pctx->errcode = ext2fs_extent_get(ehandle,
3832                                                   EXT2_EXTENT_NEXT_SIB,
3833                                                   &extent);
3834         }
3835
3836         /* Failed csum but passes checks?  Ask to fix checksum. */
3837         if (failed_csum &&
3838             fix_problem(ctx, PR_1_EXTENT_ONLY_CSUM_INVALID, pctx)) {
3839                 pb->inode_modified = 1;
3840                 pctx->errcode = ext2fs_extent_replace(ehandle, 0, &extent);
3841                 if (pctx->errcode)
3842                         return;
3843         }
3844
3845         if (pctx->errcode == EXT2_ET_EXTENT_NO_NEXT)
3846                 pctx->errcode = 0;
3847 }
3848
3849 static void check_blocks_extents(e2fsck_t ctx, struct problem_context *pctx,
3850                                  struct process_block_struct *pb)
3851 {
3852         struct ext2_extent_info info;
3853         struct ext2_inode       *inode = pctx->inode;
3854         ext2_extent_handle_t    ehandle;
3855         ext2_filsys             fs = ctx->fs;
3856         ext2_ino_t              ino = pctx->ino;
3857         errcode_t               retval;
3858         blk64_t                 eof_lblk;
3859         struct ext3_extent_header       *eh;
3860
3861         /* Check for a proper extent header... */
3862         eh = (struct ext3_extent_header *) &inode->i_block[0];
3863         retval = ext2fs_extent_header_verify(eh, sizeof(inode->i_block));
3864         if (retval) {
3865                 if (fix_problem(ctx, PR_1_MISSING_EXTENT_HEADER, pctx))
3866                         e2fsck_clear_inode(ctx, ino, inode, 0,
3867                                            "check_blocks_extents");
3868                 pctx->errcode = 0;
3869                 return;
3870         }
3871
3872         /* ...since this function doesn't fail if i_block is zeroed. */
3873         pctx->errcode = ext2fs_extent_open2(fs, ino, inode, &ehandle);
3874         if (pctx->errcode) {
3875                 if (fix_problem(ctx, PR_1_READ_EXTENT, pctx))
3876                         e2fsck_clear_inode(ctx, ino, inode, 0,
3877                                            "check_blocks_extents");
3878                 pctx->errcode = 0;
3879                 return;
3880         }
3881
3882         retval = ext2fs_extent_get_info(ehandle, &info);
3883         if (retval == 0) {
3884                 int max_depth = info.max_depth;
3885
3886                 if (max_depth >= MAX_EXTENT_DEPTH_COUNT)
3887                         max_depth = MAX_EXTENT_DEPTH_COUNT-1;
3888                 ctx->extent_depth_count[max_depth]++;
3889         }
3890
3891         /* Check maximum extent depth */
3892         pctx->blk = info.max_depth;
3893         pctx->blk2 = ext2fs_max_extent_depth(ehandle);
3894         if (pctx->blk2 < pctx->blk &&
3895             fix_problem(ctx, PR_1_EXTENT_BAD_MAX_DEPTH, pctx))
3896                 pb->eti.force_rebuild = 1;
3897
3898         /* Can we collect extent tree level stats? */
3899         pctx->blk = MAX_EXTENT_DEPTH_COUNT;
3900         if (pctx->blk2 > pctx->blk)
3901                 fix_problem(ctx, PR_1E_MAX_EXTENT_TREE_DEPTH, pctx);
3902         memset(pb->eti.ext_info, 0, sizeof(pb->eti.ext_info));
3903         pb->eti.ino = pb->ino;
3904
3905         pb->next_lblock = 0;
3906
3907         eof_lblk = ((EXT2_I_SIZE(inode) + fs->blocksize - 1) >>
3908                 EXT2_BLOCK_SIZE_BITS(fs->super)) - 1;
3909         scan_extent_node(ctx, pctx, pb, 0, 0, eof_lblk, ehandle, 1);
3910         if (pctx->errcode &&
3911             fix_problem(ctx, PR_1_EXTENT_ITERATE_FAILURE, pctx)) {
3912                 pb->num_blocks = 0;
3913                 inode->i_blocks = 0;
3914                 e2fsck_clear_inode(ctx, ino, inode, E2F_FLAG_RESTART,
3915                                    "check_blocks_extents");
3916                 pctx->errcode = 0;
3917         }
3918         ext2fs_extent_free(ehandle);
3919
3920         /* Rebuild unless it's a dir and we're rehashing it */
3921         if (LINUX_S_ISDIR(inode->i_mode) &&
3922             e2fsck_dir_will_be_rehashed(ctx, ino))
3923                 return;
3924
3925         if (ctx->options & E2F_OPT_CONVERT_BMAP)
3926                 e2fsck_rebuild_extents_later(ctx, ino);
3927         else
3928                 e2fsck_should_rebuild_extents(ctx, pctx, &pb->eti, &info);
3929 }
3930
3931 /*
3932  * In fact we don't need to check blocks for an inode with inline data
3933  * because this inode doesn't have any blocks.  In this function all
3934  * we need to do is add this inode into dblist when it is a directory.
3935  */
3936 static void check_blocks_inline_data(e2fsck_t ctx, struct problem_context *pctx,
3937                                      struct process_block_struct *pb)
3938 {
3939         int     flags;
3940         size_t  inline_data_size = 0;
3941
3942         if (!pb->is_dir) {
3943                 pctx->errcode = 0;
3944                 return;
3945         }
3946
3947         /* Process the dirents in i_block[] as the "first" block. */
3948         pctx->errcode = ext2fs_add_dir_block2(ctx->fs->dblist, pb->ino, 0, 0);
3949         if (pctx->errcode)
3950                 goto err;
3951
3952         /* Process the dirents in the EA as a "second" block. */
3953         flags = ctx->fs->flags;
3954         ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
3955         pctx->errcode = ext2fs_inline_data_size(ctx->fs, pb->ino,
3956                                                 &inline_data_size);
3957         ctx->fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
3958                          (ctx->fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
3959         if (pctx->errcode) {
3960                 pctx->errcode = 0;
3961                 return;
3962         }
3963
3964         if (inline_data_size <= EXT4_MIN_INLINE_DATA_SIZE)
3965                 return;
3966
3967         pctx->errcode = ext2fs_add_dir_block2(ctx->fs->dblist, pb->ino, 0, 1);
3968         if (pctx->errcode)
3969                 goto err;
3970
3971         return;
3972 err:
3973         pctx->blk = 0;
3974         pctx->num = 0;
3975         fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
3976         ctx->flags |= E2F_FLAG_ABORT;
3977 }
3978
3979 /*
3980  * This subroutine is called on each inode to account for all of the
3981  * blocks used by that inode.
3982  */
3983 static void check_blocks(e2fsck_t ctx, struct problem_context *pctx,
3984                          char *block_buf, const struct ea_quota *ea_ibody_quota)
3985 {
3986         ext2_filsys fs = ctx->fs;
3987         struct process_block_struct pb;
3988         ext2_ino_t      ino = pctx->ino;
3989         struct ext2_inode *inode = pctx->inode;
3990         unsigned        bad_size = 0;
3991         int             dirty_inode = 0;
3992         int             extent_fs;
3993         int             inlinedata_fs;
3994         __u64           size;
3995         struct ea_quota ea_block_quota;
3996
3997         pb.ino = ino;
3998         pb.num_blocks = EXT2FS_B2C(ctx->fs,
3999                                    ea_ibody_quota ? ea_ibody_quota->blocks : 0);
4000         pb.last_block = ~0;
4001         pb.last_init_lblock = -1;
4002         pb.last_db_block = -1;
4003         pb.num_illegal_blocks = 0;
4004         pb.suppress = 0; pb.clear = 0;
4005         pb.fragmented = 0;
4006         pb.compressed = 0;
4007         pb.previous_block = 0;
4008         pb.is_dir = LINUX_S_ISDIR(inode->i_mode);
4009         pb.is_reg = LINUX_S_ISREG(inode->i_mode);
4010         pb.max_blocks = 1U << (31 - fs->super->s_log_block_size);
4011         pb.inode = inode;
4012         pb.pctx = pctx;
4013         pb.ctx = ctx;
4014         pb.inode_modified = 0;
4015         pb.eti.force_rebuild = 0;
4016         pctx->ino = ino;
4017         pctx->errcode = 0;
4018
4019         extent_fs = ext2fs_has_feature_extents(ctx->fs->super);
4020         inlinedata_fs = ext2fs_has_feature_inline_data(ctx->fs->super);
4021
4022         if (check_ext_attr(ctx, pctx, block_buf, &ea_block_quota)) {
4023                 if (e2fsck_should_abort(ctx))
4024                         goto out;
4025                 pb.num_blocks += EXT2FS_B2C(ctx->fs, ea_block_quota.blocks);
4026         }
4027
4028         if (inlinedata_fs && (inode->i_flags & EXT4_INLINE_DATA_FL))
4029                 check_blocks_inline_data(ctx, pctx, &pb);
4030         else if (ext2fs_inode_has_valid_blocks2(fs, inode)) {
4031                 if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL))
4032                         check_blocks_extents(ctx, pctx, &pb);
4033                 else {
4034                         int flags;
4035                         /*
4036                          * If we've modified the inode, write it out before
4037                          * iterate() tries to use it.
4038                          */
4039                         if (dirty_inode) {
4040                                 e2fsck_write_inode(ctx, ino, inode,
4041                                                    "check_blocks");
4042                                 dirty_inode = 0;
4043                         }
4044                         flags = fs->flags;
4045                         fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
4046                         pctx->errcode = ext2fs_block_iterate3(fs, ino,
4047                                                 pb.is_dir ? BLOCK_FLAG_HOLE : 0,
4048                                                 block_buf, process_block, &pb);
4049                         /*
4050                          * We do not have uninitialized extents in non extent
4051                          * files.
4052                          */
4053                         pb.last_init_lblock = pb.last_block;
4054                         /*
4055                          * If iterate() changed a block mapping, we have to
4056                          * re-read the inode.  If we decide to clear the
4057                          * inode after clearing some stuff, we'll re-write the
4058                          * bad mappings into the inode!
4059                          */
4060                         if (pb.inode_modified)
4061                                 e2fsck_read_inode(ctx, ino, inode,
4062                                                   "check_blocks");
4063                         fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
4064                                     (fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
4065
4066                         if (ctx->options & E2F_OPT_CONVERT_BMAP) {
4067 #ifdef DEBUG
4068                                 printf("bmap rebuild ino=%d\n", ino);
4069 #endif
4070                                 if (!LINUX_S_ISDIR(inode->i_mode) ||
4071                                     !e2fsck_dir_will_be_rehashed(ctx, ino))
4072                                         e2fsck_rebuild_extents_later(ctx, ino);
4073                         }
4074                 }
4075         }
4076         end_problem_latch(ctx, PR_LATCH_BLOCK);
4077         end_problem_latch(ctx, PR_LATCH_TOOBIG);
4078         if (e2fsck_should_abort(ctx))
4079                 goto out;
4080         if (pctx->errcode)
4081                 fix_problem(ctx, PR_1_BLOCK_ITERATE, pctx);
4082
4083         if (pb.fragmented && pb.num_blocks < fs->super->s_blocks_per_group) {
4084                 if (LINUX_S_ISDIR(inode->i_mode))
4085                         ctx->fs_fragmented_dir++;
4086                 else
4087                         ctx->fs_fragmented++;
4088         }
4089
4090         if (pb.clear) {
4091                 e2fsck_clear_inode(ctx, ino, inode, E2F_FLAG_RESTART,
4092                                    "check_blocks");
4093                 return;
4094         }
4095
4096         if (inode->i_flags & EXT2_INDEX_FL) {
4097                 if (handle_htree(ctx, pctx, ino, inode, block_buf)) {
4098                         inode->i_flags &= ~EXT2_INDEX_FL;
4099                         dirty_inode++;
4100                 } else {
4101                         e2fsck_add_dx_dir(ctx, ino, inode, pb.last_block+1);
4102                 }
4103         }
4104
4105         if (!pb.num_blocks && pb.is_dir &&
4106             !(inode->i_flags & EXT4_INLINE_DATA_FL)) {
4107                 if (fix_problem(ctx, PR_1_ZERO_LENGTH_DIR, pctx)) {
4108                         e2fsck_clear_inode(ctx, ino, inode, 0, "check_blocks");
4109                         ctx->fs_directory_count--;
4110                         return;
4111                 }
4112         }
4113
4114         if (ino != quota_type2inum(PRJQUOTA, fs->super) &&
4115             (ino == EXT2_ROOT_INO || ino >= EXT2_FIRST_INODE(ctx->fs->super)) &&
4116             !(inode->i_flags & EXT4_EA_INODE_FL)) {
4117                 quota_data_add(ctx->qctx, (struct ext2_inode_large *) inode,
4118                                ino,
4119                                pb.num_blocks * EXT2_CLUSTER_SIZE(fs->super));
4120                 quota_data_inodes(ctx->qctx, (struct ext2_inode_large *) inode,
4121                                   ino, (ea_ibody_quota ?
4122                                         ea_ibody_quota->inodes : 0) +
4123                                                 ea_block_quota.inodes + 1);
4124         }
4125
4126         if (!ext2fs_has_feature_huge_file(fs->super) ||
4127             !(inode->i_flags & EXT4_HUGE_FILE_FL))
4128                 pb.num_blocks *= (fs->blocksize / 512);
4129         pb.num_blocks *= EXT2FS_CLUSTER_RATIO(fs);
4130 #if 0
4131         printf("inode %u, i_size = %u, last_block = %llu, i_blocks=%llu, num_blocks = %llu\n",
4132                ino, inode->i_size, (unsigned long long) pb.last_block,
4133                (unsigned long long) ext2fs_inode_i_blocks(fs, inode),
4134                (unsigned long long) pb.num_blocks);
4135 #endif
4136         size = EXT2_I_SIZE(inode);
4137         if (pb.is_dir) {
4138                 unsigned nblock = size >> EXT2_BLOCK_SIZE_BITS(fs->super);
4139                 if (inode->i_flags & EXT4_INLINE_DATA_FL) {
4140                         int flags;
4141                         size_t sz = 0;
4142                         errcode_t err;
4143
4144                         flags = ctx->fs->flags;
4145                         ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
4146                         err = ext2fs_inline_data_size(ctx->fs, pctx->ino,
4147                                                       &sz);
4148                         ctx->fs->flags = (flags &
4149                                           EXT2_FLAG_IGNORE_CSUM_ERRORS) |
4150                                          (ctx->fs->flags &
4151                                           ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
4152                         if (err || sz != size) {
4153                                 bad_size = 7;
4154                                 pctx->num = sz;
4155                         }
4156                 } else if (size & (fs->blocksize - 1))
4157                         bad_size = 5;
4158                 else if (nblock > (pb.last_block + 1))
4159                         bad_size = 1;
4160                 else if (nblock < (pb.last_block + 1)) {
4161                         if (((pb.last_block + 1) - nblock) >
4162                             fs->super->s_prealloc_dir_blocks)
4163                                 bad_size = 2;
4164                 }
4165         } else {
4166                 if ((pb.last_init_lblock >= 0) &&
4167                     /* Do not allow initialized allocated blocks past i_size*/
4168                     (size < (__u64)pb.last_init_lblock * fs->blocksize) &&
4169                     !(inode->i_flags & EXT4_VERITY_FL))
4170                         bad_size = 3;
4171                 else if (!(extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) &&
4172                          size > ext2_max_sizes[fs->super->s_log_block_size])
4173                         /* too big for a direct/indirect-mapped file */
4174                         bad_size = 4;
4175                 else if ((extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) &&
4176                          size >
4177                          ((1ULL << (32 + EXT2_BLOCK_SIZE_BITS(fs->super))) - 1))
4178                         /* too big for an extent-based file - 32bit ee_block */
4179                         bad_size = 6;
4180         }
4181         /* i_size for symlinks is checked elsewhere */
4182         if (bad_size && !LINUX_S_ISLNK(inode->i_mode)) {
4183                 /* Did inline_data set pctx->num earlier? */
4184                 if (bad_size != 7)
4185                         pctx->num = (pb.last_block + 1) * fs->blocksize;
4186                 pctx->group = bad_size;
4187                 if (fix_problem(ctx, PR_1_BAD_I_SIZE, pctx)) {
4188                         ext2fs_inode_size_set(fs, inode, pctx->num);
4189                         if (EXT2_I_SIZE(inode) == 0 &&
4190                             (inode->i_flags & EXT4_INLINE_DATA_FL)) {
4191                                 memset(inode->i_block, 0,
4192                                        sizeof(inode->i_block));
4193                                 inode->i_flags &= ~EXT4_INLINE_DATA_FL;
4194                         }
4195                         dirty_inode++;
4196                 }
4197                 pctx->num = 0;
4198         }
4199         if (LINUX_S_ISREG(inode->i_mode) &&
4200             ext2fs_needs_large_file_feature(EXT2_I_SIZE(inode)))
4201                 ctx->large_files++;
4202         if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
4203             ((pb.num_blocks != ext2fs_inode_i_blocks(fs, inode)) ||
4204              (ext2fs_has_feature_huge_file(fs->super) &&
4205               (inode->i_flags & EXT4_HUGE_FILE_FL) &&
4206               (inode->osd2.linux2.l_i_blocks_hi != 0)))) {
4207                 pctx->num = pb.num_blocks;
4208                 if (fix_problem(ctx, PR_1_BAD_I_BLOCKS, pctx)) {
4209                         inode->i_blocks = pb.num_blocks;
4210                         inode->osd2.linux2.l_i_blocks_hi = pb.num_blocks >> 32;
4211                         dirty_inode++;
4212                 }
4213                 pctx->num = 0;
4214         }
4215
4216         /*
4217          * The kernel gets mad if we ask it to allocate bigalloc clusters to
4218          * a block mapped file, so rebuild it as an extent file.  We can skip
4219          * symlinks because they're never rewritten.
4220          */
4221         if (ext2fs_has_feature_bigalloc(fs->super) &&
4222             (LINUX_S_ISREG(inode->i_mode) || LINUX_S_ISDIR(inode->i_mode)) &&
4223             ext2fs_inode_data_blocks2(fs, inode) > 0 &&
4224             (ino == EXT2_ROOT_INO || ino >= EXT2_FIRST_INO(fs->super)) &&
4225             !(inode->i_flags & (EXT4_EXTENTS_FL | EXT4_INLINE_DATA_FL)) &&
4226             fix_problem(ctx, PR_1_NO_BIGALLOC_BLOCKMAP_FILES, pctx)) {
4227                 pctx->errcode = e2fsck_rebuild_extents_later(ctx, ino);
4228                 if (pctx->errcode)
4229                         goto out;
4230         }
4231
4232         if (ctx->dirs_to_hash && pb.is_dir &&
4233             !(ctx->lost_and_found && ctx->lost_and_found == ino) &&
4234             !(inode->i_flags & EXT2_INDEX_FL) &&
4235             ((inode->i_size / fs->blocksize) >= 3))
4236                 e2fsck_rehash_dir_later(ctx, ino);
4237
4238 out:
4239         if (dirty_inode)
4240                 e2fsck_write_inode(ctx, ino, inode, "check_blocks");
4241 }
4242
4243 #if 0
4244 /*
4245  * Helper function called by process block when an illegal block is
4246  * found.  It returns a description about why the block is illegal
4247  */
4248 static char *describe_illegal_block(ext2_filsys fs, blk64_t block)
4249 {
4250         blk64_t super;
4251         int     i;
4252         static char     problem[80];
4253
4254         super = fs->super->s_first_data_block;
4255         strcpy(problem, "PROGRAMMING ERROR: Unknown reason for illegal block");
4256         if (block < super) {
4257                 sprintf(problem, "< FIRSTBLOCK (%u)", super);
4258                 return(problem);
4259         } else if (block >= ext2fs_blocks_count(fs->super)) {
4260                 sprintf(problem, "> BLOCKS (%u)", ext2fs_blocks_count(fs->super));
4261                 return(problem);
4262         }
4263         for (i = 0; i < fs->group_desc_count; i++) {
4264                 if (block == super) {
4265                         sprintf(problem, "is the superblock in group %d", i);
4266                         break;
4267                 }
4268                 if (block > super &&
4269                     block <= (super + fs->desc_blocks)) {
4270                         sprintf(problem, "is in the group descriptors "
4271                                 "of group %d", i);
4272                         break;
4273                 }
4274                 if (block == ext2fs_block_bitmap_loc(fs, i)) {
4275                         sprintf(problem, "is the block bitmap of group %d", i);
4276                         break;
4277                 }
4278                 if (block == ext2fs_inode_bitmap_loc(fs, i)) {
4279                         sprintf(problem, "is the inode bitmap of group %d", i);
4280                         break;
4281                 }
4282                 if (block >= ext2fs_inode_table_loc(fs, i) &&
4283                     (block < ext2fs_inode_table_loc(fs, i)
4284                      + fs->inode_blocks_per_group)) {
4285                         sprintf(problem, "is in the inode table of group %d",
4286                                 i);
4287                         break;
4288                 }
4289                 super += fs->super->s_blocks_per_group;
4290         }
4291         return(problem);
4292 }
4293 #endif
4294
4295 /*
4296  * This is a helper function for check_blocks().
4297  */
4298 static int process_block(ext2_filsys fs,
4299                   blk64_t       *block_nr,
4300                   e2_blkcnt_t blockcnt,
4301                   blk64_t ref_block EXT2FS_ATTR((unused)),
4302                   int ref_offset EXT2FS_ATTR((unused)),
4303                   void *priv_data)
4304 {
4305         struct process_block_struct *p;
4306         struct problem_context *pctx;
4307         blk64_t blk = *block_nr;
4308         int     ret_code = 0;
4309         problem_t       problem = 0;
4310         e2fsck_t        ctx;
4311
4312         p = (struct process_block_struct *) priv_data;
4313         pctx = p->pctx;
4314         ctx = p->ctx;
4315
4316         /*
4317          * For a directory, add logical block zero for processing even if it's
4318          * not mapped or we'll be perennially stuck with broken "." and ".."
4319          * entries.
4320          */
4321         if (p->is_dir && blockcnt == 0 && blk == 0) {
4322                 pctx->errcode = ext2fs_add_dir_block2(fs->dblist, p->ino, 0, 0);
4323                 if (pctx->errcode) {
4324                         pctx->blk = blk;
4325                         pctx->num = blockcnt;
4326                         goto failed_add_dir_block;
4327                 }
4328                 p->last_db_block++;
4329         }
4330
4331         if (blk == 0)
4332                 return 0;
4333
4334 #if 0
4335         printf("Process_block, inode %lu, block %u, #%d\n", p->ino, blk,
4336                blockcnt);
4337 #endif
4338
4339         /*
4340          * Simplistic fragmentation check.  We merely require that the
4341          * file be contiguous.  (Which can never be true for really
4342          * big files that are greater than a block group.)
4343          */
4344         if (p->previous_block && p->ino != EXT2_RESIZE_INO) {
4345                 if (p->previous_block+1 != blk) {
4346                         if (ctx->options & E2F_OPT_FRAGCHECK) {
4347                                 char type = '?';
4348
4349                                 if (p->is_dir)
4350                                         type = 'd';
4351                                 else if (p->is_reg)
4352                                         type = 'f';
4353
4354                                 printf(_("%6lu(%c): expecting %6lu "
4355                                          "got phys %6lu (blkcnt %lld)\n"),
4356                                        (unsigned long) pctx->ino, type,
4357                                        (unsigned long) p->previous_block+1,
4358                                        (unsigned long) blk,
4359                                        (long long) blockcnt);
4360                         }
4361                         p->fragmented = 1;
4362                 }
4363         }
4364
4365         if (p->is_dir && !ext2fs_has_feature_largedir(fs->super) &&
4366             !pctx->inode->i_size_high &&
4367             blockcnt > (1 << (21 - fs->super->s_log_block_size)))
4368                 problem = PR_1_TOOBIG_DIR;
4369         if (p->is_dir && p->num_blocks + 1 >= p->max_blocks)
4370                 problem = PR_1_TOOBIG_DIR;
4371         if (p->is_reg && p->num_blocks + 1 >= p->max_blocks)
4372                 problem = PR_1_TOOBIG_REG;
4373         if (!p->is_dir && !p->is_reg && blockcnt > 0)
4374                 problem = PR_1_TOOBIG_SYMLINK;
4375
4376         if (blk < fs->super->s_first_data_block ||
4377             blk >= ext2fs_blocks_count(fs->super))
4378                 problem = PR_1_ILLEGAL_BLOCK_NUM;
4379
4380         /*
4381          * If this IND/DIND/TIND block is squatting atop some critical metadata
4382          * (group descriptors, superblock, bitmap, inode table), any write to
4383          * "fix" mapping problems will destroy the metadata.  We'll let pass 1b
4384          * fix that and restart fsck.
4385          */
4386         if (blockcnt < 0 &&
4387             p->ino != EXT2_RESIZE_INO &&
4388             blk < ctx->fs->super->s_blocks_count &&
4389             ext2fs_test_block_bitmap2(ctx->block_metadata_map, blk)) {
4390                 pctx->blk = blk;
4391                 fix_problem(ctx, PR_1_CRITICAL_METADATA_COLLISION, pctx);
4392                 if ((ctx->options & E2F_OPT_NO) == 0)
4393                         ctx->flags |= E2F_FLAG_RESTART_LATER;
4394         }
4395
4396         if (problem) {
4397                 p->num_illegal_blocks++;
4398                 /*
4399                  * A bit of subterfuge here -- we're trying to fix a block
4400                  * mapping, but the IND/DIND/TIND block could have collided
4401                  * with some critical metadata.  So, fix the in-core mapping so
4402                  * iterate won't go insane, but return 0 instead of
4403                  * BLOCK_CHANGED so that it won't write the remapping out to
4404                  * our multiply linked block.
4405                  *
4406                  * Even if we previously determined that an *IND block
4407                  * conflicts with critical metadata, we must still try to
4408                  * iterate the *IND block as if it is an *IND block to find and
4409                  * mark the blocks it points to.  Better to be overly cautious
4410                  * with the used_blocks map so that we don't move the *IND
4411                  * block to a block that's really in use!
4412                  */
4413                 if (p->ino != EXT2_RESIZE_INO &&
4414                     ref_block != 0 &&
4415                     ext2fs_test_block_bitmap2(ctx->block_metadata_map,
4416                                               ref_block)) {
4417                         *block_nr = 0;
4418                         return 0;
4419                 }
4420                 if (!p->suppress && (p->num_illegal_blocks % 12) == 0) {
4421                         if (fix_problem(ctx, PR_1_TOO_MANY_BAD_BLOCKS, pctx)) {
4422                                 p->clear = 1;
4423                                 return BLOCK_ABORT;
4424                         }
4425                         if (fix_problem(ctx, PR_1_SUPPRESS_MESSAGES, pctx)) {
4426                                 p->suppress = 1;
4427                                 set_latch_flags(PR_LATCH_BLOCK,
4428                                                 PRL_SUPPRESS, 0);
4429                         }
4430                 }
4431                 pctx->blk = blk;
4432                 pctx->blkcount = blockcnt;
4433                 if (fix_problem(ctx, problem, pctx)) {
4434                         blk = *block_nr = 0;
4435                         ret_code = BLOCK_CHANGED;
4436                         p->inode_modified = 1;
4437                         /*
4438                          * If the directory block is too big and is beyond the
4439                          * end of the FS, don't bother trying to add it for
4440                          * processing -- the kernel would never have created a
4441                          * directory this large, and we risk an ENOMEM abort.
4442                          * In any case, the toobig handler for extent-based
4443                          * directories also doesn't feed toobig blocks to
4444                          * pass 2.
4445                          */
4446                         if (problem == PR_1_TOOBIG_DIR)
4447                                 return ret_code;
4448                         goto mark_dir;
4449                 } else
4450                         return 0;
4451         }
4452
4453         if (p->ino == EXT2_RESIZE_INO) {
4454                 /*
4455                  * The resize inode has already be sanity checked
4456                  * during pass #0 (the superblock checks).  All we
4457                  * have to do is mark the double indirect block as
4458                  * being in use; all of the other blocks are handled
4459                  * by mark_table_blocks()).
4460                  */
4461                 if (blockcnt == BLOCK_COUNT_DIND)
4462                         mark_block_used(ctx, blk);
4463                 p->num_blocks++;
4464         } else if (!(ctx->fs->cluster_ratio_bits &&
4465                      p->previous_block &&
4466                      (EXT2FS_B2C(ctx->fs, blk) ==
4467                       EXT2FS_B2C(ctx->fs, p->previous_block)) &&
4468                      (blk & EXT2FS_CLUSTER_MASK(ctx->fs)) ==
4469                      ((unsigned) blockcnt & EXT2FS_CLUSTER_MASK(ctx->fs)))) {
4470                 mark_block_used(ctx, blk);
4471                 p->num_blocks++;
4472         } else if (has_unaligned_cluster_map(ctx, p->previous_block,
4473                                              p->last_block, blk, blockcnt)) {
4474                 pctx->blk = blockcnt;
4475                 pctx->blk2 = blk;
4476                 fix_problem(ctx, PR_1_MISALIGNED_CLUSTER, pctx);
4477                 mark_block_used(ctx, blk);
4478                 mark_block_used(ctx, blk);
4479         }
4480         if (blockcnt >= 0)
4481                 p->last_block = blockcnt;
4482         p->previous_block = blk;
4483 mark_dir:
4484         if (p->is_dir && (blockcnt >= 0)) {
4485                 while (++p->last_db_block < blockcnt) {
4486                         pctx->errcode = ext2fs_add_dir_block2(fs->dblist,
4487                                                               p->ino, 0,
4488                                                               p->last_db_block);
4489                         if (pctx->errcode) {
4490                                 pctx->blk = 0;
4491                                 pctx->num = p->last_db_block;
4492                                 goto failed_add_dir_block;
4493                         }
4494                 }
4495                 pctx->errcode = ext2fs_add_dir_block2(fs->dblist, p->ino,
4496                                                       blk, blockcnt);
4497                 if (pctx->errcode) {
4498                         pctx->blk = blk;
4499                         pctx->num = blockcnt;
4500                 failed_add_dir_block:
4501                         fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
4502                         /* Should never get here */
4503                         ctx->flags |= E2F_FLAG_ABORT;
4504                         return BLOCK_ABORT;
4505                 }
4506         }
4507         return ret_code;
4508 }
4509
4510 static int process_bad_block(ext2_filsys fs,
4511                       blk64_t *block_nr,
4512                       e2_blkcnt_t blockcnt,
4513                       blk64_t ref_block EXT2FS_ATTR((unused)),
4514                       int ref_offset EXT2FS_ATTR((unused)),
4515                       void *priv_data)
4516 {
4517         struct process_block_struct *p;
4518         blk64_t         blk = *block_nr;
4519         blk64_t         first_block;
4520         dgrp_t          i;
4521         struct problem_context *pctx;
4522         e2fsck_t        ctx;
4523
4524         if (!blk)
4525                 return 0;
4526
4527         p = (struct process_block_struct *) priv_data;
4528         ctx = p->ctx;
4529         pctx = p->pctx;
4530
4531         pctx->ino = EXT2_BAD_INO;
4532         pctx->blk = blk;
4533         pctx->blkcount = blockcnt;
4534
4535         if ((blk < fs->super->s_first_data_block) ||
4536             (blk >= ext2fs_blocks_count(fs->super))) {
4537                 if (fix_problem(ctx, PR_1_BB_ILLEGAL_BLOCK_NUM, pctx)) {
4538                         *block_nr = 0;
4539                         return BLOCK_CHANGED;
4540                 } else
4541                         return 0;
4542         }
4543
4544         if (blockcnt < 0) {
4545                 if (ext2fs_test_block_bitmap2(p->fs_meta_blocks, blk)) {
4546                         p->bbcheck = 1;
4547                         if (fix_problem(ctx, PR_1_BB_FS_BLOCK, pctx)) {
4548                                 *block_nr = 0;
4549                                 return BLOCK_CHANGED;
4550                         }
4551                 } else if (ext2fs_test_block_bitmap2(ctx->block_found_map,
4552                                                     blk)) {
4553                         p->bbcheck = 1;
4554                         if (fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK,
4555                                         pctx)) {
4556                                 *block_nr = 0;
4557                                 return BLOCK_CHANGED;
4558                         }
4559                         if (e2fsck_should_abort(ctx))
4560                                 return BLOCK_ABORT;
4561                 } else
4562                         mark_block_used(ctx, blk);
4563                 return 0;
4564         }
4565 #if 0
4566         printf ("DEBUG: Marking %u as bad.\n", blk);
4567 #endif
4568         ctx->fs_badblocks_count++;
4569         /*
4570          * If the block is not used, then mark it as used and return.
4571          * If it is already marked as found, this must mean that
4572          * there's an overlap between the filesystem table blocks
4573          * (bitmaps and inode table) and the bad block list.
4574          */
4575         if (!ext2fs_test_block_bitmap2(ctx->block_found_map, blk)) {
4576                 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
4577                 return 0;
4578         }
4579         /*
4580          * Try to find the where the filesystem block was used...
4581          */
4582         first_block = fs->super->s_first_data_block;
4583
4584         for (i = 0; i < fs->group_desc_count; i++ ) {
4585                 pctx->group = i;
4586                 pctx->blk = blk;
4587                 if (!ext2fs_bg_has_super(fs, i))
4588                         goto skip_super;
4589                 if (blk == first_block) {
4590                         if (i == 0) {
4591                                 if (fix_problem(ctx,
4592                                                 PR_1_BAD_PRIMARY_SUPERBLOCK,
4593                                                 pctx)) {
4594                                         *block_nr = 0;
4595                                         return BLOCK_CHANGED;
4596                                 }
4597                                 return 0;
4598                         }
4599                         fix_problem(ctx, PR_1_BAD_SUPERBLOCK, pctx);
4600                         return 0;
4601                 }
4602                 if ((blk > first_block) &&
4603                     (blk <= first_block + fs->desc_blocks)) {
4604                         if (i == 0) {
4605                                 pctx->blk = *block_nr;
4606                                 if (fix_problem(ctx,
4607                         PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR, pctx)) {
4608                                         *block_nr = 0;
4609                                         return BLOCK_CHANGED;
4610                                 }
4611                                 return 0;
4612                         }
4613                         fix_problem(ctx, PR_1_BAD_GROUP_DESCRIPTORS, pctx);
4614                         return 0;
4615                 }
4616         skip_super:
4617                 if (blk == ext2fs_block_bitmap_loc(fs, i)) {
4618                         if (fix_problem(ctx, PR_1_BB_BAD_BLOCK, pctx)) {
4619                                 ctx->invalid_block_bitmap_flag[i]++;
4620                                 ctx->invalid_bitmaps++;
4621                         }
4622                         return 0;
4623                 }
4624                 if (blk == ext2fs_inode_bitmap_loc(fs, i)) {
4625                         if (fix_problem(ctx, PR_1_IB_BAD_BLOCK, pctx)) {
4626                                 ctx->invalid_inode_bitmap_flag[i]++;
4627                                 ctx->invalid_bitmaps++;
4628                         }
4629                         return 0;
4630                 }
4631                 if ((blk >= ext2fs_inode_table_loc(fs, i)) &&
4632                     (blk < (ext2fs_inode_table_loc(fs, i) +
4633                             fs->inode_blocks_per_group))) {
4634                         /*
4635                          * If there are bad blocks in the inode table,
4636                          * the inode scan code will try to do
4637                          * something reasonable automatically.
4638                          */
4639                         return 0;
4640                 }
4641                 first_block += fs->super->s_blocks_per_group;
4642         }
4643         /*
4644          * If we've gotten to this point, then the only
4645          * possibility is that the bad block inode meta data
4646          * is using a bad block.
4647          */
4648         if ((blk == p->inode->i_block[EXT2_IND_BLOCK]) ||
4649             (blk == p->inode->i_block[EXT2_DIND_BLOCK]) ||
4650             (blk == p->inode->i_block[EXT2_TIND_BLOCK])) {
4651                 p->bbcheck = 1;
4652                 if (fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK, pctx)) {
4653                         *block_nr = 0;
4654                         return BLOCK_CHANGED;
4655                 }
4656                 if (e2fsck_should_abort(ctx))
4657                         return BLOCK_ABORT;
4658                 return 0;
4659         }
4660
4661         pctx->group = -1;
4662
4663         /* Warn user that the block wasn't claimed */
4664         fix_problem(ctx, PR_1_PROGERR_CLAIMED_BLOCK, pctx);
4665
4666         return 0;
4667 }
4668
4669 static void new_table_block(e2fsck_t ctx, blk64_t first_block, dgrp_t group,
4670                             const char *name, int num, blk64_t *new_block)
4671 {
4672         ext2_filsys fs = ctx->fs;
4673         dgrp_t          last_grp;
4674         blk64_t         old_block = *new_block;
4675         blk64_t         last_block;
4676         dgrp_t          flexbg;
4677         unsigned        flexbg_size;
4678         int             i, is_flexbg;
4679         char            *buf;
4680         struct problem_context  pctx;
4681
4682         clear_problem_context(&pctx);
4683
4684         pctx.group = group;
4685         pctx.blk = old_block;
4686         pctx.str = name;
4687
4688         /*
4689          * For flex_bg filesystems, first try to allocate the metadata
4690          * within the flex_bg, and if that fails then try finding the
4691          * space anywhere in the filesystem.
4692          */
4693         is_flexbg = ext2fs_has_feature_flex_bg(fs->super);
4694         if (is_flexbg) {
4695                 flexbg_size = 1 << fs->super->s_log_groups_per_flex;
4696                 flexbg = group / flexbg_size;
4697                 first_block = ext2fs_group_first_block2(fs,
4698                                                         flexbg_size * flexbg);
4699                 last_grp = group | (flexbg_size - 1);
4700                 if (last_grp >= fs->group_desc_count)
4701                         last_grp = fs->group_desc_count - 1;
4702                 last_block = ext2fs_group_last_block2(fs, last_grp);
4703         } else
4704                 last_block = ext2fs_group_last_block2(fs, group);
4705         pctx.errcode = ext2fs_get_free_blocks2(fs, first_block, last_block,
4706                                                num, ctx->block_found_map,
4707                                                new_block);
4708         if (is_flexbg && (pctx.errcode == EXT2_ET_BLOCK_ALLOC_FAIL))
4709                 pctx.errcode = ext2fs_get_free_blocks2(fs,
4710                                 fs->super->s_first_data_block,
4711                                 ext2fs_blocks_count(fs->super),
4712                                 num, ctx->block_found_map, new_block);
4713         if (pctx.errcode) {
4714                 pctx.num = num;
4715                 fix_problem(ctx, PR_1_RELOC_BLOCK_ALLOCATE, &pctx);
4716                 ext2fs_unmark_valid(fs);
4717                 ctx->flags |= E2F_FLAG_ABORT;
4718                 return;
4719         }
4720         pctx.errcode = ext2fs_get_mem(fs->blocksize, &buf);
4721         if (pctx.errcode) {
4722                 fix_problem(ctx, PR_1_RELOC_MEMORY_ALLOCATE, &pctx);
4723                 ext2fs_unmark_valid(fs);
4724                 ctx->flags |= E2F_FLAG_ABORT;
4725                 return;
4726         }
4727         ext2fs_mark_super_dirty(fs);
4728         fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
4729         pctx.blk2 = *new_block;
4730         fix_problem(ctx, (old_block ? PR_1_RELOC_FROM_TO :
4731                           PR_1_RELOC_TO), &pctx);
4732         pctx.blk2 = 0;
4733         for (i = 0; i < num; i++) {
4734                 pctx.blk = i;
4735                 ext2fs_mark_block_bitmap2(ctx->block_found_map, (*new_block)+i);
4736                 if (old_block) {
4737                         pctx.errcode = io_channel_read_blk64(fs->io,
4738                                    old_block + i, 1, buf);
4739                         if (pctx.errcode)
4740                                 fix_problem(ctx, PR_1_RELOC_READ_ERR, &pctx);
4741                         pctx.blk = (*new_block) + i;
4742                         pctx.errcode = io_channel_write_blk64(fs->io, pctx.blk,
4743                                                               1, buf);
4744                 } else {
4745                         pctx.blk = (*new_block) + i;
4746                         pctx.errcode = ext2fs_zero_blocks2(fs, pctx.blk, 1,
4747                                                            NULL, NULL);
4748                 }
4749
4750                 if (pctx.errcode)
4751                         fix_problem(ctx, PR_1_RELOC_WRITE_ERR, &pctx);
4752         }
4753         ext2fs_free_mem(&buf);
4754 }
4755
4756 /*
4757  * This routine gets called at the end of pass 1 if bad blocks are
4758  * detected in the superblock, group descriptors, inode_bitmaps, or
4759  * block bitmaps.  At this point, all of the blocks have been mapped
4760  * out, so we can try to allocate new block(s) to replace the bad
4761  * blocks.
4762  */
4763 static void handle_fs_bad_blocks(e2fsck_t ctx)
4764 {
4765         ext2_filsys fs = ctx->fs;
4766         dgrp_t          i;
4767         blk64_t         first_block;
4768         blk64_t         new_blk;
4769
4770         for (i = 0; i < fs->group_desc_count; i++) {
4771                 first_block = ext2fs_group_first_block2(fs, i);
4772
4773                 if (ctx->invalid_block_bitmap_flag[i]) {
4774                         new_blk = ext2fs_block_bitmap_loc(fs, i);
4775                         new_table_block(ctx, first_block, i, _("block bitmap"),
4776                                         1, &new_blk);
4777                         ext2fs_block_bitmap_loc_set(fs, i, new_blk);
4778                 }
4779                 if (ctx->invalid_inode_bitmap_flag[i]) {
4780                         new_blk = ext2fs_inode_bitmap_loc(fs, i);
4781                         new_table_block(ctx, first_block, i, _("inode bitmap"),
4782                                         1, &new_blk);
4783                         ext2fs_inode_bitmap_loc_set(fs, i, new_blk);
4784                 }
4785                 if (ctx->invalid_inode_table_flag[i]) {
4786                         new_blk = ext2fs_inode_table_loc(fs, i);
4787                         new_table_block(ctx, first_block, i, _("inode table"),
4788                                         fs->inode_blocks_per_group,
4789                                         &new_blk);
4790                         ext2fs_inode_table_loc_set(fs, i, new_blk);
4791                         ctx->flags |= E2F_FLAG_RESTART;
4792                 }
4793         }
4794         ctx->invalid_bitmaps = 0;
4795 }
4796
4797 /*
4798  * This routine marks all blocks which are used by the superblock,
4799  * group descriptors, inode bitmaps, and block bitmaps.
4800  */
4801 static void mark_table_blocks(e2fsck_t ctx)
4802 {
4803         ext2_filsys fs = ctx->fs;
4804         blk64_t b;
4805         dgrp_t  i;
4806         unsigned int    j;
4807         struct problem_context pctx;
4808
4809         clear_problem_context(&pctx);
4810
4811         for (i = 0; i < fs->group_desc_count; i++) {
4812                 pctx.group = i;
4813
4814                 ext2fs_reserve_super_and_bgd(fs, i, ctx->block_found_map);
4815                 ext2fs_reserve_super_and_bgd(fs, i, ctx->block_metadata_map);
4816
4817                 /*
4818                  * Mark the blocks used for the inode table
4819                  */
4820                 if (ext2fs_inode_table_loc(fs, i)) {
4821                         for (j = 0, b = ext2fs_inode_table_loc(fs, i);
4822                              j < fs->inode_blocks_per_group;
4823                              j++, b++) {
4824                                 if (ext2fs_test_block_bitmap2(ctx->block_found_map,
4825                                                              b)) {
4826                                         pctx.blk = b;
4827                                         if (!ctx->invalid_inode_table_flag[i] &&
4828                                             fix_problem(ctx,
4829                                                 PR_1_ITABLE_CONFLICT, &pctx)) {
4830                                                 ctx->invalid_inode_table_flag[i]++;
4831                                                 ctx->invalid_bitmaps++;
4832                                         }
4833                                 } else {
4834                                     ext2fs_mark_block_bitmap2(
4835                                                 ctx->block_found_map, b);
4836                                     ext2fs_mark_block_bitmap2(
4837                                                 ctx->block_metadata_map, b);
4838                                 }
4839                         }
4840                 }
4841
4842                 /*
4843                  * Mark block used for the block bitmap
4844                  */
4845                 if (ext2fs_block_bitmap_loc(fs, i)) {
4846                         if (ext2fs_test_block_bitmap2(ctx->block_found_map,
4847                                      ext2fs_block_bitmap_loc(fs, i))) {
4848                                 pctx.blk = ext2fs_block_bitmap_loc(fs, i);
4849                                 if (fix_problem(ctx, PR_1_BB_CONFLICT, &pctx)) {
4850                                         ctx->invalid_block_bitmap_flag[i]++;
4851                                         ctx->invalid_bitmaps++;
4852                                 }
4853                         } else {
4854                             ext2fs_mark_block_bitmap2(ctx->block_found_map,
4855                                      ext2fs_block_bitmap_loc(fs, i));
4856                             ext2fs_mark_block_bitmap2(ctx->block_metadata_map,
4857                                      ext2fs_block_bitmap_loc(fs, i));
4858                         }
4859                 }
4860                 /*
4861                  * Mark block used for the inode bitmap
4862                  */
4863                 if (ext2fs_inode_bitmap_loc(fs, i)) {
4864                         if (ext2fs_test_block_bitmap2(ctx->block_found_map,
4865                                      ext2fs_inode_bitmap_loc(fs, i))) {
4866                                 pctx.blk = ext2fs_inode_bitmap_loc(fs, i);
4867                                 if (fix_problem(ctx, PR_1_IB_CONFLICT, &pctx)) {
4868                                         ctx->invalid_inode_bitmap_flag[i]++;
4869                                         ctx->invalid_bitmaps++;
4870                                 }
4871                         } else {
4872                             ext2fs_mark_block_bitmap2(ctx->block_metadata_map,
4873                                      ext2fs_inode_bitmap_loc(fs, i));
4874                             ext2fs_mark_block_bitmap2(ctx->block_found_map,
4875                                      ext2fs_inode_bitmap_loc(fs, i));
4876                         }
4877                 }
4878         }
4879 }
4880
4881 /*
4882  * These subroutines short circuits ext2fs_get_blocks and
4883  * ext2fs_check_directory; we use them since we already have the inode
4884  * structure, so there's no point in letting the ext2fs library read
4885  * the inode again.
4886  */
4887 static errcode_t pass1_get_blocks(ext2_filsys fs, ext2_ino_t ino,
4888                                   blk_t *blocks)
4889 {
4890         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4891         int     i;
4892
4893         if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
4894                 return EXT2_ET_CALLBACK_NOTHANDLED;
4895
4896         for (i=0; i < EXT2_N_BLOCKS; i++)
4897                 blocks[i] = ctx->stashed_inode->i_block[i];
4898         return 0;
4899 }
4900
4901 static errcode_t pass1_read_inode(ext2_filsys fs, ext2_ino_t ino,
4902                                   struct ext2_inode *inode)
4903 {
4904         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4905
4906         if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
4907                 return EXT2_ET_CALLBACK_NOTHANDLED;
4908         *inode = *ctx->stashed_inode;
4909         return 0;
4910 }
4911
4912 static errcode_t pass1_write_inode(ext2_filsys fs, ext2_ino_t ino,
4913                             struct ext2_inode *inode)
4914 {
4915         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4916
4917         if ((ino == ctx->stashed_ino) && ctx->stashed_inode &&
4918                 (inode != ctx->stashed_inode))
4919                 *ctx->stashed_inode = *inode;
4920         return EXT2_ET_CALLBACK_NOTHANDLED;
4921 }
4922
4923 static errcode_t pass1_check_directory(ext2_filsys fs, ext2_ino_t ino)
4924 {
4925         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4926
4927         if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
4928                 return EXT2_ET_CALLBACK_NOTHANDLED;
4929
4930         if (!LINUX_S_ISDIR(ctx->stashed_inode->i_mode))
4931                 return EXT2_ET_NO_DIRECTORY;
4932         return 0;
4933 }
4934
4935 static errcode_t e2fsck_get_alloc_block(ext2_filsys fs, blk64_t goal,
4936                                         blk64_t *ret)
4937 {
4938         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4939         errcode_t       retval;
4940         blk64_t         new_block;
4941
4942         if (ctx->block_found_map) {
4943                 retval = ext2fs_new_block2(fs, goal, ctx->block_found_map,
4944                                            &new_block);
4945                 if (retval)
4946                         return retval;
4947                 if (fs->block_map) {
4948                         ext2fs_mark_block_bitmap2(fs->block_map, new_block);
4949                         ext2fs_mark_bb_dirty(fs);
4950                 }
4951         } else {
4952                 if (!fs->block_map) {
4953                         retval = ext2fs_read_block_bitmap(fs);
4954                         if (retval)
4955                                 return retval;
4956                 }
4957
4958                 retval = ext2fs_new_block2(fs, goal, fs->block_map, &new_block);
4959                 if (retval)
4960                         return retval;
4961         }
4962
4963         *ret = new_block;
4964         return (0);
4965 }
4966
4967 static errcode_t e2fsck_new_range(ext2_filsys fs, int flags, blk64_t goal,
4968                                   blk64_t len, blk64_t *pblk, blk64_t *plen)
4969 {
4970         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4971         errcode_t       retval;
4972
4973         if (ctx->block_found_map)
4974                 return ext2fs_new_range(fs, flags, goal, len,
4975                                         ctx->block_found_map, pblk, plen);
4976
4977         if (!fs->block_map) {
4978                 retval = ext2fs_read_block_bitmap(fs);
4979                 if (retval)
4980                         return retval;
4981         }
4982
4983         return ext2fs_new_range(fs, flags, goal, len, fs->block_map,
4984                                 pblk, plen);
4985 }
4986
4987 static void e2fsck_block_alloc_stats(ext2_filsys fs, blk64_t blk, int inuse)
4988 {
4989         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
4990
4991         /* Never free a critical metadata block */
4992         if (ctx->block_found_map &&
4993             ctx->block_metadata_map &&
4994             inuse < 0 &&
4995             ext2fs_test_block_bitmap2(ctx->block_metadata_map, blk))
4996                 return;
4997
4998         if (ctx->block_found_map) {
4999                 if (inuse > 0)
5000                         ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
5001                 else
5002                         ext2fs_unmark_block_bitmap2(ctx->block_found_map, blk);
5003         }
5004 }
5005
5006 static void e2fsck_block_alloc_stats_range(ext2_filsys fs, blk64_t blk,
5007                                            blk_t num, int inuse)
5008 {
5009         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5010
5011         /* Never free a critical metadata block */
5012         if (ctx->block_found_map &&
5013             ctx->block_metadata_map &&
5014             inuse < 0 &&
5015             ext2fs_test_block_bitmap_range2(ctx->block_metadata_map, blk, num))
5016                 return;
5017
5018         if (ctx->block_found_map) {
5019                 if (inuse > 0)
5020                         ext2fs_mark_block_bitmap_range2(ctx->block_found_map,
5021                                                         blk, num);
5022                 else
5023                         ext2fs_unmark_block_bitmap_range2(ctx->block_found_map,
5024                                                         blk, num);
5025         }
5026 }
5027
5028 void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts)
5029 {
5030         ext2_filsys fs = ctx->fs;
5031
5032         if (use_shortcuts) {
5033                 fs->get_blocks = pass1_get_blocks;
5034                 fs->check_directory = pass1_check_directory;
5035                 fs->read_inode = pass1_read_inode;
5036                 fs->write_inode = pass1_write_inode;
5037                 ctx->stashed_ino = 0;
5038         } else {
5039                 fs->get_blocks = 0;
5040                 fs->check_directory = 0;
5041                 fs->read_inode = 0;
5042                 fs->write_inode = 0;
5043         }
5044 }
5045
5046 void e2fsck_intercept_block_allocations(e2fsck_t ctx)
5047 {
5048         ext2fs_set_alloc_block_callback(ctx->fs, e2fsck_get_alloc_block, 0);
5049         ext2fs_set_block_alloc_stats_callback(ctx->fs,
5050                                                 e2fsck_block_alloc_stats, 0);
5051         ext2fs_set_new_range_callback(ctx->fs, e2fsck_new_range, NULL);
5052         ext2fs_set_block_alloc_stats_range_callback(ctx->fs,
5053                                         e2fsck_block_alloc_stats_range, NULL);
5054 }