blob: f52bc2eee407d34cd20e8e71d5aca187a3a902da [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
41 */
42
Theodore Ts'o3839e651997-04-26 13:21:57 +000043#include "e2fsck.h"
Theodore Ts'o21c84b71997-04-29 16:15:03 +000044#include "problem.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000045
46/*
47 * Keeps track of how many times an inode is referenced.
48 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000049static void deallocate_inode(e2fsck_t ctx, ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +000050 char* block_buf);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000051static int process_bad_inode(e2fsck_t ctx, ino_t dir, ino_t ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +000052static int check_dir_block(ext2_filsys fs,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000053 struct ext2_db_entry *dir_blocks_info,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000054 void *priv_data);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000055static int allocate_dir_block(e2fsck_t ctx,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000056 struct ext2_db_entry *dir_blocks_info,
57 char *buf, struct problem_context *pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +000058static int update_dir_block(ext2_filsys fs,
59 blk_t *block_nr,
60 int blockcnt,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000061 void *priv_data);
Theodore Ts'o3839e651997-04-26 13:21:57 +000062
Theodore Ts'o21c84b71997-04-29 16:15:03 +000063struct check_dir_struct {
64 char *buf;
65 struct problem_context pctx;
Theodore Ts'of8188ff1997-11-14 05:23:04 +000066 int count, max;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000067 e2fsck_t ctx;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000068};
69
Theodore Ts'o08b21301997-11-03 19:42:40 +000070void e2fsck_pass2(e2fsck_t ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +000071{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000072 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +000073 char *buf;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000074#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +000075 struct resource_track rtrack;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000076#endif
Theodore Ts'o21c84b71997-04-29 16:15:03 +000077 struct dir_info *dir;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000078 struct check_dir_struct cd;
79
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000080#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +000081 init_resource_track(&rtrack);
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000082#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000083
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000084 clear_problem_context(&cd.pctx);
85
Theodore Ts'o3839e651997-04-26 13:21:57 +000086#ifdef MTRACE
87 mtrace_print("Pass 2");
88#endif
89
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000090 if (!(ctx->options & E2F_OPT_PREEN))
91 fix_problem(ctx, PR_2_PASS_HEADER, &cd.pctx);
92
93 cd.pctx.errcode = ext2fs_create_icount2(fs, EXT2_ICOUNT_OPT_INCREMENT,
94 0, ctx->inode_link_info,
95 &ctx->inode_count);
96 if (cd.pctx.errcode) {
97 fix_problem(ctx, PR_2_ALLOCATE_ICOUNT, &cd.pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +000098 ctx->flags |= E2F_FLAG_ABORT;
99 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000100 }
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000101 buf = (char *) e2fsck_allocate_memory(ctx, fs->blocksize,
102 "directory scan buffer");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000103
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000104 /*
105 * Set up the parent pointer for the root directory, if
106 * present. (If the root directory is not present, we will
107 * create it in pass 3.)
108 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000109 dir = e2fsck_get_dir_info(ctx, EXT2_ROOT_INO);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000110 if (dir)
111 dir->parent = EXT2_ROOT_INO;
112
113 cd.buf = buf;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000114 cd.ctx = ctx;
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000115 cd.count = 0;
116 cd.max = ext2fs_dblist_count(fs->dblist);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000117
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000118 cd.pctx.errcode = ext2fs_dblist_iterate(fs->dblist, check_dir_block,
119 &cd);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000120 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000121 return;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000122 if (cd.pctx.errcode) {
123 fix_problem(ctx, PR_2_DBLIST_ITERATE, &cd.pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000124 ctx->flags |= E2F_FLAG_ABORT;
125 return;
Theodore Ts'o7ac02a51997-06-11 18:32:35 +0000126 }
127
Theodore Ts'o08b21301997-11-03 19:42:40 +0000128 ext2fs_free_mem((void **) &buf);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000129 ext2fs_free_dblist(fs->dblist);
130
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000131 if (ctx->inode_bad_map) {
132 ext2fs_free_inode_bitmap(ctx->inode_bad_map);
133 ctx->inode_bad_map = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000134 }
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000135#ifdef RESOURCE_TRACK
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000136 if (ctx->options & E2F_OPT_TIME2)
137 print_resource_track("Pass 2", &rtrack);
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000138#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000139}
140
141/*
142 * Make sure the first entry in the directory is '.', and that the
143 * directory entry is sane.
144 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000145static int check_dot(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000146 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000147 ino_t ino, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000148{
149 struct ext2_dir_entry *nextdir;
150 int status = 0;
151 int created = 0;
152 int new_len;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000153 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000154
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000155 if (!dirent->inode)
156 problem = PR_2_MISSING_DOT;
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000157 else if (((dirent->name_len & 0xFF) != 1) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000158 (dirent->name[0] != '.'))
159 problem = PR_2_1ST_NOT_DOT;
160 else if (dirent->name[1] != '\0')
161 problem = PR_2_DOT_NULL_TERM;
162
163 if (problem) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000164 if (fix_problem(ctx, problem, pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000165 if (dirent->rec_len < 12)
166 dirent->rec_len = 12;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000167 dirent->inode = ino;
168 dirent->name_len = 1;
169 dirent->name[0] = '.';
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000170 dirent->name[1] = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000171 status = 1;
172 created = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000173 }
174 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000175 if (dirent->inode != ino) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000176 if (fix_problem(ctx, PR_2_BAD_INODE_DOT, pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000177 dirent->inode = ino;
178 status = 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000179 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000180 }
181 if (dirent->rec_len > 12) {
182 new_len = dirent->rec_len - 12;
183 if (new_len > 12) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000184 if (created ||
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000185 fix_problem(ctx, PR_2_SPLIT_DOT, pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000186 nextdir = (struct ext2_dir_entry *)
187 ((char *) dirent + 12);
188 dirent->rec_len = 12;
189 nextdir->rec_len = new_len;
190 nextdir->inode = 0;
191 nextdir->name_len = 0;
192 status = 1;
193 }
194 }
195 }
196 return status;
197}
198
199/*
200 * Make sure the second entry in the directory is '..', and that the
201 * directory entry is sane. We do not check the inode number of '..'
202 * here; this gets done in pass 3.
203 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000204static int check_dotdot(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000205 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000206 struct dir_info *dir, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000207{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000208 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000209
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000210 if (!dirent->inode)
211 problem = PR_2_MISSING_DOT_DOT;
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000212 else if (((dirent->name_len & 0xFF) != 2) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000213 (dirent->name[0] != '.') ||
214 (dirent->name[1] != '.'))
215 problem = PR_2_2ND_NOT_DOT_DOT;
216 else if (dirent->name[2] != '\0')
217 problem = PR_2_DOT_DOT_NULL_TERM;
218
219 if (problem) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000220 if (fix_problem(ctx, problem, pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000221 if (dirent->rec_len < 12)
222 dirent->rec_len = 12;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000223 /*
224 * Note: we don't have the parent inode just
225 * yet, so we will fill it in with the root
226 * inode. This will get fixed in pass 3.
227 */
228 dirent->inode = EXT2_ROOT_INO;
229 dirent->name_len = 2;
230 dirent->name[0] = '.';
231 dirent->name[1] = '.';
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000232 dirent->name[2] = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000233 return 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000234 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000235 return 0;
236 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000237 dir->dotdot = dirent->inode;
238 return 0;
239}
240
241/*
242 * Check to make sure a directory entry doesn't contain any illegal
243 * characters.
244 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000245static int check_name(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000246 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000247 ino_t dir_ino, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248{
249 int i;
250 int fixup = -1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000251 int ret = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000252
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000253 for ( i = 0; i < (dirent->name_len & 0xFF); i++) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000254 if (dirent->name[i] == '/' || dirent->name[i] == '\0') {
255 if (fixup < 0) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000256 fixup = fix_problem(ctx, PR_2_BAD_NAME, pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000257 }
258 if (fixup) {
259 dirent->name[i] = '.';
260 ret = 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000261 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000262 }
263 }
264 return ret;
265}
266
267static int check_dir_block(ext2_filsys fs,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000268 struct ext2_db_entry *db,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000269 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000270{
271 struct dir_info *subdir, *dir;
272 struct ext2_dir_entry *dirent;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000273 int offset = 0;
274 int dir_modified = 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000275 int dot_state;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000276 blk_t block_nr = db->blk;
277 ino_t ino = db->ino;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000278 __u16 links;
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000279 struct check_dir_struct *cd;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000280 char *buf;
281 e2fsck_t ctx;
282 int problem;
283
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000284 cd = (struct check_dir_struct *) priv_data;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000285 buf = cd->buf;
286 ctx = cd->ctx;
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000287
288 if (ctx->progress)
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000289 if ((ctx->progress)(ctx, 2, cd->count++, cd->max))
290 return DIRENT_ABORT;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000291
Theodore Ts'o3839e651997-04-26 13:21:57 +0000292 /*
293 * Make sure the inode is still in use (could have been
294 * deleted in the duplicate/bad blocks pass.
295 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000296 if (!(ext2fs_test_inode_bitmap(ctx->inode_used_map, ino)))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000297 return 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000298
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000299 cd->pctx.ino = ino;
300 cd->pctx.blk = block_nr;
301 cd->pctx.blkcount = db->blockcnt;
302 cd->pctx.ino2 = 0;
303 cd->pctx.dirent = 0;
304 cd->pctx.num = 0;
305
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000306 if (db->blk == 0) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000307 if (allocate_dir_block(ctx, db, buf, &cd->pctx))
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000308 return 0;
309 block_nr = db->blk;
310 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000311
312 if (db->blockcnt)
313 dot_state = 2;
314 else
315 dot_state = 0;
316
317#if 0
Theodore Ts'of3db3561997-04-26 13:34:30 +0000318 printf("In process_dir_block block %lu, #%d, inode %lu\n", block_nr,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000319 db->blockcnt, ino);
320#endif
321
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000322 cd->pctx.errcode = ext2fs_read_dir_block(fs, block_nr, buf);
323 if (cd->pctx.errcode) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000324 if (!fix_problem(ctx, PR_2_READ_DIRBLOCK, &cd->pctx)) {
325 ctx->flags |= E2F_FLAG_ABORT;
326 return DIRENT_ABORT;
327 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000328 memset(buf, 0, fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000329 }
330
331 do {
332 dot_state++;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000333 problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000334 dirent = (struct ext2_dir_entry *) (buf + offset);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000335 cd->pctx.dirent = dirent;
336 cd->pctx.num = offset;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000337 if (((offset + dirent->rec_len) > fs->blocksize) ||
338 (dirent->rec_len < 8) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000339 ((dirent->rec_len % 4) != 0) ||
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000340 (((dirent->name_len & 0xFF)+8) > dirent->rec_len)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000341 if (fix_problem(ctx, PR_2_DIR_CORRUPTED, &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000342 dirent->rec_len = fs->blocksize - offset;
343 dirent->name_len = 0;
344 dirent->inode = 0;
345 dir_modified++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000346 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +0000347 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000348 }
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000349 if ((dirent->name_len & 0xFF) > EXT2_NAME_LEN) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000350 if (fix_problem(ctx, PR_2_FILENAME_LONG, &cd->pctx)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000351 dirent->name_len = EXT2_NAME_LEN;
352 dir_modified++;
353 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000354 }
355
Theodore Ts'o3839e651997-04-26 13:21:57 +0000356 if (dot_state == 1) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000357 if (check_dot(ctx, dirent, ino, &cd->pctx))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000358 dir_modified++;
359 } else if (dot_state == 2) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000360 dir = e2fsck_get_dir_info(ctx, ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000361 if (!dir) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000362 fix_problem(ctx, PR_2_NO_DIRINFO, &cd->pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000363 ctx->flags |= E2F_FLAG_ABORT;
364 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000365 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000366 if (check_dotdot(ctx, dirent, dir, &cd->pctx))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000367 dir_modified++;
368 } else if (dirent->inode == ino) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000369 problem = PR_2_LINK_DOT;
370 if (fix_problem(ctx, PR_2_LINK_DOT, &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000371 dirent->inode = 0;
372 dir_modified++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000373 goto next;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000374 }
375 }
376 if (!dirent->inode)
377 goto next;
378
Theodore Ts'o3839e651997-04-26 13:21:57 +0000379 /*
380 * Make sure the inode listed is a legal one.
381 */
382 if (((dirent->inode != EXT2_ROOT_INO) &&
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000383 (dirent->inode < EXT2_FIRST_INODE(fs->super))) ||
Theodore Ts'o3839e651997-04-26 13:21:57 +0000384 (dirent->inode > fs->super->s_inodes_count)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000385 problem = PR_2_BAD_INO;
386 } else if (!(ext2fs_test_inode_bitmap(ctx->inode_used_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000387 dirent->inode))) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000388 /*
389 * If the inode is unused, offer to clear it.
390 */
391 problem = PR_2_UNUSED_INODE;
392 } else if (ctx->inode_bb_map &&
393 (ext2fs_test_inode_bitmap(ctx->inode_bb_map,
394 dirent->inode))) {
395 /*
396 * If the inode is in a bad block, offer to
397 * clear it.
398 */
399 problem = PR_2_BB_INODE;
400 } else if ((dot_state > 2) &&
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000401 ((dirent->name_len & 0xFF) == 1) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000402 (dirent->name[0] == '.')) {
403 /*
404 * If there's a '.' entry in anything other
405 * than the first directory entry, it's a
406 * duplicate entry that should be removed.
407 */
408 problem = PR_2_DUP_DOT;
409 } else if ((dot_state > 2) &&
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000410 ((dirent->name_len & 0xFF) == 2) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000411 (dirent->name[0] == '.') &&
412 (dirent->name[1] == '.')) {
413 /*
414 * If there's a '..' entry in anything other
415 * than the second directory entry, it's a
416 * duplicate entry that should be removed.
417 */
418 problem = PR_2_DUP_DOT_DOT;
419 } else if ((dot_state > 2) &&
420 (dirent->inode == EXT2_ROOT_INO)) {
421 /*
422 * Don't allow links to the root directory.
423 * We check this specially to make sure we
424 * catch this error case even if the root
425 * directory hasn't been created yet.
426 */
427 problem = PR_2_LINK_ROOT;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000428 }
429
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000430 if (problem) {
431 if (fix_problem(ctx, problem, &cd->pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000432 dirent->inode = 0;
433 dir_modified++;
434 goto next;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000435 } else {
436 ext2fs_unmark_valid(fs);
437 if (problem == PR_2_BAD_INO)
438 goto next;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000439 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000440 }
441
442 /*
443 * If the inode was marked as having bad fields in
444 * pass1, process it and offer to fix/clear it.
445 * (We wait until now so that we can display the
446 * pathname to the user.)
447 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000448 if (ctx->inode_bad_map &&
449 ext2fs_test_inode_bitmap(ctx->inode_bad_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000450 dirent->inode)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000451 if (process_bad_inode(ctx, ino, dirent->inode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000452 dirent->inode = 0;
453 dir_modified++;
454 goto next;
455 }
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000456 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000457 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000458 }
459
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000460 if (check_name(ctx, dirent, ino, &cd->pctx))
461 dir_modified++;
462
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000463 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000464 * If this is a directory, then mark its parent in its
465 * dir_info structure. If the parent field is already
466 * filled in, then this directory has more than one
467 * hard link. We assume the first link is correct,
468 * and ask the user if he/she wants to clear this one.
469 */
470 if ((dot_state > 2) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000471 (ext2fs_test_inode_bitmap(ctx->inode_dir_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000472 dirent->inode))) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000473 subdir = e2fsck_get_dir_info(ctx, dirent->inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000474 if (!subdir) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000475 cd->pctx.ino = dirent->inode;
476 fix_problem(ctx, PR_2_NO_DIRINFO, &cd->pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000477 ctx->flags |= E2F_FLAG_ABORT;
478 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000479 }
480 if (subdir->parent) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000481 cd->pctx.ino2 = subdir->parent;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000482 if (fix_problem(ctx, PR_2_LINK_DIR,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000483 &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000484 dirent->inode = 0;
485 dir_modified++;
486 goto next;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000487 }
488 cd->pctx.ino2 = 0;
489 } else
490 subdir->parent = ino;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000491 }
492
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000493 ext2fs_icount_increment(ctx->inode_count, dirent->inode,
494 &links);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000495 if (links > 1)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000496 ctx->fs_links_count++;
497 ctx->fs_total_count++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000498 next:
499 offset += dirent->rec_len;
500 } while (offset < fs->blocksize);
501#if 0
502 printf("\n");
503#endif
504 if (offset != fs->blocksize) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000505 cd->pctx.num = dirent->rec_len - fs->blocksize + offset;
506 if (fix_problem(ctx, PR_2_FINAL_RECLEN, &cd->pctx)) {
507 dirent->rec_len = cd->pctx.num;
508 dir_modified++;
509 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000510 }
511 if (dir_modified) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000512 cd->pctx.errcode = ext2fs_write_dir_block(fs, block_nr, buf);
513 if (cd->pctx.errcode) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000514 if (!fix_problem(ctx, PR_2_WRITE_DIRBLOCK,
515 &cd->pctx)) {
516 ctx->flags |= E2F_FLAG_ABORT;
517 return DIRENT_ABORT;
518 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000519 }
520 ext2fs_mark_changed(fs);
521 }
522 return 0;
523}
524
525/*
526 * This function is called to deallocate a block, and is an interator
527 * functioned called by deallocate inode via ext2fs_iterate_block().
528 */
529static int deallocate_inode_block(ext2_filsys fs,
530 blk_t *block_nr,
531 int blockcnt,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000532 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000533{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000534 e2fsck_t ctx = (e2fsck_t) priv_data;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000535
Theodore Ts'o3839e651997-04-26 13:21:57 +0000536 if (!*block_nr)
537 return 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000538 ext2fs_unmark_block_bitmap(ctx->block_found_map, *block_nr);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000539 ext2fs_unmark_block_bitmap(fs->block_map, *block_nr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000540 return 0;
541}
542
543/*
544 * This fuction deallocates an inode
545 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000546static void deallocate_inode(e2fsck_t ctx, ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000547 char* block_buf)
548{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000549 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000550 struct ext2_inode inode;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000551 struct problem_context pctx;
552
553 ext2fs_icount_store(ctx->inode_link_info, ino, 0);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000554 e2fsck_read_inode(ctx, ino, &inode, "deallocate_inode");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000555 inode.i_links_count = 0;
556 inode.i_dtime = time(0);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000557 e2fsck_write_inode(ctx, ino, &inode, "deallocate_inode");
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000558 clear_problem_context(&pctx);
559 pctx.ino = ino;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000560
Theodore Ts'o3839e651997-04-26 13:21:57 +0000561 /*
562 * Fix up the bitmaps...
563 */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000564 e2fsck_read_bitmaps(ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000565 ext2fs_unmark_inode_bitmap(ctx->inode_used_map, ino);
566 ext2fs_unmark_inode_bitmap(ctx->inode_dir_map, ino);
567 if (ctx->inode_bad_map)
568 ext2fs_unmark_inode_bitmap(ctx->inode_bad_map, ino);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000569 ext2fs_unmark_inode_bitmap(fs->inode_map, ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000570 ext2fs_mark_ib_dirty(fs);
571
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000572 if (!ext2fs_inode_has_valid_blocks(&inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000573 return;
574
575 ext2fs_mark_bb_dirty(fs);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000576 pctx.errcode = ext2fs_block_iterate(fs, ino, 0, block_buf,
577 deallocate_inode_block, ctx);
578 if (pctx.errcode) {
579 fix_problem(ctx, PR_2_DEALLOC_INODE, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000580 ctx->flags |= E2F_FLAG_ABORT;
581 return;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000582 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000583}
584
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000585static int process_bad_inode(e2fsck_t ctx, ino_t dir, ino_t ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000586{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000587 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000588 struct ext2_inode inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000589 int inode_modified = 0;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000590 unsigned char *frag, *fsize;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000591 struct problem_context pctx;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000592 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000593
Theodore Ts'o08b21301997-11-03 19:42:40 +0000594 e2fsck_read_inode(ctx, ino, &inode, "process_bad_inode");
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000595
596 clear_problem_context(&pctx);
597 pctx.ino = ino;
598 pctx.dir = dir;
599 pctx.inode = &inode;
600
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000601 if (!LINUX_S_ISDIR(inode.i_mode) && !LINUX_S_ISREG(inode.i_mode) &&
602 !LINUX_S_ISCHR(inode.i_mode) && !LINUX_S_ISBLK(inode.i_mode) &&
603 !LINUX_S_ISLNK(inode.i_mode) && !LINUX_S_ISFIFO(inode.i_mode) &&
Theodore Ts'o08b21301997-11-03 19:42:40 +0000604 !(LINUX_S_ISSOCK(inode.i_mode)))
605 problem = PR_2_BAD_MODE;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000606
607 if (LINUX_S_ISCHR(inode.i_mode)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000608 && !e2fsck_pass1_check_device_inode(&inode))
609 problem = PR_2_BAD_CHAR_DEV;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000610
611 if (LINUX_S_ISBLK(inode.i_mode)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000612 && !e2fsck_pass1_check_device_inode(&inode))
613 problem = PR_2_BAD_BLOCK_DEV;
614
615 if (problem) {
616 if (fix_problem(ctx, problem, &pctx)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000617 deallocate_inode(ctx, ino, 0);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000618 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000619 return 0;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000620 return 1;
621 }
Theodore Ts'o08b21301997-11-03 19:42:40 +0000622 problem = 0;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000623 }
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000624
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000625 if (inode.i_faddr &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000626 fix_problem(ctx, PR_2_FADDR_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000627 inode.i_faddr = 0;
628 inode_modified++;
629 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000630
631 switch (fs->super->s_creator_os) {
632 case EXT2_OS_LINUX:
633 frag = &inode.osd2.linux2.l_i_frag;
634 fsize = &inode.osd2.linux2.l_i_fsize;
635 break;
636 case EXT2_OS_HURD:
637 frag = &inode.osd2.hurd2.h_i_frag;
638 fsize = &inode.osd2.hurd2.h_i_fsize;
639 break;
640 case EXT2_OS_MASIX:
641 frag = &inode.osd2.masix2.m_i_frag;
642 fsize = &inode.osd2.masix2.m_i_fsize;
643 break;
644 default:
645 frag = fsize = 0;
646 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000647 if (frag && *frag) {
648 pctx.num = *frag;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000649 if (fix_problem(ctx, PR_2_FRAG_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000650 *frag = 0;
651 inode_modified++;
652 }
653 pctx.num = 0;
654 }
655 if (fsize && *fsize) {
656 pctx.num = *fsize;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000657 if (fix_problem(ctx, PR_2_FSIZE_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000658 *fsize = 0;
659 inode_modified++;
660 }
661 pctx.num = 0;
662 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000663
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000664 if (inode.i_file_acl &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000665 fix_problem(ctx, PR_2_FILE_ACL_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000666 inode.i_file_acl = 0;
667 inode_modified++;
668 }
669 if (inode.i_dir_acl &&
Theodore Ts'o246501c1998-03-24 16:22:38 +0000670 LINUX_S_ISDIR(inode.i_mode) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000671 fix_problem(ctx, PR_2_DIR_ACL_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000672 inode.i_dir_acl = 0;
673 inode_modified++;
674 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000675 if (inode_modified)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000676 e2fsck_write_inode(ctx, ino, &inode, "process_bad_inode");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000677 return 0;
678}
679
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000680
681/*
682 * allocate_dir_block --- this function allocates a new directory
683 * block for a particular inode; this is done if a directory has
684 * a "hole" in it, or if a directory has a illegal block number
685 * that was zeroed out and now needs to be replaced.
686 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000687static int allocate_dir_block(e2fsck_t ctx,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000688 struct ext2_db_entry *db,
689 char *buf, struct problem_context *pctx)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000690{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000691 ext2_filsys fs = ctx->fs;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000692 blk_t blk;
693 char *block;
694 struct ext2_inode inode;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000695
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000696 if (fix_problem(ctx, PR_2_DIRECTORY_HOLE, pctx) == 0)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000697 return 1;
698
699 /*
700 * Read the inode and block bitmaps in; we'll be messing with
701 * them.
702 */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000703 e2fsck_read_bitmaps(ctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000704
705 /*
706 * First, find a free block
707 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000708 pctx->errcode = ext2fs_new_block(fs, 0, ctx->block_found_map, &blk);
709 if (pctx->errcode) {
710 pctx->str = "ext2fs_new_block";
711 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000712 return 1;
713 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000714 ext2fs_mark_block_bitmap(ctx->block_found_map, blk);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000715 ext2fs_mark_block_bitmap(fs->block_map, blk);
716 ext2fs_mark_bb_dirty(fs);
717
718 /*
719 * Now let's create the actual data block for the inode
720 */
721 if (db->blockcnt)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000722 pctx->errcode = ext2fs_new_dir_block(fs, 0, 0, &block);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000723 else
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000724 pctx->errcode = ext2fs_new_dir_block(fs, db->ino,
725 EXT2_ROOT_INO, &block);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000726
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000727 if (pctx->errcode) {
728 pctx->str = "ext2fs_new_dir_block";
729 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000730 return 1;
731 }
732
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000733 pctx->errcode = ext2fs_write_dir_block(fs, blk, block);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000734 ext2fs_free_mem((void **) &block);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000735 if (pctx->errcode) {
736 pctx->str = "ext2fs_write_dir_block";
737 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000738 return 1;
739 }
740
741 /*
742 * Update the inode block count
743 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000744 e2fsck_read_inode(ctx, db->ino, &inode, "allocate_dir_block");
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000745 inode.i_blocks += fs->blocksize / 512;
746 if (inode.i_size < (db->blockcnt+1) * fs->blocksize)
747 inode.i_size = (db->blockcnt+1) * fs->blocksize;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000748 e2fsck_write_inode(ctx, db->ino, &inode, "allocate_dir_block");
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000749
750 /*
751 * Finally, update the block pointers for the inode
752 */
753 db->blk = blk;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000754 pctx->errcode = ext2fs_block_iterate(fs, db->ino, BLOCK_FLAG_HOLE,
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000755 0, update_dir_block, db);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000756 if (pctx->errcode) {
757 pctx->str = "ext2fs_block_iterate";
758 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000759 return 1;
760 }
761
762 return 0;
763}
764
765/*
766 * This is a helper function for allocate_dir_block().
767 */
768static int update_dir_block(ext2_filsys fs,
769 blk_t *block_nr,
770 int blockcnt,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000771 void *priv_data)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000772{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000773 struct ext2_db_entry *db;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000774
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000775 db = (struct ext2_db_entry *) priv_data;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000776 if (db->blockcnt == blockcnt) {
777 *block_nr = db->blk;
778 return BLOCK_CHANGED;
779 }
780 return 0;
781}