blob: d64df2c240a644875a626a719160c9283073626f [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * e2fsck.h
Theodore Ts'oefc6f622008-08-27 23:07:54 -04003 *
Theodore Ts'o3839e651997-04-26 13:21:57 +00004 * Copyright (C) 1993, 1994 Theodore Ts'o. This file may be
5 * redistributed under the terms of the GNU Public License.
Theodore Ts'oefc6f622008-08-27 23:07:54 -04006 *
Theodore Ts'o3839e651997-04-26 13:21:57 +00007 */
8
Andreas Dilger56566122006-06-28 11:26:42 -04009#ifndef _E2FSCK_H
10#define _E2FSCK_H
11
Theodore Ts'o3839e651997-04-26 13:21:57 +000012#include <stdio.h>
13#include <string.h>
Theodore Ts'o4c77fe51998-04-30 17:35:59 +000014#ifdef HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000015#include <unistd.h>
Theodore Ts'o4c77fe51998-04-30 17:35:59 +000016#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000017#include <stdlib.h>
Theodore Ts'o54be2cc1998-02-01 12:58:48 +000018#include <time.h>
Theodore Ts'ob2da22d1997-10-20 01:16:35 +000019#ifdef HAVE_SYS_TYPES_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000020#include <sys/types.h>
Theodore Ts'ob2da22d1997-10-20 01:16:35 +000021#endif
22#ifdef HAVE_SYS_TIME_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000023#include <sys/time.h>
Theodore Ts'ob2da22d1997-10-20 01:16:35 +000024#endif
Theodore Ts'o08b21301997-11-03 19:42:40 +000025#ifdef HAVE_SETJMP_H
26#include <setjmp.h>
27#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000028
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000029#if EXT2_FLAT_INCLUDES
30#include "ext2_fs.h"
31#include "ext2fs.h"
Theodore Ts'of3640932003-03-01 19:47:44 -050032#include "blkid.h"
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000033#else
Theodore Ts'o54c637d2001-05-14 11:45:38 +000034#include "ext2fs/ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000035#include "ext2fs/ext2fs.h"
Theodore Ts'of3640932003-03-01 19:47:44 -050036#include "blkid/blkid.h"
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000037#endif
38
Theodore Ts'o1017f652005-12-31 00:00:10 -050039#include "profile.h"
40#include "prof_err.h"
41
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000042#ifdef ENABLE_NLS
43#include <libintl.h>
44#include <locale.h>
45#define _(a) (gettext (a))
46#ifdef gettext_noop
47#define N_(a) gettext_noop (a)
48#else
49#define N_(a) (a)
50#endif
Theodore Ts'o113e4052003-05-17 21:00:46 -040051#define P_(singular, plural, n) (ngettext (singular, plural, n))
Theodore Ts'oa04eba32003-05-03 16:35:17 -040052#ifndef NLS_CAT_NAME
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000053#define NLS_CAT_NAME "e2fsprogs"
Theodore Ts'oa04eba32003-05-03 16:35:17 -040054#endif
55#ifndef LOCALEDIR
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000056#define LOCALEDIR "/usr/share/locale"
Theodore Ts'oa04eba32003-05-03 16:35:17 -040057#endif
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000058#else
59#define _(a) (a)
60#define N_(a) a
Theodore Ts'o113e4052003-05-17 21:00:46 -040061#define P_(singular, plural, n) ((n) == 1 ? (singular) : (plural))
Theodore Ts'o0c4a0722000-02-07 03:11:03 +000062#endif
63
JP Abgralle0ed7402014-03-19 19:08:39 -070064#ifdef __GNUC__
65#define E2FSCK_ATTR(x) __attribute__(x)
66#else
67#define E2FSCK_ATTR(x)
68#endif
69
70#include "quota/mkquota.h"
71
Theodore Ts'o3839e651997-04-26 13:21:57 +000072/*
73 * Exit codes used by fsck-type programs
74 */
75#define FSCK_OK 0 /* No errors */
76#define FSCK_NONDESTRUCT 1 /* File system errors corrected */
77#define FSCK_REBOOT 2 /* System should be rebooted */
78#define FSCK_UNCORRECTED 4 /* File system errors left uncorrected */
79#define FSCK_ERROR 8 /* Operational error */
80#define FSCK_USAGE 16 /* Usage or syntax error */
Theodore Ts'o4cae0452002-07-21 14:14:03 -040081#define FSCK_CANCELED 32 /* Aborted with a signal or ^C */
Theodore Ts'o3839e651997-04-26 13:21:57 +000082#define FSCK_LIBRARY 128 /* Shared library error */
83
84/*
Theodore Ts'of3db3561997-04-26 13:34:30 +000085 * The last ext2fs revision level that this version of e2fsck is able to
86 * support
87 */
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000088#define E2FSCK_CURRENT_REV 1
Theodore Ts'of3db3561997-04-26 13:34:30 +000089
90/*
Theodore Ts'o3839e651997-04-26 13:21:57 +000091 * The directory information structure; stores directory information
92 * collected in earlier passes, to avoid disk i/o in fetching the
Theodore Ts'o21c84b71997-04-29 16:15:03 +000093 * directory information.
Theodore Ts'o3839e651997-04-26 13:21:57 +000094 */
95struct dir_info {
Theodore Ts'o86c627e2001-01-11 15:12:14 +000096 ext2_ino_t ino; /* Inode number */
97 ext2_ino_t dotdot; /* Parent according to '..' */
98 ext2_ino_t parent; /* Parent according to treewalk */
Theodore Ts'o3839e651997-04-26 13:21:57 +000099};
100
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400101
102/*
103 * The indexed directory information structure; stores information for
104 * directories which contain a hash tree index.
105 */
106struct dx_dir_info {
107 ext2_ino_t ino; /* Inode number */
108 int numblocks; /* number of blocks */
109 int hashversion;
Theodore Ts'oad4fa462002-09-30 11:19:19 -0400110 short depth; /* depth of tree */
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400111 struct dx_dirblock_info *dx_block; /* Array of size numblocks */
112};
113
114#define DX_DIRBLOCK_ROOT 1
115#define DX_DIRBLOCK_LEAF 2
116#define DX_DIRBLOCK_NODE 3
117#define DX_DIRBLOCK_CORRUPT 4
118#define DX_DIRBLOCK_CLEARED 8
119
120struct dx_dirblock_info {
121 int type;
JP Abgralle0ed7402014-03-19 19:08:39 -0700122 blk64_t phys;
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400123 int flags;
JP Abgralle0ed7402014-03-19 19:08:39 -0700124 blk64_t parent;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400125 ext2_dirhash_t min_hash;
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400126 ext2_dirhash_t max_hash;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400127 ext2_dirhash_t node_min_hash;
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400128 ext2_dirhash_t node_max_hash;
129};
130
131#define DX_FLAG_REFERENCED 1
132#define DX_FLAG_DUP_REF 2
133#define DX_FLAG_FIRST 4
134#define DX_FLAG_LAST 8
135
JP Abgralle0ed7402014-03-19 19:08:39 -0700136#define RESOURCE_TRACK
137
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000138#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +0000139/*
140 * This structure is used for keeping track of how much resources have
141 * been used for a particular pass of e2fsck.
142 */
143struct resource_track {
144 struct timeval time_start;
145 struct timeval user_start;
146 struct timeval system_start;
147 void *brk_start;
Theodore Ts'o6d96b002007-08-03 20:07:09 -0400148 unsigned long long bytes_read;
149 unsigned long long bytes_written;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000150};
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000151#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000152
153/*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000154 * E2fsck options
Theodore Ts'o3839e651997-04-26 13:21:57 +0000155 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000156#define E2F_OPT_READONLY 0x0001
157#define E2F_OPT_PREEN 0x0002
158#define E2F_OPT_YES 0x0004
159#define E2F_OPT_NO 0x0008
160#define E2F_OPT_TIME 0x0010
161#define E2F_OPT_TIME2 0x0020
162#define E2F_OPT_CHECKBLOCKS 0x0040
163#define E2F_OPT_DEBUG 0x0080
Theodore Ts'od37066a2001-12-21 23:28:54 -0500164#define E2F_OPT_FORCE 0x0100
Theodore Ts'o3ed57c22001-12-24 15:01:59 -0500165#define E2F_OPT_WRITECHECK 0x0200
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400166#define E2F_OPT_COMPRESS_DIRS 0x0400
Theodore Ts'o63b5e352008-08-10 22:43:24 -0400167#define E2F_OPT_FRAGCHECK 0x0800
Bernd Schubert71873b12010-11-13 00:09:07 +0100168#define E2F_OPT_JOURNAL_ONLY 0x1000 /* only replay the journal */
JP Abgralle0ed7402014-03-19 19:08:39 -0700169#define E2F_OPT_DISCARD 0x2000
Theodore Ts'of3db3561997-04-26 13:34:30 +0000170
Theodore Ts'o3839e651997-04-26 13:21:57 +0000171/*
Theodore Ts'o08b21301997-11-03 19:42:40 +0000172 * E2fsck flags
173 */
174#define E2F_FLAG_ABORT 0x0001 /* Abort signaled */
175#define E2F_FLAG_CANCEL 0x0002 /* Cancel signaled */
Theodore Ts'o2df1f6a1998-02-27 05:03:48 +0000176#define E2F_FLAG_SIGNAL_MASK 0x0003
Theodore Ts'o08b21301997-11-03 19:42:40 +0000177#define E2F_FLAG_RESTART 0x0004 /* Restart signaled */
Andreas Dilger6267ee42009-05-28 00:39:49 -0600178#define E2F_FLAG_RESTART_LATER 0x0008 /* Restart after all iterations done */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000179
180#define E2F_FLAG_SETJMP_OK 0x0010 /* Setjmp valid for abort */
181
Theodore Ts'o5596def1999-07-19 15:27:37 +0000182#define E2F_FLAG_PROG_BAR 0x0020 /* Progress bar on screen */
183#define E2F_FLAG_PROG_SUPPRESS 0x0040 /* Progress suspended */
Theodore Ts'o424cd2b2001-05-14 04:06:56 +0000184#define E2F_FLAG_JOURNAL_INODE 0x0080 /* Create a new ext3 journal inode */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400185#define E2F_FLAG_SB_SPECIFIED 0x0100 /* The superblock was explicitly
Theodore Ts'oae6cdcf2001-09-19 15:17:25 -0400186 * specified by the user */
Theodore Ts'o6c7d61d2003-12-11 01:00:21 -0500187#define E2F_FLAG_RESTARTED 0x0200 /* E2fsck has been restarted */
Theodore Ts'oc3ffaf82004-12-24 01:42:22 -0500188#define E2F_FLAG_RESIZE_INODE 0x0400 /* Request to recreate resize inode */
Theodore Ts'od2af1bd2007-06-04 01:14:52 -0400189#define E2F_FLAG_GOT_DEVSIZE 0x0800 /* Device size has been fetched */
Eric Sandeen79cc3362008-10-10 17:14:08 -0500190#define E2F_FLAG_EXITING 0x1000 /* E2fsck exiting due to errors */
Theodore Ts'o177839e2010-05-13 17:36:36 -0400191#define E2F_FLAG_TIME_INSANE 0x2000 /* Time is insane */
192
193#define E2F_RESET_FLAGS (E2F_FLAG_TIME_INSANE)
Theodore Ts'o5596def1999-07-19 15:27:37 +0000194
Theodore Ts'o08b21301997-11-03 19:42:40 +0000195/*
196 * Defines for indicating the e2fsck pass number
197 */
198#define E2F_PASS_1 1
199#define E2F_PASS_2 2
200#define E2F_PASS_3 3
201#define E2F_PASS_4 4
202#define E2F_PASS_5 5
203#define E2F_PASS_1B 6
204
205/*
Theodore Ts'o342d8472001-07-02 11:54:09 -0400206 * Define the extended attribute refcount structure
207 */
208typedef struct ea_refcount *ext2_refcount_t;
209
210/*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000211 * This is the global e2fsck structure.
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000212 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000213typedef struct e2fsck_struct *e2fsck_t;
214
Theodore Ts'o8da6d1a2008-08-14 09:48:07 -0400215#define MAX_EXTENT_DEPTH_COUNT 5
216
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000217struct e2fsck_struct {
218 ext2_filsys fs;
219 const char *program_name;
Theodore Ts'of3640932003-03-01 19:47:44 -0500220 char *filesystem_name;
221 char *device_name;
Theodore Ts'o2e8ca9a2004-11-30 14:07:11 -0500222 char *io_options;
JP Abgralle0ed7402014-03-19 19:08:39 -0700223 FILE *logf;
224 char *log_fn;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000225 int flags; /* E2fsck internal flags */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000226 int options;
Theodore Ts'oa3efe482011-06-16 01:13:42 -0400227 int blocksize; /* blocksize */
JP Abgralle0ed7402014-03-19 19:08:39 -0700228 blk64_t use_superblock; /* sb requested by user */
229 blk64_t superblock; /* sb used to open fs */
Theodore Ts'o59119642010-03-14 19:26:48 -0400230 blk64_t num_blocks; /* Total number of blocks */
JP Abgralle0ed7402014-03-19 19:08:39 -0700231 blk64_t free_blocks;
232 ino_t free_inodes;
Theodore Ts'oee895132002-11-07 16:16:55 -0500233 int mount_flags;
Theodore Ts'of3640932003-03-01 19:47:44 -0500234 blkid_cache blkid; /* blkid cache */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000235
Theodore Ts'o08b21301997-11-03 19:42:40 +0000236#ifdef HAVE_SETJMP_H
237 jmp_buf abort_loc;
238#endif
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000239 unsigned long abort_code;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000240
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000241 int (*progress)(e2fsck_t ctx, int pass, unsigned long cur,
242 unsigned long max);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000243
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000244 ext2fs_inode_bitmap inode_used_map; /* Inodes which are in use */
245 ext2fs_inode_bitmap inode_bad_map; /* Inodes which are bad somehow */
246 ext2fs_inode_bitmap inode_dir_map; /* Inodes which are directories */
247 ext2fs_inode_bitmap inode_bb_map; /* Inodes which are in bad blocks */
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000248 ext2fs_inode_bitmap inode_imagic_map; /* AFS inodes */
249 ext2fs_inode_bitmap inode_reg_map; /* Inodes which are regular files*/
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000250
251 ext2fs_block_bitmap block_found_map; /* Blocks which are in use */
252 ext2fs_block_bitmap block_dup_map; /* Blks referenced more than once */
Theodore Ts'o342d8472001-07-02 11:54:09 -0400253 ext2fs_block_bitmap block_ea_map; /* Blocks which are used by EA's */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000254
255 /*
256 * Inode count arrays
257 */
258 ext2_icount_t inode_count;
259 ext2_icount_t inode_link_info;
260
Theodore Ts'o342d8472001-07-02 11:54:09 -0400261 ext2_refcount_t refcount;
262 ext2_refcount_t refcount_extra;
263
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000264 /*
265 * Array of flags indicating whether an inode bitmap, block
266 * bitmap, or inode table is invalid
267 */
268 int *invalid_inode_bitmap_flag;
269 int *invalid_block_bitmap_flag;
270 int *invalid_inode_table_flag;
271 int invalid_bitmaps; /* There are invalid bitmaps/itable */
272
273 /*
Theodore Ts'o08b21301997-11-03 19:42:40 +0000274 * Block buffer
275 */
276 char *block_buf;
277
278 /*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000279 * For pass1_check_directory and pass1_get_blocks
280 */
Theodore Ts'o86c627e2001-01-11 15:12:14 +0000281 ext2_ino_t stashed_ino;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000282 struct ext2_inode *stashed_inode;
283
284 /*
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400285 * Location of the lost and found directory
286 */
287 ext2_ino_t lost_and_found;
288 int bad_lost_and_found;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400289
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400290 /*
Theodore Ts'o08b21301997-11-03 19:42:40 +0000291 * Directory information
292 */
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400293 struct dir_info_db *dir_info;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000294
295 /*
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400296 * Indexed directory information
297 */
298 int dx_dir_info_count;
299 int dx_dir_info_size;
300 struct dx_dir_info *dx_dir_info;
301
302 /*
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400303 * Directories to hash
304 */
305 ext2_u32_list dirs_to_hash;
306
307 /*
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000308 * Tuning parameters
309 */
310 int process_inode_size;
311 int inode_buffer_blocks;
Theodore Ts'o7dca4c82008-12-23 19:10:43 -0500312 unsigned int htree_slack_percentage;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000313
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400314 /*
315 * ext3 journal support
316 */
317 io_channel journal_io;
Theodore Ts'of3640932003-03-01 19:47:44 -0500318 char *journal_name;
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400319
JP Abgralle0ed7402014-03-19 19:08:39 -0700320 /*
321 * Ext4 quota support
322 */
323 quota_ctx_t qctx;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000324#ifdef RESOURCE_TRACK
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000325 /*
326 * For timing purposes
327 */
328 struct resource_track global_rtrack;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000329#endif
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000330
Theodore Ts'oefac9a11998-05-07 05:02:00 +0000331 /*
332 * How we display the progress update (for unix)
333 */
334 int progress_fd;
335 int progress_pos;
Theodore Ts'o5596def1999-07-19 15:27:37 +0000336 int progress_last_percent;
Theodore Ts'o06012322000-02-12 20:12:43 +0000337 unsigned int progress_last_time;
Theodore Ts'o54a31a32003-08-19 10:08:34 -0400338 int interactive; /* Are we connected directly to a tty? */
339 char start_meta[2], stop_meta[2];
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400340
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000341 /* File counts */
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400342 __u32 fs_directory_count;
343 __u32 fs_regular_count;
344 __u32 fs_blockdev_count;
345 __u32 fs_chardev_count;
346 __u32 fs_links_count;
347 __u32 fs_symlinks_count;
348 __u32 fs_fast_symlinks_count;
349 __u32 fs_fifo_count;
350 __u32 fs_total_count;
351 __u32 fs_badblocks_count;
352 __u32 fs_sockets_count;
353 __u32 fs_ind_count;
354 __u32 fs_dind_count;
355 __u32 fs_tind_count;
356 __u32 fs_fragmented;
Theodore Ts'oce44d8c2008-12-08 21:33:11 -0500357 __u32 fs_fragmented_dir;
Eric Sandeend0ff90d2006-09-12 14:56:15 -0400358 __u32 large_files;
359 __u32 fs_ext_attr_inodes;
360 __u32 fs_ext_attr_blocks;
Theodore Ts'o8da6d1a2008-08-14 09:48:07 -0400361 __u32 extent_depth_count[MAX_EXTENT_DEPTH_COUNT];
Theodore Ts'o43139321998-02-16 22:34:46 +0000362
Theodore Ts'o9f0288d2007-08-03 20:43:37 -0400363 /* misc fields */
Theodore Ts'o1f3ad142005-04-14 14:07:53 -0400364 time_t now;
Theodore Ts'o60702c22007-09-22 20:42:04 -0400365 time_t time_fudge; /* For working around buggy init scripts */
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400366 int ext_attr_ver;
Theodore Ts'o1017f652005-12-31 00:00:10 -0500367 profile_t profile;
Theodore Ts'o9f0288d2007-08-03 20:43:37 -0400368 int blocks_per_page;
Theodore Ts'o890a2f92015-07-14 22:50:51 -0400369 ext2_u32_list encrypted_dirs;
Theodore Ts'o1017f652005-12-31 00:00:10 -0500370
Theodore Ts'o43139321998-02-16 22:34:46 +0000371 /*
372 * For the use of callers of the e2fsck functions; not used by
373 * e2fsck functions themselves.
374 */
375 void *priv_data;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000376};
377
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400378/* Used by the region allocation code */
379typedef __u32 region_addr_t;
380typedef struct region_struct *region_t;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000381
Theodore Ts'of3640932003-03-01 19:47:44 -0500382#ifndef HAVE_STRNLEN
383#define strnlen(str, x) e2fsck_strnlen((str),(x))
384extern int e2fsck_strnlen(const char * s, int count);
385#endif
386
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000387/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000388 * Procedure declarations
389 */
390
Theodore Ts'o08b21301997-11-03 19:42:40 +0000391extern void e2fsck_pass1(e2fsck_t ctx);
392extern void e2fsck_pass1_dupblocks(e2fsck_t ctx, char *block_buf);
393extern void e2fsck_pass2(e2fsck_t ctx);
394extern void e2fsck_pass3(e2fsck_t ctx);
395extern void e2fsck_pass4(e2fsck_t ctx);
396extern void e2fsck_pass5(e2fsck_t ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000397
398/* e2fsck.c */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000399extern errcode_t e2fsck_allocate_context(e2fsck_t *ret);
400extern errcode_t e2fsck_reset_context(e2fsck_t ctx);
401extern void e2fsck_free_context(e2fsck_t ctx);
402extern int e2fsck_run(e2fsck_t ctx);
403
Theodore Ts'o3839e651997-04-26 13:21:57 +0000404
405/* badblock.c */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000406extern void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000407 int replace_bad_blocks);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000408
Theodore Ts'o51d12ce2008-05-23 22:02:05 -0400409/* crc32.c */
410extern __u32 crc32_be(__u32 crc, unsigned char const *p, size_t len);
411
Theodore Ts'o3839e651997-04-26 13:21:57 +0000412/* dirinfo.c */
Theodore Ts'o86c627e2001-01-11 15:12:14 +0000413extern void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000414extern void e2fsck_free_dir_info(e2fsck_t ctx);
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000415extern int e2fsck_get_num_dirinfo(e2fsck_t ctx);
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400416extern struct dir_info_iter *e2fsck_dir_info_iter_begin(e2fsck_t ctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400417extern struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx,
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400418 struct dir_info_iter *);
419extern void e2fsck_dir_info_iter_end(e2fsck_t ctx, struct dir_info_iter *);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400420extern int e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino,
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400421 ext2_ino_t parent);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400422extern int e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino,
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400423 ext2_ino_t dotdot);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400424extern int e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino,
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400425 ext2_ino_t *parent);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400426extern int e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino,
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400427 ext2_ino_t *dotdot);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000428
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400429/* dx_dirinfo.c */
430extern void e2fsck_add_dx_dir(e2fsck_t ctx, ext2_ino_t ino, int num_blocks);
431extern struct dx_dir_info *e2fsck_get_dx_dir_info(e2fsck_t ctx, ext2_ino_t ino);
432extern void e2fsck_free_dx_dir_info(e2fsck_t ctx);
433extern int e2fsck_get_num_dx_dirinfo(e2fsck_t ctx);
434extern struct dx_dir_info *e2fsck_dx_dir_info_iter(e2fsck_t ctx, int *control);
435
Theodore Ts'o342d8472001-07-02 11:54:09 -0400436/* ea_refcount.c */
437extern errcode_t ea_refcount_create(int size, ext2_refcount_t *ret);
438extern void ea_refcount_free(ext2_refcount_t refcount);
JP Abgralle0ed7402014-03-19 19:08:39 -0700439extern errcode_t ea_refcount_fetch(ext2_refcount_t refcount, blk64_t blk, int *ret);
Theodore Ts'o342d8472001-07-02 11:54:09 -0400440extern errcode_t ea_refcount_increment(ext2_refcount_t refcount,
JP Abgralle0ed7402014-03-19 19:08:39 -0700441 blk64_t blk, int *ret);
Theodore Ts'o342d8472001-07-02 11:54:09 -0400442extern errcode_t ea_refcount_decrement(ext2_refcount_t refcount,
JP Abgralle0ed7402014-03-19 19:08:39 -0700443 blk64_t blk, int *ret);
Theodore Ts'o342d8472001-07-02 11:54:09 -0400444extern errcode_t ea_refcount_store(ext2_refcount_t refcount,
JP Abgralle0ed7402014-03-19 19:08:39 -0700445 blk64_t blk, int count);
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500446extern blk_t ext2fs_get_refcount_size(ext2_refcount_t refcount);
Theodore Ts'o342d8472001-07-02 11:54:09 -0400447extern void ea_refcount_intr_begin(ext2_refcount_t refcount);
JP Abgralle0ed7402014-03-19 19:08:39 -0700448extern blk64_t ea_refcount_intr_next(ext2_refcount_t refcount, int *ret);
Theodore Ts'o342d8472001-07-02 11:54:09 -0400449
Theodore Ts'o3839e651997-04-26 13:21:57 +0000450/* ehandler.c */
451extern const char *ehandler_operation(const char *op);
452extern void ehandler_init(io_channel channel);
453
Theodore Ts'o17390c02000-07-07 04:13:21 +0000454/* journal.c */
JP Abgralle0ed7402014-03-19 19:08:39 -0700455extern errcode_t e2fsck_check_ext3_journal(e2fsck_t ctx);
456extern errcode_t e2fsck_run_ext3_journal(e2fsck_t ctx);
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400457extern void e2fsck_move_ext3_journal(e2fsck_t ctx);
Theodore Ts'ob1c52b22006-03-10 15:25:59 -0500458extern int e2fsck_fix_ext3_journal_hint(e2fsck_t ctx);
Theodore Ts'o17390c02000-07-07 04:13:21 +0000459
JP Abgralle0ed7402014-03-19 19:08:39 -0700460/* logfile.c */
461extern void set_up_logging(e2fsck_t ctx);
462
463/* quota.c */
464extern void e2fsck_hide_quota(e2fsck_t ctx);
465
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000466/* pass1.c */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400467extern void e2fsck_setup_tdb_icount(e2fsck_t ctx, int flags,
Theodore Ts'o34b9f792007-04-06 18:43:11 -0400468 ext2_icount_t *ret);
JP Abgralle0ed7402014-03-19 19:08:39 -0700469extern void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts);
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400470extern int e2fsck_pass1_check_device_inode(ext2_filsys fs,
471 struct ext2_inode *inode);
Theodore Ts'o7cadc572008-03-13 23:05:00 -0400472extern int e2fsck_pass1_check_symlink(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'obcf9c5d2002-05-21 09:14:17 -0400473 struct ext2_inode *inode, char *buf);
Theodore Ts'oe3df15a2007-09-15 14:10:47 -0400474extern void e2fsck_clear_inode(e2fsck_t ctx, ext2_ino_t ino,
475 struct ext2_inode *inode, int restart_flag,
476 const char *source);
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000477
478/* pass2.c */
Theodore Ts'obcf9c5d2002-05-21 09:14:17 -0400479extern int e2fsck_process_bad_inode(e2fsck_t ctx, ext2_ino_t dir,
480 ext2_ino_t ino, char *buf);
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000481
482/* pass3.c */
Theodore Ts'o86c627e2001-01-11 15:12:14 +0000483extern int e2fsck_reconnect_file(e2fsck_t ctx, ext2_ino_t inode);
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400484extern errcode_t e2fsck_expand_directory(e2fsck_t ctx, ext2_ino_t dir,
485 int num, int gauranteed_size);
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400486extern ext2_ino_t e2fsck_get_lost_and_found(e2fsck_t ctx, int fix);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400487extern errcode_t e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino,
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500488 int adj);
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400489
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000490
Theodore Ts'o55fd07e2001-07-19 16:31:25 -0400491/* region.c */
492extern region_t region_create(region_addr_t min, region_addr_t max);
493extern void region_free(region_t region);
494extern int region_allocate(region_t region, region_addr_t start, int n);
495
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400496/* rehash.c */
497errcode_t e2fsck_rehash_dir(e2fsck_t ctx, ext2_ino_t ino);
498void e2fsck_rehash_directories(e2fsck_t ctx);
499
JP Abgralle0ed7402014-03-19 19:08:39 -0700500/* sigcatcher.c */
501void sigcatcher_setup(void);
502
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000503/* super.c */
504void check_super_block(e2fsck_t ctx);
Theodore Ts'o0c37f452007-10-01 09:18:54 -0400505int check_backup_super_block(e2fsck_t ctx);
Theodore Ts'o69d0edf2009-04-23 00:39:06 -0400506void check_resize_inode(e2fsck_t ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000507
Theodore Ts'o3839e651997-04-26 13:21:57 +0000508/* util.c */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000509extern void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned int size,
510 const char *description);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000511extern int ask(e2fsck_t ctx, const char * string, int def);
JP Abgralle0ed7402014-03-19 19:08:39 -0700512extern int ask_yn(e2fsck_t ctx, const char * string, int def);
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000513extern void fatal_error(e2fsck_t ctx, const char * fmt_string);
JP Abgralle0ed7402014-03-19 19:08:39 -0700514extern void log_out(e2fsck_t ctx, const char *fmt, ...)
515 E2FSCK_ATTR((format(printf, 2, 3)));
516extern void log_err(e2fsck_t ctx, const char *fmt, ...)
517 E2FSCK_ATTR((format(printf, 2, 3)));
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000518extern void e2fsck_read_bitmaps(e2fsck_t ctx);
519extern void e2fsck_write_bitmaps(e2fsck_t ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000520extern void preenhalt(e2fsck_t ctx);
Theodore Ts'of3640932003-03-01 19:47:44 -0500521extern char *string_copy(e2fsck_t ctx, const char *str, int len);
Jose R. Santos49a73602007-10-21 21:04:03 -0500522extern errcode_t e2fsck_zero_blocks(ext2_filsys fs, blk_t blk, int num,
523 blk_t *ret_blk, int *ret_count);
Theodore Ts'o80875db2008-10-12 23:09:26 -0400524extern int fs_proc_check(const char *fs_name);
525extern int check_for_modules(const char *fs_name);
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000526#ifdef RESOURCE_TRACK
Ken Chen9facd072009-05-28 09:55:10 -0400527extern void print_resource_track(e2fsck_t ctx,
528 const char *desc,
Theodore Ts'o6d96b002007-08-03 20:07:09 -0400529 struct resource_track *track,
530 io_channel channel);
531extern void init_resource_track(struct resource_track *track,
532 io_channel channel);
Ken Chen9facd072009-05-28 09:55:10 -0400533#else
534#define print_resource_track(ctx, desc, track, channel) do { } while (0)
535#define init_resource_track(track, channel) do { } while (0)
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000536#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000537extern int inode_has_valid_blocks(struct ext2_inode *inode);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000538extern void e2fsck_read_inode(e2fsck_t ctx, unsigned long ino,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000539 struct ext2_inode * inode, const char * proc);
Andreas Dilgerfefaef32008-02-02 01:16:32 -0700540extern void e2fsck_read_inode_full(e2fsck_t ctx, unsigned long ino,
541 struct ext2_inode *inode,
542 const int bufsize, const char *proc);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000543extern void e2fsck_write_inode(e2fsck_t ctx, unsigned long ino,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000544 struct ext2_inode * inode, const char * proc);
Matthias Andree9e0cbba2006-05-30 16:29:15 +0200545extern void e2fsck_write_inode_full(e2fsck_t ctx, unsigned long ino,
546 struct ext2_inode * inode, int bufsize,
547 const char *proc);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000548#ifdef MTRACE
549extern void mtrace_print(char *mesg);
550#endif
JP Abgralle0ed7402014-03-19 19:08:39 -0700551extern blk64_t get_backup_sb(e2fsck_t ctx, ext2_filsys fs,
Theodore Ts'of1a17612001-12-23 22:27:52 -0500552 const char *name, io_manager manager);
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000553extern int ext2_file_type(unsigned int mode);
Theodore Ts'ob0258cb2009-04-22 15:09:41 -0400554extern int write_all(int fd, char *buf, size_t count);
JP Abgralle0ed7402014-03-19 19:08:39 -0700555void dump_mmp_msg(struct mmp_struct *mmp, const char *msg);
556errcode_t e2fsck_mmp_update(ext2_filsys fs);
557
558extern void e2fsck_set_bitmap_type(ext2_filsys fs,
559 unsigned int default_type,
560 const char *profile_name,
561 unsigned int *old_type);
562extern errcode_t e2fsck_allocate_inode_bitmap(ext2_filsys fs,
563 const char *descr,
564 int default_type,
565 const char *profile_name,
566 ext2fs_inode_bitmap *ret);
567extern errcode_t e2fsck_allocate_block_bitmap(ext2_filsys fs,
568 const char *descr,
569 int default_type,
570 const char *profile_name,
571 ext2fs_block_bitmap *ret);
572extern errcode_t e2fsck_allocate_subcluster_bitmap(ext2_filsys fs,
573 const char *descr,
574 int default_type,
575 const char *profile_name,
576 ext2fs_block_bitmap *ret);
Theodore Ts'o830b44f2011-12-16 14:55:50 -0500577
Theodore Ts'o5596def1999-07-19 15:27:37 +0000578/* unix.c */
579extern void e2fsck_clear_progbar(e2fsck_t ctx);
Theodore Ts'o520ead32003-04-19 13:48:27 -0400580extern int e2fsck_simple_progress(e2fsck_t ctx, const char *label,
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500581 float percent, unsigned int dpynum);
Andreas Dilger56566122006-06-28 11:26:42 -0400582#endif /* _E2FSCK_H */