blob: 0aca7ccbb296dbffd8604c29f92a690877fc2961 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * pass2.c --- check directory structure
3 *
Theodore Ts'o21c84b71997-04-29 16:15:03 +00004 * Copyright (C) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000010 *
11 * Pass 2 of e2fsck iterates through all active directory inodes, and
12 * applies to following tests to each directory entry in the directory
13 * blocks in the inodes:
14 *
15 * - The length of the directory entry (rec_len) should be at
16 * least 8 bytes, and no more than the remaining space
17 * left in the directory block.
18 * - The length of the name in the directory entry (name_len)
19 * should be less than (rec_len - 8).
20 * - The inode number in the directory entry should be within
21 * legal bounds.
22 * - The inode number should refer to a in-use inode.
23 * - The first entry should be '.', and its inode should be
24 * the inode of the directory.
25 * - The second entry should be '..'.
26 *
27 * To minimize disk seek time, the directory blocks are processed in
28 * sorted order of block numbers.
29 *
30 * Pass 2 also collects the following information:
31 * - The inode numbers of the subdirectories for each directory.
32 *
33 * Pass 2 relies on the following information from previous passes:
34 * - The directory information collected in pass 1.
35 * - The inode_used_map bitmap
36 * - The inode_bad_map bitmap
37 * - The inode_dir_map bitmap
Theodore Ts'o3839e651997-04-26 13:21:57 +000038 *
39 * Pass 2 frees the following data structures
40 * - The inode_bad_map bitmap
Theodore Ts'oaa4115a1999-10-21 19:33:18 +000041 * - The inode_reg_map bitmap
Theodore Ts'o3839e651997-04-26 13:21:57 +000042 */
43
Theodore Ts'o3839e651997-04-26 13:21:57 +000044#include "e2fsck.h"
Theodore Ts'o21c84b71997-04-29 16:15:03 +000045#include "problem.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000046
Theodore Ts'oaa4115a1999-10-21 19:33:18 +000047#ifdef NO_INLINE_FUNCS
48#define _INLINE_
49#else
50#define _INLINE_ inline
51#endif
52
Theodore Ts'o3839e651997-04-26 13:21:57 +000053/*
54 * Keeps track of how many times an inode is referenced.
55 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000056static void deallocate_inode(e2fsck_t ctx, ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +000057 char* block_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +000058static int check_dir_block(ext2_filsys fs,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000059 struct ext2_db_entry *dir_blocks_info,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000060 void *priv_data);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000061static int allocate_dir_block(e2fsck_t ctx,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000062 struct ext2_db_entry *dir_blocks_info,
63 char *buf, struct problem_context *pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +000064static int update_dir_block(ext2_filsys fs,
65 blk_t *block_nr,
Theodore Ts'o133a56d2000-11-17 05:40:49 +000066 e2_blkcnt_t blockcnt,
67 blk_t ref_block,
68 int ref_offset,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000069 void *priv_data);
Theodore Ts'o3839e651997-04-26 13:21:57 +000070
Theodore Ts'o21c84b71997-04-29 16:15:03 +000071struct check_dir_struct {
72 char *buf;
73 struct problem_context pctx;
Theodore Ts'of8188ff1997-11-14 05:23:04 +000074 int count, max;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000075 e2fsck_t ctx;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000076};
77
Theodore Ts'o08b21301997-11-03 19:42:40 +000078void e2fsck_pass2(e2fsck_t ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +000079{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000080 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +000081 char *buf;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000082#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +000083 struct resource_track rtrack;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000084#endif
Theodore Ts'o21c84b71997-04-29 16:15:03 +000085 struct dir_info *dir;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000086 struct check_dir_struct cd;
87
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000088#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +000089 init_resource_track(&rtrack);
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000090#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000091
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000092 clear_problem_context(&cd.pctx);
93
Theodore Ts'o3839e651997-04-26 13:21:57 +000094#ifdef MTRACE
95 mtrace_print("Pass 2");
96#endif
97
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000098 if (!(ctx->options & E2F_OPT_PREEN))
99 fix_problem(ctx, PR_2_PASS_HEADER, &cd.pctx);
100
101 cd.pctx.errcode = ext2fs_create_icount2(fs, EXT2_ICOUNT_OPT_INCREMENT,
102 0, ctx->inode_link_info,
103 &ctx->inode_count);
104 if (cd.pctx.errcode) {
105 fix_problem(ctx, PR_2_ALLOCATE_ICOUNT, &cd.pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000106 ctx->flags |= E2F_FLAG_ABORT;
107 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000108 }
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000109 buf = (char *) e2fsck_allocate_memory(ctx, fs->blocksize,
110 "directory scan buffer");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000111
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000112 /*
113 * Set up the parent pointer for the root directory, if
114 * present. (If the root directory is not present, we will
115 * create it in pass 3.)
116 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000117 dir = e2fsck_get_dir_info(ctx, EXT2_ROOT_INO);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000118 if (dir)
119 dir->parent = EXT2_ROOT_INO;
120
121 cd.buf = buf;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000122 cd.ctx = ctx;
Theodore Ts'of75c28d1998-08-01 04:18:06 +0000123 cd.count = 1;
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000124 cd.max = ext2fs_dblist_count(fs->dblist);
Theodore Ts'of75c28d1998-08-01 04:18:06 +0000125
126 if (ctx->progress)
127 (void) (ctx->progress)(ctx, 2, 0, cd.max);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000128
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000129 cd.pctx.errcode = ext2fs_dblist_iterate(fs->dblist, check_dir_block,
130 &cd);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000131 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000132 return;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000133 if (cd.pctx.errcode) {
134 fix_problem(ctx, PR_2_DBLIST_ITERATE, &cd.pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000135 ctx->flags |= E2F_FLAG_ABORT;
136 return;
Theodore Ts'o7ac02a51997-06-11 18:32:35 +0000137 }
138
Theodore Ts'o08b21301997-11-03 19:42:40 +0000139 ext2fs_free_mem((void **) &buf);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000140 ext2fs_free_dblist(fs->dblist);
141
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000142 if (ctx->inode_bad_map) {
143 ext2fs_free_inode_bitmap(ctx->inode_bad_map);
144 ctx->inode_bad_map = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000145 }
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000146 if (ctx->inode_reg_map) {
147 ext2fs_free_inode_bitmap(ctx->inode_reg_map);
148 ctx->inode_reg_map = 0;
149 }
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000150#ifdef RESOURCE_TRACK
Theodore Ts'o5596def1999-07-19 15:27:37 +0000151 if (ctx->options & E2F_OPT_TIME2) {
152 e2fsck_clear_progbar(ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000153 print_resource_track("Pass 2", &rtrack);
Theodore Ts'o5596def1999-07-19 15:27:37 +0000154 }
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000155#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000156}
157
158/*
159 * Make sure the first entry in the directory is '.', and that the
160 * directory entry is sane.
161 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000162static int check_dot(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000163 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000164 ino_t ino, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000165{
166 struct ext2_dir_entry *nextdir;
167 int status = 0;
168 int created = 0;
169 int new_len;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000170 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000171
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000172 if (!dirent->inode)
173 problem = PR_2_MISSING_DOT;
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000174 else if (((dirent->name_len & 0xFF) != 1) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000175 (dirent->name[0] != '.'))
176 problem = PR_2_1ST_NOT_DOT;
177 else if (dirent->name[1] != '\0')
178 problem = PR_2_DOT_NULL_TERM;
179
180 if (problem) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000181 if (fix_problem(ctx, problem, pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000182 if (dirent->rec_len < 12)
183 dirent->rec_len = 12;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000184 dirent->inode = ino;
185 dirent->name_len = 1;
186 dirent->name[0] = '.';
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000187 dirent->name[1] = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000188 status = 1;
189 created = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000190 }
191 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000192 if (dirent->inode != ino) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000193 if (fix_problem(ctx, PR_2_BAD_INODE_DOT, pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000194 dirent->inode = ino;
195 status = 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000196 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000197 }
198 if (dirent->rec_len > 12) {
199 new_len = dirent->rec_len - 12;
200 if (new_len > 12) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000201 if (created ||
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000202 fix_problem(ctx, PR_2_SPLIT_DOT, pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000203 nextdir = (struct ext2_dir_entry *)
204 ((char *) dirent + 12);
205 dirent->rec_len = 12;
206 nextdir->rec_len = new_len;
207 nextdir->inode = 0;
208 nextdir->name_len = 0;
209 status = 1;
210 }
211 }
212 }
213 return status;
214}
215
216/*
217 * Make sure the second entry in the directory is '..', and that the
218 * directory entry is sane. We do not check the inode number of '..'
219 * here; this gets done in pass 3.
220 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000221static int check_dotdot(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000222 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000223 struct dir_info *dir, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000224{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000225 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000226
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000227 if (!dirent->inode)
228 problem = PR_2_MISSING_DOT_DOT;
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000229 else if (((dirent->name_len & 0xFF) != 2) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000230 (dirent->name[0] != '.') ||
231 (dirent->name[1] != '.'))
232 problem = PR_2_2ND_NOT_DOT_DOT;
233 else if (dirent->name[2] != '\0')
234 problem = PR_2_DOT_DOT_NULL_TERM;
235
236 if (problem) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000237 if (fix_problem(ctx, problem, pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000238 if (dirent->rec_len < 12)
239 dirent->rec_len = 12;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000240 /*
241 * Note: we don't have the parent inode just
242 * yet, so we will fill it in with the root
243 * inode. This will get fixed in pass 3.
244 */
245 dirent->inode = EXT2_ROOT_INO;
246 dirent->name_len = 2;
247 dirent->name[0] = '.';
248 dirent->name[1] = '.';
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000249 dirent->name[2] = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000250 return 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000251 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000252 return 0;
253 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000254 dir->dotdot = dirent->inode;
255 return 0;
256}
257
258/*
259 * Check to make sure a directory entry doesn't contain any illegal
260 * characters.
261 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000262static int check_name(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000263 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000264 ino_t dir_ino, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000265{
266 int i;
267 int fixup = -1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000268 int ret = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000269
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000270 for ( i = 0; i < (dirent->name_len & 0xFF); i++) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000271 if (dirent->name[i] == '/' || dirent->name[i] == '\0') {
272 if (fixup < 0) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000273 fixup = fix_problem(ctx, PR_2_BAD_NAME, pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000274 }
275 if (fixup) {
276 dirent->name[i] = '.';
277 ret = 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000278 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000279 }
280 }
281 return ret;
282}
283
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000284/*
285 * Check the directory filetype (if present)
286 */
287static _INLINE_ int check_filetype(e2fsck_t ctx,
288 struct ext2_dir_entry *dirent,
289 ino_t dir_ino, struct problem_context *pctx)
290{
291 int filetype = dirent->name_len >> 8;
292 int should_be = EXT2_FT_UNKNOWN;
293 struct ext2_inode inode;
294
295 if (!(ctx->fs->super->s_feature_incompat &
Theodore Ts'o7847c1d1999-10-22 15:11:42 +0000296 EXT2_FEATURE_INCOMPAT_FILETYPE)) {
297 if (filetype == 0 ||
298 !fix_problem(ctx, PR_2_CLEAR_FILETYPE, pctx))
299 return 0;
300 dirent->name_len = dirent->name_len & 0xFF;
301 return 1;
302 }
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000303
304 if (ext2fs_test_inode_bitmap(ctx->inode_dir_map, dirent->inode)) {
305 should_be = EXT2_FT_DIR;
306 } else if (ext2fs_test_inode_bitmap(ctx->inode_reg_map,
307 dirent->inode)) {
308 should_be = EXT2_FT_REG_FILE;
309 } else if (ctx->inode_bad_map &&
310 ext2fs_test_inode_bitmap(ctx->inode_bad_map,
311 dirent->inode))
312 should_be = 0;
313 else {
314 e2fsck_read_inode(ctx, dirent->inode, &inode,
315 "check_filetype");
Theodore Ts'o6fdc7a31999-11-10 13:34:40 +0000316 should_be = ext2_file_type(inode.i_mode);
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000317 }
318 if (filetype == should_be)
319 return 0;
320 pctx->num = should_be;
321
322 if (fix_problem(ctx, filetype ? PR_2_BAD_FILETYPE : PR_2_SET_FILETYPE,
323 pctx) == 0)
324 return 0;
325
326 dirent->name_len = (dirent->name_len & 0xFF) | should_be << 8;
327 return 1;
328}
329
330
Theodore Ts'o3839e651997-04-26 13:21:57 +0000331static int check_dir_block(ext2_filsys fs,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000332 struct ext2_db_entry *db,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000333 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000334{
335 struct dir_info *subdir, *dir;
336 struct ext2_dir_entry *dirent;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000337 int offset = 0;
338 int dir_modified = 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000339 int dot_state;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000340 blk_t block_nr = db->blk;
341 ino_t ino = db->ino;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000342 __u16 links;
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000343 struct check_dir_struct *cd;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000344 char *buf;
345 e2fsck_t ctx;
346 int problem;
347
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000348 cd = (struct check_dir_struct *) priv_data;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000349 buf = cd->buf;
350 ctx = cd->ctx;
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000351
352 if (ctx->progress)
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000353 if ((ctx->progress)(ctx, 2, cd->count++, cd->max))
354 return DIRENT_ABORT;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000355
Theodore Ts'o3839e651997-04-26 13:21:57 +0000356 /*
357 * Make sure the inode is still in use (could have been
358 * deleted in the duplicate/bad blocks pass.
359 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000360 if (!(ext2fs_test_inode_bitmap(ctx->inode_used_map, ino)))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000361 return 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000362
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000363 cd->pctx.ino = ino;
364 cd->pctx.blk = block_nr;
365 cd->pctx.blkcount = db->blockcnt;
366 cd->pctx.ino2 = 0;
367 cd->pctx.dirent = 0;
368 cd->pctx.num = 0;
369
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000370 if (db->blk == 0) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000371 if (allocate_dir_block(ctx, db, buf, &cd->pctx))
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000372 return 0;
373 block_nr = db->blk;
374 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000375
376 if (db->blockcnt)
377 dot_state = 2;
378 else
379 dot_state = 0;
380
381#if 0
Theodore Ts'of3db3561997-04-26 13:34:30 +0000382 printf("In process_dir_block block %lu, #%d, inode %lu\n", block_nr,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000383 db->blockcnt, ino);
384#endif
385
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000386 cd->pctx.errcode = ext2fs_read_dir_block(fs, block_nr, buf);
387 if (cd->pctx.errcode) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000388 if (!fix_problem(ctx, PR_2_READ_DIRBLOCK, &cd->pctx)) {
389 ctx->flags |= E2F_FLAG_ABORT;
390 return DIRENT_ABORT;
391 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000392 memset(buf, 0, fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000393 }
394
395 do {
396 dot_state++;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000397 problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000398 dirent = (struct ext2_dir_entry *) (buf + offset);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000399 cd->pctx.dirent = dirent;
400 cd->pctx.num = offset;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000401 if (((offset + dirent->rec_len) > fs->blocksize) ||
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000402 (dirent->rec_len < 12) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000403 ((dirent->rec_len % 4) != 0) ||
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000404 (((dirent->name_len & 0xFF)+8) > dirent->rec_len)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000405 if (fix_problem(ctx, PR_2_DIR_CORRUPTED, &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000406 dirent->rec_len = fs->blocksize - offset;
407 dirent->name_len = 0;
408 dirent->inode = 0;
409 dir_modified++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000410 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +0000411 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000412 }
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000413 if ((dirent->name_len & 0xFF) > EXT2_NAME_LEN) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000414 if (fix_problem(ctx, PR_2_FILENAME_LONG, &cd->pctx)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000415 dirent->name_len = EXT2_NAME_LEN;
416 dir_modified++;
417 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000418 }
419
Theodore Ts'o3839e651997-04-26 13:21:57 +0000420 if (dot_state == 1) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000421 if (check_dot(ctx, dirent, ino, &cd->pctx))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000422 dir_modified++;
423 } else if (dot_state == 2) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000424 dir = e2fsck_get_dir_info(ctx, ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000425 if (!dir) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000426 fix_problem(ctx, PR_2_NO_DIRINFO, &cd->pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000427 ctx->flags |= E2F_FLAG_ABORT;
428 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000429 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000430 if (check_dotdot(ctx, dirent, dir, &cd->pctx))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000431 dir_modified++;
432 } else if (dirent->inode == ino) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000433 problem = PR_2_LINK_DOT;
434 if (fix_problem(ctx, PR_2_LINK_DOT, &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000435 dirent->inode = 0;
436 dir_modified++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000437 goto next;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000438 }
439 }
440 if (!dirent->inode)
441 goto next;
442
Theodore Ts'o3839e651997-04-26 13:21:57 +0000443 /*
444 * Make sure the inode listed is a legal one.
445 */
446 if (((dirent->inode != EXT2_ROOT_INO) &&
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000447 (dirent->inode < EXT2_FIRST_INODE(fs->super))) ||
Theodore Ts'o3839e651997-04-26 13:21:57 +0000448 (dirent->inode > fs->super->s_inodes_count)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000449 problem = PR_2_BAD_INO;
450 } else if (!(ext2fs_test_inode_bitmap(ctx->inode_used_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000451 dirent->inode))) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000452 /*
453 * If the inode is unused, offer to clear it.
454 */
455 problem = PR_2_UNUSED_INODE;
456 } else if (ctx->inode_bb_map &&
457 (ext2fs_test_inode_bitmap(ctx->inode_bb_map,
458 dirent->inode))) {
459 /*
460 * If the inode is in a bad block, offer to
461 * clear it.
462 */
463 problem = PR_2_BB_INODE;
464 } else if ((dot_state > 2) &&
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000465 ((dirent->name_len & 0xFF) == 1) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000466 (dirent->name[0] == '.')) {
467 /*
468 * If there's a '.' entry in anything other
469 * than the first directory entry, it's a
470 * duplicate entry that should be removed.
471 */
472 problem = PR_2_DUP_DOT;
473 } else if ((dot_state > 2) &&
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000474 ((dirent->name_len & 0xFF) == 2) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000475 (dirent->name[0] == '.') &&
476 (dirent->name[1] == '.')) {
477 /*
478 * If there's a '..' entry in anything other
479 * than the second directory entry, it's a
480 * duplicate entry that should be removed.
481 */
482 problem = PR_2_DUP_DOT_DOT;
483 } else if ((dot_state > 2) &&
484 (dirent->inode == EXT2_ROOT_INO)) {
485 /*
486 * Don't allow links to the root directory.
487 * We check this specially to make sure we
488 * catch this error case even if the root
489 * directory hasn't been created yet.
490 */
491 problem = PR_2_LINK_ROOT;
Theodore Ts'oc40db6d1999-10-25 21:03:34 +0000492 } else if ((dot_state > 2) &&
493 (dirent->name_len & 0xFF) == 0) {
494 /*
495 * Don't allow zero-length directory names.
496 */
497 problem = PR_2_NULL_NAME;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000498 }
499
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000500 if (problem) {
501 if (fix_problem(ctx, problem, &cd->pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000502 dirent->inode = 0;
503 dir_modified++;
504 goto next;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000505 } else {
506 ext2fs_unmark_valid(fs);
507 if (problem == PR_2_BAD_INO)
508 goto next;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000509 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000510 }
511
512 /*
513 * If the inode was marked as having bad fields in
514 * pass1, process it and offer to fix/clear it.
515 * (We wait until now so that we can display the
516 * pathname to the user.)
517 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000518 if (ctx->inode_bad_map &&
519 ext2fs_test_inode_bitmap(ctx->inode_bad_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000520 dirent->inode)) {
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000521 if (e2fsck_process_bad_inode(ctx, ino,
522 dirent->inode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000523 dirent->inode = 0;
524 dir_modified++;
525 goto next;
526 }
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000527 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000528 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000529 }
530
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000531 if (check_name(ctx, dirent, ino, &cd->pctx))
532 dir_modified++;
533
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000534 if (check_filetype(ctx, dirent, ino, &cd->pctx))
535 dir_modified++;
536
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000537 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000538 * If this is a directory, then mark its parent in its
539 * dir_info structure. If the parent field is already
540 * filled in, then this directory has more than one
541 * hard link. We assume the first link is correct,
542 * and ask the user if he/she wants to clear this one.
543 */
544 if ((dot_state > 2) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000545 (ext2fs_test_inode_bitmap(ctx->inode_dir_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000546 dirent->inode))) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000547 subdir = e2fsck_get_dir_info(ctx, dirent->inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000548 if (!subdir) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000549 cd->pctx.ino = dirent->inode;
550 fix_problem(ctx, PR_2_NO_DIRINFO, &cd->pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000551 ctx->flags |= E2F_FLAG_ABORT;
552 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000553 }
554 if (subdir->parent) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000555 cd->pctx.ino2 = subdir->parent;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000556 if (fix_problem(ctx, PR_2_LINK_DIR,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000557 &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000558 dirent->inode = 0;
559 dir_modified++;
560 goto next;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000561 }
562 cd->pctx.ino2 = 0;
563 } else
564 subdir->parent = ino;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000565 }
566
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000567 ext2fs_icount_increment(ctx->inode_count, dirent->inode,
568 &links);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000569 if (links > 1)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000570 ctx->fs_links_count++;
571 ctx->fs_total_count++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000572 next:
573 offset += dirent->rec_len;
574 } while (offset < fs->blocksize);
575#if 0
576 printf("\n");
577#endif
578 if (offset != fs->blocksize) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000579 cd->pctx.num = dirent->rec_len - fs->blocksize + offset;
580 if (fix_problem(ctx, PR_2_FINAL_RECLEN, &cd->pctx)) {
581 dirent->rec_len = cd->pctx.num;
582 dir_modified++;
583 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000584 }
585 if (dir_modified) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000586 cd->pctx.errcode = ext2fs_write_dir_block(fs, block_nr, buf);
587 if (cd->pctx.errcode) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000588 if (!fix_problem(ctx, PR_2_WRITE_DIRBLOCK,
589 &cd->pctx)) {
590 ctx->flags |= E2F_FLAG_ABORT;
591 return DIRENT_ABORT;
592 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000593 }
594 ext2fs_mark_changed(fs);
595 }
596 return 0;
597}
598
599/*
600 * This function is called to deallocate a block, and is an interator
601 * functioned called by deallocate inode via ext2fs_iterate_block().
602 */
603static int deallocate_inode_block(ext2_filsys fs,
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000604 blk_t *block_nr,
605 e2_blkcnt_t blockcnt,
606 blk_t ref_block,
607 int ref_offset,
608 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000609{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000610 e2fsck_t ctx = (e2fsck_t) priv_data;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000611
Theodore Ts'o19178752000-02-11 15:55:07 +0000612 if (HOLE_BLKADDR(*block_nr))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000613 return 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000614 ext2fs_unmark_block_bitmap(ctx->block_found_map, *block_nr);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000615 ext2fs_unmark_block_bitmap(fs->block_map, *block_nr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000616 return 0;
617}
618
619/*
620 * This fuction deallocates an inode
621 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000622static void deallocate_inode(e2fsck_t ctx, ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000623 char* block_buf)
624{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000625 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000626 struct ext2_inode inode;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000627 struct problem_context pctx;
628
629 ext2fs_icount_store(ctx->inode_link_info, ino, 0);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000630 e2fsck_read_inode(ctx, ino, &inode, "deallocate_inode");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000631 inode.i_links_count = 0;
632 inode.i_dtime = time(0);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000633 e2fsck_write_inode(ctx, ino, &inode, "deallocate_inode");
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000634 clear_problem_context(&pctx);
635 pctx.ino = ino;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000636
Theodore Ts'o3839e651997-04-26 13:21:57 +0000637 /*
638 * Fix up the bitmaps...
639 */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000640 e2fsck_read_bitmaps(ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000641 ext2fs_unmark_inode_bitmap(ctx->inode_used_map, ino);
642 ext2fs_unmark_inode_bitmap(ctx->inode_dir_map, ino);
643 if (ctx->inode_bad_map)
644 ext2fs_unmark_inode_bitmap(ctx->inode_bad_map, ino);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000645 ext2fs_unmark_inode_bitmap(fs->inode_map, ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000646 ext2fs_mark_ib_dirty(fs);
647
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000648 if (!ext2fs_inode_has_valid_blocks(&inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000649 return;
650
651 ext2fs_mark_bb_dirty(fs);
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000652 pctx.errcode = ext2fs_block_iterate2(fs, ino, 0, block_buf,
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000653 deallocate_inode_block, ctx);
654 if (pctx.errcode) {
655 fix_problem(ctx, PR_2_DEALLOC_INODE, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000656 ctx->flags |= E2F_FLAG_ABORT;
657 return;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000658 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000659}
660
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000661extern int e2fsck_process_bad_inode(e2fsck_t ctx, ino_t dir, ino_t ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000662{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000663 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000664 struct ext2_inode inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000665 int inode_modified = 0;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000666 unsigned char *frag, *fsize;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000667 struct problem_context pctx;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000668 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000669
Theodore Ts'o08b21301997-11-03 19:42:40 +0000670 e2fsck_read_inode(ctx, ino, &inode, "process_bad_inode");
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000671
672 clear_problem_context(&pctx);
673 pctx.ino = ino;
674 pctx.dir = dir;
675 pctx.inode = &inode;
676
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000677 if (!LINUX_S_ISDIR(inode.i_mode) && !LINUX_S_ISREG(inode.i_mode) &&
678 !LINUX_S_ISCHR(inode.i_mode) && !LINUX_S_ISBLK(inode.i_mode) &&
679 !LINUX_S_ISLNK(inode.i_mode) && !LINUX_S_ISFIFO(inode.i_mode) &&
Theodore Ts'o08b21301997-11-03 19:42:40 +0000680 !(LINUX_S_ISSOCK(inode.i_mode)))
681 problem = PR_2_BAD_MODE;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000682
683 if (LINUX_S_ISCHR(inode.i_mode)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000684 && !e2fsck_pass1_check_device_inode(&inode))
685 problem = PR_2_BAD_CHAR_DEV;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000686
687 if (LINUX_S_ISBLK(inode.i_mode)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000688 && !e2fsck_pass1_check_device_inode(&inode))
689 problem = PR_2_BAD_BLOCK_DEV;
690
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000691 if (LINUX_S_ISFIFO(inode.i_mode)
692 && !e2fsck_pass1_check_device_inode(&inode))
693 problem = PR_2_BAD_FIFO;
694
695 if (LINUX_S_ISSOCK(inode.i_mode)
696 && !e2fsck_pass1_check_device_inode(&inode))
697 problem = PR_2_BAD_SOCKET;
698
Theodore Ts'o08b21301997-11-03 19:42:40 +0000699 if (problem) {
700 if (fix_problem(ctx, problem, &pctx)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000701 deallocate_inode(ctx, ino, 0);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000702 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000703 return 0;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000704 return 1;
705 }
Theodore Ts'o08b21301997-11-03 19:42:40 +0000706 problem = 0;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000707 }
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000708
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000709 if (inode.i_faddr &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000710 fix_problem(ctx, PR_2_FADDR_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000711 inode.i_faddr = 0;
712 inode_modified++;
713 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000714
715 switch (fs->super->s_creator_os) {
716 case EXT2_OS_LINUX:
717 frag = &inode.osd2.linux2.l_i_frag;
718 fsize = &inode.osd2.linux2.l_i_fsize;
719 break;
720 case EXT2_OS_HURD:
721 frag = &inode.osd2.hurd2.h_i_frag;
722 fsize = &inode.osd2.hurd2.h_i_fsize;
723 break;
724 case EXT2_OS_MASIX:
725 frag = &inode.osd2.masix2.m_i_frag;
726 fsize = &inode.osd2.masix2.m_i_fsize;
727 break;
728 default:
729 frag = fsize = 0;
730 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000731 if (frag && *frag) {
732 pctx.num = *frag;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000733 if (fix_problem(ctx, PR_2_FRAG_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000734 *frag = 0;
735 inode_modified++;
736 }
737 pctx.num = 0;
738 }
739 if (fsize && *fsize) {
740 pctx.num = *fsize;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000741 if (fix_problem(ctx, PR_2_FSIZE_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000742 *fsize = 0;
743 inode_modified++;
744 }
745 pctx.num = 0;
746 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000747
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000748 if (inode.i_file_acl &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000749 fix_problem(ctx, PR_2_FILE_ACL_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000750 inode.i_file_acl = 0;
751 inode_modified++;
752 }
753 if (inode.i_dir_acl &&
Theodore Ts'o246501c1998-03-24 16:22:38 +0000754 LINUX_S_ISDIR(inode.i_mode) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000755 fix_problem(ctx, PR_2_DIR_ACL_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000756 inode.i_dir_acl = 0;
757 inode_modified++;
758 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000759 if (inode_modified)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000760 e2fsck_write_inode(ctx, ino, &inode, "process_bad_inode");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000761 return 0;
762}
763
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000764
765/*
766 * allocate_dir_block --- this function allocates a new directory
767 * block for a particular inode; this is done if a directory has
768 * a "hole" in it, or if a directory has a illegal block number
769 * that was zeroed out and now needs to be replaced.
770 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000771static int allocate_dir_block(e2fsck_t ctx,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000772 struct ext2_db_entry *db,
773 char *buf, struct problem_context *pctx)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000774{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000775 ext2_filsys fs = ctx->fs;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000776 blk_t blk;
777 char *block;
778 struct ext2_inode inode;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000779
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000780 if (fix_problem(ctx, PR_2_DIRECTORY_HOLE, pctx) == 0)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000781 return 1;
782
783 /*
784 * Read the inode and block bitmaps in; we'll be messing with
785 * them.
786 */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000787 e2fsck_read_bitmaps(ctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000788
789 /*
790 * First, find a free block
791 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000792 pctx->errcode = ext2fs_new_block(fs, 0, ctx->block_found_map, &blk);
793 if (pctx->errcode) {
794 pctx->str = "ext2fs_new_block";
795 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000796 return 1;
797 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000798 ext2fs_mark_block_bitmap(ctx->block_found_map, blk);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000799 ext2fs_mark_block_bitmap(fs->block_map, blk);
800 ext2fs_mark_bb_dirty(fs);
801
802 /*
803 * Now let's create the actual data block for the inode
804 */
805 if (db->blockcnt)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000806 pctx->errcode = ext2fs_new_dir_block(fs, 0, 0, &block);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000807 else
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000808 pctx->errcode = ext2fs_new_dir_block(fs, db->ino,
809 EXT2_ROOT_INO, &block);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000810
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000811 if (pctx->errcode) {
812 pctx->str = "ext2fs_new_dir_block";
813 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000814 return 1;
815 }
816
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000817 pctx->errcode = ext2fs_write_dir_block(fs, blk, block);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000818 ext2fs_free_mem((void **) &block);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000819 if (pctx->errcode) {
820 pctx->str = "ext2fs_write_dir_block";
821 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000822 return 1;
823 }
824
825 /*
826 * Update the inode block count
827 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000828 e2fsck_read_inode(ctx, db->ino, &inode, "allocate_dir_block");
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000829 inode.i_blocks += fs->blocksize / 512;
830 if (inode.i_size < (db->blockcnt+1) * fs->blocksize)
831 inode.i_size = (db->blockcnt+1) * fs->blocksize;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000832 e2fsck_write_inode(ctx, db->ino, &inode, "allocate_dir_block");
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000833
834 /*
835 * Finally, update the block pointers for the inode
836 */
837 db->blk = blk;
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000838 pctx->errcode = ext2fs_block_iterate2(fs, db->ino, BLOCK_FLAG_HOLE,
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000839 0, update_dir_block, db);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000840 if (pctx->errcode) {
841 pctx->str = "ext2fs_block_iterate";
842 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000843 return 1;
844 }
845
846 return 0;
847}
848
849/*
850 * This is a helper function for allocate_dir_block().
851 */
852static int update_dir_block(ext2_filsys fs,
853 blk_t *block_nr,
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000854 e2_blkcnt_t blockcnt,
855 blk_t ref_block,
856 int ref_offset,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000857 void *priv_data)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000858{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000859 struct ext2_db_entry *db;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000860
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000861 db = (struct ext2_db_entry *) priv_data;
Theodore Ts'o133a56d2000-11-17 05:40:49 +0000862 if (db->blockcnt == (int) blockcnt) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000863 *block_nr = db->blk;
864 return BLOCK_CHANGED;
865 }
866 return 0;
867}