]> git.ipfire.org Git - thirdparty/mdadm.git/blame - super-ddf.c
DDF: fix irregularities with retrieval of 'name' from metadata.
[thirdparty/mdadm.git] / super-ddf.c
CommitLineData
a322f70c
DW
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2006-2007 Neil Brown <neilb@suse.de>
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 *
24 * Specifications for DDF takes from Common RAID DDF Specification Revision 1.2
25 * (July 28 2006). Reused by permission of SNIA.
26 */
27
28#define HAVE_STDINT_H 1
29#include "mdadm.h"
549e9569 30#include "mdmon.h"
a322f70c
DW
31#include "sha1.h"
32#include <values.h>
33
a322f70c
DW
34/* a non-official T10 name for creation GUIDs */
35static char T10[] = "Linux-MD";
36
37/* DDF timestamps are 1980 based, so we need to add
38 * second-in-decade-of-seventies to convert to linux timestamps.
39 * 10 years with 2 leap years.
40 */
41#define DECADE (3600*24*(365*10+2))
42unsigned long crc32(
43 unsigned long crc,
44 const unsigned char *buf,
45 unsigned len);
46
47/* The DDF metadata handling.
48 * DDF metadata lives at the end of the device.
49 * The last 512 byte block provides an 'anchor' which is used to locate
50 * the rest of the metadata which usually lives immediately behind the anchor.
51 *
52 * Note:
53 * - all multibyte numeric fields are bigendian.
54 * - all strings are space padded.
55 *
56 */
57
58/* Primary Raid Level (PRL) */
59#define DDF_RAID0 0x00
60#define DDF_RAID1 0x01
61#define DDF_RAID3 0x03
62#define DDF_RAID4 0x04
63#define DDF_RAID5 0x05
64#define DDF_RAID1E 0x11
65#define DDF_JBOD 0x0f
66#define DDF_CONCAT 0x1f
67#define DDF_RAID5E 0x15
68#define DDF_RAID5EE 0x25
59e36268 69#define DDF_RAID6 0x06
a322f70c
DW
70
71/* Raid Level Qualifier (RLQ) */
72#define DDF_RAID0_SIMPLE 0x00
73#define DDF_RAID1_SIMPLE 0x00 /* just 2 devices in this plex */
74#define DDF_RAID1_MULTI 0x01 /* exactly 3 devices in this plex */
75#define DDF_RAID3_0 0x00 /* parity in first extent */
76#define DDF_RAID3_N 0x01 /* parity in last extent */
77#define DDF_RAID4_0 0x00 /* parity in first extent */
78#define DDF_RAID4_N 0x01 /* parity in last extent */
79/* these apply to raid5e and raid5ee as well */
80#define DDF_RAID5_0_RESTART 0x00 /* same as 'right asymmetric' - layout 1 */
59e36268 81#define DDF_RAID6_0_RESTART 0x01 /* raid6 different from raid5 here!!! */
a322f70c
DW
82#define DDF_RAID5_N_RESTART 0x02 /* same as 'left asymmetric' - layout 0 */
83#define DDF_RAID5_N_CONTINUE 0x03 /* same as 'left symmetric' - layout 2 */
84
85#define DDF_RAID1E_ADJACENT 0x00 /* raid10 nearcopies==2 */
86#define DDF_RAID1E_OFFSET 0x01 /* raid10 offsetcopies==2 */
87
88/* Secondary RAID Level (SRL) */
89#define DDF_2STRIPED 0x00 /* This is weirder than RAID0 !! */
90#define DDF_2MIRRORED 0x01
91#define DDF_2CONCAT 0x02
92#define DDF_2SPANNED 0x03 /* This is also weird - be careful */
93
94/* Magic numbers */
95#define DDF_HEADER_MAGIC __cpu_to_be32(0xDE11DE11)
96#define DDF_CONTROLLER_MAGIC __cpu_to_be32(0xAD111111)
97#define DDF_PHYS_RECORDS_MAGIC __cpu_to_be32(0x22222222)
98#define DDF_PHYS_DATA_MAGIC __cpu_to_be32(0x33333333)
99#define DDF_VIRT_RECORDS_MAGIC __cpu_to_be32(0xDDDDDDDD)
100#define DDF_VD_CONF_MAGIC __cpu_to_be32(0xEEEEEEEE)
101#define DDF_SPARE_ASSIGN_MAGIC __cpu_to_be32(0x55555555)
102#define DDF_VU_CONF_MAGIC __cpu_to_be32(0x88888888)
103#define DDF_VENDOR_LOG_MAGIC __cpu_to_be32(0x01dBEEF0)
104#define DDF_BBM_LOG_MAGIC __cpu_to_be32(0xABADB10C)
105
106#define DDF_GUID_LEN 24
59e36268
NB
107#define DDF_REVISION_0 "01.00.00"
108#define DDF_REVISION_2 "01.02.00"
a322f70c
DW
109
110struct ddf_header {
88c164f4 111 __u32 magic; /* DDF_HEADER_MAGIC */
a322f70c
DW
112 __u32 crc;
113 char guid[DDF_GUID_LEN];
59e36268 114 char revision[8]; /* 01.02.00 */
a322f70c
DW
115 __u32 seq; /* starts at '1' */
116 __u32 timestamp;
117 __u8 openflag;
118 __u8 foreignflag;
119 __u8 enforcegroups;
120 __u8 pad0; /* 0xff */
121 __u8 pad1[12]; /* 12 * 0xff */
122 /* 64 bytes so far */
123 __u8 header_ext[32]; /* reserved: fill with 0xff */
124 __u64 primary_lba;
125 __u64 secondary_lba;
126 __u8 type;
127 __u8 pad2[3]; /* 0xff */
128 __u32 workspace_len; /* sectors for vendor space -
129 * at least 32768(sectors) */
130 __u64 workspace_lba;
131 __u16 max_pd_entries; /* one of 15, 63, 255, 1023, 4095 */
132 __u16 max_vd_entries; /* 2^(4,6,8,10,12)-1 : i.e. as above */
133 __u16 max_partitions; /* i.e. max num of configuration
134 record entries per disk */
135 __u16 config_record_len; /* 1 +ROUNDUP(max_primary_element_entries
136 *12/512) */
137 __u16 max_primary_element_entries; /* 16, 64, 256, 1024, or 4096 */
138 __u8 pad3[54]; /* 0xff */
139 /* 192 bytes so far */
140 __u32 controller_section_offset;
141 __u32 controller_section_length;
142 __u32 phys_section_offset;
143 __u32 phys_section_length;
144 __u32 virt_section_offset;
145 __u32 virt_section_length;
146 __u32 config_section_offset;
147 __u32 config_section_length;
148 __u32 data_section_offset;
149 __u32 data_section_length;
150 __u32 bbm_section_offset;
151 __u32 bbm_section_length;
152 __u32 diag_space_offset;
153 __u32 diag_space_length;
154 __u32 vendor_offset;
155 __u32 vendor_length;
156 /* 256 bytes so far */
157 __u8 pad4[256]; /* 0xff */
158};
159
160/* type field */
161#define DDF_HEADER_ANCHOR 0x00
162#define DDF_HEADER_PRIMARY 0x01
163#define DDF_HEADER_SECONDARY 0x02
164
165/* The content of the 'controller section' - global scope */
166struct ddf_controller_data {
88c164f4 167 __u32 magic; /* DDF_CONTROLLER_MAGIC */
a322f70c
DW
168 __u32 crc;
169 char guid[DDF_GUID_LEN];
170 struct controller_type {
171 __u16 vendor_id;
172 __u16 device_id;
173 __u16 sub_vendor_id;
174 __u16 sub_device_id;
175 } type;
176 char product_id[16];
177 __u8 pad[8]; /* 0xff */
178 __u8 vendor_data[448];
179};
180
181/* The content of phys_section - global scope */
182struct phys_disk {
88c164f4 183 __u32 magic; /* DDF_PHYS_RECORDS_MAGIC */
a322f70c
DW
184 __u32 crc;
185 __u16 used_pdes;
186 __u16 max_pdes;
187 __u8 pad[52];
188 struct phys_disk_entry {
189 char guid[DDF_GUID_LEN];
190 __u32 refnum;
191 __u16 type;
192 __u16 state;
193 __u64 config_size; /* DDF structures must be after here */
194 char path[18]; /* another horrible structure really */
195 __u8 pad[6];
196 } entries[0];
197};
198
199/* phys_disk_entry.type is a bitmap - bigendian remember */
200#define DDF_Forced_PD_GUID 1
201#define DDF_Active_in_VD 2
88c164f4 202#define DDF_Global_Spare 4 /* VD_CONF records are ignored */
a322f70c
DW
203#define DDF_Spare 8 /* overrides Global_spare */
204#define DDF_Foreign 16
205#define DDF_Legacy 32 /* no DDF on this device */
206
207#define DDF_Interface_mask 0xf00
208#define DDF_Interface_SCSI 0x100
209#define DDF_Interface_SAS 0x200
210#define DDF_Interface_SATA 0x300
211#define DDF_Interface_FC 0x400
212
213/* phys_disk_entry.state is a bigendian bitmap */
214#define DDF_Online 1
215#define DDF_Failed 2 /* overrides 1,4,8 */
216#define DDF_Rebuilding 4
217#define DDF_Transition 8
218#define DDF_SMART 16
219#define DDF_ReadErrors 32
220#define DDF_Missing 64
221
222/* The content of the virt_section global scope */
223struct virtual_disk {
88c164f4 224 __u32 magic; /* DDF_VIRT_RECORDS_MAGIC */
a322f70c
DW
225 __u32 crc;
226 __u16 populated_vdes;
227 __u16 max_vdes;
228 __u8 pad[52];
229 struct virtual_entry {
230 char guid[DDF_GUID_LEN];
231 __u16 unit;
232 __u16 pad0; /* 0xffff */
233 __u16 guid_crc;
234 __u16 type;
235 __u8 state;
236 __u8 init_state;
237 __u8 pad1[14];
238 char name[16];
239 } entries[0];
240};
241
242/* virtual_entry.type is a bitmap - bigendian */
243#define DDF_Shared 1
244#define DDF_Enforce_Groups 2
245#define DDF_Unicode 4
246#define DDF_Owner_Valid 8
247
248/* virtual_entry.state is a bigendian bitmap */
249#define DDF_state_mask 0x7
250#define DDF_state_optimal 0x0
251#define DDF_state_degraded 0x1
252#define DDF_state_deleted 0x2
253#define DDF_state_missing 0x3
254#define DDF_state_failed 0x4
7a7cc504 255#define DDF_state_part_optimal 0x5
a322f70c
DW
256
257#define DDF_state_morphing 0x8
258#define DDF_state_inconsistent 0x10
259
260/* virtual_entry.init_state is a bigendian bitmap */
261#define DDF_initstate_mask 0x03
262#define DDF_init_not 0x00
7a7cc504
NB
263#define DDF_init_quick 0x01 /* initialisation is progress.
264 * i.e. 'state_inconsistent' */
a322f70c
DW
265#define DDF_init_full 0x02
266
267#define DDF_access_mask 0xc0
268#define DDF_access_rw 0x00
269#define DDF_access_ro 0x80
270#define DDF_access_blocked 0xc0
271
272/* The content of the config_section - local scope
273 * It has multiple records each config_record_len sectors
274 * They can be vd_config or spare_assign
275 */
276
277struct vd_config {
88c164f4 278 __u32 magic; /* DDF_VD_CONF_MAGIC */
a322f70c
DW
279 __u32 crc;
280 char guid[DDF_GUID_LEN];
281 __u32 timestamp;
282 __u32 seqnum;
283 __u8 pad0[24];
284 __u16 prim_elmnt_count;
285 __u8 chunk_shift; /* 0 == 512, 1==1024 etc */
286 __u8 prl;
287 __u8 rlq;
288 __u8 sec_elmnt_count;
289 __u8 sec_elmnt_seq;
290 __u8 srl;
598f0d58
NB
291 __u64 blocks; /* blocks per component could be different
292 * on different component devices...(only
293 * for concat I hope) */
294 __u64 array_blocks; /* blocks in array */
a322f70c
DW
295 __u8 pad1[8];
296 __u32 spare_refs[8];
297 __u8 cache_pol[8];
298 __u8 bg_rate;
299 __u8 pad2[3];
300 __u8 pad3[52];
301 __u8 pad4[192];
302 __u8 v0[32]; /* reserved- 0xff */
303 __u8 v1[32]; /* reserved- 0xff */
304 __u8 v2[16]; /* reserved- 0xff */
305 __u8 v3[16]; /* reserved- 0xff */
306 __u8 vendor[32];
307 __u32 phys_refnum[0]; /* refnum of each disk in sequence */
308 /*__u64 lba_offset[0]; LBA offset in each phys. Note extents in a
309 bvd are always the same size */
310};
311
312/* vd_config.cache_pol[7] is a bitmap */
313#define DDF_cache_writeback 1 /* else writethrough */
314#define DDF_cache_wadaptive 2 /* only applies if writeback */
315#define DDF_cache_readahead 4
316#define DDF_cache_radaptive 8 /* only if doing read-ahead */
317#define DDF_cache_ifnobatt 16 /* even to write cache if battery is poor */
318#define DDF_cache_wallowed 32 /* enable write caching */
319#define DDF_cache_rallowed 64 /* enable read caching */
320
321struct spare_assign {
88c164f4 322 __u32 magic; /* DDF_SPARE_ASSIGN_MAGIC */
a322f70c
DW
323 __u32 crc;
324 __u32 timestamp;
325 __u8 reserved[7];
326 __u8 type;
327 __u16 populated; /* SAEs used */
328 __u16 max; /* max SAEs */
329 __u8 pad[8];
330 struct spare_assign_entry {
331 char guid[DDF_GUID_LEN];
332 __u16 secondary_element;
333 __u8 pad[6];
334 } spare_ents[0];
335};
336/* spare_assign.type is a bitmap */
337#define DDF_spare_dedicated 0x1 /* else global */
338#define DDF_spare_revertible 0x2 /* else committable */
339#define DDF_spare_active 0x4 /* else not active */
340#define DDF_spare_affinity 0x8 /* enclosure affinity */
341
342/* The data_section contents - local scope */
343struct disk_data {
88c164f4 344 __u32 magic; /* DDF_PHYS_DATA_MAGIC */
a322f70c
DW
345 __u32 crc;
346 char guid[DDF_GUID_LEN];
347 __u32 refnum; /* crc of some magic drive data ... */
348 __u8 forced_ref; /* set when above was not result of magic */
349 __u8 forced_guid; /* set if guid was forced rather than magic */
350 __u8 vendor[32];
351 __u8 pad[442];
352};
353
354/* bbm_section content */
355struct bad_block_log {
356 __u32 magic;
357 __u32 crc;
358 __u16 entry_count;
359 __u32 spare_count;
360 __u8 pad[10];
361 __u64 first_spare;
362 struct mapped_block {
363 __u64 defective_start;
364 __u32 replacement_start;
365 __u16 remap_count;
366 __u8 pad[2];
367 } entries[0];
368};
369
370/* Struct for internally holding ddf structures */
371/* The DDF structure stored on each device is potentially
372 * quite different, as some data is global and some is local.
373 * The global data is:
374 * - ddf header
375 * - controller_data
376 * - Physical disk records
377 * - Virtual disk records
378 * The local data is:
379 * - Configuration records
380 * - Physical Disk data section
381 * ( and Bad block and vendor which I don't care about yet).
382 *
383 * The local data is parsed into separate lists as it is read
384 * and reconstructed for writing. This means that we only need
385 * to make config changes once and they are automatically
386 * propagated to all devices.
387 * Note that the ddf_super has space of the conf and disk data
388 * for this disk and also for a list of all such data.
389 * The list is only used for the superblock that is being
390 * built in Create or Assemble to describe the whole array.
391 */
392struct ddf_super {
6416d527 393 struct ddf_header anchor, primary, secondary;
a322f70c 394 struct ddf_controller_data controller;
6416d527 395 struct ddf_header *active;
a322f70c
DW
396 struct phys_disk *phys;
397 struct virtual_disk *virt;
398 int pdsize, vdsize;
8c3b8c2c 399 int max_part, mppe, conf_rec_len;
d2ca6449 400 int currentdev;
18a2f463 401 int updates_pending;
a322f70c 402 struct vcl {
6416d527
NB
403 union {
404 char space[512];
405 struct {
406 struct vcl *next;
407 __u64 *lba_offset; /* location in 'conf' of
408 * the lba table */
409 int vcnum; /* index into ->virt */
410 __u64 *block_sizes; /* NULL if all the same */
411 };
412 };
a322f70c 413 struct vd_config conf;
d2ca6449 414 } *conflist, *currentconf;
a322f70c 415 struct dl {
6416d527
NB
416 union {
417 char space[512];
418 struct {
419 struct dl *next;
420 int major, minor;
421 char *devname;
422 int fd;
423 unsigned long long size; /* sectors */
424 int pdnum; /* index in ->phys */
425 struct spare_assign *spare;
426 };
427 };
a322f70c 428 struct disk_data disk;
2cc2983d 429 void *mdupdate; /* hold metadata update */
b2280677 430 struct vcl *vlist[0]; /* max_part in size */
2cc2983d 431 } *dlist, *add_list;
a322f70c
DW
432};
433
434#ifndef offsetof
435#define offsetof(t,f) ((size_t)&(((t*)0)->f))
436#endif
437
a322f70c
DW
438
439static int calc_crc(void *buf, int len)
440{
441 /* crcs are always at the same place as in the ddf_header */
442 struct ddf_header *ddf = buf;
443 __u32 oldcrc = ddf->crc;
444 __u32 newcrc;
445 ddf->crc = 0xffffffff;
446
447 newcrc = crc32(0, buf, len);
448 ddf->crc = oldcrc;
4abe6b70
N
449 /* The crc is store (like everything) bigendian, so convert
450 * here for simplicity
451 */
452 return __cpu_to_be32(newcrc);
a322f70c
DW
453}
454
455static int load_ddf_header(int fd, unsigned long long lba,
456 unsigned long long size,
457 int type,
458 struct ddf_header *hdr, struct ddf_header *anchor)
459{
460 /* read a ddf header (primary or secondary) from fd/lba
461 * and check that it is consistent with anchor
462 * Need to check:
463 * magic, crc, guid, rev, and LBA's header_type, and
464 * everything after header_type must be the same
465 */
466 if (lba >= size-1)
467 return 0;
468
469 if (lseek64(fd, lba<<9, 0) < 0)
470 return 0;
471
472 if (read(fd, hdr, 512) != 512)
473 return 0;
474
475 if (hdr->magic != DDF_HEADER_MAGIC)
476 return 0;
477 if (calc_crc(hdr, 512) != hdr->crc)
478 return 0;
479 if (memcmp(anchor->guid, hdr->guid, DDF_GUID_LEN) != 0 ||
480 memcmp(anchor->revision, hdr->revision, 8) != 0 ||
481 anchor->primary_lba != hdr->primary_lba ||
482 anchor->secondary_lba != hdr->secondary_lba ||
483 hdr->type != type ||
484 memcmp(anchor->pad2, hdr->pad2, 512 -
485 offsetof(struct ddf_header, pad2)) != 0)
486 return 0;
487
488 /* Looks good enough to me... */
489 return 1;
490}
491
492static void *load_section(int fd, struct ddf_super *super, void *buf,
493 __u32 offset_be, __u32 len_be, int check)
494{
495 unsigned long long offset = __be32_to_cpu(offset_be);
496 unsigned long long len = __be32_to_cpu(len_be);
497 int dofree = (buf == NULL);
498
499 if (check)
500 if (len != 2 && len != 8 && len != 32
501 && len != 128 && len != 512)
502 return NULL;
503
504 if (len > 1024)
505 return NULL;
506 if (buf) {
507 /* All pre-allocated sections are a single block */
508 if (len != 1)
509 return NULL;
3d2c4fc7
DW
510 } else if (posix_memalign(&buf, 512, len<<9) != 0)
511 buf = NULL;
6416d527 512
a322f70c
DW
513 if (!buf)
514 return NULL;
515
516 if (super->active->type == 1)
517 offset += __be64_to_cpu(super->active->primary_lba);
518 else
519 offset += __be64_to_cpu(super->active->secondary_lba);
520
521 if (lseek64(fd, offset<<9, 0) != (offset<<9)) {
522 if (dofree)
523 free(buf);
524 return NULL;
525 }
526 if (read(fd, buf, len<<9) != (len<<9)) {
527 if (dofree)
528 free(buf);
529 return NULL;
530 }
531 return buf;
532}
533
534static int load_ddf_headers(int fd, struct ddf_super *super, char *devname)
535{
536 unsigned long long dsize;
537
538 get_dev_size(fd, NULL, &dsize);
539
540 if (lseek64(fd, dsize-512, 0) < 0) {
541 if (devname)
542 fprintf(stderr,
543 Name": Cannot seek to anchor block on %s: %s\n",
544 devname, strerror(errno));
545 return 1;
546 }
547 if (read(fd, &super->anchor, 512) != 512) {
548 if (devname)
549 fprintf(stderr,
550 Name ": Cannot read anchor block on %s: %s\n",
551 devname, strerror(errno));
552 return 1;
553 }
554 if (super->anchor.magic != DDF_HEADER_MAGIC) {
555 if (devname)
556 fprintf(stderr, Name ": no DDF anchor found on %s\n",
557 devname);
558 return 2;
559 }
560 if (calc_crc(&super->anchor, 512) != super->anchor.crc) {
561 if (devname)
562 fprintf(stderr, Name ": bad CRC on anchor on %s\n",
563 devname);
564 return 2;
565 }
59e36268
NB
566 if (memcmp(super->anchor.revision, DDF_REVISION_0, 8) != 0 &&
567 memcmp(super->anchor.revision, DDF_REVISION_2, 8) != 0) {
a322f70c
DW
568 if (devname)
569 fprintf(stderr, Name ": can only support super revision"
59e36268
NB
570 " %.8s and earlier, not %.8s on %s\n",
571 DDF_REVISION_2, super->anchor.revision,devname);
a322f70c
DW
572 return 2;
573 }
574 if (load_ddf_header(fd, __be64_to_cpu(super->anchor.primary_lba),
575 dsize >> 9, 1,
576 &super->primary, &super->anchor) == 0) {
577 if (devname)
578 fprintf(stderr,
579 Name ": Failed to load primary DDF header "
580 "on %s\n", devname);
581 return 2;
582 }
583 super->active = &super->primary;
584 if (load_ddf_header(fd, __be64_to_cpu(super->anchor.secondary_lba),
585 dsize >> 9, 2,
586 &super->secondary, &super->anchor)) {
587 if ((__be32_to_cpu(super->primary.seq)
588 < __be32_to_cpu(super->secondary.seq) &&
589 !super->secondary.openflag)
590 || (__be32_to_cpu(super->primary.seq)
591 == __be32_to_cpu(super->secondary.seq) &&
592 super->primary.openflag && !super->secondary.openflag)
593 )
594 super->active = &super->secondary;
595 }
596 return 0;
597}
598
599static int load_ddf_global(int fd, struct ddf_super *super, char *devname)
600{
601 void *ok;
602 ok = load_section(fd, super, &super->controller,
603 super->active->controller_section_offset,
604 super->active->controller_section_length,
605 0);
606 super->phys = load_section(fd, super, NULL,
607 super->active->phys_section_offset,
608 super->active->phys_section_length,
609 1);
610 super->pdsize = __be32_to_cpu(super->active->phys_section_length) * 512;
611
612 super->virt = load_section(fd, super, NULL,
613 super->active->virt_section_offset,
614 super->active->virt_section_length,
615 1);
616 super->vdsize = __be32_to_cpu(super->active->virt_section_length) * 512;
617 if (!ok ||
618 !super->phys ||
619 !super->virt) {
620 free(super->phys);
621 free(super->virt);
a2349791
NB
622 super->phys = NULL;
623 super->virt = NULL;
a322f70c
DW
624 return 2;
625 }
626 super->conflist = NULL;
627 super->dlist = NULL;
8c3b8c2c
NB
628
629 super->max_part = __be16_to_cpu(super->active->max_partitions);
630 super->mppe = __be16_to_cpu(super->active->max_primary_element_entries);
631 super->conf_rec_len = __be16_to_cpu(super->active->config_record_len);
a322f70c
DW
632 return 0;
633}
634
635static int load_ddf_local(int fd, struct ddf_super *super,
636 char *devname, int keep)
637{
638 struct dl *dl;
639 struct stat stb;
640 char *conf;
641 int i;
b2280677 642 int vnum;
59e36268 643 int max_virt_disks = __be16_to_cpu(super->active->max_vd_entries);
d2ca6449 644 unsigned long long dsize;
a322f70c
DW
645
646 /* First the local disk info */
3d2c4fc7 647 if (posix_memalign((void**)&dl, 512,
6416d527 648 sizeof(*dl) +
3d2c4fc7
DW
649 (super->max_part) * sizeof(dl->vlist[0])) != 0) {
650 fprintf(stderr, Name ": %s could not allocate disk info buffer\n",
651 __func__);
652 return 1;
653 }
a322f70c
DW
654
655 load_section(fd, super, &dl->disk,
656 super->active->data_section_offset,
657 super->active->data_section_length,
658 0);
659 dl->devname = devname ? strdup(devname) : NULL;
598f0d58 660
a322f70c
DW
661 fstat(fd, &stb);
662 dl->major = major(stb.st_rdev);
663 dl->minor = minor(stb.st_rdev);
664 dl->next = super->dlist;
665 dl->fd = keep ? fd : -1;
d2ca6449
NB
666
667 dl->size = 0;
668 if (get_dev_size(fd, devname, &dsize))
669 dl->size = dsize >> 9;
b2280677
NB
670 dl->spare = NULL;
671 for (i=0 ; i < super->max_part ; i++)
a322f70c
DW
672 dl->vlist[i] = NULL;
673 super->dlist = dl;
59e36268 674 dl->pdnum = -1;
5575e7d9
NB
675 for (i=0; i < __be16_to_cpu(super->active->max_pd_entries); i++)
676 if (memcmp(super->phys->entries[i].guid,
677 dl->disk.guid, DDF_GUID_LEN) == 0)
678 dl->pdnum = i;
679
a322f70c
DW
680 /* Now the config list. */
681 /* 'conf' is an array of config entries, some of which are
682 * probably invalid. Those which are good need to be copied into
683 * the conflist
684 */
a322f70c
DW
685
686 conf = load_section(fd, super, NULL,
687 super->active->config_section_offset,
688 super->active->config_section_length,
689 0);
690
b2280677 691 vnum = 0;
a322f70c
DW
692 for (i = 0;
693 i < __be32_to_cpu(super->active->config_section_length);
8c3b8c2c 694 i += super->conf_rec_len) {
a322f70c
DW
695 struct vd_config *vd =
696 (struct vd_config *)((char*)conf + i*512);
697 struct vcl *vcl;
698
b2280677
NB
699 if (vd->magic == DDF_SPARE_ASSIGN_MAGIC) {
700 if (dl->spare)
701 continue;
3d2c4fc7
DW
702 if (posix_memalign((void**)&dl->spare, 512,
703 super->conf_rec_len*512) != 0) {
704 fprintf(stderr, Name
705 ": %s could not allocate spare info buf\n",
706 __func__);
707 return 1;
708 }
709
b2280677
NB
710 memcpy(dl->spare, vd, super->conf_rec_len*512);
711 continue;
712 }
a322f70c
DW
713 if (vd->magic != DDF_VD_CONF_MAGIC)
714 continue;
715 for (vcl = super->conflist; vcl; vcl = vcl->next) {
716 if (memcmp(vcl->conf.guid,
717 vd->guid, DDF_GUID_LEN) == 0)
718 break;
719 }
720
721 if (vcl) {
b2280677 722 dl->vlist[vnum++] = vcl;
a322f70c
DW
723 if (__be32_to_cpu(vd->seqnum) <=
724 __be32_to_cpu(vcl->conf.seqnum))
725 continue;
59e36268 726 } else {
3d2c4fc7 727 if (posix_memalign((void**)&vcl, 512,
6416d527 728 (super->conf_rec_len*512 +
3d2c4fc7
DW
729 offsetof(struct vcl, conf))) != 0) {
730 fprintf(stderr, Name
731 ": %s could not allocate vcl buf\n",
732 __func__);
733 return 1;
734 }
a322f70c 735 vcl->next = super->conflist;
59e36268 736 vcl->block_sizes = NULL; /* FIXME not for CONCAT */
a322f70c 737 super->conflist = vcl;
b2280677 738 dl->vlist[vnum++] = vcl;
a322f70c 739 }
8c3b8c2c 740 memcpy(&vcl->conf, vd, super->conf_rec_len*512);
a322f70c 741 vcl->lba_offset = (__u64*)
8c3b8c2c 742 &vcl->conf.phys_refnum[super->mppe];
59e36268
NB
743
744 for (i=0; i < max_virt_disks ; i++)
745 if (memcmp(super->virt->entries[i].guid,
746 vcl->conf.guid, DDF_GUID_LEN)==0)
747 break;
748 if (i < max_virt_disks)
749 vcl->vcnum = i;
a322f70c
DW
750 }
751 free(conf);
752
753 return 0;
754}
755
756#ifndef MDASSEMBLE
757static int load_super_ddf_all(struct supertype *st, int fd,
758 void **sbp, char *devname, int keep_fd);
759#endif
760static int load_super_ddf(struct supertype *st, int fd,
761 char *devname)
762{
763 unsigned long long dsize;
764 struct ddf_super *super;
765 int rv;
766
767#ifndef MDASSEMBLE
59e36268 768 /* if 'fd' is a container, load metadata from all the devices */
3dbccbcf 769 if (load_super_ddf_all(st, fd, &st->sb, devname, 1) == 0)
a322f70c
DW
770 return 0;
771#endif
f7e7067b
NB
772 if (st->subarray[0])
773 return 1; /* FIXME Is this correct */
a322f70c
DW
774
775 if (get_dev_size(fd, devname, &dsize) == 0)
776 return 1;
777
778 /* 32M is a lower bound */
779 if (dsize <= 32*1024*1024) {
780 if (devname) {
781 fprintf(stderr,
782 Name ": %s is too small for ddf: "
783 "size is %llu sectors.\n",
784 devname, dsize>>9);
785 return 1;
786 }
787 }
788 if (dsize & 511) {
789 if (devname) {
790 fprintf(stderr,
791 Name ": %s is an odd size for ddf: "
792 "size is %llu bytes.\n",
793 devname, dsize);
794 return 1;
795 }
796 }
797
6416d527 798 if (posix_memalign((void**)&super, 512, sizeof(*super))!= 0) {
a322f70c
DW
799 fprintf(stderr, Name ": malloc of %zu failed.\n",
800 sizeof(*super));
801 return 1;
802 }
a2349791 803 memset(super, 0, sizeof(*super));
a322f70c
DW
804
805 rv = load_ddf_headers(fd, super, devname);
806 if (rv) {
807 free(super);
808 return rv;
809 }
810
811 /* Have valid headers and have chosen the best. Let's read in the rest*/
812
813 rv = load_ddf_global(fd, super, devname);
814
815 if (rv) {
816 if (devname)
817 fprintf(stderr,
818 Name ": Failed to load all information "
819 "sections on %s\n", devname);
820 free(super);
821 return rv;
822 }
823
3d2c4fc7
DW
824 rv = load_ddf_local(fd, super, devname, 0);
825
826 if (rv) {
827 if (devname)
828 fprintf(stderr,
829 Name ": Failed to load all information "
830 "sections on %s\n", devname);
831 free(super);
832 return rv;
833 }
a322f70c
DW
834
835 /* Should possibly check the sections .... */
836
837 st->sb = super;
838 if (st->ss == NULL) {
839 st->ss = &super_ddf;
840 st->minor_version = 0;
841 st->max_devs = 512;
842 }
352452c3 843 st->loaded_container = 0;
a322f70c
DW
844 return 0;
845
846}
847
848static void free_super_ddf(struct supertype *st)
849{
850 struct ddf_super *ddf = st->sb;
851 if (ddf == NULL)
852 return;
853 free(ddf->phys);
854 free(ddf->virt);
855 while (ddf->conflist) {
856 struct vcl *v = ddf->conflist;
857 ddf->conflist = v->next;
59e36268
NB
858 if (v->block_sizes)
859 free(v->block_sizes);
a322f70c
DW
860 free(v);
861 }
862 while (ddf->dlist) {
863 struct dl *d = ddf->dlist;
864 ddf->dlist = d->next;
865 if (d->fd >= 0)
866 close(d->fd);
b2280677
NB
867 if (d->spare)
868 free(d->spare);
a322f70c
DW
869 free(d);
870 }
871 free(ddf);
872 st->sb = NULL;
873}
874
875static struct supertype *match_metadata_desc_ddf(char *arg)
876{
877 /* 'ddf' only support containers */
878 struct supertype *st;
879 if (strcmp(arg, "ddf") != 0 &&
880 strcmp(arg, "default") != 0
881 )
882 return NULL;
883
884 st = malloc(sizeof(*st));
ef609477 885 memset(st, 0, sizeof(*st));
a322f70c
DW
886 st->ss = &super_ddf;
887 st->max_devs = 512;
888 st->minor_version = 0;
889 st->sb = NULL;
890 return st;
891}
892
a322f70c
DW
893
894#ifndef MDASSEMBLE
895
896static mapping_t ddf_state[] = {
897 { "Optimal", 0},
898 { "Degraded", 1},
899 { "Deleted", 2},
900 { "Missing", 3},
901 { "Failed", 4},
902 { "Partially Optimal", 5},
903 { "-reserved-", 6},
904 { "-reserved-", 7},
905 { NULL, 0}
906};
907
908static mapping_t ddf_init_state[] = {
909 { "Not Initialised", 0},
910 { "QuickInit in Progress", 1},
911 { "Fully Initialised", 2},
912 { "*UNKNOWN*", 3},
913 { NULL, 0}
914};
915static mapping_t ddf_access[] = {
916 { "Read/Write", 0},
917 { "Reserved", 1},
918 { "Read Only", 2},
919 { "Blocked (no access)", 3},
920 { NULL ,0}
921};
922
923static mapping_t ddf_level[] = {
924 { "RAID0", DDF_RAID0},
925 { "RAID1", DDF_RAID1},
926 { "RAID3", DDF_RAID3},
927 { "RAID4", DDF_RAID4},
928 { "RAID5", DDF_RAID5},
929 { "RAID1E",DDF_RAID1E},
930 { "JBOD", DDF_JBOD},
931 { "CONCAT",DDF_CONCAT},
932 { "RAID5E",DDF_RAID5E},
933 { "RAID5EE",DDF_RAID5EE},
934 { "RAID6", DDF_RAID6},
935 { NULL, 0}
936};
937static mapping_t ddf_sec_level[] = {
938 { "Striped", DDF_2STRIPED},
939 { "Mirrored", DDF_2MIRRORED},
940 { "Concat", DDF_2CONCAT},
941 { "Spanned", DDF_2SPANNED},
942 { NULL, 0}
943};
944#endif
945
946struct num_mapping {
947 int num1, num2;
948};
949static struct num_mapping ddf_level_num[] = {
950 { DDF_RAID0, 0 },
951 { DDF_RAID1, 1 },
952 { DDF_RAID3, LEVEL_UNSUPPORTED },
60f18132
NB
953 { DDF_RAID4, 4 },
954 { DDF_RAID5, 5 },
a322f70c
DW
955 { DDF_RAID1E, LEVEL_UNSUPPORTED },
956 { DDF_JBOD, LEVEL_UNSUPPORTED },
957 { DDF_CONCAT, LEVEL_LINEAR },
958 { DDF_RAID5E, LEVEL_UNSUPPORTED },
959 { DDF_RAID5EE, LEVEL_UNSUPPORTED },
960 { DDF_RAID6, 6},
961 { MAXINT, MAXINT }
962};
963
964static int map_num1(struct num_mapping *map, int num)
965{
966 int i;
967 for (i=0 ; map[i].num1 != MAXINT; i++)
968 if (map[i].num1 == num)
969 break;
970 return map[i].num2;
971}
972
973#ifndef MDASSEMBLE
974static void print_guid(char *guid, int tstamp)
975{
976 /* A GUIDs are part (or all) ASCII and part binary.
977 * They tend to be space padded.
59e36268
NB
978 * We print the GUID in HEX, then in parentheses add
979 * any initial ASCII sequence, and a possible
980 * time stamp from bytes 16-19
a322f70c
DW
981 */
982 int l = DDF_GUID_LEN;
983 int i;
59e36268
NB
984
985 for (i=0 ; i<DDF_GUID_LEN ; i++) {
986 if ((i&3)==0 && i != 0) printf(":");
987 printf("%02X", guid[i]&255);
988 }
989
990 printf(" (");
a322f70c
DW
991 while (l && guid[l-1] == ' ')
992 l--;
993 for (i=0 ; i<l ; i++) {
994 if (guid[i] >= 0x20 && guid[i] < 0x7f)
995 fputc(guid[i], stdout);
996 else
59e36268 997 break;
a322f70c
DW
998 }
999 if (tstamp) {
1000 time_t then = __be32_to_cpu(*(__u32*)(guid+16)) + DECADE;
1001 char tbuf[100];
1002 struct tm *tm;
1003 tm = localtime(&then);
59e36268 1004 strftime(tbuf, 100, " %D %T",tm);
a322f70c
DW
1005 fputs(tbuf, stdout);
1006 }
59e36268 1007 printf(")");
a322f70c
DW
1008}
1009
1010static void examine_vd(int n, struct ddf_super *sb, char *guid)
1011{
8c3b8c2c 1012 int crl = sb->conf_rec_len;
a322f70c
DW
1013 struct vcl *vcl;
1014
1015 for (vcl = sb->conflist ; vcl ; vcl = vcl->next) {
1016 struct vd_config *vc = &vcl->conf;
1017
1018 if (calc_crc(vc, crl*512) != vc->crc)
1019 continue;
1020 if (memcmp(vc->guid, guid, DDF_GUID_LEN) != 0)
1021 continue;
1022
1023 /* Ok, we know about this VD, let's give more details */
1024 printf(" Raid Devices[%d] : %d\n", n,
1025 __be16_to_cpu(vc->prim_elmnt_count));
1026 printf(" Chunk Size[%d] : %d sectors\n", n,
1027 1 << vc->chunk_shift);
1028 printf(" Raid Level[%d] : %s\n", n,
1029 map_num(ddf_level, vc->prl)?:"-unknown-");
1030 if (vc->sec_elmnt_count != 1) {
1031 printf(" Secondary Position[%d] : %d of %d\n", n,
1032 vc->sec_elmnt_seq, vc->sec_elmnt_count);
1033 printf(" Secondary Level[%d] : %s\n", n,
1034 map_num(ddf_sec_level, vc->srl) ?: "-unknown-");
1035 }
1036 printf(" Device Size[%d] : %llu\n", n,
1037 __be64_to_cpu(vc->blocks)/2);
1038 printf(" Array Size[%d] : %llu\n", n,
1039 __be64_to_cpu(vc->array_blocks)/2);
1040 }
1041}
1042
1043static void examine_vds(struct ddf_super *sb)
1044{
1045 int cnt = __be16_to_cpu(sb->virt->populated_vdes);
1046 int i;
1047 printf(" Virtual Disks : %d\n", cnt);
1048
1049 for (i=0; i<cnt; i++) {
1050 struct virtual_entry *ve = &sb->virt->entries[i];
1051 printf(" VD GUID[%d] : ", i); print_guid(ve->guid, 1);
1052 printf("\n");
1053 printf(" unit[%d] : %d\n", i, __be16_to_cpu(ve->unit));
1054 printf(" state[%d] : %s, %s%s\n", i,
1055 map_num(ddf_state, ve->state & 7),
1056 (ve->state & 8) ? "Morphing, ": "",
1057 (ve->state & 16)? "Not Consistent" : "Consistent");
1058 printf(" init state[%d] : %s\n", i,
1059 map_num(ddf_init_state, ve->init_state&3));
1060 printf(" access[%d] : %s\n", i,
1061 map_num(ddf_access, (ve->init_state>>6) & 3));
1062 printf(" Name[%d] : %.16s\n", i, ve->name);
1063 examine_vd(i, sb, ve->guid);
1064 }
1065 if (cnt) printf("\n");
1066}
1067
1068static void examine_pds(struct ddf_super *sb)
1069{
1070 int cnt = __be16_to_cpu(sb->phys->used_pdes);
1071 int i;
1072 struct dl *dl;
1073 printf(" Physical Disks : %d\n", cnt);
1074
1075 for (i=0 ; i<cnt ; i++) {
1076 struct phys_disk_entry *pd = &sb->phys->entries[i];
1077 int type = __be16_to_cpu(pd->type);
1078 int state = __be16_to_cpu(pd->state);
1079
1080 printf(" PD GUID[%d] : ", i); print_guid(pd->guid, 0);
1081 printf("\n");
1082 printf(" ref[%d] : %08x\n", i,
1083 __be32_to_cpu(pd->refnum));
1084 printf(" mode[%d] : %s%s%s%s%s\n", i,
1085 (type&2) ? "active":"",
1086 (type&4) ? "Global Spare":"",
1087 (type&8) ? "spare" : "",
1088 (type&16)? ", foreign" : "",
1089 (type&32)? "pass-through" : "");
1090 printf(" state[%d] : %s%s%s%s%s%s%s\n", i,
1091 (state&1)? "Online": "Offline",
1092 (state&2)? ", Failed": "",
1093 (state&4)? ", Rebuilding": "",
1094 (state&8)? ", in-transition": "",
1095 (state&16)? ", SMART errors": "",
1096 (state&32)? ", Unrecovered Read Errors": "",
1097 (state&64)? ", Missing" : "");
1098 printf(" Avail Size[%d] : %llu K\n", i,
1099 __be64_to_cpu(pd->config_size)>>1);
1100 for (dl = sb->dlist; dl ; dl = dl->next) {
1101 if (dl->disk.refnum == pd->refnum) {
1102 char *dv = map_dev(dl->major, dl->minor, 0);
1103 if (dv)
1104 printf(" Device[%d] : %s\n",
1105 i, dv);
1106 }
1107 }
1108 printf("\n");
1109 }
1110}
1111
1112static void examine_super_ddf(struct supertype *st, char *homehost)
1113{
1114 struct ddf_super *sb = st->sb;
1115
1116 printf(" Magic : %08x\n", __be32_to_cpu(sb->anchor.magic));
1117 printf(" Version : %.8s\n", sb->anchor.revision);
598f0d58
NB
1118 printf("Controller GUID : "); print_guid(sb->controller.guid, 0);
1119 printf("\n");
1120 printf(" Container GUID : "); print_guid(sb->anchor.guid, 1);
a322f70c
DW
1121 printf("\n");
1122 printf(" Seq : %08x\n", __be32_to_cpu(sb->active->seq));
1123 printf(" Redundant hdr : %s\n", sb->secondary.magic == DDF_HEADER_MAGIC
1124 ?"yes" : "no");
1125 examine_vds(sb);
1126 examine_pds(sb);
1127}
1128
ff54de6e
N
1129static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info);
1130
1131
a322f70c
DW
1132static void brief_examine_super_ddf(struct supertype *st)
1133{
1134 /* We just write a generic DDF ARRAY entry
a322f70c 1135 */
ff54de6e
N
1136 struct mdinfo info;
1137 char nbuf[64];
1138 getinfo_super_ddf(st, &info);
1139 fname_from_uuid(st, &info, nbuf, ':');
cf8de691 1140 printf("ARRAY metadata=ddf UUID=%s\n", nbuf + 5);
a322f70c
DW
1141}
1142
1143static void detail_super_ddf(struct supertype *st, char *homehost)
1144{
1145 /* FIXME later
1146 * Could print DDF GUID
1147 * Need to find which array
1148 * If whole, briefly list all arrays
1149 * If one, give name
1150 */
1151}
1152
1153static void brief_detail_super_ddf(struct supertype *st)
1154{
1155 /* FIXME I really need to know which array we are detailing.
1156 * Can that be stored in ddf_super??
1157 */
1158// struct ddf_super *ddf = st->sb;
ff54de6e
N
1159 struct mdinfo info;
1160 char nbuf[64];
1161 getinfo_super_ddf(st, &info);
1162 fname_from_uuid(st, &info, nbuf,':');
1163 printf(" UUID=%s", nbuf + 5);
a322f70c 1164}
a322f70c
DW
1165#endif
1166
1167static int match_home_ddf(struct supertype *st, char *homehost)
1168{
1169 /* It matches 'this' host if the controller is a
1170 * Linux-MD controller with vendor_data matching
1171 * the hostname
1172 */
1173 struct ddf_super *ddf = st->sb;
1174 int len = strlen(homehost);
1175
1176 return (memcmp(ddf->controller.guid, T10, 8) == 0 &&
1177 len < sizeof(ddf->controller.vendor_data) &&
1178 memcmp(ddf->controller.vendor_data, homehost,len) == 0 &&
1179 ddf->controller.vendor_data[len] == 0);
1180}
1181
0e600426 1182#ifndef MDASSEMBLE
7a7cc504 1183static struct vd_config *find_vdcr(struct ddf_super *ddf, int inst)
a322f70c 1184{
7a7cc504 1185 struct vcl *v;
59e36268 1186
7a7cc504 1187 for (v = ddf->conflist; v; v = v->next)
59e36268 1188 if (inst == v->vcnum)
7a7cc504
NB
1189 return &v->conf;
1190 return NULL;
1191}
0e600426 1192#endif
7a7cc504
NB
1193
1194static int find_phys(struct ddf_super *ddf, __u32 phys_refnum)
1195{
1196 /* Find the entry in phys_disk which has the given refnum
1197 * and return it's index
1198 */
1199 int i;
1200 for (i=0; i < __be16_to_cpu(ddf->phys->max_pdes); i++)
1201 if (ddf->phys->entries[i].refnum == phys_refnum)
1202 return i;
1203 return -1;
a322f70c
DW
1204}
1205
1206static void uuid_from_super_ddf(struct supertype *st, int uuid[4])
1207{
1208 /* The uuid returned here is used for:
1209 * uuid to put into bitmap file (Create, Grow)
1210 * uuid for backup header when saving critical section (Grow)
1211 * comparing uuids when re-adding a device into an array
51006d85
N
1212 * In these cases the uuid required is that of the data-array,
1213 * not the device-set.
1214 * uuid to recognise same set when adding a missing device back
1215 * to an array. This is a uuid for the device-set.
1216 *
a322f70c
DW
1217 * For each of these we can make do with a truncated
1218 * or hashed uuid rather than the original, as long as
1219 * everyone agrees.
a322f70c
DW
1220 * In the case of SVD we assume the BVD is of interest,
1221 * though that might be the case if a bitmap were made for
1222 * a mirrored SVD - worry about that later.
1223 * So we need to find the VD configuration record for the
1224 * relevant BVD and extract the GUID and Secondary_Element_Seq.
1225 * The first 16 bytes of the sha1 of these is used.
1226 */
1227 struct ddf_super *ddf = st->sb;
d2ca6449 1228 struct vcl *vcl = ddf->currentconf;
c5afc314
N
1229 char *guid;
1230 char buf[20];
1231 struct sha1_ctx ctx;
a322f70c 1232
c5afc314
N
1233 if (vcl)
1234 guid = vcl->conf.guid;
1235 else
1236 guid = ddf->anchor.guid;
1237
1238 sha1_init_ctx(&ctx);
1239 sha1_process_bytes(guid, DDF_GUID_LEN, &ctx);
1240 if (vcl && vcl->conf.sec_elmnt_count > 1)
1241 sha1_process_bytes(&vcl->conf.sec_elmnt_seq, 1, &ctx);
1242 sha1_finish_ctx(&ctx, buf);
1243 memcpy(uuid, buf, 4*4);
a322f70c
DW
1244}
1245
78e44928
NB
1246static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info);
1247
a322f70c
DW
1248static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info)
1249{
1250 struct ddf_super *ddf = st->sb;
1251
78e44928
NB
1252 if (ddf->currentconf) {
1253 getinfo_super_ddf_bvd(st, info);
1254 return;
1255 }
1256
a322f70c
DW
1257 info->array.raid_disks = __be16_to_cpu(ddf->phys->used_pdes);
1258 info->array.level = LEVEL_CONTAINER;
1259 info->array.layout = 0;
1260 info->array.md_minor = -1;
1261 info->array.ctime = DECADE + __be32_to_cpu(*(__u32*)
1262 (ddf->anchor.guid+16));
1263 info->array.utime = 0;
1264 info->array.chunk_size = 0;
1265
a322f70c
DW
1266
1267 info->disk.major = 0;
1268 info->disk.minor = 0;
cba0191b
NB
1269 if (ddf->dlist) {
1270 info->disk.number = __be32_to_cpu(ddf->dlist->disk.refnum);
59e36268 1271 info->disk.raid_disk = find_phys(ddf, ddf->dlist->disk.refnum);
d2ca6449
NB
1272
1273 info->data_offset = __be64_to_cpu(ddf->phys->
1274 entries[info->disk.raid_disk].
1275 config_size);
1276 info->component_size = ddf->dlist->size - info->data_offset;
cba0191b
NB
1277 } else {
1278 info->disk.number = -1;
1279// info->disk.raid_disk = find refnum in the table and use index;
1280 }
a19c88b8
NB
1281 info->disk.state = (1 << MD_DISK_SYNC);
1282
d2ca6449 1283
a19c88b8 1284 info->reshape_active = 0;
c5afc314 1285 info->name[0] = 0;
a322f70c 1286
f35f2525
N
1287 info->array.major_version = -1;
1288 info->array.minor_version = -2;
159c3a1a 1289 strcpy(info->text_version, "ddf");
a67dd8cc 1290 info->safe_mode_delay = 0;
159c3a1a 1291
c5afc314 1292 uuid_from_super_ddf(st, info->uuid);
a322f70c 1293
a322f70c
DW
1294}
1295
598f0d58
NB
1296static int rlq_to_layout(int rlq, int prl, int raiddisks);
1297
a322f70c
DW
1298static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info)
1299{
1300 struct ddf_super *ddf = st->sb;
d2ca6449
NB
1301 struct vcl *vc = ddf->currentconf;
1302 int cd = ddf->currentdev;
db42fa9b 1303 int j;
a322f70c
DW
1304
1305 /* FIXME this returns BVD info - what if we want SVD ?? */
1306
d2ca6449
NB
1307 info->array.raid_disks = __be16_to_cpu(vc->conf.prim_elmnt_count);
1308 info->array.level = map_num1(ddf_level_num, vc->conf.prl);
1309 info->array.layout = rlq_to_layout(vc->conf.rlq, vc->conf.prl,
598f0d58 1310 info->array.raid_disks);
a322f70c 1311 info->array.md_minor = -1;
d2ca6449
NB
1312 info->array.ctime = DECADE +
1313 __be32_to_cpu(*(__u32*)(vc->conf.guid+16));
1314 info->array.utime = DECADE + __be32_to_cpu(vc->conf.timestamp);
1315 info->array.chunk_size = 512 << vc->conf.chunk_shift;
1316
1317 if (cd >= 0 && cd < ddf->mppe) {
1318 info->data_offset = __be64_to_cpu(vc->lba_offset[cd]);
1319 if (vc->block_sizes)
1320 info->component_size = vc->block_sizes[cd];
1321 else
1322 info->component_size = __be64_to_cpu(vc->conf.blocks);
1323 }
a322f70c
DW
1324
1325 info->disk.major = 0;
1326 info->disk.minor = 0;
1327// info->disk.number = __be32_to_cpu(ddf->disk.refnum);
1328// info->disk.raid_disk = find refnum in the table and use index;
1329// info->disk.state = ???;
1330
103f2410
NB
1331 info->container_member = ddf->currentconf->vcnum;
1332
80d26cb2
NB
1333 info->resync_start = 0;
1334 if (!(ddf->virt->entries[info->container_member].state
1335 & DDF_state_inconsistent) &&
1336 (ddf->virt->entries[info->container_member].init_state
1337 & DDF_initstate_mask)
1338 == DDF_init_full)
1339 info->resync_start = ~0ULL;
1340
a322f70c
DW
1341 uuid_from_super_ddf(st, info->uuid);
1342
3576e302 1343 info->container_member = atoi(st->subarray);
f35f2525
N
1344 info->array.major_version = -1;
1345 info->array.minor_version = -2;
3576e302 1346 sprintf(info->text_version, "/%s/%s",
159c3a1a 1347 devnum2devname(st->container_dev),
3576e302 1348 st->subarray);
a67dd8cc 1349 info->safe_mode_delay = 200;
159c3a1a 1350
db42fa9b
N
1351 memcpy(info->name, ddf->virt->entries[info->container_member].name, 16);
1352 info->name[16]=0;
1353 for(j=0; j<16; j++)
1354 if (info->name[j] == ' ')
1355 info->name[j] = 0;
a322f70c
DW
1356}
1357
598f0d58 1358
a322f70c
DW
1359static int update_super_ddf(struct supertype *st, struct mdinfo *info,
1360 char *update,
1361 char *devname, int verbose,
1362 int uuid_set, char *homehost)
1363{
1364 /* For 'assemble' and 'force' we need to return non-zero if any
1365 * change was made. For others, the return value is ignored.
1366 * Update options are:
1367 * force-one : This device looks a bit old but needs to be included,
1368 * update age info appropriately.
1369 * assemble: clear any 'faulty' flag to allow this device to
1370 * be assembled.
1371 * force-array: Array is degraded but being forced, mark it clean
1372 * if that will be needed to assemble it.
1373 *
1374 * newdev: not used ????
1375 * grow: Array has gained a new device - this is currently for
1376 * linear only
1377 * resync: mark as dirty so a resync will happen.
59e36268 1378 * uuid: Change the uuid of the array to match what is given
a322f70c
DW
1379 * homehost: update the recorded homehost
1380 * name: update the name - preserving the homehost
1381 * _reshape_progress: record new reshape_progress position.
1382 *
1383 * Following are not relevant for this version:
1384 * sparc2.2 : update from old dodgey metadata
1385 * super-minor: change the preferred_minor number
1386 * summaries: update redundant counters.
1387 */
1388 int rv = 0;
1389// struct ddf_super *ddf = st->sb;
7a7cc504 1390// struct vd_config *vd = find_vdcr(ddf, info->container_member);
a322f70c
DW
1391// struct virtual_entry *ve = find_ve(ddf);
1392
a322f70c
DW
1393 /* we don't need to handle "force-*" or "assemble" as
1394 * there is no need to 'trick' the kernel. We the metadata is
1395 * first updated to activate the array, all the implied modifications
1396 * will just happen.
1397 */
1398
1399 if (strcmp(update, "grow") == 0) {
1400 /* FIXME */
1401 }
1402 if (strcmp(update, "resync") == 0) {
1403// info->resync_checkpoint = 0;
1404 }
1405 /* We ignore UUID updates as they make even less sense
1406 * with DDF
1407 */
1408 if (strcmp(update, "homehost") == 0) {
1409 /* homehost is stored in controller->vendor_data,
1410 * or it is when we are the vendor
1411 */
1412// if (info->vendor_is_local)
1413// strcpy(ddf->controller.vendor_data, homehost);
1414 }
1415 if (strcmp(update, "name") == 0) {
1416 /* name is stored in virtual_entry->name */
1417// memset(ve->name, ' ', 16);
1418// strncpy(ve->name, info->name, 16);
1419 }
1420 if (strcmp(update, "_reshape_progress") == 0) {
1421 /* We don't support reshape yet */
1422 }
1423
1424// update_all_csum(ddf);
1425
1426 return rv;
1427}
1428
5f8097be
NB
1429static void make_header_guid(char *guid)
1430{
1431 __u32 stamp;
1432 int rfd;
1433 /* Create a DDF Header of Virtual Disk GUID */
1434
1435 /* 24 bytes of fiction required.
1436 * first 8 are a 'vendor-id' - "Linux-MD"
1437 * next 8 are controller type.. how about 0X DEAD BEEF 0000 0000
1438 * Remaining 8 random number plus timestamp
1439 */
1440 memcpy(guid, T10, sizeof(T10));
1441 stamp = __cpu_to_be32(0xdeadbeef);
1442 memcpy(guid+8, &stamp, 4);
1443 stamp = __cpu_to_be32(0);
1444 memcpy(guid+12, &stamp, 4);
1445 stamp = __cpu_to_be32(time(0) - DECADE);
1446 memcpy(guid+16, &stamp, 4);
1447 rfd = open("/dev/urandom", O_RDONLY);
1448 if (rfd < 0 || read(rfd, &stamp, 4) != 4)
1449 stamp = random();
1450 memcpy(guid+20, &stamp, 4);
1451 if (rfd >= 0) close(rfd);
1452}
59e36268 1453
78e44928
NB
1454static int init_super_ddf_bvd(struct supertype *st,
1455 mdu_array_info_t *info,
1456 unsigned long long size,
1457 char *name, char *homehost,
1458 int *uuid);
1459
a322f70c
DW
1460static int init_super_ddf(struct supertype *st,
1461 mdu_array_info_t *info,
1462 unsigned long long size, char *name, char *homehost,
1463 int *uuid)
1464{
1465 /* This is primarily called by Create when creating a new array.
1466 * We will then get add_to_super called for each component, and then
1467 * write_init_super called to write it out to each device.
1468 * For DDF, Create can create on fresh devices or on a pre-existing
1469 * array.
1470 * To create on a pre-existing array a different method will be called.
1471 * This one is just for fresh drives.
1472 *
1473 * We need to create the entire 'ddf' structure which includes:
1474 * DDF headers - these are easy.
1475 * Controller data - a Sector describing this controller .. not that
1476 * this is a controller exactly.
1477 * Physical Disk Record - one entry per device, so
1478 * leave plenty of space.
1479 * Virtual Disk Records - again, just leave plenty of space.
1480 * This just lists VDs, doesn't give details
1481 * Config records - describes the VDs that use this disk
1482 * DiskData - describes 'this' device.
1483 * BadBlockManagement - empty
1484 * Diag Space - empty
1485 * Vendor Logs - Could we put bitmaps here?
1486 *
1487 */
1488 struct ddf_super *ddf;
1489 char hostname[17];
1490 int hostlen;
a322f70c
DW
1491 int max_phys_disks, max_virt_disks;
1492 unsigned long long sector;
1493 int clen;
1494 int i;
1495 int pdsize, vdsize;
1496 struct phys_disk *pd;
1497 struct virtual_disk *vd;
1498
ba7eb04f
NB
1499 if (!info) {
1500 st->sb = NULL;
1501 return 0;
1502 }
78e44928
NB
1503 if (st->sb)
1504 return init_super_ddf_bvd(st, info, size, name, homehost,
1505 uuid);
ba7eb04f 1506
3d2c4fc7
DW
1507 if (posix_memalign((void**)&ddf, 512, sizeof(*ddf)) != 0) {
1508 fprintf(stderr, Name ": %s could not allocate superblock\n", __func__);
1509 return 0;
1510 }
6264b437 1511 memset(ddf, 0, sizeof(*ddf));
a322f70c
DW
1512 ddf->dlist = NULL; /* no physical disks yet */
1513 ddf->conflist = NULL; /* No virtual disks yet */
1514
1515 /* At least 32MB *must* be reserved for the ddf. So let's just
1516 * start 32MB from the end, and put the primary header there.
1517 * Don't do secondary for now.
1518 * We don't know exactly where that will be yet as it could be
1519 * different on each device. To just set up the lengths.
1520 *
1521 */
1522
1523 ddf->anchor.magic = DDF_HEADER_MAGIC;
5f8097be 1524 make_header_guid(ddf->anchor.guid);
a322f70c 1525
59e36268 1526 memcpy(ddf->anchor.revision, DDF_REVISION_2, 8);
a322f70c
DW
1527 ddf->anchor.seq = __cpu_to_be32(1);
1528 ddf->anchor.timestamp = __cpu_to_be32(time(0) - DECADE);
1529 ddf->anchor.openflag = 0xFF;
1530 ddf->anchor.foreignflag = 0;
1531 ddf->anchor.enforcegroups = 0; /* Is this best?? */
1532 ddf->anchor.pad0 = 0xff;
1533 memset(ddf->anchor.pad1, 0xff, 12);
1534 memset(ddf->anchor.header_ext, 0xff, 32);
1535 ddf->anchor.primary_lba = ~(__u64)0;
1536 ddf->anchor.secondary_lba = ~(__u64)0;
1537 ddf->anchor.type = DDF_HEADER_ANCHOR;
1538 memset(ddf->anchor.pad2, 0xff, 3);
1539 ddf->anchor.workspace_len = __cpu_to_be32(32768); /* Must be reserved */
1540 ddf->anchor.workspace_lba = ~(__u64)0; /* Put this at bottom
1541 of 32M reserved.. */
1542 max_phys_disks = 1023; /* Should be enough */
1543 ddf->anchor.max_pd_entries = __cpu_to_be16(max_phys_disks);
1544 max_virt_disks = 255;
1545 ddf->anchor.max_vd_entries = __cpu_to_be16(max_virt_disks); /* ?? */
1546 ddf->anchor.max_partitions = __cpu_to_be16(64); /* ?? */
1547 ddf->max_part = 64;
8c3b8c2c 1548 ddf->mppe = 256;
59e36268
NB
1549 ddf->conf_rec_len = 1 + ROUND_UP(ddf->mppe * (4+8), 512)/512;
1550 ddf->anchor.config_record_len = __cpu_to_be16(ddf->conf_rec_len);
1551 ddf->anchor.max_primary_element_entries = __cpu_to_be16(ddf->mppe);
a322f70c 1552 memset(ddf->anchor.pad3, 0xff, 54);
a322f70c
DW
1553 /* controller sections is one sector long immediately
1554 * after the ddf header */
1555 sector = 1;
1556 ddf->anchor.controller_section_offset = __cpu_to_be32(sector);
1557 ddf->anchor.controller_section_length = __cpu_to_be32(1);
1558 sector += 1;
1559
1560 /* phys is 8 sectors after that */
1561 pdsize = ROUND_UP(sizeof(struct phys_disk) +
1562 sizeof(struct phys_disk_entry)*max_phys_disks,
1563 512);
1564 switch(pdsize/512) {
1565 case 2: case 8: case 32: case 128: case 512: break;
1566 default: abort();
1567 }
1568 ddf->anchor.phys_section_offset = __cpu_to_be32(sector);
1569 ddf->anchor.phys_section_length =
1570 __cpu_to_be32(pdsize/512); /* max_primary_element_entries/8 */
1571 sector += pdsize/512;
1572
1573 /* virt is another 32 sectors */
1574 vdsize = ROUND_UP(sizeof(struct virtual_disk) +
1575 sizeof(struct virtual_entry) * max_virt_disks,
1576 512);
1577 switch(vdsize/512) {
1578 case 2: case 8: case 32: case 128: case 512: break;
1579 default: abort();
1580 }
1581 ddf->anchor.virt_section_offset = __cpu_to_be32(sector);
1582 ddf->anchor.virt_section_length =
1583 __cpu_to_be32(vdsize/512); /* max_vd_entries/8 */
1584 sector += vdsize/512;
1585
59e36268 1586 clen = ddf->conf_rec_len * (ddf->max_part+1);
a322f70c
DW
1587 ddf->anchor.config_section_offset = __cpu_to_be32(sector);
1588 ddf->anchor.config_section_length = __cpu_to_be32(clen);
1589 sector += clen;
1590
1591 ddf->anchor.data_section_offset = __cpu_to_be32(sector);
1592 ddf->anchor.data_section_length = __cpu_to_be32(1);
1593 sector += 1;
1594
1595 ddf->anchor.bbm_section_length = __cpu_to_be32(0);
1596 ddf->anchor.bbm_section_offset = __cpu_to_be32(0xFFFFFFFF);
1597 ddf->anchor.diag_space_length = __cpu_to_be32(0);
1598 ddf->anchor.diag_space_offset = __cpu_to_be32(0xFFFFFFFF);
1599 ddf->anchor.vendor_length = __cpu_to_be32(0);
1600 ddf->anchor.vendor_offset = __cpu_to_be32(0xFFFFFFFF);
1601
1602 memset(ddf->anchor.pad4, 0xff, 256);
1603
1604 memcpy(&ddf->primary, &ddf->anchor, 512);
1605 memcpy(&ddf->secondary, &ddf->anchor, 512);
1606
1607 ddf->primary.openflag = 1; /* I guess.. */
1608 ddf->primary.type = DDF_HEADER_PRIMARY;
1609
1610 ddf->secondary.openflag = 1; /* I guess.. */
1611 ddf->secondary.type = DDF_HEADER_SECONDARY;
1612
1613 ddf->active = &ddf->primary;
1614
1615 ddf->controller.magic = DDF_CONTROLLER_MAGIC;
1616
1617 /* 24 more bytes of fiction required.
1618 * first 8 are a 'vendor-id' - "Linux-MD"
1619 * Remaining 16 are serial number.... maybe a hostname would do?
1620 */
1621 memcpy(ddf->controller.guid, T10, sizeof(T10));
1ba6bff9
DW
1622 gethostname(hostname, sizeof(hostname));
1623 hostname[sizeof(hostname) - 1] = 0;
a322f70c
DW
1624 hostlen = strlen(hostname);
1625 memcpy(ddf->controller.guid + 24 - hostlen, hostname, hostlen);
1626 for (i = strlen(T10) ; i+hostlen < 24; i++)
1627 ddf->controller.guid[i] = ' ';
1628
1629 ddf->controller.type.vendor_id = __cpu_to_be16(0xDEAD);
1630 ddf->controller.type.device_id = __cpu_to_be16(0xBEEF);
1631 ddf->controller.type.sub_vendor_id = 0;
1632 ddf->controller.type.sub_device_id = 0;
1633 memcpy(ddf->controller.product_id, "What Is My PID??", 16);
1634 memset(ddf->controller.pad, 0xff, 8);
1635 memset(ddf->controller.vendor_data, 0xff, 448);
1636
3d2c4fc7
DW
1637 if (posix_memalign((void**)&pd, 512, pdsize) != 0) {
1638 fprintf(stderr, Name ": %s could not allocate pd\n", __func__);
1639 return 0;
1640 }
6416d527 1641 ddf->phys = pd;
a322f70c
DW
1642 ddf->pdsize = pdsize;
1643
1644 memset(pd, 0xff, pdsize);
1645 memset(pd, 0, sizeof(*pd));
1646 pd->magic = DDF_PHYS_DATA_MAGIC;
1647 pd->used_pdes = __cpu_to_be16(0);
1648 pd->max_pdes = __cpu_to_be16(max_phys_disks);
1649 memset(pd->pad, 0xff, 52);
1650
3d2c4fc7
DW
1651 if (posix_memalign((void**)&vd, 512, vdsize) != 0) {
1652 fprintf(stderr, Name ": %s could not allocate vd\n", __func__);
1653 return 0;
1654 }
6416d527 1655 ddf->virt = vd;
a322f70c
DW
1656 ddf->vdsize = vdsize;
1657 memset(vd, 0, vdsize);
1658 vd->magic = DDF_VIRT_RECORDS_MAGIC;
1659 vd->populated_vdes = __cpu_to_be16(0);
1660 vd->max_vdes = __cpu_to_be16(max_virt_disks);
1661 memset(vd->pad, 0xff, 52);
1662
5f8097be
NB
1663 for (i=0; i<max_virt_disks; i++)
1664 memset(&vd->entries[i], 0xff, sizeof(struct virtual_entry));
1665
a322f70c 1666 st->sb = ddf;
18a2f463 1667 ddf->updates_pending = 1;
a322f70c
DW
1668 return 1;
1669}
1670
5f8097be
NB
1671static int all_ff(char *guid)
1672{
1673 int i;
1674 for (i = 0; i < DDF_GUID_LEN; i++)
1675 if (guid[i] != (char)0xff)
1676 return 0;
1677 return 1;
1678}
1679static int chunk_to_shift(int chunksize)
1680{
1681 return ffs(chunksize/512)-1;
1682}
1683
1684static int level_to_prl(int level)
1685{
1686 switch (level) {
1687 case LEVEL_LINEAR: return DDF_CONCAT;
1688 case 0: return DDF_RAID0;
1689 case 1: return DDF_RAID1;
1690 case 4: return DDF_RAID4;
1691 case 5: return DDF_RAID5;
1692 case 6: return DDF_RAID6;
1693 default: return -1;
1694 }
1695}
1696static int layout_to_rlq(int level, int layout, int raiddisks)
1697{
1698 switch(level) {
1699 case 0:
1700 return DDF_RAID0_SIMPLE;
1701 case 1:
1702 switch(raiddisks) {
1703 case 2: return DDF_RAID1_SIMPLE;
1704 case 3: return DDF_RAID1_MULTI;
1705 default: return -1;
1706 }
1707 case 4:
1708 switch(layout) {
1709 case 0: return DDF_RAID4_N;
1710 }
1711 break;
1712 case 5:
1713 case 6:
1714 switch(layout) {
1715 case ALGORITHM_LEFT_ASYMMETRIC:
1716 return DDF_RAID5_N_RESTART;
1717 case ALGORITHM_RIGHT_ASYMMETRIC:
59e36268
NB
1718 if (level == 5)
1719 return DDF_RAID5_0_RESTART;
1720 else
1721 return DDF_RAID6_0_RESTART;
5f8097be
NB
1722 case ALGORITHM_LEFT_SYMMETRIC:
1723 return DDF_RAID5_N_CONTINUE;
1724 case ALGORITHM_RIGHT_SYMMETRIC:
1725 return -1; /* not mentioned in standard */
1726 }
1727 }
1728 return -1;
1729}
1730
598f0d58
NB
1731static int rlq_to_layout(int rlq, int prl, int raiddisks)
1732{
1733 switch(prl) {
1734 case DDF_RAID0:
1735 return 0; /* hopefully rlq == DDF_RAID0_SIMPLE */
1736 case DDF_RAID1:
1737 return 0; /* hopefully rlq == SIMPLE or MULTI depending
1738 on raiddisks*/
1739 case DDF_RAID4:
1740 switch(rlq) {
1741 case DDF_RAID4_N:
1742 return 0;
1743 default:
1744 /* not supported */
1745 return -1; /* FIXME this isn't checked */
1746 }
1747 case DDF_RAID5:
598f0d58
NB
1748 switch(rlq) {
1749 case DDF_RAID5_N_RESTART:
1750 return ALGORITHM_LEFT_ASYMMETRIC;
1751 case DDF_RAID5_0_RESTART:
1752 return ALGORITHM_RIGHT_ASYMMETRIC;
1753 case DDF_RAID5_N_CONTINUE:
1754 return ALGORITHM_LEFT_SYMMETRIC;
1755 default:
1756 return -1;
1757 }
59e36268
NB
1758 case DDF_RAID6:
1759 switch(rlq) {
1760 case DDF_RAID5_N_RESTART:
1761 return ALGORITHM_LEFT_ASYMMETRIC;
1762 case DDF_RAID6_0_RESTART:
1763 return ALGORITHM_RIGHT_ASYMMETRIC;
1764 case DDF_RAID5_N_CONTINUE:
1765 return ALGORITHM_LEFT_SYMMETRIC;
1766 default:
1767 return -1;
1768 }
598f0d58
NB
1769 }
1770 return -1;
1771}
1772
0e600426 1773#ifndef MDASSEMBLE
59e36268
NB
1774struct extent {
1775 unsigned long long start, size;
1776};
78e44928 1777static int cmp_extent(const void *av, const void *bv)
59e36268
NB
1778{
1779 const struct extent *a = av;
1780 const struct extent *b = bv;
1781 if (a->start < b->start)
1782 return -1;
1783 if (a->start > b->start)
1784 return 1;
1785 return 0;
1786}
1787
78e44928 1788static struct extent *get_extents(struct ddf_super *ddf, struct dl *dl)
59e36268
NB
1789{
1790 /* find a list of used extents on the give physical device
1791 * (dnum) of the given ddf.
1792 * Return a malloced array of 'struct extent'
1793
1794FIXME ignore DDF_Legacy devices?
1795
1796 */
1797 struct extent *rv;
1798 int n = 0;
1799 int i, j;
1800
1801 rv = malloc(sizeof(struct extent) * (ddf->max_part + 2));
1802 if (!rv)
1803 return NULL;
1804
1805 for (i = 0; i < ddf->max_part; i++) {
1806 struct vcl *v = dl->vlist[i];
1807 if (v == NULL)
1808 continue;
1809 for (j=0; j < v->conf.prim_elmnt_count; j++)
1810 if (v->conf.phys_refnum[j] == dl->disk.refnum) {
1811 /* This device plays role 'j' in 'v'. */
1812 rv[n].start = __be64_to_cpu(v->lba_offset[j]);
1813 rv[n].size = __be64_to_cpu(v->conf.blocks);
1814 n++;
1815 break;
1816 }
1817 }
1818 qsort(rv, n, sizeof(*rv), cmp_extent);
1819
1820 rv[n].start = __be64_to_cpu(ddf->phys->entries[dl->pdnum].config_size);
1821 rv[n].size = 0;
1822 return rv;
1823}
0e600426 1824#endif
59e36268 1825
5f8097be
NB
1826static int init_super_ddf_bvd(struct supertype *st,
1827 mdu_array_info_t *info,
1828 unsigned long long size,
1829 char *name, char *homehost,
1830 int *uuid)
1831{
1832 /* We are creating a BVD inside a pre-existing container.
1833 * so st->sb is already set.
1834 * We need to create a new vd_config and a new virtual_entry
1835 */
1836 struct ddf_super *ddf = st->sb;
1837 int venum;
1838 struct virtual_entry *ve;
1839 struct vcl *vcl;
1840 struct vd_config *vc;
5f8097be
NB
1841
1842 if (__be16_to_cpu(ddf->virt->populated_vdes)
1843 >= __be16_to_cpu(ddf->virt->max_vdes)) {
1844 fprintf(stderr, Name": This ddf already has the "
1845 "maximum of %d virtual devices\n",
1846 __be16_to_cpu(ddf->virt->max_vdes));
1847 return 0;
1848 }
1849
1850 for (venum = 0; venum < __be16_to_cpu(ddf->virt->max_vdes); venum++)
1851 if (all_ff(ddf->virt->entries[venum].guid))
1852 break;
1853 if (venum == __be16_to_cpu(ddf->virt->max_vdes)) {
1854 fprintf(stderr, Name ": Cannot find spare slot for "
1855 "virtual disk - DDF is corrupt\n");
1856 return 0;
1857 }
1858 ve = &ddf->virt->entries[venum];
1859
1860 /* A Virtual Disk GUID contains the T10 Vendor ID, controller type,
1861 * timestamp, random number
1862 */
1863 make_header_guid(ve->guid);
1864 ve->unit = __cpu_to_be16(info->md_minor);
1865 ve->pad0 = 0xFFFF;
1866 ve->guid_crc = crc32(0, (unsigned char*)ddf->anchor.guid, DDF_GUID_LEN);
1867 ve->type = 0;
7a7cc504
NB
1868 ve->state = DDF_state_degraded; /* Will be modified as devices are added */
1869 if (info->state & 1) /* clean */
1870 ve->init_state = DDF_init_full;
1871 else
1872 ve->init_state = DDF_init_not;
1873
5f8097be
NB
1874 memset(ve->pad1, 0xff, 14);
1875 memset(ve->name, ' ', 16);
1876 if (name)
1877 strncpy(ve->name, name, 16);
1878 ddf->virt->populated_vdes =
1879 __cpu_to_be16(__be16_to_cpu(ddf->virt->populated_vdes)+1);
1880
1881 /* Now create a new vd_config */
3d2c4fc7
DW
1882 if (posix_memalign((void**)&vcl, 512,
1883 (offsetof(struct vcl, conf) + ddf->conf_rec_len * 512)) != 0) {
1884 fprintf(stderr, Name ": %s could not allocate vd_config\n", __func__);
1885 return 0;
1886 }
8c3b8c2c 1887 vcl->lba_offset = (__u64*) &vcl->conf.phys_refnum[ddf->mppe];
59e36268 1888 vcl->vcnum = venum;
f7e7067b 1889 sprintf(st->subarray, "%d", venum);
59e36268 1890 vcl->block_sizes = NULL; /* FIXME not for CONCAT */
5f8097be
NB
1891
1892 vc = &vcl->conf;
1893
1894 vc->magic = DDF_VD_CONF_MAGIC;
1895 memcpy(vc->guid, ve->guid, DDF_GUID_LEN);
1896 vc->timestamp = __cpu_to_be32(time(0)-DECADE);
1897 vc->seqnum = __cpu_to_be32(1);
1898 memset(vc->pad0, 0xff, 24);
1899 vc->prim_elmnt_count = __cpu_to_be16(info->raid_disks);
1900 vc->chunk_shift = chunk_to_shift(info->chunk_size);
1901 vc->prl = level_to_prl(info->level);
1902 vc->rlq = layout_to_rlq(info->level, info->layout, info->raid_disks);
1903 vc->sec_elmnt_count = 1;
1904 vc->sec_elmnt_seq = 0;
1905 vc->srl = 0;
1906 vc->blocks = __cpu_to_be64(info->size * 2);
1907 vc->array_blocks = __cpu_to_be64(
1908 calc_array_size(info->level, info->raid_disks, info->layout,
1909 info->chunk_size, info->size*2));
1910 memset(vc->pad1, 0xff, 8);
1911 vc->spare_refs[0] = 0xffffffff;
1912 vc->spare_refs[1] = 0xffffffff;
1913 vc->spare_refs[2] = 0xffffffff;
1914 vc->spare_refs[3] = 0xffffffff;
1915 vc->spare_refs[4] = 0xffffffff;
1916 vc->spare_refs[5] = 0xffffffff;
1917 vc->spare_refs[6] = 0xffffffff;
1918 vc->spare_refs[7] = 0xffffffff;
1919 memset(vc->cache_pol, 0, 8);
1920 vc->bg_rate = 0x80;
1921 memset(vc->pad2, 0xff, 3);
1922 memset(vc->pad3, 0xff, 52);
1923 memset(vc->pad4, 0xff, 192);
1924 memset(vc->v0, 0xff, 32);
1925 memset(vc->v1, 0xff, 32);
1926 memset(vc->v2, 0xff, 16);
1927 memset(vc->v3, 0xff, 16);
1928 memset(vc->vendor, 0xff, 32);
598f0d58 1929
8c3b8c2c
NB
1930 memset(vc->phys_refnum, 0xff, 4*ddf->mppe);
1931 memset(vc->phys_refnum+(ddf->mppe * 4), 0x00, 8*ddf->mppe);
5f8097be
NB
1932
1933 vcl->next = ddf->conflist;
1934 ddf->conflist = vcl;
d2ca6449 1935 ddf->currentconf = vcl;
18a2f463 1936 ddf->updates_pending = 1;
5f8097be
NB
1937 return 1;
1938}
1939
0e600426 1940#ifndef MDASSEMBLE
5f8097be
NB
1941static void add_to_super_ddf_bvd(struct supertype *st,
1942 mdu_disk_info_t *dk, int fd, char *devname)
1943{
1944 /* fd and devname identify a device with-in the ddf container (st).
1945 * dk identifies a location in the new BVD.
1946 * We need to find suitable free space in that device and update
1947 * the phys_refnum and lba_offset for the newly created vd_config.
1948 * We might also want to update the type in the phys_disk
5575e7d9 1949 * section.
5f8097be
NB
1950 */
1951 struct dl *dl;
1952 struct ddf_super *ddf = st->sb;
1953 struct vd_config *vc;
1954 __u64 *lba_offset;
7a7cc504 1955 int working;
5575e7d9 1956 int i;
59e36268
NB
1957 unsigned long long blocks, pos, esize;
1958 struct extent *ex;
5f8097be
NB
1959
1960 for (dl = ddf->dlist; dl ; dl = dl->next)
1961 if (dl->major == dk->major &&
1962 dl->minor == dk->minor)
1963 break;
1964 if (!dl || ! (dk->state & (1<<MD_DISK_SYNC)))
1965 return;
1966
d2ca6449
NB
1967 vc = &ddf->currentconf->conf;
1968 lba_offset = ddf->currentconf->lba_offset;
59e36268
NB
1969
1970 ex = get_extents(ddf, dl);
1971 if (!ex)
1972 return;
1973
1974 i = 0; pos = 0;
1975 blocks = __be64_to_cpu(vc->blocks);
d2ca6449
NB
1976 if (ddf->currentconf->block_sizes)
1977 blocks = ddf->currentconf->block_sizes[dk->raid_disk];
59e36268
NB
1978
1979 do {
1980 esize = ex[i].start - pos;
1981 if (esize >= blocks)
1982 break;
1983 pos = ex[i].start + ex[i].size;
1984 i++;
1985 } while (ex[i-1].size);
1986
1987 free(ex);
1988 if (esize < blocks)
1989 return;
1990
d2ca6449 1991 ddf->currentdev = dk->raid_disk;
5f8097be 1992 vc->phys_refnum[dk->raid_disk] = dl->disk.refnum;
59e36268 1993 lba_offset[dk->raid_disk] = __cpu_to_be64(pos);
5f8097be 1994
5575e7d9
NB
1995 for (i=0; i < ddf->max_part ; i++)
1996 if (dl->vlist[i] == NULL)
1997 break;
1998 if (i == ddf->max_part)
1999 return;
d2ca6449 2000 dl->vlist[i] = ddf->currentconf;
5f8097be
NB
2001
2002 dl->fd = fd;
2003 dl->devname = devname;
7a7cc504
NB
2004
2005 /* Check how many working raid_disks, and if we can mark
2006 * array as optimal yet
2007 */
2008 working = 0;
5575e7d9 2009
7a7cc504
NB
2010 for (i=0; i < __be16_to_cpu(vc->prim_elmnt_count); i++)
2011 if (vc->phys_refnum[i] != 0xffffffff)
2012 working++;
59e36268 2013
5575e7d9 2014 /* Find which virtual_entry */
d2ca6449 2015 i = ddf->currentconf->vcnum;
7a7cc504 2016 if (working == __be16_to_cpu(vc->prim_elmnt_count))
5575e7d9
NB
2017 ddf->virt->entries[i].state =
2018 (ddf->virt->entries[i].state & ~DDF_state_mask)
7a7cc504
NB
2019 | DDF_state_optimal;
2020
2021 if (vc->prl == DDF_RAID6 &&
2022 working+1 == __be16_to_cpu(vc->prim_elmnt_count))
5575e7d9
NB
2023 ddf->virt->entries[i].state =
2024 (ddf->virt->entries[i].state & ~DDF_state_mask)
7a7cc504 2025 | DDF_state_part_optimal;
5575e7d9
NB
2026
2027 ddf->phys->entries[dl->pdnum].type &= ~__cpu_to_be16(DDF_Global_Spare);
2028 ddf->phys->entries[dl->pdnum].type |= __cpu_to_be16(DDF_Active_in_VD);
18a2f463 2029 ddf->updates_pending = 1;
5f8097be
NB
2030}
2031
a322f70c
DW
2032/* add a device to a container, either while creating it or while
2033 * expanding a pre-existing container
2034 */
2035static void add_to_super_ddf(struct supertype *st,
2036 mdu_disk_info_t *dk, int fd, char *devname)
2037{
2038 struct ddf_super *ddf = st->sb;
2039 struct dl *dd;
2040 time_t now;
2041 struct tm *tm;
2042 unsigned long long size;
2043 struct phys_disk_entry *pde;
2044 int n, i;
2045 struct stat stb;
2046
78e44928
NB
2047 if (ddf->currentconf) {
2048 add_to_super_ddf_bvd(st, dk, fd, devname);
2049 return;
2050 }
2051
a322f70c
DW
2052 /* This is device numbered dk->number. We need to create
2053 * a phys_disk entry and a more detailed disk_data entry.
2054 */
2055 fstat(fd, &stb);
3d2c4fc7
DW
2056 if (posix_memalign((void**)&dd, 512,
2057 sizeof(*dd) + sizeof(dd->vlist[0]) * ddf->max_part) != 0) {
2058 fprintf(stderr, Name
2059 ": %s could allocate buffer for new disk, aborting\n",
2060 __func__);
2061 abort();
2062 }
a322f70c
DW
2063 dd->major = major(stb.st_rdev);
2064 dd->minor = minor(stb.st_rdev);
2065 dd->devname = devname;
a322f70c 2066 dd->fd = fd;
b2280677 2067 dd->spare = NULL;
a322f70c
DW
2068
2069 dd->disk.magic = DDF_PHYS_DATA_MAGIC;
2070 now = time(0);
2071 tm = localtime(&now);
2072 sprintf(dd->disk.guid, "%8s%04d%02d%02d",
2073 T10, tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
2074 *(__u32*)(dd->disk.guid + 16) = random();
2075 *(__u32*)(dd->disk.guid + 20) = random();
2076
59e36268
NB
2077 do {
2078 /* Cannot be bothered finding a CRC of some irrelevant details*/
2079 dd->disk.refnum = random();
2080 for (i = __be16_to_cpu(ddf->active->max_pd_entries) - 1;
2081 i >= 0; i--)
2082 if (ddf->phys->entries[i].refnum == dd->disk.refnum)
2083 break;
2084 } while (i >= 0);
2085
a322f70c
DW
2086 dd->disk.forced_ref = 1;
2087 dd->disk.forced_guid = 1;
2088 memset(dd->disk.vendor, ' ', 32);
2089 memcpy(dd->disk.vendor, "Linux", 5);
2090 memset(dd->disk.pad, 0xff, 442);
b2280677 2091 for (i = 0; i < ddf->max_part ; i++)
a322f70c
DW
2092 dd->vlist[i] = NULL;
2093
2094 n = __be16_to_cpu(ddf->phys->used_pdes);
2095 pde = &ddf->phys->entries[n];
5575e7d9
NB
2096 dd->pdnum = n;
2097
2cc2983d
N
2098 if (st->update_tail) {
2099 int len = (sizeof(struct phys_disk) +
2100 sizeof(struct phys_disk_entry));
2101 struct phys_disk *pd;
2102
2103 pd = malloc(len);
2104 pd->magic = DDF_PHYS_RECORDS_MAGIC;
2105 pd->used_pdes = __cpu_to_be16(n);
2106 pde = &pd->entries[0];
2107 dd->mdupdate = pd;
2108 } else {
2109 n++;
2110 ddf->phys->used_pdes = __cpu_to_be16(n);
2111 }
a322f70c
DW
2112
2113 memcpy(pde->guid, dd->disk.guid, DDF_GUID_LEN);
2114 pde->refnum = dd->disk.refnum;
5575e7d9 2115 pde->type = __cpu_to_be16(DDF_Forced_PD_GUID | DDF_Global_Spare);
a322f70c
DW
2116 pde->state = __cpu_to_be16(DDF_Online);
2117 get_dev_size(fd, NULL, &size);
2118 /* We are required to reserve 32Meg, and record the size in sectors */
2119 pde->config_size = __cpu_to_be64( (size - 32*1024*1024) / 512);
2120 sprintf(pde->path, "%17.17s","Information: nil") ;
2121 memset(pde->pad, 0xff, 6);
2122
d2ca6449 2123 dd->size = size >> 9;
2cc2983d
N
2124 if (st->update_tail) {
2125 dd->next = ddf->add_list;
2126 ddf->add_list = dd;
2127 } else {
2128 dd->next = ddf->dlist;
2129 ddf->dlist = dd;
2130 ddf->updates_pending = 1;
2131 }
a322f70c
DW
2132}
2133
2134/*
2135 * This is the write_init_super method for a ddf container. It is
2136 * called when creating a container or adding another device to a
2137 * container.
2138 */
2139
6416d527 2140static unsigned char null_conf[4096+512];
18a2f463 2141
7a7cc504 2142static int __write_init_super_ddf(struct supertype *st, int do_close)
a322f70c
DW
2143{
2144
2145 struct ddf_super *ddf = st->sb;
2146 int i;
2147 struct dl *d;
2148 int n_config;
2149 int conf_size;
175593bf
DW
2150 int attempts = 0;
2151 int successes = 0;
a322f70c
DW
2152 unsigned long long size, sector;
2153
175593bf
DW
2154 /* try to write updated metadata,
2155 * if we catch a failure move on to the next disk
2156 */
a322f70c
DW
2157 for (d = ddf->dlist; d; d=d->next) {
2158 int fd = d->fd;
2159
2160 if (fd < 0)
2161 continue;
2162
175593bf 2163 attempts++;
a322f70c
DW
2164 /* We need to fill in the primary, (secondary) and workspace
2165 * lba's in the headers, set their checksums,
2166 * Also checksum phys, virt....
2167 *
2168 * Then write everything out, finally the anchor is written.
2169 */
2170 get_dev_size(fd, NULL, &size);
2171 size /= 512;
2172 ddf->anchor.workspace_lba = __cpu_to_be64(size - 32*1024*2);
2173 ddf->anchor.primary_lba = __cpu_to_be64(size - 16*1024*2);
2174 ddf->anchor.seq = __cpu_to_be32(1);
2175 memcpy(&ddf->primary, &ddf->anchor, 512);
2176 memcpy(&ddf->secondary, &ddf->anchor, 512);
2177
2178 ddf->anchor.openflag = 0xFF; /* 'open' means nothing */
2179 ddf->anchor.seq = 0xFFFFFFFF; /* no sequencing in anchor */
2180 ddf->anchor.crc = calc_crc(&ddf->anchor, 512);
2181
2182 ddf->primary.openflag = 0;
2183 ddf->primary.type = DDF_HEADER_PRIMARY;
2184
2185 ddf->secondary.openflag = 0;
2186 ddf->secondary.type = DDF_HEADER_SECONDARY;
2187
2188 ddf->primary.crc = calc_crc(&ddf->primary, 512);
2189 ddf->secondary.crc = calc_crc(&ddf->secondary, 512);
2190
2191 sector = size - 16*1024*2;
2192 lseek64(fd, sector<<9, 0);
175593bf
DW
2193 if (write(fd, &ddf->primary, 512) < 0)
2194 continue;
a322f70c
DW
2195
2196 ddf->controller.crc = calc_crc(&ddf->controller, 512);
175593bf
DW
2197 if (write(fd, &ddf->controller, 512) < 0)
2198 continue;
a322f70c
DW
2199
2200 ddf->phys->crc = calc_crc(ddf->phys, ddf->pdsize);
2201
175593bf
DW
2202 if (write(fd, ddf->phys, ddf->pdsize) < 0)
2203 continue;
a322f70c
DW
2204
2205 ddf->virt->crc = calc_crc(ddf->virt, ddf->vdsize);
175593bf
DW
2206 if (write(fd, ddf->virt, ddf->vdsize) < 0)
2207 continue;
a322f70c
DW
2208
2209 /* Now write lots of config records. */
8c3b8c2c
NB
2210 n_config = ddf->max_part;
2211 conf_size = ddf->conf_rec_len * 512;
a322f70c
DW
2212 for (i = 0 ; i <= n_config ; i++) {
2213 struct vcl *c = d->vlist[i];
b2280677
NB
2214 if (i == n_config)
2215 c = (struct vcl*)d->spare;
a322f70c
DW
2216
2217 if (c) {
2218 c->conf.crc = calc_crc(&c->conf, conf_size);
175593bf
DW
2219 if (write(fd, &c->conf, conf_size) < 0)
2220 break;
a322f70c 2221 } else {
6416d527 2222 char *null_aligned = (char*)((((unsigned long)null_conf)+511)&~511UL);
18a2f463
NB
2223 if (null_conf[0] != 0xff)
2224 memset(null_conf, 0xff, sizeof(null_conf));
2225 int togo = conf_size;
6416d527 2226 while (togo > sizeof(null_conf)-512) {
175593bf
DW
2227 if (write(fd, null_aligned, sizeof(null_conf)-512) < 0)
2228 break;
6416d527 2229 togo -= sizeof(null_conf)-512;
18a2f463 2230 }
175593bf
DW
2231 if (write(fd, null_aligned, togo) < 0)
2232 break;
a322f70c
DW
2233 }
2234 }
175593bf
DW
2235 if (i <= n_config)
2236 continue;
a322f70c 2237 d->disk.crc = calc_crc(&d->disk, 512);
175593bf
DW
2238 if (write(fd, &d->disk, 512) < 0)
2239 continue;
a322f70c
DW
2240
2241 /* Maybe do the same for secondary */
2242
2243 lseek64(fd, (size-1)*512, SEEK_SET);
175593bf
DW
2244 if (write(fd, &ddf->anchor, 512) < 0)
2245 continue;
2246 successes++;
2247 }
2248
2249 if (do_close)
2250 for (d = ddf->dlist; d; d=d->next) {
2251 close(d->fd);
7a7cc504
NB
2252 d->fd = -1;
2253 }
175593bf
DW
2254
2255 return attempts != successes;
a322f70c 2256}
7a7cc504
NB
2257
2258static int write_init_super_ddf(struct supertype *st)
2259{
edd8d13c
NB
2260
2261 if (st->update_tail) {
2262 /* queue the virtual_disk and vd_config as metadata updates */
2263 struct virtual_disk *vd;
2264 struct vd_config *vc;
2265 struct ddf_super *ddf = st->sb;
2266 int len;
2267
2cc2983d
N
2268 if (!ddf->currentconf) {
2269 int len = (sizeof(struct phys_disk) +
2270 sizeof(struct phys_disk_entry));
2271
2272 /* adding a disk to the container. */
2273 if (!ddf->add_list)
2274 return 0;
2275
2276 append_metadata_update(st, ddf->add_list->mdupdate, len);
2277 ddf->add_list->mdupdate = NULL;
2278 return 0;
2279 }
2280
2281 /* Newly created VD */
2282
edd8d13c
NB
2283 /* First the virtual disk. We have a slightly fake header */
2284 len = sizeof(struct virtual_disk) + sizeof(struct virtual_entry);
2285 vd = malloc(len);
2286 *vd = *ddf->virt;
2287 vd->entries[0] = ddf->virt->entries[ddf->currentconf->vcnum];
2288 vd->populated_vdes = __cpu_to_be16(ddf->currentconf->vcnum);
2289 append_metadata_update(st, vd, len);
2290
2291 /* Then the vd_config */
2292 len = ddf->conf_rec_len * 512;
2293 vc = malloc(len);
2294 memcpy(vc, &ddf->currentconf->conf, len);
2295 append_metadata_update(st, vc, len);
2296
2297 /* FIXME I need to close the fds! */
2298 return 0;
2299 } else
2300 return __write_init_super_ddf(st, 1);
7a7cc504
NB
2301}
2302
a322f70c
DW
2303#endif
2304
2305static __u64 avail_size_ddf(struct supertype *st, __u64 devsize)
2306{
2307 /* We must reserve the last 32Meg */
2308 if (devsize <= 32*1024*2)
2309 return 0;
2310 return devsize - 32*1024*2;
2311}
2312
2313#ifndef MDASSEMBLE
2c514b71
NB
2314static int
2315validate_geometry_ddf_container(struct supertype *st,
2316 int level, int layout, int raiddisks,
2317 int chunk, unsigned long long size,
2318 char *dev, unsigned long long *freesize,
2319 int verbose);
78e44928
NB
2320
2321static int validate_geometry_ddf_bvd(struct supertype *st,
2322 int level, int layout, int raiddisks,
2323 int chunk, unsigned long long size,
2c514b71
NB
2324 char *dev, unsigned long long *freesize,
2325 int verbose);
78e44928
NB
2326
2327static int validate_geometry_ddf(struct supertype *st,
2c514b71
NB
2328 int level, int layout, int raiddisks,
2329 int chunk, unsigned long long size,
2330 char *dev, unsigned long long *freesize,
2331 int verbose)
a322f70c
DW
2332{
2333 int fd;
2334 struct mdinfo *sra;
2335 int cfd;
2336
2337 /* ddf potentially supports lots of things, but it depends on
2338 * what devices are offered (and maybe kernel version?)
2339 * If given unused devices, we will make a container.
2340 * If given devices in a container, we will make a BVD.
2341 * If given BVDs, we make an SVD, changing all the GUIDs in the process.
2342 */
2343
2344 if (level == LEVEL_CONTAINER) {
78e44928
NB
2345 /* Must be a fresh device to add to a container */
2346 return validate_geometry_ddf_container(st, level, layout,
2c514b71
NB
2347 raiddisks, chunk,
2348 size, dev, freesize,
2349 verbose);
5f8097be
NB
2350 }
2351
2352 if (st->sb) {
78e44928
NB
2353 /* A container has already been opened, so we are
2354 * creating in there. Maybe a BVD, maybe an SVD.
2355 * Should make a distinction one day.
2356 */
2357 return validate_geometry_ddf_bvd(st, level, layout, raiddisks,
2c514b71
NB
2358 chunk, size, dev, freesize,
2359 verbose);
a322f70c 2360 }
78e44928
NB
2361 if (!dev) {
2362 /* Initial sanity check. Exclude illegal levels. */
2363 int i;
2364 for (i=0; ddf_level_num[i].num1 != MAXINT; i++)
2365 if (ddf_level_num[i].num2 == level)
2366 break;
2367 if (ddf_level_num[i].num1 == MAXINT)
2368 return 0;
2369 /* Should check layout? etc */
a322f70c 2370 return 1;
78e44928 2371 }
a322f70c 2372
78e44928
NB
2373 /* This is the first device for the array.
2374 * If it is a container, we read it in and do automagic allocations,
2375 * no other devices should be given.
2376 * Otherwise it must be a member device of a container, and we
2377 * do manual allocation.
2378 * Later we should check for a BVD and make an SVD.
a322f70c 2379 */
a322f70c
DW
2380 fd = open(dev, O_RDONLY|O_EXCL, 0);
2381 if (fd >= 0) {
2382 sra = sysfs_read(fd, 0, GET_VERSION);
2383 close(fd);
2384 if (sra && sra->array.major_version == -1 &&
78e44928
NB
2385 strcmp(sra->text_version, "ddf") == 0) {
2386
2387 /* load super */
2388 /* find space for 'n' devices. */
2389 /* remember the devices */
2390 /* Somehow return the fact that we have enough */
a322f70c
DW
2391 }
2392
2c514b71
NB
2393 if (verbose)
2394 fprintf(stderr,
2395 Name ": ddf: Cannot create this array "
2396 "on device %s\n",
2397 dev);
a322f70c
DW
2398 return 0;
2399 }
2400 if (errno != EBUSY || (fd = open(dev, O_RDONLY, 0)) < 0) {
2c514b71
NB
2401 if (verbose)
2402 fprintf(stderr, Name ": ddf: Cannot open %s: %s\n",
2403 dev, strerror(errno));
a322f70c
DW
2404 return 0;
2405 }
2406 /* Well, it is in use by someone, maybe a 'ddf' container. */
2407 cfd = open_container(fd);
2408 if (cfd < 0) {
2409 close(fd);
2c514b71
NB
2410 if (verbose)
2411 fprintf(stderr, Name ": ddf: Cannot use %s: %s\n",
2412 dev, strerror(EBUSY));
a322f70c
DW
2413 return 0;
2414 }
2415 sra = sysfs_read(cfd, 0, GET_VERSION);
2416 close(fd);
2417 if (sra && sra->array.major_version == -1 &&
2418 strcmp(sra->text_version, "ddf") == 0) {
2419 /* This is a member of a ddf container. Load the container
2420 * and try to create a bvd
2421 */
2422 struct ddf_super *ddf;
a322f70c 2423 if (load_super_ddf_all(st, cfd, (void **)&ddf, NULL, 1) == 0) {
5f8097be 2424 st->sb = ddf;
2f6079dc 2425 st->container_dev = fd2devnum(cfd);
a322f70c 2426 close(cfd);
78e44928 2427 return validate_geometry_ddf_bvd(st, level, layout,
a322f70c 2428 raiddisks, chunk, size,
2c514b71
NB
2429 dev, freesize,
2430 verbose);
a322f70c
DW
2431 }
2432 close(cfd);
c42ec1ed
DW
2433 } else /* device may belong to a different container */
2434 return 0;
2435
a322f70c
DW
2436 return 1;
2437}
2438
2c514b71
NB
2439static int
2440validate_geometry_ddf_container(struct supertype *st,
2441 int level, int layout, int raiddisks,
2442 int chunk, unsigned long long size,
2443 char *dev, unsigned long long *freesize,
2444 int verbose)
a322f70c
DW
2445{
2446 int fd;
2447 unsigned long long ldsize;
2448
2449 if (level != LEVEL_CONTAINER)
2450 return 0;
2451 if (!dev)
2452 return 1;
2453
2454 fd = open(dev, O_RDONLY|O_EXCL, 0);
2455 if (fd < 0) {
2c514b71
NB
2456 if (verbose)
2457 fprintf(stderr, Name ": ddf: Cannot open %s: %s\n",
2458 dev, strerror(errno));
a322f70c
DW
2459 return 0;
2460 }
2461 if (!get_dev_size(fd, dev, &ldsize)) {
2462 close(fd);
2463 return 0;
2464 }
2465 close(fd);
2466
56aca704 2467 *freesize = avail_size_ddf(st, ldsize >> 9);
a322f70c
DW
2468
2469 return 1;
2470}
2471
78e44928
NB
2472static int validate_geometry_ddf_bvd(struct supertype *st,
2473 int level, int layout, int raiddisks,
2474 int chunk, unsigned long long size,
2c514b71
NB
2475 char *dev, unsigned long long *freesize,
2476 int verbose)
a322f70c
DW
2477{
2478 struct stat stb;
2479 struct ddf_super *ddf = st->sb;
2480 struct dl *dl;
5f8097be
NB
2481 unsigned long long pos = 0;
2482 unsigned long long maxsize;
2483 struct extent *e;
2484 int i;
a322f70c
DW
2485 /* ddf/bvd supports lots of things, but not containers */
2486 if (level == LEVEL_CONTAINER)
2487 return 0;
2488 /* We must have the container info already read in. */
2489 if (!ddf)
2490 return 0;
2491
5f8097be
NB
2492 if (!dev) {
2493 /* General test: make sure there is space for
2494 * 'raiddisks' device extents of size 'size'.
2495 */
2496 unsigned long long minsize = size;
2497 int dcnt = 0;
2498 if (minsize == 0)
2499 minsize = 8;
2500 for (dl = ddf->dlist; dl ; dl = dl->next)
2501 {
2502 int found = 0;
7e1432fb 2503 pos = 0;
5f8097be
NB
2504
2505 i = 0;
2506 e = get_extents(ddf, dl);
2507 if (!e) continue;
2508 do {
2509 unsigned long long esize;
2510 esize = e[i].start - pos;
2511 if (esize >= minsize)
2512 found = 1;
2513 pos = e[i].start + e[i].size;
2514 i++;
2515 } while (e[i-1].size);
2516 if (found)
2517 dcnt++;
2518 free(e);
2519 }
2520 if (dcnt < raiddisks) {
2c514b71
NB
2521 if (verbose)
2522 fprintf(stderr,
2523 Name ": ddf: Not enough devices with "
2524 "space for this array (%d < %d)\n",
2525 dcnt, raiddisks);
5f8097be
NB
2526 return 0;
2527 }
2528 return 1;
2529 }
a322f70c
DW
2530 /* This device must be a member of the set */
2531 if (stat(dev, &stb) < 0)
2532 return 0;
2533 if ((S_IFMT & stb.st_mode) != S_IFBLK)
2534 return 0;
2535 for (dl = ddf->dlist ; dl ; dl = dl->next) {
2536 if (dl->major == major(stb.st_rdev) &&
2537 dl->minor == minor(stb.st_rdev))
2538 break;
2539 }
5f8097be 2540 if (!dl) {
2c514b71
NB
2541 if (verbose)
2542 fprintf(stderr, Name ": ddf: %s is not in the "
2543 "same DDF set\n",
2544 dev);
5f8097be
NB
2545 return 0;
2546 }
2547 e = get_extents(ddf, dl);
2548 maxsize = 0;
2549 i = 0;
2550 if (e) do {
2551 unsigned long long esize;
2552 esize = e[i].start - pos;
2553 if (esize >= maxsize)
2554 maxsize = esize;
2555 pos = e[i].start + e[i].size;
2556 i++;
2557 } while (e[i-1].size);
2558 *freesize = maxsize;
a322f70c
DW
2559 // FIXME here I am
2560
2561 return 1;
2562}
59e36268 2563
a322f70c
DW
2564static int load_super_ddf_all(struct supertype *st, int fd,
2565 void **sbp, char *devname, int keep_fd)
2566{
2567 struct mdinfo *sra;
2568 struct ddf_super *super;
2569 struct mdinfo *sd, *best = NULL;
2570 int bestseq = 0;
2571 int seq;
2572 char nm[20];
2573 int dfd;
2574
2575 sra = sysfs_read(fd, 0, GET_LEVEL|GET_VERSION|GET_DEVS|GET_STATE);
2576 if (!sra)
2577 return 1;
2578 if (sra->array.major_version != -1 ||
2579 sra->array.minor_version != -2 ||
2580 strcmp(sra->text_version, "ddf") != 0)
2581 return 1;
2582
6416d527 2583 if (posix_memalign((void**)&super, 512, sizeof(*super)) != 0)
a322f70c 2584 return 1;
a2349791 2585 memset(super, 0, sizeof(*super));
a322f70c
DW
2586
2587 /* first, try each device, and choose the best ddf */
2588 for (sd = sra->devs ; sd ; sd = sd->next) {
2589 int rv;
2590 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
7a7cc504
NB
2591 dfd = dev_open(nm, O_RDONLY);
2592 if (dfd < 0)
a322f70c
DW
2593 return 2;
2594 rv = load_ddf_headers(dfd, super, NULL);
7a7cc504 2595 close(dfd);
a322f70c
DW
2596 if (rv == 0) {
2597 seq = __be32_to_cpu(super->active->seq);
2598 if (super->active->openflag)
2599 seq--;
2600 if (!best || seq > bestseq) {
2601 bestseq = seq;
2602 best = sd;
2603 }
2604 }
2605 }
2606 if (!best)
2607 return 1;
2608 /* OK, load this ddf */
2609 sprintf(nm, "%d:%d", best->disk.major, best->disk.minor);
2610 dfd = dev_open(nm, O_RDONLY);
7a7cc504 2611 if (dfd < 0)
a322f70c
DW
2612 return 1;
2613 load_ddf_headers(dfd, super, NULL);
2614 load_ddf_global(dfd, super, NULL);
2615 close(dfd);
2616 /* Now we need the device-local bits */
2617 for (sd = sra->devs ; sd ; sd = sd->next) {
3d2c4fc7
DW
2618 int rv;
2619
a322f70c 2620 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
5f8097be 2621 dfd = dev_open(nm, keep_fd? O_RDWR : O_RDONLY);
7a7cc504 2622 if (dfd < 0)
a322f70c 2623 return 2;
3d2c4fc7
DW
2624 rv = load_ddf_headers(dfd, super, NULL);
2625 if (rv == 0)
2626 rv = load_ddf_local(dfd, super, NULL, keep_fd);
5f8097be 2627 if (!keep_fd) close(dfd);
3d2c4fc7
DW
2628 if (rv)
2629 return 1;
a322f70c 2630 }
f7e7067b
NB
2631 if (st->subarray[0]) {
2632 struct vcl *v;
2633
2634 for (v = super->conflist; v; v = v->next)
2635 if (v->vcnum == atoi(st->subarray))
d2ca6449
NB
2636 super->currentconf = v;
2637 if (!super->currentconf)
f7e7067b
NB
2638 return 1;
2639 }
a322f70c
DW
2640 *sbp = super;
2641 if (st->ss == NULL) {
78e44928 2642 st->ss = &super_ddf;
a322f70c
DW
2643 st->minor_version = 0;
2644 st->max_devs = 512;
75aa18b5 2645 st->container_dev = fd2devnum(fd);
a322f70c 2646 }
352452c3 2647 st->loaded_container = 1;
a322f70c
DW
2648 return 0;
2649}
0e600426 2650#endif /* MDASSEMBLE */
a322f70c 2651
598f0d58
NB
2652static struct mdinfo *container_content_ddf(struct supertype *st)
2653{
2654 /* Given a container loaded by load_super_ddf_all,
2655 * extract information about all the arrays into
2656 * an mdinfo tree.
2657 *
2658 * For each vcl in conflist: create an mdinfo, fill it in,
2659 * then look for matching devices (phys_refnum) in dlist
2660 * and create appropriate device mdinfo.
2661 */
2662 struct ddf_super *ddf = st->sb;
2663 struct mdinfo *rest = NULL;
2664 struct vcl *vc;
2665
2666 for (vc = ddf->conflist ; vc ; vc=vc->next)
2667 {
598f0d58 2668 int i;
db42fa9b 2669 int j;
598f0d58
NB
2670 struct mdinfo *this;
2671 this = malloc(sizeof(*this));
2672 memset(this, 0, sizeof(*this));
2673 this->next = rest;
2674 rest = this;
2675
598f0d58
NB
2676 this->array.level = map_num1(ddf_level_num, vc->conf.prl);
2677 this->array.raid_disks =
2678 __be16_to_cpu(vc->conf.prim_elmnt_count);
60f18132
NB
2679 this->array.layout = rlq_to_layout(vc->conf.rlq, vc->conf.prl,
2680 this->array.raid_disks);
598f0d58 2681 this->array.md_minor = -1;
f35f2525
N
2682 this->array.major_version = -1;
2683 this->array.minor_version = -2;
598f0d58
NB
2684 this->array.ctime = DECADE +
2685 __be32_to_cpu(*(__u32*)(vc->conf.guid+16));
2686 this->array.utime = DECADE +
2687 __be32_to_cpu(vc->conf.timestamp);
2688 this->array.chunk_size = 512 << vc->conf.chunk_shift;
2689
59e36268 2690 i = vc->vcnum;
7a7cc504
NB
2691 if ((ddf->virt->entries[i].state & DDF_state_inconsistent) ||
2692 (ddf->virt->entries[i].init_state & DDF_initstate_mask) !=
ed9d66aa 2693 DDF_init_full) {
598f0d58 2694 this->array.state = 0;
ed9d66aa
NB
2695 this->resync_start = 0;
2696 } else {
598f0d58 2697 this->array.state = 1;
ed9d66aa
NB
2698 this->resync_start = ~0ULL;
2699 }
db42fa9b
N
2700 memcpy(this->name, ddf->virt->entries[i].name, 16);
2701 this->name[16]=0;
2702 for(j=0; j<16; j++)
2703 if (this->name[j] == ' ')
2704 this->name[j] = 0;
598f0d58
NB
2705
2706 memset(this->uuid, 0, sizeof(this->uuid));
2707 this->component_size = __be64_to_cpu(vc->conf.blocks);
2708 this->array.size = this->component_size / 2;
5f2aace8 2709 this->container_member = i;
598f0d58 2710
c5afc314
N
2711 ddf->currentconf = vc;
2712 uuid_from_super_ddf(st, this->uuid);
2713 ddf->currentconf = NULL;
2714
60f18132
NB
2715 sprintf(this->text_version, "/%s/%d",
2716 devnum2devname(st->container_dev),
2717 this->container_member);
2718
8c3b8c2c 2719 for (i=0 ; i < ddf->mppe ; i++) {
598f0d58
NB
2720 struct mdinfo *dev;
2721 struct dl *d;
2722
2723 if (vc->conf.phys_refnum[i] == 0xFFFFFFFF)
2724 continue;
2725
2726 this->array.working_disks++;
2727
2728 for (d = ddf->dlist; d ; d=d->next)
2729 if (d->disk.refnum == vc->conf.phys_refnum[i])
2730 break;
2731 if (d == NULL)
2732 break;
2733
2734 dev = malloc(sizeof(*dev));
2735 memset(dev, 0, sizeof(*dev));
2736 dev->next = this->devs;
2737 this->devs = dev;
2738
2739 dev->disk.number = __be32_to_cpu(d->disk.refnum);
2740 dev->disk.major = d->major;
2741 dev->disk.minor = d->minor;
2742 dev->disk.raid_disk = i;
2743 dev->disk.state = (1<<MD_DISK_SYNC)|(1<<MD_DISK_ACTIVE);
2744
120f7677
NB
2745 dev->events = __be32_to_cpu(ddf->primary.seq);
2746 dev->data_offset = __be64_to_cpu(vc->lba_offset[i]);
598f0d58
NB
2747 dev->component_size = __be64_to_cpu(vc->conf.blocks);
2748 if (d->devname)
2749 strcpy(dev->name, d->devname);
2750 }
2751 }
2752 return rest;
2753}
2754
a322f70c
DW
2755static int store_zero_ddf(struct supertype *st, int fd)
2756{
2757 unsigned long long dsize;
6416d527 2758 void *buf;
3d2c4fc7 2759 int rc;
a322f70c 2760
a322f70c
DW
2761 if (!get_dev_size(fd, NULL, &dsize))
2762 return 1;
2763
3d2c4fc7
DW
2764 if (posix_memalign(&buf, 512, 512) != 0)
2765 return 1;
6416d527
NB
2766 memset(buf, 0, 512);
2767
a322f70c 2768 lseek64(fd, dsize-512, 0);
3d2c4fc7 2769 rc = write(fd, buf, 512);
6416d527 2770 free(buf);
3d2c4fc7
DW
2771 if (rc < 0)
2772 return 1;
a322f70c
DW
2773 return 0;
2774}
2775
a19c88b8
NB
2776static int compare_super_ddf(struct supertype *st, struct supertype *tst)
2777{
2778 /*
2779 * return:
2780 * 0 same, or first was empty, and second was copied
2781 * 1 second had wrong number
2782 * 2 wrong uuid
2783 * 3 wrong other info
2784 */
2785 struct ddf_super *first = st->sb;
2786 struct ddf_super *second = tst->sb;
2787
2788 if (!first) {
2789 st->sb = tst->sb;
2790 tst->sb = NULL;
2791 return 0;
2792 }
2793
2794 if (memcmp(first->anchor.guid, second->anchor.guid, DDF_GUID_LEN) != 0)
2795 return 2;
2796
2797 /* FIXME should I look at anything else? */
2798 return 0;
2799}
2800
0e600426 2801#ifndef MDASSEMBLE
4e5528c6
NB
2802/*
2803 * A new array 'a' has been started which claims to be instance 'inst'
2804 * within container 'c'.
2805 * We need to confirm that the array matches the metadata in 'c' so
2806 * that we don't corrupt any metadata.
2807 */
cba0191b 2808static int ddf_open_new(struct supertype *c, struct active_array *a, char *inst)
549e9569 2809{
2c514b71 2810 dprintf("ddf: open_new %s\n", inst);
cba0191b 2811 a->info.container_member = atoi(inst);
549e9569
NB
2812 return 0;
2813}
2814
4e5528c6
NB
2815/*
2816 * The array 'a' is to be marked clean in the metadata.
ed9d66aa 2817 * If '->resync_start' is not ~(unsigned long long)0, then the array is only
4e5528c6
NB
2818 * clean up to the point (in sectors). If that cannot be recorded in the
2819 * metadata, then leave it as dirty.
2820 *
2821 * For DDF, we need to clear the DDF_state_inconsistent bit in the
2822 * !global! virtual_disk.virtual_entry structure.
2823 */
01f157d7 2824static int ddf_set_array_state(struct active_array *a, int consistent)
549e9569 2825{
4e5528c6
NB
2826 struct ddf_super *ddf = a->container->sb;
2827 int inst = a->info.container_member;
18a2f463 2828 int old = ddf->virt->entries[inst].state;
01f157d7
N
2829 if (consistent == 2) {
2830 /* Should check if a recovery should be started FIXME */
2831 consistent = 1;
593add1b 2832 if (!is_resync_complete(a))
01f157d7
N
2833 consistent = 0;
2834 }
ed9d66aa
NB
2835 if (consistent)
2836 ddf->virt->entries[inst].state &= ~DDF_state_inconsistent;
2837 else
4e5528c6 2838 ddf->virt->entries[inst].state |= DDF_state_inconsistent;
18a2f463
NB
2839 if (old != ddf->virt->entries[inst].state)
2840 ddf->updates_pending = 1;
2841
2842 old = ddf->virt->entries[inst].init_state;
ed9d66aa 2843 ddf->virt->entries[inst].init_state &= ~DDF_initstate_mask;
593add1b 2844 if (is_resync_complete(a))
ed9d66aa
NB
2845 ddf->virt->entries[inst].init_state |= DDF_init_full;
2846 else if (a->resync_start == 0)
2847 ddf->virt->entries[inst].init_state |= DDF_init_not;
4e5528c6 2848 else
ed9d66aa 2849 ddf->virt->entries[inst].init_state |= DDF_init_quick;
18a2f463
NB
2850 if (old != ddf->virt->entries[inst].init_state)
2851 ddf->updates_pending = 1;
ed9d66aa 2852
2c514b71
NB
2853 dprintf("ddf mark %d %s %llu\n", inst, consistent?"clean":"dirty",
2854 a->resync_start);
01f157d7 2855 return consistent;
fd7cde1b
DW
2856}
2857
7a7cc504
NB
2858/*
2859 * The state of each disk is stored in the global phys_disk structure
2860 * in phys_disk.entries[n].state.
2861 * This makes various combinations awkward.
2862 * - When a device fails in any array, it must be failed in all arrays
2863 * that include a part of this device.
2864 * - When a component is rebuilding, we cannot include it officially in the
2865 * array unless this is the only array that uses the device.
2866 *
2867 * So: when transitioning:
2868 * Online -> failed, just set failed flag. monitor will propagate
2869 * spare -> online, the device might need to be added to the array.
2870 * spare -> failed, just set failed. Don't worry if in array or not.
2871 */
8d45d196 2872static void ddf_set_disk(struct active_array *a, int n, int state)
549e9569 2873{
7a7cc504
NB
2874 struct ddf_super *ddf = a->container->sb;
2875 int inst = a->info.container_member;
2876 struct vd_config *vc = find_vdcr(ddf, inst);
2877 int pd = find_phys(ddf, vc->phys_refnum[n]);
2878 int i, st, working;
2879
2880 if (vc == NULL) {
2c514b71 2881 dprintf("ddf: cannot find instance %d!!\n", inst);
7a7cc504
NB
2882 return;
2883 }
2884 if (pd < 0) {
2885 /* disk doesn't currently exist. If it is now in_sync,
2886 * insert it. */
2887 if ((state & DS_INSYNC) && ! (state & DS_FAULTY)) {
2888 /* Find dev 'n' in a->info->devs, determine the
2889 * ddf refnum, and set vc->phys_refnum and update
2890 * phys->entries[]
2891 */
2892 /* FIXME */
2893 }
2894 } else {
18a2f463 2895 int old = ddf->phys->entries[pd].state;
7a7cc504
NB
2896 if (state & DS_FAULTY)
2897 ddf->phys->entries[pd].state |= __cpu_to_be16(DDF_Failed);
2898 if (state & DS_INSYNC) {
2899 ddf->phys->entries[pd].state |= __cpu_to_be16(DDF_Online);
2900 ddf->phys->entries[pd].state &= __cpu_to_be16(~DDF_Rebuilding);
2901 }
18a2f463
NB
2902 if (old != ddf->phys->entries[pd].state)
2903 ddf->updates_pending = 1;
7a7cc504
NB
2904 }
2905
2c514b71 2906 dprintf("ddf: set_disk %d to %x\n", n, state);
7e1432fb 2907
7a7cc504
NB
2908 /* Now we need to check the state of the array and update
2909 * virtual_disk.entries[n].state.
2910 * It needs to be one of "optimal", "degraded", "failed".
2911 * I don't understand 'deleted' or 'missing'.
2912 */
2913 working = 0;
2914 for (i=0; i < a->info.array.raid_disks; i++) {
2915 pd = find_phys(ddf, vc->phys_refnum[i]);
2916 if (pd < 0)
2917 continue;
57632f4a
NB
2918 st = __be16_to_cpu(ddf->phys->entries[pd].state);
2919 if ((st & (DDF_Online|DDF_Failed|DDF_Rebuilding))
7a7cc504
NB
2920 == DDF_Online)
2921 working++;
2922 }
2923 state = DDF_state_degraded;
2924 if (working == a->info.array.raid_disks)
2925 state = DDF_state_optimal;
2926 else switch(vc->prl) {
2927 case DDF_RAID0:
2928 case DDF_CONCAT:
2929 case DDF_JBOD:
2930 state = DDF_state_failed;
2931 break;
2932 case DDF_RAID1:
2933 if (working == 0)
2934 state = DDF_state_failed;
2935 break;
2936 case DDF_RAID4:
2937 case DDF_RAID5:
2938 if (working < a->info.array.raid_disks-1)
2939 state = DDF_state_failed;
2940 break;
2941 case DDF_RAID6:
2942 if (working < a->info.array.raid_disks-2)
2943 state = DDF_state_failed;
2944 else if (working == a->info.array.raid_disks-1)
2945 state = DDF_state_part_optimal;
2946 break;
2947 }
2948
18a2f463
NB
2949 if (ddf->virt->entries[inst].state !=
2950 ((ddf->virt->entries[inst].state & ~DDF_state_mask)
2951 | state)) {
2952
2953 ddf->virt->entries[inst].state =
2954 (ddf->virt->entries[inst].state & ~DDF_state_mask)
2955 | state;
2956 ddf->updates_pending = 1;
2957 }
7a7cc504 2958
549e9569
NB
2959}
2960
2e735d19 2961static void ddf_sync_metadata(struct supertype *st)
549e9569 2962{
7a7cc504
NB
2963
2964 /*
2965 * Write all data to all devices.
2966 * Later, we might be able to track whether only local changes
2967 * have been made, or whether any global data has been changed,
2968 * but ddf is sufficiently weird that it probably always
2969 * changes global data ....
2970 */
18a2f463
NB
2971 struct ddf_super *ddf = st->sb;
2972 if (!ddf->updates_pending)
2973 return;
2974 ddf->updates_pending = 0;
2e735d19 2975 __write_init_super_ddf(st, 0);
2c514b71 2976 dprintf("ddf: sync_metadata\n");
549e9569
NB
2977}
2978
88c164f4
NB
2979static void ddf_process_update(struct supertype *st,
2980 struct metadata_update *update)
2981{
2982 /* Apply this update to the metadata.
2983 * The first 4 bytes are a DDF_*_MAGIC which guides
2984 * our actions.
2985 * Possible update are:
2986 * DDF_PHYS_RECORDS_MAGIC
2987 * Add a new physical device. Changes to this record
2988 * only happen implicitly.
2989 * used_pdes is the device number.
2990 * DDF_VIRT_RECORDS_MAGIC
2991 * Add a new VD. Possibly also change the 'access' bits.
2992 * populated_vdes is the entry number.
2993 * DDF_VD_CONF_MAGIC
2994 * New or updated VD. the VIRT_RECORD must already
2995 * exist. For an update, phys_refnum and lba_offset
2996 * (at least) are updated, and the VD_CONF must
2997 * be written to precisely those devices listed with
2998 * a phys_refnum.
2999 * DDF_SPARE_ASSIGN_MAGIC
3000 * replacement Spare Assignment Record... but for which device?
3001 *
3002 * So, e.g.:
3003 * - to create a new array, we send a VIRT_RECORD and
3004 * a VD_CONF. Then assemble and start the array.
3005 * - to activate a spare we send a VD_CONF to add the phys_refnum
3006 * and offset. This will also mark the spare as active with
3007 * a spare-assignment record.
3008 */
3009 struct ddf_super *ddf = st->sb;
3010 __u32 *magic = (__u32*)update->buf;
3011 struct phys_disk *pd;
3012 struct virtual_disk *vd;
3013 struct vd_config *vc;
3014 struct vcl *vcl;
3015 struct dl *dl;
3016 int mppe;
3017 int ent;
3018
2c514b71 3019 dprintf("Process update %x\n", *magic);
7e1432fb 3020
88c164f4
NB
3021 switch (*magic) {
3022 case DDF_PHYS_RECORDS_MAGIC:
3023
3024 if (update->len != (sizeof(struct phys_disk) +
3025 sizeof(struct phys_disk_entry)))
3026 return;
3027 pd = (struct phys_disk*)update->buf;
3028
3029 ent = __be16_to_cpu(pd->used_pdes);
3030 if (ent >= __be16_to_cpu(ddf->phys->max_pdes))
3031 return;
3032 if (!all_ff(ddf->phys->entries[ent].guid))
3033 return;
3034 ddf->phys->entries[ent] = pd->entries[0];
3035 ddf->phys->used_pdes = __cpu_to_be16(1 +
3036 __be16_to_cpu(ddf->phys->used_pdes));
18a2f463 3037 ddf->updates_pending = 1;
2cc2983d
N
3038 if (ddf->add_list) {
3039 struct active_array *a;
3040 struct dl *al = ddf->add_list;
3041 ddf->add_list = al->next;
3042
3043 al->next = ddf->dlist;
3044 ddf->dlist = al;
3045
3046 /* As a device has been added, we should check
3047 * for any degraded devices that might make
3048 * use of this spare */
3049 for (a = st->arrays ; a; a=a->next)
3050 a->check_degraded = 1;
3051 }
88c164f4
NB
3052 break;
3053
3054 case DDF_VIRT_RECORDS_MAGIC:
3055
3056 if (update->len != (sizeof(struct virtual_disk) +
3057 sizeof(struct virtual_entry)))
3058 return;
3059 vd = (struct virtual_disk*)update->buf;
3060
3061 ent = __be16_to_cpu(vd->populated_vdes);
3062 if (ent >= __be16_to_cpu(ddf->virt->max_vdes))
3063 return;
3064 if (!all_ff(ddf->virt->entries[ent].guid))
3065 return;
3066 ddf->virt->entries[ent] = vd->entries[0];
3067 ddf->virt->populated_vdes = __cpu_to_be16(1 +
3068 __be16_to_cpu(ddf->virt->populated_vdes));
18a2f463 3069 ddf->updates_pending = 1;
88c164f4
NB
3070 break;
3071
3072 case DDF_VD_CONF_MAGIC:
2c514b71 3073 dprintf("len %d %d\n", update->len, ddf->conf_rec_len);
88c164f4
NB
3074
3075 mppe = __be16_to_cpu(ddf->anchor.max_primary_element_entries);
edd8d13c 3076 if (update->len != ddf->conf_rec_len * 512)
88c164f4
NB
3077 return;
3078 vc = (struct vd_config*)update->buf;
3079 for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
3080 if (memcmp(vcl->conf.guid, vc->guid, DDF_GUID_LEN) == 0)
3081 break;
2c514b71 3082 dprintf("vcl = %p\n", vcl);
88c164f4
NB
3083 if (vcl) {
3084 /* An update, just copy the phys_refnum and lba_offset
3085 * fields
3086 */
3087 memcpy(vcl->conf.phys_refnum, vc->phys_refnum,
3088 mppe * (sizeof(__u32) + sizeof(__u64)));
3089 } else {
3090 /* A new VD_CONF */
e6b9548d
DW
3091 if (!update->space)
3092 return;
88c164f4
NB
3093 vcl = update->space;
3094 update->space = NULL;
3095 vcl->next = ddf->conflist;
edd8d13c 3096 memcpy(&vcl->conf, vc, update->len);
88c164f4
NB
3097 vcl->lba_offset = (__u64*)
3098 &vcl->conf.phys_refnum[mppe];
3099 ddf->conflist = vcl;
3100 }
3101 /* Now make sure vlist is correct for each dl. */
3102 for (dl = ddf->dlist; dl; dl = dl->next) {
3103 int dn;
3104 int vn = 0;
3105 for (vcl = ddf->conflist; vcl ; vcl = vcl->next)
3106 for (dn=0; dn < ddf->mppe ; dn++)
3107 if (vcl->conf.phys_refnum[dn] ==
3108 dl->disk.refnum) {
2c514b71
NB
3109 dprintf("dev %d has %p at %d\n",
3110 dl->pdnum, vcl, vn);
88c164f4
NB
3111 dl->vlist[vn++] = vcl;
3112 break;
3113 }
3114 while (vn < ddf->max_part)
3115 dl->vlist[vn++] = NULL;
7e1432fb
NB
3116 if (dl->vlist[0]) {
3117 ddf->phys->entries[dl->pdnum].type &=
3118 ~__cpu_to_be16(DDF_Global_Spare);
3119 ddf->phys->entries[dl->pdnum].type |=
3120 __cpu_to_be16(DDF_Active_in_VD);
3121 }
3122 if (dl->spare) {
3123 ddf->phys->entries[dl->pdnum].type &=
3124 ~__cpu_to_be16(DDF_Global_Spare);
3125 ddf->phys->entries[dl->pdnum].type |=
3126 __cpu_to_be16(DDF_Spare);
3127 }
3128 if (!dl->vlist[0] && !dl->spare) {
3129 ddf->phys->entries[dl->pdnum].type |=
3130 __cpu_to_be16(DDF_Global_Spare);
3131 ddf->phys->entries[dl->pdnum].type &=
3132 ~__cpu_to_be16(DDF_Spare |
3133 DDF_Active_in_VD);
3134 }
88c164f4 3135 }
18a2f463 3136 ddf->updates_pending = 1;
88c164f4
NB
3137 break;
3138 case DDF_SPARE_ASSIGN_MAGIC:
3139 default: break;
3140 }
3141}
3142
edd8d13c
NB
3143static void ddf_prepare_update(struct supertype *st,
3144 struct metadata_update *update)
3145{
3146 /* This update arrived at managemon.
3147 * We are about to pass it to monitor.
3148 * If a malloc is needed, do it here.
3149 */
3150 struct ddf_super *ddf = st->sb;
3151 __u32 *magic = (__u32*)update->buf;
3152 if (*magic == DDF_VD_CONF_MAGIC)
e6b9548d 3153 if (posix_memalign(&update->space, 512,
6416d527 3154 offsetof(struct vcl, conf)
e6b9548d
DW
3155 + ddf->conf_rec_len * 512) != 0)
3156 update->space = NULL;
edd8d13c
NB
3157}
3158
7e1432fb
NB
3159/*
3160 * Check if the array 'a' is degraded but not failed.
3161 * If it is, find as many spares as are available and needed and
3162 * arrange for their inclusion.
3163 * We only choose devices which are not already in the array,
3164 * and prefer those with a spare-assignment to this array.
3165 * otherwise we choose global spares - assuming always that
3166 * there is enough room.
3167 * For each spare that we assign, we return an 'mdinfo' which
3168 * describes the position for the device in the array.
3169 * We also add to 'updates' a DDF_VD_CONF_MAGIC update with
3170 * the new phys_refnum and lba_offset values.
3171 *
3172 * Only worry about BVDs at the moment.
3173 */
3174static struct mdinfo *ddf_activate_spare(struct active_array *a,
3175 struct metadata_update **updates)
3176{
3177 int working = 0;
3178 struct mdinfo *d;
3179 struct ddf_super *ddf = a->container->sb;
3180 int global_ok = 0;
3181 struct mdinfo *rv = NULL;
3182 struct mdinfo *di;
3183 struct metadata_update *mu;
3184 struct dl *dl;
3185 int i;
3186 struct vd_config *vc;
3187 __u64 *lba;
3188
7e1432fb
NB
3189 for (d = a->info.devs ; d ; d = d->next) {
3190 if ((d->curr_state & DS_FAULTY) &&
3191 d->state_fd >= 0)
3192 /* wait for Removal to happen */
3193 return NULL;
3194 if (d->state_fd >= 0)
3195 working ++;
3196 }
3197
2c514b71
NB
3198 dprintf("ddf_activate: working=%d (%d) level=%d\n", working, a->info.array.raid_disks,
3199 a->info.array.level);
7e1432fb
NB
3200 if (working == a->info.array.raid_disks)
3201 return NULL; /* array not degraded */
3202 switch (a->info.array.level) {
3203 case 1:
3204 if (working == 0)
3205 return NULL; /* failed */
3206 break;
3207 case 4:
3208 case 5:
3209 if (working < a->info.array.raid_disks - 1)
3210 return NULL; /* failed */
3211 break;
3212 case 6:
3213 if (working < a->info.array.raid_disks - 2)
3214 return NULL; /* failed */
3215 break;
3216 default: /* concat or stripe */
3217 return NULL; /* failed */
3218 }
3219
3220 /* For each slot, if it is not working, find a spare */
3221 dl = ddf->dlist;
3222 for (i = 0; i < a->info.array.raid_disks; i++) {
3223 for (d = a->info.devs ; d ; d = d->next)
3224 if (d->disk.raid_disk == i)
3225 break;
2c514b71 3226 dprintf("found %d: %p %x\n", i, d, d?d->curr_state:0);
7e1432fb
NB
3227 if (d && (d->state_fd >= 0))
3228 continue;
3229
3230 /* OK, this device needs recovery. Find a spare */
3231 again:
3232 for ( ; dl ; dl = dl->next) {
3233 unsigned long long esize;
3234 unsigned long long pos;
3235 struct mdinfo *d2;
3236 int is_global = 0;
3237 int is_dedicated = 0;
3238 struct extent *ex;
3239 int j;
3240 /* If in this array, skip */
3241 for (d2 = a->info.devs ; d2 ; d2 = d2->next)
3242 if (d2->disk.major == dl->major &&
3243 d2->disk.minor == dl->minor) {
2c514b71 3244 dprintf("%x:%x already in array\n", dl->major, dl->minor);
7e1432fb
NB
3245 break;
3246 }
3247 if (d2)
3248 continue;
3249 if (ddf->phys->entries[dl->pdnum].type &
3250 __cpu_to_be16(DDF_Spare)) {
3251 /* Check spare assign record */
3252 if (dl->spare) {
3253 if (dl->spare->type & DDF_spare_dedicated) {
3254 /* check spare_ents for guid */
3255 for (j = 0 ;
3256 j < __be16_to_cpu(dl->spare->populated);
3257 j++) {
3258 if (memcmp(dl->spare->spare_ents[j].guid,
3259 ddf->virt->entries[a->info.container_member].guid,
3260 DDF_GUID_LEN) == 0)
3261 is_dedicated = 1;
3262 }
3263 } else
3264 is_global = 1;
3265 }
3266 } else if (ddf->phys->entries[dl->pdnum].type &
3267 __cpu_to_be16(DDF_Global_Spare)) {
3268 is_global = 1;
3269 }
3270 if ( ! (is_dedicated ||
3271 (is_global && global_ok))) {
2c514b71 3272 dprintf("%x:%x not suitable: %d %d\n", dl->major, dl->minor,
7e1432fb
NB
3273 is_dedicated, is_global);
3274 continue;
3275 }
3276
3277 /* We are allowed to use this device - is there space?
3278 * We need a->info.component_size sectors */
3279 ex = get_extents(ddf, dl);
3280 if (!ex) {
2c514b71 3281 dprintf("cannot get extents\n");
7e1432fb
NB
3282 continue;
3283 }
3284 j = 0; pos = 0;
3285 esize = 0;
3286
3287 do {
3288 esize = ex[j].start - pos;
3289 if (esize >= a->info.component_size)
3290 break;
3291 pos = ex[i].start + ex[i].size;
3292 i++;
3293 } while (ex[i-1].size);
3294
3295 free(ex);
3296 if (esize < a->info.component_size) {
2c514b71
NB
3297 dprintf("%x:%x has no room: %llu %llu\n", dl->major, dl->minor,
3298 esize, a->info.component_size);
7e1432fb
NB
3299 /* No room */
3300 continue;
3301 }
3302
3303 /* Cool, we have a device with some space at pos */
3304 di = malloc(sizeof(*di));
79244939
DW
3305 if (!di)
3306 continue;
7e1432fb
NB
3307 memset(di, 0, sizeof(*di));
3308 di->disk.number = i;
3309 di->disk.raid_disk = i;
3310 di->disk.major = dl->major;
3311 di->disk.minor = dl->minor;
3312 di->disk.state = 0;
3313 di->data_offset = pos;
3314 di->component_size = a->info.component_size;
3315 di->container_member = dl->pdnum;
3316 di->next = rv;
3317 rv = di;
2c514b71
NB
3318 dprintf("%x:%x to be %d at %llu\n", dl->major, dl->minor,
3319 i, pos);
7e1432fb
NB
3320
3321 break;
3322 }
3323 if (!dl && ! global_ok) {
3324 /* not enough dedicated spares, try global */
3325 global_ok = 1;
3326 dl = ddf->dlist;
3327 goto again;
3328 }
3329 }
3330
3331 if (!rv)
3332 /* No spares found */
3333 return rv;
3334 /* Now 'rv' has a list of devices to return.
3335 * Create a metadata_update record to update the
3336 * phys_refnum and lba_offset values
3337 */
904c1ef7 3338 mu = malloc(sizeof(*mu));
79244939
DW
3339 if (mu && posix_memalign(&mu->space, 512, sizeof(struct vcl)) != 0) {
3340 free(mu);
3341 mu = NULL;
3342 }
3343 if (!mu) {
3344 while (rv) {
3345 struct mdinfo *n = rv->next;
3346
3347 free(rv);
3348 rv = n;
3349 }
3350 return NULL;
3351 }
3352
904c1ef7 3353 mu->buf = malloc(ddf->conf_rec_len * 512);
7e1432fb
NB
3354 mu->len = ddf->conf_rec_len;
3355 mu->next = *updates;
3356 vc = find_vdcr(ddf, a->info.container_member);
3357 memcpy(mu->buf, vc, ddf->conf_rec_len * 512);
3358
3359 vc = (struct vd_config*)mu->buf;
3360 lba = (__u64*)&vc->phys_refnum[ddf->mppe];
3361 for (di = rv ; di ; di = di->next) {
3362 vc->phys_refnum[di->disk.raid_disk] =
3363 ddf->phys->entries[dl->pdnum].refnum;
3364 lba[di->disk.raid_disk] = di->data_offset;
3365 }
3366 *updates = mu;
3367 return rv;
3368}
0e600426 3369#endif /* MDASSEMBLE */
7e1432fb 3370
a322f70c
DW
3371struct superswitch super_ddf = {
3372#ifndef MDASSEMBLE
3373 .examine_super = examine_super_ddf,
3374 .brief_examine_super = brief_examine_super_ddf,
3375 .detail_super = detail_super_ddf,
3376 .brief_detail_super = brief_detail_super_ddf,
3377 .validate_geometry = validate_geometry_ddf,
78e44928 3378 .write_init_super = write_init_super_ddf,
0e600426 3379 .add_to_super = add_to_super_ddf,
a322f70c
DW
3380#endif
3381 .match_home = match_home_ddf,
3382 .uuid_from_super= uuid_from_super_ddf,
3383 .getinfo_super = getinfo_super_ddf,
3384 .update_super = update_super_ddf,
3385
3386 .avail_size = avail_size_ddf,
3387
a19c88b8
NB
3388 .compare_super = compare_super_ddf,
3389
a322f70c 3390 .load_super = load_super_ddf,
ba7eb04f 3391 .init_super = init_super_ddf,
a322f70c
DW
3392 .store_super = store_zero_ddf,
3393 .free_super = free_super_ddf,
3394 .match_metadata_desc = match_metadata_desc_ddf,
78e44928 3395 .container_content = container_content_ddf,
a322f70c 3396
a322f70c 3397 .external = 1,
549e9569 3398
0e600426 3399#ifndef MDASSEMBLE
549e9569
NB
3400/* for mdmon */
3401 .open_new = ddf_open_new,
ed9d66aa 3402 .set_array_state= ddf_set_array_state,
549e9569
NB
3403 .set_disk = ddf_set_disk,
3404 .sync_metadata = ddf_sync_metadata,
88c164f4 3405 .process_update = ddf_process_update,
edd8d13c 3406 .prepare_update = ddf_prepare_update,
7e1432fb 3407 .activate_spare = ddf_activate_spare,
0e600426 3408#endif
a322f70c 3409};