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