blob: aaf177cb1511f00863c063a9f865720442f8df09 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * pass3.c -- pass #3 of e2fsck: Check for directory connectivity
3 *
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +00004 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999 Theodore Ts'o.
Theodore Ts'o21c84b71997-04-29 16:15:03 +00005 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
Theodore Ts'oefc6f622008-08-27 23:07:54 -040010 *
Theodore Ts'o3839e651997-04-26 13:21:57 +000011 * Pass #3 assures that all directories are connected to the
12 * filesystem tree, using the following algorithm:
13 *
14 * First, the root directory is checked to make sure it exists; if
15 * not, e2fsck will offer to create a new one. It is then marked as
16 * "done".
Theodore Ts'oefc6f622008-08-27 23:07:54 -040017 *
Theodore Ts'o3839e651997-04-26 13:21:57 +000018 * Then, pass3 interates over all directory inodes; for each directory
19 * it attempts to trace up the filesystem tree, using dirinfo.parent
20 * until it reaches a directory which has been marked "done". If it
21 * can not do so, then the directory must be disconnected, and e2fsck
22 * will offer to reconnect it to /lost+found. While it is chasing
23 * parent pointers up the filesystem tree, if pass3 sees a directory
24 * twice, then it has detected a filesystem loop, and it will again
25 * offer to reconnect the directory to /lost+found in to break the
26 * filesystem loop.
Theodore Ts'oefc6f622008-08-27 23:07:54 -040027 *
Theodore Ts'o08b21301997-11-03 19:42:40 +000028 * Pass 3 also contains the subroutine, e2fsck_reconnect_file() to
29 * reconnect inodes to /lost+found; this subroutine is also used by
30 * pass 4. e2fsck_reconnect_file() calls get_lost_and_found(), which
31 * is responsible for creating /lost+found if it does not exist.
Theodore Ts'o3839e651997-04-26 13:21:57 +000032 *
33 * Pass 3 frees the following data structures:
34 * - The dirinfo directory information cache.
35 */
36
Theodore Ts'od1154eb2011-09-18 17:34:37 -040037#include "config.h"
Theodore Ts'o50e1e101997-04-26 13:58:21 +000038#ifdef HAVE_ERRNO_H
39#include <errno.h>
40#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000041
42#include "e2fsck.h"
Theodore Ts'o21c84b71997-04-29 16:15:03 +000043#include "problem.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000044
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000045static void check_root(e2fsck_t ctx);
Theodore Ts'o28db82a2007-04-04 22:33:31 -040046static int check_directory(e2fsck_t ctx, ext2_ino_t ino,
Theodore Ts'o28ffafb2000-02-08 19:14:02 +000047 struct problem_context *pctx);
Theodore Ts'o28db82a2007-04-04 22:33:31 -040048static void fix_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
Theodore Ts'o3839e651997-04-26 13:21:57 +000049
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +000050static ext2fs_inode_bitmap inode_loop_detect = 0;
51static ext2fs_inode_bitmap inode_done_map = 0;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040052
Theodore Ts'o08b21301997-11-03 19:42:40 +000053void e2fsck_pass3(e2fsck_t ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +000054{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000055 ext2_filsys fs = ctx->fs;
Darrick J. Wongf0131bd2013-12-12 12:57:48 -050056 struct dir_info_iter *iter = NULL;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000057#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +000058 struct resource_track rtrack;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000059#endif
Theodore Ts'o21c84b71997-04-29 16:15:03 +000060 struct problem_context pctx;
61 struct dir_info *dir;
Theodore Ts'o7f813ba1998-09-03 01:26:03 +000062 unsigned long maxdirs, count;
Theodore Ts'of8188ff1997-11-14 05:23:04 +000063
Theodore Ts'o6d96b002007-08-03 20:07:09 -040064 init_resource_track(&rtrack, ctx->fs->io);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000065 clear_problem_context(&pctx);
66
Theodore Ts'o3839e651997-04-26 13:21:57 +000067#ifdef MTRACE
68 mtrace_print("Pass 3");
69#endif
70
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000071 if (!(ctx->options & E2F_OPT_PREEN))
72 fix_problem(ctx, PR_3_PASS_HEADER, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +000073
74 /*
75 * Allocate some bitmaps to do loop detection.
76 */
Theodore Ts'o830b44f2011-12-16 14:55:50 -050077 pctx.errcode = e2fsck_allocate_inode_bitmap(fs, _("inode done bitmap"),
78 EXT2FS_BMAP64_AUTODIR,
79 "inode_done_map", &inode_done_map);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000080 if (pctx.errcode) {
81 pctx.num = 2;
82 fix_problem(ctx, PR_3_ALLOCATE_IBITMAP_ERROR, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +000083 ctx->flags |= E2F_FLAG_ABORT;
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +000084 goto abort_exit;
Theodore Ts'o3839e651997-04-26 13:21:57 +000085 }
Ken Chen9facd072009-05-28 09:55:10 -040086 print_resource_track(ctx, _("Peak memory"), &ctx->global_rtrack, NULL);
Theodore Ts'o3839e651997-04-26 13:21:57 +000087
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000088 check_root(ctx);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +000089 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
90 goto abort_exit;
Theodore Ts'o08b21301997-11-03 19:42:40 +000091
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -040092 ext2fs_mark_inode_bitmap2(inode_done_map, EXT2_ROOT_INO);
Theodore Ts'o3839e651997-04-26 13:21:57 +000093
Theodore Ts'o7f813ba1998-09-03 01:26:03 +000094 maxdirs = e2fsck_get_num_dirinfo(ctx);
Theodore Ts'of75c28d1998-08-01 04:18:06 +000095 count = 1;
Theodore Ts'of8188ff1997-11-14 05:23:04 +000096
Theodore Ts'of75c28d1998-08-01 04:18:06 +000097 if (ctx->progress)
Theodore Ts'o7f813ba1998-09-03 01:26:03 +000098 if ((ctx->progress)(ctx, 3, 0, maxdirs))
Theodore Ts'of75c28d1998-08-01 04:18:06 +000099 goto abort_exit;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400100
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400101 iter = e2fsck_dir_info_iter_begin(ctx);
102 while ((dir = e2fsck_dir_info_iter(ctx, iter)) != 0) {
Theodore Ts'o4cae0452002-07-21 14:14:03 -0400103 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
104 goto abort_exit;
105 if (ctx->progress && (ctx->progress)(ctx, 3, count++, maxdirs))
106 goto abort_exit;
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400107 if (ext2fs_test_inode_bitmap2(ctx->inode_dir_map, dir->ino))
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400108 if (check_directory(ctx, dir->ino, &pctx))
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000109 goto abort_exit;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000110 }
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000111
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000112 /*
113 * Force the creation of /lost+found if not present
114 */
Johan Erlandssone9a8c0c2013-12-19 13:55:51 -0500115 if ((ctx->options & E2F_OPT_READONLY) == 0)
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400116 e2fsck_get_lost_and_found(ctx, 1);
Theodore Ts'o5a679c81998-12-03 16:40:38 +0000117
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400118 /*
119 * If there are any directories that need to be indexed or
120 * optimized, do it here.
121 */
122 e2fsck_rehash_directories(ctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400123
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000124abort_exit:
Darrick J. Wongf0131bd2013-12-12 12:57:48 -0500125 if (iter)
126 e2fsck_dir_info_iter_end(ctx, iter);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000127 e2fsck_free_dir_info(ctx);
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000128 if (inode_loop_detect) {
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000129 ext2fs_free_inode_bitmap(inode_loop_detect);
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000130 inode_loop_detect = 0;
131 }
132 if (inode_done_map) {
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000133 ext2fs_free_inode_bitmap(inode_done_map);
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000134 inode_done_map = 0;
135 }
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400136
Ken Chen9facd072009-05-28 09:55:10 -0400137 print_resource_track(ctx, _("Pass 3"), &rtrack, ctx->fs->io);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000138}
139
140/*
141 * This makes sure the root inode is present; if not, we ask if the
142 * user wants us to create it. Not creating it is a fatal error.
143 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000144static void check_root(e2fsck_t ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000145{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000146 ext2_filsys fs = ctx->fs;
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400147 blk64_t blk;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000148 struct ext2_inode inode;
149 char * block;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000150 struct problem_context pctx;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400151
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000152 clear_problem_context(&pctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400153
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400154 if (ext2fs_test_inode_bitmap2(ctx->inode_used_map, EXT2_ROOT_INO)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000155 /*
Theodore Ts'o08b21301997-11-03 19:42:40 +0000156 * If the root inode is not a directory, die here. The
Theodore Ts'o3839e651997-04-26 13:21:57 +0000157 * user must have answered 'no' in pass1 when we
158 * offered to clear it.
159 */
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400160 if (!(ext2fs_test_inode_bitmap2(ctx->inode_dir_map,
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000161 EXT2_ROOT_INO))) {
162 fix_problem(ctx, PR_3_ROOT_NOT_DIR_ABORT, &pctx);
163 ctx->flags |= E2F_FLAG_ABORT;
164 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000165 return;
166 }
167
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000168 if (!fix_problem(ctx, PR_3_NO_ROOT_INODE, &pctx)) {
169 fix_problem(ctx, PR_3_NO_ROOT_INODE_ABORT, &pctx);
170 ctx->flags |= E2F_FLAG_ABORT;
171 return;
172 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000173
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000174 e2fsck_read_bitmaps(ctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400175
Theodore Ts'o3839e651997-04-26 13:21:57 +0000176 /*
177 * First, find a free block
178 */
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400179 pctx.errcode = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000180 if (pctx.errcode) {
181 pctx.str = "ext2fs_new_block";
182 fix_problem(ctx, PR_3_CREATE_ROOT_ERROR, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000183 ctx->flags |= E2F_FLAG_ABORT;
184 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000185 }
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400186 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
187 ext2fs_mark_block_bitmap2(fs->block_map, blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000188 ext2fs_mark_bb_dirty(fs);
189
190 /*
191 * Now let's create the actual data block for the inode
192 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000193 pctx.errcode = ext2fs_new_dir_block(fs, EXT2_ROOT_INO, EXT2_ROOT_INO,
194 &block);
195 if (pctx.errcode) {
196 pctx.str = "ext2fs_new_dir_block";
197 fix_problem(ctx, PR_3_CREATE_ROOT_ERROR, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000198 ctx->flags |= E2F_FLAG_ABORT;
199 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000200 }
201
Darrick J. Wong81683c62012-08-02 17:27:43 -0400202 pctx.errcode = ext2fs_write_dir_block4(fs, blk, block, 0,
203 EXT2_ROOT_INO);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000204 if (pctx.errcode) {
Theodore Ts'o2fae1762013-12-03 00:24:39 -0500205 pctx.str = "ext2fs_write_dir_block4";
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000206 fix_problem(ctx, PR_3_CREATE_ROOT_ERROR, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000207 ctx->flags |= E2F_FLAG_ABORT;
208 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000209 }
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400210 ext2fs_free_mem(&block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211
212 /*
213 * Set up the inode structure
214 */
215 memset(&inode, 0, sizeof(inode));
216 inode.i_mode = 040755;
217 inode.i_size = fs->blocksize;
Theodore Ts'o1f3ad142005-04-14 14:07:53 -0400218 inode.i_atime = inode.i_ctime = inode.i_mtime = ctx->now;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000219 inode.i_links_count = 2;
Theodore Ts'o1ca10592008-04-09 11:39:11 -0400220 ext2fs_iblk_set(fs, &inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000221 inode.i_block[0] = blk;
222
223 /*
224 * Write out the inode.
225 */
Theodore Ts'o030970e2005-03-20 20:05:22 -0500226 pctx.errcode = ext2fs_write_new_inode(fs, EXT2_ROOT_INO, &inode);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000227 if (pctx.errcode) {
228 pctx.str = "ext2fs_write_inode";
229 fix_problem(ctx, PR_3_CREATE_ROOT_ERROR, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000230 ctx->flags |= E2F_FLAG_ABORT;
231 return;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000232 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400233
Theodore Ts'o3839e651997-04-26 13:21:57 +0000234 /*
235 * Miscellaneous bookkeeping...
236 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000237 e2fsck_add_dir_info(ctx, EXT2_ROOT_INO, EXT2_ROOT_INO);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000238 ext2fs_icount_store(ctx->inode_count, EXT2_ROOT_INO, 2);
239 ext2fs_icount_store(ctx->inode_link_info, EXT2_ROOT_INO, 2);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000240
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400241 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, EXT2_ROOT_INO);
242 ext2fs_mark_inode_bitmap2(ctx->inode_dir_map, EXT2_ROOT_INO);
243 ext2fs_mark_inode_bitmap2(fs->inode_map, EXT2_ROOT_INO);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000244 ext2fs_mark_ib_dirty(fs);
245}
246
247/*
248 * This subroutine is responsible for making sure that a particular
249 * directory is connected to the root; if it isn't we trace it up as
250 * far as we can go, and then offer to connect the resulting parent to
251 * the lost+found. We have to do loop detection; if we ever discover
252 * a loop, we treat that as a disconnected directory and offer to
253 * reparent it to lost+found.
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400254 *
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000255 * However, loop detection is expensive, because for very large
256 * filesystems, the inode_loop_detect bitmap is huge, and clearing it
257 * is non-trivial. Loops in filesystems are also a rare error case,
258 * and we shouldn't optimize for error cases. So we try two passes of
259 * the algorithm. The first time, we ignore loop detection and merely
260 * increment a counter; if the counter exceeds some extreme threshold,
261 * then we try again with the loop detection bitmap enabled.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000262 */
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400263static int check_directory(e2fsck_t ctx, ext2_ino_t dir,
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000264 struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000265{
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000266 ext2_filsys fs = ctx->fs;
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400267 ext2_ino_t ino = dir, parent;
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000268 int loop_pass = 0, parent_count = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000269
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000270 while (1) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000271 /*
272 * Mark this inode as being "done"; by the time we
273 * return from this function, the inode we either be
274 * verified as being connected to the directory tree,
275 * or we will have offered to reconnect this to
276 * lost+found.
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000277 *
278 * If it was marked done already, then we've reached a
279 * parent we've already checked.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000280 */
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400281 if (ext2fs_mark_inode_bitmap2(inode_done_map, ino))
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000282 break;
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000283
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400284 if (e2fsck_dir_info_get_parent(ctx, ino, &parent)) {
285 fix_problem(ctx, PR_3_NO_DIRINFO, pctx);
286 return 0;
287 }
288
Theodore Ts'o3839e651997-04-26 13:21:57 +0000289 /*
290 * If this directory doesn't have a parent, or we've
291 * seen the parent once already, then offer to
292 * reparent it to lost+found
293 */
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400294 if (!parent ||
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400295 (loop_pass &&
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400296 (ext2fs_test_inode_bitmap2(inode_loop_detect,
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400297 parent)))) {
298 pctx->ino = ino;
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000299 if (fix_problem(ctx, PR_3_UNCONNECTED_DIR, pctx)) {
Theodore Ts'o2e5fcce2003-12-12 03:00:56 -0500300 if (e2fsck_reconnect_file(ctx, pctx->ino))
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000301 ext2fs_unmark_valid(fs);
302 else {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400303 fix_dotdot(ctx, pctx->ino,
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400304 ctx->lost_and_found);
305 parent = ctx->lost_and_found;
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000306 }
307 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000308 break;
Theodore Ts'o7f813ba1998-09-03 01:26:03 +0000309 }
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400310 ino = parent;
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000311 if (loop_pass) {
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400312 ext2fs_mark_inode_bitmap2(inode_loop_detect, ino);
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000313 } else if (parent_count++ > 2048) {
314 /*
315 * If we've run into a path depth that's
316 * greater than 2048, try again with the inode
317 * loop bitmap turned on and start from the
318 * top.
319 */
320 loop_pass = 1;
321 if (inode_loop_detect)
322 ext2fs_clear_inode_bitmap(inode_loop_detect);
323 else {
Theodore Ts'o830b44f2011-12-16 14:55:50 -0500324 pctx->errcode = e2fsck_allocate_inode_bitmap(fs, _("inode loop detection bitmap"), EXT2FS_BMAP64_AUTODIR, "inode_loop_detect", &inode_loop_detect);
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000325 if (pctx->errcode) {
326 pctx->num = 1;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400327 fix_problem(ctx,
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000328 PR_3_ALLOCATE_IBITMAP_ERROR, pctx);
329 ctx->flags |= E2F_FLAG_ABORT;
330 return -1;
331 }
332 }
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400333 ino = dir;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000334 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000335 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000336
337 /*
338 * Make sure that .. and the parent directory are the same;
339 * offer to fix it if not.
340 */
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400341 pctx->ino = dir;
342 if (e2fsck_dir_info_get_dotdot(ctx, dir, &pctx->ino2) ||
343 e2fsck_dir_info_get_parent(ctx, dir, &pctx->dir)) {
344 fix_problem(ctx, PR_3_NO_DIRINFO, pctx);
345 return 0;
346 }
347 if (pctx->ino2 != pctx->dir) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000348 if (fix_problem(ctx, PR_3_BAD_DOT_DOT, pctx))
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400349 fix_dotdot(ctx, dir, pctx->dir);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000350 }
Theodore Ts'o28ffafb2000-02-08 19:14:02 +0000351 return 0;
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400352}
Theodore Ts'o3839e651997-04-26 13:21:57 +0000353
354/*
355 * This routine gets the lost_and_found inode, making it a directory
356 * if necessary
357 */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400358ext2_ino_t e2fsck_get_lost_and_found(e2fsck_t ctx, int fix)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000359{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000360 ext2_filsys fs = ctx->fs;
Theodore Ts'o86c627e2001-01-11 15:12:14 +0000361 ext2_ino_t ino;
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400362 blk64_t blk;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000363 errcode_t retval;
364 struct ext2_inode inode;
365 char * block;
Theodore Ts'o53ef44c2001-01-06 05:55:58 +0000366 static const char name[] = "lost+found";
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000367 struct problem_context pctx;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000368
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400369 if (ctx->lost_and_found)
370 return ctx->lost_and_found;
371
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000372 clear_problem_context(&pctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400373
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000374 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, name,
375 sizeof(name)-1, 0, &ino);
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400376 if (retval && !fix)
377 return 0;
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000378 if (!retval) {
Theodore Ts'o82372e32012-08-15 13:00:14 -0400379 if (ext2fs_check_directory(fs, ino) == 0) {
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400380 ctx->lost_and_found = ino;
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000381 return ino;
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400382 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400383
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000384 /* Lost+found isn't a directory! */
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400385 if (!fix)
386 return 0;
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000387 pctx.ino = ino;
388 if (!fix_problem(ctx, PR_3_LPF_NOTDIR, &pctx))
389 return 0;
390
Theodore Ts'oc54b3c31999-07-03 07:20:06 +0000391 /* OK, unlink the old /lost+found file. */
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000392 pctx.errcode = ext2fs_unlink(fs, EXT2_ROOT_INO, name, ino, 0);
393 if (pctx.errcode) {
394 pctx.str = "ext2fs_unlink";
395 fix_problem(ctx, PR_3_CREATE_LPF_ERROR, &pctx);
396 return 0;
397 }
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400398 (void) e2fsck_dir_info_set_parent(ctx, ino, 0);
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500399 e2fsck_adjust_inode_count(ctx, ino, -1);
Theodore Ts'o4a9f5931999-03-16 19:32:52 +0000400 } else if (retval != EXT2_ET_FILE_NOT_FOUND) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000401 pctx.errcode = retval;
402 fix_problem(ctx, PR_3_ERR_FIND_LPF, &pctx);
403 }
404 if (!fix_problem(ctx, PR_3_NO_LF_DIR, 0))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000405 return 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000406
407 /*
408 * Read the inode and block bitmaps in; we'll be messing with
409 * them.
410 */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000411 e2fsck_read_bitmaps(ctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400412
Theodore Ts'o3839e651997-04-26 13:21:57 +0000413 /*
414 * First, find a free block
415 */
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400416 retval = ext2fs_new_block2(fs, 0, ctx->block_found_map, &blk);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000417 if (retval) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000418 pctx.errcode = retval;
419 fix_problem(ctx, PR_3_ERR_LPF_NEW_BLOCK, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000420 return 0;
421 }
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400422 ext2fs_mark_block_bitmap2(ctx->block_found_map, blk);
Valerie Aurora Henson48f23052009-10-25 21:46:58 -0400423 ext2fs_block_alloc_stats2(fs, blk, +1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000424
425 /*
426 * Next find a free inode.
427 */
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500428 retval = ext2fs_new_inode(fs, EXT2_ROOT_INO, 040700,
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000429 ctx->inode_used_map, &ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000430 if (retval) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000431 pctx.errcode = retval;
432 fix_problem(ctx, PR_3_ERR_LPF_NEW_INODE, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000433 return 0;
434 }
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400435 ext2fs_mark_inode_bitmap2(ctx->inode_used_map, ino);
436 ext2fs_mark_inode_bitmap2(ctx->inode_dir_map, ino);
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400437 ext2fs_inode_alloc_stats2(fs, ino, +1, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000438
439 /*
440 * Now let's create the actual data block for the inode
441 */
442 retval = ext2fs_new_dir_block(fs, ino, EXT2_ROOT_INO, &block);
443 if (retval) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000444 pctx.errcode = retval;
445 fix_problem(ctx, PR_3_ERR_LPF_NEW_DIR_BLOCK, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000446 return 0;
447 }
448
Darrick J. Wong81683c62012-08-02 17:27:43 -0400449 retval = ext2fs_write_dir_block4(fs, blk, block, 0, ino);
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400450 ext2fs_free_mem(&block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000451 if (retval) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000452 pctx.errcode = retval;
453 fix_problem(ctx, PR_3_ERR_LPF_WRITE_BLOCK, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000454 return 0;
455 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000456
457 /*
458 * Set up the inode structure
459 */
460 memset(&inode, 0, sizeof(inode));
Theodore Ts'o64aecc42002-10-11 17:44:12 -0400461 inode.i_mode = 040700;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000462 inode.i_size = fs->blocksize;
Theodore Ts'o1f3ad142005-04-14 14:07:53 -0400463 inode.i_atime = inode.i_ctime = inode.i_mtime = ctx->now;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000464 inode.i_links_count = 2;
Theodore Ts'o1ca10592008-04-09 11:39:11 -0400465 ext2fs_iblk_set(fs, &inode, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000466 inode.i_block[0] = blk;
467
468 /*
469 * Next, write out the inode.
470 */
Theodore Ts'o030970e2005-03-20 20:05:22 -0500471 pctx.errcode = ext2fs_write_new_inode(fs, ino, &inode);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000472 if (pctx.errcode) {
473 pctx.str = "ext2fs_write_inode";
474 fix_problem(ctx, PR_3_CREATE_LPF_ERROR, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000475 return 0;
476 }
477 /*
478 * Finally, create the directory link
479 */
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000480 pctx.errcode = ext2fs_link(fs, EXT2_ROOT_INO, name, ino, EXT2_FT_DIR);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000481 if (pctx.errcode) {
482 pctx.str = "ext2fs_link";
483 fix_problem(ctx, PR_3_CREATE_LPF_ERROR, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000484 return 0;
485 }
486
487 /*
488 * Miscellaneous bookkeeping that needs to be kept straight.
489 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000490 e2fsck_add_dir_info(ctx, ino, EXT2_ROOT_INO);
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500491 e2fsck_adjust_inode_count(ctx, EXT2_ROOT_INO, 1);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000492 ext2fs_icount_store(ctx->inode_count, ino, 2);
493 ext2fs_icount_store(ctx->inode_link_info, ino, 2);
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400494 ctx->lost_and_found = ino;
Aditya Kali624e4a62011-07-20 11:40:06 -0700495 quota_data_add(ctx->qctx, &inode, ino, fs->blocksize);
496 quota_data_inodes(ctx->qctx, &inode, ino, +1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000497#if 0
Theodore Ts'of3db3561997-04-26 13:34:30 +0000498 printf("/lost+found created; inode #%lu\n", ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000499#endif
500 return ino;
501}
502
503/*
504 * This routine will connect a file to lost+found
505 */
Theodore Ts'o86c627e2001-01-11 15:12:14 +0000506int e2fsck_reconnect_file(e2fsck_t ctx, ext2_ino_t ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000507{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000508 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000509 errcode_t retval;
510 char name[80];
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000511 struct problem_context pctx;
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000512 struct ext2_inode inode;
513 int file_type = 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000514
515 clear_problem_context(&pctx);
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000516 pctx.ino = ino;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000517
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400518 if (!ctx->bad_lost_and_found && !ctx->lost_and_found) {
519 if (e2fsck_get_lost_and_found(ctx, 1) == 0)
520 ctx->bad_lost_and_found++;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000521 }
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400522 if (ctx->bad_lost_and_found) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000523 fix_problem(ctx, PR_3_NO_LPF, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000524 return 1;
525 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400526
Theodore Ts'o86c627e2001-01-11 15:12:14 +0000527 sprintf(name, "#%u", ino);
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000528 if (ext2fs_read_inode(fs, ino, &inode) == 0)
529 file_type = ext2_file_type(inode.i_mode);
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400530 retval = ext2fs_link(fs, ctx->lost_and_found, name, ino, file_type);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000531 if (retval == EXT2_ET_DIR_NO_SPACE) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000532 if (!fix_problem(ctx, PR_3_EXPAND_LF_DIR, &pctx))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000533 return 1;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400534 retval = e2fsck_expand_directory(ctx, ctx->lost_and_found,
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400535 1, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000536 if (retval) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000537 pctx.errcode = retval;
538 fix_problem(ctx, PR_3_CANT_EXPAND_LPF, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000539 return 1;
540 }
Theodore Ts'o850d05e2002-07-25 00:00:08 -0400541 retval = ext2fs_link(fs, ctx->lost_and_found, name,
542 ino, file_type);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000543 }
544 if (retval) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000545 pctx.errcode = retval;
546 fix_problem(ctx, PR_3_CANT_RECONNECT, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000547 return 1;
548 }
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500549 e2fsck_adjust_inode_count(ctx, ino, 1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000550
551 return 0;
552}
553
554/*
555 * Utility routine to adjust the inode counts on an inode.
556 */
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500557errcode_t e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino, int adj)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000558{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000559 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000560 errcode_t retval;
561 struct ext2_inode inode;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400562
Theodore Ts'o3839e651997-04-26 13:21:57 +0000563 if (!ino)
564 return 0;
565
566 retval = ext2fs_read_inode(fs, ino, &inode);
567 if (retval)
568 return retval;
569
570#if 0
Theodore Ts'of3db3561997-04-26 13:34:30 +0000571 printf("Adjusting link count for inode %lu by %d (from %d)\n", ino, adj,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000572 inode.i_links_count);
573#endif
574
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000575 if (adj == 1) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000576 ext2fs_icount_increment(ctx->inode_count, ino, 0);
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +0000577 if (inode.i_links_count == (__u16) ~0)
578 return 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000579 ext2fs_icount_increment(ctx->inode_link_info, ino, 0);
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +0000580 inode.i_links_count++;
581 } else if (adj == -1) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000582 ext2fs_icount_decrement(ctx->inode_count, ino, 0);
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +0000583 if (inode.i_links_count == 0)
584 return 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000585 ext2fs_icount_decrement(ctx->inode_link_info, ino, 0);
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +0000586 inode.i_links_count--;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000587 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400588
Theodore Ts'o3839e651997-04-26 13:21:57 +0000589 retval = ext2fs_write_inode(fs, ino, &inode);
590 if (retval)
591 return retval;
592
593 return 0;
594}
595
596/*
597 * Fix parent --- this routine fixes up the parent of a directory.
598 */
599struct fix_dotdot_struct {
600 ext2_filsys fs;
Theodore Ts'o86c627e2001-01-11 15:12:14 +0000601 ext2_ino_t parent;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000602 int done;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000603 e2fsck_t ctx;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000604};
605
606static int fix_dotdot_proc(struct ext2_dir_entry *dirent,
Theodore Ts'o54434922003-12-07 01:28:50 -0500607 int offset EXT2FS_ATTR((unused)),
608 int blocksize EXT2FS_ATTR((unused)),
609 char *buf EXT2FS_ATTR((unused)),
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000610 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000611{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000612 struct fix_dotdot_struct *fp = (struct fix_dotdot_struct *) priv_data;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000613 errcode_t retval;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000614 struct problem_context pctx;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000615
Jan Kara70f46322013-06-08 11:26:14 -0400616 if (ext2fs_dirent_name_len(dirent) != 2)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000617 return 0;
618 if (strncmp(dirent->name, "..", 2))
619 return 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000620
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000621 clear_problem_context(&pctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400622
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500623 retval = e2fsck_adjust_inode_count(fp->ctx, dirent->inode, -1);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000624 if (retval) {
625 pctx.errcode = retval;
626 fix_problem(fp->ctx, PR_3_ADJUST_INODE, &pctx);
627 }
Theodore Ts'ob0700a12003-03-14 01:43:56 -0500628 retval = e2fsck_adjust_inode_count(fp->ctx, fp->parent, 1);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000629 if (retval) {
630 pctx.errcode = retval;
631 fix_problem(fp->ctx, PR_3_ADJUST_INODE, &pctx);
632 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000633 dirent->inode = fp->parent;
Theodore Ts'o56c8c592007-03-31 19:18:24 -0400634 if (fp->ctx->fs->super->s_feature_incompat &
635 EXT2_FEATURE_INCOMPAT_FILETYPE)
Jan Kara70f46322013-06-08 11:26:14 -0400636 ext2fs_dirent_set_file_type(dirent, EXT2_FT_DIR);
Theodore Ts'o56c8c592007-03-31 19:18:24 -0400637 else
Jan Kara70f46322013-06-08 11:26:14 -0400638 ext2fs_dirent_set_file_type(dirent, EXT2_FT_UNKNOWN);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000639
640 fp->done++;
641 return DIRENT_ABORT | DIRENT_CHANGED;
642}
643
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400644static void fix_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000645{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000646 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000647 errcode_t retval;
648 struct fix_dotdot_struct fp;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000649 struct problem_context pctx;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000650
651 fp.fs = fs;
652 fp.parent = parent;
653 fp.done = 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000654 fp.ctx = ctx;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000655
656#if 0
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400657 printf("Fixing '..' of inode %lu to be %lu...\n", ino, parent);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000658#endif
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400659
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400660 clear_problem_context(&pctx);
661 pctx.ino = ino;
Darrick J. Wonge8548792012-08-02 17:27:43 -0400662 if (e2fsck_dir_will_be_rehashed(ctx, ino))
663 ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400664 retval = ext2fs_dir_iterate(fs, ino, DIRENT_FLAG_INCLUDE_EMPTY,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000665 0, fix_dotdot_proc, &fp);
Darrick J. Wonge8548792012-08-02 17:27:43 -0400666 if (e2fsck_dir_will_be_rehashed(ctx, ino))
667 ctx->fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000668 if (retval || !fp.done) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000669 pctx.errcode = retval;
670 fix_problem(ctx, retval ? PR_3_FIX_PARENT_ERR :
671 PR_3_FIX_PARENT_NOFIND, &pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000672 ext2fs_unmark_valid(fs);
673 }
Theodore Ts'o28db82a2007-04-04 22:33:31 -0400674 (void) e2fsck_dir_info_set_dotdot(ctx, ino, parent);
675 if (e2fsck_dir_info_set_parent(ctx, ino, ctx->lost_and_found))
676 fix_problem(ctx, PR_3_NO_DIRINFO, &pctx);
677
Theodore Ts'o3839e651997-04-26 13:21:57 +0000678 return;
679}
680
681/*
682 * These routines are responsible for expanding a /lost+found if it is
683 * too small.
684 */
685
686struct expand_dir_struct {
Valerie Aurora Henson6dc64392010-06-13 17:00:00 -0400687 blk64_t num;
688 e2_blkcnt_t guaranteed_size;
689 blk64_t newblocks;
690 blk64_t last_block;
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +0000691 errcode_t err;
692 e2fsck_t ctx;
Darrick J. Wong81683c62012-08-02 17:27:43 -0400693 ext2_ino_t dir;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000694};
695
696static int expand_dir_proc(ext2_filsys fs,
Valerie Aurora Henson6dc64392010-06-13 17:00:00 -0400697 blk64_t *blocknr,
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000698 e2_blkcnt_t blockcnt,
Valerie Aurora Henson6dc64392010-06-13 17:00:00 -0400699 blk64_t ref_block EXT2FS_ATTR((unused)),
Theodore Ts'o54434922003-12-07 01:28:50 -0500700 int ref_offset EXT2FS_ATTR((unused)),
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000701 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000702{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000703 struct expand_dir_struct *es = (struct expand_dir_struct *) priv_data;
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400704 blk64_t new_blk;
Valerie Aurora Henson6dc64392010-06-13 17:00:00 -0400705 static blk64_t last_blk = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000706 char *block;
707 errcode_t retval;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000708 e2fsck_t ctx;
709
710 ctx = es->ctx;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400711
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400712 if (es->guaranteed_size && blockcnt >= es->guaranteed_size)
713 return BLOCK_ABORT;
714
715 if (blockcnt > 0)
716 es->last_block = blockcnt;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000717 if (*blocknr) {
718 last_blk = *blocknr;
719 return 0;
720 }
Darrick J. Wong00472552013-12-15 23:54:07 -0500721
722 if (blockcnt &&
723 (EXT2FS_B2C(fs, last_blk) == EXT2FS_B2C(fs, last_blk + 1)))
724 new_blk = last_blk + 1;
725 else {
726 last_blk &= ~EXT2FS_CLUSTER_MASK(fs);
727 retval = ext2fs_new_block2(fs, last_blk, ctx->block_found_map,
728 &new_blk);
729 if (retval) {
730 es->err = retval;
731 return BLOCK_ABORT;
732 }
733 es->newblocks++;
734 ext2fs_block_alloc_stats2(fs, new_blk, +1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000735 }
Darrick J. Wong00472552013-12-15 23:54:07 -0500736 last_blk = new_blk;
737
Theodore Ts'o3839e651997-04-26 13:21:57 +0000738 if (blockcnt > 0) {
739 retval = ext2fs_new_dir_block(fs, 0, 0, &block);
740 if (retval) {
741 es->err = retval;
742 return BLOCK_ABORT;
743 }
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400744 es->num--;
Darrick J. Wong81683c62012-08-02 17:27:43 -0400745 retval = ext2fs_write_dir_block4(fs, new_blk, block, 0,
746 es->dir);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000747 } else {
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400748 retval = ext2fs_get_mem(fs->blocksize, &block);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000749 if (retval) {
750 es->err = retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000751 return BLOCK_ABORT;
752 }
753 memset(block, 0, fs->blocksize);
Valerie Aurora Henson24a117a2009-09-07 21:14:24 -0400754 retval = io_channel_write_blk64(fs->io, new_blk, 1, block);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400755 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000756 if (retval) {
757 es->err = retval;
758 return BLOCK_ABORT;
759 }
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400760 ext2fs_free_mem(&block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000761 *blocknr = new_blk;
Valerie Aurora Hensonc5d2f502009-08-22 22:29:02 -0400762 ext2fs_mark_block_bitmap2(ctx->block_found_map, new_blk);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400763
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400764 if (es->num == 0)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000765 return (BLOCK_CHANGED | BLOCK_ABORT);
766 else
767 return BLOCK_CHANGED;
768}
769
Darrick J. Wong4b58df12013-12-10 17:22:07 -0800770/*
771 * Ensure that all blocks are marked in the block_found_map, since it's
772 * possible that the library allocated an extent node block or a block map
773 * block during the directory rebuilding; these new allocations are not
774 * captured in block_found_map. This is bad since we could later use
775 * block_found_map to allocate more blocks.
776 */
777static int find_new_blocks_proc(ext2_filsys fs,
778 blk64_t *blocknr,
779 e2_blkcnt_t blockcnt,
780 blk64_t ref_block EXT2FS_ATTR((unused)),
781 int ref_offset EXT2FS_ATTR((unused)),
782 void *priv_data)
783{
784 struct expand_dir_struct *es = (struct expand_dir_struct *) priv_data;
785 e2fsck_t ctx = es->ctx;
786
787 ext2fs_mark_block_bitmap2(ctx->block_found_map, *blocknr);
788 return 0;
789}
790
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400791errcode_t e2fsck_expand_directory(e2fsck_t ctx, ext2_ino_t dir,
792 int num, int guaranteed_size)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000793{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000794 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000795 errcode_t retval;
796 struct expand_dir_struct es;
797 struct ext2_inode inode;
Darrick J. Wong4b58df12013-12-10 17:22:07 -0800798 blk64_t sz, before, after;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400799
Theodore Ts'o3839e651997-04-26 13:21:57 +0000800 if (!(fs->flags & EXT2_FLAG_RW))
801 return EXT2_ET_RO_FILSYS;
802
Theodore Ts'ob8647fa1997-11-20 21:52:43 +0000803 /*
804 * Read the inode and block bitmaps in; we'll be messing with
805 * them.
806 */
807 e2fsck_read_bitmaps(ctx);
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +0000808
Theodore Ts'o3839e651997-04-26 13:21:57 +0000809 retval = ext2fs_check_directory(fs, dir);
810 if (retval)
811 return retval;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400812
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400813 es.num = num;
814 es.guaranteed_size = guaranteed_size;
815 es.last_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000816 es.err = 0;
Theodore Ts'oc1faf9c1999-09-14 20:00:54 +0000817 es.newblocks = 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000818 es.ctx = ctx;
Darrick J. Wong81683c62012-08-02 17:27:43 -0400819 es.dir = dir;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400820
Darrick J. Wong4b58df12013-12-10 17:22:07 -0800821 before = ext2fs_free_blocks_count(fs->super);
Valerie Aurora Henson6dc64392010-06-13 17:00:00 -0400822 retval = ext2fs_block_iterate3(fs, dir, BLOCK_FLAG_APPEND,
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000823 0, expand_dir_proc, &es);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000824
825 if (es.err)
826 return es.err;
Darrick J. Wong4b58df12013-12-10 17:22:07 -0800827 after = ext2fs_free_blocks_count(fs->super);
828
829 /*
830 * If the free block count has dropped by more than the blocks we
831 * allocated ourselves, then we must've allocated some extent/map
832 * blocks. Therefore, we must iterate this dir's blocks again to
833 * ensure that all newly allocated blocks are captured in
834 * block_found_map.
835 */
836 if ((before - after) > es.newblocks) {
837 retval = ext2fs_block_iterate3(fs, dir, BLOCK_FLAG_READ_ONLY,
838 0, find_new_blocks_proc, &es);
839 if (es.err)
840 return es.err;
841 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000842
843 /*
844 * Update the size and block count fields in the inode.
845 */
846 retval = ext2fs_read_inode(fs, dir, &inode);
847 if (retval)
848 return retval;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400849
Darrick J. Wong4dbfd792013-10-07 09:51:48 -0400850 sz = (es.last_block + 1) * fs->blocksize;
851 inode.i_size = sz;
852 inode.i_size_high = sz >> 32;
Theodore Ts'o1ca10592008-04-09 11:39:11 -0400853 ext2fs_iblk_add_blocks(fs, &inode, es.newblocks);
Aditya Kali624e4a62011-07-20 11:40:06 -0700854 quota_data_add(ctx->qctx, &inode, dir, es.newblocks * fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000855
Theodore Ts'o08b21301997-11-03 19:42:40 +0000856 e2fsck_write_inode(ctx, dir, &inode, "expand_directory");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000857
858 return 0;
859}
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400860