Whamcloud - gitweb
LU-8465 e2fsck: optimize the inserting of dir_info_db
[tools/e2fsprogs.git] / e2fsck / e2fsck.h
1 /*
2  * e2fsck.h
3  *
4  * Copyright (C) 1993, 1994 Theodore Ts'o.  This file may be
5  * redistributed under the terms of the GNU Public License.
6  *
7  */
8
9 #ifndef _E2FSCK_H
10 #define _E2FSCK_H
11
12 #include <stdio.h>
13 #include <string.h>
14 #include <stddef.h>
15 #ifdef HAVE_UNISTD_H
16 #include <unistd.h>
17 #endif
18 #include <stdlib.h>
19 #include <time.h>
20 #ifdef HAVE_SYS_TYPES_H
21 #include <sys/types.h>
22 #endif
23 #ifdef HAVE_SYS_TIME_H
24 #include <sys/time.h>
25 #endif
26 #ifdef HAVE_SETJMP_H
27 #include <setjmp.h>
28 #endif
29
30 #if EXT2_FLAT_INCLUDES
31 #include "ext2_fs.h"
32 #include "ext2fs.h"
33 #include "blkid.h"
34 #else
35 #include "ext2fs/ext2_fs.h"
36 #include "ext2fs/ext2fs.h"
37 #include "blkid/blkid.h"
38 #endif
39
40 #include "support/profile.h"
41 #include "support/prof_err.h"
42
43 #ifdef ENABLE_NLS
44 #include <libintl.h>
45 #include <locale.h>
46 #define _(a) (gettext (a))
47 #ifdef gettext_noop
48 #define N_(a) gettext_noop (a)
49 #else
50 #define N_(a) (a)
51 #endif
52 #define P_(singular, plural, n) (ngettext (singular, plural, n))
53 #ifndef NLS_CAT_NAME
54 #define NLS_CAT_NAME "e2fsprogs"
55 #endif
56 #ifndef LOCALEDIR
57 #define LOCALEDIR "/usr/share/locale"
58 #endif
59 #else
60 #define _(a) (a)
61 #define N_(a) a
62 #define P_(singular, plural, n) ((n) == 1 ? (singular) : (plural))
63 #endif
64
65 #ifdef __GNUC__
66 #define E2FSCK_ATTR(x) __attribute__(x)
67 #else
68 #define E2FSCK_ATTR(x)
69 #endif
70
71 #include "support/quotaio.h"
72
73 /*
74  * Exit codes used by fsck-type programs
75  */
76 #define FSCK_OK          0      /* No errors */
77 #define FSCK_NONDESTRUCT 1      /* File system errors corrected */
78 #define FSCK_REBOOT      2      /* System should be rebooted */
79 #define FSCK_UNCORRECTED 4      /* File system errors left uncorrected */
80 #define FSCK_ERROR       8      /* Operational error */
81 #define FSCK_USAGE       16     /* Usage or syntax error */
82 #define FSCK_CANCELED    32     /* Aborted with a signal or ^C */
83 #define FSCK_LIBRARY     128    /* Shared library error */
84
85 /*
86  * The last ext2fs revision level that this version of e2fsck is able to
87  * support
88  */
89 #define E2FSCK_CURRENT_REV      1
90
91 /*
92  * The directory information structure; stores directory information
93  * collected in earlier passes, to avoid disk i/o in fetching the
94  * directory information.
95  */
96 struct dir_info {
97         ext2_ino_t              ino;    /* Inode number */
98         ext2_ino_t              dotdot; /* Parent according to '..' */
99         ext2_ino_t              parent; /* Parent according to treewalk */
100 };
101
102
103 /*
104  * The indexed directory information structure; stores information for
105  * directories which contain a hash tree index.
106  */
107 struct dx_dir_info {
108         ext2_ino_t              ino;            /* Inode number */
109         short                   depth;          /* depth of tree (15 bits) */
110         __u8                    hashversion;
111         __u8                    casefolded_hash:1;
112         blk_t                   numblocks;      /* number of blocks in dir */
113         struct dx_dirblock_info *dx_block;      /* Array of size numblocks */
114 };
115
116 #define DX_DIRBLOCK_ROOT        1
117 #define DX_DIRBLOCK_LEAF        2
118 #define DX_DIRBLOCK_NODE        3
119 #define DX_DIRBLOCK_CORRUPT     4
120 #define DX_DIRBLOCK_CLEARED     8
121
122 struct dx_dirblock_info {
123         int             type;
124         int             flags;
125         blk64_t         phys;
126         blk64_t         parent;
127         blk64_t         previous;
128         ext2_dirhash_t  min_hash;
129         ext2_dirhash_t  max_hash;
130         ext2_dirhash_t  node_min_hash;
131         ext2_dirhash_t  node_max_hash;
132 };
133
134 #define DX_FLAG_REFERENCED      1
135 #define DX_FLAG_DUP_REF         2
136 #define DX_FLAG_FIRST           4
137 #define DX_FLAG_LAST            8
138
139 #define RESOURCE_TRACK
140
141 #ifdef RESOURCE_TRACK
142 /*
143  * This structure is used for keeping track of how much resources have
144  * been used for a particular pass of e2fsck.
145  */
146 struct resource_track {
147         struct timeval time_start;
148         struct timeval user_start;
149         struct timeval system_start;
150         void    *brk_start;
151         unsigned long long bytes_read;
152         unsigned long long bytes_written;
153 };
154 #endif
155
156 /*
157  * E2fsck options
158  */
159 #define E2F_OPT_READONLY        0x0001
160 #define E2F_OPT_PREEN           0x0002
161 #define E2F_OPT_YES             0x0004
162 #define E2F_OPT_NO              0x0008
163 #define E2F_OPT_TIME            0x0010
164 #define E2F_OPT_TIME2           0x0020
165 #define E2F_OPT_CHECKBLOCKS     0x0040
166 #define E2F_OPT_DEBUG           0x0080
167 #define E2F_OPT_FORCE           0x0100
168 #define E2F_OPT_WRITECHECK      0x0200
169 #define E2F_OPT_COMPRESS_DIRS   0x0400
170 #define E2F_OPT_FRAGCHECK       0x0800
171 #define E2F_OPT_JOURNAL_ONLY    0x1000 /* only replay the journal */
172 #define E2F_OPT_DISCARD         0x2000
173 #define E2F_OPT_CONVERT_BMAP    0x4000 /* convert blockmap to extent */
174 #define E2F_OPT_FIXES_ONLY      0x8000 /* skip all optimizations */
175 #define E2F_OPT_NOOPT_EXTENTS   0x10000 /* don't optimize extents */
176 #define E2F_OPT_ICOUNT_FULLMAP  0x20000 /* use an array for inode counts */
177 #define E2F_OPT_UNSHARE_BLOCKS  0x40000
178 #define E2F_OPT_MULTITHREAD     0x100000 /* Use multiple threads to speedup */
179
180 /*
181  * E2fsck flags
182  */
183 #define E2F_FLAG_ABORT          0x0001 /* Abort signaled */
184 #define E2F_FLAG_CANCEL         0x0002 /* Cancel signaled */
185 #define E2F_FLAG_SIGNAL_MASK    (E2F_FLAG_ABORT | E2F_FLAG_CANCEL)
186 #define E2F_FLAG_RESTART        0x0004 /* Restart signaled */
187 #define E2F_FLAG_RUN_RETURN     (E2F_FLAG_SIGNAL_MASK | E2F_FLAG_RESTART)
188 #define E2F_FLAG_RESTART_LATER  0x0008 /* Restart after all iterations done */
189 #define E2F_FLAG_SETJMP_OK      0x0010 /* Setjmp valid for abort */
190
191 #define E2F_FLAG_PROG_BAR       0x0020 /* Progress bar on screen */
192 #define E2F_FLAG_PROG_SUPPRESS  0x0040 /* Progress suspended */
193 #define E2F_FLAG_JOURNAL_INODE  0x0080 /* Create a new ext3 journal inode */
194 #define E2F_FLAG_SB_SPECIFIED   0x0100 /* The superblock was explicitly
195                                         * specified by the user */
196 #define E2F_FLAG_RESTARTED      0x0200 /* E2fsck has been restarted */
197 #define E2F_FLAG_RESIZE_INODE   0x0400 /* Request to recreate resize inode */
198 #define E2F_FLAG_GOT_DEVSIZE    0x0800 /* Device size has been fetched */
199 #define E2F_FLAG_EXITING        0x1000 /* E2fsck exiting due to errors */
200 #define E2F_FLAG_TIME_INSANE    0x2000 /* Time is insane */
201 #define E2F_FLAG_PROBLEMS_FIXED 0x4000 /* At least one problem was fixed */
202 #define E2F_FLAG_ALLOC_OK       0x8000 /* Can we allocate blocks? */
203 #define E2F_FLAG_EXPAND_EISIZE  0x10000 /* Expand the inodes (i_extra_isize) */
204
205 #define E2F_RESET_FLAGS (E2F_FLAG_TIME_INSANE | E2F_FLAG_PROBLEMS_FIXED)
206
207 /*
208  * Defines for indicating the e2fsck pass number
209  */
210 #define E2F_PASS_1      1
211 #define E2F_PASS_2      2
212 #define E2F_PASS_3      3
213 #define E2F_PASS_4      4
214 #define E2F_PASS_5      5
215 #define E2F_PASS_1B     6
216
217 enum shared_opt {
218         E2F_SHARED_PRESERVE = 0,
219         E2F_SHARED_DELETE,
220         E2F_SHARED_LPF
221 };
222
223 enum clone_opt {
224         E2F_CLONE_DUP = 0,
225         E2F_CLONE_ZERO
226 };
227
228 #define EXT4_FITS_IN_INODE(ext4_inode, einode, field)   \
229         ((offsetof(typeof(*ext4_inode), field) +        \
230           sizeof(ext4_inode->field)) <=                 \
231            (EXT2_GOOD_OLD_INODE_SIZE +                  \
232             (einode)->i_extra_isize))                   \
233
234 #define EXT4_XTIME_FUTURE(ctx, sb, xtime, margin)       \
235         (!((ctx)->flags & E2F_FLAG_TIME_INSANE) &&      \
236          (xtime) > (ctx)->now + (margin))
237 #define EXT4_XTIME_ANCIENT(ctx, sb, xtime, margin)      \
238         ((sb)->s_mkfs_time > (margin) && (xtime) < (sb)->s_mkfs_time - (margin))
239
240 #define BADNESS_NORMAL          1
241 #define BADNESS_HIGH            2
242 #define BADNESS_THRESHOLD       8
243 #define BADNESS_BAD_MODE        100
244 #define BADNESS_LARGE_FILE      2199023255552ULL
245
246 /*
247  * Define the extended attribute refcount structure
248  */
249 typedef struct ea_refcount *ext2_refcount_t;
250
251 /*
252  * This is the global e2fsck structure.
253  */
254 typedef struct e2fsck_struct *e2fsck_t;
255
256 #define MAX_EXTENT_DEPTH_COUNT 5
257
258 #ifdef CONFIG_PFSCK
259 /*
260  * Fields that used for multi-thread
261  */
262 struct e2fsck_thread {
263         /* Thread index */
264         int             et_thread_index;
265         /* The start group number for this thread */
266         dgrp_t          et_group_start;
267         /* The end (not included) group number for this thread*/
268         dgrp_t          et_group_end;
269         /* The next group number to check */
270         dgrp_t          et_group_next;
271         /* Scanned inode number */
272         ext2_ino_t      et_inode_number;
273         char            et_log_buf[2048];
274         char            et_log_length;
275 };
276 #endif
277
278 struct e2fsck_struct {
279         /* ---- Following fields are never updated during the pass1 ---- */
280         /* Global context to get the cancel flag */
281         e2fsck_t                global_ctx;
282         const char              *program_name;
283         char                    *filesystem_name;
284         char                    *device_name;
285         char                    *io_options;
286         int                      options; /* E2F_OPT_* flags */
287         int                      blocksize; /* blocksize */
288         blk64_t                  use_superblock; /* sb requested by user */
289         blk64_t                  superblock; /* sb used to open fs */
290         blk64_t                  num_blocks; /* Total number of blocks */
291         blk64_t                  free_blocks;
292         ext2_ino_t               free_inodes;
293         int                      mount_flags;
294         int                      openfs_flags;
295         io_manager               io_manager;
296         blkid_cache              blkid; /* blkid cache */
297 #ifdef HAVE_SETJMP_H
298         jmp_buf                 abort_loc;
299 #endif
300 #ifdef RESOURCE_TRACK
301         /*
302          * For timing purposes
303          */
304         struct resource_track   global_rtrack;
305 #endif
306         int                     bad_lost_and_found;
307         /*
308          * Tuning parameters
309          */
310         int                     process_inode_size;
311         int                     inode_buffer_blocks;
312         unsigned int            htree_slack_percentage;
313
314         /*
315          * ext3 journal support
316          */
317         io_channel              journal_io;
318         char                    *journal_name;
319         /* misc fields */
320         time_t                  now;
321         /* For working around buggy init scripts */
322         time_t                  time_fudge;
323
324         int                     ext_attr_ver;
325         int                     blocks_per_page;
326
327         /* Expand large inodes to atleast these many bytes */
328         int                     want_extra_isize;
329         /* minimum i_extra_isize found in used inodes. Should not be lesser
330          * than s_min_extra_isize.
331          */
332         __u32                   min_extra_isize;
333
334         /* misc fields */
335         enum shared_opt         shared;
336         enum clone_opt          clone;
337
338         /* Are we connected directly to a tty? */
339         int                     interactive;
340         char                    start_meta[2], stop_meta[2];
341         /*
342          * For the use of callers of the e2fsck functions; not used by
343          * e2fsck functions themselves.
344          */
345         void                    *priv_data;
346         /* Undo file */
347         char                    *undo_file;
348         /* How much are we allowed to readahead? */
349         unsigned long long      readahead_kb;
350  
351         /* ---- Following fields are shared by different threads for pass1 -*/
352         /* E2fsck internal flags */
353         int                     flags;
354
355         int                     inode_badness_threshold;
356
357         /*
358          * How we display the progress update (for unix)
359          */
360         int                     progress_fd;
361         int                     progress_pos;
362         int                     progress_last_percent;
363         unsigned int            progress_last_time;
364
365         int (*progress)(e2fsck_t ctx, int pass, unsigned long cur,
366                         unsigned long max);
367
368         /* Metadata blocks */
369         ext2fs_block_bitmap     block_metadata_map;
370         profile_t               profile;
371         /* Reserve blocks for root and l+f re-creation */
372         blk64_t                 root_repair_block, lnf_repair_block;
373         /*
374          * Location of the lost and found directory
375          */
376         ext2_ino_t              lost_and_found;
377
378         /* ---- Following fields are seperated for each thread for pass1- */
379         ext2_filsys              fs;
380         FILE                    *logf;
381         char                    *log_fn;
382         FILE                    *problem_logf;
383         char                    *problem_log_fn;
384
385         /* Inodes which are in use */
386         ext2fs_inode_bitmap     inode_used_map;
387         /* Inodes which are bad somehow */
388         ext2fs_inode_bitmap     inode_bad_map;
389         /* Inodes which are directories */
390         ext2fs_inode_bitmap     inode_dir_map;
391         /* Inodes which are in bad blocks */
392         ext2fs_inode_bitmap     inode_bb_map;
393         /* AFS inodes */
394         ext2fs_inode_bitmap     inode_imagic_map;
395         /* Inodes which are regular files */
396         ext2fs_inode_bitmap     inode_reg_map;
397         /* Inodes to rebuild extent trees */
398         ext2fs_inode_bitmap     inodes_to_rebuild;
399         /* Blocks which are in use */
400         ext2fs_block_bitmap     block_found_map;
401         /* Blks referenced more than once */
402         ext2fs_block_bitmap     block_dup_map;
403         /* Blocks which are used by EA's */
404         ext2fs_block_bitmap     block_ea_map;
405
406         ext2fs_inode_bitmap     expand_eisize_map;
407
408         /*
409          * Inode count arrays
410          */
411         ext2_icount_t           inode_count;
412         ext2_icount_t           inode_link_info;
413         ext2_icount_t           inode_badness;
414
415         ext2_refcount_t         refcount;
416         ext2_refcount_t         refcount_extra;
417
418         /*
419          * Quota blocks and inodes to be charged for each ea block.
420          */
421         ext2_refcount_t         ea_block_quota_blocks;
422         ext2_refcount_t         ea_block_quota_inodes;
423
424         /*
425          * ea_inode references from attr entries.
426          */
427         ext2_refcount_t         ea_inode_refs;
428
429         /*
430          * Array of flags indicating whether an inode bitmap, block
431          * bitmap, or inode table is invalid
432          */
433         int                     *invalid_inode_bitmap_flag;
434         int                     *invalid_block_bitmap_flag;
435         int                     *invalid_inode_table_flag;
436         /* There are invalid bitmaps/itable */
437         int                     invalid_bitmaps;
438
439         /*
440          * Block buffer
441          */
442         char                    *block_buf;
443
444         /*
445          * For pass1_check_directory and pass1_get_blocks
446          */
447         ext2_ino_t              stashed_ino;
448         struct ext2_inode       *stashed_inode;
449
450         /* if @global_ctx is null, this field is unused */
451 #ifdef CONFIG_PFSCK
452         struct e2fsck_thread     thread_info;
453 #endif
454
455         /*
456          * Directory information
457          */
458         struct dir_info_db      *dir_info;
459
460         /*
461          * Indexed directory information
462          */
463         ext2_ino_t              dx_dir_info_count;
464         ext2_ino_t              dx_dir_info_size;
465         struct dx_dir_info      *dx_dir_info;
466
467         /*
468          * Directories to hash
469          */
470         ext2_u32_list           dirs_to_hash;
471
472         /*
473          * Ext4 quota support
474          */
475         ext2_u32_list           encrypted_dirs;
476
477         quota_ctx_t             qctx;
478
479         int                     fs_unexpanded_inodes;
480         __u32                   fs_directory_count;
481         __u32                   fs_regular_count;
482         __u32                   fs_blockdev_count;
483         __u32                   fs_chardev_count;
484         __u32                   fs_links_count;
485         __u32                   fs_symlinks_count;
486         __u32                   fs_fast_symlinks_count;
487         __u32                   fs_fifo_count;
488         __u32                   fs_total_count;
489         __u32                   fs_badblocks_count;
490         __u32                   fs_sockets_count;
491         __u32                   fs_ind_count;
492         __u32                   fs_dind_count;
493         __u32                   fs_tind_count;
494         __u32                   fs_fragmented;
495         __u32                   fs_fragmented_dir;
496         __u32                   large_files;
497         __u32                   extent_depth_count[MAX_EXTENT_DEPTH_COUNT];
498 };
499
500 #ifdef CONFIG_PFSCK
501 struct e2fsck_thread_info {
502         /* ID returned by pthread_create() */
503         pthread_t                eti_thread_id;
504         /* Application-defined thread index */
505         int                      eti_thread_index;
506         /* Thread has been started */
507         int                      eti_started;
508         /* Context used for this thread */
509         e2fsck_t                 eti_thread_ctx;
510 };
511 #endif
512
513 /* Data structures to evaluate whether an extent tree needs rebuilding. */
514 struct extent_tree_level {
515         unsigned int    num_extents;
516         unsigned int    max_extents;
517 };
518
519 struct extent_tree_info {
520         ext2_ino_t ino;
521         int force_rebuild;
522         struct extent_tree_level        ext_info[MAX_EXTENT_DEPTH_COUNT];
523 };
524
525 /* Used by the region allocation code */
526 typedef __u64 region_addr_t;
527 typedef struct region_struct *region_t;
528
529 #ifndef HAVE_STRNLEN
530 #define strnlen(str, x) e2fsck_strnlen((str),(x))
531 extern int e2fsck_strnlen(const char * s, int count);
532 #endif
533
534 /*
535  * Procedure declarations
536  */
537
538 extern void e2fsck_pass1(e2fsck_t ctx);
539 extern void e2fsck_pass1_dupblocks(e2fsck_t ctx, char *block_buf);
540 extern void e2fsck_pass2(e2fsck_t ctx);
541 extern void e2fsck_pass3(e2fsck_t ctx);
542 extern void e2fsck_pass4(e2fsck_t ctx);
543 extern void e2fsck_pass5(e2fsck_t ctx);
544
545 /* e2fsck.c */
546 extern errcode_t e2fsck_allocate_context(e2fsck_t *ret);
547 extern errcode_t e2fsck_reset_context(e2fsck_t ctx);
548 extern void e2fsck_free_context(e2fsck_t ctx);
549 extern int e2fsck_run(e2fsck_t ctx);
550
551
552 /* badblock.c */
553 extern void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file,
554                                  int replace_bad_blocks);
555
556 /* dirinfo.c */
557 extern void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
558 extern void e2fsck_free_dir_info(e2fsck_t ctx);
559 extern int e2fsck_get_num_dirinfo(e2fsck_t ctx);
560 extern struct dir_info_iter *e2fsck_dir_info_iter_begin(e2fsck_t ctx);
561 extern struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx,
562                                              struct dir_info_iter *);
563 extern void e2fsck_dir_info_iter_end(e2fsck_t ctx, struct dir_info_iter *);
564 extern int e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino,
565                                       ext2_ino_t parent);
566 extern int e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino,
567                                       ext2_ino_t dotdot);
568 extern int e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino,
569                                       ext2_ino_t *parent);
570 extern int e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino,
571                                       ext2_ino_t *dotdot);
572
573 /* dx_dirinfo.c */
574 extern void e2fsck_add_dx_dir(e2fsck_t ctx, ext2_ino_t ino,
575                               struct ext2_inode *inode, int num_blocks);
576 extern struct dx_dir_info *e2fsck_get_dx_dir_info(e2fsck_t ctx, ext2_ino_t ino);
577 extern void e2fsck_free_dx_dir_info(e2fsck_t ctx);
578 extern ext2_ino_t e2fsck_get_num_dx_dirinfo(e2fsck_t ctx);
579 extern struct dx_dir_info *e2fsck_dx_dir_info_iter(e2fsck_t ctx,
580                                                    ext2_ino_t *control);
581
582 /* ea_refcount.c */
583 typedef __u64 ea_key_t;
584 typedef __u64 ea_value_t;
585
586 extern errcode_t ea_refcount_create(size_t size, ext2_refcount_t *ret);
587 extern void ea_refcount_free(ext2_refcount_t refcount);
588 extern errcode_t ea_refcount_fetch(ext2_refcount_t refcount, ea_key_t ea_key,
589                                    ea_value_t *ret);
590 extern errcode_t ea_refcount_increment(ext2_refcount_t refcount,
591                                        ea_key_t ea_key, ea_value_t *ret);
592 extern errcode_t ea_refcount_decrement(ext2_refcount_t refcount,
593                                        ea_key_t ea_key, ea_value_t *ret);
594 extern errcode_t ea_refcount_store(ext2_refcount_t refcount, ea_key_t ea_key,
595                                    ea_value_t count);
596 extern size_t ext2fs_get_refcount_size(ext2_refcount_t refcount);
597 extern void ea_refcount_intr_begin(ext2_refcount_t refcount);
598 extern ea_key_t ea_refcount_intr_next(ext2_refcount_t refcount,
599                                       ea_value_t *ret);
600
601 /* ehandler.c */
602 extern const char *ehandler_operation(const char *op);
603 extern void ehandler_init(io_channel channel);
604
605 /* extents.c */
606 struct problem_context;
607 errcode_t e2fsck_rebuild_extents_later(e2fsck_t ctx, ext2_ino_t ino);
608 int e2fsck_ino_will_be_rebuilt(e2fsck_t ctx, ext2_ino_t ino);
609 void e2fsck_pass1e(e2fsck_t ctx);
610 errcode_t e2fsck_check_rebuild_extents(e2fsck_t ctx, ext2_ino_t ino,
611                                        struct ext2_inode *inode,
612                                        struct problem_context *pctx);
613 errcode_t e2fsck_should_rebuild_extents(e2fsck_t ctx,
614                                         struct problem_context *pctx,
615                                         struct extent_tree_info *eti,
616                                         struct ext2_extent_info *info);
617
618 /* journal.c */
619 extern errcode_t e2fsck_check_ext3_journal(e2fsck_t ctx);
620 extern errcode_t e2fsck_run_ext3_journal(e2fsck_t ctx);
621 extern void e2fsck_move_ext3_journal(e2fsck_t ctx);
622 extern int e2fsck_fix_ext3_journal_hint(e2fsck_t ctx);
623
624 /* logfile.c */
625 extern void set_up_logging(e2fsck_t ctx);
626
627 /* quota.c */
628 extern void e2fsck_hide_quota(e2fsck_t ctx);
629 extern void e2fsck_validate_quota_inodes(e2fsck_t ctx);
630
631 /* pass1.c */
632 extern errcode_t e2fsck_setup_icount(e2fsck_t ctx, const char *icount_name,
633                                      int flags, ext2_icount_t hint,
634                                      ext2_icount_t *ret);
635 extern void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts);
636 extern int e2fsck_pass1_check_device_inode(ext2_filsys fs,
637                                            struct ext2_inode *inode);
638 extern int e2fsck_pass1_check_symlink(e2fsck_t ctx, ext2_ino_t ino,
639                                       struct ext2_inode *inode, char *buf);
640 extern void e2fsck_clear_inode(e2fsck_t ctx, ext2_ino_t ino,
641                                struct ext2_inode *inode, int restart_flag,
642                                const char *source);
643 #define e2fsck_mark_inode_bad(ctx, ino, count) \
644                 e2fsck_mark_inode_bad_loc(ctx, ino, count, __func__, __LINE__)
645 extern void e2fsck_mark_inode_bad_loc(e2fsck_t ctx, ino_t ino, int count,
646                                       const char *func, const int line);
647 extern int is_inode_bad(e2fsck_t ctx, ino_t ino);
648 extern void e2fsck_intercept_block_allocations(e2fsck_t ctx);
649
650 /* pass2.c */
651 extern int e2fsck_process_bad_inode(e2fsck_t ctx, ext2_ino_t dir,
652                                     ext2_ino_t ino, char *buf);
653
654 /* pass3.c */
655 extern int e2fsck_reconnect_file(e2fsck_t ctx, ext2_ino_t inode);
656 extern errcode_t e2fsck_expand_directory(e2fsck_t ctx, ext2_ino_t dir,
657                                          int num, int gauranteed_size);
658 extern ext2_ino_t e2fsck_get_lost_and_found(e2fsck_t ctx, int fix);
659 extern errcode_t e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino,
660                                            int adj);
661
662 /* readahead.c */
663 #define E2FSCK_READA_SUPER      (0x01)
664 #define E2FSCK_READA_GDT        (0x02)
665 #define E2FSCK_READA_BBITMAP    (0x04)
666 #define E2FSCK_READA_IBITMAP    (0x08)
667 #define E2FSCK_READA_ITABLE     (0x10)
668 #define E2FSCK_READA_ALL_FLAGS  (0x1F)
669 errcode_t e2fsck_readahead(ext2_filsys fs, int flags, dgrp_t start,
670                            dgrp_t ngroups);
671 #define E2FSCK_RA_DBLIST_IGNORE_BLOCKCNT        (0x01)
672 #define E2FSCK_RA_DBLIST_ALL_FLAGS              (0x01)
673 errcode_t e2fsck_readahead_dblist(ext2_filsys fs, int flags,
674                                   ext2_dblist dblist,
675                                   unsigned long long start,
676                                   unsigned long long count);
677 int e2fsck_can_readahead(ext2_filsys fs);
678 unsigned long long e2fsck_guess_readahead(ext2_filsys fs);
679
680 /* region.c */
681 extern region_t region_create(region_addr_t min, region_addr_t max);
682 extern void region_free(region_t region);
683 extern int region_allocate(region_t region, region_addr_t start, int n);
684
685 /* rehash.c */
686 void e2fsck_rehash_dir_later(e2fsck_t ctx, ext2_ino_t ino);
687 int e2fsck_dir_will_be_rehashed(e2fsck_t ctx, ext2_ino_t ino);
688 errcode_t e2fsck_rehash_dir(e2fsck_t ctx, ext2_ino_t ino,
689                             struct problem_context *pctx);
690 void e2fsck_rehash_directories(e2fsck_t ctx);
691
692 /* sigcatcher.c */
693 void sigcatcher_setup(void);
694
695 /* super.c */
696 void check_super_block(e2fsck_t ctx);
697 int check_backup_super_block(e2fsck_t ctx);
698 void check_resize_inode(e2fsck_t ctx);
699
700 /* util.c */
701 extern void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned long size,
702                                     const char *description);
703 extern int ask(e2fsck_t ctx, const char * string, int def);
704 extern int ask_yn(e2fsck_t ctx, const char * string, int def);
705 extern void fatal_error(e2fsck_t ctx, const char * fmt_string);
706 extern void log_out(e2fsck_t ctx, const char *fmt, ...)
707         E2FSCK_ATTR((format(printf, 2, 3)));
708 extern void log_err(e2fsck_t ctx, const char *fmt, ...)
709         E2FSCK_ATTR((format(printf, 2, 3)));
710 extern void e2fsck_read_bitmaps(e2fsck_t ctx);
711 extern void e2fsck_write_bitmaps(e2fsck_t ctx);
712 extern void preenhalt(e2fsck_t ctx);
713 extern char *string_copy(e2fsck_t ctx, const char *str, int len);
714 extern int fs_proc_check(const char *fs_name);
715 extern int check_for_modules(const char *fs_name);
716 #ifdef RESOURCE_TRACK
717 extern void print_resource_track(e2fsck_t ctx,
718                                  const char *desc,
719                                  struct resource_track *track,
720                                  io_channel channel);
721 extern void init_resource_track(struct resource_track *track,
722                                 io_channel channel);
723 #else
724 #define print_resource_track(ctx, desc, track, channel) do { } while (0)
725 #define init_resource_track(track, channel) do { } while (0)
726 #endif
727 extern int inode_has_valid_blocks(struct ext2_inode *inode);
728 extern void e2fsck_read_inode(e2fsck_t ctx, unsigned long ino,
729                               struct ext2_inode * inode, const char * proc);
730 extern void e2fsck_read_inode_full(e2fsck_t ctx, unsigned long ino,
731                                    struct ext2_inode *inode,
732                                    const int bufsize, const char *proc);
733 extern void e2fsck_write_inode(e2fsck_t ctx, unsigned long ino,
734                                struct ext2_inode * inode, const char * proc);
735 extern void e2fsck_write_inode_full(e2fsck_t ctx, unsigned long ino,
736                                struct ext2_inode * inode, int bufsize,
737                                const char *proc);
738 #ifdef MTRACE
739 extern void mtrace_print(char *mesg);
740 #endif
741 extern blk64_t get_backup_sb(e2fsck_t ctx, ext2_filsys fs,
742                            const char *name, io_manager manager);
743 extern int ext2_file_type(unsigned int mode);
744 extern int write_all(int fd, char *buf, size_t count);
745 void dump_mmp_msg(struct mmp_struct *mmp, const char *fmt, ...)
746         E2FSCK_ATTR((format(printf, 2, 3)));
747 errcode_t e2fsck_mmp_update(ext2_filsys fs);
748
749 extern void e2fsck_set_bitmap_type(ext2_filsys fs,
750                                    unsigned int default_type,
751                                    const char *profile_name,
752                                    unsigned int *old_type);
753 extern errcode_t e2fsck_allocate_inode_bitmap(ext2_filsys fs,
754                                               const char *descr,
755                                               int default_type,
756                                               const char *profile_name,
757                                               ext2fs_inode_bitmap *ret);
758 extern errcode_t e2fsck_allocate_block_bitmap(ext2_filsys fs,
759                                               const char *descr,
760                                               int default_type,
761                                               const char *profile_name,
762                                               ext2fs_block_bitmap *ret);
763 extern errcode_t e2fsck_allocate_subcluster_bitmap(ext2_filsys fs,
764                                                    const char *descr,
765                                                    int default_type,
766                                                    const char *profile_name,
767                                                    ext2fs_block_bitmap *ret);
768 unsigned long long get_memory_size(void);
769
770 /* unix.c */
771 extern void e2fsck_clear_progbar(e2fsck_t ctx);
772 extern int e2fsck_simple_progress(e2fsck_t ctx, const char *label,
773                                   float percent, unsigned int dpynum);
774
775 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
776
777 #endif /* _E2FSCK_H */