]> git.ipfire.org Git - thirdparty/mdadm.git/blame - bitmap.c
Stuff like..
[thirdparty/mdadm.git] / bitmap.c
CommitLineData
c82f047c
NB
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2004 Paul Clements, SteelEye Technology, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <sys/types.h>
22#include <sys/stat.h>
23#include "mdadm.h"
24#include <asm/byteorder.h>
25
26#define min(a,b) (((a) < (b)) ? (a) : (b))
27
28inline void sb_le_to_cpu(bitmap_super_t *sb)
29{
30 sb->magic = __le32_to_cpu(sb->magic);
31 sb->version = __le32_to_cpu(sb->version);
32 /* uuid gets no translation */
33 sb->events = __le64_to_cpu(sb->events);
34 sb->events_cleared = __le64_to_cpu(sb->events_cleared);
35 sb->state = __le32_to_cpu(sb->state);
36 sb->chunksize = __le32_to_cpu(sb->chunksize);
37 sb->daemon_sleep = __le32_to_cpu(sb->daemon_sleep);
38 sb->sync_size = __le64_to_cpu(sb->sync_size);
39}
40
41inline void sb_cpu_to_le(bitmap_super_t *sb)
42{
43 sb_le_to_cpu(sb); /* these are really the same thing */
44}
45
46mapping_t bitmap_states[] = {
47 { "OK", 0 },
48 { "Out of date", 2 },
49 { NULL, -1 }
50};
51
52const char *bitmap_state(int state_num)
53{
54 char *state = map_num(bitmap_states, state_num);
55 return state ? state : "Unknown";
56}
57
58const char *human_chunksize(unsigned long bytes)
59{
60 static char buf[16];
61 char *suffixes[] = { "B", "KB", "MB", "GB", "TB", NULL };
62 int i = 0;
63
64 while (bytes >> 10) {
65 bytes >>= 10;
66 i++;
67 }
68
8f23b0b3 69 snprintf(buf, sizeof(buf), "%lu %s", bytes, suffixes[i]);
c82f047c
NB
70
71 return buf;
72}
73
74typedef struct bitmap_info_s {
75 bitmap_super_t sb;
76 unsigned long long total_bits;
77 unsigned long long dirty_bits;
78} bitmap_info_t;
79
80/* count the dirty bits in the first num_bits of byte */
81inline int count_dirty_bits_byte(char byte, int num_bits)
82{
83 int num = 0;
84
85 switch (num_bits) { /* fall through... */
86 case 8: if (byte & 128) num++;
87 case 7: if (byte & 64) num++;
88 case 6: if (byte & 32) num++;
89 case 5: if (byte & 16) num++;
90 case 4: if (byte & 8) num++;
91 case 3: if (byte & 4) num++;
92 case 2: if (byte & 2) num++;
93 case 1: if (byte & 1) num++;
94 default: break;
95 }
96
97 return num;
98}
99
100int count_dirty_bits(char *buf, int num_bits)
101{
102 int i, num = 0;
103
104 for (i=0; i < num_bits / 8; i++)
105 num += count_dirty_bits_byte(buf[i], 8);
106
107 if (num_bits % 8) /* not an even byte boundary */
108 num += count_dirty_bits_byte(buf[i], num_bits % 8);
109
110 return num;
111}
112
113/* calculate the size of the bitmap given the array size and bitmap chunksize */
114unsigned long long bitmap_bits(unsigned long long array_size,
115 unsigned long chunksize)
116{
117 return (array_size * 512 + chunksize - 1) / chunksize;
118}
119
120bitmap_info_t *bitmap_fd_read(int fd, int brief)
121{
122 unsigned long long total_bits = 0, read_bits = 0, dirty_bits = 0;
123 bitmap_info_t *info;
124 char buf[512];
125 int n;
126
127 info = malloc(sizeof(*info));
128 if (info == NULL) {
838acbc2
NB
129#if __GNUC__ < 3
130 fprintf(stderr, Name ": failed to allocate %d bytes\n",
131 (int)sizeof(*info));
132#else
f9c25f1d 133 fprintf(stderr, Name ": failed to allocate %zd bytes\n",
c82f047c 134 sizeof(*info));
838acbc2 135#endif
c82f047c
NB
136 return NULL;
137 }
138
139 if (read(fd, &info->sb, sizeof(info->sb)) != sizeof(info->sb)) {
140 fprintf(stderr, Name ": failed to read superblock of bitmap "
141 "file: %s\n", strerror(errno));
142 free(info);
143 return NULL;
144 }
145
146 sb_le_to_cpu(&info->sb); /* convert superblock to CPU byte ordering */
147
148 if (brief || info->sb.sync_size == 0)
149 goto out;
150
151 /* read the rest of the file counting total bits and dirty bits --
152 * we stop when either:
153 * 1) we hit EOF, in which case we assume the rest of the bits (if any)
154 * are dirty
155 * 2) we've read the full bitmap, in which case we ignore any trailing
156 * data in the file
157 */
158 total_bits = bitmap_bits(info->sb.sync_size, info->sb.chunksize);
159
8431b2b2 160 while ((n = read(fd, buf, sizeof(buf))) > 0) {
c82f047c
NB
161 unsigned long long remaining = total_bits - read_bits;
162
8431b2b2
NB
163 if (remaining > sizeof(buf) * 8) /* we want the full buffer */
164 remaining = sizeof(buf) * 8;
c82f047c
NB
165 if (remaining > n * 8) /* the file is truncated */
166 remaining = n * 8;
167 dirty_bits += count_dirty_bits(buf, remaining);
168
169 read_bits += remaining;
170 if (read_bits >= total_bits) /* we've got what we want */
171 break;
172 }
173
174 if (read_bits < total_bits) { /* file truncated... */
175 fprintf(stderr, Name ": WARNING: bitmap file is not large "
f9c25f1d
NB
176 "enough for array size %llu!\n\n",
177 (unsigned long long)info->sb.sync_size);
c82f047c
NB
178 total_bits = read_bits;
179 }
180out:
181 info->total_bits = total_bits;
182 info->dirty_bits = dirty_bits;
183 return info;
184}
185
34163fc7 186bitmap_info_t *bitmap_file_read(char *filename, int brief, struct supertype **stp)
c82f047c
NB
187{
188 int fd;
189 bitmap_info_t *info;
55935d51 190 struct stat stb;
34163fc7 191 struct supertype *st = *stp;
c82f047c
NB
192
193 fd = open(filename, O_RDONLY);
194 if (fd < 0) {
195 fprintf(stderr, Name ": failed to open bitmap file %s: %s\n",
196 filename, strerror(errno));
197 return NULL;
198 }
55935d51
NB
199 fstat(fd, &stb);
200 if ((S_IFMT & stb.st_mode) == S_IFBLK) {
201 /* block device, so we are probably after an internal bitmap */
202 if (!st) st = guess_super(fd);
203 if (!st) {
204 /* just look at device... */
205 lseek(fd, 0, 0);
206 } else {
f6d75de8 207 st->ss->locate_bitmap(st, fd, NULL);
55935d51 208 }
34163fc7
NB
209 ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
210 *stp = st;
55935d51 211 }
c82f047c
NB
212
213 info = bitmap_fd_read(fd, brief);
214 close(fd);
215 return info;
216}
217
34163fc7
NB
218__u32 swapl(__u32 l)
219{
220 char *c = (char*)&l;
221 char t= c[0];
222 c[0] = c[3];
223 c[3] = t;
224
225 t = c[1];
226 c[1] = c[2];
227 c[2] = t;
228 return l;
229}
55935d51 230int ExamineBitmap(char *filename, int brief, struct supertype *st)
c82f047c
NB
231{
232 /*
233 * Read the bitmap file and display its contents
234 */
235
236 bitmap_super_t *sb;
237 bitmap_info_t *info;
238 int rv = 1;
dfd4d8ee 239 char buf[64];
c82f047c 240
34163fc7 241 info = bitmap_file_read(filename, brief, &st);
c82f047c
NB
242 if (!info)
243 return rv;
244
245 sb = &info->sb;
246 printf(" Filename : %s\n", filename);
247 printf(" Magic : %08x\n", sb->magic);
248 if (sb->magic != BITMAP_MAGIC) {
249 fprintf(stderr, Name ": invalid bitmap magic 0x%x, the bitmap file appears to be corrupted\n", sb->magic);
250 }
251 printf(" Version : %d\n", sb->version);
dcec9ee5
NB
252 if (sb->version < BITMAP_MAJOR_LO ||
253 sb->version > BITMAP_MAJOR_HI) {
c82f047c
NB
254 fprintf(stderr, Name ": unknown bitmap version %d, either the bitmap file is corrupted or you need to upgrade your tools\n", sb->version);
255 goto free_info;
256 }
257
258 rv = 0;
34163fc7
NB
259 if (st && st->ss->swapuuid) {
260 printf(" UUID : %08x.%08x.%08x.%08x\n",
261 swapl(*(__u32 *)(sb->uuid+0)),
262 swapl(*(__u32 *)(sb->uuid+4)),
263 swapl(*(__u32 *)(sb->uuid+8)),
264 swapl(*(__u32 *)(sb->uuid+12)));
265 } else {
c82f047c
NB
266 printf(" UUID : %08x.%08x.%08x.%08x\n",
267 *(__u32 *)(sb->uuid+0),
268 *(__u32 *)(sb->uuid+4),
269 *(__u32 *)(sb->uuid+8),
270 *(__u32 *)(sb->uuid+12));
34163fc7 271 }
f9c25f1d
NB
272 printf(" Events : %llu\n", (unsigned long long)sb->events);
273 printf(" Events Cleared : %llu\n", (unsigned long long)sb->events_cleared);
c82f047c
NB
274 printf(" State : %s\n", bitmap_state(sb->state));
275 printf(" Chunksize : %s\n", human_chunksize(sb->chunksize));
276 printf(" Daemon : %ds flush period\n", sb->daemon_sleep);
dfd4d8ee
NB
277 if (sb->write_behind)
278 sprintf(buf, "Allow write behind, max %d", sb->write_behind);
279 else
280 sprintf(buf, "Normal");
281 printf(" Write Mode : %s\n", buf);
f9c25f1d 282 printf(" Sync Size : %llu%s\n", (unsigned long long)sb->sync_size/2,
f277ce36 283 human_size(sb->sync_size * 512));
c82f047c
NB
284 if (brief)
285 goto free_info;
286 printf(" Bitmap : %llu bits (chunks), %llu dirty (%2.1f%%)\n",
287 info->total_bits, info->dirty_bits,
288 100.0 * info->dirty_bits / (info->total_bits + 1));
289free_info:
290 free(info);
291 return rv;
292}
293
294int CreateBitmap(char *filename, int force, char uuid[16],
1bf4e2d9
NB
295 unsigned long chunksize, unsigned long daemon_sleep,
296 unsigned long write_behind,
dcec9ee5
NB
297 unsigned long long array_size /* sectors */,
298 int major)
c82f047c
NB
299{
300 /*
301 * Create a bitmap file with a superblock and (optionally) a full bitmap
302 */
303
304 FILE *fp;
305 int rv = 1;
306 char block[512];
307 bitmap_super_t sb;
308 long long bytes, filesize;
309
310 if (!force && access(filename, F_OK) == 0) {
311 fprintf(stderr, Name ": bitmap file %s already exists, use --force to overwrite\n", filename);
312 return rv;
313 }
314
315 fp = fopen(filename, "w");
316 if (fp == NULL) {
317 fprintf(stderr, Name ": failed to open bitmap file %s: %s\n",
318 filename, strerror(errno));
319 return rv;
320 }
321
322 memset(&sb, 0, sizeof(sb));
323 sb.magic = BITMAP_MAGIC;
dcec9ee5 324 sb.version = major;
c82f047c
NB
325 if (uuid != NULL)
326 memcpy(sb.uuid, uuid, 16);
327 sb.chunksize = chunksize;
328 sb.daemon_sleep = daemon_sleep;
dfd4d8ee 329 sb.write_behind = write_behind;
c82f047c
NB
330 sb.sync_size = array_size;
331
332 sb_cpu_to_le(&sb); /* convert to on-disk byte ordering */
333
334 if (fwrite(&sb, sizeof(sb), 1, fp) != 1) {
335 fprintf(stderr, Name ": failed to write superblock to bitmap file %s: %s\n", filename, strerror(errno));
336 goto out;
337 }
338
339 /* calculate the size of the bitmap and write it to disk */
340 bytes = (bitmap_bits(array_size, chunksize) + 7) / 8;
341 if (!bytes) {
342 rv = 0;
343 goto out;
344 }
345
346 filesize = bytes + sizeof(sb);
347
348 memset(block, 0xff, sizeof(block));
349
350 while (bytes > 0) {
351 if (fwrite(block, sizeof(block), 1, fp) != 1) {
352 fprintf(stderr, Name ": failed to write bitmap file %s: %s\n", filename, strerror(errno));
353 goto out;
354 }
355 bytes -= sizeof(block);
356 }
357
358 rv = 0;
359 /* make the file be the right size (well, to the nearest byte) */
360 ftruncate(fileno(fp), filesize);
361out:
362 fclose(fp);
363 if (rv)
364 unlink(filename); /* possibly corrupted, better get rid of it */
365 return rv;
366}