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