]> git.ipfire.org Git - thirdparty/mdadm.git/blob - super1.c
Fix bug where v1 superblock might appear active when they should be clean.
[thirdparty/mdadm.git] / super1.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 */
29
30 #include "mdadm.h"
31 /*
32 * The version-1 superblock :
33 * All numeric fields are little-endian.
34 *
35 * total size: 256 bytes plus 2 per device.
36 * 1K allows 384 devices.
37 */
38 struct mdp_superblock_1 {
39 /* constant array information - 128 bytes */
40 __u32 magic; /* MD_SB_MAGIC: 0xa92b4efc - little endian */
41 __u32 major_version; /* 1 */
42 __u32 feature_map; /* 0 for now */
43 __u32 pad0; /* always set to 0 when writing */
44
45 __u8 set_uuid[16]; /* user-space generated. */
46 char set_name[32]; /* set and interpreted by user-space */
47
48 __u64 ctime; /* lo 40 bits are seconds, top 24 are microseconds or 0*/
49 __u32 level; /* -4 (multipath), -1 (linear), 0,1,4,5 */
50 __u32 layout; /* only for raid5 currently */
51 __u64 size; /* used size of component devices, in 512byte sectors */
52
53 __u32 chunksize; /* in 512byte sectors */
54 __u32 raid_disks;
55 __u32 bitmap_offset; /* sectors after start of superblock that bitmap starts
56 * NOTE: signed, so bitmap can be before superblock
57 * only meaningful of feature_map[0] is set.
58 */
59
60 /* These are only valid with feature bit '4' */
61 __u32 new_level; /* new level we are reshaping to */
62 __u64 reshape_position; /* next address in array-space for reshape */
63 __u32 delta_disks; /* change in number of raid_disks */
64 __u32 new_layout; /* new layout */
65 __u32 new_chunk; /* new chunk size (bytes) */
66 __u8 pad1[128-124]; /* set to 0 when written */
67
68 /* constant this-device information - 64 bytes */
69 __u64 data_offset; /* sector start of data, often 0 */
70 __u64 data_size; /* sectors in this device that can be used for data */
71 __u64 super_offset; /* sector start of this superblock */
72 __u64 recovery_offset;/* sectors before this offset (from data_offset) have been recovered */
73 __u32 dev_number; /* permanent identifier of this device - not role in raid */
74 __u32 cnt_corrected_read; /* number of read errors that were corrected by re-writing */
75 __u8 device_uuid[16]; /* user-space setable, ignored by kernel */
76 __u8 devflags; /* per-device flags. Only one defined...*/
77 #define WriteMostly1 1 /* mask for writemostly flag in above */
78 __u8 pad2[64-57]; /* set to 0 when writing */
79
80 /* array state information - 64 bytes */
81 __u64 utime; /* 40 bits second, 24 btes microseconds */
82 __u64 events; /* incremented when superblock updated */
83 __u64 resync_offset; /* data before this offset (from data_offset) known to be in sync */
84 __u32 sb_csum; /* checksum upto devs[max_dev] */
85 __u32 max_dev; /* size of devs[] array to consider */
86 __u8 pad3[64-32]; /* set to 0 when writing */
87
88 /* device state information. Indexed by dev_number.
89 * 2 bytes per device
90 * Note there are no per-device state flags. State information is rolled
91 * into the 'roles' value. If a device is spare or faulty, then it doesn't
92 * have a meaningful role.
93 */
94 __u16 dev_roles[0]; /* role in array, or 0xffff for a spare, or 0xfffe for faulty */
95 };
96
97 struct misc_dev_info {
98 __u64 device_size;
99 };
100
101 /* feature_map bits */
102 #define MD_FEATURE_BITMAP_OFFSET 1
103 #define MD_FEATURE_RECOVERY_OFFSET 2 /* recovery_offset is present and
104 * must be honoured
105 */
106 #define MD_FEATURE_RESHAPE_ACTIVE 4
107
108 #define MD_FEATURE_ALL (1|2|4)
109
110 #ifndef offsetof
111 #define offsetof(t,f) ((size_t)&(((t*)0)->f))
112 #endif
113 static unsigned int calc_sb_1_csum(struct mdp_superblock_1 * sb)
114 {
115 unsigned int disk_csum, csum;
116 unsigned long long newcsum;
117 int size = sizeof(*sb) + __le32_to_cpu(sb->max_dev)*2;
118 unsigned int *isuper = (unsigned int*)sb;
119 int i;
120
121 /* make sure I can count... */
122 if (offsetof(struct mdp_superblock_1,data_offset) != 128 ||
123 offsetof(struct mdp_superblock_1, utime) != 192 ||
124 sizeof(struct mdp_superblock_1) != 256) {
125 fprintf(stderr, "WARNING - superblock isn't sized correctly\n");
126 }
127
128 disk_csum = sb->sb_csum;
129 sb->sb_csum = 0;
130 newcsum = 0;
131 for (i=0; size>=4; size -= 4 ) {
132 newcsum += __le32_to_cpu(*isuper);
133 isuper++;
134 }
135
136 if (size == 2)
137 newcsum += __le16_to_cpu(*(unsigned short*) isuper);
138
139 csum = (newcsum & 0xffffffff) + (newcsum >> 32);
140 sb->sb_csum = disk_csum;
141 return __cpu_to_le32(csum);
142 }
143
144 #ifndef MDASSEMBLE
145 static void examine_super1(void *sbv, char *homehost)
146 {
147 struct mdp_superblock_1 *sb = sbv;
148 time_t atime;
149 int d;
150 int faulty;
151 int i;
152 char *c;
153 int l = homehost ? strlen(homehost) : 0;
154 int layout;
155
156 printf(" Magic : %08x\n", __le32_to_cpu(sb->magic));
157 printf(" Version : %02d\n", 1);
158 printf(" Feature Map : 0x%x\n", __le32_to_cpu(sb->feature_map));
159 printf(" Array UUID : ");
160 for (i=0; i<16; i++) {
161 if ((i&3)==0 && i != 0) printf(":");
162 printf("%02x", sb->set_uuid[i]);
163 }
164 printf("\n");
165 printf(" Name : %.32s", sb->set_name);
166 if (l > 0 && l < 32 &&
167 sb->set_name[l] == ':' &&
168 strncmp(sb->set_name, homehost, l) == 0)
169 printf(" (local to host %s)", homehost);
170 printf("\n");
171 atime = __le64_to_cpu(sb->ctime) & 0xFFFFFFFFFFULL;
172 printf(" Creation Time : %.24s\n", ctime(&atime));
173 c=map_num(pers, __le32_to_cpu(sb->level));
174 printf(" Raid Level : %s\n", c?c:"-unknown-");
175 printf(" Raid Devices : %d\n", __le32_to_cpu(sb->raid_disks));
176 printf("\n");
177 printf(" Used Dev Size : %llu%s\n",
178 (unsigned long long)sb->data_size,
179 human_size(sb->data_size<<9));
180 if (__le32_to_cpu(sb->level) >= 0) {
181 int ddsks=0;
182 switch(__le32_to_cpu(sb->level)) {
183 case 1: ddsks=1;break;
184 case 4:
185 case 5: ddsks = __le32_to_cpu(sb->raid_disks)-1; break;
186 case 6: ddsks = __le32_to_cpu(sb->raid_disks)-2; break;
187 case 10:
188 layout = __le32_to_cpu(sb->layout);
189 ddsks = __le32_to_cpu(sb->raid_disks)
190 / (layout&255) / ((layout>>8)&255);
191 }
192 if (ddsks)
193 printf(" Array Size : %llu%s\n",
194 ddsks*(unsigned long long)__le64_to_cpu(sb->size),
195 human_size(ddsks*__le64_to_cpu(sb->size)<<9));
196 if (sb->size != sb->data_size)
197 printf(" Used Size : %llu%s\n",
198 (unsigned long long)__le64_to_cpu(sb->size),
199 human_size(__le64_to_cpu(sb->size)<<9));
200 }
201 if (sb->data_offset)
202 printf(" Data Offset : %llu sectors\n",
203 (unsigned long long)__le64_to_cpu(sb->data_offset));
204 printf(" Super Offset : %llu sectors\n",
205 (unsigned long long)__le64_to_cpu(sb->super_offset));
206 if (__le32_to_cpu(sb->feature_map) & MD_FEATURE_RECOVERY_OFFSET)
207 printf("Recovery Offset : %llu sectors\n", (unsigned long long)__le64_to_cpu(sb->recovery_offset));
208 printf(" State : %s\n", (__le64_to_cpu(sb->resync_offset)+1)? "active":"clean");
209 printf(" Device UUID : ");
210 for (i=0; i<16; i++) {
211 if ((i&3)==0 && i != 0) printf(":");
212 printf("%02x", sb->device_uuid[i]);
213 }
214 printf("\n");
215 printf("\n");
216 if (sb->feature_map & __cpu_to_le32(MD_FEATURE_BITMAP_OFFSET)) {
217 printf("Internal Bitmap : %ld sectors from superblock\n",
218 (long)__le32_to_cpu(sb->bitmap_offset));
219 }
220 if (sb->feature_map & __le32_to_cpu(MD_FEATURE_RESHAPE_ACTIVE)) {
221 printf(" Reshape pos'n : %llu%s\n", (unsigned long long)__le64_to_cpu(sb->reshape_position)/2,
222 human_size(__le64_to_cpu(sb->reshape_position)<<9));
223 if (__le32_to_cpu(sb->delta_disks)) {
224 printf(" Delta Devices : %d", __le32_to_cpu(sb->delta_disks));
225 if (__le32_to_cpu(sb->delta_disks))
226 printf(" (%d->%d)\n",
227 __le32_to_cpu(sb->raid_disks)-__le32_to_cpu(sb->delta_disks),
228 __le32_to_cpu(sb->raid_disks));
229 else
230 printf(" (%d->%d)\n", __le32_to_cpu(sb->raid_disks),
231 __le32_to_cpu(sb->raid_disks)+__le32_to_cpu(sb->delta_disks));
232 }
233 if (__le32_to_cpu(sb->new_level) != __le32_to_cpu(sb->level)) {
234 c = map_num(pers, __le32_to_cpu(sb->new_level));
235 printf(" New Level : %s\n", c?c:"-unknown-");
236 }
237 if (__le32_to_cpu(sb->new_layout) != __le32_to_cpu(sb->layout)) {
238 if (__le32_to_cpu(sb->level) == 5) {
239 c = map_num(r5layout, __le32_to_cpu(sb->new_layout));
240 printf(" New Layout : %s\n", c?c:"-unknown-");
241 }
242 if (__le32_to_cpu(sb->level) == 10) {
243 printf(" New Layout : near=%d, %s=%d\n",
244 __le32_to_cpu(sb->new_layout)&255,
245 (__le32_to_cpu(sb->new_layout)&0x10000)?"offset":"far",
246 (__le32_to_cpu(sb->new_layout)>>8)&255);
247 }
248 }
249 if (__le32_to_cpu(sb->new_chunk) != __le32_to_cpu(sb->chunksize))
250 printf(" New Chunksize : %dK\n", __le32_to_cpu(sb->new_chunk)/2);
251 printf("\n");
252 }
253 if (sb->devflags) {
254 printf(" Flags :");
255 if (sb->devflags & WriteMostly1)
256 printf(" write-mostly");
257 printf("\n");
258 }
259
260 atime = __le64_to_cpu(sb->utime) & 0xFFFFFFFFFFULL;
261 printf(" Update Time : %.24s\n", ctime(&atime));
262
263 if (calc_sb_1_csum(sb) == sb->sb_csum)
264 printf(" Checksum : %x - correct\n", __le32_to_cpu(sb->sb_csum));
265 else
266 printf(" Checksum : %x - expected %x\n", __le32_to_cpu(sb->sb_csum),
267 __le32_to_cpu(calc_sb_1_csum(sb)));
268 printf(" Events : %llu\n", (unsigned long long)__le64_to_cpu(sb->events));
269 printf("\n");
270 if (__le32_to_cpu(sb->level) == 5) {
271 c = map_num(r5layout, __le32_to_cpu(sb->layout));
272 printf(" Layout : %s\n", c?c:"-unknown-");
273 }
274 if (__le32_to_cpu(sb->level) == 10) {
275 int lo = __le32_to_cpu(sb->layout);
276 printf(" Layout : near=%d, %s=%d\n",
277 lo&255,
278 (lo&0x10000)?"offset":"far",
279 (lo>>8)&255);
280 }
281 switch(__le32_to_cpu(sb->level)) {
282 case 0:
283 case 4:
284 case 5:
285 case 6:
286 case 10:
287 printf(" Chunk Size : %dK\n", __le32_to_cpu(sb->chunksize)/2);
288 break;
289 case -1:
290 printf(" Rounding : %dK\n", __le32_to_cpu(sb->chunksize)/2);
291 break;
292 default: break;
293 }
294 printf("\n");
295 printf(" Array Slot : %d (", __le32_to_cpu(sb->dev_number));
296 for (i= __le32_to_cpu(sb->max_dev); i> 0 ; i--)
297 if (__le16_to_cpu(sb->dev_roles[i-1]) != 0xffff)
298 break;
299 for (d=0; d < i; d++) {
300 int role = __le16_to_cpu(sb->dev_roles[d]);
301 if (d) printf(", ");
302 if (role == 0xffff) printf("empty");
303 else if(role == 0xfffe) printf("failed");
304 else printf("%d", role);
305 }
306 printf(")\n");
307 printf(" Array State : ");
308 for (d=0; d<__le32_to_cpu(sb->raid_disks); d++) {
309 int cnt = 0;
310 int me = 0;
311 int i;
312 for (i=0; i< __le32_to_cpu(sb->max_dev); i++) {
313 int role = __le16_to_cpu(sb->dev_roles[i]);
314 if (role == d) {
315 if (i == __le32_to_cpu(sb->dev_number))
316 me = 1;
317 cnt++;
318 }
319 }
320 if (cnt > 1) printf("?");
321 else if (cnt == 1 && me) printf("U");
322 else if (cnt == 1) printf("u");
323 else printf ("_");
324 }
325 faulty = 0;
326 for (i=0; i< __le32_to_cpu(sb->max_dev); i++) {
327 int role = __le16_to_cpu(sb->dev_roles[i]);
328 if (role == 0xFFFE)
329 faulty++;
330 }
331 if (faulty) printf(" %d failed", faulty);
332 printf("\n");
333 }
334
335
336 static void brief_examine_super1(void *sbv)
337 {
338 struct mdp_superblock_1 *sb = sbv;
339 int i;
340 char *nm;
341 char *c=map_num(pers, __le32_to_cpu(sb->level));
342
343 nm = strchr(sb->set_name, ':');
344 if (nm)
345 nm++;
346 else if (sb->set_name[0])
347 nm = sb->set_name;
348 else
349 nm = "??";
350
351 printf("ARRAY /dev/md/%s level=%s metadata=1 num-devices=%d UUID=",
352 nm,
353 c?c:"-unknown-", __le32_to_cpu(sb->raid_disks));
354 for (i=0; i<16; i++) {
355 if ((i&3)==0 && i != 0) printf(":");
356 printf("%02x", sb->set_uuid[i]);
357 }
358 if (sb->set_name[0])
359 printf(" name=%.32s", sb->set_name);
360 printf("\n");
361 }
362
363 static void detail_super1(void *sbv, char *homehost)
364 {
365 struct mdp_superblock_1 *sb = sbv;
366 int i;
367 int l = homehost ? strlen(homehost) : 0;
368
369 printf(" Name : %.32s", sb->set_name);
370 if (l > 0 && l < 32 &&
371 sb->set_name[l] == ':' &&
372 strncmp(sb->set_name, homehost, l) == 0)
373 printf(" (local to host %s)", homehost);
374 printf("\n UUID : ");
375 for (i=0; i<16; i++) {
376 if ((i&3)==0 && i != 0) printf(":");
377 printf("%02x", sb->set_uuid[i]);
378 }
379 printf("\n Events : %llu\n\n", (unsigned long long)__le64_to_cpu(sb->events));
380 }
381
382 static void brief_detail_super1(void *sbv)
383 {
384 struct mdp_superblock_1 *sb = sbv;
385 int i;
386
387 if (sb->set_name[0])
388 printf(" name=%.32s", sb->set_name);
389 printf(" UUID=");
390 for (i=0; i<16; i++) {
391 if ((i&3)==0 && i != 0) printf(":");
392 printf("%02x", sb->set_uuid[i]);
393 }
394 }
395
396 #endif
397
398 static int match_home1(void *sbv, char *homehost)
399 {
400 struct mdp_superblock_1 *sb = sbv;
401 int l = homehost ? strlen(homehost) : 0;
402
403 return (l > 0 && l < 32 &&
404 sb->set_name[l] == ':' &&
405 strncmp(sb->set_name, homehost, l) == 0);
406 }
407
408 static void uuid_from_super1(int uuid[4], void * sbv)
409 {
410 struct mdp_superblock_1 *super = sbv;
411 char *cuuid = (char*)uuid;
412 int i;
413 for (i=0; i<16; i++)
414 cuuid[i] = super->set_uuid[i];
415 }
416
417 static void getinfo_super1(struct mdinfo *info, void *sbv)
418 {
419 struct mdp_superblock_1 *sb = sbv;
420 int working = 0;
421 int i;
422 int role;
423
424 info->array.major_version = 1;
425 info->array.minor_version = __le32_to_cpu(sb->feature_map);
426 info->array.patch_version = 0;
427 info->array.raid_disks = __le32_to_cpu(sb->raid_disks);
428 info->array.level = __le32_to_cpu(sb->level);
429 info->array.layout = __le32_to_cpu(sb->layout);
430 info->array.md_minor = -1;
431 info->array.ctime = __le64_to_cpu(sb->ctime);
432 info->array.utime = __le64_to_cpu(sb->utime);
433 info->array.chunk_size = __le32_to_cpu(sb->chunksize)*512;
434 info->array.state =
435 (__le64_to_cpu(sb->resync_offset) >= __le64_to_cpu(sb->size))
436 ? 1 : 0;
437
438 info->data_offset = __le64_to_cpu(sb->data_offset);
439 info->component_size = __le64_to_cpu(sb->size);
440
441 info->disk.major = 0;
442 info->disk.minor = 0;
443 info->disk.number = __le32_to_cpu(sb->dev_number);
444 if (__le32_to_cpu(sb->dev_number) >= __le32_to_cpu(sb->max_dev) ||
445 __le32_to_cpu(sb->max_dev) > 512)
446 role = 0xfffe;
447 else
448 role = __le16_to_cpu(sb->dev_roles[__le32_to_cpu(sb->dev_number)]);
449
450 info->disk.raid_disk = -1;
451 switch(role) {
452 case 0xFFFF:
453 info->disk.state = 2; /* spare: ACTIVE, not sync, not faulty */
454 break;
455 case 0xFFFE:
456 info->disk.state = 1; /* faulty */
457 break;
458 default:
459 info->disk.state = 6; /* active and in sync */
460 info->disk.raid_disk = role;
461 }
462 info->events = __le64_to_cpu(sb->events);
463
464 memcpy(info->uuid, sb->set_uuid, 16);
465
466 strncpy(info->name, sb->set_name, 32);
467 info->name[32] = 0;
468
469 if (sb->feature_map & __le32_to_cpu(MD_FEATURE_RESHAPE_ACTIVE)) {
470 info->reshape_active = 1;
471 info->reshape_progress = __le64_to_cpu(sb->reshape_position);
472 info->new_level = __le32_to_cpu(sb->new_level);
473 info->delta_disks = __le32_to_cpu(sb->delta_disks);
474 info->new_layout = __le32_to_cpu(sb->new_layout);
475 info->new_chunk = __le32_to_cpu(sb->new_chunk)<<9;
476 } else
477 info->reshape_active = 0;
478
479 for (i=0; i< __le32_to_cpu(sb->max_dev); i++) {
480 role = __le16_to_cpu(sb->dev_roles[i]);
481 if (/*role == 0xFFFF || */role < info->array.raid_disks)
482 working++;
483 }
484
485 info->array.working_disks = working;
486 }
487
488 static int update_super1(struct mdinfo *info, void *sbv, char *update,
489 char *devname, int verbose,
490 int uuid_set, char *homehost)
491 {
492 /* NOTE: for 'assemble' and 'force' we need to return non-zero if any change was made.
493 * For others, the return value is ignored.
494 */
495 int rv = 0;
496 struct mdp_superblock_1 *sb = sbv;
497
498 if (strcmp(update, "force-one")==0) {
499 /* Not enough devices for a working array,
500 * so bring this one up-to-date
501 */
502 if (sb->events != __cpu_to_le64(info->events))
503 rv = 1;
504 sb->events = __cpu_to_le64(info->events);
505 }
506 if (strcmp(update, "force-array")==0) {
507 /* Degraded array and 'force' requests to
508 * maybe need to mark it 'clean'.
509 */
510 switch(__le32_to_cpu(sb->level)) {
511 case 5: case 4: case 6:
512 /* need to force clean */
513 if (sb->resync_offset != ~0ULL)
514 rv = 1;
515 sb->resync_offset = ~0ULL;
516 }
517 }
518 if (strcmp(update, "assemble")==0) {
519 int d = info->disk.number;
520 int want;
521 if (info->disk.state == 6)
522 want = __cpu_to_le32(info->disk.raid_disk);
523 else
524 want = 0xFFFF;
525 if (sb->dev_roles[d] != want) {
526 sb->dev_roles[d] = want;
527 rv = 1;
528 }
529 }
530 if (strcmp(update, "grow") == 0) {
531 sb->raid_disks = __cpu_to_le32(info->array.raid_disks);
532 /* As we are just adding a spare, there is no need to
533 * make any change to the dev_roles array
534 */
535 }
536 if (strcmp(update, "resync") == 0) {
537 /* make sure resync happens */
538 sb->resync_offset = 0ULL;
539 }
540 if (strcmp(update, "uuid") == 0) {
541 if (super1.swapuuid) {
542 unsigned char *ac = (unsigned char *)sb->set_uuid;
543 unsigned char *bc = (unsigned char *)info->uuid;
544 int i;
545 for (i=0; i<16; i+= 4) {
546 ac[i+0] = bc[i+3];
547 ac[i+1] = bc[i+2];
548 ac[i+2] = bc[i+1];
549 ac[i+3] = bc[i+0];
550 }
551 } else
552 memcpy(sb->set_uuid, info->uuid, 16);
553
554 if (__le32_to_cpu(sb->feature_map)&MD_FEATURE_BITMAP_OFFSET) {
555 struct bitmap_super_s *bm;
556 bm = (struct bitmap_super_s*)(sbv+1024);
557 memcpy(bm->uuid, sb->set_uuid, 16);
558 }
559 }
560 if (strcmp(update, "homehost") == 0 &&
561 homehost) {
562 char *c;
563 update = "name";
564 c = strchr(sb->set_name, ':');
565 if (c)
566 strncpy(info->name, c+1, 31 - (c-sb->set_name));
567 else
568 strncpy(info->name, sb->set_name, 32);
569 info->name[32] = 0;
570 }
571 if (strcmp(update, "name") == 0) {
572 if (info->name[0] == 0)
573 sprintf(info->name, "%d", info->array.md_minor);
574 memset(sb->set_name, 0, sizeof(sb->set_name));
575 if (homehost &&
576 strchr(info->name, ':') == NULL &&
577 strlen(homehost)+1+strlen(info->name) < 32) {
578 strcpy(sb->set_name, homehost);
579 strcat(sb->set_name, ":");
580 strcat(sb->set_name, info->name);
581 } else
582 strcpy(sb->set_name, info->name);
583 }
584 if (strcmp(update, "devicesize") == 0 &&
585 __le64_to_cpu(sb->super_offset) <
586 __le64_to_cpu(sb->data_offset)) {
587 /* set data_size to device size less data_offset */
588 struct misc_dev_info *misc = (struct misc_dev_info*)
589 (sbv + 1024 + sizeof(struct bitmap_super_s));
590 printf("Size was %llu\n", __le64_to_cpu(sb->data_size));
591 sb->data_size = __cpu_to_le64(
592 misc->device_size - __le64_to_cpu(sb->data_offset));
593 printf("Size is %llu\n", __le64_to_cpu(sb->data_size));
594 }
595 if (strcmp(update, "_reshape_progress")==0)
596 sb->reshape_position = __cpu_to_le64(info->reshape_progress);
597
598 sb->sb_csum = calc_sb_1_csum(sb);
599 return rv;
600 }
601
602 static int init_super1(struct supertype *st, void **sbp, mdu_array_info_t *info,
603 unsigned long long size, char *name, char *homehost)
604 {
605 struct mdp_superblock_1 *sb = malloc(1024 + sizeof(bitmap_super_t) +
606 sizeof(struct misc_dev_info));
607 int spares;
608 int rfd;
609 char defname[10];
610 memset(sb, 0, 1024);
611
612 if (info->major_version == -1) {
613 /* zeroing superblock */
614 *sbp = sb;
615 return 0;
616 }
617
618 spares = info->working_disks - info->active_disks;
619 if (info->raid_disks + spares > 384) {
620 fprintf(stderr, Name ": too many devices requested: %d+%d > %d\n",
621 info->raid_disks , spares, 384);
622 return 0;
623 }
624
625 sb->magic = __cpu_to_le32(MD_SB_MAGIC);
626 sb->major_version = __cpu_to_le32(1);
627 sb->feature_map = 0;
628 sb->pad0 = 0;
629
630 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
631 read(rfd, sb->set_uuid, 16) != 16) {
632 *(__u32*)(sb->set_uuid) = random();
633 *(__u32*)(sb->set_uuid+4) = random();
634 *(__u32*)(sb->set_uuid+8) = random();
635 *(__u32*)(sb->set_uuid+12) = random();
636 }
637 if (rfd >= 0) close(rfd);
638
639 if (name == NULL || *name == 0) {
640 sprintf(defname, "%d", info->md_minor);
641 name = defname;
642 }
643 memset(sb->set_name, 0, 32);
644 if (homehost &&
645 strchr(name, ':')== NULL &&
646 strlen(homehost)+1+strlen(name) < 32) {
647 strcpy(sb->set_name, homehost);
648 strcat(sb->set_name, ":");
649 strcat(sb->set_name, name);
650 } else
651 strcpy(sb->set_name, name);
652
653 sb->ctime = __cpu_to_le64((unsigned long long)time(0));
654 sb->level = __cpu_to_le32(info->level);
655 sb->layout = __cpu_to_le32(info->layout);
656 sb->size = __cpu_to_le64(size*2ULL);
657 sb->chunksize = __cpu_to_le32(info->chunk_size>>9);
658 sb->raid_disks = __cpu_to_le32(info->raid_disks);
659
660 sb->data_offset = __cpu_to_le64(0);
661 sb->data_size = __cpu_to_le64(0);
662 sb->super_offset = __cpu_to_le64(0);
663 sb->recovery_offset = __cpu_to_le64(0);
664
665 sb->utime = sb->ctime;
666 sb->events = __cpu_to_le64(1);
667 if (info->state & (1<<MD_SB_CLEAN))
668 sb->resync_offset = ~0ULL;
669 else
670 sb->resync_offset = 0;
671 sb->max_dev = __cpu_to_le32((1024- sizeof(struct mdp_superblock_1))/
672 sizeof(sb->dev_roles[0]));
673 memset(sb->pad3, 0, sizeof(sb->pad3));
674
675 memset(sb->dev_roles, 0xff, 1024 - sizeof(struct mdp_superblock_1));
676
677 *sbp = sb;
678 return 1;
679 }
680
681 /* Add a device to the superblock being created */
682 static void add_to_super1(void *sbv, mdu_disk_info_t *dk)
683 {
684 struct mdp_superblock_1 *sb = sbv;
685 __u16 *rp = sb->dev_roles + dk->number;
686 if ((dk->state & 6) == 6) /* active, sync */
687 *rp = __cpu_to_le16(dk->raid_disk);
688 else if ((dk->state & ~2) == 0) /* active or idle -> spare */
689 *rp = 0xffff;
690 else
691 *rp = 0xfffe;
692 }
693
694 static void locate_bitmap1(struct supertype *st, int fd, void *sbv);
695
696 static int store_super1(struct supertype *st, int fd, void *sbv)
697 {
698 struct mdp_superblock_1 *sb = sbv;
699 unsigned long long sb_offset;
700 int sbsize;
701 unsigned long long dsize;
702
703 if (!get_dev_size(fd, NULL, &dsize))
704 return 1;
705
706 dsize >>= 9;
707
708 if (dsize < 24)
709 return 2;
710
711 /*
712 * Calculate the position of the superblock.
713 * It is always aligned to a 4K boundary and
714 * depending on minor_version, it can be:
715 * 0: At least 8K, but less than 12K, from end of device
716 * 1: At start of device
717 * 2: 4K from start of device.
718 */
719 switch(st->minor_version) {
720 case 0:
721 sb_offset = dsize;
722 sb_offset -= 8*2;
723 sb_offset &= ~(4*2-1);
724 break;
725 case 1:
726 sb_offset = 0;
727 break;
728 case 2:
729 sb_offset = 4*2;
730 break;
731 default:
732 return -EINVAL;
733 }
734
735
736
737 if (sb_offset != __le64_to_cpu(sb->super_offset) &&
738 0 != __le64_to_cpu(sb->super_offset)
739 ) {
740 fprintf(stderr, Name ": internal error - sb_offset is wrong\n");
741 abort();
742 }
743
744 if (lseek64(fd, sb_offset << 9, 0)< 0LL)
745 return 3;
746
747 sbsize = sizeof(*sb) + 2 * __le32_to_cpu(sb->max_dev);
748
749 if (write(fd, sb, sbsize) != sbsize)
750 return 4;
751
752 if (sb->feature_map & __cpu_to_le32(MD_FEATURE_BITMAP_OFFSET)) {
753 struct bitmap_super_s *bm = (struct bitmap_super_s*)
754 (((char*)sb)+1024);
755 if (__le32_to_cpu(bm->magic) == BITMAP_MAGIC) {
756 locate_bitmap1(st, fd, sbv);
757 if (write(fd, bm, sizeof(*bm)) != sizeof(*bm))
758 return 5;
759 }
760 }
761 fsync(fd);
762 return 0;
763 }
764
765 static int load_super1(struct supertype *st, int fd, void **sbp, char *devname);
766
767 static int write_init_super1(struct supertype *st, void *sbv,
768 mdu_disk_info_t *dinfo, char *devname)
769 {
770 struct mdp_superblock_1 *sb = sbv;
771 void *refsbv = NULL;
772 int fd = open(devname, O_RDWR | O_EXCL);
773 int rfd;
774 int rv;
775 int bm_space;
776
777 unsigned long space;
778 unsigned long long dsize, array_size;
779 long long sb_offset;
780
781
782 if (fd < 0) {
783 fprintf(stderr, Name ": Failed to open %s to write superblock\n",
784 devname);
785 return -1;
786 }
787
788 sb->dev_number = __cpu_to_le32(dinfo->number);
789 if (dinfo->state & (1<<MD_DISK_WRITEMOSTLY))
790 sb->devflags |= __cpu_to_le32(WriteMostly1);
791
792 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
793 read(rfd, sb->device_uuid, 16) != 16) {
794 *(__u32*)(sb->device_uuid) = random();
795 *(__u32*)(sb->device_uuid+4) = random();
796 *(__u32*)(sb->device_uuid+8) = random();
797 *(__u32*)(sb->device_uuid+12) = random();
798 }
799 if (rfd >= 0) close(rfd);
800 sb->events = 0;
801
802 if (load_super1(st, fd, &refsbv, NULL)==0) {
803 struct mdp_superblock_1 *refsb = refsbv;
804
805 memcpy(sb->device_uuid, refsb->device_uuid, 16);
806 if (memcmp(sb->set_uuid, refsb->set_uuid, 16)==0) {
807 /* same array, so preserve events and dev_number */
808 sb->events = refsb->events;
809 /* bugs in 2.6.17 and earlier mean the dev_number
810 * chosen in Manage must be preserved
811 */
812 if (get_linux_version() >= 2006018)
813 sb->dev_number = refsb->dev_number;
814 }
815 free(refsb);
816 }
817
818 if (!get_dev_size(fd, NULL, &dsize))
819 return 1;
820 dsize >>= 9;
821
822 if (dsize < 24) {
823 close(fd);
824 return 2;
825 }
826
827
828 /*
829 * Calculate the position of the superblock.
830 * It is always aligned to a 4K boundary and
831 * depending on minor_version, it can be:
832 * 0: At least 8K, but less than 12K, from end of device
833 * 1: At start of device
834 * 2: 4K from start of device.
835 * Depending on the array size, we might leave extra space
836 * for a bitmap.
837 */
838 array_size = __le64_to_cpu(sb->size);
839 /* work out how much space we left of a bitmap */
840 if (array_size >= 200*1024*1024*2)
841 bm_space = 128*2;
842 else if (array_size > 8*1024*1024*2)
843 bm_space = 64*2;
844 else
845 bm_space = 0;
846
847 switch(st->minor_version) {
848 case 0:
849 sb_offset = dsize;
850 sb_offset -= 8*2;
851 sb_offset &= ~(4*2-1);
852 sb->super_offset = __cpu_to_le64(sb_offset);
853 sb->data_offset = __cpu_to_le64(0);
854 sb->data_size = __cpu_to_le64(sb_offset - bm_space);
855 break;
856 case 1:
857 sb->super_offset = __cpu_to_le64(0);
858 sb->data_offset = __cpu_to_le64(bm_space + 4*2);
859 sb->data_size = __cpu_to_le64(dsize - bm_space - 4*2);
860 break;
861 case 2:
862 sb_offset = 4*2;
863 if (dsize - 4*2 - 64*2 >= array_size && array_size > 8*1024*1024*2)
864 space = 64*2;
865 else
866 space = 4*2;
867 sb->super_offset = __cpu_to_le64(4*2);
868 sb->data_offset = __cpu_to_le64(4*2 + 4*2 + bm_space);
869 sb->data_size = __cpu_to_le64(dsize - 4*2 - 4*2 - bm_space );
870 break;
871 default:
872 return -EINVAL;
873 }
874
875
876 sb->sb_csum = calc_sb_1_csum(sb);
877 rv = store_super1(st, fd, sb);
878 if (rv)
879 fprintf(stderr, Name ": failed to write superblock to %s\n", devname);
880
881 if (rv == 0 && (__le32_to_cpu(sb->feature_map) & 1))
882 rv = st->ss->write_bitmap(st, fd, sbv);
883 close(fd);
884 return rv;
885 }
886
887 static int compare_super1(void **firstp, void *secondv)
888 {
889 /*
890 * return:
891 * 0 same, or first was empty, and second was copied
892 * 1 second had wrong number
893 * 2 wrong uuid
894 * 3 wrong other info
895 */
896 struct mdp_superblock_1 *first = *firstp;
897 struct mdp_superblock_1 *second = secondv;
898
899 if (second->magic != __cpu_to_le32(MD_SB_MAGIC))
900 return 1;
901 if (second->major_version != __cpu_to_le32(1))
902 return 1;
903
904 if (!first) {
905 first = malloc(1024+sizeof(bitmap_super_t) +
906 sizeof(struct misc_dev_info));
907 memcpy(first, second, 1024+sizeof(bitmap_super_t) +
908 sizeof(struct misc_dev_info));
909 *firstp = first;
910 return 0;
911 }
912 if (memcmp(first->set_uuid, second->set_uuid, 16)!= 0)
913 return 2;
914
915 if (first->ctime != second->ctime ||
916 first->level != second->level ||
917 first->layout != second->layout ||
918 first->size != second->size ||
919 first->chunksize != second->chunksize ||
920 first->raid_disks != second->raid_disks)
921 return 3;
922 return 0;
923 }
924
925 static int load_super1(struct supertype *st, int fd, void **sbp, char *devname)
926 {
927 unsigned long long dsize;
928 unsigned long long sb_offset;
929 struct mdp_superblock_1 *super;
930 int uuid[4];
931 struct bitmap_super_s *bsb;
932 struct misc_dev_info *misc;
933
934
935 if (st->ss == NULL) {
936 int bestvers = -1;
937 __u64 bestctime = 0;
938 /* guess... choose latest ctime */
939 st->ss = &super1;
940 for (st->minor_version = 0; st->minor_version <= 2 ; st->minor_version++) {
941 switch(load_super1(st, fd, sbp, devname)) {
942 case 0: super = *sbp;
943 if (bestvers == -1 ||
944 bestctime < __le64_to_cpu(super->ctime)) {
945 bestvers = st->minor_version;
946 bestctime = __le64_to_cpu(super->ctime);
947 }
948 free(super);
949 *sbp = NULL;
950 break;
951 case 1: st->ss = NULL; return 1; /*bad device */
952 case 2: break; /* bad, try next */
953 }
954 }
955 if (bestvers != -1) {
956 int rv;
957 st->minor_version = bestvers;
958 st->ss = &super1;
959 st->max_devs = 384;
960 rv = load_super1(st, fd, sbp, devname);
961 if (rv) st->ss = NULL;
962 return rv;
963 }
964 st->ss = NULL;
965 return 2;
966 }
967 if (!get_dev_size(fd, devname, &dsize))
968 return 1;
969 dsize >>= 9;
970
971 if (dsize < 24) {
972 if (devname)
973 fprintf(stderr, Name ": %s is too small for md: size is %llu sectors.\n",
974 devname, dsize);
975 return 1;
976 }
977
978 /*
979 * Calculate the position of the superblock.
980 * It is always aligned to a 4K boundary and
981 * depending on minor_version, it can be:
982 * 0: At least 8K, but less than 12K, from end of device
983 * 1: At start of device
984 * 2: 4K from start of device.
985 */
986 switch(st->minor_version) {
987 case 0:
988 sb_offset = dsize;
989 sb_offset -= 8*2;
990 sb_offset &= ~(4*2-1);
991 break;
992 case 1:
993 sb_offset = 0;
994 break;
995 case 2:
996 sb_offset = 4*2;
997 break;
998 default:
999 return -EINVAL;
1000 }
1001
1002 ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
1003
1004
1005 if (lseek64(fd, sb_offset << 9, 0)< 0LL) {
1006 if (devname)
1007 fprintf(stderr, Name ": Cannot seek to superblock on %s: %s\n",
1008 devname, strerror(errno));
1009 return 1;
1010 }
1011
1012 super = malloc(1024 + sizeof(bitmap_super_t) +
1013 sizeof(struct misc_dev_info));
1014
1015 if (read(fd, super, 1024) != 1024) {
1016 if (devname)
1017 fprintf(stderr, Name ": Cannot read superblock on %s\n",
1018 devname);
1019 free(super);
1020 return 1;
1021 }
1022
1023 if (__le32_to_cpu(super->magic) != MD_SB_MAGIC) {
1024 if (devname)
1025 fprintf(stderr, Name ": No super block found on %s (Expected magic %08x, got %08x)\n",
1026 devname, MD_SB_MAGIC, __le32_to_cpu(super->magic));
1027 free(super);
1028 return 2;
1029 }
1030
1031 if (__le32_to_cpu(super->major_version) != 1) {
1032 if (devname)
1033 fprintf(stderr, Name ": Cannot interpret superblock on %s - version is %d\n",
1034 devname, __le32_to_cpu(super->major_version));
1035 free(super);
1036 return 2;
1037 }
1038 if (__le64_to_cpu(super->super_offset) != sb_offset) {
1039 if (devname)
1040 fprintf(stderr, Name ": No superblock found on %s (super_offset is wrong)\n",
1041 devname);
1042 free(super);
1043 return 2;
1044 }
1045 *sbp = super;
1046
1047 bsb = (struct bitmap_super_s *)(((char*)super)+1024);
1048
1049 misc = (struct misc_dev_info*) (bsb+1);
1050 misc->device_size = dsize;
1051
1052 /* Now check on the bitmap superblock */
1053 if ((__le32_to_cpu(super->feature_map)&MD_FEATURE_BITMAP_OFFSET) == 0)
1054 return 0;
1055 /* Read the bitmap superblock and make sure it looks
1056 * valid. If it doesn't clear the bit. An --assemble --force
1057 * should get that written out.
1058 */
1059 locate_bitmap1(st, fd, super);
1060 if (read(fd, ((char*)super)+1024, sizeof(struct bitmap_super_s))
1061 != sizeof(struct bitmap_super_s))
1062 goto no_bitmap;
1063
1064 uuid_from_super1(uuid, super);
1065 if (__le32_to_cpu(bsb->magic) != BITMAP_MAGIC ||
1066 memcmp(bsb->uuid, uuid, 16) != 0)
1067 goto no_bitmap;
1068 return 0;
1069
1070 no_bitmap:
1071 super->feature_map = __cpu_to_le32(__le32_to_cpu(super->feature_map) & ~1);
1072 return 0;
1073 }
1074
1075
1076 static struct supertype *match_metadata_desc1(char *arg)
1077 {
1078 struct supertype *st = malloc(sizeof(*st));
1079 if (!st) return st;
1080
1081 st->ss = &super1;
1082 st->max_devs = 384;
1083 if (strcmp(arg, "1") == 0 ||
1084 strcmp(arg, "1.0") == 0 ||
1085 strcmp(arg, "default/large") == 0) {
1086 st->minor_version = 0;
1087 return st;
1088 }
1089 if (strcmp(arg, "1.1") == 0) {
1090 st->minor_version = 1;
1091 return st;
1092 }
1093 if (strcmp(arg, "1.2") == 0) {
1094 st->minor_version = 2;
1095 return st;
1096 }
1097
1098 free(st);
1099 return NULL;
1100 }
1101
1102 /* find available size on device with this devsize, using
1103 * superblock type st, and reserving 'reserve' sectors for
1104 * a possible bitmap
1105 */
1106 static __u64 avail_size1(struct supertype *st, __u64 devsize)
1107 {
1108 if (devsize < 24)
1109 return 0;
1110
1111 /* if the device is bigger than 8Gig, save 64k for bitmap usage,
1112 * if bigger than 200Gig, save 128k
1113 */
1114 if (devsize-64*2 >= 200*1024*1024*2)
1115 devsize -= 128*2;
1116 else if (devsize >= 8*1024*1024*2)
1117 devsize -= 64*2;
1118
1119 switch(st->minor_version) {
1120 case 0:
1121 /* at end */
1122 return ((devsize - 8*2 ) & ~(4*2-1));
1123 case 1:
1124 /* at start, 4K for superblock and possible bitmap */
1125 return devsize - 4*2;
1126 case 2:
1127 /* 4k from start, 4K for superblock and possible bitmap */
1128 return devsize - (4+4)*2;
1129 }
1130 return 0;
1131 }
1132
1133 static int
1134 add_internal_bitmap1(struct supertype *st, void *sbv,
1135 int *chunkp, int delay, int write_behind,
1136 unsigned long long size,
1137 int may_change, int major)
1138 {
1139 /*
1140 * If not may_change, then this is a 'Grow', and the bitmap
1141 * must fit after the superblock.
1142 * If may_change, then this is create, and we can put the bitmap
1143 * before the superblock if we like, or may move the start.
1144 * If !may_change, the bitmap MUST live at offset of 1K, until
1145 * we get a sysfs interface.
1146 *
1147 * size is in sectors, chunk is in bytes !!!
1148 */
1149
1150 unsigned long long bits;
1151 unsigned long long max_bits;
1152 unsigned long long min_chunk;
1153 long offset;
1154 int chunk = *chunkp;
1155 int room = 0;
1156 struct mdp_superblock_1 *sb = sbv;
1157 bitmap_super_t *bms = (bitmap_super_t*)(((char*)sb) + 1024);
1158
1159 switch(st->minor_version) {
1160 case 0:
1161 /* either 3K after the superblock, or some amount of space
1162 * before.
1163 */
1164 if (may_change) {
1165 /* We are creating array, so we *know* how much room has
1166 * been left.
1167 */
1168 offset = 0;
1169 if (__le64_to_cpu(sb->size) >= 200*1024*1024*2)
1170 room = 128*2;
1171 else if (__le64_to_cpu(sb->size) > 8*1024*1024*2)
1172 room = 64*2;
1173 else {
1174 room = 3*2;
1175 offset = 2;
1176 }
1177 } else {
1178 room = __le64_to_cpu(sb->super_offset)
1179 - __le64_to_cpu(sb->data_offset)
1180 - __le64_to_cpu(sb->data_size);
1181 /* remove '1 ||' when we can set offset via sysfs */
1182 if (1 || (room < 3*2 &&
1183 __le32_to_cpu(sb->max_dev) <= 384)) {
1184 room = 3*2;
1185 offset = 1*2;
1186 } else {
1187 offset = 0; /* means movable offset */
1188 }
1189 }
1190 break;
1191 case 1:
1192 case 2: /* between superblock and data */
1193 if (may_change) {
1194 offset = 4*2;
1195 if (__le64_to_cpu(sb->size) >= 200*1024*1024*2)
1196 room = 128*2;
1197 else if (__le64_to_cpu(sb->size) > 8*1024*1024*2)
1198 room = 64*2;
1199 else
1200 room = 3*2;
1201 } else {
1202 room = __le64_to_cpu(sb->data_offset)
1203 - __le64_to_cpu(sb->super_offset);
1204 if (1 || __le32_to_cpu(sb->max_dev) <= 384) {
1205 room -= 2;
1206 offset = 2;
1207 } else {
1208 room -= 4*2;
1209 offset = 4*2;
1210 }
1211 }
1212 break;
1213 }
1214
1215 if (chunk == UnSet && room > 128*2)
1216 /* Limit to 128K of bitmap when chunk size not requested */
1217 room = 128*2;
1218
1219 max_bits = (room * 512 - sizeof(bitmap_super_t)) * 8;
1220
1221 min_chunk = 4096; /* sub-page chunks don't work yet.. */
1222 bits = (size*512)/min_chunk +1;
1223 while (bits > max_bits) {
1224 min_chunk *= 2;
1225 bits = (bits+1)/2;
1226 }
1227 if (chunk == UnSet)
1228 chunk = min_chunk;
1229 else if (chunk < min_chunk)
1230 return 0; /* chunk size too small */
1231 if (chunk == 0) /* rounding problem */
1232 return 0;
1233
1234 if (offset == 0) {
1235 bits = (size*512) / chunk + 1;
1236 room = ((bits+7)/8 + sizeof(bitmap_super_t) +511)/512;
1237 offset = -room;
1238 }
1239
1240 sb->bitmap_offset = __cpu_to_le32(offset);
1241
1242 sb->feature_map = __cpu_to_le32(__le32_to_cpu(sb->feature_map) | 1);
1243 memset(bms, 0, sizeof(*bms));
1244 bms->magic = __cpu_to_le32(BITMAP_MAGIC);
1245 bms->version = __cpu_to_le32(major);
1246 uuid_from_super1((int*)bms->uuid, sb);
1247 bms->chunksize = __cpu_to_le32(chunk);
1248 bms->daemon_sleep = __cpu_to_le32(delay);
1249 bms->sync_size = __cpu_to_le64(size);
1250 bms->write_behind = __cpu_to_le32(write_behind);
1251
1252 *chunkp = chunk;
1253 return 1;
1254 }
1255
1256
1257 static void locate_bitmap1(struct supertype *st, int fd, void *sbv)
1258 {
1259 unsigned long long offset;
1260 struct mdp_superblock_1 *sb;
1261 int mustfree = 0;
1262
1263 if (!sbv) {
1264 if (st->ss->load_super(st, fd, &sbv, NULL))
1265 return; /* no error I hope... */
1266 mustfree = 1;
1267 }
1268 sb = sbv;
1269
1270 offset = __le64_to_cpu(sb->super_offset);
1271 offset += (long) __le32_to_cpu(sb->bitmap_offset);
1272 if (mustfree)
1273 free(sb);
1274 lseek64(fd, offset<<9, 0);
1275 }
1276
1277 static int write_bitmap1(struct supertype *st, int fd, void *sbv)
1278 {
1279 struct mdp_superblock_1 *sb = sbv;
1280 bitmap_super_t *bms = (bitmap_super_t*)(((char*)sb)+1024);
1281 int rv = 0;
1282
1283 int towrite, n;
1284 char buf[4096];
1285
1286 locate_bitmap1(st, fd, sbv);
1287
1288 if (write(fd, ((char*)sb)+1024, sizeof(bitmap_super_t)) !=
1289 sizeof(bitmap_super_t))
1290 return -2;
1291 towrite = __le64_to_cpu(bms->sync_size) / (__le32_to_cpu(bms->chunksize)>>9);
1292 towrite = (towrite+7) >> 3; /* bits to bytes */
1293 memset(buf, 0xff, sizeof(buf));
1294 while (towrite > 0) {
1295 n = towrite;
1296 if (n > sizeof(buf))
1297 n = sizeof(buf);
1298 n = write(fd, buf, n);
1299 if (n > 0)
1300 towrite -= n;
1301 else
1302 break;
1303 }
1304 fsync(fd);
1305 if (towrite)
1306 rv = -2;
1307
1308 return rv;
1309 }
1310
1311 struct superswitch super1 = {
1312 #ifndef MDASSEMBLE
1313 .examine_super = examine_super1,
1314 .brief_examine_super = brief_examine_super1,
1315 .detail_super = detail_super1,
1316 .brief_detail_super = brief_detail_super1,
1317 #endif
1318 .match_home = match_home1,
1319 .uuid_from_super = uuid_from_super1,
1320 .getinfo_super = getinfo_super1,
1321 .update_super = update_super1,
1322 .init_super = init_super1,
1323 .add_to_super = add_to_super1,
1324 .store_super = store_super1,
1325 .write_init_super = write_init_super1,
1326 .compare_super = compare_super1,
1327 .load_super = load_super1,
1328 .match_metadata_desc = match_metadata_desc1,
1329 .avail_size = avail_size1,
1330 .add_internal_bitmap = add_internal_bitmap1,
1331 .locate_bitmap = locate_bitmap1,
1332 .write_bitmap = write_bitmap1,
1333 .major = 1,
1334 #if __BYTE_ORDER == BIG_ENDIAN
1335 .swapuuid = 0,
1336 #else
1337 .swapuuid = 1,
1338 #endif
1339 };