]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
Just updaqte copyright dates and email address
[thirdparty/mdadm.git] / Grow.c
CommitLineData
e5329c37
NB
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4f589ad0 4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
e5329c37
NB
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 */
29#include "mdadm.h"
30#include "dlink.h"
31
32#if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
33#error no endian defined
34#endif
35#include "md_u.h"
36#include "md_p.h"
37
38int Grow_Add_device(char *devname, int fd, char *newdev)
39{
40 /* Add a device to an active array.
41 * Currently, just extend a linear array.
42 * This requires writing a new superblock on the
43 * new device, calling the kernel to add the device,
44 * and if that succeeds, update the superblock on
45 * all other devices.
46 * This means that we need to *find* all other devices.
47 */
4b1ac34b
NB
48 struct mdinfo info;
49
50 void *super = NULL;
e5329c37
NB
51 struct stat stb;
52 int nfd, fd2;
53 int d, nd;
82d9eba6 54 struct supertype *st = NULL;
e5329c37
NB
55
56
4b1ac34b 57 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
e5329c37
NB
58 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
59 return 1;
60 }
61
82d9eba6
NB
62 st = super_by_version(info.array.major_version, info.array.minor_version);
63 if (!st) {
f9ce90ba
NB
64 fprintf(stderr, Name ": cannot handle arrays with superblock version %d\n", info.array.major_version);
65 return 1;
66 }
67
4b1ac34b 68 if (info.array.level != -1) {
e5329c37
NB
69 fprintf(stderr, Name ": can only add devices to linear arrays\n");
70 return 1;
71 }
72
73 nfd = open(newdev, O_RDWR|O_EXCL);
74 if (nfd < 0) {
75 fprintf(stderr, Name ": cannot open %s\n", newdev);
76 return 1;
77 }
78 fstat(nfd, &stb);
79 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
80 fprintf(stderr, Name ": %s is not a block device!\n", newdev);
81 close(nfd);
82 return 1;
83 }
84 /* now check out all the devices and make sure we can read the superblock */
4b1ac34b 85 for (d=0 ; d < info.array.raid_disks ; d++) {
e5329c37
NB
86 mdu_disk_info_t disk;
87 char *dv;
88
89 disk.number = d;
90 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
91 fprintf(stderr, Name ": cannot get device detail for device %d\n",
92 d);
93 return 1;
94 }
16c6fa80 95 dv = map_dev(disk.major, disk.minor, 1);
e5329c37
NB
96 if (!dv) {
97 fprintf(stderr, Name ": cannot find device file for device %d\n",
98 d);
99 return 1;
100 }
16c6fa80 101 fd2 = dev_open(dv, O_RDWR);
e5329c37
NB
102 if (!fd2) {
103 fprintf(stderr, Name ": cannot open device file %s\n", dv);
104 return 1;
105 }
4b1ac34b
NB
106 if (super) free(super);
107 super= NULL;
82d9eba6 108 if (st->ss->load_super(st, fd2, &super, NULL)) {
e5329c37
NB
109 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
110 close(fd2);
111 return 1;
112 }
113 close(fd2);
114 }
115 /* Ok, looks good. Lets update the superblock and write it out to
116 * newdev.
117 */
118
4b1ac34b
NB
119 info.disk.number = d;
120 info.disk.major = major(stb.st_rdev);
121 info.disk.minor = minor(stb.st_rdev);
122 info.disk.raid_disk = d;
123 info.disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
82d9eba6 124 st->ss->update_super(&info, super, "grow", newdev, 0);
e5329c37 125
96395475 126 if (st->ss->store_super(st, nfd, super)) {
e5329c37
NB
127 fprintf(stderr, Name ": Cannot store new superblock on %s\n", newdev);
128 close(nfd);
129 return 1;
130 }
e5329c37 131 close(nfd);
4b1ac34b
NB
132
133 if (ioctl(fd, ADD_NEW_DISK, &info.disk) != 0) {
e5329c37
NB
134 fprintf(stderr, Name ": Cannot add new disk to this array\n");
135 return 1;
136 }
137 /* Well, that seems to have worked.
138 * Now go through and update all superblocks
139 */
140
4b1ac34b 141 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
e5329c37
NB
142 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
143 return 1;
144 }
145
146 nd = d;
4b1ac34b 147 for (d=0 ; d < info.array.raid_disks ; d++) {
e5329c37
NB
148 mdu_disk_info_t disk;
149 char *dv;
150
151 disk.number = d;
152 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
153 fprintf(stderr, Name ": cannot get device detail for device %d\n",
154 d);
155 return 1;
156 }
16c6fa80 157 dv = map_dev(disk.major, disk.minor, 1);
e5329c37
NB
158 if (!dv) {
159 fprintf(stderr, Name ": cannot find device file for device %d\n",
160 d);
161 return 1;
162 }
16c6fa80 163 fd2 = dev_open(dv, O_RDWR);
e5329c37
NB
164 if (fd2 < 0) {
165 fprintf(stderr, Name ": cannot open device file %s\n", dv);
166 return 1;
167 }
82d9eba6 168 if (st->ss->load_super(st, fd2, &super, NULL)) {
e5329c37
NB
169 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
170 close(fd);
171 return 1;
172 }
4b1ac34b
NB
173 info.array.raid_disks = nd+1;
174 info.array.nr_disks = nd+1;
175 info.array.active_disks = nd+1;
176 info.array.working_disks = nd+1;
177 info.disk.number = nd;
178 info.disk.major = major(stb.st_rdev);
179 info.disk.minor = minor(stb.st_rdev);
180 info.disk.raid_disk = nd;
181 info.disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
82d9eba6 182 st->ss->update_super(&info, super, "grow", dv, 0);
4b1ac34b 183
96395475 184 if (st->ss->store_super(st, fd2, super)) {
e5329c37
NB
185 fprintf(stderr, Name ": Cannot store new superblock on %s\n", dv);
186 close(fd2);
187 return 1;
188 }
189 close(fd2);
190 }
191
192 return 0;
193}
f5e166fe 194
8fac0577 195int Grow_addbitmap(char *devname, int fd, char *file, int chunk, int delay, int write_behind, int force)
f5e166fe
NB
196{
197 /*
198 * First check that array doesn't have a bitmap
199 * Then create the bitmap
200 * Then add it
201 *
202 * For internal bitmaps, we need to check the version,
203 * find all the active devices, and write the bitmap block
204 * to all devices
205 */
206 mdu_bitmap_file_t bmf;
207 mdu_array_info_t array;
208 struct supertype *st;
dcec9ee5
NB
209 int major = BITMAP_MAJOR_HI;
210 int vers = md_get_version(fd);
8fac0577 211 unsigned long long bitmapsize, array_size;
dcec9ee5
NB
212
213 if (vers < 9003) {
214 major = BITMAP_MAJOR_HOSTENDIAN;
215#ifdef __BIG_ENDIAN
216 fprintf(stderr, Name ": Warning - bitmaps created on this kernel are not portable\n"
217 " between different architectured. Consider upgrading the Linux kernel.\n");
218#endif
219 }
f5e166fe
NB
220
221 if (ioctl(fd, GET_BITMAP_FILE, &bmf) != 0) {
353632d9 222 if (errno == ENOMEM)
f5e166fe
NB
223 fprintf(stderr, Name ": Memory allocation failure.\n");
224 else
225 fprintf(stderr, Name ": bitmaps not supported by this kernel.\n");
226 return 1;
227 }
228 if (bmf.pathname[0]) {
fe80f49b
NB
229 if (strcmp(file,"none")==0) {
230 if (ioctl(fd, SET_BITMAP_FILE, -1)!= 0) {
231 fprintf(stderr, Name ": failed to remove bitmap %s\n",
232 bmf.pathname);
233 return 1;
234 }
235 return 0;
236 }
f5e166fe
NB
237 fprintf(stderr, Name ": %s already has a bitmap (%s)\n",
238 devname, bmf.pathname);
239 return 1;
240 }
241 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
242 fprintf(stderr, Name ": cannot get array status for %s\n", devname);
243 return 1;
244 }
245 if (array.state & (1<<MD_SB_BITMAP_PRESENT)) {
fe80f49b
NB
246 if (strcmp(file, "none")==0) {
247 array.state &= ~(1<<MD_SB_BITMAP_PRESENT);
248 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
249 fprintf(stderr, Name ": failed to remove internal bitmap.\n");
250 return 1;
251 }
252 return 0;
253 }
f5e166fe
NB
254 fprintf(stderr, Name ": Internal bitmap already present on %s\n",
255 devname);
256 return 1;
257 }
8fac0577
NB
258 bitmapsize = array.size;
259 bitmapsize <<= 1;
260#ifdef BLKGETSIZE64
261 if (ioctl(fd, BLKGETSIZE64, &array_size) == 0 &&
262 array_size > (0x7fffffffULL<<9)) {
263 /* Array is big enough that we cannot trust array.size
264 * try other approaches
265 */
266 bitmapsize = get_component_size(fd);
267 }
268#endif
269 if (bitmapsize == 0) {
270 fprintf(stderr, Name ": Cannot reliably determine size of array to create bitmap - sorry.\n");
271 return 1;
272 }
273
f9c25f1d 274 if (array.level == 10) {
8686f3ed 275 int ncopies = (array.layout&255)*((array.layout>>8)&255);
f9c25f1d
NB
276 bitmapsize = bitmapsize * array.raid_disks / ncopies;
277 }
278
f5e166fe
NB
279 st = super_by_version(array.major_version, array.minor_version);
280 if (!st) {
281 fprintf(stderr, Name ": Cannot understand version %d.%d\n",
282 array.major_version, array.minor_version);
283 return 1;
284 }
fe80f49b
NB
285 if (strcmp(file, "none") == 0) {
286 fprintf(stderr, Name ": no bitmap found on %s\n", devname);
287 return 1;
288 } else if (strcmp(file, "internal") == 0) {
f5e166fe 289 int d;
ea329559 290 for (d=0; d< st->max_devs; d++) {
f5e166fe
NB
291 mdu_disk_info_t disk;
292 char *dv;
293 disk.number = d;
294 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
295 continue;
296 if (disk.major == 0 &&
297 disk.minor == 0)
298 continue;
299 if ((disk.state & (1<<MD_DISK_SYNC))==0)
300 continue;
16c6fa80 301 dv = map_dev(disk.major, disk.minor, 1);
f5e166fe
NB
302 if (dv) {
303 void *super;
16c6fa80 304 int fd2 = dev_open(dv, O_RDWR);
f5e166fe
NB
305 if (fd2 < 0)
306 continue;
307 if (st->ss->load_super(st, fd2, &super, NULL)==0) {
21e92547 308 if (st->ss->add_internal_bitmap(st, super,
e86c9dd6 309 chunk, delay, write_behind,
21e92547
NB
310 bitmapsize, 0, major))
311 st->ss->write_bitmap(st, fd2, super);
312 else {
313 fprintf(stderr, Name ": failed to create internal bitmap - chunksize problem.\n");
314 close(fd2);
315 return 1;
316 }
f5e166fe
NB
317 }
318 close(fd2);
319 }
320 }
321 array.state |= (1<<MD_SB_BITMAP_PRESENT);
322 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
323 fprintf(stderr, Name ": failed to set internal bitmap.\n");
324 return 1;
325 }
fe80f49b
NB
326 } else {
327 int uuid[4];
328 int bitmap_fd;
329 int d;
330 int max_devs = st->max_devs;
331 void *super = NULL;
fe80f49b
NB
332
333 /* try to load a superblock */
334 for (d=0; d<max_devs; d++) {
335 mdu_disk_info_t disk;
336 char *dv;
337 int fd2;
338 disk.number = d;
339 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
340 continue;
341 if ((disk.major==0 && disk.minor==0) ||
342 (disk.state & (1<<MD_DISK_REMOVED)))
343 continue;
16c6fa80 344 dv = map_dev(disk.major, disk.minor, 1);
fe80f49b 345 if (!dv) continue;
16c6fa80 346 fd2 = dev_open(dv, O_RDONLY);
fe80f49b
NB
347 if (fd2 >= 0 &&
348 st->ss->load_super(st, fd2, &super, NULL) == 0) {
349 close(fd2);
350 st->ss->uuid_from_super(uuid, super);
351 break;
352 }
353 close(fd2);
354 }
355 if (d == max_devs) {
356 fprintf(stderr, Name ": cannot find UUID for array!\n");
357 return 1;
358 }
8fac0577 359 if (CreateBitmap(file, force, (char*)uuid, chunk,
f9c25f1d 360 delay, write_behind, bitmapsize, major)) {
fe80f49b
NB
361 return 1;
362 }
363 bitmap_fd = open(file, O_RDWR);
364 if (bitmap_fd < 0) {
8fac0577 365 fprintf(stderr, Name ": weird: %s cannot be opened\n",
fe80f49b
NB
366 file);
367 return 1;
368 }
369 if (ioctl(fd, SET_BITMAP_FILE, bitmap_fd) < 0) {
370 fprintf(stderr, Name ": Cannot set bitmap file for %s: %s\n",
371 devname, strerror(errno));
372 return 1;
373 }
374 }
f5e166fe
NB
375
376 return 0;
377}
378
e86c9dd6
NB
379
380/*
381 * When reshaping an array we might need to backup some data.
382 * This is written to all spares with a 'super_block' describing it.
383 * The superblock goes 1K form the end of the used space on the
384 * device.
385 * It if written after the backup is complete.
386 * It has the following structure.
387 */
388
389struct mdp_backup_super {
390 char magic[16]; /* md_backup_data-1 */
391 __u8 set_uuid[16];
392 __u64 mtime;
393 /* start/sizes in 512byte sectors */
394 __u64 devstart;
395 __u64 arraystart;
396 __u64 length;
397 __u32 sb_csum; /* csum of preceeding bytes. */
398};
399
400int bsb_csum(char *buf, int len)
401{
402 int i;
403 int csum = 0;
404 for (i=0; i<len; i++)
405 csum = (csum<<3) + buf[0];
406 return __cpu_to_le32(csum);
407}
408
06b0d786 409int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
e86c9dd6
NB
410 long long size,
411 int level, int layout, int chunksize, int raid_disks)
412{
413 /* Make some changes in the shape of an array.
414 * The kernel must support the change.
415 * Different reshapes have subtly different meaning for different
416 * levels, so we need to check the current state of the array
417 * and go from there.
418 */
419 struct mdu_array_info_s array;
420 char *c;
421
422 struct mdp_backup_super bsb;
423 struct supertype *st;
424
425 int nlevel, olevel;
426 int nchunk, ochunk;
427 int nlayout, olayout;
428 int ndisks, odisks;
429 int ndata, odata;
430 unsigned long long nstripe, ostripe, last_block;
431 int *fdlist;
432 unsigned long long *offsets;
433 int d, i, spares;
434 int nrdisks;
435 int err;
436 void *super = NULL;
437
438 struct sysarray *sra;
439 struct sysdev *sd;
440
441 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
442 fprintf(stderr, Name ": %s is not an active md array - aborting\n",
443 devname);
444 return 1;
445 }
446 c = map_num(pers, array.level);
447 if (c == NULL) c = "-unknown-";
448 switch(array.level) {
449 default: /* raid0, linear, multipath cannot be reconfigured */
450 fprintf(stderr, Name ": %s array %s cannot be reshaped.\n",
451 c, devname);
452 return 1;
453
454 case LEVEL_FAULTY: /* only 'layout' change is permitted */
455
456 if (size >= 0) {
457 fprintf(stderr, Name ": %s: Cannot change size of a 'faulty' array\n",
458 devname);
459 return 1;
460 }
461 if (level != UnSet && level != LEVEL_FAULTY) {
462 fprintf(stderr, Name ": %s: Cannot change RAID level of a 'faulty' array\n",
463 devname);
464 return 1;
465 }
466 if (chunksize || raid_disks) {
467 fprintf(stderr, Name ": %s: Cannot change chunksize or disks of a 'faulty' array\n",
468 devname);
469 return 1;
470 }
471 if (layout == UnSet)
472 return 0; /* nothing to do.... */
473
474 array.layout = layout;
475 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
476 fprintf(stderr, Name ": Cannot set layout for %s: %s\n",
477 devname, strerror(errno));
478 return 1;
479 }
480 if (!quiet)
481 printf("layout for %s set to %d\n", devname, array.layout);
482 return 0;
483
484 case 1: /* raid_disks and size can each be changed. They are independant */
485
486 if (level != UnSet && level != 1) {
487 fprintf(stderr, Name ": %s: Cannot change RAID level of a RAID1 array.\n",
488 devname);
489 return 1;
490 }
491 if (chunksize || layout != UnSet) {
492 fprintf(stderr, Name ": %s: Cannot change chunk size of layout for a RAID1 array.\n",
493 devname);
494 return 1;
495 }
496
497 /* Each can trigger a resync/recovery which will block the
498 * other from happening. Later we could block
499 * resync for the duration via 'sync_action'...
500 */
9860f271 501 if (raid_disks > 0) {
e86c9dd6 502 array.raid_disks = raid_disks;
9860f271
NB
503 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
504 fprintf(stderr, Name ": Cannot set raid-devices for %s: %s\n",
505 devname, strerror(errno));
506 return 1;
507 }
508 }
509 if (size >= 0) {
e86c9dd6 510 array.size = size;
9860f271
NB
511 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
512 fprintf(stderr, Name ": Cannot set device size for %s: %s\n",
513 devname, strerror(errno));
514 return 1;
515 }
e86c9dd6
NB
516 }
517 return 0;
518
519 case 4:
520 case 5:
521 case 6:
522 st = super_by_version(array.major_version,
523 array.minor_version);
524 /* size can be changed independantly.
525 * layout/chunksize/raid_disks/level can be changed
526 * though the kernel may not support it all.
527 * If 'suspend_lo' is not present in devfs, then
528 * these cannot be changed.
529 */
530 if (size >= 0) {
531 /* Cannot change other details as well.. */
532 if (layout != UnSet ||
533 chunksize != 0 ||
534 raid_disks != 0 ||
535 level != UnSet) {
536 fprintf(stderr, Name ": %s: Cannot change shape as well as size of a %s array.\n",
537 devname, c);
538 return 1;
539 }
540 array.size = size;
541 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
542 fprintf(stderr, Name ": Cannot set device size/shape for %s: %s\n",
543 devname, strerror(errno));
544 return 1;
545 }
546 return 0;
547 }
548 /* Ok, just change the shape. This can be awkward.
549 * There are three possibilities.
550 * 1/ The array will shrink. We don't support this
551 * possibility. Maybe one day...
552 * 2/ The array will not change size. This is easy enough
553 * to do, but not reliably. If the process is aborted
554 * the array *will* be corrupted. So maybe we can allow
555 * this but only if the user is really certain. e.g.
556 * --really-risk-everything
557 * 3/ The array will grow. This can be reliably achieved.
558 * However the kernel's restripe routines will cheerfully
559 * overwrite some early data before it is safe. So we
560 * need to make a backup of the early parts of the array
561 * and be ready to restore it if rebuild aborts very early.
562 *
563 * We backup data by writing it to all spares (there must be
564 * at least 1, so even raid6->raid5 requires a spare to be
565 * present).
566 *
567 * So: we enumerate the devices in the array and
568 * make sure we can open all of them.
569 * Then we freeze the early part of the array and
570 * backup to the various spares.
571 * Then we request changes and start the reshape.
572 * Monitor progress until it has passed the danger zone.
573 * and finally invalidate the copied data and unfreeze the
574 * start of the array.
575 *
576 * Before we can do this we need to decide:
577 * - will the array grow? Just calculate size
578 * - how much needs to be saved: count stripes.
579 * - where to save data... good question.
580 *
581 */
582 nlevel = olevel = array.level;
583 nchunk = ochunk = array.chunk_size;
584 nlayout = olayout = array.layout;
585 ndisks = odisks = array.raid_disks;
586
587 if (level != UnSet) nlevel = level;
588 if (chunksize) nchunk = chunksize;
589 if (layout != UnSet) nlayout = layout;
590 if (raid_disks) ndisks = raid_disks;
591
592 odata = odisks-1;
593 if (olevel == 6) odata--; /* number of data disks */
594 ndata = ndisks-1;
595 if (nlevel == 6) ndata--;
596
597 if (ndata < odata) {
598 fprintf(stderr, Name ": %s: Cannot reduce number of data disks (yet).\n",
599 devname);
600 return 1;
601 }
602 if (ndata == odata) {
603 fprintf(stderr, Name ": %s: Cannot reshape array without increasing size (yet).\n",
604 devname);
605 return 1;
606 }
607 /* Well, it is growing... so how much do we need to backup.
608 * Need to backup a full number of new-stripes, such that the
609 * last one does not over-write any place that it would be read
610 * from
611 */
612 nstripe = ostripe = 0;
353632d9 613 while (nstripe >= ostripe) {
e86c9dd6
NB
614 nstripe += nchunk/512;
615 last_block = nstripe * ndata;
353632d9 616 ostripe = last_block / odata / (ochunk/512) * (ochunk/512);
e86c9dd6 617 }
353632d9 618 printf("mdadm: Need to backup %lluK of critical section..\n", last_block/2);
e86c9dd6
NB
619
620 sra = sysfs_read(fd, 0,
621 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE);
622 if (!sra) {
623 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
624 devname);
625 return 1;
626 }
627
628 if (last_block >= sra->component_size/2) {
629 fprintf(stderr, Name ": %s: Something wrong - reshape aborted\n",
630 devname);
631 return 1;
632 }
06b0d786
NB
633 if (sra->spares == 0 && backup_file == NULL) {
634 fprintf(stderr, Name ": %s: Cannot grow - need a spare or backup-file to backup critical section\n",
353632d9
NB
635 devname);
636 return 1;
637 }
e86c9dd6
NB
638
639 nrdisks = array.nr_disks + sra->spares;
640 /* Now we need to open all these devices so we can read/write.
641 */
06b0d786
NB
642 fdlist = malloc((1+nrdisks) * sizeof(int));
643 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
e86c9dd6
NB
644 if (!fdlist || !offsets) {
645 fprintf(stderr, Name ": malloc failed: grow aborted\n");
646 return 1;
647 }
06b0d786 648 for (d=0; d <= nrdisks; d++)
e86c9dd6
NB
649 fdlist[d] = -1;
650 d = array.raid_disks;
651 for (sd = sra->devs; sd; sd=sd->next) {
652 if (sd->state & (1<<MD_DISK_FAULTY))
653 continue;
654 if (sd->state & (1<<MD_DISK_SYNC)) {
16c6fa80
NB
655 char *dn = map_dev(sd->major, sd->minor, 1);
656 fdlist[sd->role] = dev_open(dn, O_RDONLY);
e86c9dd6
NB
657 offsets[sd->role] = sd->offset;
658 if (fdlist[sd->role] < 0) {
659 fprintf(stderr, Name ": %s: cannot open component %s\n",
660 devname, dn);
661 goto abort;
662 }
663 } else {
664 /* spare */
16c6fa80
NB
665 char *dn = map_dev(sd->major, sd->minor, 1);
666 fdlist[d] = dev_open(dn, O_RDWR);
e86c9dd6
NB
667 offsets[d] = sd->offset;
668 if (fdlist[d]<0) {
669 fprintf(stderr, Name ": %s: cannot open component %s\n",
670 devname, dn);
671 goto abort;
672 }
673 d++;
674 }
675 }
676 for (i=0 ; i<array.raid_disks; i++)
677 if (fdlist[i] < 0) {
678 fprintf(stderr, Name ": %s: failed to find device %d. Array might be degraded.\n"
679 " --grow aborted\n", devname, i);
680 goto abort;
681 }
06b0d786
NB
682 spares = sra->spares;
683 if (backup_file) {
684 fdlist[d] = open(backup_file, O_RDWR|O_CREAT|O_EXCL, 0600);
685 if (fdlist[d] < 0) {
686 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
687 devname, backup_file, strerror(errno));
688 goto abort;
689 }
690 offsets[d] = 8;
691 d++;
692 spares++;
693 }
e86c9dd6 694 if (fdlist[array.raid_disks] < 0) {
06b0d786 695 fprintf(stderr, Name ": %s: failed to find a spare and no backup-file given - --grow aborted\n",
e86c9dd6
NB
696 devname);
697 goto abort;
698 }
699
700 /* Find a superblock */
701 if (st->ss->load_super(st, fdlist[0], &super, NULL)) {
702 fprintf(stderr, Name ": %s: Cannot find a superblock\n",
703 devname);
704 goto abort;
705 }
706
2efedc7b
NB
707
708 memcpy(bsb.magic, "md_backup_data-1", 16);
709 st->ss->uuid_from_super((int*)&bsb.set_uuid, super);
710 bsb.mtime = __cpu_to_le64(time(0));
711 bsb.arraystart = 0;
712 bsb.length = __cpu_to_le64(last_block);
713
714 /* Decide offset for the backup, llseek the spares, and write
715 * a leading superblock 4K earlier.
716 */
e86c9dd6 717 for (i=array.raid_disks; i<d; i++) {
2efedc7b 718 char buf[4096];
06b0d786
NB
719 if (i==d-1 && backup_file) {
720 /* This is the backup file */
721 offsets[i] = 8;
722 } else
723 offsets[i] += sra->component_size - last_block - 8;
2efedc7b
NB
724 if (lseek64(fdlist[i], (offsets[i]<<9) - 4096, 0)
725 != (offsets[i]<<9) - 4096) {
e86c9dd6
NB
726 fprintf(stderr, Name ": could not seek...\n");
727 goto abort;
728 }
2efedc7b
NB
729 memset(buf, 0, sizeof(buf));
730 bsb.devstart = __cpu_to_le64(offsets[i]);
731 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
732 memcpy(buf, &bsb, sizeof(bsb));
733 if (write(fdlist[i], buf, 4096) != 4096) {
734 fprintf(stderr, Name ": could not write leading superblock\n");
735 goto abort;
736 }
e86c9dd6
NB
737 }
738 array.level = nlevel;
739 array.raid_disks = ndisks;
740 array.chunk_size = nchunk;
741 array.layout = nlayout;
742 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
743 fprintf(stderr, Name ": Cannot set device size/shape for %s: %s\n",
744 devname, strerror(errno));
745 goto abort;
746 }
747
748 /* suspend the relevant region */
749 sysfs_set_num(sra, NULL, "suspend_hi", 0); /* just in case */
750 if (sysfs_set_num(sra, NULL, "suspend_lo", 0) < 0 ||
751 sysfs_set_num(sra, NULL, "suspend_hi", last_block) < 0) {
752 fprintf(stderr, Name ": %s: failed to suspend device.\n",
753 devname);
754 goto abort_resume;
755 }
756
757
758 err = save_stripes(fdlist, offsets,
759 odisks, ochunk, olevel, olayout,
760 spares, fdlist+odisks,
06b0d786 761 0ULL, last_block*512);
e86c9dd6
NB
762
763 /* abort if there was an error */
764 if (err < 0) {
765 fprintf(stderr, Name ": %s: failed to save critical region\n",
766 devname);
767 goto abort_resume;
768 }
2efedc7b 769
e86c9dd6 770 for (i=odisks; i<d ; i++) {
353632d9 771 bsb.devstart = __cpu_to_le64(offsets[i]);
e86c9dd6 772 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
206c5eae 773 if (lseek64(fdlist[i], (offsets[i]+last_block)<<9, 0) < 0 ||
06b0d786
NB
774 write(fdlist[i], &bsb, sizeof(bsb)) != sizeof(bsb) ||
775 fsync(fdlist[i]) != 0) {
206c5eae
NB
776 fprintf(stderr, Name ": %s: fail to save metadata for critical region backups.\n",
777 devname);
778 goto abort_resume;
779 }
e86c9dd6
NB
780 }
781
782 /* start the reshape happening */
783 if (sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0) {
784 fprintf(stderr, Name ": %s: failed to initiate reshape\n",
785 devname);
786 goto abort_resume;
787 }
788 /* wait for reshape to pass the critical region */
789 while(1) {
790 unsigned long long comp;
206c5eae
NB
791 if (sysfs_get_ll(sra, NULL, "sync_completed", &comp)<0) {
792 sleep(5);
e86c9dd6 793 break;
206c5eae 794 }
e86c9dd6
NB
795 if (comp >= nstripe)
796 break;
797 sleep(1);
798 }
f5e166fe 799
e86c9dd6
NB
800 /* invalidate superblocks */
801 memset(&bsb, 0, sizeof(bsb));
802 for (i=odisks; i<d ; i++) {
803 lseek64(fdlist[i], (offsets[i]+last_block)<<9, 0);
804 write(fdlist[i], &bsb, sizeof(bsb));
805 }
806
807 /* unsuspend. */
808 sysfs_set_num(sra, NULL, "suspend_lo", last_block);
809
810 for (i=0; i<d; i++)
811 if (fdlist[i] >= 0)
812 close(fdlist[i]);
813 free(fdlist);
814 free(offsets);
06b0d786
NB
815 if (backup_file)
816 unlink(backup_file);
e86c9dd6 817
206c5eae 818 printf(Name ": ... critical section passed.\n");
e86c9dd6
NB
819 break;
820 }
821 return 0;
822
823
824 abort_resume:
825 sysfs_set_num(sra, NULL, "suspend_lo", last_block);
826 abort:
827 for (i=0; i<array.nr_disks; i++)
828 if (fdlist[i] >= 0)
829 close(fdlist[i]);
830 free(fdlist);
831 free(offsets);
06b0d786
NB
832 if (backup_file)
833 unlink(backup_file);
e86c9dd6
NB
834 return 1;
835
836}
353632d9
NB
837
838/*
839 * If any spare contains md_back_data-1 which is recent wrt mtime,
840 * write that data into the array and update the super blocks with
841 * the new reshape_progress
842 */
06b0d786 843int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt, char *backup_file)
353632d9
NB
844{
845 int i, j;
846 int old_disks;
847 int err = 0;
848 unsigned long long *offsets;
849
850 if (info->delta_disks < 0)
851 return 1; /* cannot handle a shrink */
852 if (info->new_level != info->array.level ||
853 info->new_layout != info->array.layout ||
854 info->new_chunk != info->array.chunk_size)
855 return 1; /* Can only handle change in disks */
856
857 old_disks = info->array.raid_disks - info->delta_disks;
858
06b0d786 859 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9
NB
860 void *super = NULL;
861 struct mdinfo dinfo;
353632d9 862 struct mdp_backup_super bsb;
2efedc7b 863 char buf[4096];
06b0d786 864 int fd;
353632d9
NB
865
866 /* This was a spare and may have some saved data on it.
867 * Load the superblock, find and load the
868 * backup_super_block.
869 * If either fail, go on to next device.
870 * If the backup contains no new info, just return
206c5eae 871 * else restore data and update all superblocks
353632d9 872 */
06b0d786
NB
873 if (i == old_disks-1) {
874 fd = open(backup_file, O_RDONLY);
875 if (fd<0)
876 continue;
06b0d786
NB
877 } else {
878 fd = fdlist[i];
879 if (fd < 0)
880 continue;
881 if (st->ss->load_super(st, fd, &super, NULL))
882 continue;
353632d9 883
06b0d786
NB
884 st->ss->getinfo_super(&dinfo, super);
885 free(super); super = NULL;
886 if (lseek64(fd,
887 (dinfo.data_offset + dinfo.component_size - 8) <<9,
888 0) < 0)
889 continue; /* Cannot seek */
890 }
891 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb))
353632d9
NB
892 continue; /* Cannot read */
893 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0)
894 continue;
895 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb)))
896 continue; /* bad checksum */
897 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0)
898 continue; /* Wrong uuid */
899
900 if (info->array.utime > __le64_to_cpu(bsb.mtime) + 3600 ||
901 info->array.utime < __le64_to_cpu(bsb.mtime))
902 continue; /* time stamp is too bad */
903
904 if (__le64_to_cpu(bsb.arraystart) != 0)
905 continue; /* Can only handle backup from start of array */
906 if (__le64_to_cpu(bsb.length) <
907 info->reshape_progress)
908 continue; /* No new data here */
909
06b0d786 910 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0)
353632d9 911 continue; /* Cannot seek */
2efedc7b 912 /* There should be a duplicate backup superblock 4k before here */
06b0d786
NB
913 if (lseek64(fd, -4096, 1) < 0 ||
914 read(fd, buf, 4096) != 4096 ||
9860f271 915 memcmp(buf, &bsb, sizeof(bsb)) != 0)
2efedc7b
NB
916 continue; /* Cannot find leading superblock */
917
353632d9
NB
918 /* Now need the data offsets for all devices. */
919 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
920 for(j=0; j<info->array.raid_disks; j++) {
921 if (fdlist[j] < 0)
922 continue;
923 if (st->ss->load_super(st, fdlist[j], &super, NULL))
924 /* FIXME should be this be an error */
925 continue;
31317663 926 st->ss->getinfo_super(&dinfo, super);
353632d9
NB
927 free(super); super = NULL;
928 offsets[j] = dinfo.data_offset;
929 }
930 printf(Name ": restoring critical section\n");
931
932 if (restore_stripes(fdlist, offsets,
933 info->array.raid_disks,
934 info->new_chunk,
935 info->new_level,
936 info->new_layout,
06b0d786 937 fd, __le64_to_cpu(bsb.devstart)*512,
353632d9
NB
938 0, __le64_to_cpu(bsb.length)*512)) {
939 /* didn't succeed, so giveup */
206c5eae 940 return -1;
353632d9
NB
941 }
942
943 /* Ok, so the data is restored. Let's update those superblocks. */
944
945 for (j=0; j<info->array.raid_disks; j++) {
946 if (fdlist[j] < 0) continue;
947 if (st->ss->load_super(st, fdlist[j], &super, NULL))
948 continue;
31317663 949 st->ss->getinfo_super(&dinfo, super);
353632d9
NB
950 dinfo.reshape_progress = __le64_to_cpu(bsb.length);
951 st->ss->update_super(&dinfo, super, "_reshape_progress",NULL,0);
952 st->ss->store_super(st, fdlist[j], super);
953 free(super);
954 }
955
956 /* And we are done! */
957 return 0;
958 }
959 return err;
960}