]> git.ipfire.org Git - thirdparty/mdadm.git/blame - super-intel.c
imsm: fixup examine_brief to be more descriptive in the container only case
[thirdparty/mdadm.git] / super-intel.c
CommitLineData
cdddbdbc
DW
1/*
2 * mdadm - Intel(R) Matrix Storage Manager Support
3 *
a54d5262 4 * Copyright (C) 2002-2008 Intel Corporation
cdddbdbc
DW
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
51006d85 20#define HAVE_STDINT_H 1
cdddbdbc 21#include "mdadm.h"
c2a1e7da 22#include "mdmon.h"
51006d85 23#include "sha1.h"
88c32bb1 24#include "platform-intel.h"
cdddbdbc
DW
25#include <values.h>
26#include <scsi/sg.h>
27#include <ctype.h>
d665cc31 28#include <dirent.h>
cdddbdbc
DW
29
30/* MPB == Metadata Parameter Block */
31#define MPB_SIGNATURE "Intel Raid ISM Cfg Sig. "
32#define MPB_SIG_LEN (strlen(MPB_SIGNATURE))
33#define MPB_VERSION_RAID0 "1.0.00"
34#define MPB_VERSION_RAID1 "1.1.00"
fe7ed8cb
DW
35#define MPB_VERSION_MANY_VOLUMES_PER_ARRAY "1.2.00"
36#define MPB_VERSION_3OR4_DISK_ARRAY "1.2.01"
cdddbdbc 37#define MPB_VERSION_RAID5 "1.2.02"
fe7ed8cb
DW
38#define MPB_VERSION_5OR6_DISK_ARRAY "1.2.04"
39#define MPB_VERSION_CNG "1.2.06"
40#define MPB_VERSION_ATTRIBS "1.3.00"
cdddbdbc
DW
41#define MAX_SIGNATURE_LENGTH 32
42#define MAX_RAID_SERIAL_LEN 16
fe7ed8cb
DW
43
44#define MPB_ATTRIB_CHECKSUM_VERIFY __cpu_to_le32(0x80000000)
45#define MPB_ATTRIB_PM __cpu_to_le32(0x40000000)
46#define MPB_ATTRIB_2TB __cpu_to_le32(0x20000000)
47#define MPB_ATTRIB_RAID0 __cpu_to_le32(0x00000001)
48#define MPB_ATTRIB_RAID1 __cpu_to_le32(0x00000002)
49#define MPB_ATTRIB_RAID10 __cpu_to_le32(0x00000004)
50#define MPB_ATTRIB_RAID1E __cpu_to_le32(0x00000008)
51#define MPB_ATTRIB_RAID5 __cpu_to_le32(0x00000010)
52#define MPB_ATTRIB_RAIDCNG __cpu_to_le32(0x00000020)
53
c2c087e6
DW
54#define MPB_SECTOR_CNT 418
55#define IMSM_RESERVED_SECTORS 4096
979d38be 56#define SECT_PER_MB_SHIFT 11
cdddbdbc
DW
57
58/* Disk configuration info. */
59#define IMSM_MAX_DEVICES 255
60struct imsm_disk {
61 __u8 serial[MAX_RAID_SERIAL_LEN];/* 0xD8 - 0xE7 ascii serial number */
62 __u32 total_blocks; /* 0xE8 - 0xEB total blocks */
63 __u32 scsi_id; /* 0xEC - 0xEF scsi ID */
f2f27e63
DW
64#define SPARE_DISK __cpu_to_le32(0x01) /* Spare */
65#define CONFIGURED_DISK __cpu_to_le32(0x02) /* Member of some RaidDev */
66#define FAILED_DISK __cpu_to_le32(0x04) /* Permanent failure */
67#define USABLE_DISK __cpu_to_le32(0x08) /* Fully usable unless FAILED_DISK is set */
cdddbdbc 68 __u32 status; /* 0xF0 - 0xF3 */
fe7ed8cb
DW
69 __u32 owner_cfg_num; /* which config 0,1,2... owns this disk */
70#define IMSM_DISK_FILLERS 4
cdddbdbc
DW
71 __u32 filler[IMSM_DISK_FILLERS]; /* 0xF4 - 0x107 MPB_DISK_FILLERS for future expansion */
72};
73
74/* RAID map configuration infos. */
75struct imsm_map {
76 __u32 pba_of_lba0; /* start address of partition */
77 __u32 blocks_per_member;/* blocks per member */
78 __u32 num_data_stripes; /* number of data stripes */
79 __u16 blocks_per_strip;
80 __u8 map_state; /* Normal, Uninitialized, Degraded, Failed */
81#define IMSM_T_STATE_NORMAL 0
82#define IMSM_T_STATE_UNINITIALIZED 1
e3bba0e0
DW
83#define IMSM_T_STATE_DEGRADED 2
84#define IMSM_T_STATE_FAILED 3
cdddbdbc
DW
85 __u8 raid_level;
86#define IMSM_T_RAID0 0
87#define IMSM_T_RAID1 1
88#define IMSM_T_RAID5 5 /* since metadata version 1.2.02 ? */
89 __u8 num_members; /* number of member disks */
fe7ed8cb
DW
90 __u8 num_domains; /* number of parity domains */
91 __u8 failed_disk_num; /* valid only when state is degraded */
252d23c0 92 __u8 ddf;
cdddbdbc 93 __u32 filler[7]; /* expansion area */
7eef0453 94#define IMSM_ORD_REBUILD (1 << 24)
cdddbdbc 95 __u32 disk_ord_tbl[1]; /* disk_ord_tbl[num_members],
7eef0453
DW
96 * top byte contains some flags
97 */
cdddbdbc
DW
98} __attribute__ ((packed));
99
100struct imsm_vol {
f8f603f1 101 __u32 curr_migr_unit;
fe7ed8cb 102 __u32 checkpoint_id; /* id to access curr_migr_unit */
cdddbdbc 103 __u8 migr_state; /* Normal or Migrating */
e3bba0e0
DW
104#define MIGR_INIT 0
105#define MIGR_REBUILD 1
106#define MIGR_VERIFY 2 /* analagous to echo check > sync_action */
107#define MIGR_GEN_MIGR 3
108#define MIGR_STATE_CHANGE 4
1484e727 109#define MIGR_REPAIR 5
cdddbdbc
DW
110 __u8 migr_type; /* Initializing, Rebuilding, ... */
111 __u8 dirty;
fe7ed8cb
DW
112 __u8 fs_state; /* fast-sync state for CnG (0xff == disabled) */
113 __u16 verify_errors; /* number of mismatches */
114 __u16 bad_blocks; /* number of bad blocks during verify */
115 __u32 filler[4];
cdddbdbc
DW
116 struct imsm_map map[1];
117 /* here comes another one if migr_state */
118} __attribute__ ((packed));
119
120struct imsm_dev {
fe7ed8cb 121 __u8 volume[MAX_RAID_SERIAL_LEN];
cdddbdbc
DW
122 __u32 size_low;
123 __u32 size_high;
fe7ed8cb
DW
124#define DEV_BOOTABLE __cpu_to_le32(0x01)
125#define DEV_BOOT_DEVICE __cpu_to_le32(0x02)
126#define DEV_READ_COALESCING __cpu_to_le32(0x04)
127#define DEV_WRITE_COALESCING __cpu_to_le32(0x08)
128#define DEV_LAST_SHUTDOWN_DIRTY __cpu_to_le32(0x10)
129#define DEV_HIDDEN_AT_BOOT __cpu_to_le32(0x20)
130#define DEV_CURRENTLY_HIDDEN __cpu_to_le32(0x40)
131#define DEV_VERIFY_AND_FIX __cpu_to_le32(0x80)
132#define DEV_MAP_STATE_UNINIT __cpu_to_le32(0x100)
133#define DEV_NO_AUTO_RECOVERY __cpu_to_le32(0x200)
134#define DEV_CLONE_N_GO __cpu_to_le32(0x400)
135#define DEV_CLONE_MAN_SYNC __cpu_to_le32(0x800)
136#define DEV_CNG_MASTER_DISK_NUM __cpu_to_le32(0x1000)
cdddbdbc
DW
137 __u32 status; /* Persistent RaidDev status */
138 __u32 reserved_blocks; /* Reserved blocks at beginning of volume */
fe7ed8cb
DW
139 __u8 migr_priority;
140 __u8 num_sub_vols;
141 __u8 tid;
142 __u8 cng_master_disk;
143 __u16 cache_policy;
144 __u8 cng_state;
145 __u8 cng_sub_state;
146#define IMSM_DEV_FILLERS 10
cdddbdbc
DW
147 __u32 filler[IMSM_DEV_FILLERS];
148 struct imsm_vol vol;
149} __attribute__ ((packed));
150
151struct imsm_super {
152 __u8 sig[MAX_SIGNATURE_LENGTH]; /* 0x00 - 0x1F */
153 __u32 check_sum; /* 0x20 - 0x23 MPB Checksum */
154 __u32 mpb_size; /* 0x24 - 0x27 Size of MPB */
155 __u32 family_num; /* 0x28 - 0x2B Checksum from first time this config was written */
156 __u32 generation_num; /* 0x2C - 0x2F Incremented each time this array's MPB is written */
604b746f
JD
157 __u32 error_log_size; /* 0x30 - 0x33 in bytes */
158 __u32 attributes; /* 0x34 - 0x37 */
cdddbdbc
DW
159 __u8 num_disks; /* 0x38 Number of configured disks */
160 __u8 num_raid_devs; /* 0x39 Number of configured volumes */
604b746f
JD
161 __u8 error_log_pos; /* 0x3A */
162 __u8 fill[1]; /* 0x3B */
163 __u32 cache_size; /* 0x3c - 0x40 in mb */
164 __u32 orig_family_num; /* 0x40 - 0x43 original family num */
165 __u32 pwr_cycle_count; /* 0x44 - 0x47 simulated power cycle count for array */
166 __u32 bbm_log_size; /* 0x48 - 0x4B - size of bad Block Mgmt Log in bytes */
167#define IMSM_FILLERS 35
168 __u32 filler[IMSM_FILLERS]; /* 0x4C - 0xD7 RAID_MPB_FILLERS */
cdddbdbc
DW
169 struct imsm_disk disk[1]; /* 0xD8 diskTbl[numDisks] */
170 /* here comes imsm_dev[num_raid_devs] */
604b746f 171 /* here comes BBM logs */
cdddbdbc
DW
172} __attribute__ ((packed));
173
604b746f
JD
174#define BBM_LOG_MAX_ENTRIES 254
175
176struct bbm_log_entry {
177 __u64 defective_block_start;
178#define UNREADABLE 0xFFFFFFFF
179 __u32 spare_block_offset;
180 __u16 remapped_marked_count;
181 __u16 disk_ordinal;
182} __attribute__ ((__packed__));
183
184struct bbm_log {
185 __u32 signature; /* 0xABADB10C */
186 __u32 entry_count;
187 __u32 reserved_spare_block_count; /* 0 */
188 __u32 reserved; /* 0xFFFF */
189 __u64 first_spare_lba;
190 struct bbm_log_entry mapped_block_entries[BBM_LOG_MAX_ENTRIES];
191} __attribute__ ((__packed__));
192
193
cdddbdbc
DW
194#ifndef MDASSEMBLE
195static char *map_state_str[] = { "normal", "uninitialized", "degraded", "failed" };
196#endif
197
1484e727
DW
198static __u8 migr_type(struct imsm_dev *dev)
199{
200 if (dev->vol.migr_type == MIGR_VERIFY &&
201 dev->status & DEV_VERIFY_AND_FIX)
202 return MIGR_REPAIR;
203 else
204 return dev->vol.migr_type;
205}
206
207static void set_migr_type(struct imsm_dev *dev, __u8 migr_type)
208{
209 /* for compatibility with older oroms convert MIGR_REPAIR, into
210 * MIGR_VERIFY w/ DEV_VERIFY_AND_FIX status
211 */
212 if (migr_type == MIGR_REPAIR) {
213 dev->vol.migr_type = MIGR_VERIFY;
214 dev->status |= DEV_VERIFY_AND_FIX;
215 } else {
216 dev->vol.migr_type = migr_type;
217 dev->status &= ~DEV_VERIFY_AND_FIX;
218 }
219}
220
87eb16df 221static unsigned int sector_count(__u32 bytes)
cdddbdbc 222{
87eb16df
DW
223 return ((bytes + (512-1)) & (~(512-1))) / 512;
224}
cdddbdbc 225
87eb16df
DW
226static unsigned int mpb_sectors(struct imsm_super *mpb)
227{
228 return sector_count(__le32_to_cpu(mpb->mpb_size));
cdddbdbc
DW
229}
230
ba2de7ba
DW
231struct intel_dev {
232 struct imsm_dev *dev;
233 struct intel_dev *next;
234 int index;
235};
236
cdddbdbc
DW
237/* internal representation of IMSM metadata */
238struct intel_super {
239 union {
949c47a0
DW
240 void *buf; /* O_DIRECT buffer for reading/writing metadata */
241 struct imsm_super *anchor; /* immovable parameters */
cdddbdbc 242 };
949c47a0 243 size_t len; /* size of the 'buf' allocation */
4d7b1503
DW
244 void *next_buf; /* for realloc'ing buf from the manager */
245 size_t next_len;
c2c087e6
DW
246 int updates_pending; /* count of pending updates for mdmon */
247 int creating_imsm; /* flag to indicate container creation */
bf5a934a 248 int current_vol; /* index of raid device undergoing creation */
0dcecb2e 249 __u32 create_offset; /* common start for 'current_vol' */
ba2de7ba 250 struct intel_dev *devlist;
cdddbdbc
DW
251 struct dl {
252 struct dl *next;
253 int index;
254 __u8 serial[MAX_RAID_SERIAL_LEN];
255 int major, minor;
256 char *devname;
b9f594fe 257 struct imsm_disk disk;
cdddbdbc 258 int fd;
0dcecb2e
DW
259 int extent_cnt;
260 struct extent *e; /* for determining freespace @ create */
efb30e7f 261 int raiddisk; /* slot to fill in autolayout */
cdddbdbc 262 } *disks;
43dad3d6 263 struct dl *add; /* list of disks to add while mdmon active */
47ee5a45 264 struct dl *missing; /* disks removed while we weren't looking */
43dad3d6 265 struct bbm_log *bbm_log;
88c32bb1
DW
266 const char *hba; /* device path of the raid controller for this metadata */
267 const struct imsm_orom *orom; /* platform firmware support */
cdddbdbc
DW
268};
269
c2c087e6
DW
270struct extent {
271 unsigned long long start, size;
272};
273
88758e9d
DW
274/* definition of messages passed to imsm_process_update */
275enum imsm_update_type {
276 update_activate_spare,
8273f55e 277 update_create_array,
43dad3d6 278 update_add_disk,
88758e9d
DW
279};
280
281struct imsm_update_activate_spare {
282 enum imsm_update_type type;
d23fe947 283 struct dl *dl;
88758e9d
DW
284 int slot;
285 int array;
286 struct imsm_update_activate_spare *next;
287};
288
54c2c1ea
DW
289struct disk_info {
290 __u8 serial[MAX_RAID_SERIAL_LEN];
291};
292
8273f55e
DW
293struct imsm_update_create_array {
294 enum imsm_update_type type;
8273f55e 295 int dev_idx;
6a3e913e 296 struct imsm_dev dev;
8273f55e
DW
297};
298
43dad3d6
DW
299struct imsm_update_add_disk {
300 enum imsm_update_type type;
301};
302
cdddbdbc
DW
303static struct supertype *match_metadata_desc_imsm(char *arg)
304{
305 struct supertype *st;
306
307 if (strcmp(arg, "imsm") != 0 &&
308 strcmp(arg, "default") != 0
309 )
310 return NULL;
311
312 st = malloc(sizeof(*st));
ef609477 313 memset(st, 0, sizeof(*st));
cdddbdbc
DW
314 st->ss = &super_imsm;
315 st->max_devs = IMSM_MAX_DEVICES;
316 st->minor_version = 0;
317 st->sb = NULL;
318 return st;
319}
320
0e600426 321#ifndef MDASSEMBLE
cdddbdbc
DW
322static __u8 *get_imsm_version(struct imsm_super *mpb)
323{
324 return &mpb->sig[MPB_SIG_LEN];
325}
0e600426 326#endif
cdddbdbc 327
949c47a0
DW
328/* retrieve a disk directly from the anchor when the anchor is known to be
329 * up-to-date, currently only at load time
330 */
331static struct imsm_disk *__get_imsm_disk(struct imsm_super *mpb, __u8 index)
cdddbdbc 332{
949c47a0 333 if (index >= mpb->num_disks)
cdddbdbc
DW
334 return NULL;
335 return &mpb->disk[index];
336}
337
0e600426 338#ifndef MDASSEMBLE
b9f594fe 339/* retrieve a disk from the parsed metadata */
949c47a0
DW
340static struct imsm_disk *get_imsm_disk(struct intel_super *super, __u8 index)
341{
b9f594fe
DW
342 struct dl *d;
343
344 for (d = super->disks; d; d = d->next)
345 if (d->index == index)
346 return &d->disk;
347
348 return NULL;
949c47a0 349}
0e600426 350#endif
949c47a0
DW
351
352/* generate a checksum directly from the anchor when the anchor is known to be
353 * up-to-date, currently only at load or write_super after coalescing
354 */
355static __u32 __gen_imsm_checksum(struct imsm_super *mpb)
cdddbdbc
DW
356{
357 __u32 end = mpb->mpb_size / sizeof(end);
358 __u32 *p = (__u32 *) mpb;
359 __u32 sum = 0;
360
97f734fd
N
361 while (end--) {
362 sum += __le32_to_cpu(*p);
363 p++;
364 }
cdddbdbc
DW
365
366 return sum - __le32_to_cpu(mpb->check_sum);
367}
368
a965f303
DW
369static size_t sizeof_imsm_map(struct imsm_map *map)
370{
371 return sizeof(struct imsm_map) + sizeof(__u32) * (map->num_members - 1);
372}
373
374struct imsm_map *get_imsm_map(struct imsm_dev *dev, int second_map)
cdddbdbc 375{
a965f303
DW
376 struct imsm_map *map = &dev->vol.map[0];
377
378 if (second_map && !dev->vol.migr_state)
379 return NULL;
380 else if (second_map) {
381 void *ptr = map;
382
383 return ptr + sizeof_imsm_map(map);
384 } else
385 return map;
386
387}
cdddbdbc 388
3393c6af
DW
389/* return the size of the device.
390 * migr_state increases the returned size if map[0] were to be duplicated
391 */
392static size_t sizeof_imsm_dev(struct imsm_dev *dev, int migr_state)
a965f303
DW
393{
394 size_t size = sizeof(*dev) - sizeof(struct imsm_map) +
395 sizeof_imsm_map(get_imsm_map(dev, 0));
cdddbdbc
DW
396
397 /* migrating means an additional map */
a965f303
DW
398 if (dev->vol.migr_state)
399 size += sizeof_imsm_map(get_imsm_map(dev, 1));
3393c6af
DW
400 else if (migr_state)
401 size += sizeof_imsm_map(get_imsm_map(dev, 0));
cdddbdbc
DW
402
403 return size;
404}
405
54c2c1ea
DW
406#ifndef MDASSEMBLE
407/* retrieve disk serial number list from a metadata update */
408static struct disk_info *get_disk_info(struct imsm_update_create_array *update)
409{
410 void *u = update;
411 struct disk_info *inf;
412
413 inf = u + sizeof(*update) - sizeof(struct imsm_dev) +
414 sizeof_imsm_dev(&update->dev, 0);
415
416 return inf;
417}
418#endif
419
949c47a0 420static struct imsm_dev *__get_imsm_dev(struct imsm_super *mpb, __u8 index)
cdddbdbc
DW
421{
422 int offset;
423 int i;
424 void *_mpb = mpb;
425
949c47a0 426 if (index >= mpb->num_raid_devs)
cdddbdbc
DW
427 return NULL;
428
429 /* devices start after all disks */
430 offset = ((void *) &mpb->disk[mpb->num_disks]) - _mpb;
431
432 for (i = 0; i <= index; i++)
433 if (i == index)
434 return _mpb + offset;
435 else
3393c6af 436 offset += sizeof_imsm_dev(_mpb + offset, 0);
cdddbdbc
DW
437
438 return NULL;
439}
440
949c47a0
DW
441static struct imsm_dev *get_imsm_dev(struct intel_super *super, __u8 index)
442{
ba2de7ba
DW
443 struct intel_dev *dv;
444
949c47a0
DW
445 if (index >= super->anchor->num_raid_devs)
446 return NULL;
ba2de7ba
DW
447 for (dv = super->devlist; dv; dv = dv->next)
448 if (dv->index == index)
449 return dv->dev;
450 return NULL;
949c47a0
DW
451}
452
7eef0453
DW
453static __u32 get_imsm_ord_tbl_ent(struct imsm_dev *dev, int slot)
454{
455 struct imsm_map *map;
456
457 if (dev->vol.migr_state)
7eef0453 458 map = get_imsm_map(dev, 1);
fb9bf0d3
DW
459 else
460 map = get_imsm_map(dev, 0);
7eef0453 461
ff077194
DW
462 /* top byte identifies disk under rebuild */
463 return __le32_to_cpu(map->disk_ord_tbl[slot]);
464}
465
466#define ord_to_idx(ord) (((ord) << 8) >> 8)
467static __u32 get_imsm_disk_idx(struct imsm_dev *dev, int slot)
468{
469 __u32 ord = get_imsm_ord_tbl_ent(dev, slot);
470
471 return ord_to_idx(ord);
7eef0453
DW
472}
473
be73972f
DW
474static void set_imsm_ord_tbl_ent(struct imsm_map *map, int slot, __u32 ord)
475{
476 map->disk_ord_tbl[slot] = __cpu_to_le32(ord);
477}
478
620b1713
DW
479static int get_imsm_disk_slot(struct imsm_map *map, int idx)
480{
481 int slot;
482 __u32 ord;
483
484 for (slot = 0; slot < map->num_members; slot++) {
485 ord = __le32_to_cpu(map->disk_ord_tbl[slot]);
486 if (ord_to_idx(ord) == idx)
487 return slot;
488 }
489
490 return -1;
491}
492
cdddbdbc
DW
493static int get_imsm_raid_level(struct imsm_map *map)
494{
495 if (map->raid_level == 1) {
496 if (map->num_members == 2)
497 return 1;
498 else
499 return 10;
500 }
501
502 return map->raid_level;
503}
504
c2c087e6
DW
505static int cmp_extent(const void *av, const void *bv)
506{
507 const struct extent *a = av;
508 const struct extent *b = bv;
509 if (a->start < b->start)
510 return -1;
511 if (a->start > b->start)
512 return 1;
513 return 0;
514}
515
0dcecb2e 516static int count_memberships(struct dl *dl, struct intel_super *super)
c2c087e6 517{
c2c087e6 518 int memberships = 0;
620b1713 519 int i;
c2c087e6 520
949c47a0
DW
521 for (i = 0; i < super->anchor->num_raid_devs; i++) {
522 struct imsm_dev *dev = get_imsm_dev(super, i);
a965f303 523 struct imsm_map *map = get_imsm_map(dev, 0);
c2c087e6 524
620b1713
DW
525 if (get_imsm_disk_slot(map, dl->index) >= 0)
526 memberships++;
c2c087e6 527 }
0dcecb2e
DW
528
529 return memberships;
530}
531
532static struct extent *get_extents(struct intel_super *super, struct dl *dl)
533{
534 /* find a list of used extents on the given physical device */
535 struct extent *rv, *e;
620b1713 536 int i;
0dcecb2e
DW
537 int memberships = count_memberships(dl, super);
538 __u32 reservation = MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
539
c2c087e6
DW
540 rv = malloc(sizeof(struct extent) * (memberships + 1));
541 if (!rv)
542 return NULL;
543 e = rv;
544
949c47a0
DW
545 for (i = 0; i < super->anchor->num_raid_devs; i++) {
546 struct imsm_dev *dev = get_imsm_dev(super, i);
a965f303 547 struct imsm_map *map = get_imsm_map(dev, 0);
c2c087e6 548
620b1713
DW
549 if (get_imsm_disk_slot(map, dl->index) >= 0) {
550 e->start = __le32_to_cpu(map->pba_of_lba0);
551 e->size = __le32_to_cpu(map->blocks_per_member);
552 e++;
c2c087e6
DW
553 }
554 }
555 qsort(rv, memberships, sizeof(*rv), cmp_extent);
556
14e8215b
DW
557 /* determine the start of the metadata
558 * when no raid devices are defined use the default
559 * ...otherwise allow the metadata to truncate the value
560 * as is the case with older versions of imsm
561 */
562 if (memberships) {
563 struct extent *last = &rv[memberships - 1];
564 __u32 remainder;
565
566 remainder = __le32_to_cpu(dl->disk.total_blocks) -
567 (last->start + last->size);
dda5855f
DW
568 /* round down to 1k block to satisfy precision of the kernel
569 * 'size' interface
570 */
571 remainder &= ~1UL;
572 /* make sure remainder is still sane */
573 if (remainder < ROUND_UP(super->len, 512) >> 9)
574 remainder = ROUND_UP(super->len, 512) >> 9;
14e8215b
DW
575 if (reservation > remainder)
576 reservation = remainder;
577 }
578 e->start = __le32_to_cpu(dl->disk.total_blocks) - reservation;
c2c087e6
DW
579 e->size = 0;
580 return rv;
581}
582
14e8215b
DW
583/* try to determine how much space is reserved for metadata from
584 * the last get_extents() entry, otherwise fallback to the
585 * default
586 */
587static __u32 imsm_reserved_sectors(struct intel_super *super, struct dl *dl)
588{
589 struct extent *e;
590 int i;
591 __u32 rv;
592
593 /* for spares just return a minimal reservation which will grow
594 * once the spare is picked up by an array
595 */
596 if (dl->index == -1)
597 return MPB_SECTOR_CNT;
598
599 e = get_extents(super, dl);
600 if (!e)
601 return MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
602
603 /* scroll to last entry */
604 for (i = 0; e[i].size; i++)
605 continue;
606
607 rv = __le32_to_cpu(dl->disk.total_blocks) - e[i].start;
608
609 free(e);
610
611 return rv;
612}
613
614#ifndef MDASSEMBLE
44470971 615static void print_imsm_dev(struct imsm_dev *dev, char *uuid, int disk_idx)
cdddbdbc
DW
616{
617 __u64 sz;
618 int slot;
a965f303 619 struct imsm_map *map = get_imsm_map(dev, 0);
b10b37b8 620 __u32 ord;
cdddbdbc
DW
621
622 printf("\n");
1e7bc0ed 623 printf("[%.16s]:\n", dev->volume);
44470971 624 printf(" UUID : %s\n", uuid);
cdddbdbc
DW
625 printf(" RAID Level : %d\n", get_imsm_raid_level(map));
626 printf(" Members : %d\n", map->num_members);
620b1713
DW
627 slot = get_imsm_disk_slot(map, disk_idx);
628 if (slot >= 0) {
b10b37b8
DW
629 ord = get_imsm_ord_tbl_ent(dev, slot);
630 printf(" This Slot : %d%s\n", slot,
631 ord & IMSM_ORD_REBUILD ? " (out-of-sync)" : "");
632 } else
cdddbdbc
DW
633 printf(" This Slot : ?\n");
634 sz = __le32_to_cpu(dev->size_high);
635 sz <<= 32;
636 sz += __le32_to_cpu(dev->size_low);
637 printf(" Array Size : %llu%s\n", (unsigned long long)sz,
638 human_size(sz * 512));
639 sz = __le32_to_cpu(map->blocks_per_member);
640 printf(" Per Dev Size : %llu%s\n", (unsigned long long)sz,
641 human_size(sz * 512));
642 printf(" Sector Offset : %u\n",
643 __le32_to_cpu(map->pba_of_lba0));
644 printf(" Num Stripes : %u\n",
645 __le32_to_cpu(map->num_data_stripes));
646 printf(" Chunk Size : %u KiB\n",
647 __le16_to_cpu(map->blocks_per_strip) / 2);
648 printf(" Reserved : %d\n", __le32_to_cpu(dev->reserved_blocks));
1484e727
DW
649 printf(" Migrate State : %s", dev->vol.migr_state ? "migrating" : "idle\n");
650 if (dev->vol.migr_state) {
651 if (migr_type(dev) == MIGR_INIT)
652 printf(": initializing\n");
653 else if (migr_type(dev) == MIGR_REBUILD)
654 printf(": rebuilding\n");
655 else if (migr_type(dev) == MIGR_VERIFY)
656 printf(": check\n");
657 else if (migr_type(dev) == MIGR_GEN_MIGR)
658 printf(": general migration\n");
659 else if (migr_type(dev) == MIGR_STATE_CHANGE)
660 printf(": state change\n");
661 else if (migr_type(dev) == MIGR_REPAIR)
662 printf(": repair\n");
663 else
664 printf(": <unknown:%d>\n", migr_type(dev));
665 }
3393c6af
DW
666 printf(" Map State : %s", map_state_str[map->map_state]);
667 if (dev->vol.migr_state) {
668 struct imsm_map *map = get_imsm_map(dev, 1);
b10b37b8 669 printf(" <-- %s", map_state_str[map->map_state]);
3393c6af
DW
670 }
671 printf("\n");
cdddbdbc 672 printf(" Dirty State : %s\n", dev->vol.dirty ? "dirty" : "clean");
cdddbdbc
DW
673}
674
14e8215b 675static void print_imsm_disk(struct imsm_super *mpb, int index, __u32 reserved)
cdddbdbc 676{
949c47a0 677 struct imsm_disk *disk = __get_imsm_disk(mpb, index);
1f24f035 678 char str[MAX_RAID_SERIAL_LEN + 1];
cdddbdbc
DW
679 __u32 s;
680 __u64 sz;
681
e9d82038
DW
682 if (index < 0)
683 return;
684
cdddbdbc 685 printf("\n");
1f24f035 686 snprintf(str, MAX_RAID_SERIAL_LEN + 1, "%s", disk->serial);
cdddbdbc 687 printf(" Disk%02d Serial : %s\n", index, str);
f2f27e63 688 s = disk->status;
cdddbdbc
DW
689 printf(" State :%s%s%s%s\n", s&SPARE_DISK ? " spare" : "",
690 s&CONFIGURED_DISK ? " active" : "",
691 s&FAILED_DISK ? " failed" : "",
692 s&USABLE_DISK ? " usable" : "");
693 printf(" Id : %08x\n", __le32_to_cpu(disk->scsi_id));
14e8215b 694 sz = __le32_to_cpu(disk->total_blocks) - reserved;
cdddbdbc
DW
695 printf(" Usable Size : %llu%s\n", (unsigned long long)sz,
696 human_size(sz * 512));
697}
698
44470971
DW
699static void getinfo_super_imsm(struct supertype *st, struct mdinfo *info);
700
cdddbdbc
DW
701static void examine_super_imsm(struct supertype *st, char *homehost)
702{
703 struct intel_super *super = st->sb;
949c47a0 704 struct imsm_super *mpb = super->anchor;
cdddbdbc
DW
705 char str[MAX_SIGNATURE_LENGTH];
706 int i;
27fd6274
DW
707 struct mdinfo info;
708 char nbuf[64];
cdddbdbc 709 __u32 sum;
14e8215b 710 __u32 reserved = imsm_reserved_sectors(super, super->disks);
cdddbdbc 711
27fd6274 712
cdddbdbc
DW
713 snprintf(str, MPB_SIG_LEN, "%s", mpb->sig);
714 printf(" Magic : %s\n", str);
715 snprintf(str, strlen(MPB_VERSION_RAID0), "%s", get_imsm_version(mpb));
716 printf(" Version : %s\n", get_imsm_version(mpb));
717 printf(" Family : %08x\n", __le32_to_cpu(mpb->family_num));
718 printf(" Generation : %08x\n", __le32_to_cpu(mpb->generation_num));
27fd6274 719 getinfo_super_imsm(st, &info);
ae2bfd4e 720 fname_from_uuid(st, &info, nbuf, ':');
27fd6274 721 printf(" UUID : %s\n", nbuf + 5);
cdddbdbc
DW
722 sum = __le32_to_cpu(mpb->check_sum);
723 printf(" Checksum : %08x %s\n", sum,
949c47a0 724 __gen_imsm_checksum(mpb) == sum ? "correct" : "incorrect");
87eb16df 725 printf(" MPB Sectors : %d\n", mpb_sectors(mpb));
cdddbdbc
DW
726 printf(" Disks : %d\n", mpb->num_disks);
727 printf(" RAID Devices : %d\n", mpb->num_raid_devs);
14e8215b 728 print_imsm_disk(mpb, super->disks->index, reserved);
604b746f
JD
729 if (super->bbm_log) {
730 struct bbm_log *log = super->bbm_log;
731
732 printf("\n");
733 printf("Bad Block Management Log:\n");
734 printf(" Log Size : %d\n", __le32_to_cpu(mpb->bbm_log_size));
735 printf(" Signature : %x\n", __le32_to_cpu(log->signature));
736 printf(" Entry Count : %d\n", __le32_to_cpu(log->entry_count));
737 printf(" Spare Blocks : %d\n", __le32_to_cpu(log->reserved_spare_block_count));
13a3b65d
N
738 printf(" First Spare : %llx\n",
739 (unsigned long long) __le64_to_cpu(log->first_spare_lba));
604b746f 740 }
44470971
DW
741 for (i = 0; i < mpb->num_raid_devs; i++) {
742 struct mdinfo info;
743 struct imsm_dev *dev = __get_imsm_dev(mpb, i);
744
745 super->current_vol = i;
746 getinfo_super_imsm(st, &info);
ae2bfd4e 747 fname_from_uuid(st, &info, nbuf, ':');
44470971
DW
748 print_imsm_dev(dev, nbuf + 5, super->disks->index);
749 }
cdddbdbc
DW
750 for (i = 0; i < mpb->num_disks; i++) {
751 if (i == super->disks->index)
752 continue;
14e8215b 753 print_imsm_disk(mpb, i, reserved);
cdddbdbc
DW
754 }
755}
756
061f2c6a 757static void brief_examine_super_imsm(struct supertype *st, int verbose)
cdddbdbc 758{
27fd6274 759 /* We just write a generic IMSM ARRAY entry */
ff54de6e
N
760 struct mdinfo info;
761 char nbuf[64];
cf8de691 762 char nbuf1[64];
1e7bc0ed
DW
763 struct intel_super *super = st->sb;
764 int i;
765
0d5a423f
DW
766 if (!super->anchor->num_raid_devs) {
767 printf("ARRAY metadata=imsm\n");
1e7bc0ed 768 return;
0d5a423f 769 }
ff54de6e
N
770
771 getinfo_super_imsm(st, &info);
ae2bfd4e 772 fname_from_uuid(st, &info, nbuf, ':');
1e7bc0ed
DW
773 for (i = 0; i < super->anchor->num_raid_devs; i++) {
774 struct imsm_dev *dev = get_imsm_dev(super, i);
775
776 super->current_vol = i;
777 getinfo_super_imsm(st, &info);
ae2bfd4e 778 fname_from_uuid(st, &info, nbuf1, ':');
1124b3cf 779 printf("ARRAY /dev/md/%.16s container=%s member=%d UUID=%s\n",
cf8de691 780 dev->volume, nbuf + 5, i, nbuf1 + 5);
1e7bc0ed 781 }
fa09d496 782 printf("ARRAY metadata=imsm UUID=%s\n", nbuf + 5);
cdddbdbc
DW
783}
784
9d84c8ea
DW
785static void export_examine_super_imsm(struct supertype *st)
786{
787 struct intel_super *super = st->sb;
788 struct imsm_super *mpb = super->anchor;
789 struct mdinfo info;
790 char nbuf[64];
791
792 getinfo_super_imsm(st, &info);
793 fname_from_uuid(st, &info, nbuf, ':');
794 printf("MD_METADATA=imsm\n");
795 printf("MD_LEVEL=container\n");
796 printf("MD_UUID=%s\n", nbuf+5);
797 printf("MD_DEVICES=%u\n", mpb->num_disks);
798}
799
cdddbdbc
DW
800static void detail_super_imsm(struct supertype *st, char *homehost)
801{
3ebe00a1
DW
802 struct mdinfo info;
803 char nbuf[64];
804
805 getinfo_super_imsm(st, &info);
ae2bfd4e 806 fname_from_uuid(st, &info, nbuf, ':');
3ebe00a1 807 printf("\n UUID : %s\n", nbuf + 5);
cdddbdbc
DW
808}
809
810static void brief_detail_super_imsm(struct supertype *st)
811{
ff54de6e
N
812 struct mdinfo info;
813 char nbuf[64];
814 getinfo_super_imsm(st, &info);
ae2bfd4e 815 fname_from_uuid(st, &info, nbuf, ':');
ff54de6e 816 printf(" UUID=%s", nbuf + 5);
cdddbdbc 817}
d665cc31
DW
818
819static int imsm_read_serial(int fd, char *devname, __u8 *serial);
820static void fd2devname(int fd, char *name);
821
822static int imsm_enumerate_ports(const char *hba_path, int port_count, int host_base, int verbose)
823{
824 /* dump an unsorted list of devices attached to ahci, as well as
825 * non-connected ports
826 */
827 int hba_len = strlen(hba_path) + 1;
828 struct dirent *ent;
829 DIR *dir;
830 char *path = NULL;
831 int err = 0;
832 unsigned long port_mask = (1 << port_count) - 1;
833
834 if (port_count > sizeof(port_mask) * 8) {
835 if (verbose)
836 fprintf(stderr, Name ": port_count %d out of range\n", port_count);
837 return 2;
838 }
839
840 /* scroll through /sys/dev/block looking for devices attached to
841 * this hba
842 */
843 dir = opendir("/sys/dev/block");
844 for (ent = dir ? readdir(dir) : NULL; ent; ent = readdir(dir)) {
845 int fd;
846 char model[64];
847 char vendor[64];
848 char buf[1024];
849 int major, minor;
850 char *device;
851 char *c;
852 int port;
853 int type;
854
855 if (sscanf(ent->d_name, "%d:%d", &major, &minor) != 2)
856 continue;
857 path = devt_to_devpath(makedev(major, minor));
858 if (!path)
859 continue;
860 if (!path_attached_to_hba(path, hba_path)) {
861 free(path);
862 path = NULL;
863 continue;
864 }
865
866 /* retrieve the scsi device type */
867 if (asprintf(&device, "/sys/dev/block/%d:%d/device/xxxxxxx", major, minor) < 0) {
868 if (verbose)
869 fprintf(stderr, Name ": failed to allocate 'device'\n");
870 err = 2;
871 break;
872 }
873 sprintf(device, "/sys/dev/block/%d:%d/device/type", major, minor);
874 if (load_sys(device, buf) != 0) {
875 if (verbose)
876 fprintf(stderr, Name ": failed to read device type for %s\n",
877 path);
878 err = 2;
879 free(device);
880 break;
881 }
882 type = strtoul(buf, NULL, 10);
883
884 /* if it's not a disk print the vendor and model */
885 if (!(type == 0 || type == 7 || type == 14)) {
886 vendor[0] = '\0';
887 model[0] = '\0';
888 sprintf(device, "/sys/dev/block/%d:%d/device/vendor", major, minor);
889 if (load_sys(device, buf) == 0) {
890 strncpy(vendor, buf, sizeof(vendor));
891 vendor[sizeof(vendor) - 1] = '\0';
892 c = (char *) &vendor[sizeof(vendor) - 1];
893 while (isspace(*c) || *c == '\0')
894 *c-- = '\0';
895
896 }
897 sprintf(device, "/sys/dev/block/%d:%d/device/model", major, minor);
898 if (load_sys(device, buf) == 0) {
899 strncpy(model, buf, sizeof(model));
900 model[sizeof(model) - 1] = '\0';
901 c = (char *) &model[sizeof(model) - 1];
902 while (isspace(*c) || *c == '\0')
903 *c-- = '\0';
904 }
905
906 if (vendor[0] && model[0])
907 sprintf(buf, "%.64s %.64s", vendor, model);
908 else
909 switch (type) { /* numbers from hald/linux/device.c */
910 case 1: sprintf(buf, "tape"); break;
911 case 2: sprintf(buf, "printer"); break;
912 case 3: sprintf(buf, "processor"); break;
913 case 4:
914 case 5: sprintf(buf, "cdrom"); break;
915 case 6: sprintf(buf, "scanner"); break;
916 case 8: sprintf(buf, "media_changer"); break;
917 case 9: sprintf(buf, "comm"); break;
918 case 12: sprintf(buf, "raid"); break;
919 default: sprintf(buf, "unknown");
920 }
921 } else
922 buf[0] = '\0';
923 free(device);
924
925 /* chop device path to 'host%d' and calculate the port number */
926 c = strchr(&path[hba_len], '/');
927 *c = '\0';
928 if (sscanf(&path[hba_len], "host%d", &port) == 1)
929 port -= host_base;
930 else {
931 if (verbose) {
932 *c = '/'; /* repair the full string */
933 fprintf(stderr, Name ": failed to determine port number for %s\n",
934 path);
935 }
936 err = 2;
937 break;
938 }
939
940 /* mark this port as used */
941 port_mask &= ~(1 << port);
942
943 /* print out the device information */
944 if (buf[0]) {
945 printf(" Port%d : - non-disk device (%s) -\n", port, buf);
946 continue;
947 }
948
949 fd = dev_open(ent->d_name, O_RDONLY);
950 if (fd < 0)
951 printf(" Port%d : - disk info unavailable -\n", port);
952 else {
953 fd2devname(fd, buf);
954 printf(" Port%d : %s", port, buf);
955 if (imsm_read_serial(fd, NULL, (__u8 *) buf) == 0)
956 printf(" (%s)\n", buf);
957 else
958 printf("()\n");
959 }
960 close(fd);
961 free(path);
962 path = NULL;
963 }
964 if (path)
965 free(path);
966 if (dir)
967 closedir(dir);
968 if (err == 0) {
969 int i;
970
971 for (i = 0; i < port_count; i++)
972 if (port_mask & (1 << i))
973 printf(" Port%d : - no device attached -\n", i);
974 }
975
976 return err;
977}
978
5615172f 979static int detail_platform_imsm(int verbose, int enumerate_only)
d665cc31
DW
980{
981 /* There are two components to imsm platform support, the ahci SATA
982 * controller and the option-rom. To find the SATA controller we
983 * simply look in /sys/bus/pci/drivers/ahci to see if an ahci
984 * controller with the Intel vendor id is present. This approach
985 * allows mdadm to leverage the kernel's ahci detection logic, with the
986 * caveat that if ahci.ko is not loaded mdadm will not be able to
987 * detect platform raid capabilities. The option-rom resides in a
988 * platform "Adapter ROM". We scan for its signature to retrieve the
989 * platform capabilities. If raid support is disabled in the BIOS the
990 * option-rom capability structure will not be available.
991 */
992 const struct imsm_orom *orom;
993 struct sys_dev *list, *hba;
994 DIR *dir;
995 struct dirent *ent;
996 const char *hba_path;
997 int host_base = 0;
998 int port_count = 0;
999
5615172f
DW
1000 if (enumerate_only) {
1001 if (check_env("IMSM_NO_PLATFORM") || find_imsm_orom())
1002 return 0;
1003 return 2;
1004 }
1005
d665cc31
DW
1006 list = find_driver_devices("pci", "ahci");
1007 for (hba = list; hba; hba = hba->next)
1008 if (devpath_to_vendor(hba->path) == 0x8086)
1009 break;
1010
1011 if (!hba) {
1012 if (verbose)
1013 fprintf(stderr, Name ": unable to find active ahci controller\n");
1014 free_sys_dev(&list);
1015 return 2;
1016 } else if (verbose)
1017 fprintf(stderr, Name ": found Intel SATA AHCI Controller\n");
1018 hba_path = hba->path;
1019 hba->path = NULL;
1020 free_sys_dev(&list);
1021
1022 orom = find_imsm_orom();
1023 if (!orom) {
1024 if (verbose)
1025 fprintf(stderr, Name ": imsm option-rom not found\n");
1026 return 2;
1027 }
1028
1029 printf(" Platform : Intel(R) Matrix Storage Manager\n");
1030 printf(" Version : %d.%d.%d.%d\n", orom->major_ver, orom->minor_ver,
1031 orom->hotfix_ver, orom->build);
1032 printf(" RAID Levels :%s%s%s%s%s\n",
1033 imsm_orom_has_raid0(orom) ? " raid0" : "",
1034 imsm_orom_has_raid1(orom) ? " raid1" : "",
1035 imsm_orom_has_raid1e(orom) ? " raid1e" : "",
1036 imsm_orom_has_raid10(orom) ? " raid10" : "",
1037 imsm_orom_has_raid5(orom) ? " raid5" : "");
8be094f0
DW
1038 printf(" Chunk Sizes :%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
1039 imsm_orom_has_chunk(orom, 2) ? " 2k" : "",
1040 imsm_orom_has_chunk(orom, 4) ? " 4k" : "",
1041 imsm_orom_has_chunk(orom, 8) ? " 8k" : "",
1042 imsm_orom_has_chunk(orom, 16) ? " 16k" : "",
1043 imsm_orom_has_chunk(orom, 32) ? " 32k" : "",
1044 imsm_orom_has_chunk(orom, 64) ? " 64k" : "",
1045 imsm_orom_has_chunk(orom, 128) ? " 128k" : "",
1046 imsm_orom_has_chunk(orom, 256) ? " 256k" : "",
1047 imsm_orom_has_chunk(orom, 512) ? " 512k" : "",
1048 imsm_orom_has_chunk(orom, 1024*1) ? " 1M" : "",
1049 imsm_orom_has_chunk(orom, 1024*2) ? " 2M" : "",
1050 imsm_orom_has_chunk(orom, 1024*4) ? " 4M" : "",
1051 imsm_orom_has_chunk(orom, 1024*8) ? " 8M" : "",
1052 imsm_orom_has_chunk(orom, 1024*16) ? " 16M" : "",
1053 imsm_orom_has_chunk(orom, 1024*32) ? " 32M" : "",
1054 imsm_orom_has_chunk(orom, 1024*64) ? " 64M" : "");
d665cc31
DW
1055 printf(" Max Disks : %d\n", orom->tds);
1056 printf(" Max Volumes : %d\n", orom->vpa);
1057 printf(" I/O Controller : %s\n", hba_path);
1058
1059 /* find the smallest scsi host number to determine a port number base */
1060 dir = opendir(hba_path);
1061 for (ent = dir ? readdir(dir) : NULL; ent; ent = readdir(dir)) {
1062 int host;
1063
1064 if (sscanf(ent->d_name, "host%d", &host) != 1)
1065 continue;
1066 if (port_count == 0)
1067 host_base = host;
1068 else if (host < host_base)
1069 host_base = host;
1070
1071 if (host + 1 > port_count + host_base)
1072 port_count = host + 1 - host_base;
1073
1074 }
1075 if (dir)
1076 closedir(dir);
1077
1078 if (!port_count || imsm_enumerate_ports(hba_path, port_count,
1079 host_base, verbose) != 0) {
1080 if (verbose)
1081 fprintf(stderr, Name ": failed to enumerate ports\n");
1082 return 2;
1083 }
1084
1085 return 0;
1086}
cdddbdbc
DW
1087#endif
1088
1089static int match_home_imsm(struct supertype *st, char *homehost)
1090{
5115ca67
DW
1091 /* the imsm metadata format does not specify any host
1092 * identification information. We return -1 since we can never
1093 * confirm nor deny whether a given array is "meant" for this
1094 * host. We rely on compare_super and the 'family_num' field to
1095 * exclude member disks that do not belong, and we rely on
1096 * mdadm.conf to specify the arrays that should be assembled.
1097 * Auto-assembly may still pick up "foreign" arrays.
1098 */
cdddbdbc 1099
9362c1c8 1100 return -1;
cdddbdbc
DW
1101}
1102
1103static void uuid_from_super_imsm(struct supertype *st, int uuid[4])
1104{
51006d85
N
1105 /* The uuid returned here is used for:
1106 * uuid to put into bitmap file (Create, Grow)
1107 * uuid for backup header when saving critical section (Grow)
1108 * comparing uuids when re-adding a device into an array
1109 * In these cases the uuid required is that of the data-array,
1110 * not the device-set.
1111 * uuid to recognise same set when adding a missing device back
1112 * to an array. This is a uuid for the device-set.
1113 *
1114 * For each of these we can make do with a truncated
1115 * or hashed uuid rather than the original, as long as
1116 * everyone agrees.
1117 * In each case the uuid required is that of the data-array,
1118 * not the device-set.
43dad3d6 1119 */
51006d85
N
1120 /* imsm does not track uuid's so we synthesis one using sha1 on
1121 * - The signature (Which is constant for all imsm array, but no matter)
1122 * - the family_num of the container
1123 * - the index number of the volume
1124 * - the 'serial' number of the volume.
1125 * Hopefully these are all constant.
1126 */
1127 struct intel_super *super = st->sb;
43dad3d6 1128
51006d85
N
1129 char buf[20];
1130 struct sha1_ctx ctx;
1131 struct imsm_dev *dev = NULL;
1132
1133 sha1_init_ctx(&ctx);
92bd8f8d 1134 sha1_process_bytes(super->anchor->sig, MPB_SIG_LEN, &ctx);
51006d85
N
1135 sha1_process_bytes(&super->anchor->family_num, sizeof(__u32), &ctx);
1136 if (super->current_vol >= 0)
1137 dev = get_imsm_dev(super, super->current_vol);
1138 if (dev) {
1139 __u32 vol = super->current_vol;
1140 sha1_process_bytes(&vol, sizeof(vol), &ctx);
1141 sha1_process_bytes(dev->volume, MAX_RAID_SERIAL_LEN, &ctx);
1142 }
1143 sha1_finish_ctx(&ctx, buf);
1144 memcpy(uuid, buf, 4*4);
cdddbdbc
DW
1145}
1146
0d481d37 1147#if 0
4f5bc454
DW
1148static void
1149get_imsm_numerical_version(struct imsm_super *mpb, int *m, int *p)
cdddbdbc 1150{
cdddbdbc
DW
1151 __u8 *v = get_imsm_version(mpb);
1152 __u8 *end = mpb->sig + MAX_SIGNATURE_LENGTH;
1153 char major[] = { 0, 0, 0 };
1154 char minor[] = { 0 ,0, 0 };
1155 char patch[] = { 0, 0, 0 };
1156 char *ver_parse[] = { major, minor, patch };
1157 int i, j;
1158
1159 i = j = 0;
1160 while (*v != '\0' && v < end) {
1161 if (*v != '.' && j < 2)
1162 ver_parse[i][j++] = *v;
1163 else {
1164 i++;
1165 j = 0;
1166 }
1167 v++;
1168 }
1169
4f5bc454
DW
1170 *m = strtol(minor, NULL, 0);
1171 *p = strtol(patch, NULL, 0);
1172}
0d481d37 1173#endif
4f5bc454 1174
c2c087e6
DW
1175static int imsm_level_to_layout(int level)
1176{
1177 switch (level) {
1178 case 0:
1179 case 1:
1180 return 0;
1181 case 5:
1182 case 6:
a380c027 1183 return ALGORITHM_LEFT_ASYMMETRIC;
c2c087e6 1184 case 10:
c92a2527 1185 return 0x102;
c2c087e6 1186 }
a18a888e 1187 return UnSet;
c2c087e6
DW
1188}
1189
bf5a934a
DW
1190static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info)
1191{
1192 struct intel_super *super = st->sb;
949c47a0 1193 struct imsm_dev *dev = get_imsm_dev(super, super->current_vol);
a965f303 1194 struct imsm_map *map = get_imsm_map(dev, 0);
efb30e7f 1195 struct dl *dl;
bf5a934a 1196
efb30e7f
DW
1197 for (dl = super->disks; dl; dl = dl->next)
1198 if (dl->raiddisk == info->disk.raid_disk)
1199 break;
bf5a934a
DW
1200 info->container_member = super->current_vol;
1201 info->array.raid_disks = map->num_members;
1202 info->array.level = get_imsm_raid_level(map);
1203 info->array.layout = imsm_level_to_layout(info->array.level);
1204 info->array.md_minor = -1;
1205 info->array.ctime = 0;
1206 info->array.utime = 0;
301406c9
DW
1207 info->array.chunk_size = __le16_to_cpu(map->blocks_per_strip) << 9;
1208 info->array.state = !dev->vol.dirty;
da9b4a62
DW
1209 info->custom_array_size = __le32_to_cpu(dev->size_high);
1210 info->custom_array_size <<= 32;
1211 info->custom_array_size |= __le32_to_cpu(dev->size_low);
301406c9
DW
1212
1213 info->disk.major = 0;
1214 info->disk.minor = 0;
efb30e7f
DW
1215 if (dl) {
1216 info->disk.major = dl->major;
1217 info->disk.minor = dl->minor;
1218 }
bf5a934a
DW
1219
1220 info->data_offset = __le32_to_cpu(map->pba_of_lba0);
1221 info->component_size = __le32_to_cpu(map->blocks_per_member);
301406c9 1222 memset(info->uuid, 0, sizeof(info->uuid));
bf5a934a 1223
f8f603f1 1224 if (map->map_state == IMSM_T_STATE_UNINITIALIZED || dev->vol.dirty)
301406c9 1225 info->resync_start = 0;
f8f603f1 1226 else if (dev->vol.migr_state)
da188789
DW
1227 /* FIXME add curr_migr_unit to resync_start conversion */
1228 info->resync_start = 0;
301406c9
DW
1229 else
1230 info->resync_start = ~0ULL;
1231
1232 strncpy(info->name, (char *) dev->volume, MAX_RAID_SERIAL_LEN);
1233 info->name[MAX_RAID_SERIAL_LEN] = 0;
bf5a934a 1234
f35f2525
N
1235 info->array.major_version = -1;
1236 info->array.minor_version = -2;
bf5a934a
DW
1237 sprintf(info->text_version, "/%s/%d",
1238 devnum2devname(st->container_dev),
1239 info->container_member);
a67dd8cc 1240 info->safe_mode_delay = 4000; /* 4 secs like the Matrix driver */
51006d85 1241 uuid_from_super_imsm(st, info->uuid);
bf5a934a
DW
1242}
1243
7a70e8aa
DW
1244/* check the config file to see if we can return a real uuid for this spare */
1245static void fixup_container_spare_uuid(struct mdinfo *inf)
1246{
1247 struct mddev_ident_s *array_list;
1248
1249 if (inf->array.level != LEVEL_CONTAINER ||
1250 memcmp(inf->uuid, uuid_match_any, sizeof(int[4])) != 0)
1251 return;
1252
1253 array_list = conf_get_ident(NULL);
1254
1255 for (; array_list; array_list = array_list->next) {
1256 if (array_list->uuid_set) {
1257 struct supertype *_sst; /* spare supertype */
1258 struct supertype *_cst; /* container supertype */
1259
1260 _cst = array_list->st;
1261 _sst = _cst->ss->match_metadata_desc(inf->text_version);
1262 if (_sst) {
1263 memcpy(inf->uuid, array_list->uuid, sizeof(int[4]));
1264 free(_sst);
1265 break;
1266 }
1267 }
1268 }
1269}
bf5a934a 1270
4f5bc454
DW
1271static void getinfo_super_imsm(struct supertype *st, struct mdinfo *info)
1272{
1273 struct intel_super *super = st->sb;
4f5bc454
DW
1274 struct imsm_disk *disk;
1275 __u32 s;
4f5bc454 1276
bf5a934a
DW
1277 if (super->current_vol >= 0) {
1278 getinfo_super_imsm_volume(st, info);
1279 return;
1280 }
d23fe947
DW
1281
1282 /* Set raid_disks to zero so that Assemble will always pull in valid
1283 * spares
1284 */
1285 info->array.raid_disks = 0;
cdddbdbc
DW
1286 info->array.level = LEVEL_CONTAINER;
1287 info->array.layout = 0;
1288 info->array.md_minor = -1;
c2c087e6 1289 info->array.ctime = 0; /* N/A for imsm */
cdddbdbc
DW
1290 info->array.utime = 0;
1291 info->array.chunk_size = 0;
1292
1293 info->disk.major = 0;
1294 info->disk.minor = 0;
cdddbdbc 1295 info->disk.raid_disk = -1;
c2c087e6 1296 info->reshape_active = 0;
f35f2525
N
1297 info->array.major_version = -1;
1298 info->array.minor_version = -2;
c2c087e6 1299 strcpy(info->text_version, "imsm");
a67dd8cc 1300 info->safe_mode_delay = 0;
c2c087e6
DW
1301 info->disk.number = -1;
1302 info->disk.state = 0;
c5afc314 1303 info->name[0] = 0;
c2c087e6 1304
4a04ec6c 1305 if (super->disks) {
14e8215b
DW
1306 __u32 reserved = imsm_reserved_sectors(super, super->disks);
1307
b9f594fe 1308 disk = &super->disks->disk;
14e8215b
DW
1309 info->data_offset = __le32_to_cpu(disk->total_blocks) - reserved;
1310 info->component_size = reserved;
f2f27e63 1311 s = disk->status;
4a04ec6c 1312 info->disk.state = s & CONFIGURED_DISK ? (1 << MD_DISK_ACTIVE) : 0;
df474657
DW
1313 /* we don't change info->disk.raid_disk here because
1314 * this state will be finalized in mdmon after we have
1315 * found the 'most fresh' version of the metadata
1316 */
1317 info->disk.state |= s & FAILED_DISK ? (1 << MD_DISK_FAULTY) : 0;
032e9e29 1318 info->disk.state |= s & SPARE_DISK ? 0 : (1 << MD_DISK_SYNC);
cdddbdbc 1319 }
a575e2a7
DW
1320
1321 /* only call uuid_from_super_imsm when this disk is part of a populated container,
1322 * ->compare_super may have updated the 'num_raid_devs' field for spares
1323 */
1324 if (info->disk.state & (1 << MD_DISK_SYNC) || super->anchor->num_raid_devs)
36ba7d48 1325 uuid_from_super_imsm(st, info->uuid);
7a70e8aa 1326 else {
032e9e29 1327 memcpy(info->uuid, uuid_match_any, sizeof(int[4]));
7a70e8aa
DW
1328 fixup_container_spare_uuid(info);
1329 }
cdddbdbc
DW
1330}
1331
cdddbdbc
DW
1332static int update_super_imsm(struct supertype *st, struct mdinfo *info,
1333 char *update, char *devname, int verbose,
1334 int uuid_set, char *homehost)
1335{
f352c545
DW
1336 /* FIXME */
1337
1338 /* For 'assemble' and 'force' we need to return non-zero if any
1339 * change was made. For others, the return value is ignored.
1340 * Update options are:
1341 * force-one : This device looks a bit old but needs to be included,
1342 * update age info appropriately.
1343 * assemble: clear any 'faulty' flag to allow this device to
1344 * be assembled.
1345 * force-array: Array is degraded but being forced, mark it clean
1346 * if that will be needed to assemble it.
1347 *
1348 * newdev: not used ????
1349 * grow: Array has gained a new device - this is currently for
1350 * linear only
1351 * resync: mark as dirty so a resync will happen.
1352 * name: update the name - preserving the homehost
1353 *
1354 * Following are not relevant for this imsm:
1355 * sparc2.2 : update from old dodgey metadata
1356 * super-minor: change the preferred_minor number
1357 * summaries: update redundant counters.
1358 * uuid: Change the uuid of the array to match watch is given
1359 * homehost: update the recorded homehost
1360 * _reshape_progress: record new reshape_progress position.
1361 */
1362 int rv = 0;
1363 //struct intel_super *super = st->sb;
1364 //struct imsm_super *mpb = super->mpb;
1365
1366 if (strcmp(update, "grow") == 0) {
1367 }
1368 if (strcmp(update, "resync") == 0) {
1369 /* dev->vol.dirty = 1; */
1370 }
1371
1372 /* IMSM has no concept of UUID or homehost */
1373
1374 return rv;
cdddbdbc
DW
1375}
1376
c2c087e6 1377static size_t disks_to_mpb_size(int disks)
cdddbdbc 1378{
c2c087e6 1379 size_t size;
cdddbdbc 1380
c2c087e6
DW
1381 size = sizeof(struct imsm_super);
1382 size += (disks - 1) * sizeof(struct imsm_disk);
1383 size += 2 * sizeof(struct imsm_dev);
1384 /* up to 2 maps per raid device (-2 for imsm_maps in imsm_dev */
1385 size += (4 - 2) * sizeof(struct imsm_map);
1386 /* 4 possible disk_ord_tbl's */
1387 size += 4 * (disks - 1) * sizeof(__u32);
1388
1389 return size;
1390}
1391
1392static __u64 avail_size_imsm(struct supertype *st, __u64 devsize)
1393{
1394 if (devsize < (MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS))
1395 return 0;
1396
1397 return devsize - (MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS);
cdddbdbc
DW
1398}
1399
ba2de7ba
DW
1400static void free_devlist(struct intel_super *super)
1401{
1402 struct intel_dev *dv;
1403
1404 while (super->devlist) {
1405 dv = super->devlist->next;
1406 free(super->devlist->dev);
1407 free(super->devlist);
1408 super->devlist = dv;
1409 }
1410}
1411
1412static void imsm_copy_dev(struct imsm_dev *dest, struct imsm_dev *src)
1413{
1414 memcpy(dest, src, sizeof_imsm_dev(src, 0));
1415}
1416
cdddbdbc
DW
1417static int compare_super_imsm(struct supertype *st, struct supertype *tst)
1418{
1419 /*
1420 * return:
1421 * 0 same, or first was empty, and second was copied
1422 * 1 second had wrong number
1423 * 2 wrong uuid
1424 * 3 wrong other info
1425 */
1426 struct intel_super *first = st->sb;
1427 struct intel_super *sec = tst->sb;
1428
1429 if (!first) {
1430 st->sb = tst->sb;
1431 tst->sb = NULL;
1432 return 0;
1433 }
1434
949c47a0 1435 if (memcmp(first->anchor->sig, sec->anchor->sig, MAX_SIGNATURE_LENGTH) != 0)
cdddbdbc 1436 return 3;
d23fe947
DW
1437
1438 /* if an anchor does not have num_raid_devs set then it is a free
1439 * floating spare
1440 */
1441 if (first->anchor->num_raid_devs > 0 &&
1442 sec->anchor->num_raid_devs > 0) {
1443 if (first->anchor->family_num != sec->anchor->family_num)
1444 return 3;
d23fe947 1445 }
cdddbdbc 1446
3e372e5a
DW
1447 /* if 'first' is a spare promote it to a populated mpb with sec's
1448 * family number
1449 */
1450 if (first->anchor->num_raid_devs == 0 &&
1451 sec->anchor->num_raid_devs > 0) {
78d30f94 1452 int i;
ba2de7ba
DW
1453 struct intel_dev *dv;
1454 struct imsm_dev *dev;
78d30f94
DW
1455
1456 /* we need to copy raid device info from sec if an allocation
1457 * fails here we don't associate the spare
1458 */
1459 for (i = 0; i < sec->anchor->num_raid_devs; i++) {
ba2de7ba
DW
1460 dv = malloc(sizeof(*dv));
1461 if (!dv)
1462 break;
1463 dev = malloc(sizeof_imsm_dev(get_imsm_dev(sec, i), 1));
1464 if (!dev) {
1465 free(dv);
1466 break;
78d30f94 1467 }
ba2de7ba
DW
1468 dv->dev = dev;
1469 dv->index = i;
1470 dv->next = first->devlist;
1471 first->devlist = dv;
78d30f94 1472 }
ba2de7ba
DW
1473 if (i <= sec->anchor->num_raid_devs) {
1474 /* allocation failure */
1475 free_devlist(first);
1476 fprintf(stderr, "imsm: failed to associate spare\n");
1477 return 3;
78d30f94 1478 }
ba2de7ba
DW
1479 for (i = 0; i < sec->anchor->num_raid_devs; i++)
1480 imsm_copy_dev(get_imsm_dev(first, i), get_imsm_dev(sec, i));
78d30f94 1481
3e372e5a
DW
1482 first->anchor->num_raid_devs = sec->anchor->num_raid_devs;
1483 first->anchor->family_num = sec->anchor->family_num;
1484 }
1485
cdddbdbc
DW
1486 return 0;
1487}
1488
0030e8d6
DW
1489static void fd2devname(int fd, char *name)
1490{
1491 struct stat st;
1492 char path[256];
1493 char dname[100];
1494 char *nm;
1495 int rv;
1496
1497 name[0] = '\0';
1498 if (fstat(fd, &st) != 0)
1499 return;
1500 sprintf(path, "/sys/dev/block/%d:%d",
1501 major(st.st_rdev), minor(st.st_rdev));
1502
1503 rv = readlink(path, dname, sizeof(dname));
1504 if (rv <= 0)
1505 return;
1506
1507 dname[rv] = '\0';
1508 nm = strrchr(dname, '/');
1509 nm++;
1510 snprintf(name, MAX_RAID_SERIAL_LEN, "/dev/%s", nm);
1511}
1512
1513
cdddbdbc
DW
1514extern int scsi_get_serial(int fd, void *buf, size_t buf_len);
1515
1516static int imsm_read_serial(int fd, char *devname,
1517 __u8 serial[MAX_RAID_SERIAL_LEN])
1518{
1519 unsigned char scsi_serial[255];
cdddbdbc
DW
1520 int rv;
1521 int rsp_len;
1f24f035 1522 int len;
316e2bf4
DW
1523 char *dest;
1524 char *src;
1525 char *rsp_buf;
1526 int i;
cdddbdbc
DW
1527
1528 memset(scsi_serial, 0, sizeof(scsi_serial));
cdddbdbc 1529
f9ba0ff1
DW
1530 rv = scsi_get_serial(fd, scsi_serial, sizeof(scsi_serial));
1531
40ebbb9c 1532 if (rv && check_env("IMSM_DEVNAME_AS_SERIAL")) {
f9ba0ff1
DW
1533 memset(serial, 0, MAX_RAID_SERIAL_LEN);
1534 fd2devname(fd, (char *) serial);
0030e8d6
DW
1535 return 0;
1536 }
1537
cdddbdbc
DW
1538 if (rv != 0) {
1539 if (devname)
1540 fprintf(stderr,
1541 Name ": Failed to retrieve serial for %s\n",
1542 devname);
1543 return rv;
1544 }
1545
1546 rsp_len = scsi_serial[3];
03cd4cc8
DW
1547 if (!rsp_len) {
1548 if (devname)
1549 fprintf(stderr,
1550 Name ": Failed to retrieve serial for %s\n",
1551 devname);
1552 return 2;
1553 }
1f24f035 1554 rsp_buf = (char *) &scsi_serial[4];
5c3db629 1555
316e2bf4
DW
1556 /* trim all whitespace and non-printable characters and convert
1557 * ':' to ';'
1558 */
1559 for (i = 0, dest = rsp_buf; i < rsp_len; i++) {
1560 src = &rsp_buf[i];
1561 if (*src > 0x20) {
1562 /* ':' is reserved for use in placeholder serial
1563 * numbers for missing disks
1564 */
1565 if (*src == ':')
1566 *dest++ = ';';
1567 else
1568 *dest++ = *src;
1569 }
1570 }
1571 len = dest - rsp_buf;
1572 dest = rsp_buf;
1573
1574 /* truncate leading characters */
1575 if (len > MAX_RAID_SERIAL_LEN) {
1576 dest += len - MAX_RAID_SERIAL_LEN;
1f24f035 1577 len = MAX_RAID_SERIAL_LEN;
316e2bf4 1578 }
5c3db629 1579
5c3db629 1580 memset(serial, 0, MAX_RAID_SERIAL_LEN);
316e2bf4 1581 memcpy(serial, dest, len);
cdddbdbc
DW
1582
1583 return 0;
1584}
1585
1f24f035
DW
1586static int serialcmp(__u8 *s1, __u8 *s2)
1587{
1588 return strncmp((char *) s1, (char *) s2, MAX_RAID_SERIAL_LEN);
1589}
1590
1591static void serialcpy(__u8 *dest, __u8 *src)
1592{
1593 strncpy((char *) dest, (char *) src, MAX_RAID_SERIAL_LEN);
1594}
1595
54c2c1ea
DW
1596static struct dl *serial_to_dl(__u8 *serial, struct intel_super *super)
1597{
1598 struct dl *dl;
1599
1600 for (dl = super->disks; dl; dl = dl->next)
1601 if (serialcmp(dl->serial, serial) == 0)
1602 break;
1603
1604 return dl;
1605}
1606
cdddbdbc
DW
1607static int
1608load_imsm_disk(int fd, struct intel_super *super, char *devname, int keep_fd)
1609{
cdddbdbc
DW
1610 struct dl *dl;
1611 struct stat stb;
cdddbdbc
DW
1612 int rv;
1613 int i;
d23fe947
DW
1614 int alloc = 1;
1615 __u8 serial[MAX_RAID_SERIAL_LEN];
1616
1617 rv = imsm_read_serial(fd, devname, serial);
1618
1619 if (rv != 0)
1620 return 2;
1621
1622 /* check if this is a disk we have seen before. it may be a spare in
1623 * super->disks while the current anchor believes it is a raid member,
1624 * check if we need to update dl->index
1625 */
54c2c1ea 1626 dl = serial_to_dl(serial, super);
d23fe947
DW
1627 if (!dl)
1628 dl = malloc(sizeof(*dl));
1629 else
1630 alloc = 0;
cdddbdbc 1631
b9f594fe 1632 if (!dl) {
cdddbdbc
DW
1633 if (devname)
1634 fprintf(stderr,
1635 Name ": failed to allocate disk buffer for %s\n",
1636 devname);
1637 return 2;
1638 }
cdddbdbc 1639
d23fe947
DW
1640 if (alloc) {
1641 fstat(fd, &stb);
1642 dl->major = major(stb.st_rdev);
1643 dl->minor = minor(stb.st_rdev);
1644 dl->next = super->disks;
1645 dl->fd = keep_fd ? fd : -1;
1646 dl->devname = devname ? strdup(devname) : NULL;
1f24f035 1647 serialcpy(dl->serial, serial);
8796fdc4 1648 dl->index = -2;
0dcecb2e 1649 dl->e = NULL;
d23fe947
DW
1650 } else if (keep_fd) {
1651 close(dl->fd);
1652 dl->fd = fd;
1653 }
cdddbdbc 1654
d23fe947 1655 /* look up this disk's index in the current anchor */
949c47a0
DW
1656 for (i = 0; i < super->anchor->num_disks; i++) {
1657 struct imsm_disk *disk_iter;
1658
1659 disk_iter = __get_imsm_disk(super->anchor, i);
cdddbdbc 1660
1f24f035 1661 if (serialcmp(disk_iter->serial, dl->serial) == 0) {
b9f594fe 1662 dl->disk = *disk_iter;
d23fe947
DW
1663 /* only set index on disks that are a member of a
1664 * populated contianer, i.e. one with raid_devs
1665 */
f2f27e63 1666 if (dl->disk.status & FAILED_DISK)
6c386dd3 1667 dl->index = -2;
f2f27e63 1668 else if (dl->disk.status & SPARE_DISK)
d23fe947
DW
1669 dl->index = -1;
1670 else
1671 dl->index = i;
8796fdc4 1672
cdddbdbc 1673 break;
949c47a0 1674 }
cdddbdbc
DW
1675 }
1676
3f6efecc
DW
1677 /* no match, maybe a stale failed drive */
1678 if (i == super->anchor->num_disks && dl->index >= 0) {
1679 dl->disk = *__get_imsm_disk(super->anchor, dl->index);
f2f27e63 1680 if (dl->disk.status & FAILED_DISK)
3f6efecc
DW
1681 dl->index = -2;
1682 }
1683
d23fe947
DW
1684 if (alloc)
1685 super->disks = dl;
6c386dd3 1686
949c47a0
DW
1687 return 0;
1688}
1689
0e600426 1690#ifndef MDASSEMBLE
0c046afd
DW
1691/* When migrating map0 contains the 'destination' state while map1
1692 * contains the current state. When not migrating map0 contains the
1693 * current state. This routine assumes that map[0].map_state is set to
1694 * the current array state before being called.
1695 *
1696 * Migration is indicated by one of the following states
1697 * 1/ Idle (migr_state=0 map0state=normal||unitialized||degraded||failed)
e3bba0e0 1698 * 2/ Initialize (migr_state=1 migr_type=MIGR_INIT map0state=normal
0c046afd 1699 * map1state=unitialized)
1484e727 1700 * 3/ Repair (Resync) (migr_state=1 migr_type=MIGR_REPAIR map0state=normal
0c046afd 1701 * map1state=normal)
e3bba0e0 1702 * 4/ Rebuild (migr_state=1 migr_type=MIGR_REBUILD map0state=normal
0c046afd
DW
1703 * map1state=degraded)
1704 */
0556e1a2 1705static void migrate(struct imsm_dev *dev, __u8 to_state, int migr_type)
3393c6af 1706{
0c046afd 1707 struct imsm_map *dest;
3393c6af
DW
1708 struct imsm_map *src = get_imsm_map(dev, 0);
1709
0c046afd 1710 dev->vol.migr_state = 1;
1484e727 1711 set_migr_type(dev, migr_type);
f8f603f1 1712 dev->vol.curr_migr_unit = 0;
0c046afd
DW
1713 dest = get_imsm_map(dev, 1);
1714
0556e1a2 1715 /* duplicate and then set the target end state in map[0] */
3393c6af 1716 memcpy(dest, src, sizeof_imsm_map(src));
0556e1a2
DW
1717 if (migr_type == MIGR_REBUILD) {
1718 __u32 ord;
1719 int i;
1720
1721 for (i = 0; i < src->num_members; i++) {
1722 ord = __le32_to_cpu(src->disk_ord_tbl[i]);
1723 set_imsm_ord_tbl_ent(src, i, ord_to_idx(ord));
1724 }
1725 }
1726
0c046afd 1727 src->map_state = to_state;
949c47a0 1728}
f8f603f1
DW
1729
1730static void end_migration(struct imsm_dev *dev, __u8 map_state)
1731{
1732 struct imsm_map *map = get_imsm_map(dev, 0);
0556e1a2
DW
1733 struct imsm_map *prev = get_imsm_map(dev, dev->vol.migr_state);
1734 int i;
1735
1736 /* merge any IMSM_ORD_REBUILD bits that were not successfully
1737 * completed in the last migration.
1738 *
1739 * FIXME add support for online capacity expansion and
1740 * raid-level-migration
1741 */
1742 for (i = 0; i < prev->num_members; i++)
1743 map->disk_ord_tbl[i] |= prev->disk_ord_tbl[i];
f8f603f1
DW
1744
1745 dev->vol.migr_state = 0;
1746 dev->vol.curr_migr_unit = 0;
1747 map->map_state = map_state;
1748}
0e600426 1749#endif
949c47a0
DW
1750
1751static int parse_raid_devices(struct intel_super *super)
1752{
1753 int i;
1754 struct imsm_dev *dev_new;
4d7b1503
DW
1755 size_t len, len_migr;
1756 size_t space_needed = 0;
1757 struct imsm_super *mpb = super->anchor;
949c47a0
DW
1758
1759 for (i = 0; i < super->anchor->num_raid_devs; i++) {
1760 struct imsm_dev *dev_iter = __get_imsm_dev(super->anchor, i);
ba2de7ba 1761 struct intel_dev *dv;
949c47a0 1762
4d7b1503
DW
1763 len = sizeof_imsm_dev(dev_iter, 0);
1764 len_migr = sizeof_imsm_dev(dev_iter, 1);
1765 if (len_migr > len)
1766 space_needed += len_migr - len;
1767
ba2de7ba
DW
1768 dv = malloc(sizeof(*dv));
1769 if (!dv)
1770 return 1;
4d7b1503 1771 dev_new = malloc(len_migr);
ba2de7ba
DW
1772 if (!dev_new) {
1773 free(dv);
949c47a0 1774 return 1;
ba2de7ba 1775 }
949c47a0 1776 imsm_copy_dev(dev_new, dev_iter);
ba2de7ba
DW
1777 dv->dev = dev_new;
1778 dv->index = i;
1779 dv->next = super->devlist;
1780 super->devlist = dv;
949c47a0 1781 }
cdddbdbc 1782
4d7b1503
DW
1783 /* ensure that super->buf is large enough when all raid devices
1784 * are migrating
1785 */
1786 if (__le32_to_cpu(mpb->mpb_size) + space_needed > super->len) {
1787 void *buf;
1788
1789 len = ROUND_UP(__le32_to_cpu(mpb->mpb_size) + space_needed, 512);
1790 if (posix_memalign(&buf, 512, len) != 0)
1791 return 1;
1792
1f45a8ad
DW
1793 memcpy(buf, super->buf, super->len);
1794 memset(buf + super->len, 0, len - super->len);
4d7b1503
DW
1795 free(super->buf);
1796 super->buf = buf;
1797 super->len = len;
1798 }
1799
cdddbdbc
DW
1800 return 0;
1801}
1802
604b746f
JD
1803/* retrieve a pointer to the bbm log which starts after all raid devices */
1804struct bbm_log *__get_imsm_bbm_log(struct imsm_super *mpb)
1805{
1806 void *ptr = NULL;
1807
1808 if (__le32_to_cpu(mpb->bbm_log_size)) {
1809 ptr = mpb;
1810 ptr += mpb->mpb_size - __le32_to_cpu(mpb->bbm_log_size);
1811 }
1812
1813 return ptr;
1814}
1815
d23fe947 1816static void __free_imsm(struct intel_super *super, int free_disks);
9ca2c81c 1817
cdddbdbc
DW
1818/* load_imsm_mpb - read matrix metadata
1819 * allocates super->mpb to be freed by free_super
1820 */
1821static int load_imsm_mpb(int fd, struct intel_super *super, char *devname)
1822{
1823 unsigned long long dsize;
cdddbdbc
DW
1824 unsigned long long sectors;
1825 struct stat;
6416d527 1826 struct imsm_super *anchor;
cdddbdbc 1827 __u32 check_sum;
949c47a0 1828 int rc;
cdddbdbc 1829
cdddbdbc
DW
1830 get_dev_size(fd, NULL, &dsize);
1831
1832 if (lseek64(fd, dsize - (512 * 2), SEEK_SET) < 0) {
1833 if (devname)
1834 fprintf(stderr,
1835 Name ": Cannot seek to anchor block on %s: %s\n",
1836 devname, strerror(errno));
1837 return 1;
1838 }
1839
949c47a0 1840 if (posix_memalign((void**)&anchor, 512, 512) != 0) {
ad97895e
DW
1841 if (devname)
1842 fprintf(stderr,
1843 Name ": Failed to allocate imsm anchor buffer"
1844 " on %s\n", devname);
1845 return 1;
1846 }
949c47a0 1847 if (read(fd, anchor, 512) != 512) {
cdddbdbc
DW
1848 if (devname)
1849 fprintf(stderr,
1850 Name ": Cannot read anchor block on %s: %s\n",
1851 devname, strerror(errno));
6416d527 1852 free(anchor);
cdddbdbc
DW
1853 return 1;
1854 }
1855
6416d527 1856 if (strncmp((char *) anchor->sig, MPB_SIGNATURE, MPB_SIG_LEN) != 0) {
cdddbdbc
DW
1857 if (devname)
1858 fprintf(stderr,
1859 Name ": no IMSM anchor on %s\n", devname);
6416d527 1860 free(anchor);
cdddbdbc
DW
1861 return 2;
1862 }
1863
d23fe947 1864 __free_imsm(super, 0);
949c47a0
DW
1865 super->len = ROUND_UP(anchor->mpb_size, 512);
1866 if (posix_memalign(&super->buf, 512, super->len) != 0) {
cdddbdbc
DW
1867 if (devname)
1868 fprintf(stderr,
1869 Name ": unable to allocate %zu byte mpb buffer\n",
949c47a0 1870 super->len);
6416d527 1871 free(anchor);
cdddbdbc
DW
1872 return 2;
1873 }
949c47a0 1874 memcpy(super->buf, anchor, 512);
cdddbdbc 1875
6416d527
NB
1876 sectors = mpb_sectors(anchor) - 1;
1877 free(anchor);
949c47a0 1878 if (!sectors) {
ecf45690
DW
1879 check_sum = __gen_imsm_checksum(super->anchor);
1880 if (check_sum != __le32_to_cpu(super->anchor->check_sum)) {
1881 if (devname)
1882 fprintf(stderr,
1883 Name ": IMSM checksum %x != %x on %s\n",
1884 check_sum,
1885 __le32_to_cpu(super->anchor->check_sum),
1886 devname);
1887 return 2;
1888 }
1889
949c47a0
DW
1890 rc = load_imsm_disk(fd, super, devname, 0);
1891 if (rc == 0)
1892 rc = parse_raid_devices(super);
1893 return rc;
1894 }
cdddbdbc
DW
1895
1896 /* read the extended mpb */
1897 if (lseek64(fd, dsize - (512 * (2 + sectors)), SEEK_SET) < 0) {
1898 if (devname)
1899 fprintf(stderr,
1900 Name ": Cannot seek to extended mpb on %s: %s\n",
1901 devname, strerror(errno));
1902 return 1;
1903 }
1904
949c47a0 1905 if (read(fd, super->buf + 512, super->len - 512) != super->len - 512) {
cdddbdbc
DW
1906 if (devname)
1907 fprintf(stderr,
1908 Name ": Cannot read extended mpb on %s: %s\n",
1909 devname, strerror(errno));
1910 return 2;
1911 }
1912
949c47a0
DW
1913 check_sum = __gen_imsm_checksum(super->anchor);
1914 if (check_sum != __le32_to_cpu(super->anchor->check_sum)) {
cdddbdbc
DW
1915 if (devname)
1916 fprintf(stderr,
1917 Name ": IMSM checksum %x != %x on %s\n",
949c47a0 1918 check_sum, __le32_to_cpu(super->anchor->check_sum),
cdddbdbc 1919 devname);
db575f3b 1920 return 3;
cdddbdbc
DW
1921 }
1922
604b746f
JD
1923 /* FIXME the BBM log is disk specific so we cannot use this global
1924 * buffer for all disks. Ok for now since we only look at the global
1925 * bbm_log_size parameter to gate assembly
1926 */
1927 super->bbm_log = __get_imsm_bbm_log(super->anchor);
1928
949c47a0
DW
1929 rc = load_imsm_disk(fd, super, devname, 0);
1930 if (rc == 0)
1931 rc = parse_raid_devices(super);
4d7b1503 1932
949c47a0 1933 return rc;
cdddbdbc
DW
1934}
1935
ae6aad82
DW
1936static void __free_imsm_disk(struct dl *d)
1937{
1938 if (d->fd >= 0)
1939 close(d->fd);
1940 if (d->devname)
1941 free(d->devname);
0dcecb2e
DW
1942 if (d->e)
1943 free(d->e);
ae6aad82
DW
1944 free(d);
1945
1946}
cdddbdbc
DW
1947static void free_imsm_disks(struct intel_super *super)
1948{
47ee5a45 1949 struct dl *d;
cdddbdbc 1950
47ee5a45
DW
1951 while (super->disks) {
1952 d = super->disks;
cdddbdbc 1953 super->disks = d->next;
ae6aad82 1954 __free_imsm_disk(d);
cdddbdbc 1955 }
47ee5a45
DW
1956 while (super->missing) {
1957 d = super->missing;
1958 super->missing = d->next;
1959 __free_imsm_disk(d);
1960 }
1961
cdddbdbc
DW
1962}
1963
9ca2c81c 1964/* free all the pieces hanging off of a super pointer */
d23fe947 1965static void __free_imsm(struct intel_super *super, int free_disks)
cdddbdbc 1966{
9ca2c81c 1967 if (super->buf) {
949c47a0 1968 free(super->buf);
9ca2c81c
DW
1969 super->buf = NULL;
1970 }
d23fe947
DW
1971 if (free_disks)
1972 free_imsm_disks(super);
ba2de7ba 1973 free_devlist(super);
88c32bb1
DW
1974 if (super->hba) {
1975 free((void *) super->hba);
1976 super->hba = NULL;
1977 }
cdddbdbc
DW
1978}
1979
9ca2c81c
DW
1980static void free_imsm(struct intel_super *super)
1981{
d23fe947 1982 __free_imsm(super, 1);
9ca2c81c
DW
1983 free(super);
1984}
cdddbdbc
DW
1985
1986static void free_super_imsm(struct supertype *st)
1987{
1988 struct intel_super *super = st->sb;
1989
1990 if (!super)
1991 return;
1992
1993 free_imsm(super);
1994 st->sb = NULL;
1995}
1996
c2c087e6
DW
1997static struct intel_super *alloc_super(int creating_imsm)
1998{
1999 struct intel_super *super = malloc(sizeof(*super));
2000
2001 if (super) {
2002 memset(super, 0, sizeof(*super));
2003 super->creating_imsm = creating_imsm;
bf5a934a 2004 super->current_vol = -1;
0dcecb2e 2005 super->create_offset = ~((__u32 ) 0);
88c32bb1
DW
2006 if (!check_env("IMSM_NO_PLATFORM"))
2007 super->orom = find_imsm_orom();
cceebc67 2008 if (super->orom && !check_env("IMSM_TEST_OROM")) {
88c32bb1
DW
2009 struct sys_dev *list, *ent;
2010
2011 /* find the first intel ahci controller */
2012 list = find_driver_devices("pci", "ahci");
2013 for (ent = list; ent; ent = ent->next)
2014 if (devpath_to_vendor(ent->path) == 0x8086)
2015 break;
2016 if (ent) {
2017 super->hba = ent->path;
2018 ent->path = NULL;
2019 }
2020 free_sys_dev(&list);
2021 }
c2c087e6
DW
2022 }
2023
2024 return super;
2025}
2026
cdddbdbc 2027#ifndef MDASSEMBLE
47ee5a45
DW
2028/* find_missing - helper routine for load_super_imsm_all that identifies
2029 * disks that have disappeared from the system. This routine relies on
2030 * the mpb being uptodate, which it is at load time.
2031 */
2032static int find_missing(struct intel_super *super)
2033{
2034 int i;
2035 struct imsm_super *mpb = super->anchor;
2036 struct dl *dl;
2037 struct imsm_disk *disk;
47ee5a45
DW
2038
2039 for (i = 0; i < mpb->num_disks; i++) {
2040 disk = __get_imsm_disk(mpb, i);
54c2c1ea 2041 dl = serial_to_dl(disk->serial, super);
47ee5a45
DW
2042 if (dl)
2043 continue;
47ee5a45
DW
2044
2045 dl = malloc(sizeof(*dl));
2046 if (!dl)
2047 return 1;
2048 dl->major = 0;
2049 dl->minor = 0;
2050 dl->fd = -1;
2051 dl->devname = strdup("missing");
2052 dl->index = i;
2053 serialcpy(dl->serial, disk->serial);
2054 dl->disk = *disk;
689c9bf3 2055 dl->e = NULL;
47ee5a45
DW
2056 dl->next = super->missing;
2057 super->missing = dl;
2058 }
2059
2060 return 0;
2061}
2062
cdddbdbc
DW
2063static int load_super_imsm_all(struct supertype *st, int fd, void **sbp,
2064 char *devname, int keep_fd)
2065{
2066 struct mdinfo *sra;
2067 struct intel_super *super;
2068 struct mdinfo *sd, *best = NULL;
2069 __u32 bestgen = 0;
2070 __u32 gen;
2071 char nm[20];
2072 int dfd;
2073 int rv;
db575f3b
DW
2074 int devnum = fd2devnum(fd);
2075 int retry;
dab4a513 2076 enum sysfs_read_flags flags;
cdddbdbc 2077
dab4a513
DW
2078 flags = GET_LEVEL|GET_VERSION|GET_DEVS|GET_STATE;
2079 if (mdmon_running(devnum))
2080 flags |= SKIP_GONE_DEVS;
2081
2082 /* check if 'fd' an opened container */
2083 sra = sysfs_read(fd, 0, flags);
cdddbdbc
DW
2084 if (!sra)
2085 return 1;
2086
2087 if (sra->array.major_version != -1 ||
2088 sra->array.minor_version != -2 ||
2089 strcmp(sra->text_version, "imsm") != 0)
2090 return 1;
2091
c2c087e6 2092 super = alloc_super(0);
cdddbdbc
DW
2093 if (!super)
2094 return 1;
2095
d23fe947 2096 /* find the most up to date disk in this array, skipping spares */
cdddbdbc
DW
2097 for (sd = sra->devs; sd; sd = sd->next) {
2098 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
2099 dfd = dev_open(nm, keep_fd ? O_RDWR : O_RDONLY);
be2c0e38 2100 if (dfd < 0) {
cdddbdbc
DW
2101 free_imsm(super);
2102 return 2;
2103 }
2104 rv = load_imsm_mpb(dfd, super, NULL);
db575f3b
DW
2105
2106 /* retry the load if we might have raced against mdmon */
2107 if (rv == 3 && mdmon_running(devnum))
2108 for (retry = 0; retry < 3; retry++) {
2109 usleep(3000);
2110 rv = load_imsm_mpb(dfd, super, NULL);
2111 if (rv != 3)
2112 break;
2113 }
cdddbdbc
DW
2114 if (!keep_fd)
2115 close(dfd);
2116 if (rv == 0) {
d23fe947
DW
2117 if (super->anchor->num_raid_devs == 0)
2118 gen = 0;
2119 else
2120 gen = __le32_to_cpu(super->anchor->generation_num);
cdddbdbc
DW
2121 if (!best || gen > bestgen) {
2122 bestgen = gen;
2123 best = sd;
2124 }
2125 } else {
2126 free_imsm(super);
db575f3b 2127 return rv;
cdddbdbc
DW
2128 }
2129 }
2130
2131 if (!best) {
2132 free_imsm(super);
2133 return 1;
2134 }
2135
2136 /* load the most up to date anchor */
2137 sprintf(nm, "%d:%d", best->disk.major, best->disk.minor);
2138 dfd = dev_open(nm, O_RDONLY);
be2c0e38 2139 if (dfd < 0) {
cdddbdbc
DW
2140 free_imsm(super);
2141 return 1;
2142 }
2143 rv = load_imsm_mpb(dfd, super, NULL);
2144 close(dfd);
2145 if (rv != 0) {
2146 free_imsm(super);
2147 return 2;
2148 }
2149
d23fe947 2150 /* re-parse the disk list with the current anchor */
cdddbdbc
DW
2151 for (sd = sra->devs ; sd ; sd = sd->next) {
2152 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
2153 dfd = dev_open(nm, keep_fd? O_RDWR : O_RDONLY);
be2c0e38 2154 if (dfd < 0) {
cdddbdbc
DW
2155 free_imsm(super);
2156 return 2;
2157 }
2158 load_imsm_disk(dfd, super, NULL, keep_fd);
2159 if (!keep_fd)
2160 close(dfd);
2161 }
2162
47ee5a45
DW
2163
2164 if (find_missing(super) != 0) {
2165 free_imsm(super);
2166 return 2;
2167 }
2168
f7e7067b 2169 if (st->subarray[0]) {
949c47a0 2170 if (atoi(st->subarray) <= super->anchor->num_raid_devs)
bf5a934a 2171 super->current_vol = atoi(st->subarray);
af99d9ca
DW
2172 else {
2173 free_imsm(super);
bf5a934a 2174 return 1;
af99d9ca 2175 }
f7e7067b
NB
2176 }
2177
cdddbdbc 2178 *sbp = super;
db575f3b 2179 st->container_dev = devnum;
cdddbdbc 2180 if (st->ss == NULL) {
bf5a934a 2181 st->ss = &super_imsm;
cdddbdbc
DW
2182 st->minor_version = 0;
2183 st->max_devs = IMSM_MAX_DEVICES;
2184 }
352452c3 2185 st->loaded_container = 1;
cdddbdbc
DW
2186
2187 return 0;
2188}
2189#endif
2190
2191static int load_super_imsm(struct supertype *st, int fd, char *devname)
2192{
2193 struct intel_super *super;
2194 int rv;
2195
2196#ifndef MDASSEMBLE
3dbccbcf 2197 if (load_super_imsm_all(st, fd, &st->sb, devname, 1) == 0)
cdddbdbc
DW
2198 return 0;
2199#endif
2200
37424f13
DW
2201 free_super_imsm(st);
2202
c2c087e6 2203 super = alloc_super(0);
cdddbdbc
DW
2204 if (!super) {
2205 fprintf(stderr,
2206 Name ": malloc of %zu failed.\n",
2207 sizeof(*super));
2208 return 1;
2209 }
2210
2211 rv = load_imsm_mpb(fd, super, devname);
2212
2213 if (rv) {
2214 if (devname)
2215 fprintf(stderr,
2216 Name ": Failed to load all information "
2217 "sections on %s\n", devname);
2218 free_imsm(super);
2219 return rv;
2220 }
2221
af99d9ca
DW
2222 if (st->subarray[0]) {
2223 if (atoi(st->subarray) <= super->anchor->num_raid_devs)
2224 super->current_vol = atoi(st->subarray);
2225 else {
2226 free_imsm(super);
2227 return 1;
2228 }
2229 }
2230
cdddbdbc
DW
2231 st->sb = super;
2232 if (st->ss == NULL) {
2233 st->ss = &super_imsm;
2234 st->minor_version = 0;
2235 st->max_devs = IMSM_MAX_DEVICES;
2236 }
352452c3 2237 st->loaded_container = 0;
cdddbdbc
DW
2238
2239 return 0;
2240}
2241
ef6ffade
DW
2242static __u16 info_to_blocks_per_strip(mdu_array_info_t *info)
2243{
2244 if (info->level == 1)
2245 return 128;
2246 return info->chunk_size >> 9;
2247}
2248
ff596308 2249static __u32 info_to_num_data_stripes(mdu_array_info_t *info, int num_domains)
ef6ffade
DW
2250{
2251 __u32 num_stripes;
2252
2253 num_stripes = (info->size * 2) / info_to_blocks_per_strip(info);
ff596308 2254 num_stripes /= num_domains;
ef6ffade
DW
2255
2256 return num_stripes;
2257}
2258
fcfd9599
DW
2259static __u32 info_to_blocks_per_member(mdu_array_info_t *info)
2260{
4025c288
DW
2261 if (info->level == 1)
2262 return info->size * 2;
2263 else
2264 return (info->size * 2) & ~(info_to_blocks_per_strip(info) - 1);
fcfd9599
DW
2265}
2266
4d1313e9
DW
2267static void imsm_update_version_info(struct intel_super *super)
2268{
2269 /* update the version and attributes */
2270 struct imsm_super *mpb = super->anchor;
2271 char *version;
2272 struct imsm_dev *dev;
2273 struct imsm_map *map;
2274 int i;
2275
2276 for (i = 0; i < mpb->num_raid_devs; i++) {
2277 dev = get_imsm_dev(super, i);
2278 map = get_imsm_map(dev, 0);
2279 if (__le32_to_cpu(dev->size_high) > 0)
2280 mpb->attributes |= MPB_ATTRIB_2TB;
2281
2282 /* FIXME detect when an array spans a port multiplier */
2283 #if 0
2284 mpb->attributes |= MPB_ATTRIB_PM;
2285 #endif
2286
2287 if (mpb->num_raid_devs > 1 ||
2288 mpb->attributes != MPB_ATTRIB_CHECKSUM_VERIFY) {
2289 version = MPB_VERSION_ATTRIBS;
2290 switch (get_imsm_raid_level(map)) {
2291 case 0: mpb->attributes |= MPB_ATTRIB_RAID0; break;
2292 case 1: mpb->attributes |= MPB_ATTRIB_RAID1; break;
2293 case 10: mpb->attributes |= MPB_ATTRIB_RAID10; break;
2294 case 5: mpb->attributes |= MPB_ATTRIB_RAID5; break;
2295 }
2296 } else {
2297 if (map->num_members >= 5)
2298 version = MPB_VERSION_5OR6_DISK_ARRAY;
2299 else if (dev->status == DEV_CLONE_N_GO)
2300 version = MPB_VERSION_CNG;
2301 else if (get_imsm_raid_level(map) == 5)
2302 version = MPB_VERSION_RAID5;
2303 else if (map->num_members >= 3)
2304 version = MPB_VERSION_3OR4_DISK_ARRAY;
2305 else if (get_imsm_raid_level(map) == 1)
2306 version = MPB_VERSION_RAID1;
2307 else
2308 version = MPB_VERSION_RAID0;
2309 }
2310 strcpy(((char *) mpb->sig) + strlen(MPB_SIGNATURE), version);
2311 }
2312}
2313
8b353278
DW
2314static int init_super_imsm_volume(struct supertype *st, mdu_array_info_t *info,
2315 unsigned long long size, char *name,
2316 char *homehost, int *uuid)
cdddbdbc 2317{
c2c087e6
DW
2318 /* We are creating a volume inside a pre-existing container.
2319 * so st->sb is already set.
2320 */
2321 struct intel_super *super = st->sb;
949c47a0 2322 struct imsm_super *mpb = super->anchor;
ba2de7ba 2323 struct intel_dev *dv;
c2c087e6
DW
2324 struct imsm_dev *dev;
2325 struct imsm_vol *vol;
2326 struct imsm_map *map;
2327 int idx = mpb->num_raid_devs;
2328 int i;
2329 unsigned long long array_blocks;
2c092cad 2330 size_t size_old, size_new;
ff596308 2331 __u32 num_data_stripes;
cdddbdbc 2332
88c32bb1 2333 if (super->orom && mpb->num_raid_devs >= super->orom->vpa) {
c2c087e6 2334 fprintf(stderr, Name": This imsm-container already has the "
88c32bb1 2335 "maximum of %d volumes\n", super->orom->vpa);
c2c087e6
DW
2336 return 0;
2337 }
2338
2c092cad
DW
2339 /* ensure the mpb is large enough for the new data */
2340 size_old = __le32_to_cpu(mpb->mpb_size);
2341 size_new = disks_to_mpb_size(info->nr_disks);
2342 if (size_new > size_old) {
2343 void *mpb_new;
2344 size_t size_round = ROUND_UP(size_new, 512);
2345
2346 if (posix_memalign(&mpb_new, 512, size_round) != 0) {
2347 fprintf(stderr, Name": could not allocate new mpb\n");
2348 return 0;
2349 }
2350 memcpy(mpb_new, mpb, size_old);
2351 free(mpb);
2352 mpb = mpb_new;
949c47a0 2353 super->anchor = mpb_new;
2c092cad
DW
2354 mpb->mpb_size = __cpu_to_le32(size_new);
2355 memset(mpb_new + size_old, 0, size_round - size_old);
2356 }
bf5a934a 2357 super->current_vol = idx;
d23fe947
DW
2358 /* when creating the first raid device in this container set num_disks
2359 * to zero, i.e. delete this spare and add raid member devices in
2360 * add_to_super_imsm_volume()
2361 */
2362 if (super->current_vol == 0)
2363 mpb->num_disks = 0;
5a038140
DW
2364
2365 for (i = 0; i < super->current_vol; i++) {
2366 dev = get_imsm_dev(super, i);
2367 if (strncmp((char *) dev->volume, name,
2368 MAX_RAID_SERIAL_LEN) == 0) {
2369 fprintf(stderr, Name": '%s' is already defined for this container\n",
2370 name);
2371 return 0;
2372 }
2373 }
2374
bf5a934a 2375 sprintf(st->subarray, "%d", idx);
ba2de7ba
DW
2376 dv = malloc(sizeof(*dv));
2377 if (!dv) {
2378 fprintf(stderr, Name ": failed to allocate device list entry\n");
2379 return 0;
2380 }
949c47a0
DW
2381 dev = malloc(sizeof(*dev) + sizeof(__u32) * (info->raid_disks - 1));
2382 if (!dev) {
ba2de7ba 2383 free(dv);
949c47a0
DW
2384 fprintf(stderr, Name": could not allocate raid device\n");
2385 return 0;
2386 }
c2c087e6 2387 strncpy((char *) dev->volume, name, MAX_RAID_SERIAL_LEN);
03bcbc65
DW
2388 if (info->level == 1)
2389 array_blocks = info_to_blocks_per_member(info);
2390 else
2391 array_blocks = calc_array_size(info->level, info->raid_disks,
2392 info->layout, info->chunk_size,
2393 info->size*2);
979d38be
DW
2394 /* round array size down to closest MB */
2395 array_blocks = (array_blocks >> SECT_PER_MB_SHIFT) << SECT_PER_MB_SHIFT;
2396
c2c087e6
DW
2397 dev->size_low = __cpu_to_le32((__u32) array_blocks);
2398 dev->size_high = __cpu_to_le32((__u32) (array_blocks >> 32));
2399 dev->status = __cpu_to_le32(0);
2400 dev->reserved_blocks = __cpu_to_le32(0);
2401 vol = &dev->vol;
2402 vol->migr_state = 0;
1484e727 2403 set_migr_type(dev, MIGR_INIT);
c2c087e6 2404 vol->dirty = 0;
f8f603f1 2405 vol->curr_migr_unit = 0;
a965f303 2406 map = get_imsm_map(dev, 0);
0dcecb2e 2407 map->pba_of_lba0 = __cpu_to_le32(super->create_offset);
fcfd9599 2408 map->blocks_per_member = __cpu_to_le32(info_to_blocks_per_member(info));
ef6ffade 2409 map->blocks_per_strip = __cpu_to_le16(info_to_blocks_per_strip(info));
0556e1a2 2410 map->failed_disk_num = ~0;
c2c087e6
DW
2411 map->map_state = info->level ? IMSM_T_STATE_UNINITIALIZED :
2412 IMSM_T_STATE_NORMAL;
252d23c0 2413 map->ddf = 1;
ef6ffade
DW
2414
2415 if (info->level == 1 && info->raid_disks > 2) {
2416 fprintf(stderr, Name": imsm does not support more than 2 disks"
2417 "in a raid1 volume\n");
2418 return 0;
2419 }
81062a36
DW
2420
2421 map->raid_level = info->level;
4d1313e9 2422 if (info->level == 10) {
c2c087e6 2423 map->raid_level = 1;
4d1313e9 2424 map->num_domains = info->raid_disks / 2;
81062a36
DW
2425 } else if (info->level == 1)
2426 map->num_domains = info->raid_disks;
2427 else
ff596308 2428 map->num_domains = 1;
81062a36 2429
ff596308
DW
2430 num_data_stripes = info_to_num_data_stripes(info, map->num_domains);
2431 map->num_data_stripes = __cpu_to_le32(num_data_stripes);
ef6ffade 2432
c2c087e6
DW
2433 map->num_members = info->raid_disks;
2434 for (i = 0; i < map->num_members; i++) {
2435 /* initialized in add_to_super */
be73972f 2436 set_imsm_ord_tbl_ent(map, i, 0);
c2c087e6 2437 }
949c47a0 2438 mpb->num_raid_devs++;
ba2de7ba
DW
2439
2440 dv->dev = dev;
2441 dv->index = super->current_vol;
2442 dv->next = super->devlist;
2443 super->devlist = dv;
c2c087e6 2444
4d1313e9
DW
2445 imsm_update_version_info(super);
2446
c2c087e6 2447 return 1;
cdddbdbc
DW
2448}
2449
bf5a934a
DW
2450static int init_super_imsm(struct supertype *st, mdu_array_info_t *info,
2451 unsigned long long size, char *name,
2452 char *homehost, int *uuid)
2453{
2454 /* This is primarily called by Create when creating a new array.
2455 * We will then get add_to_super called for each component, and then
2456 * write_init_super called to write it out to each device.
2457 * For IMSM, Create can create on fresh devices or on a pre-existing
2458 * array.
2459 * To create on a pre-existing array a different method will be called.
2460 * This one is just for fresh drives.
2461 */
2462 struct intel_super *super;
2463 struct imsm_super *mpb;
2464 size_t mpb_size;
4d1313e9 2465 char *version;
bf5a934a
DW
2466
2467 if (!info) {
2468 st->sb = NULL;
2469 return 0;
2470 }
2471 if (st->sb)
2472 return init_super_imsm_volume(st, info, size, name, homehost,
2473 uuid);
2474
2475 super = alloc_super(1);
2476 if (!super)
2477 return 0;
2478 mpb_size = disks_to_mpb_size(info->nr_disks);
ef649044 2479 if (posix_memalign(&super->buf, 512, mpb_size) != 0) {
bf5a934a
DW
2480 free(super);
2481 return 0;
2482 }
ef649044 2483 mpb = super->buf;
bf5a934a
DW
2484 memset(mpb, 0, mpb_size);
2485
4d1313e9
DW
2486 mpb->attributes = MPB_ATTRIB_CHECKSUM_VERIFY;
2487
2488 version = (char *) mpb->sig;
2489 strcpy(version, MPB_SIGNATURE);
2490 version += strlen(MPB_SIGNATURE);
2491 strcpy(version, MPB_VERSION_RAID0);
bf5a934a
DW
2492 mpb->mpb_size = mpb_size;
2493
bf5a934a
DW
2494 st->sb = super;
2495 return 1;
2496}
2497
0e600426 2498#ifndef MDASSEMBLE
f20c3968 2499static int add_to_super_imsm_volume(struct supertype *st, mdu_disk_info_t *dk,
bf5a934a
DW
2500 int fd, char *devname)
2501{
2502 struct intel_super *super = st->sb;
d23fe947 2503 struct imsm_super *mpb = super->anchor;
bf5a934a
DW
2504 struct dl *dl;
2505 struct imsm_dev *dev;
2506 struct imsm_map *map;
bf5a934a 2507
949c47a0 2508 dev = get_imsm_dev(super, super->current_vol);
a965f303 2509 map = get_imsm_map(dev, 0);
bf5a934a 2510
208933a7
N
2511 if (! (dk->state & (1<<MD_DISK_SYNC))) {
2512 fprintf(stderr, Name ": %s: Cannot add spare devices to IMSM volume\n",
2513 devname);
2514 return 1;
2515 }
2516
efb30e7f
DW
2517 if (fd == -1) {
2518 /* we're doing autolayout so grab the pre-marked (in
2519 * validate_geometry) raid_disk
2520 */
2521 for (dl = super->disks; dl; dl = dl->next)
2522 if (dl->raiddisk == dk->raid_disk)
2523 break;
2524 } else {
2525 for (dl = super->disks; dl ; dl = dl->next)
2526 if (dl->major == dk->major &&
2527 dl->minor == dk->minor)
2528 break;
2529 }
d23fe947 2530
208933a7
N
2531 if (!dl) {
2532 fprintf(stderr, Name ": %s is not a member of the same container\n", devname);
f20c3968 2533 return 1;
208933a7 2534 }
bf5a934a 2535
d23fe947
DW
2536 /* add a pristine spare to the metadata */
2537 if (dl->index < 0) {
2538 dl->index = super->anchor->num_disks;
2539 super->anchor->num_disks++;
2540 }
be73972f 2541 set_imsm_ord_tbl_ent(map, dk->number, dl->index);
f2f27e63 2542 dl->disk.status = CONFIGURED_DISK | USABLE_DISK;
d23fe947
DW
2543
2544 /* if we are creating the first raid device update the family number */
2545 if (super->current_vol == 0) {
2546 __u32 sum;
2547 struct imsm_dev *_dev = __get_imsm_dev(mpb, 0);
2548 struct imsm_disk *_disk = __get_imsm_disk(mpb, dl->index);
2549
2550 *_dev = *dev;
2551 *_disk = dl->disk;
2552 sum = __gen_imsm_checksum(mpb);
2553 mpb->family_num = __cpu_to_le32(sum);
2554 }
f20c3968
DW
2555
2556 return 0;
bf5a934a
DW
2557}
2558
f20c3968 2559static int add_to_super_imsm(struct supertype *st, mdu_disk_info_t *dk,
cdddbdbc
DW
2560 int fd, char *devname)
2561{
c2c087e6 2562 struct intel_super *super = st->sb;
c2c087e6
DW
2563 struct dl *dd;
2564 unsigned long long size;
f2f27e63 2565 __u32 id;
c2c087e6
DW
2566 int rv;
2567 struct stat stb;
2568
88c32bb1
DW
2569 /* if we are on an RAID enabled platform check that the disk is
2570 * attached to the raid controller
2571 */
2572 if (super->hba && !disk_attached_to_hba(fd, super->hba)) {
2573 fprintf(stderr,
2574 Name ": %s is not attached to the raid controller: %s\n",
2575 devname ? : "disk", super->hba);
2576 return 1;
2577 }
2578
f20c3968
DW
2579 if (super->current_vol >= 0)
2580 return add_to_super_imsm_volume(st, dk, fd, devname);
bf5a934a 2581
c2c087e6
DW
2582 fstat(fd, &stb);
2583 dd = malloc(sizeof(*dd));
b9f594fe 2584 if (!dd) {
c2c087e6
DW
2585 fprintf(stderr,
2586 Name ": malloc failed %s:%d.\n", __func__, __LINE__);
f20c3968 2587 return 1;
c2c087e6
DW
2588 }
2589 memset(dd, 0, sizeof(*dd));
2590 dd->major = major(stb.st_rdev);
2591 dd->minor = minor(stb.st_rdev);
b9f594fe 2592 dd->index = -1;
c2c087e6 2593 dd->devname = devname ? strdup(devname) : NULL;
c2c087e6 2594 dd->fd = fd;
689c9bf3 2595 dd->e = NULL;
c2c087e6
DW
2596 rv = imsm_read_serial(fd, devname, dd->serial);
2597 if (rv) {
2598 fprintf(stderr,
0030e8d6 2599 Name ": failed to retrieve scsi serial, aborting\n");
949c47a0 2600 free(dd);
0030e8d6 2601 abort();
c2c087e6
DW
2602 }
2603
c2c087e6
DW
2604 get_dev_size(fd, NULL, &size);
2605 size /= 512;
1f24f035 2606 serialcpy(dd->disk.serial, dd->serial);
b9f594fe 2607 dd->disk.total_blocks = __cpu_to_le32(size);
f2f27e63 2608 dd->disk.status = USABLE_DISK | SPARE_DISK;
c2c087e6 2609 if (sysfs_disk_to_scsi_id(fd, &id) == 0)
b9f594fe 2610 dd->disk.scsi_id = __cpu_to_le32(id);
c2c087e6 2611 else
b9f594fe 2612 dd->disk.scsi_id = __cpu_to_le32(0);
43dad3d6
DW
2613
2614 if (st->update_tail) {
2615 dd->next = super->add;
2616 super->add = dd;
2617 } else {
2618 dd->next = super->disks;
2619 super->disks = dd;
2620 }
f20c3968
DW
2621
2622 return 0;
cdddbdbc
DW
2623}
2624
c2c087e6
DW
2625static int store_imsm_mpb(int fd, struct intel_super *super);
2626
d23fe947
DW
2627/* spare records have their own family number and do not have any defined raid
2628 * devices
2629 */
2630static int write_super_imsm_spares(struct intel_super *super, int doclose)
2631{
2632 struct imsm_super mpb_save;
2633 struct imsm_super *mpb = super->anchor;
2634 __u32 sum;
2635 struct dl *d;
2636
2637 mpb_save = *mpb;
2638 mpb->num_raid_devs = 0;
2639 mpb->num_disks = 1;
2640 mpb->mpb_size = sizeof(struct imsm_super);
2641 mpb->generation_num = __cpu_to_le32(1UL);
2642
2643 for (d = super->disks; d; d = d->next) {
8796fdc4 2644 if (d->index != -1)
d23fe947
DW
2645 continue;
2646
2647 mpb->disk[0] = d->disk;
2648 sum = __gen_imsm_checksum(mpb);
2649 mpb->family_num = __cpu_to_le32(sum);
2650 sum = __gen_imsm_checksum(mpb);
2651 mpb->check_sum = __cpu_to_le32(sum);
2652
2653 if (store_imsm_mpb(d->fd, super)) {
2654 fprintf(stderr, "%s: failed for device %d:%d %s\n",
2655 __func__, d->major, d->minor, strerror(errno));
2656 *mpb = mpb_save;
e74255d9 2657 return 1;
d23fe947
DW
2658 }
2659 if (doclose) {
2660 close(d->fd);
2661 d->fd = -1;
2662 }
2663 }
2664
2665 *mpb = mpb_save;
e74255d9 2666 return 0;
d23fe947
DW
2667}
2668
c2c087e6 2669static int write_super_imsm(struct intel_super *super, int doclose)
cdddbdbc 2670{
949c47a0 2671 struct imsm_super *mpb = super->anchor;
c2c087e6
DW
2672 struct dl *d;
2673 __u32 generation;
2674 __u32 sum;
d23fe947 2675 int spares = 0;
949c47a0 2676 int i;
a48ac0a8 2677 __u32 mpb_size = sizeof(struct imsm_super) - sizeof(struct imsm_disk);
cdddbdbc 2678
c2c087e6
DW
2679 /* 'generation' is incremented everytime the metadata is written */
2680 generation = __le32_to_cpu(mpb->generation_num);
2681 generation++;
2682 mpb->generation_num = __cpu_to_le32(generation);
2683
1ee1e9fc 2684 mpb_size += sizeof(struct imsm_disk) * mpb->num_disks;
d23fe947 2685 for (d = super->disks; d; d = d->next) {
8796fdc4 2686 if (d->index == -1)
d23fe947 2687 spares++;
1ee1e9fc 2688 else
d23fe947 2689 mpb->disk[d->index] = d->disk;
d23fe947 2690 }
47ee5a45
DW
2691 for (d = super->missing; d; d = d->next)
2692 mpb->disk[d->index] = d->disk;
b9f594fe 2693
949c47a0
DW
2694 for (i = 0; i < mpb->num_raid_devs; i++) {
2695 struct imsm_dev *dev = __get_imsm_dev(mpb, i);
2696
ba2de7ba 2697 imsm_copy_dev(dev, get_imsm_dev(super, i));
a48ac0a8 2698 mpb_size += sizeof_imsm_dev(dev, 0);
949c47a0 2699 }
a48ac0a8
DW
2700 mpb_size += __le32_to_cpu(mpb->bbm_log_size);
2701 mpb->mpb_size = __cpu_to_le32(mpb_size);
949c47a0 2702
c2c087e6 2703 /* recalculate checksum */
949c47a0 2704 sum = __gen_imsm_checksum(mpb);
c2c087e6
DW
2705 mpb->check_sum = __cpu_to_le32(sum);
2706
d23fe947 2707 /* write the mpb for disks that compose raid devices */
c2c087e6 2708 for (d = super->disks; d ; d = d->next) {
d23fe947
DW
2709 if (d->index < 0)
2710 continue;
8796fdc4 2711 if (store_imsm_mpb(d->fd, super))
c2c087e6
DW
2712 fprintf(stderr, "%s: failed for device %d:%d %s\n",
2713 __func__, d->major, d->minor, strerror(errno));
c2c087e6
DW
2714 if (doclose) {
2715 close(d->fd);
2716 d->fd = -1;
2717 }
2718 }
2719
d23fe947
DW
2720 if (spares)
2721 return write_super_imsm_spares(super, doclose);
2722
e74255d9 2723 return 0;
c2c087e6
DW
2724}
2725
0e600426 2726
43dad3d6
DW
2727static int create_array(struct supertype *st)
2728{
2729 size_t len;
2730 struct imsm_update_create_array *u;
2731 struct intel_super *super = st->sb;
2732 struct imsm_dev *dev = get_imsm_dev(super, super->current_vol);
54c2c1ea
DW
2733 struct imsm_map *map = get_imsm_map(dev, 0);
2734 struct disk_info *inf;
2735 struct imsm_disk *disk;
2736 int i;
2737 int idx;
43dad3d6 2738
54c2c1ea
DW
2739 len = sizeof(*u) - sizeof(*dev) + sizeof_imsm_dev(dev, 0) +
2740 sizeof(*inf) * map->num_members;
43dad3d6
DW
2741 u = malloc(len);
2742 if (!u) {
2743 fprintf(stderr, "%s: failed to allocate update buffer\n",
2744 __func__);
2745 return 1;
2746 }
2747
2748 u->type = update_create_array;
2749 u->dev_idx = super->current_vol;
2750 imsm_copy_dev(&u->dev, dev);
54c2c1ea
DW
2751 inf = get_disk_info(u);
2752 for (i = 0; i < map->num_members; i++) {
2753 idx = get_imsm_disk_idx(dev, i);
2754 disk = get_imsm_disk(super, idx);
2755 serialcpy(inf[i].serial, disk->serial);
2756 }
43dad3d6
DW
2757 append_metadata_update(st, u, len);
2758
2759 return 0;
2760}
2761
7801ac20 2762static int _add_disk(struct supertype *st)
43dad3d6
DW
2763{
2764 struct intel_super *super = st->sb;
2765 size_t len;
2766 struct imsm_update_add_disk *u;
2767
2768 if (!super->add)
2769 return 0;
2770
2771 len = sizeof(*u);
2772 u = malloc(len);
2773 if (!u) {
2774 fprintf(stderr, "%s: failed to allocate update buffer\n",
2775 __func__);
2776 return 1;
2777 }
2778
2779 u->type = update_add_disk;
2780 append_metadata_update(st, u, len);
2781
2782 return 0;
2783}
2784
c2c087e6
DW
2785static int write_init_super_imsm(struct supertype *st)
2786{
8273f55e 2787 if (st->update_tail) {
43dad3d6
DW
2788 /* queue the recently created array / added disk
2789 * as a metadata update */
8273f55e 2790 struct intel_super *super = st->sb;
8273f55e 2791 struct dl *d;
43dad3d6 2792 int rv;
8273f55e 2793
43dad3d6
DW
2794 /* determine if we are creating a volume or adding a disk */
2795 if (super->current_vol < 0) {
2796 /* in the add disk case we are running in mdmon
2797 * context, so don't close fd's
2798 */
7801ac20 2799 return _add_disk(st);
43dad3d6
DW
2800 } else
2801 rv = create_array(st);
8273f55e
DW
2802
2803 for (d = super->disks; d ; d = d->next) {
2804 close(d->fd);
2805 d->fd = -1;
2806 }
2807
43dad3d6 2808 return rv;
8273f55e
DW
2809 } else
2810 return write_super_imsm(st->sb, 1);
cdddbdbc 2811}
0e600426 2812#endif
cdddbdbc
DW
2813
2814static int store_zero_imsm(struct supertype *st, int fd)
2815{
551c80c1 2816 unsigned long long dsize;
6416d527 2817 void *buf;
551c80c1
DW
2818
2819 get_dev_size(fd, NULL, &dsize);
2820
2821 /* first block is stored on second to last sector of the disk */
2822 if (lseek64(fd, dsize - (512 * 2), SEEK_SET) < 0)
2823 return 1;
2824
ad97895e
DW
2825 if (posix_memalign(&buf, 512, 512) != 0)
2826 return 1;
2827
eb7ea463
DW
2828 memset(buf, 0, 512);
2829 if (write(fd, buf, 512) != 512)
551c80c1 2830 return 1;
cdddbdbc
DW
2831 return 0;
2832}
2833
0e600426
N
2834static int imsm_bbm_log_size(struct imsm_super *mpb)
2835{
2836 return __le32_to_cpu(mpb->bbm_log_size);
2837}
2838
2839#ifndef MDASSEMBLE
cdddbdbc
DW
2840static int validate_geometry_imsm_container(struct supertype *st, int level,
2841 int layout, int raiddisks, int chunk,
c2c087e6 2842 unsigned long long size, char *dev,
2c514b71
NB
2843 unsigned long long *freesize,
2844 int verbose)
cdddbdbc 2845{
c2c087e6
DW
2846 int fd;
2847 unsigned long long ldsize;
88c32bb1 2848 const struct imsm_orom *orom;
cdddbdbc 2849
c2c087e6
DW
2850 if (level != LEVEL_CONTAINER)
2851 return 0;
2852 if (!dev)
2853 return 1;
2854
88c32bb1
DW
2855 if (check_env("IMSM_NO_PLATFORM"))
2856 orom = NULL;
2857 else
2858 orom = find_imsm_orom();
2859 if (orom && raiddisks > orom->tds) {
2860 if (verbose)
2861 fprintf(stderr, Name ": %d exceeds maximum number of"
2862 " platform supported disks: %d\n",
2863 raiddisks, orom->tds);
2864 return 0;
2865 }
2866
c2c087e6
DW
2867 fd = open(dev, O_RDONLY|O_EXCL, 0);
2868 if (fd < 0) {
2c514b71
NB
2869 if (verbose)
2870 fprintf(stderr, Name ": imsm: Cannot open %s: %s\n",
2871 dev, strerror(errno));
c2c087e6
DW
2872 return 0;
2873 }
2874 if (!get_dev_size(fd, dev, &ldsize)) {
2875 close(fd);
2876 return 0;
2877 }
2878 close(fd);
2879
2880 *freesize = avail_size_imsm(st, ldsize >> 9);
2881
2882 return 1;
cdddbdbc
DW
2883}
2884
0dcecb2e
DW
2885static unsigned long long find_size(struct extent *e, int *idx, int num_extents)
2886{
2887 const unsigned long long base_start = e[*idx].start;
2888 unsigned long long end = base_start + e[*idx].size;
2889 int i;
2890
2891 if (base_start == end)
2892 return 0;
2893
2894 *idx = *idx + 1;
2895 for (i = *idx; i < num_extents; i++) {
2896 /* extend overlapping extents */
2897 if (e[i].start >= base_start &&
2898 e[i].start <= end) {
2899 if (e[i].size == 0)
2900 return 0;
2901 if (e[i].start + e[i].size > end)
2902 end = e[i].start + e[i].size;
2903 } else if (e[i].start > end) {
2904 *idx = i;
2905 break;
2906 }
2907 }
2908
2909 return end - base_start;
2910}
2911
2912static unsigned long long merge_extents(struct intel_super *super, int sum_extents)
2913{
2914 /* build a composite disk with all known extents and generate a new
2915 * 'maxsize' given the "all disks in an array must share a common start
2916 * offset" constraint
2917 */
2918 struct extent *e = calloc(sum_extents, sizeof(*e));
2919 struct dl *dl;
2920 int i, j;
2921 int start_extent;
2922 unsigned long long pos;
b9d77223 2923 unsigned long long start = 0;
0dcecb2e
DW
2924 unsigned long long maxsize;
2925 unsigned long reserve;
2926
2927 if (!e)
2928 return ~0ULL; /* error */
2929
2930 /* coalesce and sort all extents. also, check to see if we need to
2931 * reserve space between member arrays
2932 */
2933 j = 0;
2934 for (dl = super->disks; dl; dl = dl->next) {
2935 if (!dl->e)
2936 continue;
2937 for (i = 0; i < dl->extent_cnt; i++)
2938 e[j++] = dl->e[i];
2939 }
2940 qsort(e, sum_extents, sizeof(*e), cmp_extent);
2941
2942 /* merge extents */
2943 i = 0;
2944 j = 0;
2945 while (i < sum_extents) {
2946 e[j].start = e[i].start;
2947 e[j].size = find_size(e, &i, sum_extents);
2948 j++;
2949 if (e[j-1].size == 0)
2950 break;
2951 }
2952
2953 pos = 0;
2954 maxsize = 0;
2955 start_extent = 0;
2956 i = 0;
2957 do {
2958 unsigned long long esize;
2959
2960 esize = e[i].start - pos;
2961 if (esize >= maxsize) {
2962 maxsize = esize;
2963 start = pos;
2964 start_extent = i;
2965 }
2966 pos = e[i].start + e[i].size;
2967 i++;
2968 } while (e[i-1].size);
2969 free(e);
2970
2971 if (start_extent > 0)
2972 reserve = IMSM_RESERVED_SECTORS; /* gap between raid regions */
2973 else
2974 reserve = 0;
2975
2976 if (maxsize < reserve)
2977 return ~0ULL;
2978
2979 super->create_offset = ~((__u32) 0);
2980 if (start + reserve > super->create_offset)
2981 return ~0ULL; /* start overflows create_offset */
2982 super->create_offset = start + reserve;
2983
2984 return maxsize - reserve;
2985}
2986
88c32bb1
DW
2987static int is_raid_level_supported(const struct imsm_orom *orom, int level, int raiddisks)
2988{
2989 if (level < 0 || level == 6 || level == 4)
2990 return 0;
2991
2992 /* if we have an orom prevent invalid raid levels */
2993 if (orom)
2994 switch (level) {
2995 case 0: return imsm_orom_has_raid0(orom);
2996 case 1:
2997 if (raiddisks > 2)
2998 return imsm_orom_has_raid1e(orom);
1c556e92
DW
2999 return imsm_orom_has_raid1(orom) && raiddisks == 2;
3000 case 10: return imsm_orom_has_raid10(orom) && raiddisks == 4;
3001 case 5: return imsm_orom_has_raid5(orom) && raiddisks > 2;
88c32bb1
DW
3002 }
3003 else
3004 return 1; /* not on an Intel RAID platform so anything goes */
3005
3006 return 0;
3007}
3008
35f81cbb 3009#define pr_vrb(fmt, arg...) (void) (verbose && fprintf(stderr, Name fmt, ##arg))
c2c087e6
DW
3010/* validate_geometry_imsm_volume - lifted from validate_geometry_ddf_bvd
3011 * FIX ME add ahci details
3012 */
8b353278
DW
3013static int validate_geometry_imsm_volume(struct supertype *st, int level,
3014 int layout, int raiddisks, int chunk,
c2c087e6 3015 unsigned long long size, char *dev,
2c514b71
NB
3016 unsigned long long *freesize,
3017 int verbose)
cdddbdbc 3018{
c2c087e6
DW
3019 struct stat stb;
3020 struct intel_super *super = st->sb;
a20d2ba5 3021 struct imsm_super *mpb = super->anchor;
c2c087e6
DW
3022 struct dl *dl;
3023 unsigned long long pos = 0;
3024 unsigned long long maxsize;
3025 struct extent *e;
3026 int i;
cdddbdbc 3027
88c32bb1
DW
3028 /* We must have the container info already read in. */
3029 if (!super)
c2c087e6
DW
3030 return 0;
3031
88c32bb1 3032 if (!is_raid_level_supported(super->orom, level, raiddisks)) {
1c556e92
DW
3033 pr_vrb(": platform does not support raid%d with %d disk%s\n",
3034 level, raiddisks, raiddisks > 1 ? "s" : "");
c2c087e6
DW
3035 return 0;
3036 }
78757ce8
DW
3037 if (super->orom && level != 1 &&
3038 !imsm_orom_has_chunk(super->orom, chunk)) {
35f81cbb 3039 pr_vrb(": platform does not support a chunk size of: %d\n", chunk);
c2c087e6 3040 return 0;
88c32bb1
DW
3041 }
3042 if (layout != imsm_level_to_layout(level)) {
3043 if (level == 5)
35f81cbb 3044 pr_vrb(": imsm raid 5 only supports the left-asymmetric layout\n");
88c32bb1 3045 else if (level == 10)
35f81cbb 3046 pr_vrb(": imsm raid 10 only supports the n2 layout\n");
88c32bb1 3047 else
35f81cbb 3048 pr_vrb(": imsm unknown layout %#x for this raid level %d\n",
88c32bb1 3049 layout, level);
c2c087e6 3050 return 0;
88c32bb1 3051 }
c2c087e6
DW
3052
3053 if (!dev) {
3054 /* General test: make sure there is space for
2da8544a
DW
3055 * 'raiddisks' device extents of size 'size' at a given
3056 * offset
c2c087e6 3057 */
e46273eb 3058 unsigned long long minsize = size;
2da8544a 3059 unsigned long long start_offset = ~0ULL;
c2c087e6
DW
3060 int dcnt = 0;
3061 if (minsize == 0)
3062 minsize = MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
3063 for (dl = super->disks; dl ; dl = dl->next) {
3064 int found = 0;
3065
bf5a934a 3066 pos = 0;
c2c087e6
DW
3067 i = 0;
3068 e = get_extents(super, dl);
3069 if (!e) continue;
3070 do {
3071 unsigned long long esize;
3072 esize = e[i].start - pos;
3073 if (esize >= minsize)
3074 found = 1;
2da8544a
DW
3075 if (found && start_offset == ~0ULL) {
3076 start_offset = pos;
3077 break;
3078 } else if (found && pos != start_offset) {
3079 found = 0;
3080 break;
3081 }
c2c087e6
DW
3082 pos = e[i].start + e[i].size;
3083 i++;
3084 } while (e[i-1].size);
3085 if (found)
3086 dcnt++;
3087 free(e);
3088 }
3089 if (dcnt < raiddisks) {
2c514b71
NB
3090 if (verbose)
3091 fprintf(stderr, Name ": imsm: Not enough "
3092 "devices with space for this array "
3093 "(%d < %d)\n",
3094 dcnt, raiddisks);
c2c087e6
DW
3095 return 0;
3096 }
3097 return 1;
3098 }
0dcecb2e 3099
c2c087e6
DW
3100 /* This device must be a member of the set */
3101 if (stat(dev, &stb) < 0)
3102 return 0;
3103 if ((S_IFMT & stb.st_mode) != S_IFBLK)
3104 return 0;
3105 for (dl = super->disks ; dl ; dl = dl->next) {
3106 if (dl->major == major(stb.st_rdev) &&
3107 dl->minor == minor(stb.st_rdev))
3108 break;
3109 }
3110 if (!dl) {
2c514b71
NB
3111 if (verbose)
3112 fprintf(stderr, Name ": %s is not in the "
3113 "same imsm set\n", dev);
c2c087e6 3114 return 0;
a20d2ba5
DW
3115 } else if (super->orom && dl->index < 0 && mpb->num_raid_devs) {
3116 /* If a volume is present then the current creation attempt
3117 * cannot incorporate new spares because the orom may not
3118 * understand this configuration (all member disks must be
3119 * members of each array in the container).
3120 */
3121 fprintf(stderr, Name ": %s is a spare and a volume"
3122 " is already defined for this container\n", dev);
3123 fprintf(stderr, Name ": The option-rom requires all member"
3124 " disks to be a member of all volumes\n");
3125 return 0;
c2c087e6 3126 }
0dcecb2e
DW
3127
3128 /* retrieve the largest free space block */
c2c087e6
DW
3129 e = get_extents(super, dl);
3130 maxsize = 0;
3131 i = 0;
0dcecb2e
DW
3132 if (e) {
3133 do {
3134 unsigned long long esize;
3135
3136 esize = e[i].start - pos;
3137 if (esize >= maxsize)
3138 maxsize = esize;
3139 pos = e[i].start + e[i].size;
3140 i++;
3141 } while (e[i-1].size);
3142 dl->e = e;
3143 dl->extent_cnt = i;
3144 } else {
3145 if (verbose)
3146 fprintf(stderr, Name ": unable to determine free space for: %s\n",
3147 dev);
3148 return 0;
3149 }
3150 if (maxsize < size) {
3151 if (verbose)
3152 fprintf(stderr, Name ": %s not enough space (%llu < %llu)\n",
3153 dev, maxsize, size);
3154 return 0;
3155 }
3156
3157 /* count total number of extents for merge */
3158 i = 0;
3159 for (dl = super->disks; dl; dl = dl->next)
3160 if (dl->e)
3161 i += dl->extent_cnt;
3162
3163 maxsize = merge_extents(super, i);
3164 if (maxsize < size) {
3165 if (verbose)
3166 fprintf(stderr, Name ": not enough space after merge (%llu < %llu)\n",
3167 maxsize, size);
3168 return 0;
3169 } else if (maxsize == ~0ULL) {
3170 if (verbose)
3171 fprintf(stderr, Name ": failed to merge %d extents\n", i);
3172 return 0;
3173 }
3174
c2c087e6
DW
3175 *freesize = maxsize;
3176
3177 return 1;
cdddbdbc
DW
3178}
3179
efb30e7f
DW
3180static int reserve_space(struct supertype *st, int raiddisks,
3181 unsigned long long size, int chunk,
3182 unsigned long long *freesize)
3183{
3184 struct intel_super *super = st->sb;
3185 struct imsm_super *mpb = super->anchor;
3186 struct dl *dl;
3187 int i;
3188 int extent_cnt;
3189 struct extent *e;
3190 unsigned long long maxsize;
3191 unsigned long long minsize;
3192 int cnt;
3193 int used;
3194
3195 /* find the largest common start free region of the possible disks */
3196 used = 0;
3197 extent_cnt = 0;
3198 cnt = 0;
3199 for (dl = super->disks; dl; dl = dl->next) {
3200 dl->raiddisk = -1;
3201
3202 if (dl->index >= 0)
3203 used++;
3204
3205 /* don't activate new spares if we are orom constrained
3206 * and there is already a volume active in the container
3207 */
3208 if (super->orom && dl->index < 0 && mpb->num_raid_devs)
3209 continue;
3210
3211 e = get_extents(super, dl);
3212 if (!e)
3213 continue;
3214 for (i = 1; e[i-1].size; i++)
3215 ;
3216 dl->e = e;
3217 dl->extent_cnt = i;
3218 extent_cnt += i;
3219 cnt++;
3220 }
3221
3222 maxsize = merge_extents(super, extent_cnt);
3223 minsize = size;
3224 if (size == 0)
3225 minsize = chunk;
3226
3227 if (cnt < raiddisks ||
3228 (super->orom && used && used != raiddisks) ||
3229 maxsize < minsize) {
3230 fprintf(stderr, Name ": not enough devices with space to create array.\n");
3231 return 0; /* No enough free spaces large enough */
3232 }
3233
3234 if (size == 0) {
3235 size = maxsize;
3236 if (chunk) {
3237 size /= chunk;
3238 size *= chunk;
3239 }
3240 }
3241
3242 cnt = 0;
3243 for (dl = super->disks; dl; dl = dl->next)
3244 if (dl->e)
3245 dl->raiddisk = cnt++;
3246
3247 *freesize = size;
3248
3249 return 1;
3250}
3251
bf5a934a
DW
3252static int validate_geometry_imsm(struct supertype *st, int level, int layout,
3253 int raiddisks, int chunk, unsigned long long size,
3254 char *dev, unsigned long long *freesize,
3255 int verbose)
3256{
3257 int fd, cfd;
3258 struct mdinfo *sra;
3259
3260 /* if given unused devices create a container
3261 * if given given devices in a container create a member volume
3262 */
3263 if (level == LEVEL_CONTAINER) {
3264 /* Must be a fresh device to add to a container */
3265 return validate_geometry_imsm_container(st, level, layout,
3266 raiddisks, chunk, size,
3267 dev, freesize,
3268 verbose);
3269 }
3270
8592f29d
N
3271 if (!dev) {
3272 if (st->sb && freesize) {
efb30e7f
DW
3273 /* we are being asked to automatically layout a
3274 * new volume based on the current contents of
3275 * the container. If the the parameters can be
3276 * satisfied reserve_space will record the disks,
3277 * start offset, and size of the volume to be
3278 * created. add_to_super and getinfo_super
3279 * detect when autolayout is in progress.
3280 */
3281 return reserve_space(st, raiddisks, size, chunk, freesize);
8592f29d
N
3282 }
3283 return 1;
3284 }
bf5a934a
DW
3285 if (st->sb) {
3286 /* creating in a given container */
3287 return validate_geometry_imsm_volume(st, level, layout,
3288 raiddisks, chunk, size,
3289 dev, freesize, verbose);
3290 }
3291
3292 /* limit creation to the following levels */
3293 if (!dev)
3294 switch (level) {
3295 case 0:
3296 case 1:
3297 case 10:
3298 case 5:
3299 break;
3300 default:
3301 return 1;
3302 }
3303
3304 /* This device needs to be a device in an 'imsm' container */
3305 fd = open(dev, O_RDONLY|O_EXCL, 0);
3306 if (fd >= 0) {
3307 if (verbose)
3308 fprintf(stderr,
3309 Name ": Cannot create this array on device %s\n",
3310 dev);
3311 close(fd);
3312 return 0;
3313 }
3314 if (errno != EBUSY || (fd = open(dev, O_RDONLY, 0)) < 0) {
3315 if (verbose)
3316 fprintf(stderr, Name ": Cannot open %s: %s\n",
3317 dev, strerror(errno));
3318 return 0;
3319 }
3320 /* Well, it is in use by someone, maybe an 'imsm' container. */
3321 cfd = open_container(fd);
3322 if (cfd < 0) {
3323 close(fd);
3324 if (verbose)
3325 fprintf(stderr, Name ": Cannot use %s: It is busy\n",
3326 dev);
3327 return 0;
3328 }
3329 sra = sysfs_read(cfd, 0, GET_VERSION);
3330 close(fd);
3331 if (sra && sra->array.major_version == -1 &&
3332 strcmp(sra->text_version, "imsm") == 0) {
3333 /* This is a member of a imsm container. Load the container
3334 * and try to create a volume
3335 */
3336 struct intel_super *super;
3337
3338 if (load_super_imsm_all(st, cfd, (void **) &super, NULL, 1) == 0) {
3339 st->sb = super;
3340 st->container_dev = fd2devnum(cfd);
3341 close(cfd);
3342 return validate_geometry_imsm_volume(st, level, layout,
3343 raiddisks, chunk,
3344 size, dev,
3345 freesize, verbose);
3346 }
3347 close(cfd);
3348 } else /* may belong to another container */
3349 return 0;
3350
3351 return 1;
3352}
0e600426 3353#endif /* MDASSEMBLE */
bf5a934a 3354
cdddbdbc
DW
3355static struct mdinfo *container_content_imsm(struct supertype *st)
3356{
4f5bc454
DW
3357 /* Given a container loaded by load_super_imsm_all,
3358 * extract information about all the arrays into
3359 * an mdinfo tree.
3360 *
3361 * For each imsm_dev create an mdinfo, fill it in,
3362 * then look for matching devices in super->disks
3363 * and create appropriate device mdinfo.
3364 */
3365 struct intel_super *super = st->sb;
949c47a0 3366 struct imsm_super *mpb = super->anchor;
4f5bc454
DW
3367 struct mdinfo *rest = NULL;
3368 int i;
cdddbdbc 3369
604b746f
JD
3370 /* do not assemble arrays that might have bad blocks */
3371 if (imsm_bbm_log_size(super->anchor)) {
3372 fprintf(stderr, Name ": BBM log found in metadata. "
3373 "Cannot activate array(s).\n");
3374 return NULL;
3375 }
3376
4f5bc454 3377 for (i = 0; i < mpb->num_raid_devs; i++) {
949c47a0 3378 struct imsm_dev *dev = get_imsm_dev(super, i);
a965f303 3379 struct imsm_map *map = get_imsm_map(dev, 0);
4f5bc454 3380 struct mdinfo *this;
4f5bc454
DW
3381 int slot;
3382
1ce0101c
DW
3383 /* do not publish arrays that are in the middle of an
3384 * unsupported migration
3385 */
3386 if (dev->vol.migr_state &&
3387 (migr_type(dev) == MIGR_GEN_MIGR ||
3388 migr_type(dev) == MIGR_STATE_CHANGE)) {
3389 fprintf(stderr, Name ": cannot assemble volume '%.16s':"
3390 " unsupported migration in progress\n",
3391 dev->volume);
3392 continue;
3393 }
3394
4f5bc454
DW
3395 this = malloc(sizeof(*this));
3396 memset(this, 0, sizeof(*this));
3397 this->next = rest;
4f5bc454 3398
301406c9
DW
3399 super->current_vol = i;
3400 getinfo_super_imsm_volume(st, this);
4f5bc454 3401 for (slot = 0 ; slot < map->num_members; slot++) {
4f5bc454
DW
3402 struct mdinfo *info_d;
3403 struct dl *d;
3404 int idx;
9a1608e5 3405 int skip;
4f5bc454 3406 __u32 s;
7eef0453 3407 __u32 ord;
4f5bc454 3408
9a1608e5 3409 skip = 0;
ff077194 3410 idx = get_imsm_disk_idx(dev, slot);
7eef0453 3411 ord = get_imsm_ord_tbl_ent(dev, slot);
4f5bc454
DW
3412 for (d = super->disks; d ; d = d->next)
3413 if (d->index == idx)
3414 break;
3415
3416 if (d == NULL)
9a1608e5
DW
3417 skip = 1;
3418
f2f27e63 3419 s = d ? d->disk.status : 0;
9a1608e5
DW
3420 if (s & FAILED_DISK)
3421 skip = 1;
3422 if (!(s & USABLE_DISK))
3423 skip = 1;
7eef0453
DW
3424 if (ord & IMSM_ORD_REBUILD)
3425 skip = 1;
9a1608e5
DW
3426
3427 /*
3428 * if we skip some disks the array will be assmebled degraded;
3429 * reset resync start to avoid a dirty-degraded situation
3430 *
3431 * FIXME handle dirty degraded
3432 */
3433 if (skip && !dev->vol.dirty)
3434 this->resync_start = ~0ULL;
3435 if (skip)
3436 continue;
4f5bc454
DW
3437
3438 info_d = malloc(sizeof(*info_d));
9a1608e5
DW
3439 if (!info_d) {
3440 fprintf(stderr, Name ": failed to allocate disk"
1ce0101c 3441 " for volume %.16s\n", dev->volume);
9a1608e5
DW
3442 free(this);
3443 this = rest;
3444 break;
3445 }
4f5bc454
DW
3446 memset(info_d, 0, sizeof(*info_d));
3447 info_d->next = this->devs;
3448 this->devs = info_d;
3449
4f5bc454
DW
3450 info_d->disk.number = d->index;
3451 info_d->disk.major = d->major;
3452 info_d->disk.minor = d->minor;
3453 info_d->disk.raid_disk = slot;
4f5bc454
DW
3454
3455 this->array.working_disks++;
3456
3457 info_d->events = __le32_to_cpu(mpb->generation_num);
3458 info_d->data_offset = __le32_to_cpu(map->pba_of_lba0);
3459 info_d->component_size = __le32_to_cpu(map->blocks_per_member);
3460 if (d->devname)
3461 strcpy(info_d->name, d->devname);
3462 }
9a1608e5 3463 rest = this;
4f5bc454
DW
3464 }
3465
3466 return rest;
cdddbdbc
DW
3467}
3468
845dea95 3469
0e600426 3470#ifndef MDASSEMBLE
cba0191b
NB
3471static int imsm_open_new(struct supertype *c, struct active_array *a,
3472 char *inst)
845dea95 3473{
0372d5a2 3474 struct intel_super *super = c->sb;
949c47a0 3475 struct imsm_super *mpb = super->anchor;
0372d5a2 3476
949c47a0 3477 if (atoi(inst) >= mpb->num_raid_devs) {
0372d5a2
DW
3478 fprintf(stderr, "%s: subarry index %d, out of range\n",
3479 __func__, atoi(inst));
3480 return -ENODEV;
3481 }
3482
4e6e574a 3483 dprintf("imsm: open_new %s\n", inst);
cba0191b 3484 a->info.container_member = atoi(inst);
845dea95
NB
3485 return 0;
3486}
3487
fb49eef2 3488static __u8 imsm_check_degraded(struct intel_super *super, struct imsm_dev *dev, int failed)
c2a1e7da 3489{
a965f303 3490 struct imsm_map *map = get_imsm_map(dev, 0);
c2a1e7da
DW
3491
3492 if (!failed)
3393c6af
DW
3493 return map->map_state == IMSM_T_STATE_UNINITIALIZED ?
3494 IMSM_T_STATE_UNINITIALIZED : IMSM_T_STATE_NORMAL;
c2a1e7da
DW
3495
3496 switch (get_imsm_raid_level(map)) {
3497 case 0:
3498 return IMSM_T_STATE_FAILED;
3499 break;
3500 case 1:
3501 if (failed < map->num_members)
3502 return IMSM_T_STATE_DEGRADED;
3503 else
3504 return IMSM_T_STATE_FAILED;
3505 break;
3506 case 10:
3507 {
3508 /**
c92a2527
DW
3509 * check to see if any mirrors have failed, otherwise we
3510 * are degraded. Even numbered slots are mirrored on
3511 * slot+1
c2a1e7da 3512 */
c2a1e7da 3513 int i;
d9b420a5
N
3514 /* gcc -Os complains that this is unused */
3515 int insync = insync;
c2a1e7da
DW
3516
3517 for (i = 0; i < map->num_members; i++) {
c92a2527
DW
3518 __u32 ord = get_imsm_ord_tbl_ent(dev, i);
3519 int idx = ord_to_idx(ord);
3520 struct imsm_disk *disk;
c2a1e7da 3521
c92a2527
DW
3522 /* reset the potential in-sync count on even-numbered
3523 * slots. num_copies is always 2 for imsm raid10
3524 */
3525 if ((i & 1) == 0)
3526 insync = 2;
c2a1e7da 3527
c92a2527 3528 disk = get_imsm_disk(super, idx);
f2f27e63 3529 if (!disk || disk->status & FAILED_DISK ||
c92a2527
DW
3530 ord & IMSM_ORD_REBUILD)
3531 insync--;
c2a1e7da 3532
c92a2527
DW
3533 /* no in-sync disks left in this mirror the
3534 * array has failed
3535 */
3536 if (insync == 0)
3537 return IMSM_T_STATE_FAILED;
c2a1e7da
DW
3538 }
3539
3540 return IMSM_T_STATE_DEGRADED;
3541 }
3542 case 5:
3543 if (failed < 2)
3544 return IMSM_T_STATE_DEGRADED;
3545 else
3546 return IMSM_T_STATE_FAILED;
3547 break;
3548 default:
3549 break;
3550 }
3551
3552 return map->map_state;
3553}
3554
ff077194 3555static int imsm_count_failed(struct intel_super *super, struct imsm_dev *dev)
c2a1e7da
DW
3556{
3557 int i;
3558 int failed = 0;
3559 struct imsm_disk *disk;
ff077194 3560 struct imsm_map *map = get_imsm_map(dev, 0);
0556e1a2
DW
3561 struct imsm_map *prev = get_imsm_map(dev, dev->vol.migr_state);
3562 __u32 ord;
3563 int idx;
c2a1e7da 3564
0556e1a2
DW
3565 /* at the beginning of migration we set IMSM_ORD_REBUILD on
3566 * disks that are being rebuilt. New failures are recorded to
3567 * map[0]. So we look through all the disks we started with and
3568 * see if any failures are still present, or if any new ones
3569 * have arrived
3570 *
3571 * FIXME add support for online capacity expansion and
3572 * raid-level-migration
3573 */
3574 for (i = 0; i < prev->num_members; i++) {
3575 ord = __le32_to_cpu(prev->disk_ord_tbl[i]);
3576 ord |= __le32_to_cpu(map->disk_ord_tbl[i]);
3577 idx = ord_to_idx(ord);
c2a1e7da 3578
949c47a0 3579 disk = get_imsm_disk(super, idx);
f2f27e63 3580 if (!disk || disk->status & FAILED_DISK ||
b10b37b8 3581 ord & IMSM_ORD_REBUILD)
fcb84475 3582 failed++;
c2a1e7da
DW
3583 }
3584
3585 return failed;
845dea95
NB
3586}
3587
0c046afd
DW
3588static int is_resyncing(struct imsm_dev *dev)
3589{
3590 struct imsm_map *migr_map;
3591
3592 if (!dev->vol.migr_state)
3593 return 0;
3594
1484e727
DW
3595 if (migr_type(dev) == MIGR_INIT ||
3596 migr_type(dev) == MIGR_REPAIR)
0c046afd
DW
3597 return 1;
3598
3599 migr_map = get_imsm_map(dev, 1);
3600
3601 if (migr_map->map_state == IMSM_T_STATE_NORMAL)
3602 return 1;
3603 else
3604 return 0;
3605}
3606
3607static int is_rebuilding(struct imsm_dev *dev)
3608{
3609 struct imsm_map *migr_map;
3610
3611 if (!dev->vol.migr_state)
3612 return 0;
3613
1484e727 3614 if (migr_type(dev) != MIGR_REBUILD)
0c046afd
DW
3615 return 0;
3616
3617 migr_map = get_imsm_map(dev, 1);
3618
3619 if (migr_map->map_state == IMSM_T_STATE_DEGRADED)
3620 return 1;
3621 else
3622 return 0;
3623}
3624
0556e1a2
DW
3625/* return true if we recorded new information */
3626static int mark_failure(struct imsm_dev *dev, struct imsm_disk *disk, int idx)
47ee5a45 3627{
0556e1a2
DW
3628 __u32 ord;
3629 int slot;
3630 struct imsm_map *map;
3631
3632 /* new failures are always set in map[0] */
3633 map = get_imsm_map(dev, 0);
3634
3635 slot = get_imsm_disk_slot(map, idx);
3636 if (slot < 0)
3637 return 0;
3638
3639 ord = __le32_to_cpu(map->disk_ord_tbl[slot]);
3640 if ((disk->status & FAILED_DISK) && (ord & IMSM_ORD_REBUILD))
3641 return 0;
3642
f2f27e63 3643 disk->status |= FAILED_DISK;
0556e1a2 3644 set_imsm_ord_tbl_ent(map, slot, idx | IMSM_ORD_REBUILD);
4291d691 3645 if (~map->failed_disk_num == 0)
0556e1a2
DW
3646 map->failed_disk_num = slot;
3647 return 1;
3648}
3649
3650static void mark_missing(struct imsm_dev *dev, struct imsm_disk *disk, int idx)
3651{
3652 mark_failure(dev, disk, idx);
3653
3654 if (disk->scsi_id == __cpu_to_le32(~(__u32)0))
3655 return;
3656
47ee5a45
DW
3657 disk->scsi_id = __cpu_to_le32(~(__u32)0);
3658 memmove(&disk->serial[0], &disk->serial[1], MAX_RAID_SERIAL_LEN - 1);
3659}
3660
0c046afd
DW
3661/* Handle dirty -> clean transititions and resync. Degraded and rebuild
3662 * states are handled in imsm_set_disk() with one exception, when a
3663 * resync is stopped due to a new failure this routine will set the
3664 * 'degraded' state for the array.
3665 */
01f157d7 3666static int imsm_set_array_state(struct active_array *a, int consistent)
a862209d
DW
3667{
3668 int inst = a->info.container_member;
3669 struct intel_super *super = a->container->sb;
949c47a0 3670 struct imsm_dev *dev = get_imsm_dev(super, inst);
a965f303 3671 struct imsm_map *map = get_imsm_map(dev, 0);
0c046afd
DW
3672 int failed = imsm_count_failed(super, dev);
3673 __u8 map_state = imsm_check_degraded(super, dev, failed);
a862209d 3674
47ee5a45
DW
3675 /* before we activate this array handle any missing disks */
3676 if (consistent == 2 && super->missing) {
3677 struct dl *dl;
3678
3679 dprintf("imsm: mark missing\n");
3680 end_migration(dev, map_state);
3681 for (dl = super->missing; dl; dl = dl->next)
0556e1a2 3682 mark_missing(dev, &dl->disk, dl->index);
47ee5a45
DW
3683 super->updates_pending++;
3684 }
3685
0c046afd 3686 if (consistent == 2 &&
593add1b 3687 (!is_resync_complete(a) ||
0c046afd
DW
3688 map_state != IMSM_T_STATE_NORMAL ||
3689 dev->vol.migr_state))
01f157d7 3690 consistent = 0;
272906ef 3691
593add1b 3692 if (is_resync_complete(a)) {
0c046afd 3693 /* complete intialization / resync,
0556e1a2
DW
3694 * recovery and interrupted recovery is completed in
3695 * ->set_disk
0c046afd
DW
3696 */
3697 if (is_resyncing(dev)) {
3698 dprintf("imsm: mark resync done\n");
f8f603f1 3699 end_migration(dev, map_state);
115c3803 3700 super->updates_pending++;
115c3803 3701 }
0c046afd
DW
3702 } else if (!is_resyncing(dev) && !failed) {
3703 /* mark the start of the init process if nothing is failed */
3704 dprintf("imsm: mark resync start (%llu)\n", a->resync_start);
1484e727 3705 if (map->map_state == IMSM_T_STATE_UNINITIALIZED)
e3bba0e0 3706 migrate(dev, IMSM_T_STATE_NORMAL, MIGR_INIT);
1484e727
DW
3707 else
3708 migrate(dev, IMSM_T_STATE_NORMAL, MIGR_REPAIR);
3393c6af 3709 super->updates_pending++;
115c3803 3710 }
a862209d 3711
da188789 3712 /* FIXME check if we can update curr_migr_unit from resync_start */
f8f603f1 3713
3393c6af 3714 /* mark dirty / clean */
0c046afd 3715 if (dev->vol.dirty != !consistent) {
3393c6af 3716 dprintf("imsm: mark '%s' (%llu)\n",
0c046afd
DW
3717 consistent ? "clean" : "dirty", a->resync_start);
3718 if (consistent)
3719 dev->vol.dirty = 0;
3720 else
3721 dev->vol.dirty = 1;
a862209d
DW
3722 super->updates_pending++;
3723 }
01f157d7 3724 return consistent;
a862209d
DW
3725}
3726
8d45d196 3727static void imsm_set_disk(struct active_array *a, int n, int state)
845dea95 3728{
8d45d196
DW
3729 int inst = a->info.container_member;
3730 struct intel_super *super = a->container->sb;
949c47a0 3731 struct imsm_dev *dev = get_imsm_dev(super, inst);
a965f303 3732 struct imsm_map *map = get_imsm_map(dev, 0);
8d45d196 3733 struct imsm_disk *disk;
0c046afd 3734 int failed;
b10b37b8 3735 __u32 ord;
0c046afd 3736 __u8 map_state;
8d45d196
DW
3737
3738 if (n > map->num_members)
3739 fprintf(stderr, "imsm: set_disk %d out of range 0..%d\n",
3740 n, map->num_members - 1);
3741
3742 if (n < 0)
3743 return;
3744
4e6e574a 3745 dprintf("imsm: set_disk %d:%x\n", n, state);
8d45d196 3746
b10b37b8
DW
3747 ord = get_imsm_ord_tbl_ent(dev, n);
3748 disk = get_imsm_disk(super, ord_to_idx(ord));
8d45d196 3749
5802a811 3750 /* check for new failures */
0556e1a2
DW
3751 if (state & DS_FAULTY) {
3752 if (mark_failure(dev, disk, ord_to_idx(ord)))
3753 super->updates_pending++;
8d45d196 3754 }
47ee5a45 3755
19859edc 3756 /* check if in_sync */
0556e1a2 3757 if (state & DS_INSYNC && ord & IMSM_ORD_REBUILD && is_rebuilding(dev)) {
b10b37b8
DW
3758 struct imsm_map *migr_map = get_imsm_map(dev, 1);
3759
3760 set_imsm_ord_tbl_ent(migr_map, n, ord_to_idx(ord));
19859edc
DW
3761 super->updates_pending++;
3762 }
8d45d196 3763
0c046afd
DW
3764 failed = imsm_count_failed(super, dev);
3765 map_state = imsm_check_degraded(super, dev, failed);
5802a811 3766
0c046afd
DW
3767 /* check if recovery complete, newly degraded, or failed */
3768 if (map_state == IMSM_T_STATE_NORMAL && is_rebuilding(dev)) {
f8f603f1 3769 end_migration(dev, map_state);
0556e1a2
DW
3770 map = get_imsm_map(dev, 0);
3771 map->failed_disk_num = ~0;
0c046afd
DW
3772 super->updates_pending++;
3773 } else if (map_state == IMSM_T_STATE_DEGRADED &&
3774 map->map_state != map_state &&
3775 !dev->vol.migr_state) {
3776 dprintf("imsm: mark degraded\n");
3777 map->map_state = map_state;
3778 super->updates_pending++;
3779 } else if (map_state == IMSM_T_STATE_FAILED &&
3780 map->map_state != map_state) {
3781 dprintf("imsm: mark failed\n");
f8f603f1 3782 end_migration(dev, map_state);
0c046afd 3783 super->updates_pending++;
5802a811 3784 }
845dea95
NB
3785}
3786
c2a1e7da
DW
3787static int store_imsm_mpb(int fd, struct intel_super *super)
3788{
949c47a0 3789 struct imsm_super *mpb = super->anchor;
c2a1e7da
DW
3790 __u32 mpb_size = __le32_to_cpu(mpb->mpb_size);
3791 unsigned long long dsize;
3792 unsigned long long sectors;
3793
3794 get_dev_size(fd, NULL, &dsize);
3795
272f648f
DW
3796 if (mpb_size > 512) {
3797 /* -1 to account for anchor */
3798 sectors = mpb_sectors(mpb) - 1;
c2a1e7da 3799
272f648f
DW
3800 /* write the extended mpb to the sectors preceeding the anchor */
3801 if (lseek64(fd, dsize - (512 * (2 + sectors)), SEEK_SET) < 0)
3802 return 1;
c2a1e7da 3803
99e29264 3804 if (write(fd, super->buf + 512, 512 * sectors) != 512 * sectors)
272f648f
DW
3805 return 1;
3806 }
c2a1e7da 3807
272f648f
DW
3808 /* first block is stored on second to last sector of the disk */
3809 if (lseek64(fd, dsize - (512 * 2), SEEK_SET) < 0)
c2a1e7da
DW
3810 return 1;
3811
272f648f 3812 if (write(fd, super->buf, 512) != 512)
c2a1e7da
DW
3813 return 1;
3814
c2a1e7da
DW
3815 return 0;
3816}
3817
2e735d19 3818static void imsm_sync_metadata(struct supertype *container)
845dea95 3819{
2e735d19 3820 struct intel_super *super = container->sb;
c2a1e7da
DW
3821
3822 if (!super->updates_pending)
3823 return;
3824
c2c087e6 3825 write_super_imsm(super, 0);
c2a1e7da
DW
3826
3827 super->updates_pending = 0;
845dea95
NB
3828}
3829
272906ef
DW
3830static struct dl *imsm_readd(struct intel_super *super, int idx, struct active_array *a)
3831{
3832 struct imsm_dev *dev = get_imsm_dev(super, a->info.container_member);
ff077194 3833 int i = get_imsm_disk_idx(dev, idx);
272906ef
DW
3834 struct dl *dl;
3835
3836 for (dl = super->disks; dl; dl = dl->next)
3837 if (dl->index == i)
3838 break;
3839
f2f27e63 3840 if (dl && dl->disk.status & FAILED_DISK)
272906ef
DW
3841 dl = NULL;
3842
3843 if (dl)
3844 dprintf("%s: found %x:%x\n", __func__, dl->major, dl->minor);
3845
3846 return dl;
3847}
3848
a20d2ba5
DW
3849static struct dl *imsm_add_spare(struct intel_super *super, int slot,
3850 struct active_array *a, int activate_new)
272906ef
DW
3851{
3852 struct imsm_dev *dev = get_imsm_dev(super, a->info.container_member);
e553d2a4 3853 int idx = get_imsm_disk_idx(dev, slot);
a20d2ba5
DW
3854 struct imsm_super *mpb = super->anchor;
3855 struct imsm_map *map;
272906ef
DW
3856 unsigned long long esize;
3857 unsigned long long pos;
3858 struct mdinfo *d;
3859 struct extent *ex;
a20d2ba5 3860 int i, j;
272906ef
DW
3861 int found;
3862 __u32 array_start;
a20d2ba5 3863 __u32 blocks;
272906ef
DW
3864 struct dl *dl;
3865
3866 for (dl = super->disks; dl; dl = dl->next) {
3867 /* If in this array, skip */
3868 for (d = a->info.devs ; d ; d = d->next)
e553d2a4
DW
3869 if (d->state_fd >= 0 &&
3870 d->disk.major == dl->major &&
272906ef
DW
3871 d->disk.minor == dl->minor) {
3872 dprintf("%x:%x already in array\n", dl->major, dl->minor);
3873 break;
3874 }
3875 if (d)
3876 continue;
3877
e553d2a4 3878 /* skip in use or failed drives */
df474657
DW
3879 if (dl->disk.status & FAILED_DISK || idx == dl->index ||
3880 dl->index == -2) {
3881 dprintf("%x:%x status (failed: %d index: %d)\n",
3882 dl->major, dl->minor,
3883 (dl->disk.status & FAILED_DISK) == FAILED_DISK, idx);
9a1608e5
DW
3884 continue;
3885 }
3886
a20d2ba5
DW
3887 /* skip pure spares when we are looking for partially
3888 * assimilated drives
3889 */
3890 if (dl->index == -1 && !activate_new)
3891 continue;
3892
272906ef 3893 /* Does this unused device have the requisite free space?
a20d2ba5 3894 * It needs to be able to cover all member volumes
272906ef
DW
3895 */
3896 ex = get_extents(super, dl);
3897 if (!ex) {
3898 dprintf("cannot get extents\n");
3899 continue;
3900 }
a20d2ba5
DW
3901 for (i = 0; i < mpb->num_raid_devs; i++) {
3902 dev = get_imsm_dev(super, i);
3903 map = get_imsm_map(dev, 0);
272906ef 3904
a20d2ba5
DW
3905 /* check if this disk is already a member of
3906 * this array
272906ef 3907 */
620b1713 3908 if (get_imsm_disk_slot(map, dl->index) >= 0)
a20d2ba5
DW
3909 continue;
3910
3911 found = 0;
3912 j = 0;
3913 pos = 0;
3914 array_start = __le32_to_cpu(map->pba_of_lba0);
3915 blocks = __le32_to_cpu(map->blocks_per_member);
3916
3917 do {
3918 /* check that we can start at pba_of_lba0 with
3919 * blocks_per_member of space
3920 */
3921 esize = ex[j].start - pos;
3922 if (array_start >= pos &&
3923 array_start + blocks < ex[j].start) {
3924 found = 1;
3925 break;
3926 }
3927 pos = ex[j].start + ex[j].size;
3928 j++;
3929 } while (ex[j-1].size);
3930
3931 if (!found)
272906ef 3932 break;
a20d2ba5 3933 }
272906ef
DW
3934
3935 free(ex);
a20d2ba5
DW
3936 if (i < mpb->num_raid_devs) {
3937 dprintf("%x:%x does not have %u at %u\n",
272906ef 3938 dl->major, dl->minor,
a20d2ba5 3939 blocks, array_start);
272906ef
DW
3940 /* No room */
3941 continue;
a20d2ba5
DW
3942 }
3943 return dl;
272906ef
DW
3944 }
3945
3946 return dl;
3947}
3948
88758e9d
DW
3949static struct mdinfo *imsm_activate_spare(struct active_array *a,
3950 struct metadata_update **updates)
3951{
3952 /**
d23fe947
DW
3953 * Find a device with unused free space and use it to replace a
3954 * failed/vacant region in an array. We replace failed regions one a
3955 * array at a time. The result is that a new spare disk will be added
3956 * to the first failed array and after the monitor has finished
3957 * propagating failures the remainder will be consumed.
88758e9d 3958 *
d23fe947
DW
3959 * FIXME add a capability for mdmon to request spares from another
3960 * container.
88758e9d
DW
3961 */
3962
3963 struct intel_super *super = a->container->sb;
88758e9d 3964 int inst = a->info.container_member;
949c47a0 3965 struct imsm_dev *dev = get_imsm_dev(super, inst);
a965f303 3966 struct imsm_map *map = get_imsm_map(dev, 0);
88758e9d
DW
3967 int failed = a->info.array.raid_disks;
3968 struct mdinfo *rv = NULL;
3969 struct mdinfo *d;
3970 struct mdinfo *di;
3971 struct metadata_update *mu;
3972 struct dl *dl;
3973 struct imsm_update_activate_spare *u;
3974 int num_spares = 0;
3975 int i;
3976
3977 for (d = a->info.devs ; d ; d = d->next) {
3978 if ((d->curr_state & DS_FAULTY) &&
3979 d->state_fd >= 0)
3980 /* wait for Removal to happen */
3981 return NULL;
3982 if (d->state_fd >= 0)
3983 failed--;
3984 }
3985
3986 dprintf("imsm: activate spare: inst=%d failed=%d (%d) level=%d\n",
3987 inst, failed, a->info.array.raid_disks, a->info.array.level);
fb49eef2 3988 if (imsm_check_degraded(super, dev, failed) != IMSM_T_STATE_DEGRADED)
88758e9d
DW
3989 return NULL;
3990
3991 /* For each slot, if it is not working, find a spare */
88758e9d
DW
3992 for (i = 0; i < a->info.array.raid_disks; i++) {
3993 for (d = a->info.devs ; d ; d = d->next)
3994 if (d->disk.raid_disk == i)
3995 break;
3996 dprintf("found %d: %p %x\n", i, d, d?d->curr_state:0);
3997 if (d && (d->state_fd >= 0))
3998 continue;
3999
272906ef 4000 /*
a20d2ba5
DW
4001 * OK, this device needs recovery. Try to re-add the
4002 * previous occupant of this slot, if this fails see if
4003 * we can continue the assimilation of a spare that was
4004 * partially assimilated, finally try to activate a new
4005 * spare.
272906ef
DW
4006 */
4007 dl = imsm_readd(super, i, a);
4008 if (!dl)
a20d2ba5
DW
4009 dl = imsm_add_spare(super, i, a, 0);
4010 if (!dl)
4011 dl = imsm_add_spare(super, i, a, 1);
272906ef
DW
4012 if (!dl)
4013 continue;
4014
4015 /* found a usable disk with enough space */
4016 di = malloc(sizeof(*di));
79244939
DW
4017 if (!di)
4018 continue;
272906ef
DW
4019 memset(di, 0, sizeof(*di));
4020
4021 /* dl->index will be -1 in the case we are activating a
4022 * pristine spare. imsm_process_update() will create a
4023 * new index in this case. Once a disk is found to be
4024 * failed in all member arrays it is kicked from the
4025 * metadata
4026 */
4027 di->disk.number = dl->index;
d23fe947 4028
272906ef
DW
4029 /* (ab)use di->devs to store a pointer to the device
4030 * we chose
4031 */
4032 di->devs = (struct mdinfo *) dl;
4033
4034 di->disk.raid_disk = i;
4035 di->disk.major = dl->major;
4036 di->disk.minor = dl->minor;
4037 di->disk.state = 0;
4038 di->data_offset = __le32_to_cpu(map->pba_of_lba0);
4039 di->component_size = a->info.component_size;
4040 di->container_member = inst;
4041 di->next = rv;
4042 rv = di;
4043 num_spares++;
4044 dprintf("%x:%x to be %d at %llu\n", dl->major, dl->minor,
4045 i, di->data_offset);
88758e9d 4046
272906ef 4047 break;
88758e9d
DW
4048 }
4049
4050 if (!rv)
4051 /* No spares found */
4052 return rv;
4053 /* Now 'rv' has a list of devices to return.
4054 * Create a metadata_update record to update the
4055 * disk_ord_tbl for the array
4056 */
4057 mu = malloc(sizeof(*mu));
79244939
DW
4058 if (mu) {
4059 mu->buf = malloc(sizeof(struct imsm_update_activate_spare) * num_spares);
4060 if (mu->buf == NULL) {
4061 free(mu);
4062 mu = NULL;
4063 }
4064 }
4065 if (!mu) {
4066 while (rv) {
4067 struct mdinfo *n = rv->next;
4068
4069 free(rv);
4070 rv = n;
4071 }
4072 return NULL;
4073 }
4074
88758e9d
DW
4075 mu->space = NULL;
4076 mu->len = sizeof(struct imsm_update_activate_spare) * num_spares;
4077 mu->next = *updates;
4078 u = (struct imsm_update_activate_spare *) mu->buf;
4079
4080 for (di = rv ; di ; di = di->next) {
4081 u->type = update_activate_spare;
d23fe947
DW
4082 u->dl = (struct dl *) di->devs;
4083 di->devs = NULL;
88758e9d
DW
4084 u->slot = di->disk.raid_disk;
4085 u->array = inst;
4086 u->next = u + 1;
4087 u++;
4088 }
4089 (u-1)->next = NULL;
4090 *updates = mu;
4091
4092 return rv;
4093}
4094
54c2c1ea 4095static int disks_overlap(struct intel_super *super, int idx, struct imsm_update_create_array *u)
8273f55e 4096{
54c2c1ea
DW
4097 struct imsm_dev *dev = get_imsm_dev(super, idx);
4098 struct imsm_map *map = get_imsm_map(dev, 0);
4099 struct imsm_map *new_map = get_imsm_map(&u->dev, 0);
4100 struct disk_info *inf = get_disk_info(u);
4101 struct imsm_disk *disk;
8273f55e
DW
4102 int i;
4103 int j;
8273f55e 4104
54c2c1ea
DW
4105 for (i = 0; i < map->num_members; i++) {
4106 disk = get_imsm_disk(super, get_imsm_disk_idx(dev, i));
4107 for (j = 0; j < new_map->num_members; j++)
4108 if (serialcmp(disk->serial, inf[j].serial) == 0)
8273f55e
DW
4109 return 1;
4110 }
4111
4112 return 0;
4113}
4114
24565c9a 4115static void imsm_delete(struct intel_super *super, struct dl **dlp, int index);
ae6aad82 4116
e8319a19
DW
4117static void imsm_process_update(struct supertype *st,
4118 struct metadata_update *update)
4119{
4120 /**
4121 * crack open the metadata_update envelope to find the update record
4122 * update can be one of:
4123 * update_activate_spare - a spare device has replaced a failed
4124 * device in an array, update the disk_ord_tbl. If this disk is
4125 * present in all member arrays then also clear the SPARE_DISK
4126 * flag
4127 */
4128 struct intel_super *super = st->sb;
4d7b1503 4129 struct imsm_super *mpb;
e8319a19
DW
4130 enum imsm_update_type type = *(enum imsm_update_type *) update->buf;
4131
4d7b1503
DW
4132 /* update requires a larger buf but the allocation failed */
4133 if (super->next_len && !super->next_buf) {
4134 super->next_len = 0;
4135 return;
4136 }
4137
4138 if (super->next_buf) {
4139 memcpy(super->next_buf, super->buf, super->len);
4140 free(super->buf);
4141 super->len = super->next_len;
4142 super->buf = super->next_buf;
4143
4144 super->next_len = 0;
4145 super->next_buf = NULL;
4146 }
4147
4148 mpb = super->anchor;
4149
e8319a19
DW
4150 switch (type) {
4151 case update_activate_spare: {
4152 struct imsm_update_activate_spare *u = (void *) update->buf;
949c47a0 4153 struct imsm_dev *dev = get_imsm_dev(super, u->array);
a965f303 4154 struct imsm_map *map = get_imsm_map(dev, 0);
0c046afd 4155 struct imsm_map *migr_map;
e8319a19
DW
4156 struct active_array *a;
4157 struct imsm_disk *disk;
0c046afd 4158 __u8 to_state;
e8319a19 4159 struct dl *dl;
e8319a19 4160 unsigned int found;
0c046afd
DW
4161 int failed;
4162 int victim = get_imsm_disk_idx(dev, u->slot);
e8319a19
DW
4163 int i;
4164
4165 for (dl = super->disks; dl; dl = dl->next)
d23fe947 4166 if (dl == u->dl)
e8319a19
DW
4167 break;
4168
4169 if (!dl) {
4170 fprintf(stderr, "error: imsm_activate_spare passed "
1f24f035
DW
4171 "an unknown disk (index: %d)\n",
4172 u->dl->index);
e8319a19
DW
4173 return;
4174 }
4175
4176 super->updates_pending++;
4177
0c046afd
DW
4178 /* count failures (excluding rebuilds and the victim)
4179 * to determine map[0] state
4180 */
4181 failed = 0;
4182 for (i = 0; i < map->num_members; i++) {
4183 if (i == u->slot)
4184 continue;
4185 disk = get_imsm_disk(super, get_imsm_disk_idx(dev, i));
f2f27e63 4186 if (!disk || disk->status & FAILED_DISK)
0c046afd
DW
4187 failed++;
4188 }
4189
d23fe947
DW
4190 /* adding a pristine spare, assign a new index */
4191 if (dl->index < 0) {
4192 dl->index = super->anchor->num_disks;
4193 super->anchor->num_disks++;
4194 }
d23fe947 4195 disk = &dl->disk;
f2f27e63
DW
4196 disk->status |= CONFIGURED_DISK;
4197 disk->status &= ~SPARE_DISK;
e8319a19 4198
0c046afd
DW
4199 /* mark rebuild */
4200 to_state = imsm_check_degraded(super, dev, failed);
4201 map->map_state = IMSM_T_STATE_DEGRADED;
e3bba0e0 4202 migrate(dev, to_state, MIGR_REBUILD);
0c046afd
DW
4203 migr_map = get_imsm_map(dev, 1);
4204 set_imsm_ord_tbl_ent(map, u->slot, dl->index);
4205 set_imsm_ord_tbl_ent(migr_map, u->slot, dl->index | IMSM_ORD_REBUILD);
4206
e8319a19
DW
4207 /* count arrays using the victim in the metadata */
4208 found = 0;
4209 for (a = st->arrays; a ; a = a->next) {
949c47a0 4210 dev = get_imsm_dev(super, a->info.container_member);
620b1713
DW
4211 map = get_imsm_map(dev, 0);
4212
4213 if (get_imsm_disk_slot(map, victim) >= 0)
4214 found++;
e8319a19
DW
4215 }
4216
24565c9a 4217 /* delete the victim if it is no longer being
e8319a19
DW
4218 * utilized anywhere
4219 */
e8319a19 4220 if (!found) {
ae6aad82 4221 struct dl **dlp;
24565c9a 4222
47ee5a45
DW
4223 /* We know that 'manager' isn't touching anything,
4224 * so it is safe to delete
4225 */
24565c9a 4226 for (dlp = &super->disks; *dlp; dlp = &(*dlp)->next)
ae6aad82
DW
4227 if ((*dlp)->index == victim)
4228 break;
47ee5a45
DW
4229
4230 /* victim may be on the missing list */
4231 if (!*dlp)
4232 for (dlp = &super->missing; *dlp; dlp = &(*dlp)->next)
4233 if ((*dlp)->index == victim)
4234 break;
24565c9a 4235 imsm_delete(super, dlp, victim);
e8319a19 4236 }
8273f55e
DW
4237 break;
4238 }
4239 case update_create_array: {
4240 /* someone wants to create a new array, we need to be aware of
4241 * a few races/collisions:
4242 * 1/ 'Create' called by two separate instances of mdadm
4243 * 2/ 'Create' versus 'activate_spare': mdadm has chosen
4244 * devices that have since been assimilated via
4245 * activate_spare.
4246 * In the event this update can not be carried out mdadm will
4247 * (FIX ME) notice that its update did not take hold.
4248 */
4249 struct imsm_update_create_array *u = (void *) update->buf;
ba2de7ba 4250 struct intel_dev *dv;
8273f55e
DW
4251 struct imsm_dev *dev;
4252 struct imsm_map *map, *new_map;
4253 unsigned long long start, end;
4254 unsigned long long new_start, new_end;
4255 int i;
54c2c1ea
DW
4256 struct disk_info *inf;
4257 struct dl *dl;
8273f55e
DW
4258
4259 /* handle racing creates: first come first serve */
4260 if (u->dev_idx < mpb->num_raid_devs) {
4261 dprintf("%s: subarray %d already defined\n",
4262 __func__, u->dev_idx);
ba2de7ba 4263 goto create_error;
8273f55e
DW
4264 }
4265
4266 /* check update is next in sequence */
4267 if (u->dev_idx != mpb->num_raid_devs) {
6a3e913e
DW
4268 dprintf("%s: can not create array %d expected index %d\n",
4269 __func__, u->dev_idx, mpb->num_raid_devs);
ba2de7ba 4270 goto create_error;
8273f55e
DW
4271 }
4272
a965f303 4273 new_map = get_imsm_map(&u->dev, 0);
8273f55e
DW
4274 new_start = __le32_to_cpu(new_map->pba_of_lba0);
4275 new_end = new_start + __le32_to_cpu(new_map->blocks_per_member);
54c2c1ea 4276 inf = get_disk_info(u);
8273f55e
DW
4277
4278 /* handle activate_spare versus create race:
4279 * check to make sure that overlapping arrays do not include
4280 * overalpping disks
4281 */
4282 for (i = 0; i < mpb->num_raid_devs; i++) {
949c47a0 4283 dev = get_imsm_dev(super, i);
a965f303 4284 map = get_imsm_map(dev, 0);
8273f55e
DW
4285 start = __le32_to_cpu(map->pba_of_lba0);
4286 end = start + __le32_to_cpu(map->blocks_per_member);
4287 if ((new_start >= start && new_start <= end) ||
4288 (start >= new_start && start <= new_end))
54c2c1ea
DW
4289 /* overlap */;
4290 else
4291 continue;
4292
4293 if (disks_overlap(super, i, u)) {
8273f55e 4294 dprintf("%s: arrays overlap\n", __func__);
ba2de7ba 4295 goto create_error;
8273f55e
DW
4296 }
4297 }
8273f55e 4298
949c47a0
DW
4299 /* check that prepare update was successful */
4300 if (!update->space) {
4301 dprintf("%s: prepare update failed\n", __func__);
ba2de7ba 4302 goto create_error;
949c47a0
DW
4303 }
4304
54c2c1ea
DW
4305 /* check that all disks are still active before committing
4306 * changes. FIXME: could we instead handle this by creating a
4307 * degraded array? That's probably not what the user expects,
4308 * so better to drop this update on the floor.
4309 */
4310 for (i = 0; i < new_map->num_members; i++) {
4311 dl = serial_to_dl(inf[i].serial, super);
4312 if (!dl) {
4313 dprintf("%s: disk disappeared\n", __func__);
ba2de7ba 4314 goto create_error;
54c2c1ea 4315 }
949c47a0
DW
4316 }
4317
8273f55e 4318 super->updates_pending++;
54c2c1ea
DW
4319
4320 /* convert spares to members and fixup ord_tbl */
4321 for (i = 0; i < new_map->num_members; i++) {
4322 dl = serial_to_dl(inf[i].serial, super);
4323 if (dl->index == -1) {
4324 dl->index = mpb->num_disks;
4325 mpb->num_disks++;
4326 dl->disk.status |= CONFIGURED_DISK;
4327 dl->disk.status &= ~SPARE_DISK;
4328 }
4329 set_imsm_ord_tbl_ent(new_map, i, dl->index);
4330 }
4331
ba2de7ba
DW
4332 dv = update->space;
4333 dev = dv->dev;
949c47a0
DW
4334 update->space = NULL;
4335 imsm_copy_dev(dev, &u->dev);
ba2de7ba
DW
4336 dv->index = u->dev_idx;
4337 dv->next = super->devlist;
4338 super->devlist = dv;
8273f55e 4339 mpb->num_raid_devs++;
8273f55e 4340
4d1313e9 4341 imsm_update_version_info(super);
8273f55e 4342 break;
ba2de7ba
DW
4343 create_error:
4344 /* mdmon knows how to release update->space, but not
4345 * ((struct intel_dev *) update->space)->dev
4346 */
4347 if (update->space) {
4348 dv = update->space;
4349 free(dv->dev);
4350 }
8273f55e 4351 break;
e8319a19 4352 }
43dad3d6
DW
4353 case update_add_disk:
4354
4355 /* we may be able to repair some arrays if disks are
4356 * being added */
4357 if (super->add) {
4358 struct active_array *a;
072b727f
DW
4359
4360 super->updates_pending++;
43dad3d6
DW
4361 for (a = st->arrays; a; a = a->next)
4362 a->check_degraded = 1;
4363 }
e553d2a4 4364 /* add some spares to the metadata */
43dad3d6 4365 while (super->add) {
e553d2a4
DW
4366 struct dl *al;
4367
43dad3d6
DW
4368 al = super->add;
4369 super->add = al->next;
43dad3d6
DW
4370 al->next = super->disks;
4371 super->disks = al;
e553d2a4
DW
4372 dprintf("%s: added %x:%x\n",
4373 __func__, al->major, al->minor);
43dad3d6
DW
4374 }
4375
4376 break;
e8319a19
DW
4377 }
4378}
88758e9d 4379
8273f55e
DW
4380static void imsm_prepare_update(struct supertype *st,
4381 struct metadata_update *update)
4382{
949c47a0 4383 /**
4d7b1503
DW
4384 * Allocate space to hold new disk entries, raid-device entries or a new
4385 * mpb if necessary. The manager synchronously waits for updates to
4386 * complete in the monitor, so new mpb buffers allocated here can be
4387 * integrated by the monitor thread without worrying about live pointers
4388 * in the manager thread.
8273f55e 4389 */
949c47a0 4390 enum imsm_update_type type = *(enum imsm_update_type *) update->buf;
4d7b1503
DW
4391 struct intel_super *super = st->sb;
4392 struct imsm_super *mpb = super->anchor;
4393 size_t buf_len;
4394 size_t len = 0;
949c47a0
DW
4395
4396 switch (type) {
4397 case update_create_array: {
4398 struct imsm_update_create_array *u = (void *) update->buf;
ba2de7ba 4399 struct intel_dev *dv;
54c2c1ea
DW
4400 struct imsm_dev *dev = &u->dev;
4401 struct imsm_map *map = get_imsm_map(dev, 0);
4402 struct dl *dl;
4403 struct disk_info *inf;
4404 int i;
4405 int activate = 0;
949c47a0 4406
54c2c1ea
DW
4407 inf = get_disk_info(u);
4408 len = sizeof_imsm_dev(dev, 1);
ba2de7ba
DW
4409 /* allocate a new super->devlist entry */
4410 dv = malloc(sizeof(*dv));
4411 if (dv) {
4412 dv->dev = malloc(len);
4413 if (dv->dev)
4414 update->space = dv;
4415 else {
4416 free(dv);
4417 update->space = NULL;
4418 }
4419 }
949c47a0 4420
54c2c1ea
DW
4421 /* count how many spares will be converted to members */
4422 for (i = 0; i < map->num_members; i++) {
4423 dl = serial_to_dl(inf[i].serial, super);
4424 if (!dl) {
4425 /* hmm maybe it failed?, nothing we can do about
4426 * it here
4427 */
4428 continue;
4429 }
4430 if (count_memberships(dl, super) == 0)
4431 activate++;
4432 }
4433 len += activate * sizeof(struct imsm_disk);
949c47a0
DW
4434 break;
4435 default:
4436 break;
4437 }
4438 }
8273f55e 4439
4d7b1503
DW
4440 /* check if we need a larger metadata buffer */
4441 if (super->next_buf)
4442 buf_len = super->next_len;
4443 else
4444 buf_len = super->len;
4445
4446 if (__le32_to_cpu(mpb->mpb_size) + len > buf_len) {
4447 /* ok we need a larger buf than what is currently allocated
4448 * if this allocation fails process_update will notice that
4449 * ->next_len is set and ->next_buf is NULL
4450 */
4451 buf_len = ROUND_UP(__le32_to_cpu(mpb->mpb_size) + len, 512);
4452 if (super->next_buf)
4453 free(super->next_buf);
4454
4455 super->next_len = buf_len;
1f45a8ad
DW
4456 if (posix_memalign(&super->next_buf, 512, buf_len) == 0)
4457 memset(super->next_buf, 0, buf_len);
4458 else
4d7b1503
DW
4459 super->next_buf = NULL;
4460 }
8273f55e
DW
4461}
4462
ae6aad82 4463/* must be called while manager is quiesced */
24565c9a 4464static void imsm_delete(struct intel_super *super, struct dl **dlp, int index)
ae6aad82
DW
4465{
4466 struct imsm_super *mpb = super->anchor;
ae6aad82
DW
4467 struct dl *iter;
4468 struct imsm_dev *dev;
4469 struct imsm_map *map;
24565c9a
DW
4470 int i, j, num_members;
4471 __u32 ord;
ae6aad82 4472
24565c9a
DW
4473 dprintf("%s: deleting device[%d] from imsm_super\n",
4474 __func__, index);
ae6aad82
DW
4475
4476 /* shift all indexes down one */
4477 for (iter = super->disks; iter; iter = iter->next)
24565c9a 4478 if (iter->index > index)
ae6aad82 4479 iter->index--;
47ee5a45
DW
4480 for (iter = super->missing; iter; iter = iter->next)
4481 if (iter->index > index)
4482 iter->index--;
ae6aad82
DW
4483
4484 for (i = 0; i < mpb->num_raid_devs; i++) {
4485 dev = get_imsm_dev(super, i);
4486 map = get_imsm_map(dev, 0);
24565c9a
DW
4487 num_members = map->num_members;
4488 for (j = 0; j < num_members; j++) {
4489 /* update ord entries being careful not to propagate
4490 * ord-flags to the first map
4491 */
4492 ord = get_imsm_ord_tbl_ent(dev, j);
ae6aad82 4493
24565c9a
DW
4494 if (ord_to_idx(ord) <= index)
4495 continue;
ae6aad82 4496
24565c9a
DW
4497 map = get_imsm_map(dev, 0);
4498 set_imsm_ord_tbl_ent(map, j, ord_to_idx(ord - 1));
4499 map = get_imsm_map(dev, 1);
4500 if (map)
4501 set_imsm_ord_tbl_ent(map, j, ord - 1);
ae6aad82
DW
4502 }
4503 }
4504
4505 mpb->num_disks--;
4506 super->updates_pending++;
24565c9a
DW
4507 if (*dlp) {
4508 struct dl *dl = *dlp;
4509
4510 *dlp = (*dlp)->next;
4511 __free_imsm_disk(dl);
4512 }
ae6aad82 4513}
0e600426 4514#endif /* MDASSEMBLE */
ae6aad82 4515
cdddbdbc
DW
4516struct superswitch super_imsm = {
4517#ifndef MDASSEMBLE
4518 .examine_super = examine_super_imsm,
4519 .brief_examine_super = brief_examine_super_imsm,
9d84c8ea 4520 .export_examine_super = export_examine_super_imsm,
cdddbdbc
DW
4521 .detail_super = detail_super_imsm,
4522 .brief_detail_super = brief_detail_super_imsm,
bf5a934a 4523 .write_init_super = write_init_super_imsm,
0e600426
N
4524 .validate_geometry = validate_geometry_imsm,
4525 .add_to_super = add_to_super_imsm,
d665cc31 4526 .detail_platform = detail_platform_imsm,
cdddbdbc
DW
4527#endif
4528 .match_home = match_home_imsm,
4529 .uuid_from_super= uuid_from_super_imsm,
4530 .getinfo_super = getinfo_super_imsm,
4531 .update_super = update_super_imsm,
4532
4533 .avail_size = avail_size_imsm,
4534
4535 .compare_super = compare_super_imsm,
4536
4537 .load_super = load_super_imsm,
bf5a934a 4538 .init_super = init_super_imsm,
cdddbdbc
DW
4539 .store_super = store_zero_imsm,
4540 .free_super = free_super_imsm,
4541 .match_metadata_desc = match_metadata_desc_imsm,
bf5a934a 4542 .container_content = container_content_imsm,
a18a888e 4543 .default_layout = imsm_level_to_layout,
cdddbdbc 4544
cdddbdbc 4545 .external = 1,
4cce4069 4546 .name = "imsm",
845dea95 4547
0e600426 4548#ifndef MDASSEMBLE
845dea95
NB
4549/* for mdmon */
4550 .open_new = imsm_open_new,
4551 .load_super = load_super_imsm,
ed9d66aa 4552 .set_array_state= imsm_set_array_state,
845dea95
NB
4553 .set_disk = imsm_set_disk,
4554 .sync_metadata = imsm_sync_metadata,
88758e9d 4555 .activate_spare = imsm_activate_spare,
e8319a19 4556 .process_update = imsm_process_update,
8273f55e 4557 .prepare_update = imsm_prepare_update,
0e600426 4558#endif /* MDASSEMBLE */
cdddbdbc 4559};