]> git.ipfire.org Git - thirdparty/mdadm.git/blob - super-intel.c
imsm: FIX: Division by 0
[thirdparty/mdadm.git] / super-intel.c
1 /*
2 * mdadm - Intel(R) Matrix Storage Manager Support
3 *
4 * Copyright (C) 2002-2008 Intel Corporation
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
20 #define HAVE_STDINT_H 1
21 #include "mdadm.h"
22 #include "mdmon.h"
23 #include "sha1.h"
24 #include "platform-intel.h"
25 #include <values.h>
26 #include <scsi/sg.h>
27 #include <ctype.h>
28 #include <dirent.h>
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"
35 #define MPB_VERSION_MANY_VOLUMES_PER_ARRAY "1.2.00"
36 #define MPB_VERSION_3OR4_DISK_ARRAY "1.2.01"
37 #define MPB_VERSION_RAID5 "1.2.02"
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"
41 #define MAX_SIGNATURE_LENGTH 32
42 #define MAX_RAID_SERIAL_LEN 16
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
54 #define MPB_SECTOR_CNT 418
55 #define IMSM_RESERVED_SECTORS 4096
56 #define SECT_PER_MB_SHIFT 11
57
58 /* Disk configuration info. */
59 #define IMSM_MAX_DEVICES 255
60 struct 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 */
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 __u32 status; /* 0xF0 - 0xF3 */
68 __u32 owner_cfg_num; /* which config 0,1,2... owns this disk */
69 #define IMSM_DISK_FILLERS 4
70 __u32 filler[IMSM_DISK_FILLERS]; /* 0xF4 - 0x107 MPB_DISK_FILLERS for future expansion */
71 };
72
73 /* RAID map configuration infos. */
74 struct imsm_map {
75 __u32 pba_of_lba0; /* start address of partition */
76 __u32 blocks_per_member;/* blocks per member */
77 __u32 num_data_stripes; /* number of data stripes */
78 __u16 blocks_per_strip;
79 __u8 map_state; /* Normal, Uninitialized, Degraded, Failed */
80 #define IMSM_T_STATE_NORMAL 0
81 #define IMSM_T_STATE_UNINITIALIZED 1
82 #define IMSM_T_STATE_DEGRADED 2
83 #define IMSM_T_STATE_FAILED 3
84 __u8 raid_level;
85 #define IMSM_T_RAID0 0
86 #define IMSM_T_RAID1 1
87 #define IMSM_T_RAID5 5 /* since metadata version 1.2.02 ? */
88 __u8 num_members; /* number of member disks */
89 __u8 num_domains; /* number of parity domains */
90 __u8 failed_disk_num; /* valid only when state is degraded */
91 __u8 ddf;
92 __u32 filler[7]; /* expansion area */
93 #define IMSM_ORD_REBUILD (1 << 24)
94 __u32 disk_ord_tbl[1]; /* disk_ord_tbl[num_members],
95 * top byte contains some flags
96 */
97 } __attribute__ ((packed));
98
99 struct imsm_vol {
100 __u32 curr_migr_unit;
101 __u32 checkpoint_id; /* id to access curr_migr_unit */
102 __u8 migr_state; /* Normal or Migrating */
103 #define MIGR_INIT 0
104 #define MIGR_REBUILD 1
105 #define MIGR_VERIFY 2 /* analagous to echo check > sync_action */
106 #define MIGR_GEN_MIGR 3
107 #define MIGR_STATE_CHANGE 4
108 #define MIGR_REPAIR 5
109 __u8 migr_type; /* Initializing, Rebuilding, ... */
110 __u8 dirty;
111 __u8 fs_state; /* fast-sync state for CnG (0xff == disabled) */
112 __u16 verify_errors; /* number of mismatches */
113 __u16 bad_blocks; /* number of bad blocks during verify */
114 __u32 filler[4];
115 struct imsm_map map[1];
116 /* here comes another one if migr_state */
117 } __attribute__ ((packed));
118
119 struct imsm_dev {
120 __u8 volume[MAX_RAID_SERIAL_LEN];
121 __u32 size_low;
122 __u32 size_high;
123 #define DEV_BOOTABLE __cpu_to_le32(0x01)
124 #define DEV_BOOT_DEVICE __cpu_to_le32(0x02)
125 #define DEV_READ_COALESCING __cpu_to_le32(0x04)
126 #define DEV_WRITE_COALESCING __cpu_to_le32(0x08)
127 #define DEV_LAST_SHUTDOWN_DIRTY __cpu_to_le32(0x10)
128 #define DEV_HIDDEN_AT_BOOT __cpu_to_le32(0x20)
129 #define DEV_CURRENTLY_HIDDEN __cpu_to_le32(0x40)
130 #define DEV_VERIFY_AND_FIX __cpu_to_le32(0x80)
131 #define DEV_MAP_STATE_UNINIT __cpu_to_le32(0x100)
132 #define DEV_NO_AUTO_RECOVERY __cpu_to_le32(0x200)
133 #define DEV_CLONE_N_GO __cpu_to_le32(0x400)
134 #define DEV_CLONE_MAN_SYNC __cpu_to_le32(0x800)
135 #define DEV_CNG_MASTER_DISK_NUM __cpu_to_le32(0x1000)
136 __u32 status; /* Persistent RaidDev status */
137 __u32 reserved_blocks; /* Reserved blocks at beginning of volume */
138 __u8 migr_priority;
139 __u8 num_sub_vols;
140 __u8 tid;
141 __u8 cng_master_disk;
142 __u16 cache_policy;
143 __u8 cng_state;
144 __u8 cng_sub_state;
145 #define IMSM_DEV_FILLERS 10
146 __u32 filler[IMSM_DEV_FILLERS];
147 struct imsm_vol vol;
148 } __attribute__ ((packed));
149
150 struct imsm_super {
151 __u8 sig[MAX_SIGNATURE_LENGTH]; /* 0x00 - 0x1F */
152 __u32 check_sum; /* 0x20 - 0x23 MPB Checksum */
153 __u32 mpb_size; /* 0x24 - 0x27 Size of MPB */
154 __u32 family_num; /* 0x28 - 0x2B Checksum from first time this config was written */
155 __u32 generation_num; /* 0x2C - 0x2F Incremented each time this array's MPB is written */
156 __u32 error_log_size; /* 0x30 - 0x33 in bytes */
157 __u32 attributes; /* 0x34 - 0x37 */
158 __u8 num_disks; /* 0x38 Number of configured disks */
159 __u8 num_raid_devs; /* 0x39 Number of configured volumes */
160 __u8 error_log_pos; /* 0x3A */
161 __u8 fill[1]; /* 0x3B */
162 __u32 cache_size; /* 0x3c - 0x40 in mb */
163 __u32 orig_family_num; /* 0x40 - 0x43 original family num */
164 __u32 pwr_cycle_count; /* 0x44 - 0x47 simulated power cycle count for array */
165 __u32 bbm_log_size; /* 0x48 - 0x4B - size of bad Block Mgmt Log in bytes */
166 #define IMSM_FILLERS 35
167 __u32 filler[IMSM_FILLERS]; /* 0x4C - 0xD7 RAID_MPB_FILLERS */
168 struct imsm_disk disk[1]; /* 0xD8 diskTbl[numDisks] */
169 /* here comes imsm_dev[num_raid_devs] */
170 /* here comes BBM logs */
171 } __attribute__ ((packed));
172
173 #define BBM_LOG_MAX_ENTRIES 254
174
175 struct bbm_log_entry {
176 __u64 defective_block_start;
177 #define UNREADABLE 0xFFFFFFFF
178 __u32 spare_block_offset;
179 __u16 remapped_marked_count;
180 __u16 disk_ordinal;
181 } __attribute__ ((__packed__));
182
183 struct bbm_log {
184 __u32 signature; /* 0xABADB10C */
185 __u32 entry_count;
186 __u32 reserved_spare_block_count; /* 0 */
187 __u32 reserved; /* 0xFFFF */
188 __u64 first_spare_lba;
189 struct bbm_log_entry mapped_block_entries[BBM_LOG_MAX_ENTRIES];
190 } __attribute__ ((__packed__));
191
192
193 #ifndef MDASSEMBLE
194 static char *map_state_str[] = { "normal", "uninitialized", "degraded", "failed" };
195 #endif
196
197 static __u8 migr_type(struct imsm_dev *dev)
198 {
199 if (dev->vol.migr_type == MIGR_VERIFY &&
200 dev->status & DEV_VERIFY_AND_FIX)
201 return MIGR_REPAIR;
202 else
203 return dev->vol.migr_type;
204 }
205
206 static void set_migr_type(struct imsm_dev *dev, __u8 migr_type)
207 {
208 /* for compatibility with older oroms convert MIGR_REPAIR, into
209 * MIGR_VERIFY w/ DEV_VERIFY_AND_FIX status
210 */
211 if (migr_type == MIGR_REPAIR) {
212 dev->vol.migr_type = MIGR_VERIFY;
213 dev->status |= DEV_VERIFY_AND_FIX;
214 } else {
215 dev->vol.migr_type = migr_type;
216 dev->status &= ~DEV_VERIFY_AND_FIX;
217 }
218 }
219
220 static unsigned int sector_count(__u32 bytes)
221 {
222 return ((bytes + (512-1)) & (~(512-1))) / 512;
223 }
224
225 static unsigned int mpb_sectors(struct imsm_super *mpb)
226 {
227 return sector_count(__le32_to_cpu(mpb->mpb_size));
228 }
229
230 struct intel_dev {
231 struct imsm_dev *dev;
232 struct intel_dev *next;
233 unsigned index;
234 };
235
236 enum action {
237 DISK_REMOVE = 1,
238 DISK_ADD
239 };
240 /* internal representation of IMSM metadata */
241 struct intel_super {
242 union {
243 void *buf; /* O_DIRECT buffer for reading/writing metadata */
244 struct imsm_super *anchor; /* immovable parameters */
245 };
246 size_t len; /* size of the 'buf' allocation */
247 void *next_buf; /* for realloc'ing buf from the manager */
248 size_t next_len;
249 int updates_pending; /* count of pending updates for mdmon */
250 int current_vol; /* index of raid device undergoing creation */
251 __u32 create_offset; /* common start for 'current_vol' */
252 __u32 random; /* random data for seeding new family numbers */
253 struct intel_dev *devlist;
254 struct dl {
255 struct dl *next;
256 int index;
257 __u8 serial[MAX_RAID_SERIAL_LEN];
258 int major, minor;
259 char *devname;
260 struct imsm_disk disk;
261 int fd;
262 int extent_cnt;
263 struct extent *e; /* for determining freespace @ create */
264 int raiddisk; /* slot to fill in autolayout */
265 enum action action;
266 } *disks;
267 struct dl *disk_mgmt_list; /* list of disks to add/remove while mdmon
268 active */
269 struct dl *missing; /* disks removed while we weren't looking */
270 struct bbm_log *bbm_log;
271 const char *hba; /* device path of the raid controller for this metadata */
272 const struct imsm_orom *orom; /* platform firmware support */
273 struct intel_super *next; /* (temp) list for disambiguating family_num */
274 };
275
276 struct intel_disk {
277 struct imsm_disk disk;
278 #define IMSM_UNKNOWN_OWNER (-1)
279 int owner;
280 struct intel_disk *next;
281 };
282
283 struct extent {
284 unsigned long long start, size;
285 };
286
287 /* definition of messages passed to imsm_process_update */
288 enum imsm_update_type {
289 update_activate_spare,
290 update_create_array,
291 update_kill_array,
292 update_rename_array,
293 update_add_remove_disk,
294 update_reshape_container_disks,
295 };
296
297 struct imsm_update_activate_spare {
298 enum imsm_update_type type;
299 struct dl *dl;
300 int slot;
301 int array;
302 struct imsm_update_activate_spare *next;
303 };
304
305 struct geo_params {
306 int dev_id;
307 char *dev_name;
308 long long size;
309 int level;
310 int layout;
311 int chunksize;
312 int raid_disks;
313 };
314
315
316 struct imsm_update_reshape {
317 enum imsm_update_type type;
318 int old_raid_disks;
319 int new_raid_disks;
320 int new_disks[1]; /* new_raid_disks - old_raid_disks makedev number */
321 };
322
323 struct disk_info {
324 __u8 serial[MAX_RAID_SERIAL_LEN];
325 };
326
327 struct imsm_update_create_array {
328 enum imsm_update_type type;
329 int dev_idx;
330 struct imsm_dev dev;
331 };
332
333 struct imsm_update_kill_array {
334 enum imsm_update_type type;
335 int dev_idx;
336 };
337
338 struct imsm_update_rename_array {
339 enum imsm_update_type type;
340 __u8 name[MAX_RAID_SERIAL_LEN];
341 int dev_idx;
342 };
343
344 struct imsm_update_add_remove_disk {
345 enum imsm_update_type type;
346 };
347
348 static struct supertype *match_metadata_desc_imsm(char *arg)
349 {
350 struct supertype *st;
351
352 if (strcmp(arg, "imsm") != 0 &&
353 strcmp(arg, "default") != 0
354 )
355 return NULL;
356
357 st = malloc(sizeof(*st));
358 if (!st)
359 return NULL;
360 memset(st, 0, sizeof(*st));
361 st->container_dev = NoMdDev;
362 st->ss = &super_imsm;
363 st->max_devs = IMSM_MAX_DEVICES;
364 st->minor_version = 0;
365 st->sb = NULL;
366 return st;
367 }
368
369 #ifndef MDASSEMBLE
370 static __u8 *get_imsm_version(struct imsm_super *mpb)
371 {
372 return &mpb->sig[MPB_SIG_LEN];
373 }
374 #endif
375
376 /* retrieve a disk directly from the anchor when the anchor is known to be
377 * up-to-date, currently only at load time
378 */
379 static struct imsm_disk *__get_imsm_disk(struct imsm_super *mpb, __u8 index)
380 {
381 if (index >= mpb->num_disks)
382 return NULL;
383 return &mpb->disk[index];
384 }
385
386 /* retrieve the disk description based on a index of the disk
387 * in the sub-array
388 */
389 static struct dl *get_imsm_dl_disk(struct intel_super *super, __u8 index)
390 {
391 struct dl *d;
392
393 for (d = super->disks; d; d = d->next)
394 if (d->index == index)
395 return d;
396
397 return NULL;
398 }
399 /* retrieve a disk from the parsed metadata */
400 static struct imsm_disk *get_imsm_disk(struct intel_super *super, __u8 index)
401 {
402 struct dl *dl;
403
404 dl = get_imsm_dl_disk(super, index);
405 if (dl)
406 return &dl->disk;
407
408 return NULL;
409 }
410
411 /* generate a checksum directly from the anchor when the anchor is known to be
412 * up-to-date, currently only at load or write_super after coalescing
413 */
414 static __u32 __gen_imsm_checksum(struct imsm_super *mpb)
415 {
416 __u32 end = mpb->mpb_size / sizeof(end);
417 __u32 *p = (__u32 *) mpb;
418 __u32 sum = 0;
419
420 while (end--) {
421 sum += __le32_to_cpu(*p);
422 p++;
423 }
424
425 return sum - __le32_to_cpu(mpb->check_sum);
426 }
427
428 static size_t sizeof_imsm_map(struct imsm_map *map)
429 {
430 return sizeof(struct imsm_map) + sizeof(__u32) * (map->num_members - 1);
431 }
432
433 struct imsm_map *get_imsm_map(struct imsm_dev *dev, int second_map)
434 {
435 struct imsm_map *map = &dev->vol.map[0];
436
437 if (second_map && !dev->vol.migr_state)
438 return NULL;
439 else if (second_map) {
440 void *ptr = map;
441
442 return ptr + sizeof_imsm_map(map);
443 } else
444 return map;
445
446 }
447
448 /* return the size of the device.
449 * migr_state increases the returned size if map[0] were to be duplicated
450 */
451 static size_t sizeof_imsm_dev(struct imsm_dev *dev, int migr_state)
452 {
453 size_t size = sizeof(*dev) - sizeof(struct imsm_map) +
454 sizeof_imsm_map(get_imsm_map(dev, 0));
455
456 /* migrating means an additional map */
457 if (dev->vol.migr_state)
458 size += sizeof_imsm_map(get_imsm_map(dev, 1));
459 else if (migr_state)
460 size += sizeof_imsm_map(get_imsm_map(dev, 0));
461
462 return size;
463 }
464
465 #ifndef MDASSEMBLE
466 /* retrieve disk serial number list from a metadata update */
467 static struct disk_info *get_disk_info(struct imsm_update_create_array *update)
468 {
469 void *u = update;
470 struct disk_info *inf;
471
472 inf = u + sizeof(*update) - sizeof(struct imsm_dev) +
473 sizeof_imsm_dev(&update->dev, 0);
474
475 return inf;
476 }
477 #endif
478
479 static struct imsm_dev *__get_imsm_dev(struct imsm_super *mpb, __u8 index)
480 {
481 int offset;
482 int i;
483 void *_mpb = mpb;
484
485 if (index >= mpb->num_raid_devs)
486 return NULL;
487
488 /* devices start after all disks */
489 offset = ((void *) &mpb->disk[mpb->num_disks]) - _mpb;
490
491 for (i = 0; i <= index; i++)
492 if (i == index)
493 return _mpb + offset;
494 else
495 offset += sizeof_imsm_dev(_mpb + offset, 0);
496
497 return NULL;
498 }
499
500 static struct imsm_dev *get_imsm_dev(struct intel_super *super, __u8 index)
501 {
502 struct intel_dev *dv;
503
504 if (index >= super->anchor->num_raid_devs)
505 return NULL;
506 for (dv = super->devlist; dv; dv = dv->next)
507 if (dv->index == index)
508 return dv->dev;
509 return NULL;
510 }
511
512 /*
513 * for second_map:
514 * == 0 get first map
515 * == 1 get second map
516 * == -1 than get map according to the current migr_state
517 */
518 static __u32 get_imsm_ord_tbl_ent(struct imsm_dev *dev,
519 int slot,
520 int second_map)
521 {
522 struct imsm_map *map;
523
524 if (second_map == -1) {
525 if (dev->vol.migr_state)
526 map = get_imsm_map(dev, 1);
527 else
528 map = get_imsm_map(dev, 0);
529 } else {
530 map = get_imsm_map(dev, second_map);
531 }
532
533 /* top byte identifies disk under rebuild */
534 return __le32_to_cpu(map->disk_ord_tbl[slot]);
535 }
536
537 #define ord_to_idx(ord) (((ord) << 8) >> 8)
538 static __u32 get_imsm_disk_idx(struct imsm_dev *dev, int slot, int second_map)
539 {
540 __u32 ord = get_imsm_ord_tbl_ent(dev, slot, second_map);
541
542 return ord_to_idx(ord);
543 }
544
545 static void set_imsm_ord_tbl_ent(struct imsm_map *map, int slot, __u32 ord)
546 {
547 map->disk_ord_tbl[slot] = __cpu_to_le32(ord);
548 }
549
550 static int get_imsm_disk_slot(struct imsm_map *map, unsigned idx)
551 {
552 int slot;
553 __u32 ord;
554
555 for (slot = 0; slot < map->num_members; slot++) {
556 ord = __le32_to_cpu(map->disk_ord_tbl[slot]);
557 if (ord_to_idx(ord) == idx)
558 return slot;
559 }
560
561 return -1;
562 }
563
564 static int get_imsm_raid_level(struct imsm_map *map)
565 {
566 if (map->raid_level == 1) {
567 if (map->num_members == 2)
568 return 1;
569 else
570 return 10;
571 }
572
573 return map->raid_level;
574 }
575
576 static int cmp_extent(const void *av, const void *bv)
577 {
578 const struct extent *a = av;
579 const struct extent *b = bv;
580 if (a->start < b->start)
581 return -1;
582 if (a->start > b->start)
583 return 1;
584 return 0;
585 }
586
587 static int count_memberships(struct dl *dl, struct intel_super *super)
588 {
589 int memberships = 0;
590 int i;
591
592 for (i = 0; i < super->anchor->num_raid_devs; i++) {
593 struct imsm_dev *dev = get_imsm_dev(super, i);
594 struct imsm_map *map = get_imsm_map(dev, 0);
595
596 if (get_imsm_disk_slot(map, dl->index) >= 0)
597 memberships++;
598 }
599
600 return memberships;
601 }
602
603 static struct extent *get_extents(struct intel_super *super, struct dl *dl)
604 {
605 /* find a list of used extents on the given physical device */
606 struct extent *rv, *e;
607 int i;
608 int memberships = count_memberships(dl, super);
609 __u32 reservation = MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
610
611 rv = malloc(sizeof(struct extent) * (memberships + 1));
612 if (!rv)
613 return NULL;
614 e = rv;
615
616 for (i = 0; i < super->anchor->num_raid_devs; i++) {
617 struct imsm_dev *dev = get_imsm_dev(super, i);
618 struct imsm_map *map = get_imsm_map(dev, 0);
619
620 if (get_imsm_disk_slot(map, dl->index) >= 0) {
621 e->start = __le32_to_cpu(map->pba_of_lba0);
622 e->size = __le32_to_cpu(map->blocks_per_member);
623 e++;
624 }
625 }
626 qsort(rv, memberships, sizeof(*rv), cmp_extent);
627
628 /* determine the start of the metadata
629 * when no raid devices are defined use the default
630 * ...otherwise allow the metadata to truncate the value
631 * as is the case with older versions of imsm
632 */
633 if (memberships) {
634 struct extent *last = &rv[memberships - 1];
635 __u32 remainder;
636
637 remainder = __le32_to_cpu(dl->disk.total_blocks) -
638 (last->start + last->size);
639 /* round down to 1k block to satisfy precision of the kernel
640 * 'size' interface
641 */
642 remainder &= ~1UL;
643 /* make sure remainder is still sane */
644 if (remainder < (unsigned)ROUND_UP(super->len, 512) >> 9)
645 remainder = ROUND_UP(super->len, 512) >> 9;
646 if (reservation > remainder)
647 reservation = remainder;
648 }
649 e->start = __le32_to_cpu(dl->disk.total_blocks) - reservation;
650 e->size = 0;
651 return rv;
652 }
653
654 /* try to determine how much space is reserved for metadata from
655 * the last get_extents() entry, otherwise fallback to the
656 * default
657 */
658 static __u32 imsm_reserved_sectors(struct intel_super *super, struct dl *dl)
659 {
660 struct extent *e;
661 int i;
662 __u32 rv;
663
664 /* for spares just return a minimal reservation which will grow
665 * once the spare is picked up by an array
666 */
667 if (dl->index == -1)
668 return MPB_SECTOR_CNT;
669
670 e = get_extents(super, dl);
671 if (!e)
672 return MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
673
674 /* scroll to last entry */
675 for (i = 0; e[i].size; i++)
676 continue;
677
678 rv = __le32_to_cpu(dl->disk.total_blocks) - e[i].start;
679
680 free(e);
681
682 return rv;
683 }
684
685 static int is_spare(struct imsm_disk *disk)
686 {
687 return (disk->status & SPARE_DISK) == SPARE_DISK;
688 }
689
690 static int is_configured(struct imsm_disk *disk)
691 {
692 return (disk->status & CONFIGURED_DISK) == CONFIGURED_DISK;
693 }
694
695 static int is_failed(struct imsm_disk *disk)
696 {
697 return (disk->status & FAILED_DISK) == FAILED_DISK;
698 }
699
700 /* Return minimum size of a spare that can be used in this array*/
701 static unsigned long long min_acceptable_spare_size_imsm(struct supertype *st)
702 {
703 struct intel_super *super = st->sb;
704 struct dl *dl;
705 struct extent *e;
706 int i;
707 unsigned long long rv = 0;
708
709 if (!super)
710 return rv;
711 /* find first active disk in array */
712 dl = super->disks;
713 while (dl && (is_failed(&dl->disk) || dl->index == -1))
714 dl = dl->next;
715 if (!dl)
716 return rv;
717 /* find last lba used by subarrays */
718 e = get_extents(super, dl);
719 if (!e)
720 return rv;
721 for (i = 0; e[i].size; i++)
722 continue;
723 if (i > 0)
724 rv = e[i-1].start + e[i-1].size;
725 free(e);
726 /* add the amount of space needed for metadata */
727 rv = rv + MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
728 return rv * 512;
729 }
730
731 #ifndef MDASSEMBLE
732 static __u64 blocks_per_migr_unit(struct imsm_dev *dev);
733
734 static void print_imsm_dev(struct imsm_dev *dev, char *uuid, int disk_idx)
735 {
736 __u64 sz;
737 int slot, i;
738 struct imsm_map *map = get_imsm_map(dev, 0);
739 struct imsm_map *map2 = get_imsm_map(dev, 1);
740 __u32 ord;
741
742 printf("\n");
743 printf("[%.16s]:\n", dev->volume);
744 printf(" UUID : %s\n", uuid);
745 printf(" RAID Level : %d", get_imsm_raid_level(map));
746 if (map2)
747 printf(" <-- %d", get_imsm_raid_level(map2));
748 printf("\n");
749 printf(" Members : %d", map->num_members);
750 if (map2)
751 printf(" <-- %d", map2->num_members);
752 printf("\n");
753 printf(" Slots : [");
754 for (i = 0; i < map->num_members; i++) {
755 ord = get_imsm_ord_tbl_ent(dev, i, 0);
756 printf("%s", ord & IMSM_ORD_REBUILD ? "_" : "U");
757 }
758 printf("]");
759 if (map2) {
760 printf(" <-- [");
761 for (i = 0; i < map2->num_members; i++) {
762 ord = get_imsm_ord_tbl_ent(dev, i, 1);
763 printf("%s", ord & IMSM_ORD_REBUILD ? "_" : "U");
764 }
765 printf("]");
766 }
767 printf("\n");
768 slot = get_imsm_disk_slot(map, disk_idx);
769 if (slot >= 0) {
770 ord = get_imsm_ord_tbl_ent(dev, slot, -1);
771 printf(" This Slot : %d%s\n", slot,
772 ord & IMSM_ORD_REBUILD ? " (out-of-sync)" : "");
773 } else
774 printf(" This Slot : ?\n");
775 sz = __le32_to_cpu(dev->size_high);
776 sz <<= 32;
777 sz += __le32_to_cpu(dev->size_low);
778 printf(" Array Size : %llu%s\n", (unsigned long long)sz,
779 human_size(sz * 512));
780 sz = __le32_to_cpu(map->blocks_per_member);
781 printf(" Per Dev Size : %llu%s\n", (unsigned long long)sz,
782 human_size(sz * 512));
783 printf(" Sector Offset : %u\n",
784 __le32_to_cpu(map->pba_of_lba0));
785 printf(" Num Stripes : %u\n",
786 __le32_to_cpu(map->num_data_stripes));
787 printf(" Chunk Size : %u KiB",
788 __le16_to_cpu(map->blocks_per_strip) / 2);
789 if (map2)
790 printf(" <-- %u KiB",
791 __le16_to_cpu(map2->blocks_per_strip) / 2);
792 printf("\n");
793 printf(" Reserved : %d\n", __le32_to_cpu(dev->reserved_blocks));
794 printf(" Migrate State : ");
795 if (dev->vol.migr_state) {
796 if (migr_type(dev) == MIGR_INIT)
797 printf("initialize\n");
798 else if (migr_type(dev) == MIGR_REBUILD)
799 printf("rebuild\n");
800 else if (migr_type(dev) == MIGR_VERIFY)
801 printf("check\n");
802 else if (migr_type(dev) == MIGR_GEN_MIGR)
803 printf("general migration\n");
804 else if (migr_type(dev) == MIGR_STATE_CHANGE)
805 printf("state change\n");
806 else if (migr_type(dev) == MIGR_REPAIR)
807 printf("repair\n");
808 else
809 printf("<unknown:%d>\n", migr_type(dev));
810 } else
811 printf("idle\n");
812 printf(" Map State : %s", map_state_str[map->map_state]);
813 if (dev->vol.migr_state) {
814 struct imsm_map *map = get_imsm_map(dev, 1);
815
816 printf(" <-- %s", map_state_str[map->map_state]);
817 printf("\n Checkpoint : %u (%llu)",
818 __le32_to_cpu(dev->vol.curr_migr_unit),
819 (unsigned long long)blocks_per_migr_unit(dev));
820 }
821 printf("\n");
822 printf(" Dirty State : %s\n", dev->vol.dirty ? "dirty" : "clean");
823 }
824
825 static void print_imsm_disk(struct imsm_super *mpb, int index, __u32 reserved)
826 {
827 struct imsm_disk *disk = __get_imsm_disk(mpb, index);
828 char str[MAX_RAID_SERIAL_LEN + 1];
829 __u64 sz;
830
831 if (index < 0 || !disk)
832 return;
833
834 printf("\n");
835 snprintf(str, MAX_RAID_SERIAL_LEN + 1, "%s", disk->serial);
836 printf(" Disk%02d Serial : %s\n", index, str);
837 printf(" State :%s%s%s\n", is_spare(disk) ? " spare" : "",
838 is_configured(disk) ? " active" : "",
839 is_failed(disk) ? " failed" : "");
840 printf(" Id : %08x\n", __le32_to_cpu(disk->scsi_id));
841 sz = __le32_to_cpu(disk->total_blocks) - reserved;
842 printf(" Usable Size : %llu%s\n", (unsigned long long)sz,
843 human_size(sz * 512));
844 }
845
846 static void getinfo_super_imsm(struct supertype *st, struct mdinfo *info, char *map);
847
848 static void examine_super_imsm(struct supertype *st, char *homehost)
849 {
850 struct intel_super *super = st->sb;
851 struct imsm_super *mpb = super->anchor;
852 char str[MAX_SIGNATURE_LENGTH];
853 int i;
854 struct mdinfo info;
855 char nbuf[64];
856 __u32 sum;
857 __u32 reserved = imsm_reserved_sectors(super, super->disks);
858 struct dl *dl;
859
860 snprintf(str, MPB_SIG_LEN, "%s", mpb->sig);
861 printf(" Magic : %s\n", str);
862 snprintf(str, strlen(MPB_VERSION_RAID0), "%s", get_imsm_version(mpb));
863 printf(" Version : %s\n", get_imsm_version(mpb));
864 printf(" Orig Family : %08x\n", __le32_to_cpu(mpb->orig_family_num));
865 printf(" Family : %08x\n", __le32_to_cpu(mpb->family_num));
866 printf(" Generation : %08x\n", __le32_to_cpu(mpb->generation_num));
867 getinfo_super_imsm(st, &info, NULL);
868 fname_from_uuid(st, &info, nbuf, ':');
869 printf(" UUID : %s\n", nbuf + 5);
870 sum = __le32_to_cpu(mpb->check_sum);
871 printf(" Checksum : %08x %s\n", sum,
872 __gen_imsm_checksum(mpb) == sum ? "correct" : "incorrect");
873 printf(" MPB Sectors : %d\n", mpb_sectors(mpb));
874 printf(" Disks : %d\n", mpb->num_disks);
875 printf(" RAID Devices : %d\n", mpb->num_raid_devs);
876 print_imsm_disk(mpb, super->disks->index, reserved);
877 if (super->bbm_log) {
878 struct bbm_log *log = super->bbm_log;
879
880 printf("\n");
881 printf("Bad Block Management Log:\n");
882 printf(" Log Size : %d\n", __le32_to_cpu(mpb->bbm_log_size));
883 printf(" Signature : %x\n", __le32_to_cpu(log->signature));
884 printf(" Entry Count : %d\n", __le32_to_cpu(log->entry_count));
885 printf(" Spare Blocks : %d\n", __le32_to_cpu(log->reserved_spare_block_count));
886 printf(" First Spare : %llx\n",
887 (unsigned long long) __le64_to_cpu(log->first_spare_lba));
888 }
889 for (i = 0; i < mpb->num_raid_devs; i++) {
890 struct mdinfo info;
891 struct imsm_dev *dev = __get_imsm_dev(mpb, i);
892
893 super->current_vol = i;
894 getinfo_super_imsm(st, &info, NULL);
895 fname_from_uuid(st, &info, nbuf, ':');
896 print_imsm_dev(dev, nbuf + 5, super->disks->index);
897 }
898 for (i = 0; i < mpb->num_disks; i++) {
899 if (i == super->disks->index)
900 continue;
901 print_imsm_disk(mpb, i, reserved);
902 }
903 for (dl = super->disks ; dl; dl = dl->next) {
904 struct imsm_disk *disk;
905 char str[MAX_RAID_SERIAL_LEN + 1];
906 __u64 sz;
907
908 if (dl->index >= 0)
909 continue;
910
911 disk = &dl->disk;
912 printf("\n");
913 snprintf(str, MAX_RAID_SERIAL_LEN + 1, "%s", disk->serial);
914 printf(" Disk Serial : %s\n", str);
915 printf(" State :%s%s%s\n", is_spare(disk) ? " spare" : "",
916 is_configured(disk) ? " active" : "",
917 is_failed(disk) ? " failed" : "");
918 printf(" Id : %08x\n", __le32_to_cpu(disk->scsi_id));
919 sz = __le32_to_cpu(disk->total_blocks) - reserved;
920 printf(" Usable Size : %llu%s\n", (unsigned long long)sz,
921 human_size(sz * 512));
922 }
923 }
924
925 static void brief_examine_super_imsm(struct supertype *st, int verbose)
926 {
927 /* We just write a generic IMSM ARRAY entry */
928 struct mdinfo info;
929 char nbuf[64];
930 struct intel_super *super = st->sb;
931
932 if (!super->anchor->num_raid_devs) {
933 printf("ARRAY metadata=imsm\n");
934 return;
935 }
936
937 getinfo_super_imsm(st, &info, NULL);
938 fname_from_uuid(st, &info, nbuf, ':');
939 printf("ARRAY metadata=imsm UUID=%s\n", nbuf + 5);
940 }
941
942 static void brief_examine_subarrays_imsm(struct supertype *st, int verbose)
943 {
944 /* We just write a generic IMSM ARRAY entry */
945 struct mdinfo info;
946 char nbuf[64];
947 char nbuf1[64];
948 struct intel_super *super = st->sb;
949 int i;
950
951 if (!super->anchor->num_raid_devs)
952 return;
953
954 getinfo_super_imsm(st, &info, NULL);
955 fname_from_uuid(st, &info, nbuf, ':');
956 for (i = 0; i < super->anchor->num_raid_devs; i++) {
957 struct imsm_dev *dev = get_imsm_dev(super, i);
958
959 super->current_vol = i;
960 getinfo_super_imsm(st, &info, NULL);
961 fname_from_uuid(st, &info, nbuf1, ':');
962 printf("ARRAY /dev/md/%.16s container=%s member=%d UUID=%s\n",
963 dev->volume, nbuf + 5, i, nbuf1 + 5);
964 }
965 }
966
967 static void export_examine_super_imsm(struct supertype *st)
968 {
969 struct intel_super *super = st->sb;
970 struct imsm_super *mpb = super->anchor;
971 struct mdinfo info;
972 char nbuf[64];
973
974 getinfo_super_imsm(st, &info, NULL);
975 fname_from_uuid(st, &info, nbuf, ':');
976 printf("MD_METADATA=imsm\n");
977 printf("MD_LEVEL=container\n");
978 printf("MD_UUID=%s\n", nbuf+5);
979 printf("MD_DEVICES=%u\n", mpb->num_disks);
980 }
981
982 static void detail_super_imsm(struct supertype *st, char *homehost)
983 {
984 struct mdinfo info;
985 char nbuf[64];
986
987 getinfo_super_imsm(st, &info, NULL);
988 fname_from_uuid(st, &info, nbuf, ':');
989 printf("\n UUID : %s\n", nbuf + 5);
990 }
991
992 static void brief_detail_super_imsm(struct supertype *st)
993 {
994 struct mdinfo info;
995 char nbuf[64];
996 getinfo_super_imsm(st, &info, NULL);
997 fname_from_uuid(st, &info, nbuf, ':');
998 printf(" UUID=%s", nbuf + 5);
999 }
1000
1001 static int imsm_read_serial(int fd, char *devname, __u8 *serial);
1002 static void fd2devname(int fd, char *name);
1003
1004 static int imsm_enumerate_ports(const char *hba_path, int port_count, int host_base, int verbose)
1005 {
1006 /* dump an unsorted list of devices attached to ahci, as well as
1007 * non-connected ports
1008 */
1009 int hba_len = strlen(hba_path) + 1;
1010 struct dirent *ent;
1011 DIR *dir;
1012 char *path = NULL;
1013 int err = 0;
1014 unsigned long port_mask = (1 << port_count) - 1;
1015
1016 if (port_count > (int)sizeof(port_mask) * 8) {
1017 if (verbose)
1018 fprintf(stderr, Name ": port_count %d out of range\n", port_count);
1019 return 2;
1020 }
1021
1022 /* scroll through /sys/dev/block looking for devices attached to
1023 * this hba
1024 */
1025 dir = opendir("/sys/dev/block");
1026 for (ent = dir ? readdir(dir) : NULL; ent; ent = readdir(dir)) {
1027 int fd;
1028 char model[64];
1029 char vendor[64];
1030 char buf[1024];
1031 int major, minor;
1032 char *device;
1033 char *c;
1034 int port;
1035 int type;
1036
1037 if (sscanf(ent->d_name, "%d:%d", &major, &minor) != 2)
1038 continue;
1039 path = devt_to_devpath(makedev(major, minor));
1040 if (!path)
1041 continue;
1042 if (!path_attached_to_hba(path, hba_path)) {
1043 free(path);
1044 path = NULL;
1045 continue;
1046 }
1047
1048 /* retrieve the scsi device type */
1049 if (asprintf(&device, "/sys/dev/block/%d:%d/device/xxxxxxx", major, minor) < 0) {
1050 if (verbose)
1051 fprintf(stderr, Name ": failed to allocate 'device'\n");
1052 err = 2;
1053 break;
1054 }
1055 sprintf(device, "/sys/dev/block/%d:%d/device/type", major, minor);
1056 if (load_sys(device, buf) != 0) {
1057 if (verbose)
1058 fprintf(stderr, Name ": failed to read device type for %s\n",
1059 path);
1060 err = 2;
1061 free(device);
1062 break;
1063 }
1064 type = strtoul(buf, NULL, 10);
1065
1066 /* if it's not a disk print the vendor and model */
1067 if (!(type == 0 || type == 7 || type == 14)) {
1068 vendor[0] = '\0';
1069 model[0] = '\0';
1070 sprintf(device, "/sys/dev/block/%d:%d/device/vendor", major, minor);
1071 if (load_sys(device, buf) == 0) {
1072 strncpy(vendor, buf, sizeof(vendor));
1073 vendor[sizeof(vendor) - 1] = '\0';
1074 c = (char *) &vendor[sizeof(vendor) - 1];
1075 while (isspace(*c) || *c == '\0')
1076 *c-- = '\0';
1077
1078 }
1079 sprintf(device, "/sys/dev/block/%d:%d/device/model", major, minor);
1080 if (load_sys(device, buf) == 0) {
1081 strncpy(model, buf, sizeof(model));
1082 model[sizeof(model) - 1] = '\0';
1083 c = (char *) &model[sizeof(model) - 1];
1084 while (isspace(*c) || *c == '\0')
1085 *c-- = '\0';
1086 }
1087
1088 if (vendor[0] && model[0])
1089 sprintf(buf, "%.64s %.64s", vendor, model);
1090 else
1091 switch (type) { /* numbers from hald/linux/device.c */
1092 case 1: sprintf(buf, "tape"); break;
1093 case 2: sprintf(buf, "printer"); break;
1094 case 3: sprintf(buf, "processor"); break;
1095 case 4:
1096 case 5: sprintf(buf, "cdrom"); break;
1097 case 6: sprintf(buf, "scanner"); break;
1098 case 8: sprintf(buf, "media_changer"); break;
1099 case 9: sprintf(buf, "comm"); break;
1100 case 12: sprintf(buf, "raid"); break;
1101 default: sprintf(buf, "unknown");
1102 }
1103 } else
1104 buf[0] = '\0';
1105 free(device);
1106
1107 /* chop device path to 'host%d' and calculate the port number */
1108 c = strchr(&path[hba_len], '/');
1109 if (!c) {
1110 if (verbose)
1111 fprintf(stderr, Name ": %s - invalid path name\n", path + hba_len);
1112 err = 2;
1113 break;
1114 }
1115 *c = '\0';
1116 if (sscanf(&path[hba_len], "host%d", &port) == 1)
1117 port -= host_base;
1118 else {
1119 if (verbose) {
1120 *c = '/'; /* repair the full string */
1121 fprintf(stderr, Name ": failed to determine port number for %s\n",
1122 path);
1123 }
1124 err = 2;
1125 break;
1126 }
1127
1128 /* mark this port as used */
1129 port_mask &= ~(1 << port);
1130
1131 /* print out the device information */
1132 if (buf[0]) {
1133 printf(" Port%d : - non-disk device (%s) -\n", port, buf);
1134 continue;
1135 }
1136
1137 fd = dev_open(ent->d_name, O_RDONLY);
1138 if (fd < 0)
1139 printf(" Port%d : - disk info unavailable -\n", port);
1140 else {
1141 fd2devname(fd, buf);
1142 printf(" Port%d : %s", port, buf);
1143 if (imsm_read_serial(fd, NULL, (__u8 *) buf) == 0)
1144 printf(" (%s)\n", buf);
1145 else
1146 printf("()\n");
1147 }
1148 close(fd);
1149 free(path);
1150 path = NULL;
1151 }
1152 if (path)
1153 free(path);
1154 if (dir)
1155 closedir(dir);
1156 if (err == 0) {
1157 int i;
1158
1159 for (i = 0; i < port_count; i++)
1160 if (port_mask & (1 << i))
1161 printf(" Port%d : - no device attached -\n", i);
1162 }
1163
1164 return err;
1165 }
1166
1167 static int detail_platform_imsm(int verbose, int enumerate_only)
1168 {
1169 /* There are two components to imsm platform support, the ahci SATA
1170 * controller and the option-rom. To find the SATA controller we
1171 * simply look in /sys/bus/pci/drivers/ahci to see if an ahci
1172 * controller with the Intel vendor id is present. This approach
1173 * allows mdadm to leverage the kernel's ahci detection logic, with the
1174 * caveat that if ahci.ko is not loaded mdadm will not be able to
1175 * detect platform raid capabilities. The option-rom resides in a
1176 * platform "Adapter ROM". We scan for its signature to retrieve the
1177 * platform capabilities. If raid support is disabled in the BIOS the
1178 * option-rom capability structure will not be available.
1179 */
1180 const struct imsm_orom *orom;
1181 struct sys_dev *list, *hba;
1182 DIR *dir;
1183 struct dirent *ent;
1184 const char *hba_path;
1185 int host_base = 0;
1186 int port_count = 0;
1187
1188 if (enumerate_only) {
1189 if (check_env("IMSM_NO_PLATFORM") || find_imsm_orom())
1190 return 0;
1191 return 2;
1192 }
1193
1194 list = find_driver_devices("pci", "ahci");
1195 for (hba = list; hba; hba = hba->next)
1196 if (devpath_to_vendor(hba->path) == 0x8086)
1197 break;
1198
1199 if (!hba) {
1200 if (verbose)
1201 fprintf(stderr, Name ": unable to find active ahci controller\n");
1202 free_sys_dev(&list);
1203 return 2;
1204 } else if (verbose)
1205 fprintf(stderr, Name ": found Intel SATA AHCI Controller\n");
1206 hba_path = hba->path;
1207 hba->path = NULL;
1208 free_sys_dev(&list);
1209
1210 orom = find_imsm_orom();
1211 if (!orom) {
1212 if (verbose)
1213 fprintf(stderr, Name ": imsm option-rom not found\n");
1214 return 2;
1215 }
1216
1217 printf(" Platform : Intel(R) Matrix Storage Manager\n");
1218 printf(" Version : %d.%d.%d.%d\n", orom->major_ver, orom->minor_ver,
1219 orom->hotfix_ver, orom->build);
1220 printf(" RAID Levels :%s%s%s%s%s\n",
1221 imsm_orom_has_raid0(orom) ? " raid0" : "",
1222 imsm_orom_has_raid1(orom) ? " raid1" : "",
1223 imsm_orom_has_raid1e(orom) ? " raid1e" : "",
1224 imsm_orom_has_raid10(orom) ? " raid10" : "",
1225 imsm_orom_has_raid5(orom) ? " raid5" : "");
1226 printf(" Chunk Sizes :%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
1227 imsm_orom_has_chunk(orom, 2) ? " 2k" : "",
1228 imsm_orom_has_chunk(orom, 4) ? " 4k" : "",
1229 imsm_orom_has_chunk(orom, 8) ? " 8k" : "",
1230 imsm_orom_has_chunk(orom, 16) ? " 16k" : "",
1231 imsm_orom_has_chunk(orom, 32) ? " 32k" : "",
1232 imsm_orom_has_chunk(orom, 64) ? " 64k" : "",
1233 imsm_orom_has_chunk(orom, 128) ? " 128k" : "",
1234 imsm_orom_has_chunk(orom, 256) ? " 256k" : "",
1235 imsm_orom_has_chunk(orom, 512) ? " 512k" : "",
1236 imsm_orom_has_chunk(orom, 1024*1) ? " 1M" : "",
1237 imsm_orom_has_chunk(orom, 1024*2) ? " 2M" : "",
1238 imsm_orom_has_chunk(orom, 1024*4) ? " 4M" : "",
1239 imsm_orom_has_chunk(orom, 1024*8) ? " 8M" : "",
1240 imsm_orom_has_chunk(orom, 1024*16) ? " 16M" : "",
1241 imsm_orom_has_chunk(orom, 1024*32) ? " 32M" : "",
1242 imsm_orom_has_chunk(orom, 1024*64) ? " 64M" : "");
1243 printf(" Max Disks : %d\n", orom->tds);
1244 printf(" Max Volumes : %d\n", orom->vpa);
1245 printf(" I/O Controller : %s\n", hba_path);
1246
1247 /* find the smallest scsi host number to determine a port number base */
1248 dir = opendir(hba_path);
1249 for (ent = dir ? readdir(dir) : NULL; ent; ent = readdir(dir)) {
1250 int host;
1251
1252 if (sscanf(ent->d_name, "host%d", &host) != 1)
1253 continue;
1254 if (port_count == 0)
1255 host_base = host;
1256 else if (host < host_base)
1257 host_base = host;
1258
1259 if (host + 1 > port_count + host_base)
1260 port_count = host + 1 - host_base;
1261
1262 }
1263 if (dir)
1264 closedir(dir);
1265
1266 if (!port_count || imsm_enumerate_ports(hba_path, port_count,
1267 host_base, verbose) != 0) {
1268 if (verbose)
1269 fprintf(stderr, Name ": failed to enumerate ports\n");
1270 return 2;
1271 }
1272
1273 return 0;
1274 }
1275 #endif
1276
1277 static int match_home_imsm(struct supertype *st, char *homehost)
1278 {
1279 /* the imsm metadata format does not specify any host
1280 * identification information. We return -1 since we can never
1281 * confirm nor deny whether a given array is "meant" for this
1282 * host. We rely on compare_super and the 'family_num' fields to
1283 * exclude member disks that do not belong, and we rely on
1284 * mdadm.conf to specify the arrays that should be assembled.
1285 * Auto-assembly may still pick up "foreign" arrays.
1286 */
1287
1288 return -1;
1289 }
1290
1291 static void uuid_from_super_imsm(struct supertype *st, int uuid[4])
1292 {
1293 /* The uuid returned here is used for:
1294 * uuid to put into bitmap file (Create, Grow)
1295 * uuid for backup header when saving critical section (Grow)
1296 * comparing uuids when re-adding a device into an array
1297 * In these cases the uuid required is that of the data-array,
1298 * not the device-set.
1299 * uuid to recognise same set when adding a missing device back
1300 * to an array. This is a uuid for the device-set.
1301 *
1302 * For each of these we can make do with a truncated
1303 * or hashed uuid rather than the original, as long as
1304 * everyone agrees.
1305 * In each case the uuid required is that of the data-array,
1306 * not the device-set.
1307 */
1308 /* imsm does not track uuid's so we synthesis one using sha1 on
1309 * - The signature (Which is constant for all imsm array, but no matter)
1310 * - the orig_family_num of the container
1311 * - the index number of the volume
1312 * - the 'serial' number of the volume.
1313 * Hopefully these are all constant.
1314 */
1315 struct intel_super *super = st->sb;
1316
1317 char buf[20];
1318 struct sha1_ctx ctx;
1319 struct imsm_dev *dev = NULL;
1320 __u32 family_num;
1321
1322 /* some mdadm versions failed to set ->orig_family_num, in which
1323 * case fall back to ->family_num. orig_family_num will be
1324 * fixed up with the first metadata update.
1325 */
1326 family_num = super->anchor->orig_family_num;
1327 if (family_num == 0)
1328 family_num = super->anchor->family_num;
1329 sha1_init_ctx(&ctx);
1330 sha1_process_bytes(super->anchor->sig, MPB_SIG_LEN, &ctx);
1331 sha1_process_bytes(&family_num, sizeof(__u32), &ctx);
1332 if (super->current_vol >= 0)
1333 dev = get_imsm_dev(super, super->current_vol);
1334 if (dev) {
1335 __u32 vol = super->current_vol;
1336 sha1_process_bytes(&vol, sizeof(vol), &ctx);
1337 sha1_process_bytes(dev->volume, MAX_RAID_SERIAL_LEN, &ctx);
1338 }
1339 sha1_finish_ctx(&ctx, buf);
1340 memcpy(uuid, buf, 4*4);
1341 }
1342
1343 #if 0
1344 static void
1345 get_imsm_numerical_version(struct imsm_super *mpb, int *m, int *p)
1346 {
1347 __u8 *v = get_imsm_version(mpb);
1348 __u8 *end = mpb->sig + MAX_SIGNATURE_LENGTH;
1349 char major[] = { 0, 0, 0 };
1350 char minor[] = { 0 ,0, 0 };
1351 char patch[] = { 0, 0, 0 };
1352 char *ver_parse[] = { major, minor, patch };
1353 int i, j;
1354
1355 i = j = 0;
1356 while (*v != '\0' && v < end) {
1357 if (*v != '.' && j < 2)
1358 ver_parse[i][j++] = *v;
1359 else {
1360 i++;
1361 j = 0;
1362 }
1363 v++;
1364 }
1365
1366 *m = strtol(minor, NULL, 0);
1367 *p = strtol(patch, NULL, 0);
1368 }
1369 #endif
1370
1371 static __u32 migr_strip_blocks_resync(struct imsm_dev *dev)
1372 {
1373 /* migr_strip_size when repairing or initializing parity */
1374 struct imsm_map *map = get_imsm_map(dev, 0);
1375 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
1376
1377 switch (get_imsm_raid_level(map)) {
1378 case 5:
1379 case 10:
1380 return chunk;
1381 default:
1382 return 128*1024 >> 9;
1383 }
1384 }
1385
1386 static __u32 migr_strip_blocks_rebuild(struct imsm_dev *dev)
1387 {
1388 /* migr_strip_size when rebuilding a degraded disk, no idea why
1389 * this is different than migr_strip_size_resync(), but it's good
1390 * to be compatible
1391 */
1392 struct imsm_map *map = get_imsm_map(dev, 1);
1393 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
1394
1395 switch (get_imsm_raid_level(map)) {
1396 case 1:
1397 case 10:
1398 if (map->num_members % map->num_domains == 0)
1399 return 128*1024 >> 9;
1400 else
1401 return chunk;
1402 case 5:
1403 return max((__u32) 64*1024 >> 9, chunk);
1404 default:
1405 return 128*1024 >> 9;
1406 }
1407 }
1408
1409 static __u32 num_stripes_per_unit_resync(struct imsm_dev *dev)
1410 {
1411 struct imsm_map *lo = get_imsm_map(dev, 0);
1412 struct imsm_map *hi = get_imsm_map(dev, 1);
1413 __u32 lo_chunk = __le32_to_cpu(lo->blocks_per_strip);
1414 __u32 hi_chunk = __le32_to_cpu(hi->blocks_per_strip);
1415
1416 return max((__u32) 1, hi_chunk / lo_chunk);
1417 }
1418
1419 static __u32 num_stripes_per_unit_rebuild(struct imsm_dev *dev)
1420 {
1421 struct imsm_map *lo = get_imsm_map(dev, 0);
1422 int level = get_imsm_raid_level(lo);
1423
1424 if (level == 1 || level == 10) {
1425 struct imsm_map *hi = get_imsm_map(dev, 1);
1426
1427 return hi->num_domains;
1428 } else
1429 return num_stripes_per_unit_resync(dev);
1430 }
1431
1432 static __u8 imsm_num_data_members(struct imsm_dev *dev, int second_map)
1433 {
1434 /* named 'imsm_' because raid0, raid1 and raid10
1435 * counter-intuitively have the same number of data disks
1436 */
1437 struct imsm_map *map = get_imsm_map(dev, second_map);
1438
1439 switch (get_imsm_raid_level(map)) {
1440 case 0:
1441 case 1:
1442 case 10:
1443 return map->num_members;
1444 case 5:
1445 return map->num_members - 1;
1446 default:
1447 dprintf("%s: unsupported raid level\n", __func__);
1448 return 0;
1449 }
1450 }
1451
1452 static __u32 parity_segment_depth(struct imsm_dev *dev)
1453 {
1454 struct imsm_map *map = get_imsm_map(dev, 0);
1455 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
1456
1457 switch(get_imsm_raid_level(map)) {
1458 case 1:
1459 case 10:
1460 return chunk * map->num_domains;
1461 case 5:
1462 return chunk * map->num_members;
1463 default:
1464 return chunk;
1465 }
1466 }
1467
1468 static __u32 map_migr_block(struct imsm_dev *dev, __u32 block)
1469 {
1470 struct imsm_map *map = get_imsm_map(dev, 1);
1471 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
1472 __u32 strip = block / chunk;
1473
1474 switch (get_imsm_raid_level(map)) {
1475 case 1:
1476 case 10: {
1477 __u32 vol_strip = (strip * map->num_domains) + 1;
1478 __u32 vol_stripe = vol_strip / map->num_members;
1479
1480 return vol_stripe * chunk + block % chunk;
1481 } case 5: {
1482 __u32 stripe = strip / (map->num_members - 1);
1483
1484 return stripe * chunk + block % chunk;
1485 }
1486 default:
1487 return 0;
1488 }
1489 }
1490
1491 static __u64 blocks_per_migr_unit(struct imsm_dev *dev)
1492 {
1493 /* calculate the conversion factor between per member 'blocks'
1494 * (md/{resync,rebuild}_start) and imsm migration units, return
1495 * 0 for the 'not migrating' and 'unsupported migration' cases
1496 */
1497 if (!dev->vol.migr_state)
1498 return 0;
1499
1500 switch (migr_type(dev)) {
1501 case MIGR_GEN_MIGR:
1502 case MIGR_VERIFY:
1503 case MIGR_REPAIR:
1504 case MIGR_INIT: {
1505 struct imsm_map *map = get_imsm_map(dev, 0);
1506 __u32 stripes_per_unit;
1507 __u32 blocks_per_unit;
1508 __u32 parity_depth;
1509 __u32 migr_chunk;
1510 __u32 block_map;
1511 __u32 block_rel;
1512 __u32 segment;
1513 __u32 stripe;
1514 __u8 disks;
1515
1516 /* yes, this is really the translation of migr_units to
1517 * per-member blocks in the 'resync' case
1518 */
1519 stripes_per_unit = num_stripes_per_unit_resync(dev);
1520 migr_chunk = migr_strip_blocks_resync(dev);
1521 disks = imsm_num_data_members(dev, 0);
1522 blocks_per_unit = stripes_per_unit * migr_chunk * disks;
1523 stripe = __le32_to_cpu(map->blocks_per_strip) * disks;
1524 segment = blocks_per_unit / stripe;
1525 block_rel = blocks_per_unit - segment * stripe;
1526 parity_depth = parity_segment_depth(dev);
1527 block_map = map_migr_block(dev, block_rel);
1528 return block_map + parity_depth * segment;
1529 }
1530 case MIGR_REBUILD: {
1531 __u32 stripes_per_unit;
1532 __u32 migr_chunk;
1533
1534 stripes_per_unit = num_stripes_per_unit_rebuild(dev);
1535 migr_chunk = migr_strip_blocks_rebuild(dev);
1536 return migr_chunk * stripes_per_unit;
1537 }
1538 case MIGR_STATE_CHANGE:
1539 default:
1540 return 0;
1541 }
1542 }
1543
1544 static int imsm_level_to_layout(int level)
1545 {
1546 switch (level) {
1547 case 0:
1548 case 1:
1549 return 0;
1550 case 5:
1551 case 6:
1552 return ALGORITHM_LEFT_ASYMMETRIC;
1553 case 10:
1554 return 0x102;
1555 }
1556 return UnSet;
1557 }
1558
1559 static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info, char *dmap)
1560 {
1561 struct intel_super *super = st->sb;
1562 struct imsm_dev *dev = get_imsm_dev(super, super->current_vol);
1563 struct imsm_map *map = get_imsm_map(dev, 0);
1564 struct imsm_map *prev_map = get_imsm_map(dev, 1);
1565 struct imsm_map *map_to_analyse = map;
1566 struct dl *dl;
1567 char *devname;
1568 int map_disks = info->array.raid_disks;
1569
1570 if (prev_map)
1571 map_to_analyse = prev_map;
1572
1573 for (dl = super->disks; dl; dl = dl->next)
1574 if (dl->raiddisk == info->disk.raid_disk)
1575 break;
1576 info->container_member = super->current_vol;
1577 info->array.raid_disks = map_to_analyse->num_members;
1578 info->array.level = get_imsm_raid_level(map_to_analyse);
1579 info->array.layout = imsm_level_to_layout(info->array.level);
1580 info->array.md_minor = -1;
1581 info->array.ctime = 0;
1582 info->array.utime = 0;
1583 info->array.chunk_size =
1584 __le16_to_cpu(map_to_analyse->blocks_per_strip) << 9;
1585 info->array.state = !dev->vol.dirty;
1586 info->custom_array_size = __le32_to_cpu(dev->size_high);
1587 info->custom_array_size <<= 32;
1588 info->custom_array_size |= __le32_to_cpu(dev->size_low);
1589 if (prev_map) {
1590 info->new_level = get_imsm_raid_level(map);
1591 info->new_layout = imsm_level_to_layout(info->new_level);
1592 info->new_chunk = __le16_to_cpu(map->blocks_per_strip) << 9;
1593 } else {
1594 info->new_level = UnSet;
1595 info->new_layout = UnSet;
1596 info->new_chunk = info->array.chunk_size;
1597 }
1598 info->disk.major = 0;
1599 info->disk.minor = 0;
1600 if (dl) {
1601 info->disk.major = dl->major;
1602 info->disk.minor = dl->minor;
1603 }
1604
1605 info->data_offset = __le32_to_cpu(map_to_analyse->pba_of_lba0);
1606 info->component_size =
1607 __le32_to_cpu(map_to_analyse->blocks_per_member);
1608 memset(info->uuid, 0, sizeof(info->uuid));
1609 info->recovery_start = MaxSector;
1610 info->reshape_active = (prev_map != NULL);
1611 if (info->reshape_active)
1612 info->delta_disks = map->num_members - prev_map->num_members;
1613 else
1614 info->delta_disks = 0;
1615
1616 if (map_to_analyse->map_state == IMSM_T_STATE_UNINITIALIZED ||
1617 dev->vol.dirty) {
1618 info->resync_start = 0;
1619 } else if (dev->vol.migr_state) {
1620 switch (migr_type(dev)) {
1621 case MIGR_REPAIR:
1622 case MIGR_INIT: {
1623 __u64 blocks_per_unit = blocks_per_migr_unit(dev);
1624 __u64 units = __le32_to_cpu(dev->vol.curr_migr_unit);
1625
1626 info->resync_start = blocks_per_unit * units;
1627 break;
1628 }
1629 case MIGR_VERIFY:
1630 /* we could emulate the checkpointing of
1631 * 'sync_action=check' migrations, but for now
1632 * we just immediately complete them
1633 */
1634 case MIGR_REBUILD:
1635 /* this is handled by container_content_imsm() */
1636 case MIGR_GEN_MIGR:
1637 case MIGR_STATE_CHANGE:
1638 /* FIXME handle other migrations */
1639 default:
1640 /* we are not dirty, so... */
1641 info->resync_start = MaxSector;
1642 }
1643 } else
1644 info->resync_start = MaxSector;
1645
1646 strncpy(info->name, (char *) dev->volume, MAX_RAID_SERIAL_LEN);
1647 info->name[MAX_RAID_SERIAL_LEN] = 0;
1648
1649 info->array.major_version = -1;
1650 info->array.minor_version = -2;
1651 devname = devnum2devname(st->container_dev);
1652 *info->text_version = '\0';
1653 if (devname)
1654 sprintf(info->text_version, "/%s/%d", devname, info->container_member);
1655 free(devname);
1656 info->safe_mode_delay = 4000; /* 4 secs like the Matrix driver */
1657 uuid_from_super_imsm(st, info->uuid);
1658
1659 if (dmap) {
1660 int i, j;
1661 for (i=0; i<map_disks; i++) {
1662 dmap[i] = 0;
1663 if (i < info->array.raid_disks) {
1664 struct imsm_disk *dsk;
1665 j = get_imsm_disk_idx(dev, i, -1);
1666 dsk = get_imsm_disk(super, j);
1667 if (dsk && (dsk->status & CONFIGURED_DISK))
1668 dmap[i] = 1;
1669 }
1670 }
1671 }
1672 }
1673
1674 static __u8 imsm_check_degraded(struct intel_super *super, struct imsm_dev *dev, int failed);
1675 static int imsm_count_failed(struct intel_super *super, struct imsm_dev *dev);
1676
1677 static struct imsm_disk *get_imsm_missing(struct intel_super *super, __u8 index)
1678 {
1679 struct dl *d;
1680
1681 for (d = super->missing; d; d = d->next)
1682 if (d->index == index)
1683 return &d->disk;
1684 return NULL;
1685 }
1686
1687 static void getinfo_super_imsm(struct supertype *st, struct mdinfo *info, char *map)
1688 {
1689 struct intel_super *super = st->sb;
1690 struct imsm_disk *disk;
1691 int map_disks = info->array.raid_disks;
1692 int max_enough = -1;
1693 int i;
1694 struct imsm_super *mpb;
1695
1696 if (super->current_vol >= 0) {
1697 getinfo_super_imsm_volume(st, info, map);
1698 return;
1699 }
1700
1701 /* Set raid_disks to zero so that Assemble will always pull in valid
1702 * spares
1703 */
1704 info->array.raid_disks = 0;
1705 info->array.level = LEVEL_CONTAINER;
1706 info->array.layout = 0;
1707 info->array.md_minor = -1;
1708 info->array.ctime = 0; /* N/A for imsm */
1709 info->array.utime = 0;
1710 info->array.chunk_size = 0;
1711
1712 info->disk.major = 0;
1713 info->disk.minor = 0;
1714 info->disk.raid_disk = -1;
1715 info->reshape_active = 0;
1716 info->array.major_version = -1;
1717 info->array.minor_version = -2;
1718 strcpy(info->text_version, "imsm");
1719 info->safe_mode_delay = 0;
1720 info->disk.number = -1;
1721 info->disk.state = 0;
1722 info->name[0] = 0;
1723 info->recovery_start = MaxSector;
1724
1725 /* do we have the all the insync disks that we expect? */
1726 mpb = super->anchor;
1727
1728 for (i = 0; i < mpb->num_raid_devs; i++) {
1729 struct imsm_dev *dev = get_imsm_dev(super, i);
1730 int failed, enough, j, missing = 0;
1731 struct imsm_map *map;
1732 __u8 state;
1733
1734 failed = imsm_count_failed(super, dev);
1735 state = imsm_check_degraded(super, dev, failed);
1736 map = get_imsm_map(dev, dev->vol.migr_state);
1737
1738 /* any newly missing disks?
1739 * (catches single-degraded vs double-degraded)
1740 */
1741 for (j = 0; j < map->num_members; j++) {
1742 __u32 ord = get_imsm_ord_tbl_ent(dev, i, -1);
1743 __u32 idx = ord_to_idx(ord);
1744
1745 if (!(ord & IMSM_ORD_REBUILD) &&
1746 get_imsm_missing(super, idx)) {
1747 missing = 1;
1748 break;
1749 }
1750 }
1751
1752 if (state == IMSM_T_STATE_FAILED)
1753 enough = -1;
1754 else if (state == IMSM_T_STATE_DEGRADED &&
1755 (state != map->map_state || missing))
1756 enough = 0;
1757 else /* we're normal, or already degraded */
1758 enough = 1;
1759
1760 /* in the missing/failed disk case check to see
1761 * if at least one array is runnable
1762 */
1763 max_enough = max(max_enough, enough);
1764 }
1765 dprintf("%s: enough: %d\n", __func__, max_enough);
1766 info->container_enough = max_enough;
1767
1768 if (super->disks) {
1769 __u32 reserved = imsm_reserved_sectors(super, super->disks);
1770
1771 disk = &super->disks->disk;
1772 info->data_offset = __le32_to_cpu(disk->total_blocks) - reserved;
1773 info->component_size = reserved;
1774 info->disk.state = is_configured(disk) ? (1 << MD_DISK_ACTIVE) : 0;
1775 /* we don't change info->disk.raid_disk here because
1776 * this state will be finalized in mdmon after we have
1777 * found the 'most fresh' version of the metadata
1778 */
1779 info->disk.state |= is_failed(disk) ? (1 << MD_DISK_FAULTY) : 0;
1780 info->disk.state |= is_spare(disk) ? 0 : (1 << MD_DISK_SYNC);
1781 }
1782
1783 /* only call uuid_from_super_imsm when this disk is part of a populated container,
1784 * ->compare_super may have updated the 'num_raid_devs' field for spares
1785 */
1786 if (info->disk.state & (1 << MD_DISK_SYNC) || super->anchor->num_raid_devs)
1787 uuid_from_super_imsm(st, info->uuid);
1788 else
1789 memcpy(info->uuid, uuid_zero, sizeof(uuid_zero));
1790
1791 /* I don't know how to compute 'map' on imsm, so use safe default */
1792 if (map) {
1793 int i;
1794 for (i = 0; i < map_disks; i++)
1795 map[i] = 1;
1796 }
1797
1798 }
1799
1800 /* allocates memory and fills disk in mdinfo structure
1801 * for each disk in array */
1802 struct mdinfo *getinfo_super_disks_imsm(struct supertype *st)
1803 {
1804 struct mdinfo *mddev = NULL;
1805 struct intel_super *super = st->sb;
1806 struct imsm_disk *disk;
1807 int count = 0;
1808 struct dl *dl;
1809 if (!super || !super->disks)
1810 return NULL;
1811 dl = super->disks;
1812 mddev = malloc(sizeof(*mddev));
1813 if (!mddev) {
1814 fprintf(stderr, Name ": Failed to allocate memory.\n");
1815 return NULL;
1816 }
1817 memset(mddev, 0, sizeof(*mddev));
1818 while (dl) {
1819 struct mdinfo *tmp;
1820 disk = &dl->disk;
1821 tmp = malloc(sizeof(*tmp));
1822 if (!tmp) {
1823 fprintf(stderr, Name ": Failed to allocate memory.\n");
1824 if (mddev)
1825 sysfs_free(mddev);
1826 return NULL;
1827 }
1828 memset(tmp, 0, sizeof(*tmp));
1829 if (mddev->devs)
1830 tmp->next = mddev->devs;
1831 mddev->devs = tmp;
1832 tmp->disk.number = count++;
1833 tmp->disk.major = dl->major;
1834 tmp->disk.minor = dl->minor;
1835 tmp->disk.state = is_configured(disk) ?
1836 (1 << MD_DISK_ACTIVE) : 0;
1837 tmp->disk.state |= is_failed(disk) ? (1 << MD_DISK_FAULTY) : 0;
1838 tmp->disk.state |= is_spare(disk) ? 0 : (1 << MD_DISK_SYNC);
1839 tmp->disk.raid_disk = -1;
1840 dl = dl->next;
1841 }
1842 return mddev;
1843 }
1844
1845 static int update_super_imsm(struct supertype *st, struct mdinfo *info,
1846 char *update, char *devname, int verbose,
1847 int uuid_set, char *homehost)
1848 {
1849 /* For 'assemble' and 'force' we need to return non-zero if any
1850 * change was made. For others, the return value is ignored.
1851 * Update options are:
1852 * force-one : This device looks a bit old but needs to be included,
1853 * update age info appropriately.
1854 * assemble: clear any 'faulty' flag to allow this device to
1855 * be assembled.
1856 * force-array: Array is degraded but being forced, mark it clean
1857 * if that will be needed to assemble it.
1858 *
1859 * newdev: not used ????
1860 * grow: Array has gained a new device - this is currently for
1861 * linear only
1862 * resync: mark as dirty so a resync will happen.
1863 * name: update the name - preserving the homehost
1864 * uuid: Change the uuid of the array to match watch is given
1865 *
1866 * Following are not relevant for this imsm:
1867 * sparc2.2 : update from old dodgey metadata
1868 * super-minor: change the preferred_minor number
1869 * summaries: update redundant counters.
1870 * homehost: update the recorded homehost
1871 * _reshape_progress: record new reshape_progress position.
1872 */
1873 int rv = 1;
1874 struct intel_super *super = st->sb;
1875 struct imsm_super *mpb;
1876
1877 /* we can only update container info */
1878 if (!super || super->current_vol >= 0 || !super->anchor)
1879 return 1;
1880
1881 mpb = super->anchor;
1882
1883 if (strcmp(update, "uuid") == 0 && uuid_set && !info->update_private)
1884 rv = -1;
1885 else if (strcmp(update, "uuid") == 0 && uuid_set && info->update_private) {
1886 mpb->orig_family_num = *((__u32 *) info->update_private);
1887 rv = 0;
1888 } else if (strcmp(update, "uuid") == 0) {
1889 __u32 *new_family = malloc(sizeof(*new_family));
1890
1891 /* update orig_family_number with the incoming random
1892 * data, report the new effective uuid, and store the
1893 * new orig_family_num for future updates.
1894 */
1895 if (new_family) {
1896 memcpy(&mpb->orig_family_num, info->uuid, sizeof(__u32));
1897 uuid_from_super_imsm(st, info->uuid);
1898 *new_family = mpb->orig_family_num;
1899 info->update_private = new_family;
1900 rv = 0;
1901 }
1902 } else if (strcmp(update, "assemble") == 0)
1903 rv = 0;
1904 else
1905 rv = -1;
1906
1907 /* successful update? recompute checksum */
1908 if (rv == 0)
1909 mpb->check_sum = __le32_to_cpu(__gen_imsm_checksum(mpb));
1910
1911 return rv;
1912 }
1913
1914 static size_t disks_to_mpb_size(int disks)
1915 {
1916 size_t size;
1917
1918 size = sizeof(struct imsm_super);
1919 size += (disks - 1) * sizeof(struct imsm_disk);
1920 size += 2 * sizeof(struct imsm_dev);
1921 /* up to 2 maps per raid device (-2 for imsm_maps in imsm_dev */
1922 size += (4 - 2) * sizeof(struct imsm_map);
1923 /* 4 possible disk_ord_tbl's */
1924 size += 4 * (disks - 1) * sizeof(__u32);
1925
1926 return size;
1927 }
1928
1929 static __u64 avail_size_imsm(struct supertype *st, __u64 devsize)
1930 {
1931 if (devsize < (MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS))
1932 return 0;
1933
1934 return devsize - (MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS);
1935 }
1936
1937 static void free_devlist(struct intel_super *super)
1938 {
1939 struct intel_dev *dv;
1940
1941 while (super->devlist) {
1942 dv = super->devlist->next;
1943 free(super->devlist->dev);
1944 free(super->devlist);
1945 super->devlist = dv;
1946 }
1947 }
1948
1949 static void imsm_copy_dev(struct imsm_dev *dest, struct imsm_dev *src)
1950 {
1951 memcpy(dest, src, sizeof_imsm_dev(src, 0));
1952 }
1953
1954 static int compare_super_imsm(struct supertype *st, struct supertype *tst)
1955 {
1956 /*
1957 * return:
1958 * 0 same, or first was empty, and second was copied
1959 * 1 second had wrong number
1960 * 2 wrong uuid
1961 * 3 wrong other info
1962 */
1963 struct intel_super *first = st->sb;
1964 struct intel_super *sec = tst->sb;
1965
1966 if (!first) {
1967 st->sb = tst->sb;
1968 tst->sb = NULL;
1969 return 0;
1970 }
1971
1972 /* if an anchor does not have num_raid_devs set then it is a free
1973 * floating spare
1974 */
1975 if (first->anchor->num_raid_devs > 0 &&
1976 sec->anchor->num_raid_devs > 0) {
1977 /* Determine if these disks might ever have been
1978 * related. Further disambiguation can only take place
1979 * in load_super_imsm_all
1980 */
1981 __u32 first_family = first->anchor->orig_family_num;
1982 __u32 sec_family = sec->anchor->orig_family_num;
1983
1984 if (memcmp(first->anchor->sig, sec->anchor->sig,
1985 MAX_SIGNATURE_LENGTH) != 0)
1986 return 3;
1987
1988 if (first_family == 0)
1989 first_family = first->anchor->family_num;
1990 if (sec_family == 0)
1991 sec_family = sec->anchor->family_num;
1992
1993 if (first_family != sec_family)
1994 return 3;
1995
1996 }
1997
1998
1999 /* if 'first' is a spare promote it to a populated mpb with sec's
2000 * family number
2001 */
2002 if (first->anchor->num_raid_devs == 0 &&
2003 sec->anchor->num_raid_devs > 0) {
2004 int i;
2005 struct intel_dev *dv;
2006 struct imsm_dev *dev;
2007
2008 /* we need to copy raid device info from sec if an allocation
2009 * fails here we don't associate the spare
2010 */
2011 for (i = 0; i < sec->anchor->num_raid_devs; i++) {
2012 dv = malloc(sizeof(*dv));
2013 if (!dv)
2014 break;
2015 dev = malloc(sizeof_imsm_dev(get_imsm_dev(sec, i), 1));
2016 if (!dev) {
2017 free(dv);
2018 break;
2019 }
2020 dv->dev = dev;
2021 dv->index = i;
2022 dv->next = first->devlist;
2023 first->devlist = dv;
2024 }
2025 if (i < sec->anchor->num_raid_devs) {
2026 /* allocation failure */
2027 free_devlist(first);
2028 fprintf(stderr, "imsm: failed to associate spare\n");
2029 return 3;
2030 }
2031 first->anchor->num_raid_devs = sec->anchor->num_raid_devs;
2032 first->anchor->orig_family_num = sec->anchor->orig_family_num;
2033 first->anchor->family_num = sec->anchor->family_num;
2034 memcpy(first->anchor->sig, sec->anchor->sig, MAX_SIGNATURE_LENGTH);
2035 for (i = 0; i < sec->anchor->num_raid_devs; i++)
2036 imsm_copy_dev(get_imsm_dev(first, i), get_imsm_dev(sec, i));
2037 }
2038
2039 return 0;
2040 }
2041
2042 static void fd2devname(int fd, char *name)
2043 {
2044 struct stat st;
2045 char path[256];
2046 char dname[PATH_MAX];
2047 char *nm;
2048 int rv;
2049
2050 name[0] = '\0';
2051 if (fstat(fd, &st) != 0)
2052 return;
2053 sprintf(path, "/sys/dev/block/%d:%d",
2054 major(st.st_rdev), minor(st.st_rdev));
2055
2056 rv = readlink(path, dname, sizeof(dname));
2057 if (rv <= 0)
2058 return;
2059
2060 dname[rv] = '\0';
2061 nm = strrchr(dname, '/');
2062 nm++;
2063 snprintf(name, MAX_RAID_SERIAL_LEN, "/dev/%s", nm);
2064 }
2065
2066 extern int scsi_get_serial(int fd, void *buf, size_t buf_len);
2067
2068 static int imsm_read_serial(int fd, char *devname,
2069 __u8 serial[MAX_RAID_SERIAL_LEN])
2070 {
2071 unsigned char scsi_serial[255];
2072 int rv;
2073 int rsp_len;
2074 int len;
2075 char *dest;
2076 char *src;
2077 char *rsp_buf;
2078 int i;
2079
2080 memset(scsi_serial, 0, sizeof(scsi_serial));
2081
2082 rv = scsi_get_serial(fd, scsi_serial, sizeof(scsi_serial));
2083
2084 if (rv && check_env("IMSM_DEVNAME_AS_SERIAL")) {
2085 memset(serial, 0, MAX_RAID_SERIAL_LEN);
2086 fd2devname(fd, (char *) serial);
2087 return 0;
2088 }
2089
2090 if (rv != 0) {
2091 if (devname)
2092 fprintf(stderr,
2093 Name ": Failed to retrieve serial for %s\n",
2094 devname);
2095 return rv;
2096 }
2097
2098 rsp_len = scsi_serial[3];
2099 if (!rsp_len) {
2100 if (devname)
2101 fprintf(stderr,
2102 Name ": Failed to retrieve serial for %s\n",
2103 devname);
2104 return 2;
2105 }
2106 rsp_buf = (char *) &scsi_serial[4];
2107
2108 /* trim all whitespace and non-printable characters and convert
2109 * ':' to ';'
2110 */
2111 for (i = 0, dest = rsp_buf; i < rsp_len; i++) {
2112 src = &rsp_buf[i];
2113 if (*src > 0x20) {
2114 /* ':' is reserved for use in placeholder serial
2115 * numbers for missing disks
2116 */
2117 if (*src == ':')
2118 *dest++ = ';';
2119 else
2120 *dest++ = *src;
2121 }
2122 }
2123 len = dest - rsp_buf;
2124 dest = rsp_buf;
2125
2126 /* truncate leading characters */
2127 if (len > MAX_RAID_SERIAL_LEN) {
2128 dest += len - MAX_RAID_SERIAL_LEN;
2129 len = MAX_RAID_SERIAL_LEN;
2130 }
2131
2132 memset(serial, 0, MAX_RAID_SERIAL_LEN);
2133 memcpy(serial, dest, len);
2134
2135 return 0;
2136 }
2137
2138 static int serialcmp(__u8 *s1, __u8 *s2)
2139 {
2140 return strncmp((char *) s1, (char *) s2, MAX_RAID_SERIAL_LEN);
2141 }
2142
2143 static void serialcpy(__u8 *dest, __u8 *src)
2144 {
2145 strncpy((char *) dest, (char *) src, MAX_RAID_SERIAL_LEN);
2146 }
2147
2148 #ifndef MDASSEMBLE
2149 static struct dl *serial_to_dl(__u8 *serial, struct intel_super *super)
2150 {
2151 struct dl *dl;
2152
2153 for (dl = super->disks; dl; dl = dl->next)
2154 if (serialcmp(dl->serial, serial) == 0)
2155 break;
2156
2157 return dl;
2158 }
2159 #endif
2160
2161 static struct imsm_disk *
2162 __serial_to_disk(__u8 *serial, struct imsm_super *mpb, int *idx)
2163 {
2164 int i;
2165
2166 for (i = 0; i < mpb->num_disks; i++) {
2167 struct imsm_disk *disk = __get_imsm_disk(mpb, i);
2168
2169 if (serialcmp(disk->serial, serial) == 0) {
2170 if (idx)
2171 *idx = i;
2172 return disk;
2173 }
2174 }
2175
2176 return NULL;
2177 }
2178
2179 static int
2180 load_imsm_disk(int fd, struct intel_super *super, char *devname, int keep_fd)
2181 {
2182 struct imsm_disk *disk;
2183 struct dl *dl;
2184 struct stat stb;
2185 int rv;
2186 char name[40];
2187 __u8 serial[MAX_RAID_SERIAL_LEN];
2188
2189 rv = imsm_read_serial(fd, devname, serial);
2190
2191 if (rv != 0)
2192 return 2;
2193
2194 dl = calloc(1, sizeof(*dl));
2195 if (!dl) {
2196 if (devname)
2197 fprintf(stderr,
2198 Name ": failed to allocate disk buffer for %s\n",
2199 devname);
2200 return 2;
2201 }
2202
2203 fstat(fd, &stb);
2204 dl->major = major(stb.st_rdev);
2205 dl->minor = minor(stb.st_rdev);
2206 dl->next = super->disks;
2207 dl->fd = keep_fd ? fd : -1;
2208 assert(super->disks == NULL);
2209 super->disks = dl;
2210 serialcpy(dl->serial, serial);
2211 dl->index = -2;
2212 dl->e = NULL;
2213 fd2devname(fd, name);
2214 if (devname)
2215 dl->devname = strdup(devname);
2216 else
2217 dl->devname = strdup(name);
2218
2219 /* look up this disk's index in the current anchor */
2220 disk = __serial_to_disk(dl->serial, super->anchor, &dl->index);
2221 if (disk) {
2222 dl->disk = *disk;
2223 /* only set index on disks that are a member of a
2224 * populated contianer, i.e. one with raid_devs
2225 */
2226 if (is_failed(&dl->disk))
2227 dl->index = -2;
2228 else if (is_spare(&dl->disk))
2229 dl->index = -1;
2230 }
2231
2232 return 0;
2233 }
2234
2235 #ifndef MDASSEMBLE
2236 /* When migrating map0 contains the 'destination' state while map1
2237 * contains the current state. When not migrating map0 contains the
2238 * current state. This routine assumes that map[0].map_state is set to
2239 * the current array state before being called.
2240 *
2241 * Migration is indicated by one of the following states
2242 * 1/ Idle (migr_state=0 map0state=normal||unitialized||degraded||failed)
2243 * 2/ Initialize (migr_state=1 migr_type=MIGR_INIT map0state=normal
2244 * map1state=unitialized)
2245 * 3/ Repair (Resync) (migr_state=1 migr_type=MIGR_REPAIR map0state=normal
2246 * map1state=normal)
2247 * 4/ Rebuild (migr_state=1 migr_type=MIGR_REBUILD map0state=normal
2248 * map1state=degraded)
2249 */
2250 static void migrate(struct imsm_dev *dev, __u8 to_state, int migr_type)
2251 {
2252 struct imsm_map *dest;
2253 struct imsm_map *src = get_imsm_map(dev, 0);
2254
2255 dev->vol.migr_state = 1;
2256 set_migr_type(dev, migr_type);
2257 dev->vol.curr_migr_unit = 0;
2258 dest = get_imsm_map(dev, 1);
2259
2260 /* duplicate and then set the target end state in map[0] */
2261 memcpy(dest, src, sizeof_imsm_map(src));
2262 if ((migr_type == MIGR_REBUILD) ||
2263 (migr_type == MIGR_GEN_MIGR)) {
2264 __u32 ord;
2265 int i;
2266
2267 for (i = 0; i < src->num_members; i++) {
2268 ord = __le32_to_cpu(src->disk_ord_tbl[i]);
2269 set_imsm_ord_tbl_ent(src, i, ord_to_idx(ord));
2270 }
2271 }
2272
2273 src->map_state = to_state;
2274 }
2275
2276 static void end_migration(struct imsm_dev *dev, __u8 map_state)
2277 {
2278 struct imsm_map *map = get_imsm_map(dev, 0);
2279 struct imsm_map *prev = get_imsm_map(dev, dev->vol.migr_state);
2280 int i, j;
2281
2282 /* merge any IMSM_ORD_REBUILD bits that were not successfully
2283 * completed in the last migration.
2284 *
2285 * FIXME add support for raid-level-migration
2286 */
2287 for (i = 0; i < prev->num_members; i++)
2288 for (j = 0; j < map->num_members; j++)
2289 /* during online capacity expansion
2290 * disks position can be changed if takeover is used
2291 */
2292 if (ord_to_idx(map->disk_ord_tbl[j]) ==
2293 ord_to_idx(prev->disk_ord_tbl[i])) {
2294 map->disk_ord_tbl[j] |= prev->disk_ord_tbl[i];
2295 break;
2296 }
2297
2298 dev->vol.migr_state = 0;
2299 dev->vol.migr_type = 0;
2300 dev->vol.curr_migr_unit = 0;
2301 map->map_state = map_state;
2302 }
2303 #endif
2304
2305 static int parse_raid_devices(struct intel_super *super)
2306 {
2307 int i;
2308 struct imsm_dev *dev_new;
2309 size_t len, len_migr;
2310 size_t space_needed = 0;
2311 struct imsm_super *mpb = super->anchor;
2312
2313 for (i = 0; i < super->anchor->num_raid_devs; i++) {
2314 struct imsm_dev *dev_iter = __get_imsm_dev(super->anchor, i);
2315 struct intel_dev *dv;
2316
2317 len = sizeof_imsm_dev(dev_iter, 0);
2318 len_migr = sizeof_imsm_dev(dev_iter, 1);
2319 if (len_migr > len)
2320 space_needed += len_migr - len;
2321
2322 dv = malloc(sizeof(*dv));
2323 if (!dv)
2324 return 1;
2325 dev_new = malloc(len_migr);
2326 if (!dev_new) {
2327 free(dv);
2328 return 1;
2329 }
2330 imsm_copy_dev(dev_new, dev_iter);
2331 dv->dev = dev_new;
2332 dv->index = i;
2333 dv->next = super->devlist;
2334 super->devlist = dv;
2335 }
2336
2337 /* ensure that super->buf is large enough when all raid devices
2338 * are migrating
2339 */
2340 if (__le32_to_cpu(mpb->mpb_size) + space_needed > super->len) {
2341 void *buf;
2342
2343 len = ROUND_UP(__le32_to_cpu(mpb->mpb_size) + space_needed, 512);
2344 if (posix_memalign(&buf, 512, len) != 0)
2345 return 1;
2346
2347 memcpy(buf, super->buf, super->len);
2348 memset(buf + super->len, 0, len - super->len);
2349 free(super->buf);
2350 super->buf = buf;
2351 super->len = len;
2352 }
2353
2354 return 0;
2355 }
2356
2357 /* retrieve a pointer to the bbm log which starts after all raid devices */
2358 struct bbm_log *__get_imsm_bbm_log(struct imsm_super *mpb)
2359 {
2360 void *ptr = NULL;
2361
2362 if (__le32_to_cpu(mpb->bbm_log_size)) {
2363 ptr = mpb;
2364 ptr += mpb->mpb_size - __le32_to_cpu(mpb->bbm_log_size);
2365 }
2366
2367 return ptr;
2368 }
2369
2370 static void __free_imsm(struct intel_super *super, int free_disks);
2371
2372 /* load_imsm_mpb - read matrix metadata
2373 * allocates super->mpb to be freed by free_super
2374 */
2375 static int load_imsm_mpb(int fd, struct intel_super *super, char *devname)
2376 {
2377 unsigned long long dsize;
2378 unsigned long long sectors;
2379 struct stat;
2380 struct imsm_super *anchor;
2381 __u32 check_sum;
2382
2383 get_dev_size(fd, NULL, &dsize);
2384 if (dsize < 1024) {
2385 if (devname)
2386 fprintf(stderr,
2387 Name ": %s: device to small for imsm\n",
2388 devname);
2389 return 1;
2390 }
2391
2392 if (lseek64(fd, dsize - (512 * 2), SEEK_SET) < 0) {
2393 if (devname)
2394 fprintf(stderr,
2395 Name ": Cannot seek to anchor block on %s: %s\n",
2396 devname, strerror(errno));
2397 return 1;
2398 }
2399
2400 if (posix_memalign((void**)&anchor, 512, 512) != 0) {
2401 if (devname)
2402 fprintf(stderr,
2403 Name ": Failed to allocate imsm anchor buffer"
2404 " on %s\n", devname);
2405 return 1;
2406 }
2407 if (read(fd, anchor, 512) != 512) {
2408 if (devname)
2409 fprintf(stderr,
2410 Name ": Cannot read anchor block on %s: %s\n",
2411 devname, strerror(errno));
2412 free(anchor);
2413 return 1;
2414 }
2415
2416 if (strncmp((char *) anchor->sig, MPB_SIGNATURE, MPB_SIG_LEN) != 0) {
2417 if (devname)
2418 fprintf(stderr,
2419 Name ": no IMSM anchor on %s\n", devname);
2420 free(anchor);
2421 return 2;
2422 }
2423
2424 __free_imsm(super, 0);
2425 super->len = ROUND_UP(anchor->mpb_size, 512);
2426 if (posix_memalign(&super->buf, 512, super->len) != 0) {
2427 if (devname)
2428 fprintf(stderr,
2429 Name ": unable to allocate %zu byte mpb buffer\n",
2430 super->len);
2431 free(anchor);
2432 return 2;
2433 }
2434 memcpy(super->buf, anchor, 512);
2435
2436 sectors = mpb_sectors(anchor) - 1;
2437 free(anchor);
2438 if (!sectors) {
2439 check_sum = __gen_imsm_checksum(super->anchor);
2440 if (check_sum != __le32_to_cpu(super->anchor->check_sum)) {
2441 if (devname)
2442 fprintf(stderr,
2443 Name ": IMSM checksum %x != %x on %s\n",
2444 check_sum,
2445 __le32_to_cpu(super->anchor->check_sum),
2446 devname);
2447 return 2;
2448 }
2449
2450 return 0;
2451 }
2452
2453 /* read the extended mpb */
2454 if (lseek64(fd, dsize - (512 * (2 + sectors)), SEEK_SET) < 0) {
2455 if (devname)
2456 fprintf(stderr,
2457 Name ": Cannot seek to extended mpb on %s: %s\n",
2458 devname, strerror(errno));
2459 return 1;
2460 }
2461
2462 if ((unsigned)read(fd, super->buf + 512, super->len - 512) != super->len - 512) {
2463 if (devname)
2464 fprintf(stderr,
2465 Name ": Cannot read extended mpb on %s: %s\n",
2466 devname, strerror(errno));
2467 return 2;
2468 }
2469
2470 check_sum = __gen_imsm_checksum(super->anchor);
2471 if (check_sum != __le32_to_cpu(super->anchor->check_sum)) {
2472 if (devname)
2473 fprintf(stderr,
2474 Name ": IMSM checksum %x != %x on %s\n",
2475 check_sum, __le32_to_cpu(super->anchor->check_sum),
2476 devname);
2477 return 3;
2478 }
2479
2480 /* FIXME the BBM log is disk specific so we cannot use this global
2481 * buffer for all disks. Ok for now since we only look at the global
2482 * bbm_log_size parameter to gate assembly
2483 */
2484 super->bbm_log = __get_imsm_bbm_log(super->anchor);
2485
2486 return 0;
2487 }
2488
2489 static int
2490 load_and_parse_mpb(int fd, struct intel_super *super, char *devname, int keep_fd)
2491 {
2492 int err;
2493
2494 err = load_imsm_mpb(fd, super, devname);
2495 if (err)
2496 return err;
2497 err = load_imsm_disk(fd, super, devname, keep_fd);
2498 if (err)
2499 return err;
2500 err = parse_raid_devices(super);
2501
2502 return err;
2503 }
2504
2505 static void __free_imsm_disk(struct dl *d)
2506 {
2507 if (d->fd >= 0)
2508 close(d->fd);
2509 if (d->devname)
2510 free(d->devname);
2511 if (d->e)
2512 free(d->e);
2513 free(d);
2514
2515 }
2516
2517 static void free_imsm_disks(struct intel_super *super)
2518 {
2519 struct dl *d;
2520
2521 while (super->disks) {
2522 d = super->disks;
2523 super->disks = d->next;
2524 __free_imsm_disk(d);
2525 }
2526 while (super->missing) {
2527 d = super->missing;
2528 super->missing = d->next;
2529 __free_imsm_disk(d);
2530 }
2531
2532 }
2533
2534 /* free all the pieces hanging off of a super pointer */
2535 static void __free_imsm(struct intel_super *super, int free_disks)
2536 {
2537 if (super->buf) {
2538 free(super->buf);
2539 super->buf = NULL;
2540 }
2541 if (free_disks)
2542 free_imsm_disks(super);
2543 free_devlist(super);
2544 if (super->hba) {
2545 free((void *) super->hba);
2546 super->hba = NULL;
2547 }
2548 }
2549
2550 static void free_imsm(struct intel_super *super)
2551 {
2552 __free_imsm(super, 1);
2553 free(super);
2554 }
2555
2556 static void free_super_imsm(struct supertype *st)
2557 {
2558 struct intel_super *super = st->sb;
2559
2560 if (!super)
2561 return;
2562
2563 free_imsm(super);
2564 st->sb = NULL;
2565 }
2566
2567 static struct intel_super *alloc_super(void)
2568 {
2569 struct intel_super *super = malloc(sizeof(*super));
2570
2571 if (super) {
2572 memset(super, 0, sizeof(*super));
2573 super->current_vol = -1;
2574 super->create_offset = ~((__u32 ) 0);
2575 if (!check_env("IMSM_NO_PLATFORM"))
2576 super->orom = find_imsm_orom();
2577 if (super->orom && !check_env("IMSM_TEST_OROM")) {
2578 struct sys_dev *list, *ent;
2579
2580 /* find the first intel ahci controller */
2581 list = find_driver_devices("pci", "ahci");
2582 for (ent = list; ent; ent = ent->next)
2583 if (devpath_to_vendor(ent->path) == 0x8086)
2584 break;
2585 if (ent) {
2586 super->hba = ent->path;
2587 ent->path = NULL;
2588 }
2589 free_sys_dev(&list);
2590 }
2591 }
2592
2593 return super;
2594 }
2595
2596 #ifndef MDASSEMBLE
2597 /* find_missing - helper routine for load_super_imsm_all that identifies
2598 * disks that have disappeared from the system. This routine relies on
2599 * the mpb being uptodate, which it is at load time.
2600 */
2601 static int find_missing(struct intel_super *super)
2602 {
2603 int i;
2604 struct imsm_super *mpb = super->anchor;
2605 struct dl *dl;
2606 struct imsm_disk *disk;
2607
2608 for (i = 0; i < mpb->num_disks; i++) {
2609 disk = __get_imsm_disk(mpb, i);
2610 dl = serial_to_dl(disk->serial, super);
2611 if (dl)
2612 continue;
2613
2614 dl = malloc(sizeof(*dl));
2615 if (!dl)
2616 return 1;
2617 dl->major = 0;
2618 dl->minor = 0;
2619 dl->fd = -1;
2620 dl->devname = strdup("missing");
2621 dl->index = i;
2622 serialcpy(dl->serial, disk->serial);
2623 dl->disk = *disk;
2624 dl->e = NULL;
2625 dl->next = super->missing;
2626 super->missing = dl;
2627 }
2628
2629 return 0;
2630 }
2631
2632 static struct intel_disk *disk_list_get(__u8 *serial, struct intel_disk *disk_list)
2633 {
2634 struct intel_disk *idisk = disk_list;
2635
2636 while (idisk) {
2637 if (serialcmp(idisk->disk.serial, serial) == 0)
2638 break;
2639 idisk = idisk->next;
2640 }
2641
2642 return idisk;
2643 }
2644
2645 static int __prep_thunderdome(struct intel_super **table, int tbl_size,
2646 struct intel_super *super,
2647 struct intel_disk **disk_list)
2648 {
2649 struct imsm_disk *d = &super->disks->disk;
2650 struct imsm_super *mpb = super->anchor;
2651 int i, j;
2652
2653 for (i = 0; i < tbl_size; i++) {
2654 struct imsm_super *tbl_mpb = table[i]->anchor;
2655 struct imsm_disk *tbl_d = &table[i]->disks->disk;
2656
2657 if (tbl_mpb->family_num == mpb->family_num) {
2658 if (tbl_mpb->check_sum == mpb->check_sum) {
2659 dprintf("%s: mpb from %d:%d matches %d:%d\n",
2660 __func__, super->disks->major,
2661 super->disks->minor,
2662 table[i]->disks->major,
2663 table[i]->disks->minor);
2664 break;
2665 }
2666
2667 if (((is_configured(d) && !is_configured(tbl_d)) ||
2668 is_configured(d) == is_configured(tbl_d)) &&
2669 tbl_mpb->generation_num < mpb->generation_num) {
2670 /* current version of the mpb is a
2671 * better candidate than the one in
2672 * super_table, but copy over "cross
2673 * generational" status
2674 */
2675 struct intel_disk *idisk;
2676
2677 dprintf("%s: mpb from %d:%d replaces %d:%d\n",
2678 __func__, super->disks->major,
2679 super->disks->minor,
2680 table[i]->disks->major,
2681 table[i]->disks->minor);
2682
2683 idisk = disk_list_get(tbl_d->serial, *disk_list);
2684 if (idisk && is_failed(&idisk->disk))
2685 tbl_d->status |= FAILED_DISK;
2686 break;
2687 } else {
2688 struct intel_disk *idisk;
2689 struct imsm_disk *disk;
2690
2691 /* tbl_mpb is more up to date, but copy
2692 * over cross generational status before
2693 * returning
2694 */
2695 disk = __serial_to_disk(d->serial, mpb, NULL);
2696 if (disk && is_failed(disk))
2697 d->status |= FAILED_DISK;
2698
2699 idisk = disk_list_get(d->serial, *disk_list);
2700 if (idisk) {
2701 idisk->owner = i;
2702 if (disk && is_configured(disk))
2703 idisk->disk.status |= CONFIGURED_DISK;
2704 }
2705
2706 dprintf("%s: mpb from %d:%d prefer %d:%d\n",
2707 __func__, super->disks->major,
2708 super->disks->minor,
2709 table[i]->disks->major,
2710 table[i]->disks->minor);
2711
2712 return tbl_size;
2713 }
2714 }
2715 }
2716
2717 if (i >= tbl_size)
2718 table[tbl_size++] = super;
2719 else
2720 table[i] = super;
2721
2722 /* update/extend the merged list of imsm_disk records */
2723 for (j = 0; j < mpb->num_disks; j++) {
2724 struct imsm_disk *disk = __get_imsm_disk(mpb, j);
2725 struct intel_disk *idisk;
2726
2727 idisk = disk_list_get(disk->serial, *disk_list);
2728 if (idisk) {
2729 idisk->disk.status |= disk->status;
2730 if (is_configured(&idisk->disk) ||
2731 is_failed(&idisk->disk))
2732 idisk->disk.status &= ~(SPARE_DISK);
2733 } else {
2734 idisk = calloc(1, sizeof(*idisk));
2735 if (!idisk)
2736 return -1;
2737 idisk->owner = IMSM_UNKNOWN_OWNER;
2738 idisk->disk = *disk;
2739 idisk->next = *disk_list;
2740 *disk_list = idisk;
2741 }
2742
2743 if (serialcmp(idisk->disk.serial, d->serial) == 0)
2744 idisk->owner = i;
2745 }
2746
2747 return tbl_size;
2748 }
2749
2750 static struct intel_super *
2751 validate_members(struct intel_super *super, struct intel_disk *disk_list,
2752 const int owner)
2753 {
2754 struct imsm_super *mpb = super->anchor;
2755 int ok_count = 0;
2756 int i;
2757
2758 for (i = 0; i < mpb->num_disks; i++) {
2759 struct imsm_disk *disk = __get_imsm_disk(mpb, i);
2760 struct intel_disk *idisk;
2761
2762 idisk = disk_list_get(disk->serial, disk_list);
2763 if (idisk) {
2764 if (idisk->owner == owner ||
2765 idisk->owner == IMSM_UNKNOWN_OWNER)
2766 ok_count++;
2767 else
2768 dprintf("%s: '%.16s' owner %d != %d\n",
2769 __func__, disk->serial, idisk->owner,
2770 owner);
2771 } else {
2772 dprintf("%s: unknown disk %x [%d]: %.16s\n",
2773 __func__, __le32_to_cpu(mpb->family_num), i,
2774 disk->serial);
2775 break;
2776 }
2777 }
2778
2779 if (ok_count == mpb->num_disks)
2780 return super;
2781 return NULL;
2782 }
2783
2784 static void show_conflicts(__u32 family_num, struct intel_super *super_list)
2785 {
2786 struct intel_super *s;
2787
2788 for (s = super_list; s; s = s->next) {
2789 if (family_num != s->anchor->family_num)
2790 continue;
2791 fprintf(stderr, "Conflict, offlining family %#x on '%s'\n",
2792 __le32_to_cpu(family_num), s->disks->devname);
2793 }
2794 }
2795
2796 static struct intel_super *
2797 imsm_thunderdome(struct intel_super **super_list, int len)
2798 {
2799 struct intel_super *super_table[len];
2800 struct intel_disk *disk_list = NULL;
2801 struct intel_super *champion, *spare;
2802 struct intel_super *s, **del;
2803 int tbl_size = 0;
2804 int conflict;
2805 int i;
2806
2807 memset(super_table, 0, sizeof(super_table));
2808 for (s = *super_list; s; s = s->next)
2809 tbl_size = __prep_thunderdome(super_table, tbl_size, s, &disk_list);
2810
2811 for (i = 0; i < tbl_size; i++) {
2812 struct imsm_disk *d;
2813 struct intel_disk *idisk;
2814 struct imsm_super *mpb = super_table[i]->anchor;
2815
2816 s = super_table[i];
2817 d = &s->disks->disk;
2818
2819 /* 'd' must appear in merged disk list for its
2820 * configuration to be valid
2821 */
2822 idisk = disk_list_get(d->serial, disk_list);
2823 if (idisk && idisk->owner == i)
2824 s = validate_members(s, disk_list, i);
2825 else
2826 s = NULL;
2827
2828 if (!s)
2829 dprintf("%s: marking family: %#x from %d:%d offline\n",
2830 __func__, mpb->family_num,
2831 super_table[i]->disks->major,
2832 super_table[i]->disks->minor);
2833 super_table[i] = s;
2834 }
2835
2836 /* This is where the mdadm implementation differs from the Windows
2837 * driver which has no strict concept of a container. We can only
2838 * assemble one family from a container, so when returning a prodigal
2839 * array member to this system the code will not be able to disambiguate
2840 * the container contents that should be assembled ("foreign" versus
2841 * "local"). It requires user intervention to set the orig_family_num
2842 * to a new value to establish a new container. The Windows driver in
2843 * this situation fixes up the volume name in place and manages the
2844 * foreign array as an independent entity.
2845 */
2846 s = NULL;
2847 spare = NULL;
2848 conflict = 0;
2849 for (i = 0; i < tbl_size; i++) {
2850 struct intel_super *tbl_ent = super_table[i];
2851 int is_spare = 0;
2852
2853 if (!tbl_ent)
2854 continue;
2855
2856 if (tbl_ent->anchor->num_raid_devs == 0) {
2857 spare = tbl_ent;
2858 is_spare = 1;
2859 }
2860
2861 if (s && !is_spare) {
2862 show_conflicts(tbl_ent->anchor->family_num, *super_list);
2863 conflict++;
2864 } else if (!s && !is_spare)
2865 s = tbl_ent;
2866 }
2867
2868 if (!s)
2869 s = spare;
2870 if (!s) {
2871 champion = NULL;
2872 goto out;
2873 }
2874 champion = s;
2875
2876 if (conflict)
2877 fprintf(stderr, "Chose family %#x on '%s', "
2878 "assemble conflicts to new container with '--update=uuid'\n",
2879 __le32_to_cpu(s->anchor->family_num), s->disks->devname);
2880
2881 /* collect all dl's onto 'champion', and update them to
2882 * champion's version of the status
2883 */
2884 for (s = *super_list; s; s = s->next) {
2885 struct imsm_super *mpb = champion->anchor;
2886 struct dl *dl = s->disks;
2887
2888 if (s == champion)
2889 continue;
2890
2891 for (i = 0; i < mpb->num_disks; i++) {
2892 struct imsm_disk *disk;
2893
2894 disk = __serial_to_disk(dl->serial, mpb, &dl->index);
2895 if (disk) {
2896 dl->disk = *disk;
2897 /* only set index on disks that are a member of
2898 * a populated contianer, i.e. one with
2899 * raid_devs
2900 */
2901 if (is_failed(&dl->disk))
2902 dl->index = -2;
2903 else if (is_spare(&dl->disk))
2904 dl->index = -1;
2905 break;
2906 }
2907 }
2908
2909 if (i >= mpb->num_disks) {
2910 struct intel_disk *idisk;
2911
2912 idisk = disk_list_get(dl->serial, disk_list);
2913 if (idisk && is_spare(&idisk->disk) &&
2914 !is_failed(&idisk->disk) && !is_configured(&idisk->disk))
2915 dl->index = -1;
2916 else {
2917 dl->index = -2;
2918 continue;
2919 }
2920 }
2921
2922 dl->next = champion->disks;
2923 champion->disks = dl;
2924 s->disks = NULL;
2925 }
2926
2927 /* delete 'champion' from super_list */
2928 for (del = super_list; *del; ) {
2929 if (*del == champion) {
2930 *del = (*del)->next;
2931 break;
2932 } else
2933 del = &(*del)->next;
2934 }
2935 champion->next = NULL;
2936
2937 out:
2938 while (disk_list) {
2939 struct intel_disk *idisk = disk_list;
2940
2941 disk_list = disk_list->next;
2942 free(idisk);
2943 }
2944
2945 return champion;
2946 }
2947
2948 static int load_super_imsm_all(struct supertype *st, int fd, void **sbp,
2949 char *devname)
2950 {
2951 struct mdinfo *sra;
2952 struct intel_super *super_list = NULL;
2953 struct intel_super *super = NULL;
2954 int devnum = fd2devnum(fd);
2955 struct mdinfo *sd;
2956 int retry;
2957 int err = 0;
2958 int i;
2959
2960 /* check if 'fd' an opened container */
2961 sra = sysfs_read(fd, 0, GET_LEVEL|GET_VERSION|GET_DEVS|GET_STATE);
2962 if (!sra)
2963 return 1;
2964
2965 if (sra->array.major_version != -1 ||
2966 sra->array.minor_version != -2 ||
2967 strcmp(sra->text_version, "imsm") != 0) {
2968 err = 1;
2969 goto error;
2970 }
2971 /* load all mpbs */
2972 for (sd = sra->devs, i = 0; sd; sd = sd->next, i++) {
2973 struct intel_super *s = alloc_super();
2974 char nm[32];
2975 int dfd;
2976
2977 err = 1;
2978 if (!s)
2979 goto error;
2980 s->next = super_list;
2981 super_list = s;
2982
2983 err = 2;
2984 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
2985 dfd = dev_open(nm, O_RDWR);
2986 if (dfd < 0)
2987 goto error;
2988
2989 err = load_and_parse_mpb(dfd, s, NULL, 1);
2990
2991 /* retry the load if we might have raced against mdmon */
2992 if (err == 3 && mdmon_running(devnum))
2993 for (retry = 0; retry < 3; retry++) {
2994 usleep(3000);
2995 err = load_and_parse_mpb(dfd, s, NULL, 1);
2996 if (err != 3)
2997 break;
2998 }
2999 if (err)
3000 goto error;
3001 }
3002
3003 /* all mpbs enter, maybe one leaves */
3004 super = imsm_thunderdome(&super_list, i);
3005 if (!super) {
3006 err = 1;
3007 goto error;
3008 }
3009
3010 if (find_missing(super) != 0) {
3011 free_imsm(super);
3012 err = 2;
3013 goto error;
3014 }
3015 err = 0;
3016
3017 error:
3018 while (super_list) {
3019 struct intel_super *s = super_list;
3020
3021 super_list = super_list->next;
3022 free_imsm(s);
3023 }
3024 sysfs_free(sra);
3025
3026 if (err)
3027 return err;
3028
3029 *sbp = super;
3030 st->container_dev = devnum;
3031 if (err == 0 && st->ss == NULL) {
3032 st->ss = &super_imsm;
3033 st->minor_version = 0;
3034 st->max_devs = IMSM_MAX_DEVICES;
3035 }
3036 return 0;
3037 }
3038
3039 static int load_container_imsm(struct supertype *st, int fd, char *devname)
3040 {
3041 return load_super_imsm_all(st, fd, &st->sb, devname);
3042 }
3043 #endif
3044
3045 static int load_super_imsm(struct supertype *st, int fd, char *devname)
3046 {
3047 struct intel_super *super;
3048 int rv;
3049
3050 #ifndef MDASSEMBLE
3051 if (load_super_imsm_all(st, fd, &st->sb, devname) == 0)
3052 return 0;
3053 #endif
3054
3055 if (test_partition(fd))
3056 /* IMSM not allowed on partitions */
3057 return 1;
3058
3059 free_super_imsm(st);
3060
3061 super = alloc_super();
3062 if (!super) {
3063 fprintf(stderr,
3064 Name ": malloc of %zu failed.\n",
3065 sizeof(*super));
3066 return 1;
3067 }
3068
3069 rv = load_and_parse_mpb(fd, super, devname, 0);
3070
3071 if (rv) {
3072 if (devname)
3073 fprintf(stderr,
3074 Name ": Failed to load all information "
3075 "sections on %s\n", devname);
3076 free_imsm(super);
3077 return rv;
3078 }
3079
3080 st->sb = super;
3081 if (st->ss == NULL) {
3082 st->ss = &super_imsm;
3083 st->minor_version = 0;
3084 st->max_devs = IMSM_MAX_DEVICES;
3085 }
3086 return 0;
3087 }
3088
3089 static __u16 info_to_blocks_per_strip(mdu_array_info_t *info)
3090 {
3091 if (info->level == 1)
3092 return 128;
3093 return info->chunk_size >> 9;
3094 }
3095
3096 static __u32 info_to_num_data_stripes(mdu_array_info_t *info, int num_domains)
3097 {
3098 __u32 num_stripes;
3099
3100 num_stripes = (info->size * 2) / info_to_blocks_per_strip(info);
3101 num_stripes /= num_domains;
3102
3103 return num_stripes;
3104 }
3105
3106 static __u32 info_to_blocks_per_member(mdu_array_info_t *info)
3107 {
3108 if (info->level == 1)
3109 return info->size * 2;
3110 else
3111 return (info->size * 2) & ~(info_to_blocks_per_strip(info) - 1);
3112 }
3113
3114 static void imsm_update_version_info(struct intel_super *super)
3115 {
3116 /* update the version and attributes */
3117 struct imsm_super *mpb = super->anchor;
3118 char *version;
3119 struct imsm_dev *dev;
3120 struct imsm_map *map;
3121 int i;
3122
3123 for (i = 0; i < mpb->num_raid_devs; i++) {
3124 dev = get_imsm_dev(super, i);
3125 map = get_imsm_map(dev, 0);
3126 if (__le32_to_cpu(dev->size_high) > 0)
3127 mpb->attributes |= MPB_ATTRIB_2TB;
3128
3129 /* FIXME detect when an array spans a port multiplier */
3130 #if 0
3131 mpb->attributes |= MPB_ATTRIB_PM;
3132 #endif
3133
3134 if (mpb->num_raid_devs > 1 ||
3135 mpb->attributes != MPB_ATTRIB_CHECKSUM_VERIFY) {
3136 version = MPB_VERSION_ATTRIBS;
3137 switch (get_imsm_raid_level(map)) {
3138 case 0: mpb->attributes |= MPB_ATTRIB_RAID0; break;
3139 case 1: mpb->attributes |= MPB_ATTRIB_RAID1; break;
3140 case 10: mpb->attributes |= MPB_ATTRIB_RAID10; break;
3141 case 5: mpb->attributes |= MPB_ATTRIB_RAID5; break;
3142 }
3143 } else {
3144 if (map->num_members >= 5)
3145 version = MPB_VERSION_5OR6_DISK_ARRAY;
3146 else if (dev->status == DEV_CLONE_N_GO)
3147 version = MPB_VERSION_CNG;
3148 else if (get_imsm_raid_level(map) == 5)
3149 version = MPB_VERSION_RAID5;
3150 else if (map->num_members >= 3)
3151 version = MPB_VERSION_3OR4_DISK_ARRAY;
3152 else if (get_imsm_raid_level(map) == 1)
3153 version = MPB_VERSION_RAID1;
3154 else
3155 version = MPB_VERSION_RAID0;
3156 }
3157 strcpy(((char *) mpb->sig) + strlen(MPB_SIGNATURE), version);
3158 }
3159 }
3160
3161 static int check_name(struct intel_super *super, char *name, int quiet)
3162 {
3163 struct imsm_super *mpb = super->anchor;
3164 char *reason = NULL;
3165 int i;
3166
3167 if (strlen(name) > MAX_RAID_SERIAL_LEN)
3168 reason = "must be 16 characters or less";
3169
3170 for (i = 0; i < mpb->num_raid_devs; i++) {
3171 struct imsm_dev *dev = get_imsm_dev(super, i);
3172
3173 if (strncmp((char *) dev->volume, name, MAX_RAID_SERIAL_LEN) == 0) {
3174 reason = "already exists";
3175 break;
3176 }
3177 }
3178
3179 if (reason && !quiet)
3180 fprintf(stderr, Name ": imsm volume name %s\n", reason);
3181
3182 return !reason;
3183 }
3184
3185 static int init_super_imsm_volume(struct supertype *st, mdu_array_info_t *info,
3186 unsigned long long size, char *name,
3187 char *homehost, int *uuid)
3188 {
3189 /* We are creating a volume inside a pre-existing container.
3190 * so st->sb is already set.
3191 */
3192 struct intel_super *super = st->sb;
3193 struct imsm_super *mpb = super->anchor;
3194 struct intel_dev *dv;
3195 struct imsm_dev *dev;
3196 struct imsm_vol *vol;
3197 struct imsm_map *map;
3198 int idx = mpb->num_raid_devs;
3199 int i;
3200 unsigned long long array_blocks;
3201 size_t size_old, size_new;
3202 __u32 num_data_stripes;
3203
3204 if (super->orom && mpb->num_raid_devs >= super->orom->vpa) {
3205 fprintf(stderr, Name": This imsm-container already has the "
3206 "maximum of %d volumes\n", super->orom->vpa);
3207 return 0;
3208 }
3209
3210 /* ensure the mpb is large enough for the new data */
3211 size_old = __le32_to_cpu(mpb->mpb_size);
3212 size_new = disks_to_mpb_size(info->nr_disks);
3213 if (size_new > size_old) {
3214 void *mpb_new;
3215 size_t size_round = ROUND_UP(size_new, 512);
3216
3217 if (posix_memalign(&mpb_new, 512, size_round) != 0) {
3218 fprintf(stderr, Name": could not allocate new mpb\n");
3219 return 0;
3220 }
3221 memcpy(mpb_new, mpb, size_old);
3222 free(mpb);
3223 mpb = mpb_new;
3224 super->anchor = mpb_new;
3225 mpb->mpb_size = __cpu_to_le32(size_new);
3226 memset(mpb_new + size_old, 0, size_round - size_old);
3227 }
3228 super->current_vol = idx;
3229 /* when creating the first raid device in this container set num_disks
3230 * to zero, i.e. delete this spare and add raid member devices in
3231 * add_to_super_imsm_volume()
3232 */
3233 if (super->current_vol == 0)
3234 mpb->num_disks = 0;
3235
3236 if (!check_name(super, name, 0))
3237 return 0;
3238 dv = malloc(sizeof(*dv));
3239 if (!dv) {
3240 fprintf(stderr, Name ": failed to allocate device list entry\n");
3241 return 0;
3242 }
3243 dev = malloc(sizeof(*dev) + sizeof(__u32) * (info->raid_disks - 1));
3244 if (!dev) {
3245 free(dv);
3246 fprintf(stderr, Name": could not allocate raid device\n");
3247 return 0;
3248 }
3249 strncpy((char *) dev->volume, name, MAX_RAID_SERIAL_LEN);
3250 if (info->level == 1)
3251 array_blocks = info_to_blocks_per_member(info);
3252 else
3253 array_blocks = calc_array_size(info->level, info->raid_disks,
3254 info->layout, info->chunk_size,
3255 info->size*2);
3256 /* round array size down to closest MB */
3257 array_blocks = (array_blocks >> SECT_PER_MB_SHIFT) << SECT_PER_MB_SHIFT;
3258
3259 dev->size_low = __cpu_to_le32((__u32) array_blocks);
3260 dev->size_high = __cpu_to_le32((__u32) (array_blocks >> 32));
3261 dev->status = __cpu_to_le32(0);
3262 dev->reserved_blocks = __cpu_to_le32(0);
3263 vol = &dev->vol;
3264 vol->migr_state = 0;
3265 set_migr_type(dev, MIGR_INIT);
3266 vol->dirty = 0;
3267 vol->curr_migr_unit = 0;
3268 map = get_imsm_map(dev, 0);
3269 map->pba_of_lba0 = __cpu_to_le32(super->create_offset);
3270 map->blocks_per_member = __cpu_to_le32(info_to_blocks_per_member(info));
3271 map->blocks_per_strip = __cpu_to_le16(info_to_blocks_per_strip(info));
3272 map->failed_disk_num = ~0;
3273 map->map_state = info->level ? IMSM_T_STATE_UNINITIALIZED :
3274 IMSM_T_STATE_NORMAL;
3275 map->ddf = 1;
3276
3277 if (info->level == 1 && info->raid_disks > 2) {
3278 free(dev);
3279 free(dv);
3280 fprintf(stderr, Name": imsm does not support more than 2 disks"
3281 "in a raid1 volume\n");
3282 return 0;
3283 }
3284
3285 map->raid_level = info->level;
3286 if (info->level == 10) {
3287 map->raid_level = 1;
3288 map->num_domains = info->raid_disks / 2;
3289 } else if (info->level == 1)
3290 map->num_domains = info->raid_disks;
3291 else
3292 map->num_domains = 1;
3293
3294 num_data_stripes = info_to_num_data_stripes(info, map->num_domains);
3295 map->num_data_stripes = __cpu_to_le32(num_data_stripes);
3296
3297 map->num_members = info->raid_disks;
3298 for (i = 0; i < map->num_members; i++) {
3299 /* initialized in add_to_super */
3300 set_imsm_ord_tbl_ent(map, i, IMSM_ORD_REBUILD);
3301 }
3302 mpb->num_raid_devs++;
3303
3304 dv->dev = dev;
3305 dv->index = super->current_vol;
3306 dv->next = super->devlist;
3307 super->devlist = dv;
3308
3309 imsm_update_version_info(super);
3310
3311 return 1;
3312 }
3313
3314 static int init_super_imsm(struct supertype *st, mdu_array_info_t *info,
3315 unsigned long long size, char *name,
3316 char *homehost, int *uuid)
3317 {
3318 /* This is primarily called by Create when creating a new array.
3319 * We will then get add_to_super called for each component, and then
3320 * write_init_super called to write it out to each device.
3321 * For IMSM, Create can create on fresh devices or on a pre-existing
3322 * array.
3323 * To create on a pre-existing array a different method will be called.
3324 * This one is just for fresh drives.
3325 */
3326 struct intel_super *super;
3327 struct imsm_super *mpb;
3328 size_t mpb_size;
3329 char *version;
3330
3331 if (st->sb)
3332 return init_super_imsm_volume(st, info, size, name, homehost, uuid);
3333
3334 if (info)
3335 mpb_size = disks_to_mpb_size(info->nr_disks);
3336 else
3337 mpb_size = 512;
3338
3339 super = alloc_super();
3340 if (super && posix_memalign(&super->buf, 512, mpb_size) != 0) {
3341 free(super);
3342 super = NULL;
3343 }
3344 if (!super) {
3345 fprintf(stderr, Name
3346 ": %s could not allocate superblock\n", __func__);
3347 return 0;
3348 }
3349 memset(super->buf, 0, mpb_size);
3350 mpb = super->buf;
3351 mpb->mpb_size = __cpu_to_le32(mpb_size);
3352 st->sb = super;
3353
3354 if (info == NULL) {
3355 /* zeroing superblock */
3356 return 0;
3357 }
3358
3359 mpb->attributes = MPB_ATTRIB_CHECKSUM_VERIFY;
3360
3361 version = (char *) mpb->sig;
3362 strcpy(version, MPB_SIGNATURE);
3363 version += strlen(MPB_SIGNATURE);
3364 strcpy(version, MPB_VERSION_RAID0);
3365
3366 return 1;
3367 }
3368
3369 #ifndef MDASSEMBLE
3370 static int add_to_super_imsm_volume(struct supertype *st, mdu_disk_info_t *dk,
3371 int fd, char *devname)
3372 {
3373 struct intel_super *super = st->sb;
3374 struct imsm_super *mpb = super->anchor;
3375 struct dl *dl;
3376 struct imsm_dev *dev;
3377 struct imsm_map *map;
3378 int slot;
3379
3380 dev = get_imsm_dev(super, super->current_vol);
3381 map = get_imsm_map(dev, 0);
3382
3383 if (! (dk->state & (1<<MD_DISK_SYNC))) {
3384 fprintf(stderr, Name ": %s: Cannot add spare devices to IMSM volume\n",
3385 devname);
3386 return 1;
3387 }
3388
3389 if (fd == -1) {
3390 /* we're doing autolayout so grab the pre-marked (in
3391 * validate_geometry) raid_disk
3392 */
3393 for (dl = super->disks; dl; dl = dl->next)
3394 if (dl->raiddisk == dk->raid_disk)
3395 break;
3396 } else {
3397 for (dl = super->disks; dl ; dl = dl->next)
3398 if (dl->major == dk->major &&
3399 dl->minor == dk->minor)
3400 break;
3401 }
3402
3403 if (!dl) {
3404 fprintf(stderr, Name ": %s is not a member of the same container\n", devname);
3405 return 1;
3406 }
3407
3408 /* add a pristine spare to the metadata */
3409 if (dl->index < 0) {
3410 dl->index = super->anchor->num_disks;
3411 super->anchor->num_disks++;
3412 }
3413 /* Check the device has not already been added */
3414 slot = get_imsm_disk_slot(map, dl->index);
3415 if (slot >= 0 &&
3416 (get_imsm_ord_tbl_ent(dev, slot, -1) & IMSM_ORD_REBUILD) == 0) {
3417 fprintf(stderr, Name ": %s has been included in this array twice\n",
3418 devname);
3419 return 1;
3420 }
3421 set_imsm_ord_tbl_ent(map, dk->number, dl->index);
3422 dl->disk.status = CONFIGURED_DISK;
3423
3424 /* if we are creating the first raid device update the family number */
3425 if (super->current_vol == 0) {
3426 __u32 sum;
3427 struct imsm_dev *_dev = __get_imsm_dev(mpb, 0);
3428 struct imsm_disk *_disk = __get_imsm_disk(mpb, dl->index);
3429
3430 if (!_dev || !_disk) {
3431 fprintf(stderr, Name ": BUG mpb setup error\n");
3432 return 1;
3433 }
3434 *_dev = *dev;
3435 *_disk = dl->disk;
3436 sum = random32();
3437 sum += __gen_imsm_checksum(mpb);
3438 mpb->family_num = __cpu_to_le32(sum);
3439 mpb->orig_family_num = mpb->family_num;
3440 }
3441
3442 return 0;
3443 }
3444
3445 static int add_to_super_imsm(struct supertype *st, mdu_disk_info_t *dk,
3446 int fd, char *devname)
3447 {
3448 struct intel_super *super = st->sb;
3449 struct dl *dd;
3450 unsigned long long size;
3451 __u32 id;
3452 int rv;
3453 struct stat stb;
3454
3455 /* if we are on an RAID enabled platform check that the disk is
3456 * attached to the raid controller
3457 */
3458 if (super->hba && !disk_attached_to_hba(fd, super->hba)) {
3459 fprintf(stderr,
3460 Name ": %s is not attached to the raid controller: %s\n",
3461 devname ? : "disk", super->hba);
3462 return 1;
3463 }
3464
3465 if (super->current_vol >= 0)
3466 return add_to_super_imsm_volume(st, dk, fd, devname);
3467
3468 fstat(fd, &stb);
3469 dd = malloc(sizeof(*dd));
3470 if (!dd) {
3471 fprintf(stderr,
3472 Name ": malloc failed %s:%d.\n", __func__, __LINE__);
3473 return 1;
3474 }
3475 memset(dd, 0, sizeof(*dd));
3476 dd->major = major(stb.st_rdev);
3477 dd->minor = minor(stb.st_rdev);
3478 dd->index = -1;
3479 dd->devname = devname ? strdup(devname) : NULL;
3480 dd->fd = fd;
3481 dd->e = NULL;
3482 dd->action = DISK_ADD;
3483 rv = imsm_read_serial(fd, devname, dd->serial);
3484 if (rv) {
3485 fprintf(stderr,
3486 Name ": failed to retrieve scsi serial, aborting\n");
3487 free(dd);
3488 abort();
3489 }
3490
3491 get_dev_size(fd, NULL, &size);
3492 size /= 512;
3493 serialcpy(dd->disk.serial, dd->serial);
3494 dd->disk.total_blocks = __cpu_to_le32(size);
3495 dd->disk.status = SPARE_DISK;
3496 if (sysfs_disk_to_scsi_id(fd, &id) == 0)
3497 dd->disk.scsi_id = __cpu_to_le32(id);
3498 else
3499 dd->disk.scsi_id = __cpu_to_le32(0);
3500
3501 if (st->update_tail) {
3502 dd->next = super->disk_mgmt_list;
3503 super->disk_mgmt_list = dd;
3504 } else {
3505 dd->next = super->disks;
3506 super->disks = dd;
3507 }
3508
3509 return 0;
3510 }
3511
3512
3513 static int remove_from_super_imsm(struct supertype *st, mdu_disk_info_t *dk)
3514 {
3515 struct intel_super *super = st->sb;
3516 struct dl *dd;
3517
3518 /* remove from super works only in mdmon - for communication
3519 * manager - monitor. Check if communication memory buffer
3520 * is prepared.
3521 */
3522 if (!st->update_tail) {
3523 fprintf(stderr,
3524 Name ": %s shall be used in mdmon context only"
3525 "(line %d).\n", __func__, __LINE__);
3526 return 1;
3527 }
3528 dd = malloc(sizeof(*dd));
3529 if (!dd) {
3530 fprintf(stderr,
3531 Name ": malloc failed %s:%d.\n", __func__, __LINE__);
3532 return 1;
3533 }
3534 memset(dd, 0, sizeof(*dd));
3535 dd->major = dk->major;
3536 dd->minor = dk->minor;
3537 dd->index = -1;
3538 dd->fd = -1;
3539 dd->disk.status = SPARE_DISK;
3540 dd->action = DISK_REMOVE;
3541
3542 dd->next = super->disk_mgmt_list;
3543 super->disk_mgmt_list = dd;
3544
3545
3546 return 0;
3547 }
3548
3549 static int store_imsm_mpb(int fd, struct imsm_super *mpb);
3550
3551 static union {
3552 char buf[512];
3553 struct imsm_super anchor;
3554 } spare_record __attribute__ ((aligned(512)));
3555
3556 /* spare records have their own family number and do not have any defined raid
3557 * devices
3558 */
3559 static int write_super_imsm_spares(struct intel_super *super, int doclose)
3560 {
3561 struct imsm_super *mpb = super->anchor;
3562 struct imsm_super *spare = &spare_record.anchor;
3563 __u32 sum;
3564 struct dl *d;
3565
3566 spare->mpb_size = __cpu_to_le32(sizeof(struct imsm_super)),
3567 spare->generation_num = __cpu_to_le32(1UL),
3568 spare->attributes = MPB_ATTRIB_CHECKSUM_VERIFY;
3569 spare->num_disks = 1,
3570 spare->num_raid_devs = 0,
3571 spare->cache_size = mpb->cache_size,
3572 spare->pwr_cycle_count = __cpu_to_le32(1),
3573
3574 snprintf((char *) spare->sig, MAX_SIGNATURE_LENGTH,
3575 MPB_SIGNATURE MPB_VERSION_RAID0);
3576
3577 for (d = super->disks; d; d = d->next) {
3578 if (d->index != -1)
3579 continue;
3580
3581 spare->disk[0] = d->disk;
3582 sum = __gen_imsm_checksum(spare);
3583 spare->family_num = __cpu_to_le32(sum);
3584 spare->orig_family_num = 0;
3585 sum = __gen_imsm_checksum(spare);
3586 spare->check_sum = __cpu_to_le32(sum);
3587
3588 if (store_imsm_mpb(d->fd, spare)) {
3589 fprintf(stderr, "%s: failed for device %d:%d %s\n",
3590 __func__, d->major, d->minor, strerror(errno));
3591 return 1;
3592 }
3593 if (doclose) {
3594 close(d->fd);
3595 d->fd = -1;
3596 }
3597 }
3598
3599 return 0;
3600 }
3601
3602 static int write_super_imsm(struct supertype *st, int doclose)
3603 {
3604 struct intel_super *super = st->sb;
3605 struct imsm_super *mpb = super->anchor;
3606 struct dl *d;
3607 __u32 generation;
3608 __u32 sum;
3609 int spares = 0;
3610 int i;
3611 __u32 mpb_size = sizeof(struct imsm_super) - sizeof(struct imsm_disk);
3612 int num_disks = 0;
3613
3614 /* 'generation' is incremented everytime the metadata is written */
3615 generation = __le32_to_cpu(mpb->generation_num);
3616 generation++;
3617 mpb->generation_num = __cpu_to_le32(generation);
3618
3619 /* fix up cases where previous mdadm releases failed to set
3620 * orig_family_num
3621 */
3622 if (mpb->orig_family_num == 0)
3623 mpb->orig_family_num = mpb->family_num;
3624
3625 for (d = super->disks; d; d = d->next) {
3626 if (d->index == -1)
3627 spares++;
3628 else {
3629 mpb->disk[d->index] = d->disk;
3630 num_disks++;
3631 }
3632 }
3633 for (d = super->missing; d; d = d->next) {
3634 mpb->disk[d->index] = d->disk;
3635 num_disks++;
3636 }
3637 mpb->num_disks = num_disks;
3638 mpb_size += sizeof(struct imsm_disk) * mpb->num_disks;
3639
3640 for (i = 0; i < mpb->num_raid_devs; i++) {
3641 struct imsm_dev *dev = __get_imsm_dev(mpb, i);
3642 struct imsm_dev *dev2 = get_imsm_dev(super, i);
3643 if (dev && dev2) {
3644 imsm_copy_dev(dev, dev2);
3645 mpb_size += sizeof_imsm_dev(dev, 0);
3646 }
3647 }
3648 mpb_size += __le32_to_cpu(mpb->bbm_log_size);
3649 mpb->mpb_size = __cpu_to_le32(mpb_size);
3650
3651 /* recalculate checksum */
3652 sum = __gen_imsm_checksum(mpb);
3653 mpb->check_sum = __cpu_to_le32(sum);
3654
3655 /* write the mpb for disks that compose raid devices */
3656 for (d = super->disks; d ; d = d->next) {
3657 if (d->index < 0)
3658 continue;
3659 if (store_imsm_mpb(d->fd, mpb))
3660 fprintf(stderr, "%s: failed for device %d:%d %s\n",
3661 __func__, d->major, d->minor, strerror(errno));
3662 if (doclose) {
3663 close(d->fd);
3664 d->fd = -1;
3665 }
3666 }
3667
3668 if (spares)
3669 return write_super_imsm_spares(super, doclose);
3670
3671 return 0;
3672 }
3673
3674
3675 static int create_array(struct supertype *st, int dev_idx)
3676 {
3677 size_t len;
3678 struct imsm_update_create_array *u;
3679 struct intel_super *super = st->sb;
3680 struct imsm_dev *dev = get_imsm_dev(super, dev_idx);
3681 struct imsm_map *map = get_imsm_map(dev, 0);
3682 struct disk_info *inf;
3683 struct imsm_disk *disk;
3684 int i;
3685
3686 len = sizeof(*u) - sizeof(*dev) + sizeof_imsm_dev(dev, 0) +
3687 sizeof(*inf) * map->num_members;
3688 u = malloc(len);
3689 if (!u) {
3690 fprintf(stderr, "%s: failed to allocate update buffer\n",
3691 __func__);
3692 return 1;
3693 }
3694
3695 u->type = update_create_array;
3696 u->dev_idx = dev_idx;
3697 imsm_copy_dev(&u->dev, dev);
3698 inf = get_disk_info(u);
3699 for (i = 0; i < map->num_members; i++) {
3700 int idx = get_imsm_disk_idx(dev, i, -1);
3701
3702 disk = get_imsm_disk(super, idx);
3703 serialcpy(inf[i].serial, disk->serial);
3704 }
3705 append_metadata_update(st, u, len);
3706
3707 return 0;
3708 }
3709
3710 static int mgmt_disk(struct supertype *st)
3711 {
3712 struct intel_super *super = st->sb;
3713 size_t len;
3714 struct imsm_update_add_remove_disk *u;
3715
3716 if (!super->disk_mgmt_list)
3717 return 0;
3718
3719 len = sizeof(*u);
3720 u = malloc(len);
3721 if (!u) {
3722 fprintf(stderr, "%s: failed to allocate update buffer\n",
3723 __func__);
3724 return 1;
3725 }
3726
3727 u->type = update_add_remove_disk;
3728 append_metadata_update(st, u, len);
3729
3730 return 0;
3731 }
3732
3733 static int write_init_super_imsm(struct supertype *st)
3734 {
3735 struct intel_super *super = st->sb;
3736 int current_vol = super->current_vol;
3737
3738 /* we are done with current_vol reset it to point st at the container */
3739 super->current_vol = -1;
3740
3741 if (st->update_tail) {
3742 /* queue the recently created array / added disk
3743 * as a metadata update */
3744 struct dl *d;
3745 int rv;
3746
3747 /* determine if we are creating a volume or adding a disk */
3748 if (current_vol < 0) {
3749 /* in the mgmt (add/remove) disk case we are running
3750 * in mdmon context, so don't close fd's
3751 */
3752 return mgmt_disk(st);
3753 } else
3754 rv = create_array(st, current_vol);
3755
3756 for (d = super->disks; d ; d = d->next) {
3757 close(d->fd);
3758 d->fd = -1;
3759 }
3760
3761 return rv;
3762 } else {
3763 struct dl *d;
3764 for (d = super->disks; d; d = d->next)
3765 Kill(d->devname, NULL, 0, 1, 1);
3766 return write_super_imsm(st, 1);
3767 }
3768 }
3769 #endif
3770
3771 static int store_super_imsm(struct supertype *st, int fd)
3772 {
3773 struct intel_super *super = st->sb;
3774 struct imsm_super *mpb = super ? super->anchor : NULL;
3775
3776 if (!mpb)
3777 return 1;
3778
3779 #ifndef MDASSEMBLE
3780 return store_imsm_mpb(fd, mpb);
3781 #else
3782 return 1;
3783 #endif
3784 }
3785
3786 static int imsm_bbm_log_size(struct imsm_super *mpb)
3787 {
3788 return __le32_to_cpu(mpb->bbm_log_size);
3789 }
3790
3791 #ifndef MDASSEMBLE
3792 static int validate_geometry_imsm_container(struct supertype *st, int level,
3793 int layout, int raiddisks, int chunk,
3794 unsigned long long size, char *dev,
3795 unsigned long long *freesize,
3796 int verbose)
3797 {
3798 int fd;
3799 unsigned long long ldsize;
3800 const struct imsm_orom *orom;
3801
3802 if (level != LEVEL_CONTAINER)
3803 return 0;
3804 if (!dev)
3805 return 1;
3806
3807 if (check_env("IMSM_NO_PLATFORM"))
3808 orom = NULL;
3809 else
3810 orom = find_imsm_orom();
3811 if (orom && raiddisks > orom->tds) {
3812 if (verbose)
3813 fprintf(stderr, Name ": %d exceeds maximum number of"
3814 " platform supported disks: %d\n",
3815 raiddisks, orom->tds);
3816 return 0;
3817 }
3818
3819 fd = open(dev, O_RDONLY|O_EXCL, 0);
3820 if (fd < 0) {
3821 if (verbose)
3822 fprintf(stderr, Name ": imsm: Cannot open %s: %s\n",
3823 dev, strerror(errno));
3824 return 0;
3825 }
3826 if (!get_dev_size(fd, dev, &ldsize)) {
3827 close(fd);
3828 return 0;
3829 }
3830 close(fd);
3831
3832 *freesize = avail_size_imsm(st, ldsize >> 9);
3833
3834 return 1;
3835 }
3836
3837 static unsigned long long find_size(struct extent *e, int *idx, int num_extents)
3838 {
3839 const unsigned long long base_start = e[*idx].start;
3840 unsigned long long end = base_start + e[*idx].size;
3841 int i;
3842
3843 if (base_start == end)
3844 return 0;
3845
3846 *idx = *idx + 1;
3847 for (i = *idx; i < num_extents; i++) {
3848 /* extend overlapping extents */
3849 if (e[i].start >= base_start &&
3850 e[i].start <= end) {
3851 if (e[i].size == 0)
3852 return 0;
3853 if (e[i].start + e[i].size > end)
3854 end = e[i].start + e[i].size;
3855 } else if (e[i].start > end) {
3856 *idx = i;
3857 break;
3858 }
3859 }
3860
3861 return end - base_start;
3862 }
3863
3864 static unsigned long long merge_extents(struct intel_super *super, int sum_extents)
3865 {
3866 /* build a composite disk with all known extents and generate a new
3867 * 'maxsize' given the "all disks in an array must share a common start
3868 * offset" constraint
3869 */
3870 struct extent *e = calloc(sum_extents, sizeof(*e));
3871 struct dl *dl;
3872 int i, j;
3873 int start_extent;
3874 unsigned long long pos;
3875 unsigned long long start = 0;
3876 unsigned long long maxsize;
3877 unsigned long reserve;
3878
3879 if (!e)
3880 return 0;
3881
3882 /* coalesce and sort all extents. also, check to see if we need to
3883 * reserve space between member arrays
3884 */
3885 j = 0;
3886 for (dl = super->disks; dl; dl = dl->next) {
3887 if (!dl->e)
3888 continue;
3889 for (i = 0; i < dl->extent_cnt; i++)
3890 e[j++] = dl->e[i];
3891 }
3892 qsort(e, sum_extents, sizeof(*e), cmp_extent);
3893
3894 /* merge extents */
3895 i = 0;
3896 j = 0;
3897 while (i < sum_extents) {
3898 e[j].start = e[i].start;
3899 e[j].size = find_size(e, &i, sum_extents);
3900 j++;
3901 if (e[j-1].size == 0)
3902 break;
3903 }
3904
3905 pos = 0;
3906 maxsize = 0;
3907 start_extent = 0;
3908 i = 0;
3909 do {
3910 unsigned long long esize;
3911
3912 esize = e[i].start - pos;
3913 if (esize >= maxsize) {
3914 maxsize = esize;
3915 start = pos;
3916 start_extent = i;
3917 }
3918 pos = e[i].start + e[i].size;
3919 i++;
3920 } while (e[i-1].size);
3921 free(e);
3922
3923 if (maxsize == 0)
3924 return 0;
3925
3926 /* FIXME assumes volume at offset 0 is the first volume in a
3927 * container
3928 */
3929 if (start_extent > 0)
3930 reserve = IMSM_RESERVED_SECTORS; /* gap between raid regions */
3931 else
3932 reserve = 0;
3933
3934 if (maxsize < reserve)
3935 return 0;
3936
3937 super->create_offset = ~((__u32) 0);
3938 if (start + reserve > super->create_offset)
3939 return 0; /* start overflows create_offset */
3940 super->create_offset = start + reserve;
3941
3942 return maxsize - reserve;
3943 }
3944
3945 static int is_raid_level_supported(const struct imsm_orom *orom, int level, int raiddisks)
3946 {
3947 if (level < 0 || level == 6 || level == 4)
3948 return 0;
3949
3950 /* if we have an orom prevent invalid raid levels */
3951 if (orom)
3952 switch (level) {
3953 case 0: return imsm_orom_has_raid0(orom);
3954 case 1:
3955 if (raiddisks > 2)
3956 return imsm_orom_has_raid1e(orom);
3957 return imsm_orom_has_raid1(orom) && raiddisks == 2;
3958 case 10: return imsm_orom_has_raid10(orom) && raiddisks == 4;
3959 case 5: return imsm_orom_has_raid5(orom) && raiddisks > 2;
3960 }
3961 else
3962 return 1; /* not on an Intel RAID platform so anything goes */
3963
3964 return 0;
3965 }
3966
3967 #define pr_vrb(fmt, arg...) (void) (verbose && fprintf(stderr, Name fmt, ##arg))
3968 static int
3969 validate_geometry_imsm_orom(struct intel_super *super, int level, int layout,
3970 int raiddisks, int chunk, int verbose)
3971 {
3972 if (!is_raid_level_supported(super->orom, level, raiddisks)) {
3973 pr_vrb(": platform does not support raid%d with %d disk%s\n",
3974 level, raiddisks, raiddisks > 1 ? "s" : "");
3975 return 0;
3976 }
3977 if (super->orom && level != 1 &&
3978 !imsm_orom_has_chunk(super->orom, chunk)) {
3979 pr_vrb(": platform does not support a chunk size of: %d\n", chunk);
3980 return 0;
3981 }
3982 if (layout != imsm_level_to_layout(level)) {
3983 if (level == 5)
3984 pr_vrb(": imsm raid 5 only supports the left-asymmetric layout\n");
3985 else if (level == 10)
3986 pr_vrb(": imsm raid 10 only supports the n2 layout\n");
3987 else
3988 pr_vrb(": imsm unknown layout %#x for this raid level %d\n",
3989 layout, level);
3990 return 0;
3991 }
3992
3993 return 1;
3994 }
3995
3996 /* validate_geometry_imsm_volume - lifted from validate_geometry_ddf_bvd
3997 * FIX ME add ahci details
3998 */
3999 static int validate_geometry_imsm_volume(struct supertype *st, int level,
4000 int layout, int raiddisks, int chunk,
4001 unsigned long long size, char *dev,
4002 unsigned long long *freesize,
4003 int verbose)
4004 {
4005 struct stat stb;
4006 struct intel_super *super = st->sb;
4007 struct imsm_super *mpb = super->anchor;
4008 struct dl *dl;
4009 unsigned long long pos = 0;
4010 unsigned long long maxsize;
4011 struct extent *e;
4012 int i;
4013
4014 /* We must have the container info already read in. */
4015 if (!super)
4016 return 0;
4017
4018 if (!validate_geometry_imsm_orom(super, level, layout, raiddisks, chunk, verbose))
4019 return 0;
4020
4021 if (!dev) {
4022 /* General test: make sure there is space for
4023 * 'raiddisks' device extents of size 'size' at a given
4024 * offset
4025 */
4026 unsigned long long minsize = size;
4027 unsigned long long start_offset = MaxSector;
4028 int dcnt = 0;
4029 if (minsize == 0)
4030 minsize = MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
4031 for (dl = super->disks; dl ; dl = dl->next) {
4032 int found = 0;
4033
4034 pos = 0;
4035 i = 0;
4036 e = get_extents(super, dl);
4037 if (!e) continue;
4038 do {
4039 unsigned long long esize;
4040 esize = e[i].start - pos;
4041 if (esize >= minsize)
4042 found = 1;
4043 if (found && start_offset == MaxSector) {
4044 start_offset = pos;
4045 break;
4046 } else if (found && pos != start_offset) {
4047 found = 0;
4048 break;
4049 }
4050 pos = e[i].start + e[i].size;
4051 i++;
4052 } while (e[i-1].size);
4053 if (found)
4054 dcnt++;
4055 free(e);
4056 }
4057 if (dcnt < raiddisks) {
4058 if (verbose)
4059 fprintf(stderr, Name ": imsm: Not enough "
4060 "devices with space for this array "
4061 "(%d < %d)\n",
4062 dcnt, raiddisks);
4063 return 0;
4064 }
4065 return 1;
4066 }
4067
4068 /* This device must be a member of the set */
4069 if (stat(dev, &stb) < 0)
4070 return 0;
4071 if ((S_IFMT & stb.st_mode) != S_IFBLK)
4072 return 0;
4073 for (dl = super->disks ; dl ; dl = dl->next) {
4074 if (dl->major == (int)major(stb.st_rdev) &&
4075 dl->minor == (int)minor(stb.st_rdev))
4076 break;
4077 }
4078 if (!dl) {
4079 if (verbose)
4080 fprintf(stderr, Name ": %s is not in the "
4081 "same imsm set\n", dev);
4082 return 0;
4083 } else if (super->orom && dl->index < 0 && mpb->num_raid_devs) {
4084 /* If a volume is present then the current creation attempt
4085 * cannot incorporate new spares because the orom may not
4086 * understand this configuration (all member disks must be
4087 * members of each array in the container).
4088 */
4089 fprintf(stderr, Name ": %s is a spare and a volume"
4090 " is already defined for this container\n", dev);
4091 fprintf(stderr, Name ": The option-rom requires all member"
4092 " disks to be a member of all volumes\n");
4093 return 0;
4094 }
4095
4096 /* retrieve the largest free space block */
4097 e = get_extents(super, dl);
4098 maxsize = 0;
4099 i = 0;
4100 if (e) {
4101 do {
4102 unsigned long long esize;
4103
4104 esize = e[i].start - pos;
4105 if (esize >= maxsize)
4106 maxsize = esize;
4107 pos = e[i].start + e[i].size;
4108 i++;
4109 } while (e[i-1].size);
4110 dl->e = e;
4111 dl->extent_cnt = i;
4112 } else {
4113 if (verbose)
4114 fprintf(stderr, Name ": unable to determine free space for: %s\n",
4115 dev);
4116 return 0;
4117 }
4118 if (maxsize < size) {
4119 if (verbose)
4120 fprintf(stderr, Name ": %s not enough space (%llu < %llu)\n",
4121 dev, maxsize, size);
4122 return 0;
4123 }
4124
4125 /* count total number of extents for merge */
4126 i = 0;
4127 for (dl = super->disks; dl; dl = dl->next)
4128 if (dl->e)
4129 i += dl->extent_cnt;
4130
4131 maxsize = merge_extents(super, i);
4132 if (maxsize < size || maxsize == 0) {
4133 if (verbose)
4134 fprintf(stderr, Name ": not enough space after merge (%llu < %llu)\n",
4135 maxsize, size);
4136 return 0;
4137 }
4138
4139 *freesize = maxsize;
4140
4141 return 1;
4142 }
4143
4144 static int reserve_space(struct supertype *st, int raiddisks,
4145 unsigned long long size, int chunk,
4146 unsigned long long *freesize)
4147 {
4148 struct intel_super *super = st->sb;
4149 struct imsm_super *mpb = super->anchor;
4150 struct dl *dl;
4151 int i;
4152 int extent_cnt;
4153 struct extent *e;
4154 unsigned long long maxsize;
4155 unsigned long long minsize;
4156 int cnt;
4157 int used;
4158
4159 /* find the largest common start free region of the possible disks */
4160 used = 0;
4161 extent_cnt = 0;
4162 cnt = 0;
4163 for (dl = super->disks; dl; dl = dl->next) {
4164 dl->raiddisk = -1;
4165
4166 if (dl->index >= 0)
4167 used++;
4168
4169 /* don't activate new spares if we are orom constrained
4170 * and there is already a volume active in the container
4171 */
4172 if (super->orom && dl->index < 0 && mpb->num_raid_devs)
4173 continue;
4174
4175 e = get_extents(super, dl);
4176 if (!e)
4177 continue;
4178 for (i = 1; e[i-1].size; i++)
4179 ;
4180 dl->e = e;
4181 dl->extent_cnt = i;
4182 extent_cnt += i;
4183 cnt++;
4184 }
4185
4186 maxsize = merge_extents(super, extent_cnt);
4187 minsize = size;
4188 if (size == 0)
4189 minsize = chunk;
4190
4191 if (cnt < raiddisks ||
4192 (super->orom && used && used != raiddisks) ||
4193 maxsize < minsize ||
4194 maxsize == 0) {
4195 fprintf(stderr, Name ": not enough devices with space to create array.\n");
4196 return 0; /* No enough free spaces large enough */
4197 }
4198
4199 if (size == 0) {
4200 size = maxsize;
4201 if (chunk) {
4202 size /= chunk;
4203 size *= chunk;
4204 }
4205 }
4206
4207 cnt = 0;
4208 for (dl = super->disks; dl; dl = dl->next)
4209 if (dl->e)
4210 dl->raiddisk = cnt++;
4211
4212 *freesize = size;
4213
4214 return 1;
4215 }
4216
4217 static int validate_geometry_imsm(struct supertype *st, int level, int layout,
4218 int raiddisks, int chunk, unsigned long long size,
4219 char *dev, unsigned long long *freesize,
4220 int verbose)
4221 {
4222 int fd, cfd;
4223 struct mdinfo *sra;
4224 int is_member = 0;
4225
4226 /* if given unused devices create a container
4227 * if given given devices in a container create a member volume
4228 */
4229 if (level == LEVEL_CONTAINER) {
4230 /* Must be a fresh device to add to a container */
4231 return validate_geometry_imsm_container(st, level, layout,
4232 raiddisks, chunk, size,
4233 dev, freesize,
4234 verbose);
4235 }
4236
4237 if (!dev) {
4238 if (st->sb && freesize) {
4239 /* we are being asked to automatically layout a
4240 * new volume based on the current contents of
4241 * the container. If the the parameters can be
4242 * satisfied reserve_space will record the disks,
4243 * start offset, and size of the volume to be
4244 * created. add_to_super and getinfo_super
4245 * detect when autolayout is in progress.
4246 */
4247 if (!validate_geometry_imsm_orom(st->sb, level, layout,
4248 raiddisks, chunk,
4249 verbose))
4250 return 0;
4251 return reserve_space(st, raiddisks, size, chunk, freesize);
4252 }
4253 return 1;
4254 }
4255 if (st->sb) {
4256 /* creating in a given container */
4257 return validate_geometry_imsm_volume(st, level, layout,
4258 raiddisks, chunk, size,
4259 dev, freesize, verbose);
4260 }
4261
4262 /* This device needs to be a device in an 'imsm' container */
4263 fd = open(dev, O_RDONLY|O_EXCL, 0);
4264 if (fd >= 0) {
4265 if (verbose)
4266 fprintf(stderr,
4267 Name ": Cannot create this array on device %s\n",
4268 dev);
4269 close(fd);
4270 return 0;
4271 }
4272 if (errno != EBUSY || (fd = open(dev, O_RDONLY, 0)) < 0) {
4273 if (verbose)
4274 fprintf(stderr, Name ": Cannot open %s: %s\n",
4275 dev, strerror(errno));
4276 return 0;
4277 }
4278 /* Well, it is in use by someone, maybe an 'imsm' container. */
4279 cfd = open_container(fd);
4280 close(fd);
4281 if (cfd < 0) {
4282 if (verbose)
4283 fprintf(stderr, Name ": Cannot use %s: It is busy\n",
4284 dev);
4285 return 0;
4286 }
4287 sra = sysfs_read(cfd, 0, GET_VERSION);
4288 if (sra && sra->array.major_version == -1 &&
4289 strcmp(sra->text_version, "imsm") == 0)
4290 is_member = 1;
4291 sysfs_free(sra);
4292 if (is_member) {
4293 /* This is a member of a imsm container. Load the container
4294 * and try to create a volume
4295 */
4296 struct intel_super *super;
4297
4298 if (load_super_imsm_all(st, cfd, (void **) &super, NULL) == 0) {
4299 st->sb = super;
4300 st->container_dev = fd2devnum(cfd);
4301 close(cfd);
4302 return validate_geometry_imsm_volume(st, level, layout,
4303 raiddisks, chunk,
4304 size, dev,
4305 freesize, verbose);
4306 }
4307 }
4308
4309 if (verbose)
4310 fprintf(stderr, Name ": failed container membership check\n");
4311
4312 close(cfd);
4313 return 0;
4314 }
4315
4316 static void default_geometry_imsm(struct supertype *st, int *level, int *layout, int *chunk)
4317 {
4318 struct intel_super *super = st->sb;
4319
4320 if (level && *level == UnSet)
4321 *level = LEVEL_CONTAINER;
4322
4323 if (level && layout && *layout == UnSet)
4324 *layout = imsm_level_to_layout(*level);
4325
4326 if (chunk && (*chunk == UnSet || *chunk == 0) &&
4327 super && super->orom)
4328 *chunk = imsm_orom_default_chunk(super->orom);
4329 }
4330
4331 static void handle_missing(struct intel_super *super, struct imsm_dev *dev);
4332
4333 static int kill_subarray_imsm(struct supertype *st)
4334 {
4335 /* remove the subarray currently referenced by ->current_vol */
4336 __u8 i;
4337 struct intel_dev **dp;
4338 struct intel_super *super = st->sb;
4339 __u8 current_vol = super->current_vol;
4340 struct imsm_super *mpb = super->anchor;
4341
4342 if (super->current_vol < 0)
4343 return 2;
4344 super->current_vol = -1; /* invalidate subarray cursor */
4345
4346 /* block deletions that would change the uuid of active subarrays
4347 *
4348 * FIXME when immutable ids are available, but note that we'll
4349 * also need to fixup the invalidated/active subarray indexes in
4350 * mdstat
4351 */
4352 for (i = 0; i < mpb->num_raid_devs; i++) {
4353 char subarray[4];
4354
4355 if (i < current_vol)
4356 continue;
4357 sprintf(subarray, "%u", i);
4358 if (is_subarray_active(subarray, st->devname)) {
4359 fprintf(stderr,
4360 Name ": deleting subarray-%d would change the UUID of active subarray-%d, aborting\n",
4361 current_vol, i);
4362
4363 return 2;
4364 }
4365 }
4366
4367 if (st->update_tail) {
4368 struct imsm_update_kill_array *u = malloc(sizeof(*u));
4369
4370 if (!u)
4371 return 2;
4372 u->type = update_kill_array;
4373 u->dev_idx = current_vol;
4374 append_metadata_update(st, u, sizeof(*u));
4375
4376 return 0;
4377 }
4378
4379 for (dp = &super->devlist; *dp;)
4380 if ((*dp)->index == current_vol) {
4381 *dp = (*dp)->next;
4382 } else {
4383 handle_missing(super, (*dp)->dev);
4384 if ((*dp)->index > current_vol)
4385 (*dp)->index--;
4386 dp = &(*dp)->next;
4387 }
4388
4389 /* no more raid devices, all active components are now spares,
4390 * but of course failed are still failed
4391 */
4392 if (--mpb->num_raid_devs == 0) {
4393 struct dl *d;
4394
4395 for (d = super->disks; d; d = d->next)
4396 if (d->index > -2) {
4397 d->index = -1;
4398 d->disk.status = SPARE_DISK;
4399 }
4400 }
4401
4402 super->updates_pending++;
4403
4404 return 0;
4405 }
4406
4407 static int update_subarray_imsm(struct supertype *st, char *subarray,
4408 char *update, struct mddev_ident *ident)
4409 {
4410 /* update the subarray currently referenced by ->current_vol */
4411 struct intel_super *super = st->sb;
4412 struct imsm_super *mpb = super->anchor;
4413
4414 if (strcmp(update, "name") == 0) {
4415 char *name = ident->name;
4416 char *ep;
4417 int vol;
4418
4419 if (is_subarray_active(subarray, st->devname)) {
4420 fprintf(stderr,
4421 Name ": Unable to update name of active subarray\n");
4422 return 2;
4423 }
4424
4425 if (!check_name(super, name, 0))
4426 return 2;
4427
4428 vol = strtoul(subarray, &ep, 10);
4429 if (*ep != '\0' || vol >= super->anchor->num_raid_devs)
4430 return 2;
4431
4432 if (st->update_tail) {
4433 struct imsm_update_rename_array *u = malloc(sizeof(*u));
4434
4435 if (!u)
4436 return 2;
4437 u->type = update_rename_array;
4438 u->dev_idx = vol;
4439 snprintf((char *) u->name, MAX_RAID_SERIAL_LEN, "%s", name);
4440 append_metadata_update(st, u, sizeof(*u));
4441 } else {
4442 struct imsm_dev *dev;
4443 int i;
4444
4445 dev = get_imsm_dev(super, vol);
4446 snprintf((char *) dev->volume, MAX_RAID_SERIAL_LEN, "%s", name);
4447 for (i = 0; i < mpb->num_raid_devs; i++) {
4448 dev = get_imsm_dev(super, i);
4449 handle_missing(super, dev);
4450 }
4451 super->updates_pending++;
4452 }
4453 } else
4454 return 2;
4455
4456 return 0;
4457 }
4458 #endif /* MDASSEMBLE */
4459
4460 static int is_gen_migration(struct imsm_dev *dev)
4461 {
4462 if (!dev->vol.migr_state)
4463 return 0;
4464
4465 if (migr_type(dev) == MIGR_GEN_MIGR)
4466 return 1;
4467
4468 return 0;
4469 }
4470
4471 static int is_rebuilding(struct imsm_dev *dev)
4472 {
4473 struct imsm_map *migr_map;
4474
4475 if (!dev->vol.migr_state)
4476 return 0;
4477
4478 if (migr_type(dev) != MIGR_REBUILD)
4479 return 0;
4480
4481 migr_map = get_imsm_map(dev, 1);
4482
4483 if (migr_map->map_state == IMSM_T_STATE_DEGRADED)
4484 return 1;
4485 else
4486 return 0;
4487 }
4488
4489 static void update_recovery_start(struct imsm_dev *dev, struct mdinfo *array)
4490 {
4491 struct mdinfo *rebuild = NULL;
4492 struct mdinfo *d;
4493 __u32 units;
4494
4495 if (!is_rebuilding(dev))
4496 return;
4497
4498 /* Find the rebuild target, but punt on the dual rebuild case */
4499 for (d = array->devs; d; d = d->next)
4500 if (d->recovery_start == 0) {
4501 if (rebuild)
4502 return;
4503 rebuild = d;
4504 }
4505
4506 if (!rebuild) {
4507 /* (?) none of the disks are marked with
4508 * IMSM_ORD_REBUILD, so assume they are missing and the
4509 * disk_ord_tbl was not correctly updated
4510 */
4511 dprintf("%s: failed to locate out-of-sync disk\n", __func__);
4512 return;
4513 }
4514
4515 units = __le32_to_cpu(dev->vol.curr_migr_unit);
4516 rebuild->recovery_start = units * blocks_per_migr_unit(dev);
4517 }
4518
4519
4520 static struct mdinfo *container_content_imsm(struct supertype *st, char *subarray)
4521 {
4522 /* Given a container loaded by load_super_imsm_all,
4523 * extract information about all the arrays into
4524 * an mdinfo tree.
4525 * If 'subarray' is given, just extract info about that array.
4526 *
4527 * For each imsm_dev create an mdinfo, fill it in,
4528 * then look for matching devices in super->disks
4529 * and create appropriate device mdinfo.
4530 */
4531 struct intel_super *super = st->sb;
4532 struct imsm_super *mpb = super->anchor;
4533 struct mdinfo *rest = NULL;
4534 unsigned int i;
4535 int bbm_errors = 0;
4536
4537 /* check for bad blocks */
4538 if (imsm_bbm_log_size(super->anchor))
4539 bbm_errors = 1;
4540
4541 for (i = 0; i < mpb->num_raid_devs; i++) {
4542 struct imsm_dev *dev;
4543 struct imsm_map *map;
4544 struct mdinfo *this;
4545 int slot;
4546 char *ep;
4547
4548 if (subarray &&
4549 (i != strtoul(subarray, &ep, 10) || *ep != '\0'))
4550 continue;
4551
4552 dev = get_imsm_dev(super, i);
4553 map = get_imsm_map(dev, 0);
4554
4555 /* do not publish arrays that are in the middle of an
4556 * unsupported migration
4557 */
4558 if (dev->vol.migr_state &&
4559 (migr_type(dev) == MIGR_STATE_CHANGE)) {
4560 fprintf(stderr, Name ": cannot assemble volume '%.16s':"
4561 " unsupported migration in progress\n",
4562 dev->volume);
4563 continue;
4564 }
4565
4566 this = malloc(sizeof(*this));
4567 if (!this) {
4568 fprintf(stderr, Name ": failed to allocate %zu bytes\n",
4569 sizeof(*this));
4570 break;
4571 }
4572 memset(this, 0, sizeof(*this));
4573 this->next = rest;
4574
4575 super->current_vol = i;
4576 getinfo_super_imsm_volume(st, this, NULL);
4577 for (slot = 0 ; slot < map->num_members; slot++) {
4578 unsigned long long recovery_start;
4579 struct mdinfo *info_d;
4580 struct dl *d;
4581 int idx;
4582 int skip;
4583 __u32 ord;
4584
4585 skip = 0;
4586 idx = get_imsm_disk_idx(dev, slot, 0);
4587 ord = get_imsm_ord_tbl_ent(dev, slot, 0);
4588 for (d = super->disks; d ; d = d->next)
4589 if (d->index == idx)
4590 break;
4591
4592 recovery_start = MaxSector;
4593 if (d == NULL)
4594 skip = 1;
4595 if (d && is_failed(&d->disk))
4596 skip = 1;
4597 if (ord & IMSM_ORD_REBUILD)
4598 recovery_start = 0;
4599
4600 /*
4601 * if we skip some disks the array will be assmebled degraded;
4602 * reset resync start to avoid a dirty-degraded
4603 * situation when performing the intial sync
4604 *
4605 * FIXME handle dirty degraded
4606 */
4607 if ((skip || recovery_start == 0) && !dev->vol.dirty)
4608 this->resync_start = MaxSector;
4609 if (skip)
4610 continue;
4611
4612 info_d = calloc(1, sizeof(*info_d));
4613 if (!info_d) {
4614 fprintf(stderr, Name ": failed to allocate disk"
4615 " for volume %.16s\n", dev->volume);
4616 info_d = this->devs;
4617 while (info_d) {
4618 struct mdinfo *d = info_d->next;
4619
4620 free(info_d);
4621 info_d = d;
4622 }
4623 free(this);
4624 this = rest;
4625 break;
4626 }
4627 info_d->next = this->devs;
4628 this->devs = info_d;
4629
4630 info_d->disk.number = d->index;
4631 info_d->disk.major = d->major;
4632 info_d->disk.minor = d->minor;
4633 info_d->disk.raid_disk = slot;
4634 info_d->recovery_start = recovery_start;
4635
4636 if (info_d->recovery_start == MaxSector)
4637 this->array.working_disks++;
4638
4639 info_d->events = __le32_to_cpu(mpb->generation_num);
4640 info_d->data_offset = __le32_to_cpu(map->pba_of_lba0);
4641 info_d->component_size = __le32_to_cpu(map->blocks_per_member);
4642 }
4643 /* now that the disk list is up-to-date fixup recovery_start */
4644 update_recovery_start(dev, this);
4645 rest = this;
4646 }
4647
4648 /* if array has bad blocks, set suitable bit in array status */
4649 if (bbm_errors)
4650 rest->array.state |= (1<<MD_SB_BBM_ERRORS);
4651
4652 return rest;
4653 }
4654
4655
4656 static __u8 imsm_check_degraded(struct intel_super *super, struct imsm_dev *dev, int failed)
4657 {
4658 struct imsm_map *map = get_imsm_map(dev, 0);
4659
4660 if (!failed)
4661 return map->map_state == IMSM_T_STATE_UNINITIALIZED ?
4662 IMSM_T_STATE_UNINITIALIZED : IMSM_T_STATE_NORMAL;
4663
4664 switch (get_imsm_raid_level(map)) {
4665 case 0:
4666 return IMSM_T_STATE_FAILED;
4667 break;
4668 case 1:
4669 if (failed < map->num_members)
4670 return IMSM_T_STATE_DEGRADED;
4671 else
4672 return IMSM_T_STATE_FAILED;
4673 break;
4674 case 10:
4675 {
4676 /**
4677 * check to see if any mirrors have failed, otherwise we
4678 * are degraded. Even numbered slots are mirrored on
4679 * slot+1
4680 */
4681 int i;
4682 /* gcc -Os complains that this is unused */
4683 int insync = insync;
4684
4685 for (i = 0; i < map->num_members; i++) {
4686 __u32 ord = get_imsm_ord_tbl_ent(dev, i, -1);
4687 int idx = ord_to_idx(ord);
4688 struct imsm_disk *disk;
4689
4690 /* reset the potential in-sync count on even-numbered
4691 * slots. num_copies is always 2 for imsm raid10
4692 */
4693 if ((i & 1) == 0)
4694 insync = 2;
4695
4696 disk = get_imsm_disk(super, idx);
4697 if (!disk || is_failed(disk) || ord & IMSM_ORD_REBUILD)
4698 insync--;
4699
4700 /* no in-sync disks left in this mirror the
4701 * array has failed
4702 */
4703 if (insync == 0)
4704 return IMSM_T_STATE_FAILED;
4705 }
4706
4707 return IMSM_T_STATE_DEGRADED;
4708 }
4709 case 5:
4710 if (failed < 2)
4711 return IMSM_T_STATE_DEGRADED;
4712 else
4713 return IMSM_T_STATE_FAILED;
4714 break;
4715 default:
4716 break;
4717 }
4718
4719 return map->map_state;
4720 }
4721
4722 static int imsm_count_failed(struct intel_super *super, struct imsm_dev *dev)
4723 {
4724 int i;
4725 int failed = 0;
4726 struct imsm_disk *disk;
4727 struct imsm_map *map = get_imsm_map(dev, 0);
4728 struct imsm_map *prev = get_imsm_map(dev, dev->vol.migr_state);
4729 __u32 ord;
4730 int idx;
4731
4732 /* at the beginning of migration we set IMSM_ORD_REBUILD on
4733 * disks that are being rebuilt. New failures are recorded to
4734 * map[0]. So we look through all the disks we started with and
4735 * see if any failures are still present, or if any new ones
4736 * have arrived
4737 *
4738 * FIXME add support for online capacity expansion and
4739 * raid-level-migration
4740 */
4741 for (i = 0; i < prev->num_members; i++) {
4742 ord = __le32_to_cpu(prev->disk_ord_tbl[i]);
4743 ord |= __le32_to_cpu(map->disk_ord_tbl[i]);
4744 idx = ord_to_idx(ord);
4745
4746 disk = get_imsm_disk(super, idx);
4747 if (!disk || is_failed(disk) || ord & IMSM_ORD_REBUILD)
4748 failed++;
4749 }
4750
4751 return failed;
4752 }
4753
4754 #ifndef MDASSEMBLE
4755 static int imsm_open_new(struct supertype *c, struct active_array *a,
4756 char *inst)
4757 {
4758 struct intel_super *super = c->sb;
4759 struct imsm_super *mpb = super->anchor;
4760
4761 if (atoi(inst) >= mpb->num_raid_devs) {
4762 fprintf(stderr, "%s: subarry index %d, out of range\n",
4763 __func__, atoi(inst));
4764 return -ENODEV;
4765 }
4766
4767 dprintf("imsm: open_new %s\n", inst);
4768 a->info.container_member = atoi(inst);
4769 return 0;
4770 }
4771
4772 static int is_resyncing(struct imsm_dev *dev)
4773 {
4774 struct imsm_map *migr_map;
4775
4776 if (!dev->vol.migr_state)
4777 return 0;
4778
4779 if (migr_type(dev) == MIGR_INIT ||
4780 migr_type(dev) == MIGR_REPAIR)
4781 return 1;
4782
4783 if (migr_type(dev) == MIGR_GEN_MIGR)
4784 return 0;
4785
4786 migr_map = get_imsm_map(dev, 1);
4787
4788 if ((migr_map->map_state == IMSM_T_STATE_NORMAL) &&
4789 (dev->vol.migr_type != MIGR_GEN_MIGR))
4790 return 1;
4791 else
4792 return 0;
4793 }
4794
4795 /* return true if we recorded new information */
4796 static int mark_failure(struct imsm_dev *dev, struct imsm_disk *disk, int idx)
4797 {
4798 __u32 ord;
4799 int slot;
4800 struct imsm_map *map;
4801
4802 /* new failures are always set in map[0] */
4803 map = get_imsm_map(dev, 0);
4804
4805 slot = get_imsm_disk_slot(map, idx);
4806 if (slot < 0)
4807 return 0;
4808
4809 ord = __le32_to_cpu(map->disk_ord_tbl[slot]);
4810 if (is_failed(disk) && (ord & IMSM_ORD_REBUILD))
4811 return 0;
4812
4813 disk->status |= FAILED_DISK;
4814 disk->status &= ~CONFIGURED_DISK;
4815 set_imsm_ord_tbl_ent(map, slot, idx | IMSM_ORD_REBUILD);
4816 if (map->failed_disk_num == 0xff)
4817 map->failed_disk_num = slot;
4818 return 1;
4819 }
4820
4821 static void mark_missing(struct imsm_dev *dev, struct imsm_disk *disk, int idx)
4822 {
4823 mark_failure(dev, disk, idx);
4824
4825 if (disk->scsi_id == __cpu_to_le32(~(__u32)0))
4826 return;
4827
4828 disk->scsi_id = __cpu_to_le32(~(__u32)0);
4829 memmove(&disk->serial[0], &disk->serial[1], MAX_RAID_SERIAL_LEN - 1);
4830 }
4831
4832 static void handle_missing(struct intel_super *super, struct imsm_dev *dev)
4833 {
4834 __u8 map_state;
4835 struct dl *dl;
4836 int failed;
4837
4838 if (!super->missing)
4839 return;
4840 failed = imsm_count_failed(super, dev);
4841 map_state = imsm_check_degraded(super, dev, failed);
4842
4843 dprintf("imsm: mark missing\n");
4844 end_migration(dev, map_state);
4845 for (dl = super->missing; dl; dl = dl->next)
4846 mark_missing(dev, &dl->disk, dl->index);
4847 super->updates_pending++;
4848 }
4849
4850 static void imsm_set_disk(struct active_array *a, int n, int state);
4851
4852 /* Handle dirty -> clean transititions, resync and reshape. Degraded and rebuild
4853 * states are handled in imsm_set_disk() with one exception, when a
4854 * resync is stopped due to a new failure this routine will set the
4855 * 'degraded' state for the array.
4856 */
4857 static int imsm_set_array_state(struct active_array *a, int consistent)
4858 {
4859 int inst = a->info.container_member;
4860 struct intel_super *super = a->container->sb;
4861 struct imsm_dev *dev = get_imsm_dev(super, inst);
4862 struct imsm_map *map = get_imsm_map(dev, 0);
4863 int failed = imsm_count_failed(super, dev);
4864 __u8 map_state = imsm_check_degraded(super, dev, failed);
4865 __u32 blocks_per_unit;
4866
4867 if (dev->vol.migr_state &&
4868 dev->vol.migr_type == MIGR_GEN_MIGR) {
4869 /* array state change is blocked due to reshape action
4870 * We might need to
4871 * - abort the reshape (if last_checkpoint is 0 and action!= reshape)
4872 * - finish the reshape (if last_checkpoint is big and action != reshape)
4873 * - update curr_migr_unit
4874 */
4875 if (a->curr_action == reshape) {
4876 /* still reshaping, maybe update curr_migr_unit */
4877 long long blocks_per_unit = blocks_per_migr_unit(dev);
4878 long long unit = a->last_checkpoint;
4879 if (blocks_per_unit) {
4880 unit /= blocks_per_unit;
4881 if (unit >
4882 __le32_to_cpu(dev->vol.curr_migr_unit)) {
4883 dev->vol.curr_migr_unit =
4884 __cpu_to_le32(unit);
4885 super->updates_pending++;
4886 }
4887 }
4888 return 0;
4889 } else {
4890 if (a->last_checkpoint == 0 && a->prev_action == reshape) {
4891 /* for some reason we aborted the reshape.
4892 * Better clean up
4893 */
4894 struct imsm_map *map2 = get_imsm_map(dev, 1);
4895 dev->vol.migr_state = 0;
4896 dev->vol.migr_type = 0;
4897 dev->vol.curr_migr_unit = 0;
4898 memcpy(map, map2, sizeof_imsm_map(map2));
4899 super->updates_pending++;
4900 }
4901 if (a->last_checkpoint >= a->info.component_size) {
4902 unsigned long long array_blocks;
4903 int used_disks;
4904 /* it seems the reshape is all done */
4905 dev->vol.migr_state = 0;
4906 dev->vol.migr_type = 0;
4907 dev->vol.curr_migr_unit = 0;
4908
4909 used_disks = imsm_num_data_members(dev, -1);
4910 array_blocks = map->blocks_per_member * used_disks;
4911 /* round array size down to closest MB */
4912 array_blocks = (array_blocks >> SECT_PER_MB_SHIFT)
4913 << SECT_PER_MB_SHIFT;
4914 dev->size_low = __cpu_to_le32((__u32) array_blocks);
4915 dev->size_high = __cpu_to_le32((__u32) (array_blocks >> 32));
4916 a->info.custom_array_size = array_blocks;
4917 a->check_reshape = 1; /* encourage manager to update
4918 * array size
4919 */
4920 super->updates_pending++;
4921 }
4922 }
4923 }
4924
4925 /* before we activate this array handle any missing disks */
4926 if (consistent == 2)
4927 handle_missing(super, dev);
4928
4929 if (consistent == 2 &&
4930 (!is_resync_complete(&a->info) ||
4931 map_state != IMSM_T_STATE_NORMAL ||
4932 dev->vol.migr_state))
4933 consistent = 0;
4934
4935 if (is_resync_complete(&a->info)) {
4936 /* complete intialization / resync,
4937 * recovery and interrupted recovery is completed in
4938 * ->set_disk
4939 */
4940 if (is_resyncing(dev)) {
4941 dprintf("imsm: mark resync done\n");
4942 end_migration(dev, map_state);
4943 super->updates_pending++;
4944 a->last_checkpoint = 0;
4945 }
4946 } else if (!is_resyncing(dev) && !failed) {
4947 /* mark the start of the init process if nothing is failed */
4948 dprintf("imsm: mark resync start\n");
4949 if (map->map_state == IMSM_T_STATE_UNINITIALIZED)
4950 migrate(dev, IMSM_T_STATE_NORMAL, MIGR_INIT);
4951 else
4952 migrate(dev, IMSM_T_STATE_NORMAL, MIGR_REPAIR);
4953 super->updates_pending++;
4954 }
4955
4956 /* check if we can update curr_migr_unit from resync_start, recovery_start */
4957 blocks_per_unit = blocks_per_migr_unit(dev);
4958 if (blocks_per_unit) {
4959 __u32 units32;
4960 __u64 units;
4961
4962 units = a->last_checkpoint / blocks_per_unit;
4963 units32 = units;
4964
4965 /* check that we did not overflow 32-bits, and that
4966 * curr_migr_unit needs updating
4967 */
4968 if (units32 == units &&
4969 __le32_to_cpu(dev->vol.curr_migr_unit) != units32) {
4970 dprintf("imsm: mark checkpoint (%u)\n", units32);
4971 dev->vol.curr_migr_unit = __cpu_to_le32(units32);
4972 super->updates_pending++;
4973 }
4974 }
4975
4976 /* mark dirty / clean */
4977 if (dev->vol.dirty != !consistent) {
4978 dprintf("imsm: mark '%s'\n", consistent ? "clean" : "dirty");
4979 if (consistent)
4980 dev->vol.dirty = 0;
4981 else
4982 dev->vol.dirty = 1;
4983 super->updates_pending++;
4984 }
4985
4986 /* finalize online capacity expansion/reshape */
4987 if ((a->curr_action != reshape) &&
4988 (a->prev_action == reshape)) {
4989 struct mdinfo *mdi;
4990
4991 for (mdi = a->info.devs; mdi; mdi = mdi->next)
4992 imsm_set_disk(a, mdi->disk.raid_disk, mdi->curr_state);
4993 }
4994
4995 return consistent;
4996 }
4997
4998 static void imsm_set_disk(struct active_array *a, int n, int state)
4999 {
5000 int inst = a->info.container_member;
5001 struct intel_super *super = a->container->sb;
5002 struct imsm_dev *dev = get_imsm_dev(super, inst);
5003 struct imsm_map *map = get_imsm_map(dev, 0);
5004 struct imsm_disk *disk;
5005 int failed;
5006 __u32 ord;
5007 __u8 map_state;
5008
5009 if (n > map->num_members)
5010 fprintf(stderr, "imsm: set_disk %d out of range 0..%d\n",
5011 n, map->num_members - 1);
5012
5013 if (n < 0)
5014 return;
5015
5016 dprintf("imsm: set_disk %d:%x\n", n, state);
5017
5018 ord = get_imsm_ord_tbl_ent(dev, n, -1);
5019 disk = get_imsm_disk(super, ord_to_idx(ord));
5020
5021 /* check for new failures */
5022 if (state & DS_FAULTY) {
5023 if (mark_failure(dev, disk, ord_to_idx(ord)))
5024 super->updates_pending++;
5025 }
5026
5027 /* check if in_sync */
5028 if (state & DS_INSYNC && ord & IMSM_ORD_REBUILD && is_rebuilding(dev)) {
5029 struct imsm_map *migr_map = get_imsm_map(dev, 1);
5030
5031 set_imsm_ord_tbl_ent(migr_map, n, ord_to_idx(ord));
5032 super->updates_pending++;
5033 }
5034
5035 failed = imsm_count_failed(super, dev);
5036 map_state = imsm_check_degraded(super, dev, failed);
5037
5038 /* check if recovery complete, newly degraded, or failed */
5039 if (map_state == IMSM_T_STATE_NORMAL && is_rebuilding(dev)) {
5040 end_migration(dev, map_state);
5041 map = get_imsm_map(dev, 0);
5042 map->failed_disk_num = ~0;
5043 super->updates_pending++;
5044 a->last_checkpoint = 0;
5045 } else if (map_state == IMSM_T_STATE_DEGRADED &&
5046 map->map_state != map_state &&
5047 !dev->vol.migr_state) {
5048 dprintf("imsm: mark degraded\n");
5049 map->map_state = map_state;
5050 super->updates_pending++;
5051 a->last_checkpoint = 0;
5052 } else if (map_state == IMSM_T_STATE_FAILED &&
5053 map->map_state != map_state) {
5054 dprintf("imsm: mark failed\n");
5055 end_migration(dev, map_state);
5056 super->updates_pending++;
5057 a->last_checkpoint = 0;
5058 } else if (is_gen_migration(dev)) {
5059 dprintf("imsm: Detected General Migration in state: ");
5060 if (map_state == IMSM_T_STATE_NORMAL) {
5061 end_migration(dev, map_state);
5062 map = get_imsm_map(dev, 0);
5063 map->failed_disk_num = ~0;
5064 dprintf("normal\n");
5065 } else {
5066 if (map_state == IMSM_T_STATE_DEGRADED) {
5067 printf("degraded\n");
5068 end_migration(dev, map_state);
5069 } else {
5070 dprintf("failed\n");
5071 }
5072 map->map_state = map_state;
5073 }
5074 super->updates_pending++;
5075 }
5076 }
5077
5078 static int store_imsm_mpb(int fd, struct imsm_super *mpb)
5079 {
5080 void *buf = mpb;
5081 __u32 mpb_size = __le32_to_cpu(mpb->mpb_size);
5082 unsigned long long dsize;
5083 unsigned long long sectors;
5084
5085 get_dev_size(fd, NULL, &dsize);
5086
5087 if (mpb_size > 512) {
5088 /* -1 to account for anchor */
5089 sectors = mpb_sectors(mpb) - 1;
5090
5091 /* write the extended mpb to the sectors preceeding the anchor */
5092 if (lseek64(fd, dsize - (512 * (2 + sectors)), SEEK_SET) < 0)
5093 return 1;
5094
5095 if ((unsigned long long)write(fd, buf + 512, 512 * sectors)
5096 != 512 * sectors)
5097 return 1;
5098 }
5099
5100 /* first block is stored on second to last sector of the disk */
5101 if (lseek64(fd, dsize - (512 * 2), SEEK_SET) < 0)
5102 return 1;
5103
5104 if (write(fd, buf, 512) != 512)
5105 return 1;
5106
5107 return 0;
5108 }
5109
5110 static void imsm_sync_metadata(struct supertype *container)
5111 {
5112 struct intel_super *super = container->sb;
5113
5114 dprintf("sync metadata: %d\n", super->updates_pending);
5115 if (!super->updates_pending)
5116 return;
5117
5118 write_super_imsm(container, 0);
5119
5120 super->updates_pending = 0;
5121 }
5122
5123 static struct dl *imsm_readd(struct intel_super *super, int idx, struct active_array *a)
5124 {
5125 struct imsm_dev *dev = get_imsm_dev(super, a->info.container_member);
5126 int i = get_imsm_disk_idx(dev, idx, -1);
5127 struct dl *dl;
5128
5129 for (dl = super->disks; dl; dl = dl->next)
5130 if (dl->index == i)
5131 break;
5132
5133 if (dl && is_failed(&dl->disk))
5134 dl = NULL;
5135
5136 if (dl)
5137 dprintf("%s: found %x:%x\n", __func__, dl->major, dl->minor);
5138
5139 return dl;
5140 }
5141
5142 static struct dl *imsm_add_spare(struct intel_super *super, int slot,
5143 struct active_array *a, int activate_new,
5144 struct mdinfo *additional_test_list)
5145 {
5146 struct imsm_dev *dev = get_imsm_dev(super, a->info.container_member);
5147 int idx = get_imsm_disk_idx(dev, slot, -1);
5148 struct imsm_super *mpb = super->anchor;
5149 struct imsm_map *map;
5150 unsigned long long pos;
5151 struct mdinfo *d;
5152 struct extent *ex;
5153 int i, j;
5154 int found;
5155 __u32 array_start = 0;
5156 __u32 array_end = 0;
5157 struct dl *dl;
5158 struct mdinfo *test_list;
5159
5160 for (dl = super->disks; dl; dl = dl->next) {
5161 /* If in this array, skip */
5162 for (d = a->info.devs ; d ; d = d->next)
5163 if (d->state_fd >= 0 &&
5164 d->disk.major == dl->major &&
5165 d->disk.minor == dl->minor) {
5166 dprintf("%x:%x already in array\n",
5167 dl->major, dl->minor);
5168 break;
5169 }
5170 if (d)
5171 continue;
5172 test_list = additional_test_list;
5173 while (test_list) {
5174 if (test_list->disk.major == dl->major &&
5175 test_list->disk.minor == dl->minor) {
5176 dprintf("%x:%x already in additional test list\n",
5177 dl->major, dl->minor);
5178 break;
5179 }
5180 test_list = test_list->next;
5181 }
5182 if (test_list)
5183 continue;
5184
5185 /* skip in use or failed drives */
5186 if (is_failed(&dl->disk) || idx == dl->index ||
5187 dl->index == -2) {
5188 dprintf("%x:%x status (failed: %d index: %d)\n",
5189 dl->major, dl->minor, is_failed(&dl->disk), idx);
5190 continue;
5191 }
5192
5193 /* skip pure spares when we are looking for partially
5194 * assimilated drives
5195 */
5196 if (dl->index == -1 && !activate_new)
5197 continue;
5198
5199 /* Does this unused device have the requisite free space?
5200 * It needs to be able to cover all member volumes
5201 */
5202 ex = get_extents(super, dl);
5203 if (!ex) {
5204 dprintf("cannot get extents\n");
5205 continue;
5206 }
5207 for (i = 0; i < mpb->num_raid_devs; i++) {
5208 dev = get_imsm_dev(super, i);
5209 map = get_imsm_map(dev, 0);
5210
5211 /* check if this disk is already a member of
5212 * this array
5213 */
5214 if (get_imsm_disk_slot(map, dl->index) >= 0)
5215 continue;
5216
5217 found = 0;
5218 j = 0;
5219 pos = 0;
5220 array_start = __le32_to_cpu(map->pba_of_lba0);
5221 array_end = array_start +
5222 __le32_to_cpu(map->blocks_per_member) - 1;
5223
5224 do {
5225 /* check that we can start at pba_of_lba0 with
5226 * blocks_per_member of space
5227 */
5228 if (array_start >= pos && array_end < ex[j].start) {
5229 found = 1;
5230 break;
5231 }
5232 pos = ex[j].start + ex[j].size;
5233 j++;
5234 } while (ex[j-1].size);
5235
5236 if (!found)
5237 break;
5238 }
5239
5240 free(ex);
5241 if (i < mpb->num_raid_devs) {
5242 dprintf("%x:%x does not have %u to %u available\n",
5243 dl->major, dl->minor, array_start, array_end);
5244 /* No room */
5245 continue;
5246 }
5247 return dl;
5248 }
5249
5250 return dl;
5251 }
5252
5253
5254 static int imsm_rebuild_allowed(struct supertype *cont, int dev_idx, int failed)
5255 {
5256 struct imsm_dev *dev2;
5257 struct imsm_map *map;
5258 struct dl *idisk;
5259 int slot;
5260 int idx;
5261 __u8 state;
5262
5263 dev2 = get_imsm_dev(cont->sb, dev_idx);
5264 if (dev2) {
5265 state = imsm_check_degraded(cont->sb, dev2, failed);
5266 if (state == IMSM_T_STATE_FAILED) {
5267 map = get_imsm_map(dev2, 0);
5268 if (!map)
5269 return 1;
5270 for (slot = 0; slot < map->num_members; slot++) {
5271 /*
5272 * Check if failed disks are deleted from intel
5273 * disk list or are marked to be deleted
5274 */
5275 idx = get_imsm_disk_idx(dev2, slot, -1);
5276 idisk = get_imsm_dl_disk(cont->sb, idx);
5277 /*
5278 * Do not rebuild the array if failed disks
5279 * from failed sub-array are not removed from
5280 * container.
5281 */
5282 if (idisk &&
5283 is_failed(&idisk->disk) &&
5284 (idisk->action != DISK_REMOVE))
5285 return 0;
5286 }
5287 }
5288 }
5289 return 1;
5290 }
5291
5292 static struct mdinfo *imsm_activate_spare(struct active_array *a,
5293 struct metadata_update **updates)
5294 {
5295 /**
5296 * Find a device with unused free space and use it to replace a
5297 * failed/vacant region in an array. We replace failed regions one a
5298 * array at a time. The result is that a new spare disk will be added
5299 * to the first failed array and after the monitor has finished
5300 * propagating failures the remainder will be consumed.
5301 *
5302 * FIXME add a capability for mdmon to request spares from another
5303 * container.
5304 */
5305
5306 struct intel_super *super = a->container->sb;
5307 int inst = a->info.container_member;
5308 struct imsm_dev *dev = get_imsm_dev(super, inst);
5309 struct imsm_map *map = get_imsm_map(dev, 0);
5310 int failed = a->info.array.raid_disks;
5311 struct mdinfo *rv = NULL;
5312 struct mdinfo *d;
5313 struct mdinfo *di;
5314 struct metadata_update *mu;
5315 struct dl *dl;
5316 struct imsm_update_activate_spare *u;
5317 int num_spares = 0;
5318 int i;
5319 int allowed;
5320
5321 for (d = a->info.devs ; d ; d = d->next) {
5322 if ((d->curr_state & DS_FAULTY) &&
5323 d->state_fd >= 0)
5324 /* wait for Removal to happen */
5325 return NULL;
5326 if (d->state_fd >= 0)
5327 failed--;
5328 }
5329
5330 dprintf("imsm: activate spare: inst=%d failed=%d (%d) level=%d\n",
5331 inst, failed, a->info.array.raid_disks, a->info.array.level);
5332
5333 if (dev->vol.migr_state &&
5334 dev->vol.migr_type == MIGR_GEN_MIGR)
5335 /* No repair during migration */
5336 return NULL;
5337
5338 if (imsm_check_degraded(super, dev, failed) != IMSM_T_STATE_DEGRADED)
5339 return NULL;
5340
5341 /*
5342 * If there are any failed disks check state of the other volume.
5343 * Block rebuild if the another one is failed until failed disks
5344 * are removed from container.
5345 */
5346 if (failed) {
5347 dprintf("found failed disks in %s, check if there another"
5348 "failed sub-array.\n",
5349 dev->volume);
5350 /* check if states of the other volumes allow for rebuild */
5351 for (i = 0; i < super->anchor->num_raid_devs; i++) {
5352 if (i != inst) {
5353 allowed = imsm_rebuild_allowed(a->container,
5354 i, failed);
5355 if (!allowed)
5356 return NULL;
5357 }
5358 }
5359 }
5360
5361 /* For each slot, if it is not working, find a spare */
5362 for (i = 0; i < a->info.array.raid_disks; i++) {
5363 for (d = a->info.devs ; d ; d = d->next)
5364 if (d->disk.raid_disk == i)
5365 break;
5366 dprintf("found %d: %p %x\n", i, d, d?d->curr_state:0);
5367 if (d && (d->state_fd >= 0))
5368 continue;
5369
5370 /*
5371 * OK, this device needs recovery. Try to re-add the
5372 * previous occupant of this slot, if this fails see if
5373 * we can continue the assimilation of a spare that was
5374 * partially assimilated, finally try to activate a new
5375 * spare.
5376 */
5377 dl = imsm_readd(super, i, a);
5378 if (!dl)
5379 dl = imsm_add_spare(super, i, a, 0, NULL);
5380 if (!dl)
5381 dl = imsm_add_spare(super, i, a, 1, NULL);
5382 if (!dl)
5383 continue;
5384
5385 /* found a usable disk with enough space */
5386 di = malloc(sizeof(*di));
5387 if (!di)
5388 continue;
5389 memset(di, 0, sizeof(*di));
5390
5391 /* dl->index will be -1 in the case we are activating a
5392 * pristine spare. imsm_process_update() will create a
5393 * new index in this case. Once a disk is found to be
5394 * failed in all member arrays it is kicked from the
5395 * metadata
5396 */
5397 di->disk.number = dl->index;
5398
5399 /* (ab)use di->devs to store a pointer to the device
5400 * we chose
5401 */
5402 di->devs = (struct mdinfo *) dl;
5403
5404 di->disk.raid_disk = i;
5405 di->disk.major = dl->major;
5406 di->disk.minor = dl->minor;
5407 di->disk.state = 0;
5408 di->recovery_start = 0;
5409 di->data_offset = __le32_to_cpu(map->pba_of_lba0);
5410 di->component_size = a->info.component_size;
5411 di->container_member = inst;
5412 super->random = random32();
5413 di->next = rv;
5414 rv = di;
5415 num_spares++;
5416 dprintf("%x:%x to be %d at %llu\n", dl->major, dl->minor,
5417 i, di->data_offset);
5418
5419 break;
5420 }
5421
5422 if (!rv)
5423 /* No spares found */
5424 return rv;
5425 /* Now 'rv' has a list of devices to return.
5426 * Create a metadata_update record to update the
5427 * disk_ord_tbl for the array
5428 */
5429 mu = malloc(sizeof(*mu));
5430 if (mu) {
5431 mu->buf = malloc(sizeof(struct imsm_update_activate_spare) * num_spares);
5432 if (mu->buf == NULL) {
5433 free(mu);
5434 mu = NULL;
5435 }
5436 }
5437 if (!mu) {
5438 while (rv) {
5439 struct mdinfo *n = rv->next;
5440
5441 free(rv);
5442 rv = n;
5443 }
5444 return NULL;
5445 }
5446
5447 mu->space = NULL;
5448 mu->space_list = NULL;
5449 mu->len = sizeof(struct imsm_update_activate_spare) * num_spares;
5450 mu->next = *updates;
5451 u = (struct imsm_update_activate_spare *) mu->buf;
5452
5453 for (di = rv ; di ; di = di->next) {
5454 u->type = update_activate_spare;
5455 u->dl = (struct dl *) di->devs;
5456 di->devs = NULL;
5457 u->slot = di->disk.raid_disk;
5458 u->array = inst;
5459 u->next = u + 1;
5460 u++;
5461 }
5462 (u-1)->next = NULL;
5463 *updates = mu;
5464
5465 return rv;
5466 }
5467
5468 static int disks_overlap(struct intel_super *super, int idx, struct imsm_update_create_array *u)
5469 {
5470 struct imsm_dev *dev = get_imsm_dev(super, idx);
5471 struct imsm_map *map = get_imsm_map(dev, 0);
5472 struct imsm_map *new_map = get_imsm_map(&u->dev, 0);
5473 struct disk_info *inf = get_disk_info(u);
5474 struct imsm_disk *disk;
5475 int i;
5476 int j;
5477
5478 for (i = 0; i < map->num_members; i++) {
5479 disk = get_imsm_disk(super, get_imsm_disk_idx(dev, i, -1));
5480 for (j = 0; j < new_map->num_members; j++)
5481 if (serialcmp(disk->serial, inf[j].serial) == 0)
5482 return 1;
5483 }
5484
5485 return 0;
5486 }
5487
5488
5489 static struct dl *get_disk_super(struct intel_super *super, int major, int minor)
5490 {
5491 struct dl *dl = NULL;
5492 for (dl = super->disks; dl; dl = dl->next)
5493 if ((dl->major == major) && (dl->minor == minor))
5494 return dl;
5495 return NULL;
5496 }
5497
5498 static int remove_disk_super(struct intel_super *super, int major, int minor)
5499 {
5500 struct dl *prev = NULL;
5501 struct dl *dl;
5502
5503 prev = NULL;
5504 for (dl = super->disks; dl; dl = dl->next) {
5505 if ((dl->major == major) && (dl->minor == minor)) {
5506 /* remove */
5507 if (prev)
5508 prev->next = dl->next;
5509 else
5510 super->disks = dl->next;
5511 dl->next = NULL;
5512 __free_imsm_disk(dl);
5513 dprintf("%s: removed %x:%x\n",
5514 __func__, major, minor);
5515 break;
5516 }
5517 prev = dl;
5518 }
5519 return 0;
5520 }
5521
5522 static void imsm_delete(struct intel_super *super, struct dl **dlp, unsigned index);
5523
5524 static int add_remove_disk_update(struct intel_super *super)
5525 {
5526 int check_degraded = 0;
5527 struct dl *disk = NULL;
5528 /* add/remove some spares to/from the metadata/contrainer */
5529 while (super->disk_mgmt_list) {
5530 struct dl *disk_cfg;
5531
5532 disk_cfg = super->disk_mgmt_list;
5533 super->disk_mgmt_list = disk_cfg->next;
5534 disk_cfg->next = NULL;
5535
5536 if (disk_cfg->action == DISK_ADD) {
5537 disk_cfg->next = super->disks;
5538 super->disks = disk_cfg;
5539 check_degraded = 1;
5540 dprintf("%s: added %x:%x\n",
5541 __func__, disk_cfg->major,
5542 disk_cfg->minor);
5543 } else if (disk_cfg->action == DISK_REMOVE) {
5544 dprintf("Disk remove action processed: %x.%x\n",
5545 disk_cfg->major, disk_cfg->minor);
5546 disk = get_disk_super(super,
5547 disk_cfg->major,
5548 disk_cfg->minor);
5549 if (disk) {
5550 /* store action status */
5551 disk->action = DISK_REMOVE;
5552 /* remove spare disks only */
5553 if (disk->index == -1) {
5554 remove_disk_super(super,
5555 disk_cfg->major,
5556 disk_cfg->minor);
5557 }
5558 }
5559 /* release allocate disk structure */
5560 __free_imsm_disk(disk_cfg);
5561 }
5562 }
5563 return check_degraded;
5564 }
5565
5566 static void imsm_process_update(struct supertype *st,
5567 struct metadata_update *update)
5568 {
5569 /**
5570 * crack open the metadata_update envelope to find the update record
5571 * update can be one of:
5572 * update_reshape_container_disks - all the arrays in the container
5573 * are being reshaped to have more devices. We need to mark
5574 * the arrays for general migration and convert selected spares
5575 * into active devices.
5576 * update_activate_spare - a spare device has replaced a failed
5577 * device in an array, update the disk_ord_tbl. If this disk is
5578 * present in all member arrays then also clear the SPARE_DISK
5579 * flag
5580 * update_create_array
5581 * update_kill_array
5582 * update_rename_array
5583 * update_add_remove_disk
5584 */
5585 struct intel_super *super = st->sb;
5586 struct imsm_super *mpb;
5587 enum imsm_update_type type = *(enum imsm_update_type *) update->buf;
5588
5589 /* update requires a larger buf but the allocation failed */
5590 if (super->next_len && !super->next_buf) {
5591 super->next_len = 0;
5592 return;
5593 }
5594
5595 if (super->next_buf) {
5596 memcpy(super->next_buf, super->buf, super->len);
5597 free(super->buf);
5598 super->len = super->next_len;
5599 super->buf = super->next_buf;
5600
5601 super->next_len = 0;
5602 super->next_buf = NULL;
5603 }
5604
5605 mpb = super->anchor;
5606
5607 switch (type) {
5608 case update_reshape_container_disks: {
5609 struct imsm_update_reshape *u = (void *)update->buf;
5610 struct dl *new_disk;
5611 struct intel_dev *id;
5612 int i;
5613 int delta_disks = u->new_raid_disks - u->old_raid_disks;
5614 void **tofree = NULL;
5615 int devices_to_reshape = 1;
5616
5617 dprintf("imsm: imsm_process_update() for update_reshape\n");
5618
5619 /* enable spares to use in array */
5620 for (i = 0; i < delta_disks; i++) {
5621 new_disk = get_disk_super(super,
5622 major(u->new_disks[i]),
5623 minor(u->new_disks[i]));
5624 dprintf("imsm: imsm_process_update(): new disk "\
5625 "for reshape is: %i:%i (%p, index = %i)\n",
5626 major(u->new_disks[i]), minor(u->new_disks[i]),
5627 new_disk, new_disk->index);
5628 if ((new_disk == NULL) ||
5629 ((new_disk->index >= 0) &&
5630 (new_disk->index < u->old_raid_disks)))
5631 goto update_reshape_exit;
5632
5633 new_disk->index = mpb->num_disks++;
5634 /* slot to fill in autolayout */
5635 new_disk->raiddisk = new_disk->index;
5636 new_disk->disk.status |=
5637 CONFIGURED_DISK;
5638 new_disk->disk.status &= ~SPARE_DISK;
5639 }
5640
5641 dprintf("imsm: process_update(): update_reshape: volume set"
5642 " mpb->num_raid_devs = %i\n", mpb->num_raid_devs);
5643 /* manage changes in volume
5644 */
5645 for (id = super->devlist ; id; id = id->next) {
5646 void **sp = update->space_list;
5647 struct imsm_dev *newdev;
5648 struct imsm_map *newmap, *oldmap;
5649
5650 if (!sp)
5651 continue;
5652 update->space_list = *sp;
5653 newdev = (void*)sp;
5654 /* Copy the dev, but not (all of) the map */
5655 memcpy(newdev, id->dev, sizeof(*newdev));
5656 oldmap = get_imsm_map(id->dev, 0);
5657 newmap = get_imsm_map(newdev, 0);
5658 /* Copy the current map */
5659 memcpy(newmap, oldmap, sizeof_imsm_map(oldmap));
5660 /* update one device only
5661 */
5662 if (devices_to_reshape) {
5663 dprintf("process_update(): modifying "\
5664 "subdev: %i\n", id->index);
5665 devices_to_reshape--;
5666 newdev->vol.migr_state = 1;
5667 newdev->vol.curr_migr_unit = 0;
5668 newdev->vol.migr_type = MIGR_GEN_MIGR;
5669 newmap->num_members = u->new_raid_disks;
5670 for (i = 0; i < delta_disks; i++) {
5671 set_imsm_ord_tbl_ent(newmap,
5672 u->old_raid_disks + i,
5673 u->old_raid_disks + i);
5674 }
5675 /* New map is correct, now need to save old map
5676 */
5677 newmap = get_imsm_map(newdev, 1);
5678 memcpy(newmap, oldmap, sizeof_imsm_map(oldmap));
5679 }
5680
5681 sp = (void **)id->dev;
5682 id->dev = newdev;
5683 *sp = tofree;
5684 tofree = sp;
5685 }
5686
5687 update->space_list = tofree;
5688 super->updates_pending++;
5689 update_reshape_exit:
5690 break;
5691 }
5692 case update_activate_spare: {
5693 struct imsm_update_activate_spare *u = (void *) update->buf;
5694 struct imsm_dev *dev = get_imsm_dev(super, u->array);
5695 struct imsm_map *map = get_imsm_map(dev, 0);
5696 struct imsm_map *migr_map;
5697 struct active_array *a;
5698 struct imsm_disk *disk;
5699 __u8 to_state;
5700 struct dl *dl;
5701 unsigned int found;
5702 int failed;
5703 int victim = get_imsm_disk_idx(dev, u->slot, -1);
5704 int i;
5705
5706 for (dl = super->disks; dl; dl = dl->next)
5707 if (dl == u->dl)
5708 break;
5709
5710 if (!dl) {
5711 fprintf(stderr, "error: imsm_activate_spare passed "
5712 "an unknown disk (index: %d)\n",
5713 u->dl->index);
5714 return;
5715 }
5716
5717 super->updates_pending++;
5718
5719 /* count failures (excluding rebuilds and the victim)
5720 * to determine map[0] state
5721 */
5722 failed = 0;
5723 for (i = 0; i < map->num_members; i++) {
5724 if (i == u->slot)
5725 continue;
5726 disk = get_imsm_disk(super,
5727 get_imsm_disk_idx(dev, i, -1));
5728 if (!disk || is_failed(disk))
5729 failed++;
5730 }
5731
5732 /* adding a pristine spare, assign a new index */
5733 if (dl->index < 0) {
5734 dl->index = super->anchor->num_disks;
5735 super->anchor->num_disks++;
5736 }
5737 disk = &dl->disk;
5738 disk->status |= CONFIGURED_DISK;
5739 disk->status &= ~SPARE_DISK;
5740
5741 /* mark rebuild */
5742 to_state = imsm_check_degraded(super, dev, failed);
5743 map->map_state = IMSM_T_STATE_DEGRADED;
5744 migrate(dev, to_state, MIGR_REBUILD);
5745 migr_map = get_imsm_map(dev, 1);
5746 set_imsm_ord_tbl_ent(map, u->slot, dl->index);
5747 set_imsm_ord_tbl_ent(migr_map, u->slot, dl->index | IMSM_ORD_REBUILD);
5748
5749 /* update the family_num to mark a new container
5750 * generation, being careful to record the existing
5751 * family_num in orig_family_num to clean up after
5752 * earlier mdadm versions that neglected to set it.
5753 */
5754 if (mpb->orig_family_num == 0)
5755 mpb->orig_family_num = mpb->family_num;
5756 mpb->family_num += super->random;
5757
5758 /* count arrays using the victim in the metadata */
5759 found = 0;
5760 for (a = st->arrays; a ; a = a->next) {
5761 dev = get_imsm_dev(super, a->info.container_member);
5762 map = get_imsm_map(dev, 0);
5763
5764 if (get_imsm_disk_slot(map, victim) >= 0)
5765 found++;
5766 }
5767
5768 /* delete the victim if it is no longer being
5769 * utilized anywhere
5770 */
5771 if (!found) {
5772 struct dl **dlp;
5773
5774 /* We know that 'manager' isn't touching anything,
5775 * so it is safe to delete
5776 */
5777 for (dlp = &super->disks; *dlp; dlp = &(*dlp)->next)
5778 if ((*dlp)->index == victim)
5779 break;
5780
5781 /* victim may be on the missing list */
5782 if (!*dlp)
5783 for (dlp = &super->missing; *dlp; dlp = &(*dlp)->next)
5784 if ((*dlp)->index == victim)
5785 break;
5786 imsm_delete(super, dlp, victim);
5787 }
5788 break;
5789 }
5790 case update_create_array: {
5791 /* someone wants to create a new array, we need to be aware of
5792 * a few races/collisions:
5793 * 1/ 'Create' called by two separate instances of mdadm
5794 * 2/ 'Create' versus 'activate_spare': mdadm has chosen
5795 * devices that have since been assimilated via
5796 * activate_spare.
5797 * In the event this update can not be carried out mdadm will
5798 * (FIX ME) notice that its update did not take hold.
5799 */
5800 struct imsm_update_create_array *u = (void *) update->buf;
5801 struct intel_dev *dv;
5802 struct imsm_dev *dev;
5803 struct imsm_map *map, *new_map;
5804 unsigned long long start, end;
5805 unsigned long long new_start, new_end;
5806 int i;
5807 struct disk_info *inf;
5808 struct dl *dl;
5809
5810 /* handle racing creates: first come first serve */
5811 if (u->dev_idx < mpb->num_raid_devs) {
5812 dprintf("%s: subarray %d already defined\n",
5813 __func__, u->dev_idx);
5814 goto create_error;
5815 }
5816
5817 /* check update is next in sequence */
5818 if (u->dev_idx != mpb->num_raid_devs) {
5819 dprintf("%s: can not create array %d expected index %d\n",
5820 __func__, u->dev_idx, mpb->num_raid_devs);
5821 goto create_error;
5822 }
5823
5824 new_map = get_imsm_map(&u->dev, 0);
5825 new_start = __le32_to_cpu(new_map->pba_of_lba0);
5826 new_end = new_start + __le32_to_cpu(new_map->blocks_per_member);
5827 inf = get_disk_info(u);
5828
5829 /* handle activate_spare versus create race:
5830 * check to make sure that overlapping arrays do not include
5831 * overalpping disks
5832 */
5833 for (i = 0; i < mpb->num_raid_devs; i++) {
5834 dev = get_imsm_dev(super, i);
5835 map = get_imsm_map(dev, 0);
5836 start = __le32_to_cpu(map->pba_of_lba0);
5837 end = start + __le32_to_cpu(map->blocks_per_member);
5838 if ((new_start >= start && new_start <= end) ||
5839 (start >= new_start && start <= new_end))
5840 /* overlap */;
5841 else
5842 continue;
5843
5844 if (disks_overlap(super, i, u)) {
5845 dprintf("%s: arrays overlap\n", __func__);
5846 goto create_error;
5847 }
5848 }
5849
5850 /* check that prepare update was successful */
5851 if (!update->space) {
5852 dprintf("%s: prepare update failed\n", __func__);
5853 goto create_error;
5854 }
5855
5856 /* check that all disks are still active before committing
5857 * changes. FIXME: could we instead handle this by creating a
5858 * degraded array? That's probably not what the user expects,
5859 * so better to drop this update on the floor.
5860 */
5861 for (i = 0; i < new_map->num_members; i++) {
5862 dl = serial_to_dl(inf[i].serial, super);
5863 if (!dl) {
5864 dprintf("%s: disk disappeared\n", __func__);
5865 goto create_error;
5866 }
5867 }
5868
5869 super->updates_pending++;
5870
5871 /* convert spares to members and fixup ord_tbl */
5872 for (i = 0; i < new_map->num_members; i++) {
5873 dl = serial_to_dl(inf[i].serial, super);
5874 if (dl->index == -1) {
5875 dl->index = mpb->num_disks;
5876 mpb->num_disks++;
5877 dl->disk.status |= CONFIGURED_DISK;
5878 dl->disk.status &= ~SPARE_DISK;
5879 }
5880 set_imsm_ord_tbl_ent(new_map, i, dl->index);
5881 }
5882
5883 dv = update->space;
5884 dev = dv->dev;
5885 update->space = NULL;
5886 imsm_copy_dev(dev, &u->dev);
5887 dv->index = u->dev_idx;
5888 dv->next = super->devlist;
5889 super->devlist = dv;
5890 mpb->num_raid_devs++;
5891
5892 imsm_update_version_info(super);
5893 break;
5894 create_error:
5895 /* mdmon knows how to release update->space, but not
5896 * ((struct intel_dev *) update->space)->dev
5897 */
5898 if (update->space) {
5899 dv = update->space;
5900 free(dv->dev);
5901 }
5902 break;
5903 }
5904 case update_kill_array: {
5905 struct imsm_update_kill_array *u = (void *) update->buf;
5906 int victim = u->dev_idx;
5907 struct active_array *a;
5908 struct intel_dev **dp;
5909 struct imsm_dev *dev;
5910
5911 /* sanity check that we are not affecting the uuid of
5912 * active arrays, or deleting an active array
5913 *
5914 * FIXME when immutable ids are available, but note that
5915 * we'll also need to fixup the invalidated/active
5916 * subarray indexes in mdstat
5917 */
5918 for (a = st->arrays; a; a = a->next)
5919 if (a->info.container_member >= victim)
5920 break;
5921 /* by definition if mdmon is running at least one array
5922 * is active in the container, so checking
5923 * mpb->num_raid_devs is just extra paranoia
5924 */
5925 dev = get_imsm_dev(super, victim);
5926 if (a || !dev || mpb->num_raid_devs == 1) {
5927 dprintf("failed to delete subarray-%d\n", victim);
5928 break;
5929 }
5930
5931 for (dp = &super->devlist; *dp;)
5932 if ((*dp)->index == (unsigned)super->current_vol) {
5933 *dp = (*dp)->next;
5934 } else {
5935 if ((*dp)->index > (unsigned)victim)
5936 (*dp)->index--;
5937 dp = &(*dp)->next;
5938 }
5939 mpb->num_raid_devs--;
5940 super->updates_pending++;
5941 break;
5942 }
5943 case update_rename_array: {
5944 struct imsm_update_rename_array *u = (void *) update->buf;
5945 char name[MAX_RAID_SERIAL_LEN+1];
5946 int target = u->dev_idx;
5947 struct active_array *a;
5948 struct imsm_dev *dev;
5949
5950 /* sanity check that we are not affecting the uuid of
5951 * an active array
5952 */
5953 snprintf(name, MAX_RAID_SERIAL_LEN, "%s", (char *) u->name);
5954 name[MAX_RAID_SERIAL_LEN] = '\0';
5955 for (a = st->arrays; a; a = a->next)
5956 if (a->info.container_member == target)
5957 break;
5958 dev = get_imsm_dev(super, u->dev_idx);
5959 if (a || !dev || !check_name(super, name, 1)) {
5960 dprintf("failed to rename subarray-%d\n", target);
5961 break;
5962 }
5963
5964 snprintf((char *) dev->volume, MAX_RAID_SERIAL_LEN, "%s", name);
5965 super->updates_pending++;
5966 break;
5967 }
5968 case update_add_remove_disk: {
5969 /* we may be able to repair some arrays if disks are
5970 * being added, check teh status of add_remove_disk
5971 * if discs has been added.
5972 */
5973 if (add_remove_disk_update(super)) {
5974 struct active_array *a;
5975
5976 super->updates_pending++;
5977 for (a = st->arrays; a; a = a->next)
5978 a->check_degraded = 1;
5979 }
5980 break;
5981 }
5982 default:
5983 fprintf(stderr, "error: unsuported process update type:"
5984 "(type: %d)\n", type);
5985 }
5986 }
5987
5988 static void imsm_prepare_update(struct supertype *st,
5989 struct metadata_update *update)
5990 {
5991 /**
5992 * Allocate space to hold new disk entries, raid-device entries or a new
5993 * mpb if necessary. The manager synchronously waits for updates to
5994 * complete in the monitor, so new mpb buffers allocated here can be
5995 * integrated by the monitor thread without worrying about live pointers
5996 * in the manager thread.
5997 */
5998 enum imsm_update_type type = *(enum imsm_update_type *) update->buf;
5999 struct intel_super *super = st->sb;
6000 struct imsm_super *mpb = super->anchor;
6001 size_t buf_len;
6002 size_t len = 0;
6003
6004 switch (type) {
6005 case update_reshape_container_disks: {
6006 /* Every raid device in the container is about to
6007 * gain some more devices, and we will enter a
6008 * reconfiguration.
6009 * So each 'imsm_map' will be bigger, and the imsm_vol
6010 * will now hold 2 of them.
6011 * Thus we need new 'struct imsm_dev' allocations sized
6012 * as sizeof_imsm_dev but with more devices in both maps.
6013 */
6014 struct imsm_update_reshape *u = (void *)update->buf;
6015 struct intel_dev *dl;
6016 void **space_tail = (void**)&update->space_list;
6017
6018 dprintf("imsm: imsm_prepare_update() for update_reshape\n");
6019
6020 for (dl = super->devlist; dl; dl = dl->next) {
6021 int size = sizeof_imsm_dev(dl->dev, 1);
6022 void *s;
6023 if (u->new_raid_disks > u->old_raid_disks)
6024 size += sizeof(__u32)*2*
6025 (u->new_raid_disks - u->old_raid_disks);
6026 s = malloc(size);
6027 if (!s)
6028 break;
6029 *space_tail = s;
6030 space_tail = s;
6031 *space_tail = NULL;
6032 }
6033
6034 len = disks_to_mpb_size(u->new_raid_disks);
6035 dprintf("New anchor length is %llu\n", (unsigned long long)len);
6036 break;
6037 }
6038 case update_create_array: {
6039 struct imsm_update_create_array *u = (void *) update->buf;
6040 struct intel_dev *dv;
6041 struct imsm_dev *dev = &u->dev;
6042 struct imsm_map *map = get_imsm_map(dev, 0);
6043 struct dl *dl;
6044 struct disk_info *inf;
6045 int i;
6046 int activate = 0;
6047
6048 inf = get_disk_info(u);
6049 len = sizeof_imsm_dev(dev, 1);
6050 /* allocate a new super->devlist entry */
6051 dv = malloc(sizeof(*dv));
6052 if (dv) {
6053 dv->dev = malloc(len);
6054 if (dv->dev)
6055 update->space = dv;
6056 else {
6057 free(dv);
6058 update->space = NULL;
6059 }
6060 }
6061
6062 /* count how many spares will be converted to members */
6063 for (i = 0; i < map->num_members; i++) {
6064 dl = serial_to_dl(inf[i].serial, super);
6065 if (!dl) {
6066 /* hmm maybe it failed?, nothing we can do about
6067 * it here
6068 */
6069 continue;
6070 }
6071 if (count_memberships(dl, super) == 0)
6072 activate++;
6073 }
6074 len += activate * sizeof(struct imsm_disk);
6075 break;
6076 default:
6077 break;
6078 }
6079 }
6080
6081 /* check if we need a larger metadata buffer */
6082 if (super->next_buf)
6083 buf_len = super->next_len;
6084 else
6085 buf_len = super->len;
6086
6087 if (__le32_to_cpu(mpb->mpb_size) + len > buf_len) {
6088 /* ok we need a larger buf than what is currently allocated
6089 * if this allocation fails process_update will notice that
6090 * ->next_len is set and ->next_buf is NULL
6091 */
6092 buf_len = ROUND_UP(__le32_to_cpu(mpb->mpb_size) + len, 512);
6093 if (super->next_buf)
6094 free(super->next_buf);
6095
6096 super->next_len = buf_len;
6097 if (posix_memalign(&super->next_buf, 512, buf_len) == 0)
6098 memset(super->next_buf, 0, buf_len);
6099 else
6100 super->next_buf = NULL;
6101 }
6102 }
6103
6104 /* must be called while manager is quiesced */
6105 static void imsm_delete(struct intel_super *super, struct dl **dlp, unsigned index)
6106 {
6107 struct imsm_super *mpb = super->anchor;
6108 struct dl *iter;
6109 struct imsm_dev *dev;
6110 struct imsm_map *map;
6111 int i, j, num_members;
6112 __u32 ord;
6113
6114 dprintf("%s: deleting device[%d] from imsm_super\n",
6115 __func__, index);
6116
6117 /* shift all indexes down one */
6118 for (iter = super->disks; iter; iter = iter->next)
6119 if (iter->index > (int)index)
6120 iter->index--;
6121 for (iter = super->missing; iter; iter = iter->next)
6122 if (iter->index > (int)index)
6123 iter->index--;
6124
6125 for (i = 0; i < mpb->num_raid_devs; i++) {
6126 dev = get_imsm_dev(super, i);
6127 map = get_imsm_map(dev, 0);
6128 num_members = map->num_members;
6129 for (j = 0; j < num_members; j++) {
6130 /* update ord entries being careful not to propagate
6131 * ord-flags to the first map
6132 */
6133 ord = get_imsm_ord_tbl_ent(dev, j, -1);
6134
6135 if (ord_to_idx(ord) <= index)
6136 continue;
6137
6138 map = get_imsm_map(dev, 0);
6139 set_imsm_ord_tbl_ent(map, j, ord_to_idx(ord - 1));
6140 map = get_imsm_map(dev, 1);
6141 if (map)
6142 set_imsm_ord_tbl_ent(map, j, ord - 1);
6143 }
6144 }
6145
6146 mpb->num_disks--;
6147 super->updates_pending++;
6148 if (*dlp) {
6149 struct dl *dl = *dlp;
6150
6151 *dlp = (*dlp)->next;
6152 __free_imsm_disk(dl);
6153 }
6154 }
6155 #endif /* MDASSEMBLE */
6156
6157 static char disk_by_path[] = "/dev/disk/by-path/";
6158
6159 static const char *imsm_get_disk_controller_domain(const char *path)
6160 {
6161 struct sys_dev *list, *hba = NULL;
6162 char disk_path[PATH_MAX];
6163 int ahci = 0;
6164 char *dpath = NULL;
6165
6166 list = find_driver_devices("pci", "ahci");
6167 for (hba = list; hba; hba = hba->next)
6168 if (devpath_to_vendor(hba->path) == 0x8086)
6169 break;
6170
6171 if (hba) {
6172 struct stat st;
6173
6174 strncpy(disk_path, disk_by_path, PATH_MAX - 1);
6175 strncat(disk_path, path, PATH_MAX - strlen(disk_path) - 1);
6176 if (stat(disk_path, &st) == 0) {
6177 dpath = devt_to_devpath(st.st_rdev);
6178 if (dpath)
6179 ahci = path_attached_to_hba(dpath, hba->path);
6180 }
6181 }
6182 dprintf("path: %s(%s) hba: %s attached: %d\n",
6183 path, dpath, (hba) ? hba->path : "NULL", ahci);
6184 free_sys_dev(&list);
6185 if (ahci)
6186 return "ahci";
6187 else
6188 return NULL;
6189 }
6190
6191 static int imsm_find_array_minor_by_subdev(int subdev, int container, int *minor)
6192 {
6193 char subdev_name[20];
6194 struct mdstat_ent *mdstat;
6195
6196 sprintf(subdev_name, "%d", subdev);
6197 mdstat = mdstat_by_subdev(subdev_name, container);
6198 if (!mdstat)
6199 return -1;
6200
6201 *minor = mdstat->devnum;
6202 free_mdstat(mdstat);
6203 return 0;
6204 }
6205
6206 static int imsm_reshape_is_allowed_on_container(struct supertype *st,
6207 struct geo_params *geo,
6208 int *old_raid_disks)
6209 {
6210 int ret_val = 0;
6211 struct mdinfo *info, *member;
6212 int devices_that_can_grow = 0;
6213
6214 dprintf("imsm: imsm_reshape_is_allowed_on_container(ENTER): "
6215 "st->devnum = (%i)\n",
6216 st->devnum);
6217
6218 if (geo->size != -1 ||
6219 geo->level != UnSet ||
6220 geo->layout != UnSet ||
6221 geo->chunksize != 0 ||
6222 geo->raid_disks == UnSet) {
6223 dprintf("imsm: Container operation is allowed for "
6224 "raid disks number change only.\n");
6225 return ret_val;
6226 }
6227
6228 info = container_content_imsm(st, NULL);
6229 for (member = info; member; member = member->next) {
6230 int result;
6231 int minor;
6232
6233 dprintf("imsm: checking device_num: %i\n",
6234 member->container_member);
6235
6236 if (geo->raid_disks < member->array.raid_disks) {
6237 /* we work on container for Online Capacity Expansion
6238 * only so raid_disks has to grow
6239 */
6240 dprintf("imsm: for container operation raid disks "
6241 "increase is required\n");
6242 break;
6243 }
6244
6245 if ((info->array.level != 0) &&
6246 (info->array.level != 5)) {
6247 /* we cannot use this container with other raid level
6248 */
6249 dprintf("imsm: for container operation wrong"
6250 " raid level (%i) detected\n",
6251 info->array.level);
6252 break;
6253 } else {
6254 /* check for platform support
6255 * for this raid level configuration
6256 */
6257 struct intel_super *super = st->sb;
6258 if (!is_raid_level_supported(super->orom,
6259 member->array.level,
6260 geo->raid_disks)) {
6261 dprintf("platform does not support raid%d with"
6262 " %d disk%s\n",
6263 info->array.level,
6264 geo->raid_disks,
6265 geo->raid_disks > 1 ? "s" : "");
6266 break;
6267 }
6268 }
6269
6270 if (*old_raid_disks &&
6271 info->array.raid_disks != *old_raid_disks)
6272 break;
6273 *old_raid_disks = info->array.raid_disks;
6274
6275 /* All raid5 and raid0 volumes in container
6276 * have to be ready for Online Capacity Expansion
6277 * so they need to be assembled. We have already
6278 * checked that no recovery etc is happening.
6279 */
6280 result = imsm_find_array_minor_by_subdev(member->container_member,
6281 st->container_dev,
6282 &minor);
6283 if (result < 0) {
6284 dprintf("imsm: cannot find array\n");
6285 break;
6286 }
6287 devices_that_can_grow++;
6288 }
6289 sysfs_free(info);
6290 if (!member && devices_that_can_grow)
6291 ret_val = 1;
6292
6293 if (ret_val)
6294 dprintf("\tContainer operation allowed\n");
6295 else
6296 dprintf("\tError: %i\n", ret_val);
6297
6298 return ret_val;
6299 }
6300
6301 /* Function: get_spares_for_grow
6302 * Description: Allocates memory and creates list of spare devices
6303 * avaliable in container. Checks if spare drive size is acceptable.
6304 * Parameters: Pointer to the supertype structure
6305 * Returns: Pointer to the list of spare devices (mdinfo structure) on success,
6306 * NULL if fail
6307 */
6308 static struct mdinfo *get_spares_for_grow(struct supertype *st)
6309 {
6310 unsigned long long min_size = min_acceptable_spare_size_imsm(st);
6311 return container_choose_spares(st, min_size, NULL, NULL, NULL, 0);
6312 }
6313
6314 /******************************************************************************
6315 * function: imsm_create_metadata_update_for_reshape
6316 * Function creates update for whole IMSM container.
6317 *
6318 ******************************************************************************/
6319 static int imsm_create_metadata_update_for_reshape(
6320 struct supertype *st,
6321 struct geo_params *geo,
6322 int old_raid_disks,
6323 struct imsm_update_reshape **updatep)
6324 {
6325 struct intel_super *super = st->sb;
6326 struct imsm_super *mpb = super->anchor;
6327 int update_memory_size = 0;
6328 struct imsm_update_reshape *u = NULL;
6329 struct mdinfo *spares = NULL;
6330 int i;
6331 int delta_disks = 0;
6332
6333 dprintf("imsm_update_metadata_for_reshape(enter) raid_disks = %i\n",
6334 geo->raid_disks);
6335
6336 delta_disks = geo->raid_disks - old_raid_disks;
6337
6338 /* size of all update data without anchor */
6339 update_memory_size = sizeof(struct imsm_update_reshape);
6340
6341 /* now add space for spare disks that we need to add. */
6342 update_memory_size += sizeof(u->new_disks[0]) * (delta_disks - 1);
6343
6344 u = calloc(1, update_memory_size);
6345 if (u == NULL) {
6346 dprintf("error: "
6347 "cannot get memory for imsm_update_reshape update\n");
6348 return 0;
6349 }
6350 u->type = update_reshape_container_disks;
6351 u->old_raid_disks = old_raid_disks;
6352 u->new_raid_disks = geo->raid_disks;
6353
6354 /* now get spare disks list
6355 */
6356 spares = get_spares_for_grow(st);
6357
6358 if (spares == NULL
6359 || delta_disks > spares->array.spare_disks) {
6360 dprintf("imsm: ERROR: Cannot get spare devices.\n");
6361 goto abort;
6362 }
6363
6364 /* we have got spares
6365 * update disk list in imsm_disk list table in anchor
6366 */
6367 dprintf("imsm: %i spares are available.\n\n",
6368 spares->array.spare_disks);
6369
6370 for (i = 0; i < delta_disks; i++) {
6371 struct mdinfo *dev = spares->devs;
6372 struct dl *dl;
6373
6374 u->new_disks[i] = makedev(dev->disk.major,
6375 dev->disk.minor);
6376 dl = get_disk_super(super, dev->disk.major, dev->disk.minor);
6377 dl->index = mpb->num_disks++;
6378 }
6379 /* Now update the metadata so that container_content will find
6380 * the new devices
6381 */
6382 for (i = 0; i < mpb->num_raid_devs; i++) {
6383 int d;
6384 struct imsm_dev *dev = get_imsm_dev(super, i);
6385 struct imsm_map *map = get_imsm_map(dev, 0);
6386 map->num_members = geo->raid_disks;
6387 for (d = 0; d < delta_disks; d++) {
6388 set_imsm_ord_tbl_ent(map, old_raid_disks + d,
6389 mpb->num_disks - delta_disks + d);
6390 }
6391 }
6392
6393 abort:
6394 /* free spares
6395 */
6396 sysfs_free(spares);
6397
6398 dprintf("imsm: reshape update preparation :");
6399 if (i == delta_disks) {
6400 dprintf(" OK\n");
6401 *updatep = u;
6402 return update_memory_size;
6403 }
6404 free(u);
6405 dprintf(" Error\n");
6406
6407 return 0;
6408 }
6409
6410
6411 static int imsm_reshape_super(struct supertype *st, long long size, int level,
6412 int layout, int chunksize, int raid_disks,
6413 char *backup, char *dev, int verbose)
6414 {
6415 /* currently we only support increasing the number of devices
6416 * for a container. This increases the number of device for each
6417 * member array. They must all be RAID0 or RAID5.
6418 */
6419
6420 int ret_val = 1;
6421 struct geo_params geo;
6422
6423 dprintf("imsm: reshape_super called.\n");
6424
6425 memset(&geo, sizeof(struct geo_params), 0);
6426
6427 geo.dev_name = dev;
6428 geo.size = size;
6429 geo.level = level;
6430 geo.layout = layout;
6431 geo.chunksize = chunksize;
6432 geo.raid_disks = raid_disks;
6433
6434 dprintf("\tfor level : %i\n", geo.level);
6435 dprintf("\tfor raid_disks : %i\n", geo.raid_disks);
6436
6437 if (experimental() == 0)
6438 return ret_val;
6439
6440 /* verify reshape conditions
6441 * on container level we can only increase number of devices. */
6442 if (st->container_dev == st->devnum) {
6443 /* check for delta_disks > 0
6444 *and supported raid levels 0 and 5 only in container */
6445 int old_raid_disks = 0;
6446 if (imsm_reshape_is_allowed_on_container(
6447 st, &geo, &old_raid_disks)) {
6448 struct imsm_update_reshape *u = NULL;
6449 int len;
6450
6451 len = imsm_create_metadata_update_for_reshape(
6452 st, &geo, old_raid_disks, &u);
6453
6454 if (len) {
6455 ret_val = 0;
6456 append_metadata_update(st, u, len);
6457 } else
6458 fprintf(stderr, Name "imsm: Cannot prepare "
6459 "update\n");
6460 } else
6461 fprintf(stderr, Name "imsm: Operation is not allowed "
6462 "on this container\n");
6463 } else
6464 fprintf(stderr, Name "imsm: not a container operation\n");
6465
6466 dprintf("imsm: reshape_super Exit code = %i\n", ret_val);
6467 return ret_val;
6468 }
6469
6470 struct superswitch super_imsm = {
6471 #ifndef MDASSEMBLE
6472 .examine_super = examine_super_imsm,
6473 .brief_examine_super = brief_examine_super_imsm,
6474 .brief_examine_subarrays = brief_examine_subarrays_imsm,
6475 .export_examine_super = export_examine_super_imsm,
6476 .detail_super = detail_super_imsm,
6477 .brief_detail_super = brief_detail_super_imsm,
6478 .write_init_super = write_init_super_imsm,
6479 .validate_geometry = validate_geometry_imsm,
6480 .add_to_super = add_to_super_imsm,
6481 .remove_from_super = remove_from_super_imsm,
6482 .detail_platform = detail_platform_imsm,
6483 .kill_subarray = kill_subarray_imsm,
6484 .update_subarray = update_subarray_imsm,
6485 .load_container = load_container_imsm,
6486 #endif
6487 .match_home = match_home_imsm,
6488 .uuid_from_super= uuid_from_super_imsm,
6489 .getinfo_super = getinfo_super_imsm,
6490 .getinfo_super_disks = getinfo_super_disks_imsm,
6491 .update_super = update_super_imsm,
6492
6493 .avail_size = avail_size_imsm,
6494 .min_acceptable_spare_size = min_acceptable_spare_size_imsm,
6495
6496 .compare_super = compare_super_imsm,
6497
6498 .load_super = load_super_imsm,
6499 .init_super = init_super_imsm,
6500 .store_super = store_super_imsm,
6501 .free_super = free_super_imsm,
6502 .match_metadata_desc = match_metadata_desc_imsm,
6503 .container_content = container_content_imsm,
6504 .default_geometry = default_geometry_imsm,
6505 .get_disk_controller_domain = imsm_get_disk_controller_domain,
6506 .reshape_super = imsm_reshape_super,
6507
6508 .external = 1,
6509 .name = "imsm",
6510
6511 #ifndef MDASSEMBLE
6512 /* for mdmon */
6513 .open_new = imsm_open_new,
6514 .set_array_state= imsm_set_array_state,
6515 .set_disk = imsm_set_disk,
6516 .sync_metadata = imsm_sync_metadata,
6517 .activate_spare = imsm_activate_spare,
6518 .process_update = imsm_process_update,
6519 .prepare_update = imsm_prepare_update,
6520 #endif /* MDASSEMBLE */
6521 };