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