blob: 1f5b4e8a6be25c9762f8617801f500e0434147e3 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * bb_inode.c --- routines to update the bad block inode.
3 *
4 * WARNING: This routine modifies a lot of state in the filesystem; if
5 * this routine returns an error, the bad block inode may be in an
6 * inconsistent state.
7 *
Theodore Ts'o21c84b71997-04-29 16:15:03 +00008 * Copyright (C) 1994, 1995 Theodore Ts'o.
9 *
10 * %Begin-Header%
11 * This file may be redistributed under the terms of the GNU Public
12 * License.
13 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000014 */
15
16#include <stdio.h>
17#include <string.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000018#if HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000019#include <unistd.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000020#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000021#include <fcntl.h>
22#include <time.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000023#if HAVE_SYS_STAT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000024#include <sys/stat.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000025#endif
26#if HAVE_SYS_TYPES_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000027#include <sys/types.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000028#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000029
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000030#include "ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000031#include "ext2fs.h"
32
33struct set_badblock_record {
Theodore Ts'o21c84b71997-04-29 16:15:03 +000034 ext2_badblocks_iterate bb_iter;
Theodore Ts'o3839e651997-04-26 13:21:57 +000035 int bad_block_count;
36 blk_t *ind_blocks;
37 int max_ind_blocks;
38 int ind_blocks_size;
39 int ind_blocks_ptr;
40 char *block_buf;
41 errcode_t err;
42};
43
Theodore Ts'o36a43d61998-03-24 16:17:51 +000044static int set_bad_block_proc(ext2_filsys fs, blk_t *block_nr,
Theodore Ts'o03673db1998-06-10 20:39:43 +000045 e2_blkcnt_t blockcnt,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000046 blk_t ref_block, int ref_offset,
47 void *priv_data);
Theodore Ts'o36a43d61998-03-24 16:17:51 +000048static int clear_bad_block_proc(ext2_filsys fs, blk_t *block_nr,
Theodore Ts'o03673db1998-06-10 20:39:43 +000049 e2_blkcnt_t blockcnt,
Theodore Ts'o21c84b71997-04-29 16:15:03 +000050 blk_t ref_block, int ref_offset,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000051 void *priv_data);
Theodore Ts'o3839e651997-04-26 13:21:57 +000052
53/*
54 * Given a bad blocks bitmap, update the bad blocks inode to reflect
55 * the map.
56 */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000057errcode_t ext2fs_update_bb_inode(ext2_filsys fs, ext2_badblocks_list bb_list)
Theodore Ts'o3839e651997-04-26 13:21:57 +000058{
59 errcode_t retval;
60 struct set_badblock_record rec;
61 struct ext2_inode inode;
62
Theodore Ts'of3db3561997-04-26 13:34:30 +000063 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
64
Theodore Ts'o3839e651997-04-26 13:21:57 +000065 if (!fs->block_map)
66 return EXT2_ET_NO_BLOCK_BITMAP;
67
68 rec.bad_block_count = 0;
69 rec.ind_blocks_size = rec.ind_blocks_ptr = 0;
70 rec.max_ind_blocks = 10;
Theodore Ts'oee010792007-11-09 19:01:06 -050071 retval = ext2fs_get_array(rec.max_ind_blocks, sizeof(blk_t),
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -040072 &rec.ind_blocks);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +000073 if (retval)
74 return retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +000075 memset(rec.ind_blocks, 0, rec.max_ind_blocks * sizeof(blk_t));
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -040076 retval = ext2fs_get_mem(fs->blocksize, &rec.block_buf);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +000077 if (retval)
Theodore Ts'o3839e651997-04-26 13:21:57 +000078 goto cleanup;
Theodore Ts'o3839e651997-04-26 13:21:57 +000079 memset(rec.block_buf, 0, fs->blocksize);
80 rec.err = 0;
81
82 /*
83 * First clear the old bad blocks (while saving the indirect blocks)
84 */
Theodore Ts'o21c84b71997-04-29 16:15:03 +000085 retval = ext2fs_block_iterate2(fs, EXT2_BAD_INO,
86 BLOCK_FLAG_DEPTH_TRAVERSE, 0,
87 clear_bad_block_proc, &rec);
Theodore Ts'o3839e651997-04-26 13:21:57 +000088 if (retval)
89 goto cleanup;
90 if (rec.err) {
91 retval = rec.err;
92 goto cleanup;
93 }
94
95 /*
96 * Now set the bad blocks!
Theodore Ts'of3db3561997-04-26 13:34:30 +000097 *
98 * First, mark the bad blocks as used. This prevents a bad
99 * block from being used as an indirecto block for the bad
100 * block inode (!).
Theodore Ts'o3839e651997-04-26 13:21:57 +0000101 */
102 if (bb_list) {
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000103 retval = ext2fs_badblocks_list_iterate_begin(bb_list,
104 &rec.bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000105 if (retval)
106 goto cleanup;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000107 retval = ext2fs_block_iterate2(fs, EXT2_BAD_INO,
108 BLOCK_FLAG_APPEND, 0,
109 set_bad_block_proc, &rec);
110 ext2fs_badblocks_list_iterate_end(rec.bb_iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000111 if (retval)
112 goto cleanup;
113 if (rec.err) {
114 retval = rec.err;
115 goto cleanup;
116 }
117 }
118
119 /*
120 * Update the bad block inode's mod time and block count
121 * field.
122 */
123 retval = ext2fs_read_inode(fs, EXT2_BAD_INO, &inode);
124 if (retval)
125 goto cleanup;
126
Theodore Ts'o32138182005-09-24 20:14:51 -0400127 inode.i_atime = inode.i_mtime = fs->now ? fs->now : time(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000128 if (!inode.i_ctime)
Theodore Ts'o32138182005-09-24 20:14:51 -0400129 inode.i_ctime = fs->now ? fs->now : time(0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000130 inode.i_blocks = rec.bad_block_count * (fs->blocksize / 512);
131 inode.i_size = rec.bad_block_count * fs->blocksize;
132
133 retval = ext2fs_write_inode(fs, EXT2_BAD_INO, &inode);
134 if (retval)
135 goto cleanup;
136
137cleanup:
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400138 ext2fs_free_mem(&rec.ind_blocks);
139 ext2fs_free_mem(&rec.block_buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000140 return retval;
141}
142
143/*
144 * Helper function for update_bb_inode()
145 *
146 * Clear the bad blocks in the bad block inode, while saving the
147 * indirect blocks.
148 */
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000149#ifdef __TURBOC__
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000150 #pragma argsused
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000151#endif
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000152static int clear_bad_block_proc(ext2_filsys fs, blk_t *block_nr,
Theodore Ts'o03673db1998-06-10 20:39:43 +0000153 e2_blkcnt_t blockcnt,
Theodore Ts'o54434922003-12-07 01:28:50 -0500154 blk_t ref_block EXT2FS_ATTR((unused)),
155 int ref_offset EXT2FS_ATTR((unused)),
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000156 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000157{
158 struct set_badblock_record *rec = (struct set_badblock_record *)
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000159 priv_data;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000160 errcode_t retval;
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000161 unsigned long old_size;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000162
163 if (!*block_nr)
164 return 0;
165
Theodore Ts'of3db3561997-04-26 13:34:30 +0000166 /*
167 * If the block number is outrageous, clear it and ignore it.
168 */
169 if (*block_nr >= fs->super->s_blocks_count ||
170 *block_nr < fs->super->s_first_data_block) {
171 *block_nr = 0;
172 return BLOCK_CHANGED;
173 }
174
Theodore Ts'o3839e651997-04-26 13:21:57 +0000175 if (blockcnt < 0) {
176 if (rec->ind_blocks_size >= rec->max_ind_blocks) {
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000177 old_size = rec->max_ind_blocks * sizeof(blk_t);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000178 rec->max_ind_blocks += 10;
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000179 retval = ext2fs_resize_mem(old_size,
180 rec->max_ind_blocks * sizeof(blk_t),
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400181 &rec->ind_blocks);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000182 if (retval) {
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000183 rec->max_ind_blocks -= 10;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000184 rec->err = retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000185 return BLOCK_ABORT;
186 }
187 }
188 rec->ind_blocks[rec->ind_blocks_size++] = *block_nr;
189 }
190
191 /*
192 * Mark the block as unused, and update accounting information
193 */
Theodore Ts'o8bd0c952002-01-03 03:29:19 -0500194 ext2fs_block_alloc_stats(fs, *block_nr, -1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000195
196 *block_nr = 0;
197 return BLOCK_CHANGED;
198}
199
200
201/*
202 * Helper function for update_bb_inode()
203 *
204 * Set the block list in the bad block inode, using the supplied bitmap.
205 */
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000206#ifdef __TURBOC__
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000207 #pragma argsused
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000208#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000209static int set_bad_block_proc(ext2_filsys fs, blk_t *block_nr,
Theodore Ts'o54434922003-12-07 01:28:50 -0500210 e2_blkcnt_t blockcnt,
211 blk_t ref_block EXT2FS_ATTR((unused)),
212 int ref_offset EXT2FS_ATTR((unused)),
213 void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000214{
215 struct set_badblock_record *rec = (struct set_badblock_record *)
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000216 priv_data;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000217 errcode_t retval;
218 blk_t blk;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000219
220 if (blockcnt >= 0) {
221 /*
222 * Get the next bad block.
223 */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000224 if (!ext2fs_badblocks_list_iterate(rec->bb_iter, &blk))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000225 return BLOCK_ABORT;
226 rec->bad_block_count++;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000227 } else {
Theodore Ts'o3839e651997-04-26 13:21:57 +0000228 /*
229 * An indirect block; fetch a block from the
Theodore Ts'of3db3561997-04-26 13:34:30 +0000230 * previously used indirect block list. The block
231 * most be not marked as used; if so, get another one.
232 * If we run out of reserved indirect blocks, allocate
233 * a new one.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000234 */
Theodore Ts'of3db3561997-04-26 13:34:30 +0000235 retry:
236 if (rec->ind_blocks_ptr < rec->ind_blocks_size) {
237 blk = rec->ind_blocks[rec->ind_blocks_ptr++];
238 if (ext2fs_test_block_bitmap(fs->block_map, blk))
239 goto retry;
240 } else {
241 retval = ext2fs_new_block(fs, 0, 0, &blk);
242 if (retval) {
243 rec->err = retval;
244 return BLOCK_ABORT;
245 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000246 }
247 retval = io_channel_write_blk(fs->io, blk, 1, rec->block_buf);
248 if (retval) {
249 rec->err = retval;
250 return BLOCK_ABORT;
251 }
252 }
253
254 /*
Theodore Ts'of3db3561997-04-26 13:34:30 +0000255 * Update block counts
Theodore Ts'o3839e651997-04-26 13:21:57 +0000256 */
Theodore Ts'o8bd0c952002-01-03 03:29:19 -0500257 ext2fs_block_alloc_stats(fs, blk, +1);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000258
259 *block_nr = blk;
260 return BLOCK_CHANGED;
261}
262
263
264
265
266
267