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