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