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