Whamcloud - gitweb
LU-13197 e2fsck: reduce memory usage for directories
[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                    casefolded_hash:1;
111         __u8                    hashversion;
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
179 /*
180  * E2fsck flags
181  */
182 #define E2F_FLAG_ABORT          0x0001 /* Abort signaled */
183 #define E2F_FLAG_CANCEL         0x0002 /* Cancel signaled */
184 #define E2F_FLAG_SIGNAL_MASK    (E2F_FLAG_ABORT | E2F_FLAG_CANCEL)
185 #define E2F_FLAG_RESTART        0x0004 /* Restart signaled */
186 #define E2F_FLAG_RUN_RETURN     (E2F_FLAG_SIGNAL_MASK | E2F_FLAG_RESTART)
187 #define E2F_FLAG_RESTART_LATER  0x0008 /* Restart after all iterations done */
188 #define E2F_FLAG_SETJMP_OK      0x0010 /* Setjmp valid for abort */
189
190 #define E2F_FLAG_PROG_BAR       0x0020 /* Progress bar on screen */
191 #define E2F_FLAG_PROG_SUPPRESS  0x0040 /* Progress suspended */
192 #define E2F_FLAG_JOURNAL_INODE  0x0080 /* Create a new ext3 journal inode */
193 #define E2F_FLAG_SB_SPECIFIED   0x0100 /* The superblock was explicitly
194                                         * specified by the user */
195 #define E2F_FLAG_RESTARTED      0x0200 /* E2fsck has been restarted */
196 #define E2F_FLAG_RESIZE_INODE   0x0400 /* Request to recreate resize inode */
197 #define E2F_FLAG_GOT_DEVSIZE    0x0800 /* Device size has been fetched */
198 #define E2F_FLAG_EXITING        0x1000 /* E2fsck exiting due to errors */
199 #define E2F_FLAG_TIME_INSANE    0x2000 /* Time is insane */
200 #define E2F_FLAG_PROBLEMS_FIXED 0x4000 /* At least one problem was fixed */
201 #define E2F_FLAG_ALLOC_OK       0x8000 /* Can we allocate blocks? */
202 #define E2F_FLAG_EXPAND_EISIZE  0x10000 /* Expand the inodes (i_extra_isize) */
203
204 #define E2F_RESET_FLAGS (E2F_FLAG_TIME_INSANE | E2F_FLAG_PROBLEMS_FIXED)
205
206 /*
207  * Defines for indicating the e2fsck pass number
208  */
209 #define E2F_PASS_1      1
210 #define E2F_PASS_2      2
211 #define E2F_PASS_3      3
212 #define E2F_PASS_4      4
213 #define E2F_PASS_5      5
214 #define E2F_PASS_1B     6
215
216 enum shared_opt {
217         E2F_SHARED_PRESERVE = 0,
218         E2F_SHARED_DELETE,
219         E2F_SHARED_LPF
220 };
221
222 enum clone_opt {
223         E2F_CLONE_DUP = 0,
224         E2F_CLONE_ZERO
225 };
226
227 #define EXT4_FITS_IN_INODE(ext4_inode, einode, field)   \
228         ((offsetof(typeof(*ext4_inode), field) +        \
229           sizeof(ext4_inode->field)) <=                 \
230            (EXT2_GOOD_OLD_INODE_SIZE +                  \
231             (einode)->i_extra_isize))                   \
232
233 #define EXT4_XTIME_FUTURE(ctx, sb, xtime, margin)       \
234         (!((ctx)->flags & E2F_FLAG_TIME_INSANE) &&      \
235          (xtime) > (ctx)->now + (margin))
236 #define EXT4_XTIME_ANCIENT(ctx, sb, xtime, margin)      \
237         ((sb)->s_mkfs_time > (margin) && (xtime) < (sb)->s_mkfs_time - (margin))
238
239 #define BADNESS_NORMAL          1
240 #define BADNESS_HIGH            2
241 #define BADNESS_THRESHOLD       8
242 #define BADNESS_BAD_MODE        100
243 #define BADNESS_LARGE_FILE      2199023255552ULL
244
245 /*
246  * Define the extended attribute refcount structure
247  */
248 typedef struct ea_refcount *ext2_refcount_t;
249
250 /*
251  * This is the global e2fsck structure.
252  */
253 typedef struct e2fsck_struct *e2fsck_t;
254
255 #define MAX_EXTENT_DEPTH_COUNT 5
256
257 struct e2fsck_struct {
258         ext2_filsys fs;
259         const char *program_name;
260         char *filesystem_name;
261         char *device_name;
262         char *io_options;
263         FILE    *logf;
264         char    *log_fn;
265         FILE    *problem_logf;
266         char    *problem_log_fn;
267         unsigned        flags;          /* E2fsck internal flags */
268         unsigned        options;
269         unsigned        blocksize;      /* blocksize */
270         blk64_t         use_superblock; /* sb requested by user */
271         blk64_t         superblock;     /* sb used to open fs */
272         blk64_t         num_blocks;     /* Total number of blocks */
273         blk64_t         free_blocks;
274         ext2_ino_t      free_inodes;
275         unsigned        mount_flags;
276         unsigned        openfs_flags;
277         blkid_cache blkid;      /* blkid cache */
278
279 #ifdef HAVE_SETJMP_H
280         jmp_buf abort_loc;
281 #endif
282         unsigned long abort_code;
283
284         int (*progress)(e2fsck_t ctx, int pass, unsigned long cur,
285                         unsigned long max);
286
287         ext2fs_inode_bitmap inode_used_map; /* Inodes which are in use */
288         ext2fs_inode_bitmap inode_dir_map; /* Inodes which are directories */
289         ext2fs_inode_bitmap inode_bb_map; /* Inodes which are in bad blocks */
290         ext2fs_inode_bitmap inode_imagic_map; /* AFS inodes */
291         ext2fs_inode_bitmap inode_reg_map; /* Inodes which are regular files*/
292
293         ext2fs_block_bitmap block_found_map; /* Blocks which are in use */
294         ext2fs_block_bitmap block_dup_map; /* Blks referenced more than once */
295         ext2fs_block_bitmap block_ea_map; /* Blocks which are used by EA's */
296
297         /*
298          * Inode count arrays
299          */
300         ext2_icount_t   inode_count;
301         ext2_icount_t inode_link_info;
302         ext2_icount_t inode_badness;
303         int inode_badness_threshold;
304
305         ext2_refcount_t refcount;
306         ext2_refcount_t refcount_extra;
307
308         /*
309          * Quota blocks and inodes to be charged for each ea block.
310          */
311         ext2_refcount_t ea_block_quota_blocks;
312         ext2_refcount_t ea_block_quota_inodes;
313
314         /*
315          * ea_inode references from attr entries.
316          */
317         ext2_refcount_t ea_inode_refs;
318
319         /*
320          * Array of flags indicating whether an inode bitmap, block
321          * bitmap, or inode table is invalid
322          */
323         int *invalid_inode_bitmap_flag;
324         int *invalid_block_bitmap_flag;
325         int *invalid_inode_table_flag;
326         int invalid_bitmaps;    /* There are invalid bitmaps/itable */
327
328         /*
329          * Block buffer
330          */
331         char *block_buf;
332
333         /*
334          * For pass1_check_directory and pass1_get_blocks
335          */
336         ext2_ino_t stashed_ino;
337         struct ext2_inode *stashed_inode;
338
339         /*
340          * Location of the lost and found directory
341          */
342         ext2_ino_t lost_and_found;
343         int bad_lost_and_found;
344
345         /*
346          * Directory information
347          */
348         struct dir_info_db      *dir_info;
349
350         /*
351          * Indexed directory information
352          */
353         ext2_ino_t              dx_dir_info_count;
354         ext2_ino_t              dx_dir_info_size;
355         struct dx_dir_info      *dx_dir_info;
356
357         /*
358          * Directories to hash
359          */
360         ext2_u32_list   dirs_to_hash;
361
362         /*
363          * Tuning parameters
364          */
365         int process_inode_size;
366         int inode_buffer_blocks;
367         unsigned int htree_slack_percentage;
368
369         /*
370          * ext3 journal support
371          */
372         io_channel      journal_io;
373         char    *journal_name;
374
375         /*
376          * Ext4 quota support
377          */
378         quota_ctx_t qctx;
379 #ifdef RESOURCE_TRACK
380         /*
381          * For timing purposes
382          */
383         struct resource_track   global_rtrack;
384 #endif
385
386         /*
387          * How we display the progress update (for unix)
388          */
389         int progress_fd;
390         int progress_pos;
391         int progress_last_percent;
392         unsigned int progress_last_time;
393         int interactive;        /* Are we connected directly to a tty? */
394         char start_meta[2], stop_meta[2];
395
396         /* File counts */
397         __u32 fs_directory_count;
398         __u32 fs_regular_count;
399         __u32 fs_blockdev_count;
400         __u32 fs_chardev_count;
401         __u32 fs_links_count;
402         __u32 fs_symlinks_count;
403         __u32 fs_fast_symlinks_count;
404         __u32 fs_fifo_count;
405         __u32 fs_total_count;
406         __u32 fs_badblocks_count;
407         __u32 fs_sockets_count;
408         __u32 fs_ind_count;
409         __u32 fs_dind_count;
410         __u32 fs_tind_count;
411         __u32 fs_fragmented;
412         __u32 fs_fragmented_dir;
413         __u32 large_files;
414         __u32 fs_ext_attr_inodes;
415         __u32 fs_ext_attr_blocks;
416         __u32 extent_depth_count[MAX_EXTENT_DEPTH_COUNT];
417
418         /* misc fields */
419         time_t now;
420         time_t time_fudge;      /* For working around buggy init scripts */
421         int ext_attr_ver;
422         enum shared_opt shared;
423         enum clone_opt clone;
424         profile_t       profile;
425         int blocks_per_page;
426         ext2_u32_list encrypted_dirs;
427
428         /* Expand large inodes to atleast these many bytes */
429         int want_extra_isize;
430         /* minimum i_extra_isize found in used inodes. Should not be lesser
431          * than s_min_extra_isize.
432          */
433         __u32 min_extra_isize;
434         int fs_unexpanded_inodes;
435         ext2fs_inode_bitmap expand_eisize_map;
436
437         /* Reserve blocks for root and l+f re-creation */
438         blk64_t root_repair_block, lnf_repair_block;
439
440         /*
441          * For the use of callers of the e2fsck functions; not used by
442          * e2fsck functions themselves.
443          */
444         void *priv_data;
445         ext2fs_block_bitmap block_metadata_map; /* Metadata blocks */
446
447         /* How much are we allowed to readahead? */
448         unsigned long long readahead_kb;
449
450         /*
451          * Inodes to rebuild extent trees
452          */
453         ext2fs_inode_bitmap inodes_to_rebuild;
454
455         /* Undo file */
456         char *undo_file;
457 };
458
459 /* Data structures to evaluate whether an extent tree needs rebuilding. */
460 struct extent_tree_level {
461         unsigned int    num_extents;
462         unsigned int    max_extents;
463 };
464
465 struct extent_tree_info {
466         ext2_ino_t ino;
467         int force_rebuild;
468         struct extent_tree_level        ext_info[MAX_EXTENT_DEPTH_COUNT];
469 };
470
471 /* Used by the region allocation code */
472 typedef __u64 region_addr_t;
473 typedef struct region_struct *region_t;
474
475 #ifndef HAVE_STRNLEN
476 #define strnlen(str, x) e2fsck_strnlen((str),(x))
477 extern int e2fsck_strnlen(const char * s, int count);
478 #endif
479
480 /*
481  * Procedure declarations
482  */
483
484 extern void e2fsck_pass1(e2fsck_t ctx);
485 extern void e2fsck_pass1_dupblocks(e2fsck_t ctx, char *block_buf);
486 extern void e2fsck_pass2(e2fsck_t ctx);
487 extern void e2fsck_pass3(e2fsck_t ctx);
488 extern void e2fsck_pass4(e2fsck_t ctx);
489 extern void e2fsck_pass5(e2fsck_t ctx);
490
491 /* e2fsck.c */
492 extern errcode_t e2fsck_allocate_context(e2fsck_t *ret);
493 extern errcode_t e2fsck_reset_context(e2fsck_t ctx);
494 extern void e2fsck_free_context(e2fsck_t ctx);
495 extern int e2fsck_run(e2fsck_t ctx);
496
497
498 /* badblock.c */
499 extern void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file,
500                                  int replace_bad_blocks);
501
502 /* dirinfo.c */
503 extern void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
504 extern void e2fsck_free_dir_info(e2fsck_t ctx);
505 extern int e2fsck_get_num_dirinfo(e2fsck_t ctx);
506 extern struct dir_info_iter *e2fsck_dir_info_iter_begin(e2fsck_t ctx);
507 extern struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx,
508                                              struct dir_info_iter *);
509 extern void e2fsck_dir_info_iter_end(e2fsck_t ctx, struct dir_info_iter *);
510 extern int e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino,
511                                       ext2_ino_t parent);
512 extern int e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino,
513                                       ext2_ino_t dotdot);
514 extern int e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino,
515                                       ext2_ino_t *parent);
516 extern int e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino,
517                                       ext2_ino_t *dotdot);
518
519 /* dx_dirinfo.c */
520 extern void e2fsck_add_dx_dir(e2fsck_t ctx, ext2_ino_t ino,
521                               struct ext2_inode *inode, int num_blocks);
522 extern struct dx_dir_info *e2fsck_get_dx_dir_info(e2fsck_t ctx, ext2_ino_t ino);
523 extern void e2fsck_free_dx_dir_info(e2fsck_t ctx);
524 extern ext2_ino_t e2fsck_get_num_dx_dirinfo(e2fsck_t ctx);
525 extern struct dx_dir_info *e2fsck_dx_dir_info_iter(e2fsck_t ctx,
526                                                    ext2_ino_t *control);
527
528 /* ea_refcount.c */
529 typedef __u64 ea_key_t;
530 typedef __u64 ea_value_t;
531
532 extern errcode_t ea_refcount_create(size_t size, ext2_refcount_t *ret);
533 extern void ea_refcount_free(ext2_refcount_t refcount);
534 extern errcode_t ea_refcount_fetch(ext2_refcount_t refcount, ea_key_t ea_key,
535                                    ea_value_t *ret);
536 extern errcode_t ea_refcount_increment(ext2_refcount_t refcount,
537                                        ea_key_t ea_key, ea_value_t *ret);
538 extern errcode_t ea_refcount_decrement(ext2_refcount_t refcount,
539                                        ea_key_t ea_key, ea_value_t *ret);
540 extern errcode_t ea_refcount_store(ext2_refcount_t refcount, ea_key_t ea_key,
541                                    ea_value_t count);
542 extern size_t ext2fs_get_refcount_size(ext2_refcount_t refcount);
543 extern void ea_refcount_intr_begin(ext2_refcount_t refcount);
544 extern ea_key_t ea_refcount_intr_next(ext2_refcount_t refcount,
545                                       ea_value_t *ret);
546
547 /* ehandler.c */
548 extern const char *ehandler_operation(const char *op);
549 extern void ehandler_init(io_channel channel);
550
551 /* extents.c */
552 struct problem_context;
553 errcode_t e2fsck_rebuild_extents_later(e2fsck_t ctx, ext2_ino_t ino);
554 int e2fsck_ino_will_be_rebuilt(e2fsck_t ctx, ext2_ino_t ino);
555 void e2fsck_pass1e(e2fsck_t ctx);
556 errcode_t e2fsck_check_rebuild_extents(e2fsck_t ctx, ext2_ino_t ino,
557                                        struct ext2_inode *inode,
558                                        struct problem_context *pctx);
559 errcode_t e2fsck_should_rebuild_extents(e2fsck_t ctx,
560                                         struct problem_context *pctx,
561                                         struct extent_tree_info *eti,
562                                         struct ext2_extent_info *info);
563
564 /* journal.c */
565 extern errcode_t e2fsck_check_ext3_journal(e2fsck_t ctx);
566 extern errcode_t e2fsck_run_ext3_journal(e2fsck_t ctx);
567 extern void e2fsck_move_ext3_journal(e2fsck_t ctx);
568 extern int e2fsck_fix_ext3_journal_hint(e2fsck_t ctx);
569
570 /* logfile.c */
571 extern void set_up_logging(e2fsck_t ctx);
572
573 /* quota.c */
574 extern void e2fsck_hide_quota(e2fsck_t ctx);
575 extern void e2fsck_validate_quota_inodes(e2fsck_t ctx);
576
577 /* pass1.c */
578 extern errcode_t e2fsck_setup_icount(e2fsck_t ctx, const char *icount_name,
579                                      int flags, ext2_icount_t hint,
580                                      ext2_icount_t *ret);
581 extern void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts);
582 extern int e2fsck_pass1_check_device_inode(ext2_filsys fs,
583                                            struct ext2_inode *inode);
584 extern int e2fsck_pass1_check_symlink(e2fsck_t ctx, ext2_ino_t ino,
585                                       struct ext2_inode *inode, char *buf);
586 extern void e2fsck_clear_inode(e2fsck_t ctx, ext2_ino_t ino,
587                                struct ext2_inode *inode, int restart_flag,
588                                const char *source);
589 #define e2fsck_mark_inode_bad(ctx, ino, count) \
590                 e2fsck_mark_inode_bad_loc(ctx, ino, count, __func__, __LINE__)
591 extern void e2fsck_mark_inode_bad_loc(e2fsck_t ctx, ext2_ino_t ino, int count,
592                                       const char *func, const int line);
593 extern void e2fsck_intercept_block_allocations(e2fsck_t ctx);
594
595 /* pass2.c */
596 extern int e2fsck_process_bad_inode(e2fsck_t ctx, ext2_ino_t dir,
597                                     ext2_ino_t ino, char *buf);
598
599 /* pass3.c */
600 extern int e2fsck_reconnect_file(e2fsck_t ctx, ext2_ino_t inode);
601 extern errcode_t e2fsck_expand_directory(e2fsck_t ctx, ext2_ino_t dir,
602                                          int num, int gauranteed_size);
603 extern ext2_ino_t e2fsck_get_lost_and_found(e2fsck_t ctx, int fix);
604 extern errcode_t e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino,
605                                            int adj);
606
607 /* readahead.c */
608 #define E2FSCK_READA_SUPER      (0x01)
609 #define E2FSCK_READA_GDT        (0x02)
610 #define E2FSCK_READA_BBITMAP    (0x04)
611 #define E2FSCK_READA_IBITMAP    (0x08)
612 #define E2FSCK_READA_ITABLE     (0x10)
613 #define E2FSCK_READA_ALL_FLAGS  (0x1F)
614 errcode_t e2fsck_readahead(ext2_filsys fs, int flags, dgrp_t start,
615                            dgrp_t ngroups);
616 #define E2FSCK_RA_DBLIST_IGNORE_BLOCKCNT        (0x01)
617 #define E2FSCK_RA_DBLIST_ALL_FLAGS              (0x01)
618 errcode_t e2fsck_readahead_dblist(ext2_filsys fs, int flags,
619                                   ext2_dblist dblist,
620                                   unsigned long long start,
621                                   unsigned long long count);
622 int e2fsck_can_readahead(ext2_filsys fs);
623 unsigned long long e2fsck_guess_readahead(ext2_filsys fs);
624
625 /* region.c */
626 extern region_t region_create(region_addr_t min, region_addr_t max);
627 extern void region_free(region_t region);
628 extern int region_allocate(region_t region, region_addr_t start, int n);
629
630 /* rehash.c */
631 void e2fsck_rehash_dir_later(e2fsck_t ctx, ext2_ino_t ino);
632 int e2fsck_dir_will_be_rehashed(e2fsck_t ctx, ext2_ino_t ino);
633 errcode_t e2fsck_rehash_dir(e2fsck_t ctx, ext2_ino_t ino,
634                             struct problem_context *pctx);
635 void e2fsck_rehash_directories(e2fsck_t ctx);
636
637 /* sigcatcher.c */
638 void sigcatcher_setup(void);
639
640 /* super.c */
641 void check_super_block(e2fsck_t ctx);
642 int check_backup_super_block(e2fsck_t ctx);
643 void check_resize_inode(e2fsck_t ctx);
644
645 /* util.c */
646 extern void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned long size,
647                                     const char *description);
648 extern int ask(e2fsck_t ctx, const char * string, int def);
649 extern int ask_yn(e2fsck_t ctx, const char * string, int def);
650 extern void fatal_error(e2fsck_t ctx, const char * fmt_string);
651 extern void log_out(e2fsck_t ctx, const char *fmt, ...)
652         E2FSCK_ATTR((format(printf, 2, 3)));
653 extern void log_err(e2fsck_t ctx, const char *fmt, ...)
654         E2FSCK_ATTR((format(printf, 2, 3)));
655 extern void e2fsck_read_bitmaps(e2fsck_t ctx);
656 extern void e2fsck_write_bitmaps(e2fsck_t ctx);
657 extern void preenhalt(e2fsck_t ctx);
658 extern char *string_copy(e2fsck_t ctx, const char *str, int len);
659 extern int fs_proc_check(const char *fs_name);
660 extern int check_for_modules(const char *fs_name);
661 #ifdef RESOURCE_TRACK
662 extern void print_resource_track(e2fsck_t ctx,
663                                  const char *desc,
664                                  struct resource_track *track,
665                                  io_channel channel);
666 extern void init_resource_track(struct resource_track *track,
667                                 io_channel channel);
668 #else
669 #define print_resource_track(ctx, desc, track, channel) do { } while (0)
670 #define init_resource_track(track, channel) do { } while (0)
671 #endif
672 extern int inode_has_valid_blocks(struct ext2_inode *inode);
673 extern void e2fsck_read_inode(e2fsck_t ctx, unsigned long ino,
674                               struct ext2_inode * inode, const char * proc);
675 extern void e2fsck_read_inode_full(e2fsck_t ctx, unsigned long ino,
676                                    struct ext2_inode *inode,
677                                    const int bufsize, const char *proc);
678 extern void e2fsck_write_inode(e2fsck_t ctx, unsigned long ino,
679                                struct ext2_inode * inode, const char * proc);
680 extern void e2fsck_write_inode_full(e2fsck_t ctx, unsigned long ino,
681                                struct ext2_inode * inode, int bufsize,
682                                const char *proc);
683 #ifdef MTRACE
684 extern void mtrace_print(char *mesg);
685 #endif
686 extern blk64_t get_backup_sb(e2fsck_t ctx, ext2_filsys fs,
687                            const char *name, io_manager manager);
688 extern int ext2_file_type(unsigned int mode);
689 extern int write_all(int fd, char *buf, size_t count);
690 void dump_mmp_msg(struct mmp_struct *mmp, const char *fmt, ...)
691         E2FSCK_ATTR((format(printf, 2, 3)));
692 errcode_t e2fsck_mmp_update(ext2_filsys fs);
693
694 extern void e2fsck_set_bitmap_type(ext2_filsys fs,
695                                    unsigned int default_type,
696                                    const char *profile_name,
697                                    unsigned int *old_type);
698 extern errcode_t e2fsck_allocate_inode_bitmap(ext2_filsys fs,
699                                               const char *descr,
700                                               int default_type,
701                                               const char *profile_name,
702                                               ext2fs_inode_bitmap *ret);
703 extern errcode_t e2fsck_allocate_block_bitmap(ext2_filsys fs,
704                                               const char *descr,
705                                               int default_type,
706                                               const char *profile_name,
707                                               ext2fs_block_bitmap *ret);
708 extern errcode_t e2fsck_allocate_subcluster_bitmap(ext2_filsys fs,
709                                                    const char *descr,
710                                                    int default_type,
711                                                    const char *profile_name,
712                                                    ext2fs_block_bitmap *ret);
713 unsigned long long get_memory_size(void);
714
715 /* unix.c */
716 extern void e2fsck_clear_progbar(e2fsck_t ctx);
717 extern int e2fsck_simple_progress(e2fsck_t ctx, const char *label,
718                                   float percent, unsigned int dpynum);
719
720 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
721
722 #endif /* _E2FSCK_H */