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