]> git.ipfire.org Git - thirdparty/mdadm.git/blame - bitmap.c
Create version-4 bitmaps if kernel supports it.
[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) {
129 fprintf(stderr, Name ": failed to allocate %d bytes\n",
130 sizeof(*info));
131 return NULL;
132 }
133
134 if (read(fd, &info->sb, sizeof(info->sb)) != sizeof(info->sb)) {
135 fprintf(stderr, Name ": failed to read superblock of bitmap "
136 "file: %s\n", strerror(errno));
137 free(info);
138 return NULL;
139 }
140
141 sb_le_to_cpu(&info->sb); /* convert superblock to CPU byte ordering */
142
143 if (brief || info->sb.sync_size == 0)
144 goto out;
145
146 /* read the rest of the file counting total bits and dirty bits --
147 * we stop when either:
148 * 1) we hit EOF, in which case we assume the rest of the bits (if any)
149 * are dirty
150 * 2) we've read the full bitmap, in which case we ignore any trailing
151 * data in the file
152 */
153 total_bits = bitmap_bits(info->sb.sync_size, info->sb.chunksize);
154
8431b2b2 155 while ((n = read(fd, buf, sizeof(buf))) > 0) {
c82f047c
NB
156 unsigned long long remaining = total_bits - read_bits;
157
8431b2b2
NB
158 if (remaining > sizeof(buf) * 8) /* we want the full buffer */
159 remaining = sizeof(buf) * 8;
c82f047c
NB
160 if (remaining > n * 8) /* the file is truncated */
161 remaining = n * 8;
162 dirty_bits += count_dirty_bits(buf, remaining);
163
164 read_bits += remaining;
165 if (read_bits >= total_bits) /* we've got what we want */
166 break;
167 }
168
169 if (read_bits < total_bits) { /* file truncated... */
170 fprintf(stderr, Name ": WARNING: bitmap file is not large "
171 "enough for array size %llu!\n\n", info->sb.sync_size);
172 total_bits = read_bits;
173 }
174out:
175 info->total_bits = total_bits;
176 info->dirty_bits = dirty_bits;
177 return info;
178}
179
34163fc7 180bitmap_info_t *bitmap_file_read(char *filename, int brief, struct supertype **stp)
c82f047c
NB
181{
182 int fd;
183 bitmap_info_t *info;
55935d51 184 struct stat stb;
34163fc7 185 struct supertype *st = *stp;
c82f047c
NB
186
187 fd = open(filename, O_RDONLY);
188 if (fd < 0) {
189 fprintf(stderr, Name ": failed to open bitmap file %s: %s\n",
190 filename, strerror(errno));
191 return NULL;
192 }
55935d51
NB
193 fstat(fd, &stb);
194 if ((S_IFMT & stb.st_mode) == S_IFBLK) {
195 /* block device, so we are probably after an internal bitmap */
196 if (!st) st = guess_super(fd);
197 if (!st) {
198 /* just look at device... */
199 lseek(fd, 0, 0);
200 } else {
f6d75de8 201 st->ss->locate_bitmap(st, fd, NULL);
55935d51 202 }
34163fc7
NB
203 ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
204 *stp = st;
55935d51 205 }
c82f047c
NB
206
207 info = bitmap_fd_read(fd, brief);
208 close(fd);
209 return info;
210}
211
34163fc7
NB
212__u32 swapl(__u32 l)
213{
214 char *c = (char*)&l;
215 char t= c[0];
216 c[0] = c[3];
217 c[3] = t;
218
219 t = c[1];
220 c[1] = c[2];
221 c[2] = t;
222 return l;
223}
55935d51 224int ExamineBitmap(char *filename, int brief, struct supertype *st)
c82f047c
NB
225{
226 /*
227 * Read the bitmap file and display its contents
228 */
229
230 bitmap_super_t *sb;
231 bitmap_info_t *info;
232 int rv = 1;
dfd4d8ee 233 char buf[64];
c82f047c 234
34163fc7 235 info = bitmap_file_read(filename, brief, &st);
c82f047c
NB
236 if (!info)
237 return rv;
238
239 sb = &info->sb;
240 printf(" Filename : %s\n", filename);
241 printf(" Magic : %08x\n", sb->magic);
242 if (sb->magic != BITMAP_MAGIC) {
243 fprintf(stderr, Name ": invalid bitmap magic 0x%x, the bitmap file appears to be corrupted\n", sb->magic);
244 }
245 printf(" Version : %d\n", sb->version);
dcec9ee5
NB
246 if (sb->version < BITMAP_MAJOR_LO ||
247 sb->version > BITMAP_MAJOR_HI) {
c82f047c
NB
248 fprintf(stderr, Name ": unknown bitmap version %d, either the bitmap file is corrupted or you need to upgrade your tools\n", sb->version);
249 goto free_info;
250 }
251
252 rv = 0;
34163fc7
NB
253 if (st && st->ss->swapuuid) {
254 printf(" UUID : %08x.%08x.%08x.%08x\n",
255 swapl(*(__u32 *)(sb->uuid+0)),
256 swapl(*(__u32 *)(sb->uuid+4)),
257 swapl(*(__u32 *)(sb->uuid+8)),
258 swapl(*(__u32 *)(sb->uuid+12)));
259 } else {
c82f047c
NB
260 printf(" UUID : %08x.%08x.%08x.%08x\n",
261 *(__u32 *)(sb->uuid+0),
262 *(__u32 *)(sb->uuid+4),
263 *(__u32 *)(sb->uuid+8),
264 *(__u32 *)(sb->uuid+12));
34163fc7 265 }
c82f047c
NB
266 printf(" Events : %llu\n", sb->events);
267 printf(" Events Cleared : %llu\n", sb->events_cleared);
268 printf(" State : %s\n", bitmap_state(sb->state));
269 printf(" Chunksize : %s\n", human_chunksize(sb->chunksize));
270 printf(" Daemon : %ds flush period\n", sb->daemon_sleep);
dfd4d8ee
NB
271 if (sb->write_behind)
272 sprintf(buf, "Allow write behind, max %d", sb->write_behind);
273 else
274 sprintf(buf, "Normal");
275 printf(" Write Mode : %s\n", buf);
f277ce36
NB
276 printf(" Sync Size : %llu%s\n", sb->sync_size/2,
277 human_size(sb->sync_size * 512));
c82f047c
NB
278 if (brief)
279 goto free_info;
280 printf(" Bitmap : %llu bits (chunks), %llu dirty (%2.1f%%)\n",
281 info->total_bits, info->dirty_bits,
282 100.0 * info->dirty_bits / (info->total_bits + 1));
283free_info:
284 free(info);
285 return rv;
286}
287
288int CreateBitmap(char *filename, int force, char uuid[16],
1bf4e2d9
NB
289 unsigned long chunksize, unsigned long daemon_sleep,
290 unsigned long write_behind,
dcec9ee5
NB
291 unsigned long long array_size /* sectors */,
292 int major)
c82f047c
NB
293{
294 /*
295 * Create a bitmap file with a superblock and (optionally) a full bitmap
296 */
297
298 FILE *fp;
299 int rv = 1;
300 char block[512];
301 bitmap_super_t sb;
302 long long bytes, filesize;
303
304 if (!force && access(filename, F_OK) == 0) {
305 fprintf(stderr, Name ": bitmap file %s already exists, use --force to overwrite\n", filename);
306 return rv;
307 }
308
309 fp = fopen(filename, "w");
310 if (fp == NULL) {
311 fprintf(stderr, Name ": failed to open bitmap file %s: %s\n",
312 filename, strerror(errno));
313 return rv;
314 }
315
316 memset(&sb, 0, sizeof(sb));
317 sb.magic = BITMAP_MAGIC;
dcec9ee5 318 sb.version = major;
c82f047c
NB
319 if (uuid != NULL)
320 memcpy(sb.uuid, uuid, 16);
321 sb.chunksize = chunksize;
322 sb.daemon_sleep = daemon_sleep;
dfd4d8ee 323 sb.write_behind = write_behind;
c82f047c
NB
324 sb.sync_size = array_size;
325
326 sb_cpu_to_le(&sb); /* convert to on-disk byte ordering */
327
328 if (fwrite(&sb, sizeof(sb), 1, fp) != 1) {
329 fprintf(stderr, Name ": failed to write superblock to bitmap file %s: %s\n", filename, strerror(errno));
330 goto out;
331 }
332
333 /* calculate the size of the bitmap and write it to disk */
334 bytes = (bitmap_bits(array_size, chunksize) + 7) / 8;
335 if (!bytes) {
336 rv = 0;
337 goto out;
338 }
339
340 filesize = bytes + sizeof(sb);
341
342 memset(block, 0xff, sizeof(block));
343
344 while (bytes > 0) {
345 if (fwrite(block, sizeof(block), 1, fp) != 1) {
346 fprintf(stderr, Name ": failed to write bitmap file %s: %s\n", filename, strerror(errno));
347 goto out;
348 }
349 bytes -= sizeof(block);
350 }
351
352 rv = 0;
353 /* make the file be the right size (well, to the nearest byte) */
354 ftruncate(fileno(fp), filesize);
355out:
356 fclose(fp);
357 if (rv)
358 unlink(filename); /* possibly corrupted, better get rid of it */
359 return rv;
360}