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