]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - e2fsck/badblocks.c
Fix "make clean" so it removes all generated files in the scrub directory
[thirdparty/e2fsprogs.git] / e2fsck / badblocks.c
CommitLineData
3839e657
TT
1/*
2 * badblocks.c --- replace/append bad blocks to the bad block inode
efc6f628 3 *
3839e657
TT
4 * Copyright (C) 1993, 1994 Theodore Ts'o. This file may be
5 * redistributed under the terms of the GNU Public License.
6 */
7
d1154eb4 8#include "config.h"
3839e657 9#include <time.h>
50e1e10f
TT
10#ifdef HAVE_ERRNO_H
11#include <errno.h>
12#endif
3839e657
TT
13
14#include <et/com_err.h>
15#include "e2fsck.h"
16
f3db3566 17static int check_bb_inode_blocks(ext2_filsys fs, blk_t *block_nr, int blockcnt,
54dc7ca2 18 void *priv_data);
f3db3566
TT
19
20
54434927 21static void invalid_block(ext2_filsys fs EXT2FS_ATTR((unused)), blk_t blk)
3839e657 22{
0c4a0726 23 printf(_("Bad block %u out of range; ignored.\n"), blk);
3839e657
TT
24 return;
25}
26
1b6bf175 27void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file,
3839e657
TT
28 int replace_bad_blocks)
29{
1b6bf175 30 ext2_filsys fs = ctx->fs;
3839e657
TT
31 errcode_t retval;
32 badblocks_list bb_list = 0;
33 FILE *f;
74becf3c 34 char buf[1024];
3839e657 35
f8188fff 36 e2fsck_read_bitmaps(ctx);
f3db3566
TT
37
38 /*
39 * Make sure the bad block inode is sane. If there are any
40 * illegal blocks, clear them.
41 */
42 retval = ext2fs_block_iterate(fs, EXT2_BAD_INO, 0, 0,
43 check_bb_inode_blocks, 0);
44 if (retval) {
45ff69ff 45 com_err("ext2fs_block_iterate", retval, "%s",
0c4a0726 46 _("while sanity checking the bad blocks inode"));
f8188fff 47 goto fatal;
f3db3566 48 }
efc6f628 49
3839e657
TT
50 /*
51 * If we're appending to the bad blocks inode, read in the
52 * current bad blocks.
53 */
54 if (!replace_bad_blocks) {
55 retval = ext2fs_read_bb_inode(fs, &bb_list);
56 if (retval) {
45ff69ff 57 com_err("ext2fs_read_bb_inode", retval, "%s",
0c4a0726 58 _("while reading the bad blocks inode"));
f8188fff 59 goto fatal;
3839e657
TT
60 }
61 }
efc6f628 62
3839e657 63 /*
74becf3c
TT
64 * Now read in the bad blocks from the file; if
65 * bad_blocks_file is null, then try to run the badblocks
66 * command.
3839e657 67 */
74becf3c
TT
68 if (bad_blocks_file) {
69 f = fopen(bad_blocks_file, "r");
70 if (!f) {
71 com_err("read_bad_blocks_file", errno,
0c4a0726 72 _("while trying to open %s"), bad_blocks_file);
f8188fff 73 goto fatal;
74becf3c
TT
74 }
75 } else {
4efbac6f 76 sprintf(buf, "badblocks -b %d -X %s%s%s %llu", fs->blocksize,
1b6bf175 77 (ctx->options & E2F_OPT_PREEN) ? "" : "-s ",
3ed57c27 78 (ctx->options & E2F_OPT_WRITECHECK) ? "-n " : "",
4efbac6f 79 fs->device_name, ext2fs_blocks_count(fs->super)-1);
74becf3c
TT
80 f = popen(buf, "r");
81 if (!f) {
82 com_err("read_bad_blocks_file", errno,
0c4a0726 83 _("while trying popen '%s'"), buf);
f8188fff 84 goto fatal;
74becf3c 85 }
3839e657
TT
86 }
87 retval = ext2fs_read_bb_FILE(fs, f, &bb_list, invalid_block);
efc6f628 88 if (bad_blocks_file)
74becf3c
TT
89 fclose(f);
90 else
91 pclose(f);
3839e657 92 if (retval) {
45ff69ff 93 com_err("ext2fs_read_bb_FILE", retval, "%s",
0c4a0726 94 _("while reading in list of bad blocks from file"));
f8188fff 95 goto fatal;
3839e657 96 }
efc6f628 97
3839e657
TT
98 /*
99 * Finally, update the bad blocks from the bad_block_map
100 */
4f9abdcb 101 printf("%s: Updating bad block inode.\n", ctx->device_name);
3839e657
TT
102 retval = ext2fs_update_bb_inode(fs, bb_list);
103 if (retval) {
45ff69ff 104 com_err("ext2fs_update_bb_inode", retval, "%s",
0c4a0726 105 _("while updating bad block inode"));
f8188fff 106 goto fatal;
3839e657
TT
107 }
108
cbbf031b 109 ext2fs_badblocks_list_free(bb_list);
3839e657 110 return;
efc6f628 111
f8188fff
TT
112fatal:
113 ctx->flags |= E2F_FLAG_ABORT;
2c98ce4b
TT
114 if (bb_list)
115 ext2fs_badblocks_list_free(bb_list);
f8188fff 116 return;
efc6f628 117
3839e657
TT
118}
119
efc6f628
TT
120static int check_bb_inode_blocks(ext2_filsys fs,
121 blk_t *block_nr,
54434927
TT
122 int blockcnt EXT2FS_ATTR((unused)),
123 void *priv_data EXT2FS_ATTR((unused)))
f3db3566
TT
124{
125 if (!*block_nr)
126 return 0;
127
128 /*
129 * If the block number is outrageous, clear it and ignore it.
130 */
4efbac6f 131 if (*block_nr >= ext2fs_blocks_count(fs->super) ||
f3db3566 132 *block_nr < fs->super->s_first_data_block) {
f37ab68a
TT
133 printf(_("Warning: illegal block %u found in bad block inode. "
134 "Cleared.\n"), *block_nr);
f3db3566
TT
135 *block_nr = 0;
136 return BLOCK_CHANGED;
137 }
138
139 return 0;
140}
141