Whamcloud - gitweb
86b411ce773dcc78ac2c369048f3b2548b958918
[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 #include <stdio.h>
10 #include <string.h>
11 #ifdef HAVE_UNISTD_H
12 #include <unistd.h>
13 #endif
14 #include <stdlib.h>
15 #include <time.h>
16 #ifdef HAVE_SYS_TYPES_H
17 #include <sys/types.h>
18 #endif
19 #ifdef HAVE_SYS_TIME_H
20 #include <sys/time.h>
21 #endif
22 #ifdef HAVE_SETJMP_H
23 #include <setjmp.h>
24 #endif
25
26 #ifdef HAVE_LINUX_FS_H
27 #include <linux/fs.h>
28 #endif
29
30 #if EXT2_FLAT_INCLUDES
31 #include "ext2_fs.h"
32 #include "ext2fs.h"
33 #else
34 #include <linux/ext2_fs.h>
35 #include "ext2fs/ext2fs.h"
36 #endif
37
38
39 /* Everything is STDC, these days */
40 #define NOARGS void
41
42 /*
43  * Exit codes used by fsck-type programs
44  */
45 #define FSCK_OK          0      /* No errors */
46 #define FSCK_NONDESTRUCT 1      /* File system errors corrected */
47 #define FSCK_REBOOT      2      /* System should be rebooted */
48 #define FSCK_UNCORRECTED 4      /* File system errors left uncorrected */
49 #define FSCK_ERROR       8      /* Operational error */
50 #define FSCK_USAGE       16     /* Usage or syntax error */
51 #define FSCK_LIBRARY     128    /* Shared library error */
52
53 /*
54  * The last ext2fs revision level that this version of e2fsck is able to
55  * support
56  */
57 #define E2FSCK_CURRENT_REV      1
58
59 /*
60  * The directory information structure; stores directory information
61  * collected in earlier passes, to avoid disk i/o in fetching the
62  * directory information.
63  */
64 struct dir_info {
65         ino_t                   ino;    /* Inode number */
66         ino_t                   dotdot; /* Parent according to '..' */
67         ino_t                   parent; /* Parent according to treewalk */
68 };
69
70 #ifdef RESOURCE_TRACK
71 /*
72  * This structure is used for keeping track of how much resources have
73  * been used for a particular pass of e2fsck.
74  */
75 struct resource_track {
76         struct timeval time_start;
77         struct timeval user_start;
78         struct timeval system_start;
79         void    *brk_start;
80 };
81 #endif
82
83 /*
84  * E2fsck options
85  */
86 #define E2F_OPT_READONLY        0x0001
87 #define E2F_OPT_PREEN           0x0002
88 #define E2F_OPT_YES             0x0004
89 #define E2F_OPT_NO              0x0008
90 #define E2F_OPT_TIME            0x0010
91 #define E2F_OPT_TIME2           0x0020
92 #define E2F_OPT_CHECKBLOCKS     0x0040
93 #define E2F_OPT_DEBUG           0x0080
94
95 /*
96  * E2fsck flags
97  */
98 #define E2F_FLAG_ABORT          0x0001 /* Abort signaled */
99 #define E2F_FLAG_CANCEL         0x0002 /* Cancel signaled */
100 #define E2F_FLAG_SIGNAL_MASK    0x0003
101 #define E2F_FLAG_RESTART        0x0004 /* Restart signaled */
102
103 #define E2F_FLAG_SETJMP_OK      0x0010 /* Setjmp valid for abort */
104
105 #define E2F_FLAG_PROG_BAR       0x0020 /* Progress bar on screen */
106 #define E2F_FLAG_PROG_SUPPRESS  0x0040 /* Progress suspended */
107
108 /*
109  * Defines for indicating the e2fsck pass number
110  */
111 #define E2F_PASS_1      1
112 #define E2F_PASS_2      2
113 #define E2F_PASS_3      3
114 #define E2F_PASS_4      4
115 #define E2F_PASS_5      5
116 #define E2F_PASS_1B     6
117
118 /*
119  * This is the global e2fsck structure.
120  */
121 typedef struct e2fsck_struct *e2fsck_t;
122
123 struct e2fsck_struct {
124         ext2_filsys fs;
125         const char *program_name;
126         const char *filesystem_name;
127         const char *device_name;
128         int     flags;          /* E2fsck internal flags */
129         int     options;
130         blk_t   use_superblock; /* sb requested by user */
131         blk_t   superblock;     /* sb used to open fs */
132         blk_t   num_blocks;     /* Total number of blocks */
133
134 #ifdef HAVE_SETJMP_H
135         jmp_buf abort_loc;
136 #endif
137         unsigned long abort_code;
138
139         int (*progress)(e2fsck_t ctx, int pass, unsigned long cur,
140                         unsigned long max);
141
142         ext2fs_inode_bitmap inode_used_map; /* Inodes which are in use */
143         ext2fs_inode_bitmap inode_bad_map; /* Inodes which are bad somehow */
144         ext2fs_inode_bitmap inode_dir_map; /* Inodes which are directories */
145         ext2fs_inode_bitmap inode_bb_map; /* Inodes which are in bad blocks */
146
147         ext2fs_block_bitmap block_found_map; /* Blocks which are in use */
148         ext2fs_block_bitmap block_dup_map; /* Blks referenced more than once */
149         ext2fs_block_bitmap block_illegal_map; /* Meta-data blocks */
150
151         /*
152          * Inode count arrays
153          */
154         ext2_icount_t   inode_count;
155         ext2_icount_t inode_link_info;
156
157         /*
158          * Array of flags indicating whether an inode bitmap, block
159          * bitmap, or inode table is invalid
160          */
161         int *invalid_inode_bitmap_flag;
162         int *invalid_block_bitmap_flag;
163         int *invalid_inode_table_flag;
164         int invalid_bitmaps;    /* There are invalid bitmaps/itable */
165
166         /*
167          * Block buffer
168          */
169         char *block_buf;
170
171         /*
172          * For pass1_check_directory and pass1_get_blocks
173          */
174         ino_t stashed_ino;
175         struct ext2_inode *stashed_inode;
176
177         /*
178          * Directory information
179          */
180         int             dir_info_count;
181         int             dir_info_size;
182         struct dir_info *dir_info;
183
184         /*
185          * Tuning parameters
186          */
187         int process_inode_size;
188         int inode_buffer_blocks;
189
190 #ifdef RESOURCE_TRACK
191         /*
192          * For timing purposes
193          */
194         struct resource_track   global_rtrack;
195 #endif
196
197         /*
198          * How we display the progress update (for unix)
199          */
200         int progress_fd;
201         int progress_pos;
202         int progress_last_percent;
203
204         /* File counts */
205         int fs_directory_count;
206         int fs_regular_count;
207         int fs_blockdev_count;
208         int fs_chardev_count;
209         int fs_links_count;
210         int fs_symlinks_count;
211         int fs_fast_symlinks_count;
212         int fs_fifo_count;
213         int fs_total_count;
214         int fs_badblocks_count;
215         int fs_sockets_count;
216         int fs_ind_count;
217         int fs_dind_count;
218         int fs_tind_count;
219         int fs_fragmented;
220         int large_files;
221
222         /*
223          * For the use of callers of the e2fsck functions; not used by
224          * e2fsck functions themselves.
225          */
226         void *priv_data;
227 };
228
229
230 /*
231  * Procedure declarations
232  */
233
234 extern void e2fsck_pass1(e2fsck_t ctx);
235 extern void e2fsck_pass1_dupblocks(e2fsck_t ctx, char *block_buf);
236 extern void e2fsck_pass2(e2fsck_t ctx);
237 extern void e2fsck_pass3(e2fsck_t ctx);
238 extern void e2fsck_pass4(e2fsck_t ctx);
239 extern void e2fsck_pass5(e2fsck_t ctx);
240
241 /* e2fsck.c */
242 extern errcode_t e2fsck_allocate_context(e2fsck_t *ret);
243 extern errcode_t e2fsck_reset_context(e2fsck_t ctx);
244 extern void e2fsck_free_context(e2fsck_t ctx);
245 extern int e2fsck_run(e2fsck_t ctx);
246
247
248 /* badblock.c */
249 extern void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file,
250                                  int replace_bad_blocks);
251 extern void test_disk(e2fsck_t ctx);
252
253 /* dirinfo.c */
254 extern void e2fsck_add_dir_info(e2fsck_t ctx, ino_t ino, ino_t parent);
255 extern struct dir_info *e2fsck_get_dir_info(e2fsck_t ctx, ino_t ino);
256 extern void e2fsck_free_dir_info(e2fsck_t ctx);
257 extern int e2fsck_get_num_dirs(e2fsck_t ctx);
258 extern int e2fsck_get_num_dirinfo(e2fsck_t ctx);
259 extern struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx, int *control);
260
261 /* ehandler.c */
262 extern const char *ehandler_operation(const char *op);
263 extern void ehandler_init(io_channel channel);
264
265 /* pass1.c */
266 extern void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int bool);
267 extern int e2fsck_pass1_check_device_inode(struct ext2_inode *inode);
268
269 /* pass2.c */
270 extern int e2fsck_process_bad_inode(e2fsck_t ctx, ino_t dir, ino_t ino);
271
272 /* pass3.c */
273 extern int e2fsck_reconnect_file(e2fsck_t ctx, ino_t inode);
274
275 /* super.c */
276 void check_super_block(e2fsck_t ctx);
277 errcode_t e2fsck_get_device_size(e2fsck_t ctx);
278
279 /* swapfs.c */
280 void swap_filesys(e2fsck_t ctx);
281
282 /* util.c */
283 extern void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned int size,
284                                     const char *description);
285 extern int ask(e2fsck_t ctx, const char * string, int def);
286 extern int ask_yn(const char * string, int def);
287 extern void fatal_error(e2fsck_t ctx, const char * fmt_string);
288 extern void e2fsck_read_bitmaps(e2fsck_t ctx);
289 extern void e2fsck_write_bitmaps(e2fsck_t ctx);
290 extern void preenhalt(e2fsck_t ctx);
291 #ifdef RESOURCE_TRACK
292 extern void print_resource_track(const char *desc,
293                                  struct resource_track *track);
294 extern void init_resource_track(struct resource_track *track);
295 #endif
296 extern int inode_has_valid_blocks(struct ext2_inode *inode);
297 extern void e2fsck_read_inode(e2fsck_t ctx, unsigned long ino,
298                               struct ext2_inode * inode, const char * proc);
299 extern void e2fsck_write_inode(e2fsck_t ctx, unsigned long ino,
300                                struct ext2_inode * inode, const char * proc);
301 #ifdef MTRACE
302 extern void mtrace_print(char *mesg);
303 #endif
304 extern blk_t get_backup_sb(ext2_filsys fs);
305
306 /* unix.c */
307 extern void e2fsck_clear_progbar(e2fsck_t ctx);