blob: 85c8613846a3ecfedb9df36a2dba33f287d7c3d6 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * read_bb --- read the bad blocks inode
3 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00004 * Copyright (C) 1994 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
12#include <stdio.h>
13#include <string.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000014#if HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000015#include <unistd.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000016#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000017#include <fcntl.h>
18#include <time.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000019#if HAVE_SYS_STAT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000020#include <sys/stat.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000021#endif
22#if HAVE_SYS_TYPES_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000023#include <sys/types.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000024#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000025
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000026#if EXT2_FLAT_INCLUDES
27#include "ext2_fs.h"
28#else
Theodore Ts'o3839e651997-04-26 13:21:57 +000029#include <linux/ext2_fs.h>
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000030#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000031
32#include "ext2fs.h"
33
34struct read_bb_record {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000035 ext2_badblocks_list bb_list;
Theodore Ts'o3839e651997-04-26 13:21:57 +000036 errcode_t err;
37};
38
39/*
40 * Helper function for ext2fs_read_bb_inode()
41 */
Theodore Ts'o3cb6c501997-08-11 20:29:22 +000042#ifdef __TURBOC__
43#pragma argsused
44#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000045static int mark_bad_block(ext2_filsys fs, blk_t *block_nr,
Theodore Ts'o03673db1998-06-10 20:39:43 +000046 e2_blkcnt_t blockcnt, blk_t ref_block,
Theodore Ts'o36a43d61998-03-24 16:17:51 +000047 int ref_offset, void *priv_data)
Theodore Ts'o3839e651997-04-26 13:21:57 +000048{
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000049 struct read_bb_record *rb = (struct read_bb_record *) priv_data;
Theodore Ts'o3839e651997-04-26 13:21:57 +000050
51 if (blockcnt < 0)
52 return 0;
53
Theodore Ts'o4faba5b1998-06-16 05:23:41 +000054 if ((*block_nr < fs->super->s_first_data_block) ||
55 (*block_nr >= fs->super->s_blocks_count))
56 return 0; /* Ignore illegal blocks */
57
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000058 rb->err = ext2fs_badblocks_list_add(rb->bb_list, *block_nr);
Theodore Ts'o3839e651997-04-26 13:21:57 +000059 if (rb->err)
60 return BLOCK_ABORT;
61 return 0;
62}
63
64/*
65 * Reads the current bad blocks from the bad blocks inode.
66 */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000067errcode_t ext2fs_read_bb_inode(ext2_filsys fs, ext2_badblocks_list *bb_list)
Theodore Ts'o3839e651997-04-26 13:21:57 +000068{
69 errcode_t retval;
70 struct read_bb_record rb;
71 struct ext2_inode inode;
Theodore Ts'o3cb6c501997-08-11 20:29:22 +000072 blk_t numblocks;
Theodore Ts'o3839e651997-04-26 13:21:57 +000073
Theodore Ts'of3db3561997-04-26 13:34:30 +000074 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
75
Theodore Ts'o3839e651997-04-26 13:21:57 +000076 if (!*bb_list) {
77 retval = ext2fs_read_inode(fs, EXT2_BAD_INO, &inode);
78 if (retval)
79 return retval;
Theodore Ts'o4faba5b1998-06-16 05:23:41 +000080 if (inode.i_blocks < 500)
81 numblocks = (inode.i_blocks /
82 (fs->blocksize / 512)) + 20;
83 else
84 numblocks = 500;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000085 retval = ext2fs_badblocks_list_create(bb_list, numblocks);
Theodore Ts'o3839e651997-04-26 13:21:57 +000086 if (retval)
87 return retval;
88 }
89
90 rb.bb_list = *bb_list;
91 rb.err = 0;
Theodore Ts'o36a43d61998-03-24 16:17:51 +000092 retval = ext2fs_block_iterate2(fs, EXT2_BAD_INO, 0, 0,
Theodore Ts'o3839e651997-04-26 13:21:57 +000093 mark_bad_block, &rb);
94 if (retval)
95 return retval;
96
97 return rb.err;
98}
99
100