2 * mdadm - manage Linux "md" devices aka RAID arrays.
4 * Copyright (C) 2004 Paul Clements, SteelEye Technology, Inc.
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.
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.
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
23 #define min(a,b) (((a) < (b)) ? (a) : (b))
25 inline void sb_le_to_cpu(bitmap_super_t
*sb
)
27 sb
->magic
= __le32_to_cpu(sb
->magic
);
28 sb
->version
= __le32_to_cpu(sb
->version
);
29 /* uuid gets no translation */
30 sb
->events
= __le64_to_cpu(sb
->events
);
31 sb
->events_cleared
= __le64_to_cpu(sb
->events_cleared
);
32 sb
->state
= __le32_to_cpu(sb
->state
);
33 sb
->chunksize
= __le32_to_cpu(sb
->chunksize
);
34 sb
->daemon_sleep
= __le32_to_cpu(sb
->daemon_sleep
);
35 sb
->sync_size
= __le64_to_cpu(sb
->sync_size
);
36 sb
->write_behind
= __le32_to_cpu(sb
->write_behind
);
39 inline void sb_cpu_to_le(bitmap_super_t
*sb
)
41 sb_le_to_cpu(sb
); /* these are really the same thing */
44 mapping_t bitmap_states
[] = {
50 const char *bitmap_state(int state_num
)
52 char *state
= map_num(bitmap_states
, state_num
);
53 return state
? state
: "Unknown";
56 const char *human_chunksize(unsigned long bytes
)
59 char *suffixes
[] = { "B", "KB", "MB", "GB", "TB", NULL
};
67 snprintf(buf
, sizeof(buf
), "%lu %s", bytes
, suffixes
[i
]);
72 typedef struct bitmap_info_s
{
74 unsigned long long total_bits
;
75 unsigned long long dirty_bits
;
78 /* count the dirty bits in the first num_bits of byte */
79 inline int count_dirty_bits_byte(char byte
, int num_bits
)
83 switch (num_bits
) { /* fall through... */
84 case 8: if (byte
& 128) num
++;
85 case 7: if (byte
& 64) num
++;
86 case 6: if (byte
& 32) num
++;
87 case 5: if (byte
& 16) num
++;
88 case 4: if (byte
& 8) num
++;
89 case 3: if (byte
& 4) num
++;
90 case 2: if (byte
& 2) num
++;
91 case 1: if (byte
& 1) num
++;
98 int count_dirty_bits(char *buf
, int num_bits
)
102 for (i
=0; i
< num_bits
/ 8; i
++)
103 num
+= count_dirty_bits_byte(buf
[i
], 8);
105 if (num_bits
% 8) /* not an even byte boundary */
106 num
+= count_dirty_bits_byte(buf
[i
], num_bits
% 8);
111 /* calculate the size of the bitmap given the array size and bitmap chunksize */
112 unsigned long long bitmap_bits(unsigned long long array_size
,
113 unsigned long chunksize
)
115 return (array_size
* 512 + chunksize
- 1) / chunksize
;
118 bitmap_info_t
*bitmap_fd_read(int fd
, int brief
)
120 /* Note: fd might be open O_DIRECT, so we must be
121 * careful to align reads properly
123 unsigned long long total_bits
= 0, read_bits
= 0, dirty_bits
= 0;
125 char *buf
, *unaligned
;
128 unaligned
= malloc(8192*2);
129 buf
= (char*) ((unsigned long)unaligned
| 8191)+1;
130 n
= read(fd
, buf
, 8192);
132 info
= malloc(sizeof(*info
));
135 fprintf(stderr
, Name
": failed to allocate %d bytes\n",
138 fprintf(stderr
, Name
": failed to allocate %zd bytes\n",
144 if (n
< sizeof(info
->sb
)) {
145 fprintf(stderr
, Name
": failed to read superblock of bitmap "
146 "file: %s\n", strerror(errno
));
151 memcpy(&info
->sb
, buf
, sizeof(info
->sb
));
152 skip
= sizeof(info
->sb
);
154 sb_le_to_cpu(&info
->sb
); /* convert superblock to CPU byte ordering */
156 if (brief
|| info
->sb
.sync_size
== 0)
159 /* read the rest of the file counting total bits and dirty bits --
160 * we stop when either:
161 * 1) we hit EOF, in which case we assume the rest of the bits (if any)
163 * 2) we've read the full bitmap, in which case we ignore any trailing
166 total_bits
= bitmap_bits(info
->sb
.sync_size
, info
->sb
.chunksize
);
168 while(read_bits
< total_bits
) {
169 unsigned long long remaining
= total_bits
- read_bits
;
172 n
= read(fd
, buf
, 8192);
177 if (remaining
> (n
-skip
) * 8) /* we want the full buffer */
178 remaining
= (n
-skip
) * 8;
180 dirty_bits
+= count_dirty_bits(buf
+skip
, remaining
);
182 read_bits
+= remaining
;
186 if (read_bits
< total_bits
) { /* file truncated... */
187 fprintf(stderr
, Name
": WARNING: bitmap file is not large "
188 "enough for array size %llu!\n\n",
189 (unsigned long long)info
->sb
.sync_size
);
190 total_bits
= read_bits
;
193 info
->total_bits
= total_bits
;
194 info
->dirty_bits
= dirty_bits
;
198 bitmap_info_t
*bitmap_file_read(char *filename
, int brief
, struct supertype
**stp
)
203 struct supertype
*st
= *stp
;
205 if (stat(filename
, &stb
) < 0) {
206 fprintf(stderr
, Name
": failed to find file %s: %s\n",
207 filename
, strerror(errno
));
210 if ((S_IFMT
& stb
.st_mode
) == S_IFBLK
) {
211 fd
= open(filename
, O_RDONLY
);
213 fprintf(stderr
, Name
": failed to open bitmap file %s: %s\n",
214 filename
, strerror(errno
));
217 /* block device, so we are probably after an internal bitmap */
218 if (!st
) st
= guess_super(fd
);
220 /* just look at device... */
223 st
->ss
->locate_bitmap(st
, fd
, NULL
);
225 ioctl(fd
, BLKFLSBUF
, 0); /* make sure we read current data */
228 fd
= open(filename
, O_RDONLY
|O_DIRECT
);
230 fprintf(stderr
, Name
": failed to open bitmap file %s: %s\n",
231 filename
, strerror(errno
));
236 info
= bitmap_fd_read(fd
, brief
);
253 int ExamineBitmap(char *filename
, int brief
, struct supertype
*st
)
256 * Read the bitmap file and display its contents
265 info
= bitmap_file_read(filename
, brief
, &st
);
270 printf(" Filename : %s\n", filename
);
271 printf(" Magic : %08x\n", sb
->magic
);
272 if (sb
->magic
!= BITMAP_MAGIC
) {
273 fprintf(stderr
, Name
": invalid bitmap magic 0x%x, the bitmap file appears to be corrupted\n", sb
->magic
);
275 printf(" Version : %d\n", sb
->version
);
276 if (sb
->version
< BITMAP_MAJOR_LO
||
277 sb
->version
> BITMAP_MAJOR_HI
) {
278 fprintf(stderr
, Name
": unknown bitmap version %d, either the bitmap file is corrupted or you need to upgrade your tools\n", sb
->version
);
284 swap
= st
->ss
->swapuuid
;
286 #if __BYTE_ORDER == BIG_ENDIAN
292 printf(" UUID : %08x:%08x:%08x:%08x\n",
293 swapl(*(__u32
*)(sb
->uuid
+0)),
294 swapl(*(__u32
*)(sb
->uuid
+4)),
295 swapl(*(__u32
*)(sb
->uuid
+8)),
296 swapl(*(__u32
*)(sb
->uuid
+12)));
298 printf(" UUID : %08x:%08x:%08x:%08x\n",
299 *(__u32
*)(sb
->uuid
+0),
300 *(__u32
*)(sb
->uuid
+4),
301 *(__u32
*)(sb
->uuid
+8),
302 *(__u32
*)(sb
->uuid
+12));
304 printf(" Events : %llu\n", (unsigned long long)sb
->events
);
305 printf(" Events Cleared : %llu\n", (unsigned long long)sb
->events_cleared
);
306 printf(" State : %s\n", bitmap_state(sb
->state
));
307 printf(" Chunksize : %s\n", human_chunksize(sb
->chunksize
));
308 printf(" Daemon : %ds flush period\n", sb
->daemon_sleep
);
309 if (sb
->write_behind
)
310 sprintf(buf
, "Allow write behind, max %d", sb
->write_behind
);
312 sprintf(buf
, "Normal");
313 printf(" Write Mode : %s\n", buf
);
314 printf(" Sync Size : %llu%s\n", (unsigned long long)sb
->sync_size
/2,
315 human_size(sb
->sync_size
* 512));
318 printf(" Bitmap : %llu bits (chunks), %llu dirty (%2.1f%%)\n",
319 info
->total_bits
, info
->dirty_bits
,
320 100.0 * info
->dirty_bits
/ (info
->total_bits
+ 1));
326 int CreateBitmap(char *filename
, int force
, char uuid
[16],
327 unsigned long chunksize
, unsigned long daemon_sleep
,
328 unsigned long write_behind
,
329 unsigned long long array_size
/* sectors */,
333 * Create a bitmap file with a superblock and (optionally) a full bitmap
340 long long bytes
, filesize
;
342 if (!force
&& access(filename
, F_OK
) == 0) {
343 fprintf(stderr
, Name
": bitmap file %s already exists, use --force to overwrite\n", filename
);
347 fp
= fopen(filename
, "w");
349 fprintf(stderr
, Name
": failed to open bitmap file %s: %s\n",
350 filename
, strerror(errno
));
354 if (chunksize
== UnSet
) {
355 /* We don't want more than 2^21 chunks, as 2^11 fill up one
356 * 4K page (2 bytes per chunk), and 2^10 address of those
357 * fill up a 4K indexing page. 2^20 might be safer, especially
358 * on 64bit hosts, so use that.
360 chunksize
= DEFAULT_BITMAP_CHUNK
;
361 /* <<20 for 2^20 chunks, >>9 to convert bytes to sectors */
362 while (array_size
> (chunksize
<< (20-9)))
366 memset(&sb
, 0, sizeof(sb
));
367 sb
.magic
= BITMAP_MAGIC
;
370 memcpy(sb
.uuid
, uuid
, 16);
371 sb
.chunksize
= chunksize
;
372 sb
.daemon_sleep
= daemon_sleep
;
373 sb
.write_behind
= write_behind
;
374 sb
.sync_size
= array_size
;
376 sb_cpu_to_le(&sb
); /* convert to on-disk byte ordering */
378 if (fwrite(&sb
, sizeof(sb
), 1, fp
) != 1) {
379 fprintf(stderr
, Name
": failed to write superblock to bitmap file %s: %s\n", filename
, strerror(errno
));
383 /* calculate the size of the bitmap and write it to disk */
384 bytes
= (bitmap_bits(array_size
, chunksize
) + 7) / 8;
390 filesize
= bytes
+ sizeof(sb
);
392 memset(block
, 0xff, sizeof(block
));
395 if (fwrite(block
, sizeof(block
), 1, fp
) != 1) {
396 fprintf(stderr
, Name
": failed to write bitmap file %s: %s\n", filename
, strerror(errno
));
399 bytes
-= sizeof(block
);
404 /* make the file be the right size (well, to the nearest byte) */
405 if (ftruncate(fileno(fp
), filesize
))
410 unlink(filename
); /* possibly corrupted, better get rid of it */
414 int bitmap_update_uuid(int fd
, int *uuid
, int swap
)
416 struct bitmap_super_s bm
;
417 if (lseek(fd
, 0, 0) != 0)
419 if (read(fd
, &bm
, sizeof(bm
)) != sizeof(bm
))
421 if (bm
.magic
!= __cpu_to_le32(BITMAP_MAGIC
))
423 copy_uuid(bm
.uuid
, uuid
, swap
);
424 if (lseek(fd
, 0, 0) != 0)
426 if (write(fd
, &bm
, sizeof(bm
)) != sizeof(bm
)) {