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