]> git.ipfire.org Git - thirdparty/mdadm.git/blame - super-ddf.c
DDF: getinfo_super_ddf_bvd: lba_offset calculation for RAID10
[thirdparty/mdadm.git] / super-ddf.c
CommitLineData
a322f70c
DW
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
e736b623 4 * Copyright (C) 2006-2009 Neil Brown <neilb@suse.de>
a322f70c
DW
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
bedbf68a 47#define DDF_NOTFOUND (~0U)
48#define DDF_CONTAINER (DDF_NOTFOUND-1)
49
a322f70c
DW
50/* The DDF metadata handling.
51 * DDF metadata lives at the end of the device.
52 * The last 512 byte block provides an 'anchor' which is used to locate
53 * the rest of the metadata which usually lives immediately behind the anchor.
54 *
55 * Note:
56 * - all multibyte numeric fields are bigendian.
57 * - all strings are space padded.
58 *
59 */
60
61/* Primary Raid Level (PRL) */
62#define DDF_RAID0 0x00
63#define DDF_RAID1 0x01
64#define DDF_RAID3 0x03
65#define DDF_RAID4 0x04
66#define DDF_RAID5 0x05
67#define DDF_RAID1E 0x11
68#define DDF_JBOD 0x0f
69#define DDF_CONCAT 0x1f
70#define DDF_RAID5E 0x15
71#define DDF_RAID5EE 0x25
59e36268 72#define DDF_RAID6 0x06
a322f70c
DW
73
74/* Raid Level Qualifier (RLQ) */
75#define DDF_RAID0_SIMPLE 0x00
76#define DDF_RAID1_SIMPLE 0x00 /* just 2 devices in this plex */
77#define DDF_RAID1_MULTI 0x01 /* exactly 3 devices in this plex */
78#define DDF_RAID3_0 0x00 /* parity in first extent */
79#define DDF_RAID3_N 0x01 /* parity in last extent */
80#define DDF_RAID4_0 0x00 /* parity in first extent */
81#define DDF_RAID4_N 0x01 /* parity in last extent */
82/* these apply to raid5e and raid5ee as well */
83#define DDF_RAID5_0_RESTART 0x00 /* same as 'right asymmetric' - layout 1 */
59e36268 84#define DDF_RAID6_0_RESTART 0x01 /* raid6 different from raid5 here!!! */
a322f70c
DW
85#define DDF_RAID5_N_RESTART 0x02 /* same as 'left asymmetric' - layout 0 */
86#define DDF_RAID5_N_CONTINUE 0x03 /* same as 'left symmetric' - layout 2 */
87
88#define DDF_RAID1E_ADJACENT 0x00 /* raid10 nearcopies==2 */
89#define DDF_RAID1E_OFFSET 0x01 /* raid10 offsetcopies==2 */
90
91/* Secondary RAID Level (SRL) */
92#define DDF_2STRIPED 0x00 /* This is weirder than RAID0 !! */
93#define DDF_2MIRRORED 0x01
94#define DDF_2CONCAT 0x02
95#define DDF_2SPANNED 0x03 /* This is also weird - be careful */
96
97/* Magic numbers */
98#define DDF_HEADER_MAGIC __cpu_to_be32(0xDE11DE11)
99#define DDF_CONTROLLER_MAGIC __cpu_to_be32(0xAD111111)
100#define DDF_PHYS_RECORDS_MAGIC __cpu_to_be32(0x22222222)
101#define DDF_PHYS_DATA_MAGIC __cpu_to_be32(0x33333333)
102#define DDF_VIRT_RECORDS_MAGIC __cpu_to_be32(0xDDDDDDDD)
103#define DDF_VD_CONF_MAGIC __cpu_to_be32(0xEEEEEEEE)
104#define DDF_SPARE_ASSIGN_MAGIC __cpu_to_be32(0x55555555)
105#define DDF_VU_CONF_MAGIC __cpu_to_be32(0x88888888)
106#define DDF_VENDOR_LOG_MAGIC __cpu_to_be32(0x01dBEEF0)
107#define DDF_BBM_LOG_MAGIC __cpu_to_be32(0xABADB10C)
108
109#define DDF_GUID_LEN 24
59e36268
NB
110#define DDF_REVISION_0 "01.00.00"
111#define DDF_REVISION_2 "01.02.00"
a322f70c
DW
112
113struct ddf_header {
88c164f4 114 __u32 magic; /* DDF_HEADER_MAGIC */
a322f70c
DW
115 __u32 crc;
116 char guid[DDF_GUID_LEN];
59e36268 117 char revision[8]; /* 01.02.00 */
a322f70c
DW
118 __u32 seq; /* starts at '1' */
119 __u32 timestamp;
120 __u8 openflag;
121 __u8 foreignflag;
122 __u8 enforcegroups;
123 __u8 pad0; /* 0xff */
124 __u8 pad1[12]; /* 12 * 0xff */
125 /* 64 bytes so far */
126 __u8 header_ext[32]; /* reserved: fill with 0xff */
127 __u64 primary_lba;
128 __u64 secondary_lba;
129 __u8 type;
130 __u8 pad2[3]; /* 0xff */
131 __u32 workspace_len; /* sectors for vendor space -
132 * at least 32768(sectors) */
133 __u64 workspace_lba;
134 __u16 max_pd_entries; /* one of 15, 63, 255, 1023, 4095 */
135 __u16 max_vd_entries; /* 2^(4,6,8,10,12)-1 : i.e. as above */
136 __u16 max_partitions; /* i.e. max num of configuration
137 record entries per disk */
138 __u16 config_record_len; /* 1 +ROUNDUP(max_primary_element_entries
139 *12/512) */
140 __u16 max_primary_element_entries; /* 16, 64, 256, 1024, or 4096 */
141 __u8 pad3[54]; /* 0xff */
142 /* 192 bytes so far */
143 __u32 controller_section_offset;
144 __u32 controller_section_length;
145 __u32 phys_section_offset;
146 __u32 phys_section_length;
147 __u32 virt_section_offset;
148 __u32 virt_section_length;
149 __u32 config_section_offset;
150 __u32 config_section_length;
151 __u32 data_section_offset;
152 __u32 data_section_length;
153 __u32 bbm_section_offset;
154 __u32 bbm_section_length;
155 __u32 diag_space_offset;
156 __u32 diag_space_length;
157 __u32 vendor_offset;
158 __u32 vendor_length;
159 /* 256 bytes so far */
160 __u8 pad4[256]; /* 0xff */
161};
162
163/* type field */
164#define DDF_HEADER_ANCHOR 0x00
165#define DDF_HEADER_PRIMARY 0x01
166#define DDF_HEADER_SECONDARY 0x02
167
168/* The content of the 'controller section' - global scope */
169struct ddf_controller_data {
88c164f4 170 __u32 magic; /* DDF_CONTROLLER_MAGIC */
a322f70c
DW
171 __u32 crc;
172 char guid[DDF_GUID_LEN];
173 struct controller_type {
174 __u16 vendor_id;
175 __u16 device_id;
176 __u16 sub_vendor_id;
177 __u16 sub_device_id;
178 } type;
179 char product_id[16];
180 __u8 pad[8]; /* 0xff */
181 __u8 vendor_data[448];
182};
183
184/* The content of phys_section - global scope */
185struct phys_disk {
88c164f4 186 __u32 magic; /* DDF_PHYS_RECORDS_MAGIC */
a322f70c
DW
187 __u32 crc;
188 __u16 used_pdes;
189 __u16 max_pdes;
190 __u8 pad[52];
191 struct phys_disk_entry {
192 char guid[DDF_GUID_LEN];
193 __u32 refnum;
194 __u16 type;
195 __u16 state;
196 __u64 config_size; /* DDF structures must be after here */
197 char path[18]; /* another horrible structure really */
198 __u8 pad[6];
199 } entries[0];
200};
201
202/* phys_disk_entry.type is a bitmap - bigendian remember */
203#define DDF_Forced_PD_GUID 1
204#define DDF_Active_in_VD 2
88c164f4 205#define DDF_Global_Spare 4 /* VD_CONF records are ignored */
a322f70c
DW
206#define DDF_Spare 8 /* overrides Global_spare */
207#define DDF_Foreign 16
208#define DDF_Legacy 32 /* no DDF on this device */
209
210#define DDF_Interface_mask 0xf00
211#define DDF_Interface_SCSI 0x100
212#define DDF_Interface_SAS 0x200
213#define DDF_Interface_SATA 0x300
214#define DDF_Interface_FC 0x400
215
216/* phys_disk_entry.state is a bigendian bitmap */
217#define DDF_Online 1
218#define DDF_Failed 2 /* overrides 1,4,8 */
219#define DDF_Rebuilding 4
220#define DDF_Transition 8
221#define DDF_SMART 16
222#define DDF_ReadErrors 32
223#define DDF_Missing 64
224
225/* The content of the virt_section global scope */
226struct virtual_disk {
88c164f4 227 __u32 magic; /* DDF_VIRT_RECORDS_MAGIC */
a322f70c
DW
228 __u32 crc;
229 __u16 populated_vdes;
230 __u16 max_vdes;
231 __u8 pad[52];
232 struct virtual_entry {
233 char guid[DDF_GUID_LEN];
234 __u16 unit;
235 __u16 pad0; /* 0xffff */
236 __u16 guid_crc;
237 __u16 type;
238 __u8 state;
239 __u8 init_state;
240 __u8 pad1[14];
241 char name[16];
242 } entries[0];
243};
244
245/* virtual_entry.type is a bitmap - bigendian */
246#define DDF_Shared 1
247#define DDF_Enforce_Groups 2
248#define DDF_Unicode 4
249#define DDF_Owner_Valid 8
250
251/* virtual_entry.state is a bigendian bitmap */
252#define DDF_state_mask 0x7
253#define DDF_state_optimal 0x0
254#define DDF_state_degraded 0x1
255#define DDF_state_deleted 0x2
256#define DDF_state_missing 0x3
257#define DDF_state_failed 0x4
7a7cc504 258#define DDF_state_part_optimal 0x5
a322f70c
DW
259
260#define DDF_state_morphing 0x8
261#define DDF_state_inconsistent 0x10
262
263/* virtual_entry.init_state is a bigendian bitmap */
264#define DDF_initstate_mask 0x03
265#define DDF_init_not 0x00
7a7cc504
NB
266#define DDF_init_quick 0x01 /* initialisation is progress.
267 * i.e. 'state_inconsistent' */
a322f70c
DW
268#define DDF_init_full 0x02
269
270#define DDF_access_mask 0xc0
271#define DDF_access_rw 0x00
272#define DDF_access_ro 0x80
273#define DDF_access_blocked 0xc0
274
275/* The content of the config_section - local scope
276 * It has multiple records each config_record_len sectors
277 * They can be vd_config or spare_assign
278 */
279
280struct vd_config {
88c164f4 281 __u32 magic; /* DDF_VD_CONF_MAGIC */
a322f70c
DW
282 __u32 crc;
283 char guid[DDF_GUID_LEN];
284 __u32 timestamp;
285 __u32 seqnum;
286 __u8 pad0[24];
287 __u16 prim_elmnt_count;
288 __u8 chunk_shift; /* 0 == 512, 1==1024 etc */
289 __u8 prl;
290 __u8 rlq;
291 __u8 sec_elmnt_count;
292 __u8 sec_elmnt_seq;
293 __u8 srl;
598f0d58
NB
294 __u64 blocks; /* blocks per component could be different
295 * on different component devices...(only
296 * for concat I hope) */
297 __u64 array_blocks; /* blocks in array */
a322f70c
DW
298 __u8 pad1[8];
299 __u32 spare_refs[8];
300 __u8 cache_pol[8];
301 __u8 bg_rate;
302 __u8 pad2[3];
303 __u8 pad3[52];
304 __u8 pad4[192];
305 __u8 v0[32]; /* reserved- 0xff */
306 __u8 v1[32]; /* reserved- 0xff */
307 __u8 v2[16]; /* reserved- 0xff */
308 __u8 v3[16]; /* reserved- 0xff */
309 __u8 vendor[32];
310 __u32 phys_refnum[0]; /* refnum of each disk in sequence */
311 /*__u64 lba_offset[0]; LBA offset in each phys. Note extents in a
312 bvd are always the same size */
313};
57a66662 314#define LBA_OFFSET(ddf, vd) ((__u64 *) &(vd)->phys_refnum[(ddf)->mppe])
a322f70c
DW
315
316/* vd_config.cache_pol[7] is a bitmap */
317#define DDF_cache_writeback 1 /* else writethrough */
318#define DDF_cache_wadaptive 2 /* only applies if writeback */
319#define DDF_cache_readahead 4
320#define DDF_cache_radaptive 8 /* only if doing read-ahead */
321#define DDF_cache_ifnobatt 16 /* even to write cache if battery is poor */
322#define DDF_cache_wallowed 32 /* enable write caching */
323#define DDF_cache_rallowed 64 /* enable read caching */
324
325struct spare_assign {
88c164f4 326 __u32 magic; /* DDF_SPARE_ASSIGN_MAGIC */
a322f70c
DW
327 __u32 crc;
328 __u32 timestamp;
329 __u8 reserved[7];
330 __u8 type;
331 __u16 populated; /* SAEs used */
332 __u16 max; /* max SAEs */
333 __u8 pad[8];
334 struct spare_assign_entry {
335 char guid[DDF_GUID_LEN];
336 __u16 secondary_element;
337 __u8 pad[6];
338 } spare_ents[0];
339};
340/* spare_assign.type is a bitmap */
341#define DDF_spare_dedicated 0x1 /* else global */
342#define DDF_spare_revertible 0x2 /* else committable */
343#define DDF_spare_active 0x4 /* else not active */
344#define DDF_spare_affinity 0x8 /* enclosure affinity */
345
346/* The data_section contents - local scope */
347struct disk_data {
88c164f4 348 __u32 magic; /* DDF_PHYS_DATA_MAGIC */
a322f70c
DW
349 __u32 crc;
350 char guid[DDF_GUID_LEN];
351 __u32 refnum; /* crc of some magic drive data ... */
352 __u8 forced_ref; /* set when above was not result of magic */
353 __u8 forced_guid; /* set if guid was forced rather than magic */
354 __u8 vendor[32];
355 __u8 pad[442];
356};
357
358/* bbm_section content */
359struct bad_block_log {
360 __u32 magic;
361 __u32 crc;
362 __u16 entry_count;
363 __u32 spare_count;
364 __u8 pad[10];
365 __u64 first_spare;
366 struct mapped_block {
367 __u64 defective_start;
368 __u32 replacement_start;
369 __u16 remap_count;
370 __u8 pad[2];
371 } entries[0];
372};
373
374/* Struct for internally holding ddf structures */
375/* The DDF structure stored on each device is potentially
376 * quite different, as some data is global and some is local.
377 * The global data is:
378 * - ddf header
379 * - controller_data
380 * - Physical disk records
381 * - Virtual disk records
382 * The local data is:
383 * - Configuration records
384 * - Physical Disk data section
385 * ( and Bad block and vendor which I don't care about yet).
386 *
387 * The local data is parsed into separate lists as it is read
388 * and reconstructed for writing. This means that we only need
389 * to make config changes once and they are automatically
390 * propagated to all devices.
391 * Note that the ddf_super has space of the conf and disk data
392 * for this disk and also for a list of all such data.
393 * The list is only used for the superblock that is being
394 * built in Create or Assemble to describe the whole array.
395 */
396struct ddf_super {
6416d527 397 struct ddf_header anchor, primary, secondary;
a322f70c 398 struct ddf_controller_data controller;
6416d527 399 struct ddf_header *active;
a322f70c
DW
400 struct phys_disk *phys;
401 struct virtual_disk *virt;
402 int pdsize, vdsize;
f21e18ca 403 unsigned int max_part, mppe, conf_rec_len;
d2ca6449 404 int currentdev;
18a2f463 405 int updates_pending;
a322f70c 406 struct vcl {
6416d527
NB
407 union {
408 char space[512];
409 struct {
410 struct vcl *next;
f21e18ca 411 unsigned int vcnum; /* index into ->virt */
8ec5d685 412 struct vd_config **other_bvds;
6416d527
NB
413 __u64 *block_sizes; /* NULL if all the same */
414 };
415 };
a322f70c 416 struct vd_config conf;
d2ca6449 417 } *conflist, *currentconf;
a322f70c 418 struct dl {
6416d527
NB
419 union {
420 char space[512];
421 struct {
422 struct dl *next;
423 int major, minor;
424 char *devname;
425 int fd;
426 unsigned long long size; /* sectors */
097bcf00 427 unsigned long long primary_lba; /* sectors */
428 unsigned long long secondary_lba; /* sectors */
429 unsigned long long workspace_lba; /* sectors */
6416d527
NB
430 int pdnum; /* index in ->phys */
431 struct spare_assign *spare;
8592f29d
N
432 void *mdupdate; /* hold metadata update */
433
434 /* These fields used by auto-layout */
435 int raiddisk; /* slot to fill in autolayout */
436 __u64 esize;
6416d527
NB
437 };
438 };
a322f70c 439 struct disk_data disk;
b2280677 440 struct vcl *vlist[0]; /* max_part in size */
2cc2983d 441 } *dlist, *add_list;
a322f70c
DW
442};
443
444#ifndef offsetof
445#define offsetof(t,f) ((size_t)&(((t*)0)->f))
446#endif
447
7d5a7ff3 448#if DEBUG
fb9d0acb 449static int all_ff(const char *guid);
7d5a7ff3 450static void pr_state(struct ddf_super *ddf, const char *msg)
451{
452 unsigned int i;
453 dprintf("%s/%s: ", __func__, msg);
454 for (i = 0; i < __be16_to_cpu(ddf->active->max_vd_entries); i++) {
455 if (all_ff(ddf->virt->entries[i].guid))
456 continue;
457 dprintf("%u(s=%02x i=%02x) ", i,
458 ddf->virt->entries[i].state,
459 ddf->virt->entries[i].init_state);
460 }
461 dprintf("\n");
462}
463#else
464static void pr_state(const struct ddf_super *ddf, const char *msg) {}
465#endif
466
467#define ddf_set_updates_pending(x) \
468 do { (x)->updates_pending = 1; pr_state(x, __func__); } while (0)
469
fcc22180 470static unsigned int get_pd_index_from_refnum(const struct vcl *vc,
471 __u32 refnum, unsigned int nmax,
472 const struct vd_config **bvd,
473 unsigned int *idx);
474
f21e18ca 475static unsigned int calc_crc(void *buf, int len)
a322f70c
DW
476{
477 /* crcs are always at the same place as in the ddf_header */
478 struct ddf_header *ddf = buf;
479 __u32 oldcrc = ddf->crc;
480 __u32 newcrc;
481 ddf->crc = 0xffffffff;
482
483 newcrc = crc32(0, buf, len);
484 ddf->crc = oldcrc;
4abe6b70
N
485 /* The crc is store (like everything) bigendian, so convert
486 * here for simplicity
487 */
488 return __cpu_to_be32(newcrc);
a322f70c
DW
489}
490
a3163bf0 491#define DDF_INVALID_LEVEL 0xff
492#define DDF_NO_SECONDARY 0xff
493static int err_bad_md_layout(const mdu_array_info_t *array)
494{
495 pr_err("RAID%d layout %x with %d disks is unsupported for DDF\n",
496 array->level, array->layout, array->raid_disks);
497 return DDF_INVALID_LEVEL;
498}
499
500static int layout_md2ddf(const mdu_array_info_t *array,
501 struct vd_config *conf)
502{
503 __u16 prim_elmnt_count = __cpu_to_be16(array->raid_disks);
504 __u8 prl = DDF_INVALID_LEVEL, rlq = 0;
505 __u8 sec_elmnt_count = 1;
506 __u8 srl = DDF_NO_SECONDARY;
507
508 switch (array->level) {
509 case LEVEL_LINEAR:
510 prl = DDF_CONCAT;
511 break;
512 case 0:
513 rlq = DDF_RAID0_SIMPLE;
514 prl = DDF_RAID0;
515 break;
516 case 1:
517 switch (array->raid_disks) {
518 case 2:
519 rlq = DDF_RAID1_SIMPLE;
520 break;
521 case 3:
522 rlq = DDF_RAID1_MULTI;
523 break;
524 default:
525 return err_bad_md_layout(array);
526 }
527 prl = DDF_RAID1;
528 break;
529 case 4:
530 if (array->layout != 0)
531 return err_bad_md_layout(array);
532 rlq = DDF_RAID4_N;
533 prl = DDF_RAID4;
534 break;
535 case 5:
536 switch (array->layout) {
537 case ALGORITHM_LEFT_ASYMMETRIC:
538 rlq = DDF_RAID5_N_RESTART;
539 break;
540 case ALGORITHM_RIGHT_ASYMMETRIC:
541 rlq = DDF_RAID5_0_RESTART;
542 break;
543 case ALGORITHM_LEFT_SYMMETRIC:
544 rlq = DDF_RAID5_N_CONTINUE;
545 break;
546 case ALGORITHM_RIGHT_SYMMETRIC:
547 /* not mentioned in standard */
548 default:
549 return err_bad_md_layout(array);
550 }
551 prl = DDF_RAID5;
552 break;
553 case 6:
554 switch (array->layout) {
555 case ALGORITHM_ROTATING_N_RESTART:
556 rlq = DDF_RAID5_N_RESTART;
557 break;
558 case ALGORITHM_ROTATING_ZERO_RESTART:
559 rlq = DDF_RAID6_0_RESTART;
560 break;
561 case ALGORITHM_ROTATING_N_CONTINUE:
562 rlq = DDF_RAID5_N_CONTINUE;
563 break;
564 default:
565 return err_bad_md_layout(array);
566 }
567 prl = DDF_RAID6;
568 break;
569 case 10:
570 if (array->raid_disks % 2 == 0 && array->layout == 0x102) {
571 rlq = DDF_RAID1_SIMPLE;
572 prim_elmnt_count = __cpu_to_be16(2);
573 sec_elmnt_count = array->raid_disks / 2;
574 } else if (array->raid_disks % 3 == 0
575 && array->layout == 0x103) {
576 rlq = DDF_RAID1_MULTI;
577 prim_elmnt_count = __cpu_to_be16(3);
578 sec_elmnt_count = array->raid_disks / 3;
579 } else
580 return err_bad_md_layout(array);
581 srl = DDF_2SPANNED;
582 prl = DDF_RAID1;
583 break;
584 default:
585 return err_bad_md_layout(array);
586 }
587 conf->prl = prl;
588 conf->prim_elmnt_count = prim_elmnt_count;
589 conf->rlq = rlq;
590 conf->srl = srl;
591 conf->sec_elmnt_count = sec_elmnt_count;
592 return 0;
593}
594
8a2848a7 595static int err_bad_ddf_layout(const struct vd_config *conf)
596{
597 pr_err("DDF RAID %u qualifier %u with %u disks is unsupported\n",
598 conf->prl, conf->rlq, __be16_to_cpu(conf->prim_elmnt_count));
599 return -1;
600}
601
602static int layout_ddf2md(const struct vd_config *conf,
603 mdu_array_info_t *array)
604{
605 int level = LEVEL_UNSUPPORTED;
606 int layout = 0;
607 int raiddisks = __be16_to_cpu(conf->prim_elmnt_count);
608
609 if (conf->sec_elmnt_count > 1) {
610 /* see also check_secondary() */
611 if (conf->prl != DDF_RAID1 ||
612 (conf->srl != DDF_2STRIPED && conf->srl != DDF_2SPANNED)) {
613 pr_err("Unsupported secondary RAID level %u/%u\n",
614 conf->prl, conf->srl);
615 return -1;
616 }
617 if (raiddisks == 2 && conf->rlq == DDF_RAID1_SIMPLE)
618 layout = 0x102;
619 else if (raiddisks == 3 && conf->rlq == DDF_RAID1_MULTI)
620 layout = 0x103;
621 else
622 return err_bad_ddf_layout(conf);
623 raiddisks *= conf->sec_elmnt_count;
624 level = 10;
625 goto good;
626 }
627
628 switch (conf->prl) {
629 case DDF_CONCAT:
630 level = LEVEL_LINEAR;
631 break;
632 case DDF_RAID0:
633 if (conf->rlq != DDF_RAID0_SIMPLE)
634 return err_bad_ddf_layout(conf);
635 level = 0;
636 break;
637 case DDF_RAID1:
638 if (!((conf->rlq == DDF_RAID1_SIMPLE && raiddisks == 2) ||
639 (conf->rlq == DDF_RAID1_MULTI && raiddisks == 3)))
640 return err_bad_ddf_layout(conf);
641 level = 1;
642 break;
643 case DDF_RAID4:
644 if (conf->rlq != DDF_RAID4_N)
645 return err_bad_ddf_layout(conf);
646 level = 4;
647 break;
648 case DDF_RAID5:
649 switch (conf->rlq) {
650 case DDF_RAID5_N_RESTART:
651 layout = ALGORITHM_LEFT_ASYMMETRIC;
652 break;
653 case DDF_RAID5_0_RESTART:
654 layout = ALGORITHM_RIGHT_ASYMMETRIC;
655 break;
656 case DDF_RAID5_N_CONTINUE:
657 layout = ALGORITHM_LEFT_SYMMETRIC;
658 break;
659 default:
660 return err_bad_ddf_layout(conf);
661 }
662 level = 5;
663 break;
664 case DDF_RAID6:
665 switch (conf->rlq) {
666 case DDF_RAID5_N_RESTART:
667 layout = ALGORITHM_ROTATING_N_RESTART;
668 break;
669 case DDF_RAID6_0_RESTART:
670 layout = ALGORITHM_ROTATING_ZERO_RESTART;
671 break;
672 case DDF_RAID5_N_CONTINUE:
673 layout = ALGORITHM_ROTATING_N_CONTINUE;
674 break;
675 default:
676 return err_bad_ddf_layout(conf);
677 }
678 level = 6;
679 break;
680 default:
681 return err_bad_ddf_layout(conf);
682 };
683
684good:
685 array->level = level;
686 array->layout = layout;
687 array->raid_disks = raiddisks;
688 return 0;
689}
690
a322f70c
DW
691static int load_ddf_header(int fd, unsigned long long lba,
692 unsigned long long size,
693 int type,
694 struct ddf_header *hdr, struct ddf_header *anchor)
695{
696 /* read a ddf header (primary or secondary) from fd/lba
697 * and check that it is consistent with anchor
698 * Need to check:
699 * magic, crc, guid, rev, and LBA's header_type, and
700 * everything after header_type must be the same
701 */
702 if (lba >= size-1)
703 return 0;
704
705 if (lseek64(fd, lba<<9, 0) < 0)
706 return 0;
707
708 if (read(fd, hdr, 512) != 512)
709 return 0;
710
711 if (hdr->magic != DDF_HEADER_MAGIC)
712 return 0;
713 if (calc_crc(hdr, 512) != hdr->crc)
714 return 0;
715 if (memcmp(anchor->guid, hdr->guid, DDF_GUID_LEN) != 0 ||
716 memcmp(anchor->revision, hdr->revision, 8) != 0 ||
717 anchor->primary_lba != hdr->primary_lba ||
718 anchor->secondary_lba != hdr->secondary_lba ||
719 hdr->type != type ||
720 memcmp(anchor->pad2, hdr->pad2, 512 -
721 offsetof(struct ddf_header, pad2)) != 0)
722 return 0;
723
724 /* Looks good enough to me... */
725 return 1;
726}
727
728static void *load_section(int fd, struct ddf_super *super, void *buf,
729 __u32 offset_be, __u32 len_be, int check)
730{
731 unsigned long long offset = __be32_to_cpu(offset_be);
732 unsigned long long len = __be32_to_cpu(len_be);
733 int dofree = (buf == NULL);
734
735 if (check)
736 if (len != 2 && len != 8 && len != 32
737 && len != 128 && len != 512)
738 return NULL;
739
740 if (len > 1024)
741 return NULL;
742 if (buf) {
743 /* All pre-allocated sections are a single block */
744 if (len != 1)
745 return NULL;
3d2c4fc7
DW
746 } else if (posix_memalign(&buf, 512, len<<9) != 0)
747 buf = NULL;
6416d527 748
a322f70c
DW
749 if (!buf)
750 return NULL;
751
752 if (super->active->type == 1)
753 offset += __be64_to_cpu(super->active->primary_lba);
754 else
755 offset += __be64_to_cpu(super->active->secondary_lba);
756
f21e18ca 757 if ((unsigned long long)lseek64(fd, offset<<9, 0) != (offset<<9)) {
a322f70c
DW
758 if (dofree)
759 free(buf);
760 return NULL;
761 }
f21e18ca 762 if ((unsigned long long)read(fd, buf, len<<9) != (len<<9)) {
a322f70c
DW
763 if (dofree)
764 free(buf);
765 return NULL;
766 }
767 return buf;
768}
769
770static int load_ddf_headers(int fd, struct ddf_super *super, char *devname)
771{
772 unsigned long long dsize;
773
774 get_dev_size(fd, NULL, &dsize);
775
776 if (lseek64(fd, dsize-512, 0) < 0) {
777 if (devname)
e7b84f9d
N
778 pr_err("Cannot seek to anchor block on %s: %s\n",
779 devname, strerror(errno));
a322f70c
DW
780 return 1;
781 }
782 if (read(fd, &super->anchor, 512) != 512) {
783 if (devname)
e7b84f9d
N
784 pr_err("Cannot read anchor block on %s: %s\n",
785 devname, strerror(errno));
a322f70c
DW
786 return 1;
787 }
788 if (super->anchor.magic != DDF_HEADER_MAGIC) {
789 if (devname)
e7b84f9d 790 pr_err("no DDF anchor found on %s\n",
a322f70c
DW
791 devname);
792 return 2;
793 }
794 if (calc_crc(&super->anchor, 512) != super->anchor.crc) {
795 if (devname)
e7b84f9d 796 pr_err("bad CRC on anchor on %s\n",
a322f70c
DW
797 devname);
798 return 2;
799 }
59e36268
NB
800 if (memcmp(super->anchor.revision, DDF_REVISION_0, 8) != 0 &&
801 memcmp(super->anchor.revision, DDF_REVISION_2, 8) != 0) {
a322f70c 802 if (devname)
e7b84f9d 803 pr_err("can only support super revision"
59e36268
NB
804 " %.8s and earlier, not %.8s on %s\n",
805 DDF_REVISION_2, super->anchor.revision,devname);
a322f70c
DW
806 return 2;
807 }
dbeb699a 808 super->active = NULL;
a322f70c
DW
809 if (load_ddf_header(fd, __be64_to_cpu(super->anchor.primary_lba),
810 dsize >> 9, 1,
811 &super->primary, &super->anchor) == 0) {
812 if (devname)
e7b84f9d
N
813 pr_err("Failed to load primary DDF header "
814 "on %s\n", devname);
dbeb699a 815 } else
816 super->active = &super->primary;
a322f70c
DW
817 if (load_ddf_header(fd, __be64_to_cpu(super->anchor.secondary_lba),
818 dsize >> 9, 2,
819 &super->secondary, &super->anchor)) {
820 if ((__be32_to_cpu(super->primary.seq)
821 < __be32_to_cpu(super->secondary.seq) &&
822 !super->secondary.openflag)
823 || (__be32_to_cpu(super->primary.seq)
824 == __be32_to_cpu(super->secondary.seq) &&
825 super->primary.openflag && !super->secondary.openflag)
dbeb699a 826 || super->active == NULL
a322f70c
DW
827 )
828 super->active = &super->secondary;
dbeb699a 829 } else if (devname)
830 pr_err("Failed to load secondary DDF header on %s\n",
831 devname);
832 if (super->active == NULL)
833 return 2;
a322f70c
DW
834 return 0;
835}
836
837static int load_ddf_global(int fd, struct ddf_super *super, char *devname)
838{
839 void *ok;
840 ok = load_section(fd, super, &super->controller,
841 super->active->controller_section_offset,
842 super->active->controller_section_length,
843 0);
844 super->phys = load_section(fd, super, NULL,
845 super->active->phys_section_offset,
846 super->active->phys_section_length,
847 1);
848 super->pdsize = __be32_to_cpu(super->active->phys_section_length) * 512;
849
850 super->virt = load_section(fd, super, NULL,
851 super->active->virt_section_offset,
852 super->active->virt_section_length,
853 1);
854 super->vdsize = __be32_to_cpu(super->active->virt_section_length) * 512;
855 if (!ok ||
856 !super->phys ||
857 !super->virt) {
858 free(super->phys);
859 free(super->virt);
a2349791
NB
860 super->phys = NULL;
861 super->virt = NULL;
a322f70c
DW
862 return 2;
863 }
864 super->conflist = NULL;
865 super->dlist = NULL;
8c3b8c2c
NB
866
867 super->max_part = __be16_to_cpu(super->active->max_partitions);
868 super->mppe = __be16_to_cpu(super->active->max_primary_element_entries);
869 super->conf_rec_len = __be16_to_cpu(super->active->config_record_len);
a322f70c
DW
870 return 0;
871}
872
3c48f7be 873#define DDF_UNUSED_BVD 0xff
874static int alloc_other_bvds(const struct ddf_super *ddf, struct vcl *vcl)
875{
876 unsigned int n_vds = vcl->conf.sec_elmnt_count - 1;
877 unsigned int i, vdsize;
878 void *p;
879 if (n_vds == 0) {
880 vcl->other_bvds = NULL;
881 return 0;
882 }
883 vdsize = ddf->conf_rec_len * 512;
884 if (posix_memalign(&p, 512, n_vds *
885 (vdsize + sizeof(struct vd_config *))) != 0)
886 return -1;
887 vcl->other_bvds = (struct vd_config **) (p + n_vds * vdsize);
888 for (i = 0; i < n_vds; i++) {
889 vcl->other_bvds[i] = p + i * vdsize;
890 memset(vcl->other_bvds[i], 0, vdsize);
891 vcl->other_bvds[i]->sec_elmnt_seq = DDF_UNUSED_BVD;
892 }
893 return 0;
894}
895
3dc821b0 896static void add_other_bvd(struct vcl *vcl, struct vd_config *vd,
897 unsigned int len)
898{
899 int i;
900 for (i = 0; i < vcl->conf.sec_elmnt_count-1; i++)
3c48f7be 901 if (vcl->other_bvds[i]->sec_elmnt_seq == vd->sec_elmnt_seq)
3dc821b0 902 break;
903
904 if (i < vcl->conf.sec_elmnt_count-1) {
905 if (vd->seqnum <= vcl->other_bvds[i]->seqnum)
906 return;
907 } else {
908 for (i = 0; i < vcl->conf.sec_elmnt_count-1; i++)
3c48f7be 909 if (vcl->other_bvds[i]->sec_elmnt_seq == DDF_UNUSED_BVD)
3dc821b0 910 break;
911 if (i == vcl->conf.sec_elmnt_count-1) {
912 pr_err("no space for sec level config %u, count is %u\n",
913 vd->sec_elmnt_seq, vcl->conf.sec_elmnt_count);
914 return;
915 }
3dc821b0 916 }
917 memcpy(vcl->other_bvds[i], vd, len);
918}
919
a322f70c
DW
920static int load_ddf_local(int fd, struct ddf_super *super,
921 char *devname, int keep)
922{
923 struct dl *dl;
924 struct stat stb;
925 char *conf;
f21e18ca
N
926 unsigned int i;
927 unsigned int confsec;
b2280677 928 int vnum;
f21e18ca 929 unsigned int max_virt_disks = __be16_to_cpu(super->active->max_vd_entries);
d2ca6449 930 unsigned long long dsize;
a322f70c
DW
931
932 /* First the local disk info */
3d2c4fc7 933 if (posix_memalign((void**)&dl, 512,
6416d527 934 sizeof(*dl) +
3d2c4fc7 935 (super->max_part) * sizeof(dl->vlist[0])) != 0) {
e7b84f9d 936 pr_err("%s could not allocate disk info buffer\n",
3d2c4fc7
DW
937 __func__);
938 return 1;
939 }
a322f70c
DW
940
941 load_section(fd, super, &dl->disk,
942 super->active->data_section_offset,
943 super->active->data_section_length,
944 0);
503975b9 945 dl->devname = devname ? xstrdup(devname) : NULL;
598f0d58 946
a322f70c
DW
947 fstat(fd, &stb);
948 dl->major = major(stb.st_rdev);
949 dl->minor = minor(stb.st_rdev);
950 dl->next = super->dlist;
951 dl->fd = keep ? fd : -1;
d2ca6449
NB
952
953 dl->size = 0;
954 if (get_dev_size(fd, devname, &dsize))
955 dl->size = dsize >> 9;
097bcf00 956 /* If the disks have different sizes, the LBAs will differ
957 * between phys disks.
958 * At this point here, the values in super->active must be valid
959 * for this phys disk. */
960 dl->primary_lba = super->active->primary_lba;
961 dl->secondary_lba = super->active->secondary_lba;
962 dl->workspace_lba = super->active->workspace_lba;
b2280677 963 dl->spare = NULL;
f21e18ca 964 for (i = 0 ; i < super->max_part ; i++)
a322f70c
DW
965 dl->vlist[i] = NULL;
966 super->dlist = dl;
59e36268 967 dl->pdnum = -1;
f21e18ca 968 for (i = 0; i < __be16_to_cpu(super->active->max_pd_entries); i++)
5575e7d9
NB
969 if (memcmp(super->phys->entries[i].guid,
970 dl->disk.guid, DDF_GUID_LEN) == 0)
971 dl->pdnum = i;
972
a322f70c
DW
973 /* Now the config list. */
974 /* 'conf' is an array of config entries, some of which are
975 * probably invalid. Those which are good need to be copied into
976 * the conflist
977 */
a322f70c
DW
978
979 conf = load_section(fd, super, NULL,
980 super->active->config_section_offset,
981 super->active->config_section_length,
982 0);
983
b2280677 984 vnum = 0;
e223334f
N
985 for (confsec = 0;
986 confsec < __be32_to_cpu(super->active->config_section_length);
987 confsec += super->conf_rec_len) {
a322f70c 988 struct vd_config *vd =
e223334f 989 (struct vd_config *)((char*)conf + confsec*512);
a322f70c
DW
990 struct vcl *vcl;
991
b2280677
NB
992 if (vd->magic == DDF_SPARE_ASSIGN_MAGIC) {
993 if (dl->spare)
994 continue;
3d2c4fc7
DW
995 if (posix_memalign((void**)&dl->spare, 512,
996 super->conf_rec_len*512) != 0) {
e7b84f9d
N
997 pr_err("%s could not allocate spare info buf\n",
998 __func__);
3d2c4fc7
DW
999 return 1;
1000 }
613b0d17 1001
b2280677
NB
1002 memcpy(dl->spare, vd, super->conf_rec_len*512);
1003 continue;
1004 }
a322f70c
DW
1005 if (vd->magic != DDF_VD_CONF_MAGIC)
1006 continue;
1007 for (vcl = super->conflist; vcl; vcl = vcl->next) {
1008 if (memcmp(vcl->conf.guid,
1009 vd->guid, DDF_GUID_LEN) == 0)
1010 break;
1011 }
1012
1013 if (vcl) {
b2280677 1014 dl->vlist[vnum++] = vcl;
3dc821b0 1015 if (vcl->other_bvds != NULL &&
1016 vcl->conf.sec_elmnt_seq != vd->sec_elmnt_seq) {
1017 add_other_bvd(vcl, vd, super->conf_rec_len*512);
1018 continue;
1019 }
a322f70c
DW
1020 if (__be32_to_cpu(vd->seqnum) <=
1021 __be32_to_cpu(vcl->conf.seqnum))
1022 continue;
59e36268 1023 } else {
3d2c4fc7 1024 if (posix_memalign((void**)&vcl, 512,
6416d527 1025 (super->conf_rec_len*512 +
3d2c4fc7 1026 offsetof(struct vcl, conf))) != 0) {
e7b84f9d
N
1027 pr_err("%s could not allocate vcl buf\n",
1028 __func__);
3d2c4fc7
DW
1029 return 1;
1030 }
a322f70c 1031 vcl->next = super->conflist;
59e36268 1032 vcl->block_sizes = NULL; /* FIXME not for CONCAT */
3c48f7be 1033 vcl->conf.sec_elmnt_count = vd->sec_elmnt_count;
1034 if (alloc_other_bvds(super, vcl) != 0) {
1035 pr_err("%s could not allocate other bvds\n",
1036 __func__);
1037 free(vcl);
1038 return 1;
1039 };
a322f70c 1040 super->conflist = vcl;
b2280677 1041 dl->vlist[vnum++] = vcl;
a322f70c 1042 }
8c3b8c2c 1043 memcpy(&vcl->conf, vd, super->conf_rec_len*512);
59e36268
NB
1044 for (i=0; i < max_virt_disks ; i++)
1045 if (memcmp(super->virt->entries[i].guid,
1046 vcl->conf.guid, DDF_GUID_LEN)==0)
1047 break;
1048 if (i < max_virt_disks)
1049 vcl->vcnum = i;
a322f70c
DW
1050 }
1051 free(conf);
1052
1053 return 0;
1054}
1055
1056#ifndef MDASSEMBLE
1057static int load_super_ddf_all(struct supertype *st, int fd,
e1902a7b 1058 void **sbp, char *devname);
a322f70c 1059#endif
37424f13
DW
1060
1061static void free_super_ddf(struct supertype *st);
1062
a322f70c
DW
1063static int load_super_ddf(struct supertype *st, int fd,
1064 char *devname)
1065{
1066 unsigned long long dsize;
1067 struct ddf_super *super;
1068 int rv;
1069
a322f70c
DW
1070 if (get_dev_size(fd, devname, &dsize) == 0)
1071 return 1;
1072
b31df436 1073 if (!st->ignore_hw_compat && test_partition(fd))
691c6ee1
N
1074 /* DDF is not allowed on partitions */
1075 return 1;
1076
a322f70c
DW
1077 /* 32M is a lower bound */
1078 if (dsize <= 32*1024*1024) {
97320d7c 1079 if (devname)
e7b84f9d
N
1080 pr_err("%s is too small for ddf: "
1081 "size is %llu sectors.\n",
1082 devname, dsize>>9);
97320d7c 1083 return 1;
a322f70c
DW
1084 }
1085 if (dsize & 511) {
97320d7c 1086 if (devname)
e7b84f9d
N
1087 pr_err("%s is an odd size for ddf: "
1088 "size is %llu bytes.\n",
1089 devname, dsize);
97320d7c 1090 return 1;
a322f70c
DW
1091 }
1092
37424f13
DW
1093 free_super_ddf(st);
1094
6416d527 1095 if (posix_memalign((void**)&super, 512, sizeof(*super))!= 0) {
e7b84f9d 1096 pr_err("malloc of %zu failed.\n",
a322f70c
DW
1097 sizeof(*super));
1098 return 1;
1099 }
a2349791 1100 memset(super, 0, sizeof(*super));
a322f70c
DW
1101
1102 rv = load_ddf_headers(fd, super, devname);
1103 if (rv) {
1104 free(super);
1105 return rv;
1106 }
1107
1108 /* Have valid headers and have chosen the best. Let's read in the rest*/
1109
1110 rv = load_ddf_global(fd, super, devname);
1111
1112 if (rv) {
1113 if (devname)
e7b84f9d
N
1114 pr_err("Failed to load all information "
1115 "sections on %s\n", devname);
a322f70c
DW
1116 free(super);
1117 return rv;
1118 }
1119
3d2c4fc7
DW
1120 rv = load_ddf_local(fd, super, devname, 0);
1121
1122 if (rv) {
1123 if (devname)
e7b84f9d
N
1124 pr_err("Failed to load all information "
1125 "sections on %s\n", devname);
3d2c4fc7
DW
1126 free(super);
1127 return rv;
1128 }
a322f70c
DW
1129
1130 /* Should possibly check the sections .... */
1131
1132 st->sb = super;
1133 if (st->ss == NULL) {
1134 st->ss = &super_ddf;
1135 st->minor_version = 0;
1136 st->max_devs = 512;
1137 }
1138 return 0;
1139
1140}
1141
1142static void free_super_ddf(struct supertype *st)
1143{
1144 struct ddf_super *ddf = st->sb;
1145 if (ddf == NULL)
1146 return;
1147 free(ddf->phys);
1148 free(ddf->virt);
1149 while (ddf->conflist) {
1150 struct vcl *v = ddf->conflist;
1151 ddf->conflist = v->next;
59e36268
NB
1152 if (v->block_sizes)
1153 free(v->block_sizes);
3c48f7be 1154 if (v->other_bvds)
1155 /*
1156 v->other_bvds[0] points to beginning of buffer,
1157 see alloc_other_bvds()
1158 */
1159 free(v->other_bvds[0]);
a322f70c
DW
1160 free(v);
1161 }
1162 while (ddf->dlist) {
1163 struct dl *d = ddf->dlist;
1164 ddf->dlist = d->next;
1165 if (d->fd >= 0)
1166 close(d->fd);
b2280677
NB
1167 if (d->spare)
1168 free(d->spare);
a322f70c
DW
1169 free(d);
1170 }
8a38cb04
N
1171 while (ddf->add_list) {
1172 struct dl *d = ddf->add_list;
1173 ddf->add_list = d->next;
1174 if (d->fd >= 0)
1175 close(d->fd);
1176 if (d->spare)
1177 free(d->spare);
1178 free(d);
1179 }
a322f70c
DW
1180 free(ddf);
1181 st->sb = NULL;
1182}
1183
1184static struct supertype *match_metadata_desc_ddf(char *arg)
1185{
1186 /* 'ddf' only support containers */
1187 struct supertype *st;
1188 if (strcmp(arg, "ddf") != 0 &&
1189 strcmp(arg, "default") != 0
1190 )
1191 return NULL;
1192
503975b9 1193 st = xcalloc(1, sizeof(*st));
a322f70c
DW
1194 st->ss = &super_ddf;
1195 st->max_devs = 512;
1196 st->minor_version = 0;
1197 st->sb = NULL;
1198 return st;
1199}
1200
a322f70c
DW
1201#ifndef MDASSEMBLE
1202
1203static mapping_t ddf_state[] = {
1204 { "Optimal", 0},
1205 { "Degraded", 1},
1206 { "Deleted", 2},
1207 { "Missing", 3},
1208 { "Failed", 4},
1209 { "Partially Optimal", 5},
1210 { "-reserved-", 6},
1211 { "-reserved-", 7},
1212 { NULL, 0}
1213};
1214
1215static mapping_t ddf_init_state[] = {
1216 { "Not Initialised", 0},
1217 { "QuickInit in Progress", 1},
1218 { "Fully Initialised", 2},
1219 { "*UNKNOWN*", 3},
1220 { NULL, 0}
1221};
1222static mapping_t ddf_access[] = {
1223 { "Read/Write", 0},
1224 { "Reserved", 1},
1225 { "Read Only", 2},
1226 { "Blocked (no access)", 3},
1227 { NULL ,0}
1228};
1229
1230static mapping_t ddf_level[] = {
1231 { "RAID0", DDF_RAID0},
1232 { "RAID1", DDF_RAID1},
1233 { "RAID3", DDF_RAID3},
1234 { "RAID4", DDF_RAID4},
1235 { "RAID5", DDF_RAID5},
1236 { "RAID1E",DDF_RAID1E},
1237 { "JBOD", DDF_JBOD},
1238 { "CONCAT",DDF_CONCAT},
1239 { "RAID5E",DDF_RAID5E},
1240 { "RAID5EE",DDF_RAID5EE},
1241 { "RAID6", DDF_RAID6},
1242 { NULL, 0}
1243};
1244static mapping_t ddf_sec_level[] = {
1245 { "Striped", DDF_2STRIPED},
1246 { "Mirrored", DDF_2MIRRORED},
1247 { "Concat", DDF_2CONCAT},
1248 { "Spanned", DDF_2SPANNED},
1249 { NULL, 0}
1250};
1251#endif
1252
fb9d0acb 1253static int all_ff(const char *guid)
42dc2744
N
1254{
1255 int i;
1256 for (i = 0; i < DDF_GUID_LEN; i++)
1257 if (guid[i] != (char)0xff)
1258 return 0;
1259 return 1;
1260}
1261
a322f70c
DW
1262#ifndef MDASSEMBLE
1263static void print_guid(char *guid, int tstamp)
1264{
1265 /* A GUIDs are part (or all) ASCII and part binary.
1266 * They tend to be space padded.
59e36268
NB
1267 * We print the GUID in HEX, then in parentheses add
1268 * any initial ASCII sequence, and a possible
1269 * time stamp from bytes 16-19
a322f70c
DW
1270 */
1271 int l = DDF_GUID_LEN;
1272 int i;
59e36268
NB
1273
1274 for (i=0 ; i<DDF_GUID_LEN ; i++) {
1275 if ((i&3)==0 && i != 0) printf(":");
1276 printf("%02X", guid[i]&255);
1277 }
1278
cfccea8c 1279 printf("\n (");
a322f70c
DW
1280 while (l && guid[l-1] == ' ')
1281 l--;
1282 for (i=0 ; i<l ; i++) {
1283 if (guid[i] >= 0x20 && guid[i] < 0x7f)
1284 fputc(guid[i], stdout);
1285 else
59e36268 1286 break;
a322f70c
DW
1287 }
1288 if (tstamp) {
1289 time_t then = __be32_to_cpu(*(__u32*)(guid+16)) + DECADE;
1290 char tbuf[100];
1291 struct tm *tm;
1292 tm = localtime(&then);
59e36268 1293 strftime(tbuf, 100, " %D %T",tm);
a322f70c
DW
1294 fputs(tbuf, stdout);
1295 }
59e36268 1296 printf(")");
a322f70c
DW
1297}
1298
1299static void examine_vd(int n, struct ddf_super *sb, char *guid)
1300{
8c3b8c2c 1301 int crl = sb->conf_rec_len;
a322f70c
DW
1302 struct vcl *vcl;
1303
1304 for (vcl = sb->conflist ; vcl ; vcl = vcl->next) {
f21e18ca 1305 unsigned int i;
a322f70c
DW
1306 struct vd_config *vc = &vcl->conf;
1307
1308 if (calc_crc(vc, crl*512) != vc->crc)
1309 continue;
1310 if (memcmp(vc->guid, guid, DDF_GUID_LEN) != 0)
1311 continue;
1312
1313 /* Ok, we know about this VD, let's give more details */
b06e3095 1314 printf(" Raid Devices[%d] : %d (", n,
a322f70c 1315 __be16_to_cpu(vc->prim_elmnt_count));
f21e18ca 1316 for (i = 0; i < __be16_to_cpu(vc->prim_elmnt_count); i++) {
b06e3095
N
1317 int j;
1318 int cnt = __be16_to_cpu(sb->phys->used_pdes);
1319 for (j=0; j<cnt; j++)
1320 if (vc->phys_refnum[i] == sb->phys->entries[j].refnum)
1321 break;
1322 if (i) printf(" ");
1323 if (j < cnt)
1324 printf("%d", j);
1325 else
1326 printf("--");
1327 }
1328 printf(")\n");
1329 if (vc->chunk_shift != 255)
613b0d17
N
1330 printf(" Chunk Size[%d] : %d sectors\n", n,
1331 1 << vc->chunk_shift);
a322f70c
DW
1332 printf(" Raid Level[%d] : %s\n", n,
1333 map_num(ddf_level, vc->prl)?:"-unknown-");
1334 if (vc->sec_elmnt_count != 1) {
1335 printf(" Secondary Position[%d] : %d of %d\n", n,
1336 vc->sec_elmnt_seq, vc->sec_elmnt_count);
1337 printf(" Secondary Level[%d] : %s\n", n,
1338 map_num(ddf_sec_level, vc->srl) ?: "-unknown-");
1339 }
1340 printf(" Device Size[%d] : %llu\n", n,
c9b6907b 1341 (unsigned long long)__be64_to_cpu(vc->blocks)/2);
a322f70c 1342 printf(" Array Size[%d] : %llu\n", n,
c9b6907b 1343 (unsigned long long)__be64_to_cpu(vc->array_blocks)/2);
a322f70c
DW
1344 }
1345}
1346
1347static void examine_vds(struct ddf_super *sb)
1348{
1349 int cnt = __be16_to_cpu(sb->virt->populated_vdes);
fb9d0acb 1350 unsigned int i;
a322f70c
DW
1351 printf(" Virtual Disks : %d\n", cnt);
1352
fb9d0acb 1353 for (i = 0; i < __be16_to_cpu(sb->virt->max_vdes); i++) {
a322f70c 1354 struct virtual_entry *ve = &sb->virt->entries[i];
fb9d0acb 1355 if (all_ff(ve->guid))
1356 continue;
b06e3095 1357 printf("\n");
a322f70c
DW
1358 printf(" VD GUID[%d] : ", i); print_guid(ve->guid, 1);
1359 printf("\n");
1360 printf(" unit[%d] : %d\n", i, __be16_to_cpu(ve->unit));
1361 printf(" state[%d] : %s, %s%s\n", i,
1362 map_num(ddf_state, ve->state & 7),
1363 (ve->state & 8) ? "Morphing, ": "",
1364 (ve->state & 16)? "Not Consistent" : "Consistent");
1365 printf(" init state[%d] : %s\n", i,
1366 map_num(ddf_init_state, ve->init_state&3));
1367 printf(" access[%d] : %s\n", i,
1368 map_num(ddf_access, (ve->init_state>>6) & 3));
1369 printf(" Name[%d] : %.16s\n", i, ve->name);
1370 examine_vd(i, sb, ve->guid);
1371 }
1372 if (cnt) printf("\n");
1373}
1374
1375static void examine_pds(struct ddf_super *sb)
1376{
1377 int cnt = __be16_to_cpu(sb->phys->used_pdes);
1378 int i;
1379 struct dl *dl;
1380 printf(" Physical Disks : %d\n", cnt);
962371a5 1381 printf(" Number RefNo Size Device Type/State\n");
a322f70c
DW
1382
1383 for (i=0 ; i<cnt ; i++) {
1384 struct phys_disk_entry *pd = &sb->phys->entries[i];
1385 int type = __be16_to_cpu(pd->type);
1386 int state = __be16_to_cpu(pd->state);
1387
b06e3095
N
1388 //printf(" PD GUID[%d] : ", i); print_guid(pd->guid, 0);
1389 //printf("\n");
1390 printf(" %3d %08x ", i,
a322f70c 1391 __be32_to_cpu(pd->refnum));
613b0d17 1392 printf("%8lluK ",
c9b6907b 1393 (unsigned long long)__be64_to_cpu(pd->config_size)>>1);
b06e3095
N
1394 for (dl = sb->dlist; dl ; dl = dl->next) {
1395 if (dl->disk.refnum == pd->refnum) {
1396 char *dv = map_dev(dl->major, dl->minor, 0);
1397 if (dv) {
962371a5 1398 printf("%-15s", dv);
b06e3095
N
1399 break;
1400 }
1401 }
1402 }
1403 if (!dl)
962371a5 1404 printf("%15s","");
b06e3095 1405 printf(" %s%s%s%s%s",
a322f70c 1406 (type&2) ? "active":"",
b06e3095 1407 (type&4) ? "Global-Spare":"",
a322f70c
DW
1408 (type&8) ? "spare" : "",
1409 (type&16)? ", foreign" : "",
1410 (type&32)? "pass-through" : "");
18cb4496
N
1411 if (state & DDF_Failed)
1412 /* This over-rides these three */
1413 state &= ~(DDF_Online|DDF_Rebuilding|DDF_Transition);
b06e3095 1414 printf("/%s%s%s%s%s%s%s",
a322f70c
DW
1415 (state&1)? "Online": "Offline",
1416 (state&2)? ", Failed": "",
1417 (state&4)? ", Rebuilding": "",
1418 (state&8)? ", in-transition": "",
b06e3095
N
1419 (state&16)? ", SMART-errors": "",
1420 (state&32)? ", Unrecovered-Read-Errors": "",
a322f70c 1421 (state&64)? ", Missing" : "");
a322f70c
DW
1422 printf("\n");
1423 }
1424}
1425
1426static void examine_super_ddf(struct supertype *st, char *homehost)
1427{
1428 struct ddf_super *sb = st->sb;
1429
1430 printf(" Magic : %08x\n", __be32_to_cpu(sb->anchor.magic));
1431 printf(" Version : %.8s\n", sb->anchor.revision);
598f0d58
NB
1432 printf("Controller GUID : "); print_guid(sb->controller.guid, 0);
1433 printf("\n");
1434 printf(" Container GUID : "); print_guid(sb->anchor.guid, 1);
a322f70c
DW
1435 printf("\n");
1436 printf(" Seq : %08x\n", __be32_to_cpu(sb->active->seq));
1437 printf(" Redundant hdr : %s\n", sb->secondary.magic == DDF_HEADER_MAGIC
1438 ?"yes" : "no");
1439 examine_vds(sb);
1440 examine_pds(sb);
1441}
1442
a5d85af7 1443static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info, char *map);
ff54de6e 1444
bedbf68a 1445static void uuid_from_ddf_guid(const char *guid, int uuid[4]);
42dc2744 1446static void uuid_from_super_ddf(struct supertype *st, int uuid[4]);
ff54de6e 1447
bedbf68a 1448static unsigned int get_vd_num_of_subarray(struct supertype *st)
1449{
1450 /*
1451 * Figure out the VD number for this supertype.
1452 * Returns DDF_CONTAINER for the container itself,
1453 * and DDF_NOTFOUND on error.
1454 */
1455 struct ddf_super *ddf = st->sb;
1456 struct mdinfo *sra;
1457 char *sub, *end;
1458 unsigned int vcnum;
1459
1460 if (*st->container_devnm == '\0')
1461 return DDF_CONTAINER;
1462
1463 sra = sysfs_read(-1, st->devnm, GET_VERSION);
1464 if (!sra || sra->array.major_version != -1 ||
1465 sra->array.minor_version != -2 ||
1466 !is_subarray(sra->text_version))
1467 return DDF_NOTFOUND;
1468
1469 sub = strchr(sra->text_version + 1, '/');
1470 if (sub != NULL)
1471 vcnum = strtoul(sub + 1, &end, 10);
1472 if (sub == NULL || *sub == '\0' || *end != '\0' ||
1473 vcnum >= __be16_to_cpu(ddf->active->max_vd_entries))
1474 return DDF_NOTFOUND;
1475
1476 return vcnum;
1477}
1478
061f2c6a 1479static void brief_examine_super_ddf(struct supertype *st, int verbose)
4737ae25
N
1480{
1481 /* We just write a generic DDF ARRAY entry
1482 */
1483 struct mdinfo info;
1484 char nbuf[64];
a5d85af7 1485 getinfo_super_ddf(st, &info, NULL);
4737ae25
N
1486 fname_from_uuid(st, &info, nbuf, ':');
1487
1488 printf("ARRAY metadata=ddf UUID=%s\n", nbuf + 5);
1489}
1490
1491static void brief_examine_subarrays_ddf(struct supertype *st, int verbose)
a322f70c
DW
1492{
1493 /* We just write a generic DDF ARRAY entry
a322f70c 1494 */
42dc2744 1495 struct ddf_super *ddf = st->sb;
ff54de6e 1496 struct mdinfo info;
f21e18ca 1497 unsigned int i;
ff54de6e 1498 char nbuf[64];
a5d85af7 1499 getinfo_super_ddf(st, &info, NULL);
ff54de6e 1500 fname_from_uuid(st, &info, nbuf, ':');
42dc2744 1501
f21e18ca 1502 for (i = 0; i < __be16_to_cpu(ddf->virt->max_vdes); i++) {
42dc2744
N
1503 struct virtual_entry *ve = &ddf->virt->entries[i];
1504 struct vcl vcl;
1505 char nbuf1[64];
1506 if (all_ff(ve->guid))
1507 continue;
1508 memcpy(vcl.conf.guid, ve->guid, DDF_GUID_LEN);
1509 ddf->currentconf =&vcl;
1510 uuid_from_super_ddf(st, info.uuid);
1511 fname_from_uuid(st, &info, nbuf1, ':');
1512 printf("ARRAY container=%s member=%d UUID=%s\n",
1513 nbuf+5, i, nbuf1+5);
1514 }
a322f70c
DW
1515}
1516
bceedeec
N
1517static void export_examine_super_ddf(struct supertype *st)
1518{
1519 struct mdinfo info;
1520 char nbuf[64];
a5d85af7 1521 getinfo_super_ddf(st, &info, NULL);
bceedeec
N
1522 fname_from_uuid(st, &info, nbuf, ':');
1523 printf("MD_METADATA=ddf\n");
1524 printf("MD_LEVEL=container\n");
1525 printf("MD_UUID=%s\n", nbuf+5);
1526}
bceedeec 1527
74db60b0
N
1528static int copy_metadata_ddf(struct supertype *st, int from, int to)
1529{
1530 void *buf;
1531 unsigned long long dsize, offset;
1532 int bytes;
1533 struct ddf_header *ddf;
1534 int written = 0;
1535
1536 /* The meta consists of an anchor, a primary, and a secondary.
1537 * This all lives at the end of the device.
1538 * So it is easiest to find the earliest of primary and
1539 * secondary, and copy everything from there.
1540 *
1541 * Anchor is 512 from end It contains primary_lba and secondary_lba
1542 * we choose one of those
1543 */
1544
1545 if (posix_memalign(&buf, 4096, 4096) != 0)
1546 return 1;
1547
1548 if (!get_dev_size(from, NULL, &dsize))
1549 goto err;
1550
1551 if (lseek64(from, dsize-512, 0) < 0)
1552 goto err;
1553 if (read(from, buf, 512) != 512)
1554 goto err;
1555 ddf = buf;
1556 if (ddf->magic != DDF_HEADER_MAGIC ||
1557 calc_crc(ddf, 512) != ddf->crc ||
1558 (memcmp(ddf->revision, DDF_REVISION_0, 8) != 0 &&
1559 memcmp(ddf->revision, DDF_REVISION_2, 8) != 0))
1560 goto err;
1561
1562 offset = dsize - 512;
1563 if ((__be64_to_cpu(ddf->primary_lba) << 9) < offset)
1564 offset = __be64_to_cpu(ddf->primary_lba) << 9;
1565 if ((__be64_to_cpu(ddf->secondary_lba) << 9) < offset)
1566 offset = __be64_to_cpu(ddf->secondary_lba) << 9;
1567
1568 bytes = dsize - offset;
1569
1570 if (lseek64(from, offset, 0) < 0 ||
1571 lseek64(to, offset, 0) < 0)
1572 goto err;
1573 while (written < bytes) {
1574 int n = bytes - written;
1575 if (n > 4096)
1576 n = 4096;
1577 if (read(from, buf, n) != n)
1578 goto err;
1579 if (write(to, buf, n) != n)
1580 goto err;
1581 written += n;
1582 }
1583 free(buf);
1584 return 0;
1585err:
1586 free(buf);
1587 return 1;
1588}
1589
a322f70c
DW
1590static void detail_super_ddf(struct supertype *st, char *homehost)
1591{
1592 /* FIXME later
1593 * Could print DDF GUID
1594 * Need to find which array
1595 * If whole, briefly list all arrays
1596 * If one, give name
1597 */
1598}
1599
1600static void brief_detail_super_ddf(struct supertype *st)
1601{
ff54de6e
N
1602 struct mdinfo info;
1603 char nbuf[64];
bedbf68a 1604 struct ddf_super *ddf = st->sb;
1605 unsigned int vcnum = get_vd_num_of_subarray(st);
1606 if (vcnum == DDF_CONTAINER)
1607 uuid_from_super_ddf(st, info.uuid);
1608 else if (vcnum == DDF_NOTFOUND)
1609 return;
1610 else
1611 uuid_from_ddf_guid(ddf->virt->entries[vcnum].guid, info.uuid);
ff54de6e
N
1612 fname_from_uuid(st, &info, nbuf,':');
1613 printf(" UUID=%s", nbuf + 5);
a322f70c 1614}
a322f70c
DW
1615#endif
1616
1617static int match_home_ddf(struct supertype *st, char *homehost)
1618{
1619 /* It matches 'this' host if the controller is a
1620 * Linux-MD controller with vendor_data matching
1621 * the hostname
1622 */
1623 struct ddf_super *ddf = st->sb;
f21e18ca 1624 unsigned int len;
d1d3482b
N
1625
1626 if (!homehost)
1627 return 0;
1628 len = strlen(homehost);
a322f70c
DW
1629
1630 return (memcmp(ddf->controller.guid, T10, 8) == 0 &&
1631 len < sizeof(ddf->controller.vendor_data) &&
1632 memcmp(ddf->controller.vendor_data, homehost,len) == 0 &&
1633 ddf->controller.vendor_data[len] == 0);
1634}
1635
0e600426 1636#ifndef MDASSEMBLE
baba3f4e 1637static int find_index_in_bvd(const struct ddf_super *ddf,
1638 const struct vd_config *conf, unsigned int n,
1639 unsigned int *n_bvd)
1640{
1641 /*
1642 * Find the index of the n-th valid physical disk in this BVD
1643 */
1644 unsigned int i, j;
1645 for (i = 0, j = 0; i < ddf->mppe &&
1646 j < __be16_to_cpu(conf->prim_elmnt_count); i++) {
1647 if (conf->phys_refnum[i] != 0xffffffff) {
1648 if (n == j) {
1649 *n_bvd = i;
1650 return 1;
1651 }
1652 j++;
1653 }
1654 }
1655 dprintf("%s: couldn't find BVD member %u (total %u)\n",
1656 __func__, n, __be16_to_cpu(conf->prim_elmnt_count));
1657 return 0;
1658}
1659
1660static struct vd_config *find_vdcr(struct ddf_super *ddf, unsigned int inst,
1661 unsigned int n,
1662 unsigned int *n_bvd, struct vcl **vcl)
a322f70c 1663{
7a7cc504 1664 struct vcl *v;
59e36268 1665
baba3f4e 1666 for (v = ddf->conflist; v; v = v->next) {
1667 unsigned int nsec, ibvd;
1668 struct vd_config *conf;
1669 if (inst != v->vcnum)
1670 continue;
1671 conf = &v->conf;
1672 if (conf->sec_elmnt_count == 1) {
1673 if (find_index_in_bvd(ddf, conf, n, n_bvd)) {
1674 *vcl = v;
1675 return conf;
1676 } else
1677 goto bad;
1678 }
1679 if (v->other_bvds == NULL) {
1680 pr_err("%s: BUG: other_bvds is NULL, nsec=%u\n",
1681 __func__, conf->sec_elmnt_count);
1682 goto bad;
1683 }
1684 nsec = n / __be16_to_cpu(conf->prim_elmnt_count);
1685 if (conf->sec_elmnt_seq != nsec) {
1686 for (ibvd = 1; ibvd < conf->sec_elmnt_count; ibvd++) {
baba3f4e 1687 if (v->other_bvds[ibvd-1]->sec_elmnt_seq
1688 == nsec)
1689 break;
1690 }
1691 if (ibvd == conf->sec_elmnt_count)
1692 goto bad;
1693 conf = v->other_bvds[ibvd-1];
1694 }
1695 if (!find_index_in_bvd(ddf, conf,
1696 n - nsec*conf->sec_elmnt_count, n_bvd))
1697 goto bad;
1698 dprintf("%s: found disk %u as member %u in bvd %d of array %u\n"
1699 , __func__, n, *n_bvd, ibvd-1, inst);
1700 *vcl = v;
1701 return conf;
1702 }
1703bad:
1704 pr_err("%s: Could't find disk %d in array %u\n", __func__, n, inst);
7a7cc504
NB
1705 return NULL;
1706}
0e600426 1707#endif
7a7cc504 1708
5ec636b7 1709static int find_phys(const struct ddf_super *ddf, __u32 phys_refnum)
7a7cc504
NB
1710{
1711 /* Find the entry in phys_disk which has the given refnum
1712 * and return it's index
1713 */
f21e18ca
N
1714 unsigned int i;
1715 for (i = 0; i < __be16_to_cpu(ddf->phys->max_pdes); i++)
7a7cc504
NB
1716 if (ddf->phys->entries[i].refnum == phys_refnum)
1717 return i;
1718 return -1;
a322f70c
DW
1719}
1720
bedbf68a 1721static void uuid_from_ddf_guid(const char *guid, int uuid[4])
1722{
1723 char buf[20];
1724 struct sha1_ctx ctx;
1725 sha1_init_ctx(&ctx);
1726 sha1_process_bytes(guid, DDF_GUID_LEN, &ctx);
1727 sha1_finish_ctx(&ctx, buf);
1728 memcpy(uuid, buf, 4*4);
1729}
1730
a322f70c
DW
1731static void uuid_from_super_ddf(struct supertype *st, int uuid[4])
1732{
1733 /* The uuid returned here is used for:
1734 * uuid to put into bitmap file (Create, Grow)
1735 * uuid for backup header when saving critical section (Grow)
1736 * comparing uuids when re-adding a device into an array
51006d85
N
1737 * In these cases the uuid required is that of the data-array,
1738 * not the device-set.
1739 * uuid to recognise same set when adding a missing device back
1740 * to an array. This is a uuid for the device-set.
613b0d17 1741 *
a322f70c
DW
1742 * For each of these we can make do with a truncated
1743 * or hashed uuid rather than the original, as long as
1744 * everyone agrees.
a322f70c
DW
1745 * In the case of SVD we assume the BVD is of interest,
1746 * though that might be the case if a bitmap were made for
1747 * a mirrored SVD - worry about that later.
1748 * So we need to find the VD configuration record for the
1749 * relevant BVD and extract the GUID and Secondary_Element_Seq.
1750 * The first 16 bytes of the sha1 of these is used.
1751 */
1752 struct ddf_super *ddf = st->sb;
d2ca6449 1753 struct vcl *vcl = ddf->currentconf;
c5afc314 1754 char *guid;
a322f70c 1755
c5afc314
N
1756 if (vcl)
1757 guid = vcl->conf.guid;
1758 else
1759 guid = ddf->anchor.guid;
bedbf68a 1760 uuid_from_ddf_guid(guid, uuid);
a322f70c
DW
1761}
1762
a5d85af7 1763static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info, char *map);
78e44928 1764
a5d85af7 1765static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info, char *map)
a322f70c
DW
1766{
1767 struct ddf_super *ddf = st->sb;
a5d85af7 1768 int map_disks = info->array.raid_disks;
90fa1a29 1769 __u32 *cptr;
a322f70c 1770
78e44928 1771 if (ddf->currentconf) {
a5d85af7 1772 getinfo_super_ddf_bvd(st, info, map);
78e44928
NB
1773 return;
1774 }
95eeceeb 1775 memset(info, 0, sizeof(*info));
78e44928 1776
a322f70c
DW
1777 info->array.raid_disks = __be16_to_cpu(ddf->phys->used_pdes);
1778 info->array.level = LEVEL_CONTAINER;
1779 info->array.layout = 0;
1780 info->array.md_minor = -1;
90fa1a29
JS
1781 cptr = (__u32 *)(ddf->anchor.guid + 16);
1782 info->array.ctime = DECADE + __be32_to_cpu(*cptr);
1783
a322f70c
DW
1784 info->array.utime = 0;
1785 info->array.chunk_size = 0;
510242aa 1786 info->container_enough = 1;
a322f70c 1787
a322f70c
DW
1788 info->disk.major = 0;
1789 info->disk.minor = 0;
cba0191b
NB
1790 if (ddf->dlist) {
1791 info->disk.number = __be32_to_cpu(ddf->dlist->disk.refnum);
59e36268 1792 info->disk.raid_disk = find_phys(ddf, ddf->dlist->disk.refnum);
d2ca6449
NB
1793
1794 info->data_offset = __be64_to_cpu(ddf->phys->
613b0d17
N
1795 entries[info->disk.raid_disk].
1796 config_size);
d2ca6449 1797 info->component_size = ddf->dlist->size - info->data_offset;
cba0191b
NB
1798 } else {
1799 info->disk.number = -1;
661dce36 1800 info->disk.raid_disk = -1;
cba0191b
NB
1801// info->disk.raid_disk = find refnum in the table and use index;
1802 }
f22385f9 1803 info->disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
a19c88b8 1804
921d9e16 1805 info->recovery_start = MaxSector;
a19c88b8 1806 info->reshape_active = 0;
6e75048b 1807 info->recovery_blocked = 0;
c5afc314 1808 info->name[0] = 0;
a322f70c 1809
f35f2525
N
1810 info->array.major_version = -1;
1811 info->array.minor_version = -2;
159c3a1a 1812 strcpy(info->text_version, "ddf");
a67dd8cc 1813 info->safe_mode_delay = 0;
159c3a1a 1814
c5afc314 1815 uuid_from_super_ddf(st, info->uuid);
a322f70c 1816
a5d85af7
N
1817 if (map) {
1818 int i;
1819 for (i = 0 ; i < map_disks; i++) {
1820 if (i < info->array.raid_disks &&
1821 (__be16_to_cpu(ddf->phys->entries[i].state) & DDF_Online) &&
1822 !(__be16_to_cpu(ddf->phys->entries[i].state) & DDF_Failed))
1823 map[i] = 1;
1824 else
1825 map[i] = 0;
1826 }
1827 }
a322f70c
DW
1828}
1829
a5d85af7 1830static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info, char *map)
a322f70c
DW
1831{
1832 struct ddf_super *ddf = st->sb;
d2ca6449
NB
1833 struct vcl *vc = ddf->currentconf;
1834 int cd = ddf->currentdev;
ddf94a43 1835 int n_prim;
db42fa9b 1836 int j;
8592f29d 1837 struct dl *dl;
a5d85af7 1838 int map_disks = info->array.raid_disks;
90fa1a29 1839 __u32 *cptr;
ddf94a43 1840 struct vd_config *conf;
a322f70c 1841
95eeceeb 1842 memset(info, 0, sizeof(*info));
8a2848a7 1843 if (layout_ddf2md(&vc->conf, &info->array) == -1)
1844 return;
a322f70c 1845 info->array.md_minor = -1;
90fa1a29
JS
1846 cptr = (__u32 *)(vc->conf.guid + 16);
1847 info->array.ctime = DECADE + __be32_to_cpu(*cptr);
d2ca6449
NB
1848 info->array.utime = DECADE + __be32_to_cpu(vc->conf.timestamp);
1849 info->array.chunk_size = 512 << vc->conf.chunk_shift;
da9b4a62 1850 info->custom_array_size = 0;
d2ca6449 1851
ddf94a43 1852 conf = &vc->conf;
1853 n_prim = __be16_to_cpu(conf->prim_elmnt_count);
1854 if (conf->sec_elmnt_count > 1 && cd >= n_prim) {
1855 int ibvd = cd / n_prim - 1;
1856 cd %= n_prim;
1857 conf = vc->other_bvds[ibvd];
1858 }
1859
f21e18ca 1860 if (cd >= 0 && (unsigned)cd < ddf->mppe) {
57a66662 1861 info->data_offset =
1862 __be64_to_cpu(LBA_OFFSET(ddf, &vc->conf)[cd]);
d2ca6449
NB
1863 if (vc->block_sizes)
1864 info->component_size = vc->block_sizes[cd];
1865 else
1866 info->component_size = __be64_to_cpu(vc->conf.blocks);
1867 }
a322f70c 1868
fb204fb2
N
1869 for (dl = ddf->dlist; dl ; dl = dl->next)
1870 if (dl->raiddisk == ddf->currentdev)
1871 break;
1872
a322f70c
DW
1873 info->disk.major = 0;
1874 info->disk.minor = 0;
fb204fb2 1875 info->disk.state = 0;
8592f29d
N
1876 if (dl) {
1877 info->disk.major = dl->major;
1878 info->disk.minor = dl->minor;
fb204fb2
N
1879 info->disk.raid_disk = dl->raiddisk;
1880 info->disk.number = dl->pdnum;
1881 info->disk.state = (1<<MD_DISK_SYNC)|(1<<MD_DISK_ACTIVE);
8592f29d 1882 }
a322f70c 1883
103f2410
NB
1884 info->container_member = ddf->currentconf->vcnum;
1885
921d9e16 1886 info->recovery_start = MaxSector;
80d26cb2 1887 info->resync_start = 0;
624c5ad4 1888 info->reshape_active = 0;
6e75048b 1889 info->recovery_blocked = 0;
80d26cb2
NB
1890 if (!(ddf->virt->entries[info->container_member].state
1891 & DDF_state_inconsistent) &&
1892 (ddf->virt->entries[info->container_member].init_state
1893 & DDF_initstate_mask)
1894 == DDF_init_full)
b7528a20 1895 info->resync_start = MaxSector;
80d26cb2 1896
a322f70c
DW
1897 uuid_from_super_ddf(st, info->uuid);
1898
f35f2525
N
1899 info->array.major_version = -1;
1900 info->array.minor_version = -2;
9b63e648 1901 sprintf(info->text_version, "/%s/%d",
4dd2df09 1902 st->container_devnm,
9b63e648 1903 info->container_member);
a67dd8cc 1904 info->safe_mode_delay = 200;
159c3a1a 1905
db42fa9b
N
1906 memcpy(info->name, ddf->virt->entries[info->container_member].name, 16);
1907 info->name[16]=0;
1908 for(j=0; j<16; j++)
1909 if (info->name[j] == ' ')
1910 info->name[j] = 0;
a5d85af7
N
1911
1912 if (map)
1913 for (j = 0; j < map_disks; j++) {
1914 map[j] = 0;
1915 if (j < info->array.raid_disks) {
1916 int i = find_phys(ddf, vc->conf.phys_refnum[j]);
613b0d17 1917 if (i >= 0 &&
a5d85af7
N
1918 (__be16_to_cpu(ddf->phys->entries[i].state) & DDF_Online) &&
1919 !(__be16_to_cpu(ddf->phys->entries[i].state) & DDF_Failed))
1920 map[i] = 1;
1921 }
1922 }
a322f70c
DW
1923}
1924
1925static int update_super_ddf(struct supertype *st, struct mdinfo *info,
1926 char *update,
1927 char *devname, int verbose,
1928 int uuid_set, char *homehost)
1929{
1930 /* For 'assemble' and 'force' we need to return non-zero if any
1931 * change was made. For others, the return value is ignored.
1932 * Update options are:
1933 * force-one : This device looks a bit old but needs to be included,
1934 * update age info appropriately.
1935 * assemble: clear any 'faulty' flag to allow this device to
1936 * be assembled.
1937 * force-array: Array is degraded but being forced, mark it clean
1938 * if that will be needed to assemble it.
1939 *
1940 * newdev: not used ????
1941 * grow: Array has gained a new device - this is currently for
1942 * linear only
1943 * resync: mark as dirty so a resync will happen.
59e36268 1944 * uuid: Change the uuid of the array to match what is given
a322f70c
DW
1945 * homehost: update the recorded homehost
1946 * name: update the name - preserving the homehost
1947 * _reshape_progress: record new reshape_progress position.
1948 *
1949 * Following are not relevant for this version:
1950 * sparc2.2 : update from old dodgey metadata
1951 * super-minor: change the preferred_minor number
1952 * summaries: update redundant counters.
1953 */
1954 int rv = 0;
1955// struct ddf_super *ddf = st->sb;
7a7cc504 1956// struct vd_config *vd = find_vdcr(ddf, info->container_member);
a322f70c
DW
1957// struct virtual_entry *ve = find_ve(ddf);
1958
a322f70c
DW
1959 /* we don't need to handle "force-*" or "assemble" as
1960 * there is no need to 'trick' the kernel. We the metadata is
1961 * first updated to activate the array, all the implied modifications
1962 * will just happen.
1963 */
1964
1965 if (strcmp(update, "grow") == 0) {
1966 /* FIXME */
1e2b2765 1967 } else if (strcmp(update, "resync") == 0) {
a322f70c 1968// info->resync_checkpoint = 0;
1e2b2765 1969 } else if (strcmp(update, "homehost") == 0) {
a322f70c
DW
1970 /* homehost is stored in controller->vendor_data,
1971 * or it is when we are the vendor
1972 */
1973// if (info->vendor_is_local)
1974// strcpy(ddf->controller.vendor_data, homehost);
1e2b2765 1975 rv = -1;
f49208ec 1976 } else if (strcmp(update, "name") == 0) {
a322f70c
DW
1977 /* name is stored in virtual_entry->name */
1978// memset(ve->name, ' ', 16);
1979// strncpy(ve->name, info->name, 16);
1e2b2765 1980 rv = -1;
f49208ec 1981 } else if (strcmp(update, "_reshape_progress") == 0) {
a322f70c 1982 /* We don't support reshape yet */
f49208ec
N
1983 } else if (strcmp(update, "assemble") == 0 ) {
1984 /* Do nothing, just succeed */
1985 rv = 0;
1e2b2765
N
1986 } else
1987 rv = -1;
a322f70c
DW
1988
1989// update_all_csum(ddf);
1990
1991 return rv;
1992}
1993
5f8097be
NB
1994static void make_header_guid(char *guid)
1995{
1996 __u32 stamp;
5f8097be
NB
1997 /* Create a DDF Header of Virtual Disk GUID */
1998
1999 /* 24 bytes of fiction required.
2000 * first 8 are a 'vendor-id' - "Linux-MD"
2001 * next 8 are controller type.. how about 0X DEAD BEEF 0000 0000
2002 * Remaining 8 random number plus timestamp
2003 */
2004 memcpy(guid, T10, sizeof(T10));
2005 stamp = __cpu_to_be32(0xdeadbeef);
2006 memcpy(guid+8, &stamp, 4);
2007 stamp = __cpu_to_be32(0);
2008 memcpy(guid+12, &stamp, 4);
2009 stamp = __cpu_to_be32(time(0) - DECADE);
2010 memcpy(guid+16, &stamp, 4);
bfb7ea78 2011 stamp = random32();
5f8097be 2012 memcpy(guid+20, &stamp, 4);
5f8097be 2013}
59e36268 2014
fb9d0acb 2015static unsigned int find_unused_vde(const struct ddf_super *ddf)
2016{
2017 unsigned int i;
2018 for (i = 0; i < __be16_to_cpu(ddf->virt->max_vdes); i++) {
2019 if (all_ff(ddf->virt->entries[i].guid))
2020 return i;
2021 }
2022 return DDF_NOTFOUND;
2023}
2024
2025static unsigned int find_vde_by_name(const struct ddf_super *ddf,
2026 const char *name)
2027{
2028 unsigned int i;
2029 if (name == NULL)
2030 return DDF_NOTFOUND;
2031 for (i = 0; i < __be16_to_cpu(ddf->virt->max_vdes); i++) {
2032 if (all_ff(ddf->virt->entries[i].guid))
2033 continue;
2034 if (!strncmp(name, ddf->virt->entries[i].name,
2035 sizeof(ddf->virt->entries[i].name)))
2036 return i;
2037 }
2038 return DDF_NOTFOUND;
2039}
2040
2041static unsigned int find_vde_by_guid(const struct ddf_super *ddf,
2042 const char *guid)
2043{
2044 unsigned int i;
2045 if (guid == NULL || all_ff(guid))
2046 return DDF_NOTFOUND;
2047 for (i = 0; i < __be16_to_cpu(ddf->virt->max_vdes); i++)
2048 if (!memcmp(ddf->virt->entries[i].guid, guid, DDF_GUID_LEN))
2049 return i;
2050 return DDF_NOTFOUND;
2051}
2052
78e44928
NB
2053static int init_super_ddf_bvd(struct supertype *st,
2054 mdu_array_info_t *info,
2055 unsigned long long size,
2056 char *name, char *homehost,
83cd1e97 2057 int *uuid, unsigned long long data_offset);
78e44928 2058
a322f70c
DW
2059static int init_super_ddf(struct supertype *st,
2060 mdu_array_info_t *info,
2061 unsigned long long size, char *name, char *homehost,
83cd1e97 2062 int *uuid, unsigned long long data_offset)
a322f70c
DW
2063{
2064 /* This is primarily called by Create when creating a new array.
2065 * We will then get add_to_super called for each component, and then
2066 * write_init_super called to write it out to each device.
2067 * For DDF, Create can create on fresh devices or on a pre-existing
2068 * array.
2069 * To create on a pre-existing array a different method will be called.
2070 * This one is just for fresh drives.
2071 *
2072 * We need to create the entire 'ddf' structure which includes:
2073 * DDF headers - these are easy.
2074 * Controller data - a Sector describing this controller .. not that
2075 * this is a controller exactly.
2076 * Physical Disk Record - one entry per device, so
2077 * leave plenty of space.
2078 * Virtual Disk Records - again, just leave plenty of space.
2079 * This just lists VDs, doesn't give details
2080 * Config records - describes the VDs that use this disk
2081 * DiskData - describes 'this' device.
2082 * BadBlockManagement - empty
2083 * Diag Space - empty
2084 * Vendor Logs - Could we put bitmaps here?
2085 *
2086 */
2087 struct ddf_super *ddf;
2088 char hostname[17];
2089 int hostlen;
a322f70c
DW
2090 int max_phys_disks, max_virt_disks;
2091 unsigned long long sector;
2092 int clen;
2093 int i;
2094 int pdsize, vdsize;
2095 struct phys_disk *pd;
2096 struct virtual_disk *vd;
2097
83cd1e97 2098 if (data_offset != INVALID_SECTORS) {
ed503f89 2099 pr_err("data-offset not supported by DDF\n");
83cd1e97
N
2100 return 0;
2101 }
2102
78e44928 2103 if (st->sb)
83cd1e97
N
2104 return init_super_ddf_bvd(st, info, size, name, homehost, uuid,
2105 data_offset);
ba7eb04f 2106
3d2c4fc7 2107 if (posix_memalign((void**)&ddf, 512, sizeof(*ddf)) != 0) {
e7b84f9d 2108 pr_err("%s could not allocate superblock\n", __func__);
3d2c4fc7
DW
2109 return 0;
2110 }
6264b437 2111 memset(ddf, 0, sizeof(*ddf));
a322f70c
DW
2112 ddf->dlist = NULL; /* no physical disks yet */
2113 ddf->conflist = NULL; /* No virtual disks yet */
955e9ea1
DW
2114 st->sb = ddf;
2115
2116 if (info == NULL) {
2117 /* zeroing superblock */
2118 return 0;
2119 }
a322f70c
DW
2120
2121 /* At least 32MB *must* be reserved for the ddf. So let's just
2122 * start 32MB from the end, and put the primary header there.
2123 * Don't do secondary for now.
2124 * We don't know exactly where that will be yet as it could be
2125 * different on each device. To just set up the lengths.
2126 *
2127 */
2128
2129 ddf->anchor.magic = DDF_HEADER_MAGIC;
5f8097be 2130 make_header_guid(ddf->anchor.guid);
a322f70c 2131
59e36268 2132 memcpy(ddf->anchor.revision, DDF_REVISION_2, 8);
a322f70c
DW
2133 ddf->anchor.seq = __cpu_to_be32(1);
2134 ddf->anchor.timestamp = __cpu_to_be32(time(0) - DECADE);
2135 ddf->anchor.openflag = 0xFF;
2136 ddf->anchor.foreignflag = 0;
2137 ddf->anchor.enforcegroups = 0; /* Is this best?? */
2138 ddf->anchor.pad0 = 0xff;
2139 memset(ddf->anchor.pad1, 0xff, 12);
2140 memset(ddf->anchor.header_ext, 0xff, 32);
2141 ddf->anchor.primary_lba = ~(__u64)0;
2142 ddf->anchor.secondary_lba = ~(__u64)0;
2143 ddf->anchor.type = DDF_HEADER_ANCHOR;
2144 memset(ddf->anchor.pad2, 0xff, 3);
2145 ddf->anchor.workspace_len = __cpu_to_be32(32768); /* Must be reserved */
2146 ddf->anchor.workspace_lba = ~(__u64)0; /* Put this at bottom
2147 of 32M reserved.. */
2148 max_phys_disks = 1023; /* Should be enough */
2149 ddf->anchor.max_pd_entries = __cpu_to_be16(max_phys_disks);
2150 max_virt_disks = 255;
2151 ddf->anchor.max_vd_entries = __cpu_to_be16(max_virt_disks); /* ?? */
2152 ddf->anchor.max_partitions = __cpu_to_be16(64); /* ?? */
2153 ddf->max_part = 64;
8c3b8c2c 2154 ddf->mppe = 256;
59e36268
NB
2155 ddf->conf_rec_len = 1 + ROUND_UP(ddf->mppe * (4+8), 512)/512;
2156 ddf->anchor.config_record_len = __cpu_to_be16(ddf->conf_rec_len);
2157 ddf->anchor.max_primary_element_entries = __cpu_to_be16(ddf->mppe);
a322f70c 2158 memset(ddf->anchor.pad3, 0xff, 54);
a322f70c
DW
2159 /* controller sections is one sector long immediately
2160 * after the ddf header */
2161 sector = 1;
2162 ddf->anchor.controller_section_offset = __cpu_to_be32(sector);
2163 ddf->anchor.controller_section_length = __cpu_to_be32(1);
2164 sector += 1;
2165
2166 /* phys is 8 sectors after that */
2167 pdsize = ROUND_UP(sizeof(struct phys_disk) +
2168 sizeof(struct phys_disk_entry)*max_phys_disks,
2169 512);
2170 switch(pdsize/512) {
2171 case 2: case 8: case 32: case 128: case 512: break;
2172 default: abort();
2173 }
2174 ddf->anchor.phys_section_offset = __cpu_to_be32(sector);
2175 ddf->anchor.phys_section_length =
2176 __cpu_to_be32(pdsize/512); /* max_primary_element_entries/8 */
2177 sector += pdsize/512;
2178
2179 /* virt is another 32 sectors */
2180 vdsize = ROUND_UP(sizeof(struct virtual_disk) +
2181 sizeof(struct virtual_entry) * max_virt_disks,
2182 512);
2183 switch(vdsize/512) {
2184 case 2: case 8: case 32: case 128: case 512: break;
2185 default: abort();
2186 }
2187 ddf->anchor.virt_section_offset = __cpu_to_be32(sector);
2188 ddf->anchor.virt_section_length =
2189 __cpu_to_be32(vdsize/512); /* max_vd_entries/8 */
2190 sector += vdsize/512;
2191
59e36268 2192 clen = ddf->conf_rec_len * (ddf->max_part+1);
a322f70c
DW
2193 ddf->anchor.config_section_offset = __cpu_to_be32(sector);
2194 ddf->anchor.config_section_length = __cpu_to_be32(clen);
2195 sector += clen;
2196
2197 ddf->anchor.data_section_offset = __cpu_to_be32(sector);
2198 ddf->anchor.data_section_length = __cpu_to_be32(1);
2199 sector += 1;
2200
2201 ddf->anchor.bbm_section_length = __cpu_to_be32(0);
2202 ddf->anchor.bbm_section_offset = __cpu_to_be32(0xFFFFFFFF);
2203 ddf->anchor.diag_space_length = __cpu_to_be32(0);
2204 ddf->anchor.diag_space_offset = __cpu_to_be32(0xFFFFFFFF);
2205 ddf->anchor.vendor_length = __cpu_to_be32(0);
2206 ddf->anchor.vendor_offset = __cpu_to_be32(0xFFFFFFFF);
2207
2208 memset(ddf->anchor.pad4, 0xff, 256);
2209
2210 memcpy(&ddf->primary, &ddf->anchor, 512);
2211 memcpy(&ddf->secondary, &ddf->anchor, 512);
2212
2213 ddf->primary.openflag = 1; /* I guess.. */
2214 ddf->primary.type = DDF_HEADER_PRIMARY;
2215
2216 ddf->secondary.openflag = 1; /* I guess.. */
2217 ddf->secondary.type = DDF_HEADER_SECONDARY;
2218
2219 ddf->active = &ddf->primary;
2220
2221 ddf->controller.magic = DDF_CONTROLLER_MAGIC;
2222
2223 /* 24 more bytes of fiction required.
2224 * first 8 are a 'vendor-id' - "Linux-MD"
2225 * Remaining 16 are serial number.... maybe a hostname would do?
2226 */
2227 memcpy(ddf->controller.guid, T10, sizeof(T10));
1ba6bff9
DW
2228 gethostname(hostname, sizeof(hostname));
2229 hostname[sizeof(hostname) - 1] = 0;
a322f70c
DW
2230 hostlen = strlen(hostname);
2231 memcpy(ddf->controller.guid + 24 - hostlen, hostname, hostlen);
2232 for (i = strlen(T10) ; i+hostlen < 24; i++)
2233 ddf->controller.guid[i] = ' ';
2234
2235 ddf->controller.type.vendor_id = __cpu_to_be16(0xDEAD);
2236 ddf->controller.type.device_id = __cpu_to_be16(0xBEEF);
2237 ddf->controller.type.sub_vendor_id = 0;
2238 ddf->controller.type.sub_device_id = 0;
2239 memcpy(ddf->controller.product_id, "What Is My PID??", 16);
2240 memset(ddf->controller.pad, 0xff, 8);
2241 memset(ddf->controller.vendor_data, 0xff, 448);
a9e1c11d
N
2242 if (homehost && strlen(homehost) < 440)
2243 strcpy((char*)ddf->controller.vendor_data, homehost);
a322f70c 2244
3d2c4fc7 2245 if (posix_memalign((void**)&pd, 512, pdsize) != 0) {
e7b84f9d 2246 pr_err("%s could not allocate pd\n", __func__);
3d2c4fc7
DW
2247 return 0;
2248 }
6416d527 2249 ddf->phys = pd;
a322f70c
DW
2250 ddf->pdsize = pdsize;
2251
2252 memset(pd, 0xff, pdsize);
2253 memset(pd, 0, sizeof(*pd));
076515ba 2254 pd->magic = DDF_PHYS_RECORDS_MAGIC;
a322f70c
DW
2255 pd->used_pdes = __cpu_to_be16(0);
2256 pd->max_pdes = __cpu_to_be16(max_phys_disks);
2257 memset(pd->pad, 0xff, 52);
4a3ca8ac 2258 for (i = 0; i < max_phys_disks; i++)
2259 memset(pd->entries[i].guid, 0xff, DDF_GUID_LEN);
a322f70c 2260
3d2c4fc7 2261 if (posix_memalign((void**)&vd, 512, vdsize) != 0) {
e7b84f9d 2262 pr_err("%s could not allocate vd\n", __func__);
3d2c4fc7
DW
2263 return 0;
2264 }
6416d527 2265 ddf->virt = vd;
a322f70c
DW
2266 ddf->vdsize = vdsize;
2267 memset(vd, 0, vdsize);
2268 vd->magic = DDF_VIRT_RECORDS_MAGIC;
2269 vd->populated_vdes = __cpu_to_be16(0);
2270 vd->max_vdes = __cpu_to_be16(max_virt_disks);
2271 memset(vd->pad, 0xff, 52);
2272
5f8097be
NB
2273 for (i=0; i<max_virt_disks; i++)
2274 memset(&vd->entries[i], 0xff, sizeof(struct virtual_entry));
2275
a322f70c 2276 st->sb = ddf;
7d5a7ff3 2277 ddf_set_updates_pending(ddf);
a322f70c
DW
2278 return 1;
2279}
2280
5f8097be
NB
2281static int chunk_to_shift(int chunksize)
2282{
2283 return ffs(chunksize/512)-1;
2284}
2285
0e600426 2286#ifndef MDASSEMBLE
59e36268
NB
2287struct extent {
2288 unsigned long long start, size;
2289};
78e44928 2290static int cmp_extent(const void *av, const void *bv)
59e36268
NB
2291{
2292 const struct extent *a = av;
2293 const struct extent *b = bv;
2294 if (a->start < b->start)
2295 return -1;
2296 if (a->start > b->start)
2297 return 1;
2298 return 0;
2299}
2300
78e44928 2301static struct extent *get_extents(struct ddf_super *ddf, struct dl *dl)
59e36268
NB
2302{
2303 /* find a list of used extents on the give physical device
2304 * (dnum) of the given ddf.
2305 * Return a malloced array of 'struct extent'
2306
613b0d17 2307 * FIXME ignore DDF_Legacy devices?
59e36268
NB
2308
2309 */
2310 struct extent *rv;
2311 int n = 0;
fcc22180 2312 unsigned int i;
59e36268 2313
503975b9 2314 rv = xmalloc(sizeof(struct extent) * (ddf->max_part + 2));
59e36268
NB
2315
2316 for (i = 0; i < ddf->max_part; i++) {
fcc22180 2317 const struct vd_config *bvd;
2318 unsigned int ibvd;
59e36268 2319 struct vcl *v = dl->vlist[i];
fcc22180 2320 if (v == NULL ||
2321 get_pd_index_from_refnum(v, dl->disk.refnum, ddf->mppe,
2322 &bvd, &ibvd) == DDF_NOTFOUND)
59e36268 2323 continue;
fcc22180 2324 rv[n].start = __be64_to_cpu(LBA_OFFSET(ddf, bvd)[ibvd]);
2325 rv[n].size = __be64_to_cpu(bvd->blocks);
2326 n++;
59e36268
NB
2327 }
2328 qsort(rv, n, sizeof(*rv), cmp_extent);
2329
2330 rv[n].start = __be64_to_cpu(ddf->phys->entries[dl->pdnum].config_size);
2331 rv[n].size = 0;
2332 return rv;
2333}
0e600426 2334#endif
59e36268 2335
5f8097be
NB
2336static int init_super_ddf_bvd(struct supertype *st,
2337 mdu_array_info_t *info,
2338 unsigned long long size,
2339 char *name, char *homehost,
83cd1e97 2340 int *uuid, unsigned long long data_offset)
5f8097be
NB
2341{
2342 /* We are creating a BVD inside a pre-existing container.
2343 * so st->sb is already set.
2344 * We need to create a new vd_config and a new virtual_entry
2345 */
2346 struct ddf_super *ddf = st->sb;
5aaf6c7b 2347 unsigned int venum, i;
5f8097be
NB
2348 struct virtual_entry *ve;
2349 struct vcl *vcl;
2350 struct vd_config *vc;
5f8097be 2351
fb9d0acb 2352 if (find_vde_by_name(ddf, name) != DDF_NOTFOUND) {
2353 pr_err("This ddf already has an array called %s\n", name);
5f8097be
NB
2354 return 0;
2355 }
fb9d0acb 2356 venum = find_unused_vde(ddf);
2357 if (venum == DDF_NOTFOUND) {
2358 pr_err("Cannot find spare slot for virtual disk\n");
5f8097be
NB
2359 return 0;
2360 }
2361 ve = &ddf->virt->entries[venum];
2362
2363 /* A Virtual Disk GUID contains the T10 Vendor ID, controller type,
2364 * timestamp, random number
2365 */
2366 make_header_guid(ve->guid);
2367 ve->unit = __cpu_to_be16(info->md_minor);
2368 ve->pad0 = 0xFFFF;
2369 ve->guid_crc = crc32(0, (unsigned char*)ddf->anchor.guid, DDF_GUID_LEN);
2370 ve->type = 0;
7a7cc504
NB
2371 ve->state = DDF_state_degraded; /* Will be modified as devices are added */
2372 if (info->state & 1) /* clean */
2373 ve->init_state = DDF_init_full;
2374 else
2375 ve->init_state = DDF_init_not;
2376
5f8097be
NB
2377 memset(ve->pad1, 0xff, 14);
2378 memset(ve->name, ' ', 16);
2379 if (name)
2380 strncpy(ve->name, name, 16);
2381 ddf->virt->populated_vdes =
2382 __cpu_to_be16(__be16_to_cpu(ddf->virt->populated_vdes)+1);
2383
2384 /* Now create a new vd_config */
3d2c4fc7
DW
2385 if (posix_memalign((void**)&vcl, 512,
2386 (offsetof(struct vcl, conf) + ddf->conf_rec_len * 512)) != 0) {
e7b84f9d 2387 pr_err("%s could not allocate vd_config\n", __func__);
3d2c4fc7
DW
2388 return 0;
2389 }
59e36268
NB
2390 vcl->vcnum = venum;
2391 vcl->block_sizes = NULL; /* FIXME not for CONCAT */
5f8097be
NB
2392 vc = &vcl->conf;
2393
2394 vc->magic = DDF_VD_CONF_MAGIC;
2395 memcpy(vc->guid, ve->guid, DDF_GUID_LEN);
2396 vc->timestamp = __cpu_to_be32(time(0)-DECADE);
2397 vc->seqnum = __cpu_to_be32(1);
2398 memset(vc->pad0, 0xff, 24);
5f8097be 2399 vc->chunk_shift = chunk_to_shift(info->chunk_size);
a3163bf0 2400 if (layout_md2ddf(info, vc) == -1 ||
2401 __be16_to_cpu(vc->prim_elmnt_count) > ddf->mppe) {
2402 pr_err("%s: unsupported RAID level/layout %d/%d with %d disks\n",
2403 __func__, info->level, info->layout, info->raid_disks);
2404 free(vcl);
2405 return 0;
2406 }
5f8097be 2407 vc->sec_elmnt_seq = 0;
3c48f7be 2408 if (alloc_other_bvds(ddf, vcl) != 0) {
2409 pr_err("%s could not allocate other bvds\n",
2410 __func__);
2411 free(vcl);
2412 return 0;
2413 }
5f8097be
NB
2414 vc->blocks = __cpu_to_be64(info->size * 2);
2415 vc->array_blocks = __cpu_to_be64(
2416 calc_array_size(info->level, info->raid_disks, info->layout,
2417 info->chunk_size, info->size*2));
2418 memset(vc->pad1, 0xff, 8);
2419 vc->spare_refs[0] = 0xffffffff;
2420 vc->spare_refs[1] = 0xffffffff;
2421 vc->spare_refs[2] = 0xffffffff;
2422 vc->spare_refs[3] = 0xffffffff;
2423 vc->spare_refs[4] = 0xffffffff;
2424 vc->spare_refs[5] = 0xffffffff;
2425 vc->spare_refs[6] = 0xffffffff;
2426 vc->spare_refs[7] = 0xffffffff;
2427 memset(vc->cache_pol, 0, 8);
2428 vc->bg_rate = 0x80;
2429 memset(vc->pad2, 0xff, 3);
2430 memset(vc->pad3, 0xff, 52);
2431 memset(vc->pad4, 0xff, 192);
2432 memset(vc->v0, 0xff, 32);
2433 memset(vc->v1, 0xff, 32);
2434 memset(vc->v2, 0xff, 16);
2435 memset(vc->v3, 0xff, 16);
2436 memset(vc->vendor, 0xff, 32);
598f0d58 2437
8c3b8c2c 2438 memset(vc->phys_refnum, 0xff, 4*ddf->mppe);
e5a2a3cf 2439 memset(vc->phys_refnum+ddf->mppe, 0x00, 8*ddf->mppe);
5f8097be 2440
5aaf6c7b 2441 for (i = 1; i < vc->sec_elmnt_count; i++) {
2442 memcpy(vcl->other_bvds[i-1], vc, ddf->conf_rec_len * 512);
2443 vcl->other_bvds[i-1]->sec_elmnt_seq = i;
2444 }
2445
5f8097be
NB
2446 vcl->next = ddf->conflist;
2447 ddf->conflist = vcl;
d2ca6449 2448 ddf->currentconf = vcl;
7d5a7ff3 2449 ddf_set_updates_pending(ddf);
5f8097be
NB
2450 return 1;
2451}
2452
63eb2454 2453static int get_svd_state(const struct ddf_super *, const struct vcl *);
2454
0e600426 2455#ifndef MDASSEMBLE
5f8097be
NB
2456static void add_to_super_ddf_bvd(struct supertype *st,
2457 mdu_disk_info_t *dk, int fd, char *devname)
2458{
2459 /* fd and devname identify a device with-in the ddf container (st).
2460 * dk identifies a location in the new BVD.
2461 * We need to find suitable free space in that device and update
2462 * the phys_refnum and lba_offset for the newly created vd_config.
2463 * We might also want to update the type in the phys_disk
5575e7d9 2464 * section.
8592f29d
N
2465 *
2466 * Alternately: fd == -1 and we have already chosen which device to
2467 * use and recorded in dlist->raid_disk;
5f8097be
NB
2468 */
2469 struct dl *dl;
2470 struct ddf_super *ddf = st->sb;
2471 struct vd_config *vc;
f21e18ca 2472 unsigned int i;
59e36268
NB
2473 unsigned long long blocks, pos, esize;
2474 struct extent *ex;
475ccbdb 2475 unsigned int raid_disk = dk->raid_disk;
5f8097be 2476
8592f29d
N
2477 if (fd == -1) {
2478 for (dl = ddf->dlist; dl ; dl = dl->next)
2479 if (dl->raiddisk == dk->raid_disk)
2480 break;
2481 } else {
2482 for (dl = ddf->dlist; dl ; dl = dl->next)
2483 if (dl->major == dk->major &&
2484 dl->minor == dk->minor)
2485 break;
2486 }
5f8097be
NB
2487 if (!dl || ! (dk->state & (1<<MD_DISK_SYNC)))
2488 return;
2489
d2ca6449 2490 vc = &ddf->currentconf->conf;
475ccbdb 2491 if (vc->sec_elmnt_count > 1) {
2492 unsigned int n = __be16_to_cpu(vc->prim_elmnt_count);
2493 if (raid_disk >= n)
2494 vc = ddf->currentconf->other_bvds[raid_disk / n - 1];
2495 raid_disk %= n;
2496 }
59e36268
NB
2497
2498 ex = get_extents(ddf, dl);
2499 if (!ex)
2500 return;
2501
2502 i = 0; pos = 0;
2503 blocks = __be64_to_cpu(vc->blocks);
d2ca6449
NB
2504 if (ddf->currentconf->block_sizes)
2505 blocks = ddf->currentconf->block_sizes[dk->raid_disk];
59e36268
NB
2506
2507 do {
2508 esize = ex[i].start - pos;
2509 if (esize >= blocks)
2510 break;
2511 pos = ex[i].start + ex[i].size;
2512 i++;
2513 } while (ex[i-1].size);
2514
2515 free(ex);
2516 if (esize < blocks)
2517 return;
2518
d2ca6449 2519 ddf->currentdev = dk->raid_disk;
475ccbdb 2520 vc->phys_refnum[raid_disk] = dl->disk.refnum;
2521 LBA_OFFSET(ddf, vc)[raid_disk] = __cpu_to_be64(pos);
5f8097be 2522
f21e18ca 2523 for (i = 0; i < ddf->max_part ; i++)
5575e7d9
NB
2524 if (dl->vlist[i] == NULL)
2525 break;
2526 if (i == ddf->max_part)
2527 return;
d2ca6449 2528 dl->vlist[i] = ddf->currentconf;
5f8097be 2529
8592f29d
N
2530 if (fd >= 0)
2531 dl->fd = fd;
2532 if (devname)
2533 dl->devname = devname;
7a7cc504 2534
63eb2454 2535 /* Check if we can mark array as optimal yet */
d2ca6449 2536 i = ddf->currentconf->vcnum;
63eb2454 2537 ddf->virt->entries[i].state =
2538 (ddf->virt->entries[i].state & ~DDF_state_mask)
2539 | get_svd_state(ddf, ddf->currentconf);
5575e7d9
NB
2540 ddf->phys->entries[dl->pdnum].type &= ~__cpu_to_be16(DDF_Global_Spare);
2541 ddf->phys->entries[dl->pdnum].type |= __cpu_to_be16(DDF_Active_in_VD);
7d5a7ff3 2542 ddf_set_updates_pending(ddf);
5f8097be
NB
2543}
2544
4a3ca8ac 2545static unsigned int find_unused_pde(const struct ddf_super *ddf)
2546{
2547 unsigned int i;
2548 for (i = 0; i < __be16_to_cpu(ddf->phys->max_pdes); i++) {
2549 if (all_ff(ddf->phys->entries[i].guid))
2550 return i;
2551 }
2552 return DDF_NOTFOUND;
2553}
2554
a322f70c
DW
2555/* add a device to a container, either while creating it or while
2556 * expanding a pre-existing container
2557 */
f20c3968 2558static int add_to_super_ddf(struct supertype *st,
72ca9bcf
N
2559 mdu_disk_info_t *dk, int fd, char *devname,
2560 unsigned long long data_offset)
a322f70c
DW
2561{
2562 struct ddf_super *ddf = st->sb;
2563 struct dl *dd;
2564 time_t now;
2565 struct tm *tm;
2566 unsigned long long size;
2567 struct phys_disk_entry *pde;
f21e18ca 2568 unsigned int n, i;
a322f70c 2569 struct stat stb;
90fa1a29 2570 __u32 *tptr;
a322f70c 2571
78e44928
NB
2572 if (ddf->currentconf) {
2573 add_to_super_ddf_bvd(st, dk, fd, devname);
f20c3968 2574 return 0;
78e44928
NB
2575 }
2576
a322f70c
DW
2577 /* This is device numbered dk->number. We need to create
2578 * a phys_disk entry and a more detailed disk_data entry.
2579 */
2580 fstat(fd, &stb);
4a3ca8ac 2581 n = find_unused_pde(ddf);
2582 if (n == DDF_NOTFOUND) {
2583 pr_err("%s: No free slot in array, cannot add disk\n",
2584 __func__);
2585 return 1;
2586 }
2587 pde = &ddf->phys->entries[n];
4ee8cca9 2588 get_dev_size(fd, NULL, &size);
2589 if (size <= 32*1024*1024) {
2590 pr_err("%s: device size must be at least 32MB\n",
2591 __func__);
2592 return 1;
2593 }
2594 size >>= 9;
4a3ca8ac 2595
3d2c4fc7
DW
2596 if (posix_memalign((void**)&dd, 512,
2597 sizeof(*dd) + sizeof(dd->vlist[0]) * ddf->max_part) != 0) {
e7b84f9d
N
2598 pr_err("%s could allocate buffer for new disk, aborting\n",
2599 __func__);
f20c3968 2600 return 1;
3d2c4fc7 2601 }
a322f70c
DW
2602 dd->major = major(stb.st_rdev);
2603 dd->minor = minor(stb.st_rdev);
2604 dd->devname = devname;
a322f70c 2605 dd->fd = fd;
b2280677 2606 dd->spare = NULL;
a322f70c
DW
2607
2608 dd->disk.magic = DDF_PHYS_DATA_MAGIC;
2609 now = time(0);
2610 tm = localtime(&now);
2611 sprintf(dd->disk.guid, "%8s%04d%02d%02d",
2612 T10, tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
90fa1a29
JS
2613 tptr = (__u32 *)(dd->disk.guid + 16);
2614 *tptr++ = random32();
2615 *tptr = random32();
a322f70c 2616
59e36268
NB
2617 do {
2618 /* Cannot be bothered finding a CRC of some irrelevant details*/
bfb7ea78 2619 dd->disk.refnum = random32();
f21e18ca
N
2620 for (i = __be16_to_cpu(ddf->active->max_pd_entries);
2621 i > 0; i--)
2622 if (ddf->phys->entries[i-1].refnum == dd->disk.refnum)
59e36268 2623 break;
f21e18ca 2624 } while (i > 0);
59e36268 2625
a322f70c
DW
2626 dd->disk.forced_ref = 1;
2627 dd->disk.forced_guid = 1;
2628 memset(dd->disk.vendor, ' ', 32);
2629 memcpy(dd->disk.vendor, "Linux", 5);
2630 memset(dd->disk.pad, 0xff, 442);
b2280677 2631 for (i = 0; i < ddf->max_part ; i++)
a322f70c
DW
2632 dd->vlist[i] = NULL;
2633
5575e7d9
NB
2634 dd->pdnum = n;
2635
2cc2983d
N
2636 if (st->update_tail) {
2637 int len = (sizeof(struct phys_disk) +
2638 sizeof(struct phys_disk_entry));
2639 struct phys_disk *pd;
2640
503975b9 2641 pd = xmalloc(len);
2cc2983d
N
2642 pd->magic = DDF_PHYS_RECORDS_MAGIC;
2643 pd->used_pdes = __cpu_to_be16(n);
2644 pde = &pd->entries[0];
2645 dd->mdupdate = pd;
4a3ca8ac 2646 } else
2647 ddf->phys->used_pdes = __cpu_to_be16(
2648 1 + __be16_to_cpu(ddf->phys->used_pdes));
a322f70c
DW
2649
2650 memcpy(pde->guid, dd->disk.guid, DDF_GUID_LEN);
2651 pde->refnum = dd->disk.refnum;
5575e7d9 2652 pde->type = __cpu_to_be16(DDF_Forced_PD_GUID | DDF_Global_Spare);
a322f70c 2653 pde->state = __cpu_to_be16(DDF_Online);
4ee8cca9 2654 dd->size = size;
2655 /*
2656 * If there is already a device in dlist, try to reserve the same
2657 * amount of workspace. Otherwise, use 32MB.
2658 * We checked disk size above already.
2659 */
2660#define __calc_lba(new, old, lba, mb) do { \
2661 unsigned long long dif; \
2662 if ((old) != NULL) \
2663 dif = (old)->size - __be64_to_cpu((old)->lba); \
2664 else \
2665 dif = (new)->size; \
2666 if ((new)->size > dif) \
2667 (new)->lba = __cpu_to_be64((new)->size - dif); \
2668 else \
2669 (new)->lba = __cpu_to_be64((new)->size - (mb*1024*2)); \
2670 } while (0)
2671 __calc_lba(dd, ddf->dlist, workspace_lba, 32);
2672 __calc_lba(dd, ddf->dlist, primary_lba, 16);
2673 __calc_lba(dd, ddf->dlist, secondary_lba, 32);
2674 pde->config_size = dd->workspace_lba;
2675
a322f70c
DW
2676 sprintf(pde->path, "%17.17s","Information: nil") ;
2677 memset(pde->pad, 0xff, 6);
2678
2cc2983d
N
2679 if (st->update_tail) {
2680 dd->next = ddf->add_list;
2681 ddf->add_list = dd;
2682 } else {
2683 dd->next = ddf->dlist;
2684 ddf->dlist = dd;
7d5a7ff3 2685 ddf_set_updates_pending(ddf);
2cc2983d 2686 }
f20c3968
DW
2687
2688 return 0;
a322f70c
DW
2689}
2690
4dd968cc
N
2691static int remove_from_super_ddf(struct supertype *st, mdu_disk_info_t *dk)
2692{
2693 struct ddf_super *ddf = st->sb;
2694 struct dl *dl;
2695
2696 /* mdmon has noticed that this disk (dk->major/dk->minor) has
2697 * disappeared from the container.
2698 * We need to arrange that it disappears from the metadata and
2699 * internal data structures too.
2700 * Most of the work is done by ddf_process_update which edits
2701 * the metadata and closes the file handle and attaches the memory
2702 * where free_updates will free it.
2703 */
2704 for (dl = ddf->dlist; dl ; dl = dl->next)
2705 if (dl->major == dk->major &&
2706 dl->minor == dk->minor)
2707 break;
2708 if (!dl)
2709 return -1;
2710
2711 if (st->update_tail) {
2712 int len = (sizeof(struct phys_disk) +
2713 sizeof(struct phys_disk_entry));
2714 struct phys_disk *pd;
2715
503975b9 2716 pd = xmalloc(len);
4dd968cc
N
2717 pd->magic = DDF_PHYS_RECORDS_MAGIC;
2718 pd->used_pdes = __cpu_to_be16(dl->pdnum);
2719 pd->entries[0].state = __cpu_to_be16(DDF_Missing);
2720 append_metadata_update(st, pd, len);
2721 }
2722 return 0;
2723}
2724
a322f70c
DW
2725/*
2726 * This is the write_init_super method for a ddf container. It is
2727 * called when creating a container or adding another device to a
2728 * container.
2729 */
42d5dfd9 2730#define NULL_CONF_SZ 4096
18a2f463 2731
7f798aca 2732static int __write_ddf_structure(struct dl *d, struct ddf_super *ddf, __u8 type,
2733 char *null_aligned)
a322f70c 2734{
7f798aca 2735 unsigned long long sector;
2736 struct ddf_header *header;
2737 int fd, i, n_config, conf_size;
a4057a88 2738 int ret = 0;
7f798aca 2739
2740 fd = d->fd;
2741
2742 switch (type) {
2743 case DDF_HEADER_PRIMARY:
2744 header = &ddf->primary;
2745 sector = __be64_to_cpu(header->primary_lba);
2746 break;
2747 case DDF_HEADER_SECONDARY:
2748 header = &ddf->secondary;
2749 sector = __be64_to_cpu(header->secondary_lba);
2750 break;
2751 default:
2752 return 0;
2753 }
2754
2755 header->type = type;
a4057a88 2756 header->openflag = 1;
7f798aca 2757 header->crc = calc_crc(header, 512);
2758
2759 lseek64(fd, sector<<9, 0);
2760 if (write(fd, header, 512) < 0)
a4057a88 2761 goto out;
7f798aca 2762
2763 ddf->controller.crc = calc_crc(&ddf->controller, 512);
2764 if (write(fd, &ddf->controller, 512) < 0)
a4057a88 2765 goto out;
a322f70c 2766
7f798aca 2767 ddf->phys->crc = calc_crc(ddf->phys, ddf->pdsize);
2768 if (write(fd, ddf->phys, ddf->pdsize) < 0)
a4057a88 2769 goto out;
7f798aca 2770 ddf->virt->crc = calc_crc(ddf->virt, ddf->vdsize);
2771 if (write(fd, ddf->virt, ddf->vdsize) < 0)
a4057a88 2772 goto out;
7f798aca 2773
2774 /* Now write lots of config records. */
2775 n_config = ddf->max_part;
2776 conf_size = ddf->conf_rec_len * 512;
2777 for (i = 0 ; i <= n_config ; i++) {
e3c2a365 2778 struct vcl *c;
2779 struct vd_config *vdc = NULL;
2780 if (i == n_config) {
7f798aca 2781 c = (struct vcl *)d->spare;
e3c2a365 2782 if (c)
2783 vdc = &c->conf;
2784 } else {
2785 unsigned int dummy;
2786 c = d->vlist[i];
2787 if (c)
2788 get_pd_index_from_refnum(
2789 c, d->disk.refnum,
2790 ddf->mppe,
2791 (const struct vd_config **)&vdc,
2792 &dummy);
2793 }
7f798aca 2794 if (c) {
dacf3dc5 2795 vdc->seqnum = header->seq;
e3c2a365 2796 vdc->crc = calc_crc(vdc, conf_size);
2797 if (write(fd, vdc, conf_size) < 0)
7f798aca 2798 break;
2799 } else {
2800 unsigned int togo = conf_size;
2801 while (togo > NULL_CONF_SZ) {
2802 if (write(fd, null_aligned, NULL_CONF_SZ) < 0)
2803 break;
2804 togo -= NULL_CONF_SZ;
2805 }
2806 if (write(fd, null_aligned, togo) < 0)
2807 break;
2808 }
2809 }
2810 if (i <= n_config)
a4057a88 2811 goto out;
7f798aca 2812
2813 d->disk.crc = calc_crc(&d->disk, 512);
2814 if (write(fd, &d->disk, 512) < 0)
a4057a88 2815 goto out;
7f798aca 2816
a4057a88 2817 ret = 1;
2818out:
2819 header->openflag = 0;
2820 header->crc = calc_crc(header, 512);
2821
2822 lseek64(fd, sector<<9, 0);
2823 if (write(fd, header, 512) < 0)
2824 ret = 0;
2825
2826 return ret;
7f798aca 2827}
2828
2829static int __write_init_super_ddf(struct supertype *st)
2830{
a322f70c 2831 struct ddf_super *ddf = st->sb;
a322f70c 2832 struct dl *d;
175593bf
DW
2833 int attempts = 0;
2834 int successes = 0;
7f798aca 2835 unsigned long long size;
42d5dfd9 2836 char *null_aligned;
0175cbf6 2837 __u32 seq;
42d5dfd9 2838
7d5a7ff3 2839 pr_state(ddf, __func__);
42d5dfd9
JS
2840 if (posix_memalign((void**)&null_aligned, 4096, NULL_CONF_SZ) != 0) {
2841 return -ENOMEM;
2842 }
2843 memset(null_aligned, 0xff, NULL_CONF_SZ);
a322f70c 2844
dc9e279c 2845 seq = ddf->active->seq + 1;
0175cbf6 2846
175593bf
DW
2847 /* try to write updated metadata,
2848 * if we catch a failure move on to the next disk
2849 */
a322f70c
DW
2850 for (d = ddf->dlist; d; d=d->next) {
2851 int fd = d->fd;
2852
2853 if (fd < 0)
2854 continue;
2855
175593bf 2856 attempts++;
a322f70c
DW
2857 /* We need to fill in the primary, (secondary) and workspace
2858 * lba's in the headers, set their checksums,
2859 * Also checksum phys, virt....
2860 *
2861 * Then write everything out, finally the anchor is written.
2862 */
2863 get_dev_size(fd, NULL, &size);
2864 size /= 512;
097bcf00 2865 if (d->workspace_lba != 0)
2866 ddf->anchor.workspace_lba = d->workspace_lba;
2867 else
2868 ddf->anchor.workspace_lba =
2869 __cpu_to_be64(size - 32*1024*2);
2870 if (d->primary_lba != 0)
2871 ddf->anchor.primary_lba = d->primary_lba;
2872 else
2873 ddf->anchor.primary_lba =
2874 __cpu_to_be64(size - 16*1024*2);
2875 if (d->secondary_lba != 0)
2876 ddf->anchor.secondary_lba = d->secondary_lba;
2877 else
2878 ddf->anchor.secondary_lba =
2879 __cpu_to_be64(size - 32*1024*2);
0175cbf6 2880 ddf->anchor.seq = seq;
a322f70c
DW
2881 memcpy(&ddf->primary, &ddf->anchor, 512);
2882 memcpy(&ddf->secondary, &ddf->anchor, 512);
2883
2884 ddf->anchor.openflag = 0xFF; /* 'open' means nothing */
2885 ddf->anchor.seq = 0xFFFFFFFF; /* no sequencing in anchor */
2886 ddf->anchor.crc = calc_crc(&ddf->anchor, 512);
2887
7f798aca 2888 if (!__write_ddf_structure(d, ddf, DDF_HEADER_PRIMARY,
2889 null_aligned))
175593bf 2890 continue;
a322f70c 2891
7f798aca 2892 if (!__write_ddf_structure(d, ddf, DDF_HEADER_SECONDARY,
2893 null_aligned))
175593bf 2894 continue;
a322f70c 2895
a322f70c 2896 lseek64(fd, (size-1)*512, SEEK_SET);
175593bf
DW
2897 if (write(fd, &ddf->anchor, 512) < 0)
2898 continue;
2899 successes++;
2900 }
42d5dfd9 2901 free(null_aligned);
175593bf 2902
175593bf 2903 return attempts != successes;
a322f70c 2904}
7a7cc504
NB
2905
2906static int write_init_super_ddf(struct supertype *st)
2907{
9b1fb677
DW
2908 struct ddf_super *ddf = st->sb;
2909 struct vcl *currentconf = ddf->currentconf;
2910
2911 /* we are done with currentconf reset it to point st at the container */
2912 ddf->currentconf = NULL;
edd8d13c
NB
2913
2914 if (st->update_tail) {
2915 /* queue the virtual_disk and vd_config as metadata updates */
2916 struct virtual_disk *vd;
2917 struct vd_config *vc;
edd8d13c
NB
2918 int len;
2919
9b1fb677 2920 if (!currentconf) {
2cc2983d
N
2921 int len = (sizeof(struct phys_disk) +
2922 sizeof(struct phys_disk_entry));
2923
2924 /* adding a disk to the container. */
2925 if (!ddf->add_list)
2926 return 0;
2927
2928 append_metadata_update(st, ddf->add_list->mdupdate, len);
2929 ddf->add_list->mdupdate = NULL;
2930 return 0;
2931 }
2932
2933 /* Newly created VD */
2934
edd8d13c
NB
2935 /* First the virtual disk. We have a slightly fake header */
2936 len = sizeof(struct virtual_disk) + sizeof(struct virtual_entry);
503975b9 2937 vd = xmalloc(len);
edd8d13c 2938 *vd = *ddf->virt;
9b1fb677
DW
2939 vd->entries[0] = ddf->virt->entries[currentconf->vcnum];
2940 vd->populated_vdes = __cpu_to_be16(currentconf->vcnum);
edd8d13c
NB
2941 append_metadata_update(st, vd, len);
2942
2943 /* Then the vd_config */
2944 len = ddf->conf_rec_len * 512;
503975b9 2945 vc = xmalloc(len);
9b1fb677 2946 memcpy(vc, &currentconf->conf, len);
edd8d13c
NB
2947 append_metadata_update(st, vc, len);
2948
2949 /* FIXME I need to close the fds! */
2950 return 0;
613b0d17 2951 } else {
d682f344
N
2952 struct dl *d;
2953 for (d = ddf->dlist; d; d=d->next)
ba728be7 2954 while (Kill(d->devname, NULL, 0, -1, 1) == 0);
1cc7f4fe 2955 return __write_init_super_ddf(st);
d682f344 2956 }
7a7cc504
NB
2957}
2958
a322f70c
DW
2959#endif
2960
387fcd59
N
2961static __u64 avail_size_ddf(struct supertype *st, __u64 devsize,
2962 unsigned long long data_offset)
a322f70c
DW
2963{
2964 /* We must reserve the last 32Meg */
2965 if (devsize <= 32*1024*2)
2966 return 0;
2967 return devsize - 32*1024*2;
2968}
2969
2970#ifndef MDASSEMBLE
8592f29d
N
2971
2972static int reserve_space(struct supertype *st, int raiddisks,
2973 unsigned long long size, int chunk,
2974 unsigned long long *freesize)
2975{
2976 /* Find 'raiddisks' spare extents at least 'size' big (but
2977 * only caring about multiples of 'chunk') and remember
2978 * them.
2979 * If the cannot be found, fail.
2980 */
2981 struct dl *dl;
2982 struct ddf_super *ddf = st->sb;
2983 int cnt = 0;
2984
2985 for (dl = ddf->dlist; dl ; dl=dl->next) {
613b0d17 2986 dl->raiddisk = -1;
8592f29d
N
2987 dl->esize = 0;
2988 }
2989 /* Now find largest extent on each device */
2990 for (dl = ddf->dlist ; dl ; dl=dl->next) {
2991 struct extent *e = get_extents(ddf, dl);
2992 unsigned long long pos = 0;
2993 int i = 0;
2994 int found = 0;
2995 unsigned long long minsize = size;
2996
2997 if (size == 0)
2998 minsize = chunk;
2999
3000 if (!e)
3001 continue;
3002 do {
3003 unsigned long long esize;
3004 esize = e[i].start - pos;
3005 if (esize >= minsize) {
3006 found = 1;
3007 minsize = esize;
3008 }
3009 pos = e[i].start + e[i].size;
3010 i++;
3011 } while (e[i-1].size);
3012 if (found) {
3013 cnt++;
3014 dl->esize = minsize;
3015 }
3016 free(e);
3017 }
3018 if (cnt < raiddisks) {
e7b84f9d 3019 pr_err("not enough devices with space to create array.\n");
8592f29d
N
3020 return 0; /* No enough free spaces large enough */
3021 }
3022 if (size == 0) {
3023 /* choose the largest size of which there are at least 'raiddisk' */
3024 for (dl = ddf->dlist ; dl ; dl=dl->next) {
3025 struct dl *dl2;
3026 if (dl->esize <= size)
3027 continue;
3028 /* This is bigger than 'size', see if there are enough */
3029 cnt = 0;
7b80ad6a 3030 for (dl2 = ddf->dlist; dl2 ; dl2=dl2->next)
8592f29d
N
3031 if (dl2->esize >= dl->esize)
3032 cnt++;
3033 if (cnt >= raiddisks)
3034 size = dl->esize;
3035 }
3036 if (chunk) {
3037 size = size / chunk;
3038 size *= chunk;
3039 }
3040 *freesize = size;
3041 if (size < 32) {
e7b84f9d 3042 pr_err("not enough spare devices to create array.\n");
8592f29d
N
3043 return 0;
3044 }
3045 }
3046 /* We have a 'size' of which there are enough spaces.
3047 * We simply do a first-fit */
3048 cnt = 0;
3049 for (dl = ddf->dlist ; dl && cnt < raiddisks ; dl=dl->next) {
3050 if (dl->esize < size)
3051 continue;
613b0d17 3052
8592f29d
N
3053 dl->raiddisk = cnt;
3054 cnt++;
3055 }
3056 return 1;
3057}
3058
2c514b71
NB
3059static int
3060validate_geometry_ddf_container(struct supertype *st,
3061 int level, int layout, int raiddisks,
3062 int chunk, unsigned long long size,
af4348dd 3063 unsigned long long data_offset,
2c514b71
NB
3064 char *dev, unsigned long long *freesize,
3065 int verbose);
78e44928
NB
3066
3067static int validate_geometry_ddf_bvd(struct supertype *st,
3068 int level, int layout, int raiddisks,
c21e737b 3069 int *chunk, unsigned long long size,
af4348dd 3070 unsigned long long data_offset,
2c514b71
NB
3071 char *dev, unsigned long long *freesize,
3072 int verbose);
78e44928
NB
3073
3074static int validate_geometry_ddf(struct supertype *st,
2c514b71 3075 int level, int layout, int raiddisks,
c21e737b 3076 int *chunk, unsigned long long size,
af4348dd 3077 unsigned long long data_offset,
2c514b71
NB
3078 char *dev, unsigned long long *freesize,
3079 int verbose)
a322f70c
DW
3080{
3081 int fd;
3082 struct mdinfo *sra;
3083 int cfd;
3084
3085 /* ddf potentially supports lots of things, but it depends on
3086 * what devices are offered (and maybe kernel version?)
3087 * If given unused devices, we will make a container.
3088 * If given devices in a container, we will make a BVD.
3089 * If given BVDs, we make an SVD, changing all the GUIDs in the process.
3090 */
3091
bb7295f1
N
3092 if (chunk && *chunk == UnSet)
3093 *chunk = DEFAULT_CHUNK;
3094
542ef4ec 3095 if (level == -1000000) level = LEVEL_CONTAINER;
a322f70c 3096 if (level == LEVEL_CONTAINER) {
78e44928
NB
3097 /* Must be a fresh device to add to a container */
3098 return validate_geometry_ddf_container(st, level, layout,
c21e737b 3099 raiddisks, chunk?*chunk:0,
af4348dd
N
3100 size, data_offset, dev,
3101 freesize,
2c514b71 3102 verbose);
5f8097be
NB
3103 }
3104
78e44928 3105 if (!dev) {
a3163bf0 3106 mdu_array_info_t array = {
3107 .level = level, .layout = layout,
3108 .raid_disks = raiddisks
3109 };
3110 struct vd_config conf;
3111 if (layout_md2ddf(&array, &conf) == -1) {
b42f577a 3112 if (verbose)
94b08b7c 3113 pr_err("DDF does not support level %d /layout %d arrays with %d disks\n",
3114 level, layout, raiddisks);
78e44928 3115 return 0;
b42f577a 3116 }
78e44928 3117 /* Should check layout? etc */
8592f29d
N
3118
3119 if (st->sb && freesize) {
3120 /* --create was given a container to create in.
3121 * So we need to check that there are enough
3122 * free spaces and return the amount of space.
3123 * We may as well remember which drives were
3124 * chosen so that add_to_super/getinfo_super
3125 * can return them.
3126 */
c21e737b 3127 return reserve_space(st, raiddisks, size, chunk?*chunk:0, freesize);
8592f29d 3128 }
a322f70c 3129 return 1;
78e44928 3130 }
a322f70c 3131
8592f29d
N
3132 if (st->sb) {
3133 /* A container has already been opened, so we are
3134 * creating in there. Maybe a BVD, maybe an SVD.
3135 * Should make a distinction one day.
3136 */
3137 return validate_geometry_ddf_bvd(st, level, layout, raiddisks,
af4348dd
N
3138 chunk, size, data_offset, dev,
3139 freesize,
8592f29d
N
3140 verbose);
3141 }
78e44928
NB
3142 /* This is the first device for the array.
3143 * If it is a container, we read it in and do automagic allocations,
3144 * no other devices should be given.
3145 * Otherwise it must be a member device of a container, and we
3146 * do manual allocation.
3147 * Later we should check for a BVD and make an SVD.
a322f70c 3148 */
a322f70c
DW
3149 fd = open(dev, O_RDONLY|O_EXCL, 0);
3150 if (fd >= 0) {
4dd2df09 3151 sra = sysfs_read(fd, NULL, GET_VERSION);
a322f70c
DW
3152 close(fd);
3153 if (sra && sra->array.major_version == -1 &&
78e44928
NB
3154 strcmp(sra->text_version, "ddf") == 0) {
3155
3156 /* load super */
3157 /* find space for 'n' devices. */
3158 /* remember the devices */
3159 /* Somehow return the fact that we have enough */
a322f70c
DW
3160 }
3161
2c514b71 3162 if (verbose)
e7b84f9d
N
3163 pr_err("ddf: Cannot create this array "
3164 "on device %s - a container is required.\n",
3165 dev);
a322f70c
DW
3166 return 0;
3167 }
3168 if (errno != EBUSY || (fd = open(dev, O_RDONLY, 0)) < 0) {
2c514b71 3169 if (verbose)
e7b84f9d 3170 pr_err("ddf: Cannot open %s: %s\n",
613b0d17 3171 dev, strerror(errno));
a322f70c
DW
3172 return 0;
3173 }
3174 /* Well, it is in use by someone, maybe a 'ddf' container. */
3175 cfd = open_container(fd);
3176 if (cfd < 0) {
3177 close(fd);
2c514b71 3178 if (verbose)
e7b84f9d 3179 pr_err("ddf: Cannot use %s: %s\n",
613b0d17 3180 dev, strerror(EBUSY));
a322f70c
DW
3181 return 0;
3182 }
4dd2df09 3183 sra = sysfs_read(cfd, NULL, GET_VERSION);
a322f70c
DW
3184 close(fd);
3185 if (sra && sra->array.major_version == -1 &&
3186 strcmp(sra->text_version, "ddf") == 0) {
3187 /* This is a member of a ddf container. Load the container
3188 * and try to create a bvd
3189 */
3190 struct ddf_super *ddf;
e1902a7b 3191 if (load_super_ddf_all(st, cfd, (void **)&ddf, NULL) == 0) {
5f8097be 3192 st->sb = ddf;
4dd2df09 3193 strcpy(st->container_devnm, fd2devnm(cfd));
a322f70c 3194 close(cfd);
78e44928 3195 return validate_geometry_ddf_bvd(st, level, layout,
a322f70c 3196 raiddisks, chunk, size,
af4348dd 3197 data_offset,
2c514b71
NB
3198 dev, freesize,
3199 verbose);
a322f70c
DW
3200 }
3201 close(cfd);
c42ec1ed
DW
3202 } else /* device may belong to a different container */
3203 return 0;
3204
a322f70c
DW
3205 return 1;
3206}
3207
2c514b71
NB
3208static int
3209validate_geometry_ddf_container(struct supertype *st,
3210 int level, int layout, int raiddisks,
3211 int chunk, unsigned long long size,
af4348dd 3212 unsigned long long data_offset,
2c514b71
NB
3213 char *dev, unsigned long long *freesize,
3214 int verbose)
a322f70c
DW
3215{
3216 int fd;
3217 unsigned long long ldsize;
3218
3219 if (level != LEVEL_CONTAINER)
3220 return 0;
3221 if (!dev)
3222 return 1;
3223
3224 fd = open(dev, O_RDONLY|O_EXCL, 0);
3225 if (fd < 0) {
2c514b71 3226 if (verbose)
e7b84f9d 3227 pr_err("ddf: Cannot open %s: %s\n",
613b0d17 3228 dev, strerror(errno));
a322f70c
DW
3229 return 0;
3230 }
3231 if (!get_dev_size(fd, dev, &ldsize)) {
3232 close(fd);
3233 return 0;
3234 }
3235 close(fd);
3236
387fcd59 3237 *freesize = avail_size_ddf(st, ldsize >> 9, INVALID_SECTORS);
ea17e7aa
N
3238 if (*freesize == 0)
3239 return 0;
a322f70c
DW
3240
3241 return 1;
3242}
3243
78e44928
NB
3244static int validate_geometry_ddf_bvd(struct supertype *st,
3245 int level, int layout, int raiddisks,
c21e737b 3246 int *chunk, unsigned long long size,
af4348dd 3247 unsigned long long data_offset,
2c514b71
NB
3248 char *dev, unsigned long long *freesize,
3249 int verbose)
a322f70c
DW
3250{
3251 struct stat stb;
3252 struct ddf_super *ddf = st->sb;
3253 struct dl *dl;
5f8097be
NB
3254 unsigned long long pos = 0;
3255 unsigned long long maxsize;
3256 struct extent *e;
3257 int i;
a322f70c 3258 /* ddf/bvd supports lots of things, but not containers */
b42f577a
N
3259 if (level == LEVEL_CONTAINER) {
3260 if (verbose)
e7b84f9d 3261 pr_err("DDF cannot create a container within an container\n");
a322f70c 3262 return 0;
b42f577a 3263 }
a322f70c
DW
3264 /* We must have the container info already read in. */
3265 if (!ddf)
3266 return 0;
3267
5f8097be
NB
3268 if (!dev) {
3269 /* General test: make sure there is space for
3270 * 'raiddisks' device extents of size 'size'.
3271 */
3272 unsigned long long minsize = size;
3273 int dcnt = 0;
3274 if (minsize == 0)
3275 minsize = 8;
3276 for (dl = ddf->dlist; dl ; dl = dl->next)
3277 {
3278 int found = 0;
7e1432fb 3279 pos = 0;
5f8097be
NB
3280
3281 i = 0;
3282 e = get_extents(ddf, dl);
3283 if (!e) continue;
3284 do {
3285 unsigned long long esize;
3286 esize = e[i].start - pos;
3287 if (esize >= minsize)
3288 found = 1;
3289 pos = e[i].start + e[i].size;
3290 i++;
3291 } while (e[i-1].size);
3292 if (found)
3293 dcnt++;
3294 free(e);
3295 }
3296 if (dcnt < raiddisks) {
2c514b71 3297 if (verbose)
e7b84f9d
N
3298 pr_err("ddf: Not enough devices with "
3299 "space for this array (%d < %d)\n",
3300 dcnt, raiddisks);
5f8097be
NB
3301 return 0;
3302 }
3303 return 1;
3304 }
a322f70c
DW
3305 /* This device must be a member of the set */
3306 if (stat(dev, &stb) < 0)
3307 return 0;
3308 if ((S_IFMT & stb.st_mode) != S_IFBLK)
3309 return 0;
3310 for (dl = ddf->dlist ; dl ; dl = dl->next) {
f21e18ca
N
3311 if (dl->major == (int)major(stb.st_rdev) &&
3312 dl->minor == (int)minor(stb.st_rdev))
a322f70c
DW
3313 break;
3314 }
5f8097be 3315 if (!dl) {
2c514b71 3316 if (verbose)
e7b84f9d 3317 pr_err("ddf: %s is not in the "
613b0d17
N
3318 "same DDF set\n",
3319 dev);
5f8097be
NB
3320 return 0;
3321 }
3322 e = get_extents(ddf, dl);
3323 maxsize = 0;
3324 i = 0;
3325 if (e) do {
613b0d17
N
3326 unsigned long long esize;
3327 esize = e[i].start - pos;
3328 if (esize >= maxsize)
3329 maxsize = esize;
3330 pos = e[i].start + e[i].size;
3331 i++;
3332 } while (e[i-1].size);
5f8097be 3333 *freesize = maxsize;
a322f70c
DW
3334 // FIXME here I am
3335
3336 return 1;
3337}
59e36268 3338
a322f70c 3339static int load_super_ddf_all(struct supertype *st, int fd,
e1902a7b 3340 void **sbp, char *devname)
a322f70c
DW
3341{
3342 struct mdinfo *sra;
3343 struct ddf_super *super;
3344 struct mdinfo *sd, *best = NULL;
3345 int bestseq = 0;
3346 int seq;
3347 char nm[20];
3348 int dfd;
3349
b526e52d 3350 sra = sysfs_read(fd, 0, GET_LEVEL|GET_VERSION|GET_DEVS|GET_STATE);
a322f70c
DW
3351 if (!sra)
3352 return 1;
3353 if (sra->array.major_version != -1 ||
3354 sra->array.minor_version != -2 ||
3355 strcmp(sra->text_version, "ddf") != 0)
3356 return 1;
3357
6416d527 3358 if (posix_memalign((void**)&super, 512, sizeof(*super)) != 0)
a322f70c 3359 return 1;
a2349791 3360 memset(super, 0, sizeof(*super));
a322f70c
DW
3361
3362 /* first, try each device, and choose the best ddf */
3363 for (sd = sra->devs ; sd ; sd = sd->next) {
3364 int rv;
3365 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
7a7cc504
NB
3366 dfd = dev_open(nm, O_RDONLY);
3367 if (dfd < 0)
a322f70c
DW
3368 return 2;
3369 rv = load_ddf_headers(dfd, super, NULL);
7a7cc504 3370 close(dfd);
a322f70c
DW
3371 if (rv == 0) {
3372 seq = __be32_to_cpu(super->active->seq);
3373 if (super->active->openflag)
3374 seq--;
3375 if (!best || seq > bestseq) {
3376 bestseq = seq;
3377 best = sd;
3378 }
3379 }
3380 }
3381 if (!best)
3382 return 1;
3383 /* OK, load this ddf */
3384 sprintf(nm, "%d:%d", best->disk.major, best->disk.minor);
3385 dfd = dev_open(nm, O_RDONLY);
7a7cc504 3386 if (dfd < 0)
a322f70c
DW
3387 return 1;
3388 load_ddf_headers(dfd, super, NULL);
3389 load_ddf_global(dfd, super, NULL);
3390 close(dfd);
3391 /* Now we need the device-local bits */
3392 for (sd = sra->devs ; sd ; sd = sd->next) {
3d2c4fc7
DW
3393 int rv;
3394
a322f70c 3395 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
e1902a7b 3396 dfd = dev_open(nm, O_RDWR);
7a7cc504 3397 if (dfd < 0)
a322f70c 3398 return 2;
3d2c4fc7
DW
3399 rv = load_ddf_headers(dfd, super, NULL);
3400 if (rv == 0)
e1902a7b 3401 rv = load_ddf_local(dfd, super, NULL, 1);
3d2c4fc7
DW
3402 if (rv)
3403 return 1;
a322f70c 3404 }
33414a01 3405
a322f70c
DW
3406 *sbp = super;
3407 if (st->ss == NULL) {
78e44928 3408 st->ss = &super_ddf;
a322f70c
DW
3409 st->minor_version = 0;
3410 st->max_devs = 512;
3411 }
4dd2df09 3412 strcpy(st->container_devnm, fd2devnm(fd));
a322f70c
DW
3413 return 0;
3414}
2b959fbf
N
3415
3416static int load_container_ddf(struct supertype *st, int fd,
3417 char *devname)
3418{
3419 return load_super_ddf_all(st, fd, &st->sb, devname);
3420}
3421
0e600426 3422#endif /* MDASSEMBLE */
a322f70c 3423
a5c7adb3 3424static int check_secondary(const struct vcl *vc)
3425{
3426 const struct vd_config *conf = &vc->conf;
3427 int i;
3428
3429 /* The only DDF secondary RAID level md can support is
3430 * RAID 10, if the stripe sizes and Basic volume sizes
3431 * are all equal.
3432 * Other configurations could in theory be supported by exposing
3433 * the BVDs to user space and using device mapper for the secondary
3434 * mapping. So far we don't support that.
3435 */
3436
3437 __u64 sec_elements[4] = {0, 0, 0, 0};
3438#define __set_sec_seen(n) (sec_elements[(n)>>6] |= (1<<((n)&63)))
3439#define __was_sec_seen(n) ((sec_elements[(n)>>6] & (1<<((n)&63))) != 0)
3440
3441 if (vc->other_bvds == NULL) {
3442 pr_err("No BVDs for secondary RAID found\n");
3443 return -1;
3444 }
3445 if (conf->prl != DDF_RAID1) {
3446 pr_err("Secondary RAID level only supported for mirrored BVD\n");
3447 return -1;
3448 }
3449 if (conf->srl != DDF_2STRIPED && conf->srl != DDF_2SPANNED) {
3450 pr_err("Secondary RAID level %d is unsupported\n",
3451 conf->srl);
3452 return -1;
3453 }
3454 __set_sec_seen(conf->sec_elmnt_seq);
3455 for (i = 0; i < conf->sec_elmnt_count-1; i++) {
3456 const struct vd_config *bvd = vc->other_bvds[i];
3c48f7be 3457 if (bvd->sec_elmnt_seq == DDF_UNUSED_BVD)
c98567ba 3458 continue;
a5c7adb3 3459 if (bvd->srl != conf->srl) {
3460 pr_err("Inconsistent secondary RAID level across BVDs\n");
3461 return -1;
3462 }
3463 if (bvd->prl != conf->prl) {
3464 pr_err("Different RAID levels for BVDs are unsupported\n");
3465 return -1;
3466 }
3467 if (bvd->prim_elmnt_count != conf->prim_elmnt_count) {
3468 pr_err("All BVDs must have the same number of primary elements\n");
3469 return -1;
3470 }
3471 if (bvd->chunk_shift != conf->chunk_shift) {
3472 pr_err("Different strip sizes for BVDs are unsupported\n");
3473 return -1;
3474 }
3475 if (bvd->array_blocks != conf->array_blocks) {
3476 pr_err("Different BVD sizes are unsupported\n");
3477 return -1;
3478 }
3479 __set_sec_seen(bvd->sec_elmnt_seq);
3480 }
3481 for (i = 0; i < conf->sec_elmnt_count; i++) {
3482 if (!__was_sec_seen(i)) {
3483 pr_err("BVD %d is missing\n", i);
3484 return -1;
3485 }
3486 }
3487 return 0;
3488}
3489
8a38db86 3490static unsigned int get_pd_index_from_refnum(const struct vcl *vc,
4e587018 3491 __u32 refnum, unsigned int nmax,
3492 const struct vd_config **bvd,
3493 unsigned int *idx)
8a38db86 3494{
4e587018 3495 unsigned int i, j, n, sec, cnt;
3496
3497 cnt = __be16_to_cpu(vc->conf.prim_elmnt_count);
3498 sec = (vc->conf.sec_elmnt_count == 1 ? 0 : vc->conf.sec_elmnt_seq);
3499
3500 for (i = 0, j = 0 ; i < nmax ; i++) {
3501 /* j counts valid entries for this BVD */
3502 if (vc->conf.phys_refnum[i] != 0xffffffff)
3503 j++;
3504 if (vc->conf.phys_refnum[i] == refnum) {
3505 *bvd = &vc->conf;
3506 *idx = i;
3507 return sec * cnt + j - 1;
3508 }
3509 }
3510 if (vc->other_bvds == NULL)
3511 goto bad;
3512
3513 for (n = 1; n < vc->conf.sec_elmnt_count; n++) {
3514 struct vd_config *vd = vc->other_bvds[n-1];
4e587018 3515 sec = vd->sec_elmnt_seq;
3c48f7be 3516 if (sec == DDF_UNUSED_BVD)
3517 continue;
4e587018 3518 for (i = 0, j = 0 ; i < nmax ; i++) {
3519 if (vd->phys_refnum[i] != 0xffffffff)
3520 j++;
3521 if (vd->phys_refnum[i] == refnum) {
3522 *bvd = vd;
3523 *idx = i;
3524 return sec * cnt + j - 1;
3525 }
3526 }
3527 }
3528bad:
3529 *bvd = NULL;
d6e7b083 3530 return DDF_NOTFOUND;
8a38db86 3531}
3532
00bbdbda 3533static struct mdinfo *container_content_ddf(struct supertype *st, char *subarray)
598f0d58
NB
3534{
3535 /* Given a container loaded by load_super_ddf_all,
3536 * extract information about all the arrays into
3537 * an mdinfo tree.
3538 *
3539 * For each vcl in conflist: create an mdinfo, fill it in,
3540 * then look for matching devices (phys_refnum) in dlist
3541 * and create appropriate device mdinfo.
3542 */
3543 struct ddf_super *ddf = st->sb;
3544 struct mdinfo *rest = NULL;
3545 struct vcl *vc;
3546
3547 for (vc = ddf->conflist ; vc ; vc=vc->next)
3548 {
f21e18ca
N
3549 unsigned int i;
3550 unsigned int j;
598f0d58 3551 struct mdinfo *this;
00bbdbda 3552 char *ep;
90fa1a29 3553 __u32 *cptr;
8a38db86 3554 unsigned int pd;
00bbdbda
N
3555
3556 if (subarray &&
3557 (strtoul(subarray, &ep, 10) != vc->vcnum ||
3558 *ep != '\0'))
3559 continue;
3560
a5c7adb3 3561 if (vc->conf.sec_elmnt_count > 1) {
3562 if (check_secondary(vc) != 0)
3563 continue;
3564 }
3565
503975b9 3566 this = xcalloc(1, sizeof(*this));
598f0d58
NB
3567 this->next = rest;
3568 rest = this;
3569
8a2848a7 3570 if (layout_ddf2md(&vc->conf, &this->array))
3571 continue;
598f0d58 3572 this->array.md_minor = -1;
f35f2525
N
3573 this->array.major_version = -1;
3574 this->array.minor_version = -2;
90fa1a29
JS
3575 cptr = (__u32 *)(vc->conf.guid + 16);
3576 this->array.ctime = DECADE + __be32_to_cpu(*cptr);
598f0d58
NB
3577 this->array.utime = DECADE +
3578 __be32_to_cpu(vc->conf.timestamp);
3579 this->array.chunk_size = 512 << vc->conf.chunk_shift;
3580
59e36268 3581 i = vc->vcnum;
7a7cc504
NB
3582 if ((ddf->virt->entries[i].state & DDF_state_inconsistent) ||
3583 (ddf->virt->entries[i].init_state & DDF_initstate_mask) !=
ed9d66aa 3584 DDF_init_full) {
598f0d58 3585 this->array.state = 0;
ed9d66aa
NB
3586 this->resync_start = 0;
3587 } else {
598f0d58 3588 this->array.state = 1;
b7528a20 3589 this->resync_start = MaxSector;
ed9d66aa 3590 }
db42fa9b
N
3591 memcpy(this->name, ddf->virt->entries[i].name, 16);
3592 this->name[16]=0;
3593 for(j=0; j<16; j++)
3594 if (this->name[j] == ' ')
3595 this->name[j] = 0;
598f0d58
NB
3596
3597 memset(this->uuid, 0, sizeof(this->uuid));
3598 this->component_size = __be64_to_cpu(vc->conf.blocks);
3599 this->array.size = this->component_size / 2;
5f2aace8 3600 this->container_member = i;
598f0d58 3601
c5afc314
N
3602 ddf->currentconf = vc;
3603 uuid_from_super_ddf(st, this->uuid);
3604 ddf->currentconf = NULL;
3605
60f18132 3606 sprintf(this->text_version, "/%s/%d",
4dd2df09 3607 st->container_devnm, this->container_member);
60f18132 3608
8a38db86 3609 for (pd = 0; pd < __be16_to_cpu(ddf->phys->used_pdes); pd++) {
598f0d58
NB
3610 struct mdinfo *dev;
3611 struct dl *d;
4e587018 3612 const struct vd_config *bvd;
3613 unsigned int iphys;
fa033bec 3614 int stt;
598f0d58 3615
8a38db86 3616 if (ddf->phys->entries[pd].refnum == 0xFFFFFFFF)
bc17324f 3617 continue;
0cf5ef67
N
3618
3619 stt = __be16_to_cpu(ddf->phys->entries[pd].state);
fa033bec
N
3620 if ((stt & (DDF_Online|DDF_Failed|DDF_Rebuilding))
3621 != DDF_Online)
3622 continue;
3623
8a38db86 3624 i = get_pd_index_from_refnum(
4e587018 3625 vc, ddf->phys->entries[pd].refnum,
3626 ddf->mppe, &bvd, &iphys);
d6e7b083 3627 if (i == DDF_NOTFOUND)
8a38db86 3628 continue;
3629
fa033bec 3630 this->array.working_disks++;
bc17324f 3631
0cf5ef67 3632 for (d = ddf->dlist; d ; d=d->next)
8a38db86 3633 if (d->disk.refnum ==
3634 ddf->phys->entries[pd].refnum)
0cf5ef67
N
3635 break;
3636 if (d == NULL)
3637 /* Haven't found that one yet, maybe there are others */
3638 continue;
3639
503975b9 3640 dev = xcalloc(1, sizeof(*dev));
598f0d58
NB
3641 dev->next = this->devs;
3642 this->devs = dev;
3643
3644 dev->disk.number = __be32_to_cpu(d->disk.refnum);
3645 dev->disk.major = d->major;
3646 dev->disk.minor = d->minor;
3647 dev->disk.raid_disk = i;
3648 dev->disk.state = (1<<MD_DISK_SYNC)|(1<<MD_DISK_ACTIVE);
d23534e4 3649 dev->recovery_start = MaxSector;
598f0d58 3650
120f7677 3651 dev->events = __be32_to_cpu(ddf->primary.seq);
57a66662 3652 dev->data_offset =
3653 __be64_to_cpu(LBA_OFFSET(ddf, bvd)[iphys]);
4e587018 3654 dev->component_size = __be64_to_cpu(bvd->blocks);
598f0d58
NB
3655 if (d->devname)
3656 strcpy(dev->name, d->devname);
3657 }
3658 }
3659 return rest;
3660}
3661
955e9ea1 3662static int store_super_ddf(struct supertype *st, int fd)
a322f70c 3663{
955e9ea1 3664 struct ddf_super *ddf = st->sb;
a322f70c 3665 unsigned long long dsize;
6416d527 3666 void *buf;
3d2c4fc7 3667 int rc;
a322f70c 3668
955e9ea1
DW
3669 if (!ddf)
3670 return 1;
3671
a322f70c
DW
3672 if (!get_dev_size(fd, NULL, &dsize))
3673 return 1;
3674
dbf98368 3675 if (ddf->dlist || ddf->conflist) {
3676 struct stat sta;
3677 struct dl *dl;
3678 int ofd, ret;
3679
3680 if (fstat(fd, &sta) == -1 || !S_ISBLK(sta.st_mode)) {
3681 pr_err("%s: file descriptor for invalid device\n",
3682 __func__);
3683 return 1;
3684 }
3685 for (dl = ddf->dlist; dl; dl = dl->next)
3686 if (dl->major == (int)major(sta.st_rdev) &&
3687 dl->minor == (int)minor(sta.st_rdev))
3688 break;
3689 if (!dl) {
3690 pr_err("%s: couldn't find disk %d/%d\n", __func__,
3691 (int)major(sta.st_rdev),
3692 (int)minor(sta.st_rdev));
3693 return 1;
3694 }
3695 /*
3696 For DDF, writing to just one disk makes no sense.
3697 We would run the risk of writing inconsistent meta data
3698 to the devices. So just call __write_init_super_ddf and
3699 write to all devices, including this one.
3700 Use the fd passed to this function, just in case dl->fd
3701 is invalid.
3702 */
3703 ofd = dl->fd;
3704 dl->fd = fd;
3705 ret = __write_init_super_ddf(st);
3706 dl->fd = ofd;
3707 return ret;
3708 }
3709
3d2c4fc7
DW
3710 if (posix_memalign(&buf, 512, 512) != 0)
3711 return 1;
6416d527
NB
3712 memset(buf, 0, 512);
3713
a322f70c 3714 lseek64(fd, dsize-512, 0);
3d2c4fc7 3715 rc = write(fd, buf, 512);
6416d527 3716 free(buf);
3d2c4fc7
DW
3717 if (rc < 0)
3718 return 1;
a322f70c
DW
3719 return 0;
3720}
3721
a19c88b8
NB
3722static int compare_super_ddf(struct supertype *st, struct supertype *tst)
3723{
3724 /*
3725 * return:
3726 * 0 same, or first was empty, and second was copied
3727 * 1 second had wrong number
3728 * 2 wrong uuid
3729 * 3 wrong other info
3730 */
3731 struct ddf_super *first = st->sb;
3732 struct ddf_super *second = tst->sb;
4eefd651 3733 struct dl *dl1, *dl2;
3734 struct vcl *vl1, *vl2;
2d210697 3735 unsigned int max_vds, max_pds, pd, vd;
a19c88b8
NB
3736
3737 if (!first) {
3738 st->sb = tst->sb;
3739 tst->sb = NULL;
3740 return 0;
3741 }
3742
3743 if (memcmp(first->anchor.guid, second->anchor.guid, DDF_GUID_LEN) != 0)
3744 return 2;
3745
2d210697 3746 if (first->anchor.seq != second->anchor.seq) {
3747 dprintf("%s: sequence number mismatch %u/%u\n", __func__,
3748 __be32_to_cpu(first->anchor.seq),
3749 __be32_to_cpu(second->anchor.seq));
3750 return 3;
3751 }
3752 if (first->max_part != second->max_part ||
3753 first->phys->used_pdes != second->phys->used_pdes ||
3754 first->virt->populated_vdes != second->virt->populated_vdes) {
3755 dprintf("%s: PD/VD number mismatch\n", __func__);
3756 return 3;
3757 }
3758
3759 max_pds = __be16_to_cpu(first->phys->used_pdes);
3760 for (dl2 = second->dlist; dl2; dl2 = dl2->next) {
3761 for (pd = 0; pd < max_pds; pd++)
3762 if (first->phys->entries[pd].refnum == dl2->disk.refnum)
3763 break;
3764 if (pd == max_pds) {
3765 dprintf("%s: no match for disk %08x\n", __func__,
3766 __be32_to_cpu(dl2->disk.refnum));
3767 return 3;
3768 }
3769 }
3770
3771 max_vds = __be16_to_cpu(first->active->max_vd_entries);
3772 for (vl2 = second->conflist; vl2; vl2 = vl2->next) {
3773 if (vl2->conf.magic != DDF_VD_CONF_MAGIC)
3774 continue;
3775 for (vd = 0; vd < max_vds; vd++)
3776 if (!memcmp(first->virt->entries[vd].guid,
3777 vl2->conf.guid, DDF_GUID_LEN))
3778 break;
3779 if (vd == max_vds) {
3780 dprintf("%s: no match for VD config\n", __func__);
3781 return 3;
3782 }
3783 }
a19c88b8 3784 /* FIXME should I look at anything else? */
2d210697 3785
4eefd651 3786 /*
3787 At this point we are fairly sure that the meta data matches.
3788 But the new disk may contain additional local data.
3789 Add it to the super block.
3790 */
3791 for (vl2 = second->conflist; vl2; vl2 = vl2->next) {
3792 for (vl1 = first->conflist; vl1; vl1 = vl1->next)
3793 if (!memcmp(vl1->conf.guid, vl2->conf.guid,
3794 DDF_GUID_LEN))
3795 break;
3796 if (vl1) {
3797 if (vl1->other_bvds != NULL &&
3798 vl1->conf.sec_elmnt_seq !=
3799 vl2->conf.sec_elmnt_seq) {
3800 dprintf("%s: adding BVD %u\n", __func__,
3801 vl2->conf.sec_elmnt_seq);
3802 add_other_bvd(vl1, &vl2->conf,
3803 first->conf_rec_len*512);
3804 }
3805 continue;
3806 }
3807
3808 if (posix_memalign((void **)&vl1, 512,
3809 (first->conf_rec_len*512 +
3810 offsetof(struct vcl, conf))) != 0) {
3811 pr_err("%s could not allocate vcl buf\n",
3812 __func__);
3813 return 3;
3814 }
3815
3816 vl1->next = first->conflist;
3817 vl1->block_sizes = NULL;
4eefd651 3818 memcpy(&vl1->conf, &vl2->conf, first->conf_rec_len*512);
3c48f7be 3819 if (alloc_other_bvds(first, vl1) != 0) {
3820 pr_err("%s could not allocate other bvds\n",
3821 __func__);
3822 free(vl1);
3823 return 3;
3824 }
4eefd651 3825 for (vd = 0; vd < max_vds; vd++)
3826 if (!memcmp(first->virt->entries[vd].guid,
3827 vl1->conf.guid, DDF_GUID_LEN))
3828 break;
3829 vl1->vcnum = vd;
3830 dprintf("%s: added config for VD %u\n", __func__, vl1->vcnum);
3831 first->conflist = vl1;
3832 }
3833
3834 for (dl2 = second->dlist; dl2; dl2 = dl2->next) {
3835 for (dl1 = first->dlist; dl1; dl1 = dl1->next)
3836 if (dl1->disk.refnum == dl2->disk.refnum)
3837 break;
3838 if (dl1)
3839 continue;
3840
3841 if (posix_memalign((void **)&dl1, 512,
3842 sizeof(*dl1) + (first->max_part) * sizeof(dl1->vlist[0]))
3843 != 0) {
3844 pr_err("%s could not allocate disk info buffer\n",
3845 __func__);
3846 return 3;
3847 }
3848 memcpy(dl1, dl2, sizeof(*dl1));
3849 dl1->mdupdate = NULL;
3850 dl1->next = first->dlist;
3851 dl1->fd = -1;
3852 for (pd = 0; pd < max_pds; pd++)
3853 if (first->phys->entries[pd].refnum == dl1->disk.refnum)
3854 break;
3855 dl1->pdnum = pd;
3856 if (dl2->spare) {
3857 if (posix_memalign((void **)&dl1->spare, 512,
3858 first->conf_rec_len*512) != 0) {
3859 pr_err("%s could not allocate spare info buf\n",
3860 __func__);
3861 return 3;
3862 }
3863 memcpy(dl1->spare, dl2->spare, first->conf_rec_len*512);
3864 }
3865 for (vd = 0 ; vd < first->max_part ; vd++) {
3866 if (!dl2->vlist[vd]) {
3867 dl1->vlist[vd] = NULL;
3868 continue;
3869 }
3870 for (vl1 = first->conflist; vl1; vl1 = vl1->next) {
3871 if (!memcmp(vl1->conf.guid,
3872 dl2->vlist[vd]->conf.guid,
3873 DDF_GUID_LEN))
3874 break;
3875 dl1->vlist[vd] = vl1;
3876 }
3877 }
3878 first->dlist = dl1;
3879 dprintf("%s: added disk %d: %08x\n", __func__, dl1->pdnum,
3880 dl1->disk.refnum);
3881 }
3882
a19c88b8
NB
3883 return 0;
3884}
3885
0e600426 3886#ifndef MDASSEMBLE
4e5528c6
NB
3887/*
3888 * A new array 'a' has been started which claims to be instance 'inst'
3889 * within container 'c'.
3890 * We need to confirm that the array matches the metadata in 'c' so
3891 * that we don't corrupt any metadata.
3892 */
cba0191b 3893static int ddf_open_new(struct supertype *c, struct active_array *a, char *inst)
549e9569 3894{
a2aa439e 3895 struct ddf_super *ddf = c->sb;
3896 int n = atoi(inst);
fb9d0acb 3897 if (all_ff(ddf->virt->entries[n].guid)) {
3898 pr_err("%s: subarray %d doesn't exist\n", __func__, n);
a2aa439e 3899 return -ENODEV;
3900 }
3901 dprintf("ddf: open_new %d\n", n);
3902 a->info.container_member = n;
549e9569
NB
3903 return 0;
3904}
3905
4e5528c6
NB
3906/*
3907 * The array 'a' is to be marked clean in the metadata.
ed9d66aa 3908 * If '->resync_start' is not ~(unsigned long long)0, then the array is only
4e5528c6
NB
3909 * clean up to the point (in sectors). If that cannot be recorded in the
3910 * metadata, then leave it as dirty.
3911 *
3912 * For DDF, we need to clear the DDF_state_inconsistent bit in the
3913 * !global! virtual_disk.virtual_entry structure.
3914 */
01f157d7 3915static int ddf_set_array_state(struct active_array *a, int consistent)
549e9569 3916{
4e5528c6
NB
3917 struct ddf_super *ddf = a->container->sb;
3918 int inst = a->info.container_member;
18a2f463 3919 int old = ddf->virt->entries[inst].state;
01f157d7
N
3920 if (consistent == 2) {
3921 /* Should check if a recovery should be started FIXME */
3922 consistent = 1;
b7941fd6 3923 if (!is_resync_complete(&a->info))
01f157d7
N
3924 consistent = 0;
3925 }
ed9d66aa
NB
3926 if (consistent)
3927 ddf->virt->entries[inst].state &= ~DDF_state_inconsistent;
3928 else
4e5528c6 3929 ddf->virt->entries[inst].state |= DDF_state_inconsistent;
18a2f463 3930 if (old != ddf->virt->entries[inst].state)
7d5a7ff3 3931 ddf_set_updates_pending(ddf);
18a2f463
NB
3932
3933 old = ddf->virt->entries[inst].init_state;
ed9d66aa 3934 ddf->virt->entries[inst].init_state &= ~DDF_initstate_mask;
b7941fd6 3935 if (is_resync_complete(&a->info))
ed9d66aa 3936 ddf->virt->entries[inst].init_state |= DDF_init_full;
b7941fd6 3937 else if (a->info.resync_start == 0)
ed9d66aa 3938 ddf->virt->entries[inst].init_state |= DDF_init_not;
4e5528c6 3939 else
ed9d66aa 3940 ddf->virt->entries[inst].init_state |= DDF_init_quick;
18a2f463 3941 if (old != ddf->virt->entries[inst].init_state)
7d5a7ff3 3942 ddf_set_updates_pending(ddf);
ed9d66aa 3943
2c514b71 3944 dprintf("ddf mark %d %s %llu\n", inst, consistent?"clean":"dirty",
b7941fd6 3945 a->info.resync_start);
01f157d7 3946 return consistent;
fd7cde1b
DW
3947}
3948
5ec636b7 3949static int get_bvd_state(const struct ddf_super *ddf,
3950 const struct vd_config *vc)
3951{
3952 unsigned int i, n_bvd, working = 0;
3953 unsigned int n_prim = __be16_to_cpu(vc->prim_elmnt_count);
3954 int pd, st, state;
3955 for (i = 0; i < n_prim; i++) {
3956 if (!find_index_in_bvd(ddf, vc, i, &n_bvd))
3957 continue;
3958 pd = find_phys(ddf, vc->phys_refnum[n_bvd]);
3959 if (pd < 0)
3960 continue;
3961 st = __be16_to_cpu(ddf->phys->entries[pd].state);
3962 if ((st & (DDF_Online|DDF_Failed|DDF_Rebuilding))
3963 == DDF_Online)
3964 working++;
3965 }
3966
3967 state = DDF_state_degraded;
3968 if (working == n_prim)
3969 state = DDF_state_optimal;
3970 else
3971 switch (vc->prl) {
3972 case DDF_RAID0:
3973 case DDF_CONCAT:
3974 case DDF_JBOD:
3975 state = DDF_state_failed;
3976 break;
3977 case DDF_RAID1:
3978 if (working == 0)
3979 state = DDF_state_failed;
3980 else if (working >= 2)
3981 state = DDF_state_part_optimal;
3982 break;
3983 case DDF_RAID4:
3984 case DDF_RAID5:
3985 if (working < n_prim - 1)
3986 state = DDF_state_failed;
3987 break;
3988 case DDF_RAID6:
3989 if (working < n_prim - 2)
3990 state = DDF_state_failed;
3991 else if (working == n_prim - 1)
3992 state = DDF_state_part_optimal;
3993 break;
3994 }
3995 return state;
3996}
3997
0777d17d 3998static int secondary_state(int state, int other, int seclevel)
3999{
4000 if (state == DDF_state_optimal && other == DDF_state_optimal)
4001 return DDF_state_optimal;
4002 if (seclevel == DDF_2MIRRORED) {
4003 if (state == DDF_state_optimal || other == DDF_state_optimal)
4004 return DDF_state_part_optimal;
4005 if (state == DDF_state_failed && other == DDF_state_failed)
4006 return DDF_state_failed;
4007 return DDF_state_degraded;
4008 } else {
4009 if (state == DDF_state_failed || other == DDF_state_failed)
4010 return DDF_state_failed;
4011 if (state == DDF_state_degraded || other == DDF_state_degraded)
4012 return DDF_state_degraded;
4013 return DDF_state_part_optimal;
4014 }
4015}
4016
4017static int get_svd_state(const struct ddf_super *ddf, const struct vcl *vcl)
4018{
4019 int state = get_bvd_state(ddf, &vcl->conf);
4020 unsigned int i;
4021 for (i = 1; i < vcl->conf.sec_elmnt_count; i++) {
4022 state = secondary_state(
4023 state,
4024 get_bvd_state(ddf, vcl->other_bvds[i-1]),
4025 vcl->conf.srl);
4026 }
4027 return state;
4028}
4029
7a7cc504
NB
4030/*
4031 * The state of each disk is stored in the global phys_disk structure
4032 * in phys_disk.entries[n].state.
4033 * This makes various combinations awkward.
4034 * - When a device fails in any array, it must be failed in all arrays
4035 * that include a part of this device.
4036 * - When a component is rebuilding, we cannot include it officially in the
4037 * array unless this is the only array that uses the device.
4038 *
4039 * So: when transitioning:
4040 * Online -> failed, just set failed flag. monitor will propagate
4041 * spare -> online, the device might need to be added to the array.
4042 * spare -> failed, just set failed. Don't worry if in array or not.
4043 */
8d45d196 4044static void ddf_set_disk(struct active_array *a, int n, int state)
549e9569 4045{
7a7cc504 4046 struct ddf_super *ddf = a->container->sb;
baba3f4e 4047 unsigned int inst = a->info.container_member, n_bvd;
4048 struct vcl *vcl;
4049 struct vd_config *vc = find_vdcr(ddf, inst, (unsigned int)n,
4050 &n_bvd, &vcl);
4051 int pd;
e1316fab
N
4052 struct mdinfo *mdi;
4053 struct dl *dl;
7a7cc504
NB
4054
4055 if (vc == NULL) {
2c514b71 4056 dprintf("ddf: cannot find instance %d!!\n", inst);
7a7cc504
NB
4057 return;
4058 }
e1316fab
N
4059 /* Find the matching slot in 'info'. */
4060 for (mdi = a->info.devs; mdi; mdi = mdi->next)
4061 if (mdi->disk.raid_disk == n)
4062 break;
4063 if (!mdi)
4064 return;
4065
4066 /* and find the 'dl' entry corresponding to that. */
4067 for (dl = ddf->dlist; dl; dl = dl->next)
77632af9
N
4068 if (mdi->state_fd >= 0 &&
4069 mdi->disk.major == dl->major &&
e1316fab
N
4070 mdi->disk.minor == dl->minor)
4071 break;
4072 if (!dl)
4073 return;
4074
baba3f4e 4075 pd = find_phys(ddf, vc->phys_refnum[n_bvd]);
e1316fab
N
4076 if (pd < 0 || pd != dl->pdnum) {
4077 /* disk doesn't currently exist or has changed.
4078 * If it is now in_sync, insert it. */
baba3f4e 4079 dprintf("%s: phys disk not found for %d: %d/%d ref %08x\n",
4080 __func__, dl->pdnum, dl->major, dl->minor,
4081 dl->disk.refnum);
4082 dprintf("%s: array %u disk %u ref %08x pd %d\n",
4083 __func__, inst, n_bvd, vc->phys_refnum[n_bvd], pd);
7a7cc504 4084 if ((state & DS_INSYNC) && ! (state & DS_FAULTY)) {
baba3f4e 4085 pd = dl->pdnum; /* FIXME: is this really correct ? */
4086 vc->phys_refnum[n_bvd] = dl->disk.refnum;
57a66662 4087 LBA_OFFSET(ddf, vc)[n_bvd] =
4088 __cpu_to_be64(mdi->data_offset);
e1316fab
N
4089 ddf->phys->entries[pd].type &=
4090 ~__cpu_to_be16(DDF_Global_Spare);
4091 ddf->phys->entries[pd].type |=
4092 __cpu_to_be16(DDF_Active_in_VD);
7d5a7ff3 4093 ddf_set_updates_pending(ddf);
7a7cc504
NB
4094 }
4095 } else {
18a2f463 4096 int old = ddf->phys->entries[pd].state;
7a7cc504
NB
4097 if (state & DS_FAULTY)
4098 ddf->phys->entries[pd].state |= __cpu_to_be16(DDF_Failed);
4099 if (state & DS_INSYNC) {
4100 ddf->phys->entries[pd].state |= __cpu_to_be16(DDF_Online);
4101 ddf->phys->entries[pd].state &= __cpu_to_be16(~DDF_Rebuilding);
4102 }
18a2f463 4103 if (old != ddf->phys->entries[pd].state)
7d5a7ff3 4104 ddf_set_updates_pending(ddf);
7a7cc504
NB
4105 }
4106
2c514b71 4107 dprintf("ddf: set_disk %d to %x\n", n, state);
7e1432fb 4108
7a7cc504
NB
4109 /* Now we need to check the state of the array and update
4110 * virtual_disk.entries[n].state.
4111 * It needs to be one of "optimal", "degraded", "failed".
4112 * I don't understand 'deleted' or 'missing'.
4113 */
0777d17d 4114 state = get_svd_state(ddf, vcl);
7a7cc504 4115
18a2f463
NB
4116 if (ddf->virt->entries[inst].state !=
4117 ((ddf->virt->entries[inst].state & ~DDF_state_mask)
4118 | state)) {
4119
4120 ddf->virt->entries[inst].state =
4121 (ddf->virt->entries[inst].state & ~DDF_state_mask)
4122 | state;
7d5a7ff3 4123 ddf_set_updates_pending(ddf);
18a2f463 4124 }
7a7cc504 4125
549e9569
NB
4126}
4127
2e735d19 4128static void ddf_sync_metadata(struct supertype *st)
549e9569 4129{
7a7cc504
NB
4130
4131 /*
4132 * Write all data to all devices.
4133 * Later, we might be able to track whether only local changes
4134 * have been made, or whether any global data has been changed,
4135 * but ddf is sufficiently weird that it probably always
4136 * changes global data ....
4137 */
18a2f463
NB
4138 struct ddf_super *ddf = st->sb;
4139 if (!ddf->updates_pending)
4140 return;
4141 ddf->updates_pending = 0;
1cc7f4fe 4142 __write_init_super_ddf(st);
2c514b71 4143 dprintf("ddf: sync_metadata\n");
549e9569
NB
4144}
4145
88c164f4
NB
4146static void ddf_process_update(struct supertype *st,
4147 struct metadata_update *update)
4148{
4149 /* Apply this update to the metadata.
4150 * The first 4 bytes are a DDF_*_MAGIC which guides
4151 * our actions.
4152 * Possible update are:
4153 * DDF_PHYS_RECORDS_MAGIC
4dd968cc
N
4154 * Add a new physical device or remove an old one.
4155 * Changes to this record only happen implicitly.
88c164f4
NB
4156 * used_pdes is the device number.
4157 * DDF_VIRT_RECORDS_MAGIC
4158 * Add a new VD. Possibly also change the 'access' bits.
4159 * populated_vdes is the entry number.
4160 * DDF_VD_CONF_MAGIC
4161 * New or updated VD. the VIRT_RECORD must already
4162 * exist. For an update, phys_refnum and lba_offset
4163 * (at least) are updated, and the VD_CONF must
4164 * be written to precisely those devices listed with
4165 * a phys_refnum.
4166 * DDF_SPARE_ASSIGN_MAGIC
4167 * replacement Spare Assignment Record... but for which device?
4168 *
4169 * So, e.g.:
4170 * - to create a new array, we send a VIRT_RECORD and
4171 * a VD_CONF. Then assemble and start the array.
4172 * - to activate a spare we send a VD_CONF to add the phys_refnum
4173 * and offset. This will also mark the spare as active with
4174 * a spare-assignment record.
4175 */
4176 struct ddf_super *ddf = st->sb;
4177 __u32 *magic = (__u32*)update->buf;
4178 struct phys_disk *pd;
4179 struct virtual_disk *vd;
4180 struct vd_config *vc;
4181 struct vcl *vcl;
4182 struct dl *dl;
f21e18ca
N
4183 unsigned int mppe;
4184 unsigned int ent;
c7079c84 4185 unsigned int pdnum, pd2;
88c164f4 4186
2c514b71 4187 dprintf("Process update %x\n", *magic);
7e1432fb 4188
88c164f4
NB
4189 switch (*magic) {
4190 case DDF_PHYS_RECORDS_MAGIC:
4191
4192 if (update->len != (sizeof(struct phys_disk) +
4193 sizeof(struct phys_disk_entry)))
4194 return;
4195 pd = (struct phys_disk*)update->buf;
4196
4197 ent = __be16_to_cpu(pd->used_pdes);
4198 if (ent >= __be16_to_cpu(ddf->phys->max_pdes))
4199 return;
4dd968cc
N
4200 if (pd->entries[0].state & __cpu_to_be16(DDF_Missing)) {
4201 struct dl **dlp;
4202 /* removing this disk. */
4203 ddf->phys->entries[ent].state |= __cpu_to_be16(DDF_Missing);
4204 for (dlp = &ddf->dlist; *dlp; dlp = &(*dlp)->next) {
4205 struct dl *dl = *dlp;
4206 if (dl->pdnum == (signed)ent) {
4207 close(dl->fd);
4208 dl->fd = -1;
4209 /* FIXME this doesn't free
4210 * dl->devname */
4211 update->space = dl;
4212 *dlp = dl->next;
4213 break;
4214 }
4215 }
7d5a7ff3 4216 ddf_set_updates_pending(ddf);
4dd968cc
N
4217 return;
4218 }
88c164f4
NB
4219 if (!all_ff(ddf->phys->entries[ent].guid))
4220 return;
4221 ddf->phys->entries[ent] = pd->entries[0];
4222 ddf->phys->used_pdes = __cpu_to_be16(1 +
613b0d17 4223 __be16_to_cpu(ddf->phys->used_pdes));
7d5a7ff3 4224 ddf_set_updates_pending(ddf);
2cc2983d
N
4225 if (ddf->add_list) {
4226 struct active_array *a;
4227 struct dl *al = ddf->add_list;
4228 ddf->add_list = al->next;
4229
4230 al->next = ddf->dlist;
4231 ddf->dlist = al;
4232
4233 /* As a device has been added, we should check
4234 * for any degraded devices that might make
4235 * use of this spare */
4236 for (a = st->arrays ; a; a=a->next)
4237 a->check_degraded = 1;
4238 }
88c164f4
NB
4239 break;
4240
4241 case DDF_VIRT_RECORDS_MAGIC:
4242
4243 if (update->len != (sizeof(struct virtual_disk) +
4244 sizeof(struct virtual_entry)))
4245 return;
4246 vd = (struct virtual_disk*)update->buf;
4247
fb9d0acb 4248 ent = find_unused_vde(ddf);
4249 if (ent == DDF_NOTFOUND)
88c164f4
NB
4250 return;
4251 ddf->virt->entries[ent] = vd->entries[0];
4252 ddf->virt->populated_vdes = __cpu_to_be16(1 +
613b0d17 4253 __be16_to_cpu(ddf->virt->populated_vdes));
7d5a7ff3 4254 ddf_set_updates_pending(ddf);
88c164f4
NB
4255 break;
4256
4257 case DDF_VD_CONF_MAGIC:
2c514b71 4258 dprintf("len %d %d\n", update->len, ddf->conf_rec_len);
88c164f4
NB
4259
4260 mppe = __be16_to_cpu(ddf->anchor.max_primary_element_entries);
f21e18ca 4261 if ((unsigned)update->len != ddf->conf_rec_len * 512)
88c164f4
NB
4262 return;
4263 vc = (struct vd_config*)update->buf;
4264 for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
4265 if (memcmp(vcl->conf.guid, vc->guid, DDF_GUID_LEN) == 0)
4266 break;
2c514b71 4267 dprintf("vcl = %p\n", vcl);
88c164f4
NB
4268 if (vcl) {
4269 /* An update, just copy the phys_refnum and lba_offset
4270 * fields
4271 */
4272 memcpy(vcl->conf.phys_refnum, vc->phys_refnum,
4273 mppe * (sizeof(__u32) + sizeof(__u64)));
4274 } else {
4275 /* A new VD_CONF */
e6b9548d
DW
4276 if (!update->space)
4277 return;
88c164f4
NB
4278 vcl = update->space;
4279 update->space = NULL;
4280 vcl->next = ddf->conflist;
edd8d13c 4281 memcpy(&vcl->conf, vc, update->len);
fb9d0acb 4282 ent = find_vde_by_guid(ddf, vc->guid);
4283 if (ent == DDF_NOTFOUND)
4284 return;
4285 vcl->vcnum = ent;
88c164f4
NB
4286 ddf->conflist = vcl;
4287 }
c7079c84
N
4288 /* Set DDF_Transition on all Failed devices - to help
4289 * us detect those that are no longer in use
4290 */
4291 for (pdnum = 0; pdnum < __be16_to_cpu(ddf->phys->used_pdes); pdnum++)
4292 if (ddf->phys->entries[pdnum].state
4293 & __be16_to_cpu(DDF_Failed))
4294 ddf->phys->entries[pdnum].state
4295 |= __be16_to_cpu(DDF_Transition);
88c164f4
NB
4296 /* Now make sure vlist is correct for each dl. */
4297 for (dl = ddf->dlist; dl; dl = dl->next) {
f21e18ca
N
4298 unsigned int dn;
4299 unsigned int vn = 0;
8401644c 4300 int in_degraded = 0;
88c164f4
NB
4301 for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
4302 for (dn=0; dn < ddf->mppe ; dn++)
4303 if (vcl->conf.phys_refnum[dn] ==
4304 dl->disk.refnum) {
8401644c 4305 int vstate;
2c514b71
NB
4306 dprintf("dev %d has %p at %d\n",
4307 dl->pdnum, vcl, vn);
c7079c84
N
4308 /* Clear the Transition flag */
4309 if (ddf->phys->entries[dl->pdnum].state
4310 & __be16_to_cpu(DDF_Failed))
4311 ddf->phys->entries[dl->pdnum].state &=
4312 ~__be16_to_cpu(DDF_Transition);
4313
88c164f4 4314 dl->vlist[vn++] = vcl;
8401644c
N
4315 vstate = ddf->virt->entries[vcl->vcnum].state
4316 & DDF_state_mask;
4317 if (vstate == DDF_state_degraded ||
4318 vstate == DDF_state_part_optimal)
4319 in_degraded = 1;
88c164f4
NB
4320 break;
4321 }
4322 while (vn < ddf->max_part)
4323 dl->vlist[vn++] = NULL;
7e1432fb
NB
4324 if (dl->vlist[0]) {
4325 ddf->phys->entries[dl->pdnum].type &=
4326 ~__cpu_to_be16(DDF_Global_Spare);
8401644c
N
4327 if (!(ddf->phys->entries[dl->pdnum].type &
4328 __cpu_to_be16(DDF_Active_in_VD))) {
613b0d17
N
4329 ddf->phys->entries[dl->pdnum].type |=
4330 __cpu_to_be16(DDF_Active_in_VD);
4331 if (in_degraded)
4332 ddf->phys->entries[dl->pdnum].state |=
4333 __cpu_to_be16(DDF_Rebuilding);
4334 }
7e1432fb
NB
4335 }
4336 if (dl->spare) {
4337 ddf->phys->entries[dl->pdnum].type &=
4338 ~__cpu_to_be16(DDF_Global_Spare);
4339 ddf->phys->entries[dl->pdnum].type |=
4340 __cpu_to_be16(DDF_Spare);
4341 }
4342 if (!dl->vlist[0] && !dl->spare) {
4343 ddf->phys->entries[dl->pdnum].type |=
4344 __cpu_to_be16(DDF_Global_Spare);
4345 ddf->phys->entries[dl->pdnum].type &=
4346 ~__cpu_to_be16(DDF_Spare |
4347 DDF_Active_in_VD);
4348 }
88c164f4 4349 }
c7079c84
N
4350
4351 /* Now remove any 'Failed' devices that are not part
4352 * of any VD. They will have the Transition flag set.
4353 * Once done, we need to update all dl->pdnum numbers.
4354 */
4355 pd2 = 0;
4356 for (pdnum = 0; pdnum < __be16_to_cpu(ddf->phys->used_pdes); pdnum++)
4357 if ((ddf->phys->entries[pdnum].state
4358 & __be16_to_cpu(DDF_Failed))
4359 && (ddf->phys->entries[pdnum].state
4360 & __be16_to_cpu(DDF_Transition)))
4361 /* skip this one */;
4362 else if (pdnum == pd2)
4363 pd2++;
4364 else {
4365 ddf->phys->entries[pd2] = ddf->phys->entries[pdnum];
4366 for (dl = ddf->dlist; dl; dl = dl->next)
4367 if (dl->pdnum == (int)pdnum)
4368 dl->pdnum = pd2;
4369 pd2++;
4370 }
4371 ddf->phys->used_pdes = __cpu_to_be16(pd2);
4372 while (pd2 < pdnum) {
4373 memset(ddf->phys->entries[pd2].guid, 0xff, DDF_GUID_LEN);
4374 pd2++;
4375 }
4376
7d5a7ff3 4377 ddf_set_updates_pending(ddf);
88c164f4
NB
4378 break;
4379 case DDF_SPARE_ASSIGN_MAGIC:
4380 default: break;
4381 }
4382}
4383
edd8d13c
NB
4384static void ddf_prepare_update(struct supertype *st,
4385 struct metadata_update *update)
4386{
4387 /* This update arrived at managemon.
4388 * We are about to pass it to monitor.
4389 * If a malloc is needed, do it here.
4390 */
4391 struct ddf_super *ddf = st->sb;
4392 __u32 *magic = (__u32*)update->buf;
4393 if (*magic == DDF_VD_CONF_MAGIC)
e6b9548d 4394 if (posix_memalign(&update->space, 512,
613b0d17
N
4395 offsetof(struct vcl, conf)
4396 + ddf->conf_rec_len * 512) != 0)
e6b9548d 4397 update->space = NULL;
edd8d13c
NB
4398}
4399
7e1432fb
NB
4400/*
4401 * Check if the array 'a' is degraded but not failed.
4402 * If it is, find as many spares as are available and needed and
4403 * arrange for their inclusion.
4404 * We only choose devices which are not already in the array,
4405 * and prefer those with a spare-assignment to this array.
4406 * otherwise we choose global spares - assuming always that
4407 * there is enough room.
4408 * For each spare that we assign, we return an 'mdinfo' which
4409 * describes the position for the device in the array.
4410 * We also add to 'updates' a DDF_VD_CONF_MAGIC update with
4411 * the new phys_refnum and lba_offset values.
4412 *
4413 * Only worry about BVDs at the moment.
4414 */
4415static struct mdinfo *ddf_activate_spare(struct active_array *a,
4416 struct metadata_update **updates)
4417{
4418 int working = 0;
4419 struct mdinfo *d;
4420 struct ddf_super *ddf = a->container->sb;
4421 int global_ok = 0;
4422 struct mdinfo *rv = NULL;
4423 struct mdinfo *di;
4424 struct metadata_update *mu;
4425 struct dl *dl;
4426 int i;
baba3f4e 4427 struct vcl *vcl;
7e1432fb 4428 struct vd_config *vc;
baba3f4e 4429 unsigned int n_bvd;
7e1432fb 4430
7e1432fb
NB
4431 for (d = a->info.devs ; d ; d = d->next) {
4432 if ((d->curr_state & DS_FAULTY) &&
613b0d17 4433 d->state_fd >= 0)
7e1432fb
NB
4434 /* wait for Removal to happen */
4435 return NULL;
4436 if (d->state_fd >= 0)
4437 working ++;
4438 }
4439
2c514b71
NB
4440 dprintf("ddf_activate: working=%d (%d) level=%d\n", working, a->info.array.raid_disks,
4441 a->info.array.level);
7e1432fb
NB
4442 if (working == a->info.array.raid_disks)
4443 return NULL; /* array not degraded */
4444 switch (a->info.array.level) {
4445 case 1:
4446 if (working == 0)
4447 return NULL; /* failed */
4448 break;
4449 case 4:
4450 case 5:
4451 if (working < a->info.array.raid_disks - 1)
4452 return NULL; /* failed */
4453 break;
4454 case 6:
4455 if (working < a->info.array.raid_disks - 2)
4456 return NULL; /* failed */
4457 break;
4458 default: /* concat or stripe */
4459 return NULL; /* failed */
4460 }
4461
4462 /* For each slot, if it is not working, find a spare */
4463 dl = ddf->dlist;
4464 for (i = 0; i < a->info.array.raid_disks; i++) {
4465 for (d = a->info.devs ; d ; d = d->next)
4466 if (d->disk.raid_disk == i)
4467 break;
2c514b71 4468 dprintf("found %d: %p %x\n", i, d, d?d->curr_state:0);
7e1432fb
NB
4469 if (d && (d->state_fd >= 0))
4470 continue;
4471
4472 /* OK, this device needs recovery. Find a spare */
4473 again:
4474 for ( ; dl ; dl = dl->next) {
4475 unsigned long long esize;
4476 unsigned long long pos;
4477 struct mdinfo *d2;
4478 int is_global = 0;
4479 int is_dedicated = 0;
4480 struct extent *ex;
f21e18ca 4481 unsigned int j;
7e1432fb
NB
4482 /* If in this array, skip */
4483 for (d2 = a->info.devs ; d2 ; d2 = d2->next)
7590d562
N
4484 if (d2->state_fd >= 0 &&
4485 d2->disk.major == dl->major &&
7e1432fb 4486 d2->disk.minor == dl->minor) {
2c514b71 4487 dprintf("%x:%x already in array\n", dl->major, dl->minor);
7e1432fb
NB
4488 break;
4489 }
4490 if (d2)
4491 continue;
4492 if (ddf->phys->entries[dl->pdnum].type &
4493 __cpu_to_be16(DDF_Spare)) {
4494 /* Check spare assign record */
4495 if (dl->spare) {
4496 if (dl->spare->type & DDF_spare_dedicated) {
4497 /* check spare_ents for guid */
4498 for (j = 0 ;
4499 j < __be16_to_cpu(dl->spare->populated);
4500 j++) {
4501 if (memcmp(dl->spare->spare_ents[j].guid,
4502 ddf->virt->entries[a->info.container_member].guid,
4503 DDF_GUID_LEN) == 0)
4504 is_dedicated = 1;
4505 }
4506 } else
4507 is_global = 1;
4508 }
4509 } else if (ddf->phys->entries[dl->pdnum].type &
4510 __cpu_to_be16(DDF_Global_Spare)) {
4511 is_global = 1;
e0e7aeaa
N
4512 } else if (!(ddf->phys->entries[dl->pdnum].state &
4513 __cpu_to_be16(DDF_Failed))) {
4514 /* we can possibly use some of this */
4515 is_global = 1;
7e1432fb
NB
4516 }
4517 if ( ! (is_dedicated ||
4518 (is_global && global_ok))) {
2c514b71 4519 dprintf("%x:%x not suitable: %d %d\n", dl->major, dl->minor,
613b0d17 4520 is_dedicated, is_global);
7e1432fb
NB
4521 continue;
4522 }
4523
4524 /* We are allowed to use this device - is there space?
4525 * We need a->info.component_size sectors */
4526 ex = get_extents(ddf, dl);
4527 if (!ex) {
2c514b71 4528 dprintf("cannot get extents\n");
7e1432fb
NB
4529 continue;
4530 }
4531 j = 0; pos = 0;
4532 esize = 0;
4533
4534 do {
4535 esize = ex[j].start - pos;
4536 if (esize >= a->info.component_size)
4537 break;
e5cc7d46
N
4538 pos = ex[j].start + ex[j].size;
4539 j++;
4540 } while (ex[j-1].size);
7e1432fb
NB
4541
4542 free(ex);
4543 if (esize < a->info.component_size) {
e5cc7d46
N
4544 dprintf("%x:%x has no room: %llu %llu\n",
4545 dl->major, dl->minor,
2c514b71 4546 esize, a->info.component_size);
7e1432fb
NB
4547 /* No room */
4548 continue;
4549 }
4550
4551 /* Cool, we have a device with some space at pos */
503975b9 4552 di = xcalloc(1, sizeof(*di));
7e1432fb
NB
4553 di->disk.number = i;
4554 di->disk.raid_disk = i;
4555 di->disk.major = dl->major;
4556 di->disk.minor = dl->minor;
4557 di->disk.state = 0;
d23534e4 4558 di->recovery_start = 0;
7e1432fb
NB
4559 di->data_offset = pos;
4560 di->component_size = a->info.component_size;
4561 di->container_member = dl->pdnum;
4562 di->next = rv;
4563 rv = di;
2c514b71
NB
4564 dprintf("%x:%x to be %d at %llu\n", dl->major, dl->minor,
4565 i, pos);
7e1432fb
NB
4566
4567 break;
4568 }
4569 if (!dl && ! global_ok) {
4570 /* not enough dedicated spares, try global */
4571 global_ok = 1;
4572 dl = ddf->dlist;
4573 goto again;
4574 }
4575 }
4576
4577 if (!rv)
4578 /* No spares found */
4579 return rv;
4580 /* Now 'rv' has a list of devices to return.
4581 * Create a metadata_update record to update the
4582 * phys_refnum and lba_offset values
4583 */
503975b9
N
4584 mu = xmalloc(sizeof(*mu));
4585 if (posix_memalign(&mu->space, 512, sizeof(struct vcl)) != 0) {
79244939
DW
4586 free(mu);
4587 mu = NULL;
4588 }
503975b9 4589 mu->buf = xmalloc(ddf->conf_rec_len * 512);
7590d562
N
4590 mu->len = ddf->conf_rec_len * 512;
4591 mu->space = NULL;
f50ae22e 4592 mu->space_list = NULL;
7e1432fb 4593 mu->next = *updates;
baba3f4e 4594 vc = find_vdcr(ddf, a->info.container_member, di->disk.raid_disk,
4595 &n_bvd, &vcl);
7e1432fb
NB
4596 memcpy(mu->buf, vc, ddf->conf_rec_len * 512);
4597
4598 vc = (struct vd_config*)mu->buf;
7e1432fb
NB
4599 for (di = rv ; di ; di = di->next) {
4600 vc->phys_refnum[di->disk.raid_disk] =
4601 ddf->phys->entries[dl->pdnum].refnum;
57a66662 4602 LBA_OFFSET(ddf, vc)[di->disk.raid_disk]
4603 = __cpu_to_be64(di->data_offset);
7e1432fb
NB
4604 }
4605 *updates = mu;
4606 return rv;
4607}
0e600426 4608#endif /* MDASSEMBLE */
7e1432fb 4609
b640a252
N
4610static int ddf_level_to_layout(int level)
4611{
4612 switch(level) {
4613 case 0:
4614 case 1:
4615 return 0;
4616 case 5:
4617 return ALGORITHM_LEFT_SYMMETRIC;
4618 case 6:
4619 return ALGORITHM_ROTATING_N_CONTINUE;
4620 case 10:
4621 return 0x102;
4622 default:
4623 return UnSet;
4624 }
4625}
4626
30f58b22
DW
4627static void default_geometry_ddf(struct supertype *st, int *level, int *layout, int *chunk)
4628{
4629 if (level && *level == UnSet)
4630 *level = LEVEL_CONTAINER;
4631
4632 if (level && layout && *layout == UnSet)
4633 *layout = ddf_level_to_layout(*level);
4634}
4635
a322f70c
DW
4636struct superswitch super_ddf = {
4637#ifndef MDASSEMBLE
4638 .examine_super = examine_super_ddf,
4639 .brief_examine_super = brief_examine_super_ddf,
4737ae25 4640 .brief_examine_subarrays = brief_examine_subarrays_ddf,
bceedeec 4641 .export_examine_super = export_examine_super_ddf,
a322f70c
DW
4642 .detail_super = detail_super_ddf,
4643 .brief_detail_super = brief_detail_super_ddf,
4644 .validate_geometry = validate_geometry_ddf,
78e44928 4645 .write_init_super = write_init_super_ddf,
0e600426 4646 .add_to_super = add_to_super_ddf,
4dd968cc 4647 .remove_from_super = remove_from_super_ddf,
2b959fbf 4648 .load_container = load_container_ddf,
74db60b0 4649 .copy_metadata = copy_metadata_ddf,
a322f70c
DW
4650#endif
4651 .match_home = match_home_ddf,
4652 .uuid_from_super= uuid_from_super_ddf,
4653 .getinfo_super = getinfo_super_ddf,
4654 .update_super = update_super_ddf,
4655
4656 .avail_size = avail_size_ddf,
4657
a19c88b8
NB
4658 .compare_super = compare_super_ddf,
4659
a322f70c 4660 .load_super = load_super_ddf,
ba7eb04f 4661 .init_super = init_super_ddf,
955e9ea1 4662 .store_super = store_super_ddf,
a322f70c
DW
4663 .free_super = free_super_ddf,
4664 .match_metadata_desc = match_metadata_desc_ddf,
78e44928 4665 .container_content = container_content_ddf,
30f58b22 4666 .default_geometry = default_geometry_ddf,
a322f70c 4667
a322f70c 4668 .external = 1,
549e9569 4669
0e600426 4670#ifndef MDASSEMBLE
549e9569
NB
4671/* for mdmon */
4672 .open_new = ddf_open_new,
ed9d66aa 4673 .set_array_state= ddf_set_array_state,
549e9569
NB
4674 .set_disk = ddf_set_disk,
4675 .sync_metadata = ddf_sync_metadata,
88c164f4 4676 .process_update = ddf_process_update,
edd8d13c 4677 .prepare_update = ddf_prepare_update,
7e1432fb 4678 .activate_spare = ddf_activate_spare,
0e600426 4679#endif
4cce4069 4680 .name = "ddf",
a322f70c 4681};