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