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