]> git.ipfire.org Git - thirdparty/mdadm.git/blob - super-ddf.c
Add uuid support for super-intel.
[thirdparty/mdadm.git] / super-ddf.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2006-2007 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: <neil@brown.name>
23 *
24 * Specifications for DDF takes from Common RAID DDF Specification Revision 1.2
25 * (July 28 2006). Reused by permission of SNIA.
26 */
27
28 #define HAVE_STDINT_H 1
29 #include "mdadm.h"
30 #include "mdmon.h"
31 #include "sha1.h"
32 #include <values.h>
33
34 /* a non-official T10 name for creation GUIDs */
35 static char T10[] = "Linux-MD";
36
37 /* DDF timestamps are 1980 based, so we need to add
38 * second-in-decade-of-seventies to convert to linux timestamps.
39 * 10 years with 2 leap years.
40 */
41 #define DECADE (3600*24*(365*10+2))
42 unsigned long crc32(
43 unsigned long crc,
44 const unsigned char *buf,
45 unsigned len);
46
47 /* The DDF metadata handling.
48 * DDF metadata lives at the end of the device.
49 * The last 512 byte block provides an 'anchor' which is used to locate
50 * the rest of the metadata which usually lives immediately behind the anchor.
51 *
52 * Note:
53 * - all multibyte numeric fields are bigendian.
54 * - all strings are space padded.
55 *
56 */
57
58 /* Primary Raid Level (PRL) */
59 #define DDF_RAID0 0x00
60 #define DDF_RAID1 0x01
61 #define DDF_RAID3 0x03
62 #define DDF_RAID4 0x04
63 #define DDF_RAID5 0x05
64 #define DDF_RAID1E 0x11
65 #define DDF_JBOD 0x0f
66 #define DDF_CONCAT 0x1f
67 #define DDF_RAID5E 0x15
68 #define DDF_RAID5EE 0x25
69 #define DDF_RAID6 0x06
70
71 /* Raid Level Qualifier (RLQ) */
72 #define DDF_RAID0_SIMPLE 0x00
73 #define DDF_RAID1_SIMPLE 0x00 /* just 2 devices in this plex */
74 #define DDF_RAID1_MULTI 0x01 /* exactly 3 devices in this plex */
75 #define DDF_RAID3_0 0x00 /* parity in first extent */
76 #define DDF_RAID3_N 0x01 /* parity in last extent */
77 #define DDF_RAID4_0 0x00 /* parity in first extent */
78 #define DDF_RAID4_N 0x01 /* parity in last extent */
79 /* these apply to raid5e and raid5ee as well */
80 #define DDF_RAID5_0_RESTART 0x00 /* same as 'right asymmetric' - layout 1 */
81 #define DDF_RAID6_0_RESTART 0x01 /* raid6 different from raid5 here!!! */
82 #define DDF_RAID5_N_RESTART 0x02 /* same as 'left asymmetric' - layout 0 */
83 #define DDF_RAID5_N_CONTINUE 0x03 /* same as 'left symmetric' - layout 2 */
84
85 #define DDF_RAID1E_ADJACENT 0x00 /* raid10 nearcopies==2 */
86 #define DDF_RAID1E_OFFSET 0x01 /* raid10 offsetcopies==2 */
87
88 /* Secondary RAID Level (SRL) */
89 #define DDF_2STRIPED 0x00 /* This is weirder than RAID0 !! */
90 #define DDF_2MIRRORED 0x01
91 #define DDF_2CONCAT 0x02
92 #define DDF_2SPANNED 0x03 /* This is also weird - be careful */
93
94 /* Magic numbers */
95 #define DDF_HEADER_MAGIC __cpu_to_be32(0xDE11DE11)
96 #define DDF_CONTROLLER_MAGIC __cpu_to_be32(0xAD111111)
97 #define DDF_PHYS_RECORDS_MAGIC __cpu_to_be32(0x22222222)
98 #define DDF_PHYS_DATA_MAGIC __cpu_to_be32(0x33333333)
99 #define DDF_VIRT_RECORDS_MAGIC __cpu_to_be32(0xDDDDDDDD)
100 #define DDF_VD_CONF_MAGIC __cpu_to_be32(0xEEEEEEEE)
101 #define DDF_SPARE_ASSIGN_MAGIC __cpu_to_be32(0x55555555)
102 #define DDF_VU_CONF_MAGIC __cpu_to_be32(0x88888888)
103 #define DDF_VENDOR_LOG_MAGIC __cpu_to_be32(0x01dBEEF0)
104 #define DDF_BBM_LOG_MAGIC __cpu_to_be32(0xABADB10C)
105
106 #define DDF_GUID_LEN 24
107 #define DDF_REVISION_0 "01.00.00"
108 #define DDF_REVISION_2 "01.02.00"
109
110 struct ddf_header {
111 __u32 magic; /* DDF_HEADER_MAGIC */
112 __u32 crc;
113 char guid[DDF_GUID_LEN];
114 char revision[8]; /* 01.02.00 */
115 __u32 seq; /* starts at '1' */
116 __u32 timestamp;
117 __u8 openflag;
118 __u8 foreignflag;
119 __u8 enforcegroups;
120 __u8 pad0; /* 0xff */
121 __u8 pad1[12]; /* 12 * 0xff */
122 /* 64 bytes so far */
123 __u8 header_ext[32]; /* reserved: fill with 0xff */
124 __u64 primary_lba;
125 __u64 secondary_lba;
126 __u8 type;
127 __u8 pad2[3]; /* 0xff */
128 __u32 workspace_len; /* sectors for vendor space -
129 * at least 32768(sectors) */
130 __u64 workspace_lba;
131 __u16 max_pd_entries; /* one of 15, 63, 255, 1023, 4095 */
132 __u16 max_vd_entries; /* 2^(4,6,8,10,12)-1 : i.e. as above */
133 __u16 max_partitions; /* i.e. max num of configuration
134 record entries per disk */
135 __u16 config_record_len; /* 1 +ROUNDUP(max_primary_element_entries
136 *12/512) */
137 __u16 max_primary_element_entries; /* 16, 64, 256, 1024, or 4096 */
138 __u8 pad3[54]; /* 0xff */
139 /* 192 bytes so far */
140 __u32 controller_section_offset;
141 __u32 controller_section_length;
142 __u32 phys_section_offset;
143 __u32 phys_section_length;
144 __u32 virt_section_offset;
145 __u32 virt_section_length;
146 __u32 config_section_offset;
147 __u32 config_section_length;
148 __u32 data_section_offset;
149 __u32 data_section_length;
150 __u32 bbm_section_offset;
151 __u32 bbm_section_length;
152 __u32 diag_space_offset;
153 __u32 diag_space_length;
154 __u32 vendor_offset;
155 __u32 vendor_length;
156 /* 256 bytes so far */
157 __u8 pad4[256]; /* 0xff */
158 };
159
160 /* type field */
161 #define DDF_HEADER_ANCHOR 0x00
162 #define DDF_HEADER_PRIMARY 0x01
163 #define DDF_HEADER_SECONDARY 0x02
164
165 /* The content of the 'controller section' - global scope */
166 struct ddf_controller_data {
167 __u32 magic; /* DDF_CONTROLLER_MAGIC */
168 __u32 crc;
169 char guid[DDF_GUID_LEN];
170 struct controller_type {
171 __u16 vendor_id;
172 __u16 device_id;
173 __u16 sub_vendor_id;
174 __u16 sub_device_id;
175 } type;
176 char product_id[16];
177 __u8 pad[8]; /* 0xff */
178 __u8 vendor_data[448];
179 };
180
181 /* The content of phys_section - global scope */
182 struct phys_disk {
183 __u32 magic; /* DDF_PHYS_RECORDS_MAGIC */
184 __u32 crc;
185 __u16 used_pdes;
186 __u16 max_pdes;
187 __u8 pad[52];
188 struct phys_disk_entry {
189 char guid[DDF_GUID_LEN];
190 __u32 refnum;
191 __u16 type;
192 __u16 state;
193 __u64 config_size; /* DDF structures must be after here */
194 char path[18]; /* another horrible structure really */
195 __u8 pad[6];
196 } entries[0];
197 };
198
199 /* phys_disk_entry.type is a bitmap - bigendian remember */
200 #define DDF_Forced_PD_GUID 1
201 #define DDF_Active_in_VD 2
202 #define DDF_Global_Spare 4 /* VD_CONF records are ignored */
203 #define DDF_Spare 8 /* overrides Global_spare */
204 #define DDF_Foreign 16
205 #define DDF_Legacy 32 /* no DDF on this device */
206
207 #define DDF_Interface_mask 0xf00
208 #define DDF_Interface_SCSI 0x100
209 #define DDF_Interface_SAS 0x200
210 #define DDF_Interface_SATA 0x300
211 #define DDF_Interface_FC 0x400
212
213 /* phys_disk_entry.state is a bigendian bitmap */
214 #define DDF_Online 1
215 #define DDF_Failed 2 /* overrides 1,4,8 */
216 #define DDF_Rebuilding 4
217 #define DDF_Transition 8
218 #define DDF_SMART 16
219 #define DDF_ReadErrors 32
220 #define DDF_Missing 64
221
222 /* The content of the virt_section global scope */
223 struct virtual_disk {
224 __u32 magic; /* DDF_VIRT_RECORDS_MAGIC */
225 __u32 crc;
226 __u16 populated_vdes;
227 __u16 max_vdes;
228 __u8 pad[52];
229 struct virtual_entry {
230 char guid[DDF_GUID_LEN];
231 __u16 unit;
232 __u16 pad0; /* 0xffff */
233 __u16 guid_crc;
234 __u16 type;
235 __u8 state;
236 __u8 init_state;
237 __u8 pad1[14];
238 char name[16];
239 } entries[0];
240 };
241
242 /* virtual_entry.type is a bitmap - bigendian */
243 #define DDF_Shared 1
244 #define DDF_Enforce_Groups 2
245 #define DDF_Unicode 4
246 #define DDF_Owner_Valid 8
247
248 /* virtual_entry.state is a bigendian bitmap */
249 #define DDF_state_mask 0x7
250 #define DDF_state_optimal 0x0
251 #define DDF_state_degraded 0x1
252 #define DDF_state_deleted 0x2
253 #define DDF_state_missing 0x3
254 #define DDF_state_failed 0x4
255 #define DDF_state_part_optimal 0x5
256
257 #define DDF_state_morphing 0x8
258 #define DDF_state_inconsistent 0x10
259
260 /* virtual_entry.init_state is a bigendian bitmap */
261 #define DDF_initstate_mask 0x03
262 #define DDF_init_not 0x00
263 #define DDF_init_quick 0x01 /* initialisation is progress.
264 * i.e. 'state_inconsistent' */
265 #define DDF_init_full 0x02
266
267 #define DDF_access_mask 0xc0
268 #define DDF_access_rw 0x00
269 #define DDF_access_ro 0x80
270 #define DDF_access_blocked 0xc0
271
272 /* The content of the config_section - local scope
273 * It has multiple records each config_record_len sectors
274 * They can be vd_config or spare_assign
275 */
276
277 struct vd_config {
278 __u32 magic; /* DDF_VD_CONF_MAGIC */
279 __u32 crc;
280 char guid[DDF_GUID_LEN];
281 __u32 timestamp;
282 __u32 seqnum;
283 __u8 pad0[24];
284 __u16 prim_elmnt_count;
285 __u8 chunk_shift; /* 0 == 512, 1==1024 etc */
286 __u8 prl;
287 __u8 rlq;
288 __u8 sec_elmnt_count;
289 __u8 sec_elmnt_seq;
290 __u8 srl;
291 __u64 blocks; /* blocks per component could be different
292 * on different component devices...(only
293 * for concat I hope) */
294 __u64 array_blocks; /* blocks in array */
295 __u8 pad1[8];
296 __u32 spare_refs[8];
297 __u8 cache_pol[8];
298 __u8 bg_rate;
299 __u8 pad2[3];
300 __u8 pad3[52];
301 __u8 pad4[192];
302 __u8 v0[32]; /* reserved- 0xff */
303 __u8 v1[32]; /* reserved- 0xff */
304 __u8 v2[16]; /* reserved- 0xff */
305 __u8 v3[16]; /* reserved- 0xff */
306 __u8 vendor[32];
307 __u32 phys_refnum[0]; /* refnum of each disk in sequence */
308 /*__u64 lba_offset[0]; LBA offset in each phys. Note extents in a
309 bvd are always the same size */
310 };
311
312 /* vd_config.cache_pol[7] is a bitmap */
313 #define DDF_cache_writeback 1 /* else writethrough */
314 #define DDF_cache_wadaptive 2 /* only applies if writeback */
315 #define DDF_cache_readahead 4
316 #define DDF_cache_radaptive 8 /* only if doing read-ahead */
317 #define DDF_cache_ifnobatt 16 /* even to write cache if battery is poor */
318 #define DDF_cache_wallowed 32 /* enable write caching */
319 #define DDF_cache_rallowed 64 /* enable read caching */
320
321 struct spare_assign {
322 __u32 magic; /* DDF_SPARE_ASSIGN_MAGIC */
323 __u32 crc;
324 __u32 timestamp;
325 __u8 reserved[7];
326 __u8 type;
327 __u16 populated; /* SAEs used */
328 __u16 max; /* max SAEs */
329 __u8 pad[8];
330 struct spare_assign_entry {
331 char guid[DDF_GUID_LEN];
332 __u16 secondary_element;
333 __u8 pad[6];
334 } spare_ents[0];
335 };
336 /* spare_assign.type is a bitmap */
337 #define DDF_spare_dedicated 0x1 /* else global */
338 #define DDF_spare_revertible 0x2 /* else committable */
339 #define DDF_spare_active 0x4 /* else not active */
340 #define DDF_spare_affinity 0x8 /* enclosure affinity */
341
342 /* The data_section contents - local scope */
343 struct disk_data {
344 __u32 magic; /* DDF_PHYS_DATA_MAGIC */
345 __u32 crc;
346 char guid[DDF_GUID_LEN];
347 __u32 refnum; /* crc of some magic drive data ... */
348 __u8 forced_ref; /* set when above was not result of magic */
349 __u8 forced_guid; /* set if guid was forced rather than magic */
350 __u8 vendor[32];
351 __u8 pad[442];
352 };
353
354 /* bbm_section content */
355 struct bad_block_log {
356 __u32 magic;
357 __u32 crc;
358 __u16 entry_count;
359 __u32 spare_count;
360 __u8 pad[10];
361 __u64 first_spare;
362 struct mapped_block {
363 __u64 defective_start;
364 __u32 replacement_start;
365 __u16 remap_count;
366 __u8 pad[2];
367 } entries[0];
368 };
369
370 /* Struct for internally holding ddf structures */
371 /* The DDF structure stored on each device is potentially
372 * quite different, as some data is global and some is local.
373 * The global data is:
374 * - ddf header
375 * - controller_data
376 * - Physical disk records
377 * - Virtual disk records
378 * The local data is:
379 * - Configuration records
380 * - Physical Disk data section
381 * ( and Bad block and vendor which I don't care about yet).
382 *
383 * The local data is parsed into separate lists as it is read
384 * and reconstructed for writing. This means that we only need
385 * to make config changes once and they are automatically
386 * propagated to all devices.
387 * Note that the ddf_super has space of the conf and disk data
388 * for this disk and also for a list of all such data.
389 * The list is only used for the superblock that is being
390 * built in Create or Assemble to describe the whole array.
391 */
392 struct ddf_super {
393 struct ddf_header anchor, primary, secondary;
394 struct ddf_controller_data controller;
395 struct ddf_header *active;
396 struct phys_disk *phys;
397 struct virtual_disk *virt;
398 int pdsize, vdsize;
399 int max_part, mppe, conf_rec_len;
400 int currentdev;
401 int updates_pending;
402 struct vcl {
403 union {
404 char space[512];
405 struct {
406 struct vcl *next;
407 __u64 *lba_offset; /* location in 'conf' of
408 * the lba table */
409 int vcnum; /* index into ->virt */
410 __u64 *block_sizes; /* NULL if all the same */
411 };
412 };
413 struct vd_config conf;
414 } *conflist, *currentconf;
415 struct dl {
416 union {
417 char space[512];
418 struct {
419 struct dl *next;
420 int major, minor;
421 char *devname;
422 int fd;
423 unsigned long long size; /* sectors */
424 int pdnum; /* index in ->phys */
425 struct spare_assign *spare;
426 };
427 };
428 struct disk_data disk;
429 void *mdupdate; /* hold metadata update */
430 struct vcl *vlist[0]; /* max_part in size */
431 } *dlist, *add_list;
432 };
433
434 #ifndef offsetof
435 #define offsetof(t,f) ((size_t)&(((t*)0)->f))
436 #endif
437
438
439 static int calc_crc(void *buf, int len)
440 {
441 /* crcs are always at the same place as in the ddf_header */
442 struct ddf_header *ddf = buf;
443 __u32 oldcrc = ddf->crc;
444 __u32 newcrc;
445 ddf->crc = 0xffffffff;
446
447 newcrc = crc32(0, buf, len);
448 ddf->crc = oldcrc;
449 return newcrc;
450 }
451
452 static int load_ddf_header(int fd, unsigned long long lba,
453 unsigned long long size,
454 int type,
455 struct ddf_header *hdr, struct ddf_header *anchor)
456 {
457 /* read a ddf header (primary or secondary) from fd/lba
458 * and check that it is consistent with anchor
459 * Need to check:
460 * magic, crc, guid, rev, and LBA's header_type, and
461 * everything after header_type must be the same
462 */
463 if (lba >= size-1)
464 return 0;
465
466 if (lseek64(fd, lba<<9, 0) < 0)
467 return 0;
468
469 if (read(fd, hdr, 512) != 512)
470 return 0;
471
472 if (hdr->magic != DDF_HEADER_MAGIC)
473 return 0;
474 if (calc_crc(hdr, 512) != hdr->crc)
475 return 0;
476 if (memcmp(anchor->guid, hdr->guid, DDF_GUID_LEN) != 0 ||
477 memcmp(anchor->revision, hdr->revision, 8) != 0 ||
478 anchor->primary_lba != hdr->primary_lba ||
479 anchor->secondary_lba != hdr->secondary_lba ||
480 hdr->type != type ||
481 memcmp(anchor->pad2, hdr->pad2, 512 -
482 offsetof(struct ddf_header, pad2)) != 0)
483 return 0;
484
485 /* Looks good enough to me... */
486 return 1;
487 }
488
489 static void *load_section(int fd, struct ddf_super *super, void *buf,
490 __u32 offset_be, __u32 len_be, int check)
491 {
492 unsigned long long offset = __be32_to_cpu(offset_be);
493 unsigned long long len = __be32_to_cpu(len_be);
494 int dofree = (buf == NULL);
495
496 if (check)
497 if (len != 2 && len != 8 && len != 32
498 && len != 128 && len != 512)
499 return NULL;
500
501 if (len > 1024)
502 return NULL;
503 if (buf) {
504 /* All pre-allocated sections are a single block */
505 if (len != 1)
506 return NULL;
507 } else {
508 posix_memalign(&buf, 512, len<<9);
509 }
510
511 if (!buf)
512 return NULL;
513
514 if (super->active->type == 1)
515 offset += __be64_to_cpu(super->active->primary_lba);
516 else
517 offset += __be64_to_cpu(super->active->secondary_lba);
518
519 if (lseek64(fd, offset<<9, 0) != (offset<<9)) {
520 if (dofree)
521 free(buf);
522 return NULL;
523 }
524 if (read(fd, buf, len<<9) != (len<<9)) {
525 if (dofree)
526 free(buf);
527 return NULL;
528 }
529 return buf;
530 }
531
532 static int load_ddf_headers(int fd, struct ddf_super *super, char *devname)
533 {
534 unsigned long long dsize;
535
536 get_dev_size(fd, NULL, &dsize);
537
538 if (lseek64(fd, dsize-512, 0) < 0) {
539 if (devname)
540 fprintf(stderr,
541 Name": Cannot seek to anchor block on %s: %s\n",
542 devname, strerror(errno));
543 return 1;
544 }
545 if (read(fd, &super->anchor, 512) != 512) {
546 if (devname)
547 fprintf(stderr,
548 Name ": Cannot read anchor block on %s: %s\n",
549 devname, strerror(errno));
550 return 1;
551 }
552 if (super->anchor.magic != DDF_HEADER_MAGIC) {
553 if (devname)
554 fprintf(stderr, Name ": no DDF anchor found on %s\n",
555 devname);
556 return 2;
557 }
558 if (calc_crc(&super->anchor, 512) != super->anchor.crc) {
559 if (devname)
560 fprintf(stderr, Name ": bad CRC on anchor on %s\n",
561 devname);
562 return 2;
563 }
564 if (memcmp(super->anchor.revision, DDF_REVISION_0, 8) != 0 &&
565 memcmp(super->anchor.revision, DDF_REVISION_2, 8) != 0) {
566 if (devname)
567 fprintf(stderr, Name ": can only support super revision"
568 " %.8s and earlier, not %.8s on %s\n",
569 DDF_REVISION_2, super->anchor.revision,devname);
570 return 2;
571 }
572 if (load_ddf_header(fd, __be64_to_cpu(super->anchor.primary_lba),
573 dsize >> 9, 1,
574 &super->primary, &super->anchor) == 0) {
575 if (devname)
576 fprintf(stderr,
577 Name ": Failed to load primary DDF header "
578 "on %s\n", devname);
579 return 2;
580 }
581 super->active = &super->primary;
582 if (load_ddf_header(fd, __be64_to_cpu(super->anchor.secondary_lba),
583 dsize >> 9, 2,
584 &super->secondary, &super->anchor)) {
585 if ((__be32_to_cpu(super->primary.seq)
586 < __be32_to_cpu(super->secondary.seq) &&
587 !super->secondary.openflag)
588 || (__be32_to_cpu(super->primary.seq)
589 == __be32_to_cpu(super->secondary.seq) &&
590 super->primary.openflag && !super->secondary.openflag)
591 )
592 super->active = &super->secondary;
593 }
594 return 0;
595 }
596
597 static int load_ddf_global(int fd, struct ddf_super *super, char *devname)
598 {
599 void *ok;
600 ok = load_section(fd, super, &super->controller,
601 super->active->controller_section_offset,
602 super->active->controller_section_length,
603 0);
604 super->phys = load_section(fd, super, NULL,
605 super->active->phys_section_offset,
606 super->active->phys_section_length,
607 1);
608 super->pdsize = __be32_to_cpu(super->active->phys_section_length) * 512;
609
610 super->virt = load_section(fd, super, NULL,
611 super->active->virt_section_offset,
612 super->active->virt_section_length,
613 1);
614 super->vdsize = __be32_to_cpu(super->active->virt_section_length) * 512;
615 if (!ok ||
616 !super->phys ||
617 !super->virt) {
618 free(super->phys);
619 free(super->virt);
620 super->phys = NULL;
621 super->virt = NULL;
622 return 2;
623 }
624 super->conflist = NULL;
625 super->dlist = NULL;
626
627 super->max_part = __be16_to_cpu(super->active->max_partitions);
628 super->mppe = __be16_to_cpu(super->active->max_primary_element_entries);
629 super->conf_rec_len = __be16_to_cpu(super->active->config_record_len);
630 return 0;
631 }
632
633 static int load_ddf_local(int fd, struct ddf_super *super,
634 char *devname, int keep)
635 {
636 struct dl *dl;
637 struct stat stb;
638 char *conf;
639 int i;
640 int vnum;
641 int max_virt_disks = __be16_to_cpu(super->active->max_vd_entries);
642 unsigned long long dsize;
643
644 /* First the local disk info */
645 posix_memalign((void**)&dl, 512,
646 sizeof(*dl) +
647 (super->max_part) * sizeof(dl->vlist[0]));
648
649 load_section(fd, super, &dl->disk,
650 super->active->data_section_offset,
651 super->active->data_section_length,
652 0);
653 dl->devname = devname ? strdup(devname) : NULL;
654
655 fstat(fd, &stb);
656 dl->major = major(stb.st_rdev);
657 dl->minor = minor(stb.st_rdev);
658 dl->next = super->dlist;
659 dl->fd = keep ? fd : -1;
660
661 dl->size = 0;
662 if (get_dev_size(fd, devname, &dsize))
663 dl->size = dsize >> 9;
664 dl->spare = NULL;
665 for (i=0 ; i < super->max_part ; i++)
666 dl->vlist[i] = NULL;
667 super->dlist = dl;
668 dl->pdnum = -1;
669 for (i=0; i < __be16_to_cpu(super->active->max_pd_entries); i++)
670 if (memcmp(super->phys->entries[i].guid,
671 dl->disk.guid, DDF_GUID_LEN) == 0)
672 dl->pdnum = i;
673
674 /* Now the config list. */
675 /* 'conf' is an array of config entries, some of which are
676 * probably invalid. Those which are good need to be copied into
677 * the conflist
678 */
679
680 conf = load_section(fd, super, NULL,
681 super->active->config_section_offset,
682 super->active->config_section_length,
683 0);
684
685 vnum = 0;
686 for (i = 0;
687 i < __be32_to_cpu(super->active->config_section_length);
688 i += super->conf_rec_len) {
689 struct vd_config *vd =
690 (struct vd_config *)((char*)conf + i*512);
691 struct vcl *vcl;
692
693 if (vd->magic == DDF_SPARE_ASSIGN_MAGIC) {
694 if (dl->spare)
695 continue;
696 posix_memalign((void**)&dl->spare, 512,
697 super->conf_rec_len*512);
698 memcpy(dl->spare, vd, super->conf_rec_len*512);
699 continue;
700 }
701 if (vd->magic != DDF_VD_CONF_MAGIC)
702 continue;
703 for (vcl = super->conflist; vcl; vcl = vcl->next) {
704 if (memcmp(vcl->conf.guid,
705 vd->guid, DDF_GUID_LEN) == 0)
706 break;
707 }
708
709 if (vcl) {
710 dl->vlist[vnum++] = vcl;
711 if (__be32_to_cpu(vd->seqnum) <=
712 __be32_to_cpu(vcl->conf.seqnum))
713 continue;
714 } else {
715 posix_memalign((void**)&vcl, 512,
716 (super->conf_rec_len*512 +
717 offsetof(struct vcl, conf)));
718 vcl->next = super->conflist;
719 vcl->block_sizes = NULL; /* FIXME not for CONCAT */
720 super->conflist = vcl;
721 dl->vlist[vnum++] = vcl;
722 }
723 memcpy(&vcl->conf, vd, super->conf_rec_len*512);
724 vcl->lba_offset = (__u64*)
725 &vcl->conf.phys_refnum[super->mppe];
726
727 for (i=0; i < max_virt_disks ; i++)
728 if (memcmp(super->virt->entries[i].guid,
729 vcl->conf.guid, DDF_GUID_LEN)==0)
730 break;
731 if (i < max_virt_disks)
732 vcl->vcnum = i;
733 }
734 free(conf);
735
736 return 0;
737 }
738
739 #ifndef MDASSEMBLE
740 static int load_super_ddf_all(struct supertype *st, int fd,
741 void **sbp, char *devname, int keep_fd);
742 #endif
743 static int load_super_ddf(struct supertype *st, int fd,
744 char *devname)
745 {
746 unsigned long long dsize;
747 struct ddf_super *super;
748 int rv;
749
750 #ifndef MDASSEMBLE
751 /* if 'fd' is a container, load metadata from all the devices */
752 if (load_super_ddf_all(st, fd, &st->sb, devname, 1) == 0)
753 return 0;
754 #endif
755 if (st->subarray[0])
756 return 1; /* FIXME Is this correct */
757
758 if (get_dev_size(fd, devname, &dsize) == 0)
759 return 1;
760
761 /* 32M is a lower bound */
762 if (dsize <= 32*1024*1024) {
763 if (devname) {
764 fprintf(stderr,
765 Name ": %s is too small for ddf: "
766 "size is %llu sectors.\n",
767 devname, dsize>>9);
768 return 1;
769 }
770 }
771 if (dsize & 511) {
772 if (devname) {
773 fprintf(stderr,
774 Name ": %s is an odd size for ddf: "
775 "size is %llu bytes.\n",
776 devname, dsize);
777 return 1;
778 }
779 }
780
781 if (posix_memalign((void**)&super, 512, sizeof(*super))!= 0) {
782 fprintf(stderr, Name ": malloc of %zu failed.\n",
783 sizeof(*super));
784 return 1;
785 }
786 memset(super, 0, sizeof(*super));
787
788 rv = load_ddf_headers(fd, super, devname);
789 if (rv) {
790 free(super);
791 return rv;
792 }
793
794 /* Have valid headers and have chosen the best. Let's read in the rest*/
795
796 rv = load_ddf_global(fd, super, devname);
797
798 if (rv) {
799 if (devname)
800 fprintf(stderr,
801 Name ": Failed to load all information "
802 "sections on %s\n", devname);
803 free(super);
804 return rv;
805 }
806
807 load_ddf_local(fd, super, devname, 0);
808
809 /* Should possibly check the sections .... */
810
811 st->sb = super;
812 if (st->ss == NULL) {
813 st->ss = &super_ddf;
814 st->minor_version = 0;
815 st->max_devs = 512;
816 }
817 st->loaded_container = 0;
818 return 0;
819
820 }
821
822 static void free_super_ddf(struct supertype *st)
823 {
824 struct ddf_super *ddf = st->sb;
825 if (ddf == NULL)
826 return;
827 free(ddf->phys);
828 free(ddf->virt);
829 while (ddf->conflist) {
830 struct vcl *v = ddf->conflist;
831 ddf->conflist = v->next;
832 if (v->block_sizes)
833 free(v->block_sizes);
834 free(v);
835 }
836 while (ddf->dlist) {
837 struct dl *d = ddf->dlist;
838 ddf->dlist = d->next;
839 if (d->fd >= 0)
840 close(d->fd);
841 if (d->spare)
842 free(d->spare);
843 free(d);
844 }
845 free(ddf);
846 st->sb = NULL;
847 }
848
849 static struct supertype *match_metadata_desc_ddf(char *arg)
850 {
851 /* 'ddf' only support containers */
852 struct supertype *st;
853 if (strcmp(arg, "ddf") != 0 &&
854 strcmp(arg, "default") != 0
855 )
856 return NULL;
857
858 st = malloc(sizeof(*st));
859 memset(st, 0, sizeof(*st));
860 st->ss = &super_ddf;
861 st->max_devs = 512;
862 st->minor_version = 0;
863 st->sb = NULL;
864 return st;
865 }
866
867
868 #ifndef MDASSEMBLE
869
870 static mapping_t ddf_state[] = {
871 { "Optimal", 0},
872 { "Degraded", 1},
873 { "Deleted", 2},
874 { "Missing", 3},
875 { "Failed", 4},
876 { "Partially Optimal", 5},
877 { "-reserved-", 6},
878 { "-reserved-", 7},
879 { NULL, 0}
880 };
881
882 static mapping_t ddf_init_state[] = {
883 { "Not Initialised", 0},
884 { "QuickInit in Progress", 1},
885 { "Fully Initialised", 2},
886 { "*UNKNOWN*", 3},
887 { NULL, 0}
888 };
889 static mapping_t ddf_access[] = {
890 { "Read/Write", 0},
891 { "Reserved", 1},
892 { "Read Only", 2},
893 { "Blocked (no access)", 3},
894 { NULL ,0}
895 };
896
897 static mapping_t ddf_level[] = {
898 { "RAID0", DDF_RAID0},
899 { "RAID1", DDF_RAID1},
900 { "RAID3", DDF_RAID3},
901 { "RAID4", DDF_RAID4},
902 { "RAID5", DDF_RAID5},
903 { "RAID1E",DDF_RAID1E},
904 { "JBOD", DDF_JBOD},
905 { "CONCAT",DDF_CONCAT},
906 { "RAID5E",DDF_RAID5E},
907 { "RAID5EE",DDF_RAID5EE},
908 { "RAID6", DDF_RAID6},
909 { NULL, 0}
910 };
911 static mapping_t ddf_sec_level[] = {
912 { "Striped", DDF_2STRIPED},
913 { "Mirrored", DDF_2MIRRORED},
914 { "Concat", DDF_2CONCAT},
915 { "Spanned", DDF_2SPANNED},
916 { NULL, 0}
917 };
918 #endif
919
920 struct num_mapping {
921 int num1, num2;
922 };
923 static struct num_mapping ddf_level_num[] = {
924 { DDF_RAID0, 0 },
925 { DDF_RAID1, 1 },
926 { DDF_RAID3, LEVEL_UNSUPPORTED },
927 { DDF_RAID4, 4 },
928 { DDF_RAID5, 5 },
929 { DDF_RAID1E, LEVEL_UNSUPPORTED },
930 { DDF_JBOD, LEVEL_UNSUPPORTED },
931 { DDF_CONCAT, LEVEL_LINEAR },
932 { DDF_RAID5E, LEVEL_UNSUPPORTED },
933 { DDF_RAID5EE, LEVEL_UNSUPPORTED },
934 { DDF_RAID6, 6},
935 { MAXINT, MAXINT }
936 };
937
938 static int map_num1(struct num_mapping *map, int num)
939 {
940 int i;
941 for (i=0 ; map[i].num1 != MAXINT; i++)
942 if (map[i].num1 == num)
943 break;
944 return map[i].num2;
945 }
946
947 #ifndef MDASSEMBLE
948 static void print_guid(char *guid, int tstamp)
949 {
950 /* A GUIDs are part (or all) ASCII and part binary.
951 * They tend to be space padded.
952 * We print the GUID in HEX, then in parentheses add
953 * any initial ASCII sequence, and a possible
954 * time stamp from bytes 16-19
955 */
956 int l = DDF_GUID_LEN;
957 int i;
958
959 for (i=0 ; i<DDF_GUID_LEN ; i++) {
960 if ((i&3)==0 && i != 0) printf(":");
961 printf("%02X", guid[i]&255);
962 }
963
964 printf(" (");
965 while (l && guid[l-1] == ' ')
966 l--;
967 for (i=0 ; i<l ; i++) {
968 if (guid[i] >= 0x20 && guid[i] < 0x7f)
969 fputc(guid[i], stdout);
970 else
971 break;
972 }
973 if (tstamp) {
974 time_t then = __be32_to_cpu(*(__u32*)(guid+16)) + DECADE;
975 char tbuf[100];
976 struct tm *tm;
977 tm = localtime(&then);
978 strftime(tbuf, 100, " %D %T",tm);
979 fputs(tbuf, stdout);
980 }
981 printf(")");
982 }
983
984 static void examine_vd(int n, struct ddf_super *sb, char *guid)
985 {
986 int crl = sb->conf_rec_len;
987 struct vcl *vcl;
988
989 for (vcl = sb->conflist ; vcl ; vcl = vcl->next) {
990 struct vd_config *vc = &vcl->conf;
991
992 if (calc_crc(vc, crl*512) != vc->crc)
993 continue;
994 if (memcmp(vc->guid, guid, DDF_GUID_LEN) != 0)
995 continue;
996
997 /* Ok, we know about this VD, let's give more details */
998 printf(" Raid Devices[%d] : %d\n", n,
999 __be16_to_cpu(vc->prim_elmnt_count));
1000 printf(" Chunk Size[%d] : %d sectors\n", n,
1001 1 << vc->chunk_shift);
1002 printf(" Raid Level[%d] : %s\n", n,
1003 map_num(ddf_level, vc->prl)?:"-unknown-");
1004 if (vc->sec_elmnt_count != 1) {
1005 printf(" Secondary Position[%d] : %d of %d\n", n,
1006 vc->sec_elmnt_seq, vc->sec_elmnt_count);
1007 printf(" Secondary Level[%d] : %s\n", n,
1008 map_num(ddf_sec_level, vc->srl) ?: "-unknown-");
1009 }
1010 printf(" Device Size[%d] : %llu\n", n,
1011 __be64_to_cpu(vc->blocks)/2);
1012 printf(" Array Size[%d] : %llu\n", n,
1013 __be64_to_cpu(vc->array_blocks)/2);
1014 }
1015 }
1016
1017 static void examine_vds(struct ddf_super *sb)
1018 {
1019 int cnt = __be16_to_cpu(sb->virt->populated_vdes);
1020 int i;
1021 printf(" Virtual Disks : %d\n", cnt);
1022
1023 for (i=0; i<cnt; i++) {
1024 struct virtual_entry *ve = &sb->virt->entries[i];
1025 printf(" VD GUID[%d] : ", i); print_guid(ve->guid, 1);
1026 printf("\n");
1027 printf(" unit[%d] : %d\n", i, __be16_to_cpu(ve->unit));
1028 printf(" state[%d] : %s, %s%s\n", i,
1029 map_num(ddf_state, ve->state & 7),
1030 (ve->state & 8) ? "Morphing, ": "",
1031 (ve->state & 16)? "Not Consistent" : "Consistent");
1032 printf(" init state[%d] : %s\n", i,
1033 map_num(ddf_init_state, ve->init_state&3));
1034 printf(" access[%d] : %s\n", i,
1035 map_num(ddf_access, (ve->init_state>>6) & 3));
1036 printf(" Name[%d] : %.16s\n", i, ve->name);
1037 examine_vd(i, sb, ve->guid);
1038 }
1039 if (cnt) printf("\n");
1040 }
1041
1042 static void examine_pds(struct ddf_super *sb)
1043 {
1044 int cnt = __be16_to_cpu(sb->phys->used_pdes);
1045 int i;
1046 struct dl *dl;
1047 printf(" Physical Disks : %d\n", cnt);
1048
1049 for (i=0 ; i<cnt ; i++) {
1050 struct phys_disk_entry *pd = &sb->phys->entries[i];
1051 int type = __be16_to_cpu(pd->type);
1052 int state = __be16_to_cpu(pd->state);
1053
1054 printf(" PD GUID[%d] : ", i); print_guid(pd->guid, 0);
1055 printf("\n");
1056 printf(" ref[%d] : %08x\n", i,
1057 __be32_to_cpu(pd->refnum));
1058 printf(" mode[%d] : %s%s%s%s%s\n", i,
1059 (type&2) ? "active":"",
1060 (type&4) ? "Global Spare":"",
1061 (type&8) ? "spare" : "",
1062 (type&16)? ", foreign" : "",
1063 (type&32)? "pass-through" : "");
1064 printf(" state[%d] : %s%s%s%s%s%s%s\n", i,
1065 (state&1)? "Online": "Offline",
1066 (state&2)? ", Failed": "",
1067 (state&4)? ", Rebuilding": "",
1068 (state&8)? ", in-transition": "",
1069 (state&16)? ", SMART errors": "",
1070 (state&32)? ", Unrecovered Read Errors": "",
1071 (state&64)? ", Missing" : "");
1072 printf(" Avail Size[%d] : %llu K\n", i,
1073 __be64_to_cpu(pd->config_size)>>1);
1074 for (dl = sb->dlist; dl ; dl = dl->next) {
1075 if (dl->disk.refnum == pd->refnum) {
1076 char *dv = map_dev(dl->major, dl->minor, 0);
1077 if (dv)
1078 printf(" Device[%d] : %s\n",
1079 i, dv);
1080 }
1081 }
1082 printf("\n");
1083 }
1084 }
1085
1086 static void examine_super_ddf(struct supertype *st, char *homehost)
1087 {
1088 struct ddf_super *sb = st->sb;
1089
1090 printf(" Magic : %08x\n", __be32_to_cpu(sb->anchor.magic));
1091 printf(" Version : %.8s\n", sb->anchor.revision);
1092 printf("Controller GUID : "); print_guid(sb->controller.guid, 0);
1093 printf("\n");
1094 printf(" Container GUID : "); print_guid(sb->anchor.guid, 1);
1095 printf("\n");
1096 printf(" Seq : %08x\n", __be32_to_cpu(sb->active->seq));
1097 printf(" Redundant hdr : %s\n", sb->secondary.magic == DDF_HEADER_MAGIC
1098 ?"yes" : "no");
1099 examine_vds(sb);
1100 examine_pds(sb);
1101 }
1102
1103 static void brief_examine_super_ddf(struct supertype *st)
1104 {
1105 /* We just write a generic DDF ARRAY entry
1106 * The uuid is all hex, 6 groups of 4 bytes
1107 */
1108 struct ddf_super *ddf = st->sb;
1109 int i;
1110 printf("ARRAY /dev/ddf metadata=ddf UUID=");
1111 for (i = 0; i < DDF_GUID_LEN; i++) {
1112 if ((i&3) == 0 && i != 0)
1113 printf(":");
1114 printf("%02X", 255&ddf->anchor.guid[i]);
1115 }
1116 printf("\n");
1117 }
1118
1119 static void detail_super_ddf(struct supertype *st, char *homehost)
1120 {
1121 /* FIXME later
1122 * Could print DDF GUID
1123 * Need to find which array
1124 * If whole, briefly list all arrays
1125 * If one, give name
1126 */
1127 }
1128
1129 static void brief_detail_super_ddf(struct supertype *st)
1130 {
1131 /* FIXME I really need to know which array we are detailing.
1132 * Can that be stored in ddf_super??
1133 */
1134 // struct ddf_super *ddf = st->sb;
1135 }
1136 #endif
1137
1138 static int match_home_ddf(struct supertype *st, char *homehost)
1139 {
1140 /* It matches 'this' host if the controller is a
1141 * Linux-MD controller with vendor_data matching
1142 * the hostname
1143 */
1144 struct ddf_super *ddf = st->sb;
1145 int len = strlen(homehost);
1146
1147 return (memcmp(ddf->controller.guid, T10, 8) == 0 &&
1148 len < sizeof(ddf->controller.vendor_data) &&
1149 memcmp(ddf->controller.vendor_data, homehost,len) == 0 &&
1150 ddf->controller.vendor_data[len] == 0);
1151 }
1152
1153 #ifndef MDASSEMBLE
1154 static struct vd_config *find_vdcr(struct ddf_super *ddf, int inst)
1155 {
1156 struct vcl *v;
1157
1158 for (v = ddf->conflist; v; v = v->next)
1159 if (inst == v->vcnum)
1160 return &v->conf;
1161 return NULL;
1162 }
1163 #endif
1164
1165 static int find_phys(struct ddf_super *ddf, __u32 phys_refnum)
1166 {
1167 /* Find the entry in phys_disk which has the given refnum
1168 * and return it's index
1169 */
1170 int i;
1171 for (i=0; i < __be16_to_cpu(ddf->phys->max_pdes); i++)
1172 if (ddf->phys->entries[i].refnum == phys_refnum)
1173 return i;
1174 return -1;
1175 }
1176
1177 static void uuid_from_super_ddf(struct supertype *st, int uuid[4])
1178 {
1179 /* The uuid returned here is used for:
1180 * uuid to put into bitmap file (Create, Grow)
1181 * uuid for backup header when saving critical section (Grow)
1182 * comparing uuids when re-adding a device into an array
1183 * In these cases the uuid required is that of the data-array,
1184 * not the device-set.
1185 * uuid to recognise same set when adding a missing device back
1186 * to an array. This is a uuid for the device-set.
1187 *
1188 * For each of these we can make do with a truncated
1189 * or hashed uuid rather than the original, as long as
1190 * everyone agrees.
1191 * In the case of SVD we assume the BVD is of interest,
1192 * though that might be the case if a bitmap were made for
1193 * a mirrored SVD - worry about that later.
1194 * So we need to find the VD configuration record for the
1195 * relevant BVD and extract the GUID and Secondary_Element_Seq.
1196 * The first 16 bytes of the sha1 of these is used.
1197 */
1198 struct ddf_super *ddf = st->sb;
1199 struct vcl *vcl = ddf->currentconf;
1200 char *guid;
1201 char buf[20];
1202 struct sha1_ctx ctx;
1203
1204 if (vcl)
1205 guid = vcl->conf.guid;
1206 else
1207 guid = ddf->anchor.guid;
1208
1209 sha1_init_ctx(&ctx);
1210 sha1_process_bytes(guid, DDF_GUID_LEN, &ctx);
1211 if (vcl && vcl->conf.sec_elmnt_count > 1)
1212 sha1_process_bytes(&vcl->conf.sec_elmnt_seq, 1, &ctx);
1213 sha1_finish_ctx(&ctx, buf);
1214 memcpy(uuid, buf, 4*4);
1215 }
1216
1217 static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info);
1218
1219 static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info)
1220 {
1221 struct ddf_super *ddf = st->sb;
1222
1223 if (ddf->currentconf) {
1224 getinfo_super_ddf_bvd(st, info);
1225 return;
1226 }
1227
1228 info->array.raid_disks = __be16_to_cpu(ddf->phys->used_pdes);
1229 info->array.level = LEVEL_CONTAINER;
1230 info->array.layout = 0;
1231 info->array.md_minor = -1;
1232 info->array.ctime = DECADE + __be32_to_cpu(*(__u32*)
1233 (ddf->anchor.guid+16));
1234 info->array.utime = 0;
1235 info->array.chunk_size = 0;
1236
1237
1238 info->disk.major = 0;
1239 info->disk.minor = 0;
1240 if (ddf->dlist) {
1241 info->disk.number = __be32_to_cpu(ddf->dlist->disk.refnum);
1242 info->disk.raid_disk = find_phys(ddf, ddf->dlist->disk.refnum);
1243
1244 info->data_offset = __be64_to_cpu(ddf->phys->
1245 entries[info->disk.raid_disk].
1246 config_size);
1247 info->component_size = ddf->dlist->size - info->data_offset;
1248 } else {
1249 info->disk.number = -1;
1250 // info->disk.raid_disk = find refnum in the table and use index;
1251 }
1252 info->disk.state = (1 << MD_DISK_SYNC);
1253
1254
1255 info->reshape_active = 0;
1256 info->name[0] = 0;
1257
1258 info->array.major_version = -1;
1259 info->array.minor_version = -2;
1260 strcpy(info->text_version, "ddf");
1261 info->safe_mode_delay = 0;
1262
1263 uuid_from_super_ddf(st, info->uuid);
1264
1265 }
1266
1267 static int rlq_to_layout(int rlq, int prl, int raiddisks);
1268
1269 static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info)
1270 {
1271 struct ddf_super *ddf = st->sb;
1272 struct vcl *vc = ddf->currentconf;
1273 int cd = ddf->currentdev;
1274
1275 /* FIXME this returns BVD info - what if we want SVD ?? */
1276
1277 info->array.raid_disks = __be16_to_cpu(vc->conf.prim_elmnt_count);
1278 info->array.level = map_num1(ddf_level_num, vc->conf.prl);
1279 info->array.layout = rlq_to_layout(vc->conf.rlq, vc->conf.prl,
1280 info->array.raid_disks);
1281 info->array.md_minor = -1;
1282 info->array.ctime = DECADE +
1283 __be32_to_cpu(*(__u32*)(vc->conf.guid+16));
1284 info->array.utime = DECADE + __be32_to_cpu(vc->conf.timestamp);
1285 info->array.chunk_size = 512 << vc->conf.chunk_shift;
1286
1287 if (cd >= 0 && cd < ddf->mppe) {
1288 info->data_offset = __be64_to_cpu(vc->lba_offset[cd]);
1289 if (vc->block_sizes)
1290 info->component_size = vc->block_sizes[cd];
1291 else
1292 info->component_size = __be64_to_cpu(vc->conf.blocks);
1293 }
1294
1295 info->disk.major = 0;
1296 info->disk.minor = 0;
1297 // info->disk.number = __be32_to_cpu(ddf->disk.refnum);
1298 // info->disk.raid_disk = find refnum in the table and use index;
1299 // info->disk.state = ???;
1300
1301 info->container_member = ddf->currentconf->vcnum;
1302
1303 info->resync_start = 0;
1304 if (!(ddf->virt->entries[info->container_member].state
1305 & DDF_state_inconsistent) &&
1306 (ddf->virt->entries[info->container_member].init_state
1307 & DDF_initstate_mask)
1308 == DDF_init_full)
1309 info->resync_start = ~0ULL;
1310
1311 uuid_from_super_ddf(st, info->uuid);
1312
1313 info->container_member = atoi(st->subarray);
1314 info->array.major_version = -1;
1315 info->array.minor_version = -2;
1316 sprintf(info->text_version, "/%s/%s",
1317 devnum2devname(st->container_dev),
1318 st->subarray);
1319 info->safe_mode_delay = 200;
1320
1321 info->name[0] = 0;
1322 }
1323
1324
1325 static int update_super_ddf(struct supertype *st, struct mdinfo *info,
1326 char *update,
1327 char *devname, int verbose,
1328 int uuid_set, char *homehost)
1329 {
1330 /* For 'assemble' and 'force' we need to return non-zero if any
1331 * change was made. For others, the return value is ignored.
1332 * Update options are:
1333 * force-one : This device looks a bit old but needs to be included,
1334 * update age info appropriately.
1335 * assemble: clear any 'faulty' flag to allow this device to
1336 * be assembled.
1337 * force-array: Array is degraded but being forced, mark it clean
1338 * if that will be needed to assemble it.
1339 *
1340 * newdev: not used ????
1341 * grow: Array has gained a new device - this is currently for
1342 * linear only
1343 * resync: mark as dirty so a resync will happen.
1344 * uuid: Change the uuid of the array to match what is given
1345 * homehost: update the recorded homehost
1346 * name: update the name - preserving the homehost
1347 * _reshape_progress: record new reshape_progress position.
1348 *
1349 * Following are not relevant for this version:
1350 * sparc2.2 : update from old dodgey metadata
1351 * super-minor: change the preferred_minor number
1352 * summaries: update redundant counters.
1353 */
1354 int rv = 0;
1355 // struct ddf_super *ddf = st->sb;
1356 // struct vd_config *vd = find_vdcr(ddf, info->container_member);
1357 // struct virtual_entry *ve = find_ve(ddf);
1358
1359 /* we don't need to handle "force-*" or "assemble" as
1360 * there is no need to 'trick' the kernel. We the metadata is
1361 * first updated to activate the array, all the implied modifications
1362 * will just happen.
1363 */
1364
1365 if (strcmp(update, "grow") == 0) {
1366 /* FIXME */
1367 }
1368 if (strcmp(update, "resync") == 0) {
1369 // info->resync_checkpoint = 0;
1370 }
1371 /* We ignore UUID updates as they make even less sense
1372 * with DDF
1373 */
1374 if (strcmp(update, "homehost") == 0) {
1375 /* homehost is stored in controller->vendor_data,
1376 * or it is when we are the vendor
1377 */
1378 // if (info->vendor_is_local)
1379 // strcpy(ddf->controller.vendor_data, homehost);
1380 }
1381 if (strcmp(update, "name") == 0) {
1382 /* name is stored in virtual_entry->name */
1383 // memset(ve->name, ' ', 16);
1384 // strncpy(ve->name, info->name, 16);
1385 }
1386 if (strcmp(update, "_reshape_progress") == 0) {
1387 /* We don't support reshape yet */
1388 }
1389
1390 // update_all_csum(ddf);
1391
1392 return rv;
1393 }
1394
1395 static void make_header_guid(char *guid)
1396 {
1397 __u32 stamp;
1398 int rfd;
1399 /* Create a DDF Header of Virtual Disk GUID */
1400
1401 /* 24 bytes of fiction required.
1402 * first 8 are a 'vendor-id' - "Linux-MD"
1403 * next 8 are controller type.. how about 0X DEAD BEEF 0000 0000
1404 * Remaining 8 random number plus timestamp
1405 */
1406 memcpy(guid, T10, sizeof(T10));
1407 stamp = __cpu_to_be32(0xdeadbeef);
1408 memcpy(guid+8, &stamp, 4);
1409 stamp = __cpu_to_be32(0);
1410 memcpy(guid+12, &stamp, 4);
1411 stamp = __cpu_to_be32(time(0) - DECADE);
1412 memcpy(guid+16, &stamp, 4);
1413 rfd = open("/dev/urandom", O_RDONLY);
1414 if (rfd < 0 || read(rfd, &stamp, 4) != 4)
1415 stamp = random();
1416 memcpy(guid+20, &stamp, 4);
1417 if (rfd >= 0) close(rfd);
1418 }
1419
1420 static int init_super_ddf_bvd(struct supertype *st,
1421 mdu_array_info_t *info,
1422 unsigned long long size,
1423 char *name, char *homehost,
1424 int *uuid);
1425
1426 static int init_super_ddf(struct supertype *st,
1427 mdu_array_info_t *info,
1428 unsigned long long size, char *name, char *homehost,
1429 int *uuid)
1430 {
1431 /* This is primarily called by Create when creating a new array.
1432 * We will then get add_to_super called for each component, and then
1433 * write_init_super called to write it out to each device.
1434 * For DDF, Create can create on fresh devices or on a pre-existing
1435 * array.
1436 * To create on a pre-existing array a different method will be called.
1437 * This one is just for fresh drives.
1438 *
1439 * We need to create the entire 'ddf' structure which includes:
1440 * DDF headers - these are easy.
1441 * Controller data - a Sector describing this controller .. not that
1442 * this is a controller exactly.
1443 * Physical Disk Record - one entry per device, so
1444 * leave plenty of space.
1445 * Virtual Disk Records - again, just leave plenty of space.
1446 * This just lists VDs, doesn't give details
1447 * Config records - describes the VDs that use this disk
1448 * DiskData - describes 'this' device.
1449 * BadBlockManagement - empty
1450 * Diag Space - empty
1451 * Vendor Logs - Could we put bitmaps here?
1452 *
1453 */
1454 struct ddf_super *ddf;
1455 char hostname[17];
1456 int hostlen;
1457 int max_phys_disks, max_virt_disks;
1458 unsigned long long sector;
1459 int clen;
1460 int i;
1461 int pdsize, vdsize;
1462 struct phys_disk *pd;
1463 struct virtual_disk *vd;
1464
1465 if (!info) {
1466 st->sb = NULL;
1467 return 0;
1468 }
1469 if (st->sb)
1470 return init_super_ddf_bvd(st, info, size, name, homehost,
1471 uuid);
1472
1473 posix_memalign((void**)&ddf, 512, sizeof(*ddf));
1474 memset(ddf, 0, sizeof(*ddf));
1475 ddf->dlist = NULL; /* no physical disks yet */
1476 ddf->conflist = NULL; /* No virtual disks yet */
1477
1478 /* At least 32MB *must* be reserved for the ddf. So let's just
1479 * start 32MB from the end, and put the primary header there.
1480 * Don't do secondary for now.
1481 * We don't know exactly where that will be yet as it could be
1482 * different on each device. To just set up the lengths.
1483 *
1484 */
1485
1486 ddf->anchor.magic = DDF_HEADER_MAGIC;
1487 make_header_guid(ddf->anchor.guid);
1488
1489 memcpy(ddf->anchor.revision, DDF_REVISION_2, 8);
1490 ddf->anchor.seq = __cpu_to_be32(1);
1491 ddf->anchor.timestamp = __cpu_to_be32(time(0) - DECADE);
1492 ddf->anchor.openflag = 0xFF;
1493 ddf->anchor.foreignflag = 0;
1494 ddf->anchor.enforcegroups = 0; /* Is this best?? */
1495 ddf->anchor.pad0 = 0xff;
1496 memset(ddf->anchor.pad1, 0xff, 12);
1497 memset(ddf->anchor.header_ext, 0xff, 32);
1498 ddf->anchor.primary_lba = ~(__u64)0;
1499 ddf->anchor.secondary_lba = ~(__u64)0;
1500 ddf->anchor.type = DDF_HEADER_ANCHOR;
1501 memset(ddf->anchor.pad2, 0xff, 3);
1502 ddf->anchor.workspace_len = __cpu_to_be32(32768); /* Must be reserved */
1503 ddf->anchor.workspace_lba = ~(__u64)0; /* Put this at bottom
1504 of 32M reserved.. */
1505 max_phys_disks = 1023; /* Should be enough */
1506 ddf->anchor.max_pd_entries = __cpu_to_be16(max_phys_disks);
1507 max_virt_disks = 255;
1508 ddf->anchor.max_vd_entries = __cpu_to_be16(max_virt_disks); /* ?? */
1509 ddf->anchor.max_partitions = __cpu_to_be16(64); /* ?? */
1510 ddf->max_part = 64;
1511 ddf->mppe = 256;
1512 ddf->conf_rec_len = 1 + ROUND_UP(ddf->mppe * (4+8), 512)/512;
1513 ddf->anchor.config_record_len = __cpu_to_be16(ddf->conf_rec_len);
1514 ddf->anchor.max_primary_element_entries = __cpu_to_be16(ddf->mppe);
1515 memset(ddf->anchor.pad3, 0xff, 54);
1516 /* controller sections is one sector long immediately
1517 * after the ddf header */
1518 sector = 1;
1519 ddf->anchor.controller_section_offset = __cpu_to_be32(sector);
1520 ddf->anchor.controller_section_length = __cpu_to_be32(1);
1521 sector += 1;
1522
1523 /* phys is 8 sectors after that */
1524 pdsize = ROUND_UP(sizeof(struct phys_disk) +
1525 sizeof(struct phys_disk_entry)*max_phys_disks,
1526 512);
1527 switch(pdsize/512) {
1528 case 2: case 8: case 32: case 128: case 512: break;
1529 default: abort();
1530 }
1531 ddf->anchor.phys_section_offset = __cpu_to_be32(sector);
1532 ddf->anchor.phys_section_length =
1533 __cpu_to_be32(pdsize/512); /* max_primary_element_entries/8 */
1534 sector += pdsize/512;
1535
1536 /* virt is another 32 sectors */
1537 vdsize = ROUND_UP(sizeof(struct virtual_disk) +
1538 sizeof(struct virtual_entry) * max_virt_disks,
1539 512);
1540 switch(vdsize/512) {
1541 case 2: case 8: case 32: case 128: case 512: break;
1542 default: abort();
1543 }
1544 ddf->anchor.virt_section_offset = __cpu_to_be32(sector);
1545 ddf->anchor.virt_section_length =
1546 __cpu_to_be32(vdsize/512); /* max_vd_entries/8 */
1547 sector += vdsize/512;
1548
1549 clen = ddf->conf_rec_len * (ddf->max_part+1);
1550 ddf->anchor.config_section_offset = __cpu_to_be32(sector);
1551 ddf->anchor.config_section_length = __cpu_to_be32(clen);
1552 sector += clen;
1553
1554 ddf->anchor.data_section_offset = __cpu_to_be32(sector);
1555 ddf->anchor.data_section_length = __cpu_to_be32(1);
1556 sector += 1;
1557
1558 ddf->anchor.bbm_section_length = __cpu_to_be32(0);
1559 ddf->anchor.bbm_section_offset = __cpu_to_be32(0xFFFFFFFF);
1560 ddf->anchor.diag_space_length = __cpu_to_be32(0);
1561 ddf->anchor.diag_space_offset = __cpu_to_be32(0xFFFFFFFF);
1562 ddf->anchor.vendor_length = __cpu_to_be32(0);
1563 ddf->anchor.vendor_offset = __cpu_to_be32(0xFFFFFFFF);
1564
1565 memset(ddf->anchor.pad4, 0xff, 256);
1566
1567 memcpy(&ddf->primary, &ddf->anchor, 512);
1568 memcpy(&ddf->secondary, &ddf->anchor, 512);
1569
1570 ddf->primary.openflag = 1; /* I guess.. */
1571 ddf->primary.type = DDF_HEADER_PRIMARY;
1572
1573 ddf->secondary.openflag = 1; /* I guess.. */
1574 ddf->secondary.type = DDF_HEADER_SECONDARY;
1575
1576 ddf->active = &ddf->primary;
1577
1578 ddf->controller.magic = DDF_CONTROLLER_MAGIC;
1579
1580 /* 24 more bytes of fiction required.
1581 * first 8 are a 'vendor-id' - "Linux-MD"
1582 * Remaining 16 are serial number.... maybe a hostname would do?
1583 */
1584 memcpy(ddf->controller.guid, T10, sizeof(T10));
1585 gethostname(hostname, sizeof(hostname));
1586 hostname[sizeof(hostname) - 1] = 0;
1587 hostlen = strlen(hostname);
1588 memcpy(ddf->controller.guid + 24 - hostlen, hostname, hostlen);
1589 for (i = strlen(T10) ; i+hostlen < 24; i++)
1590 ddf->controller.guid[i] = ' ';
1591
1592 ddf->controller.type.vendor_id = __cpu_to_be16(0xDEAD);
1593 ddf->controller.type.device_id = __cpu_to_be16(0xBEEF);
1594 ddf->controller.type.sub_vendor_id = 0;
1595 ddf->controller.type.sub_device_id = 0;
1596 memcpy(ddf->controller.product_id, "What Is My PID??", 16);
1597 memset(ddf->controller.pad, 0xff, 8);
1598 memset(ddf->controller.vendor_data, 0xff, 448);
1599
1600 posix_memalign((void**)&pd, 512, pdsize);
1601 ddf->phys = pd;
1602 ddf->pdsize = pdsize;
1603
1604 memset(pd, 0xff, pdsize);
1605 memset(pd, 0, sizeof(*pd));
1606 pd->magic = DDF_PHYS_DATA_MAGIC;
1607 pd->used_pdes = __cpu_to_be16(0);
1608 pd->max_pdes = __cpu_to_be16(max_phys_disks);
1609 memset(pd->pad, 0xff, 52);
1610
1611 posix_memalign((void**)&vd, 512, vdsize);
1612 ddf->virt = vd;
1613 ddf->vdsize = vdsize;
1614 memset(vd, 0, vdsize);
1615 vd->magic = DDF_VIRT_RECORDS_MAGIC;
1616 vd->populated_vdes = __cpu_to_be16(0);
1617 vd->max_vdes = __cpu_to_be16(max_virt_disks);
1618 memset(vd->pad, 0xff, 52);
1619
1620 for (i=0; i<max_virt_disks; i++)
1621 memset(&vd->entries[i], 0xff, sizeof(struct virtual_entry));
1622
1623 st->sb = ddf;
1624 ddf->updates_pending = 1;
1625 return 1;
1626 }
1627
1628 static int all_ff(char *guid)
1629 {
1630 int i;
1631 for (i = 0; i < DDF_GUID_LEN; i++)
1632 if (guid[i] != (char)0xff)
1633 return 0;
1634 return 1;
1635 }
1636 static int chunk_to_shift(int chunksize)
1637 {
1638 return ffs(chunksize/512)-1;
1639 }
1640
1641 static int level_to_prl(int level)
1642 {
1643 switch (level) {
1644 case LEVEL_LINEAR: return DDF_CONCAT;
1645 case 0: return DDF_RAID0;
1646 case 1: return DDF_RAID1;
1647 case 4: return DDF_RAID4;
1648 case 5: return DDF_RAID5;
1649 case 6: return DDF_RAID6;
1650 default: return -1;
1651 }
1652 }
1653 static int layout_to_rlq(int level, int layout, int raiddisks)
1654 {
1655 switch(level) {
1656 case 0:
1657 return DDF_RAID0_SIMPLE;
1658 case 1:
1659 switch(raiddisks) {
1660 case 2: return DDF_RAID1_SIMPLE;
1661 case 3: return DDF_RAID1_MULTI;
1662 default: return -1;
1663 }
1664 case 4:
1665 switch(layout) {
1666 case 0: return DDF_RAID4_N;
1667 }
1668 break;
1669 case 5:
1670 case 6:
1671 switch(layout) {
1672 case ALGORITHM_LEFT_ASYMMETRIC:
1673 return DDF_RAID5_N_RESTART;
1674 case ALGORITHM_RIGHT_ASYMMETRIC:
1675 if (level == 5)
1676 return DDF_RAID5_0_RESTART;
1677 else
1678 return DDF_RAID6_0_RESTART;
1679 case ALGORITHM_LEFT_SYMMETRIC:
1680 return DDF_RAID5_N_CONTINUE;
1681 case ALGORITHM_RIGHT_SYMMETRIC:
1682 return -1; /* not mentioned in standard */
1683 }
1684 }
1685 return -1;
1686 }
1687
1688 static int rlq_to_layout(int rlq, int prl, int raiddisks)
1689 {
1690 switch(prl) {
1691 case DDF_RAID0:
1692 return 0; /* hopefully rlq == DDF_RAID0_SIMPLE */
1693 case DDF_RAID1:
1694 return 0; /* hopefully rlq == SIMPLE or MULTI depending
1695 on raiddisks*/
1696 case DDF_RAID4:
1697 switch(rlq) {
1698 case DDF_RAID4_N:
1699 return 0;
1700 default:
1701 /* not supported */
1702 return -1; /* FIXME this isn't checked */
1703 }
1704 case DDF_RAID5:
1705 switch(rlq) {
1706 case DDF_RAID5_N_RESTART:
1707 return ALGORITHM_LEFT_ASYMMETRIC;
1708 case DDF_RAID5_0_RESTART:
1709 return ALGORITHM_RIGHT_ASYMMETRIC;
1710 case DDF_RAID5_N_CONTINUE:
1711 return ALGORITHM_LEFT_SYMMETRIC;
1712 default:
1713 return -1;
1714 }
1715 case DDF_RAID6:
1716 switch(rlq) {
1717 case DDF_RAID5_N_RESTART:
1718 return ALGORITHM_LEFT_ASYMMETRIC;
1719 case DDF_RAID6_0_RESTART:
1720 return ALGORITHM_RIGHT_ASYMMETRIC;
1721 case DDF_RAID5_N_CONTINUE:
1722 return ALGORITHM_LEFT_SYMMETRIC;
1723 default:
1724 return -1;
1725 }
1726 }
1727 return -1;
1728 }
1729
1730 #ifndef MDASSEMBLE
1731 struct extent {
1732 unsigned long long start, size;
1733 };
1734 static int cmp_extent(const void *av, const void *bv)
1735 {
1736 const struct extent *a = av;
1737 const struct extent *b = bv;
1738 if (a->start < b->start)
1739 return -1;
1740 if (a->start > b->start)
1741 return 1;
1742 return 0;
1743 }
1744
1745 static struct extent *get_extents(struct ddf_super *ddf, struct dl *dl)
1746 {
1747 /* find a list of used extents on the give physical device
1748 * (dnum) of the given ddf.
1749 * Return a malloced array of 'struct extent'
1750
1751 FIXME ignore DDF_Legacy devices?
1752
1753 */
1754 struct extent *rv;
1755 int n = 0;
1756 int i, j;
1757
1758 rv = malloc(sizeof(struct extent) * (ddf->max_part + 2));
1759 if (!rv)
1760 return NULL;
1761
1762 for (i = 0; i < ddf->max_part; i++) {
1763 struct vcl *v = dl->vlist[i];
1764 if (v == NULL)
1765 continue;
1766 for (j=0; j < v->conf.prim_elmnt_count; j++)
1767 if (v->conf.phys_refnum[j] == dl->disk.refnum) {
1768 /* This device plays role 'j' in 'v'. */
1769 rv[n].start = __be64_to_cpu(v->lba_offset[j]);
1770 rv[n].size = __be64_to_cpu(v->conf.blocks);
1771 n++;
1772 break;
1773 }
1774 }
1775 qsort(rv, n, sizeof(*rv), cmp_extent);
1776
1777 rv[n].start = __be64_to_cpu(ddf->phys->entries[dl->pdnum].config_size);
1778 rv[n].size = 0;
1779 return rv;
1780 }
1781 #endif
1782
1783 static int init_super_ddf_bvd(struct supertype *st,
1784 mdu_array_info_t *info,
1785 unsigned long long size,
1786 char *name, char *homehost,
1787 int *uuid)
1788 {
1789 /* We are creating a BVD inside a pre-existing container.
1790 * so st->sb is already set.
1791 * We need to create a new vd_config and a new virtual_entry
1792 */
1793 struct ddf_super *ddf = st->sb;
1794 int venum;
1795 struct virtual_entry *ve;
1796 struct vcl *vcl;
1797 struct vd_config *vc;
1798
1799 if (__be16_to_cpu(ddf->virt->populated_vdes)
1800 >= __be16_to_cpu(ddf->virt->max_vdes)) {
1801 fprintf(stderr, Name": This ddf already has the "
1802 "maximum of %d virtual devices\n",
1803 __be16_to_cpu(ddf->virt->max_vdes));
1804 return 0;
1805 }
1806
1807 for (venum = 0; venum < __be16_to_cpu(ddf->virt->max_vdes); venum++)
1808 if (all_ff(ddf->virt->entries[venum].guid))
1809 break;
1810 if (venum == __be16_to_cpu(ddf->virt->max_vdes)) {
1811 fprintf(stderr, Name ": Cannot find spare slot for "
1812 "virtual disk - DDF is corrupt\n");
1813 return 0;
1814 }
1815 ve = &ddf->virt->entries[venum];
1816
1817 /* A Virtual Disk GUID contains the T10 Vendor ID, controller type,
1818 * timestamp, random number
1819 */
1820 make_header_guid(ve->guid);
1821 ve->unit = __cpu_to_be16(info->md_minor);
1822 ve->pad0 = 0xFFFF;
1823 ve->guid_crc = crc32(0, (unsigned char*)ddf->anchor.guid, DDF_GUID_LEN);
1824 ve->type = 0;
1825 ve->state = DDF_state_degraded; /* Will be modified as devices are added */
1826 if (info->state & 1) /* clean */
1827 ve->init_state = DDF_init_full;
1828 else
1829 ve->init_state = DDF_init_not;
1830
1831 memset(ve->pad1, 0xff, 14);
1832 memset(ve->name, ' ', 16);
1833 if (name)
1834 strncpy(ve->name, name, 16);
1835 ddf->virt->populated_vdes =
1836 __cpu_to_be16(__be16_to_cpu(ddf->virt->populated_vdes)+1);
1837
1838 /* Now create a new vd_config */
1839 posix_memalign((void**)&vcl, 512,
1840 (offsetof(struct vcl, conf) + ddf->conf_rec_len * 512));
1841 vcl->lba_offset = (__u64*) &vcl->conf.phys_refnum[ddf->mppe];
1842 vcl->vcnum = venum;
1843 sprintf(st->subarray, "%d", venum);
1844 vcl->block_sizes = NULL; /* FIXME not for CONCAT */
1845
1846 vc = &vcl->conf;
1847
1848 vc->magic = DDF_VD_CONF_MAGIC;
1849 memcpy(vc->guid, ve->guid, DDF_GUID_LEN);
1850 vc->timestamp = __cpu_to_be32(time(0)-DECADE);
1851 vc->seqnum = __cpu_to_be32(1);
1852 memset(vc->pad0, 0xff, 24);
1853 vc->prim_elmnt_count = __cpu_to_be16(info->raid_disks);
1854 vc->chunk_shift = chunk_to_shift(info->chunk_size);
1855 vc->prl = level_to_prl(info->level);
1856 vc->rlq = layout_to_rlq(info->level, info->layout, info->raid_disks);
1857 vc->sec_elmnt_count = 1;
1858 vc->sec_elmnt_seq = 0;
1859 vc->srl = 0;
1860 vc->blocks = __cpu_to_be64(info->size * 2);
1861 vc->array_blocks = __cpu_to_be64(
1862 calc_array_size(info->level, info->raid_disks, info->layout,
1863 info->chunk_size, info->size*2));
1864 memset(vc->pad1, 0xff, 8);
1865 vc->spare_refs[0] = 0xffffffff;
1866 vc->spare_refs[1] = 0xffffffff;
1867 vc->spare_refs[2] = 0xffffffff;
1868 vc->spare_refs[3] = 0xffffffff;
1869 vc->spare_refs[4] = 0xffffffff;
1870 vc->spare_refs[5] = 0xffffffff;
1871 vc->spare_refs[6] = 0xffffffff;
1872 vc->spare_refs[7] = 0xffffffff;
1873 memset(vc->cache_pol, 0, 8);
1874 vc->bg_rate = 0x80;
1875 memset(vc->pad2, 0xff, 3);
1876 memset(vc->pad3, 0xff, 52);
1877 memset(vc->pad4, 0xff, 192);
1878 memset(vc->v0, 0xff, 32);
1879 memset(vc->v1, 0xff, 32);
1880 memset(vc->v2, 0xff, 16);
1881 memset(vc->v3, 0xff, 16);
1882 memset(vc->vendor, 0xff, 32);
1883
1884 memset(vc->phys_refnum, 0xff, 4*ddf->mppe);
1885 memset(vc->phys_refnum+(ddf->mppe * 4), 0x00, 8*ddf->mppe);
1886
1887 vcl->next = ddf->conflist;
1888 ddf->conflist = vcl;
1889 ddf->currentconf = vcl;
1890 ddf->updates_pending = 1;
1891 return 1;
1892 }
1893
1894 #ifndef MDASSEMBLE
1895 static void add_to_super_ddf_bvd(struct supertype *st,
1896 mdu_disk_info_t *dk, int fd, char *devname)
1897 {
1898 /* fd and devname identify a device with-in the ddf container (st).
1899 * dk identifies a location in the new BVD.
1900 * We need to find suitable free space in that device and update
1901 * the phys_refnum and lba_offset for the newly created vd_config.
1902 * We might also want to update the type in the phys_disk
1903 * section.
1904 */
1905 struct dl *dl;
1906 struct ddf_super *ddf = st->sb;
1907 struct vd_config *vc;
1908 __u64 *lba_offset;
1909 int working;
1910 int i;
1911 unsigned long long blocks, pos, esize;
1912 struct extent *ex;
1913
1914 for (dl = ddf->dlist; dl ; dl = dl->next)
1915 if (dl->major == dk->major &&
1916 dl->minor == dk->minor)
1917 break;
1918 if (!dl || ! (dk->state & (1<<MD_DISK_SYNC)))
1919 return;
1920
1921 vc = &ddf->currentconf->conf;
1922 lba_offset = ddf->currentconf->lba_offset;
1923
1924 ex = get_extents(ddf, dl);
1925 if (!ex)
1926 return;
1927
1928 i = 0; pos = 0;
1929 blocks = __be64_to_cpu(vc->blocks);
1930 if (ddf->currentconf->block_sizes)
1931 blocks = ddf->currentconf->block_sizes[dk->raid_disk];
1932
1933 do {
1934 esize = ex[i].start - pos;
1935 if (esize >= blocks)
1936 break;
1937 pos = ex[i].start + ex[i].size;
1938 i++;
1939 } while (ex[i-1].size);
1940
1941 free(ex);
1942 if (esize < blocks)
1943 return;
1944
1945 ddf->currentdev = dk->raid_disk;
1946 vc->phys_refnum[dk->raid_disk] = dl->disk.refnum;
1947 lba_offset[dk->raid_disk] = __cpu_to_be64(pos);
1948
1949 for (i=0; i < ddf->max_part ; i++)
1950 if (dl->vlist[i] == NULL)
1951 break;
1952 if (i == ddf->max_part)
1953 return;
1954 dl->vlist[i] = ddf->currentconf;
1955
1956 dl->fd = fd;
1957 dl->devname = devname;
1958
1959 /* Check how many working raid_disks, and if we can mark
1960 * array as optimal yet
1961 */
1962 working = 0;
1963
1964 for (i=0; i < __be16_to_cpu(vc->prim_elmnt_count); i++)
1965 if (vc->phys_refnum[i] != 0xffffffff)
1966 working++;
1967
1968 /* Find which virtual_entry */
1969 i = ddf->currentconf->vcnum;
1970 if (working == __be16_to_cpu(vc->prim_elmnt_count))
1971 ddf->virt->entries[i].state =
1972 (ddf->virt->entries[i].state & ~DDF_state_mask)
1973 | DDF_state_optimal;
1974
1975 if (vc->prl == DDF_RAID6 &&
1976 working+1 == __be16_to_cpu(vc->prim_elmnt_count))
1977 ddf->virt->entries[i].state =
1978 (ddf->virt->entries[i].state & ~DDF_state_mask)
1979 | DDF_state_part_optimal;
1980
1981 ddf->phys->entries[dl->pdnum].type &= ~__cpu_to_be16(DDF_Global_Spare);
1982 ddf->phys->entries[dl->pdnum].type |= __cpu_to_be16(DDF_Active_in_VD);
1983 ddf->updates_pending = 1;
1984 }
1985
1986 /* add a device to a container, either while creating it or while
1987 * expanding a pre-existing container
1988 */
1989 static void add_to_super_ddf(struct supertype *st,
1990 mdu_disk_info_t *dk, int fd, char *devname)
1991 {
1992 struct ddf_super *ddf = st->sb;
1993 struct dl *dd;
1994 time_t now;
1995 struct tm *tm;
1996 unsigned long long size;
1997 struct phys_disk_entry *pde;
1998 int n, i;
1999 struct stat stb;
2000
2001 if (ddf->currentconf) {
2002 add_to_super_ddf_bvd(st, dk, fd, devname);
2003 return;
2004 }
2005
2006 /* This is device numbered dk->number. We need to create
2007 * a phys_disk entry and a more detailed disk_data entry.
2008 */
2009 fstat(fd, &stb);
2010 posix_memalign((void**)&dd, 512,
2011 sizeof(*dd) + sizeof(dd->vlist[0]) * ddf->max_part);
2012 dd->major = major(stb.st_rdev);
2013 dd->minor = minor(stb.st_rdev);
2014 dd->devname = devname;
2015 dd->fd = fd;
2016 dd->spare = NULL;
2017
2018 dd->disk.magic = DDF_PHYS_DATA_MAGIC;
2019 now = time(0);
2020 tm = localtime(&now);
2021 sprintf(dd->disk.guid, "%8s%04d%02d%02d",
2022 T10, tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
2023 *(__u32*)(dd->disk.guid + 16) = random();
2024 *(__u32*)(dd->disk.guid + 20) = random();
2025
2026 do {
2027 /* Cannot be bothered finding a CRC of some irrelevant details*/
2028 dd->disk.refnum = random();
2029 for (i = __be16_to_cpu(ddf->active->max_pd_entries) - 1;
2030 i >= 0; i--)
2031 if (ddf->phys->entries[i].refnum == dd->disk.refnum)
2032 break;
2033 } while (i >= 0);
2034
2035 dd->disk.forced_ref = 1;
2036 dd->disk.forced_guid = 1;
2037 memset(dd->disk.vendor, ' ', 32);
2038 memcpy(dd->disk.vendor, "Linux", 5);
2039 memset(dd->disk.pad, 0xff, 442);
2040 for (i = 0; i < ddf->max_part ; i++)
2041 dd->vlist[i] = NULL;
2042
2043 n = __be16_to_cpu(ddf->phys->used_pdes);
2044 pde = &ddf->phys->entries[n];
2045 dd->pdnum = n;
2046
2047 if (st->update_tail) {
2048 int len = (sizeof(struct phys_disk) +
2049 sizeof(struct phys_disk_entry));
2050 struct phys_disk *pd;
2051
2052 pd = malloc(len);
2053 pd->magic = DDF_PHYS_RECORDS_MAGIC;
2054 pd->used_pdes = __cpu_to_be16(n);
2055 pde = &pd->entries[0];
2056 dd->mdupdate = pd;
2057 } else {
2058 n++;
2059 ddf->phys->used_pdes = __cpu_to_be16(n);
2060 }
2061
2062 memcpy(pde->guid, dd->disk.guid, DDF_GUID_LEN);
2063 pde->refnum = dd->disk.refnum;
2064 pde->type = __cpu_to_be16(DDF_Forced_PD_GUID | DDF_Global_Spare);
2065 pde->state = __cpu_to_be16(DDF_Online);
2066 get_dev_size(fd, NULL, &size);
2067 /* We are required to reserve 32Meg, and record the size in sectors */
2068 pde->config_size = __cpu_to_be64( (size - 32*1024*1024) / 512);
2069 sprintf(pde->path, "%17.17s","Information: nil") ;
2070 memset(pde->pad, 0xff, 6);
2071
2072 dd->size = size >> 9;
2073 if (st->update_tail) {
2074 dd->next = ddf->add_list;
2075 ddf->add_list = dd;
2076 } else {
2077 dd->next = ddf->dlist;
2078 ddf->dlist = dd;
2079 ddf->updates_pending = 1;
2080 }
2081 }
2082
2083 /*
2084 * This is the write_init_super method for a ddf container. It is
2085 * called when creating a container or adding another device to a
2086 * container.
2087 */
2088
2089 static unsigned char null_conf[4096+512];
2090
2091 static int __write_init_super_ddf(struct supertype *st, int do_close)
2092 {
2093
2094 struct ddf_super *ddf = st->sb;
2095 int i;
2096 struct dl *d;
2097 int n_config;
2098 int conf_size;
2099
2100 unsigned long long size, sector;
2101
2102 for (d = ddf->dlist; d; d=d->next) {
2103 int fd = d->fd;
2104
2105 if (fd < 0)
2106 continue;
2107
2108 /* We need to fill in the primary, (secondary) and workspace
2109 * lba's in the headers, set their checksums,
2110 * Also checksum phys, virt....
2111 *
2112 * Then write everything out, finally the anchor is written.
2113 */
2114 get_dev_size(fd, NULL, &size);
2115 size /= 512;
2116 ddf->anchor.workspace_lba = __cpu_to_be64(size - 32*1024*2);
2117 ddf->anchor.primary_lba = __cpu_to_be64(size - 16*1024*2);
2118 ddf->anchor.seq = __cpu_to_be32(1);
2119 memcpy(&ddf->primary, &ddf->anchor, 512);
2120 memcpy(&ddf->secondary, &ddf->anchor, 512);
2121
2122 ddf->anchor.openflag = 0xFF; /* 'open' means nothing */
2123 ddf->anchor.seq = 0xFFFFFFFF; /* no sequencing in anchor */
2124 ddf->anchor.crc = calc_crc(&ddf->anchor, 512);
2125
2126 ddf->primary.openflag = 0;
2127 ddf->primary.type = DDF_HEADER_PRIMARY;
2128
2129 ddf->secondary.openflag = 0;
2130 ddf->secondary.type = DDF_HEADER_SECONDARY;
2131
2132 ddf->primary.crc = calc_crc(&ddf->primary, 512);
2133 ddf->secondary.crc = calc_crc(&ddf->secondary, 512);
2134
2135 sector = size - 16*1024*2;
2136 lseek64(fd, sector<<9, 0);
2137 write(fd, &ddf->primary, 512);
2138
2139 ddf->controller.crc = calc_crc(&ddf->controller, 512);
2140 write(fd, &ddf->controller, 512);
2141
2142 ddf->phys->crc = calc_crc(ddf->phys, ddf->pdsize);
2143
2144 write(fd, ddf->phys, ddf->pdsize);
2145
2146 ddf->virt->crc = calc_crc(ddf->virt, ddf->vdsize);
2147 write(fd, ddf->virt, ddf->vdsize);
2148
2149 /* Now write lots of config records. */
2150 n_config = ddf->max_part;
2151 conf_size = ddf->conf_rec_len * 512;
2152 for (i = 0 ; i <= n_config ; i++) {
2153 struct vcl *c = d->vlist[i];
2154 if (i == n_config)
2155 c = (struct vcl*)d->spare;
2156
2157 if (c) {
2158 c->conf.crc = calc_crc(&c->conf, conf_size);
2159 write(fd, &c->conf, conf_size);
2160 } else {
2161 char *null_aligned = (char*)((((unsigned long)null_conf)+511)&~511UL);
2162 if (null_conf[0] != 0xff)
2163 memset(null_conf, 0xff, sizeof(null_conf));
2164 int togo = conf_size;
2165 while (togo > sizeof(null_conf)-512) {
2166 write(fd, null_aligned, sizeof(null_conf)-512);
2167 togo -= sizeof(null_conf)-512;
2168 }
2169 write(fd, null_aligned, togo);
2170 }
2171 }
2172 d->disk.crc = calc_crc(&d->disk, 512);
2173 write(fd, &d->disk, 512);
2174
2175 /* Maybe do the same for secondary */
2176
2177 lseek64(fd, (size-1)*512, SEEK_SET);
2178 write(fd, &ddf->anchor, 512);
2179 if (do_close) {
2180 close(fd);
2181 d->fd = -1;
2182 }
2183 }
2184 return 1;
2185 }
2186
2187 static int write_init_super_ddf(struct supertype *st)
2188 {
2189
2190 if (st->update_tail) {
2191 /* queue the virtual_disk and vd_config as metadata updates */
2192 struct virtual_disk *vd;
2193 struct vd_config *vc;
2194 struct ddf_super *ddf = st->sb;
2195 int len;
2196
2197 if (!ddf->currentconf) {
2198 int len = (sizeof(struct phys_disk) +
2199 sizeof(struct phys_disk_entry));
2200
2201 /* adding a disk to the container. */
2202 if (!ddf->add_list)
2203 return 0;
2204
2205 append_metadata_update(st, ddf->add_list->mdupdate, len);
2206 ddf->add_list->mdupdate = NULL;
2207 return 0;
2208 }
2209
2210 /* Newly created VD */
2211
2212 /* First the virtual disk. We have a slightly fake header */
2213 len = sizeof(struct virtual_disk) + sizeof(struct virtual_entry);
2214 vd = malloc(len);
2215 *vd = *ddf->virt;
2216 vd->entries[0] = ddf->virt->entries[ddf->currentconf->vcnum];
2217 vd->populated_vdes = __cpu_to_be16(ddf->currentconf->vcnum);
2218 append_metadata_update(st, vd, len);
2219
2220 /* Then the vd_config */
2221 len = ddf->conf_rec_len * 512;
2222 vc = malloc(len);
2223 memcpy(vc, &ddf->currentconf->conf, len);
2224 append_metadata_update(st, vc, len);
2225
2226 /* FIXME I need to close the fds! */
2227 return 0;
2228 } else
2229 return __write_init_super_ddf(st, 1);
2230 }
2231
2232 #endif
2233
2234 static __u64 avail_size_ddf(struct supertype *st, __u64 devsize)
2235 {
2236 /* We must reserve the last 32Meg */
2237 if (devsize <= 32*1024*2)
2238 return 0;
2239 return devsize - 32*1024*2;
2240 }
2241
2242 #ifndef MDASSEMBLE
2243 static int
2244 validate_geometry_ddf_container(struct supertype *st,
2245 int level, int layout, int raiddisks,
2246 int chunk, unsigned long long size,
2247 char *dev, unsigned long long *freesize,
2248 int verbose);
2249
2250 static int validate_geometry_ddf_bvd(struct supertype *st,
2251 int level, int layout, int raiddisks,
2252 int chunk, unsigned long long size,
2253 char *dev, unsigned long long *freesize,
2254 int verbose);
2255
2256 static int validate_geometry_ddf(struct supertype *st,
2257 int level, int layout, int raiddisks,
2258 int chunk, unsigned long long size,
2259 char *dev, unsigned long long *freesize,
2260 int verbose)
2261 {
2262 int fd;
2263 struct mdinfo *sra;
2264 int cfd;
2265
2266 /* ddf potentially supports lots of things, but it depends on
2267 * what devices are offered (and maybe kernel version?)
2268 * If given unused devices, we will make a container.
2269 * If given devices in a container, we will make a BVD.
2270 * If given BVDs, we make an SVD, changing all the GUIDs in the process.
2271 */
2272
2273 if (level == LEVEL_CONTAINER) {
2274 /* Must be a fresh device to add to a container */
2275 return validate_geometry_ddf_container(st, level, layout,
2276 raiddisks, chunk,
2277 size, dev, freesize,
2278 verbose);
2279 }
2280
2281 if (st->sb) {
2282 /* A container has already been opened, so we are
2283 * creating in there. Maybe a BVD, maybe an SVD.
2284 * Should make a distinction one day.
2285 */
2286 return validate_geometry_ddf_bvd(st, level, layout, raiddisks,
2287 chunk, size, dev, freesize,
2288 verbose);
2289 }
2290 if (!dev) {
2291 /* Initial sanity check. Exclude illegal levels. */
2292 int i;
2293 for (i=0; ddf_level_num[i].num1 != MAXINT; i++)
2294 if (ddf_level_num[i].num2 == level)
2295 break;
2296 if (ddf_level_num[i].num1 == MAXINT)
2297 return 0;
2298 /* Should check layout? etc */
2299 return 1;
2300 }
2301
2302 /* This is the first device for the array.
2303 * If it is a container, we read it in and do automagic allocations,
2304 * no other devices should be given.
2305 * Otherwise it must be a member device of a container, and we
2306 * do manual allocation.
2307 * Later we should check for a BVD and make an SVD.
2308 */
2309 fd = open(dev, O_RDONLY|O_EXCL, 0);
2310 if (fd >= 0) {
2311 sra = sysfs_read(fd, 0, GET_VERSION);
2312 close(fd);
2313 if (sra && sra->array.major_version == -1 &&
2314 strcmp(sra->text_version, "ddf") == 0) {
2315
2316 /* load super */
2317 /* find space for 'n' devices. */
2318 /* remember the devices */
2319 /* Somehow return the fact that we have enough */
2320 }
2321
2322 if (verbose)
2323 fprintf(stderr,
2324 Name ": ddf: Cannot create this array "
2325 "on device %s\n",
2326 dev);
2327 return 0;
2328 }
2329 if (errno != EBUSY || (fd = open(dev, O_RDONLY, 0)) < 0) {
2330 if (verbose)
2331 fprintf(stderr, Name ": ddf: Cannot open %s: %s\n",
2332 dev, strerror(errno));
2333 return 0;
2334 }
2335 /* Well, it is in use by someone, maybe a 'ddf' container. */
2336 cfd = open_container(fd);
2337 if (cfd < 0) {
2338 close(fd);
2339 if (verbose)
2340 fprintf(stderr, Name ": ddf: Cannot use %s: %s\n",
2341 dev, strerror(EBUSY));
2342 return 0;
2343 }
2344 sra = sysfs_read(cfd, 0, GET_VERSION);
2345 close(fd);
2346 if (sra && sra->array.major_version == -1 &&
2347 strcmp(sra->text_version, "ddf") == 0) {
2348 /* This is a member of a ddf container. Load the container
2349 * and try to create a bvd
2350 */
2351 struct ddf_super *ddf;
2352 if (load_super_ddf_all(st, cfd, (void **)&ddf, NULL, 1) == 0) {
2353 st->sb = ddf;
2354 st->container_dev = fd2devnum(cfd);
2355 close(cfd);
2356 return validate_geometry_ddf_bvd(st, level, layout,
2357 raiddisks, chunk, size,
2358 dev, freesize,
2359 verbose);
2360 }
2361 close(cfd);
2362 } else /* device may belong to a different container */
2363 return 0;
2364
2365 return 1;
2366 }
2367
2368 static int
2369 validate_geometry_ddf_container(struct supertype *st,
2370 int level, int layout, int raiddisks,
2371 int chunk, unsigned long long size,
2372 char *dev, unsigned long long *freesize,
2373 int verbose)
2374 {
2375 int fd;
2376 unsigned long long ldsize;
2377
2378 if (level != LEVEL_CONTAINER)
2379 return 0;
2380 if (!dev)
2381 return 1;
2382
2383 fd = open(dev, O_RDONLY|O_EXCL, 0);
2384 if (fd < 0) {
2385 if (verbose)
2386 fprintf(stderr, Name ": ddf: Cannot open %s: %s\n",
2387 dev, strerror(errno));
2388 return 0;
2389 }
2390 if (!get_dev_size(fd, dev, &ldsize)) {
2391 close(fd);
2392 return 0;
2393 }
2394 close(fd);
2395
2396 *freesize = avail_size_ddf(st, ldsize >> 9);
2397
2398 return 1;
2399 }
2400
2401 static int validate_geometry_ddf_bvd(struct supertype *st,
2402 int level, int layout, int raiddisks,
2403 int chunk, unsigned long long size,
2404 char *dev, unsigned long long *freesize,
2405 int verbose)
2406 {
2407 struct stat stb;
2408 struct ddf_super *ddf = st->sb;
2409 struct dl *dl;
2410 unsigned long long pos = 0;
2411 unsigned long long maxsize;
2412 struct extent *e;
2413 int i;
2414 /* ddf/bvd supports lots of things, but not containers */
2415 if (level == LEVEL_CONTAINER)
2416 return 0;
2417 /* We must have the container info already read in. */
2418 if (!ddf)
2419 return 0;
2420
2421 if (!dev) {
2422 /* General test: make sure there is space for
2423 * 'raiddisks' device extents of size 'size'.
2424 */
2425 unsigned long long minsize = size;
2426 int dcnt = 0;
2427 if (minsize == 0)
2428 minsize = 8;
2429 for (dl = ddf->dlist; dl ; dl = dl->next)
2430 {
2431 int found = 0;
2432 pos = 0;
2433
2434 i = 0;
2435 e = get_extents(ddf, dl);
2436 if (!e) continue;
2437 do {
2438 unsigned long long esize;
2439 esize = e[i].start - pos;
2440 if (esize >= minsize)
2441 found = 1;
2442 pos = e[i].start + e[i].size;
2443 i++;
2444 } while (e[i-1].size);
2445 if (found)
2446 dcnt++;
2447 free(e);
2448 }
2449 if (dcnt < raiddisks) {
2450 if (verbose)
2451 fprintf(stderr,
2452 Name ": ddf: Not enough devices with "
2453 "space for this array (%d < %d)\n",
2454 dcnt, raiddisks);
2455 return 0;
2456 }
2457 return 1;
2458 }
2459 /* This device must be a member of the set */
2460 if (stat(dev, &stb) < 0)
2461 return 0;
2462 if ((S_IFMT & stb.st_mode) != S_IFBLK)
2463 return 0;
2464 for (dl = ddf->dlist ; dl ; dl = dl->next) {
2465 if (dl->major == major(stb.st_rdev) &&
2466 dl->minor == minor(stb.st_rdev))
2467 break;
2468 }
2469 if (!dl) {
2470 if (verbose)
2471 fprintf(stderr, Name ": ddf: %s is not in the "
2472 "same DDF set\n",
2473 dev);
2474 return 0;
2475 }
2476 e = get_extents(ddf, dl);
2477 maxsize = 0;
2478 i = 0;
2479 if (e) do {
2480 unsigned long long esize;
2481 esize = e[i].start - pos;
2482 if (esize >= maxsize)
2483 maxsize = esize;
2484 pos = e[i].start + e[i].size;
2485 i++;
2486 } while (e[i-1].size);
2487 *freesize = maxsize;
2488 // FIXME here I am
2489
2490 return 1;
2491 }
2492
2493 static int load_super_ddf_all(struct supertype *st, int fd,
2494 void **sbp, char *devname, int keep_fd)
2495 {
2496 struct mdinfo *sra;
2497 struct ddf_super *super;
2498 struct mdinfo *sd, *best = NULL;
2499 int bestseq = 0;
2500 int seq;
2501 char nm[20];
2502 int dfd;
2503
2504 sra = sysfs_read(fd, 0, GET_LEVEL|GET_VERSION|GET_DEVS|GET_STATE);
2505 if (!sra)
2506 return 1;
2507 if (sra->array.major_version != -1 ||
2508 sra->array.minor_version != -2 ||
2509 strcmp(sra->text_version, "ddf") != 0)
2510 return 1;
2511
2512 if (posix_memalign((void**)&super, 512, sizeof(*super)) != 0)
2513 return 1;
2514 memset(super, 0, sizeof(*super));
2515
2516 /* first, try each device, and choose the best ddf */
2517 for (sd = sra->devs ; sd ; sd = sd->next) {
2518 int rv;
2519 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
2520 dfd = dev_open(nm, O_RDONLY);
2521 if (dfd < 0)
2522 return 2;
2523 rv = load_ddf_headers(dfd, super, NULL);
2524 close(dfd);
2525 if (rv == 0) {
2526 seq = __be32_to_cpu(super->active->seq);
2527 if (super->active->openflag)
2528 seq--;
2529 if (!best || seq > bestseq) {
2530 bestseq = seq;
2531 best = sd;
2532 }
2533 }
2534 }
2535 if (!best)
2536 return 1;
2537 /* OK, load this ddf */
2538 sprintf(nm, "%d:%d", best->disk.major, best->disk.minor);
2539 dfd = dev_open(nm, O_RDONLY);
2540 if (dfd < 0)
2541 return 1;
2542 load_ddf_headers(dfd, super, NULL);
2543 load_ddf_global(dfd, super, NULL);
2544 close(dfd);
2545 /* Now we need the device-local bits */
2546 for (sd = sra->devs ; sd ; sd = sd->next) {
2547 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
2548 dfd = dev_open(nm, keep_fd? O_RDWR : O_RDONLY);
2549 if (dfd < 0)
2550 return 2;
2551 load_ddf_headers(dfd, super, NULL);
2552 seq = load_ddf_local(dfd, super, NULL, keep_fd);
2553 if (!keep_fd) close(dfd);
2554 }
2555 if (st->subarray[0]) {
2556 struct vcl *v;
2557
2558 for (v = super->conflist; v; v = v->next)
2559 if (v->vcnum == atoi(st->subarray))
2560 super->currentconf = v;
2561 if (!super->currentconf)
2562 return 1;
2563 }
2564 *sbp = super;
2565 if (st->ss == NULL) {
2566 st->ss = &super_ddf;
2567 st->minor_version = 0;
2568 st->max_devs = 512;
2569 st->container_dev = fd2devnum(fd);
2570 }
2571 st->loaded_container = 1;
2572 return 0;
2573 }
2574 #endif /* MDASSEMBLE */
2575
2576 static struct mdinfo *container_content_ddf(struct supertype *st)
2577 {
2578 /* Given a container loaded by load_super_ddf_all,
2579 * extract information about all the arrays into
2580 * an mdinfo tree.
2581 *
2582 * For each vcl in conflist: create an mdinfo, fill it in,
2583 * then look for matching devices (phys_refnum) in dlist
2584 * and create appropriate device mdinfo.
2585 */
2586 struct ddf_super *ddf = st->sb;
2587 struct mdinfo *rest = NULL;
2588 struct vcl *vc;
2589
2590 for (vc = ddf->conflist ; vc ; vc=vc->next)
2591 {
2592 int i;
2593 struct mdinfo *this;
2594 this = malloc(sizeof(*this));
2595 memset(this, 0, sizeof(*this));
2596 this->next = rest;
2597 rest = this;
2598
2599 this->array.level = map_num1(ddf_level_num, vc->conf.prl);
2600 this->array.raid_disks =
2601 __be16_to_cpu(vc->conf.prim_elmnt_count);
2602 this->array.layout = rlq_to_layout(vc->conf.rlq, vc->conf.prl,
2603 this->array.raid_disks);
2604 this->array.md_minor = -1;
2605 this->array.major_version = -1;
2606 this->array.minor_version = -2;
2607 this->array.ctime = DECADE +
2608 __be32_to_cpu(*(__u32*)(vc->conf.guid+16));
2609 this->array.utime = DECADE +
2610 __be32_to_cpu(vc->conf.timestamp);
2611 this->array.chunk_size = 512 << vc->conf.chunk_shift;
2612
2613 i = vc->vcnum;
2614 if ((ddf->virt->entries[i].state & DDF_state_inconsistent) ||
2615 (ddf->virt->entries[i].init_state & DDF_initstate_mask) !=
2616 DDF_init_full) {
2617 this->array.state = 0;
2618 this->resync_start = 0;
2619 } else {
2620 this->array.state = 1;
2621 this->resync_start = ~0ULL;
2622 }
2623 memcpy(this->name, ddf->virt->entries[i].name, 32);
2624 this->name[32]=0;
2625
2626 memset(this->uuid, 0, sizeof(this->uuid));
2627 this->component_size = __be64_to_cpu(vc->conf.blocks);
2628 this->array.size = this->component_size / 2;
2629 this->container_member = i;
2630
2631 ddf->currentconf = vc;
2632 uuid_from_super_ddf(st, this->uuid);
2633 ddf->currentconf = NULL;
2634
2635 sprintf(this->text_version, "/%s/%d",
2636 devnum2devname(st->container_dev),
2637 this->container_member);
2638
2639 for (i=0 ; i < ddf->mppe ; i++) {
2640 struct mdinfo *dev;
2641 struct dl *d;
2642
2643 if (vc->conf.phys_refnum[i] == 0xFFFFFFFF)
2644 continue;
2645
2646 this->array.working_disks++;
2647
2648 for (d = ddf->dlist; d ; d=d->next)
2649 if (d->disk.refnum == vc->conf.phys_refnum[i])
2650 break;
2651 if (d == NULL)
2652 break;
2653
2654 dev = malloc(sizeof(*dev));
2655 memset(dev, 0, sizeof(*dev));
2656 dev->next = this->devs;
2657 this->devs = dev;
2658
2659 dev->disk.number = __be32_to_cpu(d->disk.refnum);
2660 dev->disk.major = d->major;
2661 dev->disk.minor = d->minor;
2662 dev->disk.raid_disk = i;
2663 dev->disk.state = (1<<MD_DISK_SYNC)|(1<<MD_DISK_ACTIVE);
2664
2665 dev->events = __be32_to_cpu(ddf->primary.seq);
2666 dev->data_offset = __be64_to_cpu(vc->lba_offset[i]);
2667 dev->component_size = __be64_to_cpu(vc->conf.blocks);
2668 if (d->devname)
2669 strcpy(dev->name, d->devname);
2670 }
2671 }
2672 return rest;
2673 }
2674
2675 static int store_zero_ddf(struct supertype *st, int fd)
2676 {
2677 unsigned long long dsize;
2678 void *buf;
2679
2680 if (!get_dev_size(fd, NULL, &dsize))
2681 return 1;
2682
2683 posix_memalign(&buf, 512, 512);
2684 memset(buf, 0, 512);
2685
2686 lseek64(fd, dsize-512, 0);
2687 write(fd, buf, 512);
2688 free(buf);
2689 return 0;
2690 }
2691
2692 static int compare_super_ddf(struct supertype *st, struct supertype *tst)
2693 {
2694 /*
2695 * return:
2696 * 0 same, or first was empty, and second was copied
2697 * 1 second had wrong number
2698 * 2 wrong uuid
2699 * 3 wrong other info
2700 */
2701 struct ddf_super *first = st->sb;
2702 struct ddf_super *second = tst->sb;
2703
2704 if (!first) {
2705 st->sb = tst->sb;
2706 tst->sb = NULL;
2707 return 0;
2708 }
2709
2710 if (memcmp(first->anchor.guid, second->anchor.guid, DDF_GUID_LEN) != 0)
2711 return 2;
2712
2713 /* FIXME should I look at anything else? */
2714 return 0;
2715 }
2716
2717 #ifndef MDASSEMBLE
2718 /*
2719 * A new array 'a' has been started which claims to be instance 'inst'
2720 * within container 'c'.
2721 * We need to confirm that the array matches the metadata in 'c' so
2722 * that we don't corrupt any metadata.
2723 */
2724 static int ddf_open_new(struct supertype *c, struct active_array *a, char *inst)
2725 {
2726 dprintf("ddf: open_new %s\n", inst);
2727 a->info.container_member = atoi(inst);
2728 return 0;
2729 }
2730
2731 /*
2732 * The array 'a' is to be marked clean in the metadata.
2733 * If '->resync_start' is not ~(unsigned long long)0, then the array is only
2734 * clean up to the point (in sectors). If that cannot be recorded in the
2735 * metadata, then leave it as dirty.
2736 *
2737 * For DDF, we need to clear the DDF_state_inconsistent bit in the
2738 * !global! virtual_disk.virtual_entry structure.
2739 */
2740 static int ddf_set_array_state(struct active_array *a, int consistent)
2741 {
2742 struct ddf_super *ddf = a->container->sb;
2743 int inst = a->info.container_member;
2744 int old = ddf->virt->entries[inst].state;
2745 if (consistent == 2) {
2746 /* Should check if a recovery should be started FIXME */
2747 consistent = 1;
2748 if (a->resync_start != ~0ULL)
2749 consistent = 0;
2750 }
2751 if (consistent)
2752 ddf->virt->entries[inst].state &= ~DDF_state_inconsistent;
2753 else
2754 ddf->virt->entries[inst].state |= DDF_state_inconsistent;
2755 if (old != ddf->virt->entries[inst].state)
2756 ddf->updates_pending = 1;
2757
2758 old = ddf->virt->entries[inst].init_state;
2759 ddf->virt->entries[inst].init_state &= ~DDF_initstate_mask;
2760 if (a->resync_start == ~0ULL)
2761 ddf->virt->entries[inst].init_state |= DDF_init_full;
2762 else if (a->resync_start == 0)
2763 ddf->virt->entries[inst].init_state |= DDF_init_not;
2764 else
2765 ddf->virt->entries[inst].init_state |= DDF_init_quick;
2766 if (old != ddf->virt->entries[inst].init_state)
2767 ddf->updates_pending = 1;
2768
2769 dprintf("ddf mark %d %s %llu\n", inst, consistent?"clean":"dirty",
2770 a->resync_start);
2771 return consistent;
2772 }
2773
2774 /*
2775 * The state of each disk is stored in the global phys_disk structure
2776 * in phys_disk.entries[n].state.
2777 * This makes various combinations awkward.
2778 * - When a device fails in any array, it must be failed in all arrays
2779 * that include a part of this device.
2780 * - When a component is rebuilding, we cannot include it officially in the
2781 * array unless this is the only array that uses the device.
2782 *
2783 * So: when transitioning:
2784 * Online -> failed, just set failed flag. monitor will propagate
2785 * spare -> online, the device might need to be added to the array.
2786 * spare -> failed, just set failed. Don't worry if in array or not.
2787 */
2788 static void ddf_set_disk(struct active_array *a, int n, int state)
2789 {
2790 struct ddf_super *ddf = a->container->sb;
2791 int inst = a->info.container_member;
2792 struct vd_config *vc = find_vdcr(ddf, inst);
2793 int pd = find_phys(ddf, vc->phys_refnum[n]);
2794 int i, st, working;
2795
2796 if (vc == NULL) {
2797 dprintf("ddf: cannot find instance %d!!\n", inst);
2798 return;
2799 }
2800 if (pd < 0) {
2801 /* disk doesn't currently exist. If it is now in_sync,
2802 * insert it. */
2803 if ((state & DS_INSYNC) && ! (state & DS_FAULTY)) {
2804 /* Find dev 'n' in a->info->devs, determine the
2805 * ddf refnum, and set vc->phys_refnum and update
2806 * phys->entries[]
2807 */
2808 /* FIXME */
2809 }
2810 } else {
2811 int old = ddf->phys->entries[pd].state;
2812 if (state & DS_FAULTY)
2813 ddf->phys->entries[pd].state |= __cpu_to_be16(DDF_Failed);
2814 if (state & DS_INSYNC) {
2815 ddf->phys->entries[pd].state |= __cpu_to_be16(DDF_Online);
2816 ddf->phys->entries[pd].state &= __cpu_to_be16(~DDF_Rebuilding);
2817 }
2818 if (old != ddf->phys->entries[pd].state)
2819 ddf->updates_pending = 1;
2820 }
2821
2822 dprintf("ddf: set_disk %d to %x\n", n, state);
2823
2824 /* Now we need to check the state of the array and update
2825 * virtual_disk.entries[n].state.
2826 * It needs to be one of "optimal", "degraded", "failed".
2827 * I don't understand 'deleted' or 'missing'.
2828 */
2829 working = 0;
2830 for (i=0; i < a->info.array.raid_disks; i++) {
2831 pd = find_phys(ddf, vc->phys_refnum[i]);
2832 if (pd < 0)
2833 continue;
2834 st = __be16_to_cpu(ddf->phys->entries[pd].state);
2835 if ((st & (DDF_Online|DDF_Failed|DDF_Rebuilding))
2836 == DDF_Online)
2837 working++;
2838 }
2839 state = DDF_state_degraded;
2840 if (working == a->info.array.raid_disks)
2841 state = DDF_state_optimal;
2842 else switch(vc->prl) {
2843 case DDF_RAID0:
2844 case DDF_CONCAT:
2845 case DDF_JBOD:
2846 state = DDF_state_failed;
2847 break;
2848 case DDF_RAID1:
2849 if (working == 0)
2850 state = DDF_state_failed;
2851 break;
2852 case DDF_RAID4:
2853 case DDF_RAID5:
2854 if (working < a->info.array.raid_disks-1)
2855 state = DDF_state_failed;
2856 break;
2857 case DDF_RAID6:
2858 if (working < a->info.array.raid_disks-2)
2859 state = DDF_state_failed;
2860 else if (working == a->info.array.raid_disks-1)
2861 state = DDF_state_part_optimal;
2862 break;
2863 }
2864
2865 if (ddf->virt->entries[inst].state !=
2866 ((ddf->virt->entries[inst].state & ~DDF_state_mask)
2867 | state)) {
2868
2869 ddf->virt->entries[inst].state =
2870 (ddf->virt->entries[inst].state & ~DDF_state_mask)
2871 | state;
2872 ddf->updates_pending = 1;
2873 }
2874
2875 }
2876
2877 static void ddf_sync_metadata(struct supertype *st)
2878 {
2879
2880 /*
2881 * Write all data to all devices.
2882 * Later, we might be able to track whether only local changes
2883 * have been made, or whether any global data has been changed,
2884 * but ddf is sufficiently weird that it probably always
2885 * changes global data ....
2886 */
2887 struct ddf_super *ddf = st->sb;
2888 if (!ddf->updates_pending)
2889 return;
2890 ddf->updates_pending = 0;
2891 __write_init_super_ddf(st, 0);
2892 dprintf("ddf: sync_metadata\n");
2893 }
2894
2895 static void ddf_process_update(struct supertype *st,
2896 struct metadata_update *update)
2897 {
2898 /* Apply this update to the metadata.
2899 * The first 4 bytes are a DDF_*_MAGIC which guides
2900 * our actions.
2901 * Possible update are:
2902 * DDF_PHYS_RECORDS_MAGIC
2903 * Add a new physical device. Changes to this record
2904 * only happen implicitly.
2905 * used_pdes is the device number.
2906 * DDF_VIRT_RECORDS_MAGIC
2907 * Add a new VD. Possibly also change the 'access' bits.
2908 * populated_vdes is the entry number.
2909 * DDF_VD_CONF_MAGIC
2910 * New or updated VD. the VIRT_RECORD must already
2911 * exist. For an update, phys_refnum and lba_offset
2912 * (at least) are updated, and the VD_CONF must
2913 * be written to precisely those devices listed with
2914 * a phys_refnum.
2915 * DDF_SPARE_ASSIGN_MAGIC
2916 * replacement Spare Assignment Record... but for which device?
2917 *
2918 * So, e.g.:
2919 * - to create a new array, we send a VIRT_RECORD and
2920 * a VD_CONF. Then assemble and start the array.
2921 * - to activate a spare we send a VD_CONF to add the phys_refnum
2922 * and offset. This will also mark the spare as active with
2923 * a spare-assignment record.
2924 */
2925 struct ddf_super *ddf = st->sb;
2926 __u32 *magic = (__u32*)update->buf;
2927 struct phys_disk *pd;
2928 struct virtual_disk *vd;
2929 struct vd_config *vc;
2930 struct vcl *vcl;
2931 struct dl *dl;
2932 int mppe;
2933 int ent;
2934
2935 dprintf("Process update %x\n", *magic);
2936
2937 switch (*magic) {
2938 case DDF_PHYS_RECORDS_MAGIC:
2939
2940 if (update->len != (sizeof(struct phys_disk) +
2941 sizeof(struct phys_disk_entry)))
2942 return;
2943 pd = (struct phys_disk*)update->buf;
2944
2945 ent = __be16_to_cpu(pd->used_pdes);
2946 if (ent >= __be16_to_cpu(ddf->phys->max_pdes))
2947 return;
2948 if (!all_ff(ddf->phys->entries[ent].guid))
2949 return;
2950 ddf->phys->entries[ent] = pd->entries[0];
2951 ddf->phys->used_pdes = __cpu_to_be16(1 +
2952 __be16_to_cpu(ddf->phys->used_pdes));
2953 ddf->updates_pending = 1;
2954 if (ddf->add_list) {
2955 struct active_array *a;
2956 struct dl *al = ddf->add_list;
2957 ddf->add_list = al->next;
2958
2959 al->next = ddf->dlist;
2960 ddf->dlist = al;
2961
2962 /* As a device has been added, we should check
2963 * for any degraded devices that might make
2964 * use of this spare */
2965 for (a = st->arrays ; a; a=a->next)
2966 a->check_degraded = 1;
2967 }
2968 break;
2969
2970 case DDF_VIRT_RECORDS_MAGIC:
2971
2972 if (update->len != (sizeof(struct virtual_disk) +
2973 sizeof(struct virtual_entry)))
2974 return;
2975 vd = (struct virtual_disk*)update->buf;
2976
2977 ent = __be16_to_cpu(vd->populated_vdes);
2978 if (ent >= __be16_to_cpu(ddf->virt->max_vdes))
2979 return;
2980 if (!all_ff(ddf->virt->entries[ent].guid))
2981 return;
2982 ddf->virt->entries[ent] = vd->entries[0];
2983 ddf->virt->populated_vdes = __cpu_to_be16(1 +
2984 __be16_to_cpu(ddf->virt->populated_vdes));
2985 ddf->updates_pending = 1;
2986 break;
2987
2988 case DDF_VD_CONF_MAGIC:
2989 dprintf("len %d %d\n", update->len, ddf->conf_rec_len);
2990
2991 mppe = __be16_to_cpu(ddf->anchor.max_primary_element_entries);
2992 if (update->len != ddf->conf_rec_len * 512)
2993 return;
2994 vc = (struct vd_config*)update->buf;
2995 for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
2996 if (memcmp(vcl->conf.guid, vc->guid, DDF_GUID_LEN) == 0)
2997 break;
2998 dprintf("vcl = %p\n", vcl);
2999 if (vcl) {
3000 /* An update, just copy the phys_refnum and lba_offset
3001 * fields
3002 */
3003 memcpy(vcl->conf.phys_refnum, vc->phys_refnum,
3004 mppe * (sizeof(__u32) + sizeof(__u64)));
3005 } else {
3006 /* A new VD_CONF */
3007 vcl = update->space;
3008 update->space = NULL;
3009 vcl->next = ddf->conflist;
3010 memcpy(&vcl->conf, vc, update->len);
3011 vcl->lba_offset = (__u64*)
3012 &vcl->conf.phys_refnum[mppe];
3013 ddf->conflist = vcl;
3014 }
3015 /* Now make sure vlist is correct for each dl. */
3016 for (dl = ddf->dlist; dl; dl = dl->next) {
3017 int dn;
3018 int vn = 0;
3019 for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
3020 for (dn=0; dn < ddf->mppe ; dn++)
3021 if (vcl->conf.phys_refnum[dn] ==
3022 dl->disk.refnum) {
3023 dprintf("dev %d has %p at %d\n",
3024 dl->pdnum, vcl, vn);
3025 dl->vlist[vn++] = vcl;
3026 break;
3027 }
3028 while (vn < ddf->max_part)
3029 dl->vlist[vn++] = NULL;
3030 if (dl->vlist[0]) {
3031 ddf->phys->entries[dl->pdnum].type &=
3032 ~__cpu_to_be16(DDF_Global_Spare);
3033 ddf->phys->entries[dl->pdnum].type |=
3034 __cpu_to_be16(DDF_Active_in_VD);
3035 }
3036 if (dl->spare) {
3037 ddf->phys->entries[dl->pdnum].type &=
3038 ~__cpu_to_be16(DDF_Global_Spare);
3039 ddf->phys->entries[dl->pdnum].type |=
3040 __cpu_to_be16(DDF_Spare);
3041 }
3042 if (!dl->vlist[0] && !dl->spare) {
3043 ddf->phys->entries[dl->pdnum].type |=
3044 __cpu_to_be16(DDF_Global_Spare);
3045 ddf->phys->entries[dl->pdnum].type &=
3046 ~__cpu_to_be16(DDF_Spare |
3047 DDF_Active_in_VD);
3048 }
3049 }
3050 ddf->updates_pending = 1;
3051 break;
3052 case DDF_SPARE_ASSIGN_MAGIC:
3053 default: break;
3054 }
3055 }
3056
3057 static void ddf_prepare_update(struct supertype *st,
3058 struct metadata_update *update)
3059 {
3060 /* This update arrived at managemon.
3061 * We are about to pass it to monitor.
3062 * If a malloc is needed, do it here.
3063 */
3064 struct ddf_super *ddf = st->sb;
3065 __u32 *magic = (__u32*)update->buf;
3066 if (*magic == DDF_VD_CONF_MAGIC)
3067 posix_memalign(&update->space, 512,
3068 offsetof(struct vcl, conf)
3069 + ddf->conf_rec_len * 512);
3070 }
3071
3072 /*
3073 * Check if the array 'a' is degraded but not failed.
3074 * If it is, find as many spares as are available and needed and
3075 * arrange for their inclusion.
3076 * We only choose devices which are not already in the array,
3077 * and prefer those with a spare-assignment to this array.
3078 * otherwise we choose global spares - assuming always that
3079 * there is enough room.
3080 * For each spare that we assign, we return an 'mdinfo' which
3081 * describes the position for the device in the array.
3082 * We also add to 'updates' a DDF_VD_CONF_MAGIC update with
3083 * the new phys_refnum and lba_offset values.
3084 *
3085 * Only worry about BVDs at the moment.
3086 */
3087 static struct mdinfo *ddf_activate_spare(struct active_array *a,
3088 struct metadata_update **updates)
3089 {
3090 int working = 0;
3091 struct mdinfo *d;
3092 struct ddf_super *ddf = a->container->sb;
3093 int global_ok = 0;
3094 struct mdinfo *rv = NULL;
3095 struct mdinfo *di;
3096 struct metadata_update *mu;
3097 struct dl *dl;
3098 int i;
3099 struct vd_config *vc;
3100 __u64 *lba;
3101
3102 for (d = a->info.devs ; d ; d = d->next) {
3103 if ((d->curr_state & DS_FAULTY) &&
3104 d->state_fd >= 0)
3105 /* wait for Removal to happen */
3106 return NULL;
3107 if (d->state_fd >= 0)
3108 working ++;
3109 }
3110
3111 dprintf("ddf_activate: working=%d (%d) level=%d\n", working, a->info.array.raid_disks,
3112 a->info.array.level);
3113 if (working == a->info.array.raid_disks)
3114 return NULL; /* array not degraded */
3115 switch (a->info.array.level) {
3116 case 1:
3117 if (working == 0)
3118 return NULL; /* failed */
3119 break;
3120 case 4:
3121 case 5:
3122 if (working < a->info.array.raid_disks - 1)
3123 return NULL; /* failed */
3124 break;
3125 case 6:
3126 if (working < a->info.array.raid_disks - 2)
3127 return NULL; /* failed */
3128 break;
3129 default: /* concat or stripe */
3130 return NULL; /* failed */
3131 }
3132
3133 /* For each slot, if it is not working, find a spare */
3134 dl = ddf->dlist;
3135 for (i = 0; i < a->info.array.raid_disks; i++) {
3136 for (d = a->info.devs ; d ; d = d->next)
3137 if (d->disk.raid_disk == i)
3138 break;
3139 dprintf("found %d: %p %x\n", i, d, d?d->curr_state:0);
3140 if (d && (d->state_fd >= 0))
3141 continue;
3142
3143 /* OK, this device needs recovery. Find a spare */
3144 again:
3145 for ( ; dl ; dl = dl->next) {
3146 unsigned long long esize;
3147 unsigned long long pos;
3148 struct mdinfo *d2;
3149 int is_global = 0;
3150 int is_dedicated = 0;
3151 struct extent *ex;
3152 int j;
3153 /* If in this array, skip */
3154 for (d2 = a->info.devs ; d2 ; d2 = d2->next)
3155 if (d2->disk.major == dl->major &&
3156 d2->disk.minor == dl->minor) {
3157 dprintf("%x:%x already in array\n", dl->major, dl->minor);
3158 break;
3159 }
3160 if (d2)
3161 continue;
3162 if (ddf->phys->entries[dl->pdnum].type &
3163 __cpu_to_be16(DDF_Spare)) {
3164 /* Check spare assign record */
3165 if (dl->spare) {
3166 if (dl->spare->type & DDF_spare_dedicated) {
3167 /* check spare_ents for guid */
3168 for (j = 0 ;
3169 j < __be16_to_cpu(dl->spare->populated);
3170 j++) {
3171 if (memcmp(dl->spare->spare_ents[j].guid,
3172 ddf->virt->entries[a->info.container_member].guid,
3173 DDF_GUID_LEN) == 0)
3174 is_dedicated = 1;
3175 }
3176 } else
3177 is_global = 1;
3178 }
3179 } else if (ddf->phys->entries[dl->pdnum].type &
3180 __cpu_to_be16(DDF_Global_Spare)) {
3181 is_global = 1;
3182 }
3183 if ( ! (is_dedicated ||
3184 (is_global && global_ok))) {
3185 dprintf("%x:%x not suitable: %d %d\n", dl->major, dl->minor,
3186 is_dedicated, is_global);
3187 continue;
3188 }
3189
3190 /* We are allowed to use this device - is there space?
3191 * We need a->info.component_size sectors */
3192 ex = get_extents(ddf, dl);
3193 if (!ex) {
3194 dprintf("cannot get extents\n");
3195 continue;
3196 }
3197 j = 0; pos = 0;
3198 esize = 0;
3199
3200 do {
3201 esize = ex[j].start - pos;
3202 if (esize >= a->info.component_size)
3203 break;
3204 pos = ex[i].start + ex[i].size;
3205 i++;
3206 } while (ex[i-1].size);
3207
3208 free(ex);
3209 if (esize < a->info.component_size) {
3210 dprintf("%x:%x has no room: %llu %llu\n", dl->major, dl->minor,
3211 esize, a->info.component_size);
3212 /* No room */
3213 continue;
3214 }
3215
3216 /* Cool, we have a device with some space at pos */
3217 di = malloc(sizeof(*di));
3218 memset(di, 0, sizeof(*di));
3219 di->disk.number = i;
3220 di->disk.raid_disk = i;
3221 di->disk.major = dl->major;
3222 di->disk.minor = dl->minor;
3223 di->disk.state = 0;
3224 di->data_offset = pos;
3225 di->component_size = a->info.component_size;
3226 di->container_member = dl->pdnum;
3227 di->next = rv;
3228 rv = di;
3229 dprintf("%x:%x to be %d at %llu\n", dl->major, dl->minor,
3230 i, pos);
3231
3232 break;
3233 }
3234 if (!dl && ! global_ok) {
3235 /* not enough dedicated spares, try global */
3236 global_ok = 1;
3237 dl = ddf->dlist;
3238 goto again;
3239 }
3240 }
3241
3242 if (!rv)
3243 /* No spares found */
3244 return rv;
3245 /* Now 'rv' has a list of devices to return.
3246 * Create a metadata_update record to update the
3247 * phys_refnum and lba_offset values
3248 */
3249 mu = malloc(sizeof(*mu));
3250 mu->buf = malloc(ddf->conf_rec_len * 512);
3251 posix_memalign(&mu->space, 512, sizeof(struct vcl));
3252 mu->len = ddf->conf_rec_len;
3253 mu->next = *updates;
3254 vc = find_vdcr(ddf, a->info.container_member);
3255 memcpy(mu->buf, vc, ddf->conf_rec_len * 512);
3256
3257 vc = (struct vd_config*)mu->buf;
3258 lba = (__u64*)&vc->phys_refnum[ddf->mppe];
3259 for (di = rv ; di ; di = di->next) {
3260 vc->phys_refnum[di->disk.raid_disk] =
3261 ddf->phys->entries[dl->pdnum].refnum;
3262 lba[di->disk.raid_disk] = di->data_offset;
3263 }
3264 *updates = mu;
3265 return rv;
3266 }
3267 #endif /* MDASSEMBLE */
3268
3269 struct superswitch super_ddf = {
3270 #ifndef MDASSEMBLE
3271 .examine_super = examine_super_ddf,
3272 .brief_examine_super = brief_examine_super_ddf,
3273 .detail_super = detail_super_ddf,
3274 .brief_detail_super = brief_detail_super_ddf,
3275 .validate_geometry = validate_geometry_ddf,
3276 .write_init_super = write_init_super_ddf,
3277 .add_to_super = add_to_super_ddf,
3278 #endif
3279 .match_home = match_home_ddf,
3280 .uuid_from_super= uuid_from_super_ddf,
3281 .getinfo_super = getinfo_super_ddf,
3282 .update_super = update_super_ddf,
3283
3284 .avail_size = avail_size_ddf,
3285
3286 .compare_super = compare_super_ddf,
3287
3288 .load_super = load_super_ddf,
3289 .init_super = init_super_ddf,
3290 .store_super = store_zero_ddf,
3291 .free_super = free_super_ddf,
3292 .match_metadata_desc = match_metadata_desc_ddf,
3293 .container_content = container_content_ddf,
3294
3295 .external = 1,
3296
3297 #ifndef MDASSEMBLE
3298 /* for mdmon */
3299 .open_new = ddf_open_new,
3300 .set_array_state= ddf_set_array_state,
3301 .set_disk = ddf_set_disk,
3302 .sync_metadata = ddf_sync_metadata,
3303 .process_update = ddf_process_update,
3304 .prepare_update = ddf_prepare_update,
3305 .activate_spare = ddf_activate_spare,
3306 #endif
3307 };