]> git.ipfire.org Git - thirdparty/mdadm.git/blame - super-ddf.c
mdadm: replace container level checking with inline
[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 ||
1595 !is_subarray(sra->text_version))
1596 return DDF_NOTFOUND;
1597
1598 sub = strchr(sra->text_version + 1, '/');
1599 if (sub != NULL)
1600 vcnum = strtoul(sub + 1, &end, 10);
1601 if (sub == NULL || *sub == '\0' || *end != '\0' ||
a8173e43 1602 vcnum >= be16_to_cpu(ddf->active->max_vd_entries))
bedbf68a 1603 return DDF_NOTFOUND;
1604
1605 return vcnum;
1606}
1607
061f2c6a 1608static void brief_examine_super_ddf(struct supertype *st, int verbose)
4737ae25
N
1609{
1610 /* We just write a generic DDF ARRAY entry
1611 */
1612 struct mdinfo info;
1613 char nbuf[64];
a5d85af7 1614 getinfo_super_ddf(st, &info, NULL);
4737ae25
N
1615 fname_from_uuid(st, &info, nbuf, ':');
1616
1617 printf("ARRAY metadata=ddf UUID=%s\n", nbuf + 5);
1618}
1619
1620static void brief_examine_subarrays_ddf(struct supertype *st, int verbose)
a322f70c 1621{
56cb05c4
N
1622 /* We write a DDF ARRAY member entry for each vd, identifying container
1623 * by uuid and member by unit number and uuid.
a322f70c 1624 */
42dc2744 1625 struct ddf_super *ddf = st->sb;
ff54de6e 1626 struct mdinfo info;
f21e18ca 1627 unsigned int i;
ff54de6e 1628 char nbuf[64];
a5d85af7 1629 getinfo_super_ddf(st, &info, NULL);
ff54de6e 1630 fname_from_uuid(st, &info, nbuf, ':');
42dc2744 1631
a8173e43 1632 for (i = 0; i < be16_to_cpu(ddf->virt->max_vdes); i++) {
42dc2744
N
1633 struct virtual_entry *ve = &ddf->virt->entries[i];
1634 struct vcl vcl;
1635 char nbuf1[64];
a8b25633 1636 char namebuf[17];
42dc2744
N
1637 if (all_ff(ve->guid))
1638 continue;
1639 memcpy(vcl.conf.guid, ve->guid, DDF_GUID_LEN);
1640 ddf->currentconf =&vcl;
7087f02b 1641 vcl.vcnum = i;
42dc2744
N
1642 uuid_from_super_ddf(st, info.uuid);
1643 fname_from_uuid(st, &info, nbuf1, ':');
a8b25633 1644 _ddf_array_name(namebuf, ddf, i);
1645 printf("ARRAY%s%s container=%s member=%d UUID=%s\n",
1646 namebuf[0] == '\0' ? "" : " /dev/md/", namebuf,
42dc2744
N
1647 nbuf+5, i, nbuf1+5);
1648 }
a322f70c
DW
1649}
1650
bceedeec
N
1651static void export_examine_super_ddf(struct supertype *st)
1652{
1653 struct mdinfo info;
1654 char nbuf[64];
a5d85af7 1655 getinfo_super_ddf(st, &info, NULL);
bceedeec
N
1656 fname_from_uuid(st, &info, nbuf, ':');
1657 printf("MD_METADATA=ddf\n");
1658 printf("MD_LEVEL=container\n");
1659 printf("MD_UUID=%s\n", nbuf+5);
cc9bfd9e 1660 printf("MD_DEVICES=%u\n",
1661 be16_to_cpu(((struct ddf_super *)st->sb)->phys->used_pdes));
bceedeec 1662}
bceedeec 1663
74db60b0
N
1664static int copy_metadata_ddf(struct supertype *st, int from, int to)
1665{
1666 void *buf;
1667 unsigned long long dsize, offset;
1668 int bytes;
1669 struct ddf_header *ddf;
1670 int written = 0;
1671
1672 /* The meta consists of an anchor, a primary, and a secondary.
1673 * This all lives at the end of the device.
1674 * So it is easiest to find the earliest of primary and
1675 * secondary, and copy everything from there.
1676 *
56cb05c4 1677 * Anchor is 512 from end. It contains primary_lba and secondary_lba
74db60b0
N
1678 * we choose one of those
1679 */
1680
1681 if (posix_memalign(&buf, 4096, 4096) != 0)
1682 return 1;
1683
1684 if (!get_dev_size(from, NULL, &dsize))
1685 goto err;
1686
1687 if (lseek64(from, dsize-512, 0) < 0)
1688 goto err;
1689 if (read(from, buf, 512) != 512)
1690 goto err;
1691 ddf = buf;
60931cf9 1692 if (!be32_eq(ddf->magic, DDF_HEADER_MAGIC) ||
1693 !be32_eq(calc_crc(ddf, 512), ddf->crc) ||
74db60b0
N
1694 (memcmp(ddf->revision, DDF_REVISION_0, 8) != 0 &&
1695 memcmp(ddf->revision, DDF_REVISION_2, 8) != 0))
1696 goto err;
1697
1698 offset = dsize - 512;
9d0c6b70 1699 if ((be64_to_cpu(ddf->primary_lba) << 9) < offset)
1700 offset = be64_to_cpu(ddf->primary_lba) << 9;
1701 if ((be64_to_cpu(ddf->secondary_lba) << 9) < offset)
1702 offset = be64_to_cpu(ddf->secondary_lba) << 9;
74db60b0
N
1703
1704 bytes = dsize - offset;
1705
1706 if (lseek64(from, offset, 0) < 0 ||
1707 lseek64(to, offset, 0) < 0)
1708 goto err;
1709 while (written < bytes) {
1710 int n = bytes - written;
1711 if (n > 4096)
1712 n = 4096;
1713 if (read(from, buf, n) != n)
1714 goto err;
1715 if (write(to, buf, n) != n)
1716 goto err;
1717 written += n;
1718 }
1719 free(buf);
1720 return 0;
1721err:
1722 free(buf);
1723 return 1;
1724}
1725
b771faef
BK
1726static void detail_super_ddf(struct supertype *st, char *homehost,
1727 char *subarray)
a322f70c 1728{
ff84d052
N
1729 struct ddf_super *sb = st->sb;
1730 int cnt = be16_to_cpu(sb->virt->populated_vdes);
1731
65884368 1732 printf(" Container GUID : "); print_guid(sb->anchor.guid, 1);
ff84d052 1733 printf("\n");
65884368
AP
1734 printf(" Seq : %08x\n", be32_to_cpu(sb->active->seq));
1735 printf(" Virtual Disks : %d\n", cnt);
ff84d052 1736 printf("\n");
a322f70c
DW
1737}
1738
7087f02b 1739static const char *vendors_with_variable_volume_UUID[] = {
1740 "LSI ",
1741};
1742
1743static int volume_id_is_reliable(const struct ddf_super *ddf)
1744{
1c0aebc2 1745 int n = ARRAY_SIZE(vendors_with_variable_volume_UUID);
7087f02b 1746 int i;
1747 for (i = 0; i < n; i++)
1748 if (!memcmp(ddf->controller.guid,
1749 vendors_with_variable_volume_UUID[i], 8))
1750 return 0;
1751 return 1;
1752}
1753
1754static void uuid_of_ddf_subarray(const struct ddf_super *ddf,
1755 unsigned int vcnum, int uuid[4])
1756{
1757 char buf[DDF_GUID_LEN+18], sha[20], *p;
1758 struct sha1_ctx ctx;
1759 if (volume_id_is_reliable(ddf)) {
1760 uuid_from_ddf_guid(ddf->virt->entries[vcnum].guid, uuid);
1761 return;
1762 }
1763 /*
1764 * Some fake RAID BIOSes (in particular, LSI ones) change the
1765 * VD GUID at every boot. These GUIDs are not suitable for
1766 * identifying an array. Luckily the header GUID appears to
1767 * remain constant.
1768 * We construct a pseudo-UUID from the header GUID and those
1769 * properties of the subarray that we expect to remain constant.
1770 */
1771 memset(buf, 0, sizeof(buf));
1772 p = buf;
1773 memcpy(p, ddf->anchor.guid, DDF_GUID_LEN);
1774 p += DDF_GUID_LEN;
1775 memcpy(p, ddf->virt->entries[vcnum].name, 16);
1776 p += 16;
1777 *((__u16 *) p) = vcnum;
1778 sha1_init_ctx(&ctx);
1779 sha1_process_bytes(buf, sizeof(buf), &ctx);
1780 sha1_finish_ctx(&ctx, sha);
1781 memcpy(uuid, sha, 4*4);
1782}
1783
b771faef 1784static void brief_detail_super_ddf(struct supertype *st, char *subarray)
a322f70c 1785{
ff54de6e
N
1786 struct mdinfo info;
1787 char nbuf[64];
bedbf68a 1788 struct ddf_super *ddf = st->sb;
1789 unsigned int vcnum = get_vd_num_of_subarray(st);
1790 if (vcnum == DDF_CONTAINER)
1791 uuid_from_super_ddf(st, info.uuid);
1792 else if (vcnum == DDF_NOTFOUND)
1793 return;
1794 else
7087f02b 1795 uuid_of_ddf_subarray(ddf, vcnum, info.uuid);
ff54de6e
N
1796 fname_from_uuid(st, &info, nbuf,':');
1797 printf(" UUID=%s", nbuf + 5);
a322f70c 1798}
a322f70c
DW
1799
1800static int match_home_ddf(struct supertype *st, char *homehost)
1801{
1802 /* It matches 'this' host if the controller is a
1803 * Linux-MD controller with vendor_data matching
56cb05c4
N
1804 * the hostname. It would be nice if we could
1805 * test against controller found in /sys or somewhere...
a322f70c
DW
1806 */
1807 struct ddf_super *ddf = st->sb;
f21e18ca 1808 unsigned int len;
d1d3482b
N
1809
1810 if (!homehost)
1811 return 0;
1812 len = strlen(homehost);
a322f70c
DW
1813
1814 return (memcmp(ddf->controller.guid, T10, 8) == 0 &&
1815 len < sizeof(ddf->controller.vendor_data) &&
1816 memcmp(ddf->controller.vendor_data, homehost,len) == 0 &&
1817 ddf->controller.vendor_data[len] == 0);
1818}
1819
baba3f4e 1820static int find_index_in_bvd(const struct ddf_super *ddf,
1821 const struct vd_config *conf, unsigned int n,
1822 unsigned int *n_bvd)
1823{
1824 /*
56cb05c4
N
1825 * Find the index of the n-th valid physical disk in this BVD.
1826 * Unused entries can be sprinkled in with the used entries,
1827 * but don't count.
baba3f4e 1828 */
1829 unsigned int i, j;
56cb05c4
N
1830 for (i = 0, j = 0;
1831 i < ddf->mppe && j < be16_to_cpu(conf->prim_elmnt_count);
1832 i++) {
60931cf9 1833 if (be32_to_cpu(conf->phys_refnum[i]) != 0xffffffff) {
baba3f4e 1834 if (n == j) {
1835 *n_bvd = i;
1836 return 1;
1837 }
1838 j++;
1839 }
1840 }
1ade5cc1
N
1841 dprintf("couldn't find BVD member %u (total %u)\n",
1842 n, be16_to_cpu(conf->prim_elmnt_count));
baba3f4e 1843 return 0;
1844}
1845
56cb05c4
N
1846/* Given a member array instance number, and a raid disk within that instance,
1847 * find the vd_config structure. The offset of the given disk in the phys_refnum
1848 * table is returned in n_bvd.
1849 * For two-level members with a secondary raid level the vd_config for
1850 * the appropriate BVD is returned.
1851 * The return value is always &vlc->conf, where vlc is returned in last pointer.
1852 */
baba3f4e 1853static struct vd_config *find_vdcr(struct ddf_super *ddf, unsigned int inst,
1854 unsigned int n,
1855 unsigned int *n_bvd, struct vcl **vcl)
a322f70c 1856{
7a7cc504 1857 struct vcl *v;
59e36268 1858
baba3f4e 1859 for (v = ddf->conflist; v; v = v->next) {
84e32e19 1860 unsigned int nsec, ibvd = 0;
baba3f4e 1861 struct vd_config *conf;
1862 if (inst != v->vcnum)
1863 continue;
1864 conf = &v->conf;
1865 if (conf->sec_elmnt_count == 1) {
1866 if (find_index_in_bvd(ddf, conf, n, n_bvd)) {
1867 *vcl = v;
1868 return conf;
1869 } else
1870 goto bad;
1871 }
1872 if (v->other_bvds == NULL) {
1ade5cc1
N
1873 pr_err("BUG: other_bvds is NULL, nsec=%u\n",
1874 conf->sec_elmnt_count);
baba3f4e 1875 goto bad;
1876 }
a8173e43 1877 nsec = n / be16_to_cpu(conf->prim_elmnt_count);
baba3f4e 1878 if (conf->sec_elmnt_seq != nsec) {
1879 for (ibvd = 1; ibvd < conf->sec_elmnt_count; ibvd++) {
b831b299
JS
1880 if (v->other_bvds[ibvd-1]->sec_elmnt_seq ==
1881 nsec)
baba3f4e 1882 break;
1883 }
1884 if (ibvd == conf->sec_elmnt_count)
1885 goto bad;
1886 conf = v->other_bvds[ibvd-1];
1887 }
1888 if (!find_index_in_bvd(ddf, conf,
1889 n - nsec*conf->sec_elmnt_count, n_bvd))
1890 goto bad;
1ade5cc1
N
1891 dprintf("found disk %u as member %u in bvd %d of array %u\n",
1892 n, *n_bvd, ibvd, inst);
baba3f4e 1893 *vcl = v;
1894 return conf;
1895 }
1896bad:
ebf3be99 1897 pr_err("Couldn't find disk %d in array %u\n", n, inst);
7a7cc504
NB
1898 return NULL;
1899}
1900
60931cf9 1901static int find_phys(const struct ddf_super *ddf, be32 phys_refnum)
7a7cc504
NB
1902{
1903 /* Find the entry in phys_disk which has the given refnum
1904 * and return it's index
1905 */
f21e18ca 1906 unsigned int i;
a8173e43 1907 for (i = 0; i < be16_to_cpu(ddf->phys->max_pdes); i++)
60931cf9 1908 if (be32_eq(ddf->phys->entries[i].refnum, phys_refnum))
7a7cc504
NB
1909 return i;
1910 return -1;
a322f70c
DW
1911}
1912
bedbf68a 1913static void uuid_from_ddf_guid(const char *guid, int uuid[4])
1914{
1915 char buf[20];
1916 struct sha1_ctx ctx;
1917 sha1_init_ctx(&ctx);
1918 sha1_process_bytes(guid, DDF_GUID_LEN, &ctx);
1919 sha1_finish_ctx(&ctx, buf);
1920 memcpy(uuid, buf, 4*4);
1921}
1922
a322f70c
DW
1923static void uuid_from_super_ddf(struct supertype *st, int uuid[4])
1924{
1925 /* The uuid returned here is used for:
1926 * uuid to put into bitmap file (Create, Grow)
1927 * uuid for backup header when saving critical section (Grow)
1928 * comparing uuids when re-adding a device into an array
51006d85
N
1929 * In these cases the uuid required is that of the data-array,
1930 * not the device-set.
1931 * uuid to recognise same set when adding a missing device back
1932 * to an array. This is a uuid for the device-set.
613b0d17 1933 *
a322f70c
DW
1934 * For each of these we can make do with a truncated
1935 * or hashed uuid rather than the original, as long as
1936 * everyone agrees.
a322f70c
DW
1937 * In the case of SVD we assume the BVD is of interest,
1938 * though that might be the case if a bitmap were made for
1939 * a mirrored SVD - worry about that later.
1940 * So we need to find the VD configuration record for the
1941 * relevant BVD and extract the GUID and Secondary_Element_Seq.
1942 * The first 16 bytes of the sha1 of these is used.
1943 */
1944 struct ddf_super *ddf = st->sb;
d2ca6449 1945 struct vcl *vcl = ddf->currentconf;
a322f70c 1946
c5afc314 1947 if (vcl)
7087f02b 1948 uuid_of_ddf_subarray(ddf, vcl->vcnum, uuid);
c5afc314 1949 else
7087f02b 1950 uuid_from_ddf_guid(ddf->anchor.guid, uuid);
a322f70c
DW
1951}
1952
a5d85af7 1953static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info, char *map)
a322f70c
DW
1954{
1955 struct ddf_super *ddf = st->sb;
a5d85af7 1956 int map_disks = info->array.raid_disks;
90fa1a29 1957 __u32 *cptr;
a322f70c 1958
78e44928 1959 if (ddf->currentconf) {
a5d85af7 1960 getinfo_super_ddf_bvd(st, info, map);
78e44928
NB
1961 return;
1962 }
95eeceeb 1963 memset(info, 0, sizeof(*info));
78e44928 1964
a8173e43 1965 info->array.raid_disks = be16_to_cpu(ddf->phys->used_pdes);
a322f70c
DW
1966 info->array.level = LEVEL_CONTAINER;
1967 info->array.layout = 0;
1968 info->array.md_minor = -1;
90fa1a29
JS
1969 cptr = (__u32 *)(ddf->anchor.guid + 16);
1970 info->array.ctime = DECADE + __be32_to_cpu(*cptr);
1971
a322f70c 1972 info->array.chunk_size = 0;
510242aa 1973 info->container_enough = 1;
a322f70c 1974
56cb05c4
N
1975 info->disk.major = 0;
1976 info->disk.minor = 0;
cba0191b 1977 if (ddf->dlist) {
f0e876ce 1978 struct phys_disk_entry *pde = NULL;
60931cf9 1979 info->disk.number = be32_to_cpu(ddf->dlist->disk.refnum);
59e36268 1980 info->disk.raid_disk = find_phys(ddf, ddf->dlist->disk.refnum);
d2ca6449 1981
9d0c6b70 1982 info->data_offset = be64_to_cpu(ddf->phys->
613b0d17
N
1983 entries[info->disk.raid_disk].
1984 config_size);
d2ca6449 1985 info->component_size = ddf->dlist->size - info->data_offset;
f0e876ce
N
1986 if (info->disk.raid_disk >= 0)
1987 pde = ddf->phys->entries + info->disk.raid_disk;
1988 if (pde &&
4fe903aa
N
1989 !(be16_to_cpu(pde->state) & DDF_Failed) &&
1990 !(be16_to_cpu(pde->state) & DDF_Missing))
f0e876ce
N
1991 info->disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
1992 else
1993 info->disk.state = 1 << MD_DISK_FAULTY;
eba2859f 1994
cba0191b 1995 } else {
25532b88 1996 /* There should always be a dlist, but just in case...*/
cba0191b 1997 info->disk.number = -1;
661dce36 1998 info->disk.raid_disk = -1;
f0e876ce 1999 info->disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
cba0191b 2000 }
2a351cea
N
2001 info->events = be32_to_cpu(ddf->active->seq);
2002 info->array.utime = DECADE + be32_to_cpu(ddf->active->timestamp);
a19c88b8 2003
921d9e16 2004 info->recovery_start = MaxSector;
a19c88b8 2005 info->reshape_active = 0;
6e75048b 2006 info->recovery_blocked = 0;
c5afc314 2007 info->name[0] = 0;
a322f70c 2008
f35f2525
N
2009 info->array.major_version = -1;
2010 info->array.minor_version = -2;
159c3a1a 2011 strcpy(info->text_version, "ddf");
a67dd8cc 2012 info->safe_mode_delay = 0;
159c3a1a 2013
c5afc314 2014 uuid_from_super_ddf(st, info->uuid);
a322f70c 2015
a5d85af7 2016 if (map) {
708997ff
N
2017 int i, e = 0;
2018 int max = be16_to_cpu(ddf->phys->max_pdes);
2019 for (i = e = 0 ; i < map_disks ; i++, e++) {
2020 while (e < max &&
2021 be32_to_cpu(ddf->phys->entries[e].refnum) == 0xffffffff)
2022 e++;
2023 if (i < info->array.raid_disks && e < max &&
fc54fe7a
JS
2024 !(be16_to_cpu(ddf->phys->entries[e].state) &
2025 DDF_Failed))
a5d85af7
N
2026 map[i] = 1;
2027 else
2028 map[i] = 0;
2029 }
2030 }
a322f70c
DW
2031}
2032
8bf989d8 2033/* size of name must be at least 17 bytes! */
2034static void _ddf_array_name(char *name, const struct ddf_super *ddf, int i)
2035{
2036 int j;
2037 memcpy(name, ddf->virt->entries[i].name, 16);
2038 name[16] = 0;
2039 for(j = 0; j < 16; j++)
2040 if (name[j] == ' ')
2041 name[j] = 0;
2042}
2043
a5d85af7 2044static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info, char *map)
a322f70c
DW
2045{
2046 struct ddf_super *ddf = st->sb;
d2ca6449
NB
2047 struct vcl *vc = ddf->currentconf;
2048 int cd = ddf->currentdev;
ddf94a43 2049 int n_prim;
db42fa9b 2050 int j;
1e60caeb 2051 struct dl *dl = NULL;
a5d85af7 2052 int map_disks = info->array.raid_disks;
90fa1a29 2053 __u32 *cptr;
ddf94a43 2054 struct vd_config *conf;
a322f70c 2055
95eeceeb 2056 memset(info, 0, sizeof(*info));
8a2848a7 2057 if (layout_ddf2md(&vc->conf, &info->array) == -1)
2058 return;
a322f70c 2059 info->array.md_minor = -1;
90fa1a29
JS
2060 cptr = (__u32 *)(vc->conf.guid + 16);
2061 info->array.ctime = DECADE + __be32_to_cpu(*cptr);
60931cf9 2062 info->array.utime = DECADE + be32_to_cpu(vc->conf.timestamp);
d2ca6449 2063 info->array.chunk_size = 512 << vc->conf.chunk_shift;
55e00074 2064 info->custom_array_size = be64_to_cpu(vc->conf.array_blocks);
d2ca6449 2065
ddf94a43 2066 conf = &vc->conf;
a8173e43 2067 n_prim = be16_to_cpu(conf->prim_elmnt_count);
ddf94a43 2068 if (conf->sec_elmnt_count > 1 && cd >= n_prim) {
2069 int ibvd = cd / n_prim - 1;
2070 cd %= n_prim;
2071 conf = vc->other_bvds[ibvd];
2072 }
2073
f21e18ca 2074 if (cd >= 0 && (unsigned)cd < ddf->mppe) {
57a66662 2075 info->data_offset =
9d0c6b70 2076 be64_to_cpu(LBA_OFFSET(ddf, conf)[cd]);
d2ca6449
NB
2077 if (vc->block_sizes)
2078 info->component_size = vc->block_sizes[cd];
2079 else
9d0c6b70 2080 info->component_size = be64_to_cpu(conf->blocks);
a322f70c 2081
0d255ff8
N
2082 for (dl = ddf->dlist; dl ; dl = dl->next)
2083 if (be32_eq(dl->disk.refnum, conf->phys_refnum[cd]))
2084 break;
2085 }
fb204fb2 2086
a322f70c
DW
2087 info->disk.major = 0;
2088 info->disk.minor = 0;
fb204fb2 2089 info->disk.state = 0;
41bcbc14 2090 if (dl && dl->pdnum >= 0) {
8592f29d
N
2091 info->disk.major = dl->major;
2092 info->disk.minor = dl->minor;
7c3fb3ec 2093 info->disk.raid_disk = cd + conf->sec_elmnt_seq
a8173e43 2094 * be16_to_cpu(conf->prim_elmnt_count);
fb204fb2 2095 info->disk.number = dl->pdnum;
f0e876ce
N
2096 info->disk.state = 0;
2097 if (info->disk.number >= 0 &&
2098 (be16_to_cpu(ddf->phys->entries[info->disk.number].state) & DDF_Online) &&
2099 !(be16_to_cpu(ddf->phys->entries[info->disk.number].state) & DDF_Failed))
2100 info->disk.state = (1<<MD_DISK_SYNC)|(1<<MD_DISK_ACTIVE);
eba2859f 2101 info->events = be32_to_cpu(ddf->active->seq);
8592f29d 2102 }
a322f70c 2103
103f2410
NB
2104 info->container_member = ddf->currentconf->vcnum;
2105
921d9e16 2106 info->recovery_start = MaxSector;
80d26cb2 2107 info->resync_start = 0;
624c5ad4 2108 info->reshape_active = 0;
6e75048b 2109 info->recovery_blocked = 0;
fc54fe7a
JS
2110 if (!(ddf->virt->entries[info->container_member].state &
2111 DDF_state_inconsistent) &&
2112 (ddf->virt->entries[info->container_member].init_state &
2113 DDF_initstate_mask) == DDF_init_full)
b7528a20 2114 info->resync_start = MaxSector;
80d26cb2 2115
a322f70c
DW
2116 uuid_from_super_ddf(st, info->uuid);
2117
f35f2525
N
2118 info->array.major_version = -1;
2119 info->array.minor_version = -2;
9b63e648 2120 sprintf(info->text_version, "/%s/%d",
4dd2df09 2121 st->container_devnm,
9b63e648 2122 info->container_member);
5684fff6 2123 info->safe_mode_delay = DDF_SAFE_MODE_DELAY;
159c3a1a 2124
8bf989d8 2125 _ddf_array_name(info->name, ddf, info->container_member);
a5d85af7
N
2126
2127 if (map)
2128 for (j = 0; j < map_disks; j++) {
2129 map[j] = 0;
fc54fe7a 2130 if (j < info->array.raid_disks) {
a5d85af7 2131 int i = find_phys(ddf, vc->conf.phys_refnum[j]);
613b0d17 2132 if (i >= 0 &&
a8173e43 2133 (be16_to_cpu(ddf->phys->entries[i].state)
2134 & DDF_Online) &&
2135 !(be16_to_cpu(ddf->phys->entries[i].state)
2136 & DDF_Failed))
a5d85af7
N
2137 map[i] = 1;
2138 }
2139 }
a322f70c
DW
2140}
2141
2142static int update_super_ddf(struct supertype *st, struct mdinfo *info,
2143 char *update,
2144 char *devname, int verbose,
2145 int uuid_set, char *homehost)
2146{
2147 /* For 'assemble' and 'force' we need to return non-zero if any
2148 * change was made. For others, the return value is ignored.
2149 * Update options are:
2150 * force-one : This device looks a bit old but needs to be included,
2151 * update age info appropriately.
2152 * assemble: clear any 'faulty' flag to allow this device to
2153 * be assembled.
2154 * force-array: Array is degraded but being forced, mark it clean
2155 * if that will be needed to assemble it.
2156 *
2157 * newdev: not used ????
2158 * grow: Array has gained a new device - this is currently for
2159 * linear only
2160 * resync: mark as dirty so a resync will happen.
59e36268 2161 * uuid: Change the uuid of the array to match what is given
a322f70c
DW
2162 * homehost: update the recorded homehost
2163 * name: update the name - preserving the homehost
2164 * _reshape_progress: record new reshape_progress position.
2165 *
2166 * Following are not relevant for this version:
2167 * sparc2.2 : update from old dodgey metadata
2168 * super-minor: change the preferred_minor number
2169 * summaries: update redundant counters.
2170 */
2171 int rv = 0;
2172// struct ddf_super *ddf = st->sb;
7a7cc504 2173// struct vd_config *vd = find_vdcr(ddf, info->container_member);
a322f70c
DW
2174// struct virtual_entry *ve = find_ve(ddf);
2175
a322f70c 2176 /* we don't need to handle "force-*" or "assemble" as
56cb05c4 2177 * there is no need to 'trick' the kernel. When the metadata is
a322f70c
DW
2178 * first updated to activate the array, all the implied modifications
2179 * will just happen.
2180 */
2181
2182 if (strcmp(update, "grow") == 0) {
2183 /* FIXME */
1e2b2765 2184 } else if (strcmp(update, "resync") == 0) {
a322f70c 2185// info->resync_checkpoint = 0;
1e2b2765 2186 } else if (strcmp(update, "homehost") == 0) {
a322f70c
DW
2187 /* homehost is stored in controller->vendor_data,
2188 * or it is when we are the vendor
2189 */
2190// if (info->vendor_is_local)
2191// strcpy(ddf->controller.vendor_data, homehost);
1e2b2765 2192 rv = -1;
f49208ec 2193 } else if (strcmp(update, "name") == 0) {
a322f70c
DW
2194 /* name is stored in virtual_entry->name */
2195// memset(ve->name, ' ', 16);
2196// strncpy(ve->name, info->name, 16);
1e2b2765 2197 rv = -1;
f49208ec 2198 } else if (strcmp(update, "_reshape_progress") == 0) {
a322f70c 2199 /* We don't support reshape yet */
f49208ec
N
2200 } else if (strcmp(update, "assemble") == 0 ) {
2201 /* Do nothing, just succeed */
2202 rv = 0;
1e2b2765
N
2203 } else
2204 rv = -1;
a322f70c
DW
2205
2206// update_all_csum(ddf);
2207
2208 return rv;
2209}
2210
5f8097be
NB
2211static void make_header_guid(char *guid)
2212{
60931cf9 2213 be32 stamp;
5f8097be
NB
2214 /* Create a DDF Header of Virtual Disk GUID */
2215
2216 /* 24 bytes of fiction required.
2217 * first 8 are a 'vendor-id' - "Linux-MD"
2218 * next 8 are controller type.. how about 0X DEAD BEEF 0000 0000
2219 * Remaining 8 random number plus timestamp
2220 */
2221 memcpy(guid, T10, sizeof(T10));
60931cf9 2222 stamp = cpu_to_be32(0xdeadbeef);
5f8097be 2223 memcpy(guid+8, &stamp, 4);
60931cf9 2224 stamp = cpu_to_be32(0);
5f8097be 2225 memcpy(guid+12, &stamp, 4);
60931cf9 2226 stamp = cpu_to_be32(time(0) - DECADE);
5f8097be 2227 memcpy(guid+16, &stamp, 4);
60931cf9 2228 stamp._v32 = random32();
5f8097be 2229 memcpy(guid+20, &stamp, 4);
5f8097be 2230}
59e36268 2231
fb9d0acb 2232static unsigned int find_unused_vde(const struct ddf_super *ddf)
2233{
2234 unsigned int i;
a8173e43 2235 for (i = 0; i < be16_to_cpu(ddf->virt->max_vdes); i++) {
fb9d0acb 2236 if (all_ff(ddf->virt->entries[i].guid))
2237 return i;
2238 }
2239 return DDF_NOTFOUND;
2240}
2241
2242static unsigned int find_vde_by_name(const struct ddf_super *ddf,
2243 const char *name)
2244{
2245 unsigned int i;
2246 if (name == NULL)
2247 return DDF_NOTFOUND;
a8173e43 2248 for (i = 0; i < be16_to_cpu(ddf->virt->max_vdes); i++) {
fb9d0acb 2249 if (all_ff(ddf->virt->entries[i].guid))
2250 continue;
2251 if (!strncmp(name, ddf->virt->entries[i].name,
2252 sizeof(ddf->virt->entries[i].name)))
2253 return i;
2254 }
2255 return DDF_NOTFOUND;
2256}
2257
2258static unsigned int find_vde_by_guid(const struct ddf_super *ddf,
2259 const char *guid)
2260{
2261 unsigned int i;
2262 if (guid == NULL || all_ff(guid))
2263 return DDF_NOTFOUND;
a8173e43 2264 for (i = 0; i < be16_to_cpu(ddf->virt->max_vdes); i++)
fb9d0acb 2265 if (!memcmp(ddf->virt->entries[i].guid, guid, DDF_GUID_LEN))
2266 return i;
2267 return DDF_NOTFOUND;
2268}
2269
a322f70c
DW
2270static int init_super_ddf(struct supertype *st,
2271 mdu_array_info_t *info,
5308f117 2272 struct shape *s, char *name, char *homehost,
83cd1e97 2273 int *uuid, unsigned long long data_offset)
a322f70c
DW
2274{
2275 /* This is primarily called by Create when creating a new array.
2276 * We will then get add_to_super called for each component, and then
2277 * write_init_super called to write it out to each device.
2278 * For DDF, Create can create on fresh devices or on a pre-existing
2279 * array.
2280 * To create on a pre-existing array a different method will be called.
2281 * This one is just for fresh drives.
2282 *
2283 * We need to create the entire 'ddf' structure which includes:
2284 * DDF headers - these are easy.
2285 * Controller data - a Sector describing this controller .. not that
56cb05c4 2286 * this is a controller exactly.
a322f70c 2287 * Physical Disk Record - one entry per device, so
56cb05c4 2288 * leave plenty of space.
a322f70c 2289 * Virtual Disk Records - again, just leave plenty of space.
56cb05c4
N
2290 * This just lists VDs, doesn't give details.
2291 * Config records - describe the VDs that use this disk
a322f70c
DW
2292 * DiskData - describes 'this' device.
2293 * BadBlockManagement - empty
2294 * Diag Space - empty
2295 * Vendor Logs - Could we put bitmaps here?
2296 *
2297 */
2298 struct ddf_super *ddf;
2299 char hostname[17];
2300 int hostlen;
a322f70c
DW
2301 int max_phys_disks, max_virt_disks;
2302 unsigned long long sector;
2303 int clen;
2304 int i;
2305 int pdsize, vdsize;
2306 struct phys_disk *pd;
2307 struct virtual_disk *vd;
2308
78e44928 2309 if (st->sb)
5308f117 2310 return init_super_ddf_bvd(st, info, s->size, name, homehost, uuid,
83cd1e97 2311 data_offset);
ba7eb04f 2312
3d2c4fc7 2313 if (posix_memalign((void**)&ddf, 512, sizeof(*ddf)) != 0) {
1ade5cc1 2314 pr_err("could not allocate superblock\n");
3d2c4fc7
DW
2315 return 0;
2316 }
6264b437 2317 memset(ddf, 0, sizeof(*ddf));
955e9ea1
DW
2318 st->sb = ddf;
2319
2320 if (info == NULL) {
2321 /* zeroing superblock */
2322 return 0;
2323 }
a322f70c
DW
2324
2325 /* At least 32MB *must* be reserved for the ddf. So let's just
2326 * start 32MB from the end, and put the primary header there.
2327 * Don't do secondary for now.
2328 * We don't know exactly where that will be yet as it could be
56cb05c4 2329 * different on each device. So just set up the lengths.
a322f70c
DW
2330 */
2331
2332 ddf->anchor.magic = DDF_HEADER_MAGIC;
5f8097be 2333 make_header_guid(ddf->anchor.guid);
a322f70c 2334
59e36268 2335 memcpy(ddf->anchor.revision, DDF_REVISION_2, 8);
60931cf9 2336 ddf->anchor.seq = cpu_to_be32(1);
2337 ddf->anchor.timestamp = cpu_to_be32(time(0) - DECADE);
a322f70c
DW
2338 ddf->anchor.openflag = 0xFF;
2339 ddf->anchor.foreignflag = 0;
2340 ddf->anchor.enforcegroups = 0; /* Is this best?? */
2341 ddf->anchor.pad0 = 0xff;
2342 memset(ddf->anchor.pad1, 0xff, 12);
2343 memset(ddf->anchor.header_ext, 0xff, 32);
9d0c6b70 2344 ddf->anchor.primary_lba = cpu_to_be64(~(__u64)0);
2345 ddf->anchor.secondary_lba = cpu_to_be64(~(__u64)0);
a322f70c
DW
2346 ddf->anchor.type = DDF_HEADER_ANCHOR;
2347 memset(ddf->anchor.pad2, 0xff, 3);
60931cf9 2348 ddf->anchor.workspace_len = cpu_to_be32(32768); /* Must be reserved */
9d0c6b70 2349 /* Put this at bottom of 32M reserved.. */
2350 ddf->anchor.workspace_lba = cpu_to_be64(~(__u64)0);
56cb05c4 2351 max_phys_disks = 1023; /* Should be enough, 4095 is also allowed */
a8173e43 2352 ddf->anchor.max_pd_entries = cpu_to_be16(max_phys_disks);
56cb05c4
N
2353 max_virt_disks = 255; /* 15, 63, 255, 1024, 4095 are all allowed */
2354 ddf->anchor.max_vd_entries = cpu_to_be16(max_virt_disks);
a322f70c 2355 ddf->max_part = 64;
56cb05c4
N
2356 ddf->anchor.max_partitions = cpu_to_be16(ddf->max_part);
2357 ddf->mppe = 256; /* 16, 64, 256, 1024, 4096 are all allowed */
59e36268 2358 ddf->conf_rec_len = 1 + ROUND_UP(ddf->mppe * (4+8), 512)/512;
a8173e43 2359 ddf->anchor.config_record_len = cpu_to_be16(ddf->conf_rec_len);
2360 ddf->anchor.max_primary_element_entries = cpu_to_be16(ddf->mppe);
a322f70c 2361 memset(ddf->anchor.pad3, 0xff, 54);
56cb05c4 2362 /* Controller section is one sector long immediately
a322f70c
DW
2363 * after the ddf header */
2364 sector = 1;
60931cf9 2365 ddf->anchor.controller_section_offset = cpu_to_be32(sector);
2366 ddf->anchor.controller_section_length = cpu_to_be32(1);
a322f70c
DW
2367 sector += 1;
2368
2369 /* phys is 8 sectors after that */
2370 pdsize = ROUND_UP(sizeof(struct phys_disk) +
2371 sizeof(struct phys_disk_entry)*max_phys_disks,
2372 512);
2373 switch(pdsize/512) {
2374 case 2: case 8: case 32: case 128: case 512: break;
2375 default: abort();
2376 }
60931cf9 2377 ddf->anchor.phys_section_offset = cpu_to_be32(sector);
a322f70c 2378 ddf->anchor.phys_section_length =
60931cf9 2379 cpu_to_be32(pdsize/512); /* max_primary_element_entries/8 */
a322f70c
DW
2380 sector += pdsize/512;
2381
2382 /* virt is another 32 sectors */
2383 vdsize = ROUND_UP(sizeof(struct virtual_disk) +
2384 sizeof(struct virtual_entry) * max_virt_disks,
2385 512);
2386 switch(vdsize/512) {
2387 case 2: case 8: case 32: case 128: case 512: break;
2388 default: abort();
2389 }
60931cf9 2390 ddf->anchor.virt_section_offset = cpu_to_be32(sector);
a322f70c 2391 ddf->anchor.virt_section_length =
60931cf9 2392 cpu_to_be32(vdsize/512); /* max_vd_entries/8 */
a322f70c
DW
2393 sector += vdsize/512;
2394
59e36268 2395 clen = ddf->conf_rec_len * (ddf->max_part+1);
60931cf9 2396 ddf->anchor.config_section_offset = cpu_to_be32(sector);
2397 ddf->anchor.config_section_length = cpu_to_be32(clen);
a322f70c
DW
2398 sector += clen;
2399
60931cf9 2400 ddf->anchor.data_section_offset = cpu_to_be32(sector);
2401 ddf->anchor.data_section_length = cpu_to_be32(1);
a322f70c
DW
2402 sector += 1;
2403
60931cf9 2404 ddf->anchor.bbm_section_length = cpu_to_be32(0);
2405 ddf->anchor.bbm_section_offset = cpu_to_be32(0xFFFFFFFF);
2406 ddf->anchor.diag_space_length = cpu_to_be32(0);
2407 ddf->anchor.diag_space_offset = cpu_to_be32(0xFFFFFFFF);
2408 ddf->anchor.vendor_length = cpu_to_be32(0);
2409 ddf->anchor.vendor_offset = cpu_to_be32(0xFFFFFFFF);
a322f70c
DW
2410
2411 memset(ddf->anchor.pad4, 0xff, 256);
2412
2413 memcpy(&ddf->primary, &ddf->anchor, 512);
2414 memcpy(&ddf->secondary, &ddf->anchor, 512);
2415
2416 ddf->primary.openflag = 1; /* I guess.. */
2417 ddf->primary.type = DDF_HEADER_PRIMARY;
2418
2419 ddf->secondary.openflag = 1; /* I guess.. */
2420 ddf->secondary.type = DDF_HEADER_SECONDARY;
2421
2422 ddf->active = &ddf->primary;
2423
2424 ddf->controller.magic = DDF_CONTROLLER_MAGIC;
2425
2426 /* 24 more bytes of fiction required.
2427 * first 8 are a 'vendor-id' - "Linux-MD"
2428 * Remaining 16 are serial number.... maybe a hostname would do?
2429 */
2430 memcpy(ddf->controller.guid, T10, sizeof(T10));
1ba6bff9
DW
2431 gethostname(hostname, sizeof(hostname));
2432 hostname[sizeof(hostname) - 1] = 0;
a322f70c
DW
2433 hostlen = strlen(hostname);
2434 memcpy(ddf->controller.guid + 24 - hostlen, hostname, hostlen);
2435 for (i = strlen(T10) ; i+hostlen < 24; i++)
2436 ddf->controller.guid[i] = ' ';
2437
a8173e43 2438 ddf->controller.type.vendor_id = cpu_to_be16(0xDEAD);
2439 ddf->controller.type.device_id = cpu_to_be16(0xBEEF);
2440 ddf->controller.type.sub_vendor_id = cpu_to_be16(0);
2441 ddf->controller.type.sub_device_id = cpu_to_be16(0);
a322f70c
DW
2442 memcpy(ddf->controller.product_id, "What Is My PID??", 16);
2443 memset(ddf->controller.pad, 0xff, 8);
2444 memset(ddf->controller.vendor_data, 0xff, 448);
a9e1c11d
N
2445 if (homehost && strlen(homehost) < 440)
2446 strcpy((char*)ddf->controller.vendor_data, homehost);
a322f70c 2447
3d2c4fc7 2448 if (posix_memalign((void**)&pd, 512, pdsize) != 0) {
1ade5cc1 2449 pr_err("could not allocate pd\n");
3d2c4fc7
DW
2450 return 0;
2451 }
6416d527 2452 ddf->phys = pd;
a322f70c
DW
2453 ddf->pdsize = pdsize;
2454
2455 memset(pd, 0xff, pdsize);
2456 memset(pd, 0, sizeof(*pd));
076515ba 2457 pd->magic = DDF_PHYS_RECORDS_MAGIC;
a8173e43 2458 pd->used_pdes = cpu_to_be16(0);
2459 pd->max_pdes = cpu_to_be16(max_phys_disks);
a322f70c 2460 memset(pd->pad, 0xff, 52);
4a3ca8ac 2461 for (i = 0; i < max_phys_disks; i++)
2462 memset(pd->entries[i].guid, 0xff, DDF_GUID_LEN);
a322f70c 2463
3d2c4fc7 2464 if (posix_memalign((void**)&vd, 512, vdsize) != 0) {
1ade5cc1 2465 pr_err("could not allocate vd\n");
3d2c4fc7
DW
2466 return 0;
2467 }
6416d527 2468 ddf->virt = vd;
a322f70c
DW
2469 ddf->vdsize = vdsize;
2470 memset(vd, 0, vdsize);
2471 vd->magic = DDF_VIRT_RECORDS_MAGIC;
a8173e43 2472 vd->populated_vdes = cpu_to_be16(0);
2473 vd->max_vdes = cpu_to_be16(max_virt_disks);
a322f70c
DW
2474 memset(vd->pad, 0xff, 52);
2475
5f8097be
NB
2476 for (i=0; i<max_virt_disks; i++)
2477 memset(&vd->entries[i], 0xff, sizeof(struct virtual_entry));
2478
a322f70c 2479 st->sb = ddf;
609ce161 2480 ddf_set_updates_pending(ddf, NULL);
a322f70c
DW
2481 return 1;
2482}
2483
5f8097be
NB
2484static int chunk_to_shift(int chunksize)
2485{
2486 return ffs(chunksize/512)-1;
2487}
2488
59e36268
NB
2489struct extent {
2490 unsigned long long start, size;
2491};
78e44928 2492static int cmp_extent(const void *av, const void *bv)
59e36268
NB
2493{
2494 const struct extent *a = av;
2495 const struct extent *b = bv;
2496 if (a->start < b->start)
2497 return -1;
2498 if (a->start > b->start)
2499 return 1;
2500 return 0;
2501}
2502
78e44928 2503static struct extent *get_extents(struct ddf_super *ddf, struct dl *dl)
59e36268 2504{
fca65520 2505 /* Find a list of used extents on the given physical device
59e36268
NB
2506 * (dnum) of the given ddf.
2507 * Return a malloced array of 'struct extent'
59e36268
NB
2508 */
2509 struct extent *rv;
2510 int n = 0;
fcc22180 2511 unsigned int i;
a44e993e
N
2512 __u16 state;
2513
2514 if (dl->pdnum < 0)
2515 return NULL;
2516 state = be16_to_cpu(ddf->phys->entries[dl->pdnum].state);
60056e1c 2517
2518 if ((state & (DDF_Online|DDF_Failed|DDF_Missing)) != DDF_Online)
2519 return NULL;
59e36268 2520
503975b9 2521 rv = xmalloc(sizeof(struct extent) * (ddf->max_part + 2));
59e36268
NB
2522
2523 for (i = 0; i < ddf->max_part; i++) {
fcc22180 2524 const struct vd_config *bvd;
2525 unsigned int ibvd;
59e36268 2526 struct vcl *v = dl->vlist[i];
fcc22180 2527 if (v == NULL ||
2528 get_pd_index_from_refnum(v, dl->disk.refnum, ddf->mppe,
2529 &bvd, &ibvd) == DDF_NOTFOUND)
59e36268 2530 continue;
9d0c6b70 2531 rv[n].start = be64_to_cpu(LBA_OFFSET(ddf, bvd)[ibvd]);
2532 rv[n].size = be64_to_cpu(bvd->blocks);
fcc22180 2533 n++;
59e36268
NB
2534 }
2535 qsort(rv, n, sizeof(*rv), cmp_extent);
2536
9d0c6b70 2537 rv[n].start = be64_to_cpu(ddf->phys->entries[dl->pdnum].config_size);
59e36268
NB
2538 rv[n].size = 0;
2539 return rv;
2540}
fca65520
N
2541
2542static unsigned long long find_space(
2543 struct ddf_super *ddf, struct dl *dl,
2544 unsigned long long data_offset,
2545 unsigned long long *size)
2546{
2547 /* Find if the requested amount of space is available.
2548 * If it is, return start.
2549 * If not, set *size to largest space.
2550 * If data_offset != INVALID_SECTORS, then the space must start
2551 * at this location.
2552 */
2553 struct extent *e = get_extents(ddf, dl);
2554 int i = 0;
2555 unsigned long long pos = 0;
2556 unsigned long long max_size = 0;
2557
2558 if (!e) {
2559 *size = 0;
2560 return INVALID_SECTORS;
2561 }
2562 do {
2563 unsigned long long esize = e[i].start - pos;
2564 if (data_offset != INVALID_SECTORS &&
2565 pos <= data_offset &&
2566 e[i].start > data_offset) {
2567 pos = data_offset;
2568 esize = e[i].start - pos;
2569 }
2570 if (data_offset != INVALID_SECTORS &&
2571 pos != data_offset) {
2572 i++;
2573 continue;
2574 }
2575 if (esize >= *size) {
2576 /* Found! */
2577 free(e);
2578 return pos;
2579 }
2580 if (esize > max_size)
2581 max_size = esize;
2582 pos = e[i].start + e[i].size;
2583 i++;
2584 } while (e[i-1].size);
2585 *size = max_size;
2586 free(e);
2587 return INVALID_SECTORS;
2588}
59e36268 2589
5f8097be
NB
2590static int init_super_ddf_bvd(struct supertype *st,
2591 mdu_array_info_t *info,
2592 unsigned long long size,
2593 char *name, char *homehost,
83cd1e97 2594 int *uuid, unsigned long long data_offset)
5f8097be
NB
2595{
2596 /* We are creating a BVD inside a pre-existing container.
2597 * so st->sb is already set.
2598 * We need to create a new vd_config and a new virtual_entry
2599 */
2600 struct ddf_super *ddf = st->sb;
5aaf6c7b 2601 unsigned int venum, i;
5f8097be
NB
2602 struct virtual_entry *ve;
2603 struct vcl *vcl;
2604 struct vd_config *vc;
5f8097be 2605
fb9d0acb 2606 if (find_vde_by_name(ddf, name) != DDF_NOTFOUND) {
2607 pr_err("This ddf already has an array called %s\n", name);
5f8097be
NB
2608 return 0;
2609 }
fb9d0acb 2610 venum = find_unused_vde(ddf);
2611 if (venum == DDF_NOTFOUND) {
2612 pr_err("Cannot find spare slot for virtual disk\n");
5f8097be
NB
2613 return 0;
2614 }
2615 ve = &ddf->virt->entries[venum];
2616
2617 /* A Virtual Disk GUID contains the T10 Vendor ID, controller type,
2618 * timestamp, random number
2619 */
2620 make_header_guid(ve->guid);
a8173e43 2621 ve->unit = cpu_to_be16(info->md_minor);
5f8097be 2622 ve->pad0 = 0xFFFF;
a8173e43 2623 ve->guid_crc._v16 = crc32(0, (unsigned char *)ddf->anchor.guid,
2624 DDF_GUID_LEN);
2625 ve->type = cpu_to_be16(0);
7a7cc504
NB
2626 ve->state = DDF_state_degraded; /* Will be modified as devices are added */
2627 if (info->state & 1) /* clean */
2628 ve->init_state = DDF_init_full;
2629 else
2630 ve->init_state = DDF_init_not;
2631
5f8097be 2632 memset(ve->pad1, 0xff, 14);
cf16a350
NC
2633 memset(ve->name, '\0', sizeof(ve->name));
2634 if (name) {
2635 int l = strnlen(name, sizeof(ve->name));
2636 memcpy(ve->name, name, l);
2637 }
5f8097be 2638 ddf->virt->populated_vdes =
a8173e43 2639 cpu_to_be16(be16_to_cpu(ddf->virt->populated_vdes)+1);
5f8097be
NB
2640
2641 /* Now create a new vd_config */
3d2c4fc7
DW
2642 if (posix_memalign((void**)&vcl, 512,
2643 (offsetof(struct vcl, conf) + ddf->conf_rec_len * 512)) != 0) {
1ade5cc1 2644 pr_err("could not allocate vd_config\n");
3d2c4fc7
DW
2645 return 0;
2646 }
59e36268
NB
2647 vcl->vcnum = venum;
2648 vcl->block_sizes = NULL; /* FIXME not for CONCAT */
5f8097be
NB
2649 vc = &vcl->conf;
2650
2651 vc->magic = DDF_VD_CONF_MAGIC;
2652 memcpy(vc->guid, ve->guid, DDF_GUID_LEN);
60931cf9 2653 vc->timestamp = cpu_to_be32(time(0)-DECADE);
2654 vc->seqnum = cpu_to_be32(1);
5f8097be 2655 memset(vc->pad0, 0xff, 24);
5f8097be 2656 vc->chunk_shift = chunk_to_shift(info->chunk_size);
a3163bf0 2657 if (layout_md2ddf(info, vc) == -1 ||
a8173e43 2658 be16_to_cpu(vc->prim_elmnt_count) > ddf->mppe) {
1ade5cc1
N
2659 pr_err("unsupported RAID level/layout %d/%d with %d disks\n",
2660 info->level, info->layout, info->raid_disks);
a3163bf0 2661 free(vcl);
2662 return 0;
2663 }
5f8097be 2664 vc->sec_elmnt_seq = 0;
3c48f7be 2665 if (alloc_other_bvds(ddf, vcl) != 0) {
1ade5cc1 2666 pr_err("could not allocate other bvds\n");
3c48f7be 2667 free(vcl);
2668 return 0;
2669 }
eddaacc3 2670 vc->blocks = cpu_to_be64(size * 2);
9d0c6b70 2671 vc->array_blocks = cpu_to_be64(
5f8097be 2672 calc_array_size(info->level, info->raid_disks, info->layout,
eddaacc3 2673 info->chunk_size, size * 2));
5f8097be 2674 memset(vc->pad1, 0xff, 8);
60931cf9 2675 vc->spare_refs[0] = cpu_to_be32(0xffffffff);
2676 vc->spare_refs[1] = cpu_to_be32(0xffffffff);
2677 vc->spare_refs[2] = cpu_to_be32(0xffffffff);
2678 vc->spare_refs[3] = cpu_to_be32(0xffffffff);
2679 vc->spare_refs[4] = cpu_to_be32(0xffffffff);
2680 vc->spare_refs[5] = cpu_to_be32(0xffffffff);
2681 vc->spare_refs[6] = cpu_to_be32(0xffffffff);
2682 vc->spare_refs[7] = cpu_to_be32(0xffffffff);
5f8097be
NB
2683 memset(vc->cache_pol, 0, 8);
2684 vc->bg_rate = 0x80;
2685 memset(vc->pad2, 0xff, 3);
2686 memset(vc->pad3, 0xff, 52);
2687 memset(vc->pad4, 0xff, 192);
2688 memset(vc->v0, 0xff, 32);
2689 memset(vc->v1, 0xff, 32);
2690 memset(vc->v2, 0xff, 16);
2691 memset(vc->v3, 0xff, 16);
2692 memset(vc->vendor, 0xff, 32);
598f0d58 2693
8c3b8c2c 2694 memset(vc->phys_refnum, 0xff, 4*ddf->mppe);
e5a2a3cf 2695 memset(vc->phys_refnum+ddf->mppe, 0x00, 8*ddf->mppe);
5f8097be 2696
5aaf6c7b 2697 for (i = 1; i < vc->sec_elmnt_count; i++) {
2698 memcpy(vcl->other_bvds[i-1], vc, ddf->conf_rec_len * 512);
2699 vcl->other_bvds[i-1]->sec_elmnt_seq = i;
2700 }
2701
5f8097be
NB
2702 vcl->next = ddf->conflist;
2703 ddf->conflist = vcl;
d2ca6449 2704 ddf->currentconf = vcl;
609ce161 2705 ddf_set_updates_pending(ddf, NULL);
5f8097be
NB
2706 return 1;
2707}
2708
2709static void add_to_super_ddf_bvd(struct supertype *st,
476066a3
N
2710 mdu_disk_info_t *dk, int fd, char *devname,
2711 unsigned long long data_offset)
5f8097be 2712{
56cb05c4 2713 /* fd and devname identify a device within the ddf container (st).
5f8097be
NB
2714 * dk identifies a location in the new BVD.
2715 * We need to find suitable free space in that device and update
2716 * the phys_refnum and lba_offset for the newly created vd_config.
2717 * We might also want to update the type in the phys_disk
5575e7d9 2718 * section.
8592f29d
N
2719 *
2720 * Alternately: fd == -1 and we have already chosen which device to
2721 * use and recorded in dlist->raid_disk;
5f8097be
NB
2722 */
2723 struct dl *dl;
2724 struct ddf_super *ddf = st->sb;
2725 struct vd_config *vc;
f21e18ca 2726 unsigned int i;
fca65520 2727 unsigned long long blocks, pos;
475ccbdb 2728 unsigned int raid_disk = dk->raid_disk;
5f8097be 2729
8592f29d
N
2730 if (fd == -1) {
2731 for (dl = ddf->dlist; dl ; dl = dl->next)
2732 if (dl->raiddisk == dk->raid_disk)
2733 break;
2734 } else {
2735 for (dl = ddf->dlist; dl ; dl = dl->next)
2736 if (dl->major == dk->major &&
2737 dl->minor == dk->minor)
2738 break;
2739 }
41bcbc14 2740 if (!dl || dl->pdnum < 0 || ! (dk->state & (1<<MD_DISK_SYNC)))
5f8097be
NB
2741 return;
2742
d2ca6449 2743 vc = &ddf->currentconf->conf;
475ccbdb 2744 if (vc->sec_elmnt_count > 1) {
a8173e43 2745 unsigned int n = be16_to_cpu(vc->prim_elmnt_count);
475ccbdb 2746 if (raid_disk >= n)
2747 vc = ddf->currentconf->other_bvds[raid_disk / n - 1];
2748 raid_disk %= n;
2749 }
59e36268 2750
9d0c6b70 2751 blocks = be64_to_cpu(vc->blocks);
d2ca6449
NB
2752 if (ddf->currentconf->block_sizes)
2753 blocks = ddf->currentconf->block_sizes[dk->raid_disk];
59e36268 2754
476066a3 2755 pos = find_space(ddf, dl, data_offset, &blocks);
fca65520 2756 if (pos == INVALID_SECTORS)
59e36268
NB
2757 return;
2758
d2ca6449 2759 ddf->currentdev = dk->raid_disk;
475ccbdb 2760 vc->phys_refnum[raid_disk] = dl->disk.refnum;
9d0c6b70 2761 LBA_OFFSET(ddf, vc)[raid_disk] = cpu_to_be64(pos);
5f8097be 2762
f21e18ca 2763 for (i = 0; i < ddf->max_part ; i++)
5575e7d9
NB
2764 if (dl->vlist[i] == NULL)
2765 break;
2766 if (i == ddf->max_part)
2767 return;
d2ca6449 2768 dl->vlist[i] = ddf->currentconf;
5f8097be 2769
8592f29d
N
2770 if (fd >= 0)
2771 dl->fd = fd;
2772 if (devname)
2773 dl->devname = devname;
7a7cc504 2774
63eb2454 2775 /* Check if we can mark array as optimal yet */
d2ca6449 2776 i = ddf->currentconf->vcnum;
63eb2454 2777 ddf->virt->entries[i].state =
2778 (ddf->virt->entries[i].state & ~DDF_state_mask)
2779 | get_svd_state(ddf, ddf->currentconf);
a8173e43 2780 be16_clear(ddf->phys->entries[dl->pdnum].type,
2781 cpu_to_be16(DDF_Global_Spare));
2782 be16_set(ddf->phys->entries[dl->pdnum].type,
2783 cpu_to_be16(DDF_Active_in_VD));
1ade5cc1
N
2784 dprintf("added disk %d/%08x to VD %d/%s as disk %d\n",
2785 dl->pdnum, be32_to_cpu(dl->disk.refnum),
4f9bbe63 2786 ddf->currentconf->vcnum, guid_str(vc->guid),
2787 dk->raid_disk);
609ce161 2788 ddf_set_updates_pending(ddf, vc);
5f8097be
NB
2789}
2790
4a3ca8ac 2791static unsigned int find_unused_pde(const struct ddf_super *ddf)
2792{
2793 unsigned int i;
a8173e43 2794 for (i = 0; i < be16_to_cpu(ddf->phys->max_pdes); i++) {
4a3ca8ac 2795 if (all_ff(ddf->phys->entries[i].guid))
2796 return i;
2797 }
2798 return DDF_NOTFOUND;
2799}
2800
105e6e93 2801static void _set_config_size(struct phys_disk_entry *pde, const struct dl *dl)
2802{
2803 __u64 cfs, t;
2804 cfs = min(dl->size - 32*1024*2ULL, be64_to_cpu(dl->primary_lba));
2805 t = be64_to_cpu(dl->secondary_lba);
2806 if (t != ~(__u64)0)
2807 cfs = min(cfs, t);
2808 /*
2809 * Some vendor DDF structures interpret workspace_lba
56cb05c4 2810 * very differently than we do: Make a sanity check on the value.
105e6e93 2811 */
2812 t = be64_to_cpu(dl->workspace_lba);
2813 if (t < cfs) {
2814 __u64 wsp = cfs - t;
2815 if (wsp > 1024*1024*2ULL && wsp > dl->size / 16) {
1ade5cc1
N
2816 pr_err("%x:%x: workspace size 0x%llx too big, ignoring\n",
2817 dl->major, dl->minor, (unsigned long long)wsp);
105e6e93 2818 } else
2819 cfs = t;
2820 }
2821 pde->config_size = cpu_to_be64(cfs);
1ade5cc1
N
2822 dprintf("%x:%x config_size %llx, DDF structure is %llx blocks\n",
2823 dl->major, dl->minor,
d13566f9 2824 (unsigned long long)cfs, (unsigned long long)(dl->size-cfs));
105e6e93 2825}
2826
56cb05c4 2827/* Add a device to a container, either while creating it or while
a322f70c
DW
2828 * expanding a pre-existing container
2829 */
f20c3968 2830static int add_to_super_ddf(struct supertype *st,
72ca9bcf
N
2831 mdu_disk_info_t *dk, int fd, char *devname,
2832 unsigned long long data_offset)
a322f70c
DW
2833{
2834 struct ddf_super *ddf = st->sb;
2835 struct dl *dd;
2836 time_t now;
2837 struct tm *tm;
2838 unsigned long long size;
2839 struct phys_disk_entry *pde;
f21e18ca 2840 unsigned int n, i;
a322f70c 2841 struct stat stb;
90fa1a29 2842 __u32 *tptr;
a322f70c 2843
78e44928 2844 if (ddf->currentconf) {
476066a3 2845 add_to_super_ddf_bvd(st, dk, fd, devname, data_offset);
f20c3968 2846 return 0;
78e44928
NB
2847 }
2848
a322f70c
DW
2849 /* This is device numbered dk->number. We need to create
2850 * a phys_disk entry and a more detailed disk_data entry.
2851 */
2852 fstat(fd, &stb);
4a3ca8ac 2853 n = find_unused_pde(ddf);
2854 if (n == DDF_NOTFOUND) {
1ade5cc1 2855 pr_err("No free slot in array, cannot add disk\n");
4a3ca8ac 2856 return 1;
2857 }
2858 pde = &ddf->phys->entries[n];
4ee8cca9 2859 get_dev_size(fd, NULL, &size);
2860 if (size <= 32*1024*1024) {
1ade5cc1 2861 pr_err("device size must be at least 32MB\n");
4ee8cca9 2862 return 1;
2863 }
2864 size >>= 9;
4a3ca8ac 2865
3d2c4fc7
DW
2866 if (posix_memalign((void**)&dd, 512,
2867 sizeof(*dd) + sizeof(dd->vlist[0]) * ddf->max_part) != 0) {
1ade5cc1 2868 pr_err("could allocate buffer for new disk, aborting\n");
f20c3968 2869 return 1;
3d2c4fc7 2870 }
a322f70c
DW
2871 dd->major = major(stb.st_rdev);
2872 dd->minor = minor(stb.st_rdev);
2873 dd->devname = devname;
a322f70c 2874 dd->fd = fd;
b2280677 2875 dd->spare = NULL;
a322f70c
DW
2876
2877 dd->disk.magic = DDF_PHYS_DATA_MAGIC;
2878 now = time(0);
2879 tm = localtime(&now);
002a5978
JS
2880 sprintf(dd->disk.guid, "%8s%04d%02d%02d", T10,
2881 (__u16)tm->tm_year+1900,
2882 (__u8)tm->tm_mon+1, (__u8)tm->tm_mday);
90fa1a29
JS
2883 tptr = (__u32 *)(dd->disk.guid + 16);
2884 *tptr++ = random32();
2885 *tptr = random32();
a322f70c 2886
59e36268
NB
2887 do {
2888 /* Cannot be bothered finding a CRC of some irrelevant details*/
60931cf9 2889 dd->disk.refnum._v32 = random32();
a8173e43 2890 for (i = be16_to_cpu(ddf->active->max_pd_entries);
f21e18ca 2891 i > 0; i--)
60931cf9 2892 if (be32_eq(ddf->phys->entries[i-1].refnum,
2893 dd->disk.refnum))
59e36268 2894 break;
f21e18ca 2895 } while (i > 0);
59e36268 2896
a322f70c
DW
2897 dd->disk.forced_ref = 1;
2898 dd->disk.forced_guid = 1;
2899 memset(dd->disk.vendor, ' ', 32);
2900 memcpy(dd->disk.vendor, "Linux", 5);
2901 memset(dd->disk.pad, 0xff, 442);
b2280677 2902 for (i = 0; i < ddf->max_part ; i++)
a322f70c
DW
2903 dd->vlist[i] = NULL;
2904
5575e7d9
NB
2905 dd->pdnum = n;
2906
2cc2983d
N
2907 if (st->update_tail) {
2908 int len = (sizeof(struct phys_disk) +
2909 sizeof(struct phys_disk_entry));
2910 struct phys_disk *pd;
2911
503975b9 2912 pd = xmalloc(len);
2cc2983d 2913 pd->magic = DDF_PHYS_RECORDS_MAGIC;
a8173e43 2914 pd->used_pdes = cpu_to_be16(n);
2cc2983d
N
2915 pde = &pd->entries[0];
2916 dd->mdupdate = pd;
4a3ca8ac 2917 } else
a8173e43 2918 ddf->phys->used_pdes = cpu_to_be16(
2919 1 + be16_to_cpu(ddf->phys->used_pdes));
a322f70c
DW
2920
2921 memcpy(pde->guid, dd->disk.guid, DDF_GUID_LEN);
2922 pde->refnum = dd->disk.refnum;
a8173e43 2923 pde->type = cpu_to_be16(DDF_Forced_PD_GUID | DDF_Global_Spare);
2924 pde->state = cpu_to_be16(DDF_Online);
4ee8cca9 2925 dd->size = size;
2926 /*
2927 * If there is already a device in dlist, try to reserve the same
2928 * amount of workspace. Otherwise, use 32MB.
2929 * We checked disk size above already.
2930 */
2931#define __calc_lba(new, old, lba, mb) do { \
2932 unsigned long long dif; \
2933 if ((old) != NULL) \
9d0c6b70 2934 dif = (old)->size - be64_to_cpu((old)->lba); \
4ee8cca9 2935 else \
2936 dif = (new)->size; \
2937 if ((new)->size > dif) \
9d0c6b70 2938 (new)->lba = cpu_to_be64((new)->size - dif); \
4ee8cca9 2939 else \
9d0c6b70 2940 (new)->lba = cpu_to_be64((new)->size - (mb*1024*2)); \
4ee8cca9 2941 } while (0)
2942 __calc_lba(dd, ddf->dlist, workspace_lba, 32);
2943 __calc_lba(dd, ddf->dlist, primary_lba, 16);
b95cb4b9
N
2944 if (ddf->dlist == NULL ||
2945 be64_to_cpu(ddf->dlist->secondary_lba) != ~(__u64)0)
2946 __calc_lba(dd, ddf->dlist, secondary_lba, 32);
105e6e93 2947 _set_config_size(pde, dd);
4ee8cca9 2948
a322f70c
DW
2949 sprintf(pde->path, "%17.17s","Information: nil") ;
2950 memset(pde->pad, 0xff, 6);
2951
2cc2983d
N
2952 if (st->update_tail) {
2953 dd->next = ddf->add_list;
2954 ddf->add_list = dd;
2955 } else {
2956 dd->next = ddf->dlist;
2957 ddf->dlist = dd;
609ce161 2958 ddf_set_updates_pending(ddf, NULL);
2cc2983d 2959 }
f20c3968
DW
2960
2961 return 0;
a322f70c
DW
2962}
2963
4dd968cc
N
2964static int remove_from_super_ddf(struct supertype *st, mdu_disk_info_t *dk)
2965{
2966 struct ddf_super *ddf = st->sb;
2967 struct dl *dl;
2968
2969 /* mdmon has noticed that this disk (dk->major/dk->minor) has
2970 * disappeared from the container.
2971 * We need to arrange that it disappears from the metadata and
2972 * internal data structures too.
2973 * Most of the work is done by ddf_process_update which edits
2974 * the metadata and closes the file handle and attaches the memory
2975 * where free_updates will free it.
2976 */
2977 for (dl = ddf->dlist; dl ; dl = dl->next)
2978 if (dl->major == dk->major &&
2979 dl->minor == dk->minor)
2980 break;
a44e993e 2981 if (!dl || dl->pdnum < 0)
4dd968cc
N
2982 return -1;
2983
2984 if (st->update_tail) {
2985 int len = (sizeof(struct phys_disk) +
2986 sizeof(struct phys_disk_entry));
2987 struct phys_disk *pd;
2988
503975b9 2989 pd = xmalloc(len);
4dd968cc 2990 pd->magic = DDF_PHYS_RECORDS_MAGIC;
a8173e43 2991 pd->used_pdes = cpu_to_be16(dl->pdnum);
2992 pd->entries[0].state = cpu_to_be16(DDF_Missing);
4dd968cc
N
2993 append_metadata_update(st, pd, len);
2994 }
2995 return 0;
2996}
2997
a322f70c
DW
2998/*
2999 * This is the write_init_super method for a ddf container. It is
3000 * called when creating a container or adding another device to a
3001 * container.
3002 */
18a2f463 3003
3921e41a 3004static int __write_ddf_structure(struct dl *d, struct ddf_super *ddf, __u8 type)
a322f70c 3005{
7f798aca 3006 unsigned long long sector;
3007 struct ddf_header *header;
3921e41a 3008 int fd, i, n_config, conf_size, buf_size;
a4057a88 3009 int ret = 0;
3921e41a 3010 char *conf;
8e9387ac 3011
7f798aca 3012 fd = d->fd;
3013
3014 switch (type) {
3015 case DDF_HEADER_PRIMARY:
3016 header = &ddf->primary;
9d0c6b70 3017 sector = be64_to_cpu(header->primary_lba);
7f798aca 3018 break;
3019 case DDF_HEADER_SECONDARY:
3020 header = &ddf->secondary;
9d0c6b70 3021 sector = be64_to_cpu(header->secondary_lba);
7f798aca 3022 break;
3023 default:
3024 return 0;
3025 }
b95cb4b9
N
3026 if (sector == ~(__u64)0)
3027 return 0;
7f798aca 3028
3029 header->type = type;
a4057a88 3030 header->openflag = 1;
7f798aca 3031 header->crc = calc_crc(header, 512);
3032
3033 lseek64(fd, sector<<9, 0);
3034 if (write(fd, header, 512) < 0)
a4057a88 3035 goto out;
7f798aca 3036
3037 ddf->controller.crc = calc_crc(&ddf->controller, 512);
3038 if (write(fd, &ddf->controller, 512) < 0)
a4057a88 3039 goto out;
a322f70c 3040
7f798aca 3041 ddf->phys->crc = calc_crc(ddf->phys, ddf->pdsize);
3042 if (write(fd, ddf->phys, ddf->pdsize) < 0)
a4057a88 3043 goto out;
7f798aca 3044 ddf->virt->crc = calc_crc(ddf->virt, ddf->vdsize);
3045 if (write(fd, ddf->virt, ddf->vdsize) < 0)
a4057a88 3046 goto out;
7f798aca 3047
3048 /* Now write lots of config records. */
3049 n_config = ddf->max_part;
3050 conf_size = ddf->conf_rec_len * 512;
3921e41a
N
3051 conf = ddf->conf;
3052 buf_size = conf_size * (n_config + 1);
3053 if (!conf) {
3054 if (posix_memalign((void**)&conf, 512, buf_size) != 0)
3055 goto out;
3056 ddf->conf = conf;
3057 }
7f798aca 3058 for (i = 0 ; i <= n_config ; i++) {
e3c2a365 3059 struct vcl *c;
3060 struct vd_config *vdc = NULL;
3061 if (i == n_config) {
7f798aca 3062 c = (struct vcl *)d->spare;
e3c2a365 3063 if (c)
3064 vdc = &c->conf;
3065 } else {
3066 unsigned int dummy;
3067 c = d->vlist[i];
3068 if (c)
3069 get_pd_index_from_refnum(
3070 c, d->disk.refnum,
3071 ddf->mppe,
3072 (const struct vd_config **)&vdc,
3073 &dummy);
3074 }
188d31ed 3075 if (vdc) {
be9b9ef4 3076 dprintf("writing conf record %i on disk %08x for %s/%u\n",
60931cf9 3077 i, be32_to_cpu(d->disk.refnum),
ad60eea1 3078 guid_str(vdc->guid),
be9b9ef4 3079 vdc->sec_elmnt_seq);
e3c2a365 3080 vdc->crc = calc_crc(vdc, conf_size);
3921e41a 3081 memcpy(conf + i*conf_size, vdc, conf_size);
ce45c819 3082 } else
3921e41a 3083 memset(conf + i*conf_size, 0xff, conf_size);
7f798aca 3084 }
3921e41a 3085 if (write(fd, conf, buf_size) != buf_size)
a4057a88 3086 goto out;
7f798aca 3087
3088 d->disk.crc = calc_crc(&d->disk, 512);
3089 if (write(fd, &d->disk, 512) < 0)
a4057a88 3090 goto out;
7f798aca 3091
a4057a88 3092 ret = 1;
3093out:
3094 header->openflag = 0;
3095 header->crc = calc_crc(header, 512);
3096
3097 lseek64(fd, sector<<9, 0);
3098 if (write(fd, header, 512) < 0)
3099 ret = 0;
3100
3101 return ret;
7f798aca 3102}
3103
3921e41a 3104static int _write_super_to_disk(struct ddf_super *ddf, struct dl *d)
9bf38704 3105{
3106 unsigned long long size;
3107 int fd = d->fd;
3108 if (fd < 0)
3109 return 0;
3110
3111 /* We need to fill in the primary, (secondary) and workspace
3112 * lba's in the headers, set their checksums,
3113 * Also checksum phys, virt....
3114 *
3115 * Then write everything out, finally the anchor is written.
3116 */
3117 get_dev_size(fd, NULL, &size);
3118 size /= 512;
30bee020 3119 memcpy(&ddf->anchor, ddf->active, 512);
9d0c6b70 3120 if (be64_to_cpu(d->workspace_lba) != 0ULL)
9bf38704 3121 ddf->anchor.workspace_lba = d->workspace_lba;
3122 else
3123 ddf->anchor.workspace_lba =
9d0c6b70 3124 cpu_to_be64(size - 32*1024*2);
3125 if (be64_to_cpu(d->primary_lba) != 0ULL)
9bf38704 3126 ddf->anchor.primary_lba = d->primary_lba;
3127 else
3128 ddf->anchor.primary_lba =
9d0c6b70 3129 cpu_to_be64(size - 16*1024*2);
3130 if (be64_to_cpu(d->secondary_lba) != 0ULL)
9bf38704 3131 ddf->anchor.secondary_lba = d->secondary_lba;
3132 else
3133 ddf->anchor.secondary_lba =
9d0c6b70 3134 cpu_to_be64(size - 32*1024*2);
07de2684 3135 ddf->anchor.timestamp = cpu_to_be32(time(0) - DECADE);
9bf38704 3136 memcpy(&ddf->primary, &ddf->anchor, 512);
3137 memcpy(&ddf->secondary, &ddf->anchor, 512);
3138
b87fdf4e 3139 ddf->anchor.type = DDF_HEADER_ANCHOR;
9bf38704 3140 ddf->anchor.openflag = 0xFF; /* 'open' means nothing */
60931cf9 3141 ddf->anchor.seq = cpu_to_be32(0xFFFFFFFF); /* no sequencing in anchor */
9bf38704 3142 ddf->anchor.crc = calc_crc(&ddf->anchor, 512);
3143
3921e41a 3144 if (!__write_ddf_structure(d, ddf, DDF_HEADER_PRIMARY))
9bf38704 3145 return 0;
3146
3921e41a 3147 if (!__write_ddf_structure(d, ddf, DDF_HEADER_SECONDARY))
9bf38704 3148 return 0;
3149
3150 lseek64(fd, (size-1)*512, SEEK_SET);
3151 if (write(fd, &ddf->anchor, 512) < 0)
3152 return 0;
3153
3154 return 1;
3155}
3156
3921e41a 3157static int __write_init_super_ddf(struct supertype *st)
7f798aca 3158{
a322f70c 3159 struct ddf_super *ddf = st->sb;
a322f70c 3160 struct dl *d;
175593bf
DW
3161 int attempts = 0;
3162 int successes = 0;
42d5dfd9 3163
7d5a7ff3 3164 pr_state(ddf, __func__);
a322f70c 3165
175593bf
DW
3166 /* try to write updated metadata,
3167 * if we catch a failure move on to the next disk
3168 */
a322f70c 3169 for (d = ddf->dlist; d; d=d->next) {
175593bf 3170 attempts++;
3921e41a 3171 successes += _write_super_to_disk(ddf, d);
175593bf
DW
3172 }
3173
175593bf 3174 return attempts != successes;
a322f70c 3175}
7a7cc504
NB
3176
3177static int write_init_super_ddf(struct supertype *st)
3178{
9b1fb677
DW
3179 struct ddf_super *ddf = st->sb;
3180 struct vcl *currentconf = ddf->currentconf;
3181
56cb05c4 3182 /* We are done with currentconf - reset it so st refers to the container */
9b1fb677 3183 ddf->currentconf = NULL;
edd8d13c
NB
3184
3185 if (st->update_tail) {
3186 /* queue the virtual_disk and vd_config as metadata updates */
3187 struct virtual_disk *vd;
3188 struct vd_config *vc;
c5943560 3189 int len, tlen;
3190 unsigned int i;
edd8d13c 3191
9b1fb677 3192 if (!currentconf) {
56cb05c4 3193 /* Must be adding a physical disk to the container */
2cc2983d
N
3194 int len = (sizeof(struct phys_disk) +
3195 sizeof(struct phys_disk_entry));
3196
3197 /* adding a disk to the container. */
3198 if (!ddf->add_list)
3199 return 0;
3200
3201 append_metadata_update(st, ddf->add_list->mdupdate, len);
3202 ddf->add_list->mdupdate = NULL;
3203 return 0;
3204 }
3205
3206 /* Newly created VD */
3207
edd8d13c
NB
3208 /* First the virtual disk. We have a slightly fake header */
3209 len = sizeof(struct virtual_disk) + sizeof(struct virtual_entry);
503975b9 3210 vd = xmalloc(len);
edd8d13c 3211 *vd = *ddf->virt;
9b1fb677 3212 vd->entries[0] = ddf->virt->entries[currentconf->vcnum];
a8173e43 3213 vd->populated_vdes = cpu_to_be16(currentconf->vcnum);
edd8d13c
NB
3214 append_metadata_update(st, vd, len);
3215
3216 /* Then the vd_config */
3217 len = ddf->conf_rec_len * 512;
c5943560 3218 tlen = len * currentconf->conf.sec_elmnt_count;
3219 vc = xmalloc(tlen);
9b1fb677 3220 memcpy(vc, &currentconf->conf, len);
c5943560 3221 for (i = 1; i < currentconf->conf.sec_elmnt_count; i++)
3222 memcpy((char *)vc + i*len, currentconf->other_bvds[i-1],
3223 len);
3224 append_metadata_update(st, vc, tlen);
edd8d13c 3225
edd8d13c 3226 return 0;
613b0d17 3227 } else {
d682f344 3228 struct dl *d;
19041058 3229 if (!currentconf)
3230 for (d = ddf->dlist; d; d=d->next)
3231 while (Kill(d->devname, NULL, 0, -1, 1) == 0);
733eedc8
N
3232 /* Note: we don't close the fd's now, but a subsequent
3233 * ->free_super() will
3234 */
3921e41a 3235 return __write_init_super_ddf(st);
d682f344 3236 }
7a7cc504
NB
3237}
3238
387fcd59
N
3239static __u64 avail_size_ddf(struct supertype *st, __u64 devsize,
3240 unsigned long long data_offset)
a322f70c
DW
3241{
3242 /* We must reserve the last 32Meg */
3243 if (devsize <= 32*1024*2)
3244 return 0;
3245 return devsize - 32*1024*2;
3246}
3247
8592f29d
N
3248static int reserve_space(struct supertype *st, int raiddisks,
3249 unsigned long long size, int chunk,
476066a3 3250 unsigned long long data_offset,
8592f29d
N
3251 unsigned long long *freesize)
3252{
3253 /* Find 'raiddisks' spare extents at least 'size' big (but
3254 * only caring about multiples of 'chunk') and remember
56cb05c4
N
3255 * them. If size==0, find the largest size possible.
3256 * Report available size in *freesize
3257 * If space cannot be found, fail.
8592f29d
N
3258 */
3259 struct dl *dl;
3260 struct ddf_super *ddf = st->sb;
3261 int cnt = 0;
3262
3263 for (dl = ddf->dlist; dl ; dl=dl->next) {
613b0d17 3264 dl->raiddisk = -1;
8592f29d
N
3265 dl->esize = 0;
3266 }
3267 /* Now find largest extent on each device */
3268 for (dl = ddf->dlist ; dl ; dl=dl->next) {
fca65520 3269 unsigned long long minsize = ULLONG_MAX;
8592f29d 3270
476066a3 3271 find_space(ddf, dl, data_offset, &minsize);
fca65520 3272 if (minsize >= size && minsize >= (unsigned)chunk) {
8592f29d
N
3273 cnt++;
3274 dl->esize = minsize;
3275 }
8592f29d
N
3276 }
3277 if (cnt < raiddisks) {
e7b84f9d 3278 pr_err("not enough devices with space to create array.\n");
8592f29d
N
3279 return 0; /* No enough free spaces large enough */
3280 }
3281 if (size == 0) {
3282 /* choose the largest size of which there are at least 'raiddisk' */
3283 for (dl = ddf->dlist ; dl ; dl=dl->next) {
3284 struct dl *dl2;
3285 if (dl->esize <= size)
3286 continue;
3287 /* This is bigger than 'size', see if there are enough */
3288 cnt = 0;
7b80ad6a 3289 for (dl2 = ddf->dlist; dl2 ; dl2=dl2->next)
8592f29d
N
3290 if (dl2->esize >= dl->esize)
3291 cnt++;
3292 if (cnt >= raiddisks)
3293 size = dl->esize;
3294 }
3295 if (chunk) {
3296 size = size / chunk;
3297 size *= chunk;
3298 }
3299 *freesize = size;
3300 if (size < 32) {
e7b84f9d 3301 pr_err("not enough spare devices to create array.\n");
8592f29d
N
3302 return 0;
3303 }
3304 }
3305 /* We have a 'size' of which there are enough spaces.
3306 * We simply do a first-fit */
3307 cnt = 0;
3308 for (dl = ddf->dlist ; dl && cnt < raiddisks ; dl=dl->next) {
3309 if (dl->esize < size)
3310 continue;
613b0d17 3311
8592f29d
N
3312 dl->raiddisk = cnt;
3313 cnt++;
3314 }
3315 return 1;
3316}
3317
679bd950
LG
3318static int
3319validate_geometry_ddf_container(struct supertype *st,
3320 int level, int raiddisks,
3321 unsigned long long data_offset,
3322 char *dev, unsigned long long *freesize,
3323 int verbose)
3324{
3325 int fd;
3326 unsigned long long ldsize;
3327
6f2af6a4 3328 if (!is_container(level))
679bd950
LG
3329 return 0;
3330 if (!dev)
3331 return 1;
3332
3333 fd = dev_open(dev, O_RDONLY|O_EXCL);
3334 if (fd < 0) {
3335 if (verbose)
3336 pr_err("ddf: Cannot open %s: %s\n",
3337 dev, strerror(errno));
3338 return 0;
3339 }
3340 if (!get_dev_size(fd, dev, &ldsize)) {
3341 close(fd);
3342 return 0;
3343 }
3344 close(fd);
3345 if (freesize) {
3346 *freesize = avail_size_ddf(st, ldsize >> 9, INVALID_SECTORS);
3347 if (*freesize == 0)
3348 return 0;
3349 }
3350
3351 return 1;
3352}
3353
78e44928 3354static int validate_geometry_ddf(struct supertype *st,
2c514b71 3355 int level, int layout, int raiddisks,
c21e737b 3356 int *chunk, unsigned long long size,
af4348dd 3357 unsigned long long data_offset,
2c514b71 3358 char *dev, unsigned long long *freesize,
5308f117 3359 int consistency_policy, int verbose)
a322f70c
DW
3360{
3361 int fd;
3362 struct mdinfo *sra;
3363 int cfd;
3364
3365 /* ddf potentially supports lots of things, but it depends on
3366 * what devices are offered (and maybe kernel version?)
3367 * If given unused devices, we will make a container.
3368 * If given devices in a container, we will make a BVD.
3369 * If given BVDs, we make an SVD, changing all the GUIDs in the process.
3370 */
3371
56cb05c4
N
3372 if (level == LEVEL_NONE)
3373 level = LEVEL_CONTAINER;
6f2af6a4 3374 if (is_container(level)) {
78e44928 3375 /* Must be a fresh device to add to a container */
679bd950
LG
3376 return validate_geometry_ddf_container(st, level, raiddisks,
3377 data_offset, dev,
3378 freesize, verbose);
5f8097be
NB
3379 }
3380
2b93288a
LG
3381 if (*chunk == UnSet)
3382 *chunk = DEFAULT_CHUNK;
3383
78e44928 3384 if (!dev) {
a3163bf0 3385 mdu_array_info_t array = {
56cb05c4
N
3386 .level = level,
3387 .layout = layout,
a3163bf0 3388 .raid_disks = raiddisks
3389 };
3390 struct vd_config conf;
3391 if (layout_md2ddf(&array, &conf) == -1) {
b42f577a 3392 if (verbose)
94b08b7c 3393 pr_err("DDF does not support level %d /layout %d arrays with %d disks\n",
3394 level, layout, raiddisks);
78e44928 3395 return 0;
b42f577a 3396 }
78e44928 3397 /* Should check layout? etc */
8592f29d
N
3398
3399 if (st->sb && freesize) {
3400 /* --create was given a container to create in.
3401 * So we need to check that there are enough
3402 * free spaces and return the amount of space.
3403 * We may as well remember which drives were
3404 * chosen so that add_to_super/getinfo_super
3405 * can return them.
3406 */
476066a3
N
3407 return reserve_space(st, raiddisks, size, *chunk,
3408 data_offset, freesize);
8592f29d 3409 }
a322f70c 3410 return 1;
78e44928 3411 }
a322f70c 3412
8592f29d
N
3413 if (st->sb) {
3414 /* A container has already been opened, so we are
3415 * creating in there. Maybe a BVD, maybe an SVD.
3416 * Should make a distinction one day.
3417 */
3418 return validate_geometry_ddf_bvd(st, level, layout, raiddisks,
af4348dd
N
3419 chunk, size, data_offset, dev,
3420 freesize,
8592f29d
N
3421 verbose);
3422 }
78e44928
NB
3423 /* This is the first device for the array.
3424 * If it is a container, we read it in and do automagic allocations,
3425 * no other devices should be given.
3426 * Otherwise it must be a member device of a container, and we
3427 * do manual allocation.
3428 * Later we should check for a BVD and make an SVD.
a322f70c 3429 */
a322f70c
DW
3430 fd = open(dev, O_RDONLY|O_EXCL, 0);
3431 if (fd >= 0) {
a322f70c 3432 close(fd);
2ecda5a3 3433 /* Just a bare device, no good to us */
2c514b71 3434 if (verbose)
7a862a02 3435 pr_err("ddf: Cannot create this array on device %s - a container is required.\n",
e7b84f9d 3436 dev);
a322f70c
DW
3437 return 0;
3438 }
3439 if (errno != EBUSY || (fd = open(dev, O_RDONLY, 0)) < 0) {
2c514b71 3440 if (verbose)
e7b84f9d 3441 pr_err("ddf: Cannot open %s: %s\n",
613b0d17 3442 dev, strerror(errno));
a322f70c
DW
3443 return 0;
3444 }
3445 /* Well, it is in use by someone, maybe a 'ddf' container. */
3446 cfd = open_container(fd);
3447 if (cfd < 0) {
3448 close(fd);
2c514b71 3449 if (verbose)
e7b84f9d 3450 pr_err("ddf: Cannot use %s: %s\n",
613b0d17 3451 dev, strerror(EBUSY));
a322f70c
DW
3452 return 0;
3453 }
4dd2df09 3454 sra = sysfs_read(cfd, NULL, GET_VERSION);
a322f70c
DW
3455 close(fd);
3456 if (sra && sra->array.major_version == -1 &&
3457 strcmp(sra->text_version, "ddf") == 0) {
3458 /* This is a member of a ddf container. Load the container
3459 * and try to create a bvd
3460 */
3461 struct ddf_super *ddf;
e1902a7b 3462 if (load_super_ddf_all(st, cfd, (void **)&ddf, NULL) == 0) {
5f8097be 3463 st->sb = ddf;
4dd2df09 3464 strcpy(st->container_devnm, fd2devnm(cfd));
a322f70c 3465 close(cfd);
78e44928 3466 return validate_geometry_ddf_bvd(st, level, layout,
a322f70c 3467 raiddisks, chunk, size,
af4348dd 3468 data_offset,
2c514b71
NB
3469 dev, freesize,
3470 verbose);
a322f70c
DW
3471 }
3472 close(cfd);
c42ec1ed
DW
3473 } else /* device may belong to a different container */
3474 return 0;
3475
a322f70c
DW
3476 return 1;
3477}
3478
78e44928
NB
3479static int validate_geometry_ddf_bvd(struct supertype *st,
3480 int level, int layout, int raiddisks,
c21e737b 3481 int *chunk, unsigned long long size,
af4348dd 3482 unsigned long long data_offset,
2c514b71
NB
3483 char *dev, unsigned long long *freesize,
3484 int verbose)
a322f70c 3485{
9e04ac1c 3486 dev_t rdev;
a322f70c
DW
3487 struct ddf_super *ddf = st->sb;
3488 struct dl *dl;
5f8097be 3489 unsigned long long maxsize;
a322f70c 3490 /* ddf/bvd supports lots of things, but not containers */
6f2af6a4 3491 if (is_container(level)) {
b42f577a 3492 if (verbose)
e7b84f9d 3493 pr_err("DDF cannot create a container within an container\n");
a322f70c 3494 return 0;
b42f577a 3495 }
a322f70c
DW
3496 /* We must have the container info already read in. */
3497 if (!ddf)
3498 return 0;
3499
5f8097be
NB
3500 if (!dev) {
3501 /* General test: make sure there is space for
3502 * 'raiddisks' device extents of size 'size'.
3503 */
3504 unsigned long long minsize = size;
3505 int dcnt = 0;
3506 if (minsize == 0)
3507 minsize = 8;
56cb05c4 3508 for (dl = ddf->dlist; dl ; dl = dl->next) {
d16a7494
JS
3509 if (find_space(ddf, dl, data_offset, &minsize) !=
3510 INVALID_SECTORS)
5f8097be 3511 dcnt++;
5f8097be
NB
3512 }
3513 if (dcnt < raiddisks) {
2c514b71 3514 if (verbose)
7a862a02 3515 pr_err("ddf: Not enough devices with space for this array (%d < %d)\n",
e7b84f9d 3516 dcnt, raiddisks);
5f8097be
NB
3517 return 0;
3518 }
3519 return 1;
3520 }
a322f70c 3521 /* This device must be a member of the set */
a3476c92 3522 if (!stat_is_blkdev(dev, &rdev))
a322f70c
DW
3523 return 0;
3524 for (dl = ddf->dlist ; dl ; dl = dl->next) {
9e04ac1c
ZL
3525 if (dl->major == (int)major(rdev) &&
3526 dl->minor == (int)minor(rdev))
a322f70c
DW
3527 break;
3528 }
5f8097be 3529 if (!dl) {
2c514b71 3530 if (verbose)
7a862a02 3531 pr_err("ddf: %s is not in the same DDF set\n",
613b0d17 3532 dev);
5f8097be
NB
3533 return 0;
3534 }
fca65520 3535 maxsize = ULLONG_MAX;
476066a3 3536 find_space(ddf, dl, data_offset, &maxsize);
5f8097be 3537 *freesize = maxsize;
a322f70c
DW
3538
3539 return 1;
3540}
59e36268 3541
a322f70c 3542static int load_super_ddf_all(struct supertype *st, int fd,
e1902a7b 3543 void **sbp, char *devname)
a322f70c
DW
3544{
3545 struct mdinfo *sra;
3546 struct ddf_super *super;
3547 struct mdinfo *sd, *best = NULL;
3548 int bestseq = 0;
3549 int seq;
3550 char nm[20];
3551 int dfd;
3552
a0628abf 3553 sra = sysfs_read(fd, NULL, GET_LEVEL|GET_VERSION|GET_DEVS|GET_STATE);
a322f70c
DW
3554 if (!sra)
3555 return 1;
3556 if (sra->array.major_version != -1 ||
3557 sra->array.minor_version != -2 ||
3558 strcmp(sra->text_version, "ddf") != 0)
3559 return 1;
3560
6416d527 3561 if (posix_memalign((void**)&super, 512, sizeof(*super)) != 0)
a322f70c 3562 return 1;
a2349791 3563 memset(super, 0, sizeof(*super));
a322f70c
DW
3564
3565 /* first, try each device, and choose the best ddf */
3566 for (sd = sra->devs ; sd ; sd = sd->next) {
3567 int rv;
3568 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
7a7cc504
NB
3569 dfd = dev_open(nm, O_RDONLY);
3570 if (dfd < 0)
a322f70c
DW
3571 return 2;
3572 rv = load_ddf_headers(dfd, super, NULL);
7a7cc504 3573 close(dfd);
a322f70c 3574 if (rv == 0) {
60931cf9 3575 seq = be32_to_cpu(super->active->seq);
a322f70c
DW
3576 if (super->active->openflag)
3577 seq--;
3578 if (!best || seq > bestseq) {
3579 bestseq = seq;
3580 best = sd;
3581 }
3582 }
3583 }
3584 if (!best)
3585 return 1;
3586 /* OK, load this ddf */
3587 sprintf(nm, "%d:%d", best->disk.major, best->disk.minor);
3588 dfd = dev_open(nm, O_RDONLY);
7a7cc504 3589 if (dfd < 0)
a322f70c
DW
3590 return 1;
3591 load_ddf_headers(dfd, super, NULL);
3592 load_ddf_global(dfd, super, NULL);
3593 close(dfd);
3594 /* Now we need the device-local bits */
3595 for (sd = sra->devs ; sd ; sd = sd->next) {
3d2c4fc7
DW
3596 int rv;
3597
a322f70c 3598 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
e1902a7b 3599 dfd = dev_open(nm, O_RDWR);
7a7cc504 3600 if (dfd < 0)
a322f70c 3601 return 2;
3d2c4fc7
DW
3602 rv = load_ddf_headers(dfd, super, NULL);
3603 if (rv == 0)
e1902a7b 3604 rv = load_ddf_local(dfd, super, NULL, 1);
3d2c4fc7
DW
3605 if (rv)
3606 return 1;
a322f70c 3607 }
33414a01 3608
a322f70c
DW
3609 *sbp = super;
3610 if (st->ss == NULL) {
78e44928 3611 st->ss = &super_ddf;
a322f70c
DW
3612 st->minor_version = 0;
3613 st->max_devs = 512;
3614 }
4dd2df09 3615 strcpy(st->container_devnm, fd2devnm(fd));
a322f70c
DW
3616 return 0;
3617}
2b959fbf
N
3618
3619static int load_container_ddf(struct supertype *st, int fd,
3620 char *devname)
3621{
3622 return load_super_ddf_all(st, fd, &st->sb, devname);
3623}
3624
a5c7adb3 3625static int check_secondary(const struct vcl *vc)
3626{
3627 const struct vd_config *conf = &vc->conf;
3628 int i;
3629
3630 /* The only DDF secondary RAID level md can support is
3631 * RAID 10, if the stripe sizes and Basic volume sizes
3632 * are all equal.
3633 * Other configurations could in theory be supported by exposing
3634 * the BVDs to user space and using device mapper for the secondary
3635 * mapping. So far we don't support that.
3636 */
3637
3638 __u64 sec_elements[4] = {0, 0, 0, 0};
3639#define __set_sec_seen(n) (sec_elements[(n)>>6] |= (1<<((n)&63)))
3640#define __was_sec_seen(n) ((sec_elements[(n)>>6] & (1<<((n)&63))) != 0)
3641
3642 if (vc->other_bvds == NULL) {
3643 pr_err("No BVDs for secondary RAID found\n");
3644 return -1;
3645 }
3646 if (conf->prl != DDF_RAID1) {
3647 pr_err("Secondary RAID level only supported for mirrored BVD\n");
3648 return -1;
3649 }
3650 if (conf->srl != DDF_2STRIPED && conf->srl != DDF_2SPANNED) {
3651 pr_err("Secondary RAID level %d is unsupported\n",
3652 conf->srl);
3653 return -1;
3654 }
3655 __set_sec_seen(conf->sec_elmnt_seq);
3656 for (i = 0; i < conf->sec_elmnt_count-1; i++) {
3657 const struct vd_config *bvd = vc->other_bvds[i];
3c48f7be 3658 if (bvd->sec_elmnt_seq == DDF_UNUSED_BVD)
c98567ba 3659 continue;
a5c7adb3 3660 if (bvd->srl != conf->srl) {
3661 pr_err("Inconsistent secondary RAID level across BVDs\n");
3662 return -1;
3663 }
3664 if (bvd->prl != conf->prl) {
3665 pr_err("Different RAID levels for BVDs are unsupported\n");
3666 return -1;
3667 }
a8173e43 3668 if (!be16_eq(bvd->prim_elmnt_count, conf->prim_elmnt_count)) {
a5c7adb3 3669 pr_err("All BVDs must have the same number of primary elements\n");
3670 return -1;
3671 }
3672 if (bvd->chunk_shift != conf->chunk_shift) {
3673 pr_err("Different strip sizes for BVDs are unsupported\n");
3674 return -1;
3675 }
9d0c6b70 3676 if (!be64_eq(bvd->array_blocks, conf->array_blocks)) {
a5c7adb3 3677 pr_err("Different BVD sizes are unsupported\n");
3678 return -1;
3679 }
3680 __set_sec_seen(bvd->sec_elmnt_seq);
3681 }
3682 for (i = 0; i < conf->sec_elmnt_count; i++) {
3683 if (!__was_sec_seen(i)) {
20d430ca 3684 /* pr_err("BVD %d is missing\n", i); */
a5c7adb3 3685 return -1;
3686 }
3687 }
3688 return 0;
3689}
3690
8a38db86 3691static unsigned int get_pd_index_from_refnum(const struct vcl *vc,
60931cf9 3692 be32 refnum, unsigned int nmax,
4e587018 3693 const struct vd_config **bvd,
3694 unsigned int *idx)
8a38db86 3695{
4e587018 3696 unsigned int i, j, n, sec, cnt;
3697
a8173e43 3698 cnt = be16_to_cpu(vc->conf.prim_elmnt_count);
4e587018 3699 sec = (vc->conf.sec_elmnt_count == 1 ? 0 : vc->conf.sec_elmnt_seq);
3700
3701 for (i = 0, j = 0 ; i < nmax ; i++) {
3702 /* j counts valid entries for this BVD */
60931cf9 3703 if (be32_eq(vc->conf.phys_refnum[i], refnum)) {
4e587018 3704 *bvd = &vc->conf;
3705 *idx = i;
56cb05c4 3706 return sec * cnt + j;
4e587018 3707 }
56cb05c4
N
3708 if (be32_to_cpu(vc->conf.phys_refnum[i]) != 0xffffffff)
3709 j++;
4e587018 3710 }
3711 if (vc->other_bvds == NULL)
3712 goto bad;
3713
3714 for (n = 1; n < vc->conf.sec_elmnt_count; n++) {
3715 struct vd_config *vd = vc->other_bvds[n-1];
4e587018 3716 sec = vd->sec_elmnt_seq;
3c48f7be 3717 if (sec == DDF_UNUSED_BVD)
3718 continue;
4e587018 3719 for (i = 0, j = 0 ; i < nmax ; i++) {
60931cf9 3720 if (be32_eq(vd->phys_refnum[i], refnum)) {
4e587018 3721 *bvd = vd;
3722 *idx = i;
56cb05c4 3723 return sec * cnt + j;
4e587018 3724 }
56cb05c4
N
3725 if (be32_to_cpu(vd->phys_refnum[i]) != 0xffffffff)
3726 j++;
4e587018 3727 }
3728 }
3729bad:
3730 *bvd = NULL;
d6e7b083 3731 return DDF_NOTFOUND;
8a38db86 3732}
3733
00bbdbda 3734static struct mdinfo *container_content_ddf(struct supertype *st, char *subarray)
598f0d58
NB
3735{
3736 /* Given a container loaded by load_super_ddf_all,
3737 * extract information about all the arrays into
3738 * an mdinfo tree.
3739 *
3740 * For each vcl in conflist: create an mdinfo, fill it in,
3741 * then look for matching devices (phys_refnum) in dlist
3742 * and create appropriate device mdinfo.
3743 */
3744 struct ddf_super *ddf = st->sb;
3745 struct mdinfo *rest = NULL;
3746 struct vcl *vc;
3747
56cb05c4 3748 for (vc = ddf->conflist ; vc ; vc=vc->next) {
f21e18ca 3749 unsigned int i;
598f0d58 3750 struct mdinfo *this;
00bbdbda 3751 char *ep;
90fa1a29 3752 __u32 *cptr;
8a38db86 3753 unsigned int pd;
00bbdbda
N
3754
3755 if (subarray &&
3756 (strtoul(subarray, &ep, 10) != vc->vcnum ||
3757 *ep != '\0'))
3758 continue;
3759
a5c7adb3 3760 if (vc->conf.sec_elmnt_count > 1) {
3761 if (check_secondary(vc) != 0)
3762 continue;
3763 }
3764
503975b9 3765 this = xcalloc(1, sizeof(*this));
598f0d58
NB
3766 this->next = rest;
3767 rest = this;
3768
8a2848a7 3769 if (layout_ddf2md(&vc->conf, &this->array))
3770 continue;
598f0d58 3771 this->array.md_minor = -1;
f35f2525
N
3772 this->array.major_version = -1;
3773 this->array.minor_version = -2;
56cb05c4 3774 this->safe_mode_delay = DDF_SAFE_MODE_DELAY;
90fa1a29
JS
3775 cptr = (__u32 *)(vc->conf.guid + 16);
3776 this->array.ctime = DECADE + __be32_to_cpu(*cptr);
598f0d58 3777 this->array.utime = DECADE +
60931cf9 3778 be32_to_cpu(vc->conf.timestamp);
598f0d58
NB
3779 this->array.chunk_size = 512 << vc->conf.chunk_shift;
3780
59e36268 3781 i = vc->vcnum;
7a7cc504
NB
3782 if ((ddf->virt->entries[i].state & DDF_state_inconsistent) ||
3783 (ddf->virt->entries[i].init_state & DDF_initstate_mask) !=
ed9d66aa 3784 DDF_init_full) {
598f0d58 3785 this->array.state = 0;
ed9d66aa
NB
3786 this->resync_start = 0;
3787 } else {
598f0d58 3788 this->array.state = 1;
b7528a20 3789 this->resync_start = MaxSector;
ed9d66aa 3790 }
8bf989d8 3791 _ddf_array_name(this->name, ddf, i);
598f0d58 3792 memset(this->uuid, 0, sizeof(this->uuid));
56cb05c4
N
3793 this->component_size = be64_to_cpu(vc->conf.blocks);
3794 this->array.size = this->component_size / 2;
3795 this->container_member = i;
598f0d58 3796
c5afc314
N
3797 ddf->currentconf = vc;
3798 uuid_from_super_ddf(st, this->uuid);
f646805e 3799 if (!subarray)
3800 ddf->currentconf = NULL;
c5afc314 3801
60f18132 3802 sprintf(this->text_version, "/%s/%d",
4dd2df09 3803 st->container_devnm, this->container_member);
60f18132 3804
217dead4 3805 for (pd = 0; pd < be16_to_cpu(ddf->phys->max_pdes); pd++) {
598f0d58
NB
3806 struct mdinfo *dev;
3807 struct dl *d;
4e587018 3808 const struct vd_config *bvd;
3809 unsigned int iphys;
fa033bec 3810 int stt;
598f0d58 3811
b831b299
JS
3812 if (be32_to_cpu(ddf->phys->entries[pd].refnum) ==
3813 0xffffffff)
bc17324f 3814 continue;
0cf5ef67 3815
a8173e43 3816 stt = be16_to_cpu(ddf->phys->entries[pd].state);
b831b299
JS
3817 if ((stt & (DDF_Online|DDF_Failed|DDF_Rebuilding)) !=
3818 DDF_Online)
fa033bec
N
3819 continue;
3820
8a38db86 3821 i = get_pd_index_from_refnum(
4e587018 3822 vc, ddf->phys->entries[pd].refnum,
3823 ddf->mppe, &bvd, &iphys);
d6e7b083 3824 if (i == DDF_NOTFOUND)
8a38db86 3825 continue;
3826
fa033bec 3827 this->array.working_disks++;
bc17324f 3828
0cf5ef67 3829 for (d = ddf->dlist; d ; d=d->next)
60931cf9 3830 if (be32_eq(d->disk.refnum,
3831 ddf->phys->entries[pd].refnum))
0cf5ef67
N
3832 break;
3833 if (d == NULL)
3834 /* Haven't found that one yet, maybe there are others */
3835 continue;
3836
503975b9 3837 dev = xcalloc(1, sizeof(*dev));
56cb05c4
N
3838 dev->next = this->devs;
3839 this->devs = dev;
598f0d58 3840
60931cf9 3841 dev->disk.number = be32_to_cpu(d->disk.refnum);
56cb05c4
N
3842 dev->disk.major = d->major;
3843 dev->disk.minor = d->minor;
598f0d58 3844 dev->disk.raid_disk = i;
56cb05c4 3845 dev->disk.state = (1<<MD_DISK_SYNC)|(1<<MD_DISK_ACTIVE);
d23534e4 3846 dev->recovery_start = MaxSector;
598f0d58 3847
56cb05c4 3848 dev->events = be32_to_cpu(ddf->active->seq);
57a66662 3849 dev->data_offset =
9d0c6b70 3850 be64_to_cpu(LBA_OFFSET(ddf, bvd)[iphys]);
3851 dev->component_size = be64_to_cpu(bvd->blocks);
598f0d58
NB
3852 if (d->devname)
3853 strcpy(dev->name, d->devname);
3854 }
3855 }
3856 return rest;
3857}
3858
955e9ea1 3859static int store_super_ddf(struct supertype *st, int fd)
a322f70c 3860{
955e9ea1 3861 struct ddf_super *ddf = st->sb;
a322f70c 3862 unsigned long long dsize;
6416d527 3863 void *buf;
3d2c4fc7 3864 int rc;
a322f70c 3865
955e9ea1
DW
3866 if (!ddf)
3867 return 1;
3868
a322f70c
DW
3869 if (!get_dev_size(fd, NULL, &dsize))
3870 return 1;
3871
dbf98368 3872 if (ddf->dlist || ddf->conflist) {
3873 struct stat sta;
3874 struct dl *dl;
3875 int ofd, ret;
3876
3877 if (fstat(fd, &sta) == -1 || !S_ISBLK(sta.st_mode)) {
1ade5cc1 3878 pr_err("file descriptor for invalid device\n");
dbf98368 3879 return 1;
3880 }
3881 for (dl = ddf->dlist; dl; dl = dl->next)
3882 if (dl->major == (int)major(sta.st_rdev) &&
3883 dl->minor == (int)minor(sta.st_rdev))
3884 break;
3885 if (!dl) {
1ade5cc1 3886 pr_err("couldn't find disk %d/%d\n",
dbf98368 3887 (int)major(sta.st_rdev),
3888 (int)minor(sta.st_rdev));
3889 return 1;
3890 }
dbf98368 3891 ofd = dl->fd;
3892 dl->fd = fd;
3921e41a 3893 ret = (_write_super_to_disk(ddf, dl) != 1);
dbf98368 3894 dl->fd = ofd;
3895 return ret;
3896 }
3897
3d2c4fc7
DW
3898 if (posix_memalign(&buf, 512, 512) != 0)
3899 return 1;
6416d527
NB
3900 memset(buf, 0, 512);
3901
a322f70c 3902 lseek64(fd, dsize-512, 0);
3d2c4fc7 3903 rc = write(fd, buf, 512);
6416d527 3904 free(buf);
3d2c4fc7
DW
3905 if (rc < 0)
3906 return 1;
a322f70c
DW
3907 return 0;
3908}
3909
c7b8547c
MT
3910static int compare_super_ddf(struct supertype *st, struct supertype *tst,
3911 int verbose)
a19c88b8
NB
3912{
3913 /*
3914 * return:
3915 * 0 same, or first was empty, and second was copied
56cb05c4 3916 * 1 second had wrong magic number - but that isn't possible
a19c88b8
NB
3917 * 2 wrong uuid
3918 * 3 wrong other info
3919 */
3920 struct ddf_super *first = st->sb;
3921 struct ddf_super *second = tst->sb;
4eefd651 3922 struct dl *dl1, *dl2;
3923 struct vcl *vl1, *vl2;
2d210697 3924 unsigned int max_vds, max_pds, pd, vd;
a19c88b8
NB
3925
3926 if (!first) {
3927 st->sb = tst->sb;
3928 tst->sb = NULL;
3929 return 0;
3930 }
3931
3932 if (memcmp(first->anchor.guid, second->anchor.guid, DDF_GUID_LEN) != 0)
3933 return 2;
3934
f43f5b32
N
3935 /* It is only OK to compare info in the anchor. Anything else
3936 * could be changing due to a reconfig so must be ignored.
3937 * guid really should be enough anyway.
3938 */
2d210697 3939
f43f5b32 3940 if (!be32_eq(first->active->seq, second->active->seq)) {
1ade5cc1 3941 dprintf("sequence number mismatch %u<->%u\n",
f43f5b32
N
3942 be32_to_cpu(first->active->seq),
3943 be32_to_cpu(second->active->seq));
3944 return 0;
2d210697 3945 }
2d210697 3946
4eefd651 3947 /*
56cb05c4
N
3948 * At this point we are fairly sure that the meta data matches.
3949 * But the new disk may contain additional local data.
3950 * Add it to the super block.
4eefd651 3951 */
f43f5b32 3952 max_vds = be16_to_cpu(first->active->max_vd_entries);
217dead4 3953 max_pds = be16_to_cpu(first->phys->max_pdes);
4eefd651 3954 for (vl2 = second->conflist; vl2; vl2 = vl2->next) {
3955 for (vl1 = first->conflist; vl1; vl1 = vl1->next)
3956 if (!memcmp(vl1->conf.guid, vl2->conf.guid,
3957 DDF_GUID_LEN))
3958 break;
3959 if (vl1) {
3960 if (vl1->other_bvds != NULL &&
3961 vl1->conf.sec_elmnt_seq !=
3962 vl2->conf.sec_elmnt_seq) {
1ade5cc1 3963 dprintf("adding BVD %u\n",
4eefd651 3964 vl2->conf.sec_elmnt_seq);
3965 add_other_bvd(vl1, &vl2->conf,
3966 first->conf_rec_len*512);
3967 }
3968 continue;
3969 }
3970
3971 if (posix_memalign((void **)&vl1, 512,
3972 (first->conf_rec_len*512 +
3973 offsetof(struct vcl, conf))) != 0) {
1ade5cc1 3974 pr_err("could not allocate vcl buf\n");
4eefd651 3975 return 3;
3976 }
3977
3978 vl1->next = first->conflist;
3979 vl1->block_sizes = NULL;
4eefd651 3980 memcpy(&vl1->conf, &vl2->conf, first->conf_rec_len*512);
3c48f7be 3981 if (alloc_other_bvds(first, vl1) != 0) {
1ade5cc1 3982 pr_err("could not allocate other bvds\n");
3c48f7be 3983 free(vl1);
3984 return 3;
3985 }
4eefd651 3986 for (vd = 0; vd < max_vds; vd++)
3987 if (!memcmp(first->virt->entries[vd].guid,
3988 vl1->conf.guid, DDF_GUID_LEN))
3989 break;
3990 vl1->vcnum = vd;
1ade5cc1 3991 dprintf("added config for VD %u\n", vl1->vcnum);
4eefd651 3992 first->conflist = vl1;
3993 }
3994
3995 for (dl2 = second->dlist; dl2; dl2 = dl2->next) {
3996 for (dl1 = first->dlist; dl1; dl1 = dl1->next)
60931cf9 3997 if (be32_eq(dl1->disk.refnum, dl2->disk.refnum))
4eefd651 3998 break;
3999 if (dl1)
4000 continue;
4001
4002 if (posix_memalign((void **)&dl1, 512,
d16a7494
JS
4003 sizeof(*dl1) + (first->max_part) *
4004 sizeof(dl1->vlist[0])) != 0) {
1ade5cc1 4005 pr_err("could not allocate disk info buffer\n");
4eefd651 4006 return 3;
4007 }
4008 memcpy(dl1, dl2, sizeof(*dl1));
4009 dl1->mdupdate = NULL;
4010 dl1->next = first->dlist;
4011 dl1->fd = -1;
4012 for (pd = 0; pd < max_pds; pd++)
60931cf9 4013 if (be32_eq(first->phys->entries[pd].refnum,
4014 dl1->disk.refnum))
4eefd651 4015 break;
41bcbc14 4016 dl1->pdnum = pd < max_pds ? (int)pd : -1;
4eefd651 4017 if (dl2->spare) {
4018 if (posix_memalign((void **)&dl1->spare, 512,
4019 first->conf_rec_len*512) != 0) {
1ade5cc1 4020 pr_err("could not allocate spare info buf\n");
4eefd651 4021 return 3;
4022 }
4023 memcpy(dl1->spare, dl2->spare, first->conf_rec_len*512);
4024 }
4025 for (vd = 0 ; vd < first->max_part ; vd++) {
4026 if (!dl2->vlist[vd]) {
4027 dl1->vlist[vd] = NULL;
4028 continue;
4029 }
4030 for (vl1 = first->conflist; vl1; vl1 = vl1->next) {
4031 if (!memcmp(vl1->conf.guid,
4032 dl2->vlist[vd]->conf.guid,
4033 DDF_GUID_LEN))
4034 break;
4035 dl1->vlist[vd] = vl1;
4036 }
4037 }
4038 first->dlist = dl1;
1ade5cc1 4039 dprintf("added disk %d: %08x\n", dl1->pdnum,
60931cf9 4040 be32_to_cpu(dl1->disk.refnum));
4eefd651 4041 }
4042
a19c88b8
NB
4043 return 0;
4044}
4045
4e5528c6
NB
4046/*
4047 * A new array 'a' has been started which claims to be instance 'inst'
4048 * within container 'c'.
4049 * We need to confirm that the array matches the metadata in 'c' so
4050 * that we don't corrupt any metadata.
4051 */
60815698 4052static int ddf_open_new(struct supertype *c, struct active_array *a, int inst)
549e9569 4053{
a2aa439e 4054 struct ddf_super *ddf = c->sb;
5daa35ac 4055 struct mdinfo *dev;
4056 struct dl *dl;
4057 static const char faulty[] = "faulty";
4058
60815698
MG
4059 if (all_ff(ddf->virt->entries[inst].guid)) {
4060 pr_err("subarray %d doesn't exist\n", inst);
a2aa439e 4061 return -ENODEV;
4062 }
60815698
MG
4063 dprintf("new subarray %d, GUID: %s\n", inst,
4064 guid_str(ddf->virt->entries[inst].guid));
5daa35ac 4065 for (dev = a->info.devs; dev; dev = dev->next) {
4066 for (dl = ddf->dlist; dl; dl = dl->next)
4067 if (dl->major == dev->disk.major &&
4068 dl->minor == dev->disk.minor)
4069 break;
a44e993e 4070 if (!dl || dl->pdnum < 0) {
1ade5cc1 4071 pr_err("device %d/%d of subarray %d not found in meta data\n",
60815698 4072 dev->disk.major, dev->disk.minor, inst);
5daa35ac 4073 return -1;
4074 }
4075 if ((be16_to_cpu(ddf->phys->entries[dl->pdnum].state) &
4076 (DDF_Online|DDF_Missing|DDF_Failed)) != DDF_Online) {
1ade5cc1 4077 pr_err("new subarray %d contains broken device %d/%d (%02x)\n",
60815698 4078 inst, dl->major, dl->minor,
1ade5cc1 4079 be16_to_cpu(ddf->phys->entries[dl->pdnum].state));
5daa35ac 4080 if (write(dev->state_fd, faulty, sizeof(faulty)-1) !=
4081 sizeof(faulty) - 1)
4082 pr_err("Write to state_fd failed\n");
4083 dev->curr_state = DS_FAULTY;
4084 }
4085 }
60815698 4086 a->info.container_member = inst;
549e9569
NB
4087 return 0;
4088}
4089
e5a03804 4090static void handle_missing(struct ddf_super *ddf, struct active_array *a, int inst)
5a46fcd7
N
4091{
4092 /* This member array is being activated. If any devices
4093 * are missing they must now be marked as failed.
4094 */
4095 struct vd_config *vc;
4096 unsigned int n_bvd;
4097 struct vcl *vcl;
4098 struct dl *dl;
e5a03804 4099 int pd;
5a46fcd7 4100 int n;
e5a03804 4101 int state;
5a46fcd7
N
4102
4103 for (n = 0; ; n++) {
4104 vc = find_vdcr(ddf, inst, n, &n_bvd, &vcl);
4105 if (!vc)
4106 break;
4107 for (dl = ddf->dlist; dl; dl = dl->next)
4108 if (be32_eq(dl->disk.refnum, vc->phys_refnum[n_bvd]))
4109 break;
4110 if (dl)
4111 /* Found this disk, so not missing */
4112 continue;
e5a03804
N
4113
4114 /* Mark the device as failed/missing. */
4115 pd = find_phys(ddf, vc->phys_refnum[n_bvd]);
4116 if (pd >= 0 && be16_and(ddf->phys->entries[pd].state,
4117 cpu_to_be16(DDF_Online))) {
4118 be16_clear(ddf->phys->entries[pd].state,
4119 cpu_to_be16(DDF_Online));
4120 be16_set(ddf->phys->entries[pd].state,
4121 cpu_to_be16(DDF_Failed|DDF_Missing));
4122 vc->phys_refnum[n_bvd] = cpu_to_be32(0);
609ce161 4123 ddf_set_updates_pending(ddf, vc);
e5a03804
N
4124 }
4125
4126 /* Mark the array as Degraded */
4127 state = get_svd_state(ddf, vcl);
4128 if (ddf->virt->entries[inst].state !=
4129 ((ddf->virt->entries[inst].state & ~DDF_state_mask)
4130 | state)) {
4131 ddf->virt->entries[inst].state =
4132 (ddf->virt->entries[inst].state & ~DDF_state_mask)
4133 | state;
4134 a->check_degraded = 1;
609ce161 4135 ddf_set_updates_pending(ddf, vc);
e5a03804 4136 }
5a46fcd7
N
4137 }
4138}
4139
4e5528c6
NB
4140/*
4141 * The array 'a' is to be marked clean in the metadata.
ed9d66aa 4142 * If '->resync_start' is not ~(unsigned long long)0, then the array is only
4e5528c6
NB
4143 * clean up to the point (in sectors). If that cannot be recorded in the
4144 * metadata, then leave it as dirty.
4145 *
4146 * For DDF, we need to clear the DDF_state_inconsistent bit in the
4147 * !global! virtual_disk.virtual_entry structure.
4148 */
01f157d7 4149static int ddf_set_array_state(struct active_array *a, int consistent)
549e9569 4150{
4e5528c6
NB
4151 struct ddf_super *ddf = a->container->sb;
4152 int inst = a->info.container_member;
18a2f463 4153 int old = ddf->virt->entries[inst].state;
01f157d7 4154 if (consistent == 2) {
e5a03804 4155 handle_missing(ddf, a, inst);
01f157d7 4156 consistent = 1;
b7941fd6 4157 if (!is_resync_complete(&a->info))
01f157d7
N
4158 consistent = 0;
4159 }
ed9d66aa
NB
4160 if (consistent)
4161 ddf->virt->entries[inst].state &= ~DDF_state_inconsistent;
4162 else
4e5528c6 4163 ddf->virt->entries[inst].state |= DDF_state_inconsistent;
18a2f463 4164 if (old != ddf->virt->entries[inst].state)
609ce161 4165 ddf_set_updates_pending(ddf, NULL);
18a2f463
NB
4166
4167 old = ddf->virt->entries[inst].init_state;
ed9d66aa 4168 ddf->virt->entries[inst].init_state &= ~DDF_initstate_mask;
b7941fd6 4169 if (is_resync_complete(&a->info))
ed9d66aa 4170 ddf->virt->entries[inst].init_state |= DDF_init_full;
b7941fd6 4171 else if (a->info.resync_start == 0)
ed9d66aa 4172 ddf->virt->entries[inst].init_state |= DDF_init_not;
4e5528c6 4173 else
ed9d66aa 4174 ddf->virt->entries[inst].init_state |= DDF_init_quick;
18a2f463 4175 if (old != ddf->virt->entries[inst].init_state)
609ce161 4176 ddf_set_updates_pending(ddf, NULL);
ed9d66aa 4177
b27336a2 4178 dprintf("ddf mark %d/%s (%d) %s %llu\n", inst,
4179 guid_str(ddf->virt->entries[inst].guid), a->curr_state,
4180 consistent?"clean":"dirty",
b7941fd6 4181 a->info.resync_start);
01f157d7 4182 return consistent;
fd7cde1b
DW
4183}
4184
5ec636b7 4185static int get_bvd_state(const struct ddf_super *ddf,
4186 const struct vd_config *vc)
4187{
4188 unsigned int i, n_bvd, working = 0;
a8173e43 4189 unsigned int n_prim = be16_to_cpu(vc->prim_elmnt_count);
5ec636b7 4190 int pd, st, state;
f70d549f
N
4191 char *avail = xcalloc(1, n_prim);
4192 mdu_array_info_t array;
4193
4194 layout_ddf2md(vc, &array);
4195
5ec636b7 4196 for (i = 0; i < n_prim; i++) {
4197 if (!find_index_in_bvd(ddf, vc, i, &n_bvd))
4198 continue;
4199 pd = find_phys(ddf, vc->phys_refnum[n_bvd]);
4200 if (pd < 0)
4201 continue;
a8173e43 4202 st = be16_to_cpu(ddf->phys->entries[pd].state);
b831b299
JS
4203 if ((st & (DDF_Online|DDF_Failed|DDF_Rebuilding)) ==
4204 DDF_Online) {
5ec636b7 4205 working++;
f70d549f
N
4206 avail[i] = 1;
4207 }
5ec636b7 4208 }
4209
4210 state = DDF_state_degraded;
4211 if (working == n_prim)
4212 state = DDF_state_optimal;
4213 else
4214 switch (vc->prl) {
4215 case DDF_RAID0:
4216 case DDF_CONCAT:
4217 case DDF_JBOD:
4218 state = DDF_state_failed;
4219 break;
4220 case DDF_RAID1:
4221 if (working == 0)
4222 state = DDF_state_failed;
4223 else if (working >= 2)
4224 state = DDF_state_part_optimal;
4225 break;
f70d549f
N
4226 case DDF_RAID1E:
4227 if (!enough(10, n_prim, array.layout, 1, avail))
4228 state = DDF_state_failed;
4229 break;
5ec636b7 4230 case DDF_RAID4:
4231 case DDF_RAID5:
4232 if (working < n_prim - 1)
4233 state = DDF_state_failed;
4234 break;
4235 case DDF_RAID6:
4236 if (working < n_prim - 2)
4237 state = DDF_state_failed;
4238 else if (working == n_prim - 1)
4239 state = DDF_state_part_optimal;
4240 break;
4241 }
4242 return state;
4243}
4244
0777d17d 4245static int secondary_state(int state, int other, int seclevel)
4246{
4247 if (state == DDF_state_optimal && other == DDF_state_optimal)
4248 return DDF_state_optimal;
4249 if (seclevel == DDF_2MIRRORED) {
4250 if (state == DDF_state_optimal || other == DDF_state_optimal)
4251 return DDF_state_part_optimal;
4252 if (state == DDF_state_failed && other == DDF_state_failed)
4253 return DDF_state_failed;
4254 return DDF_state_degraded;
4255 } else {
4256 if (state == DDF_state_failed || other == DDF_state_failed)
4257 return DDF_state_failed;
4258 if (state == DDF_state_degraded || other == DDF_state_degraded)
4259 return DDF_state_degraded;
4260 return DDF_state_part_optimal;
4261 }
4262}
4263
4264static int get_svd_state(const struct ddf_super *ddf, const struct vcl *vcl)
4265{
4266 int state = get_bvd_state(ddf, &vcl->conf);
4267 unsigned int i;
4268 for (i = 1; i < vcl->conf.sec_elmnt_count; i++) {
4269 state = secondary_state(
4270 state,
4271 get_bvd_state(ddf, vcl->other_bvds[i-1]),
4272 vcl->conf.srl);
4273 }
4274 return state;
4275}
4276
7a7cc504
NB
4277/*
4278 * The state of each disk is stored in the global phys_disk structure
4279 * in phys_disk.entries[n].state.
4280 * This makes various combinations awkward.
4281 * - When a device fails in any array, it must be failed in all arrays
4282 * that include a part of this device.
4283 * - When a component is rebuilding, we cannot include it officially in the
4284 * array unless this is the only array that uses the device.
4285 *
4286 * So: when transitioning:
4287 * Online -> failed, just set failed flag. monitor will propagate
4288 * spare -> online, the device might need to be added to the array.
4289 * spare -> failed, just set failed. Don't worry if in array or not.
4290 */
8d45d196 4291static void ddf_set_disk(struct active_array *a, int n, int state)
549e9569 4292{
7a7cc504 4293 struct ddf_super *ddf = a->container->sb;
baba3f4e 4294 unsigned int inst = a->info.container_member, n_bvd;
4295 struct vcl *vcl;
4296 struct vd_config *vc = find_vdcr(ddf, inst, (unsigned int)n,
4297 &n_bvd, &vcl);
4298 int pd;
e1316fab
N
4299 struct mdinfo *mdi;
4300 struct dl *dl;
609ce161 4301 int update = 0;
7a7cc504 4302
1ade5cc1 4303 dprintf("%d to %x\n", n, state);
7a7cc504 4304 if (vc == NULL) {
2c514b71 4305 dprintf("ddf: cannot find instance %d!!\n", inst);
7a7cc504
NB
4306 return;
4307 }
e1316fab
N
4308 /* Find the matching slot in 'info'. */
4309 for (mdi = a->info.devs; mdi; mdi = mdi->next)
4310 if (mdi->disk.raid_disk == n)
4311 break;
ce6844b9 4312 if (!mdi) {
1ade5cc1 4313 pr_err("cannot find raid disk %d\n", n);
e1316fab 4314 return;
ce6844b9 4315 }
e1316fab
N
4316
4317 /* and find the 'dl' entry corresponding to that. */
4318 for (dl = ddf->dlist; dl; dl = dl->next)
77632af9
N
4319 if (mdi->state_fd >= 0 &&
4320 mdi->disk.major == dl->major &&
e1316fab
N
4321 mdi->disk.minor == dl->minor)
4322 break;
ce6844b9 4323 if (!dl) {
1ade5cc1
N
4324 pr_err("cannot find raid disk %d (%d/%d)\n",
4325 n, mdi->disk.major, mdi->disk.minor);
e1316fab 4326 return;
ce6844b9 4327 }
e1316fab 4328
baba3f4e 4329 pd = find_phys(ddf, vc->phys_refnum[n_bvd]);
e1316fab
N
4330 if (pd < 0 || pd != dl->pdnum) {
4331 /* disk doesn't currently exist or has changed.
4332 * If it is now in_sync, insert it. */
1ade5cc1
N
4333 dprintf("phys disk not found for %d: %d/%d ref %08x\n",
4334 dl->pdnum, dl->major, dl->minor,
60931cf9 4335 be32_to_cpu(dl->disk.refnum));
1ade5cc1
N
4336 dprintf("array %u disk %u ref %08x pd %d\n",
4337 inst, n_bvd,
60931cf9 4338 be32_to_cpu(vc->phys_refnum[n_bvd]), pd);
98fbc0ff
N
4339 if ((state & DS_INSYNC) && ! (state & DS_FAULTY) &&
4340 dl->pdnum >= 0) {
4341 pd = dl->pdnum;
baba3f4e 4342 vc->phys_refnum[n_bvd] = dl->disk.refnum;
57a66662 4343 LBA_OFFSET(ddf, vc)[n_bvd] =
9d0c6b70 4344 cpu_to_be64(mdi->data_offset);
a8173e43 4345 be16_clear(ddf->phys->entries[pd].type,
4346 cpu_to_be16(DDF_Global_Spare));
4347 be16_set(ddf->phys->entries[pd].type,
4348 cpu_to_be16(DDF_Active_in_VD));
609ce161 4349 update = 1;
7a7cc504
NB
4350 }
4351 } else {
a8173e43 4352 be16 old = ddf->phys->entries[pd].state;
7a7cc504 4353 if (state & DS_FAULTY)
a8173e43 4354 be16_set(ddf->phys->entries[pd].state,
4355 cpu_to_be16(DDF_Failed));
7a7cc504 4356 if (state & DS_INSYNC) {
a8173e43 4357 be16_set(ddf->phys->entries[pd].state,
4358 cpu_to_be16(DDF_Online));
4359 be16_clear(ddf->phys->entries[pd].state,
4360 cpu_to_be16(DDF_Rebuilding));
7a7cc504 4361 }
a8173e43 4362 if (!be16_eq(old, ddf->phys->entries[pd].state))
609ce161 4363 update = 1;
7a7cc504
NB
4364 }
4365
ce6844b9
MW
4366 dprintf("ddf: set_disk %d (%08x) to %x->%02x\n", n,
4367 be32_to_cpu(dl->disk.refnum), state,
4368 be16_to_cpu(ddf->phys->entries[pd].state));
7e1432fb 4369
7a7cc504
NB
4370 /* Now we need to check the state of the array and update
4371 * virtual_disk.entries[n].state.
4372 * It needs to be one of "optimal", "degraded", "failed".
4373 * I don't understand 'deleted' or 'missing'.
4374 */
0777d17d 4375 state = get_svd_state(ddf, vcl);
7a7cc504 4376
18a2f463
NB
4377 if (ddf->virt->entries[inst].state !=
4378 ((ddf->virt->entries[inst].state & ~DDF_state_mask)
4379 | state)) {
18a2f463
NB
4380 ddf->virt->entries[inst].state =
4381 (ddf->virt->entries[inst].state & ~DDF_state_mask)
4382 | state;
609ce161 4383 update = 1;
18a2f463 4384 }
609ce161
N
4385 if (update)
4386 ddf_set_updates_pending(ddf, vc);
549e9569
NB
4387}
4388
2e735d19 4389static void ddf_sync_metadata(struct supertype *st)
549e9569 4390{
7a7cc504
NB
4391 /*
4392 * Write all data to all devices.
4393 * Later, we might be able to track whether only local changes
4394 * have been made, or whether any global data has been changed,
4395 * but ddf is sufficiently weird that it probably always
4396 * changes global data ....
4397 */
18a2f463
NB
4398 struct ddf_super *ddf = st->sb;
4399 if (!ddf->updates_pending)
4400 return;
4401 ddf->updates_pending = 0;
3921e41a 4402 __write_init_super_ddf(st);
2c514b71 4403 dprintf("ddf: sync_metadata\n");
549e9569
NB
4404}
4405
f646805e 4406static int del_from_conflist(struct vcl **list, const char *guid)
4407{
4408 struct vcl **p;
4409 int found = 0;
4410 for (p = list; p && *p; p = &((*p)->next))
4411 if (!memcmp((*p)->conf.guid, guid, DDF_GUID_LEN)) {
4412 found = 1;
4413 *p = (*p)->next;
4414 }
4415 return found;
4416}
4417
4418static int _kill_subarray_ddf(struct ddf_super *ddf, const char *guid)
4419{
4420 struct dl *dl;
4421 unsigned int vdnum, i;
4422 vdnum = find_vde_by_guid(ddf, guid);
4423 if (vdnum == DDF_NOTFOUND) {
1ade5cc1 4424 pr_err("could not find VD %s\n", guid_str(guid));
f646805e 4425 return -1;
4426 }
4427 if (del_from_conflist(&ddf->conflist, guid) == 0) {
1ade5cc1 4428 pr_err("could not find conf %s\n", guid_str(guid));
f646805e 4429 return -1;
4430 }
4431 for (dl = ddf->dlist; dl; dl = dl->next)
4432 for (i = 0; i < ddf->max_part; i++)
4433 if (dl->vlist[i] != NULL &&
4434 !memcmp(dl->vlist[i]->conf.guid, guid,
4435 DDF_GUID_LEN))
4436 dl->vlist[i] = NULL;
4437 memset(ddf->virt->entries[vdnum].guid, 0xff, DDF_GUID_LEN);
1ade5cc1 4438 dprintf("deleted %s\n", guid_str(guid));
f646805e 4439 return 0;
4440}
4441
3364781b 4442static int kill_subarray_ddf(struct supertype *st, char *subarray_id)
f646805e 4443{
4444 struct ddf_super *ddf = st->sb;
4445 /*
4446 * currentconf is set in container_content_ddf,
4447 * called with subarray arg
4448 */
4449 struct vcl *victim = ddf->currentconf;
4450 struct vd_config *conf;
f646805e 4451 unsigned int vdnum;
56cb05c4
N
4452
4453 ddf->currentconf = NULL;
f646805e 4454 if (!victim) {
1ade5cc1 4455 pr_err("nothing to kill\n");
f646805e 4456 return -1;
4457 }
4458 conf = &victim->conf;
4459 vdnum = find_vde_by_guid(ddf, conf->guid);
4460 if (vdnum == DDF_NOTFOUND) {
1ade5cc1 4461 pr_err("could not find VD %s\n", guid_str(conf->guid));
f646805e 4462 return -1;
4463 }
4464 if (st->update_tail) {
4465 struct virtual_disk *vd;
4466 int len = sizeof(struct virtual_disk)
4467 + sizeof(struct virtual_entry);
4468 vd = xmalloc(len);
4469 if (vd == NULL) {
1ade5cc1 4470 pr_err("failed to allocate %d bytes\n", len);
f646805e 4471 return -1;
4472 }
4473 memset(vd, 0 , len);
4474 vd->magic = DDF_VIRT_RECORDS_MAGIC;
a8173e43 4475 vd->populated_vdes = cpu_to_be16(0);
f646805e 4476 memcpy(vd->entries[0].guid, conf->guid, DDF_GUID_LEN);
4477 /* we use DDF_state_deleted as marker */
4478 vd->entries[0].state = DDF_state_deleted;
4479 append_metadata_update(st, vd, len);
6a350d82 4480 } else {
f646805e 4481 _kill_subarray_ddf(ddf, conf->guid);
609ce161 4482 ddf_set_updates_pending(ddf, NULL);
6a350d82 4483 ddf_sync_metadata(st);
4484 }
f646805e 4485 return 0;
4486}
4487
c5943560 4488static void copy_matching_bvd(struct ddf_super *ddf,
4489 struct vd_config *conf,
4490 const struct metadata_update *update)
4491{
4492 unsigned int mppe =
a8173e43 4493 be16_to_cpu(ddf->anchor.max_primary_element_entries);
c5943560 4494 unsigned int len = ddf->conf_rec_len * 512;
4495 char *p;
4496 struct vd_config *vc;
4497 for (p = update->buf; p < update->buf + update->len; p += len) {
4498 vc = (struct vd_config *) p;
4499 if (vc->sec_elmnt_seq == conf->sec_elmnt_seq) {
4500 memcpy(conf->phys_refnum, vc->phys_refnum,
4501 mppe * (sizeof(__u32) + sizeof(__u64)));
4502 return;
4503 }
4504 }
1ade5cc1 4505 pr_err("no match for BVD %d of %s in update\n",
c5943560 4506 conf->sec_elmnt_seq, guid_str(conf->guid));
4507}
4508
fea6a6c0
N
4509static void ddf_process_phys_update(struct supertype *st,
4510 struct metadata_update *update)
4511{
4512 struct ddf_super *ddf = st->sb;
4513 struct phys_disk *pd;
4514 unsigned int ent;
4515
4516 pd = (struct phys_disk*)update->buf;
4517 ent = be16_to_cpu(pd->used_pdes);
4518 if (ent >= be16_to_cpu(ddf->phys->max_pdes))
4519 return;
4520 if (be16_and(pd->entries[0].state, cpu_to_be16(DDF_Missing))) {
4521 struct dl **dlp;
4522 /* removing this disk. */
4523 be16_set(ddf->phys->entries[ent].state,
4524 cpu_to_be16(DDF_Missing));
4525 for (dlp = &ddf->dlist; *dlp; dlp = &(*dlp)->next) {
4526 struct dl *dl = *dlp;
4527 if (dl->pdnum == (signed)ent) {
4528 close(dl->fd);
4529 dl->fd = -1;
fea6a6c0 4530 *dlp = dl->next;
de910774
N
4531 update->space = dl->devname;
4532 *(void**)dl = update->space_list;
4533 update->space_list = (void**)dl;
fea6a6c0
N
4534 break;
4535 }
4536 }
4537 ddf_set_updates_pending(ddf, NULL);
4538 return;
4539 }
4540 if (!all_ff(ddf->phys->entries[ent].guid))
4541 return;
4542 ddf->phys->entries[ent] = pd->entries[0];
4543 ddf->phys->used_pdes = cpu_to_be16
4544 (1 + be16_to_cpu(ddf->phys->used_pdes));
4545 ddf_set_updates_pending(ddf, NULL);
4546 if (ddf->add_list) {
4547 struct active_array *a;
4548 struct dl *al = ddf->add_list;
4549 ddf->add_list = al->next;
4550
4551 al->next = ddf->dlist;
4552 ddf->dlist = al;
4553
4554 /* As a device has been added, we should check
4555 * for any degraded devices that might make
4556 * use of this spare */
4557 for (a = st->arrays ; a; a=a->next)
4558 a->check_degraded = 1;
4559 }
4560}
4561
4562static void ddf_process_virt_update(struct supertype *st,
4563 struct metadata_update *update)
4564{
4565 struct ddf_super *ddf = st->sb;
4566 struct virtual_disk *vd;
4567 unsigned int ent;
4568
4569 vd = (struct virtual_disk*)update->buf;
4570
4571 if (vd->entries[0].state == DDF_state_deleted) {
4572 if (_kill_subarray_ddf(ddf, vd->entries[0].guid))
4573 return;
4574 } else {
4575 ent = find_vde_by_guid(ddf, vd->entries[0].guid);
4576 if (ent != DDF_NOTFOUND) {
1ade5cc1
N
4577 dprintf("VD %s exists already in slot %d\n",
4578 guid_str(vd->entries[0].guid),
fea6a6c0
N
4579 ent);
4580 return;
4581 }
4582 ent = find_unused_vde(ddf);
4583 if (ent == DDF_NOTFOUND)
4584 return;
4585 ddf->virt->entries[ent] = vd->entries[0];
4586 ddf->virt->populated_vdes =
4587 cpu_to_be16(
4588 1 + be16_to_cpu(
4589 ddf->virt->populated_vdes));
1ade5cc1
N
4590 dprintf("added VD %s in slot %d(s=%02x i=%02x)\n",
4591 guid_str(vd->entries[0].guid), ent,
fea6a6c0
N
4592 ddf->virt->entries[ent].state,
4593 ddf->virt->entries[ent].init_state);
4594 }
4595 ddf_set_updates_pending(ddf, NULL);
4596}
4597
4598static void ddf_remove_failed(struct ddf_super *ddf)
4599{
4600 /* Now remove any 'Failed' devices that are not part
4601 * of any VD. They will have the Transition flag set.
4602 * Once done, we need to update all dl->pdnum numbers.
4603 */
4604 unsigned int pdnum;
4605 unsigned int pd2 = 0;
4606 struct dl *dl;
4607
4608 for (pdnum = 0; pdnum < be16_to_cpu(ddf->phys->max_pdes);
4609 pdnum++) {
4610 if (be32_to_cpu(ddf->phys->entries[pdnum].refnum) ==
4611 0xFFFFFFFF)
4612 continue;
4613 if (be16_and(ddf->phys->entries[pdnum].state,
fc54fe7a
JS
4614 cpu_to_be16(DDF_Failed)) &&
4615 be16_and(ddf->phys->entries[pdnum].state,
4616 cpu_to_be16(DDF_Transition))) {
fea6a6c0
N
4617 /* skip this one unless in dlist*/
4618 for (dl = ddf->dlist; dl; dl = dl->next)
4619 if (dl->pdnum == (int)pdnum)
4620 break;
4621 if (!dl)
4622 continue;
4623 }
4624 if (pdnum == pd2)
4625 pd2++;
4626 else {
4627 ddf->phys->entries[pd2] =
4628 ddf->phys->entries[pdnum];
4629 for (dl = ddf->dlist; dl; dl = dl->next)
4630 if (dl->pdnum == (int)pdnum)
4631 dl->pdnum = pd2;
4632 pd2++;
4633 }
4634 }
4635 ddf->phys->used_pdes = cpu_to_be16(pd2);
4636 while (pd2 < pdnum) {
4637 memset(ddf->phys->entries[pd2].guid, 0xff,
4638 DDF_GUID_LEN);
4639 pd2++;
4640 }
4641}
4642
4643static void ddf_update_vlist(struct ddf_super *ddf, struct dl *dl)
4644{
4645 struct vcl *vcl;
4646 unsigned int vn = 0;
4647 int in_degraded = 0;
4648
4649 if (dl->pdnum < 0)
4650 return;
4651 for (vcl = ddf->conflist; vcl ; vcl = vcl->next) {
4652 unsigned int dn, ibvd;
4653 const struct vd_config *conf;
4654 int vstate;
4655 dn = get_pd_index_from_refnum(vcl,
4656 dl->disk.refnum,
4657 ddf->mppe,
4658 &conf, &ibvd);
4659 if (dn == DDF_NOTFOUND)
4660 continue;
4661 dprintf("dev %d/%08x has %s (sec=%u) at %d\n",
4662 dl->pdnum,
4663 be32_to_cpu(dl->disk.refnum),
4664 guid_str(conf->guid),
4665 conf->sec_elmnt_seq, vn);
4666 /* Clear the Transition flag */
4667 if (be16_and
4668 (ddf->phys->entries[dl->pdnum].state,
4669 cpu_to_be16(DDF_Failed)))
4670 be16_clear(ddf->phys
4671 ->entries[dl->pdnum].state,
4672 cpu_to_be16(DDF_Transition));
4673 dl->vlist[vn++] = vcl;
4674 vstate = ddf->virt->entries[vcl->vcnum].state
4675 & DDF_state_mask;
4676 if (vstate == DDF_state_degraded ||
4677 vstate == DDF_state_part_optimal)
4678 in_degraded = 1;
4679 }
4680 while (vn < ddf->max_part)
4681 dl->vlist[vn++] = NULL;
4682 if (dl->vlist[0]) {
4683 be16_clear(ddf->phys->entries[dl->pdnum].type,
4684 cpu_to_be16(DDF_Global_Spare));
4685 if (!be16_and(ddf->phys
4686 ->entries[dl->pdnum].type,
4687 cpu_to_be16(DDF_Active_in_VD))) {
4688 be16_set(ddf->phys
4689 ->entries[dl->pdnum].type,
4690 cpu_to_be16(DDF_Active_in_VD));
4691 if (in_degraded)
4692 be16_set(ddf->phys
4693 ->entries[dl->pdnum]
4694 .state,
4695 cpu_to_be16
4696 (DDF_Rebuilding));
4697 }
4698 }
4699 if (dl->spare) {
4700 be16_clear(ddf->phys->entries[dl->pdnum].type,
4701 cpu_to_be16(DDF_Global_Spare));
4702 be16_set(ddf->phys->entries[dl->pdnum].type,
4703 cpu_to_be16(DDF_Spare));
4704 }
4705 if (!dl->vlist[0] && !dl->spare) {
4706 be16_set(ddf->phys->entries[dl->pdnum].type,
4707 cpu_to_be16(DDF_Global_Spare));
4708 be16_clear(ddf->phys->entries[dl->pdnum].type,
4709 cpu_to_be16(DDF_Spare));
4710 be16_clear(ddf->phys->entries[dl->pdnum].type,
4711 cpu_to_be16(DDF_Active_in_VD));
4712 }
4713}
4714
4715static void ddf_process_conf_update(struct supertype *st,
4716 struct metadata_update *update)
4717{
4718 struct ddf_super *ddf = st->sb;
4719 struct vd_config *vc;
4720 struct vcl *vcl;
4721 struct dl *dl;
4722 unsigned int ent;
4723 unsigned int pdnum, len;
4724
4725 vc = (struct vd_config*)update->buf;
4726 len = ddf->conf_rec_len * 512;
4727 if ((unsigned int)update->len != len * vc->sec_elmnt_count) {
1ade5cc1
N
4728 pr_err("%s: insufficient data (%d) for %u BVDs\n",
4729 guid_str(vc->guid), update->len,
fea6a6c0
N
4730 vc->sec_elmnt_count);
4731 return;
4732 }
4733 for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
4734 if (memcmp(vcl->conf.guid, vc->guid, DDF_GUID_LEN) == 0)
4735 break;
1ade5cc1 4736 dprintf("conf update for %s (%s)\n",
fea6a6c0
N
4737 guid_str(vc->guid), (vcl ? "old" : "new"));
4738 if (vcl) {
4739 /* An update, just copy the phys_refnum and lba_offset
4740 * fields
4741 */
4742 unsigned int i;
4743 unsigned int k;
4744 copy_matching_bvd(ddf, &vcl->conf, update);
4745 for (k = 0; k < be16_to_cpu(vc->prim_elmnt_count); k++)
4746 dprintf("BVD %u has %08x at %llu\n", 0,
4747 be32_to_cpu(vcl->conf.phys_refnum[k]),
4748 be64_to_cpu(LBA_OFFSET(ddf,
4749 &vcl->conf)[k]));
4750 for (i = 1; i < vc->sec_elmnt_count; i++) {
4751 copy_matching_bvd(ddf, vcl->other_bvds[i-1],
4752 update);
4753 for (k = 0; k < be16_to_cpu(
4754 vc->prim_elmnt_count); k++)
4755 dprintf("BVD %u has %08x at %llu\n", i,
4756 be32_to_cpu
4757 (vcl->other_bvds[i-1]->
4758 phys_refnum[k]),
4759 be64_to_cpu
4760 (LBA_OFFSET
4761 (ddf,
4762 vcl->other_bvds[i-1])[k]));
4763 }
4764 } else {
4765 /* A new VD_CONF */
4766 unsigned int i;
4767 if (!update->space)
4768 return;
4769 vcl = update->space;
4770 update->space = NULL;
4771 vcl->next = ddf->conflist;
4772 memcpy(&vcl->conf, vc, len);
4773 ent = find_vde_by_guid(ddf, vc->guid);
4774 if (ent == DDF_NOTFOUND)
4775 return;
4776 vcl->vcnum = ent;
4777 ddf->conflist = vcl;
4778 for (i = 1; i < vc->sec_elmnt_count; i++)
4779 memcpy(vcl->other_bvds[i-1],
4780 update->buf + len * i, len);
4781 }
4782 /* Set DDF_Transition on all Failed devices - to help
4783 * us detect those that are no longer in use
4784 */
4785 for (pdnum = 0; pdnum < be16_to_cpu(ddf->phys->max_pdes);
4786 pdnum++)
4787 if (be16_and(ddf->phys->entries[pdnum].state,
4788 cpu_to_be16(DDF_Failed)))
4789 be16_set(ddf->phys->entries[pdnum].state,
4790 cpu_to_be16(DDF_Transition));
4791
4792 /* Now make sure vlist is correct for each dl. */
4793 for (dl = ddf->dlist; dl; dl = dl->next)
4794 ddf_update_vlist(ddf, dl);
4795 ddf_remove_failed(ddf);
4796
4797 ddf_set_updates_pending(ddf, vc);
4798}
4799
88c164f4
NB
4800static void ddf_process_update(struct supertype *st,
4801 struct metadata_update *update)
4802{
4803 /* Apply this update to the metadata.
4804 * The first 4 bytes are a DDF_*_MAGIC which guides
4805 * our actions.
4806 * Possible update are:
4807 * DDF_PHYS_RECORDS_MAGIC
4dd968cc
N
4808 * Add a new physical device or remove an old one.
4809 * Changes to this record only happen implicitly.
88c164f4
NB
4810 * used_pdes is the device number.
4811 * DDF_VIRT_RECORDS_MAGIC
4812 * Add a new VD. Possibly also change the 'access' bits.
4813 * populated_vdes is the entry number.
4814 * DDF_VD_CONF_MAGIC
4815 * New or updated VD. the VIRT_RECORD must already
4816 * exist. For an update, phys_refnum and lba_offset
4817 * (at least) are updated, and the VD_CONF must
4818 * be written to precisely those devices listed with
4819 * a phys_refnum.
4820 * DDF_SPARE_ASSIGN_MAGIC
4821 * replacement Spare Assignment Record... but for which device?
4822 *
4823 * So, e.g.:
4824 * - to create a new array, we send a VIRT_RECORD and
4825 * a VD_CONF. Then assemble and start the array.
4826 * - to activate a spare we send a VD_CONF to add the phys_refnum
4827 * and offset. This will also mark the spare as active with
4828 * a spare-assignment record.
4829 */
60931cf9 4830 be32 *magic = (be32 *)update->buf;
88c164f4 4831
60931cf9 4832 dprintf("Process update %x\n", be32_to_cpu(*magic));
7e1432fb 4833
60931cf9 4834 if (be32_eq(*magic, DDF_PHYS_RECORDS_MAGIC)) {
fea6a6c0 4835 if (update->len == (sizeof(struct phys_disk) +
88c164f4 4836 sizeof(struct phys_disk_entry)))
fea6a6c0 4837 ddf_process_phys_update(st, update);
60931cf9 4838 } else if (be32_eq(*magic, DDF_VIRT_RECORDS_MAGIC)) {
fea6a6c0 4839 if (update->len == (sizeof(struct virtual_disk) +
88c164f4 4840 sizeof(struct virtual_entry)))
fea6a6c0
N
4841 ddf_process_virt_update(st, update);
4842 } else if (be32_eq(*magic, DDF_VD_CONF_MAGIC)) {
4843 ddf_process_conf_update(st, update);
88c164f4 4844 }
60931cf9 4845 /* case DDF_SPARE_ASSIGN_MAGIC */
88c164f4
NB
4846}
4847
5fe6f031
N
4848static int ddf_prepare_update(struct supertype *st,
4849 struct metadata_update *update)
edd8d13c
NB
4850{
4851 /* This update arrived at managemon.
4852 * We are about to pass it to monitor.
4853 * If a malloc is needed, do it here.
4854 */
4855 struct ddf_super *ddf = st->sb;
1f17f96b
N
4856 be32 *magic;
4857 if (update->len < 4)
4858 return 0;
4859 magic = (be32 *)update->buf;
60931cf9 4860 if (be32_eq(*magic, DDF_VD_CONF_MAGIC)) {
c5943560 4861 struct vcl *vcl;
1f17f96b
N
4862 struct vd_config *conf;
4863 if (update->len < (int)sizeof(*conf))
4864 return 0;
4865 conf = (struct vd_config *) update->buf;
e6b9548d 4866 if (posix_memalign(&update->space, 512,
613b0d17 4867 offsetof(struct vcl, conf)
c5943560 4868 + ddf->conf_rec_len * 512) != 0) {
4869 update->space = NULL;
5fe6f031 4870 return 0;
c5943560 4871 }
4872 vcl = update->space;
4873 vcl->conf.sec_elmnt_count = conf->sec_elmnt_count;
4874 if (alloc_other_bvds(ddf, vcl) != 0) {
4875 free(update->space);
e6b9548d 4876 update->space = NULL;
5fe6f031 4877 return 0;
c5943560 4878 }
4879 }
5fe6f031 4880 return 1;
edd8d13c
NB
4881}
4882
7733b91d 4883/*
4884 * Check degraded state of a RAID10.
4885 * returns 2 for good, 1 for degraded, 0 for failed, and -1 for error
4886 */
4887static int raid10_degraded(struct mdinfo *info)
4888{
4889 int n_prim, n_bvds;
4890 int i;
9591a2de 4891 struct mdinfo *d;
7733b91d 4892 char *found;
4893 int ret = -1;
4894
7733b91d 4895 n_prim = info->array.layout & ~0x100;
4896 n_bvds = info->array.raid_disks / n_prim;
4897 found = xmalloc(n_bvds);
4898 if (found == NULL)
4899 return ret;
4900 memset(found, 0, n_bvds);
4901 for (d = info->devs; d; d = d->next) {
4902 i = d->disk.raid_disk / n_prim;
4903 if (i >= n_bvds) {
1ade5cc1 4904 pr_err("BUG: invalid raid disk\n");
7733b91d 4905 goto out;
4906 }
b71de056 4907 if (is_fd_valid(d->state_fd))
7733b91d 4908 found[i]++;
4909 }
4910 ret = 2;
4911 for (i = 0; i < n_bvds; i++)
4912 if (!found[i]) {
1ade5cc1 4913 dprintf("BVD %d/%d failed\n", i, n_bvds);
7733b91d 4914 ret = 0;
4915 goto out;
4916 } else if (found[i] < n_prim) {
1ade5cc1 4917 dprintf("BVD %d/%d degraded\n", i, n_bvds);
7733b91d 4918 ret = 1;
4919 }
4920out:
4921 free(found);
4922 return ret;
4923}
4924
7e1432fb
NB
4925/*
4926 * Check if the array 'a' is degraded but not failed.
4927 * If it is, find as many spares as are available and needed and
4928 * arrange for their inclusion.
4929 * We only choose devices which are not already in the array,
4930 * and prefer those with a spare-assignment to this array.
56cb05c4 4931 * Otherwise we choose global spares - assuming always that
7e1432fb
NB
4932 * there is enough room.
4933 * For each spare that we assign, we return an 'mdinfo' which
4934 * describes the position for the device in the array.
4935 * We also add to 'updates' a DDF_VD_CONF_MAGIC update with
4936 * the new phys_refnum and lba_offset values.
4937 *
4938 * Only worry about BVDs at the moment.
4939 */
4940static struct mdinfo *ddf_activate_spare(struct active_array *a,
4941 struct metadata_update **updates)
4942{
4943 int working = 0;
4944 struct mdinfo *d;
4945 struct ddf_super *ddf = a->container->sb;
4946 int global_ok = 0;
4947 struct mdinfo *rv = NULL;
4948 struct mdinfo *di;
4949 struct metadata_update *mu;
4950 struct dl *dl;
4951 int i;
0c78849f 4952 unsigned int j;
baba3f4e 4953 struct vcl *vcl;
7e1432fb 4954 struct vd_config *vc;
baba3f4e 4955 unsigned int n_bvd;
7e1432fb 4956
7e1432fb
NB
4957 for (d = a->info.devs ; d ; d = d->next) {
4958 if ((d->curr_state & DS_FAULTY) &&
613b0d17 4959 d->state_fd >= 0)
7e1432fb
NB
4960 /* wait for Removal to happen */
4961 return NULL;
4962 if (d->state_fd >= 0)
4963 working ++;
4964 }
4965
1ade5cc1 4966 dprintf("working=%d (%d) level=%d\n", working,
a8173e43 4967 a->info.array.raid_disks,
2c514b71 4968 a->info.array.level);
7e1432fb
NB
4969 if (working == a->info.array.raid_disks)
4970 return NULL; /* array not degraded */
4971 switch (a->info.array.level) {
4972 case 1:
4973 if (working == 0)
4974 return NULL; /* failed */
4975 break;
4976 case 4:
4977 case 5:
4978 if (working < a->info.array.raid_disks - 1)
4979 return NULL; /* failed */
4980 break;
4981 case 6:
4982 if (working < a->info.array.raid_disks - 2)
4983 return NULL; /* failed */
4984 break;
7733b91d 4985 case 10:
4986 if (raid10_degraded(&a->info) < 1)
4987 return NULL;
4988 break;
7e1432fb
NB
4989 default: /* concat or stripe */
4990 return NULL; /* failed */
4991 }
4992
4993 /* For each slot, if it is not working, find a spare */
4994 dl = ddf->dlist;
4995 for (i = 0; i < a->info.array.raid_disks; i++) {
4996 for (d = a->info.devs ; d ; d = d->next)
4997 if (d->disk.raid_disk == i)
4998 break;
2c514b71 4999 dprintf("found %d: %p %x\n", i, d, d?d->curr_state:0);
7e1432fb
NB
5000 if (d && (d->state_fd >= 0))
5001 continue;
5002
5003 /* OK, this device needs recovery. Find a spare */
5004 again:
5005 for ( ; dl ; dl = dl->next) {
5006 unsigned long long esize;
5007 unsigned long long pos;
5008 struct mdinfo *d2;
5009 int is_global = 0;
5010 int is_dedicated = 0;
a44e993e
N
5011 be16 state;
5012
5013 if (dl->pdnum < 0)
5014 continue;
5015 state = ddf->phys->entries[dl->pdnum].state;
6f56dbb9
MW
5016 if (be16_and(state,
5017 cpu_to_be16(DDF_Failed|DDF_Missing)) ||
5018 !be16_and(state,
5019 cpu_to_be16(DDF_Online)))
5020 continue;
5021
7e1432fb
NB
5022 /* If in this array, skip */
5023 for (d2 = a->info.devs ; d2 ; d2 = d2->next)
7590d562
N
5024 if (d2->state_fd >= 0 &&
5025 d2->disk.major == dl->major &&
7e1432fb 5026 d2->disk.minor == dl->minor) {
2a645ee2
MW
5027 dprintf("%x:%x (%08x) already in array\n",
5028 dl->major, dl->minor,
5029 be32_to_cpu(dl->disk.refnum));
7e1432fb
NB
5030 break;
5031 }
5032 if (d2)
5033 continue;
a8173e43 5034 if (be16_and(ddf->phys->entries[dl->pdnum].type,
5035 cpu_to_be16(DDF_Spare))) {
7e1432fb
NB
5036 /* Check spare assign record */
5037 if (dl->spare) {
5038 if (dl->spare->type & DDF_spare_dedicated) {
5039 /* check spare_ents for guid */
fca65520 5040 unsigned int j;
7e1432fb 5041 for (j = 0 ;
a8173e43 5042 j < be16_to_cpu
5043 (dl->spare
5044 ->populated);
7e1432fb
NB
5045 j++) {
5046 if (memcmp(dl->spare->spare_ents[j].guid,
5047 ddf->virt->entries[a->info.container_member].guid,
5048 DDF_GUID_LEN) == 0)
5049 is_dedicated = 1;
5050 }
5051 } else
5052 is_global = 1;
5053 }
a8173e43 5054 } else if (be16_and(ddf->phys->entries[dl->pdnum].type,
5055 cpu_to_be16(DDF_Global_Spare))) {
7e1432fb 5056 is_global = 1;
a8173e43 5057 } else if (!be16_and(ddf->phys
5058 ->entries[dl->pdnum].state,
5059 cpu_to_be16(DDF_Failed))) {
e0e7aeaa
N
5060 /* we can possibly use some of this */
5061 is_global = 1;
7e1432fb
NB
5062 }
5063 if ( ! (is_dedicated ||
5064 (is_global && global_ok))) {
2c514b71 5065 dprintf("%x:%x not suitable: %d %d\n", dl->major, dl->minor,
613b0d17 5066 is_dedicated, is_global);
7e1432fb
NB
5067 continue;
5068 }
5069
5070 /* We are allowed to use this device - is there space?
5071 * We need a->info.component_size sectors */
fca65520
N
5072 esize = a->info.component_size;
5073 pos = find_space(ddf, dl, INVALID_SECTORS, &esize);
7e1432fb 5074
7e1432fb 5075 if (esize < a->info.component_size) {
e5cc7d46
N
5076 dprintf("%x:%x has no room: %llu %llu\n",
5077 dl->major, dl->minor,
2c514b71 5078 esize, a->info.component_size);
7e1432fb
NB
5079 /* No room */
5080 continue;
5081 }
5082
5083 /* Cool, we have a device with some space at pos */
503975b9 5084 di = xcalloc(1, sizeof(*di));
7e1432fb
NB
5085 di->disk.number = i;
5086 di->disk.raid_disk = i;
5087 di->disk.major = dl->major;
5088 di->disk.minor = dl->minor;
5089 di->disk.state = 0;
d23534e4 5090 di->recovery_start = 0;
7e1432fb
NB
5091 di->data_offset = pos;
5092 di->component_size = a->info.component_size;
7e1432fb
NB
5093 di->next = rv;
5094 rv = di;
2a645ee2
MW
5095 dprintf("%x:%x (%08x) to be %d at %llu\n",
5096 dl->major, dl->minor,
5097 be32_to_cpu(dl->disk.refnum), i, pos);
7e1432fb
NB
5098
5099 break;
5100 }
5101 if (!dl && ! global_ok) {
5102 /* not enough dedicated spares, try global */
5103 global_ok = 1;
5104 dl = ddf->dlist;
5105 goto again;
5106 }
5107 }
5108
5109 if (!rv)
5110 /* No spares found */
5111 return rv;
5112 /* Now 'rv' has a list of devices to return.
5113 * Create a metadata_update record to update the
5114 * phys_refnum and lba_offset values
5115 */
bb925ff0 5116 vc = find_vdcr(ddf, a->info.container_member, rv->disk.raid_disk,
0c78849f 5117 &n_bvd, &vcl);
626bc453
MG
5118 if (vc == NULL) {
5119 free(rv);
0c78849f 5120 return NULL;
626bc453 5121 }
0c78849f 5122
503975b9
N
5123 mu = xmalloc(sizeof(*mu));
5124 if (posix_memalign(&mu->space, 512, sizeof(struct vcl)) != 0) {
79244939 5125 free(mu);
626bc453
MG
5126 free(rv);
5127 return NULL;
79244939 5128 }
0c78849f 5129
5130 mu->len = ddf->conf_rec_len * 512 * vcl->conf.sec_elmnt_count;
5131 mu->buf = xmalloc(mu->len);
7590d562 5132 mu->space = NULL;
f50ae22e 5133 mu->space_list = NULL;
7e1432fb 5134 mu->next = *updates;
0c78849f 5135 memcpy(mu->buf, &vcl->conf, ddf->conf_rec_len * 512);
5136 for (j = 1; j < vcl->conf.sec_elmnt_count; j++)
5137 memcpy(mu->buf + j * ddf->conf_rec_len * 512,
5138 vcl->other_bvds[j-1], ddf->conf_rec_len * 512);
7e1432fb
NB
5139
5140 vc = (struct vd_config*)mu->buf;
7e1432fb 5141 for (di = rv ; di ; di = di->next) {
0c78849f 5142 unsigned int i_sec, i_prim;
5143 i_sec = di->disk.raid_disk
5144 / be16_to_cpu(vcl->conf.prim_elmnt_count);
5145 i_prim = di->disk.raid_disk
5146 % be16_to_cpu(vcl->conf.prim_elmnt_count);
5147 vc = (struct vd_config *)(mu->buf
5148 + i_sec * ddf->conf_rec_len * 512);
5149 for (dl = ddf->dlist; dl; dl = dl->next)
fc54fe7a
JS
5150 if (dl->major == di->disk.major &&
5151 dl->minor == di->disk.minor)
0c78849f 5152 break;
a44e993e 5153 if (!dl || dl->pdnum < 0) {
1ade5cc1
N
5154 pr_err("BUG: can't find disk %d (%d/%d)\n",
5155 di->disk.raid_disk,
0c78849f 5156 di->disk.major, di->disk.minor);
626bc453
MG
5157 free(mu);
5158 free(rv);
0c78849f 5159 return NULL;
5160 }
5161 vc->phys_refnum[i_prim] = ddf->phys->entries[dl->pdnum].refnum;
5162 LBA_OFFSET(ddf, vc)[i_prim] = cpu_to_be64(di->data_offset);
2a645ee2
MW
5163 dprintf("BVD %u gets %u: %08x at %llu\n", i_sec, i_prim,
5164 be32_to_cpu(vc->phys_refnum[i_prim]),
5165 be64_to_cpu(LBA_OFFSET(ddf, vc)[i_prim]));
7e1432fb
NB
5166 }
5167 *updates = mu;
5168 return rv;
5169}
5170
b640a252
N
5171static int ddf_level_to_layout(int level)
5172{
5173 switch(level) {
5174 case 0:
5175 case 1:
5176 return 0;
5177 case 5:
5178 return ALGORITHM_LEFT_SYMMETRIC;
5179 case 6:
5180 return ALGORITHM_ROTATING_N_CONTINUE;
5181 case 10:
5182 return 0x102;
5183 default:
5184 return UnSet;
5185 }
5186}
5187
30f58b22
DW
5188static void default_geometry_ddf(struct supertype *st, int *level, int *layout, int *chunk)
5189{
5190 if (level && *level == UnSet)
5191 *level = LEVEL_CONTAINER;
5192
5193 if (level && layout && *layout == UnSet)
5194 *layout = ddf_level_to_layout(*level);
5195}
5196
a322f70c 5197struct superswitch super_ddf = {
a322f70c
DW
5198 .examine_super = examine_super_ddf,
5199 .brief_examine_super = brief_examine_super_ddf,
4737ae25 5200 .brief_examine_subarrays = brief_examine_subarrays_ddf,
bceedeec 5201 .export_examine_super = export_examine_super_ddf,
a322f70c
DW
5202 .detail_super = detail_super_ddf,
5203 .brief_detail_super = brief_detail_super_ddf,
5204 .validate_geometry = validate_geometry_ddf,
78e44928 5205 .write_init_super = write_init_super_ddf,
0e600426 5206 .add_to_super = add_to_super_ddf,
4dd968cc 5207 .remove_from_super = remove_from_super_ddf,
2b959fbf 5208 .load_container = load_container_ddf,
74db60b0 5209 .copy_metadata = copy_metadata_ddf,
4441541f 5210 .kill_subarray = kill_subarray_ddf,
a322f70c
DW
5211 .match_home = match_home_ddf,
5212 .uuid_from_super= uuid_from_super_ddf,
5213 .getinfo_super = getinfo_super_ddf,
5214 .update_super = update_super_ddf,
5215
5216 .avail_size = avail_size_ddf,
5217
a19c88b8
NB
5218 .compare_super = compare_super_ddf,
5219
a322f70c 5220 .load_super = load_super_ddf,
ba7eb04f 5221 .init_super = init_super_ddf,
955e9ea1 5222 .store_super = store_super_ddf,
a322f70c
DW
5223 .free_super = free_super_ddf,
5224 .match_metadata_desc = match_metadata_desc_ddf,
78e44928 5225 .container_content = container_content_ddf,
30f58b22 5226 .default_geometry = default_geometry_ddf,
a322f70c 5227
a322f70c 5228 .external = 1,
549e9569
NB
5229
5230/* for mdmon */
5231 .open_new = ddf_open_new,
ed9d66aa 5232 .set_array_state= ddf_set_array_state,
549e9569
NB
5233 .set_disk = ddf_set_disk,
5234 .sync_metadata = ddf_sync_metadata,
88c164f4 5235 .process_update = ddf_process_update,
edd8d13c 5236 .prepare_update = ddf_prepare_update,
7e1432fb 5237 .activate_spare = ddf_activate_spare,
4cce4069 5238 .name = "ddf",
a322f70c 5239};