blob: 2eec914a941912cf991932cf6e2734557fc4d21c [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,
66 int blockcnt,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +000067 void *priv_data);
Theodore Ts'o3839e651997-04-26 13:21:57 +000068
Theodore Ts'o21c84b71997-04-29 16:15:03 +000069struct check_dir_struct {
70 char *buf;
71 struct problem_context pctx;
Theodore Ts'of8188ff1997-11-14 05:23:04 +000072 int count, max;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000073 e2fsck_t ctx;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000074};
75
Theodore Ts'o08b21301997-11-03 19:42:40 +000076void e2fsck_pass2(e2fsck_t ctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +000077{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000078 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +000079 char *buf;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000080#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +000081 struct resource_track rtrack;
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000082#endif
Theodore Ts'o21c84b71997-04-29 16:15:03 +000083 struct dir_info *dir;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000084 struct check_dir_struct cd;
85
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000086#ifdef RESOURCE_TRACK
Theodore Ts'o3839e651997-04-26 13:21:57 +000087 init_resource_track(&rtrack);
Theodore Ts'o8bf191e1997-10-20 01:38:32 +000088#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000089
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000090 clear_problem_context(&cd.pctx);
91
Theodore Ts'o3839e651997-04-26 13:21:57 +000092#ifdef MTRACE
93 mtrace_print("Pass 2");
94#endif
95
Theodore Ts'o1b6bf171997-10-03 17:48:10 +000096 if (!(ctx->options & E2F_OPT_PREEN))
97 fix_problem(ctx, PR_2_PASS_HEADER, &cd.pctx);
98
99 cd.pctx.errcode = ext2fs_create_icount2(fs, EXT2_ICOUNT_OPT_INCREMENT,
100 0, ctx->inode_link_info,
101 &ctx->inode_count);
102 if (cd.pctx.errcode) {
103 fix_problem(ctx, PR_2_ALLOCATE_ICOUNT, &cd.pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000104 ctx->flags |= E2F_FLAG_ABORT;
105 return;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000106 }
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000107 buf = (char *) e2fsck_allocate_memory(ctx, fs->blocksize,
108 "directory scan buffer");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000109
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000110 /*
111 * Set up the parent pointer for the root directory, if
112 * present. (If the root directory is not present, we will
113 * create it in pass 3.)
114 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000115 dir = e2fsck_get_dir_info(ctx, EXT2_ROOT_INO);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000116 if (dir)
117 dir->parent = EXT2_ROOT_INO;
118
119 cd.buf = buf;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000120 cd.ctx = ctx;
Theodore Ts'of75c28d1998-08-01 04:18:06 +0000121 cd.count = 1;
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000122 cd.max = ext2fs_dblist_count(fs->dblist);
Theodore Ts'of75c28d1998-08-01 04:18:06 +0000123
124 if (ctx->progress)
125 (void) (ctx->progress)(ctx, 2, 0, cd.max);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000126
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000127 cd.pctx.errcode = ext2fs_dblist_iterate(fs->dblist, check_dir_block,
128 &cd);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000129 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000130 return;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000131 if (cd.pctx.errcode) {
132 fix_problem(ctx, PR_2_DBLIST_ITERATE, &cd.pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000133 ctx->flags |= E2F_FLAG_ABORT;
134 return;
Theodore Ts'o7ac02a51997-06-11 18:32:35 +0000135 }
136
Theodore Ts'o08b21301997-11-03 19:42:40 +0000137 ext2fs_free_mem((void **) &buf);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000138 ext2fs_free_dblist(fs->dblist);
139
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000140 if (ctx->inode_bad_map) {
141 ext2fs_free_inode_bitmap(ctx->inode_bad_map);
142 ctx->inode_bad_map = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000143 }
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000144 if (ctx->inode_reg_map) {
145 ext2fs_free_inode_bitmap(ctx->inode_reg_map);
146 ctx->inode_reg_map = 0;
147 }
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000148#ifdef RESOURCE_TRACK
Theodore Ts'o5596def1999-07-19 15:27:37 +0000149 if (ctx->options & E2F_OPT_TIME2) {
150 e2fsck_clear_progbar(ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000151 print_resource_track("Pass 2", &rtrack);
Theodore Ts'o5596def1999-07-19 15:27:37 +0000152 }
Theodore Ts'o8bf191e1997-10-20 01:38:32 +0000153#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000154}
155
156/*
157 * Make sure the first entry in the directory is '.', and that the
158 * directory entry is sane.
159 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000160static int check_dot(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000161 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000162 ino_t ino, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000163{
164 struct ext2_dir_entry *nextdir;
165 int status = 0;
166 int created = 0;
167 int new_len;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000168 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000169
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000170 if (!dirent->inode)
171 problem = PR_2_MISSING_DOT;
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000172 else if (((dirent->name_len & 0xFF) != 1) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000173 (dirent->name[0] != '.'))
174 problem = PR_2_1ST_NOT_DOT;
175 else if (dirent->name[1] != '\0')
176 problem = PR_2_DOT_NULL_TERM;
177
178 if (problem) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000179 if (fix_problem(ctx, problem, pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000180 if (dirent->rec_len < 12)
181 dirent->rec_len = 12;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000182 dirent->inode = ino;
183 dirent->name_len = 1;
184 dirent->name[0] = '.';
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000185 dirent->name[1] = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000186 status = 1;
187 created = 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000188 }
189 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000190 if (dirent->inode != ino) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000191 if (fix_problem(ctx, PR_2_BAD_INODE_DOT, pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000192 dirent->inode = ino;
193 status = 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000194 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000195 }
196 if (dirent->rec_len > 12) {
197 new_len = dirent->rec_len - 12;
198 if (new_len > 12) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000199 if (created ||
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000200 fix_problem(ctx, PR_2_SPLIT_DOT, pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000201 nextdir = (struct ext2_dir_entry *)
202 ((char *) dirent + 12);
203 dirent->rec_len = 12;
204 nextdir->rec_len = new_len;
205 nextdir->inode = 0;
206 nextdir->name_len = 0;
207 status = 1;
208 }
209 }
210 }
211 return status;
212}
213
214/*
215 * Make sure the second entry in the directory is '..', and that the
216 * directory entry is sane. We do not check the inode number of '..'
217 * here; this gets done in pass 3.
218 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000219static int check_dotdot(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000220 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000221 struct dir_info *dir, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000222{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000223 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000224
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000225 if (!dirent->inode)
226 problem = PR_2_MISSING_DOT_DOT;
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000227 else if (((dirent->name_len & 0xFF) != 2) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000228 (dirent->name[0] != '.') ||
229 (dirent->name[1] != '.'))
230 problem = PR_2_2ND_NOT_DOT_DOT;
231 else if (dirent->name[2] != '\0')
232 problem = PR_2_DOT_DOT_NULL_TERM;
233
234 if (problem) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000235 if (fix_problem(ctx, problem, pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000236 if (dirent->rec_len < 12)
237 dirent->rec_len = 12;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000238 /*
239 * Note: we don't have the parent inode just
240 * yet, so we will fill it in with the root
241 * inode. This will get fixed in pass 3.
242 */
243 dirent->inode = EXT2_ROOT_INO;
244 dirent->name_len = 2;
245 dirent->name[0] = '.';
246 dirent->name[1] = '.';
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000247 dirent->name[2] = '\0';
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248 return 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000249 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000250 return 0;
251 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000252 dir->dotdot = dirent->inode;
253 return 0;
254}
255
256/*
257 * Check to make sure a directory entry doesn't contain any illegal
258 * characters.
259 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000260static int check_name(e2fsck_t ctx,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000261 struct ext2_dir_entry *dirent,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000262 ino_t dir_ino, struct problem_context *pctx)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000263{
264 int i;
265 int fixup = -1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000266 int ret = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000267
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000268 for ( i = 0; i < (dirent->name_len & 0xFF); i++) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000269 if (dirent->name[i] == '/' || dirent->name[i] == '\0') {
270 if (fixup < 0) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000271 fixup = fix_problem(ctx, PR_2_BAD_NAME, pctx);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000272 }
273 if (fixup) {
274 dirent->name[i] = '.';
275 ret = 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000276 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000277 }
278 }
279 return ret;
280}
281
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000282/*
283 * Check the directory filetype (if present)
284 */
285static _INLINE_ int check_filetype(e2fsck_t ctx,
286 struct ext2_dir_entry *dirent,
287 ino_t dir_ino, struct problem_context *pctx)
288{
289 int filetype = dirent->name_len >> 8;
290 int should_be = EXT2_FT_UNKNOWN;
291 struct ext2_inode inode;
292
293 if (!(ctx->fs->super->s_feature_incompat &
294 EXT2_FEATURE_INCOMPAT_FILETYPE))
295 return 0;
296
297 if (ext2fs_test_inode_bitmap(ctx->inode_dir_map, dirent->inode)) {
298 should_be = EXT2_FT_DIR;
299 } else if (ext2fs_test_inode_bitmap(ctx->inode_reg_map,
300 dirent->inode)) {
301 should_be = EXT2_FT_REG_FILE;
302 } else if (ctx->inode_bad_map &&
303 ext2fs_test_inode_bitmap(ctx->inode_bad_map,
304 dirent->inode))
305 should_be = 0;
306 else {
307 e2fsck_read_inode(ctx, dirent->inode, &inode,
308 "check_filetype");
309 if (LINUX_S_ISCHR (inode.i_mode))
310 should_be = EXT2_FT_CHRDEV;
311 else if (LINUX_S_ISBLK (inode.i_mode))
312 should_be = EXT2_FT_BLKDEV;
313 else if (LINUX_S_ISLNK (inode.i_mode))
314 should_be = EXT2_FT_SYMLINK;
315 else if (LINUX_S_ISFIFO (inode.i_mode))
316 should_be = EXT2_FT_FIFO;
317 else if (LINUX_S_ISSOCK (inode.i_mode))
318 should_be = EXT2_FT_SOCK;
319 }
320 if (filetype == should_be)
321 return 0;
322 pctx->num = should_be;
323
324 if (fix_problem(ctx, filetype ? PR_2_BAD_FILETYPE : PR_2_SET_FILETYPE,
325 pctx) == 0)
326 return 0;
327
328 dirent->name_len = (dirent->name_len & 0xFF) | should_be << 8;
329 return 1;
330}
331
332
Theodore Ts'o3839e651997-04-26 13:21:57 +0000333static int check_dir_block(ext2_filsys fs,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000334 struct ext2_db_entry *db,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000335 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000336{
337 struct dir_info *subdir, *dir;
338 struct ext2_dir_entry *dirent;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000339 int offset = 0;
340 int dir_modified = 0;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000341 int dot_state;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000342 blk_t block_nr = db->blk;
343 ino_t ino = db->ino;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000344 __u16 links;
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000345 struct check_dir_struct *cd;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000346 char *buf;
347 e2fsck_t ctx;
348 int problem;
349
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000350 cd = (struct check_dir_struct *) priv_data;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000351 buf = cd->buf;
352 ctx = cd->ctx;
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000353
354 if (ctx->progress)
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000355 if ((ctx->progress)(ctx, 2, cd->count++, cd->max))
356 return DIRENT_ABORT;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000357
Theodore Ts'o3839e651997-04-26 13:21:57 +0000358 /*
359 * Make sure the inode is still in use (could have been
360 * deleted in the duplicate/bad blocks pass.
361 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000362 if (!(ext2fs_test_inode_bitmap(ctx->inode_used_map, ino)))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000363 return 0;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000364
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000365 cd->pctx.ino = ino;
366 cd->pctx.blk = block_nr;
367 cd->pctx.blkcount = db->blockcnt;
368 cd->pctx.ino2 = 0;
369 cd->pctx.dirent = 0;
370 cd->pctx.num = 0;
371
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000372 if (db->blk == 0) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000373 if (allocate_dir_block(ctx, db, buf, &cd->pctx))
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000374 return 0;
375 block_nr = db->blk;
376 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000377
378 if (db->blockcnt)
379 dot_state = 2;
380 else
381 dot_state = 0;
382
383#if 0
Theodore Ts'of3db3561997-04-26 13:34:30 +0000384 printf("In process_dir_block block %lu, #%d, inode %lu\n", block_nr,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000385 db->blockcnt, ino);
386#endif
387
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000388 cd->pctx.errcode = ext2fs_read_dir_block(fs, block_nr, buf);
389 if (cd->pctx.errcode) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000390 if (!fix_problem(ctx, PR_2_READ_DIRBLOCK, &cd->pctx)) {
391 ctx->flags |= E2F_FLAG_ABORT;
392 return DIRENT_ABORT;
393 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000394 memset(buf, 0, fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000395 }
396
397 do {
398 dot_state++;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000399 problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000400 dirent = (struct ext2_dir_entry *) (buf + offset);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000401 cd->pctx.dirent = dirent;
402 cd->pctx.num = offset;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000403 if (((offset + dirent->rec_len) > fs->blocksize) ||
404 (dirent->rec_len < 8) ||
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000405 ((dirent->rec_len % 4) != 0) ||
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000406 (((dirent->name_len & 0xFF)+8) > dirent->rec_len)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000407 if (fix_problem(ctx, PR_2_DIR_CORRUPTED, &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000408 dirent->rec_len = fs->blocksize - offset;
409 dirent->name_len = 0;
410 dirent->inode = 0;
411 dir_modified++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000412 } else
Theodore Ts'o3839e651997-04-26 13:21:57 +0000413 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000414 }
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000415 if ((dirent->name_len & 0xFF) > EXT2_NAME_LEN) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000416 if (fix_problem(ctx, PR_2_FILENAME_LONG, &cd->pctx)) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000417 dirent->name_len = EXT2_NAME_LEN;
418 dir_modified++;
419 }
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000420 }
421
Theodore Ts'o3839e651997-04-26 13:21:57 +0000422 if (dot_state == 1) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000423 if (check_dot(ctx, dirent, ino, &cd->pctx))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000424 dir_modified++;
425 } else if (dot_state == 2) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000426 dir = e2fsck_get_dir_info(ctx, ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000427 if (!dir) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000428 fix_problem(ctx, PR_2_NO_DIRINFO, &cd->pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000429 ctx->flags |= E2F_FLAG_ABORT;
430 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000431 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000432 if (check_dotdot(ctx, dirent, dir, &cd->pctx))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000433 dir_modified++;
434 } else if (dirent->inode == ino) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000435 problem = PR_2_LINK_DOT;
436 if (fix_problem(ctx, PR_2_LINK_DOT, &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000437 dirent->inode = 0;
438 dir_modified++;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000439 goto next;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000440 }
441 }
442 if (!dirent->inode)
443 goto next;
444
Theodore Ts'o3839e651997-04-26 13:21:57 +0000445 /*
446 * Make sure the inode listed is a legal one.
447 */
448 if (((dirent->inode != EXT2_ROOT_INO) &&
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000449 (dirent->inode < EXT2_FIRST_INODE(fs->super))) ||
Theodore Ts'o3839e651997-04-26 13:21:57 +0000450 (dirent->inode > fs->super->s_inodes_count)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000451 problem = PR_2_BAD_INO;
452 } else if (!(ext2fs_test_inode_bitmap(ctx->inode_used_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000453 dirent->inode))) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000454 /*
455 * If the inode is unused, offer to clear it.
456 */
457 problem = PR_2_UNUSED_INODE;
458 } else if (ctx->inode_bb_map &&
459 (ext2fs_test_inode_bitmap(ctx->inode_bb_map,
460 dirent->inode))) {
461 /*
462 * If the inode is in a bad block, offer to
463 * clear it.
464 */
465 problem = PR_2_BB_INODE;
466 } else if ((dot_state > 2) &&
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000467 ((dirent->name_len & 0xFF) == 1) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000468 (dirent->name[0] == '.')) {
469 /*
470 * If there's a '.' entry in anything other
471 * than the first directory entry, it's a
472 * duplicate entry that should be removed.
473 */
474 problem = PR_2_DUP_DOT;
475 } else if ((dot_state > 2) &&
Theodore Ts'ob6f79831998-03-09 13:10:37 +0000476 ((dirent->name_len & 0xFF) == 2) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000477 (dirent->name[0] == '.') &&
478 (dirent->name[1] == '.')) {
479 /*
480 * If there's a '..' entry in anything other
481 * than the second directory entry, it's a
482 * duplicate entry that should be removed.
483 */
484 problem = PR_2_DUP_DOT_DOT;
485 } else if ((dot_state > 2) &&
486 (dirent->inode == EXT2_ROOT_INO)) {
487 /*
488 * Don't allow links to the root directory.
489 * We check this specially to make sure we
490 * catch this error case even if the root
491 * directory hasn't been created yet.
492 */
493 problem = PR_2_LINK_ROOT;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000494 }
495
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000496 if (problem) {
497 if (fix_problem(ctx, problem, &cd->pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000498 dirent->inode = 0;
499 dir_modified++;
500 goto next;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000501 } else {
502 ext2fs_unmark_valid(fs);
503 if (problem == PR_2_BAD_INO)
504 goto next;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000505 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000506 }
507
508 /*
509 * If the inode was marked as having bad fields in
510 * pass1, process it and offer to fix/clear it.
511 * (We wait until now so that we can display the
512 * pathname to the user.)
513 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000514 if (ctx->inode_bad_map &&
515 ext2fs_test_inode_bitmap(ctx->inode_bad_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000516 dirent->inode)) {
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000517 if (e2fsck_process_bad_inode(ctx, ino,
518 dirent->inode)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000519 dirent->inode = 0;
520 dir_modified++;
521 goto next;
522 }
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000523 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000524 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000525 }
526
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000527 if (check_name(ctx, dirent, ino, &cd->pctx))
528 dir_modified++;
529
Theodore Ts'oaa4115a1999-10-21 19:33:18 +0000530 if (check_filetype(ctx, dirent, ino, &cd->pctx))
531 dir_modified++;
532
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000533 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000534 * If this is a directory, then mark its parent in its
535 * dir_info structure. If the parent field is already
536 * filled in, then this directory has more than one
537 * hard link. We assume the first link is correct,
538 * and ask the user if he/she wants to clear this one.
539 */
540 if ((dot_state > 2) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000541 (ext2fs_test_inode_bitmap(ctx->inode_dir_map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000542 dirent->inode))) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000543 subdir = e2fsck_get_dir_info(ctx, dirent->inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000544 if (!subdir) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000545 cd->pctx.ino = dirent->inode;
546 fix_problem(ctx, PR_2_NO_DIRINFO, &cd->pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000547 ctx->flags |= E2F_FLAG_ABORT;
548 return DIRENT_ABORT;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000549 }
550 if (subdir->parent) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000551 cd->pctx.ino2 = subdir->parent;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000552 if (fix_problem(ctx, PR_2_LINK_DIR,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000553 &cd->pctx)) {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000554 dirent->inode = 0;
555 dir_modified++;
556 goto next;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000557 }
558 cd->pctx.ino2 = 0;
559 } else
560 subdir->parent = ino;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000561 }
562
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000563 ext2fs_icount_increment(ctx->inode_count, dirent->inode,
564 &links);
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000565 if (links > 1)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000566 ctx->fs_links_count++;
567 ctx->fs_total_count++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000568 next:
569 offset += dirent->rec_len;
570 } while (offset < fs->blocksize);
571#if 0
572 printf("\n");
573#endif
574 if (offset != fs->blocksize) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000575 cd->pctx.num = dirent->rec_len - fs->blocksize + offset;
576 if (fix_problem(ctx, PR_2_FINAL_RECLEN, &cd->pctx)) {
577 dirent->rec_len = cd->pctx.num;
578 dir_modified++;
579 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000580 }
581 if (dir_modified) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000582 cd->pctx.errcode = ext2fs_write_dir_block(fs, block_nr, buf);
583 if (cd->pctx.errcode) {
Theodore Ts'o08b21301997-11-03 19:42:40 +0000584 if (!fix_problem(ctx, PR_2_WRITE_DIRBLOCK,
585 &cd->pctx)) {
586 ctx->flags |= E2F_FLAG_ABORT;
587 return DIRENT_ABORT;
588 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000589 }
590 ext2fs_mark_changed(fs);
591 }
592 return 0;
593}
594
595/*
596 * This function is called to deallocate a block, and is an interator
597 * functioned called by deallocate inode via ext2fs_iterate_block().
598 */
599static int deallocate_inode_block(ext2_filsys fs,
600 blk_t *block_nr,
601 int blockcnt,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000602 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000603{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000604 e2fsck_t ctx = (e2fsck_t) priv_data;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000605
Theodore Ts'o3839e651997-04-26 13:21:57 +0000606 if (!*block_nr)
607 return 0;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000608 ext2fs_unmark_block_bitmap(ctx->block_found_map, *block_nr);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000609 ext2fs_unmark_block_bitmap(fs->block_map, *block_nr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000610 return 0;
611}
612
613/*
614 * This fuction deallocates an inode
615 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000616static void deallocate_inode(e2fsck_t ctx, ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000617 char* block_buf)
618{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000619 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000620 struct ext2_inode inode;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000621 struct problem_context pctx;
622
623 ext2fs_icount_store(ctx->inode_link_info, ino, 0);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000624 e2fsck_read_inode(ctx, ino, &inode, "deallocate_inode");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000625 inode.i_links_count = 0;
626 inode.i_dtime = time(0);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000627 e2fsck_write_inode(ctx, ino, &inode, "deallocate_inode");
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000628 clear_problem_context(&pctx);
629 pctx.ino = ino;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000630
Theodore Ts'o3839e651997-04-26 13:21:57 +0000631 /*
632 * Fix up the bitmaps...
633 */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000634 e2fsck_read_bitmaps(ctx);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000635 ext2fs_unmark_inode_bitmap(ctx->inode_used_map, ino);
636 ext2fs_unmark_inode_bitmap(ctx->inode_dir_map, ino);
637 if (ctx->inode_bad_map)
638 ext2fs_unmark_inode_bitmap(ctx->inode_bad_map, ino);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000639 ext2fs_unmark_inode_bitmap(fs->inode_map, ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000640 ext2fs_mark_ib_dirty(fs);
641
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000642 if (!ext2fs_inode_has_valid_blocks(&inode))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000643 return;
644
645 ext2fs_mark_bb_dirty(fs);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000646 pctx.errcode = ext2fs_block_iterate(fs, ino, 0, block_buf,
647 deallocate_inode_block, ctx);
648 if (pctx.errcode) {
649 fix_problem(ctx, PR_2_DEALLOC_INODE, &pctx);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000650 ctx->flags |= E2F_FLAG_ABORT;
651 return;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000652 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000653}
654
Theodore Ts'oe72a9ba1999-06-25 15:40:18 +0000655extern int e2fsck_process_bad_inode(e2fsck_t ctx, ino_t dir, ino_t ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000656{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000657 ext2_filsys fs = ctx->fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000658 struct ext2_inode inode;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000659 int inode_modified = 0;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000660 unsigned char *frag, *fsize;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000661 struct problem_context pctx;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000662 int problem = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000663
Theodore Ts'o08b21301997-11-03 19:42:40 +0000664 e2fsck_read_inode(ctx, ino, &inode, "process_bad_inode");
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000665
666 clear_problem_context(&pctx);
667 pctx.ino = ino;
668 pctx.dir = dir;
669 pctx.inode = &inode;
670
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000671 if (!LINUX_S_ISDIR(inode.i_mode) && !LINUX_S_ISREG(inode.i_mode) &&
672 !LINUX_S_ISCHR(inode.i_mode) && !LINUX_S_ISBLK(inode.i_mode) &&
673 !LINUX_S_ISLNK(inode.i_mode) && !LINUX_S_ISFIFO(inode.i_mode) &&
Theodore Ts'o08b21301997-11-03 19:42:40 +0000674 !(LINUX_S_ISSOCK(inode.i_mode)))
675 problem = PR_2_BAD_MODE;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000676
677 if (LINUX_S_ISCHR(inode.i_mode)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000678 && !e2fsck_pass1_check_device_inode(&inode))
679 problem = PR_2_BAD_CHAR_DEV;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000680
681 if (LINUX_S_ISBLK(inode.i_mode)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000682 && !e2fsck_pass1_check_device_inode(&inode))
683 problem = PR_2_BAD_BLOCK_DEV;
684
Theodore Ts'o1dde43f1998-11-14 04:18:28 +0000685 if (LINUX_S_ISFIFO(inode.i_mode)
686 && !e2fsck_pass1_check_device_inode(&inode))
687 problem = PR_2_BAD_FIFO;
688
689 if (LINUX_S_ISSOCK(inode.i_mode)
690 && !e2fsck_pass1_check_device_inode(&inode))
691 problem = PR_2_BAD_SOCKET;
692
Theodore Ts'o08b21301997-11-03 19:42:40 +0000693 if (problem) {
694 if (fix_problem(ctx, problem, &pctx)) {
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000695 deallocate_inode(ctx, ino, 0);
Theodore Ts'oa02ce9d1998-02-24 20:22:23 +0000696 if (ctx->flags & E2F_FLAG_SIGNAL_MASK)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000697 return 0;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000698 return 1;
699 }
Theodore Ts'o08b21301997-11-03 19:42:40 +0000700 problem = 0;
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000701 }
Theodore Ts'o7cf73dc1997-08-14 17:17:16 +0000702
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000703 if (inode.i_faddr &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000704 fix_problem(ctx, PR_2_FADDR_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000705 inode.i_faddr = 0;
706 inode_modified++;
707 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000708
709 switch (fs->super->s_creator_os) {
710 case EXT2_OS_LINUX:
711 frag = &inode.osd2.linux2.l_i_frag;
712 fsize = &inode.osd2.linux2.l_i_fsize;
713 break;
714 case EXT2_OS_HURD:
715 frag = &inode.osd2.hurd2.h_i_frag;
716 fsize = &inode.osd2.hurd2.h_i_fsize;
717 break;
718 case EXT2_OS_MASIX:
719 frag = &inode.osd2.masix2.m_i_frag;
720 fsize = &inode.osd2.masix2.m_i_fsize;
721 break;
722 default:
723 frag = fsize = 0;
724 }
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000725 if (frag && *frag) {
726 pctx.num = *frag;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000727 if (fix_problem(ctx, PR_2_FRAG_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000728 *frag = 0;
729 inode_modified++;
730 }
731 pctx.num = 0;
732 }
733 if (fsize && *fsize) {
734 pctx.num = *fsize;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000735 if (fix_problem(ctx, PR_2_FSIZE_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000736 *fsize = 0;
737 inode_modified++;
738 }
739 pctx.num = 0;
740 }
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000741
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000742 if (inode.i_file_acl &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000743 fix_problem(ctx, PR_2_FILE_ACL_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000744 inode.i_file_acl = 0;
745 inode_modified++;
746 }
747 if (inode.i_dir_acl &&
Theodore Ts'o246501c1998-03-24 16:22:38 +0000748 LINUX_S_ISDIR(inode.i_mode) &&
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000749 fix_problem(ctx, PR_2_DIR_ACL_ZERO, &pctx)) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000750 inode.i_dir_acl = 0;
751 inode_modified++;
752 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000753 if (inode_modified)
Theodore Ts'o08b21301997-11-03 19:42:40 +0000754 e2fsck_write_inode(ctx, ino, &inode, "process_bad_inode");
Theodore Ts'o3839e651997-04-26 13:21:57 +0000755 return 0;
756}
757
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000758
759/*
760 * allocate_dir_block --- this function allocates a new directory
761 * block for a particular inode; this is done if a directory has
762 * a "hole" in it, or if a directory has a illegal block number
763 * that was zeroed out and now needs to be replaced.
764 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000765static int allocate_dir_block(e2fsck_t ctx,
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000766 struct ext2_db_entry *db,
767 char *buf, struct problem_context *pctx)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000768{
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000769 ext2_filsys fs = ctx->fs;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000770 blk_t blk;
771 char *block;
772 struct ext2_inode inode;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000773
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000774 if (fix_problem(ctx, PR_2_DIRECTORY_HOLE, pctx) == 0)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000775 return 1;
776
777 /*
778 * Read the inode and block bitmaps in; we'll be messing with
779 * them.
780 */
Theodore Ts'of8188ff1997-11-14 05:23:04 +0000781 e2fsck_read_bitmaps(ctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000782
783 /*
784 * First, find a free block
785 */
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000786 pctx->errcode = ext2fs_new_block(fs, 0, ctx->block_found_map, &blk);
787 if (pctx->errcode) {
788 pctx->str = "ext2fs_new_block";
789 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000790 return 1;
791 }
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000792 ext2fs_mark_block_bitmap(ctx->block_found_map, blk);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000793 ext2fs_mark_block_bitmap(fs->block_map, blk);
794 ext2fs_mark_bb_dirty(fs);
795
796 /*
797 * Now let's create the actual data block for the inode
798 */
799 if (db->blockcnt)
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000800 pctx->errcode = ext2fs_new_dir_block(fs, 0, 0, &block);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000801 else
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000802 pctx->errcode = ext2fs_new_dir_block(fs, db->ino,
803 EXT2_ROOT_INO, &block);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000804
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000805 if (pctx->errcode) {
806 pctx->str = "ext2fs_new_dir_block";
807 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000808 return 1;
809 }
810
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000811 pctx->errcode = ext2fs_write_dir_block(fs, blk, block);
Theodore Ts'o08b21301997-11-03 19:42:40 +0000812 ext2fs_free_mem((void **) &block);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000813 if (pctx->errcode) {
814 pctx->str = "ext2fs_write_dir_block";
815 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000816 return 1;
817 }
818
819 /*
820 * Update the inode block count
821 */
Theodore Ts'o08b21301997-11-03 19:42:40 +0000822 e2fsck_read_inode(ctx, db->ino, &inode, "allocate_dir_block");
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000823 inode.i_blocks += fs->blocksize / 512;
824 if (inode.i_size < (db->blockcnt+1) * fs->blocksize)
825 inode.i_size = (db->blockcnt+1) * fs->blocksize;
Theodore Ts'o08b21301997-11-03 19:42:40 +0000826 e2fsck_write_inode(ctx, db->ino, &inode, "allocate_dir_block");
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000827
828 /*
829 * Finally, update the block pointers for the inode
830 */
831 db->blk = blk;
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000832 pctx->errcode = ext2fs_block_iterate(fs, db->ino, BLOCK_FLAG_HOLE,
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000833 0, update_dir_block, db);
Theodore Ts'o1b6bf171997-10-03 17:48:10 +0000834 if (pctx->errcode) {
835 pctx->str = "ext2fs_block_iterate";
836 fix_problem(ctx, PR_2_ALLOC_DIRBOCK, pctx);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000837 return 1;
838 }
839
840 return 0;
841}
842
843/*
844 * This is a helper function for allocate_dir_block().
845 */
846static int update_dir_block(ext2_filsys fs,
847 blk_t *block_nr,
848 int blockcnt,
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000849 void *priv_data)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000850{
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000851 struct ext2_db_entry *db;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000852
Theodore Ts'o54dc7ca1998-01-19 14:50:49 +0000853 db = (struct ext2_db_entry *) priv_data;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000854 if (db->blockcnt == blockcnt) {
855 *block_nr = db->blk;
856 return BLOCK_CHANGED;
857 }
858 return 0;
859}