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