Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 1 | /* |
| 2 | * e2fsck.h |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 3 | * |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 4 | * Copyright (C) 1993, 1994 Theodore Ts'o. This file may be |
| 5 | * redistributed under the terms of the GNU Public License. |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 6 | * |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Andreas Dilger | 5656612 | 2006-06-28 11:26:42 -0400 | [diff] [blame] | 9 | #ifndef _E2FSCK_H |
| 10 | #define _E2FSCK_H |
| 11 | |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 12 | #include <stdio.h> |
| 13 | #include <string.h> |
Theodore Ts'o | 4c77fe5 | 1998-04-30 17:35:59 +0000 | [diff] [blame] | 14 | #ifdef HAVE_UNISTD_H |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 15 | #include <unistd.h> |
Theodore Ts'o | 4c77fe5 | 1998-04-30 17:35:59 +0000 | [diff] [blame] | 16 | #endif |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 17 | #include <stdlib.h> |
Theodore Ts'o | 54be2cc | 1998-02-01 12:58:48 +0000 | [diff] [blame] | 18 | #include <time.h> |
Theodore Ts'o | b2da22d | 1997-10-20 01:16:35 +0000 | [diff] [blame] | 19 | #ifdef HAVE_SYS_TYPES_H |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 20 | #include <sys/types.h> |
Theodore Ts'o | b2da22d | 1997-10-20 01:16:35 +0000 | [diff] [blame] | 21 | #endif |
| 22 | #ifdef HAVE_SYS_TIME_H |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 23 | #include <sys/time.h> |
Theodore Ts'o | b2da22d | 1997-10-20 01:16:35 +0000 | [diff] [blame] | 24 | #endif |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 25 | #ifdef HAVE_SETJMP_H |
| 26 | #include <setjmp.h> |
| 27 | #endif |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 28 | |
Theodore Ts'o | 54dc7ca | 1998-01-19 14:50:49 +0000 | [diff] [blame] | 29 | #if EXT2_FLAT_INCLUDES |
| 30 | #include "ext2_fs.h" |
| 31 | #include "ext2fs.h" |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 32 | #include "blkid.h" |
Theodore Ts'o | 54dc7ca | 1998-01-19 14:50:49 +0000 | [diff] [blame] | 33 | #else |
Theodore Ts'o | 54c637d | 2001-05-14 11:45:38 +0000 | [diff] [blame] | 34 | #include "ext2fs/ext2_fs.h" |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 35 | #include "ext2fs/ext2fs.h" |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 36 | #include "blkid/blkid.h" |
Theodore Ts'o | 54dc7ca | 1998-01-19 14:50:49 +0000 | [diff] [blame] | 37 | #endif |
| 38 | |
Theodore Ts'o | 1017f65 | 2005-12-31 00:00:10 -0500 | [diff] [blame] | 39 | #include "profile.h" |
| 40 | #include "prof_err.h" |
| 41 | |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 42 | #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'o | 113e405 | 2003-05-17 21:00:46 -0400 | [diff] [blame] | 51 | #define P_(singular, plural, n) (ngettext (singular, plural, n)) |
Theodore Ts'o | a04eba3 | 2003-05-03 16:35:17 -0400 | [diff] [blame] | 52 | #ifndef NLS_CAT_NAME |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 53 | #define NLS_CAT_NAME "e2fsprogs" |
Theodore Ts'o | a04eba3 | 2003-05-03 16:35:17 -0400 | [diff] [blame] | 54 | #endif |
| 55 | #ifndef LOCALEDIR |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 56 | #define LOCALEDIR "/usr/share/locale" |
Theodore Ts'o | a04eba3 | 2003-05-03 16:35:17 -0400 | [diff] [blame] | 57 | #endif |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 58 | #else |
| 59 | #define _(a) (a) |
| 60 | #define N_(a) a |
Theodore Ts'o | 113e405 | 2003-05-17 21:00:46 -0400 | [diff] [blame] | 61 | #define P_(singular, plural, n) ((n) == 1 ? (singular) : (plural)) |
Theodore Ts'o | 0c4a072 | 2000-02-07 03:11:03 +0000 | [diff] [blame] | 62 | #endif |
| 63 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 64 | #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'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 72 | /* |
| 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'o | 4cae045 | 2002-07-21 14:14:03 -0400 | [diff] [blame] | 81 | #define FSCK_CANCELED 32 /* Aborted with a signal or ^C */ |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 82 | #define FSCK_LIBRARY 128 /* Shared library error */ |
| 83 | |
| 84 | /* |
Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 85 | * The last ext2fs revision level that this version of e2fsck is able to |
| 86 | * support |
| 87 | */ |
Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 88 | #define E2FSCK_CURRENT_REV 1 |
Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 89 | |
| 90 | /* |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 91 | * The directory information structure; stores directory information |
| 92 | * collected in earlier passes, to avoid disk i/o in fetching the |
Theodore Ts'o | 21c84b7 | 1997-04-29 16:15:03 +0000 | [diff] [blame] | 93 | * directory information. |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 94 | */ |
| 95 | struct dir_info { |
Theodore Ts'o | 86c627e | 2001-01-11 15:12:14 +0000 | [diff] [blame] | 96 | 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'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 101 | |
| 102 | /* |
| 103 | * The indexed directory information structure; stores information for |
| 104 | * directories which contain a hash tree index. |
| 105 | */ |
| 106 | struct dx_dir_info { |
| 107 | ext2_ino_t ino; /* Inode number */ |
| 108 | int numblocks; /* number of blocks */ |
| 109 | int hashversion; |
Theodore Ts'o | ad4fa46 | 2002-09-30 11:19:19 -0400 | [diff] [blame] | 110 | short depth; /* depth of tree */ |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 111 | 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 | |
| 120 | struct dx_dirblock_info { |
| 121 | int type; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 122 | blk64_t phys; |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 123 | int flags; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 124 | blk64_t parent; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 125 | ext2_dirhash_t min_hash; |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 126 | ext2_dirhash_t max_hash; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 127 | ext2_dirhash_t node_min_hash; |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 128 | 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 Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 136 | #define RESOURCE_TRACK |
| 137 | |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 138 | #ifdef RESOURCE_TRACK |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 139 | /* |
| 140 | * This structure is used for keeping track of how much resources have |
| 141 | * been used for a particular pass of e2fsck. |
| 142 | */ |
| 143 | struct resource_track { |
| 144 | struct timeval time_start; |
| 145 | struct timeval user_start; |
| 146 | struct timeval system_start; |
| 147 | void *brk_start; |
Theodore Ts'o | 6d96b00 | 2007-08-03 20:07:09 -0400 | [diff] [blame] | 148 | unsigned long long bytes_read; |
| 149 | unsigned long long bytes_written; |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 150 | }; |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 151 | #endif |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 152 | |
| 153 | /* |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 154 | * E2fsck options |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 155 | */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 156 | #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'o | d37066a | 2001-12-21 23:28:54 -0500 | [diff] [blame] | 164 | #define E2F_OPT_FORCE 0x0100 |
Theodore Ts'o | 3ed57c2 | 2001-12-24 15:01:59 -0500 | [diff] [blame] | 165 | #define E2F_OPT_WRITECHECK 0x0200 |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 166 | #define E2F_OPT_COMPRESS_DIRS 0x0400 |
Theodore Ts'o | 63b5e35 | 2008-08-10 22:43:24 -0400 | [diff] [blame] | 167 | #define E2F_OPT_FRAGCHECK 0x0800 |
Bernd Schubert | 71873b1 | 2010-11-13 00:09:07 +0100 | [diff] [blame] | 168 | #define E2F_OPT_JOURNAL_ONLY 0x1000 /* only replay the journal */ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 169 | #define E2F_OPT_DISCARD 0x2000 |
Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 170 | |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 171 | /* |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 172 | * E2fsck flags |
| 173 | */ |
| 174 | #define E2F_FLAG_ABORT 0x0001 /* Abort signaled */ |
| 175 | #define E2F_FLAG_CANCEL 0x0002 /* Cancel signaled */ |
Theodore Ts'o | 2df1f6a | 1998-02-27 05:03:48 +0000 | [diff] [blame] | 176 | #define E2F_FLAG_SIGNAL_MASK 0x0003 |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 177 | #define E2F_FLAG_RESTART 0x0004 /* Restart signaled */ |
Andreas Dilger | 6267ee4 | 2009-05-28 00:39:49 -0600 | [diff] [blame] | 178 | #define E2F_FLAG_RESTART_LATER 0x0008 /* Restart after all iterations done */ |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 179 | |
| 180 | #define E2F_FLAG_SETJMP_OK 0x0010 /* Setjmp valid for abort */ |
| 181 | |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 182 | #define E2F_FLAG_PROG_BAR 0x0020 /* Progress bar on screen */ |
| 183 | #define E2F_FLAG_PROG_SUPPRESS 0x0040 /* Progress suspended */ |
Theodore Ts'o | 424cd2b | 2001-05-14 04:06:56 +0000 | [diff] [blame] | 184 | #define E2F_FLAG_JOURNAL_INODE 0x0080 /* Create a new ext3 journal inode */ |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 185 | #define E2F_FLAG_SB_SPECIFIED 0x0100 /* The superblock was explicitly |
Theodore Ts'o | ae6cdcf | 2001-09-19 15:17:25 -0400 | [diff] [blame] | 186 | * specified by the user */ |
Theodore Ts'o | 6c7d61d | 2003-12-11 01:00:21 -0500 | [diff] [blame] | 187 | #define E2F_FLAG_RESTARTED 0x0200 /* E2fsck has been restarted */ |
Theodore Ts'o | c3ffaf8 | 2004-12-24 01:42:22 -0500 | [diff] [blame] | 188 | #define E2F_FLAG_RESIZE_INODE 0x0400 /* Request to recreate resize inode */ |
Theodore Ts'o | d2af1bd | 2007-06-04 01:14:52 -0400 | [diff] [blame] | 189 | #define E2F_FLAG_GOT_DEVSIZE 0x0800 /* Device size has been fetched */ |
Eric Sandeen | 79cc336 | 2008-10-10 17:14:08 -0500 | [diff] [blame] | 190 | #define E2F_FLAG_EXITING 0x1000 /* E2fsck exiting due to errors */ |
Theodore Ts'o | 177839e | 2010-05-13 17:36:36 -0400 | [diff] [blame] | 191 | #define E2F_FLAG_TIME_INSANE 0x2000 /* Time is insane */ |
| 192 | |
| 193 | #define E2F_RESET_FLAGS (E2F_FLAG_TIME_INSANE) |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 194 | |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 195 | /* |
| 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'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 206 | * Define the extended attribute refcount structure |
| 207 | */ |
| 208 | typedef struct ea_refcount *ext2_refcount_t; |
| 209 | |
| 210 | /* |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 211 | * This is the global e2fsck structure. |
Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 212 | */ |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 213 | typedef struct e2fsck_struct *e2fsck_t; |
| 214 | |
Theodore Ts'o | 8da6d1a | 2008-08-14 09:48:07 -0400 | [diff] [blame] | 215 | #define MAX_EXTENT_DEPTH_COUNT 5 |
| 216 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 217 | struct e2fsck_struct { |
| 218 | ext2_filsys fs; |
| 219 | const char *program_name; |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 220 | char *filesystem_name; |
| 221 | char *device_name; |
Theodore Ts'o | 2e8ca9a | 2004-11-30 14:07:11 -0500 | [diff] [blame] | 222 | char *io_options; |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 223 | FILE *logf; |
| 224 | char *log_fn; |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 225 | int flags; /* E2fsck internal flags */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 226 | int options; |
Theodore Ts'o | a3efe48 | 2011-06-16 01:13:42 -0400 | [diff] [blame] | 227 | int blocksize; /* blocksize */ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 228 | blk64_t use_superblock; /* sb requested by user */ |
| 229 | blk64_t superblock; /* sb used to open fs */ |
Theodore Ts'o | 5911964 | 2010-03-14 19:26:48 -0400 | [diff] [blame] | 230 | blk64_t num_blocks; /* Total number of blocks */ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 231 | blk64_t free_blocks; |
| 232 | ino_t free_inodes; |
Theodore Ts'o | ee89513 | 2002-11-07 16:16:55 -0500 | [diff] [blame] | 233 | int mount_flags; |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 234 | blkid_cache blkid; /* blkid cache */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 235 | |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 236 | #ifdef HAVE_SETJMP_H |
| 237 | jmp_buf abort_loc; |
| 238 | #endif |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 239 | unsigned long abort_code; |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 240 | |
Theodore Ts'o | a02ce9d | 1998-02-24 20:22:23 +0000 | [diff] [blame] | 241 | int (*progress)(e2fsck_t ctx, int pass, unsigned long cur, |
| 242 | unsigned long max); |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 243 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 244 | 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'o | aa4115a | 1999-10-21 19:33:18 +0000 | [diff] [blame] | 248 | ext2fs_inode_bitmap inode_imagic_map; /* AFS inodes */ |
| 249 | ext2fs_inode_bitmap inode_reg_map; /* Inodes which are regular files*/ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 250 | |
| 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'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 253 | ext2fs_block_bitmap block_ea_map; /* Blocks which are used by EA's */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 254 | |
| 255 | /* |
| 256 | * Inode count arrays |
| 257 | */ |
| 258 | ext2_icount_t inode_count; |
| 259 | ext2_icount_t inode_link_info; |
| 260 | |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 261 | ext2_refcount_t refcount; |
| 262 | ext2_refcount_t refcount_extra; |
| 263 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 264 | /* |
| 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'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 274 | * Block buffer |
| 275 | */ |
| 276 | char *block_buf; |
| 277 | |
| 278 | /* |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 279 | * For pass1_check_directory and pass1_get_blocks |
| 280 | */ |
Theodore Ts'o | 86c627e | 2001-01-11 15:12:14 +0000 | [diff] [blame] | 281 | ext2_ino_t stashed_ino; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 282 | struct ext2_inode *stashed_inode; |
| 283 | |
| 284 | /* |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 285 | * Location of the lost and found directory |
| 286 | */ |
| 287 | ext2_ino_t lost_and_found; |
| 288 | int bad_lost_and_found; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 289 | |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 290 | /* |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 291 | * Directory information |
| 292 | */ |
Theodore Ts'o | 28db82a | 2007-04-04 22:33:31 -0400 | [diff] [blame] | 293 | struct dir_info_db *dir_info; |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 294 | |
| 295 | /* |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 296 | * 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'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 303 | * Directories to hash |
| 304 | */ |
| 305 | ext2_u32_list dirs_to_hash; |
| 306 | |
| 307 | /* |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 308 | * Tuning parameters |
| 309 | */ |
| 310 | int process_inode_size; |
| 311 | int inode_buffer_blocks; |
Theodore Ts'o | 7dca4c8 | 2008-12-23 19:10:43 -0500 | [diff] [blame] | 312 | unsigned int htree_slack_percentage; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 313 | |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 314 | /* |
| 315 | * ext3 journal support |
| 316 | */ |
| 317 | io_channel journal_io; |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 318 | char *journal_name; |
Theodore Ts'o | adee8d7 | 2001-07-23 00:17:49 -0400 | [diff] [blame] | 319 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 320 | /* |
| 321 | * Ext4 quota support |
| 322 | */ |
| 323 | quota_ctx_t qctx; |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 324 | #ifdef RESOURCE_TRACK |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 325 | /* |
| 326 | * For timing purposes |
| 327 | */ |
| 328 | struct resource_track global_rtrack; |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 329 | #endif |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 330 | |
Theodore Ts'o | efac9a1 | 1998-05-07 05:02:00 +0000 | [diff] [blame] | 331 | /* |
| 332 | * How we display the progress update (for unix) |
| 333 | */ |
| 334 | int progress_fd; |
| 335 | int progress_pos; |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 336 | int progress_last_percent; |
Theodore Ts'o | 0601232 | 2000-02-12 20:12:43 +0000 | [diff] [blame] | 337 | unsigned int progress_last_time; |
Theodore Ts'o | 54a31a3 | 2003-08-19 10:08:34 -0400 | [diff] [blame] | 338 | int interactive; /* Are we connected directly to a tty? */ |
| 339 | char start_meta[2], stop_meta[2]; |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 340 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 341 | /* File counts */ |
Eric Sandeen | d0ff90d | 2006-09-12 14:56:15 -0400 | [diff] [blame] | 342 | __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'o | ce44d8c | 2008-12-08 21:33:11 -0500 | [diff] [blame] | 357 | __u32 fs_fragmented_dir; |
Eric Sandeen | d0ff90d | 2006-09-12 14:56:15 -0400 | [diff] [blame] | 358 | __u32 large_files; |
| 359 | __u32 fs_ext_attr_inodes; |
| 360 | __u32 fs_ext_attr_blocks; |
Theodore Ts'o | 8da6d1a | 2008-08-14 09:48:07 -0400 | [diff] [blame] | 361 | __u32 extent_depth_count[MAX_EXTENT_DEPTH_COUNT]; |
Theodore Ts'o | 4313932 | 1998-02-16 22:34:46 +0000 | [diff] [blame] | 362 | |
Theodore Ts'o | 9f0288d | 2007-08-03 20:43:37 -0400 | [diff] [blame] | 363 | /* misc fields */ |
Theodore Ts'o | 1f3ad14 | 2005-04-14 14:07:53 -0400 | [diff] [blame] | 364 | time_t now; |
Theodore Ts'o | 60702c2 | 2007-09-22 20:42:04 -0400 | [diff] [blame] | 365 | time_t time_fudge; /* For working around buggy init scripts */ |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 366 | int ext_attr_ver; |
Theodore Ts'o | 1017f65 | 2005-12-31 00:00:10 -0500 | [diff] [blame] | 367 | profile_t profile; |
Theodore Ts'o | 9f0288d | 2007-08-03 20:43:37 -0400 | [diff] [blame] | 368 | int blocks_per_page; |
Theodore Ts'o | 890a2f9 | 2015-07-14 22:50:51 -0400 | [diff] [blame] | 369 | ext2_u32_list encrypted_dirs; |
Theodore Ts'o | 1017f65 | 2005-12-31 00:00:10 -0500 | [diff] [blame] | 370 | |
Theodore Ts'o | 4313932 | 1998-02-16 22:34:46 +0000 | [diff] [blame] | 371 | /* |
| 372 | * For the use of callers of the e2fsck functions; not used by |
| 373 | * e2fsck functions themselves. |
| 374 | */ |
| 375 | void *priv_data; |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 376 | }; |
| 377 | |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 378 | /* Used by the region allocation code */ |
| 379 | typedef __u32 region_addr_t; |
| 380 | typedef struct region_struct *region_t; |
Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 381 | |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 382 | #ifndef HAVE_STRNLEN |
| 383 | #define strnlen(str, x) e2fsck_strnlen((str),(x)) |
| 384 | extern int e2fsck_strnlen(const char * s, int count); |
| 385 | #endif |
| 386 | |
Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 387 | /* |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 388 | * Procedure declarations |
| 389 | */ |
| 390 | |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 391 | extern void e2fsck_pass1(e2fsck_t ctx); |
| 392 | extern void e2fsck_pass1_dupblocks(e2fsck_t ctx, char *block_buf); |
| 393 | extern void e2fsck_pass2(e2fsck_t ctx); |
| 394 | extern void e2fsck_pass3(e2fsck_t ctx); |
| 395 | extern void e2fsck_pass4(e2fsck_t ctx); |
| 396 | extern void e2fsck_pass5(e2fsck_t ctx); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 397 | |
| 398 | /* e2fsck.c */ |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 399 | extern errcode_t e2fsck_allocate_context(e2fsck_t *ret); |
| 400 | extern errcode_t e2fsck_reset_context(e2fsck_t ctx); |
| 401 | extern void e2fsck_free_context(e2fsck_t ctx); |
| 402 | extern int e2fsck_run(e2fsck_t ctx); |
| 403 | |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 404 | |
| 405 | /* badblock.c */ |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 406 | extern void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file, |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 407 | int replace_bad_blocks); |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 408 | |
Theodore Ts'o | 51d12ce | 2008-05-23 22:02:05 -0400 | [diff] [blame] | 409 | /* crc32.c */ |
| 410 | extern __u32 crc32_be(__u32 crc, unsigned char const *p, size_t len); |
| 411 | |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 412 | /* dirinfo.c */ |
Theodore Ts'o | 86c627e | 2001-01-11 15:12:14 +0000 | [diff] [blame] | 413 | extern void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent); |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 414 | extern void e2fsck_free_dir_info(e2fsck_t ctx); |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 415 | extern int e2fsck_get_num_dirinfo(e2fsck_t ctx); |
Theodore Ts'o | 28db82a | 2007-04-04 22:33:31 -0400 | [diff] [blame] | 416 | extern struct dir_info_iter *e2fsck_dir_info_iter_begin(e2fsck_t ctx); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 417 | extern struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx, |
Theodore Ts'o | 28db82a | 2007-04-04 22:33:31 -0400 | [diff] [blame] | 418 | struct dir_info_iter *); |
| 419 | extern void e2fsck_dir_info_iter_end(e2fsck_t ctx, struct dir_info_iter *); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 420 | extern int e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino, |
Theodore Ts'o | 28db82a | 2007-04-04 22:33:31 -0400 | [diff] [blame] | 421 | ext2_ino_t parent); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 422 | extern int e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino, |
Theodore Ts'o | 28db82a | 2007-04-04 22:33:31 -0400 | [diff] [blame] | 423 | ext2_ino_t dotdot); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 424 | extern int e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino, |
Theodore Ts'o | 28db82a | 2007-04-04 22:33:31 -0400 | [diff] [blame] | 425 | ext2_ino_t *parent); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 426 | extern int e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino, |
Theodore Ts'o | 28db82a | 2007-04-04 22:33:31 -0400 | [diff] [blame] | 427 | ext2_ino_t *dotdot); |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 428 | |
Theodore Ts'o | 8fdc998 | 2002-06-25 23:26:34 -0400 | [diff] [blame] | 429 | /* dx_dirinfo.c */ |
| 430 | extern void e2fsck_add_dx_dir(e2fsck_t ctx, ext2_ino_t ino, int num_blocks); |
| 431 | extern struct dx_dir_info *e2fsck_get_dx_dir_info(e2fsck_t ctx, ext2_ino_t ino); |
| 432 | extern void e2fsck_free_dx_dir_info(e2fsck_t ctx); |
| 433 | extern int e2fsck_get_num_dx_dirinfo(e2fsck_t ctx); |
| 434 | extern struct dx_dir_info *e2fsck_dx_dir_info_iter(e2fsck_t ctx, int *control); |
| 435 | |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 436 | /* ea_refcount.c */ |
| 437 | extern errcode_t ea_refcount_create(int size, ext2_refcount_t *ret); |
| 438 | extern void ea_refcount_free(ext2_refcount_t refcount); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 439 | extern errcode_t ea_refcount_fetch(ext2_refcount_t refcount, blk64_t blk, int *ret); |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 440 | extern errcode_t ea_refcount_increment(ext2_refcount_t refcount, |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 441 | blk64_t blk, int *ret); |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 442 | extern errcode_t ea_refcount_decrement(ext2_refcount_t refcount, |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 443 | blk64_t blk, int *ret); |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 444 | extern errcode_t ea_refcount_store(ext2_refcount_t refcount, |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 445 | blk64_t blk, int count); |
Theodore Ts'o | 4ea7bd0 | 2001-12-16 23:23:37 -0500 | [diff] [blame] | 446 | extern blk_t ext2fs_get_refcount_size(ext2_refcount_t refcount); |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 447 | extern void ea_refcount_intr_begin(ext2_refcount_t refcount); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 448 | extern blk64_t ea_refcount_intr_next(ext2_refcount_t refcount, int *ret); |
Theodore Ts'o | 342d847 | 2001-07-02 11:54:09 -0400 | [diff] [blame] | 449 | |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 450 | /* ehandler.c */ |
| 451 | extern const char *ehandler_operation(const char *op); |
| 452 | extern void ehandler_init(io_channel channel); |
| 453 | |
Theodore Ts'o | 17390c0 | 2000-07-07 04:13:21 +0000 | [diff] [blame] | 454 | /* journal.c */ |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 455 | extern errcode_t e2fsck_check_ext3_journal(e2fsck_t ctx); |
| 456 | extern errcode_t e2fsck_run_ext3_journal(e2fsck_t ctx); |
Theodore Ts'o | 773fd8a | 2001-10-06 21:26:27 -0400 | [diff] [blame] | 457 | extern void e2fsck_move_ext3_journal(e2fsck_t ctx); |
Theodore Ts'o | b1c52b2 | 2006-03-10 15:25:59 -0500 | [diff] [blame] | 458 | extern int e2fsck_fix_ext3_journal_hint(e2fsck_t ctx); |
Theodore Ts'o | 17390c0 | 2000-07-07 04:13:21 +0000 | [diff] [blame] | 459 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 460 | /* logfile.c */ |
| 461 | extern void set_up_logging(e2fsck_t ctx); |
| 462 | |
| 463 | /* quota.c */ |
| 464 | extern void e2fsck_hide_quota(e2fsck_t ctx); |
| 465 | |
Theodore Ts'o | e72a9ba | 1999-06-25 15:40:18 +0000 | [diff] [blame] | 466 | /* pass1.c */ |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 467 | extern void e2fsck_setup_tdb_icount(e2fsck_t ctx, int flags, |
Theodore Ts'o | 34b9f79 | 2007-04-06 18:43:11 -0400 | [diff] [blame] | 468 | ext2_icount_t *ret); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 469 | extern void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts); |
Theodore Ts'o | 0684a4f | 2002-08-17 10:19:44 -0400 | [diff] [blame] | 470 | extern int e2fsck_pass1_check_device_inode(ext2_filsys fs, |
| 471 | struct ext2_inode *inode); |
Theodore Ts'o | 7cadc57 | 2008-03-13 23:05:00 -0400 | [diff] [blame] | 472 | extern int e2fsck_pass1_check_symlink(ext2_filsys fs, ext2_ino_t ino, |
Theodore Ts'o | bcf9c5d | 2002-05-21 09:14:17 -0400 | [diff] [blame] | 473 | struct ext2_inode *inode, char *buf); |
Theodore Ts'o | e3df15a | 2007-09-15 14:10:47 -0400 | [diff] [blame] | 474 | extern 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'o | e72a9ba | 1999-06-25 15:40:18 +0000 | [diff] [blame] | 477 | |
| 478 | /* pass2.c */ |
Theodore Ts'o | bcf9c5d | 2002-05-21 09:14:17 -0400 | [diff] [blame] | 479 | extern int e2fsck_process_bad_inode(e2fsck_t ctx, ext2_ino_t dir, |
| 480 | ext2_ino_t ino, char *buf); |
Theodore Ts'o | e72a9ba | 1999-06-25 15:40:18 +0000 | [diff] [blame] | 481 | |
| 482 | /* pass3.c */ |
Theodore Ts'o | 86c627e | 2001-01-11 15:12:14 +0000 | [diff] [blame] | 483 | extern int e2fsck_reconnect_file(e2fsck_t ctx, ext2_ino_t inode); |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 484 | extern errcode_t e2fsck_expand_directory(e2fsck_t ctx, ext2_ino_t dir, |
| 485 | int num, int gauranteed_size); |
Theodore Ts'o | 850d05e | 2002-07-25 00:00:08 -0400 | [diff] [blame] | 486 | extern ext2_ino_t e2fsck_get_lost_and_found(e2fsck_t ctx, int fix); |
Theodore Ts'o | efc6f62 | 2008-08-27 23:07:54 -0400 | [diff] [blame] | 487 | extern errcode_t e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino, |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 488 | int adj); |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 489 | |
Theodore Ts'o | e72a9ba | 1999-06-25 15:40:18 +0000 | [diff] [blame] | 490 | |
Theodore Ts'o | 55fd07e | 2001-07-19 16:31:25 -0400 | [diff] [blame] | 491 | /* region.c */ |
| 492 | extern region_t region_create(region_addr_t min, region_addr_t max); |
| 493 | extern void region_free(region_t region); |
| 494 | extern int region_allocate(region_t region, region_addr_t start, int n); |
| 495 | |
Theodore Ts'o | b7a0056 | 2002-07-20 00:28:07 -0400 | [diff] [blame] | 496 | /* rehash.c */ |
| 497 | errcode_t e2fsck_rehash_dir(e2fsck_t ctx, ext2_ino_t ino); |
| 498 | void e2fsck_rehash_directories(e2fsck_t ctx); |
| 499 | |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 500 | /* sigcatcher.c */ |
| 501 | void sigcatcher_setup(void); |
| 502 | |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 503 | /* super.c */ |
| 504 | void check_super_block(e2fsck_t ctx); |
Theodore Ts'o | 0c37f45 | 2007-10-01 09:18:54 -0400 | [diff] [blame] | 505 | int check_backup_super_block(e2fsck_t ctx); |
Theodore Ts'o | 69d0edf | 2009-04-23 00:39:06 -0400 | [diff] [blame] | 506 | void check_resize_inode(e2fsck_t ctx); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 507 | |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 508 | /* util.c */ |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 509 | extern void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned int size, |
| 510 | const char *description); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 511 | extern int ask(e2fsck_t ctx, const char * string, int def); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 512 | extern int ask_yn(e2fsck_t ctx, const char * string, int def); |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 513 | extern void fatal_error(e2fsck_t ctx, const char * fmt_string); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 514 | extern void log_out(e2fsck_t ctx, const char *fmt, ...) |
| 515 | E2FSCK_ATTR((format(printf, 2, 3))); |
| 516 | extern void log_err(e2fsck_t ctx, const char *fmt, ...) |
| 517 | E2FSCK_ATTR((format(printf, 2, 3))); |
Theodore Ts'o | f8188ff | 1997-11-14 05:23:04 +0000 | [diff] [blame] | 518 | extern void e2fsck_read_bitmaps(e2fsck_t ctx); |
| 519 | extern void e2fsck_write_bitmaps(e2fsck_t ctx); |
Theodore Ts'o | 1b6bf17 | 1997-10-03 17:48:10 +0000 | [diff] [blame] | 520 | extern void preenhalt(e2fsck_t ctx); |
Theodore Ts'o | f364093 | 2003-03-01 19:47:44 -0500 | [diff] [blame] | 521 | extern char *string_copy(e2fsck_t ctx, const char *str, int len); |
Jose R. Santos | 49a7360 | 2007-10-21 21:04:03 -0500 | [diff] [blame] | 522 | extern errcode_t e2fsck_zero_blocks(ext2_filsys fs, blk_t blk, int num, |
| 523 | blk_t *ret_blk, int *ret_count); |
Theodore Ts'o | 80875db | 2008-10-12 23:09:26 -0400 | [diff] [blame] | 524 | extern int fs_proc_check(const char *fs_name); |
| 525 | extern int check_for_modules(const char *fs_name); |
Theodore Ts'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 526 | #ifdef RESOURCE_TRACK |
Ken Chen | 9facd07 | 2009-05-28 09:55:10 -0400 | [diff] [blame] | 527 | extern void print_resource_track(e2fsck_t ctx, |
| 528 | const char *desc, |
Theodore Ts'o | 6d96b00 | 2007-08-03 20:07:09 -0400 | [diff] [blame] | 529 | struct resource_track *track, |
| 530 | io_channel channel); |
| 531 | extern void init_resource_track(struct resource_track *track, |
| 532 | io_channel channel); |
Ken Chen | 9facd07 | 2009-05-28 09:55:10 -0400 | [diff] [blame] | 533 | #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'o | 8bf191e | 1997-10-20 01:38:32 +0000 | [diff] [blame] | 536 | #endif |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 537 | extern int inode_has_valid_blocks(struct ext2_inode *inode); |
Theodore Ts'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 538 | extern void e2fsck_read_inode(e2fsck_t ctx, unsigned long ino, |
Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 539 | struct ext2_inode * inode, const char * proc); |
Andreas Dilger | fefaef3 | 2008-02-02 01:16:32 -0700 | [diff] [blame] | 540 | extern 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'o | 08b2130 | 1997-11-03 19:42:40 +0000 | [diff] [blame] | 543 | extern void e2fsck_write_inode(e2fsck_t ctx, unsigned long ino, |
Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 544 | struct ext2_inode * inode, const char * proc); |
Matthias Andree | 9e0cbba | 2006-05-30 16:29:15 +0200 | [diff] [blame] | 545 | extern void e2fsck_write_inode_full(e2fsck_t ctx, unsigned long ino, |
| 546 | struct ext2_inode * inode, int bufsize, |
| 547 | const char *proc); |
Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 548 | #ifdef MTRACE |
| 549 | extern void mtrace_print(char *mesg); |
| 550 | #endif |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 551 | extern blk64_t get_backup_sb(e2fsck_t ctx, ext2_filsys fs, |
Theodore Ts'o | f1a1761 | 2001-12-23 22:27:52 -0500 | [diff] [blame] | 552 | const char *name, io_manager manager); |
Theodore Ts'o | 6fdc7a3 | 1999-11-10 13:34:40 +0000 | [diff] [blame] | 553 | extern int ext2_file_type(unsigned int mode); |
Theodore Ts'o | b0258cb | 2009-04-22 15:09:41 -0400 | [diff] [blame] | 554 | extern int write_all(int fd, char *buf, size_t count); |
JP Abgrall | e0ed740 | 2014-03-19 19:08:39 -0700 | [diff] [blame] | 555 | void dump_mmp_msg(struct mmp_struct *mmp, const char *msg); |
| 556 | errcode_t e2fsck_mmp_update(ext2_filsys fs); |
| 557 | |
| 558 | extern void e2fsck_set_bitmap_type(ext2_filsys fs, |
| 559 | unsigned int default_type, |
| 560 | const char *profile_name, |
| 561 | unsigned int *old_type); |
| 562 | extern 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); |
| 567 | extern 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); |
| 572 | extern 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'o | 830b44f | 2011-12-16 14:55:50 -0500 | [diff] [blame] | 577 | |
Theodore Ts'o | 5596def | 1999-07-19 15:27:37 +0000 | [diff] [blame] | 578 | /* unix.c */ |
| 579 | extern void e2fsck_clear_progbar(e2fsck_t ctx); |
Theodore Ts'o | 520ead3 | 2003-04-19 13:48:27 -0400 | [diff] [blame] | 580 | extern int e2fsck_simple_progress(e2fsck_t ctx, const char *label, |
Theodore Ts'o | b0700a1 | 2003-03-14 01:43:56 -0500 | [diff] [blame] | 581 | float percent, unsigned int dpynum); |
Andreas Dilger | 5656612 | 2006-06-28 11:26:42 -0400 | [diff] [blame] | 582 | #endif /* _E2FSCK_H */ |