Whamcloud - gitweb
e2fsck: merge options after threads finish
[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                         e2fsck_pass1_fix_lock(ctx);
386                         ext2fs_write_inode(ctx->fs, entry->e_value_inum,
387                                            &inode);
388                         e2fsck_pass1_fix_unlock(ctx);
389                 } else {
390                         return PR_1_ATTR_NO_EA_INODE_FL;
391                 }
392         }
393         return 0;
394 }
395
396 static void inc_ea_inode_refs(e2fsck_t ctx, struct problem_context *pctx,
397                               struct ext2_ext_attr_entry *first, void *end)
398 {
399         struct ext2_ext_attr_entry *entry = first;
400         struct ext2_ext_attr_entry *np = EXT2_EXT_ATTR_NEXT(entry);
401
402         while ((void *) entry < end && (void *) np < end &&
403                !EXT2_EXT_IS_LAST_ENTRY(entry)) {
404                 if (!entry->e_value_inum)
405                         goto next;
406                 if (!ctx->ea_inode_refs) {
407                         pctx->errcode = ea_refcount_create(0,
408                                                            &ctx->ea_inode_refs);
409                         if (pctx->errcode) {
410                                 pctx->num = 4;
411                                 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
412                                 ctx->flags |= E2F_FLAG_ABORT;
413                                 return;
414                         }
415                 }
416                 ea_refcount_increment(ctx->ea_inode_refs, entry->e_value_inum,
417                                       0);
418         next:
419                 entry = np;
420                 np = EXT2_EXT_ATTR_NEXT(entry);
421         }
422 }
423
424 static void check_ea_in_inode(e2fsck_t ctx, struct problem_context *pctx,
425                               struct ea_quota *ea_ibody_quota)
426 {
427         struct ext2_super_block *sb = ctx->fs->super;
428         struct ext2_inode_large *inode;
429         struct ext2_ext_attr_entry *entry;
430         char *start, *header, *end;
431         unsigned int storage_size, remain;
432         problem_t problem = 0;
433         region_t region = 0;
434
435         ea_ibody_quota->blocks = 0;
436         ea_ibody_quota->inodes = 0;
437
438         inode = (struct ext2_inode_large *) pctx->inode;
439         storage_size = EXT2_INODE_SIZE(ctx->fs->super) - EXT2_GOOD_OLD_INODE_SIZE -
440                 inode->i_extra_isize;
441         header = ((char *) inode) + EXT2_GOOD_OLD_INODE_SIZE +
442                  inode->i_extra_isize;
443         end = header + storage_size;
444         start = header + sizeof(__u32);
445         entry = (struct ext2_ext_attr_entry *) start;
446
447         /* scan all entry's headers first */
448
449         /* take finish entry 0UL into account */
450         remain = storage_size - sizeof(__u32);
451
452         region = region_create(0, storage_size);
453         if (!region) {
454                 fix_problem(ctx, PR_1_EA_ALLOC_REGION_ABORT, pctx);
455                 problem = 0;
456                 ctx->flags |= E2F_FLAG_ABORT;
457                 return;
458         }
459         if (region_allocate(region, 0, sizeof(__u32))) {
460                 problem = PR_1_INODE_EA_ALLOC_COLLISION;
461                 goto fix;
462         }
463
464         while (remain >= sizeof(struct ext2_ext_attr_entry) &&
465                !EXT2_EXT_IS_LAST_ENTRY(entry)) {
466                 __u32 hash;
467
468                 if (region_allocate(region, (char *)entry - (char *)header,
469                                     EXT2_EXT_ATTR_LEN(entry->e_name_len))) {
470                         problem = PR_1_INODE_EA_ALLOC_COLLISION;
471                         goto fix;
472                 }
473
474                 /* header eats this space */
475                 remain -= sizeof(struct ext2_ext_attr_entry);
476
477                 /* is attribute name valid? */
478                 if (EXT2_EXT_ATTR_SIZE(entry->e_name_len) > remain) {
479                         pctx->num = entry->e_name_len;
480                         problem = PR_1_ATTR_NAME_LEN;
481                         goto fix;
482                 }
483
484                 /* attribute len eats this space */
485                 remain -= EXT2_EXT_ATTR_SIZE(entry->e_name_len);
486
487                 if (entry->e_value_inum == 0) {
488                         /* check value size */
489                         if (entry->e_value_size > remain) {
490                                 pctx->num = entry->e_value_size;
491                                 problem = PR_1_ATTR_VALUE_SIZE;
492                                 goto fix;
493                         }
494
495                         if (entry->e_value_size &&
496                             region_allocate(region,
497                                             sizeof(__u32) + entry->e_value_offs,
498                                             EXT2_EXT_ATTR_SIZE(
499                                                 entry->e_value_size))) {
500                                 problem = PR_1_INODE_EA_ALLOC_COLLISION;
501                                 goto fix;
502                         }
503
504                         hash = ext2fs_ext_attr_hash_entry(entry,
505                                                           start + entry->e_value_offs);
506
507                         /* e_hash may be 0 in older inode's ea */
508                         if (entry->e_hash != 0 && entry->e_hash != hash) {
509                                 pctx->num = entry->e_hash;
510                                 problem = PR_1_ATTR_HASH;
511                                 goto fix;
512                         }
513                 } else {
514                         blk64_t quota_blocks;
515
516                         problem = check_large_ea_inode(ctx, entry, pctx,
517                                                        &quota_blocks);
518                         if (problem != 0)
519                                 goto fix;
520
521                         ea_ibody_quota->blocks += quota_blocks;
522                         ea_ibody_quota->inodes++;
523                 }
524
525                 /* If EA value is stored in external inode then it does not
526                  * consume space here */
527                 if (entry->e_value_inum == 0)
528                         remain -= entry->e_value_size;
529
530                 entry = EXT2_EXT_ATTR_NEXT(entry);
531         }
532
533         if (region_allocate(region, (char *)entry - (char *)header,
534                             sizeof(__u32))) {
535                 problem = PR_1_INODE_EA_ALLOC_COLLISION;
536                 goto fix;
537         }
538 fix:
539         if (region)
540                 region_free(region);
541         /*
542          * it seems like a corruption. it's very unlikely we could repair
543          * EA(s) in automatic fashion -bzzz
544          */
545         if (problem == 0 || !fix_problem(ctx, problem, pctx)) {
546                 inc_ea_inode_refs(ctx, pctx,
547                                   (struct ext2_ext_attr_entry *)start, end);
548                 return;
549         }
550
551         /* simply remove all possible EA(s) */
552         *((__u32 *)header) = 0UL;
553         e2fsck_write_inode_full(ctx, pctx->ino, pctx->inode,
554                                 EXT2_INODE_SIZE(sb), "pass1");
555         ea_ibody_quota->blocks = 0;
556         ea_ibody_quota->inodes = 0;
557 }
558
559 static int check_inode_extra_negative_epoch(__u32 xtime, __u32 extra) {
560         return (xtime & (1U << 31)) != 0 &&
561                 (extra & EXT4_EPOCH_MASK) == EXT4_EPOCH_MASK;
562 }
563
564 #define CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, xtime) \
565         check_inode_extra_negative_epoch(inode->i_##xtime, \
566                                          inode->i_##xtime##_extra)
567
568 /* When today's date is earlier than 2242, we assume that atimes,
569  * ctimes, crtimes, and mtimes with years in the range 2310..2378 are
570  * actually pre-1970 dates mis-encoded.
571  */
572 #define EXT4_EXTRA_NEGATIVE_DATE_CUTOFF 2 * (1LL << 32)
573
574 static void check_inode_extra_space(e2fsck_t ctx, struct problem_context *pctx,
575                                     struct ea_quota *ea_ibody_quota)
576 {
577         struct ext2_super_block *sb = ctx->fs->super;
578         struct ext2_inode_large *inode;
579         __u32 *eamagic;
580         int min, max;
581
582         ea_ibody_quota->blocks = 0;
583         ea_ibody_quota->inodes = 0;
584
585         inode = (struct ext2_inode_large *) pctx->inode;
586         if (EXT2_INODE_SIZE(sb) == EXT2_GOOD_OLD_INODE_SIZE) {
587                 /* this isn't large inode. so, nothing to check */
588                 return;
589         }
590
591 #if 0
592         printf("inode #%u, i_extra_size %d\n", pctx->ino,
593                         inode->i_extra_isize);
594 #endif
595         /* i_extra_isize must cover i_extra_isize + i_checksum_hi at least */
596         min = sizeof(inode->i_extra_isize) + sizeof(inode->i_checksum_hi);
597         max = EXT2_INODE_SIZE(sb) - EXT2_GOOD_OLD_INODE_SIZE;
598         /*
599          * For now we will allow i_extra_isize to be 0, but really
600          * implementations should never allow i_extra_isize to be 0
601          */
602         if (inode->i_extra_isize &&
603             (inode->i_extra_isize < min || inode->i_extra_isize > max ||
604              inode->i_extra_isize & 3)) {
605                 if (!fix_problem(ctx, PR_1_EXTRA_ISIZE, pctx))
606                         return;
607                 if (inode->i_extra_isize < min || inode->i_extra_isize > max)
608                         inode->i_extra_isize = sb->s_want_extra_isize;
609                 else
610                         inode->i_extra_isize = (inode->i_extra_isize + 3) & ~3;
611                 e2fsck_write_inode_full(ctx, pctx->ino, pctx->inode,
612                                         EXT2_INODE_SIZE(sb), "pass1");
613         }
614
615         /* check if there is no place for an EA header */
616         if (inode->i_extra_isize >= max - sizeof(__u32))
617                 return;
618
619         eamagic = (__u32 *) (((char *) inode) + EXT2_GOOD_OLD_INODE_SIZE +
620                         inode->i_extra_isize);
621         if (*eamagic == EXT2_EXT_ATTR_MAGIC) {
622                 /* it seems inode has an extended attribute(s) in body */
623                 check_ea_in_inode(ctx, pctx, ea_ibody_quota);
624         }
625
626         /*
627          * If the inode's extended atime (ctime, crtime, mtime) is stored in
628          * the old, invalid format, repair it.
629          */
630         if (((sizeof(time_t) <= 4) ||
631              (((sizeof(time_t) > 4) &&
632                ctx->now < EXT4_EXTRA_NEGATIVE_DATE_CUTOFF))) &&
633             (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, atime) ||
634              CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, ctime) ||
635              CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, crtime) ||
636              CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, mtime))) {
637
638                 if (!fix_problem(ctx, PR_1_EA_TIME_OUT_OF_RANGE, pctx))
639                         return;
640
641                 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, atime))
642                         inode->i_atime_extra &= ~EXT4_EPOCH_MASK;
643                 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, ctime))
644                         inode->i_ctime_extra &= ~EXT4_EPOCH_MASK;
645                 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, crtime))
646                         inode->i_crtime_extra &= ~EXT4_EPOCH_MASK;
647                 if (CHECK_INODE_EXTRA_NEGATIVE_EPOCH(inode, mtime))
648                         inode->i_mtime_extra &= ~EXT4_EPOCH_MASK;
649                 e2fsck_write_inode_full(ctx, pctx->ino, pctx->inode,
650                                         EXT2_INODE_SIZE(sb), "pass1");
651         }
652
653 }
654
655 static _INLINE_ int is_blocks_used(e2fsck_t ctx, blk64_t block,
656                                    unsigned int num)
657 {
658         int retval;
659
660         /* used to avoid duplicate output from below */
661         retval = ext2fs_test_block_bitmap_range2_valid(ctx->block_found_map,
662                                                        block, num);
663         if (!retval)
664                 return 0;
665
666         retval = ext2fs_test_block_bitmap_range2(ctx->block_found_map, block, num);
667         if (retval) {
668                 e2fsck_pass1_block_map_r_lock(ctx);
669                 if (ctx->global_ctx)
670                         retval = ext2fs_test_block_bitmap_range2(
671                                         ctx->global_ctx->block_found_map, block, num);
672                 e2fsck_pass1_block_map_r_unlock(ctx);
673                 if (retval)
674                         return 0;
675         }
676
677         return 1;
678 }
679
680 /*
681  * Check to see if the inode might really be a directory, despite i_mode
682  *
683  * This is a lot of complexity for something for which I'm not really
684  * convinced happens frequently in the wild.  If for any reason this
685  * causes any problems, take this code out.
686  * [tytso:20070331.0827EDT]
687  */
688 static void check_is_really_dir(e2fsck_t ctx, struct problem_context *pctx,
689                                 char *buf)
690 {
691         struct ext2_inode *inode = pctx->inode;
692         struct ext2_dir_entry   *dirent;
693         errcode_t               retval;
694         blk64_t                 blk;
695         unsigned int            i, rec_len, not_device = 0;
696         int                     extent_fs;
697         int                     inlinedata_fs;
698
699         /*
700          * If the mode looks OK, we believe it.  If the first block in
701          * the i_block array is 0, this cannot be a directory. If the
702          * inode is extent-mapped, it is still the case that the latter
703          * cannot be 0 - the magic number in the extent header would make
704          * it nonzero.
705          */
706         if (LINUX_S_ISDIR(inode->i_mode) || LINUX_S_ISREG(inode->i_mode) ||
707             LINUX_S_ISLNK(inode->i_mode) || inode->i_block[0] == 0)
708                 return;
709
710         /*
711          * Check the block numbers in the i_block array for validity:
712          * zero blocks are skipped (but the first one cannot be zero -
713          * see above), other blocks are checked against the first and
714          * max data blocks (from the the superblock) and against the
715          * block bitmap. Any invalid block found means this cannot be
716          * a directory.
717          *
718          * If there are non-zero blocks past the fourth entry, then
719          * this cannot be a device file: we remember that for the next
720          * check.
721          *
722          * For extent mapped files, we don't do any sanity checking:
723          * just try to get the phys block of logical block 0 and run
724          * with it.
725          *
726          * For inline data files, we just try to get the size of inline
727          * data.  If it's true, we will treat it as a directory.
728          */
729
730         extent_fs = ext2fs_has_feature_extents(ctx->fs->super);
731         inlinedata_fs = ext2fs_has_feature_inline_data(ctx->fs->super);
732         if (inlinedata_fs && (inode->i_flags & EXT4_INLINE_DATA_FL)) {
733                 size_t size;
734                 __u32 dotdot;
735                 unsigned int rec_len2;
736                 struct ext2_dir_entry de;
737
738                 if (ext2fs_inline_data_size(ctx->fs, pctx->ino, &size))
739                         return;
740                 /*
741                  * If the size isn't a multiple of 4, it's probably not a
742                  * directory??
743                  */
744                 if (size & 3)
745                         return;
746                 /*
747                  * If the first 10 bytes don't look like a directory entry,
748                  * it's probably not a directory.
749                  */
750                 memcpy(&dotdot, inode->i_block, sizeof(dotdot));
751                 memcpy(&de, ((char *)inode->i_block) + EXT4_INLINE_DATA_DOTDOT_SIZE,
752                        EXT2_DIR_REC_LEN(0));
753                 dotdot = ext2fs_le32_to_cpu(dotdot);
754                 de.inode = ext2fs_le32_to_cpu(de.inode);
755                 de.rec_len = ext2fs_le16_to_cpu(de.rec_len);
756                 ext2fs_get_rec_len(ctx->fs, &de, &rec_len2);
757                 if (dotdot >= ctx->fs->super->s_inodes_count ||
758                     (dotdot < EXT2_FIRST_INO(ctx->fs->super) &&
759                      dotdot != EXT2_ROOT_INO) ||
760                     de.inode >= ctx->fs->super->s_inodes_count ||
761                     (de.inode < EXT2_FIRST_INO(ctx->fs->super) &&
762                      de.inode != 0) ||
763                     rec_len2 > EXT4_MIN_INLINE_DATA_SIZE -
764                               EXT4_INLINE_DATA_DOTDOT_SIZE)
765                         return;
766                 /* device files never have a "system.data" entry */
767                 goto isdir;
768         } else if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) {
769                 /* extent mapped */
770                 if  (ext2fs_bmap2(ctx->fs, pctx->ino, inode, 0, 0, 0, 0,
771                                  &blk))
772                         return;
773                 /* device files are never extent mapped */
774                 not_device++;
775         } else {
776                 for (i=0; i < EXT2_N_BLOCKS; i++) {
777                         blk = inode->i_block[i];
778                         if (!blk)
779                                 continue;
780                         if (i >= 4)
781                                 not_device++;
782
783                         if (blk < ctx->fs->super->s_first_data_block ||
784                             blk >= ext2fs_blocks_count(ctx->fs->super) ||
785                             is_blocks_used(ctx, blk, 1))
786                                 return; /* Invalid block, can't be dir */
787                 }
788                 blk = inode->i_block[0];
789         }
790
791         /*
792          * If the mode says this is a device file and the i_links_count field
793          * is sane and we have not ruled it out as a device file previously,
794          * we declare it a device file, not a directory.
795          */
796         if ((LINUX_S_ISCHR(inode->i_mode) || LINUX_S_ISBLK(inode->i_mode)) &&
797             (inode->i_links_count == 1) && !not_device)
798                 return;
799
800         /* read the first block */
801         ehandler_operation(_("reading directory block"));
802         retval = ext2fs_read_dir_block4(ctx->fs, blk, buf, 0, pctx->ino);
803         ehandler_operation(0);
804         if (retval)
805                 return;
806
807         dirent = (struct ext2_dir_entry *) buf;
808         retval = ext2fs_get_rec_len(ctx->fs, dirent, &rec_len);
809         if (retval)
810                 return;
811         if ((ext2fs_dirent_name_len(dirent) != 1) ||
812             (dirent->name[0] != '.') ||
813             (dirent->inode != pctx->ino) ||
814             (rec_len < 12) ||
815             (rec_len % 4) ||
816             (rec_len >= ctx->fs->blocksize - 12))
817                 return;
818
819         dirent = (struct ext2_dir_entry *) (buf + rec_len);
820         retval = ext2fs_get_rec_len(ctx->fs, dirent, &rec_len);
821         if (retval)
822                 return;
823         if ((ext2fs_dirent_name_len(dirent) != 2) ||
824             (dirent->name[0] != '.') ||
825             (dirent->name[1] != '.') ||
826             (rec_len < 12) ||
827             (rec_len % 4))
828                 return;
829
830 isdir:
831         if (fix_problem(ctx, PR_1_TREAT_AS_DIRECTORY, pctx)) {
832                 inode->i_mode = (inode->i_mode & 07777) | LINUX_S_IFDIR;
833                 e2fsck_write_inode_full(ctx, pctx->ino, inode,
834                                         EXT2_INODE_SIZE(ctx->fs->super),
835                                         "check_is_really_dir");
836         }
837 }
838
839 extern errcode_t e2fsck_setup_icount(e2fsck_t ctx, const char *icount_name,
840                                      int flags, ext2_icount_t hint,
841                                      ext2_icount_t *ret)
842 {
843         unsigned int            threshold;
844         unsigned int            save_type;
845         ext2_ino_t              num_dirs;
846         errcode_t               retval;
847         char                    *tdb_dir;
848         int                     enable;
849
850         *ret = 0;
851
852         profile_get_string(ctx->profile, "scratch_files", "directory", 0, 0,
853                            &tdb_dir);
854         profile_get_uint(ctx->profile, "scratch_files",
855                          "numdirs_threshold", 0, 0, &threshold);
856         profile_get_boolean(ctx->profile, "scratch_files",
857                             "icount", 0, 1, &enable);
858
859         retval = ext2fs_get_num_dirs(ctx->fs, &num_dirs);
860         if (retval)
861                 num_dirs = 1024;        /* Guess */
862
863         if (enable && tdb_dir && !access(tdb_dir, W_OK) &&
864             (!threshold || num_dirs > threshold)) {
865                 retval = ext2fs_create_icount_tdb(ctx->fs, tdb_dir,
866                                                   flags, ret);
867                 if (retval == 0)
868                         return 0;
869         }
870         e2fsck_set_bitmap_type(ctx->fs, EXT2FS_BMAP64_RBTREE, icount_name,
871                                &save_type);
872         if (ctx->options & E2F_OPT_ICOUNT_FULLMAP)
873                 flags |= EXT2_ICOUNT_OPT_FULLMAP;
874         retval = ext2fs_create_icount2(ctx->fs, flags, 0, hint, ret);
875         ctx->fs->default_bitmap_type = save_type;
876         return retval;
877 }
878
879 static errcode_t recheck_bad_inode_checksum(ext2_filsys fs, ext2_ino_t ino,
880                                             e2fsck_t ctx,
881                                             struct problem_context *pctx)
882 {
883         errcode_t retval;
884         struct ext2_inode_large inode;
885
886         /*
887          * Reread inode.  If we don't see checksum error, then this inode
888          * has been fixed elsewhere.
889          */
890         ctx->stashed_ino = 0;
891         retval = ext2fs_read_inode_full(fs, ino, (struct ext2_inode *)&inode,
892                                         sizeof(inode));
893         if (retval && retval != EXT2_ET_INODE_CSUM_INVALID)
894                 return retval;
895         if (!retval)
896                 return 0;
897
898         /*
899          * Checksum still doesn't match.  That implies that the inode passes
900          * all the sanity checks, so maybe the checksum is simply corrupt.
901          * See if the user will go for fixing that.
902          */
903         if (!fix_problem(ctx, PR_1_INODE_ONLY_CSUM_INVALID, pctx))
904                 return 0;
905
906
907         e2fsck_pass1_fix_lock(ctx);
908         retval = ext2fs_write_inode_full(fs, ino, (struct ext2_inode *)&inode,
909                                          sizeof(inode));
910         e2fsck_pass1_fix_unlock(ctx);
911         return retval;
912 }
913
914 static void reserve_block_for_root_repair(e2fsck_t ctx)
915 {
916         blk64_t         blk = 0;
917         errcode_t       err;
918         ext2_filsys     fs = ctx->fs;
919
920         ctx->root_repair_block = 0;
921         if (ext2fs_test_inode_bitmap2(ctx->inode_used_map, EXT2_ROOT_INO))
922                 return;
923
924         err = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
925         if (err)
926                 return;
927         ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
928         ctx->root_repair_block = blk;
929 }
930
931 static void reserve_block_for_lnf_repair(e2fsck_t ctx)
932 {
933         blk64_t         blk = 0;
934         errcode_t       err;
935         ext2_filsys     fs = ctx->fs;
936         static const char name[] = "lost+found";
937         ext2_ino_t      ino;
938
939         ctx->lnf_repair_block = 0;
940         if (!ext2fs_lookup(fs, EXT2_ROOT_INO, name, sizeof(name)-1, 0, &ino))
941                 return;
942
943         err = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
944         if (err)
945                 return;
946         ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
947         ctx->lnf_repair_block = blk;
948         return;
949 }
950
951 static errcode_t get_inline_data_ea_size(ext2_filsys fs, ext2_ino_t ino,
952                                          size_t *sz)
953 {
954         void *p;
955         struct ext2_xattr_handle *handle;
956         errcode_t retval;
957
958         retval = ext2fs_xattrs_open(fs, ino, &handle);
959         if (retval)
960                 return retval;
961
962         retval = ext2fs_xattrs_read(handle);
963         if (retval)
964                 goto err;
965
966         retval = ext2fs_xattr_get(handle, "system.data", &p, sz);
967         if (retval)
968                 goto err;
969         ext2fs_free_mem(&p);
970 err:
971         (void) ext2fs_xattrs_close(&handle);
972         return retval;
973 }
974
975 static void finish_processing_inode(e2fsck_t ctx, ext2_ino_t ino,
976                                     struct problem_context *pctx,
977                                     int failed_csum)
978 {
979         if (!failed_csum)
980                 return;
981
982         /*
983          * If the inode failed the checksum and the user didn't
984          * clear the inode, test the checksum again -- if it still
985          * fails, ask the user if the checksum should be corrected.
986          */
987         pctx->errcode = recheck_bad_inode_checksum(ctx->fs, ino, ctx, pctx);
988         if (pctx->errcode)
989                 ctx->flags |= E2F_FLAG_ABORT;
990 }
991 #define FINISH_INODE_LOOP(ctx, ino, pctx, failed_csum) \
992         do { \
993                 finish_processing_inode((ctx), (ino), (pctx), (failed_csum)); \
994                 if ((ctx)->flags & E2F_FLAG_ABORT) \
995                         return; \
996         } while (0)
997
998 static int could_be_block_map(ext2_filsys fs, struct ext2_inode *inode)
999 {
1000         __u32 x;
1001         int i;
1002
1003         for (i = 0; i < EXT2_N_BLOCKS; i++) {
1004                 x = inode->i_block[i];
1005 #ifdef WORDS_BIGENDIAN
1006                 x = ext2fs_swab32(x);
1007 #endif
1008                 if (x >= ext2fs_blocks_count(fs->super))
1009                         return 0;
1010         }
1011
1012         return 1;
1013 }
1014
1015 /*
1016  * Figure out what to do with an inode that has both extents and inline data
1017  * inode flags set.  Returns -1 if we decide to erase the inode, 0 otherwise.
1018  */
1019 static int fix_inline_data_extents_file(e2fsck_t ctx,
1020                                         ext2_ino_t ino,
1021                                         struct ext2_inode *inode,
1022                                         int inode_size,
1023                                         struct problem_context *pctx)
1024 {
1025         size_t max_inline_ea_size;
1026         ext2_filsys fs = ctx->fs;
1027         int dirty = 0;
1028
1029         /* Both feature flags not set?  Just run the regular checks */
1030         if (!ext2fs_has_feature_extents(fs->super) &&
1031             !ext2fs_has_feature_inline_data(fs->super))
1032                 return 0;
1033
1034         /* Clear both flags if it's a special file */
1035         if (LINUX_S_ISCHR(inode->i_mode) ||
1036             LINUX_S_ISBLK(inode->i_mode) ||
1037             LINUX_S_ISFIFO(inode->i_mode) ||
1038             LINUX_S_ISSOCK(inode->i_mode)) {
1039                 check_extents_inlinedata(ctx, pctx);
1040                 return 0;
1041         }
1042
1043         /* If it looks like an extent tree, try to clear inlinedata */
1044         if (ext2fs_extent_header_verify(inode->i_block,
1045                                  sizeof(inode->i_block)) == 0 &&
1046             fix_problem(ctx, PR_1_CLEAR_INLINE_DATA_FOR_EXTENT, pctx)) {
1047                 inode->i_flags &= ~EXT4_INLINE_DATA_FL;
1048                 dirty = 1;
1049                 goto out;
1050         }
1051
1052         /* If it looks short enough to be inline data, try to clear extents */
1053         if (inode_size > EXT2_GOOD_OLD_INODE_SIZE)
1054                 max_inline_ea_size = inode_size -
1055                                      (EXT2_GOOD_OLD_INODE_SIZE +
1056                                       ((struct ext2_inode_large *)inode)->i_extra_isize);
1057         else
1058                 max_inline_ea_size = 0;
1059         if (EXT2_I_SIZE(inode) <
1060             EXT4_MIN_INLINE_DATA_SIZE + max_inline_ea_size &&
1061             fix_problem(ctx, PR_1_CLEAR_EXTENT_FOR_INLINE_DATA, pctx)) {
1062                 inode->i_flags &= ~EXT4_EXTENTS_FL;
1063                 dirty = 1;
1064                 goto out;
1065         }
1066
1067         /*
1068          * Too big for inline data, but no evidence of extent tree -
1069          * maybe it's a block map file?  If the mappings all look valid?
1070          */
1071         if (could_be_block_map(fs, inode) &&
1072             fix_problem(ctx, PR_1_CLEAR_EXTENT_INLINE_DATA_FLAGS, pctx)) {
1073 #ifdef WORDS_BIGENDIAN
1074                 int i;
1075
1076                 for (i = 0; i < EXT2_N_BLOCKS; i++)
1077                         inode->i_block[i] = ext2fs_swab32(inode->i_block[i]);
1078 #endif
1079
1080                 inode->i_flags &= ~(EXT4_EXTENTS_FL | EXT4_INLINE_DATA_FL);
1081                 dirty = 1;
1082                 goto out;
1083         }
1084
1085         /* Oh well, just clear the busted inode. */
1086         if (fix_problem(ctx, PR_1_CLEAR_EXTENT_INLINE_DATA_INODE, pctx)) {
1087                 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1088                 return -1;
1089         }
1090
1091 out:
1092         if (dirty)
1093                 e2fsck_write_inode(ctx, ino, inode, "pass1");
1094
1095         return 0;
1096 }
1097
1098 static void pass1_readahead(e2fsck_t ctx, dgrp_t *group, ext2_ino_t *next_ino)
1099 {
1100         ext2_ino_t inodes_in_group = 0, inodes_per_block, inodes_per_buffer;
1101         dgrp_t start = *group, grp, grp_end = ctx->fs->group_desc_count;
1102         blk64_t blocks_to_read = 0;
1103         errcode_t err = EXT2_ET_INVALID_ARGUMENT;
1104
1105 #ifdef HAVE_PTHREAD
1106         if (ctx->fs->fs_num_threads > 1)
1107                 grp_end = ctx->thread_info.et_group_end;
1108 #endif
1109         if (ctx->readahead_kb == 0)
1110                 goto out;
1111
1112         /* Keep iterating groups until we have enough to readahead */
1113         inodes_per_block = EXT2_INODES_PER_BLOCK(ctx->fs->super);
1114         for (grp = start; grp < grp_end; grp++) {
1115                 if (ext2fs_bg_flags_test(ctx->fs, grp, EXT2_BG_INODE_UNINIT))
1116                         continue;
1117                 inodes_in_group = ctx->fs->super->s_inodes_per_group -
1118                                         ext2fs_bg_itable_unused(ctx->fs, grp);
1119                 blocks_to_read += (inodes_in_group + inodes_per_block - 1) /
1120                                         inodes_per_block;
1121                 if (blocks_to_read * ctx->fs->blocksize >
1122                     ctx->readahead_kb * 1024)
1123                         break;
1124         }
1125
1126         err = e2fsck_readahead(ctx->fs, E2FSCK_READA_ITABLE, start,
1127                                grp - start + 1);
1128         if (err == EAGAIN) {
1129                 ctx->readahead_kb /= 2;
1130                 err = 0;
1131         }
1132
1133 out:
1134         if (err) {
1135                 /* Error; disable itable readahead */
1136                 *group = ctx->fs->group_desc_count;
1137                 *next_ino = ctx->fs->super->s_inodes_count;
1138         } else {
1139                 /*
1140                  * Don't do more readahead until we've reached the first inode
1141                  * of the last inode scan buffer block for the last group.
1142                  */
1143                 *group = grp + 1;
1144                 inodes_per_buffer = (ctx->inode_buffer_blocks ?
1145                                      ctx->inode_buffer_blocks :
1146                                      EXT2_INODE_SCAN_DEFAULT_BUFFER_BLOCKS) *
1147                                     ctx->fs->blocksize /
1148                                     EXT2_INODE_SIZE(ctx->fs->super);
1149                 inodes_in_group--;
1150                 *next_ino = inodes_in_group -
1151                             (inodes_in_group % inodes_per_buffer) + 1 +
1152                             (grp * ctx->fs->super->s_inodes_per_group);
1153         }
1154 }
1155
1156 /*
1157  * Check if the passed ino is one of the used superblock quota inodes.
1158  *
1159  * Before the quota inodes were journaled, older superblock quota inodes
1160  * were just regular files in the filesystem and not reserved inodes.  This
1161  * checks if the passed ino is one of the s_*_quota_inum superblock fields,
1162  * which may not always be the same as the EXT4_*_QUOTA_INO fields.
1163  */
1164 static int quota_inum_is_super(struct ext2_super_block *sb, ext2_ino_t ino)
1165 {
1166         enum quota_type qtype;
1167
1168         for (qtype = 0; qtype < MAXQUOTAS; qtype++)
1169                 if (*quota_sb_inump(sb, qtype) == ino)
1170                         return 1;
1171
1172         return 0;
1173 }
1174
1175 /*
1176  * Check if the passed ino is one of the reserved quota inodes.
1177  * This checks if the inode number is one of the reserved EXT4_*_QUOTA_INO
1178  * inodes.  These inodes may or may not be in use by the quota feature.
1179  */
1180 static int quota_inum_is_reserved(ext2_filsys fs, ext2_ino_t ino)
1181 {
1182         enum quota_type qtype;
1183
1184         for (qtype = 0; qtype < MAXQUOTAS; qtype++)
1185                 if (quota_type2inum(qtype, fs->super) == ino)
1186                         return 1;
1187
1188         return 0;
1189 }
1190
1191 static int e2fsck_should_abort(e2fsck_t ctx)
1192 {
1193         e2fsck_t global_ctx;
1194
1195         if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
1196                 return 1;
1197
1198         if (ctx->global_ctx) {
1199                 global_ctx = ctx->global_ctx;
1200                 if (global_ctx->flags & E2F_FLAG_SIGNAL_MASK)
1201                         return 1;
1202         }
1203         return 0;
1204 }
1205
1206 static void init_ext2_max_sizes()
1207 {
1208         int     i;
1209         __u64   max_sizes;
1210
1211         /*
1212          * Init ext2_max_sizes which will be immutable and shared between
1213          * threads
1214          */
1215 #define EXT2_BPP(bits) (1ULL << ((bits) - 2))
1216
1217         for (i = EXT2_MIN_BLOCK_LOG_SIZE; i <= EXT2_MAX_BLOCK_LOG_SIZE; i++) {
1218                 max_sizes = EXT2_NDIR_BLOCKS + EXT2_BPP(i);
1219                 max_sizes = max_sizes + EXT2_BPP(i) * EXT2_BPP(i);
1220                 max_sizes = max_sizes + EXT2_BPP(i) * EXT2_BPP(i) * EXT2_BPP(i);
1221                 max_sizes = (max_sizes * (1UL << i));
1222                 ext2_max_sizes[i - EXT2_MIN_BLOCK_LOG_SIZE] = max_sizes;
1223         }
1224 #undef EXT2_BPP
1225 }
1226
1227 #ifdef HAVE_PTHREAD
1228 /* TODO: tdb needs to be handled properly for multiple threads*/
1229 static int multiple_threads_supported(e2fsck_t ctx)
1230 {
1231 #ifdef  CONFIG_TDB
1232         unsigned int            threshold;
1233         ext2_ino_t              num_dirs;
1234         errcode_t               retval;
1235         char                    *tdb_dir;
1236         int                     enable;
1237
1238         profile_get_string(ctx->profile, "scratch_files", "directory", 0, 0,
1239                            &tdb_dir);
1240         profile_get_uint(ctx->profile, "scratch_files",
1241                          "numdirs_threshold", 0, 0, &threshold);
1242         profile_get_boolean(ctx->profile, "scratch_files",
1243                             "icount", 0, 1, &enable);
1244
1245         retval = ext2fs_get_num_dirs(ctx->fs, &num_dirs);
1246         if (retval)
1247                 num_dirs = 1024;        /* Guess */
1248
1249         /* tdb is unsupported now */
1250         if (enable && tdb_dir && !access(tdb_dir, W_OK) &&
1251             (!threshold || num_dirs > threshold))
1252                 return 0;
1253 #endif
1254         return 1;
1255 }
1256
1257 /**
1258  * Even though we could specify number of threads,
1259  * but it might be more than the whole filesystem
1260  * block groups, correct it here.
1261  */
1262 static void e2fsck_pass1_set_thread_num(e2fsck_t ctx)
1263 {
1264         unsigned flexbg_size = 1;
1265         ext2_filsys fs = ctx->fs;
1266         int num_threads = ctx->fs_num_threads;
1267         int max_threads;
1268
1269         if (num_threads < 1) {
1270                 num_threads = 1;
1271                 goto out;
1272         }
1273
1274         if (!multiple_threads_supported(ctx)) {
1275                 num_threads = 1;
1276                 fprintf(stderr, "Fall through single thread for pass1 "
1277                         "because tdb could not handle properly\n");
1278                 goto out;
1279         }
1280
1281         if (ext2fs_has_feature_flex_bg(fs->super))
1282                 flexbg_size = 1 << fs->super->s_log_groups_per_flex;
1283         max_threads = fs->group_desc_count / flexbg_size;
1284         if (max_threads == 0)
1285                 max_threads = 1;
1286
1287         if (num_threads > max_threads) {
1288                 fprintf(stderr, "Use max possible thread num: %d instead\n",
1289                                 max_threads);
1290                 num_threads = max_threads;
1291         }
1292 out:
1293         ctx->fs_num_threads = num_threads;
1294         ctx->fs->fs_num_threads = num_threads;
1295 }
1296 #endif
1297
1298 /*
1299  * We need call mark_table_blocks() before multiple
1300  * thread start, since all known system blocks should be
1301  * marked and checked later.
1302  */
1303 static errcode_t e2fsck_pass1_prepare(e2fsck_t ctx)
1304 {
1305         struct problem_context pctx;
1306         ext2_filsys fs = ctx->fs;
1307         unsigned long long readahead_kb;
1308
1309         init_ext2_max_sizes();
1310 #ifdef HAVE_PTHREAD
1311         e2fsck_pass1_set_thread_num(ctx);
1312 #endif
1313         /* If we can do readahead, figure out how many groups to pull in. */
1314         if (!e2fsck_can_readahead(ctx->fs))
1315                 ctx->readahead_kb = 0;
1316         else if (ctx->readahead_kb == ~0ULL)
1317                 ctx->readahead_kb = e2fsck_guess_readahead(ctx->fs);
1318
1319 #ifdef HAVE_PTHREAD
1320         /* don't use more than 1/10 of memory for threads checking */
1321         readahead_kb = get_memory_size() / (10 * ctx->fs_num_threads);
1322         /* maybe better disable RA if this is too small? */
1323         if (ctx->readahead_kb > readahead_kb)
1324                 ctx->readahead_kb = readahead_kb;
1325 #endif
1326         clear_problem_context(&pctx);
1327         if (!(ctx->options & E2F_OPT_PREEN))
1328                 fix_problem(ctx, PR_1_PASS_HEADER, &pctx);
1329
1330         pctx.errcode = e2fsck_allocate_subcluster_bitmap(ctx->fs,
1331                         _("in-use block map"), EXT2FS_BMAP64_RBTREE,
1332                         "block_found_map", &ctx->block_found_map);
1333         if (pctx.errcode) {
1334                 pctx.num = 1;
1335                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1336                 ctx->flags |= E2F_FLAG_ABORT;
1337                 return pctx.errcode;
1338         }
1339         pctx.errcode = e2fsck_allocate_block_bitmap(ctx->fs,
1340                         _("metadata block map"), EXT2FS_BMAP64_RBTREE,
1341                         "block_metadata_map", &ctx->block_metadata_map);
1342         if (pctx.errcode) {
1343                 pctx.num = 1;
1344                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1345                 ctx->flags |= E2F_FLAG_ABORT;
1346                 return pctx.errcode;
1347         }
1348
1349         mark_table_blocks(ctx);
1350         pctx.errcode = ext2fs_convert_subcluster_bitmap(ctx->fs,
1351                                                 &ctx->block_found_map);
1352         if (pctx.errcode) {
1353                 fix_problem(ctx, PR_1_CONVERT_SUBCLUSTER, &pctx);
1354                 ctx->flags |= E2F_FLAG_ABORT;
1355                 return pctx.errcode;
1356         }
1357
1358         pctx.errcode = e2fsck_allocate_block_bitmap(ctx->fs,
1359                         _("multiply claimed block map"),
1360                         EXT2FS_BMAP64_RBTREE, "block_dup_map",
1361                         &ctx->block_dup_map);
1362         if (pctx.errcode) {
1363                 pctx.num = 3;
1364                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR,
1365                             &pctx);
1366                 /* Should never get here */
1367                 ctx->flags |= E2F_FLAG_ABORT;
1368                 return pctx.errcode;
1369         }
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 #ifdef  HAVE_PTHREAD
1377         pthread_mutex_init(&ctx->fs_fix_mutex, NULL);
1378         pthread_rwlock_init(&ctx->fs_block_map_rwlock, NULL);
1379 #endif
1380
1381         return 0;
1382 }
1383
1384 static void e2fsck_pass1_post(e2fsck_t ctx)
1385 {
1386         struct problem_context pctx;
1387         ext2_filsys fs = ctx->fs;
1388
1389         char *block_buf =
1390                 (char *)e2fsck_allocate_memory(ctx, ctx->fs->blocksize * 3,
1391                                               "block interate buffer");
1392         reserve_block_for_root_repair(ctx);
1393         reserve_block_for_lnf_repair(ctx);
1394
1395         /*
1396          * If any extended attribute blocks' reference counts need to
1397          * be adjusted, either up (ctx->refcount_extra), or down
1398          * (ctx->refcount), then fix them.
1399          */
1400         if (ctx->refcount) {
1401                 adjust_extattr_refcount(ctx, ctx->refcount, block_buf, -1);
1402                 ea_refcount_free(ctx->refcount);
1403                 ctx->refcount = 0;
1404         }
1405         if (ctx->refcount_extra) {
1406                 adjust_extattr_refcount(ctx, ctx->refcount_extra,
1407                                         block_buf, +1);
1408                 ea_refcount_free(ctx->refcount_extra);
1409                 ctx->refcount_extra = 0;
1410         }
1411
1412         if (ctx->invalid_bitmaps)
1413                 handle_fs_bad_blocks(ctx);
1414
1415         /* We don't need the block_ea_map any more */
1416         if (ctx->block_ea_map) {
1417                 ext2fs_free_block_bitmap(ctx->block_ea_map);
1418                 ctx->block_ea_map = 0;
1419         }
1420
1421         if (ctx->flags & E2F_FLAG_RESIZE_INODE) {
1422                 struct ext2_inode *inode;
1423                 int inode_size = EXT2_INODE_SIZE(fs->super);
1424                 inode = e2fsck_allocate_memory(ctx, inode_size,
1425                                                "scratch inode");
1426
1427                 clear_problem_context(&pctx);
1428                 pctx.errcode = ext2fs_create_resize_inode(fs);
1429                 if (pctx.errcode) {
1430                         if (!fix_problem(ctx, PR_1_RESIZE_INODE_CREATE,
1431                                          &pctx)) {
1432                                 ctx->flags |= E2F_FLAG_ABORT;
1433                                 ext2fs_free_mem(&inode);
1434                                 ext2fs_free_mem(&block_buf);
1435                                 return;
1436                         }
1437                         pctx.errcode = 0;
1438                 }
1439                 if (!pctx.errcode) {
1440                         e2fsck_read_inode(ctx, EXT2_RESIZE_INO, inode,
1441                                           "recreate inode");
1442                         inode->i_mtime = ctx->now;
1443                         e2fsck_write_inode(ctx, EXT2_RESIZE_INO, inode,
1444                                            "recreate inode");
1445                 }
1446                 ctx->flags &= ~E2F_FLAG_RESIZE_INODE;
1447                 ext2fs_free_mem(&inode);
1448         }
1449
1450         if (ctx->flags & E2F_FLAG_RESTART) {
1451                 ext2fs_free_mem(&block_buf);
1452                 return;
1453         }
1454
1455         if (ctx->block_dup_map) {
1456                 if (!(ctx->flags & E2F_FLAG_DUP_BLOCK)) {
1457                         ext2fs_free_mem(&block_buf);
1458                         return;
1459                 }
1460                 if (ctx->options & E2F_OPT_PREEN) {
1461                         clear_problem_context(&pctx);
1462                         fix_problem(ctx, PR_1_DUP_BLOCKS_PREENSTOP, &pctx);
1463                 }
1464                 e2fsck_pass1_dupblocks(ctx, block_buf);
1465                 ext2fs_free_mem(&block_buf);
1466                 ctx->flags &= ~E2F_FLAG_DUP_BLOCK;
1467         }
1468 }
1469
1470
1471 void e2fsck_pass1_run(e2fsck_t ctx)
1472 {
1473         int     i;
1474         ext2_filsys fs = ctx->fs;
1475         ext2_ino_t      ino = 0;
1476         struct ext2_inode *inode = NULL;
1477         ext2_inode_scan scan = NULL;
1478         char            *block_buf = NULL;
1479 #ifdef RESOURCE_TRACK
1480         struct resource_track   rtrack;
1481 #endif
1482         unsigned char   frag, fsize;
1483         struct          problem_context pctx;
1484         struct          scan_callback_struct scan_struct;
1485         struct ext2_super_block *sb = ctx->fs->super;
1486         const char      *old_op;
1487         const char      *eop_next_inode = _("getting next inode from scan");
1488         int             imagic_fs, extent_fs, inlinedata_fs, casefold_fs;
1489         int             low_dtime_check = 1;
1490         unsigned int    inode_size = EXT2_INODE_SIZE(fs->super);
1491         unsigned int    bufsize;
1492         int             failed_csum = 0;
1493         ext2_ino_t      ino_threshold = 0;
1494         dgrp_t          ra_group = 0;
1495         struct ea_quota ea_ibody_quota;
1496         struct process_inode_block *inodes_to_process;
1497         int             process_inode_count;
1498
1499         init_resource_track(&rtrack, ctx->fs->io);
1500         clear_problem_context(&pctx);
1501
1502         pass1_readahead(ctx, &ra_group, &ino_threshold);
1503         if (ext2fs_has_feature_dir_index(fs->super) &&
1504             !(ctx->options & E2F_OPT_NO)) {
1505                 if (ext2fs_u32_list_create(&ctx->dirs_to_hash, 50))
1506                         ctx->dirs_to_hash = 0;
1507         }
1508
1509 #ifdef MTRACE
1510         mtrace_print("Pass 1");
1511 #endif
1512
1513         imagic_fs = ext2fs_has_feature_imagic_inodes(sb);
1514         extent_fs = ext2fs_has_feature_extents(sb);
1515         inlinedata_fs = ext2fs_has_feature_inline_data(sb);
1516         casefold_fs = ext2fs_has_feature_casefold(sb);
1517
1518         /*
1519          * Allocate bitmaps structures
1520          */
1521         pctx.errcode = e2fsck_allocate_inode_bitmap(fs, _("in-use inode map"),
1522                                                     EXT2FS_BMAP64_RBTREE,
1523                                                     "inode_used_map",
1524                                                     &ctx->inode_used_map);
1525         if (pctx.errcode) {
1526                 pctx.num = 1;
1527                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1528                 ctx->flags |= E2F_FLAG_ABORT;
1529                 return;
1530         }
1531         pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
1532                         _("directory inode map"),
1533                         ctx->global_ctx ? EXT2FS_BMAP64_RBTREE :
1534                         EXT2FS_BMAP64_AUTODIR,
1535                         "inode_dir_map", &ctx->inode_dir_map);
1536         if (pctx.errcode) {
1537                 pctx.num = 2;
1538                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1539                 ctx->flags |= E2F_FLAG_ABORT;
1540                 return;
1541         }
1542         pctx.errcode = e2fsck_allocate_inode_bitmap(fs,
1543                         _("regular file inode map"), EXT2FS_BMAP64_RBTREE,
1544                         "inode_reg_map", &ctx->inode_reg_map);
1545         if (pctx.errcode) {
1546                 pctx.num = 6;
1547                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1548                 ctx->flags |= E2F_FLAG_ABORT;
1549                 return;
1550         }
1551         if (casefold_fs) {
1552                 pctx.errcode =
1553                         e2fsck_allocate_inode_bitmap(fs,
1554                                                      _("inode casefold map"),
1555                                                      EXT2FS_BMAP64_RBTREE,
1556                                                      "inode_casefold_map",
1557                                                      &ctx->inode_casefold_map);
1558                 if (pctx.errcode) {
1559                         pctx.num = 1;
1560                         fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
1561                         ctx->flags |= E2F_FLAG_ABORT;
1562                         return;
1563                 }
1564         }
1565         pctx.errcode = e2fsck_setup_icount(ctx, "inode_link_info", 0, NULL,
1566                                            &ctx->inode_link_info);
1567         if (pctx.errcode) {
1568                 fix_problem(ctx, PR_1_ALLOCATE_ICOUNT, &pctx);
1569                 ctx->flags |= E2F_FLAG_ABORT;
1570                 return;
1571         }
1572         bufsize = inode_size;
1573         if (bufsize < sizeof(struct ext2_inode_large))
1574                 bufsize = sizeof(struct ext2_inode_large);
1575         inode = (struct ext2_inode *)
1576                 e2fsck_allocate_memory(ctx, bufsize, "scratch inode");
1577
1578         inodes_to_process = (struct process_inode_block *)
1579                 e2fsck_allocate_memory(ctx,
1580                                        (ctx->process_inode_size *
1581                                         sizeof(struct process_inode_block)),
1582                                        "array of inodes to process");
1583         process_inode_count = 0;
1584
1585         pctx.errcode = ext2fs_init_dblist(fs, 0);
1586         if (pctx.errcode) {
1587                 fix_problem(ctx, PR_1_ALLOCATE_DBCOUNT, &pctx);
1588                 ctx->flags |= E2F_FLAG_ABORT;
1589                 goto endit;
1590         }
1591
1592         /*
1593          * If the last orphan field is set, clear it, since the pass1
1594          * processing will automatically find and clear the orphans.
1595          * In the future, we may want to try using the last_orphan
1596          * linked list ourselves, but for now, we clear it so that the
1597          * ext3 mount code won't get confused.
1598          */
1599         if (!(ctx->options & E2F_OPT_READONLY)) {
1600                 if (fs->super->s_last_orphan) {
1601                         fs->super->s_last_orphan = 0;
1602                         ext2fs_mark_super_dirty(fs);
1603                 }
1604         }
1605
1606         block_buf = (char *) e2fsck_allocate_memory(ctx, fs->blocksize * 3,
1607                                                     "block interate buffer");
1608         if (EXT2_INODE_SIZE(fs->super) == EXT2_GOOD_OLD_INODE_SIZE)
1609                 e2fsck_use_inode_shortcuts(ctx, 1);
1610         e2fsck_intercept_block_allocations(ctx);
1611         old_op = ehandler_operation(_("opening inode scan"));
1612         pctx.errcode = ext2fs_open_inode_scan(fs, ctx->inode_buffer_blocks,
1613                                               &scan);
1614         ehandler_operation(old_op);
1615         if (pctx.errcode) {
1616                 fix_problem(ctx, PR_1_ISCAN_ERROR, &pctx);
1617                 ctx->flags |= E2F_FLAG_ABORT;
1618                 goto endit;
1619         }
1620         ext2fs_inode_scan_flags(scan, EXT2_SF_SKIP_MISSING_ITABLE |
1621                                       EXT2_SF_WARN_GARBAGE_INODES, 0);
1622         ctx->stashed_inode = inode;
1623         scan_struct.ctx = ctx;
1624         scan_struct.block_buf = block_buf;
1625         scan_struct.inodes_to_process = inodes_to_process;
1626         scan_struct.process_inode_count = &process_inode_count;
1627         ext2fs_set_inode_callback(scan, scan_callback, &scan_struct);
1628         if (ctx->progress && ((ctx->progress)(ctx, 1, 0,
1629                                               ctx->fs->group_desc_count)))
1630                 goto endit;
1631         if ((fs->super->s_wtime &&
1632              fs->super->s_wtime < fs->super->s_inodes_count) ||
1633             (fs->super->s_mtime &&
1634              fs->super->s_mtime < fs->super->s_inodes_count) ||
1635             (fs->super->s_mkfs_time &&
1636              fs->super->s_mkfs_time < fs->super->s_inodes_count))
1637                 low_dtime_check = 0;
1638
1639         /* Set up ctx->lost_and_found if possible */
1640         (void) e2fsck_get_lost_and_found(ctx, 0);
1641
1642 #ifdef HAVE_PTHREAD
1643         if (ctx->global_ctx) {
1644                 if (ctx->options & E2F_OPT_DEBUG &&
1645                     ctx->options & E2F_OPT_MULTITHREAD)
1646                         fprintf(stderr, "thread %d jumping to group %d\n",
1647                                         ctx->thread_info.et_thread_index,
1648                                         ctx->thread_info.et_group_start);
1649                 pctx.errcode = ext2fs_inode_scan_goto_blockgroup(scan,
1650                                         ctx->thread_info.et_group_start);
1651                 if (pctx.errcode) {
1652                         fix_problem(ctx, PR_1_PASS_HEADER, &pctx);
1653                         ctx->flags |= E2F_FLAG_ABORT;
1654                         goto endit;
1655                 }
1656         }
1657 #endif
1658
1659         while (1) {
1660                 if (ino % (fs->super->s_inodes_per_group * 4) == 1) {
1661                         if (e2fsck_mmp_update(fs))
1662                                 fatal_error(ctx, 0);
1663                 }
1664                 old_op = ehandler_operation(eop_next_inode);
1665                 pctx.errcode = ext2fs_get_next_inode_full(scan, &ino,
1666                                                           inode, inode_size);
1667                 if (ino > ino_threshold)
1668                         pass1_readahead(ctx, &ra_group, &ino_threshold);
1669                 ehandler_operation(old_op);
1670                 if (e2fsck_should_abort(ctx))
1671                         goto endit;
1672                 if (pctx.errcode == EXT2_ET_BAD_BLOCK_IN_INODE_TABLE) {
1673                         /*
1674                          * If badblocks says badblocks is bad, offer to clear
1675                          * the list, update the in-core bb list, and restart
1676                          * the inode scan.
1677                          */
1678                         if (ino == EXT2_BAD_INO &&
1679                             fix_problem(ctx, PR_1_BADBLOCKS_IN_BADBLOCKS,
1680                                         &pctx)) {
1681                                 errcode_t err;
1682
1683                                 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1684                                 ext2fs_badblocks_list_free(ctx->fs->badblocks);
1685                                 ctx->fs->badblocks = NULL;
1686                                 err = ext2fs_read_bb_inode(ctx->fs,
1687                                                         &ctx->fs->badblocks);
1688                                 if (err) {
1689                                         fix_problem(ctx, PR_1_ISCAN_ERROR,
1690                                                     &pctx);
1691                                         ctx->flags |= E2F_FLAG_ABORT;
1692                                 } else
1693                                         ctx->flags |= E2F_FLAG_RESTART;
1694                                 goto endit;
1695                         }
1696                         if (!ctx->inode_bb_map)
1697                                 alloc_bb_map(ctx);
1698                         ext2fs_mark_inode_bitmap2(ctx->inode_bb_map, ino);
1699                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
1700                         continue;
1701                 }
1702                 if (pctx.errcode == EXT2_ET_SCAN_FINISHED)
1703                         break;
1704                 if (pctx.errcode &&
1705                     pctx.errcode != EXT2_ET_INODE_CSUM_INVALID &&
1706                     pctx.errcode != EXT2_ET_INODE_IS_GARBAGE) {
1707                         fix_problem(ctx, PR_1_ISCAN_ERROR, &pctx);
1708                         ctx->flags |= E2F_FLAG_ABORT;
1709                         goto endit;
1710                 }
1711                 if (!ino)
1712                         break;
1713 #ifdef HAVE_PTHREAD
1714                 if (ctx->global_ctx)
1715                         ctx->thread_info.et_inode_number++;
1716 #endif
1717                 pctx.ino = ino;
1718                 pctx.inode = inode;
1719                 ctx->stashed_ino = ino;
1720
1721                 /* Clear trashed inode? */
1722                 if (pctx.errcode == EXT2_ET_INODE_IS_GARBAGE &&
1723                     inode->i_links_count > 0 &&
1724                     fix_problem(ctx, PR_1_INODE_IS_GARBAGE, &pctx)) {
1725                         pctx.errcode = 0;
1726                         e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1727                 }
1728                 failed_csum = pctx.errcode != 0;
1729
1730                 /*
1731                  * Check for inodes who might have been part of the
1732                  * orphaned list linked list.  They should have gotten
1733                  * dealt with by now, unless the list had somehow been
1734                  * corrupted.
1735                  *
1736                  * FIXME: In the future, inodes which are still in use
1737                  * (and which are therefore) pending truncation should
1738                  * be handled specially.  Right now we just clear the
1739                  * dtime field, and the normal e2fsck handling of
1740                  * inodes where i_size and the inode blocks are
1741                  * inconsistent is to fix i_size, instead of releasing
1742                  * the extra blocks.  This won't catch the inodes that
1743                  * was at the end of the orphan list, but it's better
1744                  * than nothing.  The right answer is that there
1745                  * shouldn't be any bugs in the orphan list handling.  :-)
1746                  */
1747                 if (inode->i_dtime && low_dtime_check &&
1748                     inode->i_dtime < ctx->fs->super->s_inodes_count) {
1749                         if (fix_problem(ctx, PR_1_LOW_DTIME, &pctx)) {
1750                                 inode->i_dtime = inode->i_links_count ?
1751                                         0 : ctx->now;
1752                                 e2fsck_write_inode(ctx, ino, inode,
1753                                                    "pass1");
1754                                 failed_csum = 0;
1755                         }
1756                 }
1757
1758                 if (inode->i_links_count) {
1759                         pctx.errcode = ext2fs_icount_store(ctx->inode_link_info,
1760                                            ino, inode->i_links_count);
1761                         if (pctx.errcode) {
1762                                 pctx.num = inode->i_links_count;
1763                                 fix_problem(ctx, PR_1_ICOUNT_STORE, &pctx);
1764                                 ctx->flags |= E2F_FLAG_ABORT;
1765                                 goto endit;
1766                         }
1767                 } else if ((ino >= EXT2_FIRST_INODE(fs->super)) &&
1768                            !quota_inum_is_reserved(fs, ino)) {
1769                         if (!inode->i_dtime && inode->i_mode) {
1770                                 if (fix_problem(ctx,
1771                                             PR_1_ZERO_DTIME, &pctx)) {
1772                                         inode->i_dtime = ctx->now;
1773                                         e2fsck_write_inode(ctx, ino, inode,
1774                                                            "pass1");
1775                                         failed_csum = 0;
1776                                 }
1777                         }
1778                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
1779                         continue;
1780                 }
1781
1782                 if ((inode->i_flags & EXT4_CASEFOLD_FL) &&
1783                     ((!LINUX_S_ISDIR(inode->i_mode) &&
1784                       fix_problem(ctx, PR_1_CASEFOLD_NONDIR, &pctx)) ||
1785                      (!casefold_fs &&
1786                       fix_problem(ctx, PR_1_CASEFOLD_FEATURE, &pctx)))) {
1787                         inode->i_flags &= ~EXT4_CASEFOLD_FL;
1788                         e2fsck_write_inode(ctx, ino, inode, "pass1");
1789                 }
1790
1791                 /* Conflicting inlinedata/extents inode flags? */
1792                 if ((inode->i_flags & EXT4_INLINE_DATA_FL) &&
1793                     (inode->i_flags & EXT4_EXTENTS_FL)) {
1794                         int res = fix_inline_data_extents_file(ctx, ino, inode,
1795                                                                inode_size,
1796                                                                &pctx);
1797                         if (res < 0) {
1798                                 /* skip FINISH_INODE_LOOP */
1799                                 continue;
1800                         }
1801                 }
1802
1803                 /* Test for incorrect inline_data flags settings. */
1804                 if ((inode->i_flags & EXT4_INLINE_DATA_FL) && !inlinedata_fs &&
1805                     (ino >= EXT2_FIRST_INODE(fs->super))) {
1806                         size_t size = 0;
1807
1808                         pctx.errcode = get_inline_data_ea_size(fs, ino, &size);
1809                         if (!pctx.errcode &&
1810                             fix_problem(ctx, PR_1_INLINE_DATA_FEATURE, &pctx)) {
1811                                 e2fsck_pass1_fix_lock(ctx);
1812                                 ext2fs_set_feature_inline_data(sb);
1813                                 ext2fs_mark_super_dirty(fs);
1814                                 e2fsck_pass1_fix_unlock(ctx);
1815                                 inlinedata_fs = 1;
1816                         } else if (fix_problem(ctx, PR_1_INLINE_DATA_SET, &pctx)) {
1817                                 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1818                                 /* skip FINISH_INODE_LOOP */
1819                                 continue;
1820                         }
1821                 }
1822
1823                 /* Test for inline data flag but no attr */
1824                 if ((inode->i_flags & EXT4_INLINE_DATA_FL) && inlinedata_fs &&
1825                     (ino >= EXT2_FIRST_INODE(fs->super))) {
1826                         size_t size = 0;
1827                         errcode_t err;
1828                         int flags;
1829
1830                         flags = fs->flags;
1831                         if (failed_csum)
1832                                 fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
1833                         err = get_inline_data_ea_size(fs, ino, &size);
1834                         fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
1835                                     (fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
1836
1837                         switch (err) {
1838                         case 0:
1839                                 /* Everything is awesome... */
1840                                 break;
1841                         case EXT2_ET_BAD_EA_BLOCK_NUM:
1842                         case EXT2_ET_BAD_EA_HASH:
1843                         case EXT2_ET_BAD_EA_HEADER:
1844                         case EXT2_ET_EA_BAD_NAME_LEN:
1845                         case EXT2_ET_EA_BAD_VALUE_SIZE:
1846                         case EXT2_ET_EA_KEY_NOT_FOUND:
1847                         case EXT2_ET_EA_NO_SPACE:
1848                         case EXT2_ET_MISSING_EA_FEATURE:
1849                         case EXT2_ET_INLINE_DATA_CANT_ITERATE:
1850                         case EXT2_ET_INLINE_DATA_NO_BLOCK:
1851                         case EXT2_ET_INLINE_DATA_NO_SPACE:
1852                         case EXT2_ET_NO_INLINE_DATA:
1853                         case EXT2_ET_EXT_ATTR_CSUM_INVALID:
1854                         case EXT2_ET_EA_BAD_VALUE_OFFSET:
1855                         case EXT2_ET_EA_INODE_CORRUPTED:
1856                                 /* broken EA or no system.data EA; truncate */
1857                                 if (fix_problem(ctx, PR_1_INLINE_DATA_NO_ATTR,
1858                                                 &pctx)) {
1859                                         err = ext2fs_inode_size_set(fs, inode, 0);
1860                                         if (err) {
1861                                                 pctx.errcode = err;
1862                                                 ctx->flags |= E2F_FLAG_ABORT;
1863                                                 goto endit;
1864                                         }
1865                                         inode->i_flags &= ~EXT4_INLINE_DATA_FL;
1866                                         memset(&inode->i_block, 0,
1867                                                sizeof(inode->i_block));
1868                                         e2fsck_write_inode(ctx, ino, inode,
1869                                                            "pass1");
1870                                         failed_csum = 0;
1871                                 }
1872                                 break;
1873                         default:
1874                                 /* Some other kind of non-xattr error? */
1875                                 pctx.errcode = err;
1876                                 ctx->flags |= E2F_FLAG_ABORT;
1877                                 goto endit;
1878                         }
1879                 }
1880
1881                 /*
1882                  * Test for incorrect extent flag settings.
1883                  *
1884                  * On big-endian machines we must be careful:
1885                  * When the inode is read, the i_block array is not swapped
1886                  * if the extent flag is set.  Therefore if we are testing
1887                  * for or fixing a wrongly-set flag, we must potentially
1888                  * (un)swap before testing, or after fixing.
1889                  */
1890
1891                 /*
1892                  * In this case the extents flag was set when read, so
1893                  * extent_header_verify is ok.  If the inode is cleared,
1894                  * no need to swap... so no extra swapping here.
1895                  */
1896                 if ((inode->i_flags & EXT4_EXTENTS_FL) && !extent_fs &&
1897                     (inode->i_links_count || (ino == EXT2_BAD_INO) ||
1898                      (ino == EXT2_ROOT_INO) || (ino == EXT2_JOURNAL_INO))) {
1899                         if ((ext2fs_extent_header_verify(inode->i_block,
1900                                                  sizeof(inode->i_block)) == 0) &&
1901                             fix_problem(ctx, PR_1_EXTENT_FEATURE, &pctx)) {
1902                                 e2fsck_pass1_fix_lock(ctx);
1903                                 ext2fs_set_feature_extents(sb);
1904                                 ext2fs_mark_super_dirty(fs);
1905                                 extent_fs = 1;
1906                                 e2fsck_pass1_fix_unlock(ctx);
1907                         } else if (fix_problem(ctx, PR_1_EXTENTS_SET, &pctx)) {
1908                         clear_inode:
1909                                 e2fsck_clear_inode(ctx, ino, inode, 0, "pass1");
1910                                 if (ino == EXT2_BAD_INO)
1911                                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map,
1912                                                                  ino);
1913                                 /* skip FINISH_INODE_LOOP */
1914                                 continue;
1915                         }
1916                 }
1917
1918                 /*
1919                  * For big-endian machines:
1920                  * If the inode didn't have the extents flag set when it
1921                  * was read, then the i_blocks array was swapped.  To test
1922                  * as an extents header, we must swap it back first.
1923                  * IF we then set the extents flag, the entire i_block
1924                  * array must be un/re-swapped to make it proper extents data.
1925                  */
1926                 if (extent_fs && !(inode->i_flags & EXT4_EXTENTS_FL) &&
1927                     (inode->i_links_count || (ino == EXT2_BAD_INO) ||
1928                      (ino == EXT2_ROOT_INO) || (ino == EXT2_JOURNAL_INO)) &&
1929                     (LINUX_S_ISREG(inode->i_mode) ||
1930                      LINUX_S_ISDIR(inode->i_mode))) {
1931                         void *ehp;
1932 #ifdef WORDS_BIGENDIAN
1933                         __u32 tmp_block[EXT2_N_BLOCKS];
1934
1935                         for (i = 0; i < EXT2_N_BLOCKS; i++)
1936                                 tmp_block[i] = ext2fs_swab32(inode->i_block[i]);
1937                         ehp = tmp_block;
1938 #else
1939                         ehp = inode->i_block;
1940 #endif
1941                         if ((ext2fs_extent_header_verify(ehp,
1942                                          sizeof(inode->i_block)) == 0) &&
1943                             (fix_problem(ctx, PR_1_UNSET_EXTENT_FL, &pctx))) {
1944                                 inode->i_flags |= EXT4_EXTENTS_FL;
1945 #ifdef WORDS_BIGENDIAN
1946                                 memcpy(inode->i_block, tmp_block,
1947                                        sizeof(inode->i_block));
1948 #endif
1949                                 e2fsck_write_inode(ctx, ino, inode, "pass1");
1950                                 failed_csum = 0;
1951                         }
1952                 }
1953
1954                 if (ino == EXT2_BAD_INO) {
1955                         struct process_block_struct pb;
1956
1957                         if ((failed_csum || inode->i_mode || inode->i_uid ||
1958                              inode->i_gid || inode->i_links_count ||
1959                              (inode->i_flags & EXT4_INLINE_DATA_FL) ||
1960                              inode->i_file_acl) &&
1961                             fix_problem(ctx, PR_1_INVALID_BAD_INODE, &pctx)) {
1962                                 memset(inode, 0, sizeof(struct ext2_inode));
1963                                 e2fsck_write_inode(ctx, ino, inode,
1964                                                    "clear bad inode");
1965                                 failed_csum = 0;
1966                         }
1967
1968                         e2fsck_pass1_block_map_r_lock(ctx);
1969                         pctx.errcode = ext2fs_copy_bitmap(ctx->global_ctx ?
1970                                         ctx->global_ctx->block_found_map :
1971                                         ctx->block_found_map, &pb.fs_meta_blocks);
1972                         e2fsck_pass1_block_map_r_unlock(ctx);
1973                         if (pctx.errcode) {
1974                                 pctx.num = 4;
1975                                 fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, &pctx);
1976                                 ctx->flags |= E2F_FLAG_ABORT;
1977                                 goto endit;
1978                         }
1979                         pb.ino = EXT2_BAD_INO;
1980                         pb.num_blocks = pb.last_block = 0;
1981                         pb.last_db_block = -1;
1982                         pb.num_illegal_blocks = 0;
1983                         pb.suppress = 0; pb.clear = 0; pb.is_dir = 0;
1984                         pb.is_reg = 0; pb.fragmented = 0; pb.bbcheck = 0;
1985                         pb.inode = inode;
1986                         pb.pctx = &pctx;
1987                         pb.ctx = ctx;
1988                         pctx.errcode = ext2fs_block_iterate3(fs, ino, 0,
1989                                      block_buf, process_bad_block, &pb);
1990                         ext2fs_free_block_bitmap(pb.fs_meta_blocks);
1991                         if (pctx.errcode) {
1992                                 fix_problem(ctx, PR_1_BLOCK_ITERATE, &pctx);
1993                                 ctx->flags |= E2F_FLAG_ABORT;
1994                                 goto endit;
1995                         }
1996                         if (pb.bbcheck)
1997                                 if (!fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK_PROMPT, &pctx)) {
1998                                 ctx->flags |= E2F_FLAG_ABORT;
1999                                 goto endit;
2000                         }
2001                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
2002                         clear_problem_context(&pctx);
2003                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2004                         continue;
2005                 } else if (ino == EXT2_ROOT_INO) {
2006                         /*
2007                          * Make sure the root inode is a directory; if
2008                          * not, offer to clear it.  It will be
2009                          * regenerated in pass #3.
2010                          */
2011                         if (!LINUX_S_ISDIR(inode->i_mode)) {
2012                                 if (fix_problem(ctx, PR_1_ROOT_NO_DIR, &pctx))
2013                                         goto clear_inode;
2014                         }
2015                         /*
2016                          * If dtime is set, offer to clear it.  mke2fs
2017                          * version 0.2b created filesystems with the
2018                          * dtime field set for the root and lost+found
2019                          * directories.  We won't worry about
2020                          * /lost+found, since that can be regenerated
2021                          * easily.  But we will fix the root directory
2022                          * as a special case.
2023                          */
2024                         if (inode->i_dtime && inode->i_links_count) {
2025                                 if (fix_problem(ctx, PR_1_ROOT_DTIME, &pctx)) {
2026                                         inode->i_dtime = 0;
2027                                         e2fsck_write_inode(ctx, ino, inode,
2028                                                            "pass1");
2029                                         failed_csum = 0;
2030                                 }
2031                         }
2032                 } else if (ino == EXT2_JOURNAL_INO) {
2033                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
2034                         if (fs->super->s_journal_inum == EXT2_JOURNAL_INO) {
2035                                 if (!LINUX_S_ISREG(inode->i_mode) &&
2036                                     fix_problem(ctx, PR_1_JOURNAL_BAD_MODE,
2037                                                 &pctx)) {
2038                                         inode->i_mode = LINUX_S_IFREG;
2039                                         e2fsck_write_inode(ctx, ino, inode,
2040                                                            "pass1");
2041                                         failed_csum = 0;
2042                                 }
2043                                 check_blocks(ctx, &pctx, block_buf, NULL);
2044                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2045                                 continue;
2046                         }
2047                         if ((inode->i_links_count ||
2048                              inode->i_blocks || inode->i_block[0]) &&
2049                             fix_problem(ctx, PR_1_JOURNAL_INODE_NOT_CLEAR,
2050                                         &pctx)) {
2051                                 memset(inode, 0, inode_size);
2052                                 ext2fs_icount_store(ctx->inode_link_info,
2053                                                     ino, 0);
2054                                 e2fsck_write_inode_full(ctx, ino, inode,
2055                                                         inode_size, "pass1");
2056                                 failed_csum = 0;
2057                         }
2058                 } else if (quota_inum_is_reserved(fs, ino)) {
2059                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
2060                         if (ext2fs_has_feature_quota(fs->super) &&
2061                             quota_inum_is_super(fs->super, ino)) {
2062                                 if (!LINUX_S_ISREG(inode->i_mode) &&
2063                                     fix_problem(ctx, PR_1_QUOTA_BAD_MODE,
2064                                                         &pctx)) {
2065                                         inode->i_mode = LINUX_S_IFREG;
2066                                         e2fsck_write_inode(ctx, ino, inode,
2067                                                         "pass1");
2068                                         failed_csum = 0;
2069                                 }
2070                                 check_blocks(ctx, &pctx, block_buf, NULL);
2071                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2072                                 continue;
2073                         }
2074                         if ((inode->i_links_count ||
2075                              inode->i_blocks || inode->i_block[0]) &&
2076                             fix_problem(ctx, PR_1_QUOTA_INODE_NOT_CLEAR,
2077                                         &pctx)) {
2078                                 memset(inode, 0, inode_size);
2079                                 ext2fs_icount_store(ctx->inode_link_info,
2080                                                     ino, 0);
2081                                 e2fsck_write_inode_full(ctx, ino, inode,
2082                                                         inode_size, "pass1");
2083                                 failed_csum = 0;
2084                         }
2085                 } else if (ino < EXT2_FIRST_INODE(fs->super)) {
2086                         problem_t problem = 0;
2087
2088                         ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
2089                         if (ino == EXT2_BOOT_LOADER_INO) {
2090                                 if (LINUX_S_ISDIR(inode->i_mode))
2091                                         problem = PR_1_RESERVED_BAD_MODE;
2092                         } else if (ino == EXT2_RESIZE_INO) {
2093                                 if (inode->i_mode &&
2094                                     !LINUX_S_ISREG(inode->i_mode))
2095                                         problem = PR_1_RESERVED_BAD_MODE;
2096                         } else {
2097                                 if (inode->i_mode != 0)
2098                                         problem = PR_1_RESERVED_BAD_MODE;
2099                         }
2100                         if (problem) {
2101                                 if (fix_problem(ctx, problem, &pctx)) {
2102                                         inode->i_mode = 0;
2103                                         e2fsck_write_inode(ctx, ino, inode,
2104                                                            "pass1");
2105                                         failed_csum = 0;
2106                                 }
2107                         }
2108                         check_blocks(ctx, &pctx, block_buf, NULL);
2109                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2110                         continue;
2111                 }
2112
2113                 if (!inode->i_links_count) {
2114                         FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2115                         continue;
2116                 }
2117                 /*
2118                  * n.b.  0.3c ext2fs code didn't clear i_links_count for
2119                  * deleted files.  Oops.
2120                  *
2121                  * Since all new ext2 implementations get this right,
2122                  * we now assume that the case of non-zero
2123                  * i_links_count and non-zero dtime means that we
2124                  * should keep the file, not delete it.
2125                  *
2126                  */
2127                 if (inode->i_dtime) {
2128                         if (fix_problem(ctx, PR_1_SET_DTIME, &pctx)) {
2129                                 inode->i_dtime = 0;
2130                                 e2fsck_write_inode(ctx, ino, inode, "pass1");
2131                                 failed_csum = 0;
2132                         }
2133                 }
2134
2135                 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
2136                 switch (fs->super->s_creator_os) {
2137                     case EXT2_OS_HURD:
2138                         frag = inode->osd2.hurd2.h_i_frag;
2139                         fsize = inode->osd2.hurd2.h_i_fsize;
2140                         break;
2141                     default:
2142                         frag = fsize = 0;
2143                 }
2144
2145                 if (inode->i_faddr || frag || fsize ||
2146                     (!ext2fs_has_feature_largedir(fs->super) &&
2147                     (LINUX_S_ISDIR(inode->i_mode) && inode->i_size_high)))
2148                         mark_inode_bad(ctx, ino);
2149                 if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
2150                     !ext2fs_has_feature_64bit(fs->super) &&
2151                     inode->osd2.linux2.l_i_file_acl_high != 0)
2152                         mark_inode_bad(ctx, ino);
2153                 if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
2154                     !ext2fs_has_feature_huge_file(fs->super) &&
2155                     (inode->osd2.linux2.l_i_blocks_hi != 0))
2156                         mark_inode_bad(ctx, ino);
2157                 if (inode->i_flags & EXT2_IMAGIC_FL) {
2158                         if (imagic_fs) {
2159                                 if (!ctx->inode_imagic_map)
2160                                         alloc_imagic_map(ctx);
2161                                 ext2fs_mark_inode_bitmap2(ctx->inode_imagic_map,
2162                                                          ino);
2163                         } else {
2164                                 if (fix_problem(ctx, PR_1_SET_IMAGIC, &pctx)) {
2165                                         inode->i_flags &= ~EXT2_IMAGIC_FL;
2166                                         e2fsck_write_inode(ctx, ino,
2167                                                            inode, "pass1");
2168                                         failed_csum = 0;
2169                                 }
2170                         }
2171                 }
2172
2173                 check_inode_extra_space(ctx, &pctx, &ea_ibody_quota);
2174                 check_is_really_dir(ctx, &pctx, block_buf);
2175
2176                 /*
2177                  * ext2fs_inode_has_valid_blocks2 does not actually look
2178                  * at i_block[] values, so not endian-sensitive here.
2179                  */
2180                 if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL) &&
2181                     LINUX_S_ISLNK(inode->i_mode) &&
2182                     !ext2fs_inode_has_valid_blocks2(fs, inode) &&
2183                     fix_problem(ctx, PR_1_FAST_SYMLINK_EXTENT_FL, &pctx)) {
2184                         inode->i_flags &= ~EXT4_EXTENTS_FL;
2185                         e2fsck_write_inode(ctx, ino, inode, "pass1");
2186                         failed_csum = 0;
2187                 }
2188
2189                 if ((inode->i_flags & EXT4_ENCRYPT_FL) &&
2190                     add_encrypted_file(ctx, &pctx) < 0)
2191                         goto clear_inode;
2192
2193                 if (casefold_fs && inode->i_flags & EXT4_CASEFOLD_FL)
2194                         ext2fs_mark_inode_bitmap2(ctx->inode_casefold_map, ino);
2195
2196                 if (LINUX_S_ISDIR(inode->i_mode)) {
2197                         ext2fs_mark_inode_bitmap2(ctx->inode_dir_map, ino);
2198                         e2fsck_add_dir_info(ctx, ino, 0);
2199                         ctx->fs_directory_count++;
2200                         if (inode->i_flags & EXT4_CASEFOLD_FL)
2201                                 add_casefolded_dir(ctx, ino);
2202                 } else if (LINUX_S_ISREG (inode->i_mode)) {
2203                         ext2fs_mark_inode_bitmap2(ctx->inode_reg_map, ino);
2204                         ctx->fs_regular_count++;
2205                 } else if (LINUX_S_ISCHR (inode->i_mode) &&
2206                            e2fsck_pass1_check_device_inode(fs, inode)) {
2207                         check_extents_inlinedata(ctx, &pctx);
2208                         check_immutable(ctx, &pctx);
2209                         check_size(ctx, &pctx);
2210                         ctx->fs_chardev_count++;
2211                 } else if (LINUX_S_ISBLK (inode->i_mode) &&
2212                            e2fsck_pass1_check_device_inode(fs, inode)) {
2213                         check_extents_inlinedata(ctx, &pctx);
2214                         check_immutable(ctx, &pctx);
2215                         check_size(ctx, &pctx);
2216                         ctx->fs_blockdev_count++;
2217                 } else if (LINUX_S_ISLNK (inode->i_mode) &&
2218                            e2fsck_pass1_check_symlink(fs, ino, inode,
2219                                                       block_buf)) {
2220                         check_immutable(ctx, &pctx);
2221                         ctx->fs_symlinks_count++;
2222                         if (inode->i_flags & EXT4_INLINE_DATA_FL) {
2223                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2224                                 continue;
2225                         } else if (ext2fs_is_fast_symlink(inode)) {
2226                                 ctx->fs_fast_symlinks_count++;
2227                                 check_blocks(ctx, &pctx, block_buf,
2228                                              &ea_ibody_quota);
2229                                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2230                                 continue;
2231                         }
2232                 }
2233                 else if (LINUX_S_ISFIFO (inode->i_mode) &&
2234                          e2fsck_pass1_check_device_inode(fs, inode)) {
2235                         check_extents_inlinedata(ctx, &pctx);
2236                         check_immutable(ctx, &pctx);
2237                         check_size(ctx, &pctx);
2238                         ctx->fs_fifo_count++;
2239                 } else if ((LINUX_S_ISSOCK (inode->i_mode)) &&
2240                            e2fsck_pass1_check_device_inode(fs, inode)) {
2241                         check_extents_inlinedata(ctx, &pctx);
2242                         check_immutable(ctx, &pctx);
2243                         check_size(ctx, &pctx);
2244                         ctx->fs_sockets_count++;
2245                 } else
2246                         mark_inode_bad(ctx, ino);
2247                 if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
2248                     !(inode->i_flags & EXT4_INLINE_DATA_FL)) {
2249                         if (inode->i_block[EXT2_IND_BLOCK])
2250                                 ctx->fs_ind_count++;
2251                         if (inode->i_block[EXT2_DIND_BLOCK])
2252                                 ctx->fs_dind_count++;
2253                         if (inode->i_block[EXT2_TIND_BLOCK])
2254                                 ctx->fs_tind_count++;
2255                 }
2256                 if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
2257                     !(inode->i_flags & EXT4_INLINE_DATA_FL) &&
2258                     (inode->i_block[EXT2_IND_BLOCK] ||
2259                      inode->i_block[EXT2_DIND_BLOCK] ||
2260                      inode->i_block[EXT2_TIND_BLOCK] ||
2261                      ext2fs_file_acl_block(fs, inode))) {
2262                         struct process_inode_block *itp;
2263
2264                         itp = &inodes_to_process[process_inode_count];
2265                         itp->ino = ino;
2266                         itp->ea_ibody_quota = ea_ibody_quota;
2267                         if (inode_size < sizeof(struct ext2_inode_large))
2268                                 memcpy(&itp->inode, inode, inode_size);
2269                         else
2270                                 memcpy(&itp->inode, inode, sizeof(itp->inode));
2271                         process_inode_count++;
2272                 } else
2273                         check_blocks(ctx, &pctx, block_buf, &ea_ibody_quota);
2274
2275                 FINISH_INODE_LOOP(ctx, ino, &pctx, failed_csum);
2276
2277                 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
2278                         goto endit;
2279
2280                 if (process_inode_count >= ctx->process_inode_size) {
2281                         process_inodes(ctx, block_buf, inodes_to_process,
2282                                        &process_inode_count);
2283
2284                         if (e2fsck_should_abort(ctx))
2285                                 goto endit;
2286                 }
2287         }
2288         process_inodes(ctx, block_buf, inodes_to_process,
2289                        &process_inode_count);
2290         ext2fs_close_inode_scan(scan);
2291         scan = NULL;
2292
2293         if (ctx->ea_block_quota_blocks) {
2294                 ea_refcount_free(ctx->ea_block_quota_blocks);
2295                 ctx->ea_block_quota_blocks = 0;
2296         }
2297
2298         if (ctx->ea_block_quota_inodes) {
2299                 ea_refcount_free(ctx->ea_block_quota_inodes);
2300                 ctx->ea_block_quota_inodes = 0;
2301         }
2302
2303         /* We don't need the encryption policy => ID map any more */
2304         destroy_encryption_policy_map(ctx);
2305
2306         if (ctx->flags & E2F_FLAG_RESTART) {
2307                 /*
2308                  * Only the master copy of the superblock and block
2309                  * group descriptors are going to be written during a
2310                  * restart, so set the superblock to be used to be the
2311                  * master superblock.
2312                  */
2313                 ctx->use_superblock = 0;
2314                 goto endit;
2315         }
2316
2317         if (ctx->large_dirs && !ext2fs_has_feature_largedir(fs->super)) {
2318                 if (fix_problem(ctx, PR_2_FEATURE_LARGE_DIRS, &pctx)) {
2319                         ext2fs_set_feature_largedir(fs->super);
2320                         fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
2321                         ext2fs_mark_super_dirty(fs);
2322                 }
2323                 if (fs->super->s_rev_level == EXT2_GOOD_OLD_REV &&
2324                     fix_problem(ctx, PR_1_FS_REV_LEVEL, &pctx)) {
2325                         ext2fs_update_dynamic_rev(fs);
2326                         ext2fs_mark_super_dirty(fs);
2327                 }
2328         }
2329
2330         ctx->flags |= E2F_FLAG_ALLOC_OK;
2331 endit:
2332         e2fsck_use_inode_shortcuts(ctx, 0);
2333         ext2fs_free_mem(&inodes_to_process);
2334         inodes_to_process = 0;
2335
2336         if (scan)
2337                 ext2fs_close_inode_scan(scan);
2338         if (block_buf)
2339                 ext2fs_free_mem(&block_buf);
2340         if (inode)
2341                 ext2fs_free_mem(&inode);
2342
2343         /*
2344          * The l+f inode may have been cleared, so zap it now and
2345          * later passes will recalculate it if necessary
2346          */
2347         ctx->lost_and_found = 0;
2348
2349         if ((ctx->flags & E2F_FLAG_SIGNAL_MASK) == 0)
2350                 print_resource_track(ctx, _("Pass 1"), &rtrack, ctx->fs->io);
2351         else
2352                 ctx->invalid_bitmaps++;
2353 }
2354
2355 #ifdef HAVE_PTHREAD
2356 static errcode_t e2fsck_pass1_copy_bitmap(ext2_filsys fs, ext2fs_generic_bitmap *src,
2357                                           ext2fs_generic_bitmap *dest)
2358 {
2359         errcode_t ret;
2360
2361         ret = ext2fs_copy_bitmap(*src, dest);
2362         if (ret)
2363                 return ret;
2364
2365         (*dest)->fs = fs;
2366
2367         return 0;
2368 }
2369
2370 static void e2fsck_pass1_free_bitmap(ext2fs_generic_bitmap *bitmap)
2371 {
2372         if (*bitmap) {
2373                 ext2fs_free_generic_bmap(*bitmap);
2374                 *bitmap = NULL;
2375         }
2376
2377 }
2378
2379 static errcode_t e2fsck_pass1_merge_bitmap(ext2_filsys fs, ext2fs_generic_bitmap *src,
2380                                           ext2fs_generic_bitmap *dest)
2381 {
2382         errcode_t ret = 0;
2383
2384         if (*src) {
2385                 if (*dest == NULL) {
2386                         *dest = *src;
2387                         *src = NULL;
2388                 } else {
2389                         ret = ext2fs_merge_bitmap(*src, *dest, NULL, NULL);
2390                         if (ret)
2391                                 return ret;
2392                 }
2393                 (*dest)->fs = fs;
2394         }
2395
2396         return 0;
2397 }
2398
2399 static errcode_t e2fsck_pass1_copy_fs(ext2_filsys dest, e2fsck_t src_context,
2400                                       ext2_filsys src)
2401 {
2402         errcode_t       retval;
2403
2404         memcpy(dest, src, sizeof(struct struct_ext2_filsys));
2405         dest->inode_map = NULL;
2406         dest->block_map = NULL;
2407         dest->badblocks = NULL;
2408         if (dest->dblist)
2409                 dest->dblist->fs = dest;
2410         if (src->block_map) {
2411                 retval = e2fsck_pass1_copy_bitmap(dest, &src->block_map,
2412                                                   &dest->block_map);
2413                 if (retval)
2414                         return retval;
2415         }
2416         if (src->inode_map) {
2417                 retval = e2fsck_pass1_copy_bitmap(dest, &src->inode_map,
2418                                                   &dest->inode_map);
2419                 if (retval)
2420                         return retval;
2421         }
2422
2423         if (src->badblocks) {
2424                 retval = ext2fs_badblocks_copy(src->badblocks,
2425                                                &dest->badblocks);
2426                 if (retval)
2427                         return retval;
2428         }
2429
2430         /* disable it for now */
2431         src_context->openfs_flags &= ~EXT2_FLAG_EXCLUSIVE;
2432         retval = ext2fs_open_channel(dest, src_context->io_options,
2433                                      src_context->io_manager,
2434                                      src_context->openfs_flags,
2435                                      src->io->block_size);
2436         if (retval)
2437                 return retval;
2438
2439         /* Block size might not be default */
2440         io_channel_set_blksize(dest->io, src->io->block_size);
2441         ehandler_init(dest->io);
2442
2443         assert(dest->io->magic == src->io->magic);
2444         assert(dest->io->manager == src->io->manager);
2445         assert(strcmp(dest->io->name, src->io->name) == 0);
2446         assert(dest->io->block_size == src->io->block_size);
2447         assert(dest->io->read_error == src->io->read_error);
2448         assert(dest->io->write_error == src->io->write_error);
2449         assert(dest->io->refcount == src->io->refcount);
2450         assert(dest->io->flags == src->io->flags);
2451         assert(dest->io->app_data == dest);
2452         assert(src->io->app_data == src);
2453         assert(dest->io->align == src->io->align);
2454
2455         /* The data should be written to disk immediately */
2456         dest->io->flags |= CHANNEL_FLAGS_WRITETHROUGH;
2457         /* icache will be rebuilt if needed, so do not copy from @src */
2458         src->icache = NULL;
2459         return 0;
2460 }
2461
2462 static int e2fsck_pass1_merge_fs(ext2_filsys dest, ext2_filsys src)
2463 {
2464         struct ext2_inode_cache *icache = dest->icache;
2465         errcode_t retval = 0;
2466         io_channel dest_io;
2467         io_channel dest_image_io;
2468         ext2fs_inode_bitmap inode_map;
2469         ext2fs_block_bitmap block_map;
2470         ext2_badblocks_list badblocks;
2471         ext2_dblist dblist;
2472         int flags;
2473
2474         dest_io = dest->io;
2475         dest_image_io = dest->image_io;
2476         inode_map = dest->inode_map;
2477         block_map = dest->block_map;
2478         badblocks = dest->badblocks;
2479         dblist = dest->dblist;
2480         flags = dest->flags;
2481
2482         memcpy(dest, src, sizeof(struct struct_ext2_filsys));
2483         dest->io = dest_io;
2484         dest->image_io = dest_image_io;
2485         dest->icache = icache;
2486         dest->inode_map = inode_map;
2487         dest->block_map = block_map;
2488         dest->badblocks = badblocks;
2489         dest->dblist = dblist;
2490         if (dest->dblist)
2491                 dest->dblist->fs = dest;
2492         dest->flags = src->flags | flags;
2493         if (!(src->flags & EXT2_FLAG_VALID) || !(flags & EXT2_FLAG_VALID))
2494                 ext2fs_unmark_valid(dest);
2495
2496         if (src->icache) {
2497                 ext2fs_free_inode_cache(src->icache);
2498                 src->icache = NULL;
2499         }
2500
2501         retval = e2fsck_pass1_merge_bitmap(dest, &src->inode_map,
2502                                            &dest->inode_map);
2503         if (retval)
2504                 goto out;
2505
2506         retval = e2fsck_pass1_merge_bitmap(dest, &src->block_map,
2507                                           &dest->block_map);
2508         if (retval)
2509                 goto out;
2510
2511         if (src->dblist) {
2512                 if (dest->dblist) {
2513                         retval = ext2fs_merge_dblist(src->dblist,
2514                                                      dest->dblist);
2515                         if (retval)
2516                                 goto out;
2517                 } else {
2518                         dest->dblist = src->dblist;
2519                         dest->dblist->fs = dest;
2520                         src->dblist = NULL;
2521                 }
2522         }
2523
2524         if (src->badblocks) {
2525                 if (dest->badblocks == NULL)
2526                         retval = ext2fs_badblocks_copy(src->badblocks,
2527                                                        &dest->badblocks);
2528                 else
2529                         retval = ext2fs_badblocks_merge(src->badblocks,
2530                                                         dest->badblocks);
2531         }
2532 out:
2533         io_channel_close(src->io);
2534         if (src->inode_map)
2535                 ext2fs_free_generic_bmap(src->inode_map);
2536         if (src->block_map)
2537                 ext2fs_free_generic_bmap(src->block_map);
2538         if (src->badblocks)
2539                 ext2fs_badblocks_list_free(src->badblocks);
2540         if (src->dblist)
2541                 ext2fs_free_dblist(src->dblist);
2542
2543         return retval;
2544 }
2545
2546 static void e2fsck_pass1_copy_invalid_bitmaps(e2fsck_t global_ctx,
2547                                               e2fsck_t thread_ctx)
2548 {
2549         dgrp_t i, j;
2550         dgrp_t grp_start = thread_ctx->thread_info.et_group_start;
2551         dgrp_t grp_end = thread_ctx->thread_info.et_group_end;
2552         dgrp_t total = grp_end - grp_start;
2553
2554         thread_ctx->invalid_inode_bitmap_flag =
2555                         e2fsck_allocate_memory(global_ctx, sizeof(int) * total,
2556                                                 "invalid_inode_bitmap");
2557         thread_ctx->invalid_block_bitmap_flag =
2558                         e2fsck_allocate_memory(global_ctx, sizeof(int) * total,
2559                                                "invalid_block_bitmap");
2560         thread_ctx->invalid_inode_table_flag =
2561                         e2fsck_allocate_memory(global_ctx, sizeof(int) * total,
2562                                                "invalid_inode_table");
2563
2564         memcpy(thread_ctx->invalid_block_bitmap_flag,
2565                &global_ctx->invalid_block_bitmap_flag[grp_start],
2566                total * sizeof(int));
2567         memcpy(thread_ctx->invalid_inode_bitmap_flag,
2568                &global_ctx->invalid_inode_bitmap_flag[grp_start],
2569                total * sizeof(int));
2570         memcpy(thread_ctx->invalid_inode_table_flag,
2571                &global_ctx->invalid_inode_table_flag[grp_start],
2572                total * sizeof(int));
2573
2574         thread_ctx->invalid_bitmaps = 0;
2575         for (i = grp_start, j = 0; i < grp_end; i++, j++) {
2576                 if (thread_ctx->invalid_block_bitmap_flag[j])
2577                         thread_ctx->invalid_bitmaps++;
2578                 if (thread_ctx->invalid_inode_bitmap_flag[j])
2579                         thread_ctx->invalid_bitmaps++;
2580                 if (thread_ctx->invalid_inode_table_flag[j])
2581                         thread_ctx->invalid_bitmaps++;
2582         }
2583 }
2584
2585 static void e2fsck_pass1_merge_invalid_bitmaps(e2fsck_t global_ctx,
2586                                                e2fsck_t thread_ctx)
2587 {
2588         dgrp_t grp_start = thread_ctx->thread_info.et_group_start;
2589         dgrp_t grp_end = thread_ctx->thread_info.et_group_end;
2590         dgrp_t total = grp_end - grp_start;
2591
2592         memcpy(&global_ctx->invalid_block_bitmap_flag[grp_start],
2593                thread_ctx->invalid_block_bitmap_flag, total * sizeof(int));
2594         memcpy(&global_ctx->invalid_inode_bitmap_flag[grp_start],
2595                thread_ctx->invalid_inode_bitmap_flag, total * sizeof(int));
2596         memcpy(&global_ctx->invalid_inode_table_flag[grp_start],
2597                thread_ctx->invalid_inode_table_flag, total * sizeof(int));
2598         global_ctx->invalid_bitmaps += thread_ctx->invalid_bitmaps;
2599 }
2600
2601 static errcode_t e2fsck_pass1_thread_prepare(e2fsck_t global_ctx, e2fsck_t *thread_ctx,
2602                                              int thread_index, int num_threads,
2603                                              dgrp_t average_group)
2604 {
2605         errcode_t               retval;
2606         e2fsck_t                thread_context;
2607         ext2_filsys             thread_fs;
2608         ext2_filsys             global_fs = global_ctx->fs;
2609         struct e2fsck_thread    *tinfo;
2610
2611         assert(global_ctx->inode_used_map == NULL);
2612         assert(global_ctx->inode_dir_map == NULL);
2613         assert(global_ctx->inode_bb_map == NULL);
2614         assert(global_ctx->inode_imagic_map == NULL);
2615         assert(global_ctx->inode_reg_map == NULL);
2616         assert(global_ctx->inodes_to_rebuild == NULL);
2617
2618         assert(global_ctx->block_found_map != NULL);
2619         assert(global_ctx->block_metadata_map != NULL);
2620         assert(global_ctx->block_dup_map != NULL);
2621         assert(global_ctx->block_ea_map == NULL);
2622         assert(global_ctx->fs->dblist == NULL);
2623
2624         retval = ext2fs_get_mem(sizeof(struct e2fsck_struct), &thread_context);
2625         if (retval) {
2626                 com_err(global_ctx->program_name, retval, "while allocating memory");
2627                 return retval;
2628         }
2629         memcpy(thread_context, global_ctx, sizeof(struct e2fsck_struct));
2630         thread_context->block_dup_map = NULL;
2631
2632         retval = e2fsck_allocate_block_bitmap(global_ctx->fs,
2633                                 _("in-use block map"), EXT2FS_BMAP64_RBTREE,
2634                                 "block_found_map", &thread_context->block_found_map);
2635         if (retval)
2636                 goto out_context;
2637
2638         thread_context->global_ctx = global_ctx;
2639         retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &thread_fs);
2640         if (retval) {
2641                 com_err(global_ctx->program_name, retval, "while allocating memory");
2642                 goto out_context;
2643         }
2644
2645         io_channel_flush_cleanup(global_fs->io);
2646         retval = e2fsck_pass1_copy_fs(thread_fs, global_ctx, global_fs);
2647         if (retval) {
2648                 com_err(global_ctx->program_name, retval, "while copying fs");
2649                 goto out_fs;
2650         }
2651         thread_fs->priv_data = thread_context;
2652
2653         thread_context->thread_info.et_thread_index = thread_index;
2654         set_up_logging(thread_context);
2655
2656         tinfo = &thread_context->thread_info;
2657         tinfo->et_group_start = average_group * thread_index;
2658         if (thread_index == global_fs->fs_num_threads - 1)
2659                 tinfo->et_group_end = thread_fs->group_desc_count;
2660         else
2661                 tinfo->et_group_end = average_group * (thread_index + 1);
2662         tinfo->et_group_next = tinfo->et_group_start;
2663         tinfo->et_inode_number = 0;
2664         tinfo->et_log_buf[0] = '\0';
2665         tinfo->et_log_length = 0;
2666         if (thread_context->options & E2F_OPT_MULTITHREAD)
2667                 log_out(thread_context, _("Scan group range [%d, %d)\n"),
2668                         tinfo->et_group_start, tinfo->et_group_end);
2669         thread_context->fs = thread_fs;
2670         retval = quota_init_context(&thread_context->qctx, thread_fs, 0);
2671         if (retval) {
2672                 com_err(global_ctx->program_name, retval,
2673                         "while init quota context");
2674                 goto out_fs;
2675         }
2676         *thread_ctx = thread_context;
2677         e2fsck_pass1_copy_invalid_bitmaps(global_ctx, thread_context);
2678         return 0;
2679 out_fs:
2680         ext2fs_free_mem(&thread_fs);
2681 out_context:
2682         if (thread_context->block_found_map)
2683                 ext2fs_free_mem(&thread_context->block_found_map);
2684         ext2fs_free_mem(&thread_context);
2685         return retval;
2686 }
2687
2688 static void e2fsck_pass1_merge_dir_info(e2fsck_t global_ctx, e2fsck_t thread_ctx)
2689 {
2690         if (thread_ctx->dir_info == NULL)
2691                 return;
2692
2693         if (global_ctx->dir_info == NULL) {
2694                 global_ctx->dir_info = thread_ctx->dir_info;
2695                 thread_ctx->dir_info = NULL;
2696                 return;
2697         }
2698
2699         e2fsck_merge_dir_info(global_ctx, thread_ctx->dir_info,
2700                               global_ctx->dir_info);
2701 }
2702
2703 static void e2fsck_pass1_merge_dx_dir(e2fsck_t global_ctx, e2fsck_t thread_ctx)
2704 {
2705         if (thread_ctx->dx_dir_info == NULL)
2706                 return;
2707
2708         if (global_ctx->dx_dir_info == NULL) {
2709                 global_ctx->dx_dir_info = thread_ctx->dx_dir_info;
2710                 global_ctx->dx_dir_info_size = thread_ctx->dx_dir_info_size;
2711                 global_ctx->dx_dir_info_count = thread_ctx->dx_dir_info_count;
2712                 thread_ctx->dx_dir_info = NULL;
2713                 return;
2714         }
2715
2716         e2fsck_merge_dx_dir(global_ctx, thread_ctx);
2717 }
2718
2719 static inline errcode_t
2720 e2fsck_pass1_merge_icount(ext2_icount_t *dest_icount,
2721                           ext2_icount_t *src_icount)
2722 {
2723         if (*src_icount) {
2724                 if (*dest_icount == NULL) {
2725                         *dest_icount = *src_icount;
2726                         *src_icount = NULL;
2727                 } else {
2728                         errcode_t ret;
2729
2730                         ret = ext2fs_icount_merge(*src_icount,
2731                                                   *dest_icount);
2732                         if (ret)
2733                                 return ret;
2734                 }
2735         }
2736
2737         return 0;
2738 }
2739
2740 static errcode_t e2fsck_pass1_merge_icounts(e2fsck_t global_ctx, e2fsck_t thread_ctx)
2741 {
2742         errcode_t ret;
2743
2744         ret = e2fsck_pass1_merge_icount(&global_ctx->inode_count,
2745                                         &thread_ctx->inode_count);
2746         if (ret)
2747                 return ret;
2748         ret = e2fsck_pass1_merge_icount(&global_ctx->inode_link_info,
2749                                         &thread_ctx->inode_link_info);
2750
2751         return ret;
2752 }
2753
2754 static errcode_t e2fsck_pass1_merge_dirs_to_hash(e2fsck_t global_ctx,
2755                                                  e2fsck_t thread_ctx)
2756 {
2757         errcode_t retval = 0;
2758
2759         if (!thread_ctx->dirs_to_hash)
2760                 return 0;
2761
2762         if (!global_ctx->dirs_to_hash)
2763                 retval = ext2fs_badblocks_copy(thread_ctx->dirs_to_hash,
2764                                                &global_ctx->dirs_to_hash);
2765         else
2766                 retval = ext2fs_badblocks_merge(thread_ctx->dirs_to_hash,
2767                                                 global_ctx->dirs_to_hash);
2768
2769         return retval;
2770 }
2771
2772 static errcode_t e2fsck_pass1_merge_ea_inode_refs(e2fsck_t global_ctx,
2773                                                   e2fsck_t thread_ctx)
2774 {
2775         ea_value_t count;
2776         blk64_t blk;
2777         errcode_t retval;
2778
2779         if (!thread_ctx->ea_inode_refs)
2780                 return 0;
2781
2782         if (!global_ctx->ea_inode_refs) {
2783                 global_ctx->ea_inode_refs = thread_ctx->ea_inode_refs;
2784                 thread_ctx->ea_inode_refs = NULL;
2785                 return 0;
2786         }
2787
2788         ea_refcount_intr_begin(thread_ctx->ea_inode_refs);
2789         while (1) {
2790                 if ((blk = ea_refcount_intr_next(thread_ctx->ea_inode_refs,
2791                                                  &count)) == 0)
2792                         break;
2793                 if (!global_ctx->block_ea_map ||
2794                     !ext2fs_fast_test_block_bitmap2(global_ctx->block_ea_map,
2795                                                     blk)) {
2796                         retval = ea_refcount_store(global_ctx->ea_inode_refs,
2797                                                    blk, count);
2798                         if (retval)
2799                                 return retval;
2800                 }
2801         }
2802
2803         return retval;
2804 }
2805
2806 static ea_value_t ea_refcount_usage(e2fsck_t ctx, blk64_t blk,
2807                                     ea_value_t *orig)
2808 {
2809         ea_value_t count_cur;
2810         ea_value_t count_extra = 0;
2811         ea_value_t count_orig;
2812
2813         ea_refcount_fetch(ctx->refcount_orig, blk, &count_orig);
2814         ea_refcount_fetch(ctx->refcount, blk, &count_cur);
2815         /* most of time this is not needed */
2816         if (ctx->refcount_extra && count_cur == 0)
2817                 ea_refcount_fetch(ctx->refcount_extra, blk, &count_extra);
2818
2819         if (!count_orig)
2820                 count_orig = *orig;
2821         else if (orig)
2822                 *orig = count_orig;
2823
2824         return count_orig + count_extra - count_cur;
2825 }
2826
2827 static errcode_t e2fsck_pass1_merge_ea_refcount(e2fsck_t global_ctx,
2828                                                 e2fsck_t thread_ctx)
2829 {
2830         ea_value_t count;
2831         blk64_t blk;
2832         errcode_t retval = 0;
2833
2834         if (!thread_ctx->refcount)
2835                 return 0;
2836
2837         if (!global_ctx->refcount) {
2838                 global_ctx->refcount = thread_ctx->refcount;
2839                 thread_ctx->refcount = NULL;
2840                 global_ctx->refcount_extra = thread_ctx->refcount;
2841                 thread_ctx->refcount_extra = NULL;
2842                 return 0;
2843         }
2844
2845         ea_refcount_intr_begin(thread_ctx->refcount);
2846         while (1) {
2847                 if ((blk = ea_refcount_intr_next(thread_ctx->refcount,
2848                                                  &count)) == 0)
2849                         break;
2850                 /**
2851                  * this EA has never seen before, so just store its
2852                  * refcount and refcount_extra into global_ctx if needed.
2853                  */
2854                 if (!global_ctx->block_ea_map ||
2855                     !ext2fs_fast_test_block_bitmap2(global_ctx->block_ea_map,
2856                                                     blk)) {
2857                         ea_value_t extra;
2858
2859                         retval = ea_refcount_store(global_ctx->refcount,
2860                                                    blk, count);
2861                         if (retval)
2862                                 return retval;
2863
2864                         if (count > 0 || !thread_ctx->refcount_extra)
2865                                 continue;
2866                         ea_refcount_fetch(thread_ctx->refcount_extra, blk,
2867                                           &extra);
2868                         if (extra == 0)
2869                                 continue;
2870
2871                         if (!global_ctx->refcount_extra) {
2872                                 retval = ea_refcount_create(0,
2873                                                 &global_ctx->refcount_extra);
2874                                 if (retval)
2875                                         return retval;
2876                         }
2877                         retval = ea_refcount_store(global_ctx->refcount_extra,
2878                                                    blk, extra);
2879                         if (retval)
2880                                 return retval;
2881                 } else {
2882                         ea_value_t orig;
2883                         ea_value_t thread_usage;
2884                         ea_value_t global_usage;
2885                         ea_value_t new;
2886
2887                         thread_usage = ea_refcount_usage(thread_ctx,
2888                                                          blk, &orig);
2889                         global_usage = ea_refcount_usage(global_ctx,
2890                                                          blk, &orig);
2891                         if (thread_usage + global_usage <= orig) {
2892                                 new = orig - thread_usage - global_usage;
2893                                 retval = ea_refcount_store(global_ctx->refcount,
2894                                                            blk, new);
2895                                 if (retval)
2896                                         return retval;
2897                                 continue;
2898                         }
2899                         /* update it is as zero */
2900                         retval = ea_refcount_store(global_ctx->refcount,
2901                                                    blk, 0);
2902                         if (retval)
2903                                 return retval;
2904                         /* Ooops, this EA was referenced more than it stated */
2905                         if (!global_ctx->refcount_extra) {
2906                                 retval = ea_refcount_create(0,
2907                                                 &global_ctx->refcount_extra);
2908                                 if (retval)
2909                                         return retval;
2910                         }
2911                         new = global_usage + thread_usage - orig;
2912                         retval = ea_refcount_store(global_ctx->refcount_extra,
2913                                                    blk, new);
2914                         if (retval)
2915                                 return retval;
2916                 }
2917         }
2918
2919         return retval;
2920 }
2921
2922 static int e2fsck_pass1_thread_join_one(e2fsck_t global_ctx, e2fsck_t thread_ctx)
2923 {
2924         errcode_t        retval;
2925         int              flags = global_ctx->flags;
2926         ext2_filsys      thread_fs = thread_ctx->fs;
2927         ext2_filsys      global_fs = global_ctx->fs;
2928         FILE            *global_logf = global_ctx->logf;
2929         FILE            *global_problem_logf = global_ctx->problem_logf;
2930         ext2fs_inode_bitmap inode_bad_map = global_ctx->inode_bad_map;
2931         struct dir_info_db *dir_info = global_ctx->dir_info;
2932         struct dx_dir_info *dx_dir_info = global_ctx->dx_dir_info;
2933         ext2fs_inode_bitmap inode_used_map = global_ctx->inode_used_map;
2934         ext2fs_inode_bitmap inode_dir_map = global_ctx->inode_dir_map;
2935         ext2fs_inode_bitmap inode_bb_map = global_ctx->inode_bb_map;
2936         ext2fs_inode_bitmap inode_imagic_map = global_ctx->inode_imagic_map;
2937         ext2fs_inode_bitmap inode_reg_map = global_ctx->inode_reg_map;
2938         ext2fs_block_bitmap inodes_to_rebuild = global_ctx->inodes_to_rebuild;
2939         ext2_icount_t inode_count = global_ctx->inode_count;
2940         ext2_icount_t inode_link_info = global_ctx->inode_link_info;
2941         __u32 fs_directory_count = global_ctx->fs_directory_count;
2942         __u32 fs_regular_count = global_ctx->fs_regular_count;
2943         __u32 fs_blockdev_count = global_ctx->fs_blockdev_count;
2944         __u32 fs_chardev_count = global_ctx->fs_chardev_count;
2945         __u32 fs_links_count = global_ctx->fs_links_count;
2946         __u32 fs_symlinks_count = global_ctx->fs_symlinks_count;
2947         __u32 fs_fast_symlinks_count = global_ctx->fs_fast_symlinks_count;
2948         __u32 fs_fifo_count = global_ctx->fs_fifo_count;
2949         __u32 fs_total_count = global_ctx->fs_total_count;
2950         __u32 fs_badblocks_count = global_ctx->fs_badblocks_count;
2951         __u32 fs_sockets_count = global_ctx->fs_sockets_count;
2952         __u32 fs_ind_count = global_ctx->fs_ind_count;
2953         __u32 fs_dind_count = global_ctx->fs_dind_count;
2954         __u32 fs_tind_count = global_ctx->fs_tind_count;
2955         __u32 fs_fragmented = global_ctx->fs_fragmented;
2956         __u32 fs_fragmented_dir = global_ctx->fs_fragmented_dir;
2957         __u32 large_files = global_ctx->large_files;
2958         ext2_ino_t dx_dir_info_size = global_ctx->dx_dir_info_size;
2959         ext2_ino_t dx_dir_info_count = global_ctx->dx_dir_info_count;
2960         ext2_u32_list dirs_to_hash = global_ctx->dirs_to_hash;
2961         quota_ctx_t qctx = global_ctx->qctx;
2962         int *invalid_block_bitmap_flag = global_ctx->invalid_block_bitmap_flag;
2963         int *invalid_inode_bitmap_flag = global_ctx->invalid_inode_bitmap_flag;
2964         int *invalid_inode_table_flag  = global_ctx->invalid_inode_table_flag;
2965         int invalid_bitmaps = global_ctx->invalid_bitmaps;
2966         ext2_refcount_t refcount = global_ctx->refcount;
2967         ext2_refcount_t refcount_extra = global_ctx->refcount_extra;
2968         ext2_refcount_t refcount_orig = global_ctx->refcount_orig;
2969         ext2_refcount_t ea_block_quota_blocks = global_ctx->ea_block_quota_blocks;
2970         ext2_refcount_t ea_block_quota_inodes = global_ctx->ea_block_quota_inodes;
2971         ext2fs_block_bitmap block_ea_map = global_ctx->block_ea_map;
2972         ext2_refcount_t ea_inode_refs = global_ctx->ea_inode_refs;
2973         ext2fs_block_bitmap  block_found_map = global_ctx->block_found_map;
2974         ext2fs_block_bitmap  block_dup_map = global_ctx->block_dup_map;
2975         int options = global_ctx->options;
2976
2977 #ifdef HAVE_SETJMP_H
2978         jmp_buf          old_jmp;
2979
2980         memcpy(old_jmp, global_ctx->abort_loc, sizeof(jmp_buf));
2981 #endif
2982         memcpy(global_ctx, thread_ctx, sizeof(struct e2fsck_struct));
2983 #ifdef HAVE_SETJMP_H
2984         memcpy(global_ctx->abort_loc, old_jmp, sizeof(jmp_buf));
2985 #endif
2986
2987         global_ctx->inode_used_map = inode_used_map;
2988         global_ctx->inode_bad_map = inode_bad_map;
2989         global_ctx->inode_dir_map = inode_dir_map;
2990         global_ctx->inode_bb_map = inode_bb_map;
2991         global_ctx->inode_imagic_map = inode_imagic_map;
2992         global_ctx->inodes_to_rebuild = inodes_to_rebuild;
2993         global_ctx->inode_reg_map = inode_reg_map;
2994         global_ctx->block_dup_map = block_dup_map;
2995         global_ctx->block_found_map = block_found_map;
2996         global_ctx->dir_info = dir_info;
2997         e2fsck_pass1_merge_dir_info(global_ctx, thread_ctx);
2998         global_ctx->dx_dir_info = dx_dir_info;
2999         global_ctx->dx_dir_info_count = dx_dir_info_count;
3000         global_ctx->dx_dir_info_size = dx_dir_info_size;
3001         e2fsck_pass1_merge_dx_dir(global_ctx, thread_ctx);
3002         global_ctx->inode_count = inode_count;
3003         global_ctx->inode_link_info = inode_link_info;
3004         global_ctx->refcount = refcount;
3005         global_ctx->refcount_extra = refcount_extra;
3006         global_ctx->refcount_orig = refcount_orig;
3007         global_ctx->ea_block_quota_blocks = ea_block_quota_blocks;
3008         global_ctx->ea_block_quota_inodes = ea_block_quota_inodes;
3009         global_ctx->block_ea_map = block_ea_map;
3010         global_ctx->ea_inode_refs = ea_inode_refs;
3011         global_ctx->fs_directory_count += fs_directory_count;
3012         global_ctx->fs_regular_count += fs_regular_count;
3013         global_ctx->fs_blockdev_count += fs_blockdev_count;
3014         global_ctx->fs_chardev_count += fs_chardev_count;
3015         global_ctx->fs_links_count += fs_links_count;
3016         global_ctx->fs_symlinks_count += fs_symlinks_count;
3017         global_ctx->fs_fast_symlinks_count += fs_fast_symlinks_count;
3018         global_ctx->fs_fifo_count += fs_fifo_count;
3019         global_ctx->fs_total_count += fs_total_count;
3020         global_ctx->fs_badblocks_count += fs_badblocks_count;
3021         global_ctx->fs_sockets_count += fs_sockets_count;
3022         global_ctx->fs_ind_count += fs_ind_count;
3023         global_ctx->fs_dind_count += fs_dind_count;
3024         global_ctx->fs_tind_count += fs_tind_count;
3025         global_ctx->fs_fragmented += fs_fragmented;
3026         global_ctx->fs_fragmented_dir += fs_fragmented_dir;
3027         global_ctx->large_files += large_files;
3028         /* threads might enable E2F_OPT_YES */
3029         global_ctx->options |= options;
3030         global_ctx->flags |= flags;
3031
3032         retval = e2fsck_pass1_merge_fs(global_fs, thread_fs);
3033         if (retval) {
3034                 com_err(global_ctx->program_name, 0, _("while merging fs\n"));
3035                 return retval;
3036         }
3037         global_fs->priv_data = global_ctx;
3038         global_ctx->fs = global_fs;
3039         global_ctx->logf = global_logf;
3040         global_ctx->problem_logf = global_problem_logf;
3041         global_ctx->global_ctx = NULL;
3042         retval = e2fsck_pass1_merge_icounts(global_ctx, thread_ctx);
3043         if (retval) {
3044                 com_err(global_ctx->program_name, 0,
3045                         _("while merging icounts\n"));
3046                 return retval;
3047         }
3048
3049         global_ctx->dirs_to_hash = dirs_to_hash;
3050         retval = e2fsck_pass1_merge_dirs_to_hash(global_ctx, thread_ctx);
3051         if (retval) {
3052                 com_err(global_ctx->program_name, 0,
3053                         _("while merging dirs to hash\n"));
3054                 return retval;
3055         }
3056
3057         e2fsck_pass1_merge_ea_inode_refs(global_ctx, thread_ctx);
3058         e2fsck_pass1_merge_ea_refcount(global_ctx, thread_ctx);
3059         global_ctx->qctx = qctx;
3060         retval = quota_merge_and_update_usage(global_ctx->qctx,
3061                                               thread_ctx->qctx);
3062         if (retval)
3063                 return retval;
3064
3065         e2fsck_pass1_merge_invalid_bitmaps(global_ctx, thread_ctx);
3066
3067         retval = e2fsck_pass1_merge_bitmap(global_fs,
3068                                 &thread_ctx->inode_used_map,
3069                                 &global_ctx->inode_used_map);
3070         if (retval)
3071                 return retval;
3072
3073         retval = e2fsck_pass1_merge_bitmap(global_fs,
3074                                 &thread_ctx->inode_bad_map,
3075                                 &global_ctx->inode_bad_map);
3076         if (retval)
3077                 return retval;
3078         retval = e2fsck_pass1_merge_bitmap(global_fs,
3079                                         &thread_ctx->inode_dir_map,
3080                                         &global_ctx->inode_dir_map);
3081         if (retval)
3082                 return retval;
3083         retval = e2fsck_pass1_merge_bitmap(global_fs,
3084                                 &thread_ctx->inode_bb_map,
3085                                 &global_ctx->inode_bb_map);
3086         if (retval)
3087                 return retval;
3088         retval = e2fsck_pass1_merge_bitmap(global_fs,
3089                                 &thread_ctx->inode_imagic_map,
3090                                 &global_ctx->inode_imagic_map);
3091         if (retval)
3092                 return retval;
3093         retval = e2fsck_pass1_merge_bitmap(global_fs,
3094                                 &thread_ctx->inode_reg_map,
3095                                 &global_ctx->inode_reg_map);
3096         if (retval)
3097                 return retval;
3098         retval = e2fsck_pass1_merge_bitmap(global_fs,
3099                                 &thread_ctx->inodes_to_rebuild,
3100                                 &global_ctx->inodes_to_rebuild);
3101         if (retval)
3102                 return retval;
3103         retval = e2fsck_pass1_merge_bitmap(global_fs,
3104                                 &thread_ctx->block_ea_map,
3105                                 &global_ctx->block_ea_map);
3106         if (retval)
3107                 return retval;
3108
3109         if (ext2fs_has_feature_shared_blocks(global_fs->super) &&
3110             !(global_ctx->options & E2F_OPT_UNSHARE_BLOCKS))
3111                 return 0;
3112         /*
3113          * This need be done after merging block_ea_map
3114          * because ea block might be shared, we need exclude
3115          * them from dup blocks.
3116          */
3117         e2fsck_pass1_block_map_w_lock(thread_ctx);
3118         retval = ext2fs_merge_bitmap(thread_ctx->block_found_map,
3119                                      global_ctx->block_found_map,
3120                                      global_ctx->block_dup_map,
3121                                      global_ctx->block_ea_map);
3122         e2fsck_pass1_block_map_w_unlock(thread_ctx);
3123         if (retval == EEXIST)
3124                 global_ctx->flags |= E2F_FLAG_DUP_BLOCK;
3125
3126         return 0;
3127 }
3128
3129 static int e2fsck_pass1_thread_join(e2fsck_t global_ctx, e2fsck_t thread_ctx)
3130 {
3131         errcode_t       retval;
3132
3133         retval = e2fsck_pass1_thread_join_one(global_ctx, thread_ctx);
3134         ext2fs_free_mem(&thread_ctx->fs);
3135         if (thread_ctx->logf)
3136                 fclose(thread_ctx->logf);
3137         if (thread_ctx->problem_logf) {
3138                 fputs("</problem_log>\n", thread_ctx->problem_logf);
3139                 fclose(thread_ctx->problem_logf);
3140         }
3141         e2fsck_pass1_free_bitmap(&thread_ctx->inode_used_map);
3142         e2fsck_pass1_free_bitmap(&thread_ctx->inode_bad_map);
3143         e2fsck_pass1_free_bitmap(&thread_ctx->inode_dir_map);
3144         e2fsck_pass1_free_bitmap(&thread_ctx->inode_bb_map);
3145         e2fsck_pass1_free_bitmap(&thread_ctx->inode_imagic_map);
3146         e2fsck_pass1_free_bitmap(&thread_ctx->inode_reg_map);
3147         e2fsck_pass1_free_bitmap(&thread_ctx->inodes_to_rebuild);
3148         e2fsck_pass1_free_bitmap(&thread_ctx->block_found_map);
3149         e2fsck_pass1_free_bitmap(&thread_ctx->block_ea_map);
3150         if (thread_ctx->refcount)
3151                 ea_refcount_free(thread_ctx->refcount);
3152         if (thread_ctx->refcount_extra)
3153                 ea_refcount_free(thread_ctx->refcount_extra);
3154         if (thread_ctx->ea_inode_refs)
3155                 ea_refcount_free(thread_ctx->ea_inode_refs);
3156         if (thread_ctx->refcount_orig)
3157                 ea_refcount_free(thread_ctx->refcount_orig);
3158         e2fsck_free_dir_info(thread_ctx);
3159         ext2fs_free_icount(thread_ctx->inode_count);
3160         ext2fs_free_icount(thread_ctx->inode_link_info);
3161         if (thread_ctx->dirs_to_hash)
3162                 ext2fs_badblocks_list_free(thread_ctx->dirs_to_hash);
3163         quota_release_context(&thread_ctx->qctx);
3164         ext2fs_free_mem(&thread_ctx->invalid_block_bitmap_flag);
3165         ext2fs_free_mem(&thread_ctx->invalid_inode_bitmap_flag);
3166         ext2fs_free_mem(&thread_ctx->invalid_inode_table_flag);
3167         ext2fs_free_mem(&thread_ctx);
3168
3169         return retval;
3170 }
3171
3172 static int e2fsck_pass1_threads_join(struct e2fsck_thread_info *infos,
3173                                      e2fsck_t global_ctx)
3174 {
3175         errcode_t                        rc;
3176         errcode_t                        ret = 0;
3177         int                              i;
3178         struct e2fsck_thread_info       *pinfo;
3179         int                              num_threads = global_ctx->fs_num_threads;
3180
3181         /* merge invalid bitmaps will recalculate it */
3182         global_ctx->invalid_bitmaps = 0;
3183         for (i = 0; i < num_threads; i++) {
3184                 pinfo = &infos[i];
3185
3186                 if (!pinfo->eti_started)
3187                         continue;
3188
3189                 rc = pthread_join(pinfo->eti_thread_id, NULL);
3190                 if (rc) {
3191                         com_err(global_ctx->program_name, rc,
3192                                 _("while joining thread\n"));
3193                         if (ret == 0)
3194                                 ret = rc;
3195                 }
3196                 rc = e2fsck_pass1_thread_join(global_ctx, infos[i].eti_thread_ctx);
3197                 if (rc) {
3198                         com_err(global_ctx->program_name, rc,
3199                                 _("while joining pass1 thread\n"));
3200                         if (ret == 0)
3201                                 ret = rc;
3202                 }
3203         }
3204         free(infos);
3205
3206         return ret;
3207 }
3208
3209 static void *e2fsck_pass1_thread(void *arg)
3210 {
3211         struct e2fsck_thread_info       *info = arg;
3212         e2fsck_t                         thread_ctx = info->eti_thread_ctx;
3213 #ifdef DEBUG_THREADS
3214         struct e2fsck_thread_debug      *thread_debug = info->eti_debug;
3215 #endif
3216
3217 #ifdef DEBUG_THREADS
3218         pthread_mutex_lock(&thread_debug->etd_mutex);
3219         while (info->eti_thread_index > thread_debug->etd_finished_threads) {
3220                 pthread_cond_wait(&thread_debug->etd_cond,
3221                                   &thread_debug->etd_mutex);
3222         }
3223         pthread_mutex_unlock(&thread_debug->etd_mutex);
3224 #endif
3225
3226 #ifdef HAVE_SETJMP_H
3227         /*
3228          * When fatal_error() happens, jump to here. The thread
3229          * context's flags will be saved, but its abort_loc will
3230          * be overwritten by original jump buffer for the later
3231          * tests.
3232          */
3233         if (setjmp(thread_ctx->abort_loc)) {
3234                 thread_ctx->flags &= ~E2F_FLAG_SETJMP_OK;
3235                 goto out;
3236         }
3237         thread_ctx->flags |= E2F_FLAG_SETJMP_OK;
3238 #endif
3239
3240         e2fsck_pass1_run(thread_ctx);
3241
3242 out:
3243         if (thread_ctx->options & E2F_OPT_MULTITHREAD)
3244                 log_out(thread_ctx,
3245                         _("Scanned group range [%lu, %lu), inodes %lu\n"),
3246                         thread_ctx->thread_info.et_group_start,
3247                         thread_ctx->thread_info.et_group_end,
3248                         thread_ctx->thread_info.et_inode_number);
3249
3250 #ifdef DEBUG_THREADS
3251         pthread_mutex_lock(&thread_debug->etd_mutex);
3252         thread_debug->etd_finished_threads++;
3253         pthread_cond_broadcast(&thread_debug->etd_cond);
3254         pthread_mutex_unlock(&thread_debug->etd_mutex);
3255 #endif
3256
3257         return NULL;
3258 }
3259
3260 static dgrp_t ext2fs_get_avg_group(ext2_filsys fs)
3261 {
3262 #ifdef HAVE_PTHREAD
3263         dgrp_t average_group;
3264         unsigned flexbg_size;
3265
3266         if (fs->fs_num_threads <= 1)
3267                 return fs->group_desc_count;
3268
3269         average_group = fs->group_desc_count / fs->fs_num_threads;
3270         if (average_group <= 1)
3271                 return 1;
3272
3273         if (ext2fs_has_feature_flex_bg(fs->super)) {
3274                 int times = 1;
3275
3276                 flexbg_size = 1 << fs->super->s_log_groups_per_flex;
3277                 if (average_group % flexbg_size) {
3278                         times = average_group / flexbg_size;
3279                         average_group = times * flexbg_size;
3280                 }
3281         }
3282
3283         return average_group;
3284 #else
3285         return fs->group_desc_count;
3286 #endif
3287 }
3288
3289 static int e2fsck_pass1_threads_start(struct e2fsck_thread_info **pinfo,
3290                                       e2fsck_t global_ctx)
3291 {
3292         struct e2fsck_thread_info       *infos;
3293         pthread_attr_t                   attr;
3294         errcode_t                        retval;
3295         errcode_t                        ret;
3296         struct e2fsck_thread_info       *tmp_pinfo;
3297         int                              i;
3298         e2fsck_t                         thread_ctx;
3299         dgrp_t                           average_group;
3300         int                              num_threads = global_ctx->fs_num_threads;
3301 #ifdef DEBUG_THREADS
3302         struct e2fsck_thread_debug       thread_debug =
3303                 {PTHREAD_MUTEX_INITIALIZER, PTHREAD_COND_INITIALIZER, 0};
3304
3305         thread_debug.etd_finished_threads = 0;
3306 #endif
3307
3308         retval = pthread_attr_init(&attr);
3309         if (retval) {
3310                 com_err(global_ctx->program_name, retval,
3311                         _("while setting pthread attribute\n"));
3312                 return retval;
3313         }
3314
3315         infos = calloc(num_threads, sizeof(struct e2fsck_thread_info));
3316         if (infos == NULL) {
3317                 retval = -ENOMEM;
3318                 com_err(global_ctx->program_name, retval,
3319                         _("while allocating memory for threads\n"));
3320                 pthread_attr_destroy(&attr);
3321                 return retval;
3322         }
3323
3324         average_group = ext2fs_get_avg_group(global_ctx->fs);
3325         for (i = 0; i < num_threads; i++) {
3326                 tmp_pinfo = &infos[i];
3327                 tmp_pinfo->eti_thread_index = i;
3328 #ifdef DEBUG_THREADS
3329                 tmp_pinfo->eti_debug = &thread_debug;
3330 #endif
3331                 retval = e2fsck_pass1_thread_prepare(global_ctx, &thread_ctx,
3332                                                      i, num_threads,
3333                                                      average_group);
3334                 if (retval) {
3335                         com_err(global_ctx->program_name, retval,
3336                                 _("while preparing pass1 thread\n"));
3337                         break;
3338                 }
3339                 tmp_pinfo->eti_thread_ctx = thread_ctx;
3340
3341                 retval = pthread_create(&tmp_pinfo->eti_thread_id, &attr,
3342                                         &e2fsck_pass1_thread, tmp_pinfo);
3343                 if (retval) {
3344                         com_err(global_ctx->program_name, retval,
3345                                 _("while creating thread\n"));
3346                         e2fsck_pass1_thread_join(global_ctx, thread_ctx);
3347                         break;
3348                 }
3349
3350                 tmp_pinfo->eti_started = 1;
3351         }
3352
3353         /* destroy the thread attribute object, since it is no longer needed */
3354         ret = pthread_attr_destroy(&attr);
3355         if (ret) {
3356                 com_err(global_ctx->program_name, ret,
3357                         _("while destroying thread attribute\n"));
3358                 if (retval == 0)
3359                         retval = ret;
3360         }
3361
3362         if (retval) {
3363                 e2fsck_pass1_threads_join(infos, global_ctx);
3364                 return retval;
3365         }
3366         *pinfo = infos;
3367         return 0;
3368 }
3369
3370 static void e2fsck_pass1_multithread(e2fsck_t global_ctx)
3371 {
3372         struct e2fsck_thread_info *infos = NULL;
3373         errcode_t retval;
3374
3375         retval = e2fsck_pass1_threads_start(&infos, global_ctx);
3376         if (retval) {
3377                 com_err(global_ctx->program_name, retval,
3378                         _("while starting pass1 threads\n"));
3379                 goto out_abort;
3380         }
3381
3382         retval = e2fsck_pass1_threads_join(infos, global_ctx);
3383         if (retval) {
3384                 com_err(global_ctx->program_name, retval,
3385                         _("while joining pass1 threads\n"));
3386                 goto out_abort;
3387         }
3388         return;
3389 out_abort:
3390         global_ctx->flags |= E2F_FLAG_ABORT;
3391         return;
3392 }
3393 #endif
3394
3395 void e2fsck_pass1(e2fsck_t ctx)
3396 {
3397         errcode_t retval;
3398         int need_single = 1;
3399
3400         retval = e2fsck_pass1_prepare(ctx);
3401         if (retval)
3402                 return;
3403 #ifdef HAVE_PTHREAD
3404         if (ctx->fs_num_threads > 1 ||
3405             ctx->options & E2F_OPT_MULTITHREAD) {
3406                 need_single = 0;
3407                 e2fsck_pass1_multithread(ctx);
3408         }
3409 #endif
3410         if (need_single)
3411                 e2fsck_pass1_run(ctx);
3412         e2fsck_pass1_post(ctx);
3413 }
3414
3415 #undef FINISH_INODE_LOOP
3416
3417 /*
3418  * When the inode_scan routines call this callback at the end of the
3419  * glock group, call process_inodes.
3420  */
3421 static errcode_t scan_callback(ext2_filsys fs,
3422                                ext2_inode_scan scan EXT2FS_ATTR((unused)),
3423                                dgrp_t group, void * priv_data)
3424 {
3425         struct scan_callback_struct *scan_struct;
3426         e2fsck_t ctx;
3427         struct e2fsck_thread *tinfo;
3428
3429         scan_struct = (struct scan_callback_struct *) priv_data;
3430         ctx = scan_struct->ctx;
3431
3432         process_inodes((e2fsck_t) fs->priv_data, scan_struct->block_buf,
3433                        scan_struct->inodes_to_process,
3434                        scan_struct->process_inode_count);
3435
3436         if (ctx->progress)
3437                 if ((ctx->progress)(ctx, 1, group+1,
3438                                     ctx->fs->group_desc_count))
3439                         return EXT2_ET_CANCEL_REQUESTED;
3440
3441 #ifdef HAVE_PTHREAD
3442         if (ctx->global_ctx) {
3443                 tinfo = &ctx->thread_info;
3444                 tinfo->et_group_next++;
3445                 if (ctx->options & E2F_OPT_DEBUG &&
3446                     ctx->options & E2F_OPT_MULTITHREAD)
3447                         log_out(ctx, _("group %d finished\n"),
3448                                 tinfo->et_group_next);
3449                 if (tinfo->et_group_next >= tinfo->et_group_end)
3450                         return EXT2_ET_SCAN_FINISHED;
3451         }
3452 #endif
3453
3454         return 0;
3455 }
3456
3457 /*
3458  * Process the inodes in the "inodes to process" list.
3459  */
3460 static void process_inodes(e2fsck_t ctx, char *block_buf,
3461                            struct process_inode_block *inodes_to_process,
3462                            int *process_inode_count)
3463 {
3464         int                     i;
3465         struct ext2_inode       *old_stashed_inode;
3466         ext2_ino_t              old_stashed_ino;
3467         const char              *old_operation;
3468         char                    buf[80];
3469         struct problem_context  pctx;
3470
3471 #if 0
3472         printf("begin process_inodes: ");
3473 #endif
3474         if (*process_inode_count == 0)
3475                 return;
3476         old_operation = ehandler_operation(0);
3477         old_stashed_inode = ctx->stashed_inode;
3478         old_stashed_ino = ctx->stashed_ino;
3479         qsort(inodes_to_process, *process_inode_count,
3480                       sizeof(struct process_inode_block), process_inode_cmp);
3481         clear_problem_context(&pctx);
3482         for (i=0; i < *process_inode_count; i++) {
3483                 pctx.inode = ctx->stashed_inode =
3484                         (struct ext2_inode *) &inodes_to_process[i].inode;
3485                 pctx.ino = ctx->stashed_ino = inodes_to_process[i].ino;
3486
3487 #if 0
3488                 printf("%u ", pctx.ino);
3489 #endif
3490                 sprintf(buf, _("reading indirect blocks of inode %u"),
3491                         pctx.ino);
3492                 ehandler_operation(buf);
3493                 check_blocks(ctx, &pctx, block_buf,
3494                              &inodes_to_process[i].ea_ibody_quota);
3495                 if (e2fsck_should_abort(ctx))
3496                         break;
3497         }
3498         ctx->stashed_inode = old_stashed_inode;
3499         ctx->stashed_ino = old_stashed_ino;
3500         *process_inode_count = 0;
3501 #if 0
3502         printf("end process inodes\n");
3503 #endif
3504         ehandler_operation(old_operation);
3505 }
3506
3507 static EXT2_QSORT_TYPE process_inode_cmp(const void *a, const void *b)
3508 {
3509         const struct process_inode_block *ib_a =
3510                 (const struct process_inode_block *) a;
3511         const struct process_inode_block *ib_b =
3512                 (const struct process_inode_block *) b;
3513         int     ret;
3514
3515         ret = (ib_a->inode.i_block[EXT2_IND_BLOCK] -
3516                ib_b->inode.i_block[EXT2_IND_BLOCK]);
3517         if (ret == 0)
3518                 /*
3519                  * We only call process_inodes() for non-extent
3520                  * inodes, so it's OK to pass NULL to
3521                  * ext2fs_file_acl_block() here.
3522                  */
3523                 ret = ext2fs_file_acl_block(0, ext2fs_const_inode(&ib_a->inode)) -
3524                         ext2fs_file_acl_block(0, ext2fs_const_inode(&ib_b->inode));
3525         if (ret == 0)
3526                 ret = ib_a->ino - ib_b->ino;
3527         return ret;
3528 }
3529
3530 /*
3531  * Mark an inode as being bad in some what
3532  */
3533 static void mark_inode_bad(e2fsck_t ctx, ino_t ino)
3534 {
3535         struct          problem_context pctx;
3536
3537         if (!ctx->inode_bad_map) {
3538                 clear_problem_context(&pctx);
3539
3540                 pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
3541                                 _("bad inode map"), EXT2FS_BMAP64_RBTREE,
3542                                 "inode_bad_map", &ctx->inode_bad_map);
3543                 if (pctx.errcode) {
3544                         pctx.num = 3;
3545                         fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
3546                         /* Should never get here */
3547                         ctx->flags |= E2F_FLAG_ABORT;
3548                         return;
3549                 }
3550         }
3551         ext2fs_mark_inode_bitmap2(ctx->inode_bad_map, ino);
3552 }
3553
3554 static void add_casefolded_dir(e2fsck_t ctx, ino_t ino)
3555 {
3556         struct          problem_context pctx;
3557
3558         if (!ctx->casefolded_dirs) {
3559                 pctx.errcode = ext2fs_u32_list_create(&ctx->casefolded_dirs, 0);
3560                 if (pctx.errcode)
3561                         goto error;
3562         }
3563         pctx.errcode = ext2fs_u32_list_add(ctx->casefolded_dirs, ino);
3564         if (pctx.errcode == 0)
3565                 return;
3566 error:
3567         fix_problem(ctx, PR_1_ALLOCATE_CASEFOLDED_DIRLIST, &pctx);
3568         /* Should never get here */
3569         ctx->flags |= E2F_FLAG_ABORT;
3570 }
3571
3572 /*
3573  * This procedure will allocate the inode "bb" (badblock) map table
3574  */
3575 static void alloc_bb_map(e2fsck_t ctx)
3576 {
3577         struct          problem_context pctx;
3578
3579         clear_problem_context(&pctx);
3580         pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
3581                         _("inode in bad block map"), EXT2FS_BMAP64_RBTREE,
3582                         "inode_bb_map", &ctx->inode_bb_map);
3583         if (pctx.errcode) {
3584                 pctx.num = 4;
3585                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
3586                 /* Should never get here */
3587                 ctx->flags |= E2F_FLAG_ABORT;
3588                 return;
3589         }
3590 }
3591
3592 /*
3593  * This procedure will allocate the inode imagic table
3594  */
3595 static void alloc_imagic_map(e2fsck_t ctx)
3596 {
3597         struct          problem_context pctx;
3598
3599         clear_problem_context(&pctx);
3600         pctx.errcode = e2fsck_allocate_inode_bitmap(ctx->fs,
3601                         _("imagic inode map"), EXT2FS_BMAP64_RBTREE,
3602                         "inode_imagic_map", &ctx->inode_imagic_map);
3603         if (pctx.errcode) {
3604                 pctx.num = 5;
3605                 fix_problem(ctx, PR_1_ALLOCATE_IBITMAP_ERROR, &pctx);
3606                 /* Should never get here */
3607                 ctx->flags |= E2F_FLAG_ABORT;
3608                 return;
3609         }
3610 }
3611
3612 /*
3613  * Marks a block as in use, setting the dup_map if it's been set
3614  * already.  Called by process_block and process_bad_block.
3615  *
3616  * WARNING: Assumes checks have already been done to make sure block
3617  * is valid.  This is true in both process_block and process_bad_block.
3618  */
3619 static _INLINE_ void mark_block_used(e2fsck_t ctx, blk64_t block)
3620 {
3621         struct problem_context pctx;
3622         e2fsck_t global_ctx = ctx->global_ctx ? ctx->global_ctx : ctx;
3623
3624         clear_problem_context(&pctx);
3625
3626         if (is_blocks_used(ctx, block, 1)) {
3627                 if (ext2fs_has_feature_shared_blocks(ctx->fs->super) &&
3628                     !(ctx->options & E2F_OPT_UNSHARE_BLOCKS)) {
3629                         return;
3630                 }
3631                 ctx->flags |= E2F_FLAG_DUP_BLOCK;
3632                 e2fsck_pass1_block_map_w_lock(ctx);
3633                 ext2fs_fast_mark_block_bitmap2(global_ctx->block_dup_map, block);
3634                 e2fsck_pass1_block_map_w_unlock(ctx);
3635         } else {
3636                 ext2fs_fast_mark_block_bitmap2(ctx->block_found_map, block);
3637         }
3638 }
3639
3640 /*
3641  * When cluster size is greater than one block, it is caller's responsibility
3642  * to make sure block parameter starts at a cluster boundary.
3643  */
3644 static _INLINE_ void mark_blocks_used(e2fsck_t ctx, blk64_t block,
3645                                       unsigned int num)
3646 {
3647         if (!is_blocks_used(ctx, block, num)) {
3648                 ext2fs_mark_block_bitmap_range2(ctx->block_found_map, block, num);
3649         } else {
3650                 unsigned int i;
3651
3652                 for (i = 0; i < num; i += EXT2FS_CLUSTER_RATIO(ctx->fs))
3653                         mark_block_used(ctx, block + i);
3654         }
3655 }
3656
3657 static errcode_t _INLINE_ e2fsck_write_ext_attr3(e2fsck_t ctx, blk64_t block,
3658                                                  void *inbuf, ext2_ino_t inum)
3659 {
3660         errcode_t retval;
3661         ext2_filsys fs = ctx->fs;
3662
3663         e2fsck_pass1_fix_lock(ctx);
3664         retval = ext2fs_write_ext_attr3(fs, block, inbuf, inum);
3665         e2fsck_pass1_fix_unlock(ctx);
3666
3667         return retval;
3668 }
3669 /*
3670  * Adjust the extended attribute block's reference counts at the end
3671  * of pass 1, either by subtracting out references for EA blocks that
3672  * are still referenced in ctx->refcount, or by adding references for
3673  * EA blocks that had extra references as accounted for in
3674  * ctx->refcount_extra.
3675  */
3676 static void adjust_extattr_refcount(e2fsck_t ctx, ext2_refcount_t refcount,
3677                                     char *block_buf, int adjust_sign)
3678 {
3679         struct ext2_ext_attr_header     *header;
3680         struct problem_context          pctx;
3681         ext2_filsys                     fs = ctx->fs;
3682         blk64_t                         blk;
3683         __u32                           should_be;
3684         ea_value_t                      count;
3685
3686         clear_problem_context(&pctx);
3687
3688         ea_refcount_intr_begin(refcount);
3689         while (1) {
3690                 if ((blk = ea_refcount_intr_next(refcount, &count)) == 0)
3691                         break;
3692                 pctx.blk = blk;
3693                 pctx.errcode = ext2fs_read_ext_attr3(fs, blk, block_buf,
3694                                                      pctx.ino);
3695                 if (pctx.errcode) {
3696                         fix_problem(ctx, PR_1_EXTATTR_READ_ABORT, &pctx);
3697                         return;
3698                 }
3699                 header = (struct ext2_ext_attr_header *) block_buf;
3700                 pctx.blkcount = header->h_refcount;
3701                 should_be = header->h_refcount + adjust_sign * (int)count;
3702                 pctx.num = should_be;
3703                 if (fix_problem(ctx, PR_1_EXTATTR_REFCOUNT, &pctx)) {
3704                         header->h_refcount = should_be;
3705                         pctx.errcode = e2fsck_write_ext_attr3(ctx, blk,
3706                                                              block_buf,
3707                                                              pctx.ino);
3708                         if (pctx.errcode) {
3709                                 fix_problem(ctx, PR_1_EXTATTR_WRITE_ABORT,
3710                                             &pctx);
3711                                 continue;
3712                         }
3713                 }
3714         }
3715 }
3716
3717 /*
3718  * Handle processing the extended attribute blocks
3719  */
3720 static int check_ext_attr(e2fsck_t ctx, struct problem_context *pctx,
3721                            char *block_buf, struct ea_quota *ea_block_quota)
3722 {
3723         ext2_filsys fs = ctx->fs;
3724         ext2_ino_t      ino = pctx->ino;
3725         struct ext2_inode *inode = pctx->inode;
3726         blk64_t         blk;
3727         char *          end;
3728         struct ext2_ext_attr_header *header;
3729         struct ext2_ext_attr_entry *first, *entry;
3730         blk64_t         quota_blocks = EXT2FS_C2B(fs, 1);
3731         __u64           quota_inodes = 0;
3732         region_t        region = 0;
3733         int             failed_csum = 0;
3734
3735         ea_block_quota->blocks = 0;
3736         ea_block_quota->inodes = 0;
3737
3738         blk = ext2fs_file_acl_block(fs, inode);
3739         if (blk == 0)
3740                 return 0;
3741
3742         /*
3743          * If the Extended attribute flag isn't set, then a non-zero
3744          * file acl means that the inode is corrupted.
3745          *
3746          * Or if the extended attribute block is an invalid block,
3747          * then the inode is also corrupted.
3748          */
3749         if (!ext2fs_has_feature_xattr(fs->super) ||
3750             (blk < fs->super->s_first_data_block) ||
3751             (blk >= ext2fs_blocks_count(fs->super))) {
3752                 mark_inode_bad(ctx, ino);
3753                 return 0;
3754         }
3755
3756         /* If ea bitmap hasn't been allocated, create it */
3757         if (!ctx->block_ea_map) {
3758                 pctx->errcode = e2fsck_allocate_block_bitmap(fs,
3759                                         _("ext attr block map"),
3760                                         EXT2FS_BMAP64_RBTREE, "block_ea_map",
3761                                         &ctx->block_ea_map);
3762                 if (pctx->errcode) {
3763                         pctx->num = 2;
3764                         fix_problem(ctx, PR_1_ALLOCATE_BBITMAP_ERROR, pctx);
3765                         ctx->flags |= E2F_FLAG_ABORT;
3766                         return 0;
3767                 }
3768         }
3769
3770         /* Create the EA refcount structure if necessary */
3771         if (!ctx->refcount) {
3772                 pctx->errcode = ea_refcount_create(0,
3773                                         &ctx->refcount_orig);
3774                 if (pctx->errcode) {
3775                         pctx->num = 1;
3776                         fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
3777                         ctx->flags |= E2F_FLAG_ABORT;
3778                         return 0;
3779                 }
3780
3781                 pctx->errcode = ea_refcount_create(0, &ctx->refcount);
3782                 if (pctx->errcode) {
3783                         pctx->num = 1;
3784                         fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
3785                         ctx->flags |= E2F_FLAG_ABORT;
3786                         return 0;
3787                 }
3788         }
3789
3790 #if 0
3791         /* Debugging text */
3792         printf("Inode %u has EA block %u\n", ino, blk);
3793 #endif
3794
3795         /* Have we seen this EA block before? */
3796         if (ext2fs_fast_test_block_bitmap2(ctx->block_ea_map, blk)) {
3797                 ea_block_quota->blocks = EXT2FS_C2B(fs, 1);
3798                 ea_block_quota->inodes = 0;
3799
3800                 if (ctx->ea_block_quota_blocks) {
3801                         ea_refcount_fetch(ctx->ea_block_quota_blocks, blk,
3802                                           &quota_blocks);
3803                         if (quota_blocks)
3804                                 ea_block_quota->blocks = quota_blocks;
3805                 }
3806
3807                 if (ctx->ea_block_quota_inodes)
3808                         ea_refcount_fetch(ctx->ea_block_quota_inodes, blk,
3809                                           &ea_block_quota->inodes);
3810
3811                 if (ea_refcount_decrement(ctx->refcount, blk, 0) == 0)
3812                         return 1;
3813                 /* Ooops, this EA was referenced more than it stated */
3814                 if (!ctx->refcount_extra) {
3815                         pctx->errcode = ea_refcount_create(0,
3816                                            &ctx->refcount_extra);
3817                         if (pctx->errcode) {
3818                                 pctx->num = 2;
3819                                 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
3820                                 ctx->flags |= E2F_FLAG_ABORT;
3821                                 return 0;
3822                         }
3823                 }
3824                 ea_refcount_increment(ctx->refcount_extra, blk, 0);
3825                 return 1;
3826         }
3827
3828         /*
3829          * OK, we haven't seen this EA block yet.  So we need to
3830          * validate it
3831          */
3832         pctx->blk = blk;
3833         pctx->errcode = ext2fs_read_ext_attr3(fs, blk, block_buf, pctx->ino);
3834         if (pctx->errcode == EXT2_ET_EXT_ATTR_CSUM_INVALID) {
3835                 pctx->errcode = 0;
3836                 failed_csum = 1;
3837         } else if (pctx->errcode == EXT2_ET_BAD_EA_HEADER)
3838                 pctx->errcode = 0;
3839
3840         if (pctx->errcode &&
3841             fix_problem(ctx, PR_1_READ_EA_BLOCK, pctx)) {
3842                 pctx->errcode = 0;
3843                 goto clear_extattr;
3844         }
3845         header = (struct ext2_ext_attr_header *) block_buf;
3846         pctx->blk = ext2fs_file_acl_block(fs, inode);
3847         if (((ctx->ext_attr_ver == 1) &&
3848              (header->h_magic != EXT2_EXT_ATTR_MAGIC_v1)) ||
3849             ((ctx->ext_attr_ver == 2) &&
3850              (header->h_magic != EXT2_EXT_ATTR_MAGIC))) {
3851                 if (fix_problem(ctx, PR_1_BAD_EA_BLOCK, pctx))
3852                         goto clear_extattr;
3853         }
3854
3855         if (header->h_blocks != 1) {
3856                 if (fix_problem(ctx, PR_1_EA_MULTI_BLOCK, pctx))
3857                         goto clear_extattr;
3858         }
3859
3860         if (pctx->errcode && fix_problem(ctx, PR_1_READ_EA_BLOCK, pctx))
3861                 goto clear_extattr;
3862
3863         region = region_create(0, fs->blocksize);
3864         if (!region) {
3865                 fix_problem(ctx, PR_1_EA_ALLOC_REGION_ABORT, pctx);
3866                 ctx->flags |= E2F_FLAG_ABORT;
3867                 return 0;
3868         }
3869         if (region_allocate(region, 0, sizeof(struct ext2_ext_attr_header))) {
3870                 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
3871                         goto clear_extattr;
3872         }
3873
3874         first = (struct ext2_ext_attr_entry *)(header+1);
3875         end = block_buf + fs->blocksize;
3876         entry = first;
3877         while ((char *)entry < end && *(__u32 *)entry) {
3878                 __u32 hash;
3879
3880                 if (region_allocate(region, (char *)entry - (char *)header,
3881                                    EXT2_EXT_ATTR_LEN(entry->e_name_len))) {
3882                         if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
3883                                 goto clear_extattr;
3884                         break;
3885                 }
3886                 if ((ctx->ext_attr_ver == 1 &&
3887                      (entry->e_name_len == 0 || entry->e_name_index != 0)) ||
3888                     (ctx->ext_attr_ver == 2 &&
3889                      entry->e_name_index == 0)) {
3890                         if (fix_problem(ctx, PR_1_EA_BAD_NAME, pctx))
3891                                 goto clear_extattr;
3892                         break;
3893                 }
3894                 if (entry->e_value_inum == 0) {
3895                         if (entry->e_value_size > EXT2_XATTR_SIZE_MAX ||
3896                             (entry->e_value_offs + entry->e_value_size >
3897                              fs->blocksize)) {
3898                                 if (fix_problem(ctx, PR_1_EA_BAD_VALUE, pctx))
3899                                         goto clear_extattr;
3900                                 break;
3901                         }
3902                         if (entry->e_value_size &&
3903                             region_allocate(region, entry->e_value_offs,
3904                                             EXT2_EXT_ATTR_SIZE(entry->e_value_size))) {
3905                                 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION,
3906                                                 pctx))
3907                                         goto clear_extattr;
3908                         }
3909
3910                         hash = ext2fs_ext_attr_hash_entry(entry, block_buf +
3911                                                           entry->e_value_offs);
3912
3913                         if (entry->e_hash != hash) {
3914                                 pctx->num = entry->e_hash;
3915                                 if (fix_problem(ctx, PR_1_ATTR_HASH, pctx))
3916                                         goto clear_extattr;
3917                                 entry->e_hash = hash;
3918                         }
3919                 } else {
3920                         problem_t problem;
3921                         blk64_t entry_quota_blocks;
3922
3923                         problem = check_large_ea_inode(ctx, entry, pctx,
3924                                                        &entry_quota_blocks);
3925                         if (problem && fix_problem(ctx, problem, pctx))
3926                                 goto clear_extattr;
3927
3928                         quota_blocks += entry_quota_blocks;
3929                         quota_inodes++;
3930                 }
3931
3932                 entry = EXT2_EXT_ATTR_NEXT(entry);
3933         }
3934         if (region_allocate(region, (char *)entry - (char *)header, 4)) {
3935                 if (fix_problem(ctx, PR_1_EA_ALLOC_COLLISION, pctx))
3936                         goto clear_extattr;
3937         }
3938         region_free(region);
3939
3940         /*
3941          * We only get here if there was no other errors that were fixed.
3942          * If there was a checksum fail, ask to correct it.
3943          */
3944         if (failed_csum &&
3945             fix_problem(ctx, PR_1_EA_BLOCK_ONLY_CSUM_INVALID, pctx)) {
3946                 pctx->errcode = e2fsck_write_ext_attr3(ctx, blk, block_buf,
3947                                                        pctx->ino);
3948                 if (pctx->errcode)
3949                         return 0;
3950         }
3951
3952         if (quota_blocks != EXT2FS_C2B(fs, 1U)) {
3953                 if (!ctx->ea_block_quota_blocks) {
3954                         pctx->errcode = ea_refcount_create(0,
3955                                                 &ctx->ea_block_quota_blocks);
3956                         if (pctx->errcode) {
3957                                 pctx->num = 3;
3958                                 goto refcount_fail;
3959                         }
3960                 }
3961                 ea_refcount_store(ctx->ea_block_quota_blocks, blk,
3962                                   quota_blocks);
3963         }
3964
3965         if (quota_inodes) {
3966                 if (!ctx->ea_block_quota_inodes) {
3967                         pctx->errcode = ea_refcount_create(0,
3968                                                 &ctx->ea_block_quota_inodes);
3969                         if (pctx->errcode) {
3970                                 pctx->num = 4;
3971 refcount_fail:
3972                                 fix_problem(ctx, PR_1_ALLOCATE_REFCOUNT, pctx);
3973                                 ctx->flags |= E2F_FLAG_ABORT;
3974                                 return 0;
3975                         }
3976                 }
3977
3978                 ea_refcount_store(ctx->ea_block_quota_inodes, blk,
3979                                   quota_inodes);
3980         }
3981         ea_block_quota->blocks = quota_blocks;
3982         ea_block_quota->inodes = quota_inodes;
3983
3984         inc_ea_inode_refs(ctx, pctx, first, end);
3985         ea_refcount_store(ctx->refcount, blk, header->h_refcount - 1);
3986         ea_refcount_store(ctx->refcount_orig, blk, header->h_refcount);
3987         /**
3988          * It might be racy that this block has been merged in the
3989          * global found map.
3990          */
3991         if (!is_blocks_used(ctx, blk, 1))
3992                 ext2fs_fast_mark_block_bitmap2(ctx->block_found_map, blk);
3993         ext2fs_fast_mark_block_bitmap2(ctx->block_ea_map, blk);
3994         return 1;
3995
3996 clear_extattr:
3997         if (region)
3998                 region_free(region);
3999         ext2fs_file_acl_block_set(fs, inode, 0);
4000         e2fsck_write_inode(ctx, ino, inode, "check_ext_attr");
4001         return 0;
4002 }
4003
4004 /* Returns 1 if bad htree, 0 if OK */
4005 static int handle_htree(e2fsck_t ctx, struct problem_context *pctx,
4006                         ext2_ino_t ino, struct ext2_inode *inode,
4007                         char *block_buf)
4008 {
4009         struct ext2_dx_root_info        *root;
4010         ext2_filsys                     fs = ctx->fs;
4011         errcode_t                       retval;
4012         blk64_t                         blk;
4013
4014         if ((!LINUX_S_ISDIR(inode->i_mode) &&
4015              fix_problem(ctx, PR_1_HTREE_NODIR, pctx)) ||
4016             (!ext2fs_has_feature_dir_index(fs->super) &&
4017              fix_problem(ctx, PR_1_HTREE_SET, pctx)))
4018                 return 1;
4019
4020         pctx->errcode = ext2fs_bmap2(fs, ino, inode, 0, 0, 0, 0, &blk);
4021
4022         if ((pctx->errcode) ||
4023             (blk == 0) ||
4024             (blk < fs->super->s_first_data_block) ||
4025             (blk >= ext2fs_blocks_count(fs->super))) {
4026                 if (fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
4027                         return 1;
4028                 else
4029                         return 0;
4030         }
4031
4032         retval = io_channel_read_blk64(fs->io, blk, 1, block_buf);
4033         if (retval && fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
4034                 return 1;
4035
4036         /* XXX should check that beginning matches a directory */
4037         root = (struct ext2_dx_root_info *) (block_buf + 24);
4038
4039         if ((root->reserved_zero || root->info_length < 8) &&
4040             fix_problem(ctx, PR_1_HTREE_BADROOT, pctx))
4041                 return 1;
4042
4043         pctx->num = root->hash_version;
4044         if ((root->hash_version != EXT2_HASH_LEGACY) &&
4045             (root->hash_version != EXT2_HASH_HALF_MD4) &&
4046             (root->hash_version != EXT2_HASH_TEA) &&
4047             (root->hash_version != EXT2_HASH_SIPHASH) &&
4048             fix_problem(ctx, PR_1_HTREE_HASHV, pctx))
4049                 return 1;
4050
4051         if (ext4_hash_in_dirent(inode)) {
4052                 if (root->hash_version != EXT2_HASH_SIPHASH &&
4053                     fix_problem(ctx, PR_1_HTREE_NEEDS_SIPHASH, pctx))
4054                         return 1;
4055         } else {
4056                 if (root->hash_version == EXT2_HASH_SIPHASH &&
4057                    fix_problem(ctx, PR_1_HTREE_CANNOT_SIPHASH, pctx))
4058                         return 1;
4059         }
4060
4061         if ((root->unused_flags & EXT2_HASH_FLAG_INCOMPAT) &&
4062             fix_problem(ctx, PR_1_HTREE_INCOMPAT, pctx))
4063                 return 1;
4064
4065         pctx->num = root->indirect_levels;
4066         /* if htree level is clearly too high, consider it to be broken */
4067         if (root->indirect_levels > EXT4_HTREE_LEVEL &&
4068             fix_problem(ctx, PR_1_HTREE_DEPTH, pctx))
4069                 return 1;
4070
4071         /* if level is only maybe too high, LARGE_DIR feature could be unset */
4072         if (root->indirect_levels > ext2_dir_htree_level(fs) &&
4073             !ext2fs_has_feature_largedir(fs->super)) {
4074                 int blockbits = EXT2_BLOCK_SIZE_BITS(fs->super) + 10;
4075                 unsigned idx_pb = 1 << (blockbits - 3);
4076
4077                 /* compare inode size/blocks vs. max-sized 2-level htree */
4078                 if (EXT2_I_SIZE(pctx->inode) <
4079                     (idx_pb - 1) * (idx_pb - 2) << blockbits &&
4080                     pctx->inode->i_blocks <
4081                     (idx_pb - 1) * (idx_pb - 2) << (blockbits - 9) &&
4082                     fix_problem(ctx, PR_1_HTREE_DEPTH, pctx))
4083                         return 1;
4084         }
4085
4086         if (root->indirect_levels > EXT4_HTREE_LEVEL_COMPAT ||
4087             ext2fs_needs_large_file_feature(EXT2_I_SIZE(inode)))
4088                 ctx->large_dirs++;
4089
4090         return 0;
4091 }
4092
4093 void e2fsck_clear_inode(e2fsck_t ctx, ext2_ino_t ino,
4094                         struct ext2_inode *inode, int restart_flag,
4095                         const char *source)
4096 {
4097         inode->i_flags = 0;
4098         inode->i_links_count = 0;
4099         ext2fs_icount_store(ctx->inode_link_info, ino, 0);
4100         inode->i_dtime = ctx->now;
4101
4102         /*
4103          * If a special inode has such rotten block mappings that we
4104          * want to clear the whole inode, be sure to actually zap
4105          * the block maps because i_links_count isn't checked for
4106          * special inodes, and we'll end up right back here the next
4107          * time we run fsck.
4108          */
4109         if (ino < EXT2_FIRST_INODE(ctx->fs->super))
4110                 memset(inode->i_block, 0, sizeof(inode->i_block));
4111
4112         ext2fs_unmark_inode_bitmap2(ctx->inode_dir_map, ino);
4113         ext2fs_unmark_inode_bitmap2(ctx->inode_used_map, ino);
4114         if (ctx->inode_reg_map)
4115                 ext2fs_unmark_inode_bitmap2(ctx->inode_reg_map, ino);
4116         if (ctx->inode_bad_map)
4117                 ext2fs_unmark_inode_bitmap2(ctx->inode_bad_map, ino);
4118
4119         /*
4120          * If the inode was partially accounted for before processing
4121          * was aborted, we need to restart the pass 1 scan.
4122          */
4123         ctx->flags |= restart_flag;
4124
4125         if (ino == EXT2_BAD_INO)
4126                 memset(inode, 0, sizeof(struct ext2_inode));
4127
4128         e2fsck_write_inode(ctx, ino, inode, source);
4129 }
4130
4131 /*
4132  * Use the multiple-blocks reclamation code to fix alignment problems in
4133  * a bigalloc filesystem.  We want a logical cluster to map to *only* one
4134  * physical cluster, and we want the block offsets within that cluster to
4135  * line up.
4136  */
4137 static int has_unaligned_cluster_map(e2fsck_t ctx,
4138                                      blk64_t last_pblk, blk64_t last_lblk,
4139                                      blk64_t pblk, blk64_t lblk)
4140 {
4141         blk64_t cluster_mask;
4142
4143         if (!ctx->fs->cluster_ratio_bits)
4144                 return 0;
4145         cluster_mask = EXT2FS_CLUSTER_MASK(ctx->fs);
4146
4147         /*
4148          * If the block in the logical cluster doesn't align with the block in
4149          * the physical cluster...
4150          */
4151         if ((lblk & cluster_mask) != (pblk & cluster_mask))
4152                 return 1;
4153
4154         /*
4155          * If we cross a physical cluster boundary within a logical cluster...
4156          */
4157         if (last_pblk && (lblk & cluster_mask) != 0 &&
4158             EXT2FS_B2C(ctx->fs, lblk) == EXT2FS_B2C(ctx->fs, last_lblk) &&
4159             EXT2FS_B2C(ctx->fs, pblk) != EXT2FS_B2C(ctx->fs, last_pblk))
4160                 return 1;
4161
4162         return 0;
4163 }
4164
4165 static void scan_extent_node(e2fsck_t ctx, struct problem_context *pctx,
4166                              struct process_block_struct *pb,
4167                              blk64_t start_block, blk64_t end_block,
4168                              blk64_t eof_block,
4169                              ext2_extent_handle_t ehandle,
4170                              int try_repairs)
4171 {
4172         struct ext2fs_extent    extent;
4173         blk64_t                 blk, last_lblk;
4174         unsigned int            i, n;
4175         int                     is_dir, is_leaf;
4176         problem_t               problem;
4177         struct ext2_extent_info info;
4178         int                     failed_csum = 0;
4179
4180         if (pctx->errcode == EXT2_ET_EXTENT_CSUM_INVALID)
4181                 failed_csum = 1;
4182
4183         pctx->errcode = ext2fs_extent_get_info(ehandle, &info);
4184         if (pctx->errcode)
4185                 return;
4186         if (!(ctx->options & E2F_OPT_FIXES_ONLY) &&
4187             !pb->eti.force_rebuild &&
4188             info.curr_level < MAX_EXTENT_DEPTH_COUNT) {
4189                 struct extent_tree_level *etl;
4190
4191                 etl = pb->eti.ext_info + info.curr_level;
4192                 etl->num_extents += info.num_entries;
4193                 etl->max_extents += info.max_entries;
4194                 /*
4195                  * Implementation wart: Splitting extent blocks when appending
4196                  * will leave the old block with one free entry.  Therefore
4197                  * unless the node is totally full, pretend that a non-root
4198                  * extent block can hold one fewer entry than it actually does,
4199                  * so that we don't repeatedly rebuild the extent tree.
4200                  */
4201                 if (info.curr_level && info.num_entries < info.max_entries)
4202                         etl->max_extents--;
4203         }
4204
4205         pctx->errcode = ext2fs_extent_get(ehandle, EXT2_EXTENT_FIRST_SIB,
4206                                           &extent);
4207         while ((pctx->errcode == 0 ||
4208                 pctx->errcode == EXT2_ET_EXTENT_CSUM_INVALID) &&
4209                info.num_entries-- > 0) {
4210                 is_leaf = extent.e_flags & EXT2_EXTENT_FLAGS_LEAF;
4211                 is_dir = LINUX_S_ISDIR(pctx->inode->i_mode);
4212                 last_lblk = extent.e_lblk + extent.e_len - 1;
4213
4214                 problem = 0;
4215                 pctx->blk = extent.e_pblk;
4216                 pctx->blk2 = extent.e_lblk;
4217                 pctx->num = extent.e_len;
4218                 pctx->blkcount = extent.e_lblk + extent.e_len;
4219
4220                 if (extent.e_pblk == 0 ||
4221                     extent.e_pblk < ctx->fs->super->s_first_data_block ||
4222                     extent.e_pblk >= ext2fs_blocks_count(ctx->fs->super))
4223                         problem = PR_1_EXTENT_BAD_START_BLK;
4224                 else if (extent.e_lblk < start_block)
4225                         problem = PR_1_OUT_OF_ORDER_EXTENTS;
4226                 else if ((end_block && last_lblk > end_block) &&
4227                          !(last_lblk > eof_block &&
4228                            ((extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) ||
4229                             (pctx->inode->i_flags & EXT4_VERITY_FL))))
4230                         problem = PR_1_EXTENT_END_OUT_OF_BOUNDS;
4231                 else if (is_leaf && extent.e_len == 0)
4232                         problem = PR_1_EXTENT_LENGTH_ZERO;
4233                 else if (is_leaf &&
4234                          (extent.e_pblk + extent.e_len) >
4235                          ext2fs_blocks_count(ctx->fs->super))
4236                         problem = PR_1_EXTENT_ENDS_BEYOND;
4237                 else if (is_leaf && is_dir && !pctx->inode->i_size_high &&
4238                          !ext2fs_has_feature_largedir(ctx->fs->super) &&
4239                          ((extent.e_lblk + extent.e_len) >
4240                           (1U << (21 - ctx->fs->super->s_log_block_size))))
4241                         problem = PR_1_TOOBIG_DIR;
4242
4243                 if (is_leaf && problem == 0 && extent.e_len > 0) {
4244 #if 0
4245                         printf("extent_region(ino=%u, expect=%llu, "
4246                                "lblk=%llu, len=%u)\n", pb->ino,
4247                                (unsigned long long) pb->next_lblock,
4248                                (unsigned long long) extent.e_lblk,
4249                                extent.e_len);
4250 #endif
4251                         if (extent.e_lblk < pb->next_lblock)
4252                                 problem = PR_1_EXTENT_COLLISION;
4253                         else if (extent.e_lblk + extent.e_len > pb->next_lblock)
4254                                 pb->next_lblock = extent.e_lblk + extent.e_len;
4255                 }
4256
4257                 /*
4258                  * Uninitialized blocks in a directory?  Clear the flag and
4259                  * we'll interpret the blocks later.
4260                  */
4261                 if (try_repairs && is_dir && problem == 0 &&
4262                     (extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) &&
4263                     fix_problem(ctx, PR_1_UNINIT_DBLOCK, pctx)) {
4264                         e2fsck_pass1_fix_lock(ctx);
4265                         extent.e_flags &= ~EXT2_EXTENT_FLAGS_UNINIT;
4266                         pb->inode_modified = 1;
4267                         pctx->errcode = ext2fs_extent_replace(ehandle, 0,
4268                                                               &extent);
4269                         e2fsck_pass1_fix_unlock(ctx);
4270                         if (pctx->errcode)
4271                                 return;
4272                         failed_csum = 0;
4273                 }
4274 #ifdef CONFIG_DEVELOPER_FEATURES
4275                 if (try_repairs && !is_dir && problem == 0 &&
4276                     (ctx->options & E2F_OPT_CLEAR_UNINIT) &&
4277                     (extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT) &&
4278                     fix_problem(ctx, PR_1_CLEAR_UNINIT_EXTENT, pctx)) {
4279                         extent.e_flags &= ~EXT2_EXTENT_FLAGS_UNINIT;
4280                         pb->inode_modified = 1;
4281                         pctx->errcode = ext2fs_extent_replace(ehandle, 0,
4282                                                               &extent);
4283                         if (pctx->errcode)
4284                                 return;
4285                         failed_csum = 0;
4286                 }
4287 #endif
4288                 if (try_repairs && problem) {
4289 report_problem:
4290                         if (fix_problem(ctx, problem, pctx)) {
4291                                 if (ctx->invalid_bitmaps) {
4292                                         /*
4293                                          * If fsck knows the bitmaps are bad,
4294                                          * skip to the next extent and
4295                                          * try to clear this extent again
4296                                          * after fixing the bitmaps, by
4297                                          * restarting fsck.
4298                                          */
4299                                         pctx->errcode = ext2fs_extent_get(
4300                                                           ehandle,
4301                                                           EXT2_EXTENT_NEXT_SIB,
4302                                                           &extent);
4303                                         ctx->flags |= E2F_FLAG_RESTART_LATER;
4304                                         if (pctx->errcode ==
4305                                                     EXT2_ET_NO_CURRENT_NODE) {
4306                                                 pctx->errcode = 0;
4307                                                 break;
4308                                         }
4309                                         continue;
4310                                 }
4311                                 e2fsck_pass1_fix_lock(ctx);
4312                                 e2fsck_read_bitmaps(ctx);
4313                                 pb->inode_modified = 1;
4314                                 pctx->errcode =
4315                                         ext2fs_extent_delete(ehandle, 0);
4316                                 e2fsck_pass1_fix_unlock(ctx);
4317                                 if (pctx->errcode) {
4318                                         pctx->str = "ext2fs_extent_delete";
4319                                         return;
4320                                 }
4321                                 e2fsck_pass1_fix_lock(ctx);
4322                                 pctx->errcode = ext2fs_extent_fix_parents(ehandle);
4323                                 e2fsck_pass1_fix_unlock(ctx);
4324                                 if (pctx->errcode &&
4325                                     pctx->errcode != EXT2_ET_NO_CURRENT_NODE) {
4326                                         pctx->str = "ext2fs_extent_fix_parents";
4327                                         return;
4328                                 }
4329                                 pctx->errcode = ext2fs_extent_get(ehandle,
4330                                                                   EXT2_EXTENT_CURRENT,
4331                                                                   &extent);
4332                                 if (pctx->errcode == EXT2_ET_NO_CURRENT_NODE) {
4333                                         pctx->errcode = 0;
4334                                         break;
4335                                 }
4336                                 failed_csum = 0;
4337                                 continue;
4338                         }
4339                         goto next;
4340                 }
4341
4342                 if (!is_leaf) {
4343                         blk64_t lblk = extent.e_lblk;
4344                         int next_try_repairs = 1;
4345
4346                         blk = extent.e_pblk;
4347
4348                         /*
4349                          * If this lower extent block collides with critical
4350                          * metadata, don't try to repair the damage.  Pass 1b
4351                          * will reallocate the block; then we can try again.
4352                          */
4353                         if (pb->ino != EXT2_RESIZE_INO &&
4354                             extent.e_pblk < ctx->fs->super->s_blocks_count &&
4355                             ext2fs_test_block_bitmap2(ctx->block_metadata_map,
4356                                                       extent.e_pblk)) {
4357                                 next_try_repairs = 0;
4358                                 pctx->blk = blk;
4359                                 fix_problem(ctx,
4360                                             PR_1_CRITICAL_METADATA_COLLISION,
4361                                             pctx);
4362                                 if ((ctx->options & E2F_OPT_NO) == 0)
4363                                         ctx->flags |= E2F_FLAG_RESTART_LATER;
4364                         }
4365                         pctx->errcode = ext2fs_extent_get(ehandle,
4366                                                   EXT2_EXTENT_DOWN, &extent);
4367                         if (pctx->errcode &&
4368                             pctx->errcode != EXT2_ET_EXTENT_CSUM_INVALID) {
4369                                 pctx->str = "EXT2_EXTENT_DOWN";
4370                                 problem = PR_1_EXTENT_HEADER_INVALID;
4371                                 if (!next_try_repairs)
4372                                         return;
4373                                 if (pctx->errcode == EXT2_ET_EXTENT_HEADER_BAD)
4374                                         goto report_problem;
4375                                 return;
4376                         }
4377                         /* The next extent should match this index's logical start */
4378                         if (extent.e_lblk != lblk) {
4379                                 struct ext2_extent_info e_info;
4380
4381                                 pctx->errcode = ext2fs_extent_get_info(ehandle,
4382                                                                        &e_info);
4383                                 if (pctx->errcode) {
4384                                         pctx->str = "ext2fs_extent_get_info";
4385                                         return;
4386                                 }
4387                                 pctx->blk = lblk;
4388                                 pctx->blk2 = extent.e_lblk;
4389                                 pctx->num = e_info.curr_level - 1;
4390                                 problem = PR_1_EXTENT_INDEX_START_INVALID;
4391                                 if (fix_problem(ctx, problem, pctx)) {
4392                                         e2fsck_pass1_fix_lock(ctx);
4393                                         pb->inode_modified = 1;
4394                                         pctx->errcode =
4395                                                 ext2fs_extent_fix_parents(ehandle);
4396                                         e2fsck_pass1_fix_unlock(ctx);
4397                                         if (pctx->errcode) {
4398                                                 pctx->str = "ext2fs_extent_fix_parents";
4399                                                 return;
4400                                         }
4401                                 }
4402                         }
4403                         scan_extent_node(ctx, pctx, pb, extent.e_lblk,
4404                                          last_lblk, eof_block, ehandle,
4405                                          next_try_repairs);
4406                         if (pctx->errcode)
4407                                 return;
4408                         pctx->errcode = ext2fs_extent_get(ehandle,
4409                                                   EXT2_EXTENT_UP, &extent);
4410                         if (pctx->errcode) {
4411                                 pctx->str = "EXT2_EXTENT_UP";
4412                                 return;
4413                         }
4414                         mark_block_used(ctx, blk);
4415                         pb->num_blocks++;
4416                         goto next;
4417                 }
4418
4419                 if ((pb->previous_block != 0) &&
4420                     (pb->previous_block+1 != extent.e_pblk)) {
4421                         if (ctx->options & E2F_OPT_FRAGCHECK) {
4422                                 char type = '?';
4423
4424                                 if (pb->is_dir)
4425                                         type = 'd';
4426                                 else if (pb->is_reg)
4427                                         type = 'f';
4428
4429                                 printf(("%6lu(%c): expecting %6lu "
4430                                         "actual extent "
4431                                         "phys %6lu log %lu len %lu\n"),
4432                                        (unsigned long) pctx->ino, type,
4433                                        (unsigned long) pb->previous_block+1,
4434                                        (unsigned long) extent.e_pblk,
4435                                        (unsigned long) extent.e_lblk,
4436                                        (unsigned long) extent.e_len);
4437                         }
4438                         pb->fragmented = 1;
4439                 }
4440                 /*
4441                  * If we notice a gap in the logical block mappings of an
4442                  * extent-mapped directory, offer to close the hole by
4443                  * moving the logical block down, otherwise we'll go mad in
4444                  * pass 3 allocating empty directory blocks to fill the hole.
4445                  */
4446                 if (try_repairs && is_dir &&
4447                     pb->last_block + 1 < extent.e_lblk) {
4448                         blk64_t new_lblk;
4449
4450                         new_lblk = pb->last_block + 1;
4451                         if (EXT2FS_CLUSTER_RATIO(ctx->fs) > 1)
4452                                 new_lblk = ((new_lblk +
4453                                              EXT2FS_CLUSTER_RATIO(ctx->fs) - 1) &
4454                                             ~EXT2FS_CLUSTER_MASK(ctx->fs)) |
4455                                            (extent.e_pblk &
4456                                             EXT2FS_CLUSTER_MASK(ctx->fs));
4457                         pctx->blk = extent.e_lblk;
4458                         pctx->blk2 = new_lblk;
4459                         if (fix_problem(ctx, PR_1_COLLAPSE_DBLOCK, pctx)) {
4460                                 e2fsck_pass1_fix_lock(ctx);
4461                                 extent.e_lblk = new_lblk;
4462                                 pb->inode_modified = 1;
4463                                 pctx->errcode = ext2fs_extent_replace(ehandle,
4464                                                                 0, &extent);
4465                                 e2fsck_pass1_fix_unlock(ctx);
4466                                 if (pctx->errcode) {
4467                                         pctx->errcode = 0;
4468                                         goto alloc_later;
4469                                 }
4470                                 e2fsck_pass1_fix_lock(ctx);
4471                                 pctx->errcode = ext2fs_extent_fix_parents(ehandle);
4472                                 e2fsck_pass1_fix_unlock(ctx);
4473                                 if (pctx->errcode)
4474                                         goto failed_add_dir_block;
4475                                 pctx->errcode = ext2fs_extent_goto(ehandle,
4476                                                                 extent.e_lblk);
4477                                 if (pctx->errcode)
4478                                         goto failed_add_dir_block;
4479                                 last_lblk = extent.e_lblk + extent.e_len - 1;
4480                                 failed_csum = 0;
4481                         }
4482                 }
4483 alloc_later:
4484                 if (is_dir) {
4485                         while (++pb->last_db_block <
4486                                (e2_blkcnt_t) extent.e_lblk) {
4487                                 pctx->errcode = ext2fs_add_dir_block2(
4488                                                         ctx->fs->dblist,
4489                                                         pb->ino, 0,
4490                                                         pb->last_db_block);
4491                                 if (pctx->errcode) {
4492                                         pctx->blk = 0;
4493                                         pctx->num = pb->last_db_block;
4494                                         goto failed_add_dir_block;
4495                                 }
4496                         }
4497
4498                         for (i = 0; i < extent.e_len; i++) {
4499                                 pctx->errcode = ext2fs_add_dir_block2(
4500                                                         ctx->fs->dblist,
4501                                                         pctx->ino,
4502                                                         extent.e_pblk + i,
4503                                                         extent.e_lblk + i);
4504                                 if (pctx->errcode) {
4505                                         pctx->blk = extent.e_pblk + i;
4506                                         pctx->num = extent.e_lblk + i;
4507                                 failed_add_dir_block:
4508                                         fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
4509                                         /* Should never get here */
4510                                         ctx->flags |= E2F_FLAG_ABORT;
4511                                         return;
4512                                 }
4513                         }
4514                         if (extent.e_len > 0)
4515                                 pb->last_db_block = extent.e_lblk + extent.e_len - 1;
4516                 }
4517                 if (has_unaligned_cluster_map(ctx, pb->previous_block,
4518                                               pb->last_block,
4519                                               extent.e_pblk,
4520                                               extent.e_lblk)) {
4521                         for (i = 0; i < extent.e_len; i++) {
4522                                 pctx->blk = extent.e_lblk + i;
4523                                 pctx->blk2 = extent.e_pblk + i;
4524                                 fix_problem(ctx, PR_1_MISALIGNED_CLUSTER, pctx);
4525                                 mark_block_used(ctx, extent.e_pblk + i);
4526                                 mark_block_used(ctx, extent.e_pblk + i);
4527                         }
4528                 }
4529
4530                 /*
4531                  * Check whether first cluster got marked in previous iteration.
4532                  */
4533                 if (ctx->fs->cluster_ratio_bits &&
4534                     pb->previous_block &&
4535                     (EXT2FS_B2C(ctx->fs, extent.e_pblk) ==
4536                      EXT2FS_B2C(ctx->fs, pb->previous_block)))
4537                         /* Set blk to the beginning of next cluster. */
4538                         blk = EXT2FS_C2B(
4539                                 ctx->fs,
4540                                 EXT2FS_B2C(ctx->fs, extent.e_pblk) + 1);
4541                 else
4542                         /* Set blk to the beginning of current cluster. */
4543                         blk = EXT2FS_C2B(ctx->fs,
4544                                          EXT2FS_B2C(ctx->fs, extent.e_pblk));
4545
4546                 if (blk < extent.e_pblk + extent.e_len) {
4547                         mark_blocks_used(ctx, blk,
4548                                          extent.e_pblk + extent.e_len - blk);
4549                         n = DIV_ROUND_UP(extent.e_pblk + extent.e_len - blk,
4550                                          EXT2FS_CLUSTER_RATIO(ctx->fs));
4551                         pb->num_blocks += n;
4552                 }
4553                 pb->last_block = extent.e_lblk + extent.e_len - 1;
4554                 pb->previous_block = extent.e_pblk + extent.e_len - 1;
4555                 start_block = pb->last_block = last_lblk;
4556                 if (is_leaf && !is_dir &&
4557                     !(extent.e_flags & EXT2_EXTENT_FLAGS_UNINIT))
4558                         pb->last_init_lblock = last_lblk;
4559         next:
4560                 pctx->errcode = ext2fs_extent_get(ehandle,
4561                                                   EXT2_EXTENT_NEXT_SIB,
4562                                                   &extent);
4563         }
4564
4565         /* Failed csum but passes checks?  Ask to fix checksum. */
4566         if (failed_csum &&
4567             fix_problem(ctx, PR_1_EXTENT_ONLY_CSUM_INVALID, pctx)) {
4568                 e2fsck_pass1_fix_lock(ctx);
4569                 pb->inode_modified = 1;
4570                 pctx->errcode = ext2fs_extent_replace(ehandle, 0, &extent);
4571                 e2fsck_pass1_fix_unlock(ctx);
4572                 if (pctx->errcode)
4573                         return;
4574         }
4575
4576         if (pctx->errcode == EXT2_ET_EXTENT_NO_NEXT)
4577                 pctx->errcode = 0;
4578 }
4579
4580 static void check_blocks_extents(e2fsck_t ctx, struct problem_context *pctx,
4581                                  struct process_block_struct *pb)
4582 {
4583         struct ext2_extent_info info;
4584         struct ext2_inode       *inode = pctx->inode;
4585         ext2_extent_handle_t    ehandle;
4586         ext2_filsys             fs = ctx->fs;
4587         ext2_ino_t              ino = pctx->ino;
4588         errcode_t               retval;
4589         blk64_t                 eof_lblk;
4590         struct ext3_extent_header       *eh;
4591
4592         /* Check for a proper extent header... */
4593         eh = (struct ext3_extent_header *) &inode->i_block[0];
4594         retval = ext2fs_extent_header_verify(eh, sizeof(inode->i_block));
4595         if (retval) {
4596                 if (fix_problem(ctx, PR_1_MISSING_EXTENT_HEADER, pctx))
4597                         e2fsck_clear_inode(ctx, ino, inode, 0,
4598                                            "check_blocks_extents");
4599                 pctx->errcode = 0;
4600                 return;
4601         }
4602
4603         /* ...since this function doesn't fail if i_block is zeroed. */
4604         pctx->errcode = ext2fs_extent_open2(fs, ino, inode, &ehandle);
4605         if (pctx->errcode) {
4606                 if (fix_problem(ctx, PR_1_READ_EXTENT, pctx))
4607                         e2fsck_clear_inode(ctx, ino, inode, 0,
4608                                            "check_blocks_extents");
4609                 pctx->errcode = 0;
4610                 return;
4611         }
4612
4613         retval = ext2fs_extent_get_info(ehandle, &info);
4614         if (retval == 0) {
4615                 int max_depth = info.max_depth;
4616
4617                 if (max_depth >= MAX_EXTENT_DEPTH_COUNT)
4618                         max_depth = MAX_EXTENT_DEPTH_COUNT-1;
4619                 ctx->extent_depth_count[max_depth]++;
4620         }
4621
4622         /* Check maximum extent depth */
4623         pctx->blk = info.max_depth;
4624         pctx->blk2 = ext2fs_max_extent_depth(ehandle);
4625         if (pctx->blk2 < pctx->blk &&
4626             fix_problem(ctx, PR_1_EXTENT_BAD_MAX_DEPTH, pctx))
4627                 pb->eti.force_rebuild = 1;
4628
4629         /* Can we collect extent tree level stats? */
4630         pctx->blk = MAX_EXTENT_DEPTH_COUNT;
4631         if (pctx->blk2 > pctx->blk)
4632                 fix_problem(ctx, PR_1E_MAX_EXTENT_TREE_DEPTH, pctx);
4633         memset(pb->eti.ext_info, 0, sizeof(pb->eti.ext_info));
4634         pb->eti.ino = pb->ino;
4635
4636         pb->next_lblock = 0;
4637
4638         eof_lblk = ((EXT2_I_SIZE(inode) + fs->blocksize - 1) >>
4639                 EXT2_BLOCK_SIZE_BITS(fs->super)) - 1;
4640         scan_extent_node(ctx, pctx, pb, 0, 0, eof_lblk, ehandle, 1);
4641         if (pctx->errcode &&
4642             fix_problem(ctx, PR_1_EXTENT_ITERATE_FAILURE, pctx)) {
4643                 pb->num_blocks = 0;
4644                 inode->i_blocks = 0;
4645                 e2fsck_clear_inode(ctx, ino, inode, E2F_FLAG_RESTART,
4646                                    "check_blocks_extents");
4647                 pctx->errcode = 0;
4648         }
4649         ext2fs_extent_free(ehandle);
4650
4651         /* Rebuild unless it's a dir and we're rehashing it */
4652         if (LINUX_S_ISDIR(inode->i_mode) &&
4653             e2fsck_dir_will_be_rehashed(ctx, ino))
4654                 return;
4655
4656         if (ctx->options & E2F_OPT_CONVERT_BMAP)
4657                 e2fsck_rebuild_extents_later(ctx, ino);
4658         else
4659                 e2fsck_should_rebuild_extents(ctx, pctx, &pb->eti, &info);
4660 }
4661
4662 /*
4663  * In fact we don't need to check blocks for an inode with inline data
4664  * because this inode doesn't have any blocks.  In this function all
4665  * we need to do is add this inode into dblist when it is a directory.
4666  */
4667 static void check_blocks_inline_data(e2fsck_t ctx, struct problem_context *pctx,
4668                                      struct process_block_struct *pb)
4669 {
4670         int     flags;
4671         size_t  inline_data_size = 0;
4672
4673         if (!pb->is_dir) {
4674                 pctx->errcode = 0;
4675                 return;
4676         }
4677
4678         /* Process the dirents in i_block[] as the "first" block. */
4679         pctx->errcode = ext2fs_add_dir_block2(ctx->fs->dblist, pb->ino, 0, 0);
4680         if (pctx->errcode)
4681                 goto err;
4682
4683         /* Process the dirents in the EA as a "second" block. */
4684         flags = ctx->fs->flags;
4685         ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
4686         pctx->errcode = ext2fs_inline_data_size(ctx->fs, pb->ino,
4687                                                 &inline_data_size);
4688         ctx->fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
4689                          (ctx->fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
4690         if (pctx->errcode) {
4691                 pctx->errcode = 0;
4692                 return;
4693         }
4694
4695         if (inline_data_size <= EXT4_MIN_INLINE_DATA_SIZE)
4696                 return;
4697
4698         pctx->errcode = ext2fs_add_dir_block2(ctx->fs->dblist, pb->ino, 0, 1);
4699         if (pctx->errcode)
4700                 goto err;
4701
4702         return;
4703 err:
4704         pctx->blk = 0;
4705         pctx->num = 0;
4706         fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
4707         ctx->flags |= E2F_FLAG_ABORT;
4708 }
4709
4710 /*
4711  * This subroutine is called on each inode to account for all of the
4712  * blocks used by that inode.
4713  */
4714 static void check_blocks(e2fsck_t ctx, struct problem_context *pctx,
4715                          char *block_buf, const struct ea_quota *ea_ibody_quota)
4716 {
4717         ext2_filsys fs = ctx->fs;
4718         struct process_block_struct pb;
4719         ext2_ino_t      ino = pctx->ino;
4720         struct ext2_inode *inode = pctx->inode;
4721         unsigned        bad_size = 0;
4722         int             dirty_inode = 0;
4723         int             extent_fs;
4724         int             inlinedata_fs;
4725         __u64           size;
4726         struct ea_quota ea_block_quota;
4727
4728         pb.ino = ino;
4729         pb.num_blocks = EXT2FS_B2C(ctx->fs,
4730                                    ea_ibody_quota ? ea_ibody_quota->blocks : 0);
4731         pb.last_block = ~0;
4732         pb.last_init_lblock = -1;
4733         pb.last_db_block = -1;
4734         pb.num_illegal_blocks = 0;
4735         pb.suppress = 0; pb.clear = 0;
4736         pb.fragmented = 0;
4737         pb.compressed = 0;
4738         pb.previous_block = 0;
4739         pb.is_dir = LINUX_S_ISDIR(inode->i_mode);
4740         pb.is_reg = LINUX_S_ISREG(inode->i_mode);
4741         pb.max_blocks = 1U << (31 - fs->super->s_log_block_size);
4742         pb.inode = inode;
4743         pb.pctx = pctx;
4744         pb.ctx = ctx;
4745         pb.inode_modified = 0;
4746         pb.eti.force_rebuild = 0;
4747         pctx->ino = ino;
4748         pctx->errcode = 0;
4749
4750         extent_fs = ext2fs_has_feature_extents(ctx->fs->super);
4751         inlinedata_fs = ext2fs_has_feature_inline_data(ctx->fs->super);
4752
4753         if (check_ext_attr(ctx, pctx, block_buf, &ea_block_quota)) {
4754                 if (e2fsck_should_abort(ctx))
4755                         goto out;
4756                 pb.num_blocks += EXT2FS_B2C(ctx->fs, ea_block_quota.blocks);
4757         }
4758
4759         if (inlinedata_fs && (inode->i_flags & EXT4_INLINE_DATA_FL))
4760                 check_blocks_inline_data(ctx, pctx, &pb);
4761         else if (ext2fs_inode_has_valid_blocks2(fs, inode)) {
4762                 if (extent_fs && (inode->i_flags & EXT4_EXTENTS_FL))
4763                         check_blocks_extents(ctx, pctx, &pb);
4764                 else {
4765                         int flags;
4766                         /*
4767                          * If we've modified the inode, write it out before
4768                          * iterate() tries to use it.
4769                          */
4770                         if (dirty_inode) {
4771                                 e2fsck_write_inode(ctx, ino, inode,
4772                                                    "check_blocks");
4773                                 dirty_inode = 0;
4774                         }
4775                         flags = fs->flags;
4776                         fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
4777                         pctx->errcode = ext2fs_block_iterate3(fs, ino,
4778                                                 pb.is_dir ? BLOCK_FLAG_HOLE : 0,
4779                                                 block_buf, process_block, &pb);
4780                         /*
4781                          * We do not have uninitialized extents in non extent
4782                          * files.
4783                          */
4784                         pb.last_init_lblock = pb.last_block;
4785                         /*
4786                          * If iterate() changed a block mapping, we have to
4787                          * re-read the inode.  If we decide to clear the
4788                          * inode after clearing some stuff, we'll re-write the
4789                          * bad mappings into the inode!
4790                          */
4791                         if (pb.inode_modified)
4792                                 e2fsck_read_inode(ctx, ino, inode,
4793                                                   "check_blocks");
4794                         fs->flags = (flags & EXT2_FLAG_IGNORE_CSUM_ERRORS) |
4795                                     (fs->flags & ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
4796
4797                         if (ctx->options & E2F_OPT_CONVERT_BMAP) {
4798 #ifdef DEBUG
4799                                 printf("bmap rebuild ino=%d\n", ino);
4800 #endif
4801                                 if (!LINUX_S_ISDIR(inode->i_mode) ||
4802                                     !e2fsck_dir_will_be_rehashed(ctx, ino))
4803                                         e2fsck_rebuild_extents_later(ctx, ino);
4804                         }
4805                 }
4806         }
4807         end_problem_latch(ctx, PR_LATCH_BLOCK);
4808         end_problem_latch(ctx, PR_LATCH_TOOBIG);
4809         if (e2fsck_should_abort(ctx))
4810                 goto out;
4811         if (pctx->errcode)
4812                 fix_problem(ctx, PR_1_BLOCK_ITERATE, pctx);
4813
4814         if (pb.fragmented && pb.num_blocks < fs->super->s_blocks_per_group) {
4815                 if (LINUX_S_ISDIR(inode->i_mode))
4816                         ctx->fs_fragmented_dir++;
4817                 else
4818                         ctx->fs_fragmented++;
4819         }
4820
4821         if (pb.clear) {
4822                 e2fsck_clear_inode(ctx, ino, inode, E2F_FLAG_RESTART,
4823                                    "check_blocks");
4824                 return;
4825         }
4826
4827         if (inode->i_flags & EXT2_INDEX_FL) {
4828                 if (handle_htree(ctx, pctx, ino, inode, block_buf)) {
4829                         inode->i_flags &= ~EXT2_INDEX_FL;
4830                         dirty_inode++;
4831                 } else {
4832                         e2fsck_add_dx_dir(ctx, ino, inode, pb.last_block+1);
4833                 }
4834         }
4835
4836         if (!pb.num_blocks && pb.is_dir &&
4837             !(inode->i_flags & EXT4_INLINE_DATA_FL)) {
4838                 if (fix_problem(ctx, PR_1_ZERO_LENGTH_DIR, pctx)) {
4839                         e2fsck_clear_inode(ctx, ino, inode, 0, "check_blocks");
4840                         ctx->fs_directory_count--;
4841                         return;
4842                 }
4843         }
4844
4845         if (ino != quota_type2inum(PRJQUOTA, fs->super) &&
4846             (ino == EXT2_ROOT_INO || ino >= EXT2_FIRST_INODE(ctx->fs->super)) &&
4847             !(inode->i_flags & EXT4_EA_INODE_FL)) {
4848                 quota_data_add(ctx->qctx, (struct ext2_inode_large *) inode,
4849                                ino,
4850                                pb.num_blocks * EXT2_CLUSTER_SIZE(fs->super));
4851                 quota_data_inodes(ctx->qctx, (struct ext2_inode_large *) inode,
4852                                   ino, (ea_ibody_quota ?
4853                                         ea_ibody_quota->inodes : 0) +
4854                                                 ea_block_quota.inodes + 1);
4855         }
4856
4857         if (!ext2fs_has_feature_huge_file(fs->super) ||
4858             !(inode->i_flags & EXT4_HUGE_FILE_FL))
4859                 pb.num_blocks *= (fs->blocksize / 512);
4860         pb.num_blocks *= EXT2FS_CLUSTER_RATIO(fs);
4861 #if 0
4862         printf("inode %u, i_size = %u, last_block = %llu, i_blocks=%llu, num_blocks = %llu\n",
4863                ino, inode->i_size, (unsigned long long) pb.last_block,
4864                (unsigned long long) ext2fs_inode_i_blocks(fs, inode),
4865                (unsigned long long) pb.num_blocks);
4866 #endif
4867         size = EXT2_I_SIZE(inode);
4868         if (pb.is_dir) {
4869                 unsigned nblock = size >> EXT2_BLOCK_SIZE_BITS(fs->super);
4870                 if (inode->i_flags & EXT4_INLINE_DATA_FL) {
4871                         int flags;
4872                         size_t sz = 0;
4873                         errcode_t err;
4874
4875                         flags = ctx->fs->flags;
4876                         ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
4877                         err = ext2fs_inline_data_size(ctx->fs, pctx->ino,
4878                                                       &sz);
4879                         ctx->fs->flags = (flags &
4880                                           EXT2_FLAG_IGNORE_CSUM_ERRORS) |
4881                                          (ctx->fs->flags &
4882                                           ~EXT2_FLAG_IGNORE_CSUM_ERRORS);
4883                         if (err || sz != size) {
4884                                 bad_size = 7;
4885                                 pctx->num = sz;
4886                         }
4887                 } else if (size & (fs->blocksize - 1))
4888                         bad_size = 5;
4889                 else if (nblock > (pb.last_block + 1))
4890                         bad_size = 1;
4891                 else if (nblock < (pb.last_block + 1)) {
4892                         if (((pb.last_block + 1) - nblock) >
4893                             fs->super->s_prealloc_dir_blocks)
4894                                 bad_size = 2;
4895                 }
4896         } else {
4897                 if ((pb.last_init_lblock >= 0) &&
4898                     /* Do not allow initialized allocated blocks past i_size*/
4899                     (size < (__u64)pb.last_init_lblock * fs->blocksize) &&
4900                     !(inode->i_flags & EXT4_VERITY_FL))
4901                         bad_size = 3;
4902                 else if (!(extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) &&
4903                          size > ext2_max_sizes[fs->super->s_log_block_size])
4904                         /* too big for a direct/indirect-mapped file */
4905                         bad_size = 4;
4906                 else if ((extent_fs && (inode->i_flags & EXT4_EXTENTS_FL)) &&
4907                          size >
4908                          ((1ULL << (32 + EXT2_BLOCK_SIZE_BITS(fs->super))) - 1))
4909                         /* too big for an extent-based file - 32bit ee_block */
4910                         bad_size = 6;
4911         }
4912         /* i_size for symlinks is checked elsewhere */
4913         if (bad_size && !LINUX_S_ISLNK(inode->i_mode)) {
4914                 /* Did inline_data set pctx->num earlier? */
4915                 if (bad_size != 7)
4916                         pctx->num = (pb.last_block + 1) * fs->blocksize;
4917                 pctx->group = bad_size;
4918                 if (fix_problem(ctx, PR_1_BAD_I_SIZE, pctx)) {
4919                         ext2fs_inode_size_set(fs, inode, pctx->num);
4920                         if (EXT2_I_SIZE(inode) == 0 &&
4921                             (inode->i_flags & EXT4_INLINE_DATA_FL)) {
4922                                 memset(inode->i_block, 0,
4923                                        sizeof(inode->i_block));
4924                                 inode->i_flags &= ~EXT4_INLINE_DATA_FL;
4925                         }
4926                         dirty_inode++;
4927                 }
4928                 pctx->num = 0;
4929         }
4930         if (LINUX_S_ISREG(inode->i_mode) &&
4931             ext2fs_needs_large_file_feature(EXT2_I_SIZE(inode)))
4932                 ctx->large_files++;
4933         if ((fs->super->s_creator_os != EXT2_OS_HURD) &&
4934             ((pb.num_blocks != ext2fs_inode_i_blocks(fs, inode)) ||
4935              (ext2fs_has_feature_huge_file(fs->super) &&
4936               (inode->i_flags & EXT4_HUGE_FILE_FL) &&
4937               (inode->osd2.linux2.l_i_blocks_hi != 0)))) {
4938                 pctx->num = pb.num_blocks;
4939                 if (fix_problem(ctx, PR_1_BAD_I_BLOCKS, pctx)) {
4940                         inode->i_blocks = pb.num_blocks;
4941                         inode->osd2.linux2.l_i_blocks_hi = pb.num_blocks >> 32;
4942                         dirty_inode++;
4943                 }
4944                 pctx->num = 0;
4945         }
4946
4947         /*
4948          * The kernel gets mad if we ask it to allocate bigalloc clusters to
4949          * a block mapped file, so rebuild it as an extent file.  We can skip
4950          * symlinks because they're never rewritten.
4951          */
4952         if (ext2fs_has_feature_bigalloc(fs->super) &&
4953             (LINUX_S_ISREG(inode->i_mode) || LINUX_S_ISDIR(inode->i_mode)) &&
4954             ext2fs_inode_data_blocks2(fs, inode) > 0 &&
4955             (ino == EXT2_ROOT_INO || ino >= EXT2_FIRST_INO(fs->super)) &&
4956             !(inode->i_flags & (EXT4_EXTENTS_FL | EXT4_INLINE_DATA_FL)) &&
4957             fix_problem(ctx, PR_1_NO_BIGALLOC_BLOCKMAP_FILES, pctx)) {
4958                 pctx->errcode = e2fsck_rebuild_extents_later(ctx, ino);
4959                 if (pctx->errcode)
4960                         goto out;
4961         }
4962
4963         if (ctx->dirs_to_hash && pb.is_dir &&
4964             !(ctx->lost_and_found && ctx->lost_and_found == ino) &&
4965             !(inode->i_flags & EXT2_INDEX_FL) &&
4966             ((inode->i_size / fs->blocksize) >= 3))
4967                 e2fsck_rehash_dir_later(ctx, ino);
4968
4969 out:
4970         if (dirty_inode)
4971                 e2fsck_write_inode(ctx, ino, inode, "check_blocks");
4972 }
4973
4974 #if 0
4975 /*
4976  * Helper function called by process block when an illegal block is
4977  * found.  It returns a description about why the block is illegal
4978  */
4979 static char *describe_illegal_block(ext2_filsys fs, blk64_t block)
4980 {
4981         blk64_t super;
4982         int     i;
4983         static char     problem[80];
4984
4985         super = fs->super->s_first_data_block;
4986         strcpy(problem, "PROGRAMMING ERROR: Unknown reason for illegal block");
4987         if (block < super) {
4988                 sprintf(problem, "< FIRSTBLOCK (%u)", super);
4989                 return(problem);
4990         } else if (block >= ext2fs_blocks_count(fs->super)) {
4991                 sprintf(problem, "> BLOCKS (%u)", ext2fs_blocks_count(fs->super));
4992                 return(problem);
4993         }
4994         for (i = 0; i < fs->group_desc_count; i++) {
4995                 if (block == super) {
4996                         sprintf(problem, "is the superblock in group %d", i);
4997                         break;
4998                 }
4999                 if (block > super &&
5000                     block <= (super + fs->desc_blocks)) {
5001                         sprintf(problem, "is in the group descriptors "
5002                                 "of group %d", i);
5003                         break;
5004                 }
5005                 if (block == ext2fs_block_bitmap_loc(fs, i)) {
5006                         sprintf(problem, "is the block bitmap of group %d", i);
5007                         break;
5008                 }
5009                 if (block == ext2fs_inode_bitmap_loc(fs, i)) {
5010                         sprintf(problem, "is the inode bitmap of group %d", i);
5011                         break;
5012                 }
5013                 if (block >= ext2fs_inode_table_loc(fs, i) &&
5014                     (block < ext2fs_inode_table_loc(fs, i)
5015                      + fs->inode_blocks_per_group)) {
5016                         sprintf(problem, "is in the inode table of group %d",
5017                                 i);
5018                         break;
5019                 }
5020                 super += fs->super->s_blocks_per_group;
5021         }
5022         return(problem);
5023 }
5024 #endif
5025
5026 /*
5027  * This is a helper function for check_blocks().
5028  */
5029 static int process_block(ext2_filsys fs,
5030                   blk64_t       *block_nr,
5031                   e2_blkcnt_t blockcnt,
5032                   blk64_t ref_block EXT2FS_ATTR((unused)),
5033                   int ref_offset EXT2FS_ATTR((unused)),
5034                   void *priv_data)
5035 {
5036         struct process_block_struct *p;
5037         struct problem_context *pctx;
5038         blk64_t blk = *block_nr;
5039         int     ret_code = 0;
5040         problem_t       problem = 0;
5041         e2fsck_t        ctx;
5042
5043         p = (struct process_block_struct *) priv_data;
5044         pctx = p->pctx;
5045         ctx = p->ctx;
5046
5047         /*
5048          * For a directory, add logical block zero for processing even if it's
5049          * not mapped or we'll be perennially stuck with broken "." and ".."
5050          * entries.
5051          */
5052         if (p->is_dir && blockcnt == 0 && blk == 0) {
5053                 pctx->errcode = ext2fs_add_dir_block2(fs->dblist, p->ino, 0, 0);
5054                 if (pctx->errcode) {
5055                         pctx->blk = blk;
5056                         pctx->num = blockcnt;
5057                         goto failed_add_dir_block;
5058                 }
5059                 p->last_db_block++;
5060         }
5061
5062         if (blk == 0)
5063                 return 0;
5064
5065 #if 0
5066         printf("Process_block, inode %lu, block %u, #%d\n", p->ino, blk,
5067                blockcnt);
5068 #endif
5069
5070         /*
5071          * Simplistic fragmentation check.  We merely require that the
5072          * file be contiguous.  (Which can never be true for really
5073          * big files that are greater than a block group.)
5074          */
5075         if (p->previous_block && p->ino != EXT2_RESIZE_INO) {
5076                 if (p->previous_block+1 != blk) {
5077                         if (ctx->options & E2F_OPT_FRAGCHECK) {
5078                                 char type = '?';
5079
5080                                 if (p->is_dir)
5081                                         type = 'd';
5082                                 else if (p->is_reg)
5083                                         type = 'f';
5084
5085                                 printf(_("%6lu(%c): expecting %6lu "
5086                                          "got phys %6lu (blkcnt %lld)\n"),
5087                                        (unsigned long) pctx->ino, type,
5088                                        (unsigned long) p->previous_block+1,
5089                                        (unsigned long) blk,
5090                                        (long long) blockcnt);
5091                         }
5092                         p->fragmented = 1;
5093                 }
5094         }
5095
5096         if (p->is_dir && !ext2fs_has_feature_largedir(fs->super) &&
5097             !pctx->inode->i_size_high &&
5098             blockcnt > (1 << (21 - fs->super->s_log_block_size)))
5099                 problem = PR_1_TOOBIG_DIR;
5100         if (p->is_dir && p->num_blocks + 1 >= p->max_blocks)
5101                 problem = PR_1_TOOBIG_DIR;
5102         if (p->is_reg && p->num_blocks + 1 >= p->max_blocks)
5103                 problem = PR_1_TOOBIG_REG;
5104         if (!p->is_dir && !p->is_reg && blockcnt > 0)
5105                 problem = PR_1_TOOBIG_SYMLINK;
5106
5107         if (blk < fs->super->s_first_data_block ||
5108             blk >= ext2fs_blocks_count(fs->super))
5109                 problem = PR_1_ILLEGAL_BLOCK_NUM;
5110
5111         /*
5112          * If this IND/DIND/TIND block is squatting atop some critical metadata
5113          * (group descriptors, superblock, bitmap, inode table), any write to
5114          * "fix" mapping problems will destroy the metadata.  We'll let pass 1b
5115          * fix that and restart fsck.
5116          */
5117         if (blockcnt < 0 &&
5118             p->ino != EXT2_RESIZE_INO &&
5119             blk < ctx->fs->super->s_blocks_count &&
5120             ext2fs_test_block_bitmap2(ctx->block_metadata_map, blk)) {
5121                 pctx->blk = blk;
5122                 fix_problem(ctx, PR_1_CRITICAL_METADATA_COLLISION, pctx);
5123                 if ((ctx->options & E2F_OPT_NO) == 0)
5124                         ctx->flags |= E2F_FLAG_RESTART_LATER;
5125         }
5126
5127         if (problem) {
5128                 p->num_illegal_blocks++;
5129                 /*
5130                  * A bit of subterfuge here -- we're trying to fix a block
5131                  * mapping, but the IND/DIND/TIND block could have collided
5132                  * with some critical metadata.  So, fix the in-core mapping so
5133                  * iterate won't go insane, but return 0 instead of
5134                  * BLOCK_CHANGED so that it won't write the remapping out to
5135                  * our multiply linked block.
5136                  *
5137                  * Even if we previously determined that an *IND block
5138                  * conflicts with critical metadata, we must still try to
5139                  * iterate the *IND block as if it is an *IND block to find and
5140                  * mark the blocks it points to.  Better to be overly cautious
5141                  * with the used_blocks map so that we don't move the *IND
5142                  * block to a block that's really in use!
5143                  */
5144                 if (p->ino != EXT2_RESIZE_INO &&
5145                     ref_block != 0 &&
5146                     ext2fs_test_block_bitmap2(ctx->block_metadata_map,
5147                                               ref_block)) {
5148                         *block_nr = 0;
5149                         return 0;
5150                 }
5151                 if (!p->suppress && (p->num_illegal_blocks % 12) == 0) {
5152                         if (fix_problem(ctx, PR_1_TOO_MANY_BAD_BLOCKS, pctx)) {
5153                                 p->clear = 1;
5154                                 return BLOCK_ABORT;
5155                         }
5156                         if (fix_problem(ctx, PR_1_SUPPRESS_MESSAGES, pctx)) {
5157                                 p->suppress = 1;
5158                                 set_latch_flags(PR_LATCH_BLOCK,
5159                                                 PRL_SUPPRESS, 0);
5160                         }
5161                 }
5162                 pctx->blk = blk;
5163                 pctx->blkcount = blockcnt;
5164                 if (fix_problem(ctx, problem, pctx)) {
5165                         blk = *block_nr = 0;
5166                         ret_code = BLOCK_CHANGED;
5167                         p->inode_modified = 1;
5168                         /*
5169                          * If the directory block is too big and is beyond the
5170                          * end of the FS, don't bother trying to add it for
5171                          * processing -- the kernel would never have created a
5172                          * directory this large, and we risk an ENOMEM abort.
5173                          * In any case, the toobig handler for extent-based
5174                          * directories also doesn't feed toobig blocks to
5175                          * pass 2.
5176                          */
5177                         if (problem == PR_1_TOOBIG_DIR)
5178                                 return ret_code;
5179                         goto mark_dir;
5180                 } else
5181                         return 0;
5182         }
5183
5184         if (p->ino == EXT2_RESIZE_INO) {
5185                 /*
5186                  * The resize inode has already be sanity checked
5187                  * during pass #0 (the superblock checks).  All we
5188                  * have to do is mark the double indirect block as
5189                  * being in use; all of the other blocks are handled
5190                  * by mark_table_blocks()).
5191                  */
5192                 if (blockcnt == BLOCK_COUNT_DIND)
5193                         mark_block_used(ctx, blk);
5194                 p->num_blocks++;
5195         } else if (!(ctx->fs->cluster_ratio_bits &&
5196                      p->previous_block &&
5197                      (EXT2FS_B2C(ctx->fs, blk) ==
5198                       EXT2FS_B2C(ctx->fs, p->previous_block)) &&
5199                      (blk & EXT2FS_CLUSTER_MASK(ctx->fs)) ==
5200                      ((unsigned) blockcnt & EXT2FS_CLUSTER_MASK(ctx->fs)))) {
5201                 mark_block_used(ctx, blk);
5202                 p->num_blocks++;
5203         } else if (has_unaligned_cluster_map(ctx, p->previous_block,
5204                                              p->last_block, blk, blockcnt)) {
5205                 pctx->blk = blockcnt;
5206                 pctx->blk2 = blk;
5207                 fix_problem(ctx, PR_1_MISALIGNED_CLUSTER, pctx);
5208                 mark_block_used(ctx, blk);
5209                 mark_block_used(ctx, blk);
5210         }
5211         if (blockcnt >= 0)
5212                 p->last_block = blockcnt;
5213         p->previous_block = blk;
5214 mark_dir:
5215         if (p->is_dir && (blockcnt >= 0)) {
5216                 while (++p->last_db_block < blockcnt) {
5217                         pctx->errcode = ext2fs_add_dir_block2(fs->dblist,
5218                                                               p->ino, 0,
5219                                                               p->last_db_block);
5220                         if (pctx->errcode) {
5221                                 pctx->blk = 0;
5222                                 pctx->num = p->last_db_block;
5223                                 goto failed_add_dir_block;
5224                         }
5225                 }
5226                 pctx->errcode = ext2fs_add_dir_block2(fs->dblist, p->ino,
5227                                                       blk, blockcnt);
5228                 if (pctx->errcode) {
5229                         pctx->blk = blk;
5230                         pctx->num = blockcnt;
5231                 failed_add_dir_block:
5232                         fix_problem(ctx, PR_1_ADD_DBLOCK, pctx);
5233                         /* Should never get here */
5234                         ctx->flags |= E2F_FLAG_ABORT;
5235                         return BLOCK_ABORT;
5236                 }
5237         }
5238         return ret_code;
5239 }
5240
5241 static int process_bad_block(ext2_filsys fs,
5242                       blk64_t *block_nr,
5243                       e2_blkcnt_t blockcnt,
5244                       blk64_t ref_block EXT2FS_ATTR((unused)),
5245                       int ref_offset EXT2FS_ATTR((unused)),
5246                       void *priv_data)
5247 {
5248         struct process_block_struct *p;
5249         blk64_t         blk = *block_nr;
5250         blk64_t         first_block;
5251         dgrp_t          i;
5252         struct problem_context *pctx;
5253         e2fsck_t        ctx;
5254
5255         if (!blk)
5256                 return 0;
5257
5258         p = (struct process_block_struct *) priv_data;
5259         ctx = p->ctx;
5260         pctx = p->pctx;
5261
5262         pctx->ino = EXT2_BAD_INO;
5263         pctx->blk = blk;
5264         pctx->blkcount = blockcnt;
5265
5266         if ((blk < fs->super->s_first_data_block) ||
5267             (blk >= ext2fs_blocks_count(fs->super))) {
5268                 if (fix_problem(ctx, PR_1_BB_ILLEGAL_BLOCK_NUM, pctx)) {
5269                         *block_nr = 0;
5270                         return BLOCK_CHANGED;
5271                 } else
5272                         return 0;
5273         }
5274
5275         if (blockcnt < 0) {
5276                 if (ext2fs_test_block_bitmap2(p->fs_meta_blocks, blk)) {
5277                         p->bbcheck = 1;
5278                         if (fix_problem(ctx, PR_1_BB_FS_BLOCK, pctx)) {
5279                                 *block_nr = 0;
5280                                 return BLOCK_CHANGED;
5281                         }
5282                 } else if (is_blocks_used(ctx, blk, 1)) {
5283                         p->bbcheck = 1;
5284                         if (fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK,
5285                                         pctx)) {
5286                                 *block_nr = 0;
5287                                 return BLOCK_CHANGED;
5288                         }
5289                         if (e2fsck_should_abort(ctx))
5290                                 return BLOCK_ABORT;
5291                 } else {
5292                         mark_block_used(ctx, blk);
5293                 }
5294                 return 0;
5295         }
5296 #if 0
5297         printf ("DEBUG: Marking %u as bad.\n", blk);
5298 #endif
5299         ctx->fs_badblocks_count++;
5300         /*
5301          * If the block is not used, then mark it as used and return.
5302          * If it is already marked as found, this must mean that
5303          * there's an overlap between the filesystem table blocks
5304          * (bitmaps and inode table) and the bad block list.
5305          */
5306         if (!is_blocks_used(ctx, blk, 1)) {
5307                 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
5308                 return 0;
5309         }
5310         /*
5311          * Try to find the where the filesystem block was used...
5312          */
5313         first_block = fs->super->s_first_data_block;
5314
5315         for (i = 0; i < fs->group_desc_count; i++ ) {
5316                 pctx->group = i;
5317                 pctx->blk = blk;
5318                 if (!ext2fs_bg_has_super(fs, i))
5319                         goto skip_super;
5320                 if (blk == first_block) {
5321                         if (i == 0) {
5322                                 if (fix_problem(ctx,
5323                                                 PR_1_BAD_PRIMARY_SUPERBLOCK,
5324                                                 pctx)) {
5325                                         *block_nr = 0;
5326                                         return BLOCK_CHANGED;
5327                                 }
5328                                 return 0;
5329                         }
5330                         fix_problem(ctx, PR_1_BAD_SUPERBLOCK, pctx);
5331                         return 0;
5332                 }
5333                 if ((blk > first_block) &&
5334                     (blk <= first_block + fs->desc_blocks)) {
5335                         if (i == 0) {
5336                                 pctx->blk = *block_nr;
5337                                 if (fix_problem(ctx,
5338                         PR_1_BAD_PRIMARY_GROUP_DESCRIPTOR, pctx)) {
5339                                         *block_nr = 0;
5340                                         return BLOCK_CHANGED;
5341                                 }
5342                                 return 0;
5343                         }
5344                         fix_problem(ctx, PR_1_BAD_GROUP_DESCRIPTORS, pctx);
5345                         return 0;
5346                 }
5347         skip_super:
5348                 if (blk == ext2fs_block_bitmap_loc(fs, i)) {
5349                         if (fix_problem(ctx, PR_1_BB_BAD_BLOCK, pctx)) {
5350                                 ctx->invalid_block_bitmap_flag[i]++;
5351                                 ctx->invalid_bitmaps++;
5352                         }
5353                         return 0;
5354                 }
5355                 if (blk == ext2fs_inode_bitmap_loc(fs, i)) {
5356                         if (fix_problem(ctx, PR_1_IB_BAD_BLOCK, pctx)) {
5357                                 ctx->invalid_inode_bitmap_flag[i]++;
5358                                 ctx->invalid_bitmaps++;
5359                         }
5360                         return 0;
5361                 }
5362                 if ((blk >= ext2fs_inode_table_loc(fs, i)) &&
5363                     (blk < (ext2fs_inode_table_loc(fs, i) +
5364                             fs->inode_blocks_per_group))) {
5365                         /*
5366                          * If there are bad blocks in the inode table,
5367                          * the inode scan code will try to do
5368                          * something reasonable automatically.
5369                          */
5370                         return 0;
5371                 }
5372                 first_block += fs->super->s_blocks_per_group;
5373         }
5374         /*
5375          * If we've gotten to this point, then the only
5376          * possibility is that the bad block inode meta data
5377          * is using a bad block.
5378          */
5379         if ((blk == p->inode->i_block[EXT2_IND_BLOCK]) ||
5380             (blk == p->inode->i_block[EXT2_DIND_BLOCK]) ||
5381             (blk == p->inode->i_block[EXT2_TIND_BLOCK])) {
5382                 p->bbcheck = 1;
5383                 if (fix_problem(ctx, PR_1_BBINODE_BAD_METABLOCK, pctx)) {
5384                         *block_nr = 0;
5385                         return BLOCK_CHANGED;
5386                 }
5387                 if (e2fsck_should_abort(ctx))
5388                         return BLOCK_ABORT;
5389                 return 0;
5390         }
5391
5392         pctx->group = -1;
5393
5394         /* Warn user that the block wasn't claimed */
5395         fix_problem(ctx, PR_1_PROGERR_CLAIMED_BLOCK, pctx);
5396
5397         return 0;
5398 }
5399
5400 static void new_table_block(e2fsck_t ctx, blk64_t first_block, dgrp_t group,
5401                             const char *name, int num, blk64_t *new_block)
5402 {
5403         ext2_filsys fs = ctx->fs;
5404         dgrp_t          last_grp;
5405         blk64_t         old_block = *new_block;
5406         blk64_t         last_block;
5407         dgrp_t          flexbg;
5408         unsigned        flexbg_size;
5409         int             i, is_flexbg;
5410         char            *buf;
5411         struct problem_context  pctx;
5412
5413         clear_problem_context(&pctx);
5414
5415         pctx.group = group;
5416         pctx.blk = old_block;
5417         pctx.str = name;
5418
5419         /*
5420          * For flex_bg filesystems, first try to allocate the metadata
5421          * within the flex_bg, and if that fails then try finding the
5422          * space anywhere in the filesystem.
5423          */
5424         is_flexbg = ext2fs_has_feature_flex_bg(fs->super);
5425         if (is_flexbg) {
5426                 flexbg_size = 1U << fs->super->s_log_groups_per_flex;
5427                 flexbg = group / flexbg_size;
5428                 first_block = ext2fs_group_first_block2(fs,
5429                                                         flexbg_size * flexbg);
5430                 last_grp = group | (flexbg_size - 1);
5431                 if (last_grp >= fs->group_desc_count)
5432                         last_grp = fs->group_desc_count - 1;
5433                 last_block = ext2fs_group_last_block2(fs, last_grp);
5434         } else
5435                 last_block = ext2fs_group_last_block2(fs, group);
5436         pctx.errcode = ext2fs_get_free_blocks2(fs, first_block, last_block,
5437                                                num, ctx->block_found_map,
5438                                                new_block);
5439         if (is_flexbg && (pctx.errcode == EXT2_ET_BLOCK_ALLOC_FAIL))
5440                 pctx.errcode = ext2fs_get_free_blocks2(fs,
5441                                 fs->super->s_first_data_block,
5442                                 ext2fs_blocks_count(fs->super),
5443                                 num, ctx->block_found_map, new_block);
5444         if (pctx.errcode) {
5445                 pctx.num = num;
5446                 fix_problem(ctx, PR_1_RELOC_BLOCK_ALLOCATE, &pctx);
5447                 ext2fs_unmark_valid(fs);
5448                 ctx->flags |= E2F_FLAG_ABORT;
5449                 return;
5450         }
5451         pctx.errcode = ext2fs_get_mem(fs->blocksize, &buf);
5452         if (pctx.errcode) {
5453                 fix_problem(ctx, PR_1_RELOC_MEMORY_ALLOCATE, &pctx);
5454                 ext2fs_unmark_valid(fs);
5455                 ctx->flags |= E2F_FLAG_ABORT;
5456                 return;
5457         }
5458         ext2fs_mark_super_dirty(fs);
5459         fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
5460         pctx.blk2 = *new_block;
5461         fix_problem(ctx, (old_block ? PR_1_RELOC_FROM_TO :
5462                           PR_1_RELOC_TO), &pctx);
5463         pctx.blk2 = 0;
5464         for (i = 0; i < num; i++) {
5465                 pctx.blk = i;
5466                 ext2fs_mark_block_bitmap2(ctx->block_found_map, (*new_block)+i);
5467                 if (old_block) {
5468                         pctx.errcode = io_channel_read_blk64(fs->io,
5469                                    old_block + i, 1, buf);
5470                         if (pctx.errcode)
5471                                 fix_problem(ctx, PR_1_RELOC_READ_ERR, &pctx);
5472                         pctx.blk = (*new_block) + i;
5473                         pctx.errcode = io_channel_write_blk64(fs->io, pctx.blk,
5474                                                               1, buf);
5475                 } else {
5476                         pctx.blk = (*new_block) + i;
5477                         pctx.errcode = ext2fs_zero_blocks2(fs, pctx.blk, 1,
5478                                                            NULL, NULL);
5479                 }
5480
5481                 if (pctx.errcode)
5482                         fix_problem(ctx, PR_1_RELOC_WRITE_ERR, &pctx);
5483         }
5484         ext2fs_free_mem(&buf);
5485 }
5486
5487 /*
5488  * This routine gets called at the end of pass 1 if bad blocks are
5489  * detected in the superblock, group descriptors, inode_bitmaps, or
5490  * block bitmaps.  At this point, all of the blocks have been mapped
5491  * out, so we can try to allocate new block(s) to replace the bad
5492  * blocks.
5493  */
5494 static void handle_fs_bad_blocks(e2fsck_t ctx)
5495 {
5496         ext2_filsys fs = ctx->fs;
5497         dgrp_t          i;
5498         blk64_t         first_block;
5499         blk64_t         new_blk;
5500
5501         for (i = 0; i < fs->group_desc_count; i++) {
5502                 first_block = ext2fs_group_first_block2(fs, i);
5503
5504                 if (ctx->invalid_block_bitmap_flag[i]) {
5505                         new_blk = ext2fs_block_bitmap_loc(fs, i);
5506                         new_table_block(ctx, first_block, i, _("block bitmap"),
5507                                         1, &new_blk);
5508                         ext2fs_block_bitmap_loc_set(fs, i, new_blk);
5509                 }
5510                 if (ctx->invalid_inode_bitmap_flag[i]) {
5511                         new_blk = ext2fs_inode_bitmap_loc(fs, i);
5512                         new_table_block(ctx, first_block, i, _("inode bitmap"),
5513                                         1, &new_blk);
5514                         ext2fs_inode_bitmap_loc_set(fs, i, new_blk);
5515                 }
5516                 if (ctx->invalid_inode_table_flag[i]) {
5517                         new_blk = ext2fs_inode_table_loc(fs, i);
5518                         new_table_block(ctx, first_block, i, _("inode table"),
5519                                         fs->inode_blocks_per_group,
5520                                         &new_blk);
5521                         ext2fs_inode_table_loc_set(fs, i, new_blk);
5522                         ctx->flags |= E2F_FLAG_RESTART;
5523                 }
5524         }
5525         ctx->invalid_bitmaps = 0;
5526 }
5527
5528 /*
5529  * This routine marks all blocks which are used by the superblock,
5530  * group descriptors, inode bitmaps, and block bitmaps.
5531  */
5532 static void mark_table_blocks(e2fsck_t ctx)
5533 {
5534         ext2_filsys fs = ctx->fs;
5535         blk64_t b;
5536         dgrp_t  i;
5537         unsigned int    j;
5538         struct problem_context pctx;
5539
5540         clear_problem_context(&pctx);
5541
5542         for (i = 0; i < fs->group_desc_count; i++) {
5543                 pctx.group = i;
5544
5545                 ext2fs_reserve_super_and_bgd(fs, i, ctx->block_found_map);
5546                 ext2fs_reserve_super_and_bgd(fs, i, ctx->block_metadata_map);
5547
5548                 /*
5549                  * Mark the blocks used for the inode table
5550                  */
5551                 if (ext2fs_inode_table_loc(fs, i)) {
5552                         for (j = 0, b = ext2fs_inode_table_loc(fs, i);
5553                              j < fs->inode_blocks_per_group;
5554                              j++, b++) {
5555                                 if (ext2fs_test_block_bitmap2(ctx->block_found_map,
5556                                                              b)) {
5557                                         pctx.blk = b;
5558                                         if (!ctx->invalid_inode_table_flag[i] &&
5559                                             fix_problem(ctx,
5560                                                 PR_1_ITABLE_CONFLICT, &pctx)) {
5561                                                 ctx->invalid_inode_table_flag[i]++;
5562                                                 ctx->invalid_bitmaps++;
5563                                         }
5564                                 } else {
5565                                     ext2fs_mark_block_bitmap2(
5566                                                 ctx->block_found_map, b);
5567                                     ext2fs_mark_block_bitmap2(
5568                                                 ctx->block_metadata_map, b);
5569                                 }
5570                         }
5571                 }
5572
5573                 /*
5574                  * Mark block used for the block bitmap
5575                  */
5576                 if (ext2fs_block_bitmap_loc(fs, i)) {
5577                         if (ext2fs_test_block_bitmap2(ctx->block_found_map,
5578                                      ext2fs_block_bitmap_loc(fs, i))) {
5579                                 pctx.blk = ext2fs_block_bitmap_loc(fs, i);
5580                                 if (fix_problem(ctx, PR_1_BB_CONFLICT, &pctx)) {
5581                                         ctx->invalid_block_bitmap_flag[i]++;
5582                                         ctx->invalid_bitmaps++;
5583                                 }
5584                         } else {
5585                             ext2fs_mark_block_bitmap2(ctx->block_found_map,
5586                                      ext2fs_block_bitmap_loc(fs, i));
5587                             ext2fs_mark_block_bitmap2(ctx->block_metadata_map,
5588                                      ext2fs_block_bitmap_loc(fs, i));
5589                         }
5590                 }
5591                 /*
5592                  * Mark block used for the inode bitmap
5593                  */
5594                 if (ext2fs_inode_bitmap_loc(fs, i)) {
5595                         if (ext2fs_test_block_bitmap2(ctx->block_found_map,
5596                                      ext2fs_inode_bitmap_loc(fs, i))) {
5597                                 pctx.blk = ext2fs_inode_bitmap_loc(fs, i);
5598                                 if (fix_problem(ctx, PR_1_IB_CONFLICT, &pctx)) {
5599                                         ctx->invalid_inode_bitmap_flag[i]++;
5600                                         ctx->invalid_bitmaps++;
5601                                 }
5602                         } else {
5603                             ext2fs_mark_block_bitmap2(ctx->block_metadata_map,
5604                                      ext2fs_inode_bitmap_loc(fs, i));
5605                             ext2fs_mark_block_bitmap2(ctx->block_found_map,
5606                                      ext2fs_inode_bitmap_loc(fs, i));
5607                         }
5608                 }
5609         }
5610 }
5611
5612 /*
5613  * These subroutines short circuits ext2fs_get_blocks and
5614  * ext2fs_check_directory; we use them since we already have the inode
5615  * structure, so there's no point in letting the ext2fs library read
5616  * the inode again.
5617  */
5618 static errcode_t pass1_get_blocks(ext2_filsys fs, ext2_ino_t ino,
5619                                   blk_t *blocks)
5620 {
5621         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5622         int     i;
5623
5624         if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
5625                 return EXT2_ET_CALLBACK_NOTHANDLED;
5626
5627         for (i=0; i < EXT2_N_BLOCKS; i++)
5628                 blocks[i] = ctx->stashed_inode->i_block[i];
5629         return 0;
5630 }
5631
5632 static errcode_t pass1_read_inode(ext2_filsys fs, ext2_ino_t ino,
5633                                   struct ext2_inode *inode)
5634 {
5635         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5636
5637         if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
5638                 return EXT2_ET_CALLBACK_NOTHANDLED;
5639         *inode = *ctx->stashed_inode;
5640         return 0;
5641 }
5642
5643 static errcode_t pass1_write_inode(ext2_filsys fs, ext2_ino_t ino,
5644                             struct ext2_inode *inode)
5645 {
5646         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5647
5648         if ((ino == ctx->stashed_ino) && ctx->stashed_inode &&
5649                 (inode != ctx->stashed_inode))
5650                 *ctx->stashed_inode = *inode;
5651         return EXT2_ET_CALLBACK_NOTHANDLED;
5652 }
5653
5654 static errcode_t pass1_check_directory(ext2_filsys fs, ext2_ino_t ino)
5655 {
5656         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5657
5658         if ((ino != ctx->stashed_ino) || !ctx->stashed_inode)
5659                 return EXT2_ET_CALLBACK_NOTHANDLED;
5660
5661         if (!LINUX_S_ISDIR(ctx->stashed_inode->i_mode))
5662                 return EXT2_ET_NO_DIRECTORY;
5663         return 0;
5664 }
5665
5666 static errcode_t e2fsck_get_alloc_block(ext2_filsys fs, blk64_t goal,
5667                                         blk64_t *ret)
5668 {
5669         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5670         errcode_t       retval;
5671         blk64_t         new_block;
5672
5673         if (ctx->block_found_map) {
5674                 retval = ext2fs_new_block2(fs, goal, ctx->block_found_map,
5675                                            &new_block);
5676                 if (retval)
5677                         return retval;
5678                 if (fs->block_map) {
5679                         ext2fs_mark_block_bitmap2(fs->block_map, new_block);
5680                         ext2fs_mark_bb_dirty(fs);
5681                 }
5682         } else {
5683                 if (!fs->block_map) {
5684                         retval = ext2fs_read_block_bitmap(fs);
5685                         if (retval)
5686                                 return retval;
5687                 }
5688
5689                 retval = ext2fs_new_block2(fs, goal, fs->block_map, &new_block);
5690                 if (retval)
5691                         return retval;
5692         }
5693
5694         *ret = new_block;
5695         return (0);
5696 }
5697
5698 static errcode_t e2fsck_new_range(ext2_filsys fs, int flags, blk64_t goal,
5699                                   blk64_t len, blk64_t *pblk, blk64_t *plen)
5700 {
5701         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5702         errcode_t       retval;
5703
5704         if (ctx->block_found_map)
5705                 return ext2fs_new_range(fs, flags, goal, len,
5706                                         ctx->block_found_map, pblk, plen);
5707
5708         if (!fs->block_map) {
5709                 retval = ext2fs_read_block_bitmap(fs);
5710                 if (retval)
5711                         return retval;
5712         }
5713
5714         return ext2fs_new_range(fs, flags, goal, len, fs->block_map,
5715                                 pblk, plen);
5716 }
5717
5718 static void e2fsck_block_alloc_stats(ext2_filsys fs, blk64_t blk, int inuse)
5719 {
5720         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5721
5722         /* Never free a critical metadata block */
5723         if (ctx->block_found_map &&
5724             ctx->block_metadata_map &&
5725             inuse < 0 &&
5726             ext2fs_test_block_bitmap2(ctx->block_metadata_map, blk))
5727                 return;
5728
5729         if (ctx->block_found_map) {
5730                 if (inuse > 0)
5731                         ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
5732                 else
5733                         ext2fs_unmark_block_bitmap2(ctx->block_found_map, blk);
5734         }
5735 }
5736
5737 static void e2fsck_block_alloc_stats_range(ext2_filsys fs, blk64_t blk,
5738                                            blk_t num, int inuse)
5739 {
5740         e2fsck_t ctx = (e2fsck_t) fs->priv_data;
5741
5742         /* Never free a critical metadata block */
5743         if (ctx->block_found_map &&
5744             ctx->block_metadata_map &&
5745             inuse < 0 &&
5746             ext2fs_test_block_bitmap_range2(ctx->block_metadata_map, blk, num))
5747                 return;
5748
5749         if (ctx->block_found_map) {
5750                 if (inuse > 0)
5751                         ext2fs_mark_block_bitmap_range2(ctx->block_found_map,
5752                                                         blk, num);
5753                 else
5754                         ext2fs_unmark_block_bitmap_range2(ctx->block_found_map,
5755                                                         blk, num);
5756         }
5757 }
5758
5759 void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts)
5760 {
5761         ext2_filsys fs = ctx->fs;
5762
5763         if (use_shortcuts) {
5764                 fs->get_blocks = pass1_get_blocks;
5765                 fs->check_directory = pass1_check_directory;
5766                 fs->read_inode = pass1_read_inode;
5767                 fs->write_inode = pass1_write_inode;
5768                 ctx->stashed_ino = 0;
5769         } else {
5770                 fs->get_blocks = 0;
5771                 fs->check_directory = 0;
5772                 fs->read_inode = 0;
5773                 fs->write_inode = 0;
5774         }
5775 }
5776
5777 void e2fsck_intercept_block_allocations(e2fsck_t ctx)
5778 {
5779         ext2fs_set_alloc_block_callback(ctx->fs, e2fsck_get_alloc_block, 0);
5780         ext2fs_set_block_alloc_stats_callback(ctx->fs,
5781                                                 e2fsck_block_alloc_stats, 0);
5782         ext2fs_set_new_range_callback(ctx->fs, e2fsck_new_range, NULL);
5783         ext2fs_set_block_alloc_stats_range_callback(ctx->fs,
5784                                         e2fsck_block_alloc_stats_range, NULL);
5785 }