Whamcloud - gitweb
e2fsck: add Lustre lfsck tool
[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 "profile.h"
41 #include "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 "quota/mkquota.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         int                     numblocks;      /* number of blocks */
110         int                     hashversion;
111         short                   depth;          /* depth of tree */
112         struct dx_dirblock_info *dx_block;      /* Array of size numblocks */
113 };
114
115 #define DX_DIRBLOCK_ROOT        1
116 #define DX_DIRBLOCK_LEAF        2
117 #define DX_DIRBLOCK_NODE        3
118 #define DX_DIRBLOCK_CORRUPT     4
119 #define DX_DIRBLOCK_CLEARED     8
120
121 struct dx_dirblock_info {
122         int             type;
123         blk_t           phys;
124         int             flags;
125         blk_t           parent;
126         ext2_dirhash_t  min_hash;
127         ext2_dirhash_t  max_hash;
128         ext2_dirhash_t  node_min_hash;
129         ext2_dirhash_t  node_max_hash;
130 };
131
132 #define DX_FLAG_REFERENCED      1
133 #define DX_FLAG_DUP_REF         2
134 #define DX_FLAG_FIRST           4
135 #define DX_FLAG_LAST            8
136
137 #define RESOURCE_TRACK
138
139 #ifdef RESOURCE_TRACK
140 /*
141  * This structure is used for keeping track of how much resources have
142  * been used for a particular pass of e2fsck.
143  */
144 struct resource_track {
145         struct timeval time_start;
146         struct timeval user_start;
147         struct timeval system_start;
148         void    *brk_start;
149         unsigned long long bytes_read;
150         unsigned long long bytes_written;
151 };
152 #endif
153
154 /*
155  * E2fsck options
156  */
157 #define E2F_OPT_READONLY        0x0001
158 #define E2F_OPT_PREEN           0x0002
159 #define E2F_OPT_YES             0x0004
160 #define E2F_OPT_NO              0x0008
161 #define E2F_OPT_TIME            0x0010
162 #define E2F_OPT_TIME2           0x0020
163 #define E2F_OPT_CHECKBLOCKS     0x0040
164 #define E2F_OPT_DEBUG           0x0080
165 #define E2F_OPT_FORCE           0x0100
166 #define E2F_OPT_WRITECHECK      0x0200
167 #define E2F_OPT_COMPRESS_DIRS   0x0400
168 #define E2F_OPT_FRAGCHECK       0x0800
169 #define E2F_OPT_JOURNAL_ONLY    0x1000 /* only replay the journal */
170 #define E2F_OPT_DISCARD         0x2000
171 #define E2F_OPT_VERBOSE         0x4000
172
173 /*
174  * E2fsck flags
175  */
176 #define E2F_FLAG_ABORT          0x0001 /* Abort signaled */
177 #define E2F_FLAG_CANCEL         0x0002 /* Cancel signaled */
178 #define E2F_FLAG_SIGNAL_MASK    0x0003
179 #define E2F_FLAG_RESTART        0x0004 /* Restart signaled */
180 #define E2F_FLAG_RESTART_LATER  0x0008 /* Restart after all iterations done */
181
182 #define E2F_FLAG_SETJMP_OK      0x0010 /* Setjmp valid for abort */
183
184 #define E2F_FLAG_PROG_BAR       0x0020 /* Progress bar on screen */
185 #define E2F_FLAG_PROG_SUPPRESS  0x0040 /* Progress suspended */
186 #define E2F_FLAG_JOURNAL_INODE  0x0080 /* Create a new ext3 journal inode */
187 #define E2F_FLAG_SB_SPECIFIED   0x0100 /* The superblock was explicitly
188                                         * specified by the user */
189 #define E2F_FLAG_RESTARTED      0x0200 /* E2fsck has been restarted */
190 #define E2F_FLAG_RESIZE_INODE   0x0400 /* Request to recreate resize inode */
191 #define E2F_FLAG_GOT_DEVSIZE    0x0800 /* Device size has been fetched */
192 #define E2F_FLAG_EXITING        0x1000 /* E2fsck exiting due to errors */
193 #define E2F_FLAG_TIME_INSANE    0x2000 /* Time is insane */
194 #define E2F_FLAG_EXPAND_EISIZE  0x4000 /* Expand the inodes (i_extra_isize) */
195
196 #define E2F_RESET_FLAGS (E2F_FLAG_TIME_INSANE)
197
198 /* Defines for Lustre */
199 #define LUSTRE_NULL 0x0000
200 #define LUSTRE_MDS  0x0001
201 #define LUSTRE_OST  0x0002
202 #define LUSTRE_TYPE 0x000f
203 #define LUSTRE_ONLY 0x1000
204
205 /*
206  * Defines for indicating the e2fsck pass number
207  */
208 #define E2F_PASS_1      1
209 #define E2F_PASS_2      2
210 #define E2F_PASS_3      3
211 #define E2F_PASS_4      4
212 #define E2F_PASS_5      5
213 #define E2F_PASS_1B     6
214
215 enum shared_opt {
216         E2F_SHARED_PRESERVE = 0,
217         E2F_SHARED_DELETE,
218         E2F_SHARED_LPF
219 };
220
221 enum clone_opt {
222         E2F_CLONE_DUP = 0,
223         E2F_CLONE_ZERO
224 };
225
226 #define EXT4_FITS_IN_INODE(ext4_inode, einode, field)   \
227         ((offsetof(typeof(*ext4_inode), field) +        \
228           sizeof(ext4_inode->field)) <=                 \
229            (EXT2_GOOD_OLD_INODE_SIZE +                  \
230             (einode)->i_extra_isize))                   \
231
232 #define EXT4_XTIME_FUTURE(ctx, sb, xtime, margin)       \
233         (!((ctx)->flags & E2F_FLAG_TIME_INSANE) &&      \
234          (xtime) > (ctx)->now + (margin))
235 #define EXT4_XTIME_ANCIENT(ctx, sb, xtime, margin)      \
236         ((sb)->s_mkfs_time > (margin) && (xtime) < (sb)->s_mkfs_time - (margin))
237
238 #define BADNESS_NORMAL          1
239 #define BADNESS_HIGH            2
240 #define BADNESS_THRESHOLD       8
241 #define BADNESS_BAD_MODE        100
242 #define BADNESS_LARGE_FILE      2199023255552ULL
243
244 /*
245  * Define the extended attribute refcount structure
246  */
247 typedef struct ea_refcount *ext2_refcount_t;
248
249 /*
250  * This is the global e2fsck structure.
251  */
252 typedef struct e2fsck_struct *e2fsck_t;
253
254 #define MAX_EXTENT_DEPTH_COUNT 5
255
256 struct e2fsck_struct {
257         ext2_filsys fs;
258         const char *program_name;
259         char *filesystem_name;
260         char *device_name;
261         char *io_options;
262         FILE    *logf;
263         char    *log_fn;
264         int     flags;          /* E2fsck internal flags */
265         int     options;
266         int     blocksize;      /* blocksize */
267         blk64_t use_superblock; /* sb requested by user */
268         blk64_t superblock;     /* sb used to open fs */
269         blk64_t num_blocks;     /* Total number of blocks */
270         blk64_t free_blocks;
271         ino_t   free_inodes;
272         int     mount_flags;
273         blkid_cache blkid;      /* blkid cache */
274
275 #ifdef HAVE_SETJMP_H
276         jmp_buf abort_loc;
277 #endif
278         unsigned long abort_code;
279
280         int (*progress)(e2fsck_t ctx, int pass, unsigned long cur,
281                         unsigned long max);
282
283         ext2fs_inode_bitmap inode_used_map; /* Inodes which are in use */
284         ext2fs_inode_bitmap inode_dir_map; /* Inodes which are directories */
285         ext2fs_inode_bitmap inode_bb_map; /* Inodes which are in bad blocks */
286         ext2fs_inode_bitmap inode_imagic_map; /* AFS inodes */
287         ext2fs_inode_bitmap inode_reg_map; /* Inodes which are regular files*/
288         ext2fs_inode_bitmap inode_ea_map; /* EA inodes which are non-orphan */
289
290         ext2fs_block_bitmap block_found_map; /* Blocks which are in use */
291         ext2fs_block_bitmap block_dup_map; /* Blks referenced more than once */
292         ext2fs_block_bitmap block_ea_map; /* Blocks which are used by EA's */
293
294         /*
295          * Inode count arrays
296          */
297         ext2_icount_t   inode_count;
298         ext2_icount_t inode_link_info;
299         ext2_icount_t inode_badness;
300         int inode_badness_threshold;
301
302         ext2_refcount_t refcount;
303         ext2_refcount_t refcount_extra;
304
305         /*
306          * Array of flags indicating whether an inode bitmap, block
307          * bitmap, or inode table is invalid
308          */
309         int *invalid_inode_bitmap_flag;
310         int *invalid_block_bitmap_flag;
311         int *invalid_inode_table_flag;
312         int invalid_bitmaps;    /* There are invalid bitmaps/itable */
313
314         /*
315          * Block buffer
316          */
317         char *block_buf;
318
319         /*
320          * For pass1_check_directory and pass1_get_blocks
321          */
322         ext2_ino_t stashed_ino;
323         struct ext2_inode *stashed_inode;
324
325         /*
326          * Location of the lost and found directory
327          */
328         ext2_ino_t lost_and_found;
329         int bad_lost_and_found;
330
331         /*
332          * Directory information
333          */
334         struct dir_info_db      *dir_info;
335
336         /*
337          * Indexed directory information
338          */
339         int             dx_dir_info_count;
340         int             dx_dir_info_size;
341         struct dx_dir_info *dx_dir_info;
342
343         /*
344          * Directories to hash
345          */
346         ext2_u32_list   dirs_to_hash;
347
348         /*
349          * Tuning parameters
350          */
351         int process_inode_size;
352         int inode_buffer_blocks;
353         unsigned int htree_slack_percentage;
354
355         /*
356          * ext3 journal support
357          */
358         io_channel      journal_io;
359         char    *journal_name;
360
361         /*
362          * Ext4 quota support
363          */
364         quota_ctx_t qctx;
365
366         /* lustre support */
367         int                     lustre_devtype;
368         char                    *lustre_mdsdb;
369         char                    *lustre_ostdb;
370         struct lfsck_outdb_info *lfsck_oinfo;
371
372 #ifdef RESOURCE_TRACK
373         /*
374          * For timing purposes
375          */
376         struct resource_track   global_rtrack;
377 #endif
378
379         /*
380          * How we display the progress update (for unix)
381          */
382         int progress_fd;
383         int progress_pos;
384         int progress_last_percent;
385         unsigned int progress_last_time;
386         int interactive;        /* Are we connected directly to a tty? */
387         char start_meta[2], stop_meta[2];
388
389         /* File counts */
390         __u32 fs_directory_count;
391         __u32 fs_regular_count;
392         __u32 fs_blockdev_count;
393         __u32 fs_chardev_count;
394         __u32 fs_links_count;
395         __u32 fs_symlinks_count;
396         __u32 fs_fast_symlinks_count;
397         __u32 fs_fifo_count;
398         __u32 fs_total_count;
399         __u32 fs_badblocks_count;
400         __u32 fs_sockets_count;
401         __u32 fs_ind_count;
402         __u32 fs_dind_count;
403         __u32 fs_tind_count;
404         __u32 fs_fragmented;
405         __u32 fs_fragmented_dir;
406         __u32 large_files;
407         __u32 fs_ext_attr_inodes;
408         __u32 fs_ext_attr_blocks;
409         __u32 extent_depth_count[MAX_EXTENT_DEPTH_COUNT];
410
411         /* misc fields */
412         time_t now;
413         time_t time_fudge;      /* For working around buggy init scripts */
414         int ext_attr_ver;
415         enum shared_opt shared;
416         enum clone_opt clone;
417         profile_t       profile;
418         int blocks_per_page;
419
420         /* Expand large inodes to atleast these many bytes */
421         int want_extra_isize;
422         /* minimum i_extra_isize found in used inodes. Should not be lesser
423          * than s_min_extra_isize.
424          */
425         __u32 min_extra_isize;
426         int fs_unexpanded_inodes;
427         ext2fs_inode_bitmap expand_eisize_map;
428
429         /*
430          * For the use of callers of the e2fsck functions; not used by
431          * e2fsck functions themselves.
432          */
433         void *priv_data;
434 };
435
436 /* Used by the region allocation code */
437 typedef __u32 region_addr_t;
438 typedef struct region_struct *region_t;
439
440 #ifndef HAVE_STRNLEN
441 #define strnlen(str, x) e2fsck_strnlen((str),(x))
442 extern int e2fsck_strnlen(const char * s, int count);
443 #endif
444
445 /*
446  * Procedure declarations
447  */
448
449 extern void e2fsck_pass1(e2fsck_t ctx);
450 extern void e2fsck_pass1_dupblocks(e2fsck_t ctx, char *block_buf);
451 extern void e2fsck_pass2(e2fsck_t ctx);
452 extern void e2fsck_pass3(e2fsck_t ctx);
453 extern void e2fsck_pass4(e2fsck_t ctx);
454 extern void e2fsck_pass5(e2fsck_t ctx);
455 extern void e2fsck_pass6(e2fsck_t ctx);
456
457 /* e2fsck.c */
458 extern errcode_t e2fsck_allocate_context(e2fsck_t *ret);
459 extern errcode_t e2fsck_reset_context(e2fsck_t ctx);
460 extern void e2fsck_free_context(e2fsck_t ctx);
461 extern int e2fsck_run(e2fsck_t ctx);
462
463
464 /* badblock.c */
465 extern void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file,
466                                  int replace_bad_blocks);
467
468 /* crc32.c */
469 extern __u32 crc32_be(__u32 crc, unsigned char const *p, size_t len);
470
471 /* dirinfo.c */
472 extern void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
473 extern void e2fsck_free_dir_info(e2fsck_t ctx);
474 extern int e2fsck_get_num_dirinfo(e2fsck_t ctx);
475 extern struct dir_info_iter *e2fsck_dir_info_iter_begin(e2fsck_t ctx);
476 extern struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx,
477                                              struct dir_info_iter *);
478 extern void e2fsck_dir_info_iter_end(e2fsck_t ctx, struct dir_info_iter *);
479 extern int e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino,
480                                       ext2_ino_t parent);
481 extern int e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino,
482                                       ext2_ino_t dotdot);
483 extern int e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino,
484                                       ext2_ino_t *parent);
485 extern int e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino,
486                                       ext2_ino_t *dotdot);
487
488 /* dx_dirinfo.c */
489 extern void e2fsck_add_dx_dir(e2fsck_t ctx, ext2_ino_t ino, int num_blocks);
490 extern struct dx_dir_info *e2fsck_get_dx_dir_info(e2fsck_t ctx, ext2_ino_t ino);
491 extern void e2fsck_free_dx_dir_info(e2fsck_t ctx);
492 extern int e2fsck_get_num_dx_dirinfo(e2fsck_t ctx);
493 extern struct dx_dir_info *e2fsck_dx_dir_info_iter(e2fsck_t ctx, int *control);
494
495 /* ea_refcount.c */
496 extern errcode_t ea_refcount_create(int size, ext2_refcount_t *ret);
497 extern void ea_refcount_free(ext2_refcount_t refcount);
498 extern errcode_t ea_refcount_fetch(ext2_refcount_t refcount, blk_t blk,
499                                    int *ret);
500 extern errcode_t ea_refcount_increment(ext2_refcount_t refcount,
501                                        blk_t blk, int *ret);
502 extern errcode_t ea_refcount_decrement(ext2_refcount_t refcount,
503                                        blk_t blk, int *ret);
504 extern errcode_t ea_refcount_store(ext2_refcount_t refcount,
505                                    blk_t blk, int count);
506 extern blk_t ext2fs_get_refcount_size(ext2_refcount_t refcount);
507 extern void ea_refcount_intr_begin(ext2_refcount_t refcount);
508 extern blk_t ea_refcount_intr_next(ext2_refcount_t refcount, int *ret);
509
510 /* ehandler.c */
511 extern const char *ehandler_operation(const char *op);
512 extern void ehandler_init(io_channel channel);
513
514 /* journal.c */
515 extern int e2fsck_check_ext3_journal(e2fsck_t ctx);
516 extern int e2fsck_run_ext3_journal(e2fsck_t ctx);
517 extern void e2fsck_move_ext3_journal(e2fsck_t ctx);
518 extern int e2fsck_fix_ext3_journal_hint(e2fsck_t ctx);
519
520 /* logfile.c */
521 extern void set_up_logging(e2fsck_t ctx);
522
523 /* quota.c */
524 extern void e2fsck_hide_quota(e2fsck_t ctx);
525
526 /* pass1.c */
527 extern void e2fsck_setup_tdb_icount(e2fsck_t ctx, int flags,
528                                     ext2_icount_t *ret);
529 extern void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int bool);
530 extern int e2fsck_pass1_check_device_inode(ext2_filsys fs,
531                                            struct ext2_inode *inode);
532 extern int e2fsck_pass1_check_symlink(ext2_filsys fs, ext2_ino_t ino,
533                                       struct ext2_inode *inode, char *buf);
534 extern void e2fsck_clear_inode(e2fsck_t ctx, ext2_ino_t ino,
535                                struct ext2_inode *inode, int restart_flag,
536                                const char *source);
537 #define e2fsck_mark_inode_bad(ctx, ino, count) \
538                 e2fsck_mark_inode_bad_loc(ctx, ino, count, __func__, __LINE__)
539 extern void e2fsck_mark_inode_bad_loc(e2fsck_t ctx, ino_t ino, int count,
540                                       const char *func, const int line);
541 extern int is_inode_bad(e2fsck_t ctx, ino_t ino);
542
543 /* pass2.c */
544 extern int e2fsck_process_bad_inode(e2fsck_t ctx, ext2_ino_t dir,
545                                     ext2_ino_t ino, char *buf);
546
547 /* pass3.c */
548 extern int e2fsck_reconnect_file(e2fsck_t ctx, ext2_ino_t inode);
549 extern errcode_t e2fsck_expand_directory(e2fsck_t ctx, ext2_ino_t dir,
550                                          int num, int gauranteed_size);
551 extern ext2_ino_t e2fsck_get_lost_and_found(e2fsck_t ctx, int fix);
552 extern errcode_t e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino,
553                                            int adj);
554
555
556 /* region.c */
557 extern region_t region_create(region_addr_t min, region_addr_t max);
558 extern void region_free(region_t region);
559 extern int region_allocate(region_t region, region_addr_t start, int n);
560
561 /* rehash.c */
562 errcode_t e2fsck_rehash_dir(e2fsck_t ctx, ext2_ino_t ino);
563 void e2fsck_rehash_directories(e2fsck_t ctx);
564
565 /* sigcatcher.c */
566 void sigcatcher_setup(void);
567
568 /* super.c */
569 void check_super_block(e2fsck_t ctx);
570 int check_backup_super_block(e2fsck_t ctx);
571 void check_resize_inode(e2fsck_t ctx);
572
573 /* util.c */
574 extern void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned int size,
575                                     const char *description);
576 extern int ask(e2fsck_t ctx, const char * string, int def);
577 extern int ask_yn(e2fsck_t ctx, const char * string, int def);
578 extern void fatal_error(e2fsck_t ctx, const char * fmt_string);
579 extern void log_out(e2fsck_t ctx, const char *fmt, ...)
580         E2FSCK_ATTR((format(printf, 2, 3)));
581 extern void log_err(e2fsck_t ctx, const char *fmt, ...)
582         E2FSCK_ATTR((format(printf, 2, 3)));
583 extern void e2fsck_read_bitmaps(e2fsck_t ctx);
584 extern void e2fsck_write_bitmaps(e2fsck_t ctx);
585 extern void preenhalt(e2fsck_t ctx);
586 extern char *string_copy(e2fsck_t ctx, const char *str, int len);
587 extern errcode_t e2fsck_zero_blocks(ext2_filsys fs, blk_t blk, int num,
588                                     blk_t *ret_blk, int *ret_count);
589 extern int fs_proc_check(const char *fs_name);
590 extern int check_for_modules(const char *fs_name);
591 #ifdef RESOURCE_TRACK
592 extern void print_resource_track(e2fsck_t ctx,
593                                  const char *desc,
594                                  struct resource_track *track,
595                                  io_channel channel);
596 extern void init_resource_track(struct resource_track *track,
597                                 io_channel channel);
598 #else
599 #define print_resource_track(ctx, desc, track, channel) do { } while (0)
600 #define init_resource_track(track, channel) do { } while (0)
601 #endif
602 extern int inode_has_valid_blocks(struct ext2_inode *inode);
603 extern void e2fsck_read_inode(e2fsck_t ctx, unsigned long ino,
604                               struct ext2_inode * inode, const char * proc);
605 extern void e2fsck_read_inode_full(e2fsck_t ctx, unsigned long ino,
606                                    struct ext2_inode *inode,
607                                    const int bufsize, const char *proc);
608 extern void e2fsck_write_inode(e2fsck_t ctx, unsigned long ino,
609                                struct ext2_inode * inode, const char * proc);
610 extern void e2fsck_write_inode_full(e2fsck_t ctx, unsigned long ino,
611                                struct ext2_inode * inode, int bufsize,
612                                const char *proc);
613 #ifdef MTRACE
614 extern void mtrace_print(char *mesg);
615 #endif
616 extern blk_t get_backup_sb(e2fsck_t ctx, ext2_filsys fs,
617                            const char *name, io_manager manager);
618 extern int ext2_file_type(unsigned int mode);
619 extern int write_all(int fd, char *buf, size_t count);
620 void dump_mmp_msg(struct mmp_struct *mmp, const char *msg);
621 errcode_t e2fsck_mmp_update(ext2_filsys fs);
622
623 extern void e2fsck_set_bitmap_type(ext2_filsys fs,
624                                    unsigned int default_type,
625                                    const char *profile_name,
626                                    unsigned int *old_type);
627 extern errcode_t e2fsck_allocate_inode_bitmap(ext2_filsys fs,
628                                               const char *descr,
629                                               int default_type,
630                                               const char *profile_name,
631                                               ext2fs_inode_bitmap *ret);
632 extern errcode_t e2fsck_allocate_block_bitmap(ext2_filsys fs,
633                                               const char *descr,
634                                               int default_type,
635                                               const char *profile_name,
636                                               ext2fs_block_bitmap *ret);
637 extern errcode_t e2fsck_allocate_subcluster_bitmap(ext2_filsys fs,
638                                                    const char *descr,
639                                                    int default_type,
640                                                    const char *profile_name,
641                                                    ext2fs_block_bitmap *ret);
642
643 /* unix.c */
644 extern void e2fsck_clear_progbar(e2fsck_t ctx);
645 extern int e2fsck_simple_progress(e2fsck_t ctx, const char *label,
646                                   float percent, unsigned int dpynum);
647 #endif /* _E2FSCK_H */