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