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