]> git.ipfire.org Git - thirdparty/mdadm.git/blob - super-intel.c
imsm: fix: thunderdome may drop 2tb attribute
[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 /* supports RAID0 */
45 #define MPB_ATTRIB_RAID0 __cpu_to_le32(0x00000001)
46 /* supports RAID1 */
47 #define MPB_ATTRIB_RAID1 __cpu_to_le32(0x00000002)
48 /* supports RAID10 */
49 #define MPB_ATTRIB_RAID10 __cpu_to_le32(0x00000004)
50 /* supports RAID1E */
51 #define MPB_ATTRIB_RAID1E __cpu_to_le32(0x00000008)
52 /* supports RAID5 */
53 #define MPB_ATTRIB_RAID5 __cpu_to_le32(0x00000010)
54 /* supports RAID CNG */
55 #define MPB_ATTRIB_RAIDCNG __cpu_to_le32(0x00000020)
56 /* supports expanded stripe sizes of 256K, 512K and 1MB */
57 #define MPB_ATTRIB_EXP_STRIPE_SIZE __cpu_to_le32(0x00000040)
58
59 /* The OROM Support RST Caching of Volumes */
60 #define MPB_ATTRIB_NVM __cpu_to_le32(0x02000000)
61 /* The OROM supports creating disks greater than 2TB */
62 #define MPB_ATTRIB_2TB_DISK __cpu_to_le32(0x04000000)
63 /* The OROM supports Bad Block Management */
64 #define MPB_ATTRIB_BBM __cpu_to_le32(0x08000000)
65
66 /* THe OROM Supports NVM Caching of Volumes */
67 #define MPB_ATTRIB_NEVER_USE2 __cpu_to_le32(0x10000000)
68 /* The OROM supports creating volumes greater than 2TB */
69 #define MPB_ATTRIB_2TB __cpu_to_le32(0x20000000)
70 /* originally for PMP, now it's wasted b/c. Never use this bit! */
71 #define MPB_ATTRIB_NEVER_USE __cpu_to_le32(0x40000000)
72 /* Verify MPB contents against checksum after reading MPB */
73 #define MPB_ATTRIB_CHECKSUM_VERIFY __cpu_to_le32(0x80000000)
74
75 /* Define all supported attributes that have to be accepted by mdadm
76 */
77 #define MPB_ATTRIB_SUPPORTED (MPB_ATTRIB_CHECKSUM_VERIFY | \
78 MPB_ATTRIB_2TB | \
79 MPB_ATTRIB_2TB_DISK | \
80 MPB_ATTRIB_RAID0 | \
81 MPB_ATTRIB_RAID1 | \
82 MPB_ATTRIB_RAID10 | \
83 MPB_ATTRIB_RAID5 | \
84 MPB_ATTRIB_EXP_STRIPE_SIZE)
85
86 /* Define attributes that are unused but not harmful */
87 #define MPB_ATTRIB_IGNORED (MPB_ATTRIB_NEVER_USE)
88
89 #define MPB_SECTOR_CNT 2210
90 #define IMSM_RESERVED_SECTORS 4096
91 #define NUM_BLOCKS_DIRTY_STRIPE_REGION 2056
92 #define SECT_PER_MB_SHIFT 11
93
94 /* Disk configuration info. */
95 #define IMSM_MAX_DEVICES 255
96 struct imsm_disk {
97 __u8 serial[MAX_RAID_SERIAL_LEN];/* 0xD8 - 0xE7 ascii serial number */
98 __u32 total_blocks_lo; /* 0xE8 - 0xEB total blocks lo */
99 __u32 scsi_id; /* 0xEC - 0xEF scsi ID */
100 #define SPARE_DISK __cpu_to_le32(0x01) /* Spare */
101 #define CONFIGURED_DISK __cpu_to_le32(0x02) /* Member of some RaidDev */
102 #define FAILED_DISK __cpu_to_le32(0x04) /* Permanent failure */
103 __u32 status; /* 0xF0 - 0xF3 */
104 __u32 owner_cfg_num; /* which config 0,1,2... owns this disk */
105 __u32 total_blocks_hi; /* 0xF4 - 0xF5 total blocks hi */
106 #define IMSM_DISK_FILLERS 3
107 __u32 filler[IMSM_DISK_FILLERS]; /* 0xF5 - 0x107 MPB_DISK_FILLERS for future expansion */
108 };
109
110 /* map selector for map managment
111 */
112 #define MAP_0 0
113 #define MAP_1 1
114 #define MAP_X -1
115
116 /* RAID map configuration infos. */
117 struct imsm_map {
118 __u32 pba_of_lba0_lo; /* start address of partition */
119 __u32 blocks_per_member_lo;/* blocks per member */
120 __u32 num_data_stripes_lo; /* number of data stripes */
121 __u16 blocks_per_strip;
122 __u8 map_state; /* Normal, Uninitialized, Degraded, Failed */
123 #define IMSM_T_STATE_NORMAL 0
124 #define IMSM_T_STATE_UNINITIALIZED 1
125 #define IMSM_T_STATE_DEGRADED 2
126 #define IMSM_T_STATE_FAILED 3
127 __u8 raid_level;
128 #define IMSM_T_RAID0 0
129 #define IMSM_T_RAID1 1
130 #define IMSM_T_RAID5 5 /* since metadata version 1.2.02 ? */
131 __u8 num_members; /* number of member disks */
132 __u8 num_domains; /* number of parity domains */
133 __u8 failed_disk_num; /* valid only when state is degraded */
134 __u8 ddf;
135 __u32 pba_of_lba0_hi;
136 __u32 blocks_per_member_hi;
137 __u32 num_data_stripes_hi;
138 __u32 filler[4]; /* expansion area */
139 #define IMSM_ORD_REBUILD (1 << 24)
140 __u32 disk_ord_tbl[1]; /* disk_ord_tbl[num_members],
141 * top byte contains some flags
142 */
143 } __attribute__ ((packed));
144
145 struct imsm_vol {
146 __u32 curr_migr_unit;
147 __u32 checkpoint_id; /* id to access curr_migr_unit */
148 __u8 migr_state; /* Normal or Migrating */
149 #define MIGR_INIT 0
150 #define MIGR_REBUILD 1
151 #define MIGR_VERIFY 2 /* analagous to echo check > sync_action */
152 #define MIGR_GEN_MIGR 3
153 #define MIGR_STATE_CHANGE 4
154 #define MIGR_REPAIR 5
155 __u8 migr_type; /* Initializing, Rebuilding, ... */
156 __u8 dirty;
157 __u8 fs_state; /* fast-sync state for CnG (0xff == disabled) */
158 __u16 verify_errors; /* number of mismatches */
159 __u16 bad_blocks; /* number of bad blocks during verify */
160 __u32 filler[4];
161 struct imsm_map map[1];
162 /* here comes another one if migr_state */
163 } __attribute__ ((packed));
164
165 struct imsm_dev {
166 __u8 volume[MAX_RAID_SERIAL_LEN];
167 __u32 size_low;
168 __u32 size_high;
169 #define DEV_BOOTABLE __cpu_to_le32(0x01)
170 #define DEV_BOOT_DEVICE __cpu_to_le32(0x02)
171 #define DEV_READ_COALESCING __cpu_to_le32(0x04)
172 #define DEV_WRITE_COALESCING __cpu_to_le32(0x08)
173 #define DEV_LAST_SHUTDOWN_DIRTY __cpu_to_le32(0x10)
174 #define DEV_HIDDEN_AT_BOOT __cpu_to_le32(0x20)
175 #define DEV_CURRENTLY_HIDDEN __cpu_to_le32(0x40)
176 #define DEV_VERIFY_AND_FIX __cpu_to_le32(0x80)
177 #define DEV_MAP_STATE_UNINIT __cpu_to_le32(0x100)
178 #define DEV_NO_AUTO_RECOVERY __cpu_to_le32(0x200)
179 #define DEV_CLONE_N_GO __cpu_to_le32(0x400)
180 #define DEV_CLONE_MAN_SYNC __cpu_to_le32(0x800)
181 #define DEV_CNG_MASTER_DISK_NUM __cpu_to_le32(0x1000)
182 __u32 status; /* Persistent RaidDev status */
183 __u32 reserved_blocks; /* Reserved blocks at beginning of volume */
184 __u8 migr_priority;
185 __u8 num_sub_vols;
186 __u8 tid;
187 __u8 cng_master_disk;
188 __u16 cache_policy;
189 __u8 cng_state;
190 __u8 cng_sub_state;
191 #define IMSM_DEV_FILLERS 10
192 __u32 filler[IMSM_DEV_FILLERS];
193 struct imsm_vol vol;
194 } __attribute__ ((packed));
195
196 struct imsm_super {
197 __u8 sig[MAX_SIGNATURE_LENGTH]; /* 0x00 - 0x1F */
198 __u32 check_sum; /* 0x20 - 0x23 MPB Checksum */
199 __u32 mpb_size; /* 0x24 - 0x27 Size of MPB */
200 __u32 family_num; /* 0x28 - 0x2B Checksum from first time this config was written */
201 __u32 generation_num; /* 0x2C - 0x2F Incremented each time this array's MPB is written */
202 __u32 error_log_size; /* 0x30 - 0x33 in bytes */
203 __u32 attributes; /* 0x34 - 0x37 */
204 __u8 num_disks; /* 0x38 Number of configured disks */
205 __u8 num_raid_devs; /* 0x39 Number of configured volumes */
206 __u8 error_log_pos; /* 0x3A */
207 __u8 fill[1]; /* 0x3B */
208 __u32 cache_size; /* 0x3c - 0x40 in mb */
209 __u32 orig_family_num; /* 0x40 - 0x43 original family num */
210 __u32 pwr_cycle_count; /* 0x44 - 0x47 simulated power cycle count for array */
211 __u32 bbm_log_size; /* 0x48 - 0x4B - size of bad Block Mgmt Log in bytes */
212 #define IMSM_FILLERS 35
213 __u32 filler[IMSM_FILLERS]; /* 0x4C - 0xD7 RAID_MPB_FILLERS */
214 struct imsm_disk disk[1]; /* 0xD8 diskTbl[numDisks] */
215 /* here comes imsm_dev[num_raid_devs] */
216 /* here comes BBM logs */
217 } __attribute__ ((packed));
218
219 #define BBM_LOG_MAX_ENTRIES 254
220
221 struct bbm_log_entry {
222 __u64 defective_block_start;
223 #define UNREADABLE 0xFFFFFFFF
224 __u32 spare_block_offset;
225 __u16 remapped_marked_count;
226 __u16 disk_ordinal;
227 } __attribute__ ((__packed__));
228
229 struct bbm_log {
230 __u32 signature; /* 0xABADB10C */
231 __u32 entry_count;
232 __u32 reserved_spare_block_count; /* 0 */
233 __u32 reserved; /* 0xFFFF */
234 __u64 first_spare_lba;
235 struct bbm_log_entry mapped_block_entries[BBM_LOG_MAX_ENTRIES];
236 } __attribute__ ((__packed__));
237
238
239 #ifndef MDASSEMBLE
240 static char *map_state_str[] = { "normal", "uninitialized", "degraded", "failed" };
241 #endif
242
243 #define RAID_DISK_RESERVED_BLOCKS_IMSM_HI 2209
244
245 #define GEN_MIGR_AREA_SIZE 2048 /* General Migration Copy Area size in blocks */
246
247 #define MIGR_REC_BUF_SIZE 512 /* size of migr_record i/o buffer */
248 #define MIGR_REC_POSITION 512 /* migr_record position offset on disk,
249 * MIGR_REC_BUF_SIZE <= MIGR_REC_POSITION
250 */
251
252
253 #define UNIT_SRC_NORMAL 0 /* Source data for curr_migr_unit must
254 * be recovered using srcMap */
255 #define UNIT_SRC_IN_CP_AREA 1 /* Source data for curr_migr_unit has
256 * already been migrated and must
257 * be recovered from checkpoint area */
258 struct migr_record {
259 __u32 rec_status; /* Status used to determine how to restart
260 * migration in case it aborts
261 * in some fashion */
262 __u32 curr_migr_unit; /* 0..numMigrUnits-1 */
263 __u32 family_num; /* Family number of MPB
264 * containing the RaidDev
265 * that is migrating */
266 __u32 ascending_migr; /* True if migrating in increasing
267 * order of lbas */
268 __u32 blocks_per_unit; /* Num disk blocks per unit of operation */
269 __u32 dest_depth_per_unit; /* Num member blocks each destMap
270 * member disk
271 * advances per unit-of-operation */
272 __u32 ckpt_area_pba; /* Pba of first block of ckpt copy area */
273 __u32 dest_1st_member_lba; /* First member lba on first
274 * stripe of destination */
275 __u32 num_migr_units; /* Total num migration units-of-op */
276 __u32 post_migr_vol_cap; /* Size of volume after
277 * migration completes */
278 __u32 post_migr_vol_cap_hi; /* Expansion space for LBA64 */
279 __u32 ckpt_read_disk_num; /* Which member disk in destSubMap[0] the
280 * migration ckpt record was read from
281 * (for recovered migrations) */
282 } __attribute__ ((__packed__));
283
284 struct md_list {
285 /* usage marker:
286 * 1: load metadata
287 * 2: metadata does not match
288 * 4: already checked
289 */
290 int used;
291 char *devname;
292 int found;
293 int container;
294 dev_t st_rdev;
295 struct md_list *next;
296 };
297
298 #define pr_vrb(fmt, arg...) (void) (verbose && fprintf(stderr, Name fmt, ##arg))
299
300 static __u8 migr_type(struct imsm_dev *dev)
301 {
302 if (dev->vol.migr_type == MIGR_VERIFY &&
303 dev->status & DEV_VERIFY_AND_FIX)
304 return MIGR_REPAIR;
305 else
306 return dev->vol.migr_type;
307 }
308
309 static void set_migr_type(struct imsm_dev *dev, __u8 migr_type)
310 {
311 /* for compatibility with older oroms convert MIGR_REPAIR, into
312 * MIGR_VERIFY w/ DEV_VERIFY_AND_FIX status
313 */
314 if (migr_type == MIGR_REPAIR) {
315 dev->vol.migr_type = MIGR_VERIFY;
316 dev->status |= DEV_VERIFY_AND_FIX;
317 } else {
318 dev->vol.migr_type = migr_type;
319 dev->status &= ~DEV_VERIFY_AND_FIX;
320 }
321 }
322
323 static unsigned int sector_count(__u32 bytes)
324 {
325 return ROUND_UP(bytes, 512) / 512;
326 }
327
328 static unsigned int mpb_sectors(struct imsm_super *mpb)
329 {
330 return sector_count(__le32_to_cpu(mpb->mpb_size));
331 }
332
333 struct intel_dev {
334 struct imsm_dev *dev;
335 struct intel_dev *next;
336 unsigned index;
337 };
338
339 struct intel_hba {
340 enum sys_dev_type type;
341 char *path;
342 char *pci_id;
343 struct intel_hba *next;
344 };
345
346 enum action {
347 DISK_REMOVE = 1,
348 DISK_ADD
349 };
350 /* internal representation of IMSM metadata */
351 struct intel_super {
352 union {
353 void *buf; /* O_DIRECT buffer for reading/writing metadata */
354 struct imsm_super *anchor; /* immovable parameters */
355 };
356 union {
357 void *migr_rec_buf; /* buffer for I/O operations */
358 struct migr_record *migr_rec; /* migration record */
359 };
360 int clean_migration_record_by_mdmon; /* when reshape is switched to next
361 array, it indicates that mdmon is allowed to clean migration
362 record */
363 size_t len; /* size of the 'buf' allocation */
364 void *next_buf; /* for realloc'ing buf from the manager */
365 size_t next_len;
366 int updates_pending; /* count of pending updates for mdmon */
367 int current_vol; /* index of raid device undergoing creation */
368 unsigned long long create_offset; /* common start for 'current_vol' */
369 __u32 random; /* random data for seeding new family numbers */
370 struct intel_dev *devlist;
371 struct dl {
372 struct dl *next;
373 int index;
374 __u8 serial[MAX_RAID_SERIAL_LEN];
375 int major, minor;
376 char *devname;
377 struct imsm_disk disk;
378 int fd;
379 int extent_cnt;
380 struct extent *e; /* for determining freespace @ create */
381 int raiddisk; /* slot to fill in autolayout */
382 enum action action;
383 } *disks, *current_disk;
384 struct dl *disk_mgmt_list; /* list of disks to add/remove while mdmon
385 active */
386 struct dl *missing; /* disks removed while we weren't looking */
387 struct bbm_log *bbm_log;
388 struct intel_hba *hba; /* device path of the raid controller for this metadata */
389 const struct imsm_orom *orom; /* platform firmware support */
390 struct intel_super *next; /* (temp) list for disambiguating family_num */
391 };
392
393 struct intel_disk {
394 struct imsm_disk disk;
395 #define IMSM_UNKNOWN_OWNER (-1)
396 int owner;
397 struct intel_disk *next;
398 };
399
400 struct extent {
401 unsigned long long start, size;
402 };
403
404 /* definitions of reshape process types */
405 enum imsm_reshape_type {
406 CH_TAKEOVER,
407 CH_MIGRATION,
408 CH_ARRAY_SIZE,
409 };
410
411 /* definition of messages passed to imsm_process_update */
412 enum imsm_update_type {
413 update_activate_spare,
414 update_create_array,
415 update_kill_array,
416 update_rename_array,
417 update_add_remove_disk,
418 update_reshape_container_disks,
419 update_reshape_migration,
420 update_takeover,
421 update_general_migration_checkpoint,
422 update_size_change,
423 };
424
425 struct imsm_update_activate_spare {
426 enum imsm_update_type type;
427 struct dl *dl;
428 int slot;
429 int array;
430 struct imsm_update_activate_spare *next;
431 };
432
433 struct geo_params {
434 int dev_id;
435 char *dev_name;
436 long long size;
437 int level;
438 int layout;
439 int chunksize;
440 int raid_disks;
441 };
442
443 enum takeover_direction {
444 R10_TO_R0,
445 R0_TO_R10
446 };
447 struct imsm_update_takeover {
448 enum imsm_update_type type;
449 int subarray;
450 enum takeover_direction direction;
451 };
452
453 struct imsm_update_reshape {
454 enum imsm_update_type type;
455 int old_raid_disks;
456 int new_raid_disks;
457
458 int new_disks[1]; /* new_raid_disks - old_raid_disks makedev number */
459 };
460
461 struct imsm_update_reshape_migration {
462 enum imsm_update_type type;
463 int old_raid_disks;
464 int new_raid_disks;
465 /* fields for array migration changes
466 */
467 int subdev;
468 int new_level;
469 int new_layout;
470 int new_chunksize;
471
472 int new_disks[1]; /* new_raid_disks - old_raid_disks makedev number */
473 };
474
475 struct imsm_update_size_change {
476 enum imsm_update_type type;
477 int subdev;
478 long long new_size;
479 };
480
481 struct imsm_update_general_migration_checkpoint {
482 enum imsm_update_type type;
483 __u32 curr_migr_unit;
484 };
485
486 struct disk_info {
487 __u8 serial[MAX_RAID_SERIAL_LEN];
488 };
489
490 struct imsm_update_create_array {
491 enum imsm_update_type type;
492 int dev_idx;
493 struct imsm_dev dev;
494 };
495
496 struct imsm_update_kill_array {
497 enum imsm_update_type type;
498 int dev_idx;
499 };
500
501 struct imsm_update_rename_array {
502 enum imsm_update_type type;
503 __u8 name[MAX_RAID_SERIAL_LEN];
504 int dev_idx;
505 };
506
507 struct imsm_update_add_remove_disk {
508 enum imsm_update_type type;
509 };
510
511
512 static const char *_sys_dev_type[] = {
513 [SYS_DEV_UNKNOWN] = "Unknown",
514 [SYS_DEV_SAS] = "SAS",
515 [SYS_DEV_SATA] = "SATA"
516 };
517
518 const char *get_sys_dev_type(enum sys_dev_type type)
519 {
520 if (type >= SYS_DEV_MAX)
521 type = SYS_DEV_UNKNOWN;
522
523 return _sys_dev_type[type];
524 }
525
526 static struct intel_hba * alloc_intel_hba(struct sys_dev *device)
527 {
528 struct intel_hba *result = malloc(sizeof(*result));
529 if (result) {
530 result->type = device->type;
531 result->path = strdup(device->path);
532 result->next = NULL;
533 if (result->path && (result->pci_id = strrchr(result->path, '/')) != NULL)
534 result->pci_id++;
535 }
536 return result;
537 }
538
539 static struct intel_hba * find_intel_hba(struct intel_hba *hba, struct sys_dev *device)
540 {
541 struct intel_hba *result=NULL;
542 for (result = hba; result; result = result->next) {
543 if (result->type == device->type && strcmp(result->path, device->path) == 0)
544 break;
545 }
546 return result;
547 }
548
549 static int attach_hba_to_super(struct intel_super *super, struct sys_dev *device)
550 {
551 struct intel_hba *hba;
552
553 /* check if disk attached to Intel HBA */
554 hba = find_intel_hba(super->hba, device);
555 if (hba != NULL)
556 return 1;
557 /* Check if HBA is already attached to super */
558 if (super->hba == NULL) {
559 super->hba = alloc_intel_hba(device);
560 return 1;
561 }
562
563 hba = super->hba;
564 /* Intel metadata allows for all disks attached to the same type HBA.
565 * Do not sypport odf HBA types mixing
566 */
567 if (device->type != hba->type)
568 return 2;
569
570 while (hba->next)
571 hba = hba->next;
572
573 hba->next = alloc_intel_hba(device);
574 return 1;
575 }
576
577 static struct sys_dev* find_disk_attached_hba(int fd, const char *devname)
578 {
579 struct sys_dev *list, *elem, *prev;
580 char *disk_path;
581
582 if ((list = find_intel_devices()) == NULL)
583 return 0;
584
585 if (fd < 0)
586 disk_path = (char *) devname;
587 else
588 disk_path = diskfd_to_devpath(fd);
589
590 if (!disk_path) {
591 free_sys_dev(&list);
592 return 0;
593 }
594
595 for (prev = NULL, elem = list; elem; prev = elem, elem = elem->next) {
596 if (path_attached_to_hba(disk_path, elem->path)) {
597 if (prev == NULL)
598 list = list->next;
599 else
600 prev->next = elem->next;
601 elem->next = NULL;
602 if (disk_path != devname)
603 free(disk_path);
604 free_sys_dev(&list);
605 return elem;
606 }
607 }
608 if (disk_path != devname)
609 free(disk_path);
610 free_sys_dev(&list);
611
612 return NULL;
613 }
614
615
616 static int find_intel_hba_capability(int fd, struct intel_super *super,
617 char *devname);
618
619 static struct supertype *match_metadata_desc_imsm(char *arg)
620 {
621 struct supertype *st;
622
623 if (strcmp(arg, "imsm") != 0 &&
624 strcmp(arg, "default") != 0
625 )
626 return NULL;
627
628 st = malloc(sizeof(*st));
629 if (!st)
630 return NULL;
631 memset(st, 0, sizeof(*st));
632 st->container_dev = NoMdDev;
633 st->ss = &super_imsm;
634 st->max_devs = IMSM_MAX_DEVICES;
635 st->minor_version = 0;
636 st->sb = NULL;
637 return st;
638 }
639
640 #ifndef MDASSEMBLE
641 static __u8 *get_imsm_version(struct imsm_super *mpb)
642 {
643 return &mpb->sig[MPB_SIG_LEN];
644 }
645 #endif
646
647 /* retrieve a disk directly from the anchor when the anchor is known to be
648 * up-to-date, currently only at load time
649 */
650 static struct imsm_disk *__get_imsm_disk(struct imsm_super *mpb, __u8 index)
651 {
652 if (index >= mpb->num_disks)
653 return NULL;
654 return &mpb->disk[index];
655 }
656
657 /* retrieve the disk description based on a index of the disk
658 * in the sub-array
659 */
660 static struct dl *get_imsm_dl_disk(struct intel_super *super, __u8 index)
661 {
662 struct dl *d;
663
664 for (d = super->disks; d; d = d->next)
665 if (d->index == index)
666 return d;
667
668 return NULL;
669 }
670 /* retrieve a disk from the parsed metadata */
671 static struct imsm_disk *get_imsm_disk(struct intel_super *super, __u8 index)
672 {
673 struct dl *dl;
674
675 dl = get_imsm_dl_disk(super, index);
676 if (dl)
677 return &dl->disk;
678
679 return NULL;
680 }
681
682 /* generate a checksum directly from the anchor when the anchor is known to be
683 * up-to-date, currently only at load or write_super after coalescing
684 */
685 static __u32 __gen_imsm_checksum(struct imsm_super *mpb)
686 {
687 __u32 end = mpb->mpb_size / sizeof(end);
688 __u32 *p = (__u32 *) mpb;
689 __u32 sum = 0;
690
691 while (end--) {
692 sum += __le32_to_cpu(*p);
693 p++;
694 }
695
696 return sum - __le32_to_cpu(mpb->check_sum);
697 }
698
699 static size_t sizeof_imsm_map(struct imsm_map *map)
700 {
701 return sizeof(struct imsm_map) + sizeof(__u32) * (map->num_members - 1);
702 }
703
704 struct imsm_map *get_imsm_map(struct imsm_dev *dev, int second_map)
705 {
706 /* A device can have 2 maps if it is in the middle of a migration.
707 * If second_map is:
708 * MAP_0 - we return the first map
709 * MAP_1 - we return the second map if it exists, else NULL
710 * MAP_X - we return the second map if it exists, else the first
711 */
712 struct imsm_map *map = &dev->vol.map[0];
713 struct imsm_map *map2 = NULL;
714
715 if (dev->vol.migr_state)
716 map2 = (void *)map + sizeof_imsm_map(map);
717
718 switch (second_map) {
719 case MAP_0:
720 break;
721 case MAP_1:
722 map = map2;
723 break;
724 case MAP_X:
725 if (map2)
726 map = map2;
727 break;
728 default:
729 map = NULL;
730 }
731 return map;
732
733 }
734
735 /* return the size of the device.
736 * migr_state increases the returned size if map[0] were to be duplicated
737 */
738 static size_t sizeof_imsm_dev(struct imsm_dev *dev, int migr_state)
739 {
740 size_t size = sizeof(*dev) - sizeof(struct imsm_map) +
741 sizeof_imsm_map(get_imsm_map(dev, MAP_0));
742
743 /* migrating means an additional map */
744 if (dev->vol.migr_state)
745 size += sizeof_imsm_map(get_imsm_map(dev, MAP_1));
746 else if (migr_state)
747 size += sizeof_imsm_map(get_imsm_map(dev, MAP_0));
748
749 return size;
750 }
751
752 #ifndef MDASSEMBLE
753 /* retrieve disk serial number list from a metadata update */
754 static struct disk_info *get_disk_info(struct imsm_update_create_array *update)
755 {
756 void *u = update;
757 struct disk_info *inf;
758
759 inf = u + sizeof(*update) - sizeof(struct imsm_dev) +
760 sizeof_imsm_dev(&update->dev, 0);
761
762 return inf;
763 }
764 #endif
765
766 static struct imsm_dev *__get_imsm_dev(struct imsm_super *mpb, __u8 index)
767 {
768 int offset;
769 int i;
770 void *_mpb = mpb;
771
772 if (index >= mpb->num_raid_devs)
773 return NULL;
774
775 /* devices start after all disks */
776 offset = ((void *) &mpb->disk[mpb->num_disks]) - _mpb;
777
778 for (i = 0; i <= index; i++)
779 if (i == index)
780 return _mpb + offset;
781 else
782 offset += sizeof_imsm_dev(_mpb + offset, 0);
783
784 return NULL;
785 }
786
787 static struct imsm_dev *get_imsm_dev(struct intel_super *super, __u8 index)
788 {
789 struct intel_dev *dv;
790
791 if (index >= super->anchor->num_raid_devs)
792 return NULL;
793 for (dv = super->devlist; dv; dv = dv->next)
794 if (dv->index == index)
795 return dv->dev;
796 return NULL;
797 }
798
799 /*
800 * for second_map:
801 * == MAP_0 get first map
802 * == MAP_1 get second map
803 * == MAP_X than get map according to the current migr_state
804 */
805 static __u32 get_imsm_ord_tbl_ent(struct imsm_dev *dev,
806 int slot,
807 int second_map)
808 {
809 struct imsm_map *map;
810
811 map = get_imsm_map(dev, second_map);
812
813 /* top byte identifies disk under rebuild */
814 return __le32_to_cpu(map->disk_ord_tbl[slot]);
815 }
816
817 #define ord_to_idx(ord) (((ord) << 8) >> 8)
818 static __u32 get_imsm_disk_idx(struct imsm_dev *dev, int slot, int second_map)
819 {
820 __u32 ord = get_imsm_ord_tbl_ent(dev, slot, second_map);
821
822 return ord_to_idx(ord);
823 }
824
825 static void set_imsm_ord_tbl_ent(struct imsm_map *map, int slot, __u32 ord)
826 {
827 map->disk_ord_tbl[slot] = __cpu_to_le32(ord);
828 }
829
830 static int get_imsm_disk_slot(struct imsm_map *map, unsigned idx)
831 {
832 int slot;
833 __u32 ord;
834
835 for (slot = 0; slot < map->num_members; slot++) {
836 ord = __le32_to_cpu(map->disk_ord_tbl[slot]);
837 if (ord_to_idx(ord) == idx)
838 return slot;
839 }
840
841 return -1;
842 }
843
844 static int get_imsm_raid_level(struct imsm_map *map)
845 {
846 if (map->raid_level == 1) {
847 if (map->num_members == 2)
848 return 1;
849 else
850 return 10;
851 }
852
853 return map->raid_level;
854 }
855
856 static int cmp_extent(const void *av, const void *bv)
857 {
858 const struct extent *a = av;
859 const struct extent *b = bv;
860 if (a->start < b->start)
861 return -1;
862 if (a->start > b->start)
863 return 1;
864 return 0;
865 }
866
867 static int count_memberships(struct dl *dl, struct intel_super *super)
868 {
869 int memberships = 0;
870 int i;
871
872 for (i = 0; i < super->anchor->num_raid_devs; i++) {
873 struct imsm_dev *dev = get_imsm_dev(super, i);
874 struct imsm_map *map = get_imsm_map(dev, MAP_0);
875
876 if (get_imsm_disk_slot(map, dl->index) >= 0)
877 memberships++;
878 }
879
880 return memberships;
881 }
882
883 static __u32 imsm_min_reserved_sectors(struct intel_super *super);
884
885 static int split_ull(unsigned long long n, __u32 *lo, __u32 *hi)
886 {
887 if (lo == 0 || hi == 0)
888 return 1;
889 *lo = __le32_to_cpu((unsigned)n);
890 *hi = __le32_to_cpu((unsigned)(n >> 32));
891 return 0;
892 }
893
894 static unsigned long long join_u32(__u32 lo, __u32 hi)
895 {
896 return (unsigned long long)__le32_to_cpu(lo) |
897 (((unsigned long long)__le32_to_cpu(hi)) << 32);
898 }
899
900 static unsigned long long total_blocks(struct imsm_disk *disk)
901 {
902 if (disk == NULL)
903 return 0;
904 return join_u32(disk->total_blocks_lo, disk->total_blocks_hi);
905 }
906
907 static unsigned long long pba_of_lba0(struct imsm_map *map)
908 {
909 if (map == NULL)
910 return 0;
911 return join_u32(map->pba_of_lba0_lo, map->pba_of_lba0_hi);
912 }
913
914 static unsigned long long blocks_per_member(struct imsm_map *map)
915 {
916 if (map == NULL)
917 return 0;
918 return join_u32(map->blocks_per_member_lo, map->blocks_per_member_hi);
919 }
920
921 #ifndef MDASSEMBLE
922 static unsigned long long num_data_stripes(struct imsm_map *map)
923 {
924 if (map == NULL)
925 return 0;
926 return join_u32(map->num_data_stripes_lo, map->num_data_stripes_hi);
927 }
928
929 static void set_total_blocks(struct imsm_disk *disk, unsigned long long n)
930 {
931 split_ull(n, &disk->total_blocks_lo, &disk->total_blocks_hi);
932 }
933 #endif
934
935 static void set_pba_of_lba0(struct imsm_map *map, unsigned long long n)
936 {
937 split_ull(n, &map->pba_of_lba0_lo, &map->pba_of_lba0_hi);
938 }
939
940 static void set_blocks_per_member(struct imsm_map *map, unsigned long long n)
941 {
942 split_ull(n, &map->blocks_per_member_lo, &map->blocks_per_member_hi);
943 }
944
945 static void set_num_data_stripes(struct imsm_map *map, unsigned long long n)
946 {
947 split_ull(n, &map->num_data_stripes_lo, &map->num_data_stripes_hi);
948 }
949
950 static struct extent *get_extents(struct intel_super *super, struct dl *dl)
951 {
952 /* find a list of used extents on the given physical device */
953 struct extent *rv, *e;
954 int i;
955 int memberships = count_memberships(dl, super);
956 __u32 reservation;
957
958 /* trim the reserved area for spares, so they can join any array
959 * regardless of whether the OROM has assigned sectors from the
960 * IMSM_RESERVED_SECTORS region
961 */
962 if (dl->index == -1)
963 reservation = imsm_min_reserved_sectors(super);
964 else
965 reservation = MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
966
967 rv = malloc(sizeof(struct extent) * (memberships + 1));
968 if (!rv)
969 return NULL;
970 e = rv;
971
972 for (i = 0; i < super->anchor->num_raid_devs; i++) {
973 struct imsm_dev *dev = get_imsm_dev(super, i);
974 struct imsm_map *map = get_imsm_map(dev, MAP_0);
975
976 if (get_imsm_disk_slot(map, dl->index) >= 0) {
977 e->start = pba_of_lba0(map);
978 e->size = blocks_per_member(map);
979 e++;
980 }
981 }
982 qsort(rv, memberships, sizeof(*rv), cmp_extent);
983
984 /* determine the start of the metadata
985 * when no raid devices are defined use the default
986 * ...otherwise allow the metadata to truncate the value
987 * as is the case with older versions of imsm
988 */
989 if (memberships) {
990 struct extent *last = &rv[memberships - 1];
991 unsigned long long remainder;
992
993 remainder = total_blocks(&dl->disk) - (last->start + last->size);
994 /* round down to 1k block to satisfy precision of the kernel
995 * 'size' interface
996 */
997 remainder &= ~1UL;
998 /* make sure remainder is still sane */
999 if (remainder < (unsigned)ROUND_UP(super->len, 512) >> 9)
1000 remainder = ROUND_UP(super->len, 512) >> 9;
1001 if (reservation > remainder)
1002 reservation = remainder;
1003 }
1004 e->start = total_blocks(&dl->disk) - reservation;
1005 e->size = 0;
1006 return rv;
1007 }
1008
1009 /* try to determine how much space is reserved for metadata from
1010 * the last get_extents() entry, otherwise fallback to the
1011 * default
1012 */
1013 static __u32 imsm_reserved_sectors(struct intel_super *super, struct dl *dl)
1014 {
1015 struct extent *e;
1016 int i;
1017 __u32 rv;
1018
1019 /* for spares just return a minimal reservation which will grow
1020 * once the spare is picked up by an array
1021 */
1022 if (dl->index == -1)
1023 return MPB_SECTOR_CNT;
1024
1025 e = get_extents(super, dl);
1026 if (!e)
1027 return MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
1028
1029 /* scroll to last entry */
1030 for (i = 0; e[i].size; i++)
1031 continue;
1032
1033 rv = total_blocks(&dl->disk) - e[i].start;
1034
1035 free(e);
1036
1037 return rv;
1038 }
1039
1040 static int is_spare(struct imsm_disk *disk)
1041 {
1042 return (disk->status & SPARE_DISK) == SPARE_DISK;
1043 }
1044
1045 static int is_configured(struct imsm_disk *disk)
1046 {
1047 return (disk->status & CONFIGURED_DISK) == CONFIGURED_DISK;
1048 }
1049
1050 static int is_failed(struct imsm_disk *disk)
1051 {
1052 return (disk->status & FAILED_DISK) == FAILED_DISK;
1053 }
1054
1055 /* try to determine how much space is reserved for metadata from
1056 * the last get_extents() entry on the smallest active disk,
1057 * otherwise fallback to the default
1058 */
1059 static __u32 imsm_min_reserved_sectors(struct intel_super *super)
1060 {
1061 struct extent *e;
1062 int i;
1063 unsigned long long min_active;
1064 __u32 remainder;
1065 __u32 rv = MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
1066 struct dl *dl, *dl_min = NULL;
1067
1068 if (!super)
1069 return rv;
1070
1071 min_active = 0;
1072 for (dl = super->disks; dl; dl = dl->next) {
1073 if (dl->index < 0)
1074 continue;
1075 unsigned long long blocks = total_blocks(&dl->disk);
1076 if (blocks < min_active || min_active == 0) {
1077 dl_min = dl;
1078 min_active = blocks;
1079 }
1080 }
1081 if (!dl_min)
1082 return rv;
1083
1084 /* find last lba used by subarrays on the smallest active disk */
1085 e = get_extents(super, dl_min);
1086 if (!e)
1087 return rv;
1088 for (i = 0; e[i].size; i++)
1089 continue;
1090
1091 remainder = min_active - e[i].start;
1092 free(e);
1093
1094 /* to give priority to recovery we should not require full
1095 IMSM_RESERVED_SECTORS from the spare */
1096 rv = MPB_SECTOR_CNT + NUM_BLOCKS_DIRTY_STRIPE_REGION;
1097
1098 /* if real reservation is smaller use that value */
1099 return (remainder < rv) ? remainder : rv;
1100 }
1101
1102 /* Return minimum size of a spare that can be used in this array*/
1103 static unsigned long long min_acceptable_spare_size_imsm(struct supertype *st)
1104 {
1105 struct intel_super *super = st->sb;
1106 struct dl *dl;
1107 struct extent *e;
1108 int i;
1109 unsigned long long rv = 0;
1110
1111 if (!super)
1112 return rv;
1113 /* find first active disk in array */
1114 dl = super->disks;
1115 while (dl && (is_failed(&dl->disk) || dl->index == -1))
1116 dl = dl->next;
1117 if (!dl)
1118 return rv;
1119 /* find last lba used by subarrays */
1120 e = get_extents(super, dl);
1121 if (!e)
1122 return rv;
1123 for (i = 0; e[i].size; i++)
1124 continue;
1125 if (i > 0)
1126 rv = e[i-1].start + e[i-1].size;
1127 free(e);
1128
1129 /* add the amount of space needed for metadata */
1130 rv = rv + imsm_min_reserved_sectors(super);
1131
1132 return rv * 512;
1133 }
1134
1135 static int is_gen_migration(struct imsm_dev *dev);
1136
1137 #ifndef MDASSEMBLE
1138 static __u64 blocks_per_migr_unit(struct intel_super *super,
1139 struct imsm_dev *dev);
1140
1141 static void print_imsm_dev(struct intel_super *super,
1142 struct imsm_dev *dev,
1143 char *uuid,
1144 int disk_idx)
1145 {
1146 __u64 sz;
1147 int slot, i;
1148 struct imsm_map *map = get_imsm_map(dev, MAP_0);
1149 struct imsm_map *map2 = get_imsm_map(dev, MAP_1);
1150 __u32 ord;
1151
1152 printf("\n");
1153 printf("[%.16s]:\n", dev->volume);
1154 printf(" UUID : %s\n", uuid);
1155 printf(" RAID Level : %d", get_imsm_raid_level(map));
1156 if (map2)
1157 printf(" <-- %d", get_imsm_raid_level(map2));
1158 printf("\n");
1159 printf(" Members : %d", map->num_members);
1160 if (map2)
1161 printf(" <-- %d", map2->num_members);
1162 printf("\n");
1163 printf(" Slots : [");
1164 for (i = 0; i < map->num_members; i++) {
1165 ord = get_imsm_ord_tbl_ent(dev, i, MAP_0);
1166 printf("%s", ord & IMSM_ORD_REBUILD ? "_" : "U");
1167 }
1168 printf("]");
1169 if (map2) {
1170 printf(" <-- [");
1171 for (i = 0; i < map2->num_members; i++) {
1172 ord = get_imsm_ord_tbl_ent(dev, i, MAP_1);
1173 printf("%s", ord & IMSM_ORD_REBUILD ? "_" : "U");
1174 }
1175 printf("]");
1176 }
1177 printf("\n");
1178 printf(" Failed disk : ");
1179 if (map->failed_disk_num == 0xff)
1180 printf("none");
1181 else
1182 printf("%i", map->failed_disk_num);
1183 printf("\n");
1184 slot = get_imsm_disk_slot(map, disk_idx);
1185 if (slot >= 0) {
1186 ord = get_imsm_ord_tbl_ent(dev, slot, MAP_X);
1187 printf(" This Slot : %d%s\n", slot,
1188 ord & IMSM_ORD_REBUILD ? " (out-of-sync)" : "");
1189 } else
1190 printf(" This Slot : ?\n");
1191 sz = __le32_to_cpu(dev->size_high);
1192 sz <<= 32;
1193 sz += __le32_to_cpu(dev->size_low);
1194 printf(" Array Size : %llu%s\n", (unsigned long long)sz,
1195 human_size(sz * 512));
1196 sz = blocks_per_member(map);
1197 printf(" Per Dev Size : %llu%s\n", (unsigned long long)sz,
1198 human_size(sz * 512));
1199 printf(" Sector Offset : %llu\n",
1200 pba_of_lba0(map));
1201 printf(" Num Stripes : %llu\n",
1202 num_data_stripes(map));
1203 printf(" Chunk Size : %u KiB",
1204 __le16_to_cpu(map->blocks_per_strip) / 2);
1205 if (map2)
1206 printf(" <-- %u KiB",
1207 __le16_to_cpu(map2->blocks_per_strip) / 2);
1208 printf("\n");
1209 printf(" Reserved : %d\n", __le32_to_cpu(dev->reserved_blocks));
1210 printf(" Migrate State : ");
1211 if (dev->vol.migr_state) {
1212 if (migr_type(dev) == MIGR_INIT)
1213 printf("initialize\n");
1214 else if (migr_type(dev) == MIGR_REBUILD)
1215 printf("rebuild\n");
1216 else if (migr_type(dev) == MIGR_VERIFY)
1217 printf("check\n");
1218 else if (migr_type(dev) == MIGR_GEN_MIGR)
1219 printf("general migration\n");
1220 else if (migr_type(dev) == MIGR_STATE_CHANGE)
1221 printf("state change\n");
1222 else if (migr_type(dev) == MIGR_REPAIR)
1223 printf("repair\n");
1224 else
1225 printf("<unknown:%d>\n", migr_type(dev));
1226 } else
1227 printf("idle\n");
1228 printf(" Map State : %s", map_state_str[map->map_state]);
1229 if (dev->vol.migr_state) {
1230 struct imsm_map *map = get_imsm_map(dev, MAP_1);
1231
1232 printf(" <-- %s", map_state_str[map->map_state]);
1233 printf("\n Checkpoint : %u ",
1234 __le32_to_cpu(dev->vol.curr_migr_unit));
1235 if ((is_gen_migration(dev)) && ((slot > 1) || (slot < 0)))
1236 printf("(N/A)");
1237 else
1238 printf("(%llu)", (unsigned long long)
1239 blocks_per_migr_unit(super, dev));
1240 }
1241 printf("\n");
1242 printf(" Dirty State : %s\n", dev->vol.dirty ? "dirty" : "clean");
1243 }
1244
1245 static void print_imsm_disk(struct imsm_disk *disk, int index, __u32 reserved)
1246 {
1247 char str[MAX_RAID_SERIAL_LEN + 1];
1248 __u64 sz;
1249
1250 if (index < -1 || !disk)
1251 return;
1252
1253 printf("\n");
1254 snprintf(str, MAX_RAID_SERIAL_LEN + 1, "%s", disk->serial);
1255 if (index >= 0)
1256 printf(" Disk%02d Serial : %s\n", index, str);
1257 else
1258 printf(" Disk Serial : %s\n", str);
1259 printf(" State :%s%s%s\n", is_spare(disk) ? " spare" : "",
1260 is_configured(disk) ? " active" : "",
1261 is_failed(disk) ? " failed" : "");
1262 printf(" Id : %08x\n", __le32_to_cpu(disk->scsi_id));
1263 sz = total_blocks(disk) - reserved;
1264 printf(" Usable Size : %llu%s\n", (unsigned long long)sz,
1265 human_size(sz * 512));
1266 }
1267
1268 void examine_migr_rec_imsm(struct intel_super *super)
1269 {
1270 struct migr_record *migr_rec = super->migr_rec;
1271 struct imsm_super *mpb = super->anchor;
1272 int i;
1273
1274 for (i = 0; i < mpb->num_raid_devs; i++) {
1275 struct imsm_dev *dev = __get_imsm_dev(mpb, i);
1276 struct imsm_map *map;
1277 int slot = -1;
1278
1279 if (is_gen_migration(dev) == 0)
1280 continue;
1281
1282 printf("\nMigration Record Information:");
1283
1284 /* first map under migration */
1285 map = get_imsm_map(dev, MAP_0);
1286 if (map)
1287 slot = get_imsm_disk_slot(map, super->disks->index);
1288 if ((map == NULL) || (slot > 1) || (slot < 0)) {
1289 printf(" Empty\n ");
1290 printf("Examine one of first two disks in array\n");
1291 break;
1292 }
1293 printf("\n Status : ");
1294 if (__le32_to_cpu(migr_rec->rec_status) == UNIT_SRC_NORMAL)
1295 printf("Normal\n");
1296 else
1297 printf("Contains Data\n");
1298 printf(" Current Unit : %u\n",
1299 __le32_to_cpu(migr_rec->curr_migr_unit));
1300 printf(" Family : %u\n",
1301 __le32_to_cpu(migr_rec->family_num));
1302 printf(" Ascending : %u\n",
1303 __le32_to_cpu(migr_rec->ascending_migr));
1304 printf(" Blocks Per Unit : %u\n",
1305 __le32_to_cpu(migr_rec->blocks_per_unit));
1306 printf(" Dest. Depth Per Unit : %u\n",
1307 __le32_to_cpu(migr_rec->dest_depth_per_unit));
1308 printf(" Checkpoint Area pba : %u\n",
1309 __le32_to_cpu(migr_rec->ckpt_area_pba));
1310 printf(" First member lba : %u\n",
1311 __le32_to_cpu(migr_rec->dest_1st_member_lba));
1312 printf(" Total Number of Units : %u\n",
1313 __le32_to_cpu(migr_rec->num_migr_units));
1314 printf(" Size of volume : %u\n",
1315 __le32_to_cpu(migr_rec->post_migr_vol_cap));
1316 printf(" Expansion space for LBA64 : %u\n",
1317 __le32_to_cpu(migr_rec->post_migr_vol_cap_hi));
1318 printf(" Record was read from : %u\n",
1319 __le32_to_cpu(migr_rec->ckpt_read_disk_num));
1320
1321 break;
1322 }
1323 }
1324 #endif /* MDASSEMBLE */
1325 /*******************************************************************************
1326 * function: imsm_check_attributes
1327 * Description: Function checks if features represented by attributes flags
1328 * are supported by mdadm.
1329 * Parameters:
1330 * attributes - Attributes read from metadata
1331 * Returns:
1332 * 0 - passed attributes contains unsupported features flags
1333 * 1 - all features are supported
1334 ******************************************************************************/
1335 static int imsm_check_attributes(__u32 attributes)
1336 {
1337 int ret_val = 1;
1338 __u32 not_supported = MPB_ATTRIB_SUPPORTED^0xffffffff;
1339
1340 not_supported &= ~MPB_ATTRIB_IGNORED;
1341
1342 not_supported &= attributes;
1343 if (not_supported) {
1344 fprintf(stderr, Name "(IMSM): Unsupported attributes : %x\n",
1345 (unsigned)__le32_to_cpu(not_supported));
1346 if (not_supported & MPB_ATTRIB_CHECKSUM_VERIFY) {
1347 dprintf("\t\tMPB_ATTRIB_CHECKSUM_VERIFY \n");
1348 not_supported ^= MPB_ATTRIB_CHECKSUM_VERIFY;
1349 }
1350 if (not_supported & MPB_ATTRIB_2TB) {
1351 dprintf("\t\tMPB_ATTRIB_2TB\n");
1352 not_supported ^= MPB_ATTRIB_2TB;
1353 }
1354 if (not_supported & MPB_ATTRIB_RAID0) {
1355 dprintf("\t\tMPB_ATTRIB_RAID0\n");
1356 not_supported ^= MPB_ATTRIB_RAID0;
1357 }
1358 if (not_supported & MPB_ATTRIB_RAID1) {
1359 dprintf("\t\tMPB_ATTRIB_RAID1\n");
1360 not_supported ^= MPB_ATTRIB_RAID1;
1361 }
1362 if (not_supported & MPB_ATTRIB_RAID10) {
1363 dprintf("\t\tMPB_ATTRIB_RAID10\n");
1364 not_supported ^= MPB_ATTRIB_RAID10;
1365 }
1366 if (not_supported & MPB_ATTRIB_RAID1E) {
1367 dprintf("\t\tMPB_ATTRIB_RAID1E\n");
1368 not_supported ^= MPB_ATTRIB_RAID1E;
1369 }
1370 if (not_supported & MPB_ATTRIB_RAID5) {
1371 dprintf("\t\tMPB_ATTRIB_RAID5\n");
1372 not_supported ^= MPB_ATTRIB_RAID5;
1373 }
1374 if (not_supported & MPB_ATTRIB_RAIDCNG) {
1375 dprintf("\t\tMPB_ATTRIB_RAIDCNG\n");
1376 not_supported ^= MPB_ATTRIB_RAIDCNG;
1377 }
1378 if (not_supported & MPB_ATTRIB_BBM) {
1379 dprintf("\t\tMPB_ATTRIB_BBM\n");
1380 not_supported ^= MPB_ATTRIB_BBM;
1381 }
1382 if (not_supported & MPB_ATTRIB_CHECKSUM_VERIFY) {
1383 dprintf("\t\tMPB_ATTRIB_CHECKSUM_VERIFY (== MPB_ATTRIB_LEGACY)\n");
1384 not_supported ^= MPB_ATTRIB_CHECKSUM_VERIFY;
1385 }
1386 if (not_supported & MPB_ATTRIB_EXP_STRIPE_SIZE) {
1387 dprintf("\t\tMPB_ATTRIB_EXP_STRIP_SIZE\n");
1388 not_supported ^= MPB_ATTRIB_EXP_STRIPE_SIZE;
1389 }
1390 if (not_supported & MPB_ATTRIB_2TB_DISK) {
1391 dprintf("\t\tMPB_ATTRIB_2TB_DISK\n");
1392 not_supported ^= MPB_ATTRIB_2TB_DISK;
1393 }
1394 if (not_supported & MPB_ATTRIB_NEVER_USE2) {
1395 dprintf("\t\tMPB_ATTRIB_NEVER_USE2\n");
1396 not_supported ^= MPB_ATTRIB_NEVER_USE2;
1397 }
1398 if (not_supported & MPB_ATTRIB_NEVER_USE) {
1399 dprintf("\t\tMPB_ATTRIB_NEVER_USE\n");
1400 not_supported ^= MPB_ATTRIB_NEVER_USE;
1401 }
1402
1403 if (not_supported)
1404 dprintf(Name "(IMSM): Unknown attributes : %x\n", not_supported);
1405
1406 ret_val = 0;
1407 }
1408
1409 return ret_val;
1410 }
1411
1412 #ifndef MDASSEMBLE
1413 static void getinfo_super_imsm(struct supertype *st, struct mdinfo *info, char *map);
1414
1415 static void examine_super_imsm(struct supertype *st, char *homehost)
1416 {
1417 struct intel_super *super = st->sb;
1418 struct imsm_super *mpb = super->anchor;
1419 char str[MAX_SIGNATURE_LENGTH];
1420 int i;
1421 struct mdinfo info;
1422 char nbuf[64];
1423 __u32 sum;
1424 __u32 reserved = imsm_reserved_sectors(super, super->disks);
1425 struct dl *dl;
1426
1427 snprintf(str, MPB_SIG_LEN, "%s", mpb->sig);
1428 printf(" Magic : %s\n", str);
1429 snprintf(str, strlen(MPB_VERSION_RAID0), "%s", get_imsm_version(mpb));
1430 printf(" Version : %s\n", get_imsm_version(mpb));
1431 printf(" Orig Family : %08x\n", __le32_to_cpu(mpb->orig_family_num));
1432 printf(" Family : %08x\n", __le32_to_cpu(mpb->family_num));
1433 printf(" Generation : %08x\n", __le32_to_cpu(mpb->generation_num));
1434 printf(" Attributes : ");
1435 if (imsm_check_attributes(mpb->attributes))
1436 printf("All supported\n");
1437 else
1438 printf("not supported\n");
1439 getinfo_super_imsm(st, &info, NULL);
1440 fname_from_uuid(st, &info, nbuf, ':');
1441 printf(" UUID : %s\n", nbuf + 5);
1442 sum = __le32_to_cpu(mpb->check_sum);
1443 printf(" Checksum : %08x %s\n", sum,
1444 __gen_imsm_checksum(mpb) == sum ? "correct" : "incorrect");
1445 printf(" MPB Sectors : %d\n", mpb_sectors(mpb));
1446 printf(" Disks : %d\n", mpb->num_disks);
1447 printf(" RAID Devices : %d\n", mpb->num_raid_devs);
1448 print_imsm_disk(__get_imsm_disk(mpb, super->disks->index), super->disks->index, reserved);
1449 if (super->bbm_log) {
1450 struct bbm_log *log = super->bbm_log;
1451
1452 printf("\n");
1453 printf("Bad Block Management Log:\n");
1454 printf(" Log Size : %d\n", __le32_to_cpu(mpb->bbm_log_size));
1455 printf(" Signature : %x\n", __le32_to_cpu(log->signature));
1456 printf(" Entry Count : %d\n", __le32_to_cpu(log->entry_count));
1457 printf(" Spare Blocks : %d\n", __le32_to_cpu(log->reserved_spare_block_count));
1458 printf(" First Spare : %llx\n",
1459 (unsigned long long) __le64_to_cpu(log->first_spare_lba));
1460 }
1461 for (i = 0; i < mpb->num_raid_devs; i++) {
1462 struct mdinfo info;
1463 struct imsm_dev *dev = __get_imsm_dev(mpb, i);
1464
1465 super->current_vol = i;
1466 getinfo_super_imsm(st, &info, NULL);
1467 fname_from_uuid(st, &info, nbuf, ':');
1468 print_imsm_dev(super, dev, nbuf + 5, super->disks->index);
1469 }
1470 for (i = 0; i < mpb->num_disks; i++) {
1471 if (i == super->disks->index)
1472 continue;
1473 print_imsm_disk(__get_imsm_disk(mpb, i), i, reserved);
1474 }
1475
1476 for (dl = super->disks; dl; dl = dl->next)
1477 if (dl->index == -1)
1478 print_imsm_disk(&dl->disk, -1, reserved);
1479
1480 examine_migr_rec_imsm(super);
1481 }
1482
1483 static void brief_examine_super_imsm(struct supertype *st, int verbose)
1484 {
1485 /* We just write a generic IMSM ARRAY entry */
1486 struct mdinfo info;
1487 char nbuf[64];
1488 struct intel_super *super = st->sb;
1489
1490 if (!super->anchor->num_raid_devs) {
1491 printf("ARRAY metadata=imsm\n");
1492 return;
1493 }
1494
1495 getinfo_super_imsm(st, &info, NULL);
1496 fname_from_uuid(st, &info, nbuf, ':');
1497 printf("ARRAY metadata=imsm UUID=%s\n", nbuf + 5);
1498 }
1499
1500 static void brief_examine_subarrays_imsm(struct supertype *st, int verbose)
1501 {
1502 /* We just write a generic IMSM ARRAY entry */
1503 struct mdinfo info;
1504 char nbuf[64];
1505 char nbuf1[64];
1506 struct intel_super *super = st->sb;
1507 int i;
1508
1509 if (!super->anchor->num_raid_devs)
1510 return;
1511
1512 getinfo_super_imsm(st, &info, NULL);
1513 fname_from_uuid(st, &info, nbuf, ':');
1514 for (i = 0; i < super->anchor->num_raid_devs; i++) {
1515 struct imsm_dev *dev = get_imsm_dev(super, i);
1516
1517 super->current_vol = i;
1518 getinfo_super_imsm(st, &info, NULL);
1519 fname_from_uuid(st, &info, nbuf1, ':');
1520 printf("ARRAY /dev/md/%.16s container=%s member=%d UUID=%s\n",
1521 dev->volume, nbuf + 5, i, nbuf1 + 5);
1522 }
1523 }
1524
1525 static void export_examine_super_imsm(struct supertype *st)
1526 {
1527 struct intel_super *super = st->sb;
1528 struct imsm_super *mpb = super->anchor;
1529 struct mdinfo info;
1530 char nbuf[64];
1531
1532 getinfo_super_imsm(st, &info, NULL);
1533 fname_from_uuid(st, &info, nbuf, ':');
1534 printf("MD_METADATA=imsm\n");
1535 printf("MD_LEVEL=container\n");
1536 printf("MD_UUID=%s\n", nbuf+5);
1537 printf("MD_DEVICES=%u\n", mpb->num_disks);
1538 }
1539
1540 static void detail_super_imsm(struct supertype *st, char *homehost)
1541 {
1542 struct mdinfo info;
1543 char nbuf[64];
1544
1545 getinfo_super_imsm(st, &info, NULL);
1546 fname_from_uuid(st, &info, nbuf, ':');
1547 printf("\n UUID : %s\n", nbuf + 5);
1548 }
1549
1550 static void brief_detail_super_imsm(struct supertype *st)
1551 {
1552 struct mdinfo info;
1553 char nbuf[64];
1554 getinfo_super_imsm(st, &info, NULL);
1555 fname_from_uuid(st, &info, nbuf, ':');
1556 printf(" UUID=%s", nbuf + 5);
1557 }
1558
1559 static int imsm_read_serial(int fd, char *devname, __u8 *serial);
1560 static void fd2devname(int fd, char *name);
1561
1562 static int ahci_enumerate_ports(const char *hba_path, int port_count, int host_base, int verbose)
1563 {
1564 /* dump an unsorted list of devices attached to AHCI Intel storage
1565 * controller, as well as non-connected ports
1566 */
1567 int hba_len = strlen(hba_path) + 1;
1568 struct dirent *ent;
1569 DIR *dir;
1570 char *path = NULL;
1571 int err = 0;
1572 unsigned long port_mask = (1 << port_count) - 1;
1573
1574 if (port_count > (int)sizeof(port_mask) * 8) {
1575 if (verbose)
1576 fprintf(stderr, Name ": port_count %d out of range\n", port_count);
1577 return 2;
1578 }
1579
1580 /* scroll through /sys/dev/block looking for devices attached to
1581 * this hba
1582 */
1583 dir = opendir("/sys/dev/block");
1584 for (ent = dir ? readdir(dir) : NULL; ent; ent = readdir(dir)) {
1585 int fd;
1586 char model[64];
1587 char vendor[64];
1588 char buf[1024];
1589 int major, minor;
1590 char *device;
1591 char *c;
1592 int port;
1593 int type;
1594
1595 if (sscanf(ent->d_name, "%d:%d", &major, &minor) != 2)
1596 continue;
1597 path = devt_to_devpath(makedev(major, minor));
1598 if (!path)
1599 continue;
1600 if (!path_attached_to_hba(path, hba_path)) {
1601 free(path);
1602 path = NULL;
1603 continue;
1604 }
1605
1606 /* retrieve the scsi device type */
1607 if (asprintf(&device, "/sys/dev/block/%d:%d/device/xxxxxxx", major, minor) < 0) {
1608 if (verbose)
1609 fprintf(stderr, Name ": failed to allocate 'device'\n");
1610 err = 2;
1611 break;
1612 }
1613 sprintf(device, "/sys/dev/block/%d:%d/device/type", major, minor);
1614 if (load_sys(device, buf) != 0) {
1615 if (verbose)
1616 fprintf(stderr, Name ": failed to read device type for %s\n",
1617 path);
1618 err = 2;
1619 free(device);
1620 break;
1621 }
1622 type = strtoul(buf, NULL, 10);
1623
1624 /* if it's not a disk print the vendor and model */
1625 if (!(type == 0 || type == 7 || type == 14)) {
1626 vendor[0] = '\0';
1627 model[0] = '\0';
1628 sprintf(device, "/sys/dev/block/%d:%d/device/vendor", major, minor);
1629 if (load_sys(device, buf) == 0) {
1630 strncpy(vendor, buf, sizeof(vendor));
1631 vendor[sizeof(vendor) - 1] = '\0';
1632 c = (char *) &vendor[sizeof(vendor) - 1];
1633 while (isspace(*c) || *c == '\0')
1634 *c-- = '\0';
1635
1636 }
1637 sprintf(device, "/sys/dev/block/%d:%d/device/model", major, minor);
1638 if (load_sys(device, buf) == 0) {
1639 strncpy(model, buf, sizeof(model));
1640 model[sizeof(model) - 1] = '\0';
1641 c = (char *) &model[sizeof(model) - 1];
1642 while (isspace(*c) || *c == '\0')
1643 *c-- = '\0';
1644 }
1645
1646 if (vendor[0] && model[0])
1647 sprintf(buf, "%.64s %.64s", vendor, model);
1648 else
1649 switch (type) { /* numbers from hald/linux/device.c */
1650 case 1: sprintf(buf, "tape"); break;
1651 case 2: sprintf(buf, "printer"); break;
1652 case 3: sprintf(buf, "processor"); break;
1653 case 4:
1654 case 5: sprintf(buf, "cdrom"); break;
1655 case 6: sprintf(buf, "scanner"); break;
1656 case 8: sprintf(buf, "media_changer"); break;
1657 case 9: sprintf(buf, "comm"); break;
1658 case 12: sprintf(buf, "raid"); break;
1659 default: sprintf(buf, "unknown");
1660 }
1661 } else
1662 buf[0] = '\0';
1663 free(device);
1664
1665 /* chop device path to 'host%d' and calculate the port number */
1666 c = strchr(&path[hba_len], '/');
1667 if (!c) {
1668 if (verbose)
1669 fprintf(stderr, Name ": %s - invalid path name\n", path + hba_len);
1670 err = 2;
1671 break;
1672 }
1673 *c = '\0';
1674 if (sscanf(&path[hba_len], "host%d", &port) == 1)
1675 port -= host_base;
1676 else {
1677 if (verbose) {
1678 *c = '/'; /* repair the full string */
1679 fprintf(stderr, Name ": failed to determine port number for %s\n",
1680 path);
1681 }
1682 err = 2;
1683 break;
1684 }
1685
1686 /* mark this port as used */
1687 port_mask &= ~(1 << port);
1688
1689 /* print out the device information */
1690 if (buf[0]) {
1691 printf(" Port%d : - non-disk device (%s) -\n", port, buf);
1692 continue;
1693 }
1694
1695 fd = dev_open(ent->d_name, O_RDONLY);
1696 if (fd < 0)
1697 printf(" Port%d : - disk info unavailable -\n", port);
1698 else {
1699 fd2devname(fd, buf);
1700 printf(" Port%d : %s", port, buf);
1701 if (imsm_read_serial(fd, NULL, (__u8 *) buf) == 0)
1702 printf(" (%.*s)\n", MAX_RAID_SERIAL_LEN, buf);
1703 else
1704 printf(" ()\n");
1705 close(fd);
1706 }
1707 free(path);
1708 path = NULL;
1709 }
1710 if (path)
1711 free(path);
1712 if (dir)
1713 closedir(dir);
1714 if (err == 0) {
1715 int i;
1716
1717 for (i = 0; i < port_count; i++)
1718 if (port_mask & (1 << i))
1719 printf(" Port%d : - no device attached -\n", i);
1720 }
1721
1722 return err;
1723 }
1724
1725 static void print_found_intel_controllers(struct sys_dev *elem)
1726 {
1727 for (; elem; elem = elem->next) {
1728 fprintf(stderr, Name ": found Intel(R) ");
1729 if (elem->type == SYS_DEV_SATA)
1730 fprintf(stderr, "SATA ");
1731 else if (elem->type == SYS_DEV_SAS)
1732 fprintf(stderr, "SAS ");
1733 fprintf(stderr, "RAID controller");
1734 if (elem->pci_id)
1735 fprintf(stderr, " at %s", elem->pci_id);
1736 fprintf(stderr, ".\n");
1737 }
1738 fflush(stderr);
1739 }
1740
1741 static int ahci_get_port_count(const char *hba_path, int *port_count)
1742 {
1743 struct dirent *ent;
1744 DIR *dir;
1745 int host_base = -1;
1746
1747 *port_count = 0;
1748 if ((dir = opendir(hba_path)) == NULL)
1749 return -1;
1750
1751 for (ent = readdir(dir); ent; ent = readdir(dir)) {
1752 int host;
1753
1754 if (sscanf(ent->d_name, "host%d", &host) != 1)
1755 continue;
1756 if (*port_count == 0)
1757 host_base = host;
1758 else if (host < host_base)
1759 host_base = host;
1760
1761 if (host + 1 > *port_count + host_base)
1762 *port_count = host + 1 - host_base;
1763 }
1764 closedir(dir);
1765 return host_base;
1766 }
1767
1768 static void print_imsm_capability(const struct imsm_orom *orom)
1769 {
1770 printf(" Platform : Intel(R) Matrix Storage Manager\n");
1771 printf(" Version : %d.%d.%d.%d\n", orom->major_ver, orom->minor_ver,
1772 orom->hotfix_ver, orom->build);
1773 printf(" RAID Levels :%s%s%s%s%s\n",
1774 imsm_orom_has_raid0(orom) ? " raid0" : "",
1775 imsm_orom_has_raid1(orom) ? " raid1" : "",
1776 imsm_orom_has_raid1e(orom) ? " raid1e" : "",
1777 imsm_orom_has_raid10(orom) ? " raid10" : "",
1778 imsm_orom_has_raid5(orom) ? " raid5" : "");
1779 printf(" Chunk Sizes :%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
1780 imsm_orom_has_chunk(orom, 2) ? " 2k" : "",
1781 imsm_orom_has_chunk(orom, 4) ? " 4k" : "",
1782 imsm_orom_has_chunk(orom, 8) ? " 8k" : "",
1783 imsm_orom_has_chunk(orom, 16) ? " 16k" : "",
1784 imsm_orom_has_chunk(orom, 32) ? " 32k" : "",
1785 imsm_orom_has_chunk(orom, 64) ? " 64k" : "",
1786 imsm_orom_has_chunk(orom, 128) ? " 128k" : "",
1787 imsm_orom_has_chunk(orom, 256) ? " 256k" : "",
1788 imsm_orom_has_chunk(orom, 512) ? " 512k" : "",
1789 imsm_orom_has_chunk(orom, 1024*1) ? " 1M" : "",
1790 imsm_orom_has_chunk(orom, 1024*2) ? " 2M" : "",
1791 imsm_orom_has_chunk(orom, 1024*4) ? " 4M" : "",
1792 imsm_orom_has_chunk(orom, 1024*8) ? " 8M" : "",
1793 imsm_orom_has_chunk(orom, 1024*16) ? " 16M" : "",
1794 imsm_orom_has_chunk(orom, 1024*32) ? " 32M" : "",
1795 imsm_orom_has_chunk(orom, 1024*64) ? " 64M" : "");
1796 printf(" 2TB volumes :%s supported\n",
1797 (orom->attr & IMSM_OROM_ATTR_2TB)?"":" not");
1798 printf(" 2TB disks :%s supported\n",
1799 (orom->attr & IMSM_OROM_ATTR_2TB_DISK)?"":" not");
1800 printf(" Max Disks : %d\n", orom->tds);
1801 printf(" Max Volumes : %d per array, %d per controller\n",
1802 orom->vpa, orom->vphba);
1803 return;
1804 }
1805
1806 static int detail_platform_imsm(int verbose, int enumerate_only)
1807 {
1808 /* There are two components to imsm platform support, the ahci SATA
1809 * controller and the option-rom. To find the SATA controller we
1810 * simply look in /sys/bus/pci/drivers/ahci to see if an ahci
1811 * controller with the Intel vendor id is present. This approach
1812 * allows mdadm to leverage the kernel's ahci detection logic, with the
1813 * caveat that if ahci.ko is not loaded mdadm will not be able to
1814 * detect platform raid capabilities. The option-rom resides in a
1815 * platform "Adapter ROM". We scan for its signature to retrieve the
1816 * platform capabilities. If raid support is disabled in the BIOS the
1817 * option-rom capability structure will not be available.
1818 */
1819 const struct imsm_orom *orom;
1820 struct sys_dev *list, *hba;
1821 int host_base = 0;
1822 int port_count = 0;
1823 int result=0;
1824
1825 if (enumerate_only) {
1826 if (check_env("IMSM_NO_PLATFORM"))
1827 return 0;
1828 list = find_intel_devices();
1829 if (!list)
1830 return 2;
1831 for (hba = list; hba; hba = hba->next) {
1832 orom = find_imsm_capability(hba->type);
1833 if (!orom) {
1834 result = 2;
1835 break;
1836 }
1837 }
1838 free_sys_dev(&list);
1839 return result;
1840 }
1841
1842 list = find_intel_devices();
1843 if (!list) {
1844 if (verbose)
1845 fprintf(stderr, Name ": no active Intel(R) RAID "
1846 "controller found.\n");
1847 free_sys_dev(&list);
1848 return 2;
1849 } else if (verbose)
1850 print_found_intel_controllers(list);
1851
1852 for (hba = list; hba; hba = hba->next) {
1853 orom = find_imsm_capability(hba->type);
1854 if (!orom)
1855 fprintf(stderr, Name ": imsm capabilities not found for controller: %s (type %s)\n",
1856 hba->path, get_sys_dev_type(hba->type));
1857 else
1858 print_imsm_capability(orom);
1859 }
1860
1861 for (hba = list; hba; hba = hba->next) {
1862 printf(" I/O Controller : %s (%s)\n",
1863 hba->path, get_sys_dev_type(hba->type));
1864
1865 if (hba->type == SYS_DEV_SATA) {
1866 host_base = ahci_get_port_count(hba->path, &port_count);
1867 if (ahci_enumerate_ports(hba->path, port_count, host_base, verbose)) {
1868 if (verbose)
1869 fprintf(stderr, Name ": failed to enumerate "
1870 "ports on SATA controller at %s.", hba->pci_id);
1871 result |= 2;
1872 }
1873 }
1874 }
1875
1876 free_sys_dev(&list);
1877 return result;
1878 }
1879 #endif
1880
1881 static int match_home_imsm(struct supertype *st, char *homehost)
1882 {
1883 /* the imsm metadata format does not specify any host
1884 * identification information. We return -1 since we can never
1885 * confirm nor deny whether a given array is "meant" for this
1886 * host. We rely on compare_super and the 'family_num' fields to
1887 * exclude member disks that do not belong, and we rely on
1888 * mdadm.conf to specify the arrays that should be assembled.
1889 * Auto-assembly may still pick up "foreign" arrays.
1890 */
1891
1892 return -1;
1893 }
1894
1895 static void uuid_from_super_imsm(struct supertype *st, int uuid[4])
1896 {
1897 /* The uuid returned here is used for:
1898 * uuid to put into bitmap file (Create, Grow)
1899 * uuid for backup header when saving critical section (Grow)
1900 * comparing uuids when re-adding a device into an array
1901 * In these cases the uuid required is that of the data-array,
1902 * not the device-set.
1903 * uuid to recognise same set when adding a missing device back
1904 * to an array. This is a uuid for the device-set.
1905 *
1906 * For each of these we can make do with a truncated
1907 * or hashed uuid rather than the original, as long as
1908 * everyone agrees.
1909 * In each case the uuid required is that of the data-array,
1910 * not the device-set.
1911 */
1912 /* imsm does not track uuid's so we synthesis one using sha1 on
1913 * - The signature (Which is constant for all imsm array, but no matter)
1914 * - the orig_family_num of the container
1915 * - the index number of the volume
1916 * - the 'serial' number of the volume.
1917 * Hopefully these are all constant.
1918 */
1919 struct intel_super *super = st->sb;
1920
1921 char buf[20];
1922 struct sha1_ctx ctx;
1923 struct imsm_dev *dev = NULL;
1924 __u32 family_num;
1925
1926 /* some mdadm versions failed to set ->orig_family_num, in which
1927 * case fall back to ->family_num. orig_family_num will be
1928 * fixed up with the first metadata update.
1929 */
1930 family_num = super->anchor->orig_family_num;
1931 if (family_num == 0)
1932 family_num = super->anchor->family_num;
1933 sha1_init_ctx(&ctx);
1934 sha1_process_bytes(super->anchor->sig, MPB_SIG_LEN, &ctx);
1935 sha1_process_bytes(&family_num, sizeof(__u32), &ctx);
1936 if (super->current_vol >= 0)
1937 dev = get_imsm_dev(super, super->current_vol);
1938 if (dev) {
1939 __u32 vol = super->current_vol;
1940 sha1_process_bytes(&vol, sizeof(vol), &ctx);
1941 sha1_process_bytes(dev->volume, MAX_RAID_SERIAL_LEN, &ctx);
1942 }
1943 sha1_finish_ctx(&ctx, buf);
1944 memcpy(uuid, buf, 4*4);
1945 }
1946
1947 #if 0
1948 static void
1949 get_imsm_numerical_version(struct imsm_super *mpb, int *m, int *p)
1950 {
1951 __u8 *v = get_imsm_version(mpb);
1952 __u8 *end = mpb->sig + MAX_SIGNATURE_LENGTH;
1953 char major[] = { 0, 0, 0 };
1954 char minor[] = { 0 ,0, 0 };
1955 char patch[] = { 0, 0, 0 };
1956 char *ver_parse[] = { major, minor, patch };
1957 int i, j;
1958
1959 i = j = 0;
1960 while (*v != '\0' && v < end) {
1961 if (*v != '.' && j < 2)
1962 ver_parse[i][j++] = *v;
1963 else {
1964 i++;
1965 j = 0;
1966 }
1967 v++;
1968 }
1969
1970 *m = strtol(minor, NULL, 0);
1971 *p = strtol(patch, NULL, 0);
1972 }
1973 #endif
1974
1975 static __u32 migr_strip_blocks_resync(struct imsm_dev *dev)
1976 {
1977 /* migr_strip_size when repairing or initializing parity */
1978 struct imsm_map *map = get_imsm_map(dev, MAP_0);
1979 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
1980
1981 switch (get_imsm_raid_level(map)) {
1982 case 5:
1983 case 10:
1984 return chunk;
1985 default:
1986 return 128*1024 >> 9;
1987 }
1988 }
1989
1990 static __u32 migr_strip_blocks_rebuild(struct imsm_dev *dev)
1991 {
1992 /* migr_strip_size when rebuilding a degraded disk, no idea why
1993 * this is different than migr_strip_size_resync(), but it's good
1994 * to be compatible
1995 */
1996 struct imsm_map *map = get_imsm_map(dev, MAP_1);
1997 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
1998
1999 switch (get_imsm_raid_level(map)) {
2000 case 1:
2001 case 10:
2002 if (map->num_members % map->num_domains == 0)
2003 return 128*1024 >> 9;
2004 else
2005 return chunk;
2006 case 5:
2007 return max((__u32) 64*1024 >> 9, chunk);
2008 default:
2009 return 128*1024 >> 9;
2010 }
2011 }
2012
2013 static __u32 num_stripes_per_unit_resync(struct imsm_dev *dev)
2014 {
2015 struct imsm_map *lo = get_imsm_map(dev, MAP_0);
2016 struct imsm_map *hi = get_imsm_map(dev, MAP_1);
2017 __u32 lo_chunk = __le32_to_cpu(lo->blocks_per_strip);
2018 __u32 hi_chunk = __le32_to_cpu(hi->blocks_per_strip);
2019
2020 return max((__u32) 1, hi_chunk / lo_chunk);
2021 }
2022
2023 static __u32 num_stripes_per_unit_rebuild(struct imsm_dev *dev)
2024 {
2025 struct imsm_map *lo = get_imsm_map(dev, MAP_0);
2026 int level = get_imsm_raid_level(lo);
2027
2028 if (level == 1 || level == 10) {
2029 struct imsm_map *hi = get_imsm_map(dev, MAP_1);
2030
2031 return hi->num_domains;
2032 } else
2033 return num_stripes_per_unit_resync(dev);
2034 }
2035
2036 static __u8 imsm_num_data_members(struct imsm_dev *dev, int second_map)
2037 {
2038 /* named 'imsm_' because raid0, raid1 and raid10
2039 * counter-intuitively have the same number of data disks
2040 */
2041 struct imsm_map *map = get_imsm_map(dev, second_map);
2042
2043 switch (get_imsm_raid_level(map)) {
2044 case 0:
2045 return map->num_members;
2046 break;
2047 case 1:
2048 case 10:
2049 return map->num_members/2;
2050 case 5:
2051 return map->num_members - 1;
2052 default:
2053 dprintf("%s: unsupported raid level\n", __func__);
2054 return 0;
2055 }
2056 }
2057
2058 static __u32 parity_segment_depth(struct imsm_dev *dev)
2059 {
2060 struct imsm_map *map = get_imsm_map(dev, MAP_0);
2061 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
2062
2063 switch(get_imsm_raid_level(map)) {
2064 case 1:
2065 case 10:
2066 return chunk * map->num_domains;
2067 case 5:
2068 return chunk * map->num_members;
2069 default:
2070 return chunk;
2071 }
2072 }
2073
2074 static __u32 map_migr_block(struct imsm_dev *dev, __u32 block)
2075 {
2076 struct imsm_map *map = get_imsm_map(dev, MAP_1);
2077 __u32 chunk = __le32_to_cpu(map->blocks_per_strip);
2078 __u32 strip = block / chunk;
2079
2080 switch (get_imsm_raid_level(map)) {
2081 case 1:
2082 case 10: {
2083 __u32 vol_strip = (strip * map->num_domains) + 1;
2084 __u32 vol_stripe = vol_strip / map->num_members;
2085
2086 return vol_stripe * chunk + block % chunk;
2087 } case 5: {
2088 __u32 stripe = strip / (map->num_members - 1);
2089
2090 return stripe * chunk + block % chunk;
2091 }
2092 default:
2093 return 0;
2094 }
2095 }
2096
2097 static __u64 blocks_per_migr_unit(struct intel_super *super,
2098 struct imsm_dev *dev)
2099 {
2100 /* calculate the conversion factor between per member 'blocks'
2101 * (md/{resync,rebuild}_start) and imsm migration units, return
2102 * 0 for the 'not migrating' and 'unsupported migration' cases
2103 */
2104 if (!dev->vol.migr_state)
2105 return 0;
2106
2107 switch (migr_type(dev)) {
2108 case MIGR_GEN_MIGR: {
2109 struct migr_record *migr_rec = super->migr_rec;
2110 return __le32_to_cpu(migr_rec->blocks_per_unit);
2111 }
2112 case MIGR_VERIFY:
2113 case MIGR_REPAIR:
2114 case MIGR_INIT: {
2115 struct imsm_map *map = get_imsm_map(dev, MAP_0);
2116 __u32 stripes_per_unit;
2117 __u32 blocks_per_unit;
2118 __u32 parity_depth;
2119 __u32 migr_chunk;
2120 __u32 block_map;
2121 __u32 block_rel;
2122 __u32 segment;
2123 __u32 stripe;
2124 __u8 disks;
2125
2126 /* yes, this is really the translation of migr_units to
2127 * per-member blocks in the 'resync' case
2128 */
2129 stripes_per_unit = num_stripes_per_unit_resync(dev);
2130 migr_chunk = migr_strip_blocks_resync(dev);
2131 disks = imsm_num_data_members(dev, MAP_0);
2132 blocks_per_unit = stripes_per_unit * migr_chunk * disks;
2133 stripe = __le16_to_cpu(map->blocks_per_strip) * disks;
2134 segment = blocks_per_unit / stripe;
2135 block_rel = blocks_per_unit - segment * stripe;
2136 parity_depth = parity_segment_depth(dev);
2137 block_map = map_migr_block(dev, block_rel);
2138 return block_map + parity_depth * segment;
2139 }
2140 case MIGR_REBUILD: {
2141 __u32 stripes_per_unit;
2142 __u32 migr_chunk;
2143
2144 stripes_per_unit = num_stripes_per_unit_rebuild(dev);
2145 migr_chunk = migr_strip_blocks_rebuild(dev);
2146 return migr_chunk * stripes_per_unit;
2147 }
2148 case MIGR_STATE_CHANGE:
2149 default:
2150 return 0;
2151 }
2152 }
2153
2154 static int imsm_level_to_layout(int level)
2155 {
2156 switch (level) {
2157 case 0:
2158 case 1:
2159 return 0;
2160 case 5:
2161 case 6:
2162 return ALGORITHM_LEFT_ASYMMETRIC;
2163 case 10:
2164 return 0x102;
2165 }
2166 return UnSet;
2167 }
2168
2169 /*******************************************************************************
2170 * Function: read_imsm_migr_rec
2171 * Description: Function reads imsm migration record from last sector of disk
2172 * Parameters:
2173 * fd : disk descriptor
2174 * super : metadata info
2175 * Returns:
2176 * 0 : success,
2177 * -1 : fail
2178 ******************************************************************************/
2179 static int read_imsm_migr_rec(int fd, struct intel_super *super)
2180 {
2181 int ret_val = -1;
2182 unsigned long long dsize;
2183
2184 get_dev_size(fd, NULL, &dsize);
2185 if (lseek64(fd, dsize - MIGR_REC_POSITION, SEEK_SET) < 0) {
2186 fprintf(stderr,
2187 Name ": Cannot seek to anchor block: %s\n",
2188 strerror(errno));
2189 goto out;
2190 }
2191 if (read(fd, super->migr_rec_buf, MIGR_REC_BUF_SIZE) !=
2192 MIGR_REC_BUF_SIZE) {
2193 fprintf(stderr,
2194 Name ": Cannot read migr record block: %s\n",
2195 strerror(errno));
2196 goto out;
2197 }
2198 ret_val = 0;
2199
2200 out:
2201 return ret_val;
2202 }
2203
2204 static struct imsm_dev *imsm_get_device_during_migration(
2205 struct intel_super *super)
2206 {
2207
2208 struct intel_dev *dv;
2209
2210 for (dv = super->devlist; dv; dv = dv->next) {
2211 if (is_gen_migration(dv->dev))
2212 return dv->dev;
2213 }
2214 return NULL;
2215 }
2216
2217 /*******************************************************************************
2218 * Function: load_imsm_migr_rec
2219 * Description: Function reads imsm migration record (it is stored at the last
2220 * sector of disk)
2221 * Parameters:
2222 * super : imsm internal array info
2223 * info : general array info
2224 * Returns:
2225 * 0 : success
2226 * -1 : fail
2227 * -2 : no migration in progress
2228 ******************************************************************************/
2229 static int load_imsm_migr_rec(struct intel_super *super, struct mdinfo *info)
2230 {
2231 struct mdinfo *sd;
2232 struct dl *dl = NULL;
2233 char nm[30];
2234 int retval = -1;
2235 int fd = -1;
2236 struct imsm_dev *dev;
2237 struct imsm_map *map = NULL;
2238 int slot = -1;
2239
2240 /* find map under migration */
2241 dev = imsm_get_device_during_migration(super);
2242 /* nothing to load,no migration in progress?
2243 */
2244 if (dev == NULL)
2245 return -2;
2246 map = get_imsm_map(dev, MAP_0);
2247
2248 if (info) {
2249 for (sd = info->devs ; sd ; sd = sd->next) {
2250 /* skip spare and failed disks
2251 */
2252 if (sd->disk.raid_disk < 0)
2253 continue;
2254 /* read only from one of the first two slots */
2255 if (map)
2256 slot = get_imsm_disk_slot(map,
2257 sd->disk.raid_disk);
2258 if ((map == NULL) || (slot > 1) || (slot < 0))
2259 continue;
2260
2261 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
2262 fd = dev_open(nm, O_RDONLY);
2263 if (fd >= 0)
2264 break;
2265 }
2266 }
2267 if (fd < 0) {
2268 for (dl = super->disks; dl; dl = dl->next) {
2269 /* skip spare and failed disks
2270 */
2271 if (dl->index < 0)
2272 continue;
2273 /* read only from one of the first two slots */
2274 if (map)
2275 slot = get_imsm_disk_slot(map, dl->index);
2276 if ((map == NULL) || (slot > 1) || (slot < 0))
2277 continue;
2278 sprintf(nm, "%d:%d", dl->major, dl->minor);
2279 fd = dev_open(nm, O_RDONLY);
2280 if (fd >= 0)
2281 break;
2282 }
2283 }
2284 if (fd < 0)
2285 goto out;
2286 retval = read_imsm_migr_rec(fd, super);
2287
2288 out:
2289 if (fd >= 0)
2290 close(fd);
2291 return retval;
2292 }
2293
2294 #ifndef MDASSEMBLE
2295 /*******************************************************************************
2296 * function: imsm_create_metadata_checkpoint_update
2297 * Description: It creates update for checkpoint change.
2298 * Parameters:
2299 * super : imsm internal array info
2300 * u : pointer to prepared update
2301 * Returns:
2302 * Uptate length.
2303 * If length is equal to 0, input pointer u contains no update
2304 ******************************************************************************/
2305 static int imsm_create_metadata_checkpoint_update(
2306 struct intel_super *super,
2307 struct imsm_update_general_migration_checkpoint **u)
2308 {
2309
2310 int update_memory_size = 0;
2311
2312 dprintf("imsm_create_metadata_checkpoint_update(enter)\n");
2313
2314 if (u == NULL)
2315 return 0;
2316 *u = NULL;
2317
2318 /* size of all update data without anchor */
2319 update_memory_size =
2320 sizeof(struct imsm_update_general_migration_checkpoint);
2321
2322 *u = calloc(1, update_memory_size);
2323 if (*u == NULL) {
2324 dprintf("error: cannot get memory for "
2325 "imsm_create_metadata_checkpoint_update update\n");
2326 return 0;
2327 }
2328 (*u)->type = update_general_migration_checkpoint;
2329 (*u)->curr_migr_unit = __le32_to_cpu(super->migr_rec->curr_migr_unit);
2330 dprintf("imsm_create_metadata_checkpoint_update: prepared for %u\n",
2331 (*u)->curr_migr_unit);
2332
2333 return update_memory_size;
2334 }
2335
2336
2337 static void imsm_update_metadata_locally(struct supertype *st,
2338 void *buf, int len);
2339
2340 /*******************************************************************************
2341 * Function: write_imsm_migr_rec
2342 * Description: Function writes imsm migration record
2343 * (at the last sector of disk)
2344 * Parameters:
2345 * super : imsm internal array info
2346 * Returns:
2347 * 0 : success
2348 * -1 : if fail
2349 ******************************************************************************/
2350 static int write_imsm_migr_rec(struct supertype *st)
2351 {
2352 struct intel_super *super = st->sb;
2353 unsigned long long dsize;
2354 char nm[30];
2355 int fd = -1;
2356 int retval = -1;
2357 struct dl *sd;
2358 int len;
2359 struct imsm_update_general_migration_checkpoint *u;
2360 struct imsm_dev *dev;
2361 struct imsm_map *map = NULL;
2362
2363 /* find map under migration */
2364 dev = imsm_get_device_during_migration(super);
2365 /* if no migration, write buffer anyway to clear migr_record
2366 * on disk based on first available device
2367 */
2368 if (dev == NULL)
2369 dev = get_imsm_dev(super, super->current_vol < 0 ? 0 :
2370 super->current_vol);
2371
2372 map = get_imsm_map(dev, MAP_0);
2373
2374 for (sd = super->disks ; sd ; sd = sd->next) {
2375 int slot = -1;
2376
2377 /* skip failed and spare devices */
2378 if (sd->index < 0)
2379 continue;
2380 /* write to 2 first slots only */
2381 if (map)
2382 slot = get_imsm_disk_slot(map, sd->index);
2383 if ((map == NULL) || (slot > 1) || (slot < 0))
2384 continue;
2385
2386 sprintf(nm, "%d:%d", sd->major, sd->minor);
2387 fd = dev_open(nm, O_RDWR);
2388 if (fd < 0)
2389 continue;
2390 get_dev_size(fd, NULL, &dsize);
2391 if (lseek64(fd, dsize - MIGR_REC_POSITION, SEEK_SET) < 0) {
2392 fprintf(stderr,
2393 Name ": Cannot seek to anchor block: %s\n",
2394 strerror(errno));
2395 goto out;
2396 }
2397 if (write(fd, super->migr_rec_buf, MIGR_REC_BUF_SIZE) !=
2398 MIGR_REC_BUF_SIZE) {
2399 fprintf(stderr,
2400 Name ": Cannot write migr record block: %s\n",
2401 strerror(errno));
2402 goto out;
2403 }
2404 close(fd);
2405 fd = -1;
2406 }
2407 /* update checkpoint information in metadata */
2408 len = imsm_create_metadata_checkpoint_update(super, &u);
2409
2410 if (len <= 0) {
2411 dprintf("imsm: Cannot prepare update\n");
2412 goto out;
2413 }
2414 /* update metadata locally */
2415 imsm_update_metadata_locally(st, u, len);
2416 /* and possibly remotely */
2417 if (st->update_tail) {
2418 append_metadata_update(st, u, len);
2419 /* during reshape we do all work inside metadata handler
2420 * manage_reshape(), so metadata update has to be triggered
2421 * insida it
2422 */
2423 flush_metadata_updates(st);
2424 st->update_tail = &st->updates;
2425 } else
2426 free(u);
2427
2428 retval = 0;
2429 out:
2430 if (fd >= 0)
2431 close(fd);
2432 return retval;
2433 }
2434 #endif /* MDASSEMBLE */
2435
2436 /* spare/missing disks activations are not allowe when
2437 * array/container performs reshape operation, because
2438 * all arrays in container works on the same disks set
2439 */
2440 int imsm_reshape_blocks_arrays_changes(struct intel_super *super)
2441 {
2442 int rv = 0;
2443 struct intel_dev *i_dev;
2444 struct imsm_dev *dev;
2445
2446 /* check whole container
2447 */
2448 for (i_dev = super->devlist; i_dev; i_dev = i_dev->next) {
2449 dev = i_dev->dev;
2450 if (is_gen_migration(dev)) {
2451 /* No repair during any migration in container
2452 */
2453 rv = 1;
2454 break;
2455 }
2456 }
2457 return rv;
2458 }
2459 static unsigned long long imsm_component_size_aligment_check(int level,
2460 int chunk_size,
2461 unsigned long long component_size)
2462 {
2463 unsigned int component_size_alligment;
2464
2465 /* check component size aligment
2466 */
2467 component_size_alligment = component_size % (chunk_size/512);
2468
2469 dprintf("imsm_component_size_aligment_check(Level: %i, "
2470 "chunk_size = %i, component_size = %llu), "
2471 "component_size_alligment = %u\n",
2472 level, chunk_size, component_size,
2473 component_size_alligment);
2474
2475 if (component_size_alligment && (level != 1) && (level != UnSet)) {
2476 dprintf("imsm: reported component size alligned from %llu ",
2477 component_size);
2478 component_size -= component_size_alligment;
2479 dprintf("to %llu (%i).\n",
2480 component_size, component_size_alligment);
2481 }
2482
2483 return component_size;
2484 }
2485
2486 static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info, char *dmap)
2487 {
2488 struct intel_super *super = st->sb;
2489 struct migr_record *migr_rec = super->migr_rec;
2490 struct imsm_dev *dev = get_imsm_dev(super, super->current_vol);
2491 struct imsm_map *map = get_imsm_map(dev, MAP_0);
2492 struct imsm_map *prev_map = get_imsm_map(dev, MAP_1);
2493 struct imsm_map *map_to_analyse = map;
2494 struct dl *dl;
2495 char *devname;
2496 int map_disks = info->array.raid_disks;
2497
2498 memset(info, 0, sizeof(*info));
2499 if (prev_map)
2500 map_to_analyse = prev_map;
2501
2502 dl = super->current_disk;
2503
2504 info->container_member = super->current_vol;
2505 info->array.raid_disks = map->num_members;
2506 info->array.level = get_imsm_raid_level(map_to_analyse);
2507 info->array.layout = imsm_level_to_layout(info->array.level);
2508 info->array.md_minor = -1;
2509 info->array.ctime = 0;
2510 info->array.utime = 0;
2511 info->array.chunk_size =
2512 __le16_to_cpu(map_to_analyse->blocks_per_strip) << 9;
2513 info->array.state = !dev->vol.dirty;
2514 info->custom_array_size = __le32_to_cpu(dev->size_high);
2515 info->custom_array_size <<= 32;
2516 info->custom_array_size |= __le32_to_cpu(dev->size_low);
2517 info->recovery_blocked = imsm_reshape_blocks_arrays_changes(st->sb);
2518
2519 if (is_gen_migration(dev)) {
2520 info->reshape_active = 1;
2521 info->new_level = get_imsm_raid_level(map);
2522 info->new_layout = imsm_level_to_layout(info->new_level);
2523 info->new_chunk = __le16_to_cpu(map->blocks_per_strip) << 9;
2524 info->delta_disks = map->num_members - prev_map->num_members;
2525 if (info->delta_disks) {
2526 /* this needs to be applied to every array
2527 * in the container.
2528 */
2529 info->reshape_active = CONTAINER_RESHAPE;
2530 }
2531 /* We shape information that we give to md might have to be
2532 * modify to cope with md's requirement for reshaping arrays.
2533 * For example, when reshaping a RAID0, md requires it to be
2534 * presented as a degraded RAID4.
2535 * Also if a RAID0 is migrating to a RAID5 we need to specify
2536 * the array as already being RAID5, but the 'before' layout
2537 * is a RAID4-like layout.
2538 */
2539 switch (info->array.level) {
2540 case 0:
2541 switch(info->new_level) {
2542 case 0:
2543 /* conversion is happening as RAID4 */
2544 info->array.level = 4;
2545 info->array.raid_disks += 1;
2546 break;
2547 case 5:
2548 /* conversion is happening as RAID5 */
2549 info->array.level = 5;
2550 info->array.layout = ALGORITHM_PARITY_N;
2551 info->delta_disks -= 1;
2552 break;
2553 default:
2554 /* FIXME error message */
2555 info->array.level = UnSet;
2556 break;
2557 }
2558 break;
2559 }
2560 } else {
2561 info->new_level = UnSet;
2562 info->new_layout = UnSet;
2563 info->new_chunk = info->array.chunk_size;
2564 info->delta_disks = 0;
2565 }
2566
2567 if (dl) {
2568 info->disk.major = dl->major;
2569 info->disk.minor = dl->minor;
2570 info->disk.number = dl->index;
2571 info->disk.raid_disk = get_imsm_disk_slot(map_to_analyse,
2572 dl->index);
2573 }
2574
2575 info->data_offset = pba_of_lba0(map_to_analyse);
2576 info->component_size = blocks_per_member(map_to_analyse);
2577
2578 info->component_size = imsm_component_size_aligment_check(
2579 info->array.level,
2580 info->array.chunk_size,
2581 info->component_size);
2582
2583 memset(info->uuid, 0, sizeof(info->uuid));
2584 info->recovery_start = MaxSector;
2585
2586 info->reshape_progress = 0;
2587 info->resync_start = MaxSector;
2588 if ((map_to_analyse->map_state == IMSM_T_STATE_UNINITIALIZED ||
2589 dev->vol.dirty) &&
2590 imsm_reshape_blocks_arrays_changes(super) == 0) {
2591 info->resync_start = 0;
2592 }
2593 if (dev->vol.migr_state) {
2594 switch (migr_type(dev)) {
2595 case MIGR_REPAIR:
2596 case MIGR_INIT: {
2597 __u64 blocks_per_unit = blocks_per_migr_unit(super,
2598 dev);
2599 __u64 units = __le32_to_cpu(dev->vol.curr_migr_unit);
2600
2601 info->resync_start = blocks_per_unit * units;
2602 break;
2603 }
2604 case MIGR_GEN_MIGR: {
2605 __u64 blocks_per_unit = blocks_per_migr_unit(super,
2606 dev);
2607 __u64 units = __le32_to_cpu(migr_rec->curr_migr_unit);
2608 unsigned long long array_blocks;
2609 int used_disks;
2610
2611 if (__le32_to_cpu(migr_rec->ascending_migr) &&
2612 (units <
2613 (__le32_to_cpu(migr_rec->num_migr_units)-1)) &&
2614 (super->migr_rec->rec_status ==
2615 __cpu_to_le32(UNIT_SRC_IN_CP_AREA)))
2616 units++;
2617
2618 info->reshape_progress = blocks_per_unit * units;
2619
2620 dprintf("IMSM: General Migration checkpoint : %llu "
2621 "(%llu) -> read reshape progress : %llu\n",
2622 (unsigned long long)units,
2623 (unsigned long long)blocks_per_unit,
2624 info->reshape_progress);
2625
2626 used_disks = imsm_num_data_members(dev, MAP_1);
2627 if (used_disks > 0) {
2628 array_blocks = blocks_per_member(map) *
2629 used_disks;
2630 /* round array size down to closest MB
2631 */
2632 info->custom_array_size = (array_blocks
2633 >> SECT_PER_MB_SHIFT)
2634 << SECT_PER_MB_SHIFT;
2635 }
2636 }
2637 case MIGR_VERIFY:
2638 /* we could emulate the checkpointing of
2639 * 'sync_action=check' migrations, but for now
2640 * we just immediately complete them
2641 */
2642 case MIGR_REBUILD:
2643 /* this is handled by container_content_imsm() */
2644 case MIGR_STATE_CHANGE:
2645 /* FIXME handle other migrations */
2646 default:
2647 /* we are not dirty, so... */
2648 info->resync_start = MaxSector;
2649 }
2650 }
2651
2652 strncpy(info->name, (char *) dev->volume, MAX_RAID_SERIAL_LEN);
2653 info->name[MAX_RAID_SERIAL_LEN] = 0;
2654
2655 info->array.major_version = -1;
2656 info->array.minor_version = -2;
2657 devname = devnum2devname(st->container_dev);
2658 *info->text_version = '\0';
2659 if (devname)
2660 sprintf(info->text_version, "/%s/%d", devname, info->container_member);
2661 free(devname);
2662 info->safe_mode_delay = 4000; /* 4 secs like the Matrix driver */
2663 uuid_from_super_imsm(st, info->uuid);
2664
2665 if (dmap) {
2666 int i, j;
2667 for (i=0; i<map_disks; i++) {
2668 dmap[i] = 0;
2669 if (i < info->array.raid_disks) {
2670 struct imsm_disk *dsk;
2671 j = get_imsm_disk_idx(dev, i, MAP_X);
2672 dsk = get_imsm_disk(super, j);
2673 if (dsk && (dsk->status & CONFIGURED_DISK))
2674 dmap[i] = 1;
2675 }
2676 }
2677 }
2678 }
2679
2680 static __u8 imsm_check_degraded(struct intel_super *super, struct imsm_dev *dev,
2681 int failed, int look_in_map);
2682
2683 static int imsm_count_failed(struct intel_super *super, struct imsm_dev *dev,
2684 int look_in_map);
2685
2686
2687 #ifndef MDASSEMBLE
2688 static void manage_second_map(struct intel_super *super, struct imsm_dev *dev)
2689 {
2690 if (is_gen_migration(dev)) {
2691 int failed;
2692 __u8 map_state;
2693 struct imsm_map *map2 = get_imsm_map(dev, MAP_1);
2694
2695 failed = imsm_count_failed(super, dev, MAP_1);
2696 map_state = imsm_check_degraded(super, dev, failed, MAP_1);
2697 if (map2->map_state != map_state) {
2698 map2->map_state = map_state;
2699 super->updates_pending++;
2700 }
2701 }
2702 }
2703 #endif
2704
2705 static struct imsm_disk *get_imsm_missing(struct intel_super *super, __u8 index)
2706 {
2707 struct dl *d;
2708
2709 for (d = super->missing; d; d = d->next)
2710 if (d->index == index)
2711 return &d->disk;
2712 return NULL;
2713 }
2714
2715 static void getinfo_super_imsm(struct supertype *st, struct mdinfo *info, char *map)
2716 {
2717 struct intel_super *super = st->sb;
2718 struct imsm_disk *disk;
2719 int map_disks = info->array.raid_disks;
2720 int max_enough = -1;
2721 int i;
2722 struct imsm_super *mpb;
2723
2724 if (super->current_vol >= 0) {
2725 getinfo_super_imsm_volume(st, info, map);
2726 return;
2727 }
2728 memset(info, 0, sizeof(*info));
2729
2730 /* Set raid_disks to zero so that Assemble will always pull in valid
2731 * spares
2732 */
2733 info->array.raid_disks = 0;
2734 info->array.level = LEVEL_CONTAINER;
2735 info->array.layout = 0;
2736 info->array.md_minor = -1;
2737 info->array.ctime = 0; /* N/A for imsm */
2738 info->array.utime = 0;
2739 info->array.chunk_size = 0;
2740
2741 info->disk.major = 0;
2742 info->disk.minor = 0;
2743 info->disk.raid_disk = -1;
2744 info->reshape_active = 0;
2745 info->array.major_version = -1;
2746 info->array.minor_version = -2;
2747 strcpy(info->text_version, "imsm");
2748 info->safe_mode_delay = 0;
2749 info->disk.number = -1;
2750 info->disk.state = 0;
2751 info->name[0] = 0;
2752 info->recovery_start = MaxSector;
2753 info->recovery_blocked = imsm_reshape_blocks_arrays_changes(st->sb);
2754
2755 /* do we have the all the insync disks that we expect? */
2756 mpb = super->anchor;
2757
2758 for (i = 0; i < mpb->num_raid_devs; i++) {
2759 struct imsm_dev *dev = get_imsm_dev(super, i);
2760 int failed, enough, j, missing = 0;
2761 struct imsm_map *map;
2762 __u8 state;
2763
2764 failed = imsm_count_failed(super, dev, MAP_0);
2765 state = imsm_check_degraded(super, dev, failed, MAP_0);
2766 map = get_imsm_map(dev, MAP_0);
2767
2768 /* any newly missing disks?
2769 * (catches single-degraded vs double-degraded)
2770 */
2771 for (j = 0; j < map->num_members; j++) {
2772 __u32 ord = get_imsm_ord_tbl_ent(dev, j, MAP_0);
2773 __u32 idx = ord_to_idx(ord);
2774
2775 if (!(ord & IMSM_ORD_REBUILD) &&
2776 get_imsm_missing(super, idx)) {
2777 missing = 1;
2778 break;
2779 }
2780 }
2781
2782 if (state == IMSM_T_STATE_FAILED)
2783 enough = -1;
2784 else if (state == IMSM_T_STATE_DEGRADED &&
2785 (state != map->map_state || missing))
2786 enough = 0;
2787 else /* we're normal, or already degraded */
2788 enough = 1;
2789 if (is_gen_migration(dev) && missing) {
2790 /* during general migration we need all disks
2791 * that process is running on.
2792 * No new missing disk is allowed.
2793 */
2794 max_enough = -1;
2795 enough = -1;
2796 /* no more checks necessary
2797 */
2798 break;
2799 }
2800 /* in the missing/failed disk case check to see
2801 * if at least one array is runnable
2802 */
2803 max_enough = max(max_enough, enough);
2804 }
2805 dprintf("%s: enough: %d\n", __func__, max_enough);
2806 info->container_enough = max_enough;
2807
2808 if (super->disks) {
2809 __u32 reserved = imsm_reserved_sectors(super, super->disks);
2810
2811 disk = &super->disks->disk;
2812 info->data_offset = total_blocks(&super->disks->disk) - reserved;
2813 info->component_size = reserved;
2814 info->disk.state = is_configured(disk) ? (1 << MD_DISK_ACTIVE) : 0;
2815 /* we don't change info->disk.raid_disk here because
2816 * this state will be finalized in mdmon after we have
2817 * found the 'most fresh' version of the metadata
2818 */
2819 info->disk.state |= is_failed(disk) ? (1 << MD_DISK_FAULTY) : 0;
2820 info->disk.state |= is_spare(disk) ? 0 : (1 << MD_DISK_SYNC);
2821 }
2822
2823 /* only call uuid_from_super_imsm when this disk is part of a populated container,
2824 * ->compare_super may have updated the 'num_raid_devs' field for spares
2825 */
2826 if (info->disk.state & (1 << MD_DISK_SYNC) || super->anchor->num_raid_devs)
2827 uuid_from_super_imsm(st, info->uuid);
2828 else
2829 memcpy(info->uuid, uuid_zero, sizeof(uuid_zero));
2830
2831 /* I don't know how to compute 'map' on imsm, so use safe default */
2832 if (map) {
2833 int i;
2834 for (i = 0; i < map_disks; i++)
2835 map[i] = 1;
2836 }
2837
2838 }
2839
2840 /* allocates memory and fills disk in mdinfo structure
2841 * for each disk in array */
2842 struct mdinfo *getinfo_super_disks_imsm(struct supertype *st)
2843 {
2844 struct mdinfo *mddev = NULL;
2845 struct intel_super *super = st->sb;
2846 struct imsm_disk *disk;
2847 int count = 0;
2848 struct dl *dl;
2849 if (!super || !super->disks)
2850 return NULL;
2851 dl = super->disks;
2852 mddev = malloc(sizeof(*mddev));
2853 if (!mddev) {
2854 fprintf(stderr, Name ": Failed to allocate memory.\n");
2855 return NULL;
2856 }
2857 memset(mddev, 0, sizeof(*mddev));
2858 while (dl) {
2859 struct mdinfo *tmp;
2860 disk = &dl->disk;
2861 tmp = malloc(sizeof(*tmp));
2862 if (!tmp) {
2863 fprintf(stderr, Name ": Failed to allocate memory.\n");
2864 if (mddev)
2865 sysfs_free(mddev);
2866 return NULL;
2867 }
2868 memset(tmp, 0, sizeof(*tmp));
2869 if (mddev->devs)
2870 tmp->next = mddev->devs;
2871 mddev->devs = tmp;
2872 tmp->disk.number = count++;
2873 tmp->disk.major = dl->major;
2874 tmp->disk.minor = dl->minor;
2875 tmp->disk.state = is_configured(disk) ?
2876 (1 << MD_DISK_ACTIVE) : 0;
2877 tmp->disk.state |= is_failed(disk) ? (1 << MD_DISK_FAULTY) : 0;
2878 tmp->disk.state |= is_spare(disk) ? 0 : (1 << MD_DISK_SYNC);
2879 tmp->disk.raid_disk = -1;
2880 dl = dl->next;
2881 }
2882 return mddev;
2883 }
2884
2885 static int update_super_imsm(struct supertype *st, struct mdinfo *info,
2886 char *update, char *devname, int verbose,
2887 int uuid_set, char *homehost)
2888 {
2889 /* For 'assemble' and 'force' we need to return non-zero if any
2890 * change was made. For others, the return value is ignored.
2891 * Update options are:
2892 * force-one : This device looks a bit old but needs to be included,
2893 * update age info appropriately.
2894 * assemble: clear any 'faulty' flag to allow this device to
2895 * be assembled.
2896 * force-array: Array is degraded but being forced, mark it clean
2897 * if that will be needed to assemble it.
2898 *
2899 * newdev: not used ????
2900 * grow: Array has gained a new device - this is currently for
2901 * linear only
2902 * resync: mark as dirty so a resync will happen.
2903 * name: update the name - preserving the homehost
2904 * uuid: Change the uuid of the array to match watch is given
2905 *
2906 * Following are not relevant for this imsm:
2907 * sparc2.2 : update from old dodgey metadata
2908 * super-minor: change the preferred_minor number
2909 * summaries: update redundant counters.
2910 * homehost: update the recorded homehost
2911 * _reshape_progress: record new reshape_progress position.
2912 */
2913 int rv = 1;
2914 struct intel_super *super = st->sb;
2915 struct imsm_super *mpb;
2916
2917 /* we can only update container info */
2918 if (!super || super->current_vol >= 0 || !super->anchor)
2919 return 1;
2920
2921 mpb = super->anchor;
2922
2923 if (strcmp(update, "uuid") == 0) {
2924 /* We take this to mean that the family_num should be updated.
2925 * However that is much smaller than the uuid so we cannot really
2926 * allow an explicit uuid to be given. And it is hard to reliably
2927 * know if one was.
2928 * So if !uuid_set we know the current uuid is random and just used
2929 * the first 'int' and copy it to the other 3 positions.
2930 * Otherwise we require the 4 'int's to be the same as would be the
2931 * case if we are using a random uuid. So an explicit uuid will be
2932 * accepted as long as all for ints are the same... which shouldn't hurt
2933 */
2934 if (!uuid_set) {
2935 info->uuid[1] = info->uuid[2] = info->uuid[3] = info->uuid[0];
2936 rv = 0;
2937 } else {
2938 if (info->uuid[0] != info->uuid[1] ||
2939 info->uuid[1] != info->uuid[2] ||
2940 info->uuid[2] != info->uuid[3])
2941 rv = -1;
2942 else
2943 rv = 0;
2944 }
2945 if (rv == 0)
2946 mpb->orig_family_num = info->uuid[0];
2947 } else if (strcmp(update, "assemble") == 0)
2948 rv = 0;
2949 else
2950 rv = -1;
2951
2952 /* successful update? recompute checksum */
2953 if (rv == 0)
2954 mpb->check_sum = __le32_to_cpu(__gen_imsm_checksum(mpb));
2955
2956 return rv;
2957 }
2958
2959 static size_t disks_to_mpb_size(int disks)
2960 {
2961 size_t size;
2962
2963 size = sizeof(struct imsm_super);
2964 size += (disks - 1) * sizeof(struct imsm_disk);
2965 size += 2 * sizeof(struct imsm_dev);
2966 /* up to 2 maps per raid device (-2 for imsm_maps in imsm_dev */
2967 size += (4 - 2) * sizeof(struct imsm_map);
2968 /* 4 possible disk_ord_tbl's */
2969 size += 4 * (disks - 1) * sizeof(__u32);
2970
2971 return size;
2972 }
2973
2974 static __u64 avail_size_imsm(struct supertype *st, __u64 devsize)
2975 {
2976 if (devsize < (MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS))
2977 return 0;
2978
2979 return devsize - (MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS);
2980 }
2981
2982 static void free_devlist(struct intel_super *super)
2983 {
2984 struct intel_dev *dv;
2985
2986 while (super->devlist) {
2987 dv = super->devlist->next;
2988 free(super->devlist->dev);
2989 free(super->devlist);
2990 super->devlist = dv;
2991 }
2992 }
2993
2994 static void imsm_copy_dev(struct imsm_dev *dest, struct imsm_dev *src)
2995 {
2996 memcpy(dest, src, sizeof_imsm_dev(src, 0));
2997 }
2998
2999 static int compare_super_imsm(struct supertype *st, struct supertype *tst)
3000 {
3001 /*
3002 * return:
3003 * 0 same, or first was empty, and second was copied
3004 * 1 second had wrong number
3005 * 2 wrong uuid
3006 * 3 wrong other info
3007 */
3008 struct intel_super *first = st->sb;
3009 struct intel_super *sec = tst->sb;
3010
3011 if (!first) {
3012 st->sb = tst->sb;
3013 tst->sb = NULL;
3014 return 0;
3015 }
3016 /* in platform dependent environment test if the disks
3017 * use the same Intel hba
3018 */
3019 if (!check_env("IMSM_NO_PLATFORM")) {
3020 if (!first->hba || !sec->hba ||
3021 (first->hba->type != sec->hba->type)) {
3022 fprintf(stderr,
3023 "HBAs of devices does not match %s != %s\n",
3024 first->hba ? get_sys_dev_type(first->hba->type) : NULL,
3025 sec->hba ? get_sys_dev_type(sec->hba->type) : NULL);
3026 return 3;
3027 }
3028 }
3029
3030 /* if an anchor does not have num_raid_devs set then it is a free
3031 * floating spare
3032 */
3033 if (first->anchor->num_raid_devs > 0 &&
3034 sec->anchor->num_raid_devs > 0) {
3035 /* Determine if these disks might ever have been
3036 * related. Further disambiguation can only take place
3037 * in load_super_imsm_all
3038 */
3039 __u32 first_family = first->anchor->orig_family_num;
3040 __u32 sec_family = sec->anchor->orig_family_num;
3041
3042 if (memcmp(first->anchor->sig, sec->anchor->sig,
3043 MAX_SIGNATURE_LENGTH) != 0)
3044 return 3;
3045
3046 if (first_family == 0)
3047 first_family = first->anchor->family_num;
3048 if (sec_family == 0)
3049 sec_family = sec->anchor->family_num;
3050
3051 if (first_family != sec_family)
3052 return 3;
3053
3054 }
3055
3056
3057 /* if 'first' is a spare promote it to a populated mpb with sec's
3058 * family number
3059 */
3060 if (first->anchor->num_raid_devs == 0 &&
3061 sec->anchor->num_raid_devs > 0) {
3062 int i;
3063 struct intel_dev *dv;
3064 struct imsm_dev *dev;
3065
3066 /* we need to copy raid device info from sec if an allocation
3067 * fails here we don't associate the spare
3068 */
3069 for (i = 0; i < sec->anchor->num_raid_devs; i++) {
3070 dv = malloc(sizeof(*dv));
3071 if (!dv)
3072 break;
3073 dev = malloc(sizeof_imsm_dev(get_imsm_dev(sec, i), 1));
3074 if (!dev) {
3075 free(dv);
3076 break;
3077 }
3078 dv->dev = dev;
3079 dv->index = i;
3080 dv->next = first->devlist;
3081 first->devlist = dv;
3082 }
3083 if (i < sec->anchor->num_raid_devs) {
3084 /* allocation failure */
3085 free_devlist(first);
3086 fprintf(stderr, "imsm: failed to associate spare\n");
3087 return 3;
3088 }
3089 first->anchor->num_raid_devs = sec->anchor->num_raid_devs;
3090 first->anchor->orig_family_num = sec->anchor->orig_family_num;
3091 first->anchor->family_num = sec->anchor->family_num;
3092 memcpy(first->anchor->sig, sec->anchor->sig, MAX_SIGNATURE_LENGTH);
3093 for (i = 0; i < sec->anchor->num_raid_devs; i++)
3094 imsm_copy_dev(get_imsm_dev(first, i), get_imsm_dev(sec, i));
3095 }
3096
3097 return 0;
3098 }
3099
3100 static void fd2devname(int fd, char *name)
3101 {
3102 struct stat st;
3103 char path[256];
3104 char dname[PATH_MAX];
3105 char *nm;
3106 int rv;
3107
3108 name[0] = '\0';
3109 if (fstat(fd, &st) != 0)
3110 return;
3111 sprintf(path, "/sys/dev/block/%d:%d",
3112 major(st.st_rdev), minor(st.st_rdev));
3113
3114 rv = readlink(path, dname, sizeof(dname)-1);
3115 if (rv <= 0)
3116 return;
3117
3118 dname[rv] = '\0';
3119 nm = strrchr(dname, '/');
3120 if (nm) {
3121 nm++;
3122 snprintf(name, MAX_RAID_SERIAL_LEN, "/dev/%s", nm);
3123 }
3124 }
3125
3126 extern int scsi_get_serial(int fd, void *buf, size_t buf_len);
3127
3128 static int imsm_read_serial(int fd, char *devname,
3129 __u8 serial[MAX_RAID_SERIAL_LEN])
3130 {
3131 unsigned char scsi_serial[255];
3132 int rv;
3133 int rsp_len;
3134 int len;
3135 char *dest;
3136 char *src;
3137 char *rsp_buf;
3138 int i;
3139
3140 memset(scsi_serial, 0, sizeof(scsi_serial));
3141
3142 rv = scsi_get_serial(fd, scsi_serial, sizeof(scsi_serial));
3143
3144 if (rv && check_env("IMSM_DEVNAME_AS_SERIAL")) {
3145 memset(serial, 0, MAX_RAID_SERIAL_LEN);
3146 fd2devname(fd, (char *) serial);
3147 return 0;
3148 }
3149
3150 if (rv != 0) {
3151 if (devname)
3152 fprintf(stderr,
3153 Name ": Failed to retrieve serial for %s\n",
3154 devname);
3155 return rv;
3156 }
3157
3158 rsp_len = scsi_serial[3];
3159 if (!rsp_len) {
3160 if (devname)
3161 fprintf(stderr,
3162 Name ": Failed to retrieve serial for %s\n",
3163 devname);
3164 return 2;
3165 }
3166 rsp_buf = (char *) &scsi_serial[4];
3167
3168 /* trim all whitespace and non-printable characters and convert
3169 * ':' to ';'
3170 */
3171 for (i = 0, dest = rsp_buf; i < rsp_len; i++) {
3172 src = &rsp_buf[i];
3173 if (*src > 0x20) {
3174 /* ':' is reserved for use in placeholder serial
3175 * numbers for missing disks
3176 */
3177 if (*src == ':')
3178 *dest++ = ';';
3179 else
3180 *dest++ = *src;
3181 }
3182 }
3183 len = dest - rsp_buf;
3184 dest = rsp_buf;
3185
3186 /* truncate leading characters */
3187 if (len > MAX_RAID_SERIAL_LEN) {
3188 dest += len - MAX_RAID_SERIAL_LEN;
3189 len = MAX_RAID_SERIAL_LEN;
3190 }
3191
3192 memset(serial, 0, MAX_RAID_SERIAL_LEN);
3193 memcpy(serial, dest, len);
3194
3195 return 0;
3196 }
3197
3198 static int serialcmp(__u8 *s1, __u8 *s2)
3199 {
3200 return strncmp((char *) s1, (char *) s2, MAX_RAID_SERIAL_LEN);
3201 }
3202
3203 static void serialcpy(__u8 *dest, __u8 *src)
3204 {
3205 strncpy((char *) dest, (char *) src, MAX_RAID_SERIAL_LEN);
3206 }
3207
3208 static struct dl *serial_to_dl(__u8 *serial, struct intel_super *super)
3209 {
3210 struct dl *dl;
3211
3212 for (dl = super->disks; dl; dl = dl->next)
3213 if (serialcmp(dl->serial, serial) == 0)
3214 break;
3215
3216 return dl;
3217 }
3218
3219 static struct imsm_disk *
3220 __serial_to_disk(__u8 *serial, struct imsm_super *mpb, int *idx)
3221 {
3222 int i;
3223
3224 for (i = 0; i < mpb->num_disks; i++) {
3225 struct imsm_disk *disk = __get_imsm_disk(mpb, i);
3226
3227 if (serialcmp(disk->serial, serial) == 0) {
3228 if (idx)
3229 *idx = i;
3230 return disk;
3231 }
3232 }
3233
3234 return NULL;
3235 }
3236
3237 static int
3238 load_imsm_disk(int fd, struct intel_super *super, char *devname, int keep_fd)
3239 {
3240 struct imsm_disk *disk;
3241 struct dl *dl;
3242 struct stat stb;
3243 int rv;
3244 char name[40];
3245 __u8 serial[MAX_RAID_SERIAL_LEN];
3246
3247 rv = imsm_read_serial(fd, devname, serial);
3248
3249 if (rv != 0)
3250 return 2;
3251
3252 dl = calloc(1, sizeof(*dl));
3253 if (!dl) {
3254 if (devname)
3255 fprintf(stderr,
3256 Name ": failed to allocate disk buffer for %s\n",
3257 devname);
3258 return 2;
3259 }
3260
3261 fstat(fd, &stb);
3262 dl->major = major(stb.st_rdev);
3263 dl->minor = minor(stb.st_rdev);
3264 dl->next = super->disks;
3265 dl->fd = keep_fd ? fd : -1;
3266 assert(super->disks == NULL);
3267 super->disks = dl;
3268 serialcpy(dl->serial, serial);
3269 dl->index = -2;
3270 dl->e = NULL;
3271 fd2devname(fd, name);
3272 if (devname)
3273 dl->devname = strdup(devname);
3274 else
3275 dl->devname = strdup(name);
3276
3277 /* look up this disk's index in the current anchor */
3278 disk = __serial_to_disk(dl->serial, super->anchor, &dl->index);
3279 if (disk) {
3280 dl->disk = *disk;
3281 /* only set index on disks that are a member of a
3282 * populated contianer, i.e. one with raid_devs
3283 */
3284 if (is_failed(&dl->disk))
3285 dl->index = -2;
3286 else if (is_spare(&dl->disk))
3287 dl->index = -1;
3288 }
3289
3290 return 0;
3291 }
3292
3293 #ifndef MDASSEMBLE
3294 /* When migrating map0 contains the 'destination' state while map1
3295 * contains the current state. When not migrating map0 contains the
3296 * current state. This routine assumes that map[0].map_state is set to
3297 * the current array state before being called.
3298 *
3299 * Migration is indicated by one of the following states
3300 * 1/ Idle (migr_state=0 map0state=normal||unitialized||degraded||failed)
3301 * 2/ Initialize (migr_state=1 migr_type=MIGR_INIT map0state=normal
3302 * map1state=unitialized)
3303 * 3/ Repair (Resync) (migr_state=1 migr_type=MIGR_REPAIR map0state=normal
3304 * map1state=normal)
3305 * 4/ Rebuild (migr_state=1 migr_type=MIGR_REBUILD map0state=normal
3306 * map1state=degraded)
3307 * 5/ Migration (mig_state=1 migr_type=MIGR_GEN_MIGR map0state=normal
3308 * map1state=normal)
3309 */
3310 static void migrate(struct imsm_dev *dev, struct intel_super *super,
3311 __u8 to_state, int migr_type)
3312 {
3313 struct imsm_map *dest;
3314 struct imsm_map *src = get_imsm_map(dev, MAP_0);
3315
3316 dev->vol.migr_state = 1;
3317 set_migr_type(dev, migr_type);
3318 dev->vol.curr_migr_unit = 0;
3319 dest = get_imsm_map(dev, MAP_1);
3320
3321 /* duplicate and then set the target end state in map[0] */
3322 memcpy(dest, src, sizeof_imsm_map(src));
3323 if ((migr_type == MIGR_REBUILD) ||
3324 (migr_type == MIGR_GEN_MIGR)) {
3325 __u32 ord;
3326 int i;
3327
3328 for (i = 0; i < src->num_members; i++) {
3329 ord = __le32_to_cpu(src->disk_ord_tbl[i]);
3330 set_imsm_ord_tbl_ent(src, i, ord_to_idx(ord));
3331 }
3332 }
3333
3334 if (migr_type == MIGR_GEN_MIGR)
3335 /* Clear migration record */
3336 memset(super->migr_rec, 0, sizeof(struct migr_record));
3337
3338 src->map_state = to_state;
3339 }
3340
3341 static void end_migration(struct imsm_dev *dev, struct intel_super *super,
3342 __u8 map_state)
3343 {
3344 struct imsm_map *map = get_imsm_map(dev, MAP_0);
3345 struct imsm_map *prev = get_imsm_map(dev, dev->vol.migr_state == 0 ?
3346 MAP_0 : MAP_1);
3347 int i, j;
3348
3349 /* merge any IMSM_ORD_REBUILD bits that were not successfully
3350 * completed in the last migration.
3351 *
3352 * FIXME add support for raid-level-migration
3353 */
3354 if ((map_state != map->map_state) && (is_gen_migration(dev) == 0) &&
3355 (prev->map_state != IMSM_T_STATE_UNINITIALIZED)) {
3356 /* when final map state is other than expected
3357 * merge maps (not for migration)
3358 */
3359 int failed;
3360
3361 for (i = 0; i < prev->num_members; i++)
3362 for (j = 0; j < map->num_members; j++)
3363 /* during online capacity expansion
3364 * disks position can be changed
3365 * if takeover is used
3366 */
3367 if (ord_to_idx(map->disk_ord_tbl[j]) ==
3368 ord_to_idx(prev->disk_ord_tbl[i])) {
3369 map->disk_ord_tbl[j] |=
3370 prev->disk_ord_tbl[i];
3371 break;
3372 }
3373 failed = imsm_count_failed(super, dev, MAP_0);
3374 map_state = imsm_check_degraded(super, dev, failed, MAP_0);
3375 }
3376
3377 dev->vol.migr_state = 0;
3378 set_migr_type(dev, 0);
3379 dev->vol.curr_migr_unit = 0;
3380 map->map_state = map_state;
3381 }
3382 #endif
3383
3384 static int parse_raid_devices(struct intel_super *super)
3385 {
3386 int i;
3387 struct imsm_dev *dev_new;
3388 size_t len, len_migr;
3389 size_t max_len = 0;
3390 size_t space_needed = 0;
3391 struct imsm_super *mpb = super->anchor;
3392
3393 for (i = 0; i < super->anchor->num_raid_devs; i++) {
3394 struct imsm_dev *dev_iter = __get_imsm_dev(super->anchor, i);
3395 struct intel_dev *dv;
3396
3397 len = sizeof_imsm_dev(dev_iter, 0);
3398 len_migr = sizeof_imsm_dev(dev_iter, 1);
3399 if (len_migr > len)
3400 space_needed += len_migr - len;
3401
3402 dv = malloc(sizeof(*dv));
3403 if (!dv)
3404 return 1;
3405 if (max_len < len_migr)
3406 max_len = len_migr;
3407 if (max_len > len_migr)
3408 space_needed += max_len - len_migr;
3409 dev_new = malloc(max_len);
3410 if (!dev_new) {
3411 free(dv);
3412 return 1;
3413 }
3414 imsm_copy_dev(dev_new, dev_iter);
3415 dv->dev = dev_new;
3416 dv->index = i;
3417 dv->next = super->devlist;
3418 super->devlist = dv;
3419 }
3420
3421 /* ensure that super->buf is large enough when all raid devices
3422 * are migrating
3423 */
3424 if (__le32_to_cpu(mpb->mpb_size) + space_needed > super->len) {
3425 void *buf;
3426
3427 len = ROUND_UP(__le32_to_cpu(mpb->mpb_size) + space_needed, 512);
3428 if (posix_memalign(&buf, 512, len) != 0)
3429 return 1;
3430
3431 memcpy(buf, super->buf, super->len);
3432 memset(buf + super->len, 0, len - super->len);
3433 free(super->buf);
3434 super->buf = buf;
3435 super->len = len;
3436 }
3437
3438 return 0;
3439 }
3440
3441 /* retrieve a pointer to the bbm log which starts after all raid devices */
3442 struct bbm_log *__get_imsm_bbm_log(struct imsm_super *mpb)
3443 {
3444 void *ptr = NULL;
3445
3446 if (__le32_to_cpu(mpb->bbm_log_size)) {
3447 ptr = mpb;
3448 ptr += mpb->mpb_size - __le32_to_cpu(mpb->bbm_log_size);
3449 }
3450
3451 return ptr;
3452 }
3453
3454 /*******************************************************************************
3455 * Function: check_mpb_migr_compatibility
3456 * Description: Function checks for unsupported migration features:
3457 * - migration optimization area (pba_of_lba0)
3458 * - descending reshape (ascending_migr)
3459 * Parameters:
3460 * super : imsm metadata information
3461 * Returns:
3462 * 0 : migration is compatible
3463 * -1 : migration is not compatible
3464 ******************************************************************************/
3465 int check_mpb_migr_compatibility(struct intel_super *super)
3466 {
3467 struct imsm_map *map0, *map1;
3468 struct migr_record *migr_rec = super->migr_rec;
3469 int i;
3470
3471 for (i = 0; i < super->anchor->num_raid_devs; i++) {
3472 struct imsm_dev *dev_iter = __get_imsm_dev(super->anchor, i);
3473
3474 if (dev_iter &&
3475 dev_iter->vol.migr_state == 1 &&
3476 dev_iter->vol.migr_type == MIGR_GEN_MIGR) {
3477 /* This device is migrating */
3478 map0 = get_imsm_map(dev_iter, MAP_0);
3479 map1 = get_imsm_map(dev_iter, MAP_1);
3480 if (pba_of_lba0(map0) != pba_of_lba0(map1))
3481 /* migration optimization area was used */
3482 return -1;
3483 if (migr_rec->ascending_migr == 0
3484 && migr_rec->dest_depth_per_unit > 0)
3485 /* descending reshape not supported yet */
3486 return -1;
3487 }
3488 }
3489 return 0;
3490 }
3491
3492 static void __free_imsm(struct intel_super *super, int free_disks);
3493
3494 /* load_imsm_mpb - read matrix metadata
3495 * allocates super->mpb to be freed by free_imsm
3496 */
3497 static int load_imsm_mpb(int fd, struct intel_super *super, char *devname)
3498 {
3499 unsigned long long dsize;
3500 unsigned long long sectors;
3501 struct stat;
3502 struct imsm_super *anchor;
3503 __u32 check_sum;
3504
3505 get_dev_size(fd, NULL, &dsize);
3506 if (dsize < 1024) {
3507 if (devname)
3508 fprintf(stderr,
3509 Name ": %s: device to small for imsm\n",
3510 devname);
3511 return 1;
3512 }
3513
3514 if (lseek64(fd, dsize - (512 * 2), SEEK_SET) < 0) {
3515 if (devname)
3516 fprintf(stderr, Name
3517 ": Cannot seek to anchor block on %s: %s\n",
3518 devname, strerror(errno));
3519 return 1;
3520 }
3521
3522 if (posix_memalign((void**)&anchor, 512, 512) != 0) {
3523 if (devname)
3524 fprintf(stderr,
3525 Name ": Failed to allocate imsm anchor buffer"
3526 " on %s\n", devname);
3527 return 1;
3528 }
3529 if (read(fd, anchor, 512) != 512) {
3530 if (devname)
3531 fprintf(stderr,
3532 Name ": Cannot read anchor block on %s: %s\n",
3533 devname, strerror(errno));
3534 free(anchor);
3535 return 1;
3536 }
3537
3538 if (strncmp((char *) anchor->sig, MPB_SIGNATURE, MPB_SIG_LEN) != 0) {
3539 if (devname)
3540 fprintf(stderr,
3541 Name ": no IMSM anchor on %s\n", devname);
3542 free(anchor);
3543 return 2;
3544 }
3545
3546 __free_imsm(super, 0);
3547 /* reload capability and hba */
3548
3549 /* capability and hba must be updated with new super allocation */
3550 find_intel_hba_capability(fd, super, devname);
3551 super->len = ROUND_UP(anchor->mpb_size, 512);
3552 if (posix_memalign(&super->buf, 512, super->len) != 0) {
3553 if (devname)
3554 fprintf(stderr,
3555 Name ": unable to allocate %zu byte mpb buffer\n",
3556 super->len);
3557 free(anchor);
3558 return 2;
3559 }
3560 memcpy(super->buf, anchor, 512);
3561
3562 sectors = mpb_sectors(anchor) - 1;
3563 free(anchor);
3564
3565 if (posix_memalign(&super->migr_rec_buf, 512, MIGR_REC_BUF_SIZE) != 0) {
3566 fprintf(stderr, Name
3567 ": %s could not allocate migr_rec buffer\n", __func__);
3568 free(super->buf);
3569 return 2;
3570 }
3571 super->clean_migration_record_by_mdmon = 0;
3572
3573 if (!sectors) {
3574 check_sum = __gen_imsm_checksum(super->anchor);
3575 if (check_sum != __le32_to_cpu(super->anchor->check_sum)) {
3576 if (devname)
3577 fprintf(stderr,
3578 Name ": IMSM checksum %x != %x on %s\n",
3579 check_sum,
3580 __le32_to_cpu(super->anchor->check_sum),
3581 devname);
3582 return 2;
3583 }
3584
3585 return 0;
3586 }
3587
3588 /* read the extended mpb */
3589 if (lseek64(fd, dsize - (512 * (2 + sectors)), SEEK_SET) < 0) {
3590 if (devname)
3591 fprintf(stderr,
3592 Name ": Cannot seek to extended mpb on %s: %s\n",
3593 devname, strerror(errno));
3594 return 1;
3595 }
3596
3597 if ((unsigned)read(fd, super->buf + 512, super->len - 512) != super->len - 512) {
3598 if (devname)
3599 fprintf(stderr,
3600 Name ": Cannot read extended mpb on %s: %s\n",
3601 devname, strerror(errno));
3602 return 2;
3603 }
3604
3605 check_sum = __gen_imsm_checksum(super->anchor);
3606 if (check_sum != __le32_to_cpu(super->anchor->check_sum)) {
3607 if (devname)
3608 fprintf(stderr,
3609 Name ": IMSM checksum %x != %x on %s\n",
3610 check_sum, __le32_to_cpu(super->anchor->check_sum),
3611 devname);
3612 return 3;
3613 }
3614
3615 /* FIXME the BBM log is disk specific so we cannot use this global
3616 * buffer for all disks. Ok for now since we only look at the global
3617 * bbm_log_size parameter to gate assembly
3618 */
3619 super->bbm_log = __get_imsm_bbm_log(super->anchor);
3620
3621 return 0;
3622 }
3623
3624 static int read_imsm_migr_rec(int fd, struct intel_super *super);
3625
3626 /* clears hi bits in metadata if MPB_ATTRIB_2TB_DISK not set */
3627 static void clear_hi(struct intel_super *super)
3628 {
3629 struct imsm_super *mpb = super->anchor;
3630 int i, n;
3631 if (mpb->attributes & MPB_ATTRIB_2TB_DISK)
3632 return;
3633 for (i = 0; i < mpb->num_disks; ++i) {
3634 struct imsm_disk *disk = &mpb->disk[i];
3635 disk->total_blocks_hi = 0;
3636 }
3637 for (i = 0; i < mpb->num_raid_devs; ++i) {
3638 struct imsm_dev *dev = get_imsm_dev(super, i);
3639 if (!dev)
3640 return;
3641 for (n = 0; n < 2; ++n) {
3642 struct imsm_map *map = get_imsm_map(dev, n);
3643 if (!map)
3644 continue;
3645 map->pba_of_lba0_hi = 0;
3646 map->blocks_per_member_hi = 0;
3647 map->num_data_stripes_hi = 0;
3648 }
3649 }
3650 }
3651
3652 static int
3653 load_and_parse_mpb(int fd, struct intel_super *super, char *devname, int keep_fd)
3654 {
3655 int err;
3656
3657 err = load_imsm_mpb(fd, super, devname);
3658 if (err)
3659 return err;
3660 err = load_imsm_disk(fd, super, devname, keep_fd);
3661 if (err)
3662 return err;
3663 err = parse_raid_devices(super);
3664 clear_hi(super);
3665 return err;
3666 }
3667
3668 static void __free_imsm_disk(struct dl *d)
3669 {
3670 if (d->fd >= 0)
3671 close(d->fd);
3672 if (d->devname)
3673 free(d->devname);
3674 if (d->e)
3675 free(d->e);
3676 free(d);
3677
3678 }
3679
3680 static void free_imsm_disks(struct intel_super *super)
3681 {
3682 struct dl *d;
3683
3684 while (super->disks) {
3685 d = super->disks;
3686 super->disks = d->next;
3687 __free_imsm_disk(d);
3688 }
3689 while (super->disk_mgmt_list) {
3690 d = super->disk_mgmt_list;
3691 super->disk_mgmt_list = d->next;
3692 __free_imsm_disk(d);
3693 }
3694 while (super->missing) {
3695 d = super->missing;
3696 super->missing = d->next;
3697 __free_imsm_disk(d);
3698 }
3699
3700 }
3701
3702 /* free all the pieces hanging off of a super pointer */
3703 static void __free_imsm(struct intel_super *super, int free_disks)
3704 {
3705 struct intel_hba *elem, *next;
3706
3707 if (super->buf) {
3708 free(super->buf);
3709 super->buf = NULL;
3710 }
3711 /* unlink capability description */
3712 super->orom = NULL;
3713 if (super->migr_rec_buf) {
3714 free(super->migr_rec_buf);
3715 super->migr_rec_buf = NULL;
3716 }
3717 if (free_disks)
3718 free_imsm_disks(super);
3719 free_devlist(super);
3720 elem = super->hba;
3721 while (elem) {
3722 if (elem->path)
3723 free((void *)elem->path);
3724 next = elem->next;
3725 free(elem);
3726 elem = next;
3727 }
3728 super->hba = NULL;
3729 }
3730
3731 static void free_imsm(struct intel_super *super)
3732 {
3733 __free_imsm(super, 1);
3734 free(super);
3735 }
3736
3737 static void free_super_imsm(struct supertype *st)
3738 {
3739 struct intel_super *super = st->sb;
3740
3741 if (!super)
3742 return;
3743
3744 free_imsm(super);
3745 st->sb = NULL;
3746 }
3747
3748 static struct intel_super *alloc_super(void)
3749 {
3750 struct intel_super *super = malloc(sizeof(*super));
3751
3752 if (super) {
3753 memset(super, 0, sizeof(*super));
3754 super->current_vol = -1;
3755 super->create_offset = ~((unsigned long long) 0);
3756 }
3757 return super;
3758 }
3759
3760 /*
3761 * find and allocate hba and OROM/EFI based on valid fd of RAID component device
3762 */
3763 static int find_intel_hba_capability(int fd, struct intel_super *super, char *devname)
3764 {
3765 struct sys_dev *hba_name;
3766 int rv = 0;
3767
3768 if ((fd < 0) || check_env("IMSM_NO_PLATFORM")) {
3769 super->orom = NULL;
3770 super->hba = NULL;
3771 return 0;
3772 }
3773 hba_name = find_disk_attached_hba(fd, NULL);
3774 if (!hba_name) {
3775 if (devname)
3776 fprintf(stderr,
3777 Name ": %s is not attached to Intel(R) RAID controller.\n",
3778 devname);
3779 return 1;
3780 }
3781 rv = attach_hba_to_super(super, hba_name);
3782 if (rv == 2) {
3783 if (devname) {
3784 struct intel_hba *hba = super->hba;
3785
3786 fprintf(stderr, Name ": %s is attached to Intel(R) %s RAID "
3787 "controller (%s),\n"
3788 " but the container is assigned to Intel(R) "
3789 "%s RAID controller (",
3790 devname,
3791 hba_name->path,
3792 hba_name->pci_id ? : "Err!",
3793 get_sys_dev_type(hba_name->type));
3794
3795 while (hba) {
3796 fprintf(stderr, "%s", hba->pci_id ? : "Err!");
3797 if (hba->next)
3798 fprintf(stderr, ", ");
3799 hba = hba->next;
3800 }
3801
3802 fprintf(stderr, ").\n"
3803 " Mixing devices attached to different controllers "
3804 "is not allowed.\n");
3805 }
3806 free_sys_dev(&hba_name);
3807 return 2;
3808 }
3809 super->orom = find_imsm_capability(hba_name->type);
3810 free_sys_dev(&hba_name);
3811 if (!super->orom)
3812 return 3;
3813 return 0;
3814 }
3815
3816 /* find_missing - helper routine for load_super_imsm_all that identifies
3817 * disks that have disappeared from the system. This routine relies on
3818 * the mpb being uptodate, which it is at load time.
3819 */
3820 static int find_missing(struct intel_super *super)
3821 {
3822 int i;
3823 struct imsm_super *mpb = super->anchor;
3824 struct dl *dl;
3825 struct imsm_disk *disk;
3826
3827 for (i = 0; i < mpb->num_disks; i++) {
3828 disk = __get_imsm_disk(mpb, i);
3829 dl = serial_to_dl(disk->serial, super);
3830 if (dl)
3831 continue;
3832
3833 dl = malloc(sizeof(*dl));
3834 if (!dl)
3835 return 1;
3836 dl->major = 0;
3837 dl->minor = 0;
3838 dl->fd = -1;
3839 dl->devname = strdup("missing");
3840 dl->index = i;
3841 serialcpy(dl->serial, disk->serial);
3842 dl->disk = *disk;
3843 dl->e = NULL;
3844 dl->next = super->missing;
3845 super->missing = dl;
3846 }
3847
3848 return 0;
3849 }
3850
3851 #ifndef MDASSEMBLE
3852 static struct intel_disk *disk_list_get(__u8 *serial, struct intel_disk *disk_list)
3853 {
3854 struct intel_disk *idisk = disk_list;
3855
3856 while (idisk) {
3857 if (serialcmp(idisk->disk.serial, serial) == 0)
3858 break;
3859 idisk = idisk->next;
3860 }
3861
3862 return idisk;
3863 }
3864
3865 static int __prep_thunderdome(struct intel_super **table, int tbl_size,
3866 struct intel_super *super,
3867 struct intel_disk **disk_list)
3868 {
3869 struct imsm_disk *d = &super->disks->disk;
3870 struct imsm_super *mpb = super->anchor;
3871 int i, j;
3872
3873 for (i = 0; i < tbl_size; i++) {
3874 struct imsm_super *tbl_mpb = table[i]->anchor;
3875 struct imsm_disk *tbl_d = &table[i]->disks->disk;
3876
3877 if (tbl_mpb->family_num == mpb->family_num) {
3878 if (tbl_mpb->check_sum == mpb->check_sum) {
3879 dprintf("%s: mpb from %d:%d matches %d:%d\n",
3880 __func__, super->disks->major,
3881 super->disks->minor,
3882 table[i]->disks->major,
3883 table[i]->disks->minor);
3884 break;
3885 }
3886
3887 if (((is_configured(d) && !is_configured(tbl_d)) ||
3888 is_configured(d) == is_configured(tbl_d)) &&
3889 tbl_mpb->generation_num < mpb->generation_num) {
3890 /* current version of the mpb is a
3891 * better candidate than the one in
3892 * super_table, but copy over "cross
3893 * generational" status
3894 */
3895 struct intel_disk *idisk;
3896
3897 dprintf("%s: mpb from %d:%d replaces %d:%d\n",
3898 __func__, super->disks->major,
3899 super->disks->minor,
3900 table[i]->disks->major,
3901 table[i]->disks->minor);
3902
3903 idisk = disk_list_get(tbl_d->serial, *disk_list);
3904 if (idisk && is_failed(&idisk->disk))
3905 tbl_d->status |= FAILED_DISK;
3906 break;
3907 } else {
3908 struct intel_disk *idisk;
3909 struct imsm_disk *disk;
3910
3911 /* tbl_mpb is more up to date, but copy
3912 * over cross generational status before
3913 * returning
3914 */
3915 disk = __serial_to_disk(d->serial, mpb, NULL);
3916 if (disk && is_failed(disk))
3917 d->status |= FAILED_DISK;
3918
3919 idisk = disk_list_get(d->serial, *disk_list);
3920 if (idisk) {
3921 idisk->owner = i;
3922 if (disk && is_configured(disk))
3923 idisk->disk.status |= CONFIGURED_DISK;
3924 }
3925
3926 dprintf("%s: mpb from %d:%d prefer %d:%d\n",
3927 __func__, super->disks->major,
3928 super->disks->minor,
3929 table[i]->disks->major,
3930 table[i]->disks->minor);
3931
3932 return tbl_size;
3933 }
3934 }
3935 }
3936
3937 if (i >= tbl_size)
3938 table[tbl_size++] = super;
3939 else
3940 table[i] = super;
3941
3942 /* update/extend the merged list of imsm_disk records */
3943 for (j = 0; j < mpb->num_disks; j++) {
3944 struct imsm_disk *disk = __get_imsm_disk(mpb, j);
3945 struct intel_disk *idisk;
3946
3947 idisk = disk_list_get(disk->serial, *disk_list);
3948 if (idisk) {
3949 idisk->disk.status |= disk->status;
3950 if (is_configured(&idisk->disk) ||
3951 is_failed(&idisk->disk))
3952 idisk->disk.status &= ~(SPARE_DISK);
3953 } else {
3954 idisk = calloc(1, sizeof(*idisk));
3955 if (!idisk)
3956 return -1;
3957 idisk->owner = IMSM_UNKNOWN_OWNER;
3958 idisk->disk = *disk;
3959 idisk->next = *disk_list;
3960 *disk_list = idisk;
3961 }
3962
3963 if (serialcmp(idisk->disk.serial, d->serial) == 0)
3964 idisk->owner = i;
3965 }
3966
3967 return tbl_size;
3968 }
3969
3970 static struct intel_super *
3971 validate_members(struct intel_super *super, struct intel_disk *disk_list,
3972 const int owner)
3973 {
3974 struct imsm_super *mpb = super->anchor;
3975 int ok_count = 0;
3976 int i;
3977
3978 for (i = 0; i < mpb->num_disks; i++) {
3979 struct imsm_disk *disk = __get_imsm_disk(mpb, i);
3980 struct intel_disk *idisk;
3981
3982 idisk = disk_list_get(disk->serial, disk_list);
3983 if (idisk) {
3984 if (idisk->owner == owner ||
3985 idisk->owner == IMSM_UNKNOWN_OWNER)
3986 ok_count++;
3987 else
3988 dprintf("%s: '%.16s' owner %d != %d\n",
3989 __func__, disk->serial, idisk->owner,
3990 owner);
3991 } else {
3992 dprintf("%s: unknown disk %x [%d]: %.16s\n",
3993 __func__, __le32_to_cpu(mpb->family_num), i,
3994 disk->serial);
3995 break;
3996 }
3997 }
3998
3999 if (ok_count == mpb->num_disks)
4000 return super;
4001 return NULL;
4002 }
4003
4004 static void show_conflicts(__u32 family_num, struct intel_super *super_list)
4005 {
4006 struct intel_super *s;
4007
4008 for (s = super_list; s; s = s->next) {
4009 if (family_num != s->anchor->family_num)
4010 continue;
4011 fprintf(stderr, "Conflict, offlining family %#x on '%s'\n",
4012 __le32_to_cpu(family_num), s->disks->devname);
4013 }
4014 }
4015
4016 static struct intel_super *
4017 imsm_thunderdome(struct intel_super **super_list, int len)
4018 {
4019 struct intel_super *super_table[len];
4020 struct intel_disk *disk_list = NULL;
4021 struct intel_super *champion, *spare;
4022 struct intel_super *s, **del;
4023 int tbl_size = 0;
4024 int conflict;
4025 int i;
4026
4027 memset(super_table, 0, sizeof(super_table));
4028 for (s = *super_list; s; s = s->next)
4029 tbl_size = __prep_thunderdome(super_table, tbl_size, s, &disk_list);
4030
4031 for (i = 0; i < tbl_size; i++) {
4032 struct imsm_disk *d;
4033 struct intel_disk *idisk;
4034 struct imsm_super *mpb = super_table[i]->anchor;
4035
4036 s = super_table[i];
4037 d = &s->disks->disk;
4038
4039 /* 'd' must appear in merged disk list for its
4040 * configuration to be valid
4041 */
4042 idisk = disk_list_get(d->serial, disk_list);
4043 if (idisk && idisk->owner == i)
4044 s = validate_members(s, disk_list, i);
4045 else
4046 s = NULL;
4047
4048 if (!s)
4049 dprintf("%s: marking family: %#x from %d:%d offline\n",
4050 __func__, mpb->family_num,
4051 super_table[i]->disks->major,
4052 super_table[i]->disks->minor);
4053 super_table[i] = s;
4054 }
4055
4056 /* This is where the mdadm implementation differs from the Windows
4057 * driver which has no strict concept of a container. We can only
4058 * assemble one family from a container, so when returning a prodigal
4059 * array member to this system the code will not be able to disambiguate
4060 * the container contents that should be assembled ("foreign" versus
4061 * "local"). It requires user intervention to set the orig_family_num
4062 * to a new value to establish a new container. The Windows driver in
4063 * this situation fixes up the volume name in place and manages the
4064 * foreign array as an independent entity.
4065 */
4066 s = NULL;
4067 spare = NULL;
4068 conflict = 0;
4069 for (i = 0; i < tbl_size; i++) {
4070 struct intel_super *tbl_ent = super_table[i];
4071 int is_spare = 0;
4072
4073 if (!tbl_ent)
4074 continue;
4075
4076 if (tbl_ent->anchor->num_raid_devs == 0) {
4077 spare = tbl_ent;
4078 is_spare = 1;
4079 }
4080
4081 if (s && !is_spare) {
4082 show_conflicts(tbl_ent->anchor->family_num, *super_list);
4083 conflict++;
4084 } else if (!s && !is_spare)
4085 s = tbl_ent;
4086 }
4087
4088 if (!s)
4089 s = spare;
4090 if (!s) {
4091 champion = NULL;
4092 goto out;
4093 }
4094 champion = s;
4095
4096 if (conflict)
4097 fprintf(stderr, "Chose family %#x on '%s', "
4098 "assemble conflicts to new container with '--update=uuid'\n",
4099 __le32_to_cpu(s->anchor->family_num), s->disks->devname);
4100
4101 /* collect all dl's onto 'champion', and update them to
4102 * champion's version of the status
4103 */
4104 for (s = *super_list; s; s = s->next) {
4105 struct imsm_super *mpb = champion->anchor;
4106 struct dl *dl = s->disks;
4107
4108 if (s == champion)
4109 continue;
4110
4111 mpb->attributes |= s->anchor->attributes & MPB_ATTRIB_2TB_DISK;
4112
4113 for (i = 0; i < mpb->num_disks; i++) {
4114 struct imsm_disk *disk;
4115
4116 disk = __serial_to_disk(dl->serial, mpb, &dl->index);
4117 if (disk) {
4118 dl->disk = *disk;
4119 /* only set index on disks that are a member of
4120 * a populated contianer, i.e. one with
4121 * raid_devs
4122 */
4123 if (is_failed(&dl->disk))
4124 dl->index = -2;
4125 else if (is_spare(&dl->disk))
4126 dl->index = -1;
4127 break;
4128 }
4129 }
4130
4131 if (i >= mpb->num_disks) {
4132 struct intel_disk *idisk;
4133
4134 idisk = disk_list_get(dl->serial, disk_list);
4135 if (idisk && is_spare(&idisk->disk) &&
4136 !is_failed(&idisk->disk) && !is_configured(&idisk->disk))
4137 dl->index = -1;
4138 else {
4139 dl->index = -2;
4140 continue;
4141 }
4142 }
4143
4144 dl->next = champion->disks;
4145 champion->disks = dl;
4146 s->disks = NULL;
4147 }
4148
4149 /* delete 'champion' from super_list */
4150 for (del = super_list; *del; ) {
4151 if (*del == champion) {
4152 *del = (*del)->next;
4153 break;
4154 } else
4155 del = &(*del)->next;
4156 }
4157 champion->next = NULL;
4158
4159 out:
4160 while (disk_list) {
4161 struct intel_disk *idisk = disk_list;
4162
4163 disk_list = disk_list->next;
4164 free(idisk);
4165 }
4166
4167 return champion;
4168 }
4169
4170
4171 static int
4172 get_sra_super_block(int fd, struct intel_super **super_list, char *devname, int *max, int keep_fd);
4173 static int get_super_block(struct intel_super **super_list, int devnum, char *devname,
4174 int major, int minor, int keep_fd);
4175 static int
4176 get_devlist_super_block(struct md_list *devlist, struct intel_super **super_list,
4177 int *max, int keep_fd);
4178
4179
4180 static int load_super_imsm_all(struct supertype *st, int fd, void **sbp,
4181 char *devname, struct md_list *devlist,
4182 int keep_fd)
4183 {
4184 struct intel_super *super_list = NULL;
4185 struct intel_super *super = NULL;
4186 int err = 0;
4187 int i = 0;
4188
4189 if (fd >= 0)
4190 /* 'fd' is an opened container */
4191 err = get_sra_super_block(fd, &super_list, devname, &i, keep_fd);
4192 else
4193 /* get super block from devlist devices */
4194 err = get_devlist_super_block(devlist, &super_list, &i, keep_fd);
4195 if (err)
4196 goto error;
4197 /* all mpbs enter, maybe one leaves */
4198 super = imsm_thunderdome(&super_list, i);
4199 if (!super) {
4200 err = 1;
4201 goto error;
4202 }
4203
4204 if (find_missing(super) != 0) {
4205 free_imsm(super);
4206 err = 2;
4207 goto error;
4208 }
4209
4210 /* load migration record */
4211 err = load_imsm_migr_rec(super, NULL);
4212 if (err == -1) {
4213 /* migration is in progress,
4214 * but migr_rec cannot be loaded,
4215 */
4216 err = 4;
4217 goto error;
4218 }
4219
4220 /* Check migration compatibility */
4221 if ((err == 0) && (check_mpb_migr_compatibility(super) != 0)) {
4222 fprintf(stderr, Name ": Unsupported migration detected");
4223 if (devname)
4224 fprintf(stderr, " on %s\n", devname);
4225 else
4226 fprintf(stderr, " (IMSM).\n");
4227
4228 err = 5;
4229 goto error;
4230 }
4231
4232 err = 0;
4233
4234 error:
4235 while (super_list) {
4236 struct intel_super *s = super_list;
4237
4238 super_list = super_list->next;
4239 free_imsm(s);
4240 }
4241
4242
4243 if (err)
4244 return err;
4245
4246 *sbp = super;
4247 if (fd >= 0)
4248 st->container_dev = fd2devnum(fd);
4249 else
4250 st->container_dev = NoMdDev;
4251 if (err == 0 && st->ss == NULL) {
4252 st->ss = &super_imsm;
4253 st->minor_version = 0;
4254 st->max_devs = IMSM_MAX_DEVICES;
4255 }
4256 return 0;
4257 }
4258
4259
4260 static int
4261 get_devlist_super_block(struct md_list *devlist, struct intel_super **super_list,
4262 int *max, int keep_fd)
4263 {
4264 struct md_list *tmpdev;
4265 int err = 0;
4266 int i = 0;
4267
4268 for (i = 0, tmpdev = devlist; tmpdev; tmpdev = tmpdev->next) {
4269 if (tmpdev->used != 1)
4270 continue;
4271 if (tmpdev->container == 1) {
4272 int lmax = 0;
4273 int fd = dev_open(tmpdev->devname, O_RDONLY|O_EXCL);
4274 if (fd < 0) {
4275 fprintf(stderr, Name ": cannot open device %s: %s\n",
4276 tmpdev->devname, strerror(errno));
4277 err = 8;
4278 goto error;
4279 }
4280 err = get_sra_super_block(fd, super_list,
4281 tmpdev->devname, &lmax,
4282 keep_fd);
4283 i += lmax;
4284 close(fd);
4285 if (err) {
4286 err = 7;
4287 goto error;
4288 }
4289 } else {
4290 int major = major(tmpdev->st_rdev);
4291 int minor = minor(tmpdev->st_rdev);
4292 err = get_super_block(super_list,
4293 -1,
4294 tmpdev->devname,
4295 major, minor,
4296 keep_fd);
4297 i++;
4298 if (err) {
4299 err = 6;
4300 goto error;
4301 }
4302 }
4303 }
4304 error:
4305 *max = i;
4306 return err;
4307 }
4308
4309 static int get_super_block(struct intel_super **super_list, int devnum, char *devname,
4310 int major, int minor, int keep_fd)
4311 {
4312 struct intel_super*s = NULL;
4313 char nm[32];
4314 int dfd = -1;
4315 int rv;
4316 int err = 0;
4317 int retry;
4318
4319 s = alloc_super();
4320 if (!s) {
4321 err = 1;
4322 goto error;
4323 }
4324
4325 sprintf(nm, "%d:%d", major, minor);
4326 dfd = dev_open(nm, O_RDWR);
4327 if (dfd < 0) {
4328 err = 2;
4329 goto error;
4330 }
4331
4332 rv = find_intel_hba_capability(dfd, s, devname);
4333 /* no orom/efi or non-intel hba of the disk */
4334 if (rv != 0) {
4335 err = 4;
4336 goto error;
4337 }
4338
4339 err = load_and_parse_mpb(dfd, s, NULL, keep_fd);
4340
4341 /* retry the load if we might have raced against mdmon */
4342 if (err == 3 && (devnum != -1) && mdmon_running(devnum))
4343 for (retry = 0; retry < 3; retry++) {
4344 usleep(3000);
4345 err = load_and_parse_mpb(dfd, s, NULL, keep_fd);
4346 if (err != 3)
4347 break;
4348 }
4349 error:
4350 if (!err) {
4351 s->next = *super_list;
4352 *super_list = s;
4353 } else {
4354 if (s)
4355 free(s);
4356 if (dfd)
4357 close(dfd);
4358 }
4359 if ((dfd >= 0) && (!keep_fd))
4360 close(dfd);
4361 return err;
4362
4363 }
4364
4365 static int
4366 get_sra_super_block(int fd, struct intel_super **super_list, char *devname, int *max, int keep_fd)
4367 {
4368 struct mdinfo *sra;
4369 int devnum;
4370 struct mdinfo *sd;
4371 int err = 0;
4372 int i = 0;
4373 sra = sysfs_read(fd, 0, GET_LEVEL|GET_VERSION|GET_DEVS|GET_STATE);
4374 if (!sra)
4375 return 1;
4376
4377 if (sra->array.major_version != -1 ||
4378 sra->array.minor_version != -2 ||
4379 strcmp(sra->text_version, "imsm") != 0) {
4380 err = 1;
4381 goto error;
4382 }
4383 /* load all mpbs */
4384 devnum = fd2devnum(fd);
4385 for (sd = sra->devs, i = 0; sd; sd = sd->next, i++) {
4386 if (get_super_block(super_list, devnum, devname,
4387 sd->disk.major, sd->disk.minor, keep_fd) != 0) {
4388 err = 7;
4389 goto error;
4390 }
4391 }
4392 error:
4393 sysfs_free(sra);
4394 *max = i;
4395 return err;
4396 }
4397
4398 static int load_container_imsm(struct supertype *st, int fd, char *devname)
4399 {
4400 return load_super_imsm_all(st, fd, &st->sb, devname, NULL, 1);
4401 }
4402 #endif
4403
4404 static int load_super_imsm(struct supertype *st, int fd, char *devname)
4405 {
4406 struct intel_super *super;
4407 int rv;
4408
4409 if (test_partition(fd))
4410 /* IMSM not allowed on partitions */
4411 return 1;
4412
4413 free_super_imsm(st);
4414
4415 super = alloc_super();
4416 if (!super) {
4417 fprintf(stderr,
4418 Name ": malloc of %zu failed.\n",
4419 sizeof(*super));
4420 return 1;
4421 }
4422 /* Load hba and capabilities if they exist.
4423 * But do not preclude loading metadata in case capabilities or hba are
4424 * non-compliant and ignore_hw_compat is set.
4425 */
4426 rv = find_intel_hba_capability(fd, super, devname);
4427 /* no orom/efi or non-intel hba of the disk */
4428 if ((rv != 0) && (st->ignore_hw_compat == 0)) {
4429 if (devname)
4430 fprintf(stderr,
4431 Name ": No OROM/EFI properties for %s\n", devname);
4432 free_imsm(super);
4433 return 2;
4434 }
4435 rv = load_and_parse_mpb(fd, super, devname, 0);
4436
4437 if (rv) {
4438 if (devname)
4439 fprintf(stderr,
4440 Name ": Failed to load all information "
4441 "sections on %s\n", devname);
4442 free_imsm(super);
4443 return rv;
4444 }
4445
4446 st->sb = super;
4447 if (st->ss == NULL) {
4448 st->ss = &super_imsm;
4449 st->minor_version = 0;
4450 st->max_devs = IMSM_MAX_DEVICES;
4451 }
4452
4453 /* load migration record */
4454 if (load_imsm_migr_rec(super, NULL) == 0) {
4455 /* Check for unsupported migration features */
4456 if (check_mpb_migr_compatibility(super) != 0) {
4457 fprintf(stderr,
4458 Name ": Unsupported migration detected");
4459 if (devname)
4460 fprintf(stderr, " on %s\n", devname);
4461 else
4462 fprintf(stderr, " (IMSM).\n");
4463 return 3;
4464 }
4465 }
4466
4467 return 0;
4468 }
4469
4470 static __u16 info_to_blocks_per_strip(mdu_array_info_t *info)
4471 {
4472 if (info->level == 1)
4473 return 128;
4474 return info->chunk_size >> 9;
4475 }
4476
4477 static unsigned long long info_to_blocks_per_member(mdu_array_info_t *info,
4478 unsigned long long size)
4479 {
4480 if (info->level == 1)
4481 return size * 2;
4482 else
4483 return (size * 2) & ~(info_to_blocks_per_strip(info) - 1);
4484 }
4485
4486 static void imsm_update_version_info(struct intel_super *super)
4487 {
4488 /* update the version and attributes */
4489 struct imsm_super *mpb = super->anchor;
4490 char *version;
4491 struct imsm_dev *dev;
4492 struct imsm_map *map;
4493 int i;
4494
4495 for (i = 0; i < mpb->num_raid_devs; i++) {
4496 dev = get_imsm_dev(super, i);
4497 map = get_imsm_map(dev, MAP_0);
4498 if (__le32_to_cpu(dev->size_high) > 0)
4499 mpb->attributes |= MPB_ATTRIB_2TB;
4500
4501 /* FIXME detect when an array spans a port multiplier */
4502 #if 0
4503 mpb->attributes |= MPB_ATTRIB_PM;
4504 #endif
4505
4506 if (mpb->num_raid_devs > 1 ||
4507 mpb->attributes != MPB_ATTRIB_CHECKSUM_VERIFY) {
4508 version = MPB_VERSION_ATTRIBS;
4509 switch (get_imsm_raid_level(map)) {
4510 case 0: mpb->attributes |= MPB_ATTRIB_RAID0; break;
4511 case 1: mpb->attributes |= MPB_ATTRIB_RAID1; break;
4512 case 10: mpb->attributes |= MPB_ATTRIB_RAID10; break;
4513 case 5: mpb->attributes |= MPB_ATTRIB_RAID5; break;
4514 }
4515 } else {
4516 if (map->num_members >= 5)
4517 version = MPB_VERSION_5OR6_DISK_ARRAY;
4518 else if (dev->status == DEV_CLONE_N_GO)
4519 version = MPB_VERSION_CNG;
4520 else if (get_imsm_raid_level(map) == 5)
4521 version = MPB_VERSION_RAID5;
4522 else if (map->num_members >= 3)
4523 version = MPB_VERSION_3OR4_DISK_ARRAY;
4524 else if (get_imsm_raid_level(map) == 1)
4525 version = MPB_VERSION_RAID1;
4526 else
4527 version = MPB_VERSION_RAID0;
4528 }
4529 strcpy(((char *) mpb->sig) + strlen(MPB_SIGNATURE), version);
4530 }
4531 }
4532
4533 static int check_name(struct intel_super *super, char *name, int quiet)
4534 {
4535 struct imsm_super *mpb = super->anchor;
4536 char *reason = NULL;
4537 int i;
4538
4539 if (strlen(name) > MAX_RAID_SERIAL_LEN)
4540 reason = "must be 16 characters or less";
4541
4542 for (i = 0; i < mpb->num_raid_devs; i++) {
4543 struct imsm_dev *dev = get_imsm_dev(super, i);
4544
4545 if (strncmp((char *) dev->volume, name, MAX_RAID_SERIAL_LEN) == 0) {
4546 reason = "already exists";
4547 break;
4548 }
4549 }
4550
4551 if (reason && !quiet)
4552 fprintf(stderr, Name ": imsm volume name %s\n", reason);
4553
4554 return !reason;
4555 }
4556
4557 static int init_super_imsm_volume(struct supertype *st, mdu_array_info_t *info,
4558 unsigned long long size, char *name,
4559 char *homehost, int *uuid)
4560 {
4561 /* We are creating a volume inside a pre-existing container.
4562 * so st->sb is already set.
4563 */
4564 struct intel_super *super = st->sb;
4565 struct imsm_super *mpb = super->anchor;
4566 struct intel_dev *dv;
4567 struct imsm_dev *dev;
4568 struct imsm_vol *vol;
4569 struct imsm_map *map;
4570 int idx = mpb->num_raid_devs;
4571 int i;
4572 unsigned long long array_blocks;
4573 size_t size_old, size_new;
4574 unsigned long long num_data_stripes;
4575
4576 if (super->orom && mpb->num_raid_devs >= super->orom->vpa) {
4577 fprintf(stderr, Name": This imsm-container already has the "
4578 "maximum of %d volumes\n", super->orom->vpa);
4579 return 0;
4580 }
4581
4582 /* ensure the mpb is large enough for the new data */
4583 size_old = __le32_to_cpu(mpb->mpb_size);
4584 size_new = disks_to_mpb_size(info->nr_disks);
4585 if (size_new > size_old) {
4586 void *mpb_new;
4587 size_t size_round = ROUND_UP(size_new, 512);
4588
4589 if (posix_memalign(&mpb_new, 512, size_round) != 0) {
4590 fprintf(stderr, Name": could not allocate new mpb\n");
4591 return 0;
4592 }
4593 if (posix_memalign(&super->migr_rec_buf, 512,
4594 MIGR_REC_BUF_SIZE) != 0) {
4595 fprintf(stderr, Name
4596 ": %s could not allocate migr_rec buffer\n",
4597 __func__);
4598 free(super->buf);
4599 free(super);
4600 free(mpb_new);
4601 return 0;
4602 }
4603 memcpy(mpb_new, mpb, size_old);
4604 free(mpb);
4605 mpb = mpb_new;
4606 super->anchor = mpb_new;
4607 mpb->mpb_size = __cpu_to_le32(size_new);
4608 memset(mpb_new + size_old, 0, size_round - size_old);
4609 }
4610 super->current_vol = idx;
4611
4612 /* handle 'failed_disks' by either:
4613 * a) create dummy disk entries in the table if this the first
4614 * volume in the array. We add them here as this is the only
4615 * opportunity to add them. add_to_super_imsm_volume()
4616 * handles the non-failed disks and continues incrementing
4617 * mpb->num_disks.
4618 * b) validate that 'failed_disks' matches the current number
4619 * of missing disks if the container is populated
4620 */
4621 if (super->current_vol == 0) {
4622 mpb->num_disks = 0;
4623 for (i = 0; i < info->failed_disks; i++) {
4624 struct imsm_disk *disk;
4625
4626 mpb->num_disks++;
4627 disk = __get_imsm_disk(mpb, i);
4628 disk->status = CONFIGURED_DISK | FAILED_DISK;
4629 disk->scsi_id = __cpu_to_le32(~(__u32)0);
4630 snprintf((char *) disk->serial, MAX_RAID_SERIAL_LEN,
4631 "missing:%d", i);
4632 }
4633 find_missing(super);
4634 } else {
4635 int missing = 0;
4636 struct dl *d;
4637
4638 for (d = super->missing; d; d = d->next)
4639 missing++;
4640 if (info->failed_disks > missing) {
4641 fprintf(stderr, Name": unable to add 'missing' disk to container\n");
4642 return 0;
4643 }
4644 }
4645
4646 if (!check_name(super, name, 0))
4647 return 0;
4648 dv = malloc(sizeof(*dv));
4649 if (!dv) {
4650 fprintf(stderr, Name ": failed to allocate device list entry\n");
4651 return 0;
4652 }
4653 dev = calloc(1, sizeof(*dev) + sizeof(__u32) * (info->raid_disks - 1));
4654 if (!dev) {
4655 free(dv);
4656 fprintf(stderr, Name": could not allocate raid device\n");
4657 return 0;
4658 }
4659
4660 strncpy((char *) dev->volume, name, MAX_RAID_SERIAL_LEN);
4661 array_blocks = calc_array_size(info->level, info->raid_disks,
4662 info->layout, info->chunk_size,
4663 size * 2);
4664 /* round array size down to closest MB */
4665 array_blocks = (array_blocks >> SECT_PER_MB_SHIFT) << SECT_PER_MB_SHIFT;
4666
4667 dev->size_low = __cpu_to_le32((__u32) array_blocks);
4668 dev->size_high = __cpu_to_le32((__u32) (array_blocks >> 32));
4669 dev->status = (DEV_READ_COALESCING | DEV_WRITE_COALESCING);
4670 vol = &dev->vol;
4671 vol->migr_state = 0;
4672 set_migr_type(dev, MIGR_INIT);
4673 vol->dirty = !info->state;
4674 vol->curr_migr_unit = 0;
4675 map = get_imsm_map(dev, MAP_0);
4676 set_pba_of_lba0(map, super->create_offset);
4677 set_blocks_per_member(map, info_to_blocks_per_member(info, size));
4678 map->blocks_per_strip = __cpu_to_le16(info_to_blocks_per_strip(info));
4679 map->failed_disk_num = ~0;
4680 if (info->level > 0)
4681 map->map_state = IMSM_T_STATE_UNINITIALIZED;
4682 else
4683 map->map_state = info->failed_disks ? IMSM_T_STATE_FAILED :
4684 IMSM_T_STATE_NORMAL;
4685 map->ddf = 1;
4686
4687 if (info->level == 1 && info->raid_disks > 2) {
4688 free(dev);
4689 free(dv);
4690 fprintf(stderr, Name": imsm does not support more than 2 disks"
4691 "in a raid1 volume\n");
4692 return 0;
4693 }
4694
4695 map->raid_level = info->level;
4696 if (info->level == 10) {
4697 map->raid_level = 1;
4698 map->num_domains = info->raid_disks / 2;
4699 } else if (info->level == 1)
4700 map->num_domains = info->raid_disks;
4701 else
4702 map->num_domains = 1;
4703
4704 /* info->size is only int so use the 'size' parameter instead */
4705 num_data_stripes = (size * 2) / info_to_blocks_per_strip(info);
4706 num_data_stripes /= map->num_domains;
4707 set_num_data_stripes(map, num_data_stripes);
4708
4709 map->num_members = info->raid_disks;
4710 for (i = 0; i < map->num_members; i++) {
4711 /* initialized in add_to_super */
4712 set_imsm_ord_tbl_ent(map, i, IMSM_ORD_REBUILD);
4713 }
4714 mpb->num_raid_devs++;
4715
4716 dv->dev = dev;
4717 dv->index = super->current_vol;
4718 dv->next = super->devlist;
4719 super->devlist = dv;
4720
4721 imsm_update_version_info(super);
4722
4723 return 1;
4724 }
4725
4726 static int init_super_imsm(struct supertype *st, mdu_array_info_t *info,
4727 unsigned long long size, char *name,
4728 char *homehost, int *uuid)
4729 {
4730 /* This is primarily called by Create when creating a new array.
4731 * We will then get add_to_super called for each component, and then
4732 * write_init_super called to write it out to each device.
4733 * For IMSM, Create can create on fresh devices or on a pre-existing
4734 * array.
4735 * To create on a pre-existing array a different method will be called.
4736 * This one is just for fresh drives.
4737 */
4738 struct intel_super *super;
4739 struct imsm_super *mpb;
4740 size_t mpb_size;
4741 char *version;
4742
4743 if (st->sb)
4744 return init_super_imsm_volume(st, info, size, name, homehost, uuid);
4745
4746 if (info)
4747 mpb_size = disks_to_mpb_size(info->nr_disks);
4748 else
4749 mpb_size = 512;
4750
4751 super = alloc_super();
4752 if (super && posix_memalign(&super->buf, 512, mpb_size) != 0) {
4753 free(super);
4754 super = NULL;
4755 }
4756 if (!super) {
4757 fprintf(stderr, Name
4758 ": %s could not allocate superblock\n", __func__);
4759 return 0;
4760 }
4761 if (posix_memalign(&super->migr_rec_buf, 512, MIGR_REC_BUF_SIZE) != 0) {
4762 fprintf(stderr, Name
4763 ": %s could not allocate migr_rec buffer\n", __func__);
4764 free(super->buf);
4765 free(super);
4766 return 0;
4767 }
4768 memset(super->buf, 0, mpb_size);
4769 mpb = super->buf;
4770 mpb->mpb_size = __cpu_to_le32(mpb_size);
4771 st->sb = super;
4772
4773 if (info == NULL) {
4774 /* zeroing superblock */
4775 return 0;
4776 }
4777
4778 mpb->attributes = MPB_ATTRIB_CHECKSUM_VERIFY;
4779
4780 version = (char *) mpb->sig;
4781 strcpy(version, MPB_SIGNATURE);
4782 version += strlen(MPB_SIGNATURE);
4783 strcpy(version, MPB_VERSION_RAID0);
4784
4785 return 1;
4786 }
4787
4788 #ifndef MDASSEMBLE
4789 static int add_to_super_imsm_volume(struct supertype *st, mdu_disk_info_t *dk,
4790 int fd, char *devname)
4791 {
4792 struct intel_super *super = st->sb;
4793 struct imsm_super *mpb = super->anchor;
4794 struct imsm_disk *_disk;
4795 struct imsm_dev *dev;
4796 struct imsm_map *map;
4797 struct dl *dl, *df;
4798 int slot;
4799
4800 dev = get_imsm_dev(super, super->current_vol);
4801 map = get_imsm_map(dev, MAP_0);
4802
4803 if (! (dk->state & (1<<MD_DISK_SYNC))) {
4804 fprintf(stderr, Name ": %s: Cannot add spare devices to IMSM volume\n",
4805 devname);
4806 return 1;
4807 }
4808
4809 if (fd == -1) {
4810 /* we're doing autolayout so grab the pre-marked (in
4811 * validate_geometry) raid_disk
4812 */
4813 for (dl = super->disks; dl; dl = dl->next)
4814 if (dl->raiddisk == dk->raid_disk)
4815 break;
4816 } else {
4817 for (dl = super->disks; dl ; dl = dl->next)
4818 if (dl->major == dk->major &&
4819 dl->minor == dk->minor)
4820 break;
4821 }
4822
4823 if (!dl) {
4824 fprintf(stderr, Name ": %s is not a member of the same container\n", devname);
4825 return 1;
4826 }
4827
4828 /* add a pristine spare to the metadata */
4829 if (dl->index < 0) {
4830 dl->index = super->anchor->num_disks;
4831 super->anchor->num_disks++;
4832 }
4833 /* Check the device has not already been added */
4834 slot = get_imsm_disk_slot(map, dl->index);
4835 if (slot >= 0 &&
4836 (get_imsm_ord_tbl_ent(dev, slot, MAP_X) & IMSM_ORD_REBUILD) == 0) {
4837 fprintf(stderr, Name ": %s has been included in this array twice\n",
4838 devname);
4839 return 1;
4840 }
4841 set_imsm_ord_tbl_ent(map, dk->raid_disk, dl->index);
4842 dl->disk.status = CONFIGURED_DISK;
4843
4844 /* update size of 'missing' disks to be at least as large as the
4845 * largest acitve member (we only have dummy missing disks when
4846 * creating the first volume)
4847 */
4848 if (super->current_vol == 0) {
4849 for (df = super->missing; df; df = df->next) {
4850 if (total_blocks(&dl->disk) > total_blocks(&df->disk))
4851 set_total_blocks(&df->disk, total_blocks(&dl->disk));
4852 _disk = __get_imsm_disk(mpb, df->index);
4853 *_disk = df->disk;
4854 }
4855 }
4856
4857 /* refresh unset/failed slots to point to valid 'missing' entries */
4858 for (df = super->missing; df; df = df->next)
4859 for (slot = 0; slot < mpb->num_disks; slot++) {
4860 __u32 ord = get_imsm_ord_tbl_ent(dev, slot, MAP_X);
4861
4862 if ((ord & IMSM_ORD_REBUILD) == 0)
4863 continue;
4864 set_imsm_ord_tbl_ent(map, slot, df->index | IMSM_ORD_REBUILD);
4865 if (is_gen_migration(dev)) {
4866 struct imsm_map *map2 = get_imsm_map(dev,
4867 MAP_1);
4868 int slot2 = get_imsm_disk_slot(map2, df->index);
4869 if ((slot2 < map2->num_members) &&
4870 (slot2 >= 0)) {
4871 __u32 ord2 = get_imsm_ord_tbl_ent(dev,
4872 slot2,
4873 MAP_1);
4874 if ((unsigned)df->index ==
4875 ord_to_idx(ord2))
4876 set_imsm_ord_tbl_ent(map2,
4877 slot2,
4878 df->index |
4879 IMSM_ORD_REBUILD);
4880 }
4881 }
4882 dprintf("set slot:%d to missing disk:%d\n", slot, df->index);
4883 break;
4884 }
4885
4886 /* if we are creating the first raid device update the family number */
4887 if (super->current_vol == 0) {
4888 __u32 sum;
4889 struct imsm_dev *_dev = __get_imsm_dev(mpb, 0);
4890
4891 _disk = __get_imsm_disk(mpb, dl->index);
4892 if (!_dev || !_disk) {
4893 fprintf(stderr, Name ": BUG mpb setup error\n");
4894 return 1;
4895 }
4896 *_dev = *dev;
4897 *_disk = dl->disk;
4898 sum = random32();
4899 sum += __gen_imsm_checksum(mpb);
4900 mpb->family_num = __cpu_to_le32(sum);
4901 mpb->orig_family_num = mpb->family_num;
4902 }
4903 super->current_disk = dl;
4904 return 0;
4905 }
4906
4907 /* mark_spare()
4908 * Function marks disk as spare and restores disk serial
4909 * in case it was previously marked as failed by takeover operation
4910 * reruns:
4911 * -1 : critical error
4912 * 0 : disk is marked as spare but serial is not set
4913 * 1 : success
4914 */
4915 int mark_spare(struct dl *disk)
4916 {
4917 __u8 serial[MAX_RAID_SERIAL_LEN];
4918 int ret_val = -1;
4919
4920 if (!disk)
4921 return ret_val;
4922
4923 ret_val = 0;
4924 if (!imsm_read_serial(disk->fd, NULL, serial)) {
4925 /* Restore disk serial number, because takeover marks disk
4926 * as failed and adds to serial ':0' before it becomes
4927 * a spare disk.
4928 */
4929 serialcpy(disk->serial, serial);
4930 serialcpy(disk->disk.serial, serial);
4931 ret_val = 1;
4932 }
4933 disk->disk.status = SPARE_DISK;
4934 disk->index = -1;
4935
4936 return ret_val;
4937 }
4938
4939 static int add_to_super_imsm(struct supertype *st, mdu_disk_info_t *dk,
4940 int fd, char *devname)
4941 {
4942 struct intel_super *super = st->sb;
4943 struct dl *dd;
4944 unsigned long long size;
4945 __u32 id;
4946 int rv;
4947 struct stat stb;
4948
4949 /* If we are on an RAID enabled platform check that the disk is
4950 * attached to the raid controller.
4951 * We do not need to test disks attachment for container based additions,
4952 * they shall be already tested when container was created/assembled.
4953 */
4954 rv = find_intel_hba_capability(fd, super, devname);
4955 /* no orom/efi or non-intel hba of the disk */
4956 if (rv != 0) {
4957 dprintf("capability: %p fd: %d ret: %d\n",
4958 super->orom, fd, rv);
4959 return 1;
4960 }
4961
4962 if (super->current_vol >= 0)
4963 return add_to_super_imsm_volume(st, dk, fd, devname);
4964
4965 fstat(fd, &stb);
4966 dd = malloc(sizeof(*dd));
4967 if (!dd) {
4968 fprintf(stderr,
4969 Name ": malloc failed %s:%d.\n", __func__, __LINE__);
4970 return 1;
4971 }
4972 memset(dd, 0, sizeof(*dd));
4973 dd->major = major(stb.st_rdev);
4974 dd->minor = minor(stb.st_rdev);
4975 dd->devname = devname ? strdup(devname) : NULL;
4976 dd->fd = fd;
4977 dd->e = NULL;
4978 dd->action = DISK_ADD;
4979 rv = imsm_read_serial(fd, devname, dd->serial);
4980 if (rv) {
4981 fprintf(stderr,
4982 Name ": failed to retrieve scsi serial, aborting\n");
4983 free(dd);
4984 abort();
4985 }
4986
4987 get_dev_size(fd, NULL, &size);
4988 size /= 512;
4989 serialcpy(dd->disk.serial, dd->serial);
4990 set_total_blocks(&dd->disk, size);
4991 if (__le32_to_cpu(dd->disk.total_blocks_hi) > 0) {
4992 struct imsm_super *mpb = super->anchor;
4993 mpb->attributes |= MPB_ATTRIB_2TB_DISK;
4994 }
4995 mark_spare(dd);
4996 if (sysfs_disk_to_scsi_id(fd, &id) == 0)
4997 dd->disk.scsi_id = __cpu_to_le32(id);
4998 else
4999 dd->disk.scsi_id = __cpu_to_le32(0);
5000
5001 if (st->update_tail) {
5002 dd->next = super->disk_mgmt_list;
5003 super->disk_mgmt_list = dd;
5004 } else {
5005 dd->next = super->disks;
5006 super->disks = dd;
5007 super->updates_pending++;
5008 }
5009
5010 return 0;
5011 }
5012
5013
5014 static int remove_from_super_imsm(struct supertype *st, mdu_disk_info_t *dk)
5015 {
5016 struct intel_super *super = st->sb;
5017 struct dl *dd;
5018
5019 /* remove from super works only in mdmon - for communication
5020 * manager - monitor. Check if communication memory buffer
5021 * is prepared.
5022 */
5023 if (!st->update_tail) {
5024 fprintf(stderr,
5025 Name ": %s shall be used in mdmon context only"
5026 "(line %d).\n", __func__, __LINE__);
5027 return 1;
5028 }
5029 dd = malloc(sizeof(*dd));
5030 if (!dd) {
5031 fprintf(stderr,
5032 Name ": malloc failed %s:%d.\n", __func__, __LINE__);
5033 return 1;
5034 }
5035 memset(dd, 0, sizeof(*dd));
5036 dd->major = dk->major;
5037 dd->minor = dk->minor;
5038 dd->fd = -1;
5039 mark_spare(dd);
5040 dd->action = DISK_REMOVE;
5041
5042 dd->next = super->disk_mgmt_list;
5043 super->disk_mgmt_list = dd;
5044
5045
5046 return 0;
5047 }
5048
5049 static int store_imsm_mpb(int fd, struct imsm_super *mpb);
5050
5051 static union {
5052 char buf[512];
5053 struct imsm_super anchor;
5054 } spare_record __attribute__ ((aligned(512)));
5055
5056 /* spare records have their own family number and do not have any defined raid
5057 * devices
5058 */
5059 static int write_super_imsm_spares(struct intel_super *super, int doclose)
5060 {
5061 struct imsm_super *mpb = super->anchor;
5062 struct imsm_super *spare = &spare_record.anchor;
5063 __u32 sum;
5064 struct dl *d;
5065
5066 spare->mpb_size = __cpu_to_le32(sizeof(struct imsm_super)),
5067 spare->generation_num = __cpu_to_le32(1UL),
5068 spare->attributes = MPB_ATTRIB_CHECKSUM_VERIFY;
5069 spare->num_disks = 1,
5070 spare->num_raid_devs = 0,
5071 spare->cache_size = mpb->cache_size,
5072 spare->pwr_cycle_count = __cpu_to_le32(1),
5073
5074 snprintf((char *) spare->sig, MAX_SIGNATURE_LENGTH,
5075 MPB_SIGNATURE MPB_VERSION_RAID0);
5076
5077 for (d = super->disks; d; d = d->next) {
5078 if (d->index != -1)
5079 continue;
5080
5081 spare->disk[0] = d->disk;
5082 if (__le32_to_cpu(d->disk.total_blocks_hi) > 0)
5083 spare->attributes |= MPB_ATTRIB_2TB_DISK;
5084
5085 sum = __gen_imsm_checksum(spare);
5086 spare->family_num = __cpu_to_le32(sum);
5087 spare->orig_family_num = 0;
5088 sum = __gen_imsm_checksum(spare);
5089 spare->check_sum = __cpu_to_le32(sum);
5090
5091 if (store_imsm_mpb(d->fd, spare)) {
5092 fprintf(stderr, "%s: failed for device %d:%d %s\n",
5093 __func__, d->major, d->minor, strerror(errno));
5094 return 1;
5095 }
5096 if (doclose) {
5097 close(d->fd);
5098 d->fd = -1;
5099 }
5100 }
5101
5102 return 0;
5103 }
5104
5105 static int write_super_imsm(struct supertype *st, int doclose)
5106 {
5107 struct intel_super *super = st->sb;
5108 struct imsm_super *mpb = super->anchor;
5109 struct dl *d;
5110 __u32 generation;
5111 __u32 sum;
5112 int spares = 0;
5113 int i;
5114 __u32 mpb_size = sizeof(struct imsm_super) - sizeof(struct imsm_disk);
5115 int num_disks = 0;
5116 int clear_migration_record = 1;
5117
5118 /* 'generation' is incremented everytime the metadata is written */
5119 generation = __le32_to_cpu(mpb->generation_num);
5120 generation++;
5121 mpb->generation_num = __cpu_to_le32(generation);
5122
5123 /* fix up cases where previous mdadm releases failed to set
5124 * orig_family_num
5125 */
5126 if (mpb->orig_family_num == 0)
5127 mpb->orig_family_num = mpb->family_num;
5128
5129 for (d = super->disks; d; d = d->next) {
5130 if (d->index == -1)
5131 spares++;
5132 else {
5133 mpb->disk[d->index] = d->disk;
5134 num_disks++;
5135 }
5136 }
5137 for (d = super->missing; d; d = d->next) {
5138 mpb->disk[d->index] = d->disk;
5139 num_disks++;
5140 }
5141 mpb->num_disks = num_disks;
5142 mpb_size += sizeof(struct imsm_disk) * mpb->num_disks;
5143
5144 for (i = 0; i < mpb->num_raid_devs; i++) {
5145 struct imsm_dev *dev = __get_imsm_dev(mpb, i);
5146 struct imsm_dev *dev2 = get_imsm_dev(super, i);
5147 if (dev && dev2) {
5148 imsm_copy_dev(dev, dev2);
5149 mpb_size += sizeof_imsm_dev(dev, 0);
5150 }
5151 if (is_gen_migration(dev2))
5152 clear_migration_record = 0;
5153 }
5154 mpb_size += __le32_to_cpu(mpb->bbm_log_size);
5155 mpb->mpb_size = __cpu_to_le32(mpb_size);
5156
5157 /* recalculate checksum */
5158 sum = __gen_imsm_checksum(mpb);
5159 mpb->check_sum = __cpu_to_le32(sum);
5160
5161 if (super->clean_migration_record_by_mdmon) {
5162 clear_migration_record = 1;
5163 super->clean_migration_record_by_mdmon = 0;
5164 }
5165 if (clear_migration_record)
5166 memset(super->migr_rec_buf, 0, MIGR_REC_BUF_SIZE);
5167
5168 /* write the mpb for disks that compose raid devices */
5169 for (d = super->disks; d ; d = d->next) {
5170 if (d->index < 0 || is_failed(&d->disk))
5171 continue;
5172
5173 if (clear_migration_record) {
5174 unsigned long long dsize;
5175
5176 get_dev_size(d->fd, NULL, &dsize);
5177 if (lseek64(d->fd, dsize - 512, SEEK_SET) >= 0) {
5178 if (write(d->fd, super->migr_rec_buf,
5179 MIGR_REC_BUF_SIZE) != MIGR_REC_BUF_SIZE)
5180 perror("Write migr_rec failed");
5181 }
5182 }
5183
5184 if (store_imsm_mpb(d->fd, mpb))
5185 fprintf(stderr,
5186 "%s: failed for device %d:%d (fd: %d)%s\n",
5187 __func__, d->major, d->minor,
5188 d->fd, strerror(errno));
5189
5190 if (doclose) {
5191 close(d->fd);
5192 d->fd = -1;
5193 }
5194 }
5195
5196 if (spares)
5197 return write_super_imsm_spares(super, doclose);
5198
5199 return 0;
5200 }
5201
5202
5203 static int create_array(struct supertype *st, int dev_idx)
5204 {
5205 size_t len;
5206 struct imsm_update_create_array *u;
5207 struct intel_super *super = st->sb;
5208 struct imsm_dev *dev = get_imsm_dev(super, dev_idx);
5209 struct imsm_map *map = get_imsm_map(dev, MAP_0);
5210 struct disk_info *inf;
5211 struct imsm_disk *disk;
5212 int i;
5213
5214 len = sizeof(*u) - sizeof(*dev) + sizeof_imsm_dev(dev, 0) +
5215 sizeof(*inf) * map->num_members;
5216 u = malloc(len);
5217 if (!u) {
5218 fprintf(stderr, "%s: failed to allocate update buffer\n",
5219 __func__);
5220 return 1;
5221 }
5222
5223 u->type = update_create_array;
5224 u->dev_idx = dev_idx;
5225 imsm_copy_dev(&u->dev, dev);
5226 inf = get_disk_info(u);
5227 for (i = 0; i < map->num_members; i++) {
5228 int idx = get_imsm_disk_idx(dev, i, MAP_X);
5229
5230 disk = get_imsm_disk(super, idx);
5231 serialcpy(inf[i].serial, disk->serial);
5232 }
5233 append_metadata_update(st, u, len);
5234
5235 return 0;
5236 }
5237
5238 static int mgmt_disk(struct supertype *st)
5239 {
5240 struct intel_super *super = st->sb;
5241 size_t len;
5242 struct imsm_update_add_remove_disk *u;
5243
5244 if (!super->disk_mgmt_list)
5245 return 0;
5246
5247 len = sizeof(*u);
5248 u = malloc(len);
5249 if (!u) {
5250 fprintf(stderr, "%s: failed to allocate update buffer\n",
5251 __func__);
5252 return 1;
5253 }
5254
5255 u->type = update_add_remove_disk;
5256 append_metadata_update(st, u, len);
5257
5258 return 0;
5259 }
5260
5261 static int write_init_super_imsm(struct supertype *st)
5262 {
5263 struct intel_super *super = st->sb;
5264 int current_vol = super->current_vol;
5265
5266 /* we are done with current_vol reset it to point st at the container */
5267 super->current_vol = -1;
5268
5269 if (st->update_tail) {
5270 /* queue the recently created array / added disk
5271 * as a metadata update */
5272 int rv;
5273
5274 /* determine if we are creating a volume or adding a disk */
5275 if (current_vol < 0) {
5276 /* in the mgmt (add/remove) disk case we are running
5277 * in mdmon context, so don't close fd's
5278 */
5279 return mgmt_disk(st);
5280 } else
5281 rv = create_array(st, current_vol);
5282
5283 return rv;
5284 } else {
5285 struct dl *d;
5286 for (d = super->disks; d; d = d->next)
5287 Kill(d->devname, NULL, 0, 1, 1);
5288 return write_super_imsm(st, 1);
5289 }
5290 }
5291 #endif
5292
5293 static int store_super_imsm(struct supertype *st, int fd)
5294 {
5295 struct intel_super *super = st->sb;
5296 struct imsm_super *mpb = super ? super->anchor : NULL;
5297
5298 if (!mpb)
5299 return 1;
5300
5301 #ifndef MDASSEMBLE
5302 return store_imsm_mpb(fd, mpb);
5303 #else
5304 return 1;
5305 #endif
5306 }
5307
5308 static int imsm_bbm_log_size(struct imsm_super *mpb)
5309 {
5310 return __le32_to_cpu(mpb->bbm_log_size);
5311 }
5312
5313 #ifndef MDASSEMBLE
5314 static int validate_geometry_imsm_container(struct supertype *st, int level,
5315 int layout, int raiddisks, int chunk,
5316 unsigned long long size, char *dev,
5317 unsigned long long *freesize,
5318 int verbose)
5319 {
5320 int fd;
5321 unsigned long long ldsize;
5322 struct intel_super *super=NULL;
5323 int rv = 0;
5324
5325 if (level != LEVEL_CONTAINER)
5326 return 0;
5327 if (!dev)
5328 return 1;
5329
5330 fd = open(dev, O_RDONLY|O_EXCL, 0);
5331 if (fd < 0) {
5332 if (verbose)
5333 fprintf(stderr, Name ": imsm: Cannot open %s: %s\n",
5334 dev, strerror(errno));
5335 return 0;
5336 }
5337 if (!get_dev_size(fd, dev, &ldsize)) {
5338 close(fd);
5339 return 0;
5340 }
5341
5342 /* capabilities retrieve could be possible
5343 * note that there is no fd for the disks in array.
5344 */
5345 super = alloc_super();
5346 if (!super) {
5347 fprintf(stderr,
5348 Name ": malloc of %zu failed.\n",
5349 sizeof(*super));
5350 close(fd);
5351 return 0;
5352 }
5353
5354 rv = find_intel_hba_capability(fd, super, verbose ? dev : NULL);
5355 if (rv != 0) {
5356 #if DEBUG
5357 char str[256];
5358 fd2devname(fd, str);
5359 dprintf("validate_geometry_imsm_container: fd: %d %s orom: %p rv: %d raiddisk: %d\n",
5360 fd, str, super->orom, rv, raiddisks);
5361 #endif
5362 /* no orom/efi or non-intel hba of the disk */
5363 close(fd);
5364 free_imsm(super);
5365 return 0;
5366 }
5367 close(fd);
5368 if (super->orom) {
5369 if (raiddisks > super->orom->tds) {
5370 if (verbose)
5371 fprintf(stderr, Name ": %d exceeds maximum number of"
5372 " platform supported disks: %d\n",
5373 raiddisks, super->orom->tds);
5374 free_imsm(super);
5375 return 0;
5376 }
5377 if ((super->orom->attr & IMSM_OROM_ATTR_2TB_DISK) == 0 &&
5378 (ldsize >> 9) >> 32 > 0) {
5379 if (verbose)
5380 fprintf(stderr, Name ": %s exceeds maximum platform supported size\n", dev);
5381 free_imsm(super);
5382 return 0;
5383 }
5384 }
5385
5386 *freesize = avail_size_imsm(st, ldsize >> 9);
5387 free_imsm(super);
5388
5389 return 1;
5390 }
5391
5392 static unsigned long long find_size(struct extent *e, int *idx, int num_extents)
5393 {
5394 const unsigned long long base_start = e[*idx].start;
5395 unsigned long long end = base_start + e[*idx].size;
5396 int i;
5397
5398 if (base_start == end)
5399 return 0;
5400
5401 *idx = *idx + 1;
5402 for (i = *idx; i < num_extents; i++) {
5403 /* extend overlapping extents */
5404 if (e[i].start >= base_start &&
5405 e[i].start <= end) {
5406 if (e[i].size == 0)
5407 return 0;
5408 if (e[i].start + e[i].size > end)
5409 end = e[i].start + e[i].size;
5410 } else if (e[i].start > end) {
5411 *idx = i;
5412 break;
5413 }
5414 }
5415
5416 return end - base_start;
5417 }
5418
5419 static unsigned long long merge_extents(struct intel_super *super, int sum_extents)
5420 {
5421 /* build a composite disk with all known extents and generate a new
5422 * 'maxsize' given the "all disks in an array must share a common start
5423 * offset" constraint
5424 */
5425 struct extent *e = calloc(sum_extents, sizeof(*e));
5426 struct dl *dl;
5427 int i, j;
5428 int start_extent;
5429 unsigned long long pos;
5430 unsigned long long start = 0;
5431 unsigned long long maxsize;
5432 unsigned long reserve;
5433
5434 if (!e)
5435 return 0;
5436
5437 /* coalesce and sort all extents. also, check to see if we need to
5438 * reserve space between member arrays
5439 */
5440 j = 0;
5441 for (dl = super->disks; dl; dl = dl->next) {
5442 if (!dl->e)
5443 continue;
5444 for (i = 0; i < dl->extent_cnt; i++)
5445 e[j++] = dl->e[i];
5446 }
5447 qsort(e, sum_extents, sizeof(*e), cmp_extent);
5448
5449 /* merge extents */
5450 i = 0;
5451 j = 0;
5452 while (i < sum_extents) {
5453 e[j].start = e[i].start;
5454 e[j].size = find_size(e, &i, sum_extents);
5455 j++;
5456 if (e[j-1].size == 0)
5457 break;
5458 }
5459
5460 pos = 0;
5461 maxsize = 0;
5462 start_extent = 0;
5463 i = 0;
5464 do {
5465 unsigned long long esize;
5466
5467 esize = e[i].start - pos;
5468 if (esize >= maxsize) {
5469 maxsize = esize;
5470 start = pos;
5471 start_extent = i;
5472 }
5473 pos = e[i].start + e[i].size;
5474 i++;
5475 } while (e[i-1].size);
5476 free(e);
5477
5478 if (maxsize == 0)
5479 return 0;
5480
5481 /* FIXME assumes volume at offset 0 is the first volume in a
5482 * container
5483 */
5484 if (start_extent > 0)
5485 reserve = IMSM_RESERVED_SECTORS; /* gap between raid regions */
5486 else
5487 reserve = 0;
5488
5489 if (maxsize < reserve)
5490 return 0;
5491
5492 super->create_offset = ~((unsigned long long) 0);
5493 if (start + reserve > super->create_offset)
5494 return 0; /* start overflows create_offset */
5495 super->create_offset = start + reserve;
5496
5497 return maxsize - reserve;
5498 }
5499
5500 static int is_raid_level_supported(const struct imsm_orom *orom, int level, int raiddisks)
5501 {
5502 if (level < 0 || level == 6 || level == 4)
5503 return 0;
5504
5505 /* if we have an orom prevent invalid raid levels */
5506 if (orom)
5507 switch (level) {
5508 case 0: return imsm_orom_has_raid0(orom);
5509 case 1:
5510 if (raiddisks > 2)
5511 return imsm_orom_has_raid1e(orom);
5512 return imsm_orom_has_raid1(orom) && raiddisks == 2;
5513 case 10: return imsm_orom_has_raid10(orom) && raiddisks == 4;
5514 case 5: return imsm_orom_has_raid5(orom) && raiddisks > 2;
5515 }
5516 else
5517 return 1; /* not on an Intel RAID platform so anything goes */
5518
5519 return 0;
5520 }
5521
5522
5523 static int
5524 active_arrays_by_format(char *name, char* hba, struct md_list **devlist,
5525 int dpa, int verbose)
5526 {
5527 struct mdstat_ent *mdstat = mdstat_read(0, 0);
5528 struct mdstat_ent *memb = NULL;
5529 int count = 0;
5530 int num = 0;
5531 struct md_list *dv = NULL;
5532 int found;
5533
5534 for (memb = mdstat ; memb ; memb = memb->next) {
5535 if (memb->metadata_version &&
5536 (strncmp(memb->metadata_version, "external:", 9) == 0) &&
5537 (strcmp(&memb->metadata_version[9], name) == 0) &&
5538 !is_subarray(memb->metadata_version+9) &&
5539 memb->members) {
5540 struct dev_member *dev = memb->members;
5541 int fd = -1;
5542 while(dev && (fd < 0)) {
5543 char *path = malloc(strlen(dev->name) + strlen("/dev/") + 1);
5544 if (path) {
5545 num = sprintf(path, "%s%s", "/dev/", dev->name);
5546 if (num > 0)
5547 fd = open(path, O_RDONLY, 0);
5548 if ((num <= 0) || (fd < 0)) {
5549 pr_vrb(": Cannot open %s: %s\n",
5550 dev->name, strerror(errno));
5551 }
5552 free(path);
5553 }
5554 dev = dev->next;
5555 }
5556 found = 0;
5557 if ((fd >= 0) && disk_attached_to_hba(fd, hba)) {
5558 struct mdstat_ent *vol;
5559 for (vol = mdstat ; vol ; vol = vol->next) {
5560 if ((vol->active > 0) &&
5561 vol->metadata_version &&
5562 is_container_member(vol, memb->dev)) {
5563 found++;
5564 count++;
5565 }
5566 }
5567 if (*devlist && (found < dpa)) {
5568 dv = calloc(1, sizeof(*dv));
5569 if (dv == NULL)
5570 fprintf(stderr, Name ": calloc failed\n");
5571 else {
5572 dv->devname = malloc(strlen(memb->dev) + strlen("/dev/") + 1);
5573 if (dv->devname != NULL) {
5574 sprintf(dv->devname, "%s%s", "/dev/", memb->dev);
5575 dv->found = found;
5576 dv->used = 0;
5577 dv->next = *devlist;
5578 *devlist = dv;
5579 } else
5580 free(dv);
5581 }
5582 }
5583 }
5584 if (fd >= 0)
5585 close(fd);
5586 }
5587 }
5588 free_mdstat(mdstat);
5589 return count;
5590 }
5591
5592 #ifdef DEBUG_LOOP
5593 static struct md_list*
5594 get_loop_devices(void)
5595 {
5596 int i;
5597 struct md_list *devlist = NULL;
5598 struct md_list *dv = NULL;
5599
5600 for(i = 0; i < 12; i++) {
5601 dv = calloc(1, sizeof(*dv));
5602 if (dv == NULL) {
5603 fprintf(stderr, Name ": calloc failed\n");
5604 break;
5605 }
5606 dv->devname = malloc(40);
5607 if (dv->devname == NULL) {
5608 fprintf(stderr, Name ": malloc failed\n");
5609 free(dv);
5610 break;
5611 }
5612 sprintf(dv->devname, "/dev/loop%d", i);
5613 dv->next = devlist;
5614 devlist = dv;
5615 }
5616 return devlist;
5617 }
5618 #endif
5619
5620 static struct md_list*
5621 get_devices(const char *hba_path)
5622 {
5623 struct md_list *devlist = NULL;
5624 struct md_list *dv = NULL;
5625 struct dirent *ent;
5626 DIR *dir;
5627 int err = 0;
5628
5629 #if DEBUG_LOOP
5630 devlist = get_loop_devices();
5631 return devlist;
5632 #endif
5633 /* scroll through /sys/dev/block looking for devices attached to
5634 * this hba
5635 */
5636 dir = opendir("/sys/dev/block");
5637 for (ent = dir ? readdir(dir) : NULL; ent; ent = readdir(dir)) {
5638 int fd;
5639 char buf[1024];
5640 int major, minor;
5641 char *path = NULL;
5642 if (sscanf(ent->d_name, "%d:%d", &major, &minor) != 2)
5643 continue;
5644 path = devt_to_devpath(makedev(major, minor));
5645 if (!path)
5646 continue;
5647 if (!path_attached_to_hba(path, hba_path)) {
5648 free(path);
5649 path = NULL;
5650 continue;
5651 }
5652 free(path);
5653 path = NULL;
5654 fd = dev_open(ent->d_name, O_RDONLY);
5655 if (fd >= 0) {
5656 fd2devname(fd, buf);
5657 close(fd);
5658 } else {
5659 fprintf(stderr, Name ": cannot open device: %s\n",
5660 ent->d_name);
5661 continue;
5662 }
5663
5664
5665 dv = calloc(1, sizeof(*dv));
5666 if (dv == NULL) {
5667 fprintf(stderr, Name ": malloc failed\n");
5668 err = 1;
5669 break;
5670 }
5671 dv->devname = strdup(buf);
5672 if (dv->devname == NULL) {
5673 fprintf(stderr, Name ": malloc failed\n");
5674 err = 1;
5675 free(dv);
5676 break;
5677 }
5678 dv->next = devlist;
5679 devlist = dv;
5680 }
5681 if (err) {
5682 while(devlist) {
5683 dv = devlist;
5684 devlist = devlist->next;
5685 free(dv->devname);
5686 free(dv);
5687 }
5688 }
5689 return devlist;
5690 }
5691
5692 static int
5693 count_volumes_list(struct md_list *devlist, char *homehost,
5694 int verbose, int *found)
5695 {
5696 struct md_list *tmpdev;
5697 int count = 0;
5698 struct supertype *st = NULL;
5699
5700 /* first walk the list of devices to find a consistent set
5701 * that match the criterea, if that is possible.
5702 * We flag the ones we like with 'used'.
5703 */
5704 *found = 0;
5705 st = match_metadata_desc_imsm("imsm");
5706 if (st == NULL) {
5707 pr_vrb(": cannot allocate memory for imsm supertype\n");
5708 return 0;
5709 }
5710
5711 for (tmpdev = devlist; tmpdev; tmpdev = tmpdev->next) {
5712 char *devname = tmpdev->devname;
5713 struct stat stb;
5714 struct supertype *tst;
5715 int dfd;
5716 if (tmpdev->used > 1)
5717 continue;
5718 tst = dup_super(st);
5719 if (tst == NULL) {
5720 pr_vrb(": cannot allocate memory for imsm supertype\n");
5721 goto err_1;
5722 }
5723 tmpdev->container = 0;
5724 dfd = dev_open(devname, O_RDONLY|O_EXCL);
5725 if (dfd < 0) {
5726 dprintf(": cannot open device %s: %s\n",
5727 devname, strerror(errno));
5728 tmpdev->used = 2;
5729 } else if (fstat(dfd, &stb)< 0) {
5730 /* Impossible! */
5731 dprintf(": fstat failed for %s: %s\n",
5732 devname, strerror(errno));
5733 tmpdev->used = 2;
5734 } else if ((stb.st_mode & S_IFMT) != S_IFBLK) {
5735 dprintf(": %s is not a block device.\n",
5736 devname);
5737 tmpdev->used = 2;
5738 } else if (must_be_container(dfd)) {
5739 struct supertype *cst;
5740 cst = super_by_fd(dfd, NULL);
5741 if (cst == NULL) {
5742 dprintf(": cannot recognize container type %s\n",
5743 devname);
5744 tmpdev->used = 2;
5745 } else if (tst->ss != st->ss) {
5746 dprintf(": non-imsm container - ignore it: %s\n",
5747 devname);
5748 tmpdev->used = 2;
5749 } else if (!tst->ss->load_container ||
5750 tst->ss->load_container(tst, dfd, NULL))
5751 tmpdev->used = 2;
5752 else {
5753 tmpdev->container = 1;
5754 }
5755 if (cst)
5756 cst->ss->free_super(cst);
5757 } else {
5758 tmpdev->st_rdev = stb.st_rdev;
5759 if (tst->ss->load_super(tst,dfd, NULL)) {
5760 dprintf(": no RAID superblock on %s\n",
5761 devname);
5762 tmpdev->used = 2;
5763 } else if (tst->ss->compare_super == NULL) {
5764 dprintf(": Cannot assemble %s metadata on %s\n",
5765 tst->ss->name, devname);
5766 tmpdev->used = 2;
5767 }
5768 }
5769 if (dfd >= 0)
5770 close(dfd);
5771 if (tmpdev->used == 2 || tmpdev->used == 4) {
5772 /* Ignore unrecognised devices during auto-assembly */
5773 goto loop;
5774 }
5775 else {
5776 struct mdinfo info;
5777 tst->ss->getinfo_super(tst, &info, NULL);
5778
5779 if (st->minor_version == -1)
5780 st->minor_version = tst->minor_version;
5781
5782 if (memcmp(info.uuid, uuid_zero,
5783 sizeof(int[4])) == 0) {
5784 /* this is a floating spare. It cannot define
5785 * an array unless there are no more arrays of
5786 * this type to be found. It can be included
5787 * in an array of this type though.
5788 */
5789 tmpdev->used = 3;
5790 goto loop;
5791 }
5792
5793 if (st->ss != tst->ss ||
5794 st->minor_version != tst->minor_version ||
5795 st->ss->compare_super(st, tst) != 0) {
5796 /* Some mismatch. If exactly one array matches this host,
5797 * we can resolve on that one.
5798 * Or, if we are auto assembling, we just ignore the second
5799 * for now.
5800 */
5801 dprintf(": superblock on %s doesn't match others - assembly aborted\n",
5802 devname);
5803 goto loop;
5804 }
5805 tmpdev->used = 1;
5806 *found = 1;
5807 dprintf("found: devname: %s\n", devname);
5808 }
5809 loop:
5810 if (tst)
5811 tst->ss->free_super(tst);
5812 }
5813 if (*found != 0) {
5814 int err;
5815 if ((err = load_super_imsm_all(st, -1, &st->sb, NULL, devlist, 0)) == 0) {
5816 struct mdinfo *iter, *head = st->ss->container_content(st, NULL);
5817 for (iter = head; iter; iter = iter->next) {
5818 dprintf("content->text_version: %s vol\n",
5819 iter->text_version);
5820 if (iter->array.state & (1<<MD_SB_BLOCK_VOLUME)) {
5821 /* do not assemble arrays with unsupported
5822 configurations */
5823 dprintf(": Cannot activate member %s.\n",
5824 iter->text_version);
5825 } else
5826 count++;
5827 }
5828 sysfs_free(head);
5829
5830 } else {
5831 dprintf(" no valid super block on device list: err: %d %p\n",
5832 err, st->sb);
5833 }
5834 } else {
5835 dprintf(" no more devices to examin\n");
5836 }
5837
5838 for (tmpdev = devlist; tmpdev; tmpdev = tmpdev->next) {
5839 if ((tmpdev->used == 1) && (tmpdev->found)) {
5840 if (count) {
5841 if (count < tmpdev->found)
5842 count = 0;
5843 else
5844 count -= tmpdev->found;
5845 }
5846 }
5847 if (tmpdev->used == 1)
5848 tmpdev->used = 4;
5849 }
5850 err_1:
5851 if (st)
5852 st->ss->free_super(st);
5853 return count;
5854 }
5855
5856
5857 static int
5858 count_volumes(char *hba, int dpa, int verbose)
5859 {
5860 struct md_list *devlist = NULL;
5861 int count = 0;
5862 int found = 0;;
5863
5864 devlist = get_devices(hba);
5865 /* if no intel devices return zero volumes */
5866 if (devlist == NULL)
5867 return 0;
5868
5869 count = active_arrays_by_format("imsm", hba, &devlist, dpa, verbose);
5870 dprintf(" path: %s active arrays: %d\n", hba, count);
5871 if (devlist == NULL)
5872 return 0;
5873 do {
5874 found = 0;
5875 count += count_volumes_list(devlist,
5876 NULL,
5877 verbose,
5878 &found);
5879 dprintf("found %d count: %d\n", found, count);
5880 } while (found);
5881
5882 dprintf("path: %s total number of volumes: %d\n", hba, count);
5883
5884 while(devlist) {
5885 struct md_list *dv = devlist;
5886 devlist = devlist->next;
5887 free(dv->devname);
5888 free(dv);
5889 }
5890 return count;
5891 }
5892
5893 static int imsm_default_chunk(const struct imsm_orom *orom)
5894 {
5895 /* up to 512 if the plaform supports it, otherwise the platform max.
5896 * 128 if no platform detected
5897 */
5898 int fs = max(7, orom ? fls(orom->sss) : 0);
5899
5900 return min(512, (1 << fs));
5901 }
5902
5903 static int
5904 validate_geometry_imsm_orom(struct intel_super *super, int level, int layout,
5905 int raiddisks, int *chunk, unsigned long long size, int verbose)
5906 {
5907 /* check/set platform and metadata limits/defaults */
5908 if (super->orom && raiddisks > super->orom->dpa) {
5909 pr_vrb(": platform supports a maximum of %d disks per array\n",
5910 super->orom->dpa);
5911 return 0;
5912 }
5913
5914 /* capabilities of OROM tested - copied from validate_geometry_imsm_volume */
5915 if (!is_raid_level_supported(super->orom, level, raiddisks)) {
5916 pr_vrb(": platform does not support raid%d with %d disk%s\n",
5917 level, raiddisks, raiddisks > 1 ? "s" : "");
5918 return 0;
5919 }
5920
5921 if (chunk && (*chunk == 0 || *chunk == UnSet))
5922 *chunk = imsm_default_chunk(super->orom);
5923
5924 if (super->orom && chunk && !imsm_orom_has_chunk(super->orom, *chunk)) {
5925 pr_vrb(": platform does not support a chunk size of: "
5926 "%d\n", *chunk);
5927 return 0;
5928 }
5929
5930 if (layout != imsm_level_to_layout(level)) {
5931 if (level == 5)
5932 pr_vrb(": imsm raid 5 only supports the left-asymmetric layout\n");
5933 else if (level == 10)
5934 pr_vrb(": imsm raid 10 only supports the n2 layout\n");
5935 else
5936 pr_vrb(": imsm unknown layout %#x for this raid level %d\n",
5937 layout, level);
5938 return 0;
5939 }
5940
5941 if (super->orom && (super->orom->attr & IMSM_OROM_ATTR_2TB) == 0 && chunk &&
5942 (calc_array_size(level, raiddisks, layout, *chunk, size) >> 32) > 0) {
5943 pr_vrb(": platform does not support a volume size over 2TB\n");
5944 return 0;
5945 }
5946 return 1;
5947 }
5948
5949 /* validate_geometry_imsm_volume - lifted from validate_geometry_ddf_bvd
5950 * FIX ME add ahci details
5951 */
5952 static int validate_geometry_imsm_volume(struct supertype *st, int level,
5953 int layout, int raiddisks, int *chunk,
5954 unsigned long long size, char *dev,
5955 unsigned long long *freesize,
5956 int verbose)
5957 {
5958 struct stat stb;
5959 struct intel_super *super = st->sb;
5960 struct imsm_super *mpb;
5961 struct dl *dl;
5962 unsigned long long pos = 0;
5963 unsigned long long maxsize;
5964 struct extent *e;
5965 int i;
5966
5967 /* We must have the container info already read in. */
5968 if (!super)
5969 return 0;
5970
5971 mpb = super->anchor;
5972
5973 if (!validate_geometry_imsm_orom(super, level, layout, raiddisks, chunk, size, verbose)) {
5974 fprintf(stderr, Name ": RAID gemetry validation failed. "
5975 "Cannot proceed with the action(s).\n");
5976 return 0;
5977 }
5978 if (!dev) {
5979 /* General test: make sure there is space for
5980 * 'raiddisks' device extents of size 'size' at a given
5981 * offset
5982 */
5983 unsigned long long minsize = size;
5984 unsigned long long start_offset = MaxSector;
5985 int dcnt = 0;
5986 if (minsize == 0)
5987 minsize = MPB_SECTOR_CNT + IMSM_RESERVED_SECTORS;
5988 for (dl = super->disks; dl ; dl = dl->next) {
5989 int found = 0;
5990
5991 pos = 0;
5992 i = 0;
5993 e = get_extents(super, dl);
5994 if (!e) continue;
5995 do {
5996 unsigned long long esize;
5997 esize = e[i].start - pos;
5998 if (esize >= minsize)
5999 found = 1;
6000 if (found && start_offset == MaxSector) {
6001 start_offset = pos;
6002 break;
6003 } else if (found && pos != start_offset) {
6004 found = 0;
6005 break;
6006 }
6007 pos = e[i].start + e[i].size;
6008 i++;
6009 } while (e[i-1].size);
6010 if (found)
6011 dcnt++;
6012 free(e);
6013 }
6014 if (dcnt < raiddisks) {
6015 if (verbose)
6016 fprintf(stderr, Name ": imsm: Not enough "
6017 "devices with space for this array "
6018 "(%d < %d)\n",
6019 dcnt, raiddisks);
6020 return 0;
6021 }
6022 return 1;
6023 }
6024
6025 /* This device must be a member of the set */
6026 if (stat(dev, &stb) < 0)
6027 return 0;
6028 if ((S_IFMT & stb.st_mode) != S_IFBLK)
6029 return 0;
6030 for (dl = super->disks ; dl ; dl = dl->next) {
6031 if (dl->major == (int)major(stb.st_rdev) &&
6032 dl->minor == (int)minor(stb.st_rdev))
6033 break;
6034 }
6035 if (!dl) {
6036 if (verbose)
6037 fprintf(stderr, Name ": %s is not in the "
6038 "same imsm set\n", dev);
6039 return 0;
6040 } else if (super->orom && dl->index < 0 && mpb->num_raid_devs) {
6041 /* If a volume is present then the current creation attempt
6042 * cannot incorporate new spares because the orom may not
6043 * understand this configuration (all member disks must be
6044 * members of each array in the container).
6045 */
6046 fprintf(stderr, Name ": %s is a spare and a volume"
6047 " is already defined for this container\n", dev);
6048 fprintf(stderr, Name ": The option-rom requires all member"
6049 " disks to be a member of all volumes\n");
6050 return 0;
6051 } else if (super->orom && mpb->num_raid_devs > 0 &&
6052 mpb->num_disks != raiddisks) {
6053 fprintf(stderr, Name ": The option-rom requires all member"
6054 " disks to be a member of all volumes\n");
6055 return 0;
6056 }
6057
6058 /* retrieve the largest free space block */
6059 e = get_extents(super, dl);
6060 maxsize = 0;
6061 i = 0;
6062 if (e) {
6063 do {
6064 unsigned long long esize;
6065
6066 esize = e[i].start - pos;
6067 if (esize >= maxsize)
6068 maxsize = esize;
6069 pos = e[i].start + e[i].size;
6070 i++;
6071 } while (e[i-1].size);
6072 dl->e = e;
6073 dl->extent_cnt = i;
6074 } else {
6075 if (verbose)
6076 fprintf(stderr, Name ": unable to determine free space for: %s\n",
6077 dev);
6078 return 0;
6079 }
6080 if (maxsize < size) {
6081 if (verbose)
6082 fprintf(stderr, Name ": %s not enough space (%llu < %llu)\n",
6083 dev, maxsize, size);
6084 return 0;
6085 }
6086
6087 /* count total number of extents for merge */
6088 i = 0;
6089 for (dl = super->disks; dl; dl = dl->next)
6090 if (dl->e)
6091 i += dl->extent_cnt;
6092
6093 maxsize = merge_extents(super, i);
6094
6095 if (!check_env("IMSM_NO_PLATFORM") &&
6096 mpb->num_raid_devs > 0 && size && size != maxsize) {
6097 fprintf(stderr, Name ": attempting to create a second "
6098 "volume with size less then remaining space. "
6099 "Aborting...\n");
6100 return 0;
6101 }
6102
6103 if (maxsize < size || maxsize == 0) {
6104 if (verbose) {
6105 if (maxsize == 0)
6106 fprintf(stderr, Name ": no free space"
6107 " left on device. Aborting...\n");
6108 else
6109 fprintf(stderr, Name ": not enough space"
6110 " to create volume of given size"
6111 " (%llu < %llu). Aborting...\n",
6112 maxsize, size);
6113 }
6114 return 0;
6115 }
6116
6117 *freesize = maxsize;
6118
6119 if (super->orom) {
6120 int count = count_volumes(super->hba->path,
6121 super->orom->dpa, verbose);
6122 if (super->orom->vphba <= count) {
6123 pr_vrb(": platform does not support more than %d raid volumes.\n",
6124 super->orom->vphba);
6125 return 0;
6126 }
6127 }
6128 return 1;
6129 }
6130
6131 static int imsm_get_free_size(struct supertype *st, int raiddisks,
6132 unsigned long long size, int chunk,
6133 unsigned long long *freesize)
6134 {
6135 struct intel_super *super = st->sb;
6136 struct imsm_super *mpb = super->anchor;
6137 struct dl *dl;
6138 int i;
6139 int extent_cnt;
6140 struct extent *e;
6141 unsigned long long maxsize;
6142 unsigned long long minsize;
6143 int cnt;
6144 int used;
6145
6146 /* find the largest common start free region of the possible disks */
6147 used = 0;
6148 extent_cnt = 0;
6149 cnt = 0;
6150 for (dl = super->disks; dl; dl = dl->next) {
6151 dl->raiddisk = -1;
6152
6153 if (dl->index >= 0)
6154 used++;
6155
6156 /* don't activate new spares if we are orom constrained
6157 * and there is already a volume active in the container
6158 */
6159 if (super->orom && dl->index < 0 && mpb->num_raid_devs)
6160 continue;
6161
6162 e = get_extents(super, dl);
6163 if (!e)
6164 continue;
6165 for (i = 1; e[i-1].size; i++)
6166 ;
6167 dl->e = e;
6168 dl->extent_cnt = i;
6169 extent_cnt += i;
6170 cnt++;
6171 }
6172
6173 maxsize = merge_extents(super, extent_cnt);
6174 minsize = size;
6175 if (size == 0)
6176 /* chunk is in K */
6177 minsize = chunk * 2;
6178
6179 if (cnt < raiddisks ||
6180 (super->orom && used && used != raiddisks) ||
6181 maxsize < minsize ||
6182 maxsize == 0) {
6183 fprintf(stderr, Name ": not enough devices with space to create array.\n");
6184 return 0; /* No enough free spaces large enough */
6185 }
6186
6187 if (size == 0) {
6188 size = maxsize;
6189 if (chunk) {
6190 size /= 2 * chunk;
6191 size *= 2 * chunk;
6192 }
6193 maxsize = size;
6194 }
6195 if (!check_env("IMSM_NO_PLATFORM") &&
6196 mpb->num_raid_devs > 0 && size && size != maxsize) {
6197 fprintf(stderr, Name ": attempting to create a second "
6198 "volume with size less then remaining space. "
6199 "Aborting...\n");
6200 return 0;
6201 }
6202 cnt = 0;
6203 for (dl = super->disks; dl; dl = dl->next)
6204 if (dl->e)
6205 dl->raiddisk = cnt++;
6206
6207 *freesize = size;
6208
6209 dprintf("imsm: imsm_get_free_size() returns : %llu\n", size);
6210
6211 return 1;
6212 }
6213
6214 static int reserve_space(struct supertype *st, int raiddisks,
6215 unsigned long long size, int chunk,
6216 unsigned long long *freesize)
6217 {
6218 struct intel_super *super = st->sb;
6219 struct dl *dl;
6220 int cnt;
6221 int rv = 0;
6222
6223 rv = imsm_get_free_size(st, raiddisks, size, chunk, freesize);
6224 if (rv) {
6225 cnt = 0;
6226 for (dl = super->disks; dl; dl = dl->next)
6227 if (dl->e)
6228 dl->raiddisk = cnt++;
6229 rv = 1;
6230 }
6231
6232 return rv;
6233 }
6234
6235 static int validate_geometry_imsm(struct supertype *st, int level, int layout,
6236 int raiddisks, int *chunk, unsigned long long size,
6237 char *dev, unsigned long long *freesize,
6238 int verbose)
6239 {
6240 int fd, cfd;
6241 struct mdinfo *sra;
6242 int is_member = 0;
6243
6244 /* load capability
6245 * if given unused devices create a container
6246 * if given given devices in a container create a member volume
6247 */
6248 if (level == LEVEL_CONTAINER) {
6249 /* Must be a fresh device to add to a container */
6250 return validate_geometry_imsm_container(st, level, layout,
6251 raiddisks,
6252 chunk?*chunk:0, size,
6253 dev, freesize,
6254 verbose);
6255 }
6256
6257 if (!dev) {
6258 if (st->sb) {
6259 struct intel_super *super = st->sb;
6260 if (!validate_geometry_imsm_orom(st->sb, level, layout,
6261 raiddisks, chunk, size,
6262 verbose))
6263 return 0;
6264 /* we are being asked to automatically layout a
6265 * new volume based on the current contents of
6266 * the container. If the the parameters can be
6267 * satisfied reserve_space will record the disks,
6268 * start offset, and size of the volume to be
6269 * created. add_to_super and getinfo_super
6270 * detect when autolayout is in progress.
6271 */
6272 /* assuming that freesize is always given when array is
6273 created */
6274 if (super->orom && freesize) {
6275 int count;
6276 count = count_volumes(super->hba->path,
6277 super->orom->dpa, verbose);
6278 if (super->orom->vphba <= count) {
6279 pr_vrb(": platform does not support more"
6280 " than %d raid volumes.\n",
6281 super->orom->vphba);
6282 return 0;
6283 }
6284 }
6285 if (freesize)
6286 return reserve_space(st, raiddisks, size,
6287 chunk?*chunk:0, freesize);
6288 }
6289 return 1;
6290 }
6291 if (st->sb) {
6292 /* creating in a given container */
6293 return validate_geometry_imsm_volume(st, level, layout,
6294 raiddisks, chunk, size,
6295 dev, freesize, verbose);
6296 }
6297
6298 /* This device needs to be a device in an 'imsm' container */
6299 fd = open(dev, O_RDONLY|O_EXCL, 0);
6300 if (fd >= 0) {
6301 if (verbose)
6302 fprintf(stderr,
6303 Name ": Cannot create this array on device %s\n",
6304 dev);
6305 close(fd);
6306 return 0;
6307 }
6308 if (errno != EBUSY || (fd = open(dev, O_RDONLY, 0)) < 0) {
6309 if (verbose)
6310 fprintf(stderr, Name ": Cannot open %s: %s\n",
6311 dev, strerror(errno));
6312 return 0;
6313 }
6314 /* Well, it is in use by someone, maybe an 'imsm' container. */
6315 cfd = open_container(fd);
6316 close(fd);
6317 if (cfd < 0) {
6318 if (verbose)
6319 fprintf(stderr, Name ": Cannot use %s: It is busy\n",
6320 dev);
6321 return 0;
6322 }
6323 sra = sysfs_read(cfd, 0, GET_VERSION);
6324 if (sra && sra->array.major_version == -1 &&
6325 strcmp(sra->text_version, "imsm") == 0)
6326 is_member = 1;
6327 sysfs_free(sra);
6328 if (is_member) {
6329 /* This is a member of a imsm container. Load the container
6330 * and try to create a volume
6331 */
6332 struct intel_super *super;
6333
6334 if (load_super_imsm_all(st, cfd, (void **) &super, NULL, NULL, 1) == 0) {
6335 st->sb = super;
6336 st->container_dev = fd2devnum(cfd);
6337 close(cfd);
6338 return validate_geometry_imsm_volume(st, level, layout,
6339 raiddisks, chunk,
6340 size, dev,
6341 freesize, 1)
6342 ? 1 : -1;
6343 }
6344 }
6345
6346 if (verbose)
6347 fprintf(stderr, Name ": failed container membership check\n");
6348
6349 close(cfd);
6350 return 0;
6351 }
6352
6353 static void default_geometry_imsm(struct supertype *st, int *level, int *layout, int *chunk)
6354 {
6355 struct intel_super *super = st->sb;
6356
6357 if (level && *level == UnSet)
6358 *level = LEVEL_CONTAINER;
6359
6360 if (level && layout && *layout == UnSet)
6361 *layout = imsm_level_to_layout(*level);
6362
6363 if (chunk && (*chunk == UnSet || *chunk == 0))
6364 *chunk = imsm_default_chunk(super->orom);
6365 }
6366
6367 static void handle_missing(struct intel_super *super, struct imsm_dev *dev);
6368
6369 static int kill_subarray_imsm(struct supertype *st)
6370 {
6371 /* remove the subarray currently referenced by ->current_vol */
6372 __u8 i;
6373 struct intel_dev **dp;
6374 struct intel_super *super = st->sb;
6375 __u8 current_vol = super->current_vol;
6376 struct imsm_super *mpb = super->anchor;
6377
6378 if (super->current_vol < 0)
6379 return 2;
6380 super->current_vol = -1; /* invalidate subarray cursor */
6381
6382 /* block deletions that would change the uuid of active subarrays
6383 *
6384 * FIXME when immutable ids are available, but note that we'll
6385 * also need to fixup the invalidated/active subarray indexes in
6386 * mdstat
6387 */
6388 for (i = 0; i < mpb->num_raid_devs; i++) {
6389 char subarray[4];
6390
6391 if (i < current_vol)
6392 continue;
6393 sprintf(subarray, "%u", i);
6394 if (is_subarray_active(subarray, st->devname)) {
6395 fprintf(stderr,
6396 Name ": deleting subarray-%d would change the UUID of active subarray-%d, aborting\n",
6397 current_vol, i);
6398
6399 return 2;
6400 }
6401 }
6402
6403 if (st->update_tail) {
6404 struct imsm_update_kill_array *u = malloc(sizeof(*u));
6405
6406 if (!u)
6407 return 2;
6408 u->type = update_kill_array;
6409 u->dev_idx = current_vol;
6410 append_metadata_update(st, u, sizeof(*u));
6411
6412 return 0;
6413 }
6414
6415 for (dp = &super->devlist; *dp;)
6416 if ((*dp)->index == current_vol) {
6417 *dp = (*dp)->next;
6418 } else {
6419 handle_missing(super, (*dp)->dev);
6420 if ((*dp)->index > current_vol)
6421 (*dp)->index--;
6422 dp = &(*dp)->next;
6423 }
6424
6425 /* no more raid devices, all active components are now spares,
6426 * but of course failed are still failed
6427 */
6428 if (--mpb->num_raid_devs == 0) {
6429 struct dl *d;
6430
6431 for (d = super->disks; d; d = d->next)
6432 if (d->index > -2)
6433 mark_spare(d);
6434 }
6435
6436 super->updates_pending++;
6437
6438 return 0;
6439 }
6440
6441 static int update_subarray_imsm(struct supertype *st, char *subarray,
6442 char *update, struct mddev_ident *ident)
6443 {
6444 /* update the subarray currently referenced by ->current_vol */
6445 struct intel_super *super = st->sb;
6446 struct imsm_super *mpb = super->anchor;
6447
6448 if (strcmp(update, "name") == 0) {
6449 char *name = ident->name;
6450 char *ep;
6451 int vol;
6452
6453 if (is_subarray_active(subarray, st->devname)) {
6454 fprintf(stderr,
6455 Name ": Unable to update name of active subarray\n");
6456 return 2;
6457 }
6458
6459 if (!check_name(super, name, 0))
6460 return 2;
6461
6462 vol = strtoul(subarray, &ep, 10);
6463 if (*ep != '\0' || vol >= super->anchor->num_raid_devs)
6464 return 2;
6465
6466 if (st->update_tail) {
6467 struct imsm_update_rename_array *u = malloc(sizeof(*u));
6468
6469 if (!u)
6470 return 2;
6471 u->type = update_rename_array;
6472 u->dev_idx = vol;
6473 snprintf((char *) u->name, MAX_RAID_SERIAL_LEN, "%s", name);
6474 append_metadata_update(st, u, sizeof(*u));
6475 } else {
6476 struct imsm_dev *dev;
6477 int i;
6478
6479 dev = get_imsm_dev(super, vol);
6480 snprintf((char *) dev->volume, MAX_RAID_SERIAL_LEN, "%s", name);
6481 for (i = 0; i < mpb->num_raid_devs; i++) {
6482 dev = get_imsm_dev(super, i);
6483 handle_missing(super, dev);
6484 }
6485 super->updates_pending++;
6486 }
6487 } else
6488 return 2;
6489
6490 return 0;
6491 }
6492 #endif /* MDASSEMBLE */
6493
6494 static int is_gen_migration(struct imsm_dev *dev)
6495 {
6496 if (dev == NULL)
6497 return 0;
6498
6499 if (!dev->vol.migr_state)
6500 return 0;
6501
6502 if (migr_type(dev) == MIGR_GEN_MIGR)
6503 return 1;
6504
6505 return 0;
6506 }
6507
6508 static int is_rebuilding(struct imsm_dev *dev)
6509 {
6510 struct imsm_map *migr_map;
6511
6512 if (!dev->vol.migr_state)
6513 return 0;
6514
6515 if (migr_type(dev) != MIGR_REBUILD)
6516 return 0;
6517
6518 migr_map = get_imsm_map(dev, MAP_1);
6519
6520 if (migr_map->map_state == IMSM_T_STATE_DEGRADED)
6521 return 1;
6522 else
6523 return 0;
6524 }
6525
6526 #ifndef MDASSEMBLE
6527 static int is_initializing(struct imsm_dev *dev)
6528 {
6529 struct imsm_map *migr_map;
6530
6531 if (!dev->vol.migr_state)
6532 return 0;
6533
6534 if (migr_type(dev) != MIGR_INIT)
6535 return 0;
6536
6537 migr_map = get_imsm_map(dev, MAP_1);
6538
6539 if (migr_map->map_state == IMSM_T_STATE_UNINITIALIZED)
6540 return 1;
6541
6542 return 0;
6543 }
6544 #endif
6545
6546 static void update_recovery_start(struct intel_super *super,
6547 struct imsm_dev *dev,
6548 struct mdinfo *array)
6549 {
6550 struct mdinfo *rebuild = NULL;
6551 struct mdinfo *d;
6552 __u32 units;
6553
6554 if (!is_rebuilding(dev))
6555 return;
6556
6557 /* Find the rebuild target, but punt on the dual rebuild case */
6558 for (d = array->devs; d; d = d->next)
6559 if (d->recovery_start == 0) {
6560 if (rebuild)
6561 return;
6562 rebuild = d;
6563 }
6564
6565 if (!rebuild) {
6566 /* (?) none of the disks are marked with
6567 * IMSM_ORD_REBUILD, so assume they are missing and the
6568 * disk_ord_tbl was not correctly updated
6569 */
6570 dprintf("%s: failed to locate out-of-sync disk\n", __func__);
6571 return;
6572 }
6573
6574 units = __le32_to_cpu(dev->vol.curr_migr_unit);
6575 rebuild->recovery_start = units * blocks_per_migr_unit(super, dev);
6576 }
6577
6578 #ifndef MDASSEMBLE
6579 static int recover_backup_imsm(struct supertype *st, struct mdinfo *info);
6580 #endif
6581
6582 static struct mdinfo *container_content_imsm(struct supertype *st, char *subarray)
6583 {
6584 /* Given a container loaded by load_super_imsm_all,
6585 * extract information about all the arrays into
6586 * an mdinfo tree.
6587 * If 'subarray' is given, just extract info about that array.
6588 *
6589 * For each imsm_dev create an mdinfo, fill it in,
6590 * then look for matching devices in super->disks
6591 * and create appropriate device mdinfo.
6592 */
6593 struct intel_super *super = st->sb;
6594 struct imsm_super *mpb = super->anchor;
6595 struct mdinfo *rest = NULL;
6596 unsigned int i;
6597 int sb_errors = 0;
6598 struct dl *d;
6599 int spare_disks = 0;
6600
6601 /* do not assemble arrays when not all attributes are supported */
6602 if (imsm_check_attributes(mpb->attributes) == 0) {
6603 sb_errors = 1;
6604 fprintf(stderr, Name ": Unsupported attributes in IMSM metadata."
6605 "Arrays activation is blocked.\n");
6606 }
6607
6608 /* check for bad blocks */
6609 if (imsm_bbm_log_size(super->anchor)) {
6610 fprintf(stderr, Name ": BBM log found in IMSM metadata."
6611 "Arrays activation is blocked.\n");
6612 sb_errors = 1;
6613 }
6614
6615
6616 /* count spare devices, not used in maps
6617 */
6618 for (d = super->disks; d; d = d->next)
6619 if (d->index == -1)
6620 spare_disks++;
6621
6622 for (i = 0; i < mpb->num_raid_devs; i++) {
6623 struct imsm_dev *dev;
6624 struct imsm_map *map;
6625 struct imsm_map *map2;
6626 struct mdinfo *this;
6627 int slot;
6628 #ifndef MDASSEMBLE
6629 int chunk;
6630 #endif
6631 char *ep;
6632
6633 if (subarray &&
6634 (i != strtoul(subarray, &ep, 10) || *ep != '\0'))
6635 continue;
6636
6637 dev = get_imsm_dev(super, i);
6638 map = get_imsm_map(dev, MAP_0);
6639 map2 = get_imsm_map(dev, MAP_1);
6640
6641 /* do not publish arrays that are in the middle of an
6642 * unsupported migration
6643 */
6644 if (dev->vol.migr_state &&
6645 (migr_type(dev) == MIGR_STATE_CHANGE)) {
6646 fprintf(stderr, Name ": cannot assemble volume '%.16s':"
6647 " unsupported migration in progress\n",
6648 dev->volume);
6649 continue;
6650 }
6651 /* do not publish arrays that are not support by controller's
6652 * OROM/EFI
6653 */
6654
6655 this = malloc(sizeof(*this));
6656 if (!this) {
6657 fprintf(stderr, Name ": failed to allocate %zu bytes\n",
6658 sizeof(*this));
6659 break;
6660 }
6661
6662 super->current_vol = i;
6663 getinfo_super_imsm_volume(st, this, NULL);
6664 this->next = rest;
6665 #ifndef MDASSEMBLE
6666 chunk = __le16_to_cpu(map->blocks_per_strip) >> 1;
6667 /* mdadm does not support all metadata features- set the bit in all arrays state */
6668 if (!validate_geometry_imsm_orom(super,
6669 get_imsm_raid_level(map), /* RAID level */
6670 imsm_level_to_layout(get_imsm_raid_level(map)),
6671 map->num_members, /* raid disks */
6672 &chunk, join_u32(dev->size_low, dev->size_high),
6673 1 /* verbose */)) {
6674 fprintf(stderr, Name ": IMSM RAID geometry validation"
6675 " failed. Array %s activation is blocked.\n",
6676 dev->volume);
6677 this->array.state |=
6678 (1<<MD_SB_BLOCK_CONTAINER_RESHAPE) |
6679 (1<<MD_SB_BLOCK_VOLUME);
6680 }
6681 #endif
6682
6683 /* if array has bad blocks, set suitable bit in all arrays state */
6684 if (sb_errors)
6685 this->array.state |=
6686 (1<<MD_SB_BLOCK_CONTAINER_RESHAPE) |
6687 (1<<MD_SB_BLOCK_VOLUME);
6688
6689 for (slot = 0 ; slot < map->num_members; slot++) {
6690 unsigned long long recovery_start;
6691 struct mdinfo *info_d;
6692 struct dl *d;
6693 int idx;
6694 int skip;
6695 __u32 ord;
6696
6697 skip = 0;
6698 idx = get_imsm_disk_idx(dev, slot, MAP_0);
6699 ord = get_imsm_ord_tbl_ent(dev, slot, MAP_X);
6700 for (d = super->disks; d ; d = d->next)
6701 if (d->index == idx)
6702 break;
6703
6704 recovery_start = MaxSector;
6705 if (d == NULL)
6706 skip = 1;
6707 if (d && is_failed(&d->disk))
6708 skip = 1;
6709 if (ord & IMSM_ORD_REBUILD)
6710 recovery_start = 0;
6711
6712 /*
6713 * if we skip some disks the array will be assmebled degraded;
6714 * reset resync start to avoid a dirty-degraded
6715 * situation when performing the intial sync
6716 *
6717 * FIXME handle dirty degraded
6718 */
6719 if ((skip || recovery_start == 0) && !dev->vol.dirty)
6720 this->resync_start = MaxSector;
6721 if (skip)
6722 continue;
6723
6724 info_d = calloc(1, sizeof(*info_d));
6725 if (!info_d) {
6726 fprintf(stderr, Name ": failed to allocate disk"
6727 " for volume %.16s\n", dev->volume);
6728 info_d = this->devs;
6729 while (info_d) {
6730 struct mdinfo *d = info_d->next;
6731
6732 free(info_d);
6733 info_d = d;
6734 }
6735 free(this);
6736 this = rest;
6737 break;
6738 }
6739 info_d->next = this->devs;
6740 this->devs = info_d;
6741
6742 info_d->disk.number = d->index;
6743 info_d->disk.major = d->major;
6744 info_d->disk.minor = d->minor;
6745 info_d->disk.raid_disk = slot;
6746 info_d->recovery_start = recovery_start;
6747 if (map2) {
6748 if (slot < map2->num_members)
6749 info_d->disk.state = (1 << MD_DISK_ACTIVE);
6750 else
6751 this->array.spare_disks++;
6752 } else {
6753 if (slot < map->num_members)
6754 info_d->disk.state = (1 << MD_DISK_ACTIVE);
6755 else
6756 this->array.spare_disks++;
6757 }
6758 if (info_d->recovery_start == MaxSector)
6759 this->array.working_disks++;
6760
6761 info_d->events = __le32_to_cpu(mpb->generation_num);
6762 info_d->data_offset = pba_of_lba0(map);
6763 info_d->component_size = blocks_per_member(map);
6764 }
6765 /* now that the disk list is up-to-date fixup recovery_start */
6766 update_recovery_start(super, dev, this);
6767 this->array.spare_disks += spare_disks;
6768
6769 #ifndef MDASSEMBLE
6770 /* check for reshape */
6771 if (this->reshape_active == 1)
6772 recover_backup_imsm(st, this);
6773 #endif
6774 rest = this;
6775 }
6776
6777 return rest;
6778 }
6779
6780
6781 static __u8 imsm_check_degraded(struct intel_super *super, struct imsm_dev *dev,
6782 int failed, int look_in_map)
6783 {
6784 struct imsm_map *map;
6785
6786 map = get_imsm_map(dev, look_in_map);
6787
6788 if (!failed)
6789 return map->map_state == IMSM_T_STATE_UNINITIALIZED ?
6790 IMSM_T_STATE_UNINITIALIZED : IMSM_T_STATE_NORMAL;
6791
6792 switch (get_imsm_raid_level(map)) {
6793 case 0:
6794 return IMSM_T_STATE_FAILED;
6795 break;
6796 case 1:
6797 if (failed < map->num_members)
6798 return IMSM_T_STATE_DEGRADED;
6799 else
6800 return IMSM_T_STATE_FAILED;
6801 break;
6802 case 10:
6803 {
6804 /**
6805 * check to see if any mirrors have failed, otherwise we
6806 * are degraded. Even numbered slots are mirrored on
6807 * slot+1
6808 */
6809 int i;
6810 /* gcc -Os complains that this is unused */
6811 int insync = insync;
6812
6813 for (i = 0; i < map->num_members; i++) {
6814 __u32 ord = get_imsm_ord_tbl_ent(dev, i, MAP_X);
6815 int idx = ord_to_idx(ord);
6816 struct imsm_disk *disk;
6817
6818 /* reset the potential in-sync count on even-numbered
6819 * slots. num_copies is always 2 for imsm raid10
6820 */
6821 if ((i & 1) == 0)
6822 insync = 2;
6823
6824 disk = get_imsm_disk(super, idx);
6825 if (!disk || is_failed(disk) || ord & IMSM_ORD_REBUILD)
6826 insync--;
6827
6828 /* no in-sync disks left in this mirror the
6829 * array has failed
6830 */
6831 if (insync == 0)
6832 return IMSM_T_STATE_FAILED;
6833 }
6834
6835 return IMSM_T_STATE_DEGRADED;
6836 }
6837 case 5:
6838 if (failed < 2)
6839 return IMSM_T_STATE_DEGRADED;
6840 else
6841 return IMSM_T_STATE_FAILED;
6842 break;
6843 default:
6844 break;
6845 }
6846
6847 return map->map_state;
6848 }
6849
6850 static int imsm_count_failed(struct intel_super *super, struct imsm_dev *dev,
6851 int look_in_map)
6852 {
6853 int i;
6854 int failed = 0;
6855 struct imsm_disk *disk;
6856 struct imsm_map *map = get_imsm_map(dev, MAP_0);
6857 struct imsm_map *prev = get_imsm_map(dev, MAP_1);
6858 struct imsm_map *map_for_loop;
6859 __u32 ord;
6860 int idx;
6861 int idx_1;
6862
6863 /* at the beginning of migration we set IMSM_ORD_REBUILD on
6864 * disks that are being rebuilt. New failures are recorded to
6865 * map[0]. So we look through all the disks we started with and
6866 * see if any failures are still present, or if any new ones
6867 * have arrived
6868 */
6869 map_for_loop = map;
6870 if (prev && (map->num_members < prev->num_members))
6871 map_for_loop = prev;
6872
6873 for (i = 0; i < map_for_loop->num_members; i++) {
6874 idx_1 = -255;
6875 /* when MAP_X is passed both maps failures are counted
6876 */
6877 if (prev &&
6878 ((look_in_map == MAP_1) || (look_in_map == MAP_X)) &&
6879 (i < prev->num_members)) {
6880 ord = __le32_to_cpu(prev->disk_ord_tbl[i]);
6881 idx_1 = ord_to_idx(ord);
6882
6883 disk = get_imsm_disk(super, idx_1);
6884 if (!disk || is_failed(disk) || ord & IMSM_ORD_REBUILD)
6885 failed++;
6886 }
6887 if (((look_in_map == MAP_0) || (look_in_map == MAP_X)) &&
6888 (i < map->num_members)) {
6889 ord = __le32_to_cpu(map->disk_ord_tbl[i]);
6890 idx = ord_to_idx(ord);
6891
6892 if (idx != idx_1) {
6893 disk = get_imsm_disk(super, idx);
6894 if (!disk || is_failed(disk) ||
6895 ord & IMSM_ORD_REBUILD)
6896 failed++;
6897 }
6898 }
6899 }
6900
6901 return failed;
6902 }
6903
6904 #ifndef MDASSEMBLE
6905 static int imsm_open_new(struct supertype *c, struct active_array *a,
6906 char *inst)
6907 {
6908 struct intel_super *super = c->sb;
6909 struct imsm_super *mpb = super->anchor;
6910
6911 if (atoi(inst) >= mpb->num_raid_devs) {
6912 fprintf(stderr, "%s: subarry index %d, out of range\n",
6913 __func__, atoi(inst));
6914 return -ENODEV;
6915 }
6916
6917 dprintf("imsm: open_new %s\n", inst);
6918 a->info.container_member = atoi(inst);
6919 return 0;
6920 }
6921
6922 static int is_resyncing(struct imsm_dev *dev)
6923 {
6924 struct imsm_map *migr_map;
6925
6926 if (!dev->vol.migr_state)
6927 return 0;
6928
6929 if (migr_type(dev) == MIGR_INIT ||
6930 migr_type(dev) == MIGR_REPAIR)
6931 return 1;
6932
6933 if (migr_type(dev) == MIGR_GEN_MIGR)
6934 return 0;
6935
6936 migr_map = get_imsm_map(dev, MAP_1);
6937
6938 if ((migr_map->map_state == IMSM_T_STATE_NORMAL) &&
6939 (dev->vol.migr_type != MIGR_GEN_MIGR))
6940 return 1;
6941 else
6942 return 0;
6943 }
6944
6945 /* return true if we recorded new information */
6946 static int mark_failure(struct imsm_dev *dev, struct imsm_disk *disk, int idx)
6947 {
6948 __u32 ord;
6949 int slot;
6950 struct imsm_map *map;
6951 char buf[MAX_RAID_SERIAL_LEN+3];
6952 unsigned int len, shift = 0;
6953
6954 /* new failures are always set in map[0] */
6955 map = get_imsm_map(dev, MAP_0);
6956
6957 slot = get_imsm_disk_slot(map, idx);
6958 if (slot < 0)
6959 return 0;
6960
6961 ord = __le32_to_cpu(map->disk_ord_tbl[slot]);
6962 if (is_failed(disk) && (ord & IMSM_ORD_REBUILD))
6963 return 0;
6964
6965 memcpy(buf, disk->serial, MAX_RAID_SERIAL_LEN);
6966 buf[MAX_RAID_SERIAL_LEN] = '\000';
6967 strcat(buf, ":0");
6968 if ((len = strlen(buf)) >= MAX_RAID_SERIAL_LEN)
6969 shift = len - MAX_RAID_SERIAL_LEN + 1;
6970 strncpy((char *)disk->serial, &buf[shift], MAX_RAID_SERIAL_LEN);
6971
6972 disk->status |= FAILED_DISK;
6973 set_imsm_ord_tbl_ent(map, slot, idx | IMSM_ORD_REBUILD);
6974 /* mark failures in second map if second map exists and this disk
6975 * in this slot.
6976 * This is valid for migration, initialization and rebuild
6977 */
6978 if (dev->vol.migr_state) {
6979 struct imsm_map *map2 = get_imsm_map(dev, MAP_1);
6980 int slot2 = get_imsm_disk_slot(map2, idx);
6981
6982 if ((slot2 < map2->num_members) &&
6983 (slot2 >= 0))
6984 set_imsm_ord_tbl_ent(map2, slot2,
6985 idx | IMSM_ORD_REBUILD);
6986 }
6987 if (map->failed_disk_num == 0xff)
6988 map->failed_disk_num = slot;
6989 return 1;
6990 }
6991
6992 static void mark_missing(struct imsm_dev *dev, struct imsm_disk *disk, int idx)
6993 {
6994 mark_failure(dev, disk, idx);
6995
6996 if (disk->scsi_id == __cpu_to_le32(~(__u32)0))
6997 return;
6998
6999 disk->scsi_id = __cpu_to_le32(~(__u32)0);
7000 memmove(&disk->serial[0], &disk->serial[1], MAX_RAID_SERIAL_LEN - 1);
7001 }
7002
7003 static void handle_missing(struct intel_super *super, struct imsm_dev *dev)
7004 {
7005 struct dl *dl;
7006
7007 if (!super->missing)
7008 return;
7009
7010 dprintf("imsm: mark missing\n");
7011 /* end process for initialization and rebuild only
7012 */
7013 if (is_gen_migration(dev) == 0) {
7014 __u8 map_state;
7015 int failed;
7016
7017 failed = imsm_count_failed(super, dev, MAP_0);
7018 map_state = imsm_check_degraded(super, dev, failed, MAP_0);
7019
7020 end_migration(dev, super, map_state);
7021 }
7022 for (dl = super->missing; dl; dl = dl->next)
7023 mark_missing(dev, &dl->disk, dl->index);
7024 super->updates_pending++;
7025 }
7026
7027 static unsigned long long imsm_set_array_size(struct imsm_dev *dev,
7028 long long new_size)
7029 {
7030 int used_disks = imsm_num_data_members(dev, MAP_0);
7031 unsigned long long array_blocks;
7032 struct imsm_map *map;
7033
7034 if (used_disks == 0) {
7035 /* when problems occures
7036 * return current array_blocks value
7037 */
7038 array_blocks = __le32_to_cpu(dev->size_high);
7039 array_blocks = array_blocks << 32;
7040 array_blocks += __le32_to_cpu(dev->size_low);
7041
7042 return array_blocks;
7043 }
7044
7045 /* set array size in metadata
7046 */
7047 if (new_size <= 0) {
7048 /* OLCE size change is caused by added disks
7049 */
7050 map = get_imsm_map(dev, MAP_0);
7051 array_blocks = blocks_per_member(map) * used_disks;
7052 } else {
7053 /* Online Volume Size Change
7054 * Using available free space
7055 */
7056 array_blocks = new_size;
7057 }
7058
7059 /* round array size down to closest MB
7060 */
7061 array_blocks = (array_blocks >> SECT_PER_MB_SHIFT) << SECT_PER_MB_SHIFT;
7062 dev->size_low = __cpu_to_le32((__u32)array_blocks);
7063 dev->size_high = __cpu_to_le32((__u32)(array_blocks >> 32));
7064
7065 return array_blocks;
7066 }
7067
7068 static void imsm_set_disk(struct active_array *a, int n, int state);
7069
7070 static void imsm_progress_container_reshape(struct intel_super *super)
7071 {
7072 /* if no device has a migr_state, but some device has a
7073 * different number of members than the previous device, start
7074 * changing the number of devices in this device to match
7075 * previous.
7076 */
7077 struct imsm_super *mpb = super->anchor;
7078 int prev_disks = -1;
7079 int i;
7080 int copy_map_size;
7081
7082 for (i = 0; i < mpb->num_raid_devs; i++) {
7083 struct imsm_dev *dev = get_imsm_dev(super, i);
7084 struct imsm_map *map = get_imsm_map(dev, MAP_0);
7085 struct imsm_map *map2;
7086 int prev_num_members;
7087
7088 if (dev->vol.migr_state)
7089 return;
7090
7091 if (prev_disks == -1)
7092 prev_disks = map->num_members;
7093 if (prev_disks == map->num_members)
7094 continue;
7095
7096 /* OK, this array needs to enter reshape mode.
7097 * i.e it needs a migr_state
7098 */
7099
7100 copy_map_size = sizeof_imsm_map(map);
7101 prev_num_members = map->num_members;
7102 map->num_members = prev_disks;
7103 dev->vol.migr_state = 1;
7104 dev->vol.curr_migr_unit = 0;
7105 set_migr_type(dev, MIGR_GEN_MIGR);
7106 for (i = prev_num_members;
7107 i < map->num_members; i++)
7108 set_imsm_ord_tbl_ent(map, i, i);
7109 map2 = get_imsm_map(dev, MAP_1);
7110 /* Copy the current map */
7111 memcpy(map2, map, copy_map_size);
7112 map2->num_members = prev_num_members;
7113
7114 imsm_set_array_size(dev, -1);
7115 super->clean_migration_record_by_mdmon = 1;
7116 super->updates_pending++;
7117 }
7118 }
7119
7120 /* Handle dirty -> clean transititions, resync and reshape. Degraded and rebuild
7121 * states are handled in imsm_set_disk() with one exception, when a
7122 * resync is stopped due to a new failure this routine will set the
7123 * 'degraded' state for the array.
7124 */
7125 static int imsm_set_array_state(struct active_array *a, int consistent)
7126 {
7127 int inst = a->info.container_member;
7128 struct intel_super *super = a->container->sb;
7129 struct imsm_dev *dev = get_imsm_dev(super, inst);
7130 struct imsm_map *map = get_imsm_map(dev, MAP_0);
7131 int failed = imsm_count_failed(super, dev, MAP_0);
7132 __u8 map_state = imsm_check_degraded(super, dev, failed, MAP_0);
7133 __u32 blocks_per_unit;
7134
7135 if (dev->vol.migr_state &&
7136 dev->vol.migr_type == MIGR_GEN_MIGR) {
7137 /* array state change is blocked due to reshape action
7138 * We might need to
7139 * - abort the reshape (if last_checkpoint is 0 and action!= reshape)
7140 * - finish the reshape (if last_checkpoint is big and action != reshape)
7141 * - update curr_migr_unit
7142 */
7143 if (a->curr_action == reshape) {
7144 /* still reshaping, maybe update curr_migr_unit */
7145 goto mark_checkpoint;
7146 } else {
7147 if (a->last_checkpoint == 0 && a->prev_action == reshape) {
7148 /* for some reason we aborted the reshape.
7149 *
7150 * disable automatic metadata rollback
7151 * user action is required to recover process
7152 */
7153 if (0) {
7154 struct imsm_map *map2 =
7155 get_imsm_map(dev, MAP_1);
7156 dev->vol.migr_state = 0;
7157 set_migr_type(dev, 0);
7158 dev->vol.curr_migr_unit = 0;
7159 memcpy(map, map2,
7160 sizeof_imsm_map(map2));
7161 super->updates_pending++;
7162 }
7163 }
7164 if (a->last_checkpoint >= a->info.component_size) {
7165 unsigned long long array_blocks;
7166 int used_disks;
7167 struct mdinfo *mdi;
7168
7169 used_disks = imsm_num_data_members(dev, MAP_0);
7170 if (used_disks > 0) {
7171 array_blocks =
7172 blocks_per_member(map) *
7173 used_disks;
7174 /* round array size down to closest MB
7175 */
7176 array_blocks = (array_blocks
7177 >> SECT_PER_MB_SHIFT)
7178 << SECT_PER_MB_SHIFT;
7179 a->info.custom_array_size = array_blocks;
7180 /* encourage manager to update array
7181 * size
7182 */
7183
7184 a->check_reshape = 1;
7185 }
7186 /* finalize online capacity expansion/reshape */
7187 for (mdi = a->info.devs; mdi; mdi = mdi->next)
7188 imsm_set_disk(a,
7189 mdi->disk.raid_disk,
7190 mdi->curr_state);
7191
7192 imsm_progress_container_reshape(super);
7193 }
7194 }
7195 }
7196
7197 /* before we activate this array handle any missing disks */
7198 if (consistent == 2)
7199 handle_missing(super, dev);
7200
7201 if (consistent == 2 &&
7202 (!is_resync_complete(&a->info) ||
7203 map_state != IMSM_T_STATE_NORMAL ||
7204 dev->vol.migr_state))
7205 consistent = 0;
7206
7207 if (is_resync_complete(&a->info)) {
7208 /* complete intialization / resync,
7209 * recovery and interrupted recovery is completed in
7210 * ->set_disk
7211 */
7212 if (is_resyncing(dev)) {
7213 dprintf("imsm: mark resync done\n");
7214 end_migration(dev, super, map_state);
7215 super->updates_pending++;
7216 a->last_checkpoint = 0;
7217 }
7218 } else if ((!is_resyncing(dev) && !failed) &&
7219 (imsm_reshape_blocks_arrays_changes(super) == 0)) {
7220 /* mark the start of the init process if nothing is failed */
7221 dprintf("imsm: mark resync start\n");
7222 if (map->map_state == IMSM_T_STATE_UNINITIALIZED)
7223 migrate(dev, super, IMSM_T_STATE_NORMAL, MIGR_INIT);
7224 else
7225 migrate(dev, super, IMSM_T_STATE_NORMAL, MIGR_REPAIR);
7226 super->updates_pending++;
7227 }
7228
7229 mark_checkpoint:
7230 /* skip checkpointing for general migration,
7231 * it is controlled in mdadm
7232 */
7233 if (is_gen_migration(dev))
7234 goto skip_mark_checkpoint;
7235
7236 /* check if we can update curr_migr_unit from resync_start, recovery_start */
7237 blocks_per_unit = blocks_per_migr_unit(super, dev);
7238 if (blocks_per_unit) {
7239 __u32 units32;
7240 __u64 units;
7241
7242 units = a->last_checkpoint / blocks_per_unit;
7243 units32 = units;
7244
7245 /* check that we did not overflow 32-bits, and that
7246 * curr_migr_unit needs updating
7247 */
7248 if (units32 == units &&
7249 units32 != 0 &&
7250 __le32_to_cpu(dev->vol.curr_migr_unit) != units32) {
7251 dprintf("imsm: mark checkpoint (%u)\n", units32);
7252 dev->vol.curr_migr_unit = __cpu_to_le32(units32);
7253 super->updates_pending++;
7254 }
7255 }
7256
7257 skip_mark_checkpoint:
7258 /* mark dirty / clean */
7259 if (dev->vol.dirty != !consistent) {
7260 dprintf("imsm: mark '%s'\n", consistent ? "clean" : "dirty");
7261 if (consistent)
7262 dev->vol.dirty = 0;
7263 else
7264 dev->vol.dirty = 1;
7265 super->updates_pending++;
7266 }
7267
7268 return consistent;
7269 }
7270
7271 static void imsm_set_disk(struct active_array *a, int n, int state)
7272 {
7273 int inst = a->info.container_member;
7274 struct intel_super *super = a->container->sb;
7275 struct imsm_dev *dev = get_imsm_dev(super, inst);
7276 struct imsm_map *map = get_imsm_map(dev, MAP_0);
7277 struct imsm_disk *disk;
7278 struct mdinfo *mdi;
7279 int recovery_not_finished = 0;
7280 int failed;
7281 __u32 ord;
7282 __u8 map_state;
7283
7284 if (n > map->num_members)
7285 fprintf(stderr, "imsm: set_disk %d out of range 0..%d\n",
7286 n, map->num_members - 1);
7287
7288 if (n < 0)
7289 return;
7290
7291 dprintf("imsm: set_disk %d:%x\n", n, state);
7292
7293 ord = get_imsm_ord_tbl_ent(dev, n, MAP_0);
7294 disk = get_imsm_disk(super, ord_to_idx(ord));
7295
7296 /* check for new failures */
7297 if (state & DS_FAULTY) {
7298 if (mark_failure(dev, disk, ord_to_idx(ord)))
7299 super->updates_pending++;
7300 }
7301
7302 /* check if in_sync */
7303 if (state & DS_INSYNC && ord & IMSM_ORD_REBUILD && is_rebuilding(dev)) {
7304 struct imsm_map *migr_map = get_imsm_map(dev, MAP_1);
7305
7306 set_imsm_ord_tbl_ent(migr_map, n, ord_to_idx(ord));
7307 super->updates_pending++;
7308 }
7309
7310 failed = imsm_count_failed(super, dev, MAP_0);
7311 map_state = imsm_check_degraded(super, dev, failed, MAP_0);
7312
7313 /* check if recovery complete, newly degraded, or failed */
7314 dprintf("imsm: Detected transition to state ");
7315 switch (map_state) {
7316 case IMSM_T_STATE_NORMAL: /* transition to normal state */
7317 dprintf("normal: ");
7318 if (is_rebuilding(dev)) {
7319 dprintf("while rebuilding");
7320 /* check if recovery is really finished */
7321 for (mdi = a->info.devs; mdi ; mdi = mdi->next)
7322 if (mdi->recovery_start != MaxSector) {
7323 recovery_not_finished = 1;
7324 break;
7325 }
7326 if (recovery_not_finished) {
7327 dprintf("\nimsm: Rebuild has not finished yet, "
7328 "state not changed");
7329 if (a->last_checkpoint < mdi->recovery_start) {
7330 a->last_checkpoint = mdi->recovery_start;
7331 super->updates_pending++;
7332 }
7333 break;
7334 }
7335 end_migration(dev, super, map_state);
7336 map = get_imsm_map(dev, MAP_0);
7337 map->failed_disk_num = ~0;
7338 super->updates_pending++;
7339 a->last_checkpoint = 0;
7340 break;
7341 }
7342 if (is_gen_migration(dev)) {
7343 dprintf("while general migration");
7344 if (a->last_checkpoint >= a->info.component_size)
7345 end_migration(dev, super, map_state);
7346 else
7347 map->map_state = map_state;
7348 map = get_imsm_map(dev, MAP_0);
7349 map->failed_disk_num = ~0;
7350 super->updates_pending++;
7351 break;
7352 }
7353 break;
7354 case IMSM_T_STATE_DEGRADED: /* transition to degraded state */
7355 dprintf("degraded: ");
7356 if ((map->map_state != map_state) &&
7357 !dev->vol.migr_state) {
7358 dprintf("mark degraded");
7359 map->map_state = map_state;
7360 super->updates_pending++;
7361 a->last_checkpoint = 0;
7362 break;
7363 }
7364 if (is_rebuilding(dev)) {
7365 dprintf("while rebuilding.");
7366 if (map->map_state != map_state) {
7367 dprintf(" Map state change");
7368 end_migration(dev, super, map_state);
7369 super->updates_pending++;
7370 }
7371 break;
7372 }
7373 if (is_gen_migration(dev)) {
7374 dprintf("while general migration");
7375 if (a->last_checkpoint >= a->info.component_size)
7376 end_migration(dev, super, map_state);
7377 else {
7378 map->map_state = map_state;
7379 manage_second_map(super, dev);
7380 }
7381 super->updates_pending++;
7382 break;
7383 }
7384 if (is_initializing(dev)) {
7385 dprintf("while initialization.");
7386 map->map_state = map_state;
7387 super->updates_pending++;
7388 break;
7389 }
7390 break;
7391 case IMSM_T_STATE_FAILED: /* transition to failed state */
7392 dprintf("failed: ");
7393 if (is_gen_migration(dev)) {
7394 dprintf("while general migration");
7395 map->map_state = map_state;
7396 super->updates_pending++;
7397 break;
7398 }
7399 if (map->map_state != map_state) {
7400 dprintf("mark failed");
7401 end_migration(dev, super, map_state);
7402 super->updates_pending++;
7403 a->last_checkpoint = 0;
7404 break;
7405 }
7406 break;
7407 default:
7408 dprintf("state %i\n", map_state);
7409 }
7410 dprintf("\n");
7411
7412 }
7413
7414 static int store_imsm_mpb(int fd, struct imsm_super *mpb)
7415 {
7416 void *buf = mpb;
7417 __u32 mpb_size = __le32_to_cpu(mpb->mpb_size);
7418 unsigned long long dsize;
7419 unsigned long long sectors;
7420
7421 get_dev_size(fd, NULL, &dsize);
7422
7423 if (mpb_size > 512) {
7424 /* -1 to account for anchor */
7425 sectors = mpb_sectors(mpb) - 1;
7426
7427 /* write the extended mpb to the sectors preceeding the anchor */
7428 if (lseek64(fd, dsize - (512 * (2 + sectors)), SEEK_SET) < 0)
7429 return 1;
7430
7431 if ((unsigned long long)write(fd, buf + 512, 512 * sectors)
7432 != 512 * sectors)
7433 return 1;
7434 }
7435
7436 /* first block is stored on second to last sector of the disk */
7437 if (lseek64(fd, dsize - (512 * 2), SEEK_SET) < 0)
7438 return 1;
7439
7440 if (write(fd, buf, 512) != 512)
7441 return 1;
7442
7443 return 0;
7444 }
7445
7446 static void imsm_sync_metadata(struct supertype *container)
7447 {
7448 struct intel_super *super = container->sb;
7449
7450 dprintf("sync metadata: %d\n", super->updates_pending);
7451 if (!super->updates_pending)
7452 return;
7453
7454 write_super_imsm(container, 0);
7455
7456 super->updates_pending = 0;
7457 }
7458
7459 static struct dl *imsm_readd(struct intel_super *super, int idx, struct active_array *a)
7460 {
7461 struct imsm_dev *dev = get_imsm_dev(super, a->info.container_member);
7462 int i = get_imsm_disk_idx(dev, idx, MAP_X);
7463 struct dl *dl;
7464
7465 for (dl = super->disks; dl; dl = dl->next)
7466 if (dl->index == i)
7467 break;
7468
7469 if (dl && is_failed(&dl->disk))
7470 dl = NULL;
7471
7472 if (dl)
7473 dprintf("%s: found %x:%x\n", __func__, dl->major, dl->minor);
7474
7475 return dl;
7476 }
7477
7478 static struct dl *imsm_add_spare(struct intel_super *super, int slot,
7479 struct active_array *a, int activate_new,
7480 struct mdinfo *additional_test_list)
7481 {
7482 struct imsm_dev *dev = get_imsm_dev(super, a->info.container_member);
7483 int idx = get_imsm_disk_idx(dev, slot, MAP_X);
7484 struct imsm_super *mpb = super->anchor;
7485 struct imsm_map *map;
7486 unsigned long long pos;
7487 struct mdinfo *d;
7488 struct extent *ex;
7489 int i, j;
7490 int found;
7491 __u32 array_start = 0;
7492 __u32 array_end = 0;
7493 struct dl *dl;
7494 struct mdinfo *test_list;
7495
7496 for (dl = super->disks; dl; dl = dl->next) {
7497 /* If in this array, skip */
7498 for (d = a->info.devs ; d ; d = d->next)
7499 if (d->state_fd >= 0 &&
7500 d->disk.major == dl->major &&
7501 d->disk.minor == dl->minor) {
7502 dprintf("%x:%x already in array\n",
7503 dl->major, dl->minor);
7504 break;
7505 }
7506 if (d)
7507 continue;
7508 test_list = additional_test_list;
7509 while (test_list) {
7510 if (test_list->disk.major == dl->major &&
7511 test_list->disk.minor == dl->minor) {
7512 dprintf("%x:%x already in additional test list\n",
7513 dl->major, dl->minor);
7514 break;
7515 }
7516 test_list = test_list->next;
7517 }
7518 if (test_list)
7519 continue;
7520
7521 /* skip in use or failed drives */
7522 if (is_failed(&dl->disk) || idx == dl->index ||
7523 dl->index == -2) {
7524 dprintf("%x:%x status (failed: %d index: %d)\n",
7525 dl->major, dl->minor, is_failed(&dl->disk), idx);
7526 continue;
7527 }
7528
7529 /* skip pure spares when we are looking for partially
7530 * assimilated drives
7531 */
7532 if (dl->index == -1 && !activate_new)
7533 continue;
7534
7535 /* Does this unused device have the requisite free space?
7536 * It needs to be able to cover all member volumes
7537 */
7538 ex = get_extents(super, dl);
7539 if (!ex) {
7540 dprintf("cannot get extents\n");
7541 continue;
7542 }
7543 for (i = 0; i < mpb->num_raid_devs; i++) {
7544 dev = get_imsm_dev(super, i);
7545 map = get_imsm_map(dev, MAP_0);
7546
7547 /* check if this disk is already a member of
7548 * this array
7549 */
7550 if (get_imsm_disk_slot(map, dl->index) >= 0)
7551 continue;
7552
7553 found = 0;
7554 j = 0;
7555 pos = 0;
7556 array_start = pba_of_lba0(map);
7557 array_end = array_start +
7558 blocks_per_member(map) - 1;
7559
7560 do {
7561 /* check that we can start at pba_of_lba0 with
7562 * blocks_per_member of space
7563 */
7564 if (array_start >= pos && array_end < ex[j].start) {
7565 found = 1;
7566 break;
7567 }
7568 pos = ex[j].start + ex[j].size;
7569 j++;
7570 } while (ex[j-1].size);
7571
7572 if (!found)
7573 break;
7574 }
7575
7576 free(ex);
7577 if (i < mpb->num_raid_devs) {
7578 dprintf("%x:%x does not have %u to %u available\n",
7579 dl->major, dl->minor, array_start, array_end);
7580 /* No room */
7581 continue;
7582 }
7583 return dl;
7584 }
7585
7586 return dl;
7587 }
7588
7589
7590 static int imsm_rebuild_allowed(struct supertype *cont, int dev_idx, int failed)
7591 {
7592 struct imsm_dev *dev2;
7593 struct imsm_map *map;
7594 struct dl *idisk;
7595 int slot;
7596 int idx;
7597 __u8 state;
7598
7599 dev2 = get_imsm_dev(cont->sb, dev_idx);
7600 if (dev2) {
7601 state = imsm_check_degraded(cont->sb, dev2, failed, MAP_0);
7602 if (state == IMSM_T_STATE_FAILED) {
7603 map = get_imsm_map(dev2, MAP_0);
7604 if (!map)
7605 return 1;
7606 for (slot = 0; slot < map->num_members; slot++) {
7607 /*
7608 * Check if failed disks are deleted from intel
7609 * disk list or are marked to be deleted
7610 */
7611 idx = get_imsm_disk_idx(dev2, slot, MAP_X);
7612 idisk = get_imsm_dl_disk(cont->sb, idx);
7613 /*
7614 * Do not rebuild the array if failed disks
7615 * from failed sub-array are not removed from
7616 * container.
7617 */
7618 if (idisk &&
7619 is_failed(&idisk->disk) &&
7620 (idisk->action != DISK_REMOVE))
7621 return 0;
7622 }
7623 }
7624 }
7625 return 1;
7626 }
7627
7628 static struct mdinfo *imsm_activate_spare(struct active_array *a,
7629 struct metadata_update **updates)
7630 {
7631 /**
7632 * Find a device with unused free space and use it to replace a
7633 * failed/vacant region in an array. We replace failed regions one a
7634 * array at a time. The result is that a new spare disk will be added
7635 * to the first failed array and after the monitor has finished
7636 * propagating failures the remainder will be consumed.
7637 *
7638 * FIXME add a capability for mdmon to request spares from another
7639 * container.
7640 */
7641
7642 struct intel_super *super = a->container->sb;
7643 int inst = a->info.container_member;
7644 struct imsm_dev *dev = get_imsm_dev(super, inst);
7645 struct imsm_map *map = get_imsm_map(dev, MAP_0);
7646 int failed = a->info.array.raid_disks;
7647 struct mdinfo *rv = NULL;
7648 struct mdinfo *d;
7649 struct mdinfo *di;
7650 struct metadata_update *mu;
7651 struct dl *dl;
7652 struct imsm_update_activate_spare *u;
7653 int num_spares = 0;
7654 int i;
7655 int allowed;
7656
7657 for (d = a->info.devs ; d ; d = d->next) {
7658 if ((d->curr_state & DS_FAULTY) &&
7659 d->state_fd >= 0)
7660 /* wait for Removal to happen */
7661 return NULL;
7662 if (d->state_fd >= 0)
7663 failed--;
7664 }
7665
7666 dprintf("imsm: activate spare: inst=%d failed=%d (%d) level=%d\n",
7667 inst, failed, a->info.array.raid_disks, a->info.array.level);
7668
7669 if (imsm_reshape_blocks_arrays_changes(super))
7670 return NULL;
7671
7672 /* Cannot activate another spare if rebuild is in progress already
7673 */
7674 if (is_rebuilding(dev)) {
7675 dprintf("imsm: No spare activation allowed. "
7676 "Rebuild in progress already.\n");
7677 return NULL;
7678 }
7679
7680 if (a->info.array.level == 4)
7681 /* No repair for takeovered array
7682 * imsm doesn't support raid4
7683 */
7684 return NULL;
7685
7686 if (imsm_check_degraded(super, dev, failed, MAP_0) !=
7687 IMSM_T_STATE_DEGRADED)
7688 return NULL;
7689
7690 /*
7691 * If there are any failed disks check state of the other volume.
7692 * Block rebuild if the another one is failed until failed disks
7693 * are removed from container.
7694 */
7695 if (failed) {
7696 dprintf("found failed disks in %.*s, check if there another"
7697 "failed sub-array.\n",
7698 MAX_RAID_SERIAL_LEN, dev->volume);
7699 /* check if states of the other volumes allow for rebuild */
7700 for (i = 0; i < super->anchor->num_raid_devs; i++) {
7701 if (i != inst) {
7702 allowed = imsm_rebuild_allowed(a->container,
7703 i, failed);
7704 if (!allowed)
7705 return NULL;
7706 }
7707 }
7708 }
7709
7710 /* For each slot, if it is not working, find a spare */
7711 for (i = 0; i < a->info.array.raid_disks; i++) {
7712 for (d = a->info.devs ; d ; d = d->next)
7713 if (d->disk.raid_disk == i)
7714 break;
7715 dprintf("found %d: %p %x\n", i, d, d?d->curr_state:0);
7716 if (d && (d->state_fd >= 0))
7717 continue;
7718
7719 /*
7720 * OK, this device needs recovery. Try to re-add the
7721 * previous occupant of this slot, if this fails see if
7722 * we can continue the assimilation of a spare that was
7723 * partially assimilated, finally try to activate a new
7724 * spare.
7725 */
7726 dl = imsm_readd(super, i, a);
7727 if (!dl)
7728 dl = imsm_add_spare(super, i, a, 0, rv);
7729 if (!dl)
7730 dl = imsm_add_spare(super, i, a, 1, rv);
7731 if (!dl)
7732 continue;
7733
7734 /* found a usable disk with enough space */
7735 di = malloc(sizeof(*di));
7736 if (!di)
7737 continue;
7738 memset(di, 0, sizeof(*di));
7739
7740 /* dl->index will be -1 in the case we are activating a
7741 * pristine spare. imsm_process_update() will create a
7742 * new index in this case. Once a disk is found to be
7743 * failed in all member arrays it is kicked from the
7744 * metadata
7745 */
7746 di->disk.number = dl->index;
7747
7748 /* (ab)use di->devs to store a pointer to the device
7749 * we chose
7750 */
7751 di->devs = (struct mdinfo *) dl;
7752
7753 di->disk.raid_disk = i;
7754 di->disk.major = dl->major;
7755 di->disk.minor = dl->minor;
7756 di->disk.state = 0;
7757 di->recovery_start = 0;
7758 di->data_offset = pba_of_lba0(map);
7759 di->component_size = a->info.component_size;
7760 di->container_member = inst;
7761 super->random = random32();
7762 di->next = rv;
7763 rv = di;
7764 num_spares++;
7765 dprintf("%x:%x to be %d at %llu\n", dl->major, dl->minor,
7766 i, di->data_offset);
7767 }
7768
7769 if (!rv)
7770 /* No spares found */
7771 return rv;
7772 /* Now 'rv' has a list of devices to return.
7773 * Create a metadata_update record to update the
7774 * disk_ord_tbl for the array
7775 */
7776 mu = malloc(sizeof(*mu));
7777 if (mu) {
7778 mu->buf = malloc(sizeof(struct imsm_update_activate_spare) * num_spares);
7779 if (mu->buf == NULL) {
7780 free(mu);
7781 mu = NULL;
7782 }
7783 }
7784 if (!mu) {
7785 while (rv) {
7786 struct mdinfo *n = rv->next;
7787
7788 free(rv);
7789 rv = n;
7790 }
7791 return NULL;
7792 }
7793
7794 mu->space = NULL;
7795 mu->space_list = NULL;
7796 mu->len = sizeof(struct imsm_update_activate_spare) * num_spares;
7797 mu->next = *updates;
7798 u = (struct imsm_update_activate_spare *) mu->buf;
7799
7800 for (di = rv ; di ; di = di->next) {
7801 u->type = update_activate_spare;
7802 u->dl = (struct dl *) di->devs;
7803 di->devs = NULL;
7804 u->slot = di->disk.raid_disk;
7805 u->array = inst;
7806 u->next = u + 1;
7807 u++;
7808 }
7809 (u-1)->next = NULL;
7810 *updates = mu;
7811
7812 return rv;
7813 }
7814
7815 static int disks_overlap(struct intel_super *super, int idx, struct imsm_update_create_array *u)
7816 {
7817 struct imsm_dev *dev = get_imsm_dev(super, idx);
7818 struct imsm_map *map = get_imsm_map(dev, MAP_0);
7819 struct imsm_map *new_map = get_imsm_map(&u->dev, MAP_0);
7820 struct disk_info *inf = get_disk_info(u);
7821 struct imsm_disk *disk;
7822 int i;
7823 int j;
7824
7825 for (i = 0; i < map->num_members; i++) {
7826 disk = get_imsm_disk(super, get_imsm_disk_idx(dev, i, MAP_X));
7827 for (j = 0; j < new_map->num_members; j++)
7828 if (serialcmp(disk->serial, inf[j].serial) == 0)
7829 return 1;
7830 }
7831
7832 return 0;
7833 }
7834
7835
7836 static struct dl *get_disk_super(struct intel_super *super, int major, int minor)
7837 {
7838 struct dl *dl = NULL;
7839 for (dl = super->disks; dl; dl = dl->next)
7840 if ((dl->major == major) && (dl->minor == minor))
7841 return dl;
7842 return NULL;
7843 }
7844
7845 static int remove_disk_super(struct intel_super *super, int major, int minor)
7846 {
7847 struct dl *prev = NULL;
7848 struct dl *dl;
7849
7850 prev = NULL;
7851 for (dl = super->disks; dl; dl = dl->next) {
7852 if ((dl->major == major) && (dl->minor == minor)) {
7853 /* remove */
7854 if (prev)
7855 prev->next = dl->next;
7856 else
7857 super->disks = dl->next;
7858 dl->next = NULL;
7859 __free_imsm_disk(dl);
7860 dprintf("%s: removed %x:%x\n",
7861 __func__, major, minor);
7862 break;
7863 }
7864 prev = dl;
7865 }
7866 return 0;
7867 }
7868
7869 static void imsm_delete(struct intel_super *super, struct dl **dlp, unsigned index);
7870
7871 static int add_remove_disk_update(struct intel_super *super)
7872 {
7873 int check_degraded = 0;
7874 struct dl *disk = NULL;
7875 /* add/remove some spares to/from the metadata/contrainer */
7876 while (super->disk_mgmt_list) {
7877 struct dl *disk_cfg;
7878
7879 disk_cfg = super->disk_mgmt_list;
7880 super->disk_mgmt_list = disk_cfg->next;
7881 disk_cfg->next = NULL;
7882
7883 if (disk_cfg->action == DISK_ADD) {
7884 disk_cfg->next = super->disks;
7885 super->disks = disk_cfg;
7886 check_degraded = 1;
7887 dprintf("%s: added %x:%x\n",
7888 __func__, disk_cfg->major,
7889 disk_cfg->minor);
7890 } else if (disk_cfg->action == DISK_REMOVE) {
7891 dprintf("Disk remove action processed: %x.%x\n",
7892 disk_cfg->major, disk_cfg->minor);
7893 disk = get_disk_super(super,
7894 disk_cfg->major,
7895 disk_cfg->minor);
7896 if (disk) {
7897 /* store action status */
7898 disk->action = DISK_REMOVE;
7899 /* remove spare disks only */
7900 if (disk->index == -1) {
7901 remove_disk_super(super,
7902 disk_cfg->major,
7903 disk_cfg->minor);
7904 }
7905 }
7906 /* release allocate disk structure */
7907 __free_imsm_disk(disk_cfg);
7908 }
7909 }
7910 return check_degraded;
7911 }
7912
7913
7914 static int apply_reshape_migration_update(struct imsm_update_reshape_migration *u,
7915 struct intel_super *super,
7916 void ***space_list)
7917 {
7918 struct intel_dev *id;
7919 void **tofree = NULL;
7920 int ret_val = 0;
7921
7922 dprintf("apply_reshape_migration_update()\n");
7923 if ((u->subdev < 0) ||
7924 (u->subdev > 1)) {
7925 dprintf("imsm: Error: Wrong subdev: %i\n", u->subdev);
7926 return ret_val;
7927 }
7928 if ((space_list == NULL) || (*space_list == NULL)) {
7929 dprintf("imsm: Error: Memory is not allocated\n");
7930 return ret_val;
7931 }
7932
7933 for (id = super->devlist ; id; id = id->next) {
7934 if (id->index == (unsigned)u->subdev) {
7935 struct imsm_dev *dev = get_imsm_dev(super, u->subdev);
7936 struct imsm_map *map;
7937 struct imsm_dev *new_dev =
7938 (struct imsm_dev *)*space_list;
7939 struct imsm_map *migr_map = get_imsm_map(dev, MAP_1);
7940 int to_state;
7941 struct dl *new_disk;
7942
7943 if (new_dev == NULL)
7944 return ret_val;
7945 *space_list = **space_list;
7946 memcpy(new_dev, dev, sizeof_imsm_dev(dev, 0));
7947 map = get_imsm_map(new_dev, MAP_0);
7948 if (migr_map) {
7949 dprintf("imsm: Error: migration in progress");
7950 return ret_val;
7951 }
7952
7953 to_state = map->map_state;
7954 if ((u->new_level == 5) && (map->raid_level == 0)) {
7955 map->num_members++;
7956 /* this should not happen */
7957 if (u->new_disks[0] < 0) {
7958 map->failed_disk_num =
7959 map->num_members - 1;
7960 to_state = IMSM_T_STATE_DEGRADED;
7961 } else
7962 to_state = IMSM_T_STATE_NORMAL;
7963 }
7964 migrate(new_dev, super, to_state, MIGR_GEN_MIGR);
7965 if (u->new_level > -1)
7966 map->raid_level = u->new_level;
7967 migr_map = get_imsm_map(new_dev, MAP_1);
7968 if ((u->new_level == 5) &&
7969 (migr_map->raid_level == 0)) {
7970 int ord = map->num_members - 1;
7971 migr_map->num_members--;
7972 if (u->new_disks[0] < 0)
7973 ord |= IMSM_ORD_REBUILD;
7974 set_imsm_ord_tbl_ent(map,
7975 map->num_members - 1,
7976 ord);
7977 }
7978 id->dev = new_dev;
7979 tofree = (void **)dev;
7980
7981 /* update chunk size
7982 */
7983 if (u->new_chunksize > 0)
7984 map->blocks_per_strip =
7985 __cpu_to_le16(u->new_chunksize * 2);
7986
7987 /* add disk
7988 */
7989 if ((u->new_level != 5) ||
7990 (migr_map->raid_level != 0) ||
7991 (migr_map->raid_level == map->raid_level))
7992 goto skip_disk_add;
7993
7994 if (u->new_disks[0] >= 0) {
7995 /* use passes spare
7996 */
7997 new_disk = get_disk_super(super,
7998 major(u->new_disks[0]),
7999 minor(u->new_disks[0]));
8000 dprintf("imsm: new disk for reshape is: %i:%i "
8001 "(%p, index = %i)\n",
8002 major(u->new_disks[0]),
8003 minor(u->new_disks[0]),
8004 new_disk, new_disk->index);
8005 if (new_disk == NULL)
8006 goto error_disk_add;
8007
8008 new_disk->index = map->num_members - 1;
8009 /* slot to fill in autolayout
8010 */
8011 new_disk->raiddisk = new_disk->index;
8012 new_disk->disk.status |= CONFIGURED_DISK;
8013 new_disk->disk.status &= ~SPARE_DISK;
8014 } else
8015 goto error_disk_add;
8016
8017 skip_disk_add:
8018 *tofree = *space_list;
8019 /* calculate new size
8020 */
8021 imsm_set_array_size(new_dev, -1);
8022
8023 ret_val = 1;
8024 }
8025 }
8026
8027 if (tofree)
8028 *space_list = tofree;
8029 return ret_val;
8030
8031 error_disk_add:
8032 dprintf("Error: imsm: Cannot find disk.\n");
8033 return ret_val;
8034 }
8035
8036 static int apply_size_change_update(struct imsm_update_size_change *u,
8037 struct intel_super *super)
8038 {
8039 struct intel_dev *id;
8040 int ret_val = 0;
8041
8042 dprintf("apply_size_change_update()\n");
8043 if ((u->subdev < 0) ||
8044 (u->subdev > 1)) {
8045 dprintf("imsm: Error: Wrong subdev: %i\n", u->subdev);
8046 return ret_val;
8047 }
8048
8049 for (id = super->devlist ; id; id = id->next) {
8050 if (id->index == (unsigned)u->subdev) {
8051 struct imsm_dev *dev = get_imsm_dev(super, u->subdev);
8052 struct imsm_map *map = get_imsm_map(dev, MAP_0);
8053 int used_disks = imsm_num_data_members(dev, MAP_0);
8054 unsigned long long blocks_per_member;
8055
8056 /* calculate new size
8057 */
8058 blocks_per_member = u->new_size / used_disks;
8059 dprintf("imsm: apply_size_change_update(size: %llu, "
8060 "blocks per member: %llu)\n",
8061 u->new_size, blocks_per_member);
8062 set_blocks_per_member(map, blocks_per_member);
8063 imsm_set_array_size(dev, u->new_size);
8064
8065 ret_val = 1;
8066 break;
8067 }
8068 }
8069
8070 return ret_val;
8071 }
8072
8073
8074 static int apply_update_activate_spare(struct imsm_update_activate_spare *u,
8075 struct intel_super *super,
8076 struct active_array *active_array)
8077 {
8078 struct imsm_super *mpb = super->anchor;
8079 struct imsm_dev *dev = get_imsm_dev(super, u->array);
8080 struct imsm_map *map = get_imsm_map(dev, MAP_0);
8081 struct imsm_map *migr_map;
8082 struct active_array *a;
8083 struct imsm_disk *disk;
8084 __u8 to_state;
8085 struct dl *dl;
8086 unsigned int found;
8087 int failed;
8088 int victim;
8089 int i;
8090 int second_map_created = 0;
8091
8092 for (; u; u = u->next) {
8093 victim = get_imsm_disk_idx(dev, u->slot, MAP_X);
8094
8095 if (victim < 0)
8096 return 0;
8097
8098 for (dl = super->disks; dl; dl = dl->next)
8099 if (dl == u->dl)
8100 break;
8101
8102 if (!dl) {
8103 fprintf(stderr, "error: imsm_activate_spare passed "
8104 "an unknown disk (index: %d)\n",
8105 u->dl->index);
8106 return 0;
8107 }
8108
8109 /* count failures (excluding rebuilds and the victim)
8110 * to determine map[0] state
8111 */
8112 failed = 0;
8113 for (i = 0; i < map->num_members; i++) {
8114 if (i == u->slot)
8115 continue;
8116 disk = get_imsm_disk(super,
8117 get_imsm_disk_idx(dev, i, MAP_X));
8118 if (!disk || is_failed(disk))
8119 failed++;
8120 }
8121
8122 /* adding a pristine spare, assign a new index */
8123 if (dl->index < 0) {
8124 dl->index = super->anchor->num_disks;
8125 super->anchor->num_disks++;
8126 }
8127 disk = &dl->disk;
8128 disk->status |= CONFIGURED_DISK;
8129 disk->status &= ~SPARE_DISK;
8130
8131 /* mark rebuild */
8132 to_state = imsm_check_degraded(super, dev, failed, MAP_0);
8133 if (!second_map_created) {
8134 second_map_created = 1;
8135 map->map_state = IMSM_T_STATE_DEGRADED;
8136 migrate(dev, super, to_state, MIGR_REBUILD);
8137 } else
8138 map->map_state = to_state;
8139 migr_map = get_imsm_map(dev, MAP_1);
8140 set_imsm_ord_tbl_ent(map, u->slot, dl->index);
8141 set_imsm_ord_tbl_ent(migr_map, u->slot,
8142 dl->index | IMSM_ORD_REBUILD);
8143
8144 /* update the family_num to mark a new container
8145 * generation, being careful to record the existing
8146 * family_num in orig_family_num to clean up after
8147 * earlier mdadm versions that neglected to set it.
8148 */
8149 if (mpb->orig_family_num == 0)
8150 mpb->orig_family_num = mpb->family_num;
8151 mpb->family_num += super->random;
8152
8153 /* count arrays using the victim in the metadata */
8154 found = 0;
8155 for (a = active_array; a ; a = a->next) {
8156 dev = get_imsm_dev(super, a->info.container_member);
8157 map = get_imsm_map(dev, MAP_0);
8158
8159 if (get_imsm_disk_slot(map, victim) >= 0)
8160 found++;
8161 }
8162
8163 /* delete the victim if it is no longer being
8164 * utilized anywhere
8165 */
8166 if (!found) {
8167 struct dl **dlp;
8168
8169 /* We know that 'manager' isn't touching anything,
8170 * so it is safe to delete
8171 */
8172 for (dlp = &super->disks; *dlp; dlp = &(*dlp)->next)
8173 if ((*dlp)->index == victim)
8174 break;
8175
8176 /* victim may be on the missing list */
8177 if (!*dlp)
8178 for (dlp = &super->missing; *dlp;
8179 dlp = &(*dlp)->next)
8180 if ((*dlp)->index == victim)
8181 break;
8182 imsm_delete(super, dlp, victim);
8183 }
8184 }
8185
8186 return 1;
8187 }
8188
8189 static int apply_reshape_container_disks_update(struct imsm_update_reshape *u,
8190 struct intel_super *super,
8191 void ***space_list)
8192 {
8193 struct dl *new_disk;
8194 struct intel_dev *id;
8195 int i;
8196 int delta_disks = u->new_raid_disks - u->old_raid_disks;
8197 int disk_count = u->old_raid_disks;
8198 void **tofree = NULL;
8199 int devices_to_reshape = 1;
8200 struct imsm_super *mpb = super->anchor;
8201 int ret_val = 0;
8202 unsigned int dev_id;
8203
8204 dprintf("imsm: apply_reshape_container_disks_update()\n");
8205
8206 /* enable spares to use in array */
8207 for (i = 0; i < delta_disks; i++) {
8208 new_disk = get_disk_super(super,
8209 major(u->new_disks[i]),
8210 minor(u->new_disks[i]));
8211 dprintf("imsm: new disk for reshape is: %i:%i "
8212 "(%p, index = %i)\n",
8213 major(u->new_disks[i]), minor(u->new_disks[i]),
8214 new_disk, new_disk->index);
8215 if ((new_disk == NULL) ||
8216 ((new_disk->index >= 0) &&
8217 (new_disk->index < u->old_raid_disks)))
8218 goto update_reshape_exit;
8219 new_disk->index = disk_count++;
8220 /* slot to fill in autolayout
8221 */
8222 new_disk->raiddisk = new_disk->index;
8223 new_disk->disk.status |=
8224 CONFIGURED_DISK;
8225 new_disk->disk.status &= ~SPARE_DISK;
8226 }
8227
8228 dprintf("imsm: volume set mpb->num_raid_devs = %i\n",
8229 mpb->num_raid_devs);
8230 /* manage changes in volume
8231 */
8232 for (dev_id = 0; dev_id < mpb->num_raid_devs; dev_id++) {
8233 void **sp = *space_list;
8234 struct imsm_dev *newdev;
8235 struct imsm_map *newmap, *oldmap;
8236
8237 for (id = super->devlist ; id; id = id->next) {
8238 if (id->index == dev_id)
8239 break;
8240 }
8241 if (id == NULL)
8242 break;
8243 if (!sp)
8244 continue;
8245 *space_list = *sp;
8246 newdev = (void*)sp;
8247 /* Copy the dev, but not (all of) the map */
8248 memcpy(newdev, id->dev, sizeof(*newdev));
8249 oldmap = get_imsm_map(id->dev, MAP_0);
8250 newmap = get_imsm_map(newdev, MAP_0);
8251 /* Copy the current map */
8252 memcpy(newmap, oldmap, sizeof_imsm_map(oldmap));
8253 /* update one device only
8254 */
8255 if (devices_to_reshape) {
8256 dprintf("imsm: modifying subdev: %i\n",
8257 id->index);
8258 devices_to_reshape--;
8259 newdev->vol.migr_state = 1;
8260 newdev->vol.curr_migr_unit = 0;
8261 set_migr_type(newdev, MIGR_GEN_MIGR);
8262 newmap->num_members = u->new_raid_disks;
8263 for (i = 0; i < delta_disks; i++) {
8264 set_imsm_ord_tbl_ent(newmap,
8265 u->old_raid_disks + i,
8266 u->old_raid_disks + i);
8267 }
8268 /* New map is correct, now need to save old map
8269 */
8270 newmap = get_imsm_map(newdev, MAP_1);
8271 memcpy(newmap, oldmap, sizeof_imsm_map(oldmap));
8272
8273 imsm_set_array_size(newdev, -1);
8274 }
8275
8276 sp = (void **)id->dev;
8277 id->dev = newdev;
8278 *sp = tofree;
8279 tofree = sp;
8280
8281 /* Clear migration record */
8282 memset(super->migr_rec, 0, sizeof(struct migr_record));
8283 }
8284 if (tofree)
8285 *space_list = tofree;
8286 ret_val = 1;
8287
8288 update_reshape_exit:
8289
8290 return ret_val;
8291 }
8292
8293 static int apply_takeover_update(struct imsm_update_takeover *u,
8294 struct intel_super *super,
8295 void ***space_list)
8296 {
8297 struct imsm_dev *dev = NULL;
8298 struct intel_dev *dv;
8299 struct imsm_dev *dev_new;
8300 struct imsm_map *map;
8301 struct dl *dm, *du;
8302 int i;
8303
8304 for (dv = super->devlist; dv; dv = dv->next)
8305 if (dv->index == (unsigned int)u->subarray) {
8306 dev = dv->dev;
8307 break;
8308 }
8309
8310 if (dev == NULL)
8311 return 0;
8312
8313 map = get_imsm_map(dev, MAP_0);
8314
8315 if (u->direction == R10_TO_R0) {
8316 /* Number of failed disks must be half of initial disk number */
8317 if (imsm_count_failed(super, dev, MAP_0) !=
8318 (map->num_members / 2))
8319 return 0;
8320
8321 /* iterate through devices to mark removed disks as spare */
8322 for (dm = super->disks; dm; dm = dm->next) {
8323 if (dm->disk.status & FAILED_DISK) {
8324 int idx = dm->index;
8325 /* update indexes on the disk list */
8326 /* FIXME this loop-with-the-loop looks wrong, I'm not convinced
8327 the index values will end up being correct.... NB */
8328 for (du = super->disks; du; du = du->next)
8329 if (du->index > idx)
8330 du->index--;
8331 /* mark as spare disk */
8332 mark_spare(dm);
8333 }
8334 }
8335 /* update map */
8336 map->num_members = map->num_members / 2;
8337 map->map_state = IMSM_T_STATE_NORMAL;
8338 map->num_domains = 1;
8339 map->raid_level = 0;
8340 map->failed_disk_num = -1;
8341 }
8342
8343 if (u->direction == R0_TO_R10) {
8344 void **space;
8345 /* update slots in current disk list */
8346 for (dm = super->disks; dm; dm = dm->next) {
8347 if (dm->index >= 0)
8348 dm->index *= 2;
8349 }
8350 /* create new *missing* disks */
8351 for (i = 0; i < map->num_members; i++) {
8352 space = *space_list;
8353 if (!space)
8354 continue;
8355 *space_list = *space;
8356 du = (void *)space;
8357 memcpy(du, super->disks, sizeof(*du));
8358 du->fd = -1;
8359 du->minor = 0;
8360 du->major = 0;
8361 du->index = (i * 2) + 1;
8362 sprintf((char *)du->disk.serial,
8363 " MISSING_%d", du->index);
8364 sprintf((char *)du->serial,
8365 "MISSING_%d", du->index);
8366 du->next = super->missing;
8367 super->missing = du;
8368 }
8369 /* create new dev and map */
8370 space = *space_list;
8371 if (!space)
8372 return 0;
8373 *space_list = *space;
8374 dev_new = (void *)space;
8375 memcpy(dev_new, dev, sizeof(*dev));
8376 /* update new map */
8377 map = get_imsm_map(dev_new, MAP_0);
8378 map->num_members = map->num_members * 2;
8379 map->map_state = IMSM_T_STATE_DEGRADED;
8380 map->num_domains = 2;
8381 map->raid_level = 1;
8382 /* replace dev<->dev_new */
8383 dv->dev = dev_new;
8384 }
8385 /* update disk order table */
8386 for (du = super->disks; du; du = du->next)
8387 if (du->index >= 0)
8388 set_imsm_ord_tbl_ent(map, du->index, du->index);
8389 for (du = super->missing; du; du = du->next)
8390 if (du->index >= 0) {
8391 set_imsm_ord_tbl_ent(map, du->index, du->index);
8392 mark_missing(dv->dev, &du->disk, du->index);
8393 }
8394
8395 return 1;
8396 }
8397
8398 static void imsm_process_update(struct supertype *st,
8399 struct metadata_update *update)
8400 {
8401 /**
8402 * crack open the metadata_update envelope to find the update record
8403 * update can be one of:
8404 * update_reshape_container_disks - all the arrays in the container
8405 * are being reshaped to have more devices. We need to mark
8406 * the arrays for general migration and convert selected spares
8407 * into active devices.
8408 * update_activate_spare - a spare device has replaced a failed
8409 * device in an array, update the disk_ord_tbl. If this disk is
8410 * present in all member arrays then also clear the SPARE_DISK
8411 * flag
8412 * update_create_array
8413 * update_kill_array
8414 * update_rename_array
8415 * update_add_remove_disk
8416 */
8417 struct intel_super *super = st->sb;
8418 struct imsm_super *mpb;
8419 enum imsm_update_type type = *(enum imsm_update_type *) update->buf;
8420
8421 /* update requires a larger buf but the allocation failed */
8422 if (super->next_len && !super->next_buf) {
8423 super->next_len = 0;
8424 return;
8425 }
8426
8427 if (super->next_buf) {
8428 memcpy(super->next_buf, super->buf, super->len);
8429 free(super->buf);
8430 super->len = super->next_len;
8431 super->buf = super->next_buf;
8432
8433 super->next_len = 0;
8434 super->next_buf = NULL;
8435 }
8436
8437 mpb = super->anchor;
8438
8439 switch (type) {
8440 case update_general_migration_checkpoint: {
8441 struct intel_dev *id;
8442 struct imsm_update_general_migration_checkpoint *u =
8443 (void *)update->buf;
8444
8445 dprintf("imsm: process_update() "
8446 "for update_general_migration_checkpoint called\n");
8447
8448 /* find device under general migration */
8449 for (id = super->devlist ; id; id = id->next) {
8450 if (is_gen_migration(id->dev)) {
8451 id->dev->vol.curr_migr_unit =
8452 __cpu_to_le32(u->curr_migr_unit);
8453 super->updates_pending++;
8454 }
8455 }
8456 break;
8457 }
8458 case update_takeover: {
8459 struct imsm_update_takeover *u = (void *)update->buf;
8460 if (apply_takeover_update(u, super, &update->space_list)) {
8461 imsm_update_version_info(super);
8462 super->updates_pending++;
8463 }
8464 break;
8465 }
8466
8467 case update_reshape_container_disks: {
8468 struct imsm_update_reshape *u = (void *)update->buf;
8469 if (apply_reshape_container_disks_update(
8470 u, super, &update->space_list))
8471 super->updates_pending++;
8472 break;
8473 }
8474 case update_reshape_migration: {
8475 struct imsm_update_reshape_migration *u = (void *)update->buf;
8476 if (apply_reshape_migration_update(
8477 u, super, &update->space_list))
8478 super->updates_pending++;
8479 break;
8480 }
8481 case update_size_change: {
8482 struct imsm_update_size_change *u = (void *)update->buf;
8483 if (apply_size_change_update(u, super))
8484 super->updates_pending++;
8485 break;
8486 }
8487 case update_activate_spare: {
8488 struct imsm_update_activate_spare *u = (void *) update->buf;
8489 if (apply_update_activate_spare(u, super, st->arrays))
8490 super->updates_pending++;
8491 break;
8492 }
8493 case update_create_array: {
8494 /* someone wants to create a new array, we need to be aware of
8495 * a few races/collisions:
8496 * 1/ 'Create' called by two separate instances of mdadm
8497 * 2/ 'Create' versus 'activate_spare': mdadm has chosen
8498 * devices that have since been assimilated via
8499 * activate_spare.
8500 * In the event this update can not be carried out mdadm will
8501 * (FIX ME) notice that its update did not take hold.
8502 */
8503 struct imsm_update_create_array *u = (void *) update->buf;
8504 struct intel_dev *dv;
8505 struct imsm_dev *dev;
8506 struct imsm_map *map, *new_map;
8507 unsigned long long start, end;
8508 unsigned long long new_start, new_end;
8509 int i;
8510 struct disk_info *inf;
8511 struct dl *dl;
8512
8513 /* handle racing creates: first come first serve */
8514 if (u->dev_idx < mpb->num_raid_devs) {
8515 dprintf("%s: subarray %d already defined\n",
8516 __func__, u->dev_idx);
8517 goto create_error;
8518 }
8519
8520 /* check update is next in sequence */
8521 if (u->dev_idx != mpb->num_raid_devs) {
8522 dprintf("%s: can not create array %d expected index %d\n",
8523 __func__, u->dev_idx, mpb->num_raid_devs);
8524 goto create_error;
8525 }
8526
8527 new_map = get_imsm_map(&u->dev, MAP_0);
8528 new_start = pba_of_lba0(new_map);
8529 new_end = new_start + blocks_per_member(new_map);
8530 inf = get_disk_info(u);
8531
8532 /* handle activate_spare versus create race:
8533 * check to make sure that overlapping arrays do not include
8534 * overalpping disks
8535 */
8536 for (i = 0; i < mpb->num_raid_devs; i++) {
8537 dev = get_imsm_dev(super, i);
8538 map = get_imsm_map(dev, MAP_0);
8539 start = pba_of_lba0(map);
8540 end = start + blocks_per_member(map);
8541 if ((new_start >= start && new_start <= end) ||
8542 (start >= new_start && start <= new_end))
8543 /* overlap */;
8544 else
8545 continue;
8546
8547 if (disks_overlap(super, i, u)) {
8548 dprintf("%s: arrays overlap\n", __func__);
8549 goto create_error;
8550 }
8551 }
8552
8553 /* check that prepare update was successful */
8554 if (!update->space) {
8555 dprintf("%s: prepare update failed\n", __func__);
8556 goto create_error;
8557 }
8558
8559 /* check that all disks are still active before committing
8560 * changes. FIXME: could we instead handle this by creating a
8561 * degraded array? That's probably not what the user expects,
8562 * so better to drop this update on the floor.
8563 */
8564 for (i = 0; i < new_map->num_members; i++) {
8565 dl = serial_to_dl(inf[i].serial, super);
8566 if (!dl) {
8567 dprintf("%s: disk disappeared\n", __func__);
8568 goto create_error;
8569 }
8570 }
8571
8572 super->updates_pending++;
8573
8574 /* convert spares to members and fixup ord_tbl */
8575 for (i = 0; i < new_map->num_members; i++) {
8576 dl = serial_to_dl(inf[i].serial, super);
8577 if (dl->index == -1) {
8578 dl->index = mpb->num_disks;
8579 mpb->num_disks++;
8580 dl->disk.status |= CONFIGURED_DISK;
8581 dl->disk.status &= ~SPARE_DISK;
8582 }
8583 set_imsm_ord_tbl_ent(new_map, i, dl->index);
8584 }
8585
8586 dv = update->space;
8587 dev = dv->dev;
8588 update->space = NULL;
8589 imsm_copy_dev(dev, &u->dev);
8590 dv->index = u->dev_idx;
8591 dv->next = super->devlist;
8592 super->devlist = dv;
8593 mpb->num_raid_devs++;
8594
8595 imsm_update_version_info(super);
8596 break;
8597 create_error:
8598 /* mdmon knows how to release update->space, but not
8599 * ((struct intel_dev *) update->space)->dev
8600 */
8601 if (update->space) {
8602 dv = update->space;
8603 free(dv->dev);
8604 }
8605 break;
8606 }
8607 case update_kill_array: {
8608 struct imsm_update_kill_array *u = (void *) update->buf;
8609 int victim = u->dev_idx;
8610 struct active_array *a;
8611 struct intel_dev **dp;
8612 struct imsm_dev *dev;
8613
8614 /* sanity check that we are not affecting the uuid of
8615 * active arrays, or deleting an active array
8616 *
8617 * FIXME when immutable ids are available, but note that
8618 * we'll also need to fixup the invalidated/active
8619 * subarray indexes in mdstat
8620 */
8621 for (a = st->arrays; a; a = a->next)
8622 if (a->info.container_member >= victim)
8623 break;
8624 /* by definition if mdmon is running at least one array
8625 * is active in the container, so checking
8626 * mpb->num_raid_devs is just extra paranoia
8627 */
8628 dev = get_imsm_dev(super, victim);
8629 if (a || !dev || mpb->num_raid_devs == 1) {
8630 dprintf("failed to delete subarray-%d\n", victim);
8631 break;
8632 }
8633
8634 for (dp = &super->devlist; *dp;)
8635 if ((*dp)->index == (unsigned)super->current_vol) {
8636 *dp = (*dp)->next;
8637 } else {
8638 if ((*dp)->index > (unsigned)victim)
8639 (*dp)->index--;
8640 dp = &(*dp)->next;
8641 }
8642 mpb->num_raid_devs--;
8643 super->updates_pending++;
8644 break;
8645 }
8646 case update_rename_array: {
8647 struct imsm_update_rename_array *u = (void *) update->buf;
8648 char name[MAX_RAID_SERIAL_LEN+1];
8649 int target = u->dev_idx;
8650 struct active_array *a;
8651 struct imsm_dev *dev;
8652
8653 /* sanity check that we are not affecting the uuid of
8654 * an active array
8655 */
8656 snprintf(name, MAX_RAID_SERIAL_LEN, "%s", (char *) u->name);
8657 name[MAX_RAID_SERIAL_LEN] = '\0';
8658 for (a = st->arrays; a; a = a->next)
8659 if (a->info.container_member == target)
8660 break;
8661 dev = get_imsm_dev(super, u->dev_idx);
8662 if (a || !dev || !check_name(super, name, 1)) {
8663 dprintf("failed to rename subarray-%d\n", target);
8664 break;
8665 }
8666
8667 snprintf((char *) dev->volume, MAX_RAID_SERIAL_LEN, "%s", name);
8668 super->updates_pending++;
8669 break;
8670 }
8671 case update_add_remove_disk: {
8672 /* we may be able to repair some arrays if disks are
8673 * being added, check teh status of add_remove_disk
8674 * if discs has been added.
8675 */
8676 if (add_remove_disk_update(super)) {
8677 struct active_array *a;
8678
8679 super->updates_pending++;
8680 for (a = st->arrays; a; a = a->next)
8681 a->check_degraded = 1;
8682 }
8683 break;
8684 }
8685 default:
8686 fprintf(stderr, "error: unsuported process update type:"
8687 "(type: %d)\n", type);
8688 }
8689 }
8690
8691 static struct mdinfo *get_spares_for_grow(struct supertype *st);
8692
8693 static void imsm_prepare_update(struct supertype *st,
8694 struct metadata_update *update)
8695 {
8696 /**
8697 * Allocate space to hold new disk entries, raid-device entries or a new
8698 * mpb if necessary. The manager synchronously waits for updates to
8699 * complete in the monitor, so new mpb buffers allocated here can be
8700 * integrated by the monitor thread without worrying about live pointers
8701 * in the manager thread.
8702 */
8703 enum imsm_update_type type = *(enum imsm_update_type *) update->buf;
8704 struct intel_super *super = st->sb;
8705 struct imsm_super *mpb = super->anchor;
8706 size_t buf_len;
8707 size_t len = 0;
8708
8709 switch (type) {
8710 case update_general_migration_checkpoint:
8711 dprintf("imsm: prepare_update() "
8712 "for update_general_migration_checkpoint called\n");
8713 break;
8714 case update_takeover: {
8715 struct imsm_update_takeover *u = (void *)update->buf;
8716 if (u->direction == R0_TO_R10) {
8717 void **tail = (void **)&update->space_list;
8718 struct imsm_dev *dev = get_imsm_dev(super, u->subarray);
8719 struct imsm_map *map = get_imsm_map(dev, MAP_0);
8720 int num_members = map->num_members;
8721 void *space;
8722 int size, i;
8723 int err = 0;
8724 /* allocate memory for added disks */
8725 for (i = 0; i < num_members; i++) {
8726 size = sizeof(struct dl);
8727 space = malloc(size);
8728 if (!space) {
8729 err++;
8730 break;
8731 }
8732 *tail = space;
8733 tail = space;
8734 *tail = NULL;
8735 }
8736 /* allocate memory for new device */
8737 size = sizeof_imsm_dev(super->devlist->dev, 0) +
8738 (num_members * sizeof(__u32));
8739 space = malloc(size);
8740 if (!space)
8741 err++;
8742 else {
8743 *tail = space;
8744 tail = space;
8745 *tail = NULL;
8746 }
8747 if (!err) {
8748 len = disks_to_mpb_size(num_members * 2);
8749 } else {
8750 /* if allocation didn't success, free buffer */
8751 while (update->space_list) {
8752 void **sp = update->space_list;
8753 update->space_list = *sp;
8754 free(sp);
8755 }
8756 }
8757 }
8758
8759 break;
8760 }
8761 case update_reshape_container_disks: {
8762 /* Every raid device in the container is about to
8763 * gain some more devices, and we will enter a
8764 * reconfiguration.
8765 * So each 'imsm_map' will be bigger, and the imsm_vol
8766 * will now hold 2 of them.
8767 * Thus we need new 'struct imsm_dev' allocations sized
8768 * as sizeof_imsm_dev but with more devices in both maps.
8769 */
8770 struct imsm_update_reshape *u = (void *)update->buf;
8771 struct intel_dev *dl;
8772 void **space_tail = (void**)&update->space_list;
8773
8774 dprintf("imsm: imsm_prepare_update() for update_reshape\n");
8775
8776 for (dl = super->devlist; dl; dl = dl->next) {
8777 int size = sizeof_imsm_dev(dl->dev, 1);
8778 void *s;
8779 if (u->new_raid_disks > u->old_raid_disks)
8780 size += sizeof(__u32)*2*
8781 (u->new_raid_disks - u->old_raid_disks);
8782 s = malloc(size);
8783 if (!s)
8784 break;
8785 *space_tail = s;
8786 space_tail = s;
8787 *space_tail = NULL;
8788 }
8789
8790 len = disks_to_mpb_size(u->new_raid_disks);
8791 dprintf("New anchor length is %llu\n", (unsigned long long)len);
8792 break;
8793 }
8794 case update_reshape_migration: {
8795 /* for migration level 0->5 we need to add disks
8796 * so the same as for container operation we will copy
8797 * device to the bigger location.
8798 * in memory prepared device and new disk area are prepared
8799 * for usage in process update
8800 */
8801 struct imsm_update_reshape_migration *u = (void *)update->buf;
8802 struct intel_dev *id;
8803 void **space_tail = (void **)&update->space_list;
8804 int size;
8805 void *s;
8806 int current_level = -1;
8807
8808 dprintf("imsm: imsm_prepare_update() for update_reshape\n");
8809
8810 /* add space for bigger array in update
8811 */
8812 for (id = super->devlist; id; id = id->next) {
8813 if (id->index == (unsigned)u->subdev) {
8814 size = sizeof_imsm_dev(id->dev, 1);
8815 if (u->new_raid_disks > u->old_raid_disks)
8816 size += sizeof(__u32)*2*
8817 (u->new_raid_disks - u->old_raid_disks);
8818 s = malloc(size);
8819 if (!s)
8820 break;
8821 *space_tail = s;
8822 space_tail = s;
8823 *space_tail = NULL;
8824 break;
8825 }
8826 }
8827 if (update->space_list == NULL)
8828 break;
8829
8830 /* add space for disk in update
8831 */
8832 size = sizeof(struct dl);
8833 s = malloc(size);
8834 if (!s) {
8835 free(update->space_list);
8836 update->space_list = NULL;
8837 break;
8838 }
8839 *space_tail = s;
8840 space_tail = s;
8841 *space_tail = NULL;
8842
8843 /* add spare device to update
8844 */
8845 for (id = super->devlist ; id; id = id->next)
8846 if (id->index == (unsigned)u->subdev) {
8847 struct imsm_dev *dev;
8848 struct imsm_map *map;
8849
8850 dev = get_imsm_dev(super, u->subdev);
8851 map = get_imsm_map(dev, MAP_0);
8852 current_level = map->raid_level;
8853 break;
8854 }
8855 if ((u->new_level == 5) && (u->new_level != current_level)) {
8856 struct mdinfo *spares;
8857
8858 spares = get_spares_for_grow(st);
8859 if (spares) {
8860 struct dl *dl;
8861 struct mdinfo *dev;
8862
8863 dev = spares->devs;
8864 if (dev) {
8865 u->new_disks[0] =
8866 makedev(dev->disk.major,
8867 dev->disk.minor);
8868 dl = get_disk_super(super,
8869 dev->disk.major,
8870 dev->disk.minor);
8871 dl->index = u->old_raid_disks;
8872 dev = dev->next;
8873 }
8874 sysfs_free(spares);
8875 }
8876 }
8877 len = disks_to_mpb_size(u->new_raid_disks);
8878 dprintf("New anchor length is %llu\n", (unsigned long long)len);
8879 break;
8880 }
8881 case update_size_change: {
8882 break;
8883 }
8884 case update_create_array: {
8885 struct imsm_update_create_array *u = (void *) update->buf;
8886 struct intel_dev *dv;
8887 struct imsm_dev *dev = &u->dev;
8888 struct imsm_map *map = get_imsm_map(dev, MAP_0);
8889 struct dl *dl;
8890 struct disk_info *inf;
8891 int i;
8892 int activate = 0;
8893
8894 inf = get_disk_info(u);
8895 len = sizeof_imsm_dev(dev, 1);
8896 /* allocate a new super->devlist entry */
8897 dv = malloc(sizeof(*dv));
8898 if (dv) {
8899 dv->dev = malloc(len);
8900 if (dv->dev)
8901 update->space = dv;
8902 else {
8903 free(dv);
8904 update->space = NULL;
8905 }
8906 }
8907
8908 /* count how many spares will be converted to members */
8909 for (i = 0; i < map->num_members; i++) {
8910 dl = serial_to_dl(inf[i].serial, super);
8911 if (!dl) {
8912 /* hmm maybe it failed?, nothing we can do about
8913 * it here
8914 */
8915 continue;
8916 }
8917 if (count_memberships(dl, super) == 0)
8918 activate++;
8919 }
8920 len += activate * sizeof(struct imsm_disk);
8921 break;
8922 default:
8923 break;
8924 }
8925 }
8926
8927 /* check if we need a larger metadata buffer */
8928 if (super->next_buf)
8929 buf_len = super->next_len;
8930 else
8931 buf_len = super->len;
8932
8933 if (__le32_to_cpu(mpb->mpb_size) + len > buf_len) {
8934 /* ok we need a larger buf than what is currently allocated
8935 * if this allocation fails process_update will notice that
8936 * ->next_len is set and ->next_buf is NULL
8937 */
8938 buf_len = ROUND_UP(__le32_to_cpu(mpb->mpb_size) + len, 512);
8939 if (super->next_buf)
8940 free(super->next_buf);
8941
8942 super->next_len = buf_len;
8943 if (posix_memalign(&super->next_buf, 512, buf_len) == 0)
8944 memset(super->next_buf, 0, buf_len);
8945 else
8946 super->next_buf = NULL;
8947 }
8948 }
8949
8950 /* must be called while manager is quiesced */
8951 static void imsm_delete(struct intel_super *super, struct dl **dlp, unsigned index)
8952 {
8953 struct imsm_super *mpb = super->anchor;
8954 struct dl *iter;
8955 struct imsm_dev *dev;
8956 struct imsm_map *map;
8957 int i, j, num_members;
8958 __u32 ord;
8959
8960 dprintf("%s: deleting device[%d] from imsm_super\n",
8961 __func__, index);
8962
8963 /* shift all indexes down one */
8964 for (iter = super->disks; iter; iter = iter->next)
8965 if (iter->index > (int)index)
8966 iter->index--;
8967 for (iter = super->missing; iter; iter = iter->next)
8968 if (iter->index > (int)index)
8969 iter->index--;
8970
8971 for (i = 0; i < mpb->num_raid_devs; i++) {
8972 dev = get_imsm_dev(super, i);
8973 map = get_imsm_map(dev, MAP_0);
8974 num_members = map->num_members;
8975 for (j = 0; j < num_members; j++) {
8976 /* update ord entries being careful not to propagate
8977 * ord-flags to the first map
8978 */
8979 ord = get_imsm_ord_tbl_ent(dev, j, MAP_X);
8980
8981 if (ord_to_idx(ord) <= index)
8982 continue;
8983
8984 map = get_imsm_map(dev, MAP_0);
8985 set_imsm_ord_tbl_ent(map, j, ord_to_idx(ord - 1));
8986 map = get_imsm_map(dev, MAP_1);
8987 if (map)
8988 set_imsm_ord_tbl_ent(map, j, ord - 1);
8989 }
8990 }
8991
8992 mpb->num_disks--;
8993 super->updates_pending++;
8994 if (*dlp) {
8995 struct dl *dl = *dlp;
8996
8997 *dlp = (*dlp)->next;
8998 __free_imsm_disk(dl);
8999 }
9000 }
9001 #endif /* MDASSEMBLE */
9002
9003 static void close_targets(int *targets, int new_disks)
9004 {
9005 int i;
9006
9007 if (!targets)
9008 return;
9009
9010 for (i = 0; i < new_disks; i++) {
9011 if (targets[i] >= 0) {
9012 close(targets[i]);
9013 targets[i] = -1;
9014 }
9015 }
9016 }
9017
9018 static int imsm_get_allowed_degradation(int level, int raid_disks,
9019 struct intel_super *super,
9020 struct imsm_dev *dev)
9021 {
9022 switch (level) {
9023 case 1:
9024 case 10:{
9025 int ret_val = 0;
9026 struct imsm_map *map;
9027 int i;
9028
9029 ret_val = raid_disks/2;
9030 /* check map if all disks pairs not failed
9031 * in both maps
9032 */
9033 map = get_imsm_map(dev, MAP_0);
9034 for (i = 0; i < ret_val; i++) {
9035 int degradation = 0;
9036 if (get_imsm_disk(super, i) == NULL)
9037 degradation++;
9038 if (get_imsm_disk(super, i + 1) == NULL)
9039 degradation++;
9040 if (degradation == 2)
9041 return 0;
9042 }
9043 map = get_imsm_map(dev, MAP_1);
9044 /* if there is no second map
9045 * result can be returned
9046 */
9047 if (map == NULL)
9048 return ret_val;
9049 /* check degradation in second map
9050 */
9051 for (i = 0; i < ret_val; i++) {
9052 int degradation = 0;
9053 if (get_imsm_disk(super, i) == NULL)
9054 degradation++;
9055 if (get_imsm_disk(super, i + 1) == NULL)
9056 degradation++;
9057 if (degradation == 2)
9058 return 0;
9059 }
9060 return ret_val;
9061 }
9062 case 5:
9063 return 1;
9064 case 6:
9065 return 2;
9066 default:
9067 return 0;
9068 }
9069 }
9070
9071
9072 /*******************************************************************************
9073 * Function: open_backup_targets
9074 * Description: Function opens file descriptors for all devices given in
9075 * info->devs
9076 * Parameters:
9077 * info : general array info
9078 * raid_disks : number of disks
9079 * raid_fds : table of device's file descriptors
9080 * super : intel super for raid10 degradation check
9081 * dev : intel device for raid10 degradation check
9082 * Returns:
9083 * 0 : success
9084 * -1 : fail
9085 ******************************************************************************/
9086 int open_backup_targets(struct mdinfo *info, int raid_disks, int *raid_fds,
9087 struct intel_super *super, struct imsm_dev *dev)
9088 {
9089 struct mdinfo *sd;
9090 int i;
9091 int opened = 0;
9092
9093 for (i = 0; i < raid_disks; i++)
9094 raid_fds[i] = -1;
9095
9096 for (sd = info->devs ; sd ; sd = sd->next) {
9097 char *dn;
9098
9099 if (sd->disk.state & (1<<MD_DISK_FAULTY)) {
9100 dprintf("disk is faulty!!\n");
9101 continue;
9102 }
9103
9104 if ((sd->disk.raid_disk >= raid_disks) ||
9105 (sd->disk.raid_disk < 0))
9106 continue;
9107
9108 dn = map_dev(sd->disk.major,
9109 sd->disk.minor, 1);
9110 raid_fds[sd->disk.raid_disk] = dev_open(dn, O_RDWR);
9111 if (raid_fds[sd->disk.raid_disk] < 0) {
9112 fprintf(stderr, "cannot open component\n");
9113 continue;
9114 }
9115 opened++;
9116 }
9117 /* check if maximum array degradation level is not exceeded
9118 */
9119 if ((raid_disks - opened) >
9120 imsm_get_allowed_degradation(info->new_level,
9121 raid_disks,
9122 super, dev)) {
9123 fprintf(stderr, "Not enough disks can be opened.\n");
9124 close_targets(raid_fds, raid_disks);
9125 return -2;
9126 }
9127 return 0;
9128 }
9129
9130 #ifndef MDASSEMBLE
9131 /*******************************************************************************
9132 * Function: init_migr_record_imsm
9133 * Description: Function inits imsm migration record
9134 * Parameters:
9135 * super : imsm internal array info
9136 * dev : device under migration
9137 * info : general array info to find the smallest device
9138 * Returns:
9139 * none
9140 ******************************************************************************/
9141 void init_migr_record_imsm(struct supertype *st, struct imsm_dev *dev,
9142 struct mdinfo *info)
9143 {
9144 struct intel_super *super = st->sb;
9145 struct migr_record *migr_rec = super->migr_rec;
9146 int new_data_disks;
9147 unsigned long long dsize, dev_sectors;
9148 long long unsigned min_dev_sectors = -1LLU;
9149 struct mdinfo *sd;
9150 char nm[30];
9151 int fd;
9152 struct imsm_map *map_dest = get_imsm_map(dev, MAP_0);
9153 struct imsm_map *map_src = get_imsm_map(dev, MAP_1);
9154 unsigned long long num_migr_units;
9155 unsigned long long array_blocks;
9156
9157 memset(migr_rec, 0, sizeof(struct migr_record));
9158 migr_rec->family_num = __cpu_to_le32(super->anchor->family_num);
9159
9160 /* only ascending reshape supported now */
9161 migr_rec->ascending_migr = __cpu_to_le32(1);
9162
9163 migr_rec->dest_depth_per_unit = GEN_MIGR_AREA_SIZE /
9164 max(map_dest->blocks_per_strip, map_src->blocks_per_strip);
9165 migr_rec->dest_depth_per_unit *=
9166 max(map_dest->blocks_per_strip, map_src->blocks_per_strip);
9167 new_data_disks = imsm_num_data_members(dev, MAP_0);
9168 migr_rec->blocks_per_unit =
9169 __cpu_to_le32(migr_rec->dest_depth_per_unit * new_data_disks);
9170 migr_rec->dest_depth_per_unit =
9171 __cpu_to_le32(migr_rec->dest_depth_per_unit);
9172 array_blocks = info->component_size * new_data_disks;
9173 num_migr_units =
9174 array_blocks / __le32_to_cpu(migr_rec->blocks_per_unit);
9175
9176 if (array_blocks % __le32_to_cpu(migr_rec->blocks_per_unit))
9177 num_migr_units++;
9178 migr_rec->num_migr_units = __cpu_to_le32(num_migr_units);
9179
9180 migr_rec->post_migr_vol_cap = dev->size_low;
9181 migr_rec->post_migr_vol_cap_hi = dev->size_high;
9182
9183
9184 /* Find the smallest dev */
9185 for (sd = info->devs ; sd ; sd = sd->next) {
9186 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
9187 fd = dev_open(nm, O_RDONLY);
9188 if (fd < 0)
9189 continue;
9190 get_dev_size(fd, NULL, &dsize);
9191 dev_sectors = dsize / 512;
9192 if (dev_sectors < min_dev_sectors)
9193 min_dev_sectors = dev_sectors;
9194 close(fd);
9195 }
9196 migr_rec->ckpt_area_pba = __cpu_to_le32(min_dev_sectors -
9197 RAID_DISK_RESERVED_BLOCKS_IMSM_HI);
9198
9199 write_imsm_migr_rec(st);
9200
9201 return;
9202 }
9203
9204 /*******************************************************************************
9205 * Function: save_backup_imsm
9206 * Description: Function saves critical data stripes to Migration Copy Area
9207 * and updates the current migration unit status.
9208 * Use restore_stripes() to form a destination stripe,
9209 * and to write it to the Copy Area.
9210 * Parameters:
9211 * st : supertype information
9212 * dev : imsm device that backup is saved for
9213 * info : general array info
9214 * buf : input buffer
9215 * length : length of data to backup (blocks_per_unit)
9216 * Returns:
9217 * 0 : success
9218 *, -1 : fail
9219 ******************************************************************************/
9220 int save_backup_imsm(struct supertype *st,
9221 struct imsm_dev *dev,
9222 struct mdinfo *info,
9223 void *buf,
9224 int length)
9225 {
9226 int rv = -1;
9227 struct intel_super *super = st->sb;
9228 unsigned long long *target_offsets = NULL;
9229 int *targets = NULL;
9230 int i;
9231 struct imsm_map *map_dest = get_imsm_map(dev, MAP_0);
9232 int new_disks = map_dest->num_members;
9233 int dest_layout = 0;
9234 int dest_chunk;
9235 unsigned long long start;
9236 int data_disks = imsm_num_data_members(dev, MAP_0);
9237
9238 targets = malloc(new_disks * sizeof(int));
9239 if (!targets)
9240 goto abort;
9241
9242 for (i = 0; i < new_disks; i++)
9243 targets[i] = -1;
9244
9245 target_offsets = malloc(new_disks * sizeof(unsigned long long));
9246 if (!target_offsets)
9247 goto abort;
9248
9249 start = info->reshape_progress * 512;
9250 for (i = 0; i < new_disks; i++) {
9251 target_offsets[i] = (unsigned long long)
9252 __le32_to_cpu(super->migr_rec->ckpt_area_pba) * 512;
9253 /* move back copy area adderss, it will be moved forward
9254 * in restore_stripes() using start input variable
9255 */
9256 target_offsets[i] -= start/data_disks;
9257 }
9258
9259 if (open_backup_targets(info, new_disks, targets,
9260 super, dev))
9261 goto abort;
9262
9263 dest_layout = imsm_level_to_layout(map_dest->raid_level);
9264 dest_chunk = __le16_to_cpu(map_dest->blocks_per_strip) * 512;
9265
9266 if (restore_stripes(targets, /* list of dest devices */
9267 target_offsets, /* migration record offsets */
9268 new_disks,
9269 dest_chunk,
9270 map_dest->raid_level,
9271 dest_layout,
9272 -1, /* source backup file descriptor */
9273 0, /* input buf offset
9274 * always 0 buf is already offseted */
9275 start,
9276 length,
9277 buf) != 0) {
9278 fprintf(stderr, Name ": Error restoring stripes\n");
9279 goto abort;
9280 }
9281
9282 rv = 0;
9283
9284 abort:
9285 if (targets) {
9286 close_targets(targets, new_disks);
9287 free(targets);
9288 }
9289 free(target_offsets);
9290
9291 return rv;
9292 }
9293
9294 /*******************************************************************************
9295 * Function: save_checkpoint_imsm
9296 * Description: Function called for current unit status update
9297 * in the migration record. It writes it to disk.
9298 * Parameters:
9299 * super : imsm internal array info
9300 * info : general array info
9301 * Returns:
9302 * 0: success
9303 * 1: failure
9304 * 2: failure, means no valid migration record
9305 * / no general migration in progress /
9306 ******************************************************************************/
9307 int save_checkpoint_imsm(struct supertype *st, struct mdinfo *info, int state)
9308 {
9309 struct intel_super *super = st->sb;
9310 unsigned long long blocks_per_unit;
9311 unsigned long long curr_migr_unit;
9312
9313 if (load_imsm_migr_rec(super, info) != 0) {
9314 dprintf("imsm: ERROR: Cannot read migration record "
9315 "for checkpoint save.\n");
9316 return 1;
9317 }
9318
9319 blocks_per_unit = __le32_to_cpu(super->migr_rec->blocks_per_unit);
9320 if (blocks_per_unit == 0) {
9321 dprintf("imsm: no migration in progress.\n");
9322 return 2;
9323 }
9324 curr_migr_unit = info->reshape_progress / blocks_per_unit;
9325 /* check if array is alligned to copy area
9326 * if it is not alligned, add one to current migration unit value
9327 * this can happend on array reshape finish only
9328 */
9329 if (info->reshape_progress % blocks_per_unit)
9330 curr_migr_unit++;
9331
9332 super->migr_rec->curr_migr_unit =
9333 __cpu_to_le32(curr_migr_unit);
9334 super->migr_rec->rec_status = __cpu_to_le32(state);
9335 super->migr_rec->dest_1st_member_lba =
9336 __cpu_to_le32(curr_migr_unit *
9337 __le32_to_cpu(super->migr_rec->dest_depth_per_unit));
9338 if (write_imsm_migr_rec(st) < 0) {
9339 dprintf("imsm: Cannot write migration record "
9340 "outside backup area\n");
9341 return 1;
9342 }
9343
9344 return 0;
9345 }
9346
9347 /*******************************************************************************
9348 * Function: recover_backup_imsm
9349 * Description: Function recovers critical data from the Migration Copy Area
9350 * while assembling an array.
9351 * Parameters:
9352 * super : imsm internal array info
9353 * info : general array info
9354 * Returns:
9355 * 0 : success (or there is no data to recover)
9356 * 1 : fail
9357 ******************************************************************************/
9358 int recover_backup_imsm(struct supertype *st, struct mdinfo *info)
9359 {
9360 struct intel_super *super = st->sb;
9361 struct migr_record *migr_rec = super->migr_rec;
9362 struct imsm_map *map_dest = NULL;
9363 struct intel_dev *id = NULL;
9364 unsigned long long read_offset;
9365 unsigned long long write_offset;
9366 unsigned unit_len;
9367 int *targets = NULL;
9368 int new_disks, i, err;
9369 char *buf = NULL;
9370 int retval = 1;
9371 unsigned long curr_migr_unit = __le32_to_cpu(migr_rec->curr_migr_unit);
9372 unsigned long num_migr_units = __le32_to_cpu(migr_rec->num_migr_units);
9373 char buffer[20];
9374 int skipped_disks = 0;
9375
9376 err = sysfs_get_str(info, NULL, "array_state", (char *)buffer, 20);
9377 if (err < 1)
9378 return 1;
9379
9380 /* recover data only during assemblation */
9381 if (strncmp(buffer, "inactive", 8) != 0)
9382 return 0;
9383 /* no data to recover */
9384 if (__le32_to_cpu(migr_rec->rec_status) == UNIT_SRC_NORMAL)
9385 return 0;
9386 if (curr_migr_unit >= num_migr_units)
9387 return 1;
9388
9389 /* find device during reshape */
9390 for (id = super->devlist; id; id = id->next)
9391 if (is_gen_migration(id->dev))
9392 break;
9393 if (id == NULL)
9394 return 1;
9395
9396 map_dest = get_imsm_map(id->dev, MAP_0);
9397 new_disks = map_dest->num_members;
9398
9399 read_offset = (unsigned long long)
9400 __le32_to_cpu(migr_rec->ckpt_area_pba) * 512;
9401
9402 write_offset = ((unsigned long long)
9403 __le32_to_cpu(migr_rec->dest_1st_member_lba) +
9404 pba_of_lba0(map_dest)) * 512;
9405
9406 unit_len = __le32_to_cpu(migr_rec->dest_depth_per_unit) * 512;
9407 if (posix_memalign((void **)&buf, 512, unit_len) != 0)
9408 goto abort;
9409 targets = malloc(new_disks * sizeof(int));
9410 if (!targets)
9411 goto abort;
9412
9413 if (open_backup_targets(info, new_disks, targets, super, id->dev)) {
9414 fprintf(stderr,
9415 Name ": Cannot open some devices belonging to array.\n");
9416 goto abort;
9417 }
9418
9419 for (i = 0; i < new_disks; i++) {
9420 if (targets[i] < 0) {
9421 skipped_disks++;
9422 continue;
9423 }
9424 if (lseek64(targets[i], read_offset, SEEK_SET) < 0) {
9425 fprintf(stderr,
9426 Name ": Cannot seek to block: %s\n",
9427 strerror(errno));
9428 skipped_disks++;
9429 continue;
9430 }
9431 if ((unsigned)read(targets[i], buf, unit_len) != unit_len) {
9432 fprintf(stderr,
9433 Name ": Cannot read copy area block: %s\n",
9434 strerror(errno));
9435 skipped_disks++;
9436 continue;
9437 }
9438 if (lseek64(targets[i], write_offset, SEEK_SET) < 0) {
9439 fprintf(stderr,
9440 Name ": Cannot seek to block: %s\n",
9441 strerror(errno));
9442 skipped_disks++;
9443 continue;
9444 }
9445 if ((unsigned)write(targets[i], buf, unit_len) != unit_len) {
9446 fprintf(stderr,
9447 Name ": Cannot restore block: %s\n",
9448 strerror(errno));
9449 skipped_disks++;
9450 continue;
9451 }
9452 }
9453
9454 if (skipped_disks > imsm_get_allowed_degradation(info->new_level,
9455 new_disks,
9456 super,
9457 id->dev)) {
9458 fprintf(stderr,
9459 Name ": Cannot restore data from backup."
9460 " Too many failed disks\n");
9461 goto abort;
9462 }
9463
9464 if (save_checkpoint_imsm(st, info, UNIT_SRC_NORMAL)) {
9465 /* ignore error == 2, this can mean end of reshape here
9466 */
9467 dprintf("imsm: Cannot write checkpoint to "
9468 "migration record (UNIT_SRC_NORMAL) during restart\n");
9469 } else
9470 retval = 0;
9471
9472 abort:
9473 if (targets) {
9474 for (i = 0; i < new_disks; i++)
9475 if (targets[i])
9476 close(targets[i]);
9477 free(targets);
9478 }
9479 free(buf);
9480 return retval;
9481 }
9482
9483 static char disk_by_path[] = "/dev/disk/by-path/";
9484
9485 static const char *imsm_get_disk_controller_domain(const char *path)
9486 {
9487 char disk_path[PATH_MAX];
9488 char *drv=NULL;
9489 struct stat st;
9490
9491 strncpy(disk_path, disk_by_path, PATH_MAX - 1);
9492 strncat(disk_path, path, PATH_MAX - strlen(disk_path) - 1);
9493 if (stat(disk_path, &st) == 0) {
9494 struct sys_dev* hba;
9495 char *path=NULL;
9496
9497 path = devt_to_devpath(st.st_rdev);
9498 if (path == NULL)
9499 return "unknown";
9500 hba = find_disk_attached_hba(-1, path);
9501 if (hba && hba->type == SYS_DEV_SAS)
9502 drv = "isci";
9503 else if (hba && hba->type == SYS_DEV_SATA)
9504 drv = "ahci";
9505 else
9506 drv = "unknown";
9507 dprintf("path: %s hba: %s attached: %s\n",
9508 path, (hba) ? hba->path : "NULL", drv);
9509 free(path);
9510 if (hba)
9511 free_sys_dev(&hba);
9512 }
9513 return drv;
9514 }
9515
9516 static int imsm_find_array_minor_by_subdev(int subdev, int container, int *minor)
9517 {
9518 char subdev_name[20];
9519 struct mdstat_ent *mdstat;
9520
9521 sprintf(subdev_name, "%d", subdev);
9522 mdstat = mdstat_by_subdev(subdev_name, container);
9523 if (!mdstat)
9524 return -1;
9525
9526 *minor = mdstat->devnum;
9527 free_mdstat(mdstat);
9528 return 0;
9529 }
9530
9531 static int imsm_reshape_is_allowed_on_container(struct supertype *st,
9532 struct geo_params *geo,
9533 int *old_raid_disks,
9534 int direction)
9535 {
9536 /* currently we only support increasing the number of devices
9537 * for a container. This increases the number of device for each
9538 * member array. They must all be RAID0 or RAID5.
9539 */
9540 int ret_val = 0;
9541 struct mdinfo *info, *member;
9542 int devices_that_can_grow = 0;
9543
9544 dprintf("imsm: imsm_reshape_is_allowed_on_container(ENTER): "
9545 "st->devnum = (%i)\n",
9546 st->devnum);
9547
9548 if (geo->size != -1 ||
9549 geo->level != UnSet ||
9550 geo->layout != UnSet ||
9551 geo->chunksize != 0 ||
9552 geo->raid_disks == UnSet) {
9553 dprintf("imsm: Container operation is allowed for "
9554 "raid disks number change only.\n");
9555 return ret_val;
9556 }
9557
9558 if (direction == ROLLBACK_METADATA_CHANGES) {
9559 dprintf("imsm: Metadata changes rollback is not supported for "
9560 "container operation.\n");
9561 return ret_val;
9562 }
9563
9564 info = container_content_imsm(st, NULL);
9565 for (member = info; member; member = member->next) {
9566 int result;
9567 int minor;
9568
9569 dprintf("imsm: checking device_num: %i\n",
9570 member->container_member);
9571
9572 if (geo->raid_disks <= member->array.raid_disks) {
9573 /* we work on container for Online Capacity Expansion
9574 * only so raid_disks has to grow
9575 */
9576 dprintf("imsm: for container operation raid disks "
9577 "increase is required\n");
9578 break;
9579 }
9580
9581 if ((info->array.level != 0) &&
9582 (info->array.level != 5)) {
9583 /* we cannot use this container with other raid level
9584 */
9585 dprintf("imsm: for container operation wrong"
9586 " raid level (%i) detected\n",
9587 info->array.level);
9588 break;
9589 } else {
9590 /* check for platform support
9591 * for this raid level configuration
9592 */
9593 struct intel_super *super = st->sb;
9594 if (!is_raid_level_supported(super->orom,
9595 member->array.level,
9596 geo->raid_disks)) {
9597 dprintf("platform does not support raid%d with"
9598 " %d disk%s\n",
9599 info->array.level,
9600 geo->raid_disks,
9601 geo->raid_disks > 1 ? "s" : "");
9602 break;
9603 }
9604 /* check if component size is aligned to chunk size
9605 */
9606 if (info->component_size %
9607 (info->array.chunk_size/512)) {
9608 dprintf("Component size is not aligned to "
9609 "chunk size\n");
9610 break;
9611 }
9612 }
9613
9614 if (*old_raid_disks &&
9615 info->array.raid_disks != *old_raid_disks)
9616 break;
9617 *old_raid_disks = info->array.raid_disks;
9618
9619 /* All raid5 and raid0 volumes in container
9620 * have to be ready for Online Capacity Expansion
9621 * so they need to be assembled. We have already
9622 * checked that no recovery etc is happening.
9623 */
9624 result = imsm_find_array_minor_by_subdev(member->container_member,
9625 st->container_dev,
9626 &minor);
9627 if (result < 0) {
9628 dprintf("imsm: cannot find array\n");
9629 break;
9630 }
9631 devices_that_can_grow++;
9632 }
9633 sysfs_free(info);
9634 if (!member && devices_that_can_grow)
9635 ret_val = 1;
9636
9637 if (ret_val)
9638 dprintf("\tContainer operation allowed\n");
9639 else
9640 dprintf("\tError: %i\n", ret_val);
9641
9642 return ret_val;
9643 }
9644
9645 /* Function: get_spares_for_grow
9646 * Description: Allocates memory and creates list of spare devices
9647 * avaliable in container. Checks if spare drive size is acceptable.
9648 * Parameters: Pointer to the supertype structure
9649 * Returns: Pointer to the list of spare devices (mdinfo structure) on success,
9650 * NULL if fail
9651 */
9652 static struct mdinfo *get_spares_for_grow(struct supertype *st)
9653 {
9654 unsigned long long min_size = min_acceptable_spare_size_imsm(st);
9655 return container_choose_spares(st, min_size, NULL, NULL, NULL, 0);
9656 }
9657
9658 /******************************************************************************
9659 * function: imsm_create_metadata_update_for_reshape
9660 * Function creates update for whole IMSM container.
9661 *
9662 ******************************************************************************/
9663 static int imsm_create_metadata_update_for_reshape(
9664 struct supertype *st,
9665 struct geo_params *geo,
9666 int old_raid_disks,
9667 struct imsm_update_reshape **updatep)
9668 {
9669 struct intel_super *super = st->sb;
9670 struct imsm_super *mpb = super->anchor;
9671 int update_memory_size = 0;
9672 struct imsm_update_reshape *u = NULL;
9673 struct mdinfo *spares = NULL;
9674 int i;
9675 int delta_disks = 0;
9676 struct mdinfo *dev;
9677
9678 dprintf("imsm_update_metadata_for_reshape(enter) raid_disks = %i\n",
9679 geo->raid_disks);
9680
9681 delta_disks = geo->raid_disks - old_raid_disks;
9682
9683 /* size of all update data without anchor */
9684 update_memory_size = sizeof(struct imsm_update_reshape);
9685
9686 /* now add space for spare disks that we need to add. */
9687 update_memory_size += sizeof(u->new_disks[0]) * (delta_disks - 1);
9688
9689 u = calloc(1, update_memory_size);
9690 if (u == NULL) {
9691 dprintf("error: "
9692 "cannot get memory for imsm_update_reshape update\n");
9693 return 0;
9694 }
9695 u->type = update_reshape_container_disks;
9696 u->old_raid_disks = old_raid_disks;
9697 u->new_raid_disks = geo->raid_disks;
9698
9699 /* now get spare disks list
9700 */
9701 spares = get_spares_for_grow(st);
9702
9703 if (spares == NULL
9704 || delta_disks > spares->array.spare_disks) {
9705 fprintf(stderr, Name ": imsm: ERROR: Cannot get spare devices "
9706 "for %s.\n", geo->dev_name);
9707 i = -1;
9708 goto abort;
9709 }
9710
9711 /* we have got spares
9712 * update disk list in imsm_disk list table in anchor
9713 */
9714 dprintf("imsm: %i spares are available.\n\n",
9715 spares->array.spare_disks);
9716
9717 dev = spares->devs;
9718 for (i = 0; i < delta_disks; i++) {
9719 struct dl *dl;
9720
9721 if (dev == NULL)
9722 break;
9723 u->new_disks[i] = makedev(dev->disk.major,
9724 dev->disk.minor);
9725 dl = get_disk_super(super, dev->disk.major, dev->disk.minor);
9726 dl->index = mpb->num_disks;
9727 mpb->num_disks++;
9728 dev = dev->next;
9729 }
9730
9731 abort:
9732 /* free spares
9733 */
9734 sysfs_free(spares);
9735
9736 dprintf("imsm: reshape update preparation :");
9737 if (i == delta_disks) {
9738 dprintf(" OK\n");
9739 *updatep = u;
9740 return update_memory_size;
9741 }
9742 free(u);
9743 dprintf(" Error\n");
9744
9745 return 0;
9746 }
9747
9748
9749 /******************************************************************************
9750 * function: imsm_create_metadata_update_for_size_change()
9751 * Creates update for IMSM array for array size change.
9752 *
9753 ******************************************************************************/
9754 static int imsm_create_metadata_update_for_size_change(
9755 struct supertype *st,
9756 struct geo_params *geo,
9757 struct imsm_update_size_change **updatep)
9758 {
9759 struct intel_super *super = st->sb;
9760 int update_memory_size = 0;
9761 struct imsm_update_size_change *u = NULL;
9762
9763 dprintf("imsm_create_metadata_update_for_size_change(enter)"
9764 " New size = %llu\n", geo->size);
9765
9766 /* size of all update data without anchor */
9767 update_memory_size = sizeof(struct imsm_update_size_change);
9768
9769 u = calloc(1, update_memory_size);
9770 if (u == NULL) {
9771 dprintf("error: cannot get memory for "
9772 "imsm_create_metadata_update_for_size_change\n");
9773 return 0;
9774 }
9775 u->type = update_size_change;
9776 u->subdev = super->current_vol;
9777 u->new_size = geo->size;
9778
9779 dprintf("imsm: reshape update preparation : OK\n");
9780 *updatep = u;
9781
9782 return update_memory_size;
9783 }
9784
9785 /******************************************************************************
9786 * function: imsm_create_metadata_update_for_migration()
9787 * Creates update for IMSM array.
9788 *
9789 ******************************************************************************/
9790 static int imsm_create_metadata_update_for_migration(
9791 struct supertype *st,
9792 struct geo_params *geo,
9793 struct imsm_update_reshape_migration **updatep)
9794 {
9795 struct intel_super *super = st->sb;
9796 int update_memory_size = 0;
9797 struct imsm_update_reshape_migration *u = NULL;
9798 struct imsm_dev *dev;
9799 int previous_level = -1;
9800
9801 dprintf("imsm_create_metadata_update_for_migration(enter)"
9802 " New Level = %i\n", geo->level);
9803
9804 /* size of all update data without anchor */
9805 update_memory_size = sizeof(struct imsm_update_reshape_migration);
9806
9807 u = calloc(1, update_memory_size);
9808 if (u == NULL) {
9809 dprintf("error: cannot get memory for "
9810 "imsm_create_metadata_update_for_migration\n");
9811 return 0;
9812 }
9813 u->type = update_reshape_migration;
9814 u->subdev = super->current_vol;
9815 u->new_level = geo->level;
9816 u->new_layout = geo->layout;
9817 u->new_raid_disks = u->old_raid_disks = geo->raid_disks;
9818 u->new_disks[0] = -1;
9819 u->new_chunksize = -1;
9820
9821 dev = get_imsm_dev(super, u->subdev);
9822 if (dev) {
9823 struct imsm_map *map;
9824
9825 map = get_imsm_map(dev, MAP_0);
9826 if (map) {
9827 int current_chunk_size =
9828 __le16_to_cpu(map->blocks_per_strip) / 2;
9829
9830 if (geo->chunksize != current_chunk_size) {
9831 u->new_chunksize = geo->chunksize / 1024;
9832 dprintf("imsm: "
9833 "chunk size change from %i to %i\n",
9834 current_chunk_size, u->new_chunksize);
9835 }
9836 previous_level = map->raid_level;
9837 }
9838 }
9839 if ((geo->level == 5) && (previous_level == 0)) {
9840 struct mdinfo *spares = NULL;
9841
9842 u->new_raid_disks++;
9843 spares = get_spares_for_grow(st);
9844 if ((spares == NULL) || (spares->array.spare_disks < 1)) {
9845 free(u);
9846 sysfs_free(spares);
9847 update_memory_size = 0;
9848 dprintf("error: cannot get spare device "
9849 "for requested migration");
9850 return 0;
9851 }
9852 sysfs_free(spares);
9853 }
9854 dprintf("imsm: reshape update preparation : OK\n");
9855 *updatep = u;
9856
9857 return update_memory_size;
9858 }
9859
9860 static void imsm_update_metadata_locally(struct supertype *st,
9861 void *buf, int len)
9862 {
9863 struct metadata_update mu;
9864
9865 mu.buf = buf;
9866 mu.len = len;
9867 mu.space = NULL;
9868 mu.space_list = NULL;
9869 mu.next = NULL;
9870 imsm_prepare_update(st, &mu);
9871 imsm_process_update(st, &mu);
9872
9873 while (mu.space_list) {
9874 void **space = mu.space_list;
9875 mu.space_list = *space;
9876 free(space);
9877 }
9878 }
9879
9880 /***************************************************************************
9881 * Function: imsm_analyze_change
9882 * Description: Function analyze change for single volume
9883 * and validate if transition is supported
9884 * Parameters: Geometry parameters, supertype structure,
9885 * metadata change direction (apply/rollback)
9886 * Returns: Operation type code on success, -1 if fail
9887 ****************************************************************************/
9888 enum imsm_reshape_type imsm_analyze_change(struct supertype *st,
9889 struct geo_params *geo,
9890 int direction)
9891 {
9892 struct mdinfo info;
9893 int change = -1;
9894 int check_devs = 0;
9895 int chunk;
9896 /* number of added/removed disks in operation result */
9897 int devNumChange = 0;
9898 /* imsm compatible layout value for array geometry verification */
9899 int imsm_layout = -1;
9900 int data_disks;
9901 struct imsm_dev *dev;
9902 struct intel_super *super;
9903 long long current_size;
9904
9905 getinfo_super_imsm_volume(st, &info, NULL);
9906 if ((geo->level != info.array.level) &&
9907 (geo->level >= 0) &&
9908 (geo->level != UnSet)) {
9909 switch (info.array.level) {
9910 case 0:
9911 if (geo->level == 5) {
9912 change = CH_MIGRATION;
9913 if (geo->layout != ALGORITHM_LEFT_ASYMMETRIC) {
9914 fprintf(stderr,
9915 Name " Error. Requested Layout "
9916 "not supported (left-asymmetric layout "
9917 "is supported only)!\n");
9918 change = -1;
9919 goto analyse_change_exit;
9920 }
9921 imsm_layout = geo->layout;
9922 check_devs = 1;
9923 devNumChange = 1; /* parity disk added */
9924 } else if (geo->level == 10) {
9925 change = CH_TAKEOVER;
9926 check_devs = 1;
9927 devNumChange = 2; /* two mirrors added */
9928 imsm_layout = 0x102; /* imsm supported layout */
9929 }
9930 break;
9931 case 1:
9932 case 10:
9933 if (geo->level == 0) {
9934 change = CH_TAKEOVER;
9935 check_devs = 1;
9936 devNumChange = -(geo->raid_disks/2);
9937 imsm_layout = 0; /* imsm raid0 layout */
9938 }
9939 break;
9940 }
9941 if (change == -1) {
9942 fprintf(stderr,
9943 Name " Error. Level Migration from %d to %d "
9944 "not supported!\n",
9945 info.array.level, geo->level);
9946 goto analyse_change_exit;
9947 }
9948 } else
9949 geo->level = info.array.level;
9950
9951 if ((geo->layout != info.array.layout)
9952 && ((geo->layout != UnSet) && (geo->layout != -1))) {
9953 change = CH_MIGRATION;
9954 if ((info.array.layout == 0)
9955 && (info.array.level == 5)
9956 && (geo->layout == 5)) {
9957 /* reshape 5 -> 4 */
9958 } else if ((info.array.layout == 5)
9959 && (info.array.level == 5)
9960 && (geo->layout == 0)) {
9961 /* reshape 4 -> 5 */
9962 geo->layout = 0;
9963 geo->level = 5;
9964 } else {
9965 fprintf(stderr,
9966 Name " Error. Layout Migration from %d to %d "
9967 "not supported!\n",
9968 info.array.layout, geo->layout);
9969 change = -1;
9970 goto analyse_change_exit;
9971 }
9972 } else {
9973 geo->layout = info.array.layout;
9974 if (imsm_layout == -1)
9975 imsm_layout = info.array.layout;
9976 }
9977
9978 if ((geo->chunksize > 0) && (geo->chunksize != UnSet)
9979 && (geo->chunksize != info.array.chunk_size))
9980 change = CH_MIGRATION;
9981 else
9982 geo->chunksize = info.array.chunk_size;
9983
9984 chunk = geo->chunksize / 1024;
9985
9986 super = st->sb;
9987 dev = get_imsm_dev(super, super->current_vol);
9988 data_disks = imsm_num_data_members(dev , MAP_0);
9989 /* compute current size per disk member
9990 */
9991 current_size = info.custom_array_size / data_disks;
9992
9993 if (geo->size > 0) {
9994 /* align component size
9995 */
9996 geo->size = imsm_component_size_aligment_check(
9997 get_imsm_raid_level(dev->vol.map),
9998 chunk * 1024,
9999 geo->size * 2);
10000 }
10001
10002 if ((current_size != geo->size) && (geo->size >= 0)) {
10003 if (change != -1) {
10004 fprintf(stderr,
10005 Name " Error. Size change should be the only "
10006 "one at a time.\n");
10007 change = -1;
10008 goto analyse_change_exit;
10009 }
10010 if ((super->current_vol + 1) != super->anchor->num_raid_devs) {
10011 fprintf(stderr,
10012 Name " Error. The last volume in container "
10013 "can be expanded only (%i/%i).\n",
10014 super->current_vol, st->devnum);
10015 goto analyse_change_exit;
10016 }
10017 if (geo->size == 0) {
10018 /* requested size change to the maximum available size
10019 */
10020 unsigned long long freesize;
10021 int rv;
10022
10023 rv = imsm_get_free_size(st, dev->vol.map->num_members,
10024 0, chunk, &freesize);
10025 if (rv == 0) {
10026 fprintf(stderr, Name " Error. Cannot find "
10027 "maximum available space.\n");
10028 change = -1;
10029 goto analyse_change_exit;
10030 }
10031 geo->size = freesize + current_size;
10032
10033 /* align component size
10034 */
10035 geo->size = imsm_component_size_aligment_check(
10036 get_imsm_raid_level(dev->vol.map),
10037 chunk * 1024,
10038 geo->size);
10039 }
10040
10041 if ((direction == ROLLBACK_METADATA_CHANGES)) {
10042 /* accept size for rollback only
10043 */
10044 } else {
10045 /* round size due to metadata compatibility
10046 */
10047 geo->size = (geo->size >> SECT_PER_MB_SHIFT)
10048 << SECT_PER_MB_SHIFT;
10049 dprintf("Prepare update for size change to %llu\n",
10050 geo->size );
10051 if (current_size >= geo->size) {
10052 fprintf(stderr,
10053 Name " Error. Size expanssion is "
10054 "supported only (current size is %llu, "
10055 "requested size /rounded/ is %llu).\n",
10056 current_size, geo->size);
10057 goto analyse_change_exit;
10058 }
10059 }
10060 geo->size *= data_disks;
10061 geo->raid_disks = dev->vol.map->num_members;
10062 change = CH_ARRAY_SIZE;
10063 }
10064 if (!validate_geometry_imsm(st,
10065 geo->level,
10066 imsm_layout,
10067 geo->raid_disks + devNumChange,
10068 &chunk,
10069 geo->size,
10070 0, 0, 1))
10071 change = -1;
10072
10073 if (check_devs) {
10074 struct intel_super *super = st->sb;
10075 struct imsm_super *mpb = super->anchor;
10076
10077 if (mpb->num_raid_devs > 1) {
10078 fprintf(stderr,
10079 Name " Error. Cannot perform operation on %s"
10080 "- for this operation it MUST be single "
10081 "array in container\n",
10082 geo->dev_name);
10083 change = -1;
10084 }
10085 }
10086
10087 analyse_change_exit:
10088 if ((direction == ROLLBACK_METADATA_CHANGES) &&
10089 ((change == CH_MIGRATION) || (change == CH_TAKEOVER))) {
10090 dprintf("imsm: Metadata changes rollback is not supported for "
10091 "migration and takeover operations.\n");
10092 change = -1;
10093 }
10094 return change;
10095 }
10096
10097 int imsm_takeover(struct supertype *st, struct geo_params *geo)
10098 {
10099 struct intel_super *super = st->sb;
10100 struct imsm_update_takeover *u;
10101
10102 u = malloc(sizeof(struct imsm_update_takeover));
10103 if (u == NULL)
10104 return 1;
10105
10106 u->type = update_takeover;
10107 u->subarray = super->current_vol;
10108
10109 /* 10->0 transition */
10110 if (geo->level == 0)
10111 u->direction = R10_TO_R0;
10112
10113 /* 0->10 transition */
10114 if (geo->level == 10)
10115 u->direction = R0_TO_R10;
10116
10117 /* update metadata locally */
10118 imsm_update_metadata_locally(st, u,
10119 sizeof(struct imsm_update_takeover));
10120 /* and possibly remotely */
10121 if (st->update_tail)
10122 append_metadata_update(st, u,
10123 sizeof(struct imsm_update_takeover));
10124 else
10125 free(u);
10126
10127 return 0;
10128 }
10129
10130 static int imsm_reshape_super(struct supertype *st, long long size, int level,
10131 int layout, int chunksize, int raid_disks,
10132 int delta_disks, char *backup, char *dev,
10133 int direction, int verbose)
10134 {
10135 int ret_val = 1;
10136 struct geo_params geo;
10137
10138 dprintf("imsm: reshape_super called.\n");
10139
10140 memset(&geo, 0, sizeof(struct geo_params));
10141
10142 geo.dev_name = dev;
10143 geo.dev_id = st->devnum;
10144 geo.size = size;
10145 geo.level = level;
10146 geo.layout = layout;
10147 geo.chunksize = chunksize;
10148 geo.raid_disks = raid_disks;
10149 if (delta_disks != UnSet)
10150 geo.raid_disks += delta_disks;
10151
10152 dprintf("\tfor level : %i\n", geo.level);
10153 dprintf("\tfor raid_disks : %i\n", geo.raid_disks);
10154
10155 if (experimental() == 0)
10156 return ret_val;
10157
10158 if (st->container_dev == st->devnum) {
10159 /* On container level we can only increase number of devices. */
10160 dprintf("imsm: info: Container operation\n");
10161 int old_raid_disks = 0;
10162
10163 if (imsm_reshape_is_allowed_on_container(
10164 st, &geo, &old_raid_disks, direction)) {
10165 struct imsm_update_reshape *u = NULL;
10166 int len;
10167
10168 len = imsm_create_metadata_update_for_reshape(
10169 st, &geo, old_raid_disks, &u);
10170
10171 if (len <= 0) {
10172 dprintf("imsm: Cannot prepare update\n");
10173 goto exit_imsm_reshape_super;
10174 }
10175
10176 ret_val = 0;
10177 /* update metadata locally */
10178 imsm_update_metadata_locally(st, u, len);
10179 /* and possibly remotely */
10180 if (st->update_tail)
10181 append_metadata_update(st, u, len);
10182 else
10183 free(u);
10184
10185 } else {
10186 fprintf(stderr, Name ": (imsm) Operation "
10187 "is not allowed on this container\n");
10188 }
10189 } else {
10190 /* On volume level we support following operations
10191 * - takeover: raid10 -> raid0; raid0 -> raid10
10192 * - chunk size migration
10193 * - migration: raid5 -> raid0; raid0 -> raid5
10194 */
10195 struct intel_super *super = st->sb;
10196 struct intel_dev *dev = super->devlist;
10197 int change, devnum;
10198 dprintf("imsm: info: Volume operation\n");
10199 /* find requested device */
10200 while (dev) {
10201 if (imsm_find_array_minor_by_subdev(
10202 dev->index, st->container_dev, &devnum) == 0
10203 && devnum == geo.dev_id)
10204 break;
10205 dev = dev->next;
10206 }
10207 if (dev == NULL) {
10208 fprintf(stderr, Name " Cannot find %s (%i) subarray\n",
10209 geo.dev_name, geo.dev_id);
10210 goto exit_imsm_reshape_super;
10211 }
10212 super->current_vol = dev->index;
10213 change = imsm_analyze_change(st, &geo, direction);
10214 switch (change) {
10215 case CH_TAKEOVER:
10216 ret_val = imsm_takeover(st, &geo);
10217 break;
10218 case CH_MIGRATION: {
10219 struct imsm_update_reshape_migration *u = NULL;
10220 int len =
10221 imsm_create_metadata_update_for_migration(
10222 st, &geo, &u);
10223 if (len < 1) {
10224 dprintf("imsm: "
10225 "Cannot prepare update\n");
10226 break;
10227 }
10228 ret_val = 0;
10229 /* update metadata locally */
10230 imsm_update_metadata_locally(st, u, len);
10231 /* and possibly remotely */
10232 if (st->update_tail)
10233 append_metadata_update(st, u, len);
10234 else
10235 free(u);
10236 }
10237 break;
10238 case CH_ARRAY_SIZE: {
10239 struct imsm_update_size_change *u = NULL;
10240 int len =
10241 imsm_create_metadata_update_for_size_change(
10242 st, &geo, &u);
10243 if (len < 1) {
10244 dprintf("imsm: "
10245 "Cannot prepare update\n");
10246 break;
10247 }
10248 ret_val = 0;
10249 /* update metadata locally */
10250 imsm_update_metadata_locally(st, u, len);
10251 /* and possibly remotely */
10252 if (st->update_tail)
10253 append_metadata_update(st, u, len);
10254 else
10255 free(u);
10256 }
10257 break;
10258 default:
10259 ret_val = 1;
10260 }
10261 }
10262
10263 exit_imsm_reshape_super:
10264 dprintf("imsm: reshape_super Exit code = %i\n", ret_val);
10265 return ret_val;
10266 }
10267
10268 /*******************************************************************************
10269 * Function: wait_for_reshape_imsm
10270 * Description: Function writes new sync_max value and waits until
10271 * reshape process reach new position
10272 * Parameters:
10273 * sra : general array info
10274 * ndata : number of disks in new array's layout
10275 * Returns:
10276 * 0 : success,
10277 * 1 : there is no reshape in progress,
10278 * -1 : fail
10279 ******************************************************************************/
10280 int wait_for_reshape_imsm(struct mdinfo *sra, int ndata)
10281 {
10282 int fd = sysfs_get_fd(sra, NULL, "reshape_position");
10283 unsigned long long completed;
10284 /* to_complete : new sync_max position */
10285 unsigned long long to_complete = sra->reshape_progress;
10286 unsigned long long position_to_set = to_complete / ndata;
10287
10288 if (fd < 0) {
10289 dprintf("imsm: wait_for_reshape_imsm() "
10290 "cannot open reshape_position\n");
10291 return 1;
10292 }
10293
10294 if (sysfs_fd_get_ll(fd, &completed) < 0) {
10295 dprintf("imsm: wait_for_reshape_imsm() "
10296 "cannot read reshape_position (no reshape in progres)\n");
10297 close(fd);
10298 return 0;
10299 }
10300
10301 if (completed > to_complete) {
10302 dprintf("imsm: wait_for_reshape_imsm() "
10303 "wrong next position to set %llu (%llu)\n",
10304 to_complete, completed);
10305 close(fd);
10306 return -1;
10307 }
10308 dprintf("Position set: %llu\n", position_to_set);
10309 if (sysfs_set_num(sra, NULL, "sync_max",
10310 position_to_set) != 0) {
10311 dprintf("imsm: wait_for_reshape_imsm() "
10312 "cannot set reshape position to %llu\n",
10313 position_to_set);
10314 close(fd);
10315 return -1;
10316 }
10317
10318 do {
10319 char action[20];
10320 fd_set rfds;
10321 FD_ZERO(&rfds);
10322 FD_SET(fd, &rfds);
10323 select(fd+1, &rfds, NULL, NULL, NULL);
10324 if (sysfs_get_str(sra, NULL, "sync_action",
10325 action, 20) > 0 &&
10326 strncmp(action, "reshape", 7) != 0)
10327 break;
10328 if (sysfs_fd_get_ll(fd, &completed) < 0) {
10329 dprintf("imsm: wait_for_reshape_imsm() "
10330 "cannot read reshape_position (in loop)\n");
10331 close(fd);
10332 return 1;
10333 }
10334 } while (completed < to_complete);
10335 close(fd);
10336 return 0;
10337
10338 }
10339
10340 /*******************************************************************************
10341 * Function: check_degradation_change
10342 * Description: Check that array hasn't become failed.
10343 * Parameters:
10344 * info : for sysfs access
10345 * sources : source disks descriptors
10346 * degraded: previous degradation level
10347 * Returns:
10348 * degradation level
10349 ******************************************************************************/
10350 int check_degradation_change(struct mdinfo *info,
10351 int *sources,
10352 int degraded)
10353 {
10354 unsigned long long new_degraded;
10355 sysfs_get_ll(info, NULL, "degraded", &new_degraded);
10356 if (new_degraded != (unsigned long long)degraded) {
10357 /* check each device to ensure it is still working */
10358 struct mdinfo *sd;
10359 new_degraded = 0;
10360 for (sd = info->devs ; sd ; sd = sd->next) {
10361 if (sd->disk.state & (1<<MD_DISK_FAULTY))
10362 continue;
10363 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
10364 char sbuf[20];
10365 if (sysfs_get_str(info,
10366 sd, "state", sbuf, 20) < 0 ||
10367 strstr(sbuf, "faulty") ||
10368 strstr(sbuf, "in_sync") == NULL) {
10369 /* this device is dead */
10370 sd->disk.state = (1<<MD_DISK_FAULTY);
10371 if (sd->disk.raid_disk >= 0 &&
10372 sources[sd->disk.raid_disk] >= 0) {
10373 close(sources[
10374 sd->disk.raid_disk]);
10375 sources[sd->disk.raid_disk] =
10376 -1;
10377 }
10378 new_degraded++;
10379 }
10380 }
10381 }
10382 }
10383
10384 return new_degraded;
10385 }
10386
10387 /*******************************************************************************
10388 * Function: imsm_manage_reshape
10389 * Description: Function finds array under reshape and it manages reshape
10390 * process. It creates stripes backups (if required) and sets
10391 * checheckpoits.
10392 * Parameters:
10393 * afd : Backup handle (nattive) - not used
10394 * sra : general array info
10395 * reshape : reshape parameters - not used
10396 * st : supertype structure
10397 * blocks : size of critical section [blocks]
10398 * fds : table of source device descriptor
10399 * offsets : start of array (offest per devices)
10400 * dests : not used
10401 * destfd : table of destination device descriptor
10402 * destoffsets : table of destination offsets (per device)
10403 * Returns:
10404 * 1 : success, reshape is done
10405 * 0 : fail
10406 ******************************************************************************/
10407 static int imsm_manage_reshape(
10408 int afd, struct mdinfo *sra, struct reshape *reshape,
10409 struct supertype *st, unsigned long backup_blocks,
10410 int *fds, unsigned long long *offsets,
10411 int dests, int *destfd, unsigned long long *destoffsets)
10412 {
10413 int ret_val = 0;
10414 struct intel_super *super = st->sb;
10415 struct intel_dev *dv = NULL;
10416 struct imsm_dev *dev = NULL;
10417 struct imsm_map *map_src;
10418 int migr_vol_qan = 0;
10419 int ndata, odata; /* [bytes] */
10420 int chunk; /* [bytes] */
10421 struct migr_record *migr_rec;
10422 char *buf = NULL;
10423 unsigned int buf_size; /* [bytes] */
10424 unsigned long long max_position; /* array size [bytes] */
10425 unsigned long long next_step; /* [blocks]/[bytes] */
10426 unsigned long long old_data_stripe_length;
10427 unsigned long long start_src; /* [bytes] */
10428 unsigned long long start; /* [bytes] */
10429 unsigned long long start_buf_shift; /* [bytes] */
10430 int degraded = 0;
10431 int source_layout = 0;
10432
10433 if (!fds || !offsets || !sra)
10434 goto abort;
10435
10436 /* Find volume during the reshape */
10437 for (dv = super->devlist; dv; dv = dv->next) {
10438 if (dv->dev->vol.migr_type == MIGR_GEN_MIGR
10439 && dv->dev->vol.migr_state == 1) {
10440 dev = dv->dev;
10441 migr_vol_qan++;
10442 }
10443 }
10444 /* Only one volume can migrate at the same time */
10445 if (migr_vol_qan != 1) {
10446 fprintf(stderr, Name " : %s", migr_vol_qan ?
10447 "Number of migrating volumes greater than 1\n" :
10448 "There is no volume during migrationg\n");
10449 goto abort;
10450 }
10451
10452 map_src = get_imsm_map(dev, MAP_1);
10453 if (map_src == NULL)
10454 goto abort;
10455
10456 ndata = imsm_num_data_members(dev, MAP_0);
10457 odata = imsm_num_data_members(dev, MAP_1);
10458
10459 chunk = __le16_to_cpu(map_src->blocks_per_strip) * 512;
10460 old_data_stripe_length = odata * chunk;
10461
10462 migr_rec = super->migr_rec;
10463
10464 /* initialize migration record for start condition */
10465 if (sra->reshape_progress == 0)
10466 init_migr_record_imsm(st, dev, sra);
10467 else {
10468 if (__le32_to_cpu(migr_rec->rec_status) != UNIT_SRC_NORMAL) {
10469 dprintf("imsm: cannot restart migration when data "
10470 "are present in copy area.\n");
10471 goto abort;
10472 }
10473 /* Save checkpoint to update migration record for current
10474 * reshape position (in md). It can be farther than current
10475 * reshape position in metadata.
10476 */
10477 if (save_checkpoint_imsm(st, sra, UNIT_SRC_NORMAL) == 1) {
10478 /* ignore error == 2, this can mean end of reshape here
10479 */
10480 dprintf("imsm: Cannot write checkpoint to "
10481 "migration record (UNIT_SRC_NORMAL, "
10482 "initial save)\n");
10483 goto abort;
10484 }
10485 }
10486
10487 /* size for data */
10488 buf_size = __le32_to_cpu(migr_rec->blocks_per_unit) * 512;
10489 /* extend buffer size for parity disk */
10490 buf_size += __le32_to_cpu(migr_rec->dest_depth_per_unit) * 512;
10491 /* add space for stripe aligment */
10492 buf_size += old_data_stripe_length;
10493 if (posix_memalign((void **)&buf, 4096, buf_size)) {
10494 dprintf("imsm: Cannot allocate checpoint buffer\n");
10495 goto abort;
10496 }
10497
10498 max_position = sra->component_size * ndata;
10499 source_layout = imsm_level_to_layout(map_src->raid_level);
10500
10501 while (__le32_to_cpu(migr_rec->curr_migr_unit) <
10502 __le32_to_cpu(migr_rec->num_migr_units)) {
10503 /* current reshape position [blocks] */
10504 unsigned long long current_position =
10505 __le32_to_cpu(migr_rec->blocks_per_unit)
10506 * __le32_to_cpu(migr_rec->curr_migr_unit);
10507 unsigned long long border;
10508
10509 /* Check that array hasn't become failed.
10510 */
10511 degraded = check_degradation_change(sra, fds, degraded);
10512 if (degraded > 1) {
10513 dprintf("imsm: Abort reshape due to degradation"
10514 " level (%i)\n", degraded);
10515 goto abort;
10516 }
10517
10518 next_step = __le32_to_cpu(migr_rec->blocks_per_unit);
10519
10520 if ((current_position + next_step) > max_position)
10521 next_step = max_position - current_position;
10522
10523 start = current_position * 512;
10524
10525 /* allign reading start to old geometry */
10526 start_buf_shift = start % old_data_stripe_length;
10527 start_src = start - start_buf_shift;
10528
10529 border = (start_src / odata) - (start / ndata);
10530 border /= 512;
10531 if (border <= __le32_to_cpu(migr_rec->dest_depth_per_unit)) {
10532 /* save critical stripes to buf
10533 * start - start address of current unit
10534 * to backup [bytes]
10535 * start_src - start address of current unit
10536 * to backup alligned to source array
10537 * [bytes]
10538 */
10539 unsigned long long next_step_filler = 0;
10540 unsigned long long copy_length = next_step * 512;
10541
10542 /* allign copy area length to stripe in old geometry */
10543 next_step_filler = ((copy_length + start_buf_shift)
10544 % old_data_stripe_length);
10545 if (next_step_filler)
10546 next_step_filler = (old_data_stripe_length
10547 - next_step_filler);
10548 dprintf("save_stripes() parameters: start = %llu,"
10549 "\tstart_src = %llu,\tnext_step*512 = %llu,"
10550 "\tstart_in_buf_shift = %llu,"
10551 "\tnext_step_filler = %llu\n",
10552 start, start_src, copy_length,
10553 start_buf_shift, next_step_filler);
10554
10555 if (save_stripes(fds, offsets, map_src->num_members,
10556 chunk, map_src->raid_level,
10557 source_layout, 0, NULL, start_src,
10558 copy_length +
10559 next_step_filler + start_buf_shift,
10560 buf)) {
10561 dprintf("imsm: Cannot save stripes"
10562 " to buffer\n");
10563 goto abort;
10564 }
10565 /* Convert data to destination format and store it
10566 * in backup general migration area
10567 */
10568 if (save_backup_imsm(st, dev, sra,
10569 buf + start_buf_shift, copy_length)) {
10570 dprintf("imsm: Cannot save stripes to "
10571 "target devices\n");
10572 goto abort;
10573 }
10574 if (save_checkpoint_imsm(st, sra,
10575 UNIT_SRC_IN_CP_AREA)) {
10576 dprintf("imsm: Cannot write checkpoint to "
10577 "migration record (UNIT_SRC_IN_CP_AREA)\n");
10578 goto abort;
10579 }
10580 } else {
10581 /* set next step to use whole border area */
10582 border /= next_step;
10583 if (border > 1)
10584 next_step *= border;
10585 }
10586 /* When data backed up, checkpoint stored,
10587 * kick the kernel to reshape unit of data
10588 */
10589 next_step = next_step + sra->reshape_progress;
10590 /* limit next step to array max position */
10591 if (next_step > max_position)
10592 next_step = max_position;
10593 sysfs_set_num(sra, NULL, "suspend_lo", sra->reshape_progress);
10594 sysfs_set_num(sra, NULL, "suspend_hi", next_step);
10595 sra->reshape_progress = next_step;
10596
10597 /* wait until reshape finish */
10598 if (wait_for_reshape_imsm(sra, ndata) < 0) {
10599 dprintf("wait_for_reshape_imsm returned error!\n");
10600 goto abort;
10601 }
10602
10603 if (save_checkpoint_imsm(st, sra, UNIT_SRC_NORMAL) == 1) {
10604 /* ignore error == 2, this can mean end of reshape here
10605 */
10606 dprintf("imsm: Cannot write checkpoint to "
10607 "migration record (UNIT_SRC_NORMAL)\n");
10608 goto abort;
10609 }
10610
10611 }
10612
10613 /* return '1' if done */
10614 ret_val = 1;
10615 abort:
10616 free(buf);
10617 abort_reshape(sra);
10618
10619 return ret_val;
10620 }
10621 #endif /* MDASSEMBLE */
10622
10623 struct superswitch super_imsm = {
10624 #ifndef MDASSEMBLE
10625 .examine_super = examine_super_imsm,
10626 .brief_examine_super = brief_examine_super_imsm,
10627 .brief_examine_subarrays = brief_examine_subarrays_imsm,
10628 .export_examine_super = export_examine_super_imsm,
10629 .detail_super = detail_super_imsm,
10630 .brief_detail_super = brief_detail_super_imsm,
10631 .write_init_super = write_init_super_imsm,
10632 .validate_geometry = validate_geometry_imsm,
10633 .add_to_super = add_to_super_imsm,
10634 .remove_from_super = remove_from_super_imsm,
10635 .detail_platform = detail_platform_imsm,
10636 .kill_subarray = kill_subarray_imsm,
10637 .update_subarray = update_subarray_imsm,
10638 .load_container = load_container_imsm,
10639 .default_geometry = default_geometry_imsm,
10640 .get_disk_controller_domain = imsm_get_disk_controller_domain,
10641 .reshape_super = imsm_reshape_super,
10642 .manage_reshape = imsm_manage_reshape,
10643 .recover_backup = recover_backup_imsm,
10644 #endif
10645 .match_home = match_home_imsm,
10646 .uuid_from_super= uuid_from_super_imsm,
10647 .getinfo_super = getinfo_super_imsm,
10648 .getinfo_super_disks = getinfo_super_disks_imsm,
10649 .update_super = update_super_imsm,
10650
10651 .avail_size = avail_size_imsm,
10652 .min_acceptable_spare_size = min_acceptable_spare_size_imsm,
10653
10654 .compare_super = compare_super_imsm,
10655
10656 .load_super = load_super_imsm,
10657 .init_super = init_super_imsm,
10658 .store_super = store_super_imsm,
10659 .free_super = free_super_imsm,
10660 .match_metadata_desc = match_metadata_desc_imsm,
10661 .container_content = container_content_imsm,
10662
10663
10664 .external = 1,
10665 .name = "imsm",
10666
10667 #ifndef MDASSEMBLE
10668 /* for mdmon */
10669 .open_new = imsm_open_new,
10670 .set_array_state= imsm_set_array_state,
10671 .set_disk = imsm_set_disk,
10672 .sync_metadata = imsm_sync_metadata,
10673 .activate_spare = imsm_activate_spare,
10674 .process_update = imsm_process_update,
10675 .prepare_update = imsm_prepare_update,
10676 #endif /* MDASSEMBLE */
10677 };