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