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