blob: 9d43444a7d90b86dee3a5dedf2c62b0882555329 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * badblocks.c --- routines to manipulate the bad block structure
3 *
Theodore Ts'o21c84b71997-04-29 16:15:03 +00004 * Copyright (C) 1994, 1995, 1996 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
Theodore Ts'o21c84b71997-04-29 16:15:03 +000032#include "ext2fsP.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000033
34/*
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000035 * Helper function for making a badblocks list
Theodore Ts'o3839e651997-04-26 13:21:57 +000036 */
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000037static errcode_t make_badblocks_list(int size, int num, blk_t *list,
38 ext2_badblocks_list *ret)
Theodore Ts'o3839e651997-04-26 13:21:57 +000039{
Theodore Ts'o21c84b71997-04-29 16:15:03 +000040 ext2_badblocks_list bb;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +000041 errcode_t retval;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000042
Theodore Ts'o7b4e4531997-10-26 03:41:24 +000043 retval = ext2fs_get_mem(sizeof(struct ext2_struct_badblocks_list),
44 (void **) &bb);
45 if (retval)
46 return retval;
Theodore Ts'o21c84b71997-04-29 16:15:03 +000047 memset(bb, 0, sizeof(struct ext2_struct_badblocks_list));
Theodore Ts'of3db3561997-04-26 13:34:30 +000048 bb->magic = EXT2_ET_MAGIC_BADBLOCKS_LIST;
Theodore Ts'o3839e651997-04-26 13:21:57 +000049 bb->size = size ? size : 10;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000050 bb->num = num;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +000051 retval = ext2fs_get_mem(bb->size * sizeof(blk_t), (void **) &bb->list);
Theodore Ts'o3839e651997-04-26 13:21:57 +000052 if (!bb->list) {
Theodore Ts'o7b4e4531997-10-26 03:41:24 +000053 ext2fs_free_mem((void **) &bb);
54 return retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +000055 }
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000056 if (list)
57 memcpy(bb->list, list, bb->size * sizeof(blk_t));
58 else
59 memset(bb->list, 0, bb->size * sizeof(blk_t));
Theodore Ts'o3839e651997-04-26 13:21:57 +000060 *ret = bb;
61 return 0;
62}
Theodore Ts'oa29f4d31997-04-29 21:26:48 +000063
64
65/*
66 * This procedure creates an empty badblocks list.
67 */
68errcode_t ext2fs_badblocks_list_create(ext2_badblocks_list *ret, int size)
69{
70 return make_badblocks_list(size, 0, 0, ret);
71}
72
73/*
74 * This procedure copies a badblocks list
75 */
76errcode_t ext2fs_badblocks_copy(ext2_badblocks_list src,
77 ext2_badblocks_list *dest)
78{
79 errcode_t retval;
80
81 retval = make_badblocks_list(src->size, src->num, src->list,
82 dest);
83 if (retval)
84 return retval;
85 (*dest)->badblocks_flags = src->badblocks_flags;
86 return 0;
87}
88
Theodore Ts'o3839e651997-04-26 13:21:57 +000089
90/*
91 * This procedure frees a badblocks list.
Theodore Ts'o21c84b71997-04-29 16:15:03 +000092 *
93 * (note: moved to closefs.c)
Theodore Ts'o3839e651997-04-26 13:21:57 +000094 */
Theodore Ts'of3db3561997-04-26 13:34:30 +000095
Theodore Ts'o3839e651997-04-26 13:21:57 +000096
97/*
98 * This procedure adds a block to a badblocks list.
99 */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000100errcode_t ext2fs_badblocks_list_add(ext2_badblocks_list bb, blk_t blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000101{
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000102 errcode_t retval;
103 int i, j;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000104
Theodore Ts'of3db3561997-04-26 13:34:30 +0000105 EXT2_CHECK_MAGIC(bb, EXT2_ET_MAGIC_BADBLOCKS_LIST);
106
Theodore Ts'o3839e651997-04-26 13:21:57 +0000107 if (bb->num >= bb->size) {
108 bb->size += 10;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000109 retval = ext2fs_resize_mem(bb->size * sizeof(blk_t),
110 (void **) &bb->list);
111 if (retval)
112 return retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000113 }
114
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000115 j = bb->num;
116 for (i=0; i < bb->num; i++) {
117 if (bb->list[i] == blk)
118 return 0;
119 if (bb->list[i] > blk) {
120 j = i;
121 break;
122 }
123 }
124 for (i=bb->num; i > j; i--)
125 bb->list[i] = bb->list[i-1];
126 bb->list[j] = blk;
127 bb->num++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000128 return 0;
129}
130
131/*
132 * This procedure tests to see if a particular block is on a badblocks
133 * list.
134 */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000135int ext2fs_badblocks_list_test(ext2_badblocks_list bb, blk_t blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000136{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000137 int low, high, mid;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000138
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000139 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
140 return 0;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000141
Theodore Ts'of635d7f1997-05-09 02:50:16 +0000142 if (bb->num == 0)
143 return 0;
144
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000145 low = 0;
146 high = bb->num-1;
147 if (blk == bb->list[low])
148 return 1;
149 if (blk == bb->list[high])
150 return 1;
151
152 while (low < high) {
153 mid = (low+high)/2;
154 if (mid == low || mid == high)
155 break;
156 if (blk == bb->list[mid])
Theodore Ts'o3839e651997-04-26 13:21:57 +0000157 return 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000158 if (blk < bb->list[mid])
159 high = mid;
160 else
161 low = mid;
162 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000163 return 0;
164}
165
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000166errcode_t ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb,
167 ext2_badblocks_iterate *ret)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000168{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000169 ext2_badblocks_iterate iter;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000170 errcode_t retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000171
Theodore Ts'of3db3561997-04-26 13:34:30 +0000172 EXT2_CHECK_MAGIC(bb, EXT2_ET_MAGIC_BADBLOCKS_LIST);
173
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000174 retval = ext2fs_get_mem(sizeof(struct ext2_struct_badblocks_iterate),
175 (void **) &iter);
176 if (retval)
177 return retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000178
Theodore Ts'of3db3561997-04-26 13:34:30 +0000179 iter->magic = EXT2_ET_MAGIC_BADBLOCKS_ITERATE;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000180 iter->bb = bb;
181 iter->ptr = 0;
182 *ret = iter;
183 return 0;
184}
185
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000186int ext2fs_badblocks_list_iterate(ext2_badblocks_iterate iter, blk_t *blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000187{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000188 ext2_badblocks_list bb;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000189
190 if (iter->magic != EXT2_ET_MAGIC_BADBLOCKS_ITERATE)
191 return 0;
192
193 bb = iter->bb;
194
195 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
196 return 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000197
198 if (iter->ptr < bb->num) {
199 *blk = bb->list[iter->ptr++];
200 return 1;
201 }
202 *blk = 0;
203 return 0;
204}
205
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000206void ext2fs_badblocks_list_iterate_end(ext2_badblocks_iterate iter)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000207{
Theodore Ts'of3db3561997-04-26 13:34:30 +0000208 if (!iter || (iter->magic != EXT2_ET_MAGIC_BADBLOCKS_ITERATE))
209 return;
210
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211 iter->bb = 0;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000212 ext2fs_free_mem((void **) &iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000213}
214
215
216
217
218