blob: e2f46f1553a92c98a779fd9c28f4c7fcecc59b60 [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'o76f875d1998-04-27 01:41:13 +0000104 unsigned long old_size;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000105
Theodore Ts'of3db3561997-04-26 13:34:30 +0000106 EXT2_CHECK_MAGIC(bb, EXT2_ET_MAGIC_BADBLOCKS_LIST);
107
Theodore Ts'o3839e651997-04-26 13:21:57 +0000108 if (bb->num >= bb->size) {
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000109 old_size = bb->size * sizeof(blk_t);
Theodore Ts'of75c28d1998-08-01 04:18:06 +0000110 bb->size += 100;
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000111 retval = ext2fs_resize_mem(old_size, bb->size * sizeof(blk_t),
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000112 (void **) &bb->list);
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000113 if (retval) {
Theodore Ts'of75c28d1998-08-01 04:18:06 +0000114 bb->size -= 100;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000115 return retval;
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000116 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000117 }
118
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000119 j = bb->num;
120 for (i=0; i < bb->num; i++) {
121 if (bb->list[i] == blk)
122 return 0;
123 if (bb->list[i] > blk) {
124 j = i;
125 break;
126 }
127 }
128 for (i=bb->num; i > j; i--)
129 bb->list[i] = bb->list[i-1];
130 bb->list[j] = blk;
131 bb->num++;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000132 return 0;
133}
134
135/*
136 * This procedure tests to see if a particular block is on a badblocks
137 * list.
138 */
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000139int ext2fs_badblocks_list_test(ext2_badblocks_list bb, blk_t blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000140{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000141 int low, high, mid;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000142
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000143 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
144 return 0;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000145
Theodore Ts'of635d7f1997-05-09 02:50:16 +0000146 if (bb->num == 0)
147 return 0;
148
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000149 low = 0;
150 high = bb->num-1;
151 if (blk == bb->list[low])
152 return 1;
153 if (blk == bb->list[high])
154 return 1;
155
156 while (low < high) {
157 mid = (low+high)/2;
158 if (mid == low || mid == high)
159 break;
160 if (blk == bb->list[mid])
Theodore Ts'o3839e651997-04-26 13:21:57 +0000161 return 1;
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000162 if (blk < bb->list[mid])
163 high = mid;
164 else
165 low = mid;
166 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000167 return 0;
168}
169
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000170errcode_t ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb,
171 ext2_badblocks_iterate *ret)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000172{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000173 ext2_badblocks_iterate iter;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000174 errcode_t retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000175
Theodore Ts'of3db3561997-04-26 13:34:30 +0000176 EXT2_CHECK_MAGIC(bb, EXT2_ET_MAGIC_BADBLOCKS_LIST);
177
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000178 retval = ext2fs_get_mem(sizeof(struct ext2_struct_badblocks_iterate),
179 (void **) &iter);
180 if (retval)
181 return retval;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000182
Theodore Ts'of3db3561997-04-26 13:34:30 +0000183 iter->magic = EXT2_ET_MAGIC_BADBLOCKS_ITERATE;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000184 iter->bb = bb;
185 iter->ptr = 0;
186 *ret = iter;
187 return 0;
188}
189
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000190int ext2fs_badblocks_list_iterate(ext2_badblocks_iterate iter, blk_t *blk)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000191{
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000192 ext2_badblocks_list bb;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000193
194 if (iter->magic != EXT2_ET_MAGIC_BADBLOCKS_ITERATE)
195 return 0;
196
197 bb = iter->bb;
198
199 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
200 return 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000201
202 if (iter->ptr < bb->num) {
203 *blk = bb->list[iter->ptr++];
204 return 1;
205 }
206 *blk = 0;
207 return 0;
208}
209
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000210void ext2fs_badblocks_list_iterate_end(ext2_badblocks_iterate iter)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211{
Theodore Ts'of3db3561997-04-26 13:34:30 +0000212 if (!iter || (iter->magic != EXT2_ET_MAGIC_BADBLOCKS_ITERATE))
213 return;
214
Theodore Ts'o3839e651997-04-26 13:21:57 +0000215 iter->bb = 0;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000216 ext2fs_free_mem((void **) &iter);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000217}